diff --git a/README.md b/README.md index 1b1fcd59c2..667b0d757e 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,4 @@ FreeCAD can be compiled on all platforms using [CMake](https://cmake.org/). The Check the [Development roadmap](wiki/Development_roadmap.md) for news about what is being planned, the [Changelog](http://www.freecadweb.org/tracker/changelog_page.php) and [Roadmap](http://www.freecadweb.org/tracker/roadmap_page.php) pages on the [FreeCAD tracker](http://www.freecadweb.org/tracker) to see the progress towards next release, or the [Project statistics](http://www.ohloh.net/p/freecad) for even more information about the FreeCAD codebase. All the development communication happens on the [forum](http://forum.freecadweb.org), so be sure to visit it if you are interested in participating. - -[Category:Documentation](Category:Documentation.md) diff --git a/migrate.py b/migrate.py index 7eb2997c5a..610df0e288 100755 --- a/migrate.py +++ b/migrate.py @@ -61,6 +61,8 @@ wiki.getAllImages() # fetches and saves all images - existing ones are not overwritten """ +# write threads: https://www.pythontutorial.net/advanced-python/python-threading/ + import requests import sys import os @@ -69,6 +71,7 @@ import datetime import pypandoc from PySide2 import QtCore +import FreeCAD unhandledTemplates = [] # holder for unhandled templates @@ -98,6 +101,8 @@ def __init__(self,url="https://wiki.freecadweb.org"): os.mkdir(self.output) self.imagefolder = "images" self.translationfolder = "translations" + self.rootpage = "README.md" + self.workbenches = self.getWorkbenches() ### UTILS @@ -117,6 +122,23 @@ def printProgress(self,count=None,total=100,text=""): sys.stdout.write(('\r'+text+' '+str(int((count/total)*100))+'%').ljust(72)) + def getWorkbenches(self): + + """getWorkbenches(): + Returns a list of workbenches from FreeCAD""" + appm = os.path.join(FreeCAD.getHomePath(),"Mod") + userm = os.path.join(FreeCAD.getUserAppDataDir(),"Mod") + mods = [] + for mod in os.listdir(appm): + if os.path.isdir(os.path.join(appm,mod)): + mods.append(mod) + for umod in os.listdir(userm): + if os.path.isdir(os.path.join(userm,mod)): + if not mod in mods: + mods.append(mod) + return mods + + ### CACHE OPERATIONS @@ -228,7 +250,7 @@ def getPage(self,name): wikitext += cpages self.pagecontents[name] = wikitext return wikitext,revision - + def getAllPages(self,pageset=None): @@ -268,7 +290,7 @@ def getAllPages(self,pageset=None): def getCategories(self): - + """getCategories(): Returns a list of categories of the whole wiki. Also stores the list in self.pagenames""" @@ -307,7 +329,7 @@ def getCategoryContents(self,name): """getCategoryContents(): Returns a list of pages that use the given category""" - + if not name.startswith("Category:"): name = "Category:"+name members = [] @@ -348,10 +370,10 @@ def getCategoryContents(self,name): return members def getPageCategory(self,page): - + """getPageCategory(self,page): Returns the first category a page belongs to, or None""" - + if page in self.pagecontents: content = self.pagecontents[page] cats = re.findall("Category:(.*?)[{}\[]",content) @@ -566,20 +588,54 @@ def getMarkdown(self,page,clean=True): fmt = 'markdown+hard_line_breaks' result = pypandoc.convert_text(wikitext, fmt, format='mediawiki', extra_args=xargs) except: + print("Error converting",page) return None + if clean: + result = self.cleanMarkdown(result) + result = self.addTitle(page,result) + result = self.addFooter(page,result) + return result + + + def addTitle(self,page,mdtext): + + """addTitle(self,page,result): + adds the page title to the given markdown""" + + # insert page title + if mdtext.startswith(" [Roadmap](Category:Roadmap.md) > 0.20 Development Cycle diff --git a/wiki/3D_View.md b/wiki/3D_View.md index bc0b145439..c58c109bf4 100644 --- a/wiki/3D_View.md +++ b/wiki/3D_View.md @@ -1,2 +1,5 @@ # 3D View 1. REDIRECT [3D view](3D_view.md) + +--- +[documentation index](../README.md) > 3D View diff --git a/wiki/3D_input_devices.md b/wiki/3D_input_devices.md index abc1801786..085dfad5e8 100644 --- a/wiki/3D_input_devices.md +++ b/wiki/3D_input_devices.md @@ -1,5 +1,5 @@ # 3D input devices - FreeCAD supports some specialized input devices, such as 3D mice. These enables the user to rotate, translate and zoom objects in three dimensions. +FreeCAD supports some specialized input devices, such as 3D mice. These enables the user to rotate, translate and zoom objects in three dimensions. ## Supported hardware @@ -7,3 +7,6 @@ - Installation instructions: [3D connexion input devices](3Dconnexion_input_devices.md) [category:Documentation](category:Documentation.md) + +--- +[documentation index](../README.md) > 3D input devices diff --git a/wiki/3D_view.md b/wiki/3D_view.md index 6721008094..f84b8d2684 100644 --- a/wiki/3D_view.md +++ b/wiki/3D_view.md @@ -1,6 +1,4 @@ # 3D view - - ## Introduction @@ -83,4 +81,7 @@ For more information see the power user documentation: - [Third party libraries](Third_Party_Libraries.md) used by FreeCAD. - [Coin3D](https://grey.colorado.edu/coin3d/index.html) C++ documentation. - {{Interface navi}} + {{Interface navi}} + +--- +[documentation index](../README.md) > 3D view diff --git a/wiki/3Dconnexion.md b/wiki/3Dconnexion.md index 4a992c193d..a57982326b 100644 --- a/wiki/3Dconnexion.md +++ b/wiki/3Dconnexion.md @@ -1,2 +1,5 @@ # 3Dconnexion 1. REDIRECT [3Dconnexion\_input\_devices](3Dconnexion_input_devices.md) + +--- +[documentation index](../README.md) > 3Dconnexion diff --git a/wiki/3Dconnexion_input_devices.md b/wiki/3Dconnexion_input_devices.md index be1e59a462..33a6f494be 100644 --- a/wiki/3Dconnexion_input_devices.md +++ b/wiki/3Dconnexion_input_devices.md @@ -1,5 +1,4 @@ -# 3Dconnexion input devices - 3Dconnexion SpaceNavigator +# 3Dconnexion SpaceNavigator 3Dconnexion input devices ## Driver installation @@ -281,3 +280,6 @@ To connect certain command with a button, select button on the left side, and it [Category:User Documentation](Category:User_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > 3Dconnexion input devices diff --git a/wiki/A2plus.md b/wiki/A2plus.md index 4a9ea7522f..15269e3d4c 100644 --- a/wiki/A2plus.md +++ b/wiki/A2plus.md @@ -1,2 +1,5 @@ # A2plus 1. REDIRECT [A2plus\_Workbench](A2plus_Workbench.md) + +--- +[documentation index](../README.md) > A2plus diff --git a/wiki/A2plus_Workbench.md b/wiki/A2plus_Workbench.md index 383724473b..a691031d0d 100644 --- a/wiki/A2plus_Workbench.md +++ b/wiki/A2plus_Workbench.md @@ -1,5 +1,4 @@ -# A2plus Workbench - A2plus workbench icon +# A2plus workbench icon A2plus Workbench ## Introduction @@ -640,3 +639,6 @@ This is an A2plus-specific command. It solves the assembly constraints of the as [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > A2plus Workbench diff --git a/wiki/ANSI_templates.md b/wiki/ANSI_templates.md index 096063f96c..7e0c25cf0a 100644 --- a/wiki/ANSI_templates.md +++ b/wiki/ANSI_templates.md @@ -1,5 +1,5 @@ # ANSI templates - This page lists the templates according to American National Standards Institute [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) standard +This page lists the templates according to American National Standards Institute [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) standard ### ANSI A @@ -64,3 +64,6 @@ The templates are drawn by [Quick61](User:Quick61.md) and listed [FreeCAD-Drawin [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > ANSI templates diff --git a/wiki/API_documentation.md b/wiki/API_documentation.md index 3de381621c..55d67c0bf0 100644 --- a/wiki/API_documentation.md +++ b/wiki/API_documentation.md @@ -1,2 +1,5 @@ # API documentation 1. REDIRECT [:Category:API](:Category:API.md) + +--- +[documentation index](../README.md) > API documentation diff --git a/wiki/A_Beginner's_Questions_about_Working_on_the_Wiki.md b/wiki/A_Beginner's_Questions_about_Working_on_the_Wiki.md index 627b5b5b5d..1249b3b1f2 100644 --- a/wiki/A_Beginner's_Questions_about_Working_on_the_Wiki.md +++ b/wiki/A_Beginner's_Questions_about_Working_on_the_Wiki.md @@ -1,6 +1,4 @@ # A Beginner's Questions about Working on the Wiki - - ## Purpose of this Page This is a page that is a one person\'s perspective, put out for discussion of the Wiki process. @@ -157,3 +155,6 @@ Pages for users, developers, wiki creators \[\[Category:UnfinishedDocu\] [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > [Sandbox]]](Category:Sandbox]].md) > A Beginner's Questions about Working on the Wiki diff --git a/wiki/About.md b/wiki/About.md index aac38fc5fa..8347db4b49 100644 --- a/wiki/About.md +++ b/wiki/About.md @@ -2,3 +2,6 @@ 1. REDIRECT [Std\_About](Std_About.md) [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > About diff --git a/wiki/About_FreeCAD.md b/wiki/About_FreeCAD.md index bd54184430..0e82c1cff5 100644 --- a/wiki/About_FreeCAD.md +++ b/wiki/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD - - - +# About FreeCAD **FreeCAD** is a general purpose parametric 3D [**CAD**](http://en.wikipedia.org/wiki/CAD) modeler, whose development is completely [open source](http://en.wikipedia.org/wiki/Open_source) ([LGPL License](https://www.gnu.org/licenses/lgpl-3.0.en.html)). FreeCAD is aimed directly at [mechanical engineering](http://en.wikipedia.org/wiki/Mechanical_engineering) and [product design](http://en.wikipedia.org/wiki/Product_design) but also fits in a wider range of uses around engineering, such as architecture, finite element analysis, 3D printing, and other tasks. @@ -27,3 +24,6 @@ FreeCAD is maintained and developed by a community of enthusiastic developers an [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD diff --git a/wiki/Add_A_Button_In_FEM_Toolbar_Tutorial.md b/wiki/Add_A_Button_In_FEM_Toolbar_Tutorial.md index b233af7430..6eaa76e314 100644 --- a/wiki/Add_A_Button_In_FEM_Toolbar_Tutorial.md +++ b/wiki/Add_A_Button_In_FEM_Toolbar_Tutorial.md @@ -1,5 +1,4 @@ # Add A Button In FEM Toolbar Tutorial - {{Page_in_progress}} @@ -108,3 +107,6 @@ To add the command to the **solve** menu of the FEM workbench, search for the fo [Category:FEM](Category:FEM.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add A Button In FEM Toolbar Tutorial diff --git a/wiki/Add_FEM_Constraint_Tutorial.md b/wiki/Add_FEM_Constraint_Tutorial.md index 59d12bae7b..bc2205a725 100644 --- a/wiki/Add_FEM_Constraint_Tutorial.md +++ b/wiki/Add_FEM_Constraint_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Constraint Tutorial 1. REDIRECT [Add\_FEM\_constraint\_tutorial](Add_FEM_constraint_tutorial.md) + +--- +[documentation index](../README.md) > Add FEM Constraint Tutorial diff --git a/wiki/Add_FEM_Equation_Tutorial.md b/wiki/Add_FEM_Equation_Tutorial.md index 3f63d1966a..77c5bb6e37 100644 --- a/wiki/Add_FEM_Equation_Tutorial.md +++ b/wiki/Add_FEM_Equation_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Equation Tutorial 1. REDIRECT [Add\_FEM\_equation\_tutorial](Add_FEM_equation_tutorial.md) + +--- +[documentation index](../README.md) > Add FEM Equation Tutorial diff --git a/wiki/Add_FEM_Solver_Tutorial.md b/wiki/Add_FEM_Solver_Tutorial.md index ee76857846..b9c002b07a 100644 --- a/wiki/Add_FEM_Solver_Tutorial.md +++ b/wiki/Add_FEM_Solver_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Solver Tutorial 1. REDIRECT [Sandbox:Add FEM Solver Tutorial](Sandbox:Add_FEM_Solver_Tutorial.md) + +--- +[documentation index](../README.md) > Add FEM Solver Tutorial diff --git a/wiki/Add_FEM_constraint_tutorial.md b/wiki/Add_FEM_constraint_tutorial.md index ecd52ed248..59e843ef1f 100644 --- a/wiki/Add_FEM_constraint_tutorial.md +++ b/wiki/Add_FEM_constraint_tutorial.md @@ -1,7 +1,4 @@ # Add FEM constraint tutorial - - - {{TutorialInfo |Topic= Add FEM Constraint |Level= @@ -328,3 +325,6 @@ def _handleFlowBndConditions(self): [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM constraint tutorial diff --git a/wiki/Add_FEM_equation_tutorial.md b/wiki/Add_FEM_equation_tutorial.md index a3800caf7e..6ae514ab00 100644 --- a/wiki/Add_FEM_equation_tutorial.md +++ b/wiki/Add_FEM_equation_tutorial.md @@ -1,7 +1,4 @@ # Add FEM equation tutorial - - - {{TutorialInfo |Topic=Add FEM Equation |Level=Advanced @@ -194,3 +191,6 @@ We have just created a new equation class. To access it from the FEM GUI, we nee [Category:FEM](Category:FEM.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM equation tutorial diff --git a/wiki/Add_FEM_solver_tutorial.md b/wiki/Add_FEM_solver_tutorial.md index c6dafdda1a..f2008f4057 100644 --- a/wiki/Add_FEM_solver_tutorial.md +++ b/wiki/Add_FEM_solver_tutorial.md @@ -1,10 +1,4 @@ # Add FEM solver tutorial - - - - - - {{TutorialInfo |Topic= Add FEM Solver |Level= @@ -31,3 +25,6 @@ The task can be split into seven parts: [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM solver tutorial diff --git a/wiki/Add_button_to_FEM_toolbar_tutorial.md b/wiki/Add_button_to_FEM_toolbar_tutorial.md index ccf6bc64eb..5acbcd0f8f 100644 --- a/wiki/Add_button_to_FEM_toolbar_tutorial.md +++ b/wiki/Add_button_to_FEM_toolbar_tutorial.md @@ -1,5 +1,4 @@ # Add button to FEM toolbar tutorial - {{Page_in_progress}} @@ -108,3 +107,6 @@ To add the command to the **solve** menu of the FEM workbench, search for the fo [Category:FEM](Category:FEM.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add button to FEM toolbar tutorial diff --git a/wiki/Adding_a_new_mouse_navigation_option_to_FreeCAD.md b/wiki/Adding_a_new_mouse_navigation_option_to_FreeCAD.md index 23b1b4b8e1..17790f628b 100644 --- a/wiki/Adding_a_new_mouse_navigation_option_to_FreeCAD.md +++ b/wiki/Adding_a_new_mouse_navigation_option_to_FreeCAD.md @@ -1,5 +1,4 @@ # Adding a new mouse navigation option to FreeCAD - **This tutorial is still a WIP. Feel free to help improve it** @@ -48,3 +47,6 @@ We can refer to previous code commits that added different mouse modes for orien {{Tutorials navi }} [Developer Documentation](Developer_Documentation.md) + +--- +[documentation index](../README.md) > Adding a new mouse navigation option to FreeCAD diff --git a/wiki/Addon.md b/wiki/Addon.md index 8c06707c28..a0e5563ed9 100644 --- a/wiki/Addon.md +++ b/wiki/Addon.md @@ -1,6 +1,4 @@ # Addon - - ## Introduction In FreeCAD and in this documentation, an [addon](addon.md) is any component that is not part of the base installation, but that can be added to the system by certain methods. @@ -36,3 +34,6 @@ However, manual installation is still possible. [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Addon diff --git a/wiki/AddonManager.md b/wiki/AddonManager.md index 298d1c5e8f..bf42043b43 100644 --- a/wiki/AddonManager.md +++ b/wiki/AddonManager.md @@ -1,2 +1,5 @@ # AddonManager 1. REDIRECT [Std AddonMgr](Std_AddonMgr.md) + +--- +[documentation index](../README.md) > AddonManager diff --git a/wiki/Addon_Manager.md b/wiki/Addon_Manager.md index ef88aba545..bcb4a785d3 100644 --- a/wiki/Addon_Manager.md +++ b/wiki/Addon_Manager.md @@ -1,2 +1,5 @@ # Addon Manager 1. REDIRECT [Std AddonMgr](Std_AddonMgr.md) + +--- +[documentation index](../README.md) > Addon Manager diff --git a/wiki/Addon_manager.md b/wiki/Addon_manager.md index 83f38ad71e..836ba91c62 100644 --- a/wiki/Addon_manager.md +++ b/wiki/Addon_manager.md @@ -1,2 +1,5 @@ # Addon manager 1. REDIRECT [Std AddonMgr](Std_AddonMgr.md) + +--- +[documentation index](../README.md) > Addon manager diff --git a/wiki/Advance_FreeCAD_test_system.md b/wiki/Advance_FreeCAD_test_system.md index e05d34dbc3..a314ad6e4b 100644 --- a/wiki/Advance_FreeCAD_test_system.md +++ b/wiki/Advance_FreeCAD_test_system.md @@ -1,2 +1,5 @@ # Advance FreeCAD test system 1. REDIRECT [Advanced FreeCAD test system](Advanced_FreeCAD_test_system.md) + +--- +[documentation index](../README.md) > Advance FreeCAD test system diff --git a/wiki/Advanced_FreeCAD_test_system.md b/wiki/Advanced_FreeCAD_test_system.md index 6db0f3ba34..428229e9da 100644 --- a/wiki/Advanced_FreeCAD_test_system.md +++ b/wiki/Advanced_FreeCAD_test_system.md @@ -42,3 +42,6 @@ Medium ### Additional Information [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > Advanced FreeCAD test system diff --git a/wiki/Advanced_TechDraw_Tutorial.md b/wiki/Advanced_TechDraw_Tutorial.md index 92095ba01c..9600a8d13a 100644 --- a/wiki/Advanced_TechDraw_Tutorial.md +++ b/wiki/Advanced_TechDraw_Tutorial.md @@ -1,10 +1,4 @@ # Advanced TechDraw Tutorial - - - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -89,4 +83,7 @@ However, the described path could represent the starting point (or the idea) to - [TechDraw without limits = Layout autocad](https://forum.freecadweb.org/viewtopic.php?t=54499) Forum Thread - [TechDraw: -- come utilizzare gli strumenti Draft/Snaps per creare " vertici/punti cosmetici"](https://forum.freecadweb.org/viewtopic.php?f=28&t=53329) Forum Thread in Italian language - {{Tutorials navi}} {{TechDraw Tools navi}} + {{Tutorials navi}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Advanced TechDraw Tutorial diff --git a/wiki/Aeroplane.md b/wiki/Aeroplane.md index b09e791da0..c7df2630da 100644 --- a/wiki/Aeroplane.md +++ b/wiki/Aeroplane.md @@ -1,5 +1,5 @@ # Aeroplane - {{TutorialInfo +{{TutorialInfo |Topic=Part Workbench |Level=Beginner |Time=10 minutes @@ -101,4 +101,7 @@ I hope this little tutorial has helped you to get a feel for rotations. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Aeroplane diff --git a/wiki/Analysis_of_reinforced_concrete_with_FEM.md b/wiki/Analysis_of_reinforced_concrete_with_FEM.md index 5d18a7d364..e6b320fdb8 100644 --- a/wiki/Analysis_of_reinforced_concrete_with_FEM.md +++ b/wiki/Analysis_of_reinforced_concrete_with_FEM.md @@ -1,5 +1,5 @@ # Analysis of reinforced concrete with FEM - {{TutorialInfo +{{TutorialInfo |Topic= Reinforced concrete with FEM |Level= Intermediate |Time= 60 minutes @@ -184,4 +184,7 @@ The tensile stress pattern suggests an alternative design concept using pre-stre - [FEM Concrete](FEM_Concrete.md) - {{Tutorials navi}} {{FEM Tools navi}} + {{Tutorials navi}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Analysis of reinforced concrete with FEM diff --git a/wiki/Animation_Workbench.md b/wiki/Animation_Workbench.md index f4d9cb40e1..3d7fcaa288 100644 --- a/wiki/Animation_Workbench.md +++ b/wiki/Animation_Workbench.md @@ -1,5 +1,4 @@ # Animation Workbench - {{Template:UnfinishedDocu }} @@ -103,3 +102,6 @@ Other [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Animation Workbench diff --git a/wiki/AppImage.md b/wiki/AppImage.md index c7e4955fcb..9db57fcaff 100644 --- a/wiki/AppImage.md +++ b/wiki/AppImage.md @@ -1,5 +1,5 @@ # AppImage - **As of 7 July 2019, the FreeCAD community has been observing that downloading AppImages from Github seems to timeout before completion. We aren't sure why this is occurring. If this happens to you please try downloading again. It make take a few tries. A recommended practice is to use the AppImage [https://www.freecadweb.org/wiki/Appimage#Automatic_updating auto-updating feature], which will restore the download from the place it failed.** +**As of 7 July 2019, the FreeCAD community has been observing that downloading AppImages from Github seems to timeout before completion. We aren't sure why this is occurring. If this happens to you please try downloading again. It make take a few tries. A recommended practice is to use the AppImage [https://www.freecadweb.org/wiki/Appimage#Automatic_updating auto-updating feature], which will restore the download from the place it failed.** @@ -169,3 +169,6 @@ The repository for these scripts is at [realthunder/FreeCADMakeImage](https://gi [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > AppImage diff --git a/wiki/App_DocumentObject.md b/wiki/App_DocumentObject.md index 2b7dddc2bd..3ee717d9be 100644 --- a/wiki/App_DocumentObject.md +++ b/wiki/App_DocumentObject.md @@ -1,6 +1,4 @@ # App DocumentObject - - ## Introduction @@ -69,4 +67,7 @@ obj.Label = "Custom label" {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App DocumentObject diff --git a/wiki/App_DocumentObjectGroup.md b/wiki/App_DocumentObjectGroup.md index 3f89683468..cb75ac2a01 100644 --- a/wiki/App_DocumentObjectGroup.md +++ b/wiki/App_DocumentObjectGroup.md @@ -1,6 +1,4 @@ # App DocumentObjectGroup - - ## Introduction @@ -28,4 +26,7 @@ An [App DocumentObjectGroup](App_DocumentObjectGroup.md) (`App::DocumentObjectGr See the properties in the [Std Group](Std_Group.md) page. - {{Std Base navi}} {{Document objects navi}} + {{Std Base navi}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App DocumentObjectGroup diff --git a/wiki/App_FeaturePython.md b/wiki/App_FeaturePython.md index 25ef2c52a4..19d0c1327d 100644 --- a/wiki/App_FeaturePython.md +++ b/wiki/App_FeaturePython.md @@ -1,6 +1,4 @@ # App FeaturePython - - ## Introduction An [App FeaturePython](App_FeaturePython.md) object, or formally an `App::FeaturePython`, is a simple instance of the [App DocumentObject](App_DocumentObject.md) in [Python](Python.md). @@ -92,4 +90,7 @@ For example, the [Draft Text](Draft_Text.md), [Draft Dimension](Draft_Dimension. If the desired object should have a placement, a shape, an attachment, or other complex properties, it is better to create one of the more complex classes, for example, [App GeoFeature](App_GeoFeature.md), [Part Feature](Part_Feature.md), or [Part Part2DObject](Part_Part2DObject.md). - {{Document objects navi}} + {{Document objects navi}} + +--- +[documentation index](../README.md) > App FeaturePython diff --git a/wiki/App_GeoFeature.md b/wiki/App_GeoFeature.md index f8e5200462..a961b3284e 100644 --- a/wiki/App_GeoFeature.md +++ b/wiki/App_GeoFeature.md @@ -1,6 +1,4 @@ # App GeoFeature - - ## Introduction @@ -141,4 +139,7 @@ obj.Label = "Custom label" For example, the [Arch BuildingPart](Arch_BuildingPart.md) element of the [Arch Workbench](Arch_Workbench.md) is an `App::GeometryPython` object with a custom icon. - {{Document objects navi}} + {{Document objects navi}} + +--- +[documentation index](../README.md) > App GeoFeature diff --git a/wiki/App_Link.md b/wiki/App_Link.md index 19f60ae63f..f633bf0dfa 100644 --- a/wiki/App_Link.md +++ b/wiki/App_Link.md @@ -1,6 +1,4 @@ # App Link - - ## Introduction @@ -25,4 +23,7 @@ An [App Link](App_Link.md) (`App::Link` class) is derived from the basic [App Do See the full list of properties in the [Std LinkMake](Std_LinkMake.md) page. - {{Std Base navi}} {{Document objects navi}} + {{Std Base navi}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Link diff --git a/wiki/App_Part.md b/wiki/App_Part.md index 81178ba2f0..b7254baf29 100644 --- a/wiki/App_Part.md +++ b/wiki/App_Part.md @@ -1,6 +1,4 @@ # App Part - - ## Introduction @@ -28,4 +26,7 @@ An [App Part](App_Part.md) (`App::Part` class) is derived from the basic [App Ge See the full list of properties in the [Std Part](Std_Part.md) page. - {{Std Base navi}} {{Document objects navi}} + {{Std Base navi}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Part diff --git a/wiki/Appimage.md b/wiki/Appimage.md index 30fbb6cf7c..59a9661b2a 100644 --- a/wiki/Appimage.md +++ b/wiki/Appimage.md @@ -2,3 +2,6 @@ 1. REDIRECT [AppImage](AppImage.md) [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Appimage diff --git a/wiki/Arch_3DS.md b/wiki/Arch_3DS.md index 476132a5ad..14b02c05dd 100644 --- a/wiki/Arch_3DS.md +++ b/wiki/Arch_3DS.md @@ -1,9 +1,4 @@ # Arch 3DS - - - - - The Arch Workbench supports importing [3DS](https://en.wikipedia.org/wiki/.3ds) files. The 3DS format is ancient but still widely used on the internet. It can contain mesh data and material information. At the moment, it will import mesh objects contained in the file as FreeCAD mesh objects, and has no support for materials yet. @@ -12,3 +7,6 @@ The Arch Workbench supports importing [3DS](https://en.wikipedia.org/wiki/.3ds) [Category:User Documentation](Category:User_Documentation.md) [Category:Arch](Category:Arch.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3DS diff --git a/wiki/Arch_3Views.md b/wiki/Arch_3Views.md index c1d8e2adae..75194788a6 100644 --- a/wiki/Arch_3Views.md +++ b/wiki/Arch_3Views.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch 3Views + ## Description @@ -68,10 +70,5 @@ Wall.ViewObject.Visibility = False mesh_obj.ViewObject.Visibility = False ``` - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3Views diff --git a/wiki/Arch_API.md b/wiki/Arch_API.md index 054f1a282e..c783f0c81b 100644 --- a/wiki/Arch_API.md +++ b/wiki/Arch_API.md @@ -1,5 +1,5 @@ # Arch API - **(November 2018) The Arch API is listed in the [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) The Arch API is listed in the [https://www.freecadweb.org/api autogenerated API documentation].** The functions of the API are part of the [Arch Workbench](Arch_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `Arch` module has been imported. The [Reinforcement Addon](Reinforcement_Addon.md) has its own [Reinforcement API](Reinforcement_API.md). @@ -18,3 +18,6 @@ Arch.makeWall(baseline, length=None, width=200, height=2000) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch API diff --git a/wiki/Arch_Add.md b/wiki/Arch_Add.md index 10efcf0ff7..d0ce6d5d24 100644 --- a/wiki/Arch_Add.md +++ b/wiki/Arch_Add.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Remove](Arch_Remove.md) --- +# Arch Add + ## Description The Add tool allows you to do 4 kinds of operations: @@ -72,10 +74,5 @@ Arch.addComponents(Wall2, Wall) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Add diff --git a/wiki/Arch_Axis.md b/wiki/Arch_Axis.md index 31622d59e4..48f0d10a1d 100644 --- a/wiki/Arch_Axis.md +++ b/wiki/Arch_Axis.md @@ -7,6 +7,8 @@ SeeAlso:[Axis System](Arch_AxisSystem.md), [Arch Grid](Arch_Grid.md) --- +# Arch Axis + ## Description The ** [Arch Axis](Arch_Axis.md)** tool allows you to places a series of axes in the current document. The distance and the angle between axes is customizable, as well as the numbering style. The axes serve mainly as references to snap objects onto, but can also be used together with ** [Arch AxesSystems](Arch_AxisSystem.md)** , and can also be referenced by other Arch objects to create parametric arrays, for example of beams or columns. ** [Arch Grids](Arch_Grid.md)** can also be used in places of axes. @@ -89,7 +91,5 @@ Draft.move(Axes2, FreeCAD.Vector(-1000, 2500, 0)) FreeCAD.ActiveDocument.recompute() ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Axis diff --git a/wiki/Arch_AxisSystem.md b/wiki/Arch_AxisSystem.md index 7611116495..6e5e6625c6 100644 --- a/wiki/Arch_AxisSystem.md +++ b/wiki/Arch_AxisSystem.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Axis](Arch_Axis.md), [Arch Grid](Arch_Grid.md) --- +# Arch AxisSystem + ## Description The [AxisSystem](Arch_AxisSystem.md) tool allows you to combine two or three [Arch Axis](Arch_Axis.md) objects. @@ -73,6 +75,5 @@ Structure.Axis = AxisSystem FreeCAD.ActiveDocument.recompute() ``` - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch AxisSystem diff --git a/wiki/Arch_BimServer.md b/wiki/Arch_BimServer.md index 73d3fe247c..9a845d3c4a 100644 --- a/wiki/Arch_BimServer.md +++ b/wiki/Arch_BimServer.md @@ -1,2 +1,5 @@ # Arch BimServer 1. REDIRECT [WebTools\_BimServer](WebTools_BimServer.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BimServer diff --git a/wiki/Arch_Building.md b/wiki/Arch_Building.md index f492a8ca98..5cb00ec9ba 100644 --- a/wiki/Arch_Building.md +++ b/wiki/Arch_Building.md @@ -7,6 +7,8 @@ SeeAlso:[Arch BuildingPart](Arch_BuildingPart.md), [Arch Site](Arch_Site.md) --- +# Arch Building + ## Description The Arch Building is a special type of FreeCAD group object particularly suited for representing a whole building unit. They are mostly used to organize your model, by containing [floor](Arch_Floor.md) objects. @@ -61,7 +63,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Building diff --git a/wiki/Arch_BuildingPart.md b/wiki/Arch_BuildingPart.md index 724c1e4ada..11aed681c9 100644 --- a/wiki/Arch_BuildingPart.md +++ b/wiki/Arch_BuildingPart.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Building](Arch_Building.md), [Arch Site](Arch_Site.md) --- +# Arch BuildingPart + ## Description The BuildingPart replaces the old [Arch Floor](Arch_Floor.md) and [Arch Building](Arch_Building.md) with a more capable version that can be used not only to create Floor/Storey/Levels but also all kinds of situations where different Arch/BIM objects need to be grouped and that group might need to be handled as one object or replicated. @@ -126,7 +128,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BuildingPart diff --git a/wiki/Arch_Check.md b/wiki/Arch_Check.md index 4a18bcd726..2736a92a10 100644 --- a/wiki/Arch_Check.md +++ b/wiki/Arch_Check.md @@ -6,6 +6,8 @@ SeeAlso:[Arch CloseHoles](Arch_CloseHoles.md) --- +# Arch Check + ## Description This tool checks the current document or the selected objects for non-solid ** [Part](Part_Workbench.md)** or ** [Arch](Arch_Workbench.md)** objects, that might give problems, since most operations of the Arch Workbench require solid objects. @@ -53,10 +55,5 @@ list_bad = Arch.check([Wall1, Wall2, Circle, Wire], includehidden=True) print(list_bad) ``` - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Check diff --git a/wiki/Arch_CloneComponent.md b/wiki/Arch_CloneComponent.md index fc07dd367e..b4c3170b6a 100644 --- a/wiki/Arch_CloneComponent.md +++ b/wiki/Arch_CloneComponent.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Clone](Draft_Clone.md), [Arch Component](Arch_Component.md) --- +# Arch CloneComponent + ## Description The ** [Arch Clone Component](Arch_CloneComponent.md)** produces ** [Arch Components](Arch_Component.md)** that are clones of selected Arch objects. @@ -21,7 +23,5 @@ The clone component will simply have its **CloneOf** property set to the selecte ## Scripting - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloneComponent diff --git a/wiki/Arch_CloseHoles.md b/wiki/Arch_CloseHoles.md index 8631feca0f..6a88647e52 100644 --- a/wiki/Arch_CloseHoles.md +++ b/wiki/Arch_CloseHoles.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Check](Arch_Check.md) --- +# Arch CloseHoles + ## Description This tool identifies holes (circular sequence of open edges) in a [Shape](Part_Workbench.md) object and attempts to close it by adding it a new face made from that edges sequence. You must still verify yourself that the result is a solid, though. @@ -51,10 +53,5 @@ FreeCAD.ActiveDocument.recompute() solid = Arch.closeHole(Wall.Shape) ``` - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloseHoles diff --git a/wiki/Arch_CompAxis.md b/wiki/Arch_CompAxis.md index f653b20963..a1a09764d2 100644 --- a/wiki/Arch_CompAxis.md +++ b/wiki/Arch_CompAxis.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Axis](Arch_Axis.md), [Arch Axes system](Arch_AxisSystem.md), [Arch Grid](Arch_Grid.md) --- +# Arch CompAxis + ## Description Create axis. @@ -17,7 +19,5 @@ Create axis. - [Axes system](Arch_AxisSystem.md): Adds an axes system composed of several axes to the document - [Grid](Arch_Grid.md): Adds a grid-like object to the document - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompAxis diff --git a/wiki/Arch_CompPanel.md b/wiki/Arch_CompPanel.md index 24ed908770..48f50abb18 100644 --- a/wiki/Arch_CompPanel.md +++ b/wiki/Arch_CompPanel.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Arch CompPanel + ## Description Grouping of several Panel related tools. @@ -16,9 +18,7 @@ Grouping of several Panel related tools. - [Panel](Arch_Panel.md): Creates a panel object from a selected 2D object (v0.15) - [Panel Cut](Arch_Panel_Cut.md): Creates a 2D cut view from an [Arch Panel](Arch_Panel.md) (v0.17) - [Panel Sheet](Arch_Panel_Sheet.md): Creates a 2D cut sheet including [panel cuts](Arch_Panel_Cut.md) or other 2D objects (v0.17) -- [Nest](Arch_Nest.md): Allow to nest several flat objects inside a container shape (v0.17) - - +- [Nest](Arch_Nest.md): Allow to nest several flat objects inside a container shape (v0.17) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompPanel diff --git a/wiki/Arch_CompPipe.md b/wiki/Arch_CompPipe.md index a4aef22452..cd31d9ab19 100644 --- a/wiki/Arch_CompPipe.md +++ b/wiki/Arch_CompPipe.md @@ -7,14 +7,14 @@ SeeAlso: --- +# Arch CompPipe + ## Description ## Types of - [Pipe](Arch_Pipe.md): Creates a pipe (v0.17) -- [Pipe Connector](Arch_PipeConnector.md): Creates a corner or tee connection between 2 or 3 selected pipes (v0.17) - - +- [Pipe Connector](Arch_PipeConnector.md): Creates a corner or tee connection between 2 or 3 selected pipes (v0.17) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompPipe diff --git a/wiki/Arch_CompRebarStraight.md b/wiki/Arch_CompRebarStraight.md index 25f0613348..d6f0deee4c 100644 --- a/wiki/Arch_CompRebarStraight.md +++ b/wiki/Arch_CompRebarStraight.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Arch CompRebarStraight + ## Description The Reinforcement Addon augments the [Arch Workbench](Arch_Workbench.md) by providing new interfaces and presets for the creation of common rebar types for use with [Arch Structures](Arch_Structure.md). It is also integrated into the external workbench [BIM](BIM_Workbench.md). @@ -38,7 +40,5 @@ Back to [Workbenches](Workbenches#External_workbenches.md) / [External Workbench - [Rebar](Arch_Rebar.md): Creates a custom reinforcement bar in a selected structural element using a sketch - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompRebarStraight diff --git a/wiki/Arch_CompSetMaterial.md b/wiki/Arch_CompSetMaterial.md index 1e55f3d8ec..f99d91219f 100644 --- a/wiki/Arch_CompSetMaterial.md +++ b/wiki/Arch_CompSetMaterial.md @@ -7,6 +7,8 @@ SeeAlso:[Arch SetMaterial](Arch_SetMaterial.md), [Arch MultiMaterial](Arch_MultiMaterial.md) --- +# Arch CompSetMaterial + ## Description The Material tools allows to add materials to the active document. @@ -14,9 +16,7 @@ The Material tools allows to add materials to the active document. ## Types of - [Material](Arch_SetMaterial.md): Creates a material and attributes it to selected objects, if any -- [Multi-Material](Arch_MultiMaterial.md): Creates a multi-material and attributes it to selected objects, if any (v0.17) - - +- [Multi-Material](Arch_MultiMaterial.md): Creates a multi-material and attributes it to selected objects, if any (v0.17) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompSetMaterial diff --git a/wiki/Arch_Component.md b/wiki/Arch_Component.md index cc7c1e791d..74e24787e0 100644 --- a/wiki/Arch_Component.md +++ b/wiki/Arch_Component.md @@ -6,6 +6,8 @@ Shortcut:**C** **M** --- +# Arch Component + ## Description Creates a non-parametric [Arch](Arch_Workbench.md) component from any [Part](Part_Workbench.md)-based object. This gives the Part-based object the same attributes and properties as other Arch objects, and allows to specify how it should be exported to IFC by setting its **Role** property. @@ -46,10 +48,5 @@ The Arch component object is also a base shared by all other Arch objects (** [Part Box](Part_Box.md)**. Then, use a compound of those bricks as a high-resolution version of the wall. The shape of the wall is not modified by adding a Hi-Res object. Only its representation in the 3D view will change by adopting the representation of the high-resolution version instead of its own. - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Component diff --git a/wiki/Arch_Concept.md b/wiki/Arch_Concept.md index 668c010e6f..7f9c8020d8 100644 --- a/wiki/Arch_Concept.md +++ b/wiki/Arch_Concept.md @@ -1,7 +1,4 @@ # Arch Concept - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -172,3 +169,6 @@ The following diagram illustrates the relationship between all objects described [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Concept diff --git a/wiki/Arch_CurtainWall.md b/wiki/Arch_CurtainWall.md index cb83e405b5..cc3689638e 100644 --- a/wiki/Arch_CurtainWall.md +++ b/wiki/Arch_CurtainWall.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Grid](Arch_Grid.md) --- +# Arch CurtainWall + ## Description This tool creates a [curtain wall](https://en.wikipedia.org/wiki/Curtain_wall_(architecture)) by subdividing a base face into quadrangular faces, then creating vertical mullion on the vertical edges, horizontal mullions on the horizontal edges, and filling the spaces between mullions with panels. @@ -148,7 +150,5 @@ curtainWall.VerticalSections = 6 FreeCAD.ActiveDocument.recompute() ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CurtainWall diff --git a/wiki/Arch_CutLine.md b/wiki/Arch_CutLine.md index e94b4c535c..8cd7d89bfb 100644 --- a/wiki/Arch_CutLine.md +++ b/wiki/Arch_CutLine.md @@ -7,6 +7,8 @@ SeeAlso:[Arch CutPlane](Arch_CutPlane.md) --- +# Arch CutLine + ## Description The [Arch CutLine](Arch_CutLine.md) tool allows you to cut a solid Arch object like an [Arch Wall](Arch_Wall.md) or [Arch Structure](Arch_Structure.md) using a line that is crossing the object. @@ -31,7 +33,5 @@ The [Arch CutLine](Arch_CutLine.md) tool allows you to cut a solid Arch object l [Arch API](Arch_API.md) and [FreeCAD Scripting Basics](FreeCAD_Scripting_Basics.md). - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutLine diff --git a/wiki/Arch_CutPlane.md b/wiki/Arch_CutPlane.md index 53bf86d0d9..08218b3e8e 100644 --- a/wiki/Arch_CutPlane.md +++ b/wiki/Arch_CutPlane.md @@ -6,6 +6,8 @@ SeeAlso:[Arch CutLine](Arch_CutLine.md), [Arch Remove](Arch_Remove.md) --- +# Arch CutPlane + ## Description The Cut Plane tool allows you to cut an Arch object according to a plane: @@ -92,6 +94,5 @@ cutObj2 = Arch.cutComponentwithPlane(main_object2, cut_face2, 1) FreeCAD.ActiveDocument.recompute() ``` - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutPlane diff --git a/wiki/Arch_DAE.md b/wiki/Arch_DAE.md index cc036b28f6..ca0f6ac8c2 100644 --- a/wiki/Arch_DAE.md +++ b/wiki/Arch_DAE.md @@ -1,6 +1,4 @@ # Arch DAE - - The [Collada (DAE)](https://en.wikipedia.org/wiki/COLLADA) format is a standard file format for exchange of Mesh data. The [Arch Workbench](Arch_Workbench.md) can import meshes from .dae files, and export Arch and other [Shape](Part_Workbench.md)-based objects to the .dae format. Note that imported objects will be [Mesh](Mesh_Workbench.md) objects, and will need to be turned into [Shapes](Shape.md) or Arch objects for optimal use. The [Arch Workbench](Arch_Workbench.md) has several tools to help you in performing that operation. @@ -17,3 +15,6 @@ The Collada import functionality in the Arch workbench depends on [pycollada](ht [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch DAE diff --git a/wiki/Arch_Door.md b/wiki/Arch_Door.md index ada0584a46..b4a6979052 100644 --- a/wiki/Arch_Door.md +++ b/wiki/Arch_Door.md @@ -8,6 +8,8 @@ Icon:Arch_Window.svg --- +# Arch Door + ## Description [Arch Doors](Arch_Door.md) are created with the [Arch Window](Arch_Window.md) tool. @@ -23,4 +25,5 @@ All properties are described in the [Arch Window](Arch_Window.md) tool. Door *Door being constructed from a [Sketch](Sketcher_Workbench.md)* - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Door diff --git a/wiki/Arch_Equipment.md b/wiki/Arch_Equipment.md index ddea8af7b3..8b7f5cdb83 100644 --- a/wiki/Arch_Equipment.md +++ b/wiki/Arch_Equipment.md @@ -7,6 +7,8 @@ SeeAlso:[Arch 3 views](Arch_3Views.md) --- +# Arch Equipment + ## Description The Equipment tool offers you a simple and convenient way to insert non-structural, standalone elements such as pieces of furniture, hidro-sanitary equipments or electrical appliances to your projects. Equipments are based on [Part shapes](Part_Workbench.md), which allow them to benefit from the solidity and possibilities of BRep geometry, and generate nice views when rendered to plan and section views. @@ -65,9 +67,5 @@ Equip = Arch.makeEquipment(Box) FreeCAD.ActiveDocument.recompute() ``` - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Equipment diff --git a/wiki/Arch_Fence.md b/wiki/Arch_Fence.md index 48e97aabf3..b96c260a81 100644 --- a/wiki/Arch_Fence.md +++ b/wiki/Arch_Fence.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Arch Fence + ## Description The [Arch Fence](Arch_Fence.md) is a object that builds a fence by repeating a single fence post and section along a given path. @@ -94,7 +96,5 @@ post = FreeCAD.ActiveDocument.Post Fence = Arch.buildFence(fence_section, post, sketch) ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Fence diff --git a/wiki/Arch_Floor.md b/wiki/Arch_Floor.md index 92ff4cf898..cb1050179c 100644 --- a/wiki/Arch_Floor.md +++ b/wiki/Arch_Floor.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Building](Arch_Building.md), [Arch BuildingPart](Arch_BuildingPart.md), [Arch Site](Arch_Site.md) --- +# Arch Floor + ## Description The [Arch Floor](Arch_Floor.md) is a special type of FreeCAD group object that has a couple of additional properties particularly suited for building floors. Particularly, they have a height property, that its children objects ([walls](Arch_Wall.md) and [structures](Arch_Structure.md)) can use to set their own height automatically. They are mostly used to organize your model. @@ -66,10 +68,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor diff --git a/wiki/Arch_Frame.md b/wiki/Arch_Frame.md index c00c3eb377..b9a40538ea 100644 --- a/wiki/Arch_Frame.md +++ b/wiki/Arch_Frame.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Structure](Arch_Structure.md) --- +# Arch Frame + ## Description The ** [Arch Frame](Arch_Frame.md)** tool is used to build all kinds of frame objects based on a profile and a layout. The profile is extruded along the edges of the layout, which can be any 2D object such as a [sketch](Sketcher_Workbench.md), or a [Draft object](Draft_Workbench.md). It is especially useful to create railings, or frame walls. Frame objects can then easily be turned into [wall](Arch_Wall.md) or [structure](Arch_Structure.md) objects. @@ -73,10 +75,5 @@ Frame = Arch.makeFrame(baseobj, profile) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Frame diff --git a/wiki/Arch_Git.md b/wiki/Arch_Git.md index 9d3ea32f7a..92dad61391 100644 --- a/wiki/Arch_Git.md +++ b/wiki/Arch_Git.md @@ -1,2 +1,5 @@ # Arch Git 1. REDIRECT [WebTools\_Git](WebTools_Git.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Git diff --git a/wiki/Arch_Grid.md b/wiki/Arch_Grid.md index 4ddb5bcd0b..c928efb6aa 100644 --- a/wiki/Arch_Grid.md +++ b/wiki/Arch_Grid.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Axis](Arch_Axis.md), [Arch AxisSystem](Arch_AxisSystem.md) --- +# Arch Grid + ## Description The ** [Arch Grid](Arch_Grid.md)** tool allows you to place a grid-like object in the document. This object is meant to serve as a base to build Arch objects that need a regular but complex frame, such as windows, curtain walls, column grids, railings, etc. The Grid object is editable like a spreadsheet, where you can add or remove columns and rows, define their size, and merge cells. @@ -87,7 +89,5 @@ Structure.Axis = Grid FreeCAD.ActiveDocument.recompute() ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Grid diff --git a/wiki/Arch_IFC.md b/wiki/Arch_IFC.md index ed5bd17a4a..d0620f5060 100644 --- a/wiki/Arch_IFC.md +++ b/wiki/Arch_IFC.md @@ -1,8 +1,4 @@ # Arch IFC - - - - ## Description The [Arch](Arch_Workbench.md) and [BIM Workbenches](BIM_Workbench.md) feature an [Industry Foundation Classes (IFC)](http://en.wikipedia.org/wiki/Industry_Foundation_Classes) importer and exporter. The IFC format is a continuously growing format to interchange data among [BIM](http://en.wikipedia.org/wiki/Building_Information_Modeling) applications, used in architecture and engineering. @@ -73,3 +69,6 @@ If the shape of exported objects is based on an extrusion or a boolean operation [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IFC diff --git a/wiki/Arch_IfcExplorer.md b/wiki/Arch_IfcExplorer.md index 0710cad9da..58293ea186 100644 --- a/wiki/Arch_IfcExplorer.md +++ b/wiki/Arch_IfcExplorer.md @@ -6,6 +6,8 @@ SeeAlso:[Arch IFC](Arch_IFC.md) --- +# Arch IfcExplorer + ## Description The [IFC explorer](Arch_IfcExplorer.md) is a simple utility to explore the contents of an [IFC](Arch_IFC.md) file. IFC files are text files, and are therefore readable in a text editor, but the information is condensed, unformatted, and difficult to browse. This utility presents to the user the exact same content, but displayed in an organized and readable method. The \"[IfcOpenShell](IfcOpenShell.md)\" software library must be installed for this utility to work. @@ -30,3 +32,6 @@ The purpose of this explorer is simply to allow you to check what is really writ [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcExplorer diff --git a/wiki/Arch_IfcSpreadsheet.md b/wiki/Arch_IfcSpreadsheet.md index 735167d584..61839b8bf3 100644 --- a/wiki/Arch_IfcSpreadsheet.md +++ b/wiki/Arch_IfcSpreadsheet.md @@ -7,6 +7,8 @@ SeeAlso:[Arch IFC](Arch_IFC.md), [Arch IfcExplorer](Arch_IfcExplorer.md) --- +# Arch IfcSpreadsheet + ## Description This tool creates a spreadsheet to store [IFC](Arch_IFC.md) properties of an object. @@ -44,7 +46,5 @@ FreeCAD.ActiveDocument.recompute() spreadsheet = Arch.makeIfcSpreadsheet(Wall) ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcSpreadsheet diff --git a/wiki/Arch_JSON.md b/wiki/Arch_JSON.md index 590be5dfbb..7707851552 100644 --- a/wiki/Arch_JSON.md +++ b/wiki/Arch_JSON.md @@ -1,9 +1,4 @@ # Arch JSON - - - - - The main purpose of this export format is to make it easier to process FreeCAD model data from programming languages. The [JSON](http://json.org/) format is as follows: { @@ -32,3 +27,6 @@ Note that facets form triangles and their integer values reference points in the [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch JSON diff --git a/wiki/Arch_MakeIfcSpreadsheet.md b/wiki/Arch_MakeIfcSpreadsheet.md index b15888edcf..522bffa75e 100644 --- a/wiki/Arch_MakeIfcSpreadsheet.md +++ b/wiki/Arch_MakeIfcSpreadsheet.md @@ -1,2 +1,5 @@ # Arch MakeIfcSpreadsheet 1. REDIRECT [Arch\_IfcSpreadsheet](Arch_IfcSpreadsheet.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MakeIfcSpreadsheet diff --git a/wiki/Arch_MergeWalls.md b/wiki/Arch_MergeWalls.md index 7b36464474..28dc2d05fd 100644 --- a/wiki/Arch_MergeWalls.md +++ b/wiki/Arch_MergeWalls.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md) --- +# Arch MergeWalls + ## Description The [MergeWalls](Arch_MergeWalls.md) tool fuses two or more selected ** [Arch Walls](Arch_Wall.md)**. @@ -47,7 +49,5 @@ FreeCAD.ActiveDocument.recompute() base = Arch.joinWalls([Wall1, Wall2]) ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MergeWalls diff --git a/wiki/Arch_MeshToShape.md b/wiki/Arch_MeshToShape.md index da861ac40e..2f326e1301 100644 --- a/wiki/Arch_MeshToShape.md +++ b/wiki/Arch_MeshToShape.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch RemoveShape](Arch_RemoveShape.md) --- +# Arch MeshToShape + ## Description [Arch MeshToShape](Arch_MeshToShape.md) converts a selected [Mesh](Mesh.md) ([Mesh Feature](Mesh_Feature.md)) object into a [Shape](Shape.md) ([Part Feature](Part_Feature.md)) object. @@ -58,7 +60,5 @@ FreeCAD.ActiveDocument.recompute() new_obj = Arch.meshToShape(Box) ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MeshToShape diff --git a/wiki/Arch_Module.md b/wiki/Arch_Module.md index 3da8154ed2..8a1a88b45c 100644 --- a/wiki/Arch_Module.md +++ b/wiki/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module 1. REDIRECT [Arch\_Workbench](Arch_Workbench.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module diff --git a/wiki/Arch_MultiMaterial.md b/wiki/Arch_MultiMaterial.md index f44a140696..9b68048130 100644 --- a/wiki/Arch_MultiMaterial.md +++ b/wiki/Arch_MultiMaterial.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SetMaterial](Arch_SetMaterial.md), [Arch CompSetMaterial](Arch_CompSetMaterial.md) --- +# Arch MultiMaterial + ## Description The Multi-Material tool defines a list of [materials](Material.md) with, for each material, a name and a thickness value. This multi-materials list can then be added to an [Arch](Arch_Workbench.md) object instead of a single [Arch Material](Arch_SetMaterial.md) . @@ -48,7 +50,5 @@ This roughly corresponds to a combination of [IfcMaterialLayerSet](https://stand ## Scripting - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MultiMaterial diff --git a/wiki/Arch_Nest.md b/wiki/Arch_Nest.md index 83a65c5d26..5f7a6eb927 100644 --- a/wiki/Arch_Nest.md +++ b/wiki/Arch_Nest.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Panel](Arch_Panel.md), [Arch Panel Sheet](Arch_Panel_Sheet.md) --- +# Arch Nest + ## Description The ** [Arch Nest](Arch_Nest.md)** tool allows to select a flat shape to be a container, and a series of other flat shapes to be organized inside the space defined by the container shape. This is typically needed for CNC operations, where you want to cut a series of pieces out of a base panel, and need to organize those pieces in the best possible compact way so they occupy less space on the panel. @@ -38,7 +40,5 @@ The algorithm behind the Nest tool is in constant evolution, and is currently no - At the moment, margin / spacing between the pieces is not implemented yet - The calculation can take a lot of time with many objects. That will be optimized in the future - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Nest diff --git a/wiki/Arch_OBJ.md b/wiki/Arch_OBJ.md index 848bd6bcb0..6b35115ef7 100644 --- a/wiki/Arch_OBJ.md +++ b/wiki/Arch_OBJ.md @@ -1,9 +1,4 @@ # Arch OBJ - - - - - ## Description Additionally to the standard FreeCAD [OBJ](http://en.wikipedia.org/wiki/Wavefront_.obj_file) exporter, the [Arch Workbench](Arch_Workbench.md) features an alternative exporter that exports coplanar faces as whole OBJ faces, instead of triangulating [Shape](Shape.md)-based objects, like the standard exporter does. @@ -52,3 +47,6 @@ mesh.write(Filename="new_example.obj", Material=face_colors, Format="obj") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch OBJ diff --git a/wiki/Arch_Panel.md b/wiki/Arch_Panel.md index 62258667f8..9f8ed96cbc 100644 --- a/wiki/Arch_Panel.md +++ b/wiki/Arch_Panel.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Panel Cut](Arch_Panel_Cut.md), [Arch Panel Sheet](Arch_Panel_Sheet.md) --- +# Arch Panel + ## Description This tool allows you to build all kinds of panel-like elements, typically for panel constructions like the [WikiHouse](http://www.wikihouse.cc/) project, but also for all kinds of objects that are based on a flat profile. @@ -89,7 +91,5 @@ Panel = Arch.makePanel(Rect, thickness=36) - [Wikihouse porting tutorial](Wikihouse_porting_tutorial.md) - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel diff --git a/wiki/Arch_Panel_Cut.md b/wiki/Arch_Panel_Cut.md index dbf2263b38..2fce353ca1 100644 --- a/wiki/Arch_Panel_Cut.md +++ b/wiki/Arch_Panel_Cut.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Panel](Arch_Panel.md), [Arch Panel Sheet](Arch_Panel_Sheet.md), [Arch Nest](Arch_Nest.md) --- +# Arch Panel Cut + ## Description This tool creates, in the 3D document, a flat, 2D view of an [Arch Panel](Arch_Panel.md), to be included in an [Arch Panel Sheet](Arch_Panel_Sheet.md) or directly exported to [DXF](Draft_DXF.md). The Panel Cut objects are also supported by the [Path Workbench](Path_Workbench.md). @@ -95,7 +97,5 @@ FreeCAD.ActiveDocument.recompute() - [Wikihouse porting tutorial](Wikihouse_porting_tutorial.md) - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Cut diff --git a/wiki/Arch_Panel_Sheet.md b/wiki/Arch_Panel_Sheet.md index 40b9b68d12..05bb9c6652 100644 --- a/wiki/Arch_Panel_Sheet.md +++ b/wiki/Arch_Panel_Sheet.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Panel](Arch_Panel.md), [Arch Panel Cut](Arch_Panel_Cut.md), [Arch Nest](Arch_Nest.md) --- +# Arch Panel Sheet + ## Description This tool allows to build a 2D sheet, including any number of [Arch Panel Cut](Arch_Panel_Cut.md) objects, or any other 2D object such as those made by the [Draft Workbench](Draft_Workbench.md) and [Sketcher Workbench](Sketcher_Workbench.md). The Panel Sheet is typically made to layout cuts to be made by a CNC machine. These sheets can then be exported to a [DXF](Draft_DXF.md) file. @@ -113,7 +115,5 @@ Sheet = Arch.makePanelSheet([Cut1, Cut2, Cut3]) - [Wikihouse porting tutorial](Wikihouse_porting_tutorial.md) - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Sheet diff --git a/wiki/Arch_Pipe.md b/wiki/Arch_Pipe.md index ad203379fc..fc08017a86 100644 --- a/wiki/Arch_Pipe.md +++ b/wiki/Arch_Pipe.md @@ -8,6 +8,8 @@ SeeAlso:[Arch PipeConnector](Arch_PipeConnector.md), [Arch Equipment](Arch_Equipment.md) --- +# Arch Pipe + ## Description This tool allows to create pipes from scratch, or from selected objects. The selected objects must be Part-based (Draft, Sketch, etc..) and contain one and only one open Wire. @@ -108,9 +110,5 @@ Pipe2 = Arch.makePipe(diameter=120, length=3000) FreeCAD.ActiveDocument.recompute() ``` - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Pipe diff --git a/wiki/Arch_PipeConnector.md b/wiki/Arch_PipeConnector.md index df4193015b..dc0581b3db 100644 --- a/wiki/Arch_PipeConnector.md +++ b/wiki/Arch_PipeConnector.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Pipe](Arch_Pipe.md), [Arch Equipment](Arch_Equipment.md) --- +# Arch PipeConnector + ## Description This tool allows to create corner or tee connection between two or three selected [Arch Pipes](Arch_Pipe.md). @@ -73,10 +75,5 @@ Conn3 = Arch.makePipeConnector([Pipe4, Pipe5], radius=400) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch PipeConnector diff --git a/wiki/Arch_Preferences.md b/wiki/Arch_Preferences.md index 195f707945..209f62a67c 100644 --- a/wiki/Arch_Preferences.md +++ b/wiki/Arch_Preferences.md @@ -1,6 +1,4 @@ # Arch Preferences - - The preferences for the [Arch Workbench](Arch_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), in the menu **Edit → Preferences → Arch**. There are two tabs: General settings, and Defaults. @@ -16,3 +14,6 @@ There are two tabs: General settings, and Defaults. [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Preferences diff --git a/wiki/Arch_Profile.md b/wiki/Arch_Profile.md index 30947bf28a..14f25b02bf 100644 --- a/wiki/Arch_Profile.md +++ b/wiki/Arch_Profile.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Arch Profile + ## Description The Profile tool builds a parametric 2D profile object. This object can then be used as a base in different other tools that perform extrusions, such as [Arch Frame](Arch_Frame.md), [Arch CurtainWall](Arch_CurtainWall.md) or [Part Extrude](Part_Extrude.md). @@ -88,7 +90,5 @@ Arch.makeProfile([0,'REC','REC100x100','R',100,100]) Where the first element of the list is an order number that is not used yet. - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Profile diff --git a/wiki/Arch_Project.md b/wiki/Arch_Project.md index eb8260a812..6d160a024b 100644 --- a/wiki/Arch_Project.md +++ b/wiki/Arch_Project.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Site](Arch_Site.md), [Arch Building](Arch_Building.md) --- +# Arch Project + ## Description The Arch Project is a special object suitable to add better compatibility with [IFC](Arch_IFC.md) files. Every IFC file is required to contain an [IfcProject](https://standards.buildingsmart.org/IFC/RELEASE/IFC4_1/FINAL/HTML/schema/ifckernel/lexical/ifcproject.htm) entity. The IfcProject is mostly used to define general project settings such as projection systems, for GIS compatibility, or units systems. @@ -20,7 +22,5 @@ Note that, although any other BIM object can be added to a Project, which the IF 1. Press the ** [Arch Project](Arch_Project.md)** button, or press the **P** then **O** keys. 2. Add any object to your project by drag-and-dropping them onto the Project in the [Tree view](Tree_view.md). - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Project diff --git a/wiki/Arch_Rebar.md b/wiki/Arch_Rebar.md index c08edfa2f2..ea34f8ccf8 100644 --- a/wiki/Arch_Rebar.md +++ b/wiki/Arch_Rebar.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md), [Reinforcement](Reinforcement_Workbench.md) --- +# Arch Rebar + ## Description The [Arch Rebar](Arch_Rebar.md) tool allows you to place [reinforcing bars](http://en.wikipedia.org/wiki/Rebar) inside [Arch Structure](Arch_Structure.md) objects. @@ -119,3 +121,6 @@ FreeCAD.ActiveDocument.recompute() [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar diff --git a/wiki/Arch_Rebar_BOM.md b/wiki/Arch_Rebar_BOM.md index 0d9e76653b..772e900603 100644 --- a/wiki/Arch_Rebar_BOM.md +++ b/wiki/Arch_Rebar_BOM.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Reinforcement Bar Bending Schedule](Reinforcement_Bar_Bending_Schedule.md), [Arch Rebar Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) --- +# Arch Rebar BOM + ## Description The [Bill Of Material](Arch_Rebar_BOM.md) tool allows the user to create a bill of material of reinforcing bars. @@ -555,3 +557,6 @@ BillOfMaterial_SVG.makeBillOfMaterialSVG( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BOM diff --git a/wiki/Arch_Rebar_BeamReinforcement.md b/wiki/Arch_Rebar_BeamReinforcement.md index 35c2d26885..6778647eee 100644 --- a/wiki/Arch_Rebar_BeamReinforcement.md +++ b/wiki/Arch_Rebar_BeamReinforcement.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) --- +# Arch Rebar BeamReinforcement + ## Description The [Beam Reinforcement](Arch_Rebar_BeamReinforcement.md) tool allows the user to create reinforcing bars inside a Beam [Arch Structure](Arch_Structure.md) object. @@ -416,3 +418,6 @@ RebarGroup = TwoLeggedBeam.makeReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BeamReinforcement diff --git a/wiki/Arch_Rebar_BentShape.md b/wiki/Arch_Rebar_BentShape.md index b812f88640..21dfbf3e52 100644 --- a/wiki/Arch_Rebar_BentShape.md +++ b/wiki/Arch_Rebar_BentShape.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Stirrup](Arch_Rebar_Stirrup.md) --- +# Arch Rebar BentShape + ## Description The [BentShape Rebar](Arch_Rebar_BentShape.md) tool allows the user to create a set of bent reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -151,3 +153,6 @@ BentShapeRebar.editBentShapeRebar(Rebar2, 50, 35, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BentShape diff --git a/wiki/Arch_Rebar_Circular_ColumnReinforcement.md b/wiki/Arch_Rebar_Circular_ColumnReinforcement.md index d8142029d8..5a56d9cef1 100644 --- a/wiki/Arch_Rebar_Circular_ColumnReinforcement.md +++ b/wiki/Arch_Rebar_Circular_ColumnReinforcement.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md), [Arch Rebar](Arch_Rebar.md) --- +# Arch Rebar Circular ColumnReinforcement + ## Description The [Column Reinforcement](Arch_Rebar_Circular_ColumnReinforcement.md) tool allows the user to create reinforcing bars inside a Column [Arch Structure](Arch_Structure.md) object. @@ -200,3 +202,6 @@ rebar_group = CircularColumn.editReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Circular ColumnReinforcement diff --git a/wiki/Arch_Rebar_ColumnReinforcement.md b/wiki/Arch_Rebar_ColumnReinforcement.md index 457b2e6886..07cc0f9c77 100644 --- a/wiki/Arch_Rebar_ColumnReinforcement.md +++ b/wiki/Arch_Rebar_ColumnReinforcement.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Helical Rebar](Arch_Rebar_Helical.md), [Arch ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) --- +# Arch Rebar ColumnReinforcement + ## Description The [Column Reinforcement](Arch_Rebar_ColumnReinforcement.md) tool allows the user to create reinforcing bars inside a Column [Arch Structure](Arch_Structure.md) object. @@ -577,3 +579,6 @@ rebar_group = SingleTieMultipleRebars.editSingleTieMultipleRebars( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar ColumnReinforcement diff --git a/wiki/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md b/wiki/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md index 805029169a..bd3b4b3a0a 100644 --- a/wiki/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md +++ b/wiki/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Rebar ColumnReinforcement TwoTiesSixRebars + ## Description The [Column Reinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) tool allows the user to create reinforcing bars (Two Ties Six Rebars) inside a Column [Arch Structure](Arch_Structure.md) object. @@ -347,3 +349,6 @@ rebar_group = TwoTiesSixRebars.editTwoTiesSixRebars( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar ColumnReinforcement TwoTiesSixRebars diff --git a/wiki/Arch_Rebar_Dimensioning.md b/wiki/Arch_Rebar_Dimensioning.md index 0256c2ef4c..88dacffe4a 100644 --- a/wiki/Arch_Rebar_Dimensioning.md +++ b/wiki/Arch_Rebar_Dimensioning.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Rebar Dimensioning + Please Note: The below work is present in develop branch of Reinforcement workbench [here](https://github.com/amrit3701/FreeCAD-Reinforcement/tree/develop) ## Description @@ -366,3 +368,6 @@ for visible_rebar in visible_rebars: [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Dimensioning diff --git a/wiki/Arch_Rebar_Drawing.md b/wiki/Arch_Rebar_Drawing.md index 60632b0da8..e8b7ecafb1 100644 --- a/wiki/Arch_Rebar_Drawing.md +++ b/wiki/Arch_Rebar_Drawing.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Rebar Drawing + Please Note: The below work is present in develop branch of Reinforcement workbench [here](https://github.com/amrit3701/FreeCAD-Reinforcement/tree/develop) ## Description @@ -411,3 +413,6 @@ for drawing_view in ("Front", "Rear", "Left", "Right", "Top", "Bottom"): [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Drawing diff --git a/wiki/Arch_Rebar_Drawing_Dimensioning.md b/wiki/Arch_Rebar_Drawing_Dimensioning.md index 6feeb91342..f891e9fe17 100644 --- a/wiki/Arch_Rebar_Drawing_Dimensioning.md +++ b/wiki/Arch_Rebar_Drawing_Dimensioning.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar Bill Of Material](Arch_Rebar_BOM.md), [Reinforcement Rebar Shape Cut List](Reinforcement_Bar_Shape_Cut_List.md) --- +# Arch Rebar Drawing Dimensioning + ## Description The [Reinforcement Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) tool allows the user to create drawing and dimensioning of reinforcing bars. @@ -1140,3 +1142,6 @@ for visible_rebar in visible_rebars: [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Drawing Dimensioning diff --git a/wiki/Arch_Rebar_Footing_Reinforcement.md b/wiki/Arch_Rebar_Footing_Reinforcement.md index 5663750671..26f37e99ed 100644 --- a/wiki/Arch_Rebar_Footing_Reinforcement.md +++ b/wiki/Arch_Rebar_Footing_Reinforcement.md @@ -6,6 +6,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md) --- +# Arch Rebar Footing Reinforcement + ## Description The [Footing Reinforcement](Arch_Rebar_Footing_Reinforcement.md) tool allows the user to create reinforcing bars inside a Footing [Arch Structure](Arch_Structure.md) object. @@ -504,3 +506,6 @@ footingReinforcementGroup = editFootingReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Footing Reinforcement diff --git a/wiki/Arch_Rebar_Helical.md b/wiki/Arch_Rebar_Helical.md index 5fbfa71853..b60c413010 100644 --- a/wiki/Arch_Rebar_Helical.md +++ b/wiki/Arch_Rebar_Helical.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Stirrup](Arch_Rebar_Stirrup.md), [Arch Rebar Column Reinforcement](Arch_Rebar_ColumnReinforcement.md) --- +# Arch Rebar Helical + ## Description The [Helical Rebar](Arch_Rebar_Helical.md) tool allows the user to create a continuous helical reinforcing bar inside an [Arch Structure](Arch_Structure.md) object. @@ -125,3 +127,6 @@ HelicalRebar.editHelicalRebar(Rebar, 20, 100, 20, 20, 100) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Helical diff --git a/wiki/Arch_Rebar_LShape.md b/wiki/Arch_Rebar_LShape.md index 426e6ba414..0df2f5a1d6 100644 --- a/wiki/Arch_Rebar_LShape.md +++ b/wiki/Arch_Rebar_LShape.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Bent](Arch_Rebar_BentShape.md) --- +# Arch Rebar LShape + ## Description The [LShape Rebar](Arch_Rebar_LShape.md) tool allows the user to create a set of L-shaped reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -146,3 +148,6 @@ LShapeRebar.editLShapeRebar(Rebar2, 50, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar LShape diff --git a/wiki/Arch_Rebar_Slab_Reinforcement.md b/wiki/Arch_Rebar_Slab_Reinforcement.md index 78b8be0aa1..80ff33eab8 100644 --- a/wiki/Arch_Rebar_Slab_Reinforcement.md +++ b/wiki/Arch_Rebar_Slab_Reinforcement.md @@ -6,6 +6,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Helical Rebar](Arch_Rebar_Helical.md) --- +# Arch Rebar Slab Reinforcement + ## Description The [Slab Reinforcement](Arch_Rebar_Slab_Reinforcement.md) tool allows the user to create reinforcing bars inside a Slab [Arch Structure](Arch_Structure.md) object. @@ -343,3 +345,6 @@ slabReinforcementGroup = editSlabReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Slab Reinforcement diff --git a/wiki/Arch_Rebar_Stirrup.md b/wiki/Arch_Rebar_Stirrup.md index 05ecbbf59c..7e26226239 100644 --- a/wiki/Arch_Rebar_Stirrup.md +++ b/wiki/Arch_Rebar_Stirrup.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Helical](Arch_Rebar_Helical.md) --- +# Arch Rebar Stirrup + ## Description The [Stirrup Rebar](Arch_Rebar_Stirrup.md) tool allows the user to create a set of stirrup reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -142,3 +144,6 @@ Stirrup.editStirrup(Rebar, 20, 20, 20, 20, 50, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Stirrup diff --git a/wiki/Arch_Rebar_Straight.md b/wiki/Arch_Rebar_Straight.md index bdd7022adc..48a205b237 100644 --- a/wiki/Arch_Rebar_Straight.md +++ b/wiki/Arch_Rebar_Straight.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch Rebar Straight + ## Description The [Arch Straight Rebar](Arch_Rebar_Straight.md) tool allows the user to create a set of straight reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -204,3 +206,6 @@ StraightRebar.editStraightRebar(Rebar4, 50, ("Right Side", 50), 100, 100, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Straight diff --git a/wiki/Arch_Rebar_UShape.md b/wiki/Arch_Rebar_UShape.md index a5e73e42a4..d421384011 100644 --- a/wiki/Arch_Rebar_UShape.md +++ b/wiki/Arch_Rebar_UShape.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch Rebar UShape + ## Description The ** [UShape Rebar](Arch_Rebar_UShape.md)** tool allows the user to create a set of U-shaped reinforcing bars inside an ** [Arch Structure](Arch_Structure.md)** object. @@ -146,3 +148,6 @@ UShapeRebar.editUShapeRebar(Rebar2, 70, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar UShape diff --git a/wiki/Arch_Reference.md b/wiki/Arch_Reference.md index 34b54130e2..dd0cbac1ba 100644 --- a/wiki/Arch_Reference.md +++ b/wiki/Arch_Reference.md @@ -6,6 +6,8 @@ SeeAlso:[Arch BuildingPart](Arch_BuildingPart.md) --- +# Arch Reference + ## Description @@ -50,7 +52,5 @@ import Arch Arch.makeReference("/path/to/some/file.FSCtd","myPart") ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Reference diff --git a/wiki/Arch_Remove.md b/wiki/Arch_Remove.md index f1f747a0cb..22883cbe85 100644 --- a/wiki/Arch_Remove.md +++ b/wiki/Arch_Remove.md @@ -6,6 +6,8 @@ SeeAlso:[Arch CutLine](Arch_CutLine.md), [Arch CutPlane](Arch_CutPlane.md), [Arch Add](Arch_Add.md) --- +# Arch Remove + ## Description The Remove tools allows you to do 2 kinds of operations: @@ -62,9 +64,7 @@ Draft.move(Box, FreeCAD.Vector(1000, 700, 0)) Arch.removeComponents(Box, Wall) FreeCAD.ActiveDocument.recompute() -``` - - - - +``` +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove diff --git a/wiki/Arch_RemoveShape.md b/wiki/Arch_RemoveShape.md index 4aef4a212d..5a86fd122a 100644 --- a/wiki/Arch_RemoveShape.md +++ b/wiki/Arch_RemoveShape.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch RemoveShape + ## Description This tool attempts at removing the inner cubic shape of an ** [Arch Wall](Arch_Wall.md)** or ** [Arch Structure](Arch_Structure.md)**, and adjusting its properties, making it totally parametric. This tool will only work if the underlying shape is cubic (exactly 6 faces, all corners have only right angles). @@ -52,7 +54,5 @@ Arch.removeShape(Structure) FreeCAD.ActiveDocument.recompute() ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch RemoveShape diff --git a/wiki/Arch_Roof.md b/wiki/Arch_Roof.md index eb71ef4eaf..285c6f6e88 100644 --- a/wiki/Arch_Roof.md +++ b/wiki/Arch_Roof.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md), [Arch Wall](Arch_Wall.md) --- +# Arch Roof + ## Description The ** [Arch Roof](Arch_Roof.md)** tool allows for the creation of a sloped roof from a selected wire. The created roof object is parametric, keeping its relationship with the base object. The principle is that each edge is seen allotting a profile of roof (slope, width, overhang, thickness). @@ -106,7 +108,5 @@ roof1 = Arch.makeRoof(wire) doc.recompute() ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Roof diff --git a/wiki/Arch_SHP.md b/wiki/Arch_SHP.md index 42ba205bd0..9a23c4f300 100644 --- a/wiki/Arch_SHP.md +++ b/wiki/Arch_SHP.md @@ -1,5 +1,5 @@ # Arch SHP - FreeCAD is able to import [shapefiles](https://en.wikipedia.org/wiki/Shapefile) +FreeCAD is able to import [shapefiles](https://en.wikipedia.org/wiki/Shapefile) The importer uses the shapefile.py library from , it is not found on your system on first run, the importer will propose to download and install it for you. @@ -20,3 +20,6 @@ Note that all the question of georeferenced units, with hundreds of projection s [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SHP diff --git a/wiki/Arch_Schedule.md b/wiki/Arch_Schedule.md index d9934cc609..056884e6f4 100644 --- a/wiki/Arch_Schedule.md +++ b/wiki/Arch_Schedule.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Equipment](Arch_Equipment.md) --- +# Arch Schedule + ## Description The Schedule tool allows you to create and automatically populate a [spreadsheet](Spreadsheet_Workbench.md) with contents gathered from the model. @@ -96,7 +98,5 @@ The spreadsheet can then be exported to csv normally, from the Spreadsheet workb It is possible to add your own properties to objects. These are called [Dynamic properties](Property_editor#Actions.md). If they have been added with the **Prefix group name** option selected, their names will indeed start with the group name, but this prefix is not displayed in the [Property editor](Property_editor.md). Their names have this form: `NameOfGroup_NameOfProperty`. To reference them in a schedule this full name must be used. - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Schedule diff --git a/wiki/Arch_SectionPlane.md b/wiki/Arch_SectionPlane.md index f26aa94167..562623f13f 100644 --- a/wiki/Arch_SectionPlane.md +++ b/wiki/Arch_SectionPlane.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Shape2DView](Draft_Shape2DView.md), [TechDraw ArchView](TechDraw_ArchView.md) --- +# Arch SectionPlane + ## Description This tool places in the current document a section plane \"thing\", which defines a section or view plane. The \"thing\" takes its placement according to the current [Draft Working Plane](Draft_SelectPlane.md) and can be relocated and reoriented by moving and rotating it, until it describes the 2D view you want to obtain. The Section plane object will only consider a certain set of objects. Objects that are selected when you create a Section Plane will be added to that set automatically. Other objects can later be added or removed from a SectionPlane object with the [Arch Add component](Arch_Add.md) and [Arch Remove component](Arch_Remove.md) tools, or by double-clicking the Section Plane in the tree view. @@ -108,10 +110,5 @@ Section3 = Arch.makeSectionPlane([Site]) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane diff --git a/wiki/Arch_SelectNonSolidMeshes.md b/wiki/Arch_SelectNonSolidMeshes.md index 0d76a2264f..b7cb86e97f 100644 --- a/wiki/Arch_SelectNonSolidMeshes.md +++ b/wiki/Arch_SelectNonSolidMeshes.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch SelectNonSolidMeshes + ## Description This tool identifies and selects the non-solid (non-[manifold](http://en.wikipedia.org/wiki/Manifold)) meshes in a selected group of selected Mesh Workbench [Mesh](Mesh_Workbench.md) objects. @@ -15,7 +17,5 @@ This tool identifies and selects the non-solid (non-[manifold](http://en.wikiped 1. Select a mesh object. 2. Press the ** [Select non solid](Arch_SelectNonSolidMeshes.md)** entry in **Arch → Utilities → Select non solid**. - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SelectNonSolidMeshes diff --git a/wiki/Arch_SetMaterial.md b/wiki/Arch_SetMaterial.md index b35585db36..70c2a8bf7f 100644 --- a/wiki/Arch_SetMaterial.md +++ b/wiki/Arch_SetMaterial.md @@ -7,6 +7,8 @@ SeeAlso:[Arch CompSetMaterial](Arch_CompSetMaterial.md), [Arch MultiMaterial](Arch_MultiMaterial.md) --- +# Arch SetMaterial + ## Description The Material tools allows to add [materials](Material.md) to the active document, and attribute a material to an [Arch](Arch_Workbench.md) object. Materials can all the properties of a certain material, and control the color of the object to which it is attached. Materials are stored into a **Materials** folder in the active document. @@ -44,7 +46,5 @@ The Material tools allows to add [materials](Material.md) to the active document This roughly corresponds to [IfcMaterial](https://standards.buildingsmart.org/IFC/DEV/IFC4_2/FINAL/HTML/link/ifcmaterial.htm). - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SetMaterial diff --git a/wiki/Arch_Site.md b/wiki/Arch_Site.md index aa5cb43d2a..644f1b2bce 100644 --- a/wiki/Arch_Site.md +++ b/wiki/Arch_Site.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Floor](Arch_Floor.md), [Arch Building](Arch_Building.md) --- +# Arch Site + ## Description The Arch Site is a special object that combines properties of a standard FreeCAD group object and Arch objects. It is particularly suited for representing a whole project site, or terrain. In IFC-based architectural work, it is mostly used to organize your model, by containing [building](Arch_Building.md) objects. The site is also used to manage and display a physical terrain, and can computes volumes of earth to be added or removed. @@ -163,7 +165,5 @@ Node = Arch.makeSolarDiagram(-46.38, -23.33, scale=10000, complete=True) FreeCAD.Gui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node) ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Site diff --git a/wiki/Arch_Space.md b/wiki/Arch_Space.md index dcbbe86042..f5a5b3538b 100644 --- a/wiki/Arch_Space.md +++ b/wiki/Arch_Space.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Structure](Arch_Structure.md) --- +# Arch Space + ## Description The Space tool allows you to define an empty volume, either by basing it on a solid shape, or by defining its boundaries, or a mix of both. If it is based solely on boundaries, the volume is calculated by starting from the bounding box of all the given boundaries, and subtracting the spaces behind each boundary. The space object always defines a solid volume. The floor area of a space object, calculated by intersecting a horizontal plane at the center of mass of the space volume, can also be displayed. @@ -136,6 +138,5 @@ selection = FreeCADGui.Selection.getSelectionEx() Arch.removeSpaceBoundaries(Space, selection) ``` - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Space diff --git a/wiki/Arch_SplitMesh.md b/wiki/Arch_SplitMesh.md index 9f0a116c18..2eab377fbc 100644 --- a/wiki/Arch_SplitMesh.md +++ b/wiki/Arch_SplitMesh.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SelectNonSolidMeshes](Arch_SelectNonSolidMeshes.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch SplitMesh + ## Description This tool splits a selected [Mesh](Mesh_Workbench.md) object into its separate components @@ -55,10 +57,5 @@ mesh_obj.ViewObject.DisplayMode = "Flat Lines" new_list = Arch.splitMesh(mesh_obj) ``` - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SplitMesh diff --git a/wiki/Arch_Stairs.md b/wiki/Arch_Stairs.md index af705dac5d..0020d20765 100644 --- a/wiki/Arch_Stairs.md +++ b/wiki/Arch_Stairs.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md), [Arch Equipment](Arch_Equipment.md) --- +# Arch Stairs + ## Description The [Arch Stairs](Arch_Stairs.md) tool allows you to build automatically several types of stairs. At the moment, only straight stairs (with or without a central landing) are supported. Stairs can be built from scratch, or from a straight [line](Draft_Line.md), in which case the stairs follow the line. If the line is not horizontal but has a vertical inclination, the stairs will also follow its slope. @@ -94,7 +96,5 @@ import Arch Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14) ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Stairs diff --git a/wiki/Arch_Structure.md b/wiki/Arch_Structure.md index c848ed133e..38aebbac8c 100644 --- a/wiki/Arch_Structure.md +++ b/wiki/Arch_Structure.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Rebar](Arch_Rebar.md) --- +# Arch Structure + ## Description The [Arch Structure](Arch_Structure.md) tool allows you to build structural elements such as columns or beams, by specifying their width, length and height, or by basing them on a 2D profile (face, wire or sketch). @@ -114,9 +116,7 @@ FreeCAD.ActiveDocument.recompute() Structure2 = Arch.makeStructure(None, length=500, width=1000, height=3000) Draft.move(Structure2, FreeCAD.Vector(2000, 0, 0)) FreeCAD.ActiveDocument.recompute() -``` - - - - +``` +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure diff --git a/wiki/Arch_Survey.md b/wiki/Arch_Survey.md index 8b7eb84d79..1103a02bce 100644 --- a/wiki/Arch_Survey.md +++ b/wiki/Arch_Survey.md @@ -6,6 +6,8 @@ SeeAlso:[Macro FCInfo](Macro_FCInfo.md), [Macro SimpleProperties](Macro_SimpleProperties.md) --- +# Arch Survey + ## Description The ** [Arch Survey](Arch_Survey.md)** tool enters a special surveying mode, which allows you to quickly grab measurements and information from a model, and transfer that information to other applications. Once you are in Survey mode, clicking on different subelements of 3D objects gathers the following information (depending on what you click): @@ -64,7 +66,5 @@ for obj in selection: print("Center of Mass: %f", element.CenterOfMass) ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Survey diff --git a/wiki/Arch_ToggleIfcBrepFlag.md b/wiki/Arch_ToggleIfcBrepFlag.md index 86d4d73ec7..684075ad6e 100644 --- a/wiki/Arch_ToggleIfcBrepFlag.md +++ b/wiki/Arch_ToggleIfcBrepFlag.md @@ -6,6 +6,8 @@ SeeAlso:[Arch IfcExplorer](Arch_IfcExplorer.md), [Arch IFC](Arch_IFC.md) --- +# Arch ToggleIfcBrepFlag + ## Description This tool turns the IfcBrep flag of a selected [Arch](Arch_Workbench.md) object on/off (the default is always off). If the flag in on, when exported to IFC, the object will be exported as an [IfcFacetedBrep](http://www.buildingsmart-tech.org/ifc/IFC4/final/html/schema/ifcgeometricmodelresource/lexical/ifcfacetedbrep.htm) object, even if a higher-level kind of export such as IfcExtrudedAreaSolid or IfcBooleanResult is possible. Although IfcFacetedBrep objects are heavier and less editable (they loose some geometry information such as the modeling history), they are often less error-prone. Setting this flag allows to solve some cases of objects that are not exported correctly when the flag is not set. @@ -15,10 +17,5 @@ This tool turns the IfcBrep flag of a selected [Arch](Arch_Workbench.md) object 1. Select an Arch object. 2. Select the **** button, or **Arch** → **Utilities** → ** [Toggle IfcBrepFlag](Arch_ToggleIfcBrepFlag.md)** from the top menu. - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleIfcBrepFlag diff --git a/wiki/Arch_ToggleSubs.md b/wiki/Arch_ToggleSubs.md index 4243d719cc..45abf095ff 100644 --- a/wiki/Arch_ToggleSubs.md +++ b/wiki/Arch_ToggleSubs.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Component](Arch_Component.md) --- +# Arch ToggleSubs + ## Description This tools toggles the visibility of all the subtractions of an [Arch](Arch_Workbench.md) object between visible and hidden. @@ -26,7 +28,5 @@ The color of a subtraction element can follow the style of [Draft construction]( The [Draft construction](Draft_ToggleConstructionMode.md) style can be set in the [Draft Preferences](Draft_Preferences.md), in the menu **Preferences → Draft → General Draft**. - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleSubs diff --git a/wiki/Arch_Truss.md b/wiki/Arch_Truss.md index 2d4e6a7796..352f51f02f 100644 --- a/wiki/Arch_Truss.md +++ b/wiki/Arch_Truss.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Arch Truss + ## Description The [Arch Truss](Arch_Truss.md) tool builds a [truss](https://en.wikipedia.org/wiki/Truss) object, either from a selected linear object (lie a [Draft Line](Draft_Line.md) or [Sketch](Sketcher_NewSketch.md)), or from scratch, if no object is selected when launching the command. @@ -89,7 +91,5 @@ truss.HeightEnd = 400 # adjust other needed properties ``` - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Truss diff --git a/wiki/Arch_Wall.md b/wiki/Arch_Wall.md index 5e85004d0c..7eff035485 100644 --- a/wiki/Arch_Wall.md +++ b/wiki/Arch_Wall.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md) --- +# Arch Wall + ## Description This tool builds a Wall object from scratch or on top of any other [shape](Part_Workbench.md)-based or [mesh](Mesh_Workbench.md)-based object. A wall can be built without any base object, in which case it behaves as a cubic volume, using length, width and height properties. When built on top of an existing shape, a wall can be based on: @@ -137,10 +139,5 @@ Draft.move(Wall2, FreeCAD.Vector(0, -1000, 0)) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall diff --git a/wiki/Arch_Window.md b/wiki/Arch_Window.md index 0449369dcf..60c19f5e37 100644 --- a/wiki/Arch_Window.md +++ b/wiki/Arch_Window.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Add](Arch_Add.md) --- +# Arch Window + ## Description An [Arch Window](Arch_Window.md) is a base object for all kinds of \"embeddable\" objects, such as windows and doors. It is designed to be either independent, or \"hosted\" inside another component such as an [Arch Wall](Arch_Wall.md), [Arch Structure](Arch_Structure.md), or [Arch Roof](Arch_Roof.md). It has its own geometry, that can be made of several solid components (commonly a frame and inner panels), and also defines a volume to be subtracted from the host objects, in order to create an opening. @@ -220,9 +222,5 @@ Door = Arch.makeWindowPreset("Simple door", placement=place) ``` - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Window diff --git a/wiki/Arch_Workbench.md b/wiki/Arch_Workbench.md index 545d89ff61..2765e2c306 100644 --- a/wiki/Arch_Workbench.md +++ b/wiki/Arch_Workbench.md @@ -1,10 +1,4 @@ -# Arch Workbench - - - - - -Arch workbench icon +# Arch workbench icon Arch Workbench @@ -142,3 +136,6 @@ The Arch module can be used in [Python](Python.md) scripts and [macros](macros.m [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench diff --git a/wiki/Arch_panel_tutorial.md b/wiki/Arch_panel_tutorial.md index dc749ca325..205e7dafbd 100644 --- a/wiki/Arch_panel_tutorial.md +++ b/wiki/Arch_panel_tutorial.md @@ -1,7 +1,4 @@ # Arch panel tutorial - - - {{TutorialInfo |Topic= Modeling an architectural panel |Level= Beginner @@ -198,4 +195,7 @@ Both Draft Rotate and Move tools make use of the Draft Snapping system. Differen {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch panel tutorial diff --git a/wiki/Arch_templates.md b/wiki/Arch_templates.md index d87871c95a..f9864c0594 100644 --- a/wiki/Arch_templates.md +++ b/wiki/Arch_templates.md @@ -1,5 +1,5 @@ # Arch templates - This page lists the templates according to American National Standards Institute [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) standard +This page lists the templates according to American National Standards Institute [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) standard ### Arch A @@ -94,3 +94,6 @@ The templates are drawn by [Quick61](User:Quick61.md) and listed [FreeCAD-Drawin [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch templates diff --git a/wiki/Arch_tutorial.md b/wiki/Arch_tutorial.md index 3b8f29300f..726bbcbeef 100644 --- a/wiki/Arch_tutorial.md +++ b/wiki/Arch_tutorial.md @@ -1,7 +1,4 @@ # Arch tutorial - - - {{TutorialInfo |Topic=Modeling |Level=Intermediate @@ -473,4 +470,7 @@ The file created during this tutorial can be found [here](http://yorik.uncreated {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch tutorial diff --git a/wiki/Artwork.md b/wiki/Artwork.md index d810b6e6aa..cc5f83304e 100644 --- a/wiki/Artwork.md +++ b/wiki/Artwork.md @@ -1,5 +1,5 @@ # Artwork - Here is the artwork that has been created for FreeCAD. Feel free to reuse in other applications. If you would like to contribute with icons, please read the [artwork guidelines](Artwork_Guidelines.md). +Here is the artwork that has been created for FreeCAD. Feel free to reuse in other applications. If you would like to contribute with icons, please read the [artwork guidelines](Artwork_Guidelines.md). ## Miscellaneous icons @@ -154,3 +154,6 @@ See [Artwork Erroneous](Artwork_Erroneous.md). {{Artwork}} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork diff --git a/wiki/Artwork_Arch.md b/wiki/Artwork_Arch.md index 9087d903db..5fd95d197f 100644 --- a/wiki/Artwork_Arch.md +++ b/wiki/Artwork_Arch.md @@ -1,5 +1,5 @@ # Artwork Arch - These icons are in the indicated source path. +These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -16,3 +16,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Arch](Category:Arch.md) + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Artwork Arch diff --git a/wiki/Artwork_Assembly.md b/wiki/Artwork_Assembly.md index 69e84da505..1c70a976b2 100644 --- a/wiki/Artwork_Assembly.md +++ b/wiki/Artwork_Assembly.md @@ -1,6 +1,4 @@ # Artwork Assembly - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -22,3 +20,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Assembly](Category:Assembly.md) + +--- +[documentation index](../README.md) > [Assembly](Category:Assembly.md) > Artwork Assembly diff --git a/wiki/Artwork_Assembly3.md b/wiki/Artwork_Assembly3.md index 6974b78a09..8ffffa0a99 100644 --- a/wiki/Artwork_Assembly3.md +++ b/wiki/Artwork_Assembly3.md @@ -1,6 +1,4 @@ # Artwork Assembly3 - - These icons are in the indicated source path of Realthunder\'s Link Branch: ## \.../Mod/asm3 @@ -32,3 +30,6 @@ These icons are in the indicated source path of Realthunder\'s Link Branch: [Category:Assembly](Category:Assembly.md) + +--- +[documentation index](../README.md) > [Assembly](Category:Assembly.md) > Artwork Assembly3 diff --git a/wiki/Artwork_Complete.md b/wiki/Artwork_Complete.md index 29bd3035ef..c2604f4df1 100644 --- a/wiki/Artwork_Complete.md +++ b/wiki/Artwork_Complete.md @@ -1,6 +1,4 @@ # Artwork Complete - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,4 +12,5 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork}} - +--- +[documentation index](../README.md) > Artwork Complete diff --git a/wiki/Artwork_Draft.md b/wiki/Artwork_Draft.md index 31400734a8..a22fe0ed7f 100644 --- a/wiki/Artwork_Draft.md +++ b/wiki/Artwork_Draft.md @@ -1,6 +1,4 @@ # Artwork Draft - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -21,3 +19,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Draft](Category:Draft.md) + +--- +[documentation index](../README.md) > [Draft](Category:Draft.md) > Artwork Draft diff --git a/wiki/Artwork_Drawing.md b/wiki/Artwork_Drawing.md index d33d537c17..0b60d342e3 100644 --- a/wiki/Artwork_Drawing.md +++ b/wiki/Artwork_Drawing.md @@ -1,6 +1,4 @@ # Artwork Drawing - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -48,4 +46,5 @@ The following image is \"A4\_Simple.svg\". It is an empty page. {{Artwork}} - +--- +[documentation index](../README.md) > Artwork Drawing diff --git a/wiki/Artwork_Erroneous.md b/wiki/Artwork_Erroneous.md index 1635dc6d3b..1c2d90e59d 100644 --- a/wiki/Artwork_Erroneous.md +++ b/wiki/Artwork_Erroneous.md @@ -1,6 +1,4 @@ # Artwork Erroneous - - For all icons in the source tree, see [Artwork](Artwork.md). @@ -23,3 +21,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork}} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork Erroneous diff --git a/wiki/Artwork_Fem.md b/wiki/Artwork_Fem.md index a4e3b3339e..3b0a35a092 100644 --- a/wiki/Artwork_Fem.md +++ b/wiki/Artwork_Fem.md @@ -1,6 +1,4 @@ # Artwork Fem - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Artwork Fem diff --git a/wiki/Artwork_Gui.md b/wiki/Artwork_Gui.md index c205c0ba49..91eb797de3 100644 --- a/wiki/Artwork_Gui.md +++ b/wiki/Artwork_Gui.md @@ -1,5 +1,5 @@ # Artwork Gui - These icons are in the indicated source path. +These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -19,4 +19,7 @@ These images are larger than icons. - {{Artwork}} + {{Artwork}} + +--- +[documentation index](../README.md) > Artwork Gui diff --git a/wiki/Artwork_Gui_Icons.md b/wiki/Artwork_Gui_Icons.md index edc31de85a..fa0ac38661 100644 --- a/wiki/Artwork_Gui_Icons.md +++ b/wiki/Artwork_Gui_Icons.md @@ -1,2 +1,5 @@ # Artwork Gui Icons 1. REDIRECT [Artwork Gui](Artwork_Gui.md) + +--- +[documentation index](../README.md) > Artwork Gui Icons diff --git a/wiki/Artwork_Guidelines.md b/wiki/Artwork_Guidelines.md index 0fff9bd197..fd6022f779 100644 --- a/wiki/Artwork_Guidelines.md +++ b/wiki/Artwork_Guidelines.md @@ -1,6 +1,4 @@ # Artwork Guidelines - - ## Introduction @@ -175,3 +173,6 @@ A grayscale image allows you to more easily identify problems in contrast, as on [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Artwork Guidelines diff --git a/wiki/Artwork_Image.md b/wiki/Artwork_Image.md index cb7a2f40fc..49e52ff61c 100644 --- a/wiki/Artwork_Image.md +++ b/wiki/Artwork_Image.md @@ -1,6 +1,4 @@ # Artwork Image - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Image](Category:Image.md) + +--- +[documentation index](../README.md) > [Image](Category:Image.md) > Artwork Image diff --git a/wiki/Artwork_Inspection.md b/wiki/Artwork_Inspection.md index ca04dd9d3d..a22790d5ad 100644 --- a/wiki/Artwork_Inspection.md +++ b/wiki/Artwork_Inspection.md @@ -1,6 +1,4 @@ # Artwork Inspection - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Inspection](Category:Inspection.md) + +--- +[documentation index](../README.md) > [Inspection](Category:Inspection.md) > Artwork Inspection diff --git a/wiki/Artwork_Material.md b/wiki/Artwork_Material.md index 59b0681024..b68cde6ac4 100644 --- a/wiki/Artwork_Material.md +++ b/wiki/Artwork_Material.md @@ -1,6 +1,4 @@ # Artwork Material - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -15,3 +13,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork }} + +--- +[documentation index](../README.md) > Artwork Material diff --git a/wiki/Artwork_Mesh.md b/wiki/Artwork_Mesh.md index f027d2e04a..eb68cd8a23 100644 --- a/wiki/Artwork_Mesh.md +++ b/wiki/Artwork_Mesh.md @@ -1,6 +1,4 @@ # Artwork Mesh - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -18,3 +16,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Mesh](Category:Mesh.md) + +--- +[documentation index](../README.md) > [Mesh](Category:Mesh.md) > Artwork Mesh diff --git a/wiki/Artwork_MeshPart.md b/wiki/Artwork_MeshPart.md index c08d616bb8..69da68d286 100644 --- a/wiki/Artwork_MeshPart.md +++ b/wiki/Artwork_MeshPart.md @@ -1,6 +1,4 @@ # Artwork MeshPart - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -16,3 +14,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). ![](images/MeshFace.svg ) {{Artwork}} {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > Artwork MeshPart diff --git a/wiki/Artwork_Mod_Arch.md b/wiki/Artwork_Mod_Arch.md index c9be951e54..3a7fcf266c 100644 --- a/wiki/Artwork_Mod_Arch.md +++ b/wiki/Artwork_Mod_Arch.md @@ -1,2 +1,5 @@ # Artwork Mod Arch 1. REDIRECT [Artwork Arch](Artwork_Arch.md) + +--- +[documentation index](../README.md) > Artwork Mod Arch diff --git a/wiki/Artwork_Mod_Assembly.md b/wiki/Artwork_Mod_Assembly.md index eb1ed8e5a8..cb9b04cefb 100644 --- a/wiki/Artwork_Mod_Assembly.md +++ b/wiki/Artwork_Mod_Assembly.md @@ -1,2 +1,5 @@ # Artwork Mod Assembly 1. REDIRECT [Artwork Assembly](Artwork_Assembly.md) + +--- +[documentation index](../README.md) > Artwork Mod Assembly diff --git a/wiki/Artwork_Mod_Draft.md b/wiki/Artwork_Mod_Draft.md index c417084df2..6cf8f49184 100644 --- a/wiki/Artwork_Mod_Draft.md +++ b/wiki/Artwork_Mod_Draft.md @@ -1,2 +1,5 @@ # Artwork Mod Draft 1. REDIRECT [Artwork Draft](Artwork_Draft.md) + +--- +[documentation index](../README.md) > Artwork Mod Draft diff --git a/wiki/Artwork_Mod_Drawing.md b/wiki/Artwork_Mod_Drawing.md index 90d9209ed7..6c4bdc6ed2 100644 --- a/wiki/Artwork_Mod_Drawing.md +++ b/wiki/Artwork_Mod_Drawing.md @@ -1,2 +1,5 @@ # Artwork Mod Drawing 1. REDIRECT [Artwork Drawing](Artwork_Drawing.md) + +--- +[documentation index](../README.md) > Artwork Mod Drawing diff --git a/wiki/Artwork_Mod_Fem.md b/wiki/Artwork_Mod_Fem.md index b209db0640..4295cabf25 100644 --- a/wiki/Artwork_Mod_Fem.md +++ b/wiki/Artwork_Mod_Fem.md @@ -1,2 +1,5 @@ # Artwork Mod Fem 1. REDIRECT [Artwork Fem](Artwork_Fem.md) + +--- +[documentation index](../README.md) > Artwork Mod Fem diff --git a/wiki/Artwork_Mod_Mesh.md b/wiki/Artwork_Mod_Mesh.md index 64cdbf30d2..65dab4cac9 100644 --- a/wiki/Artwork_Mod_Mesh.md +++ b/wiki/Artwork_Mod_Mesh.md @@ -1,2 +1,5 @@ # Artwork Mod Mesh 1. REDIRECT [Artwork Mesh](Artwork_Mesh.md) + +--- +[documentation index](../README.md) > Artwork Mod Mesh diff --git a/wiki/Artwork_Mod_Part.md b/wiki/Artwork_Mod_Part.md index 974afd1d4c..5d895d144d 100644 --- a/wiki/Artwork_Mod_Part.md +++ b/wiki/Artwork_Mod_Part.md @@ -1,2 +1,5 @@ # Artwork Mod Part 1. REDIRECT [Artwork Part](Artwork_Part.md) + +--- +[documentation index](../README.md) > Artwork Mod Part diff --git a/wiki/Artwork_OpenSCAD.md b/wiki/Artwork_OpenSCAD.md index cdd861019f..a5eecfe389 100644 --- a/wiki/Artwork_OpenSCAD.md +++ b/wiki/Artwork_OpenSCAD.md @@ -1,6 +1,4 @@ # Artwork OpenSCAD - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:OpenSCAD](Category:OpenSCAD.md) + +--- +[documentation index](../README.md) > [OpenSCAD](Category:OpenSCAD.md) > Artwork OpenSCAD diff --git a/wiki/Artwork_Part.md b/wiki/Artwork_Part.md index f069469b07..7c01a0397f 100644 --- a/wiki/Artwork_Part.md +++ b/wiki/Artwork_Part.md @@ -1,6 +1,4 @@ # Artwork Part - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -31,4 +29,7 @@ For all icons in the source tree, see [Artwork](Artwork.md). - {{Artwork}} + {{Artwork}} + +--- +[documentation index](../README.md) > Artwork Part diff --git a/wiki/Artwork_PartDesign.md b/wiki/Artwork_PartDesign.md index 68374ef9e9..a972c79637 100644 --- a/wiki/Artwork_PartDesign.md +++ b/wiki/Artwork_PartDesign.md @@ -1,6 +1,4 @@ # Artwork PartDesign - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -22,3 +20,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:PartDesign](Category:PartDesign.md) + +--- +[documentation index](../README.md) > [PartDesign](Category:PartDesign.md) > Artwork PartDesign diff --git a/wiki/Artwork_Path.md b/wiki/Artwork_Path.md index 8d6e41e2e1..3147ce02eb 100644 --- a/wiki/Artwork_Path.md +++ b/wiki/Artwork_Path.md @@ -1,6 +1,4 @@ # Artwork Path - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Path](Category:Path.md) + +--- +[documentation index](../README.md) > [Path](Category:Path.md) > Artwork Path diff --git a/wiki/Artwork_Plot.md b/wiki/Artwork_Plot.md index 9fd8db07eb..bf3fa34634 100644 --- a/wiki/Artwork_Plot.md +++ b/wiki/Artwork_Plot.md @@ -1,6 +1,4 @@ # Artwork Plot - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Plot](Category:Plot.md) + +--- +[documentation index](../README.md) > [Plot](Category:Plot.md) > Artwork Plot diff --git a/wiki/Artwork_Points.md b/wiki/Artwork_Points.md index 952112e538..3217b29dbc 100644 --- a/wiki/Artwork_Points.md +++ b/wiki/Artwork_Points.md @@ -1,6 +1,4 @@ # Artwork Points - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Points](Category:Points.md) + +--- +[documentation index](../README.md) > [Points](Category:Points.md) > Artwork Points diff --git a/wiki/Artwork_Raytracing.md b/wiki/Artwork_Raytracing.md index f4f123e3a3..37b0e0fda3 100644 --- a/wiki/Artwork_Raytracing.md +++ b/wiki/Artwork_Raytracing.md @@ -1,6 +1,4 @@ # Artwork Raytracing - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Raytracing](Category:Raytracing.md) + +--- +[documentation index](../README.md) > [Raytracing](Category:Raytracing.md) > Artwork Raytracing diff --git a/wiki/Artwork_Reinforcement.md b/wiki/Artwork_Reinforcement.md index e0b32acc67..bd63409bd7 100644 --- a/wiki/Artwork_Reinforcement.md +++ b/wiki/Artwork_Reinforcement.md @@ -1,6 +1,4 @@ # Artwork Reinforcement - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,4 +12,5 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork}} - +--- +[documentation index](../README.md) > Artwork Reinforcement diff --git a/wiki/Artwork_ReverseEngineering.md b/wiki/Artwork_ReverseEngineering.md index 03e1236810..e9773d83e5 100644 --- a/wiki/Artwork_ReverseEngineering.md +++ b/wiki/Artwork_ReverseEngineering.md @@ -1,6 +1,4 @@ # Artwork ReverseEngineering - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -18,3 +16,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Reverse Engineering](Category:Reverse_Engineering.md) + +--- +[documentation index](../README.md) > [Reverse Engineering](Category:Reverse Engineering.md) > Artwork ReverseEngineering diff --git a/wiki/Artwork_Robot.md b/wiki/Artwork_Robot.md index 9a76ffcfbe..884b110218 100644 --- a/wiki/Artwork_Robot.md +++ b/wiki/Artwork_Robot.md @@ -1,6 +1,4 @@ # Artwork Robot - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > Artwork Robot diff --git a/wiki/Artwork_Ship.md b/wiki/Artwork_Ship.md index 7143dc64ef..a2b54adfe7 100644 --- a/wiki/Artwork_Ship.md +++ b/wiki/Artwork_Ship.md @@ -1,6 +1,4 @@ # Artwork Ship - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Ship](Category:Ship.md) + +--- +[documentation index](../README.md) > [Ship](Category:Ship.md) > Artwork Ship diff --git a/wiki/Artwork_Sketcher.md b/wiki/Artwork_Sketcher.md index 8cae87e876..b5921b3b7f 100644 --- a/wiki/Artwork_Sketcher.md +++ b/wiki/Artwork_Sketcher.md @@ -1,6 +1,4 @@ # Artwork Sketcher - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -50,3 +48,6 @@ In the past, the `.xpm` icons were used as overlays when displaying constraints ![](images/Sketcher_Clone.svg ) ![](images/Sketcher_CloseShape.svg ) ![](images/Sketcher_ConnectLines.svg ) ![](images/Sketcher_Copy.svg ) ![](images/Sketcher_DeleteConstraints.svg ) ![](images/Sketcher_DeleteGeometry.svg ) ![](images/Sketcher_Move.svg ) ![](images/Sketcher_RectangularArray.svg ) ![](images/Sketcher_SelectConflictingConstraints.svg ) ![](images/Sketcher_SelectConstraints.svg ) ![](images/Sketcher_SelectElementsAssociatedWithConstraints.svg ) ![](images/Sketcher_SelectElementsWithDoFs.svg ) ![](images/Sketcher_SelectHorizontalAxis.svg ) ![](images/Sketcher_SelectOrigin.svg ) ![](images/Sketcher_SelectRedundantConstraints.svg ) ![](images/Sketcher_SelectVerticalAxis.svg ) ![](images/Sketcher_Symmetry.svg ) {{Artwork}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Artwork Sketcher diff --git a/wiki/Artwork_Splash_screen.md b/wiki/Artwork_Splash_screen.md index d65a07d8c7..27906bf0b4 100644 --- a/wiki/Artwork_Splash_screen.md +++ b/wiki/Artwork_Splash_screen.md @@ -1,6 +1,4 @@ # Artwork Splash screen - - These are the splash screens that have been used for each version of the program. ![](images/Splashscreen09.png ) @@ -24,3 +22,6 @@ These are the splash screens that have been used for each version of the program ![](images/Freecadsplash018.png ) {{Artwork}} + +--- +[documentation index](../README.md) > Artwork Splash screen diff --git a/wiki/Artwork_Spreadsheet.md b/wiki/Artwork_Spreadsheet.md index e48f4ee3cc..d364d64fe5 100644 --- a/wiki/Artwork_Spreadsheet.md +++ b/wiki/Artwork_Spreadsheet.md @@ -1,6 +1,4 @@ # Artwork Spreadsheet - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Spreadsheet](Category:Spreadsheet.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Category:Spreadsheet.md) > Artwork Spreadsheet diff --git a/wiki/Artwork_Start.md b/wiki/Artwork_Start.md index 36f80ad0bc..6d268c2daa 100644 --- a/wiki/Artwork_Start.md +++ b/wiki/Artwork_Start.md @@ -1,6 +1,4 @@ # Artwork Start - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -32,3 +30,6 @@ The following image has been re-sized to a display width of 480 pixels: [Category:Start](Category:Start.md) + +--- +[documentation index](../README.md) > [Start](Category:Start.md) > Artwork Start diff --git a/wiki/Artwork_Surface.md b/wiki/Artwork_Surface.md index aaa95c9b80..356013ecb8 100644 --- a/wiki/Artwork_Surface.md +++ b/wiki/Artwork_Surface.md @@ -1,6 +1,4 @@ # Artwork Surface - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -12,3 +10,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Surface Tools navi}} {{Artwork}} + +--- +[documentation index](../README.md) > Artwork Surface diff --git a/wiki/Artwork_TechDraw.md b/wiki/Artwork_TechDraw.md index 654150ac28..4034eb3cef 100644 --- a/wiki/Artwork_TechDraw.md +++ b/wiki/Artwork_TechDraw.md @@ -1,6 +1,4 @@ # Artwork TechDraw - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -30,3 +28,6 @@ The [TechDraw Workbench](TechDraw_Workbench.md) comes with a number of default t [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [TechDraw](Category:TechDraw.md) > Artwork TechDraw diff --git a/wiki/Artwork_Test.md b/wiki/Artwork_Test.md index 36effa820a..bfdd892f77 100644 --- a/wiki/Artwork_Test.md +++ b/wiki/Artwork_Test.md @@ -1,6 +1,4 @@ # Artwork Test - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,4 +12,5 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork}} - +--- +[documentation index](../README.md) > Artwork Test diff --git a/wiki/Artwork_Tux.md b/wiki/Artwork_Tux.md index aee8d655b3..4cf2a37b68 100644 --- a/wiki/Artwork_Tux.md +++ b/wiki/Artwork_Tux.md @@ -1,6 +1,4 @@ # Artwork Tux - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,4 +12,5 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork}} - +--- +[documentation index](../README.md) > Artwork Tux diff --git a/wiki/Artwork_Web.md b/wiki/Artwork_Web.md index 2e3136a26a..7a0cdf7dbc 100644 --- a/wiki/Artwork_Web.md +++ b/wiki/Artwork_Web.md @@ -1,6 +1,4 @@ # Artwork Web - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -18,3 +16,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Web](Category:Web.md) + +--- +[documentation index](../README.md) > [Web](Category:Web.md) > Artwork Web diff --git a/wiki/Artwork_project.md b/wiki/Artwork_project.md index 5a1ea2c3e1..facdd9c63a 100644 --- a/wiki/Artwork_project.md +++ b/wiki/Artwork_project.md @@ -1,7 +1,4 @@ # Artwork project - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -102,3 +99,6 @@ The current color palette is captured in google drive: [Roadmap](Category:Roadmap.md) > Artwork project diff --git a/wiki/Assembly.md b/wiki/Assembly.md index 1b551e3773..f24961f1ce 100644 --- a/wiki/Assembly.md +++ b/wiki/Assembly.md @@ -1,6 +1,4 @@ # Assembly - - ## Introduction @@ -49,3 +47,6 @@ The assembly workbenches continue development, and it is expected that at some p {{Std Base navi}} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Assembly diff --git a/wiki/Assembly2.md b/wiki/Assembly2.md index 9124741faa..d793caa1cc 100644 --- a/wiki/Assembly2.md +++ b/wiki/Assembly2.md @@ -1,2 +1,5 @@ # Assembly2 1. REDIRECT [Assembly2\_Workbench](Assembly2_Workbench.md) + +--- +[documentation index](../README.md) > Assembly2 diff --git a/wiki/Assembly2_Workbench.md b/wiki/Assembly2_Workbench.md index 684ecd4689..8f7de0a031 100644 --- a/wiki/Assembly2_Workbench.md +++ b/wiki/Assembly2_Workbench.md @@ -1,7 +1,4 @@ # Assembly2 Workbench - - - **The Assembly2 workbench is obsolete. Its author no longer maintains it, so it may not work with FreeCAD versions 0.17 and above. The information in this page is not maintained; it is just kept for historical purposes.** @@ -146,3 +143,6 @@ To update to the latest version, delete the assembly2 folder and redownload the [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Assembly2 Workbench diff --git a/wiki/Assembly3.md b/wiki/Assembly3.md index 286d0623aa..23f5cda486 100644 --- a/wiki/Assembly3.md +++ b/wiki/Assembly3.md @@ -1,2 +1,5 @@ # Assembly3 1. REDIRECT [Assembly3\_Workbench](Assembly3_Workbench.md) + +--- +[documentation index](../README.md) > Assembly3 diff --git a/wiki/Assembly3_ConstraintAlignment.md b/wiki/Assembly3_ConstraintAlignment.md index f323f3690b..6397b76b0f 100644 --- a/wiki/Assembly3_ConstraintAlignment.md +++ b/wiki/Assembly3_ConstraintAlignment.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintAlignment + ## Description This tool links two or more objects of an assembly and matches their orientations. The selected elements of each object or more precisely their implicit coordinate systems (ICSs) are used to position one object in relation to another. @@ -19,7 +21,5 @@ The offset of their z-axes and the angle between their x-axes (and y-axes as wel 2. Select one planar face element of each object. 3. Press the ** [Alignment](Assembly3_ConstraintAlignment.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAlignment diff --git a/wiki/Assembly3_ConstraintAngle.md b/wiki/Assembly3_ConstraintAngle.md index 5204e160a3..4fe67664ff 100644 --- a/wiki/Assembly3_ConstraintAngle.md +++ b/wiki/Assembly3_ConstraintAngle.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintAngle + ## Description This tool builds a link between two objects of an assembly and matches their orientation. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,7 +23,5 @@ The constraint accepts straight edges and planar faces. 2. Select one straight edge element or one planar face element of each object. 3. Press the ** [Angle](Assembly3_ConstraintAngle.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAngle diff --git a/wiki/Assembly3_ConstraintArcLineTangent.md b/wiki/Assembly3_ConstraintArcLineTangent.md index 087ab1c845..276f8e8556 100644 --- a/wiki/Assembly3_ConstraintArcLineTangent.md +++ b/wiki/Assembly3_ConstraintArcLineTangent.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintArcLineTangent + ## Description The ** [Arc line tangent](Assembly3_ConstraintArcLineTangent.md)** commands builds a link between two objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -25,8 +27,5 @@ Depending on the order of the selected lines following **errors** appear: Constraint "ArcLineTangent" requires the 1st element to be a circular edge Constraint "ArcLineTangent" requires the 1st element to be an arc edge - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintArcLineTangent diff --git a/wiki/Assembly3_ConstraintAttachment.md b/wiki/Assembly3_ConstraintAttachment.md index ea315c82bd..290594adb0 100644 --- a/wiki/Assembly3_ConstraintAttachment.md +++ b/wiki/Assembly3_ConstraintAttachment.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintAttachment + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -17,7 +19,5 @@ This link leaves no degree of freedom (DOF) unconstrained. 2. Select one element of each object. 3. Press the ** [Attachment](Assembly3_ConstraintAttachment.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAttachment diff --git a/wiki/Assembly3_ConstraintAxial.md b/wiki/Assembly3_ConstraintAxial.md index b0e3356ea9..0cbd77a1de 100644 --- a/wiki/Assembly3_ConstraintAxial.md +++ b/wiki/Assembly3_ConstraintAxial.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintAxial + ## Description This tool builds a link between two or more objects of an assembly and matches their orientation. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -27,7 +29,5 @@ Different types of geometry elements can be mixed. 2. Select one element of each object. 3. Press the ** [Axial Alignment](Assembly3_ConstraintAxial.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAxial diff --git a/wiki/Assembly3_ConstraintCoincidence.md b/wiki/Assembly3_ConstraintCoincidence.md index 5292f41d2f..62db63f28a 100644 --- a/wiki/Assembly3_ConstraintCoincidence.md +++ b/wiki/Assembly3_ConstraintCoincidence.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintCoincidence + ## Description This tool links two or more objects of an assembly and matches their orientations. The selected elements of each object or more precisely their implicit coordinate systems (ICSs) are used to position one object in relation to another. @@ -26,7 +28,5 @@ The rotation can be stopped by switching Lock Angle to true in the properties pa 2. Select one planar face element of each object. 3. Press the ** [Plane Coincidence](Assembly3_ConstraintCoincidence.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintCoincidence diff --git a/wiki/Assembly3_ConstraintColinear.md b/wiki/Assembly3_ConstraintColinear.md index ed5395e94d..4758f15725 100644 --- a/wiki/Assembly3_ConstraintColinear.md +++ b/wiki/Assembly3_ConstraintColinear.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintColinear + ## Description The [Colinear](Assembly3_ConstraintColinear.md) command constrains two 2D lines such as non-subdivided wires made with the Draft workbench in relation with a work plane. @@ -33,7 +35,5 @@ This tool accepts a 3D elements as well e.g. edges or center lines. - 2D/3D or 3D/2D: Instead of the 3D elements z axis the projection of that axis onto the 2D line\'s workplane is used to position the lines. - Both 3D: The lines are positioned to one another but I can\'t figure out how\... - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintColinear diff --git a/wiki/Assembly3_ConstraintDiameter.md b/wiki/Assembly3_ConstraintDiameter.md index f9bc643c25..c8ab94b792 100644 --- a/wiki/Assembly3_ConstraintDiameter.md +++ b/wiki/Assembly3_ConstraintDiameter.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintDiameter + ## Description The [Diameter](Assembly3_ConstraintDiameter.md) command constrains the diameter of a 2D circle or arc which is made with [Draft Workbench](Draft_Workbench.md) tools in relation with a workplane. @@ -27,7 +29,5 @@ To set the diameter edit the Diameter parameter in the properties panel. : (if ** [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintDiameter diff --git a/wiki/Assembly3_ConstraintEqualAngle.md b/wiki/Assembly3_ConstraintEqualAngle.md index cec7655408..f22fcf8745 100644 --- a/wiki/Assembly3_ConstraintEqualAngle.md +++ b/wiki/Assembly3_ConstraintEqualAngle.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintEqualAngle + ## Description This tool builds a link between two objects of an assembly and fixes one angle between them in relation to another angle\'s value. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -22,7 +24,5 @@ The line directions as well as the face normals are represented by each ICS\'s z : In addition the \"Flip element\" function of the elements properties panel may be needed if ICSs are not orientated as expected. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualAngle diff --git a/wiki/Assembly3_ConstraintEqualLength.md b/wiki/Assembly3_ConstraintEqualLength.md index d46c375ea6..6da77bdb4b 100644 --- a/wiki/Assembly3_ConstraintEqualLength.md +++ b/wiki/Assembly3_ConstraintEqualLength.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintEqualLength + ## Description This tool constrains the length of a 2D line like a non-subdivided wire made with the Draft workbench in relation with a work plane. @@ -23,7 +25,5 @@ The length value of the first selected line equals the length value of the secon : (if ** [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualLength diff --git a/wiki/Assembly3_ConstraintEqualLineArcLength.md b/wiki/Assembly3_ConstraintEqualLineArcLength.md index 8176d42023..59bfe3ddbe 100644 --- a/wiki/Assembly3_ConstraintEqualLineArcLength.md +++ b/wiki/Assembly3_ConstraintEqualLineArcLength.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintEqualLineArcLength + ## Description The [Equal Line Arc Length](Assembly3_ConstraintEqualLineArcLength.md) command constrains the length of a 2D line like a non-subdivided wire which is made with [Draft Workbench](Draft_Workbench.md) tools in relation with a workplane. @@ -37,7 +39,5 @@ Constraint "EqualLineArcLength" requires the 1st element to be a linear Constraint "EqualLineArcLength" requires the 2nd element to be an arc edge Constraint "EqualLineArcLength" requires the 2nd element to be a circular edge - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualLineArcLength diff --git a/wiki/Assembly3_ConstraintEqualPointLineDistance.md b/wiki/Assembly3_ConstraintEqualPointLineDistance.md index fa2b6ddb33..bdca0ebe74 100644 --- a/wiki/Assembly3_ConstraintEqualPointLineDistance.md +++ b/wiki/Assembly3_ConstraintEqualPointLineDistance.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintEqualPointLineDistance + ## Description The [Equal point line distance](Assembly3_ConstraintEqualPointLineDistance.md) command constrains two distances, each between a 2D point and a straight 2D line, to have the same value. @@ -28,7 +30,5 @@ The [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualPointLineDistance diff --git a/wiki/Assembly3_ConstraintEqualRadius.md b/wiki/Assembly3_ConstraintEqualRadius.md index 38b7e86aa1..9a80de8f1d 100644 --- a/wiki/Assembly3_ConstraintEqualRadius.md +++ b/wiki/Assembly3_ConstraintEqualRadius.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintEqualRadius + ## Description The [Equal radius](Assembly3_ConstraintEqualRadius.md) command constrains the radius of a 2D circle or arc made with [Draft Workbench](Draft_Workbench.md) tools in relation with a workplane. @@ -29,7 +31,5 @@ The radius value of the first selected circle or arc equals the radius value of : (if ** [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualRadius diff --git a/wiki/Assembly3_ConstraintLengthDifference.md b/wiki/Assembly3_ConstraintLengthDifference.md index c90483cf36..d474fdf92e 100644 --- a/wiki/Assembly3_ConstraintLengthDifference.md +++ b/wiki/Assembly3_ConstraintLengthDifference.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLengthDifference + ## Description This tool constrains the length of a 2D line like a non-subdivided wire made with the Draft workbench in relation with a work plane. @@ -26,7 +28,5 @@ The length value of the first selected line equals the length value of the secon : (if ** [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLengthDifference diff --git a/wiki/Assembly3_ConstraintLengthEqualPointLineDistance.md b/wiki/Assembly3_ConstraintLengthEqualPointLineDistance.md index 7eeb65da1f..492653b6e6 100644 --- a/wiki/Assembly3_ConstraintLengthEqualPointLineDistance.md +++ b/wiki/Assembly3_ConstraintLengthEqualPointLineDistance.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLengthEqualPointLineDistance + ## Description This tool constrains the length of a 2D line like a non-subdivided wire made with the Draft workbench in relation with a work plane. @@ -25,7 +27,5 @@ The length value of the first selected line equals the shortest distance between : (if ** [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLengthEqualPointLineDistance diff --git a/wiki/Assembly3_ConstraintLengthRatio.md b/wiki/Assembly3_ConstraintLengthRatio.md index a43d33fa0a..f140cc2c6c 100644 --- a/wiki/Assembly3_ConstraintLengthRatio.md +++ b/wiki/Assembly3_ConstraintLengthRatio.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLengthRatio + ## Description This tool constrains the length of a 2D line like a non-subdivided wire made with the Draft workbench in relation with a work plane. @@ -26,7 +28,5 @@ The length value of the first selected line equals the length value of the secon : (if ** [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLengthRatio diff --git a/wiki/Assembly3_ConstraintLineHorizontal.md b/wiki/Assembly3_ConstraintLineHorizontal.md index 0f47ad1e0b..977fc50497 100644 --- a/wiki/Assembly3_ConstraintLineHorizontal.md +++ b/wiki/Assembly3_ConstraintLineHorizontal.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLineHorizontal + ## Description This tool builds a link between two objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -18,7 +20,5 @@ Based on one planar element\'s ICS the line element\'s start and end point are p 3. Select a planar face element of the second object 4. Press the ** [Line horizontal](Assembly3_ConstraintLineHorizontal.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLineHorizontal diff --git a/wiki/Assembly3_ConstraintLineLength.md b/wiki/Assembly3_ConstraintLineLength.md index 23af3a20a2..1babf03a02 100644 --- a/wiki/Assembly3_ConstraintLineLength.md +++ b/wiki/Assembly3_ConstraintLineLength.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLineLength + ## Description This tool constrains the length of a 2D line like a non-subdivided wire made with the Draft workbench in relation with a work plane. @@ -18,7 +20,5 @@ The length is set to a certain value by editing the length parameter in the prop 3. Set the **Length** value in the properties panel. 4. Press the ** [Solve constraints](Assembly3_ResolveConstraints.md)** or the ** [Quick solve](Assembly3_QuickSolve.md)** button to recompute. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLineLength diff --git a/wiki/Assembly3_ConstraintLineVertical.md b/wiki/Assembly3_ConstraintLineVertical.md index 1351a0adcf..53e31733c6 100644 --- a/wiki/Assembly3_ConstraintLineVertical.md +++ b/wiki/Assembly3_ConstraintLineVertical.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLineVertical + ## Description This tool builds a link between two objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -18,7 +20,5 @@ Based on one planar element\'s ICS the line element\'s start and end point are p 3. Select a planar face element of the second object 4. Press the ** [Line vertical](Assembly3_ConstraintLineVertical.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLineVertical diff --git a/wiki/Assembly3_ConstraintLock.md b/wiki/Assembly3_ConstraintLock.md index a312092df3..9b521d6e02 100644 --- a/wiki/Assembly3_ConstraintLock.md +++ b/wiki/Assembly3_ConstraintLock.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLock + ## Description This tool links an object to the global coordinate system (GCS) of the assembly using the implicit coordinate system (ICS) of a selected element. @@ -27,7 +29,5 @@ This can be used to define the fixed set in a static assembly as well as in a ki 2. Select one element of the object. 3. Press the ** [Locked](Assembly3_ConstraintLock.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLock diff --git a/wiki/Assembly3_ConstraintMidPoint.md b/wiki/Assembly3_ConstraintMidPoint.md index cb88d394c3..2f083be2b7 100644 --- a/wiki/Assembly3_ConstraintMidPoint.md +++ b/wiki/Assembly3_ConstraintMidPoint.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintMidPoint + ## Description The [Mid point](Assembly3_ConstraintMidPoint.md) command constrains the position of a 2D point (such as an end point of a line or an arc, or the center point of a circle or an arc) to the mid point of a straight 2D line. @@ -27,7 +29,5 @@ Line elements are made with [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintMidPoint diff --git a/wiki/Assembly3_ConstraintMore.md b/wiki/Assembly3_ConstraintMore.md index eb2bd78a5d..471230b539 100644 --- a/wiki/Assembly3_ConstraintMore.md +++ b/wiki/Assembly3_ConstraintMore.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintMore + ## Description This tool only toggles the visibility of two more constraint panels. @@ -13,7 +15,5 @@ This tool only toggles the visibility of two more constraint panels. 1. Press the ** [More](Assembly3_ConstraintMore.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintMore diff --git a/wiki/Assembly3_ConstraintMultiParallel.md b/wiki/Assembly3_ConstraintMultiParallel.md index 10d667809f..1f001b43eb 100644 --- a/wiki/Assembly3_ConstraintMultiParallel.md +++ b/wiki/Assembly3_ConstraintMultiParallel.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintMultiParallel + ## Description This tool builds a link between two or more objects of an assembly and matches their orientation. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,7 +23,5 @@ The constraint accepts straight edges and planar faces, which become parallel. 2. Select one straight edge element or one planar face element of each object. 3. Press the ** [Multi parallel](Assembly3_ConstraintMultiParallel.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintMultiParallel diff --git a/wiki/Assembly3_ConstraintPerpendicular.md b/wiki/Assembly3_ConstraintPerpendicular.md index f29c97e87f..96ba95d48c 100644 --- a/wiki/Assembly3_ConstraintPerpendicular.md +++ b/wiki/Assembly3_ConstraintPerpendicular.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPerpendicular + ## Description This tool builds a link between two objects of an assembly and matches their orientation. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,7 +23,5 @@ The constraint accepts straight edges and planar faces. 2. Select one straight edge element or one planar face element of each object. 3. Press the ** [Perpendicular](Assembly3_ConstraintPerpendicular.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPerpendicular diff --git a/wiki/Assembly3_ConstraintPointDistance.md b/wiki/Assembly3_ConstraintPointDistance.md index 57b627c178..15cc2999ea 100644 --- a/wiki/Assembly3_ConstraintPointDistance.md +++ b/wiki/Assembly3_ConstraintPointDistance.md @@ -6,6 +6,8 @@ SeeAlso:[Assembly3 Constraint Points distance](Assembly3_ConstraintPointsDistance.md) --- +# Assembly3 ConstraintPointDistance + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -18,7 +20,5 @@ It can handle 3D point elements as well as 2D point elements within a work plane 2. Select one point element of each object 3. Press the ** [Point distance](Assembly3_ConstraintPointDistance.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointDistance diff --git a/wiki/Assembly3_ConstraintPointInPlane.md b/wiki/Assembly3_ConstraintPointInPlane.md index 32b37e2409..846e5deb91 100644 --- a/wiki/Assembly3_ConstraintPointInPlane.md +++ b/wiki/Assembly3_ConstraintPointInPlane.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointInPlane + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,7 +23,5 @@ Related to the first object the following object can still move along the x- and 2. Select one point element of one object and one planar face element of the other object. 3. Press the ** [Point on plane](Assembly3_ConstraintPointInPlane.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointInPlane diff --git a/wiki/Assembly3_ConstraintPointLineDistance.md b/wiki/Assembly3_ConstraintPointLineDistance.md index 6c2245d88e..a424de5bf4 100644 --- a/wiki/Assembly3_ConstraintPointLineDistance.md +++ b/wiki/Assembly3_ConstraintPointLineDistance.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointLineDistance + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -16,7 +18,5 @@ This tool builds a link between two objects of an assembly and fixes the distanc 2. Select one point element of one object and one linear edge element of the other object. 3. Press the ** [Point line distance](Assembly3_ConstraintPointLineDistance.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointLineDistance diff --git a/wiki/Assembly3_ConstraintPointOnCircle.md b/wiki/Assembly3_ConstraintPointOnCircle.md index 90926a14a1..19e12ed0d6 100644 --- a/wiki/Assembly3_ConstraintPointOnCircle.md +++ b/wiki/Assembly3_ConstraintPointOnCircle.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointOnCircle + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,7 +23,5 @@ The position on the circular element (arc length from the start point) is not de 2. Select one point element of one object and one circular face or edge element of the other object. 3. Press the ** [Point on circle](Assembly3_ConstraintPointOnCircle.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointOnCircle diff --git a/wiki/Assembly3_ConstraintPointOnLine.md b/wiki/Assembly3_ConstraintPointOnLine.md index d0d22de46e..aaffae2d5c 100644 --- a/wiki/Assembly3_ConstraintPointOnLine.md +++ b/wiki/Assembly3_ConstraintPointOnLine.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointOnLine + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,7 +23,5 @@ Related to the first object the following object can still move along the z-axis 2. Select one point element of one object and one straight edge element of the other object. 3. Press the ** [Point on line](Assembly3_ConstraintPointOnLine.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointOnLine diff --git a/wiki/Assembly3_ConstraintPointPlaneDistance.md b/wiki/Assembly3_ConstraintPointPlaneDistance.md index 5ec966dc34..f6a75a3159 100644 --- a/wiki/Assembly3_ConstraintPointPlaneDistance.md +++ b/wiki/Assembly3_ConstraintPointPlaneDistance.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointPlaneDistance + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -15,7 +17,5 @@ This tool builds a link between two objects of an assembly and fixes the distanc 2. Select one point element of one object and one planar face element of the other object. 3. Press the ** [Point plane distance](Assembly3_ConstraintPointPlaneDistance.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointPlaneDistance diff --git a/wiki/Assembly3_ConstraintPointsCoincident.md b/wiki/Assembly3_ConstraintPointsCoincident.md index 247776b87b..a2b8e9c122 100644 --- a/wiki/Assembly3_ConstraintPointsCoincident.md +++ b/wiki/Assembly3_ConstraintPointsCoincident.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointsCoincident + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,7 +23,5 @@ Related to the first object the following object can still spin around the origi 2. Select one point element of each object 3. Press the ** [Points coincident](Assembly3_ConstraintPointsCoincident.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsCoincident diff --git a/wiki/Assembly3_ConstraintPointsDistance.md b/wiki/Assembly3_ConstraintPointsDistance.md index 91610ca083..4749a2a559 100644 --- a/wiki/Assembly3_ConstraintPointsDistance.md +++ b/wiki/Assembly3_ConstraintPointsDistance.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointsDistance + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -15,7 +17,5 @@ This tool builds a link between two objects of an assembly and fixes the distanc 2. Select one point element of each object 3. Press the ** [Points distance](Assembly3_ConstraintPointsDistance.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsDistance diff --git a/wiki/Assembly3_ConstraintPointsHorizontal.md b/wiki/Assembly3_ConstraintPointsHorizontal.md index c1b73b1afe..17144ecd69 100644 --- a/wiki/Assembly3_ConstraintPointsHorizontal.md +++ b/wiki/Assembly3_ConstraintPointsHorizontal.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointsHorizontal + ## Description This tool builds a link between two or three objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -25,7 +27,5 @@ Or 3. Select a planar face element of the third object 4. Press the ** [Points horizontal](Assembly3_ConstraintPointsHorizontal.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsHorizontal diff --git a/wiki/Assembly3_ConstraintPointsProjectDistance.md b/wiki/Assembly3_ConstraintPointsProjectDistance.md index 3d01c76f90..8eb70072ee 100644 --- a/wiki/Assembly3_ConstraintPointsProjectDistance.md +++ b/wiki/Assembly3_ConstraintPointsProjectDistance.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointsProjectDistance + ## Description The [Points project distance](Assembly3_ConstraintPointsProjectDistance.md) command constrains the distance of two 2D points in relation to a Straight line. @@ -27,7 +29,5 @@ Based on the line\'s direction (the z axis of its implicit coordinate system (IC : (if ** [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsProjectDistance diff --git a/wiki/Assembly3_ConstraintPointsSymmetric.md b/wiki/Assembly3_ConstraintPointsSymmetric.md index fc38c8de6d..429c8c636c 100644 --- a/wiki/Assembly3_ConstraintPointsSymmetric.md +++ b/wiki/Assembly3_ConstraintPointsSymmetric.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointsSymmetric + ## Description This tool builds a link between two or three objects of an assembly and positions two point elements symmetrically to a planar face element or a plane . The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position the objects to each other. @@ -25,7 +27,5 @@ Or 3. Select a planar element of the third object 4. Press the ** [Points symmetric](Assembly3_ConstraintPointsSymmetric.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsSymmetric diff --git a/wiki/Assembly3_ConstraintPointsVertical.md b/wiki/Assembly3_ConstraintPointsVertical.md index f25b0a6d3b..022c4c7841 100644 --- a/wiki/Assembly3_ConstraintPointsVertical.md +++ b/wiki/Assembly3_ConstraintPointsVertical.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointsVertical + ## Description This tool builds a link between two or three objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -25,7 +27,5 @@ Or 3. Select a planar face element of the third object 4. Press the ** [Points vertical](Assembly3_ConstraintPointsVertical.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsVertical diff --git a/wiki/Assembly3_ConstraintSameOrientation.md b/wiki/Assembly3_ConstraintSameOrientation.md index fdda765b1e..6324e2700a 100644 --- a/wiki/Assembly3_ConstraintSameOrientation.md +++ b/wiki/Assembly3_ConstraintSameOrientation.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintSameOrientation + ## Description This tool builds a link between two or more objects of an assembly and matches their orientation. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,7 +23,5 @@ The constraint accepts planar faces. 2. Select one planar face element of each object 3. Press the ** [Same orientation](Assembly3_ConstraintSameOrientation.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSameOrientation diff --git a/wiki/Assembly3_ConstraintSketchPlane.md b/wiki/Assembly3_ConstraintSketchPlane.md index 8a9ddfd689..dad5539ed3 100644 --- a/wiki/Assembly3_ConstraintSketchPlane.md +++ b/wiki/Assembly3_ConstraintSketchPlane.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintSketchPlane + ## Description The ** [Sketch plane](Assembly3_ConstraintSketchPlane.md)** command creates a \"Sketch plane\" as a container for draft objects. @@ -22,7 +24,5 @@ It can be used to create a skeleton sketch for 2D kinematics. : With an existing non-empty assembly steps 1 and 2 can be skipped and any planar face element can be used as a work plane for the sketch plane. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSketchPlane diff --git a/wiki/Assembly3_ConstraintSymmetric.md b/wiki/Assembly3_ConstraintSymmetric.md index 28836ba687..fcf88e6941 100644 --- a/wiki/Assembly3_ConstraintSymmetric.md +++ b/wiki/Assembly3_ConstraintSymmetric.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintSymmetric + ## Description This tool builds a link between two objects of an assembly and matches their orientation. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -15,7 +17,5 @@ This tool builds a link between two objects of an assembly and matches their ori 2. Select one element of each object and a mirroring plane. 3. Press the ** [Symmetric](Assembly3_ConstraintSymmetric.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetric diff --git a/wiki/Assembly3_ConstraintSymmetricHorizontal.md b/wiki/Assembly3_ConstraintSymmetricHorizontal.md index 617eb36634..6db3aec7b4 100644 --- a/wiki/Assembly3_ConstraintSymmetricHorizontal.md +++ b/wiki/Assembly3_ConstraintSymmetricHorizontal.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintSymmetricHorizontal + ## Description This tool builds a link between two objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position the objects to each other. @@ -18,7 +20,5 @@ Based on one planar element\'s ICS both other elements\' ICSs\' origins are posi 3. Select a planar element of the other object 4. Press the ** [Symmetric horizontal](Assembly3_ConstraintSymmetricHorizontal.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetricHorizontal diff --git a/wiki/Assembly3_ConstraintSymmetricLine.md b/wiki/Assembly3_ConstraintSymmetricLine.md index b4b6b75857..8d40da837d 100644 --- a/wiki/Assembly3_ConstraintSymmetricLine.md +++ b/wiki/Assembly3_ConstraintSymmetricLine.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintSymmetricLine + ## Description This tool builds a link between two or three objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position the objects to each other. @@ -25,7 +27,5 @@ Or 3. Select a straight line element of the third object 4. Press the ** [Symmetric line](Assembly3_ConstraintSymmetricLine.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetricLine diff --git a/wiki/Assembly3_ConstraintSymmetricVertical.md b/wiki/Assembly3_ConstraintSymmetricVertical.md index 8519ef0725..c45f2a3891 100644 --- a/wiki/Assembly3_ConstraintSymmetricVertical.md +++ b/wiki/Assembly3_ConstraintSymmetricVertical.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintSymmetricVertical + ## Description This tool builds a link between two objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position the objects to each other. @@ -18,7 +20,5 @@ Based on one planar element\'s ICS both other elements\' ICSs\' origins are posi 3. Select a planar element of the other object 4. Press the ** [Symmetric vertical](Assembly3_ConstraintSymmetricVertical.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetricVertical diff --git a/wiki/Assembly3_CreateAssembly.md b/wiki/Assembly3_CreateAssembly.md index 00348330db..67dcebf949 100644 --- a/wiki/Assembly3_CreateAssembly.md +++ b/wiki/Assembly3_CreateAssembly.md @@ -6,6 +6,8 @@ Shortcut:**A** **N** --- +# Assembly3 CreateAssembly + ## Description The **Assembly3 CreateAssembly** command adds a new **Assembly** branch object to the design tree. @@ -29,7 +31,5 @@ The added **Assembly** object with all visible containers looks like this (0.20. ** or use the keyboard shortcut: **A** then **N** - - - - +--- +[documentation index](../README.md) > Assembly3 CreateAssembly diff --git a/wiki/Assembly3_CreateElement.md b/wiki/Assembly3_CreateElement.md index bd5507203f..bc363e5aa3 100644 --- a/wiki/Assembly3_CreateElement.md +++ b/wiki/Assembly3_CreateElement.md @@ -6,6 +6,8 @@ Shortcut:**A** **E** --- +# Assembly3 CreateElement + ## Description The [Create element](Assembly3_CreateElement.md) command creates new elements from selected objects. @@ -20,7 +22,5 @@ It can be used to prepare **elements** before the use of constraints. This coul 2. Press or use the keyboard shortcut: **A** then **E** 3. (optional but recommended) Rename the elements by editing their **Label** properties. - - - - +--- +[documentation index](../README.md) > Assembly3 CreateElement diff --git a/wiki/Assembly3_GoToRelation.md b/wiki/Assembly3_GoToRelation.md index 293924043b..de17a99d23 100644 --- a/wiki/Assembly3_GoToRelation.md +++ b/wiki/Assembly3_GoToRelation.md @@ -7,6 +7,8 @@ Shortcut:**A** **R** --- +# Assembly3 GoToRelation + ## Description The **Assembly3 GoToRelation** command can help to find relations in the assembly tree. It reveals the Relations group on first use. @@ -24,7 +26,5 @@ The result (highlighted objects) depends on the selected object. 1. Select a part, an element or a constraint. 2. Press the ** [Go to relation](Assembly3_GoToRelation.md)** button or use the keyboard shortcut: **A** then **R**. - - - - +--- +[documentation index](../README.md) > Assembly3 GoToRelation diff --git a/wiki/Assembly3_GroupObjects.md b/wiki/Assembly3_GroupObjects.md index 1a25c99769..277b7068a4 100644 --- a/wiki/Assembly3_GroupObjects.md +++ b/wiki/Assembly3_GroupObjects.md @@ -6,6 +6,8 @@ Shortcut:**A** **Z** --- +# Assembly3 GroupObjects + ## Description The [Group objects](Assembly3_GroupObjects.md) command adds a new (sub-) **Group** folder object to the Assembly branch of the design tree. @@ -19,7 +21,5 @@ It can be used to either group **Constraints**, **Elements**, or **Parts** and w : If the selection contains different types of objects the ** [Group objects](Assembly3_GroupObjects.md)** button will be inactive. - - - - +--- +[documentation index](../README.md) > Assembly3 GroupObjects diff --git a/wiki/Assembly3_ImportFromSTEP.md b/wiki/Assembly3_ImportFromSTEP.md index 223076f7e1..55ac69bcab 100644 --- a/wiki/Assembly3_ImportFromSTEP.md +++ b/wiki/Assembly3_ImportFromSTEP.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ImportFromSTEP + ## Description The [Import from STEP](Assembly3_ImportFromSTEP.md) command opens a file browser window to search and select STEP files. @@ -16,7 +18,5 @@ The [Impo 1. Press ** [Import from STEP](Assembly3_ImportFromSTEP.md)** to open a file browser window 2. Select the STEP file to import - - - - +--- +[documentation index](../README.md) > Assembly3 ImportFromSTEP diff --git a/wiki/Assembly3_ImportMultiDocument.md b/wiki/Assembly3_ImportMultiDocument.md index c0a6bf792d..8985b6eb05 100644 --- a/wiki/Assembly3_ImportMultiDocument.md +++ b/wiki/Assembly3_ImportMultiDocument.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ImportMultiDocument + ## Description The [Import as multi-document](Assembly3_ImportMultiDocument.md) command opens a file browser window to search and select STEP files. @@ -16,7 +18,5 @@ STEP assemblies are imported into separate documents. 1. Press ** [Import as multi-document](Assembly3_ImportMultiDocument.md)** to open a file browser window 2. Select the STEP file to import - - - - +--- +[documentation index](../README.md) > Assembly3 ImportMultiDocument diff --git a/wiki/Assembly3_MeasureAngle.md b/wiki/Assembly3_MeasureAngle.md index e55488f667..1dcdb85680 100644 --- a/wiki/Assembly3_MeasureAngle.md +++ b/wiki/Assembly3_MeasureAngle.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 MeasureAngle + ## Description This tool measures the angle between two objects of an assembly using straight edges or planar faces. @@ -14,7 +16,5 @@ This tool measures the angle between two objects of an assembly using straight e 1. Select two straight edges or planar faces (or one of each). 2. Press the ** [Measure angle](Assembly3_MeasureAngle.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 MeasureAngle diff --git a/wiki/Assembly3_MeasurePointLine.md b/wiki/Assembly3_MeasurePointLine.md index ff179ec2a1..a32654b3fb 100644 --- a/wiki/Assembly3_MeasurePointLine.md +++ b/wiki/Assembly3_MeasurePointLine.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 MeasurePointLine + ## Description This tool measures the distance between two objects of an assembly using a point and a straight edge. @@ -14,7 +16,5 @@ This tool measures the distance between two objects of an assembly using a point 1. Select a point and a straight edge. 2. Press the ** [Measure point to line](Assembly3_MeasurePointLine.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 MeasurePointLine diff --git a/wiki/Assembly3_MeasurePointPlane.md b/wiki/Assembly3_MeasurePointPlane.md index 429254b1fa..a8e5fad67b 100644 --- a/wiki/Assembly3_MeasurePointPlane.md +++ b/wiki/Assembly3_MeasurePointPlane.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 MeasurePointPlane + ## Description This tool measures the distance between two objects of an assembly using a point and a planar face. @@ -14,7 +16,5 @@ This tool measures the distance between two objects of an assembly using a point 1. Select a point and a planar face. 2. Press the ** [Measure point to plane](Assembly3_MeasurePointPlane.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 MeasurePointPlane diff --git a/wiki/Assembly3_MeasurePoints.md b/wiki/Assembly3_MeasurePoints.md index 1c9c376844..1acf535294 100644 --- a/wiki/Assembly3_MeasurePoints.md +++ b/wiki/Assembly3_MeasurePoints.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 MeasurePoints + ## Description This tool measures the distance between two objects of an assembly using two points. @@ -14,7 +16,5 @@ This tool measures the distance between two objects of an assembly using two poi 1. Select two points. 2. Press the ** [Measure point to point](Assembly3_MeasurePoints.md)** button. - - - - +--- +[documentation index](../README.md) > Assembly3 MeasurePoints diff --git a/wiki/Assembly3_Workbench.md b/wiki/Assembly3_Workbench.md index c5f526770b..ad98824b80 100644 --- a/wiki/Assembly3_Workbench.md +++ b/wiki/Assembly3_Workbench.md @@ -1,7 +1,4 @@ -# Assembly3 Workbench - - - Assembly3 workbench icon +# Assembly3 workbench icon Assembly3 Workbench {{TOCright}} @@ -605,3 +602,6 @@ One way to solve this is to just delete all invalid constraints and elements, im [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Assembly3 Workbench diff --git a/wiki/Assembly4.md b/wiki/Assembly4.md index 4f2406fd2c..bb7db0fda3 100644 --- a/wiki/Assembly4.md +++ b/wiki/Assembly4.md @@ -1,2 +1,5 @@ # Assembly4 1. REDIRECT [Assembly4\_Workbench](Assembly4_Workbench.md) + +--- +[documentation index](../README.md) > Assembly4 diff --git a/wiki/Assembly4_Workbench.md b/wiki/Assembly4_Workbench.md index 06ea19f3cb..3838c91584 100644 --- a/wiki/Assembly4_Workbench.md +++ b/wiki/Assembly4_Workbench.md @@ -1,7 +1,4 @@ -# Assembly4 Workbench - - -External workbench icon +# External workbench icon Assembly4 Workbench ## Introduction @@ -38,3 +35,6 @@ Assembly4 was inspired by @@ -21,4 +23,5 @@ The BIM Box tool allows you to create a standard [Part Box](Part_Box.md), but in 4. Click a third point to define a first face of the box, orthogonal to the first edge 5. Click a fourth point to define the extrusion distance of the first face, forming the final box - +--- +[documentation index](../README.md) > BIM Box diff --git a/wiki/BIM_Classification.md b/wiki/BIM_Classification.md index 64cb4de36f..76fed18a3e 100644 --- a/wiki/BIM_Classification.md +++ b/wiki/BIM_Classification.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Classification --- +# BIM Classification + ## Description @@ -18,4 +20,5 @@ The classifications manager allows you to attribute a standard class to a BIM ob - If you wish to add or edit a class for an object, select that object and press the BIM Classification button - If you wish to add or edit a class for a material, don\'t select anything and press the BIM Classification button. You will be able to browse the materials directly from the classification manager window - +--- +[documentation index](../README.md) > BIM Classification diff --git a/wiki/BIM_Clone.md b/wiki/BIM_Clone.md index faed02a224..12554b4ca5 100644 --- a/wiki/BIM_Clone.md +++ b/wiki/BIM_Clone.md @@ -7,8 +7,11 @@ SeeAlso:[[Draft Clone]] --- +# BIM Clone + ## Description The BIM Clone tool is a shortcut to the standard [Draft Clone](Draft_Clone.md) tool, but launches a [Draft Move](Draft_Move.md) command just after cloning, thus allowing you to clone and place the cloned object somewhere else in the model in one go. - +--- +[documentation index](../README.md) > BIM Clone diff --git a/wiki/BIM_Copy.md b/wiki/BIM_Copy.md index 9aa0d46547..cfda1194c2 100644 --- a/wiki/BIM_Copy.md +++ b/wiki/BIM_Copy.md @@ -7,8 +7,11 @@ SeeAlso:[Draft Move](Draft_Move.md) --- +# BIM Copy + ## Description The BIM Copy tool is a shortcut to the standard [Draft Move](Draft_Move.md) tool, but starting with its **Copy** option turned on, therefore allowing to create a copy of an object and place it at a given location, in one go. - +--- +[documentation index](../README.md) > BIM Copy diff --git a/wiki/BIM_IfcElements.md b/wiki/BIM_IfcElements.md index 1efe70902e..f25dc240d6 100644 --- a/wiki/BIM_IfcElements.md +++ b/wiki/BIM_IfcElements.md @@ -7,6 +7,8 @@ SeeAlso:[[BIM IfcProperties]],[[BIM IfcQuantities]] --- +# BIM IfcElements + ## Description @@ -20,4 +22,5 @@ With it, you can: - Change their IFC type either by clicking an individual type or, if more than one is selected, using the \"change type to:\" drop-down menu - Change their material either by clicking an individual material or, if more than one is selected, using the \"change material to:\" drop-down menu - +--- +[documentation index](../README.md) > BIM IfcElements diff --git a/wiki/BIM_IfcProperties.md b/wiki/BIM_IfcProperties.md index 02144c97e3..2e837b42a9 100644 --- a/wiki/BIM_IfcProperties.md +++ b/wiki/BIM_IfcProperties.md @@ -7,6 +7,8 @@ SeeAlso:[[BIM IfcElements]],[[BIM IfcQuantities]] --- +# BIM IfcProperties + ## Description @@ -31,4 +33,5 @@ Pset\_FreeCAD;Name;IfcLabel;Version;IfcReal would define a property set named \"FreeCAD\" (the Pset\_ prefix is not mandatory but is a common practice) that contains two properties: one called \"Name\" which is an IfcLabel (a piece of text), and another called \"Version\" which is an IfcReal (a numeric value with decimals) - +--- +[documentation index](../README.md) > BIM IfcProperties diff --git a/wiki/BIM_IfcQuantities.md b/wiki/BIM_IfcQuantities.md index ab232364e0..4b85ff5419 100644 --- a/wiki/BIM_IfcQuantities.md +++ b/wiki/BIM_IfcQuantities.md @@ -7,6 +7,8 @@ SeeAlso:[[BIM IfcElements]],[[BIM IfcProperties]] --- +# BIM IfcQuantities + ## Description @@ -21,4 +23,5 @@ By default, when exporting an IFC file from FreeCAD, no explicit quantities are You can also use the quantities manager to change or fix the actual **Height**, **Width** and **Length** values of objects. But this will affect the object geometry in FreeCAD. - +--- +[documentation index](../README.md) > BIM IfcQuantities diff --git a/wiki/BIM_Layers.md b/wiki/BIM_Layers.md index d6f707726b..f9ee6e27c1 100644 --- a/wiki/BIM_Layers.md +++ b/wiki/BIM_Layers.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Layers --- +# BIM Layers + ## Description @@ -16,4 +18,5 @@ Layers are imported and exported from/to [IFC](Arch_IFC.md) and [DXF/DWG](Draft_ The layers manager allow you to manage your layers, add or remove layers, or change their visual properties. To add objects to a layer, simply drag them into the layer in the tree view. To remove them, drag them from the layer and drop them into the document root. - +--- +[documentation index](../README.md) > BIM Layers diff --git a/wiki/BIM_Levels.md b/wiki/BIM_Levels.md index 81db82d375..38d5ddb2df 100644 --- a/wiki/BIM_Levels.md +++ b/wiki/BIM_Levels.md @@ -1,2 +1,5 @@ # BIM Levels 1. REDIRECT [BIM\_Views](BIM_Views.md) + +--- +[documentation index](../README.md) > BIM Levels diff --git a/wiki/BIM_Library.md b/wiki/BIM_Library.md index 82ae59ac01..188b0aa081 100644 --- a/wiki/BIM_Library.md +++ b/wiki/BIM_Library.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Equipment]] --- +# BIM Library + ## Description The BIM Library tool allows you to place, in the current model, an object from the [FreeCAD Parts Library](Parts_Library.md), which must be installed via the [Addon Manager](Addon_Manager.md) for this tool to be available. @@ -33,3 +35,6 @@ The BIM Library tool allows you to place, in the current model, an object from t [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM Library diff --git a/wiki/BIM_Preflight.md b/wiki/BIM_Preflight.md index c9e9f92df4..56f10a9924 100644 --- a/wiki/BIM_Preflight.md +++ b/wiki/BIM_Preflight.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Preflight check --- +# BIM Preflight + ## Description @@ -85,3 +87,6 @@ def myCustomTest():    # text if the test failed. The string or text will be displayed    # to the user when they press the "Failed" button.    return result + +--- +[documentation index](../README.md) > BIM Preflight diff --git a/wiki/BIM_Project.md b/wiki/BIM_Project.md index 656fa437f1..653904fb92 100644 --- a/wiki/BIM_Project.md +++ b/wiki/BIM_Project.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Manage project... --- +# BIM Project + ## Description @@ -25,4 +27,7 @@ The project setup dialog can create: The Project tool supports two kinds of templates: Once you have filled the different options, the contents of the BIM project setup wizard can be **saved** as a template. These templates can be **restored** and adapted at a later time. Project templates are stored as plain text files in your FreeCAD user folder. -Alternatively, you can also save the contents of the current document as a template. This will save the currently opened document as a standard **.FCStd** file, but also include additional BIM settings like the current working plane, or current units. By using the **restore** option anytime, the contents of that template file will be merged into the active document and all settings found in it applied. +Alternatively, you can also save the contents of the current document as a template. This will save the currently opened document as a standard **.FCStd** file, but also include additional BIM settings like the current working plane, or current units. By using the **restore** option anytime, the contents of that template file will be merged into the active document and all settings found in it applied. + +--- +[documentation index](../README.md) > BIM Project diff --git a/wiki/BIM_Setup.md b/wiki/BIM_Setup.md index b861e36bfe..37ad6992a7 100644 --- a/wiki/BIM_Setup.md +++ b/wiki/BIM_Setup.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Setup --- +# BIM Setup + ## Description @@ -14,4 +16,5 @@ The preferences system of FreeCAD, located under menu **Edit -\> Preferences**, By hovering the mouse over each setting, you will be shown a ttoltip explaining what it is used for, and the location of the corresponding setting in the general FreeCAD preferences system. - +--- +[documentation index](../README.md) > BIM Setup diff --git a/wiki/BIM_Views.md b/wiki/BIM_Views.md index 860c0cc00b..4808624332 100644 --- a/wiki/BIM_Views.md +++ b/wiki/BIM_Views.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Views --- +# BIM Views + ## Description The BIM views and levels manager is a dockable window that opens below the normal tree view, that contains all the [BuildingParts](Arch_BuildingPart.md) and [Working Plane Proxies](Draft_WorkingPlaneProxy.md) of your model. @@ -33,3 +35,6 @@ The BIM views manager will show all the levels (building parts) and working plan {{BIM Tools navi}} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > BIM Views diff --git a/wiki/BIM_Windows.md b/wiki/BIM_Windows.md index 8d05f15f3d..7132279462 100644 --- a/wiki/BIM_Windows.md +++ b/wiki/BIM_Windows.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Windows --- +# BIM Windows + ## Description The BIM windows manager dialog allows you to browse and modify all the [windows and doors](Arch_Window.md) of your project together. This is often more convenient than editing them one by one, and allows you to make sure that they all have the parameters you require correctly set, such as tag, dimensions, description or material. @@ -17,3 +19,6 @@ The BIM windows manager dialog allows you to browse and modify all the [windows {{BIM Tools navi}} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > BIM Windows diff --git a/wiki/BIM_Workbench.md b/wiki/BIM_Workbench.md index 9db51839ba..3cb51ce426 100644 --- a/wiki/BIM_Workbench.md +++ b/wiki/BIM_Workbench.md @@ -1,8 +1,4 @@ -# BIM Workbench - - - -BIM External Workbench icon +# BIM External Workbench icon BIM Workbench @@ -185,3 +181,6 @@ New workbenches are in development, stay tuned! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > BIM Workbench diff --git a/wiki/BIM_ingame_tutorial.md b/wiki/BIM_ingame_tutorial.md index f9842e2986..d0459b071e 100644 --- a/wiki/BIM_ingame_tutorial.md +++ b/wiki/BIM_ingame_tutorial.md @@ -1,8 +1,4 @@ -# BIM ingame tutorial - - - - +# BIM ingame tutorial {{BIMTutorialAction|descr=This is the in-game tutorial of the [BIM Workbench](BIM_Workbench.md). It is not meant to be read here on the wiki, but rather to be started from inside FreeCAD, in the BIM workbench, under menu '''Help -> BIM tutorial'''. It includes a series of steps to be completed by the user. Each step is terminated by an instance of the [{{BIMTutorialAction|descr|goal1|test1|goal2|test2}}](Template:BIMTutorialAction.md) template, which informs of the condition that need to be met. Images should be 300px wide. No SVG images should be used on this page, as they are not supported by the QTextBrowser widget}} @@ -511,3 +507,6 @@ FreeCAD is free software, developed by an enthusiast community of users, some of [Category:BIM](Category:BIM.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM ingame tutorial diff --git a/wiki/BOLTSFC_Workbench.md b/wiki/BOLTSFC_Workbench.md index fc3009eb0c..e3754e402d 100644 --- a/wiki/BOLTSFC_Workbench.md +++ b/wiki/BOLTSFC_Workbench.md @@ -1,5 +1,5 @@ # BOLTSFC Workbench - The FreeCAD BOLTS External Workbench Icon](images/BOLTSFC_workbench_icon.svg "fig: The FreeCAD BOLTS External Workbench Icon"){width="128"} +The FreeCAD BOLTS External Workbench Icon](images/BOLTSFC_workbench_icon.svg "fig: The FreeCAD BOLTS External Workbench Icon"){width="128"} @@ -72,3 +72,6 @@ is required. [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > BOLTSFC Workbench diff --git a/wiki/BOLTS_Workbench.md b/wiki/BOLTS_Workbench.md index 0ddeccc745..c6f311beec 100644 --- a/wiki/BOLTS_Workbench.md +++ b/wiki/BOLTS_Workbench.md @@ -1,2 +1,5 @@ # BOLTS Workbench 1. REDIRECT [BOLTSFC Workbench](BOLTSFC_Workbench.md) + +--- +[documentation index](../README.md) > BOLTS Workbench diff --git a/wiki/Backend_Adminstration.md b/wiki/Backend_Adminstration.md index e64dad81f0..6ac800937b 100644 --- a/wiki/Backend_Adminstration.md +++ b/wiki/Backend_Adminstration.md @@ -19,3 +19,6 @@ Update pywikibot:  git pull --recurse-submodules [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > Backend Adminstration diff --git a/wiki/Backtrace.md b/wiki/Backtrace.md index 657e8c79f6..2a61c99d33 100644 --- a/wiki/Backtrace.md +++ b/wiki/Backtrace.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Backtrace diff --git a/wiki/Base_API.md b/wiki/Base_API.md index c66bf1672a..9b2156c915 100644 --- a/wiki/Base_API.md +++ b/wiki/Base_API.md @@ -1,5 +1,5 @@ # Base API - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** The Base module is contained inside the FreeCAD module and contains constructors for different types of objects heavily used in FreeCAD. @@ -29,3 +29,6 @@ A bounding box is an orthographic cube which is a way to describe outer boundari [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Base API diff --git a/wiki/Basic_Attachment_Tutorial.md b/wiki/Basic_Attachment_Tutorial.md index ca9e879621..1f2d1dda21 100644 --- a/wiki/Basic_Attachment_Tutorial.md +++ b/wiki/Basic_Attachment_Tutorial.md @@ -1,7 +1,5 @@ # Basic Attachment Tutorial - - - {{TutorialInfo +{{TutorialInfo |Topic=Attachment |Level=Beginner/Intermediate |Author=Bance @@ -302,3 +300,6 @@ Happy Attaching! }} {{PartDesign_Tools_navi}} {{Sketcher_Tools_navi}} [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > Basic Attachment Tutorial diff --git a/wiki/Basic_Part_Design_Tutorial.md b/wiki/Basic_Part_Design_Tutorial.md index 8a04445bd9..a8d3841ad2 100644 --- a/wiki/Basic_Part_Design_Tutorial.md +++ b/wiki/Basic_Part_Design_Tutorial.md @@ -1,5 +1,5 @@ # Basic Part Design Tutorial - {{TutorialInfo +{{TutorialInfo |Topic=Modeling |Level=Beginner |Author=Mark Stephen ([Quick61](User:Quick61.md)) and HarryGeier ([HarryGeier](User:HarryGeier.md)) @@ -158,4 +158,7 @@ This tutorial and your model are complete. {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Part Design Tutorial diff --git a/wiki/Basic_Part_Design_Tutorial_017.md b/wiki/Basic_Part_Design_Tutorial_017.md index 042d9a9b53..8b96535ed6 100644 --- a/wiki/Basic_Part_Design_Tutorial_017.md +++ b/wiki/Basic_Part_Design_Tutorial_017.md @@ -1,2 +1,5 @@ # Basic Part Design Tutorial 017 1. REDIRECT [Basic\_Part\_Design\_Tutorial](Basic_Part_Design_Tutorial.md) + +--- +[documentation index](../README.md) > Basic Part Design Tutorial 017 diff --git a/wiki/Basic_Sketcher_Tutorial.md b/wiki/Basic_Sketcher_Tutorial.md index 6c862dc02b..5c5558255a 100644 --- a/wiki/Basic_Sketcher_Tutorial.md +++ b/wiki/Basic_Sketcher_Tutorial.md @@ -1,7 +1,4 @@ # Basic Sketcher Tutorial - - - {{TutorialInfo |Topic=Sketcher |Level=Beginner @@ -289,4 +286,7 @@ Constraining a sketch can be done in many different ways. In general, it is reco - Or set the angle of the construction lines before adding more elements. - Try using other construction geometry. - {{Tutorials navi}} {{Sketcher Tools navi}} + {{Tutorials navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Sketcher Tutorial diff --git a/wiki/Basic_TechDraw_Tutorial.md b/wiki/Basic_TechDraw_Tutorial.md index e3de28ee03..2795e5cff9 100644 --- a/wiki/Basic_TechDraw_Tutorial.md +++ b/wiki/Basic_TechDraw_Tutorial.md @@ -1,5 +1,5 @@ # Basic TechDraw Tutorial - {{TutorialInfo +{{TutorialInfo |Topic=Modeling |Level=Beginner |Author=[WandererFan](User:WandererFan.md) @@ -129,4 +129,7 @@ There is much more functionality in TechDraw for you to explore - Section Views, - FreeCAD file of this exercise for comparison (made with 0.17) [Download](https://github.com/FreeCAD/Examples/blob/master/Basic_TechDraw_Tutorial_Example_Files/Basic_TechDraw_Tutorial.fcstd) - {{Tutorials navi}} {{TechDraw Tools navi}} + {{Tutorials navi}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Basic TechDraw Tutorial diff --git a/wiki/Basic_modeling_tutorial.md b/wiki/Basic_modeling_tutorial.md index 10d8cd924e..06378f661b 100644 --- a/wiki/Basic_modeling_tutorial.md +++ b/wiki/Basic_modeling_tutorial.md @@ -1,5 +1,5 @@ # Basic modeling tutorial - {{TutorialInfo +{{TutorialInfo |Topic= Introduction to modelling |Level= Beginner |Time= 15 minutes @@ -128,4 +128,7 @@ The label on your button may be different, depending on your version and also on The above instructions will work, no matter what label your button has. - {{Tutorials navi}} + {{Tutorials navi}} + +--- +[documentation index](../README.md) > Basic modeling tutorial diff --git a/wiki/BestOf.md b/wiki/BestOf.md index 36927fca6f..7f76aea909 100644 --- a/wiki/BestOf.md +++ b/wiki/BestOf.md @@ -23,3 +23,6 @@ In order for this page to remain clean and clear and not descend in to a chaotic ## BestOf - OSS Philosophy - \@Abdullah\'s response to a user who is part of a small firm asking if they should integrate FreeCAD in to their workflow - ([link](https://forum.freecadweb.org/viewtopic.php?f=10&t=22372#p173810)) + +--- +[documentation index](../README.md) > BestOf diff --git a/wiki/Best_Practices_with_SpreadSheets.md b/wiki/Best_Practices_with_SpreadSheets.md index 52e697cc7a..b9e30ec6be 100644 --- a/wiki/Best_Practices_with_SpreadSheets.md +++ b/wiki/Best_Practices_with_SpreadSheets.md @@ -222,3 +222,6 @@ Review: ( russ\_hensel, dec 2020, Version: 0.19.23141 (Git) ) - **[Some Tutorials on Methodology (v0.17) - Master Sketch, Skeleton Geometry, Spreadsheets - FreeCAD Forum](https://forum.freecadweb.org/viewtopic.php?f=36&t=43451)** [Category:Sandbox‏‎](Category:Sandbox‏‎.md) [Category:Spreadsheet‏‎](Category:Spreadsheet‏‎.md) [Category:Tutorials‏‎](Category:Tutorials‏‎.md) + +--- +[documentation index](../README.md) > [Sandbox‏‎]] ](Category:Sandbox‏‎]] .md) > Best Practices with SpreadSheets diff --git a/wiki/Bitmap.md b/wiki/Bitmap.md index 6952735904..e85bae3b5f 100644 --- a/wiki/Bitmap.md +++ b/wiki/Bitmap.md @@ -1,6 +1,4 @@ # Bitmap - - ## Description [Bitmaps](https://en.wikipedia.org/wiki/Bitmap) or [raster graphics](http://en.wikipedia.org/wiki/Raster_graphics) are 2D images that are collections of pixels painted of different color shades. Together, thousands or millions of these pixels are able to represent an image or color picture to the human eye. @@ -16,3 +14,6 @@ FreeCAD can import bitmap images using the [Image Workbench](Image_Workbench.md) [Category:User Documentation](Category:User_Documentation.md) [Category:TechDraw](Category:TechDraw.md) [Category:Image](Category:Image.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Bitmap diff --git a/wiki/Body.md b/wiki/Body.md index c74c6470b2..df78bb0b85 100644 --- a/wiki/Body.md +++ b/wiki/Body.md @@ -1,6 +1,4 @@ # Body - - ## Introduction In FreeCAD the word \"[Body](Body.md)\" is normally used to refer to a [PartDesign Body](PartDesign_Body.md) object (`PartDesign::Body` class) that is defined by the [PartDesign Workbench](PartDesign_Workbench.md). This is a container object that can hold [2D sketches](Sketch.md) and [3D geometrical features](PartDesign_Feature.md) to build a solid shape. @@ -26,3 +24,6 @@ A Body is not required when using the [Part Workbench](Part_Workbench.md), as th {{PartDesign Tools navi}} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Body diff --git a/wiki/Branding.md b/wiki/Branding.md index cb0664469a..602a822fbe 100644 --- a/wiki/Branding.md +++ b/wiki/Branding.md @@ -1,11 +1,4 @@ # Branding - - - - - - - ## Overview This article describes the **Branding** of FreeCAD. Branding means to create your own application based on FreeCAD. That can be only your own executable or [splash screen](Splash_screen.md) till a complete reworked program. On base of the flexible architecture of FreeCAD it\'s easy to use it as base for your own special purpose program. @@ -106,3 +99,6 @@ All listed tags are optional. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Branding diff --git a/wiki/Bug_Triage.md b/wiki/Bug_Triage.md index abef34f459..d0e68b00df 100644 --- a/wiki/Bug_Triage.md +++ b/wiki/Bug_Triage.md @@ -1,11 +1,4 @@ # Bug Triage - - - - - - - ## Why @@ -156,3 +149,6 @@ An important methodology to track tickets by a certain subject/theme/category. I [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Bug Triage diff --git a/wiki/Bugtracker.md b/wiki/Bugtracker.md index ddebf97ac0..4313276163 100644 --- a/wiki/Bugtracker.md +++ b/wiki/Bugtracker.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Bugtracker diff --git a/wiki/Bugtracker_triage.md b/wiki/Bugtracker_triage.md index b9cbbf4a24..5135f2960b 100644 --- a/wiki/Bugtracker_triage.md +++ b/wiki/Bugtracker_triage.md @@ -1,2 +1,5 @@ # Bugtracker triage 1. REDIRECT [Bug Triage](Bug_Triage.md) + +--- +[documentation index](../README.md) > Bugtracker triage diff --git a/wiki/Builtin_modules.md b/wiki/Builtin_modules.md index 71eb2bff9a..f56a867d1e 100644 --- a/wiki/Builtin_modules.md +++ b/wiki/Builtin_modules.md @@ -1,5 +1,5 @@ # Builtin modules - **(October 2019) Do not edit these pages. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself by following [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit these pages. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself by following [Source documentation](Source_documentation.md).** This page presents more in-depth information over the built-in FreeCAD modules, and what are the functions and properties availible to you. This page is not a complete list of all the contents of these modules, and, because of the fast evolution of FreeCAD, the information presented here might be slightly outdated, but it should give you a good overview of the possibilities. For complete list of the modules content, use the dir(module) function in the interpreter. @@ -22,3 +22,6 @@ This page presents more in-depth information over the built-in FreeCAD modules, {{Powerdocnavi}} [Category:API](Category:API.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Builtin modules diff --git a/wiki/CAD_Rosetta_Stone.md b/wiki/CAD_Rosetta_Stone.md index 8b36c3e27a..7e09a230d8 100644 --- a/wiki/CAD_Rosetta_Stone.md +++ b/wiki/CAD_Rosetta_Stone.md @@ -1,2 +1,5 @@ # CAD Rosetta Stone See [Google docs](https://docs.google.com/spreadsheets/d/1kmfl8tHVg8H0676TVM57HdDVyNYLF3GZ_5YaxzgSLHA/edit#gid=0) link to participate. + +--- +[documentation index](../README.md) > CAD Rosetta Stone diff --git a/wiki/CAM_project.md b/wiki/CAM_project.md index 28fa678f32..ddb75d83c4 100644 --- a/wiki/CAM_project.md +++ b/wiki/CAM_project.md @@ -1,5 +1,5 @@ # CAM project - The CAM workbench and project is deprecated. See instead [Path Workbench](Path_Workbench.md) +The CAM workbench and project is deprecated. See instead [Path Workbench](Path_Workbench.md) @@ -7,3 +7,6 @@ [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > CAM project diff --git a/wiki/CSG.md b/wiki/CSG.md index 5c1536ee84..be961457cf 100644 --- a/wiki/CSG.md +++ b/wiki/CSG.md @@ -1,2 +1,5 @@ # CSG 1. REDIRECT [OpenSCAD\_CSG](OpenSCAD_CSG.md) + +--- +[documentation index](../README.md) > CSG diff --git a/wiki/CadQuery_Workbench.md b/wiki/CadQuery_Workbench.md index 0c07aa191b..70dbbc0d02 100644 --- a/wiki/CadQuery_Workbench.md +++ b/wiki/CadQuery_Workbench.md @@ -1,5 +1,4 @@ -# CadQuery Workbench - CadQuery workbench icon +# CadQuery workbench icon CadQuery Workbench **(January 2021) @@ -57,3 +56,6 @@ The latest version of CadQuery is no longer using FreeCAD and is not compatible [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > CadQuery Workbench diff --git a/wiki/Category:3rd_Party.md b/wiki/Category:3rd_Party.md index e7ccc48b0e..d64bdcbe5c 100644 --- a/wiki/Category:3rd_Party.md +++ b/wiki/Category:3rd_Party.md @@ -4,3 +4,6 @@ External aka 3rd-Party applications/libraries that FreeCAD depends on or are of ### Contents: [3Dconnexion input devices](3Dconnexion_input_devices.md) , [Ccache](Ccache.md) , [Developing FreeCAD with GitKraken](Developing_FreeCAD_with_GitKraken.md) , [Developing FreeCAD with KDevelop](Developing_FreeCAD_with_KDevelop.md) , [Distcc](Distcc.md) , [Doxygen](Doxygen.md) , [IfcOpenShell](IfcOpenShell.md) , [Import/Export IFC - compiling IfcOpenShell](Import/Export_IFC_-_compiling_IfcOpenShell.md) , [Inkscape](Inkscape.md) , [NumPy](NumPy.md) , [OpenCamLib](OpenCamLib.md) , [Sandbox:Dependency Matrix](Sandbox:Dependency_Matrix.md) , [Std DependencyGraph](Std_DependencyGraph.md) , [SweetHome3D](SweetHome3D.md) , [Valgrind](Valgrind.md) + +--- +[documentation index](../README.md) > Category:3rd Party diff --git a/wiki/Category:API.md b/wiki/Category:API.md index f90b0d2b36..cf9b6ded8a 100644 --- a/wiki/Category:API.md +++ b/wiki/Category:API.md @@ -1,5 +1,4 @@ # Category:API - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** This category gathers articles that list objects and methods available for [Python](Python.md) programming. @@ -9,3 +8,6 @@ This category gathers articles that list objects and methods available for [Pyth [Arch API](Arch_API.md) , [Base API](Base_API.md) , [Builtin modules](Builtin_modules.md) , [Console API](Console_API.md) , [Draft API](Draft_API.md) , [FeaturePython Custom Properties](FeaturePython_Custom_Properties.md) , [FreeCAD API](FreeCAD_API.md) , [FreeCADGui API](FreeCADGui_API.md) , [Matrix API](Matrix_API.md) , [Mesh API](Mesh_API.md) , [Object API](Object_API.md) , [Part API](Part_API.md) , [Placement API](Placement_API.md) , [Reinforcement API](Reinforcement_API.md) , [Selection API](Selection_API.md) , [TechDraw API](TechDraw_API.md) , [TechDrawGui API](TechDrawGui_API.md) , [TopoShape API](TopoShape_API.md) , [Vector API](Vector_API.md) , [ViewObject API](ViewObject_API.md) , [Category:Categories](Category:Categories.md) [Category:Robot API](Category:Robot_API.md) + +--- +[documentation index](../README.md) > Category:API diff --git a/wiki/Category:API_Documentation.md b/wiki/Category:API_Documentation.md index 56b0a267b6..1fd91e2efd 100644 --- a/wiki/Category:API_Documentation.md +++ b/wiki/Category:API_Documentation.md @@ -6,3 +6,6 @@ This category gathers all articles documenting the python API of FreeCAD and its [Python](Python.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > Category:API Documentation diff --git a/wiki/Category:Addons.md b/wiki/Category:Addons.md index 2a549a18e7..a38922fedf 100644 --- a/wiki/Category:Addons.md +++ b/wiki/Category:Addons.md @@ -1,7 +1,5 @@ # Category:Addons - - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. +This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. @@ -10,3 +8,6 @@ [A2plus Workbench](A2plus_Workbench.md) , [Addon](Addon.md) , [Animation Workbench](Animation_Workbench.md) , [Assembly2 Workbench](Assembly2_Workbench.md) , [Assembly3 Workbench](Assembly3_Workbench.md) , [Assembly4 Workbench](Assembly4_Workbench.md) , [BIM Workbench](BIM_Workbench.md) , [BOLTSFC Workbench](BOLTSFC_Workbench.md) , [CadQuery Workbench](CadQuery_Workbench.md) , [Cfd Workbench](Cfd_Workbench.md) , [Civil Engineering Workbench](Civil_Engineering_Workbench.md) , [CurvedShapes Workbench](CurvedShapes_Workbench.md) , [Curves Workbench](Curves_Workbench.md) , [Defeaturing](Defeaturing.md) , [Defeaturing Workbench](Defeaturing_Workbench.md) , [Design456 Workbench](Design456_Workbench.md) , [Drawing Dimensioning Addon](Drawing_Dimensioning_Addon.md) , [DynamicData Workbench](DynamicData_Workbench.md) , [ExplodedAssembly Workbench](ExplodedAssembly_Workbench.md) , [External workbenches](External_workbenches.md) , [Fasteners Workbench](Fasteners_Workbench.md) , [FCGear BevelGear](FCGear_BevelGear.md) , [FCGear CrownGear](FCGear_CrownGear.md) , [FCGear CycloideGear](FCGear_CycloideGear.md) , [FCGear InvoluteGear](FCGear_InvoluteGear.md) , [FCGear InvoluteRack](FCGear_InvoluteRack.md) , [FCGear LanternGear](FCGear_LanternGear.md) , [FCGear TimingGear](FCGear_TimingGear.md) , [FCGear Workbench](FCGear_Workbench.md) , [FCGear WormGear](FCGear_WormGear.md) , [FEM FrontISTR Workbench](FEM_FrontISTR_Workbench.md) , [Flamingo Workbench](Flamingo_Workbench.md) , [How to install additional workbenches](How_to_install_additional_workbenches.md) , [KicadStepUp Workbench](KicadStepUp_Workbench.md) , [Lattice2 Workbench](Lattice2_Workbench.md) , [Macro Kerkythea](Macro_Kerkythea.md) , [Macro WorkFeatures](Macro_WorkFeatures.md) , [Manipulator Workbench](Manipulator_Workbench.md) , [ModernUI Workbench](ModernUI_Workbench.md) , [MOOC Workbench](MOOC_Workbench.md) , [OSE 3D Printer Workbench](OSE_3D_Printer_Workbench.md) , [OSE Piping Workbench](OSE_Piping_Workbench.md) , [Parts Library Workbench](Parts_Library_Workbench.md) , [PCB Workbench](PCB_Workbench.md) , [Plot Axes](Plot_Axes.md) , [Plot Basic tutorial](Plot_Basic_tutorial.md) , [Plot Grid](Plot_Grid.md) , [Plot Labels](Plot_Labels.md) , [Plot Legend](Plot_Legend.md) , [Plot Module](Plot_Module.md) , [Plot MultiAxes tutorial](Plot_MultiAxes_tutorial.md) , [Plot Positions](Plot_Positions.md) , [Plot Save](Plot_Save.md) , [Plot Series](Plot_Series.md) , [POV-Ray-Rendering Workbench](POV-Ray-Rendering_Workbench.md) , [Pyramids and polyhedrons Workbench](Pyramids_and_polyhedrons_Workbench.md) , [Pyrate Workbench](Pyrate_Workbench.md) , [Reinforcement Workbench](Reinforcement_Workbench.md) , [Render project](Render_project.md) , [Rocket BodyTube](Rocket_BodyTube.md) , [Rocket Bulkhead](Rocket_Bulkhead.md) , [Rocket CenteringRing](Rocket_CenteringRing.md) , [Rocket Ejection Charge Calculator](Rocket_Ejection_Charge_Calculator.md) , [Rocket Fin](Rocket_Fin.md) , [Rocket NoseCone](Rocket_NoseCone.md) , [Rocket Parachute Size Calculator](Rocket_Parachute_Size_Calculator.md) , [Rocket Thrust To Weight Calculator](Rocket_Thrust_To_Weight_Calculator.md) , [Rocket Transition](Rocket_Transition.md) , [Rocket Vent Hole Size Calculator](Rocket_Vent_Hole_Size_Calculator.md) , [Rocket Workbench](Rocket_Workbench.md) , [Sandbox:Kinagaki](Sandbox:Kinagaki.md) , [SheetMetal AddBase](SheetMetal_AddBase.md) , [SheetMetal AddBend](SheetMetal_AddBend.md) , [SheetMetal AddCornerRelief](SheetMetal_AddCornerRelief.md) , [SheetMetal AddFoldWall](SheetMetal_AddFoldWall.md) , [SheetMetal AddJunction](SheetMetal_AddJunction.md) , [SheetMetal AddRelief](SheetMetal_AddRelief.md) , [SheetMetal AddWall](SheetMetal_AddWall.md) , [SheetMetal Examples](SheetMetal_Examples.md) , [SheetMetal Extrude](SheetMetal_Extrude.md) , [SheetMetal Forming](SheetMetal_Forming.md) , [SheetMetal SketchOnSheet](SheetMetal_SketchOnSheet.md) , [SheetMetal UnattendedUnfold](SheetMetal_UnattendedUnfold.md) , [SheetMetal Unfold](SheetMetal_Unfold.md) , [SheetMetal Workbench](SheetMetal_Workbench.md) , [Ship Workbench](Ship_Workbench.md) , [Silk Workbench](Silk_Workbench.md) , [Stemfie Workbench](Stemfie_Workbench.md) , [Symbols Library Workbench](Symbols_Library_Workbench.md) , [ThreadProfile Workbench](ThreadProfile_Workbench.md) , [Timber Workbench](Timber_Workbench.md) , [WebTools Workbench](WebTools_Workbench.md) , [Wood Frame Workbench](Wood_Frame_Workbench.md) , [Workfeature Workbench](Workfeature_Workbench.md) , , , [Category:Categories](Category:Categories.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:FCGear](Category:FCGear.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > Category:Addons diff --git a/wiki/Category:Administration.md b/wiki/Category:Administration.md index 243be899c0..18ff7cd4bb 100644 --- a/wiki/Category:Administration.md +++ b/wiki/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi](Template:Arch_Tools_navi.md) , [Template:Artwork](Template:Artwork.md) , [Template:Artwork/ru](Template:Artwork/ru.md) , [Template:ASCII](Template:ASCII.md) , [Backend Adminstration](Backend_Adminstration.md) , [Bug Triage](Bug_Triage.md) , [Changelog](Changelog.md) , [Template:Choice](Template:Choice.md) , [Template:Code](Template:Code.md) , [Template:ColoredParagraph](Template:ColoredParagraph.md) , [Template:ColoredText](Template:ColoredText.md) , [Crowdin Administration](Crowdin_Administration.md) , [Crowdin Scripts](Crowdin_Scripts.md) , [Template:Delete](Template:Delete.md) , [Template:Development-Version](Template:Development-Version.md) , [Template:Disambig](Template:Disambig.md) , [Template:Docnav](Template:Docnav.md) , [Template:Document objects navi](Template:Document_objects_navi.md) , [Template:DownloadMacStable](Template:DownloadMacStable.md) , [Template:DownloadUnixStable](Template:DownloadUnixStable.md) , [Template:DownloadWindowsStable](Template:DownloadWindowsStable.md) , [Template:Draft Tools navi](Template:Draft_Tools_navi.md) , [Template:Drawing Tools navi](Template:Drawing_Tools_navi.md) , [Template:EM Tools navi](Template:EM_Tools_navi.md) , [Template:Emphasis](Template:Emphasis.md) , [Template:ExampleCode](Template:ExampleCode.md) , [Template:FALSE](Template:FALSE.md) , [Template:False](Template:False.md) , [Template:FALSE/pl](Template:FALSE/pl.md) , [Template:False/pl](Template:False/pl.md) , [Template:FEM Tools navi](Template:FEM_Tools_navi.md) , [Template:FEM Tools navi/pl](Template:FEM_Tools_navi/pl.md) , [Template:FileName](Template:FileName.md) , [Template:Hello](Template:Hello.md) , [Template:Image Tools navi](Template:Image_Tools_navi.md) , [Template:Incode](Template:Incode.md) , [Template:Interface navi](Template:Interface_navi.md) , [Template:KEY](Template:KEY.md) , [Template:Key2](Template:Key2.md) , [Template:Key3](Template:Key3.md) , [Template:MacroCode](Template:MacroCode.md) , [Template:MenuCommand](Template:MenuCommand.md) , [Template:Mesh Tools navi](Template:Mesh_Tools_navi.md) , [Template:Message](Template:Message.md) , [Template:Navigation menu 2](Template:Navigation_menu_2.md) , [Template:OpenSCAD Tools navi](Template:OpenSCAD_Tools_navi.md) , [Template:Optional](Template:Optional.md) , [Organization chart](Organization_chart.md) , [Template:Parameter](Template:Parameter.md) , [Template:Part Tools navi](Template:Part_Tools_navi.md) , [Template:Part Tools navi/en](Template:Part_Tools_navi/en.md) , [Template:PartDesign Tools navi](Template:PartDesign_Tools_navi.md) , [Template:Path Tools navi](Template:Path_Tools_navi.md) , [Template:Plot Tools navi](Template:Plot_Tools_navi.md) , [Template:Plot Tools navi/pl](Template:Plot_Tools_navi/pl.md) , [Template:Points Tools navi](Template:Points_Tools_navi.md) , [Template:Powerdocnavi](Template:Powerdocnavi.md) , [Template:Properties Title](Template:Properties_Title.md) , [Template:Properties Title/pl](Template:Properties_Title/pl.md) , [Template:PropertyData](Template:PropertyData.md) , [Template:PropertyTasks](Template:PropertyTasks.md) , [Template:PropertyView](Template:PropertyView.md) , [Python 3](Python_3.md) , [Template:Raytracing Tools navi](Template:Raytracing_Tools_navi.md) , [Release process](Release_process.md) , [Template:Robot Tools navi](Template:Robot_Tools_navi.md) , [Template:Ship Tools navi](Template:Ship_Tools_navi.md) , [Template:Sketcher Tools navi](Template:Sketcher_Tools_navi.md) , [Template:Spreadsheet Tools navi](Template:Spreadsheet_Tools_navi.md) , [Template:Start Tools navi](Template:Start_Tools_navi.md) , [Template:Std Base navi](Template:Std_Base_navi.md) , [Template:StdMenu](Template:StdMenu.md) , [Template:Surface Tools navi](Template:Surface_Tools_navi.md) , [Template:SystemInput](Template:SystemInput.md) , [Template:SystemOutput](Template:SystemOutput.md) , [Template:TasksTag](Template:TasksTag.md) , [Template:TechDraw Tools navi](Template:TechDraw_Tools_navi.md) , [Template:TitleTasks](Template:TitleTasks.md) , [Template:Top](Template:Top.md) , [Tracker](Tracker.md) , [Template:TRUE](Template:TRUE.md) , [Template:True](Template:True.md) , [Template:TRUE/pl](Template:TRUE/pl.md) , [Template:True/pl](Template:True/pl.md) , [Template:Tutorials navi](Template:Tutorials_navi.md) , [Template:UnfinishedDocu](Template:UnfinishedDocu.md) , [Template:URL](Template:URL.md) , [Template:URLn](Template:URLn.md) , [Template:Userdocnavi](Template:Userdocnavi.md) , [Template:Value](Template:Value.md) , [Template:Variable](Template:Variable.md) , [Template:VeryImportantMessage](Template:VeryImportantMessage.md) , [WikiPages](WikiPages.md) , [WikiRobots](WikiRobots.md) , , , , , , [Category:Categories](Category:Categories.md) [Category:Disambiguation](Category:Disambiguation.md) [Category:HouseKeeping](Category:HouseKeeping.md) [Category:Pages to delete](Category:Pages_to_delete.md) [Category:UnfinishedDocu](Category:UnfinishedDocu.md) [Category:Wiki](Category:Wiki.md) [Category:Work in progress](Category:Work_in_progress.md) + +--- +[documentation index](../README.md) > Category:Administration diff --git a/wiki/Category:Arch.md b/wiki/Category:Arch.md index f504a88cad..82feefab95 100644 --- a/wiki/Category:Arch.md +++ b/wiki/Category:Arch.md @@ -6,3 +6,6 @@ This category list pages related to the [Arch Workbench](Arch_Workbench.md), the [Arch 3DS](Arch_3DS.md) , [Arch 3Views](Arch_3Views.md) , [Arch Add](Arch_Add.md) , [Arch API](Arch_API.md) , [Arch Axis](Arch_Axis.md) , [Arch AxisSystem](Arch_AxisSystem.md) , [Arch Building](Arch_Building.md) , [Arch BuildingPart](Arch_BuildingPart.md) , [Arch Check](Arch_Check.md) , [Arch CloneComponent](Arch_CloneComponent.md) , [Arch CloseHoles](Arch_CloseHoles.md) , [Arch CompAxis](Arch_CompAxis.md) , [Arch Component](Arch_Component.md) , [Arch CompPanel](Arch_CompPanel.md) , [Arch CompPipe](Arch_CompPipe.md) , [Arch CompRebarStraight](Arch_CompRebarStraight.md) , [Arch CompSetMaterial](Arch_CompSetMaterial.md) , [Arch CurtainWall](Arch_CurtainWall.md) , [Arch CutLine](Arch_CutLine.md) , [Arch CutPlane](Arch_CutPlane.md) , [Arch DAE](Arch_DAE.md) , [Arch Door](Arch_Door.md) , [Arch Equipment](Arch_Equipment.md) , [Arch Fence](Arch_Fence.md) , [Arch Floor](Arch_Floor.md) , [Arch Frame](Arch_Frame.md) , [Arch Grid](Arch_Grid.md) , [Arch IFC](Arch_IFC.md) , [Arch IfcExplorer](Arch_IfcExplorer.md) , [Arch IfcSpreadsheet](Arch_IfcSpreadsheet.md) , [Arch JSON](Arch_JSON.md) , [Arch MergeWalls](Arch_MergeWalls.md) , [Arch MeshToShape](Arch_MeshToShape.md) , [Arch MultiMaterial](Arch_MultiMaterial.md) , [Arch Nest](Arch_Nest.md) , [Arch OBJ](Arch_OBJ.md) , [Arch Panel](Arch_Panel.md) , [Arch Panel Cut](Arch_Panel_Cut.md) , [Arch Panel Sheet](Arch_Panel_Sheet.md) , [Arch panel tutorial](Arch_panel_tutorial.md) , [Arch Pipe](Arch_Pipe.md) , [Arch PipeConnector](Arch_PipeConnector.md) , [Arch Preferences](Arch_Preferences.md) , [Arch Profile](Arch_Profile.md) , [Arch Project](Arch_Project.md) , [Arch Rebar](Arch_Rebar.md) , [Arch Rebar BeamReinforcement](Arch_Rebar_BeamReinforcement.md) , [Arch Rebar BentShape](Arch_Rebar_BentShape.md) , [Arch Rebar Circular ColumnReinforcement](Arch_Rebar_Circular_ColumnReinforcement.md) , [Arch Rebar ColumnReinforcement](Arch_Rebar_ColumnReinforcement.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) , [Arch Rebar Dimensioning](Arch_Rebar_Dimensioning.md) , [Arch Rebar Drawing](Arch_Rebar_Drawing.md) , [Arch Rebar Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) , [Arch Rebar Footing Reinforcement](Arch_Rebar_Footing_Reinforcement.md) , [Arch Rebar Helical](Arch_Rebar_Helical.md) , [Arch Rebar LShape](Arch_Rebar_LShape.md) , [Arch Rebar Slab Reinforcement](Arch_Rebar_Slab_Reinforcement.md) , [Arch Rebar Stirrup](Arch_Rebar_Stirrup.md) , [Arch Rebar Straight](Arch_Rebar_Straight.md) , [Arch Rebar UShape](Arch_Rebar_UShape.md) , [Arch Reference](Arch_Reference.md) , [Arch Remove](Arch_Remove.md) , [Arch RemoveShape](Arch_RemoveShape.md) , [Arch Roof](Arch_Roof.md) , [Arch Schedule](Arch_Schedule.md) , [Arch SectionPlane](Arch_SectionPlane.md) , [Arch SelectNonSolidMeshes](Arch_SelectNonSolidMeshes.md) , [Arch SetMaterial](Arch_SetMaterial.md) , [Arch SHP](Arch_SHP.md) , [Arch Site](Arch_Site.md) , [Arch Space](Arch_Space.md) , [Arch SplitMesh](Arch_SplitMesh.md) , [Arch Stairs](Arch_Stairs.md) , [Arch Structure](Arch_Structure.md) , [Arch Survey](Arch_Survey.md) , [Arch ToggleIfcBrepFlag](Arch_ToggleIfcBrepFlag.md) , [Arch ToggleSubs](Arch_ToggleSubs.md) , [Template:Arch Tools navi](Template:Arch_Tools_navi.md) , [Arch Truss](Arch_Truss.md) , [Arch tutorial](Arch_tutorial.md) , [Arch Wall](Arch_Wall.md) , [Arch Window](Arch_Window.md) , [Arch Workbench](Arch_Workbench.md) , [Artwork Arch](Artwork_Arch.md) , [BIM Library](BIM_Library.md) , [Custom Spacing](Custom_Spacing.md) , [IfcOpenShell](IfcOpenShell.md) , [IfcPlusPlus](IfcPlusPlus.md) , [Import/Export IFC - compiling IfcOpenShell](Import/Export_IFC_-_compiling_IfcOpenShell.md) , [Manual:BIM modeling](Manual:BIM_modeling.md) , [Material](Material.md) , [Material editor](Material_editor.md) , [Reinforcement Addon](Reinforcement_Addon.md) , [Reinforcement API](Reinforcement_API.md) , [SweetHome3D](SweetHome3D.md) , [Tutorial custom placing of windows and doors](Tutorial_custom_placing_of_windows_and_doors.md) , [Tutorial for open windows](Tutorial_for_open_windows.md) , [WikiRobots](WikiRobots.md) , [WikiRobots/de](WikiRobots/de.md) , [WikiRobots/en](WikiRobots/en.md) , [WikiRobots/fr](WikiRobots/fr.md) , [WikiRobots/it](WikiRobots/it.md) , [Category:BIM](Category:BIM.md) [Category:Workbenches](Category:Workbenches.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > Category:Arch diff --git a/wiki/Category:Artwork.md b/wiki/Category:Artwork.md index 0a75065408..a317a93451 100644 --- a/wiki/Category:Artwork.md +++ b/wiki/Category:Artwork.md @@ -6,3 +6,6 @@ This category collects pages related to artwork existing in the program, like ic [Artwork](Artwork.md) , [Template:Artwork](Template:Artwork.md) , [Artwork Arch](Artwork_Arch.md) , [Artwork Arch/ru](Artwork_Arch/ru.md) , [Artwork Assembly](Artwork_Assembly.md) , [Artwork Assembly/ru](Artwork_Assembly/ru.md) , [Artwork Assembly3](Artwork_Assembly3.md) , [Artwork Complete](Artwork_Complete.md) , [Artwork Complete/en](Artwork_Complete/en.md) , [Artwork Complete/fr](Artwork_Complete/fr.md) , [Artwork Complete/pl](Artwork_Complete/pl.md) , [Artwork Complete/ru](Artwork_Complete/ru.md) , [Artwork Draft](Artwork_Draft.md) , [Artwork Draft/en](Artwork_Draft/en.md) , [Artwork Draft/pl](Artwork_Draft/pl.md) , [Artwork Draft/ru](Artwork_Draft/ru.md) , [Artwork Drawing](Artwork_Drawing.md) , [Artwork Drawing/en](Artwork_Drawing/en.md) , [Artwork Drawing/fr](Artwork_Drawing/fr.md) , [Artwork Drawing/pl](Artwork_Drawing/pl.md) , [Artwork Drawing/ru](Artwork_Drawing/ru.md) , [Artwork Erroneous](Artwork_Erroneous.md) , [Artwork Erroneous/ru](Artwork_Erroneous/ru.md) , [Artwork Fem](Artwork_Fem.md) , [Artwork Fem/ru](Artwork_Fem/ru.md) , [Artwork Gui](Artwork_Gui.md) , [Artwork Gui/ru](Artwork_Gui/ru.md) , [Artwork Guidelines](Artwork_Guidelines.md) , [Artwork Guidelines/en](Artwork_Guidelines/en.md) , [Artwork Guidelines/fr](Artwork_Guidelines/fr.md) , [Artwork Guidelines/pl](Artwork_Guidelines/pl.md) , [Artwork Guidelines/pt-br](Artwork_Guidelines/pt-br.md) , [Artwork Guidelines/ru](Artwork_Guidelines/ru.md) , [Artwork Image](Artwork_Image.md) , [Artwork Image/ru](Artwork_Image/ru.md) , [Artwork Inspection](Artwork_Inspection.md) , [Artwork Inspection/ru](Artwork_Inspection/ru.md) , [Artwork Material](Artwork_Material.md) , [Artwork Material/ru](Artwork_Material/ru.md) , [Artwork Mesh](Artwork_Mesh.md) , [Artwork Mesh/ru](Artwork_Mesh/ru.md) , [Artwork MeshPart](Artwork_MeshPart.md) , [Artwork MeshPart/ru](Artwork_MeshPart/ru.md) , [Artwork OpenSCAD](Artwork_OpenSCAD.md) , [Artwork OpenSCAD/ru](Artwork_OpenSCAD/ru.md) , [Artwork Part](Artwork_Part.md) , [Artwork Part/ru](Artwork_Part/ru.md) , [Artwork PartDesign](Artwork_PartDesign.md) , [Artwork PartDesign/ru](Artwork_PartDesign/ru.md) , [Artwork Path](Artwork_Path.md) , [Artwork Path/ru](Artwork_Path/ru.md) , [Artwork Plot](Artwork_Plot.md) , [Artwork Plot/ru](Artwork_Plot/ru.md) , [Artwork Points](Artwork_Points.md) , [Artwork Points/ru](Artwork_Points/ru.md) , [Artwork Raytracing](Artwork_Raytracing.md) , [Artwork Raytracing/ru](Artwork_Raytracing/ru.md) , [Artwork Reinforcement](Artwork_Reinforcement.md) , [Artwork Reinforcement/en](Artwork_Reinforcement/en.md) , [Artwork Reinforcement/fr](Artwork_Reinforcement/fr.md) , [Artwork Reinforcement/ru](Artwork_Reinforcement/ru.md) , [Artwork ReverseEngineering](Artwork_ReverseEngineering.md) , [Artwork ReverseEngineering/ru](Artwork_ReverseEngineering/ru.md) , [Artwork Robot](Artwork_Robot.md) , [Artwork Robot/ru](Artwork_Robot/ru.md) , [Artwork Ship](Artwork_Ship.md) , [Artwork Ship/ru](Artwork_Ship/ru.md) , [Artwork Sketcher](Artwork_Sketcher.md) , [Artwork Sketcher/ru](Artwork_Sketcher/ru.md) , [Artwork Splash screen](Artwork_Splash_screen.md) , [Artwork Splash screen/ru](Artwork_Splash_screen/ru.md) , [Artwork Spreadsheet](Artwork_Spreadsheet.md) , [Artwork Spreadsheet/ru](Artwork_Spreadsheet/ru.md) , [Artwork Start](Artwork_Start.md) , [Artwork Start/ru](Artwork_Start/ru.md) , [Artwork Surface](Artwork_Surface.md) , [Artwork Surface/ru](Artwork_Surface/ru.md) , [Artwork TechDraw](Artwork_TechDraw.md) , [Artwork TechDraw/ru](Artwork_TechDraw/ru.md) , [Artwork Test](Artwork_Test.md) , [Artwork Test/en](Artwork_Test/en.md) , [Artwork Test/fr](Artwork_Test/fr.md) , [Artwork Test/ru](Artwork_Test/ru.md) , [Artwork Tux](Artwork_Tux.md) , [Artwork Tux/en](Artwork_Tux/en.md) , [Artwork Tux/fr](Artwork_Tux/fr.md) , [Artwork Tux/pl](Artwork_Tux/pl.md) , [Artwork Tux/ru](Artwork_Tux/ru.md) , [Artwork Web](Artwork_Web.md) , [Artwork Web/ru](Artwork_Web/ru.md) , [Artwork/ru](Artwork/ru.md) , [Template:Artwork/ru](Template:Artwork/ru.md) , [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Icon](Category:Icon.md) + +--- +[documentation index](../README.md) > Category:Artwork diff --git a/wiki/Category:BIM.md b/wiki/Category:BIM.md index f63f629958..69829f1e3f 100644 --- a/wiki/Category:BIM.md +++ b/wiki/Category:BIM.md @@ -6,3 +6,6 @@ This category is for pages related to Building Information Management (BIM). The [Arch IfcExplorer](Arch_IfcExplorer.md) , [BIM application compatibility table](BIM_application_compatibility_table.md) , [BIM ingame tutorial](BIM_ingame_tutorial.md) , [BIM Library](BIM_Library.md) , [BIM Workbench](BIM_Workbench.md) , [IfcOpenShell](IfcOpenShell.md) , [Import/Export IFC - compiling IfcOpenShell](Import/Export_IFC_-_compiling_IfcOpenShell.md) , [Manual:BIM modeling](Manual:BIM_modeling.md) , [Material](Material.md) , [Category:User Documentation](Category:User_Documentation.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Arch](Category:Arch.md) + +--- +[documentation index](../README.md) > Category:BIM diff --git a/wiki/Category:Base.md b/wiki/Category:Base.md index 0315e76920..db7c5ec83a 100644 --- a/wiki/Category:Base.md +++ b/wiki/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Base diff --git a/wiki/Category:Categories.md b/wiki/Category:Categories.md index d7dc52bef1..7091449641 100644 --- a/wiki/Category:Categories.md +++ b/wiki/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , , , , , , , , , , , , , , , , , [Category:Categories](Category:Categories.md) [Category:Addons](Category:Addons.md) [Category:Administration](Category:Administration.md) [Category:API](Category:API.md) [Category:Categories](Category:Categories.md) [Category:Command Reference](Category:Command_Reference.md) [Category:Developer](Category:Developer.md) [Category:Documentation](Category:Documentation.md) [Category:Help](Category:Help.md) [Category:HouseKeeping](Category:HouseKeeping.md) [Category:Hubs](Category:Hubs.md) [Category:Image](Category:Image.md) [Category:Macros](Category:Macros.md) [Category:News](Category:News.md) [Category:Pages to delete](Category:Pages_to_delete.md) [Category:Pages with broken file links](Category:Pages_with_broken_file_links.md) [Category:Python Code](Category:Python_Code.md) [Category:Roadmap](Category:Roadmap.md) [Category:Roadmap/pl](Category:Roadmap/pl.md) [Category:Sandbox](Category:Sandbox.md) [Category:Sandbox/pl](Category:Sandbox/pl.md) [Category:Template](Category:Template.md) [Category:Tutorials](Category:Tutorials.md) [Category:UnfinishedDocu](Category:UnfinishedDocu.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > Category:Categories diff --git a/wiki/Category:Command_Reference.md b/wiki/Category:Command_Reference.md index 82b9c77287..9b005c0dec 100644 --- a/wiki/Category:Command_Reference.md +++ b/wiki/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD [Command](Command.md). [Arch 3Views](Arch_3Views.md) , [Arch Add](Arch_Add.md) , [Arch Axis](Arch_Axis.md) , [Arch AxisSystem](Arch_AxisSystem.md) , [Arch Building](Arch_Building.md) , [Arch BuildingPart](Arch_BuildingPart.md) , [Arch Check](Arch_Check.md) , [Arch CloneComponent](Arch_CloneComponent.md) , [Arch CloseHoles](Arch_CloseHoles.md) , [Arch CompAxis](Arch_CompAxis.md) , [Arch Component](Arch_Component.md) , [Arch CompPanel](Arch_CompPanel.md) , [Arch CompPipe](Arch_CompPipe.md) , [Arch CompRebarStraight](Arch_CompRebarStraight.md) , [Arch CompSetMaterial](Arch_CompSetMaterial.md) , [Arch CurtainWall](Arch_CurtainWall.md) , [Arch CutLine](Arch_CutLine.md) , [Arch CutPlane](Arch_CutPlane.md) , [Arch Door](Arch_Door.md) , [Arch Equipment](Arch_Equipment.md) , [Arch Fence](Arch_Fence.md) , [Arch Floor](Arch_Floor.md) , [Arch Frame](Arch_Frame.md) , [Arch Grid](Arch_Grid.md) , [Arch IfcExplorer](Arch_IfcExplorer.md) , [Arch IfcSpreadsheet](Arch_IfcSpreadsheet.md) , [Arch MergeWalls](Arch_MergeWalls.md) , [Arch MeshToShape](Arch_MeshToShape.md) , [Arch MultiMaterial](Arch_MultiMaterial.md) , [Arch Nest](Arch_Nest.md) , [Arch Panel](Arch_Panel.md) , [Arch Panel Cut](Arch_Panel_Cut.md) , [Arch Panel Sheet](Arch_Panel_Sheet.md) , [Arch Pipe](Arch_Pipe.md) , [Arch PipeConnector](Arch_PipeConnector.md) , [Arch Profile](Arch_Profile.md) , [Arch Project](Arch_Project.md) , [Arch Rebar](Arch_Rebar.md) , [Arch Rebar BeamReinforcement](Arch_Rebar_BeamReinforcement.md) , [Arch Rebar BentShape](Arch_Rebar_BentShape.md) , [Arch Rebar BOM](Arch_Rebar_BOM.md) , [Arch Rebar Circular ColumnReinforcement](Arch_Rebar_Circular_ColumnReinforcement.md) , [Arch Rebar ColumnReinforcement](Arch_Rebar_ColumnReinforcement.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) , [Arch Rebar Dimensioning](Arch_Rebar_Dimensioning.md) , [Arch Rebar Drawing](Arch_Rebar_Drawing.md) , [Arch Rebar Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) , [Arch Rebar Footing Reinforcement](Arch_Rebar_Footing_Reinforcement.md) , [Arch Rebar Helical](Arch_Rebar_Helical.md) , [Arch Rebar LShape](Arch_Rebar_LShape.md) , [Arch Rebar Slab Reinforcement](Arch_Rebar_Slab_Reinforcement.md) , [Arch Rebar Stirrup](Arch_Rebar_Stirrup.md) , [Arch Rebar Straight](Arch_Rebar_Straight.md) , [Arch Rebar UShape](Arch_Rebar_UShape.md) , [Arch Reference](Arch_Reference.md) , [Arch Remove](Arch_Remove.md) , [Arch RemoveShape](Arch_RemoveShape.md) , [Arch Roof](Arch_Roof.md) , [Arch Schedule](Arch_Schedule.md) , [Arch SectionPlane](Arch_SectionPlane.md) , [Arch SelectNonSolidMeshes](Arch_SelectNonSolidMeshes.md) , [Arch SetMaterial](Arch_SetMaterial.md) , [Arch Site](Arch_Site.md) , [Arch Space](Arch_Space.md) , [Arch SplitMesh](Arch_SplitMesh.md) , [Arch Stairs](Arch_Stairs.md) , [Arch Structure](Arch_Structure.md) , [Arch Survey](Arch_Survey.md) , [Arch ToggleIfcBrepFlag](Arch_ToggleIfcBrepFlag.md) , [Arch ToggleSubs](Arch_ToggleSubs.md) , [Arch Truss](Arch_Truss.md) , [Arch Wall](Arch_Wall.md) , [Arch Window](Arch_Window.md) , [Assembly3 ConstraintAlignment](Assembly3_ConstraintAlignment.md) , [Assembly3 ConstraintAngle](Assembly3_ConstraintAngle.md) , [Assembly3 ConstraintArcLineTangent](Assembly3_ConstraintArcLineTangent.md) , [Assembly3 ConstraintAttachment](Assembly3_ConstraintAttachment.md) , [Assembly3 ConstraintAxial](Assembly3_ConstraintAxial.md) , [Assembly3 ConstraintCoincidence](Assembly3_ConstraintCoincidence.md) , [Assembly3 ConstraintColinear](Assembly3_ConstraintColinear.md) , [Assembly3 ConstraintDiameter](Assembly3_ConstraintDiameter.md) , [Assembly3 ConstraintEqualAngle](Assembly3_ConstraintEqualAngle.md) , [Assembly3 ConstraintEqualLength](Assembly3_ConstraintEqualLength.md) , [Assembly3 ConstraintEqualLineArcLength](Assembly3_ConstraintEqualLineArcLength.md) , [Assembly3 ConstraintEqualPointLineDistance](Assembly3_ConstraintEqualPointLineDistance.md) , [Assembly3 ConstraintEqualRadius](Assembly3_ConstraintEqualRadius.md) , [Assembly3 ConstraintLengthDifference](Assembly3_ConstraintLengthDifference.md) , [Assembly3 ConstraintLengthEqualPointLineDistance](Assembly3_ConstraintLengthEqualPointLineDistance.md) , [Assembly3 ConstraintLengthRatio](Assembly3_ConstraintLengthRatio.md) , [Assembly3 ConstraintLineHorizontal](Assembly3_ConstraintLineHorizontal.md) , [Assembly3 ConstraintLineLength](Assembly3_ConstraintLineLength.md) , [Assembly3 ConstraintLineVertical](Assembly3_ConstraintLineVertical.md) , [Assembly3 ConstraintLock](Assembly3_ConstraintLock.md) , [Assembly3 ConstraintMidPoint](Assembly3_ConstraintMidPoint.md) , [Assembly3 ConstraintMore](Assembly3_ConstraintMore.md) , [Assembly3 ConstraintMultiParallel](Assembly3_ConstraintMultiParallel.md) , [Assembly3 ConstraintPerpendicular](Assembly3_ConstraintPerpendicular.md) , [Assembly3 ConstraintPointDistance](Assembly3_ConstraintPointDistance.md) , [Assembly3 ConstraintPointInPlane](Assembly3_ConstraintPointInPlane.md) , [Assembly3 ConstraintPointLineDistance](Assembly3_ConstraintPointLineDistance.md) , [Assembly3 ConstraintPointOnCircle](Assembly3_ConstraintPointOnCircle.md) , [Assembly3 ConstraintPointOnLine](Assembly3_ConstraintPointOnLine.md) , [Assembly3 ConstraintPointPlaneDistance](Assembly3_ConstraintPointPlaneDistance.md) , [Assembly3 ConstraintPointsCoincident](Assembly3_ConstraintPointsCoincident.md) , [Assembly3 ConstraintPointsDistance](Assembly3_ConstraintPointsDistance.md) , [Assembly3 ConstraintPointsHorizontal](Assembly3_ConstraintPointsHorizontal.md) , [Assembly3 ConstraintPointsProjectDistance](Assembly3_ConstraintPointsProjectDistance.md) , [Assembly3 ConstraintPointsSymmetric](Assembly3_ConstraintPointsSymmetric.md) , [Assembly3 ConstraintPointsVertical](Assembly3_ConstraintPointsVertical.md) , [Assembly3 ConstraintSameOrientation](Assembly3_ConstraintSameOrientation.md) , [Assembly3 ConstraintSketchPlane](Assembly3_ConstraintSketchPlane.md) , [Assembly3 ConstraintSymmetric](Assembly3_ConstraintSymmetric.md) , [Assembly3 ConstraintSymmetricHorizontal](Assembly3_ConstraintSymmetricHorizontal.md) , [Assembly3 ConstraintSymmetricLine](Assembly3_ConstraintSymmetricLine.md) , [Assembly3 ConstraintSymmetricVertical](Assembly3_ConstraintSymmetricVertical.md) , [Assembly3 CreateAssembly](Assembly3_CreateAssembly.md) , [Assembly3 CreateElement](Assembly3_CreateElement.md) , [Assembly3 GoToRelation](Assembly3_GoToRelation.md) , [Assembly3 GroupObjects](Assembly3_GroupObjects.md) , [Assembly3 ImportFromSTEP](Assembly3_ImportFromSTEP.md) , [Assembly3 ImportMultiDocument](Assembly3_ImportMultiDocument.md) , [Assembly3 MeasureAngle](Assembly3_MeasureAngle.md) , [Assembly3 MeasurePointLine](Assembly3_MeasurePointLine.md) , [Assembly3 MeasurePointPlane](Assembly3_MeasurePointPlane.md) , [Assembly3 MeasurePoints](Assembly3_MeasurePoints.md) , [BIM Box](BIM_Box.md) , [BIM Classification](BIM_Classification.md) , [BIM Clone](BIM_Clone.md) , [BIM Copy](BIM_Copy.md) , [BIM IfcElements](BIM_IfcElements.md) , [BIM IfcProperties](BIM_IfcProperties.md) , [BIM IfcQuantities](BIM_IfcQuantities.md) , [BIM Layers](BIM_Layers.md) , [BIM Library](BIM_Library.md) , [BIM Preflight](BIM_Preflight.md) , [BIM Project](BIM_Project.md) , [BIM Setup](BIM_Setup.md) , [BIM Views](BIM_Views.md) , [BIM Windows](BIM_Windows.md) , [CurvedShapes CurvedArray](CurvedShapes_CurvedArray.md) , [Curves CompressionSpring](Curves_CompressionSpring.md) , [Curves Discretize](Curves_Discretize.md) , [Curves EditableSpline](Curves_EditableSpline.md) , [Curves ExtendCurve](Curves_ExtendCurve.md) , [Curves GordonSurface](Curves_GordonSurface.md) , [Curves Interpolate](Curves_Interpolate.md) , [Curves IsoCurve](Curves_IsoCurve.md) , [Curves JoinCurve](Curves_JoinCurve.md) , [Curves Line](Curves_Line.md) , [Curves MultiLoft](Curves_MultiLoft.md) , [Curves ParametricComb](Curves_ParametricComb.md) , [Curves ParametricSolid](Curves_ParametricSolid.md) , [Curves PasteSVG](Curves_PasteSVG.md) , [Curves Pipeshell](Curves_Pipeshell.md) , [Curves PipeshellProfile](Curves_PipeshellProfile.md) , [Curves ProfileSupport](Curves_ProfileSupport.md) , [Curves ReflectLines](Curves_ReflectLines.md) , [Curves SegmentSurface](Curves_SegmentSurface.md) , [Curves SketchOnSurface](Curves_SketchOnSurface.md) , [Curves SplitCurve](Curves_SplitCurve.md) , [Curves ToConsole](Curves_ToConsole.md) , [Curves ZebraTool](Curves_ZebraTool.md) , [Design456 2DExtend](Design456_2DExtend.md) , [Design456 2DTrim](Design456_2DTrim.md) , [Design456 3Point](Design456_3Point.md) , [Design456 Extract](Design456_Extract.md) , [Design456 Extrude](Design456_Extrude.md) , [Design456 ExtrudeFace](Design456_ExtrudeFace.md) , [Design456 LoftOnDirection](Design456_LoftOnDirection.md) , [Design456 MultiPointsToWireClose](Design456_MultiPointsToWireClose.md) , [Design456 MultiPointsToWireOpen](Design456_MultiPointsToWireOpen.md) , [Design456 PartMerge](Design456_PartMerge.md) , [Design456 PartSubtract](Design456_PartSubtract.md) , [Design456 SplitObject](Design456_SplitObject.md) , [Design456 Tweak](Design456_Tweak.md) , [Draft AddConstruction](Draft_AddConstruction.md) , [Draft AddToGroup](Draft_AddToGroup.md) , [Draft AnnotationStyleEditor](Draft_AnnotationStyleEditor.md) , [Draft ApplyStyle](Draft_ApplyStyle.md) , [Draft Arc](Draft_Arc.md) , [Draft Arc 3Points](Draft_Arc_3Points.md) , [Draft Array](Draft_Array.md) , [Draft AutoGroup](Draft_AutoGroup.md) , [Draft BezCurve](Draft_BezCurve.md) , [Draft BSpline](Draft_BSpline.md) , [Draft Circle](Draft_Circle.md) , [Draft CircularArray](Draft_CircularArray.md) , [Draft Clone](Draft_Clone.md) , [Draft CubicBezCurve](Draft_CubicBezCurve.md) , [Draft Dimension](Draft_Dimension.md) , [Draft Downgrade](Draft_Downgrade.md) , [Draft Draft2Sketch](Draft_Draft2Sketch.md) , [Draft Drawing](Draft_Drawing.md) , [Draft Edit](Draft_Edit.md) , [Draft Ellipse](Draft_Ellipse.md) , [Draft Facebinder](Draft_Facebinder.md) , [Draft Fillet](Draft_Fillet.md) , [Draft FlipDimension](Draft_FlipDimension.md) , [Draft Heal](Draft_Heal.md) , [Draft Join](Draft_Join.md) , [Draft Label](Draft_Label.md) , [Draft Layer](Draft_Layer.md) , [Draft Line](Draft_Line.md) , [Draft Mirror](Draft_Mirror.md) , [Draft Move](Draft_Move.md) , [Draft Offset](Draft_Offset.md) , [Draft OrthoArray](Draft_OrthoArray.md) , [Draft PathArray](Draft_PathArray.md) , [Draft PathLinkArray](Draft_PathLinkArray.md) , [Draft Point](Draft_Point.md) , [Draft PointArray](Draft_PointArray.md) , [Draft PointLinkArray](Draft_PointLinkArray.md) , [Draft PolarArray](Draft_PolarArray.md) , [Draft Polygon](Draft_Polygon.md) , [Draft Rectangle](Draft_Rectangle.md) , [Draft Rotate](Draft_Rotate.md) , [Draft Scale](Draft_Scale.md) , [Draft SelectGroup](Draft_SelectGroup.md) , [Draft SelectPlane](Draft_SelectPlane.md) , [Draft SetStyle](Draft_SetStyle.md) , [Draft Shape2DView](Draft_Shape2DView.md) , [Draft ShapeString](Draft_ShapeString.md) , [Draft ShowSnapBar](Draft_ShowSnapBar.md) , [Draft Slope](Draft_Slope.md) , [Draft Snap Angle](Draft_Snap_Angle.md) , [Draft Snap Center](Draft_Snap_Center.md) , [Draft Snap Dimensions](Draft_Snap_Dimensions.md) , [Draft Snap Endpoint](Draft_Snap_Endpoint.md) , [Draft Snap Extension](Draft_Snap_Extension.md) , [Draft Snap Grid](Draft_Snap_Grid.md) , [Draft Snap Intersection](Draft_Snap_Intersection.md) , [Draft Snap Lock](Draft_Snap_Lock.md) , [Draft Snap Midpoint](Draft_Snap_Midpoint.md) , [Draft Snap Near](Draft_Snap_Near.md) , [Draft Snap Ortho](Draft_Snap_Ortho.md) , [Draft Snap Parallel](Draft_Snap_Parallel.md) , [Draft Snap Perpendicular](Draft_Snap_Perpendicular.md) , [Draft Snap Special](Draft_Snap_Special.md) , [Draft Snap WorkingPlane](Draft_Snap_WorkingPlane.md) , [Draft Split](Draft_Split.md) , [Draft Stretch](Draft_Stretch.md) , [Draft SubelementHighlight](Draft_SubelementHighlight.md) , [Draft Text](Draft_Text.md) , [Draft ToggleConstructionMode](Draft_ToggleConstructionMode.md) , [Draft ToggleContinueMode](Draft_ToggleContinueMode.md) , [Draft ToggleDisplayMode](Draft_ToggleDisplayMode.md) , [Draft ToggleGrid](Draft_ToggleGrid.md) , [Draft Trimex](Draft_Trimex.md) , [Draft Upgrade](Draft_Upgrade.md) , [Draft Wire](Draft_Wire.md) , [Draft WireToBSpline](Draft_WireToBSpline.md) , [Draft WorkingPlaneProxy](Draft_WorkingPlaneProxy.md) , [Drawing Annotation](Drawing_Annotation.md) , [Drawing Clip](Drawing_Clip.md) , [Drawing Landscape A3](Drawing_Landscape_A3.md) , [Drawing Open SVG](Drawing_Open_SVG.md) , [Drawing Openbrowser](Drawing_Openbrowser.md) , [Drawing Orthoviews](Drawing_Orthoviews.md) , [Drawing ProjectShape](Drawing_ProjectShape.md) , [Drawing Save](Drawing_Save.md) , [Drawing SpreadsheetView](Drawing_SpreadsheetView.md) , [Drawing Symbol](Drawing_Symbol.md) , [Drawing View](Drawing_View.md) , [EM FHEquiv](EM_FHEquiv.md) , [EM FHInputFile](EM_FHInputFile.md) , [EM FHNode](EM_FHNode.md) , [EM FHPath](EM_FHPath.md) , [EM FHPlane](EM_FHPlane.md) , [EM FHPlaneAddRemoveNodeHole](EM_FHPlaneAddRemoveNodeHole.md) , [EM FHPlaneHole](EM_FHPlaneHole.md) , [EM FHPort](EM_FHPort.md) , [EM FHSegment](EM_FHSegment.md) , [EM FHSolver](EM_FHSolver.md) , [Example Combined Footing](Example_Combined_Footing.md) , [Example Slab Having LShape Rebars Reinforcement Mesh](Example_Slab_Having_LShape_Rebars_Reinforcement_Mesh.md) , [Example Slab Having Mesh Of Straight Rebars](Example_Slab_Having_Mesh_Of_Straight_Rebars.md) , [Example Slab Having UShape Rebars Reinforcement Mesh](Example_Slab_Having_UShape_Rebars_Reinforcement_Mesh.md) , [Example Slab Spanning in One Direction](Example_Slab_Spanning_in_One_Direction.md) , [Example Slab Spanning in Two Directions](Example_Slab_Spanning_in_Two_Directions.md) , [Fasteners BOM](Fasteners_BOM.md) , [Fasteners ChamferHole](Fasteners_ChamferHole.md) , [Fasteners ChangeParameters](Fasteners_ChangeParameters.md) , [Fasteners Flip](Fasteners_Flip.md) , [Fasteners MatchTypeInner](Fasteners_MatchTypeInner.md) , [Fasteners MatchTypeOuter](Fasteners_MatchTypeOuter.md) , [Fasteners Move](Fasteners_Move.md) , [Fasteners ScrewCalculator](Fasteners_ScrewCalculator.md) , [Fasteners Shape](Fasteners_Shape.md) , [FCGear BevelGear](FCGear_BevelGear.md) , [FCGear CrownGear](FCGear_CrownGear.md) , [FCGear CycloideGear](FCGear_CycloideGear.md) , [FCGear InvoluteGear](FCGear_InvoluteGear.md) , [FCGear InvoluteRack](FCGear_InvoluteRack.md) , [FCGear LanternGear](FCGear_LanternGear.md) , [FCGear TimingGear](FCGear_TimingGear.md) , [FCGear WormGear](FCGear_WormGear.md) , [FEM Analysis](FEM_Analysis.md) , [FEM ClippingPlaneAdd](FEM_ClippingPlaneAdd.md) , [FEM ClippingPlaneRemoveAll](FEM_ClippingPlaneRemoveAll.md) , [FEM ConstantVacuumPermittivity](FEM_ConstantVacuumPermittivity.md) , [FEM ConstraintBearing](FEM_ConstraintBearing.md) , [FEM ConstraintBodyHeatSource](FEM_ConstraintBodyHeatSource.md) , [FEM ConstraintContact](FEM_ConstraintContact.md) , [FEM ConstraintDisplacement](FEM_ConstraintDisplacement.md) , [FEM ConstraintElectrostaticPotential](FEM_ConstraintElectrostaticPotential.md) , [FEM ConstraintFixed](FEM_ConstraintFixed.md) , [FEM ConstraintFlowVelocity](FEM_ConstraintFlowVelocity.md) , [FEM ConstraintFluidBoundary](FEM_ConstraintFluidBoundary.md) , [FEM ConstraintForce](FEM_ConstraintForce.md) , [FEM ConstraintGear](FEM_ConstraintGear.md) , [FEM ConstraintHeatflux](FEM_ConstraintHeatflux.md) , [FEM ConstraintInitialFlowVelocity](FEM_ConstraintInitialFlowVelocity.md) , [FEM ConstraintInitialTemperature](FEM_ConstraintInitialTemperature.md) , [FEM ConstraintPlaneRotation](FEM_ConstraintPlaneRotation.md) , [FEM ConstraintPressure](FEM_ConstraintPressure.md) , [FEM ConstraintPulley](FEM_ConstraintPulley.md) , [FEM ConstraintSectionPrint](FEM_ConstraintSectionPrint.md) , [FEM ConstraintSelfWeight](FEM_ConstraintSelfWeight.md) , [FEM ConstraintSpring](FEM_ConstraintSpring.md) , [FEM ConstraintTemperature](FEM_ConstraintTemperature.md) , [FEM ConstraintTie](FEM_ConstraintTie.md) , [FEM ConstraintTransform](FEM_ConstraintTransform.md) , [FEM CreateNodesSet](FEM_CreateNodesSet.md) , [FEM ElementFluid1D](FEM_ElementFluid1D.md) , [FEM ElementGeometry1D](FEM_ElementGeometry1D.md) , [FEM ElementGeometry2D](FEM_ElementGeometry2D.md) , [FEM ElementRotation1D](FEM_ElementRotation1D.md) , [FEM EquationElasticity](FEM_EquationElasticity.md) , [FEM EquationElectricforce](FEM_EquationElectricforce.md) , [FEM EquationElectrostatic](FEM_EquationElectrostatic.md) , [FEM EquationFlow](FEM_EquationFlow.md) , [FEM EquationFlux](FEM_EquationFlux.md) , [FEM EquationHeat](FEM_EquationHeat.md) , [FEM Examples](FEM_Examples.md) , [FEM FemMesh2Mesh](FEM_FemMesh2Mesh.md) , [FEM MaterialFluid](FEM_MaterialFluid.md) , [FEM MaterialMechanicalNonlinear](FEM_MaterialMechanicalNonlinear.md) , [FEM MaterialReinforced](FEM_MaterialReinforced.md) , [FEM MaterialSolid](FEM_MaterialSolid.md) , [FEM MeshBoundaryLayer](FEM_MeshBoundaryLayer.md) , [FEM MeshClear](FEM_MeshClear.md) , [FEM MeshDisplayInfo](FEM_MeshDisplayInfo.md) , [FEM MeshGmshFromShape](FEM_MeshGmshFromShape.md) , [FEM MeshGroup](FEM_MeshGroup.md) , [FEM MeshNetgenFromShape](FEM_MeshNetgenFromShape.md) , [FEM MeshRegion](FEM_MeshRegion.md) , [FEM PostApplyChanges](FEM_PostApplyChanges.md) , [FEM PostCreateFunctions](FEM_PostCreateFunctions.md) , [FEM PostFilterClipRegion](FEM_PostFilterClipRegion.md) , [FEM PostFilterClipScalar](FEM_PostFilterClipScalar.md) , [FEM PostFilterCutFunction](FEM_PostFilterCutFunction.md) , [FEM PostFilterDataAlongLine](FEM_PostFilterDataAlongLine.md) , [FEM PostFilterDataAtPoint](FEM_PostFilterDataAtPoint.md) , [FEM PostFilterLinearizedStresses](FEM_PostFilterLinearizedStresses.md) , [FEM PostFilterWarp](FEM_PostFilterWarp.md) , [FEM PostPipelineFromResult](FEM_PostPipelineFromResult.md) , [FEM ResultShow](FEM_ResultShow.md) , [FEM ResultsPurge](FEM_ResultsPurge.md) , [FEM SolverCalculiX](FEM_SolverCalculiX.md) , [FEM SolverCalculixCxxtools](FEM_SolverCalculixCxxtools.md) , [FEM SolverControl](FEM_SolverControl.md) , [FEM SolverElmer](FEM_SolverElmer.md) , [FEM SolverMystran](FEM_SolverMystran.md) , [FEM SolverRun](FEM_SolverRun.md) , [FEM SolverZ88](FEM_SolverZ88.md) , [Template:GuiCommand](Template:GuiCommand.md) , [GuiCommand model](GuiCommand_model.md) , [Template:GuiCommandAddon](Template:GuiCommandAddon.md) , [Image CreateImagePlane](Image_CreateImagePlane.md) , [Image Open](Image_Open.md) , [Image Scaling](Image_Scaling.md) , [Lattice2 AttachablePlacement](Lattice2_AttachablePlacement.md) , [Material editor](Material_editor.md) , [Mesh AddFacet](Mesh_AddFacet.md) , [Mesh BoundingBox](Mesh_BoundingBox.md) , [Mesh BuildRegularSolid](Mesh_BuildRegularSolid.md) , [Mesh CrossSections](Mesh_CrossSections.md) , [Mesh CurvatureInfo](Mesh_CurvatureInfo.md) , [Mesh Decimating](Mesh_Decimating.md) , [Mesh Difference](Mesh_Difference.md) , [Mesh EvaluateFacet](Mesh_EvaluateFacet.md) , [Mesh EvaluateSolid](Mesh_EvaluateSolid.md) , [Mesh Evaluation](Mesh_Evaluation.md) , [Mesh Export](Mesh_Export.md) , [Mesh FillInteractiveHole](Mesh_FillInteractiveHole.md) , [Mesh FillupHoles](Mesh_FillupHoles.md) , [Mesh FlipNormals](Mesh_FlipNormals.md) , [Mesh FromPartShape](Mesh_FromPartShape.md) , [Mesh HarmonizeNormals](Mesh_HarmonizeNormals.md) , [Mesh Import](Mesh_Import.md) , [Mesh Intersection](Mesh_Intersection.md) , [Mesh Merge](Mesh_Merge.md) , [Mesh PolyCut](Mesh_PolyCut.md) , [Mesh PolyTrim](Mesh_PolyTrim.md) , [Mesh RemeshGmsh](Mesh_RemeshGmsh.md) , [Mesh RemoveCompByHand](Mesh_RemoveCompByHand.md) , [Mesh RemoveComponents](Mesh_RemoveComponents.md) , [Mesh Scale](Mesh_Scale.md) , [Mesh SectionByPlane](Mesh_SectionByPlane.md) , [Mesh Segmentation](Mesh_Segmentation.md) , [Mesh SegmentationBestFit](Mesh_SegmentationBestFit.md) , [Mesh Smoothing](Mesh_Smoothing.md) , [Mesh SplitComponents](Mesh_SplitComponents.md) , [Mesh TrimByPlane](Mesh_TrimByPlane.md) , [Mesh Union](Mesh_Union.md) , [Mesh VertexCurvature](Mesh_VertexCurvature.md) , [MeshPart CreateFlatFace](MeshPart_CreateFlatFace.md) , [MeshPart CreateFlatMesh](MeshPart_CreateFlatMesh.md) , [OpenSCAD AddOpenSCADElement](OpenSCAD_AddOpenSCADElement.md) , [OpenSCAD ColorCodeShape](OpenSCAD_ColorCodeShape.md) , [OpenSCAD Edgestofaces](OpenSCAD_Edgestofaces.md) , [OpenSCAD ExpandPlacements](OpenSCAD_ExpandPlacements.md) , [OpenSCAD ExplodeGroup](OpenSCAD_ExplodeGroup.md) , [OpenSCAD Hull](OpenSCAD_Hull.md) , [OpenSCAD IncreaseToleranceFeature](OpenSCAD_IncreaseToleranceFeature.md) , [OpenSCAD MeshBoolean](OpenSCAD_MeshBoolean.md) , [OpenSCAD Minkowski](OpenSCAD_Minkowski.md) , [OpenSCAD MirrorMeshFeature](OpenSCAD_MirrorMeshFeature.md) , [OpenSCAD RefineShapeFeature](OpenSCAD_RefineShapeFeature.md) , [OpenSCAD RemoveSubtree](OpenSCAD_RemoveSubtree.md) , [OpenSCAD ReplaceObject](OpenSCAD_ReplaceObject.md) , [OpenSCAD ResizeMeshFeature](OpenSCAD_ResizeMeshFeature.md) , [OpenSCAD ScaleMeshFeature](OpenSCAD_ScaleMeshFeature.md) , [Part Boolean](Part_Boolean.md) , [Part BooleanFragments](Part_BooleanFragments.md) , [Part Box](Part_Box.md) , [Part BoxSelection](Part_BoxSelection.md) , [Part Builder](Part_Builder.md) , [Part Chamfer](Part_Chamfer.md) , [Part CheckGeometry](Part_CheckGeometry.md) , [Part Circle](Part_Circle.md) , [Part Common](Part_Common.md) , [Part CompCompoundTools](Part_CompCompoundTools.md) , [Part CompJoinFeatures](Part_CompJoinFeatures.md) , [Part CompOffsetTools](Part_CompOffsetTools.md) , [Part Compound](Part_Compound.md) , [Part CompoundFilter](Part_CompoundFilter.md) , [Part CompSplittingTools](Part_CompSplittingTools.md) , [Part Cone](Part_Cone.md) , [Part CrossSections](Part_CrossSections.md) , [Part Cut](Part_Cut.md) , [Part Cylinder](Part_Cylinder.md) , [Part Defeaturing](Part_Defeaturing.md) , [Part EditAttachment](Part_EditAttachment.md) , [Part ElementCopy](Part_ElementCopy.md) , [Part Ellipse](Part_Ellipse.md) , [Part Ellipsoid](Part_Ellipsoid.md) , [Part ExplodeCompound](Part_ExplodeCompound.md) , [Part Export](Part_Export.md) , [Part Extrude](Part_Extrude.md) , [Part FaceColors](Part_FaceColors.md) , [Part Fillet](Part_Fillet.md) , [Part Fuse](Part_Fuse.md) , [Part Helix](Part_Helix.md) , [Part Import](Part_Import.md) , [Part JoinConnect](Part_JoinConnect.md) , [Part JoinCutout](Part_JoinCutout.md) , [Part JoinEmbed](Part_JoinEmbed.md) , [Part Line](Part_Line.md) , [Part Loft](Part_Loft.md) , [Part MakeFace](Part_MakeFace.md) , [Part MakeSolid](Part_MakeSolid.md) , [Part Measure Angular](Part_Measure_Angular.md) , [Part Measure Clear All](Part_Measure_Clear_All.md) , [Part Measure Linear](Part_Measure_Linear.md) , [Part Measure Menu](Part_Measure_Menu.md) , [Part Measure Refresh](Part_Measure_Refresh.md) , [Part Measure Toggle 3d](Part_Measure_Toggle_3d.md) , [Part Measure Toggle All](Part_Measure_Toggle_All.md) , [Part Measure Toggle Delta](Part_Measure_Toggle_Delta.md) , [Part Mirror](Part_Mirror.md) , [Part Offset](Part_Offset.md) , [Part Offset2D](Part_Offset2D.md) , [Part Plane](Part_Plane.md) , [Part Point](Part_Point.md) , [Part PointsFromMesh](Part_PointsFromMesh.md) , [Part Primitives](Part_Primitives.md) , [Part Prism](Part_Prism.md) , [Part ProjectionOnSurface](Part_ProjectionOnSurface.md) , [Part RefineShape](Part_RefineShape.md) , [Part RegularPolygon](Part_RegularPolygon.md) , [Part ReverseShapes](Part_ReverseShapes.md) , [Part Revolve](Part_Revolve.md) , [Part RuledSurface](Part_RuledSurface.md) , [Part Section](Part_Section.md) , [Part ShapeFromMesh](Part_ShapeFromMesh.md) , [Part SimpleCopy](Part_SimpleCopy.md) , [Part Slice](Part_Slice.md) , [Part SliceApart](Part_SliceApart.md) , [Part Sphere](Part_Sphere.md) , [Part Spiral](Part_Spiral.md) , [Part Sweep](Part_Sweep.md) , [Part Thickness](Part_Thickness.md) , [Part Torus](Part_Torus.md) , [Part TransformedCopy](Part_TransformedCopy.md) , [Part Tube](Part_Tube.md) , [Part Wedge](Part_Wedge.md) , [Part XOR](Part_XOR.md) , [PartDesign AdditiveBox](PartDesign_AdditiveBox.md) , [PartDesign AdditiveCone](PartDesign_AdditiveCone.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Command Reference diff --git a/wiki/Category:Common_Questions.md b/wiki/Category:Common_Questions.md index 519b4da5f2..448313a0fc 100644 --- a/wiki/Category:Common_Questions.md +++ b/wiki/Category:Common_Questions.md @@ -4,3 +4,6 @@ This category has links to common questions on how to do something in FC. This i ### Contents: [Constructive solid geometry](Constructive_solid_geometry.md) , [Constructive Solid Geometry](Constructive_Solid_Geometry.md) , [Feature editing](Feature_editing.md) , [FreeCAD and DWG Import](FreeCAD_and_DWG_Import.md) , [FreeCAD Howto Import Export](FreeCAD_Howto_Import_Export.md) , [FreeCAD Managing Expectations](FreeCAD_Managing_Expectations.md) , [FreeCAD used in production](FreeCAD_used_in_production.md) , [Help FreeCAD](Help_FreeCAD.md) , [Import Export Preferences](Import_Export_Preferences.md) , [Importing From Sketchup](Importing_From_Sketchup.md) , [Installing on Linux](Installing_on_Linux.md) , [Std About](Std_About.md) , [Topological naming problem](Topological_naming_problem.md) , [Video tutorials](Video_tutorials.md) , [Visibility](Visibility.md) + +--- +[documentation index](../README.md) > Category:Common Questions diff --git a/wiki/Category:Complete.md b/wiki/Category:Complete.md index 450f83ab94..5aa64da0b3 100644 --- a/wiki/Category:Complete.md +++ b/wiki/Category:Complete.md @@ -6,3 +6,6 @@ This category lists pages related to the [Complete Workbench](Complete_Workbench [Complete Workbench](Complete_Workbench.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Category:Complete diff --git a/wiki/Category:Curves.md b/wiki/Category:Curves.md index 32f7df5db8..5327caaaa2 100644 --- a/wiki/Category:Curves.md +++ b/wiki/Category:Curves.md @@ -4,3 +4,6 @@ Pages that are relevant to the [Curves Workbench](Curves_Workbench.md) which is ### Contents: [Curves CompressionSpring](Curves_CompressionSpring.md) , [Curves Discretize](Curves_Discretize.md) , [Curves EditableSpline](Curves_EditableSpline.md) , [Curves ExtendCurve](Curves_ExtendCurve.md) , [Curves GordonSurface](Curves_GordonSurface.md) , [Curves Interpolate](Curves_Interpolate.md) , [Curves IsoCurve](Curves_IsoCurve.md) , [Curves JoinCurve](Curves_JoinCurve.md) , [Curves Line](Curves_Line.md) , [Curves MultiLoft](Curves_MultiLoft.md) , [Curves ParametricComb](Curves_ParametricComb.md) , [Curves ParametricSolid](Curves_ParametricSolid.md) , [Curves PasteSVG](Curves_PasteSVG.md) , [Curves Pipeshell](Curves_Pipeshell.md) , [Curves PipeshellProfile](Curves_PipeshellProfile.md) , [Curves ProfileSupport](Curves_ProfileSupport.md) , [Curves ReflectLines](Curves_ReflectLines.md) , [Curves SegmentSurface](Curves_SegmentSurface.md) , [Curves SketchOnSurface](Curves_SketchOnSurface.md) , [Curves SplitCurve](Curves_SplitCurve.md) , [Curves ToConsole](Curves_ToConsole.md) , [Template:Curves Tools navi](Template:Curves_Tools_navi.md) , [Curves Workbench](Curves_Workbench.md) , [Curves ZebraTool](Curves_ZebraTool.md) + +--- +[documentation index](../README.md) > Category:Curves diff --git a/wiki/Category:Developer.md b/wiki/Category:Developer.md index 1ffe58ffc4..5b55d93976 100644 --- a/wiki/Category:Developer.md +++ b/wiki/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [0.20 Development Cycle](0.20_Development_Cycle.md) , [Changelog](Changelog.md) , [Compile on Cygwin](Compile_on_Cygwin.md) , [Compile on Docker](Compile_on_Docker.md) , [Compile on Linux](Compile_on_Linux.md) , [Compile on MacOS](Compile_on_MacOS.md) , [Compile on MinGW](Compile_on_MinGW.md) , [Compile on Windows](Compile_on_Windows.md) , [Compile on Windows with VS2013](Compile_on_Windows_with_VS2013.md) , [Compiling](Compiling.md) , [Compiling (Speeding up)](Compiling_(Speeding_up).md) , [Conda](Conda.md) , [Contributors](Contributors.md) , [Developing FreeCAD with GitKraken](Developing_FreeCAD_with_GitKraken.md) , [Doxygen](Doxygen.md) , [FEM CalculiX](FEM_CalculiX.md) , [FEM Element Types](FEM_Element_Types.md) , [FEM Mesh CalculiX](FEM_Mesh_CalculiX.md) , [File Format FCStd](File_Format_FCStd.md) , [ImageConv](ImageConv.md) , [InputField](InputField.md) , [IPython notebook integration](IPython_notebook_integration.md) , [Land Survey Workbench Blueprint](Land_Survey_Workbench_Blueprint.md) , [LGTM](LGTM.md) , [Material](Material.md) , [Organization chart](Organization_chart.md) , [Svg Namespace](Svg_Namespace.md) , [Valgrind](Valgrind.md) , [WikiRobots](WikiRobots.md) , [Wished tools](Wished_tools.md) , [Wrapping a Cplusplus class in Python](Wrapping_a_Cplusplus_class_in_Python.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Developer diff --git a/wiki/Category:Developer_Documentation.md b/wiki/Category:Developer_Documentation.md index 9c72789ea8..b1336e6726 100644 --- a/wiki/Category:Developer_Documentation.md +++ b/wiki/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Add A Button In FEM Toolbar Tutorial](Add_A_Button_In_FEM_Toolbar_Tutorial.md) , [Add FEM equation tutorial](Add_FEM_equation_tutorial.md) , [ANSI templates](ANSI_templates.md) , [AppImage](AppImage.md) , [Arch templates](Arch_templates.md) , [Artwork](Artwork.md) , [Artwork Erroneous](Artwork_Erroneous.md) , [Artwork Guidelines](Artwork_Guidelines.md) , [Branding](Branding.md) , [Bug Triage](Bug_Triage.md) , [Ccache](Ccache.md) , [Code snippets](Code_snippets.md) , [Codespell](Codespell.md) , [Coin3d snippets](Coin3d_snippets.md) , [Command](Command.md) , [Compile on Cygwin](Compile_on_Cygwin.md) , [Compile on Docker](Compile_on_Docker.md) , [Compile on Linux](Compile_on_Linux.md) , [Compile on MacOS](Compile_on_MacOS.md) , [Compile on MinGW](Compile_on_MinGW.md) , [Compile on Windows](Compile_on_Windows.md) , [Compile on Windows with VS2013](Compile_on_Windows_with_VS2013.md) , [CompileOnWindows - Reducing Disk Footprint](CompileOnWindows_-_Reducing_Disk_Footprint.md) , [Compiling](Compiling.md) , [Compiling (Speeding up)](Compiling_(Speeding_up).md) , [Conda](Conda.md) , [Continuous Integration](Continuous_Integration.md) , [Create a FeaturePython object part I](Create_a_FeaturePython_object_part_I.md) , [Create a FeaturePython object part II](Create_a_FeaturePython_object_part_II.md) , [Crowdin Scripts](Crowdin_Scripts.md) , [Custom icon in tree view](Custom_icon_in_tree_view.md) , [Debian development](Debian_development.md) , [Debian Unstable](Debian_Unstable.md) , [Debugging](Debugging.md) , [Developer hub](Developer_hub.md) , [Developing FreeCAD with GitKraken](Developing_FreeCAD_with_GitKraken.md) , [Developing FreeCAD with KDevelop](Developing_FreeCAD_with_KDevelop.md) , [Dialog creation](Dialog_creation.md) , [Dialog creation image and animated GIF](Dialog_creation_image_and_animated_GIF.md) , [Dialog creation reading and writing files](Dialog_creation_reading_and_writing_files.md) , [Dialog creation setting colors](Dialog_creation_setting_colors.md) , [Dialog creation with various widgets](Dialog_creation_with_various_widgets.md) , [Distcc](Distcc.md) , [Doxygen](Doxygen.md) , [Drawing API example](Drawing_API_example.md) , [Drawing Documentation](Drawing_Documentation.md) , [Drawing templates](Drawing_templates.md) , [Embedding FreeCAD](Embedding_FreeCAD.md) , [Embedding FreeCADGui](Embedding_FreeCADGui.md) , [Exposing C++ to Python](Exposing_C++_to_Python.md) , [Extra python modules](Extra_python_modules.md) , [FeaturePython Custom Properties](FeaturePython_Custom_Properties.md) , [FeaturePython methods](FeaturePython_methods.md) , [File Format FCStd](File_Format_FCStd.md) , [Fine-tuning](Fine-tuning.md) , [FreeCAD Build Tool](FreeCAD_Build_Tool.md) , [FreeCAD Scripting Basics](FreeCAD_Scripting_Basics.md) , [FreeCAD vector math library](FreeCAD_vector_math_library.md) , [Git buildpackage](Git_buildpackage.md) , [Help FreeCAD](Help_FreeCAD.md) , [How to install macros](How_to_install_macros.md) , [Installing more workbenches](Installing_more_workbenches.md) , [Installing on Linux](Installing_on_Linux.md) , [Interface creation](Interface_creation.md) , [Introduction to Python](Introduction_to_Python.md) , [Key ASCII](Key_ASCII.md) , [LGTM](LGTM.md) , [Licence](Licence.md) , [Line drawing function](Line_drawing_function.md) , [Linux packaging](Linux_packaging.md) , [Localisation](Localisation.md) , [Localisation Sidebar](Localisation_Sidebar.md) , [Localization Older Methods](Localization_Older_Methods.md) , [MacOS packaging](MacOS_packaging.md) , [Macro at Startup](Macro_at_Startup.md) , [Macros](Macros.md) , [Manual:A gentle introduction](Manual:A_gentle_introduction.md) , [Manual:Creating and manipulating geometry](Manual:Creating_and_manipulating_geometry.md) , [Manual:Creating interface tools](Manual:Creating_interface_tools.md) , [Manual:Creating parametric objects](Manual:Creating_parametric_objects.md) , [Material](Material.md) , [Mesh Scripting](Mesh_Scripting.md) , [Mesh to Part](Mesh_to_Part.md) , [Misc templates](Misc_templates.md) , [Multithreading](Multithreading.md) , [Onboarding FEM Devs](Onboarding_FEM_Devs.md) , [OpenCASCADE](OpenCASCADE.md) , [OpenGL on MacOS](OpenGL_on_MacOS.md) , [OpenSCAD CSG tested files](OpenSCAD_CSG_tested_files.md) , [Packaging](Packaging.md) , [Part scripting](Part_scripting.md) , [Path scripting](Path_scripting.md) , [Pivy](Pivy.md) , [Profiling](Profiling.md) , [Property](Property.md) , [PySide](PySide.md) , [PySide Advanced Examples](PySide_Advanced_Examples.md) , [PySide Beginner Examples](PySide_Beginner_Examples.md) , [PySide Intermediate Examples](PySide_Intermediate_Examples.md) , [PySide usage snippets](PySide_usage_snippets.md) , [Python](Python.md) , [Python scripting tutorial](Python_scripting_tutorial.md) , [PythonOCC](PythonOCC.md) , [Quantity](Quantity.md) , [Raytracing API example](Raytracing_API_example.md) , [Scenegraph](Scenegraph.md) , [Scripted objects](Scripted_objects.md) , [Scripted objects migration](Scripted_objects_migration.md) , [Scripted objects saving attributes](Scripted_objects_saving_attributes.md) , [Scripted objects with attachment](Scripted_objects_with_attachment.md) , [Scripted Parts: Ball Bearing - Part 1](Scripted_Parts:_Ball_Bearing_-_Part_1.md) , [Scripted Parts: Ball Bearing - Part 2](Scripted_Parts:_Ball_Bearing_-_Part_2.md) , [Scripting and macros](Scripting_and_macros.md) , [Scripts](Scripts.md) , [Source code management](Source_code_management.md) , [Source documentation](Source_documentation.md) , [Sphinx](Sphinx.md) , [Start up and Configuration](Start_up_and_Configuration.md) , [Testing](Testing.md) , [The FreeCAD source code](The_FreeCAD_source_code.md) , [Third Party Libraries](Third_Party_Libraries.md) , [Third Party Tools](Third_Party_Tools.md) , [Topological data scripting](Topological_data_scripting.md) , [Tracker](Tracker.md) , [Translating an external workbench](Translating_an_external_workbench.md) , [Viewprovider](Viewprovider.md) , [Windows packaging](Windows_packaging.md) , [Windows packaging/en](Windows_packaging/en.md) , [Windows packaging/pl](Windows_packaging/pl.md) , [Windows packaging/ru](Windows_packaging/ru.md) , [Workbench creation](Workbench_creation.md) , [Wrapping a Cplusplus class in Python](Wrapping_a_Cplusplus_class_in_Python.md) , , , , , [Category:Documentation](Category:Documentation.md) [Category:Artwork](Category:Artwork.md) [Category:Developer](Category:Developer.md) [Category:Document object](Category:Document_object.md) [Category:Packaging](Category:Packaging.md) [Category:Packaging/pl](Category:Packaging/pl.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation diff --git a/wiki/Category:Disambiguation.md b/wiki/Category:Disambiguation.md index 7619275421..293b1099a0 100644 --- a/wiki/Category:Disambiguation.md +++ b/wiki/Category:Disambiguation.md @@ -4,3 +4,6 @@ This category contains all disambiguation pages which list multiple meanings of ### Contents: [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > Category:Disambiguation diff --git a/wiki/Category:Document_object.md b/wiki/Category:Document_object.md index c60fd2cdc3..f98f0076a2 100644 --- a/wiki/Category:Document_object.md +++ b/wiki/Category:Document_object.md @@ -6,3 +6,6 @@ This category lists pages related to objects derived from the base [App Document [App DocumentObject](App_DocumentObject.md) , [App DocumentObjectGroup](App_DocumentObjectGroup.md) , [App FeaturePython](App_FeaturePython.md) , [App GeoFeature](App_GeoFeature.md) , [App Link](App_Link.md) , [App Part](App_Part.md) , [Assembly](Assembly.md) , [Body](Body.md) , [Constraint](Constraint.md) , [Datum](Datum.md) , [Drawing](Drawing.md) , [Feature](Feature.md) , [Mesh](Mesh.md) , [Mesh Feature](Mesh_Feature.md) , [Mesh MeshObject](Mesh_MeshObject.md) , [Model](Model.md) , [Part](Part.md) , [Part Feature](Part_Feature.md) , [Part TopoShape](Part_TopoShape.md) , [PartDesign Feature](PartDesign_Feature.md) , [Shape](Shape.md) , [Sketch](Sketch.md) , [Sketcher SketchObject](Sketcher_SketchObject.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > Category:Document object diff --git a/wiki/Category:Documentation.md b/wiki/Category:Documentation.md index c2a9c3e68a..a84fa716e6 100644 --- a/wiki/Category:Documentation.md +++ b/wiki/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [3D input devices](3D_input_devices.md) , [ANSI templates](ANSI_templates.md) , [Arch templates](Arch_templates.md) , [Civil Engineering Workbench](Civil_Engineering_Workbench.md) , [Drawing templates](Drawing_templates.md) , [FreeCAD Community Portal](FreeCAD_Community_Portal.md) , [Frequently asked questions](Frequently_asked_questions.md) , [Help FreeCAD](Help_FreeCAD.md) , [Interesting links](Interesting_links.md) , [Main Page](Main_Page.md) , [Misc templates](Misc_templates.md) , [Online Help Toc](Online_Help_Toc.md) , [Part Measure Menu](Part_Measure_Menu.md) , [Release notes 0.11](Release_notes_0.11.md) , [Release notes 0.12](Release_notes_0.12.md) , [Release notes 0.13](Release_notes_0.13.md) , [Release notes 0.14](Release_notes_0.14.md) , [Release notes 0.15](Release_notes_0.15.md) , [Release notes 0.16](Release_notes_0.16.md) , [Release notes 0.17](Release_notes_0.17.md) , [Release notes 0.18](Release_notes_0.18.md) , [Release notes 0.19](Release_notes_0.19.md) , [Release notes 0.20](Release_notes_0.20.md) , [Sandbox:TestWikiPage](Sandbox:TestWikiPage.md) , [Sandbox:TestWikiPage/de](Sandbox:TestWikiPage/de.md) , [Sandbox:TestWikiPage/en](Sandbox:TestWikiPage/en.md) , [Transportation Workbench](Transportation_Workbench.md) , [WikiPages](WikiPages.md) , , , , , , , , , [Category:Categories](Category:Categories.md) [Category:API Documentation](Category:API_Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:HouseKeeping](Category:HouseKeeping.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Screenshots](Category:Screenshots.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Wiki](Category:Wiki.md) [Category:Wiki Documentation](Category:Wiki_Documentation.md) [Category:Wiki Documentation/pl](Category:Wiki_Documentation/pl.md) + +--- +[documentation index](../README.md) > Category:Documentation diff --git a/wiki/Category:Draft.md b/wiki/Category:Draft.md index 0e122208a6..78e701925f 100644 --- a/wiki/Category:Draft.md +++ b/wiki/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the [Draft Workbench](Draft_Workbench.md). [Arch panel tutorial](Arch_panel_tutorial.md) , [Artwork Draft](Artwork_Draft.md) , [Draft AddConstruction](Draft_AddConstruction.md) , [Draft AddToGroup](Draft_AddToGroup.md) , [Draft annotation scale widget](Draft_annotation_scale_widget.md) , [Draft AnnotationStyleEditor](Draft_AnnotationStyleEditor.md) , [Draft API](Draft_API.md) , [Draft ApplyStyle](Draft_ApplyStyle.md) , [Draft Arc](Draft_Arc.md) , [Draft Arc 3Points](Draft_Arc_3Points.md) , [Draft Array](Draft_Array.md) , [Draft AutoGroup](Draft_AutoGroup.md) , [Draft BezCurve](Draft_BezCurve.md) , [Draft BSpline](Draft_BSpline.md) , [Draft Circle](Draft_Circle.md) , [Draft CircularArray](Draft_CircularArray.md) , [Draft Clone](Draft_Clone.md) , [Draft Constrain](Draft_Constrain.md) , [Draft CubicBezCurve](Draft_CubicBezCurve.md) , [Draft DAT](Draft_DAT.md) , [Draft Dimension](Draft_Dimension.md) , [Draft Downgrade](Draft_Downgrade.md) , [Draft Draft2Sketch](Draft_Draft2Sketch.md) , [Draft Drawing](Draft_Drawing.md) , [Draft DXF](Draft_DXF.md) , [Draft Edit](Draft_Edit.md) , [Draft Ellipse](Draft_Ellipse.md) , [Draft Facebinder](Draft_Facebinder.md) , [Draft Fillet](Draft_Fillet.md) , [Draft FlipDimension](Draft_FlipDimension.md) , [Draft Heal](Draft_Heal.md) , [Draft Join](Draft_Join.md) , [Draft Label](Draft_Label.md) , [Draft Layer](Draft_Layer.md) , [Draft Line](Draft_Line.md) , [Draft Mirror](Draft_Mirror.md) , [Draft Move](Draft_Move.md) , [Draft OCA](Draft_OCA.md) , [Draft Offset](Draft_Offset.md) , [Draft OrthoArray](Draft_OrthoArray.md) , [Draft PathArray](Draft_PathArray.md) , [Draft PathLinkArray](Draft_PathLinkArray.md) , [Draft Pattern](Draft_Pattern.md) , [Draft Point](Draft_Point.md) , [Draft PointArray](Draft_PointArray.md) , [Draft PointLinkArray](Draft_PointLinkArray.md) , [Draft PolarArray](Draft_PolarArray.md) , [Draft Polygon](Draft_Polygon.md) , [Draft Preferences](Draft_Preferences.md) , [Draft Rectangle](Draft_Rectangle.md) , [Draft Rotate](Draft_Rotate.md) , [Draft Scale](Draft_Scale.md) , [Draft SelectGroup](Draft_SelectGroup.md) , [Draft SelectPlane](Draft_SelectPlane.md) , [Draft SetStyle](Draft_SetStyle.md) , [Draft Shape2DView](Draft_Shape2DView.md) , [Draft ShapeString](Draft_ShapeString.md) , [Draft ShowSnapBar](Draft_ShowSnapBar.md) , [Draft Slope](Draft_Slope.md) , [Draft Snap](Draft_Snap.md) , [Draft Snap Angle](Draft_Snap_Angle.md) , [Draft Snap Center](Draft_Snap_Center.md) , [Draft Snap Dimensions](Draft_Snap_Dimensions.md) , [Draft Snap Endpoint](Draft_Snap_Endpoint.md) , [Draft Snap Extension](Draft_Snap_Extension.md) , [Draft Snap Grid](Draft_Snap_Grid.md) , [Draft Snap Intersection](Draft_Snap_Intersection.md) , [Draft Snap Lock](Draft_Snap_Lock.md) , [Draft Snap Midpoint](Draft_Snap_Midpoint.md) , [Draft Snap Near](Draft_Snap_Near.md) , [Draft Snap Ortho](Draft_Snap_Ortho.md) , [Draft Snap Parallel](Draft_Snap_Parallel.md) , [Draft Snap Perpendicular](Draft_Snap_Perpendicular.md) , [Draft Snap Special](Draft_Snap_Special.md) , [Draft snap widget](Draft_snap_widget.md) , [Draft Snap WorkingPlane](Draft_Snap_WorkingPlane.md) , [Draft Split](Draft_Split.md) , [Draft Stretch](Draft_Stretch.md) , [Draft SubelementHighlight](Draft_SubelementHighlight.md) , [Draft SVG](Draft_SVG.md) , [Draft Text](Draft_Text.md) , [Draft ToggleConstructionMode](Draft_ToggleConstructionMode.md) , [Draft ToggleContinueMode](Draft_ToggleContinueMode.md) , [Draft ToggleDisplayMode](Draft_ToggleDisplayMode.md) , [Draft ToggleGrid](Draft_ToggleGrid.md) , [Template:Draft Tools navi](Template:Draft_Tools_navi.md) , [Draft Tray](Draft_Tray.md) , [Draft Trimex](Draft_Trimex.md) , [Draft tutorial](Draft_tutorial.md) , [Draft Upgrade](Draft_Upgrade.md) , [Draft Wire](Draft_Wire.md) , [Draft WireToBSpline](Draft_WireToBSpline.md) , [Draft Workbench](Draft_Workbench.md) , [Draft WorkingPlaneProxy](Draft_WorkingPlaneProxy.md) , [DXF](DXF.md) , [FreeCAD and DWG Import](FreeCAD_and_DWG_Import.md) , [Macro FCCircularText](Macro_FCCircularText.md) , [Manual:Traditional 2D drafting](Manual:Traditional_2D_drafting.md) , [SVG](SVG.md) , [Tutorial custom placing of windows and doors](Tutorial_custom_placing_of_windows_and_doors.md) , [Tutorial for open windows](Tutorial_for_open_windows.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Category:Draft diff --git a/wiki/Category:Drawing.md b/wiki/Category:Drawing.md index af360566aa..323682d872 100644 --- a/wiki/Category:Drawing.md +++ b/wiki/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench](Drawing_Workbench.m [ANSI templates](ANSI_templates.md) , [Arch templates](Arch_templates.md) , [Drawing Annotation](Drawing_Annotation.md) , [Drawing API example](Drawing_API_example.md) , [Drawing Clip](Drawing_Clip.md) , [Drawing Dimensioning Addon](Drawing_Dimensioning_Addon.md) , [Drawing Documentation](Drawing_Documentation.md) , [Drawing Landscape A3](Drawing_Landscape_A3.md) , [Drawing Open SVG](Drawing_Open_SVG.md) , [Drawing Openbrowser](Drawing_Openbrowser.md) , [Drawing Orthoviews](Drawing_Orthoviews.md) , [Drawing ProjectShape](Drawing_ProjectShape.md) , [Drawing Save](Drawing_Save.md) , [Drawing SpreadsheetView](Drawing_SpreadsheetView.md) , [Drawing Symbol](Drawing_Symbol.md) , [Drawing Template HowTo](Drawing_Template_HowTo.md) , [Drawing templates](Drawing_templates.md) , [Template:Drawing Tools navi](Template:Drawing_Tools_navi.md) , [Drawing tutorial](Drawing_tutorial.md) , [Drawing View](Drawing_View.md) , [Drawing Workbench](Drawing_Workbench.md) , [Drawing Workbench/ro](Drawing_Workbench/ro.md) , [Misc templates](Misc_templates.md) , [Svg Namespace](Svg_Namespace.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Category:Drawing diff --git a/wiki/Category:EM.md b/wiki/Category:EM.md index 1f5ac6753f..3f481d702d 100644 --- a/wiki/Category:EM.md +++ b/wiki/Category:EM.md @@ -6,3 +6,6 @@ This category list pages related to the [EM Workbench](EM_Workbench.md) which is [EM FHEquiv](EM_FHEquiv.md) , [EM FHInputFile](EM_FHInputFile.md) , [EM FHNode](EM_FHNode.md) , [EM FHPath](EM_FHPath.md) , [EM FHPlane](EM_FHPlane.md) , [EM FHPlaneAddRemoveNodeHole](EM_FHPlaneAddRemoveNodeHole.md) , [EM FHPlaneHole](EM_FHPlaneHole.md) , [EM FHPort](EM_FHPort.md) , [EM FHSegment](EM_FHSegment.md) , [EM FHSolver](EM_FHSolver.md) , [Template:EM Tools navi](Template:EM_Tools_navi.md) , [EM Workbench](EM_Workbench.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Category:EM diff --git a/wiki/Category:External_Command_Reference.md b/wiki/Category:External_Command_Reference.md index 79d5ec5566..3e2a99a122 100644 --- a/wiki/Category:External_Command_Reference.md +++ b/wiki/Category:External_Command_Reference.md @@ -4,3 +4,6 @@ This categorizes all **external** workbench commands separate from the internal ### Contents: [Arch Rebar](Arch_Rebar.md) , [Arch Rebar BOM](Arch_Rebar_BOM.md) , [Arch Rebar Dimensioning](Arch_Rebar_Dimensioning.md) , [Arch Rebar Drawing](Arch_Rebar_Drawing.md) , [Arch Rebar Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) , [BIM Views](BIM_Views.md) , [BIM Windows](BIM_Windows.md) , [CurvedShapes CurvedArray](CurvedShapes_CurvedArray.md) , [Curves CompressionSpring](Curves_CompressionSpring.md) , [Curves Discretize](Curves_Discretize.md) , [Curves EditableSpline](Curves_EditableSpline.md) , [Curves ExtendCurve](Curves_ExtendCurve.md) , [Curves GordonSurface](Curves_GordonSurface.md) , [Curves Interpolate](Curves_Interpolate.md) , [Curves IsoCurve](Curves_IsoCurve.md) , [Curves JoinCurve](Curves_JoinCurve.md) , [Curves Line](Curves_Line.md) , [Curves MultiLoft](Curves_MultiLoft.md) , [Curves ParametricComb](Curves_ParametricComb.md) , [Curves ParametricSolid](Curves_ParametricSolid.md) , [Curves PasteSVG](Curves_PasteSVG.md) , [Curves Pipeshell](Curves_Pipeshell.md) , [Curves PipeshellProfile](Curves_PipeshellProfile.md) , [Curves ProfileSupport](Curves_ProfileSupport.md) , [Curves ReflectLines](Curves_ReflectLines.md) , [Curves SegmentSurface](Curves_SegmentSurface.md) , [Curves SketchOnSurface](Curves_SketchOnSurface.md) , [Curves SplitCurve](Curves_SplitCurve.md) , [Curves ToConsole](Curves_ToConsole.md) , [Template:Curves Tools navi](Template:Curves_Tools_navi.md) , [Curves Workbench](Curves_Workbench.md) , [Curves ZebraTool](Curves_ZebraTool.md) , [Design456 2DExtend](Design456_2DExtend.md) , [Design456 2DTrim](Design456_2DTrim.md) , [Design456 3Point](Design456_3Point.md) , [Design456 Extract](Design456_Extract.md) , [Design456 Extrude](Design456_Extrude.md) , [Design456 ExtrudeFace](Design456_ExtrudeFace.md) , [Design456 LoftOnDirection](Design456_LoftOnDirection.md) , [Design456 MultiPointsToWireClose](Design456_MultiPointsToWireClose.md) , [Design456 MultiPointsToWireOpen](Design456_MultiPointsToWireOpen.md) , [Design456 PartMerge](Design456_PartMerge.md) , [Design456 PartSubtract](Design456_PartSubtract.md) , [Design456 SplitObject](Design456_SplitObject.md) , [Design456 Tweak](Design456_Tweak.md) , [Fasteners BOM](Fasteners_BOM.md) , [Fasteners ChamferHole](Fasteners_ChamferHole.md) , [Fasteners ChangeParameters](Fasteners_ChangeParameters.md) , [Fasteners Flip](Fasteners_Flip.md) , [Fasteners MatchTypeInner](Fasteners_MatchTypeInner.md) , [Fasteners MatchTypeOuter](Fasteners_MatchTypeOuter.md) , [Fasteners Move](Fasteners_Move.md) , [Fasteners ScrewCalculator](Fasteners_ScrewCalculator.md) , [Fasteners Shape](Fasteners_Shape.md) , [Template:Fasteners Tools navi](Template:Fasteners_Tools_navi.md) , [Fasteners Workbench](Fasteners_Workbench.md) , [FCGear BevelGear](FCGear_BevelGear.md) , [FCGear CrownGear](FCGear_CrownGear.md) , [FCGear CycloideGear](FCGear_CycloideGear.md) , [FCGear InvoluteGear](FCGear_InvoluteGear.md) , [FCGear InvoluteRack](FCGear_InvoluteRack.md) , [FCGear LanternGear](FCGear_LanternGear.md) , [FCGear TimingGear](FCGear_TimingGear.md) , [FCGear WormGear](FCGear_WormGear.md) , [Lattice2 AttachablePlacement](Lattice2_AttachablePlacement.md) , [Reinforcement Bar Bending Schedule](Reinforcement_Bar_Bending_Schedule.md) , [Reinforcement Bar Shape Cut List](Reinforcement_Bar_Shape_Cut_List.md) , [SheetMetal AddBase](SheetMetal_AddBase.md) , [SheetMetal AddBend](SheetMetal_AddBend.md) , [SheetMetal AddCornerRelief](SheetMetal_AddCornerRelief.md) , [SheetMetal AddFoldWall](SheetMetal_AddFoldWall.md) , [SheetMetal AddJunction](SheetMetal_AddJunction.md) , [SheetMetal AddRelief](SheetMetal_AddRelief.md) , [SheetMetal AddWall](SheetMetal_AddWall.md) , [SheetMetal Examples](SheetMetal_Examples.md) , [SheetMetal Extrude](SheetMetal_Extrude.md) , [SheetMetal Forming](SheetMetal_Forming.md) , [SheetMetal SketchOnSheet](SheetMetal_SketchOnSheet.md) , [SheetMetal UnattendedUnfold](SheetMetal_UnattendedUnfold.md) , [SheetMetal Unfold](SheetMetal_Unfold.md) , [SheetMetal Workbench](SheetMetal_Workbench.md) + +--- +[documentation index](../README.md) > Category:External Command Reference diff --git a/wiki/Category:External_Workbenches.md b/wiki/Category:External_Workbenches.md index bb45b5913a..975cea4b3b 100644 --- a/wiki/Category:External_Workbenches.md +++ b/wiki/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [External workbenches](External_workbenches.md) , [Stemfie Workbench](Stemfie_Workbench.md) , [A2plus Workbench](A2plus_Workbench.md) , [Animation Workbench](Animation_Workbench.md) , [Assembly2 Workbench](Assembly2_Workbench.md) , [Assembly3 Workbench](Assembly3_Workbench.md) , [Assembly4 Workbench](Assembly4_Workbench.md) , [BIM Workbench](BIM_Workbench.md) , [BOLTSFC Workbench](BOLTSFC_Workbench.md) , [CadQuery Workbench](CadQuery_Workbench.md) , [Cfd Workbench](Cfd_Workbench.md) , [CurvedShapes Workbench](CurvedShapes_Workbench.md) , [Curves Workbench](Curves_Workbench.md) , [Defeaturing](Defeaturing.md) , [Defeaturing Workbench](Defeaturing_Workbench.md) , [Design456 Workbench](Design456_Workbench.md) , [DynamicData Workbench](DynamicData_Workbench.md) , [EM Workbench](EM_Workbench.md) , [ExplodedAssembly Workbench](ExplodedAssembly_Workbench.md) , [Fasteners Workbench](Fasteners_Workbench.md) , [FCGear Workbench](FCGear_Workbench.md) , [FEM FrontISTR Workbench](FEM_FrontISTR_Workbench.md) , [Flamingo Workbench](Flamingo_Workbench.md) , [How to install additional workbenches](How_to_install_additional_workbenches.md) , [KicadStepUp Workbench](KicadStepUp_Workbench.md) , [Lattice2 Workbench](Lattice2_Workbench.md) , [Macro Kerkythea](Macro_Kerkythea.md) , [Manipulator Workbench](Manipulator_Workbench.md) , [ModernUI Workbench](ModernUI_Workbench.md) , [MOOC Workbench](MOOC_Workbench.md) , [OSE 3D Printer Workbench](OSE_3D_Printer_Workbench.md) , [OSE Piping Workbench](OSE_Piping_Workbench.md) , [Parts Library Workbench](Parts_Library_Workbench.md) , [PCB Workbench](PCB_Workbench.md) , [Plot Axes](Plot_Axes.md) , [Plot Basic tutorial](Plot_Basic_tutorial.md) , [Plot Grid](Plot_Grid.md) , [Plot Labels](Plot_Labels.md) , [Plot Legend](Plot_Legend.md) , [Plot Module](Plot_Module.md) , [Plot MultiAxes tutorial](Plot_MultiAxes_tutorial.md) , [Plot Positions](Plot_Positions.md) , [Plot Save](Plot_Save.md) , [Plot Series](Plot_Series.md) , [POV-Ray-Rendering Workbench](POV-Ray-Rendering_Workbench.md) , [Pyramids and polyhedrons Workbench](Pyramids_and_polyhedrons_Workbench.md) , [Pyrate Workbench](Pyrate_Workbench.md) , [Reinforcement Workbench](Reinforcement_Workbench.md) , [Render project](Render_project.md) , [Rocket BodyTube](Rocket_BodyTube.md) , [Rocket Bulkhead](Rocket_Bulkhead.md) , [Rocket CenteringRing](Rocket_CenteringRing.md) , [Rocket Ejection Charge Calculator](Rocket_Ejection_Charge_Calculator.md) , [Rocket Fin](Rocket_Fin.md) , [Rocket NoseCone](Rocket_NoseCone.md) , [Rocket Parachute Size Calculator](Rocket_Parachute_Size_Calculator.md) , [Rocket Thrust To Weight Calculator](Rocket_Thrust_To_Weight_Calculator.md) , [Rocket Transition](Rocket_Transition.md) , [Rocket Vent Hole Size Calculator](Rocket_Vent_Hole_Size_Calculator.md) , [Rocket Workbench](Rocket_Workbench.md) , [Sandbox:Kinagaki](Sandbox:Kinagaki.md) , [Ship Workbench](Ship_Workbench.md) , [Silk Workbench](Silk_Workbench.md) , [Symbols Library Workbench](Symbols_Library_Workbench.md) , [Timber Workbench](Timber_Workbench.md) , [WebTools Workbench](WebTools_Workbench.md) , [Wood Frame Workbench](Wood_Frame_Workbench.md) , [Workfeature Workbench](Workfeature_Workbench.md) , , , , , [Category:Workbenches](Category:Workbenches.md) [Category:Addons](Category:Addons.md) [Category:BIM](Category:BIM.md) [Category:EM](Category:EM.md) [Category:Fasteners](Category:Fasteners.md) [Category:FCGear](Category:FCGear.md) [Category:SheetMetal](Category:SheetMetal.md) + +--- +[documentation index](../README.md) > Category:External Workbenches diff --git a/wiki/Category:FCGear.md b/wiki/Category:FCGear.md index 750ad0e596..249dbb2e78 100644 --- a/wiki/Category:FCGear.md +++ b/wiki/Category:FCGear.md @@ -6,3 +6,6 @@ All relevant pages to the [FCGear workbench](FCGear_Workbench.md) (an [external [FCGear BevelGear](FCGear_BevelGear.md) , [FCGear CrownGear](FCGear_CrownGear.md) , [FCGear CycloideGear](FCGear_CycloideGear.md) , [FCGear InvoluteGear](FCGear_InvoluteGear.md) , [FCGear InvoluteRack](FCGear_InvoluteRack.md) , [FCGear LanternGear](FCGear_LanternGear.md) , [FCGear TimingGear](FCGear_TimingGear.md) , [FCGear Workbench](FCGear_Workbench.md) , [FCGear WormGear](FCGear_WormGear.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Category:FCGear diff --git a/wiki/Category:FEM.md b/wiki/Category:FEM.md index ddab22ff5b..9fef11251e 100644 --- a/wiki/Category:FEM.md +++ b/wiki/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench](FEM_Workbench.md) and F [Add A Button In FEM Toolbar Tutorial](Add_A_Button_In_FEM_Toolbar_Tutorial.md) , [Add FEM constraint tutorial](Add_FEM_constraint_tutorial.md) , [Add FEM equation tutorial](Add_FEM_equation_tutorial.md) , [Analysis of reinforced concrete with FEM](Analysis_of_reinforced_concrete_with_FEM.md) , [Analysis of reinforced concrete with FEM/pl](Analysis_of_reinforced_concrete_with_FEM/pl.md) , [Artwork Fem](Artwork_Fem.md) , [Extend FEM Module](Extend_FEM_Module.md) , [FEM Analysis](FEM_Analysis.md) , [FEM Analysis/pl](FEM_Analysis/pl.md) , [FEM CalculiX](FEM_CalculiX.md) , [FEM CalculiX Cantilever 3D](FEM_CalculiX_Cantilever_3D.md) , [FEM CalculiX Cantilever 3D/pl](FEM_CalculiX_Cantilever_3D/pl.md) , [FEM ClippingPlaneAdd](FEM_ClippingPlaneAdd.md) , [FEM ClippingPlaneRemoveAll](FEM_ClippingPlaneRemoveAll.md) , [FEM Concrete](FEM_Concrete.md) , [FEM Concrete/pl](FEM_Concrete/pl.md) , [FEM ConstantVacuumPermittivity](FEM_ConstantVacuumPermittivity.md) , [FEM ConstraintBearing](FEM_ConstraintBearing.md) , [FEM ConstraintBodyHeatSource](FEM_ConstraintBodyHeatSource.md) , [FEM ConstraintContact](FEM_ConstraintContact.md) , [FEM ConstraintDisplacement](FEM_ConstraintDisplacement.md) , [FEM ConstraintElectrostaticPotential](FEM_ConstraintElectrostaticPotential.md) , [FEM ConstraintFixed](FEM_ConstraintFixed.md) , [FEM ConstraintFixed/pl](FEM_ConstraintFixed/pl.md) , [FEM ConstraintFlowVelocity](FEM_ConstraintFlowVelocity.md) , [FEM ConstraintFluidBoundary](FEM_ConstraintFluidBoundary.md) , [FEM ConstraintForce](FEM_ConstraintForce.md) , [FEM ConstraintForce/pl](FEM_ConstraintForce/pl.md) , [FEM ConstraintGear](FEM_ConstraintGear.md) , [FEM ConstraintHeatflux](FEM_ConstraintHeatflux.md) , [FEM ConstraintInitialFlowVelocity](FEM_ConstraintInitialFlowVelocity.md) , [FEM ConstraintInitialTemperature](FEM_ConstraintInitialTemperature.md) , [FEM ConstraintPlaneRotation](FEM_ConstraintPlaneRotation.md) , [FEM ConstraintPressure](FEM_ConstraintPressure.md) , [FEM ConstraintPressure/pl](FEM_ConstraintPressure/pl.md) , [FEM ConstraintPulley](FEM_ConstraintPulley.md) , [FEM ConstraintSectionPrint](FEM_ConstraintSectionPrint.md) , [FEM ConstraintSelfWeight](FEM_ConstraintSelfWeight.md) , [FEM ConstraintSpring](FEM_ConstraintSpring.md) , [FEM ConstraintTemperature](FEM_ConstraintTemperature.md) , [FEM ConstraintTie](FEM_ConstraintTie.md) , [FEM ConstraintTransform](FEM_ConstraintTransform.md) , [FEM CreateNodesSet](FEM_CreateNodesSet.md) , [FEM Element Types](FEM_Element_Types.md) , [FEM ElementFluid1D](FEM_ElementFluid1D.md) , [FEM ElementGeometry1D](FEM_ElementGeometry1D.md) , [FEM ElementGeometry2D](FEM_ElementGeometry2D.md) , [FEM ElementRotation1D](FEM_ElementRotation1D.md) , [FEM EquationElasticity](FEM_EquationElasticity.md) , [FEM EquationElectricforce](FEM_EquationElectricforce.md) , [FEM EquationElectrostatic](FEM_EquationElectrostatic.md) , [FEM EquationFlow](FEM_EquationFlow.md) , [FEM EquationFlux](FEM_EquationFlux.md) , [FEM EquationHeat](FEM_EquationHeat.md) , [FEM EquationHeat/pl](FEM_EquationHeat/pl.md) , [FEM Example Capacitance Two Balls](FEM_Example_Capacitance_Two_Balls.md) , [FEM Examples](FEM_Examples.md) , [FEM FemMesh2Mesh](FEM_FemMesh2Mesh.md) , [FEM Install](FEM_Install.md) , [FEM Install/pl](FEM_Install/pl.md) , [FEM MaterialFluid](FEM_MaterialFluid.md) , [FEM MaterialMechanicalNonlinear](FEM_MaterialMechanicalNonlinear.md) , [FEM MaterialMechanicalNonlinear/pl](FEM_MaterialMechanicalNonlinear/pl.md) , [FEM MaterialReinforced](FEM_MaterialReinforced.md) , [FEM MaterialReinforced/pl](FEM_MaterialReinforced/pl.md) , [FEM MaterialSolid](FEM_MaterialSolid.md) , [FEM MaterialSolid/pl](FEM_MaterialSolid/pl.md) , [FEM Mesh](FEM_Mesh.md) , [FEM Mesh CalculiX](FEM_Mesh_CalculiX.md) , [FEM Mesh/pl](FEM_Mesh/pl.md) , [FEM MeshBoundaryLayer](FEM_MeshBoundaryLayer.md) , [FEM MeshClear](FEM_MeshClear.md) , [FEM MeshDisplayInfo](FEM_MeshDisplayInfo.md) , [FEM MeshGmshFromShape](FEM_MeshGmshFromShape.md) , [FEM MeshGmshFromShape/pl](FEM_MeshGmshFromShape/pl.md) , [FEM MeshGroup](FEM_MeshGroup.md) , [FEM MeshNetgenFromShape](FEM_MeshNetgenFromShape.md) , [FEM MeshRegion](FEM_MeshRegion.md) , [FEM PostApplyChanges](FEM_PostApplyChanges.md) , [FEM PostCreateFunctions](FEM_PostCreateFunctions.md) , [FEM PostFilterClipRegion](FEM_PostFilterClipRegion.md) , [FEM PostFilterClipScalar](FEM_PostFilterClipScalar.md) , [FEM PostFilterCutFunction](FEM_PostFilterCutFunction.md) , [FEM PostFilterDataAlongLine](FEM_PostFilterDataAlongLine.md) , [FEM PostFilterDataAtPoint](FEM_PostFilterDataAtPoint.md) , [FEM PostFilterLinearizedStresses](FEM_PostFilterLinearizedStresses.md) , [FEM PostFilterWarp](FEM_PostFilterWarp.md) , [FEM PostPipelineFromResult](FEM_PostPipelineFromResult.md) , [FEM Preferences](FEM_Preferences.md) , [FEM project](FEM_project.md) , [FEM project/pl](FEM_project/pl.md) , [FEM ResultShow](FEM_ResultShow.md) , [FEM ResultShow/pl](FEM_ResultShow/pl.md) , [FEM ResultsPurge](FEM_ResultsPurge.md) , [FEM ResultsPurge/pl](FEM_ResultsPurge/pl.md) , [FEM Shear of a Composite Block](FEM_Shear_of_a_Composite_Block.md) , [FEM Shear of a Composite Block/pl](FEM_Shear_of_a_Composite_Block/pl.md) , [FEM Solver](FEM_Solver.md) , [FEM Solver/pl](FEM_Solver/pl.md) , [FEM SolverCalculiX](FEM_SolverCalculiX.md) , [FEM SolverCalculixCxxtools](FEM_SolverCalculixCxxtools.md) , [FEM SolverControl](FEM_SolverControl.md) , [FEM SolverControl/pl](FEM_SolverControl/pl.md) , [FEM SolverElmer](FEM_SolverElmer.md) , [FEM SolverMystran](FEM_SolverMystran.md) , [FEM SolverRun](FEM_SolverRun.md) , [FEM SolverRun/pl](FEM_SolverRun/pl.md) , [FEM SolverZ88](FEM_SolverZ88.md) , [Template:FEM Tools navi](Template:FEM_Tools_navi.md) , [Template:FEM Tools navi/pl](Template:FEM_Tools_navi/pl.md) , [FEM tutorial](FEM_tutorial.md) , [FEM Tutorial Python](FEM_Tutorial_Python.md) , [FEM Tutorial Python/pl](FEM_Tutorial_Python/pl.md) , [FEM tutorial/pl](FEM_tutorial/pl.md) , [FEM Workbench](FEM_Workbench.md) , [FEM Workbench/pl](FEM_Workbench/pl.md) , [IfcOpenShell](IfcOpenShell.md) , [IfcOpenShell/pl](IfcOpenShell/pl.md) , [IfcPlusPlus](IfcPlusPlus.md) , [Material](Material.md) , [Material editor](Material_editor.md) , [Material editor/pl](Material_editor/pl.md) , [Material/pl](Material/pl.md) , [Mesh](Mesh.md) , [Mesh/pl](Mesh/pl.md) , [Onboarding FEM Devs](Onboarding_FEM_Devs.md) , [Post-Processing of FEM Results with Paraview](Post-Processing_of_FEM_Results_with_Paraview.md) , [Post-Processing of FEM Results with Paraview/pl](Post-Processing_of_FEM_Results_with_Paraview/pl.md) , [Sandbox:Add FEM Solver Tutorial](Sandbox:Add_FEM_Solver_Tutorial.md) , [Transient FEM analysis](Transient_FEM_analysis.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:FEM diff --git a/wiki/Category:Fasteners.md b/wiki/Category:Fasteners.md index dce5e03a4f..1ca9fae7d9 100644 --- a/wiki/Category:Fasteners.md +++ b/wiki/Category:Fasteners.md @@ -6,3 +6,6 @@ This page collects the documentation pages for the [Fasteners\_Workbench](Fasten [Fasteners BOM](Fasteners_BOM.md) , [Fasteners ChamferHole](Fasteners_ChamferHole.md) , [Fasteners ChangeParameters](Fasteners_ChangeParameters.md) , [Fasteners Flip](Fasteners_Flip.md) , [Fasteners MatchTypeInner](Fasteners_MatchTypeInner.md) , [Fasteners MatchTypeOuter](Fasteners_MatchTypeOuter.md) , [Fasteners Move](Fasteners_Move.md) , [Fasteners ScrewCalculator](Fasteners_ScrewCalculator.md) , [Fasteners Shape](Fasteners_Shape.md) , [Template:Fasteners Tools navi](Template:Fasteners_Tools_navi.md) , [Fasteners Workbench](Fasteners_Workbench.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Category:Fasteners diff --git a/wiki/Category:File_Formats.md b/wiki/Category:File_Formats.md index 3aaa5b1c05..96e0d405d4 100644 --- a/wiki/Category:File_Formats.md +++ b/wiki/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [Arch 3DS](Arch_3DS.md) , [Arch DAE](Arch_DAE.md) , [Arch IFC](Arch_IFC.md) , [Arch JSON](Arch_JSON.md) , [Arch OBJ](Arch_OBJ.md) , [Arch SHP](Arch_SHP.md) , [Asymptote](Asymptote.md) , [Draft DAT](Draft_DAT.md) , [Draft DXF](Draft_DXF.md) , [Draft OCA](Draft_OCA.md) , [Draft SVG](Draft_SVG.md) , [DWG](DWG.md) , [DXF](DXF.md) , [Export to STL or OBJ](Export_to_STL_or_OBJ.md) , [FCMacro](FCMacro.md) , [FCMat](FCMat.md) , [FCStd](FCStd.md) , [Fcstd file format](Fcstd_file_format.md) , [File Format FCStd](File_Format_FCStd.md) , [FreeCAD and DWG Import](FreeCAD_and_DWG_Import.md) , [FreeCAD and DXF Import](FreeCAD_and_DXF_Import.md) , [FreeCAD and Mesh Import](FreeCAD_and_Mesh_Import.md) , [GlTF](GlTF.md) , [Import Export](Import_Export.md) , [Import Export Preferences](Import_Export_Preferences.md) , [Import from STL or OBJ](Import_from_STL_or_OBJ.md) , [Import/Export IFC - compiling IfcOpenShell](Import/Export_IFC_-_compiling_IfcOpenShell.md) , [Importing From Sketchup](Importing_From_Sketchup.md) , [Material](Material.md) , [OpenSCAD CSG](OpenSCAD_CSG.md) , [OpenSCAD CSG tested files](OpenSCAD_CSG_tested_files.md) , [PDF](PDF.md) , [Spreadsheet CSV](Spreadsheet_CSV.md) , [Std Export](Std_Export.md) , [Std Import](Std_Import.md) , [SVG](SVG.md) + +--- +[documentation index](../README.md) > Category:File Formats diff --git a/wiki/Category:Formats.md b/wiki/Category:Formats.md index b50ecfe23a..9416f8e400 100644 --- a/wiki/Category:Formats.md +++ b/wiki/Category:Formats.md @@ -4,3 +4,6 @@ ### Contents: [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > Category:Formats diff --git a/wiki/Category:Glossary.md b/wiki/Category:Glossary.md index 74cd03e734..d39643ed41 100644 --- a/wiki/Category:Glossary.md +++ b/wiki/Category:Glossary.md @@ -4,3 +4,6 @@ This category tracks pages that explain definitions of words related to FreeCAD ### Contents: [Assembly](Assembly.md) , [Body](Body.md) , [Command](Command.md) , [Constraint](Constraint.md) , [Datum](Datum.md) , [Drawing](Drawing.md) , [Feature](Feature.md) , [Glossary](Glossary.md) , [Manipulator](Manipulator.md) , [Mesh](Mesh.md) , [Mesh Feature](Mesh_Feature.md) , [Model](Model.md) , [Part](Part.md) , [Python](Python.md) , [Shape](Shape.md) , [Sketch](Sketch.md) + +--- +[documentation index](../README.md) > Category:Glossary diff --git a/wiki/Category:Google_Summer_of_Code.md b/wiki/Category:Google_Summer_of_Code.md index fcf04fa3a7..e648b40a4c 100644 --- a/wiki/Category:Google_Summer_of_Code.md +++ b/wiki/Category:Google_Summer_of_Code.md @@ -4,3 +4,6 @@ Google Summer of Code ### Contents: [Advanced FreeCAD test system](Advanced_FreeCAD_test_system.md) , [Automate reinforcement process](Automate_reinforcement_process.md) , [BCF support](BCF_support.md) , [Direct modeling tools](Direct_modeling_tools.md) , [Extend Part workbench python API](Extend_Part_workbench_python_API.md) , [Extended functionality of Rebar Addon](Extended_functionality_of_Rebar_Addon.md) , [FEM Post Processing based on VTK](FEM_Post_Processing_based_on_VTK.md) , [FreeCAD Configuration Management Project](FreeCAD_Configuration_Management_Project.md) , [FreeCAD-BRLCAD integration](FreeCAD-BRLCAD_integration.md) , [Give graphical access to a wide range of available ElmerSolver setting from within FreeCAD](Give_graphical_access_to_a_wide_range_of_available_ElmerSolver_setting_from_within_FreeCAD.md) , [Google Summer of Code 2017](Google_Summer_of_Code_2017.md) , [Google Summer of Code 2018](Google_Summer_of_Code_2018.md) , [Google Summer of Code 2019](Google_Summer_of_Code_2019.md) , [Google Summer of Code 2020](Google_Summer_of_Code_2020.md) , [GSoC FEM Solver Z88](GSoC_FEM_Solver_Z88.md) , [GSoC FEM Unit Tests](GSoC_FEM_Unit_Tests.md) , [GSoC Path/Robot Integration](GSoC_Path/Robot_Integration.md) , [Integrate Cycles renderer](Integrate_Cycles_renderer.md) , [IPython notebook integration](IPython_notebook_integration.md) , [Mapping of main ElmerSolver setting for mechanical simulations](Mapping_of_main_ElmerSolver_setting_for_mechanical_simulations.md) , [New solver object for handling ElmerFEM execution in FEM-workbench](New_solver_object_for_handling_ElmerFEM_execution_in_FEM-workbench.md) , [PartDesign Updates](PartDesign_Updates.md) , [Swept-path Analysis GSoC Project](Swept-path_Analysis_GSoC_Project.md) , [TechDraw Enhancement Project](TechDraw_Enhancement_Project.md) , [Topological Naming Project](Topological_Naming_Project.md) , [Topological Naming Project/de](Topological_Naming_Project/de.md) , [Topological Naming Project/en](Topological_Naming_Project/en.md) , [Topological Naming Project/es](Topological_Naming_Project/es.md) , [Topological Naming Project/fr](Topological_Naming_Project/fr.md) , [Topological Naming Project/it](Topological_Naming_Project/it.md) , [Topological Naming Project/pt-br](Topological_Naming_Project/pt-br.md) , [Unified Measurement Facility](Unified_Measurement_Facility.md) , [Upgrade the documentation system](Upgrade_the_documentation_system.md) + +--- +[documentation index](../README.md) > Category:Google Summer of Code diff --git a/wiki/Category:Help.md b/wiki/Category:Help.md index 0358b07484..ae315c88a2 100644 --- a/wiki/Category:Help.md +++ b/wiki/Category:Help.md @@ -6,3 +6,6 @@ This category lists pages that contain helpfull information on MediaWiki and edi [Help:Editing](Help:Editing.md) , [Help:Editing/tr](Help:Editing/tr.md) , [Help](Help.md) , [Key ASCII](Key_ASCII.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Help diff --git a/wiki/Category:HouseKeeping.md b/wiki/Category:HouseKeeping.md index 0316269156..cfb6c7ae4b 100644 --- a/wiki/Category:HouseKeeping.md +++ b/wiki/Category:HouseKeeping.md @@ -10,3 +10,6 @@ The first one out is renaming the Module pages to Workbench, with all the needed [Rename Module to Workbench](Rename_Module_to_Workbench.md) [Category:Administration](Category:Administration.md) [Category:Categories](Category:Categories.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > Category:HouseKeeping diff --git a/wiki/Category:Hubs.md b/wiki/Category:Hubs.md index 7cda05b320..f6cdf165ca 100644 --- a/wiki/Category:Hubs.md +++ b/wiki/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Developer hub](Developer_hub.md) , [Power users hub](Power_users_hub.md) , [Scientific literature](Scientific_literature.md) , [User hub](User_hub.md) , [Wished tools](Wished_tools.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Hubs diff --git a/wiki/Category:Icon.md b/wiki/Category:Icon.md index 8ea8fa1add..3c162fbe6b 100644 --- a/wiki/Category:Icon.md +++ b/wiki/Category:Icon.md @@ -6,3 +6,6 @@ This category contains icon images, and buttons, which can be placed in document [Artwork](Artwork.md) , [Artwork Erroneous](Artwork_Erroneous.md) , [Key ASCII](Key_ASCII.md) [Category:Artwork](Category:Artwork.md) + +--- +[documentation index](../README.md) > Category:Icon diff --git a/wiki/Category:Image.md b/wiki/Category:Image.md index 13a4c8b36f..2288ff2783 100644 --- a/wiki/Category:Image.md +++ b/wiki/Category:Image.md @@ -6,3 +6,6 @@ This category is the top level category for **images**. It should not contain an [Artwork Image](Artwork_Image.md) , [Bitmap](Bitmap.md) , [Image CreateImagePlane](Image_CreateImagePlane.md) , [Image Open](Image_Open.md) , [Image Scaling](Image_Scaling.md) , [Template:Image Tools navi](Template:Image_Tools_navi.md) , [Image Workbench](Image_Workbench.md) [Category:Categories](Category:Categories.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Category:Image diff --git a/wiki/Category:Inspection.md b/wiki/Category:Inspection.md index d8301f6ef6..a64722a625 100644 --- a/wiki/Category:Inspection.md +++ b/wiki/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Artwork Inspection](Artwork_Inspection.md) , [Inspection Workbench](Inspection_Workbench.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection diff --git a/wiki/Category:Interface.md b/wiki/Category:Interface.md index 4b32c5f69a..55fc06febd 100644 --- a/wiki/Category:Interface.md +++ b/wiki/Category:Interface.md @@ -4,3 +4,6 @@ This category lists pages that describe the FreeCAD interface. ### Contents: [3D view](3D_view.md) , [Combo view](Combo_view.md) , [DAG view](DAG_view.md) , [Interface](Interface.md) , [Interface Customization](Interface_Customization.md) , [Template:Interface navi](Template:Interface_navi.md) , [Main view area](Main_view_area.md) , [Property editor](Property_editor.md) , [Python console](Python_console.md) , [Report view](Report_view.md) , [Selection view](Selection_view.md) , [Standard Menu](Standard_Menu.md) , [Status bar](Status_bar.md) , [Std Workbench](Std_Workbench.md) , [Task panel](Task_panel.md) , [Tree view](Tree_view.md) + +--- +[documentation index](../README.md) > Category:Interface diff --git a/wiki/Category:Macros.md b/wiki/Category:Macros.md index 4fc33df13d..a867348c9f 100644 --- a/wiki/Category:Macros.md +++ b/wiki/Category:Macros.md @@ -6,3 +6,6 @@ This category contains macros to extend your FreeCAD installation with new funct [Fastener holes](Fastener_holes.md) , [Template:Macro](Template:Macro.md) , [Macro 3D Parametric Curve](Macro_3D_Parametric_Curve.md) , [Macro 3d Printer Slicer](Macro_3d_Printer_Slicer.md) , [Macro 3d Printer Slicer Individual Parts](Macro_3d_Printer_Slicer_Individual_Parts.md) , [Macro AeroFoil](Macro_AeroFoil.md) , [Macro Airfoil Import & Scale](Macro_Airfoil_Import_&_Scale.md) , [Macro Alias Manager](Macro_Alias_Manager.md) , [Macro Align Camera to Working Plane](Macro_Align_Camera_to_Working_Plane.md) , [Macro Align Face Object to View](Macro_Align_Face_Object_to_View.md) , [Macro Align Object to View](Macro_Align_Object_to_View.md) , [Macro Align View to Face](Macro_Align_View_to_Face.md) , [Macro Align Working Plane to Camera](Macro_Align_Working_Plane_to_Camera.md) , [Macro Animated Constrain](Macro_Animated_Constrain.md) , [Macro Apothem Based Prism GUI](Macro_Apothem_Based_Prism_GUI.md) , [Macro Arch Axis System Repartition](Macro_Arch_Axis_System_Repartition.md) , [Macro ArrayCopy](Macro_ArrayCopy.md) , [Macro Assemblage Imprimante 3D](Macro_Assemblage_Imprimante_3D.md) , [Macro Assembly](Macro_Assembly.md) , [Macro at Startup](Macro_at_Startup.md) , [Macro Automatic drawing](Macro_Automatic_drawing.md) , [Macro BOLTS](Macro_BOLTS.md) , [Macro BoundingBox Tracing](Macro_BoundingBox_Tracing.md) , [Macro Build Utility](Macro_Build_Utility.md) , [Macro Cabinets32](Macro_Cabinets32.md) , [Macro CartoucheFC](Macro_CartoucheFC.md) , [Macro CartoucheFC 2](Macro_CartoucheFC_2.md) , [Macro CartoucheFC Full](Macro_CartoucheFC_Full.md) , [Macro Center Align Objects with Faces or Edges](Macro_Center_Align_Objects_with_Faces_or_Edges.md) , [Macro CenterFace](Macro_CenterFace.md) , [Macro CenterOfMass](Macro_CenterOfMass.md) , [Macro Circle](Macro_Circle.md) , [Macro CirclePlus](Macro_CirclePlus.md) , [Macro clone explicit](Macro_clone_explicit.md) , [Macro CloneConvert](Macro_CloneConvert.md) , [Macro Compound Plus](Macro_Compound_Plus.md) , [Macro Connect And Sweep](Macro_Connect_And_Sweep.md) , [Macro Constraint Draft](Macro_Constraint_Draft.md) , [Macro Copy3DViewToClipboard](Macro_Copy3DViewToClipboard.md) , [Macro Corner shapes wizard](Macro_Corner_shapes_wizard.md) , [Macro Corner shapes wizard/update](Macro_Corner_shapes_wizard/update.md) , [Macro crank simul](Macro_crank_simul.md) , [Macro Creating faces from a DXF file](Macro_Creating_faces_from_a_DXF_file.md) , [Macro cross section](Macro_cross_section.md) , [Macro Cut Circle](Macro_Cut_Circle.md) , [Macro Cut Line](Macro_Cut_Line.md) , [Macro DeepCopy](Macro_DeepCopy.md) , [Macro Delta xyz](Macro_Delta_xyz.md) , [Macro documentation](Macro_documentation.md) , [Macro Draft Circle 3 Points](Macro_Draft_Circle_3_Points.md) , [Macro Draft Circle 3 Points 3D](Macro_Draft_Circle_3_Points_3D.md) , [Macro Draw 2D Function](Macro_Draw_2D_Function.md) , [Macro Draw Parametric 2D Function](Macro_Draw_Parametric_2D_Function.md) , [Macro Dump Objects](Macro_Dump_Objects.md) , [Macro Duplicate Selection](Macro_Duplicate_Selection.md) , [Macro DXF to Face and Sketch](Macro_DXF_to_Face_and_Sketch.md) , [Macro Dxf To Shape](Macro_Dxf_To_Shape.md) , [Macro Easy cutouts for Enclosure Design](Macro_Easy_cutouts_for_Enclosure_Design.md) , [Macro EasyAlias](Macro_EasyAlias.md) , [Macro EdgesToArc](Macro_EdgesToArc.md) , [Macro Ellipse-Center+2Points](Macro_Ellipse-Center+2Points.md) , [Macro ExpandTreeItem](Macro_ExpandTreeItem.md) , [Macro export transient FEM results](Macro_export_transient_FEM_results.md) , [Macro Extract Wires from Mesh](Macro_Extract_Wires_from_Mesh.md) , [Macro FaceToSketch](Macro_FaceToSketch.md) , [Macro FC Convert Lines](Macro_FC_Convert_Lines.md) , [Macro FC element selector](Macro_FC_element_selector.md) , [Macro FCCamera](Macro_FCCamera.md) , [Macro FCCamGroover](Macro_FCCamGroover.md) , [Macro FCCircularText](Macro_FCCircularText.md) , [Macro FCGear](Macro_FCGear.md) , [Macro FCHoneycombMaker](Macro_FCHoneycombMaker.md) , [Macro FCInfo](Macro_FCInfo.md) , [Macro FCInfo Alternate Linux](Macro_FCInfo_Alternate_Linux.md) , [Macro FCInfoGlass](Macro_FCInfoGlass.md) , [Macro FCInfoToMouse](Macro_FCInfoToMouse.md) , [Macro FCSpreadSheet Extract](Macro_FCSpreadSheet_Extract.md) , [Macro FCSpring Helix Variable](Macro_FCSpring_Helix_Variable.md) , [Macro FCSpring On Surface](Macro_FCSpring_On_Surface.md) , [Macro FCTreeView](Macro_FCTreeView.md) , [Macro FCWire To Volume](Macro_FCWire_To_Volume.md) , [Macro findConfigFiles](Macro_findConfigFiles.md) , [Macro FlattenWire](Macro_FlattenWire.md) , [Macro FlattenWire3Points](Macro_FlattenWire3Points.md) , [Macro Fonts Win10 PYMP](Macro_Fonts_Win10_PYMP.md) , [Macro ForceRecompute](Macro_ForceRecompute.md) , [Macro FreeCAD to Kerkythea](Macro_FreeCAD_to_Kerkythea.md) , [Macro Geneva Wheel](Macro_Geneva_Wheel.md) , [Macro Geneva Wheel GUI](Macro_Geneva_Wheel_GUI.md) , [Macro Geodesic Dome](Macro_Geodesic_Dome.md) , [Macro Global Variable Watcher](Macro_Global_Variable_Watcher.md) , [Macro GMSH](Macro_GMSH.md) , [Macro GuiResetToolbars](Macro_GuiResetToolbars.md) , [Macro Guitar fretboard](Macro_Guitar_fretboard.md) , [Macro Guitar Nut](Macro_Guitar_Nut.md) , [Macro Half turn stairs](Macro_Half_turn_stairs.md) , [Macro Half-Hull Model](Macro_Half-Hull_Model.md) , [Macro HealArcs](Macro_HealArcs.md) , [Macro HiddenAlls](Macro_HiddenAlls.md) , [Macro HighlightCommon](Macro_HighlightCommon.md) , [Macro HighlightDifference](Macro_HighlightDifference.md) , [Macro HilbertCurve](Macro_HilbertCurve.md) , [Macro hinge](Macro_hinge.md) , [Macro If Selected Stay If Not Then Delete](Macro_If_Selected_Stay_If_Not_Then_Delete.md) , [Macro Image Scaling](Macro_Image_Scaling.md) , [Macro ImperialScales](Macro_ImperialScales.md) , [Macro JointWire](Macro_JointWire.md) , [Macro Kerkythea](Macro_Kerkythea.md) , [Macro Line Length](Macro_Line_Length.md) , [Macro Loft](Macro_Loft.md) , [Macro MacroMenu](Macro_MacroMenu.md) , [Macro Make Arc 3 Points](Macro_Make_Arc_3_Points.md) , [Macro Make Circle 3 Points](Macro_Make_Circle_3_Points.md) , [Macro Make Cube](Macro_Make_Cube.md) , [Macro Manage Navigational Style](Macro_Manage_Navigational_Style.md) , [Macro Manage Navigational Style2](Macro_Manage_Navigational_Style2.md) , [Macro MatrixTransform](Macro_MatrixTransform.md) , [Macro MeasureCircle](Macro_MeasureCircle.md) , [Macro Megaminx](Macro_Megaminx.md) , [Macro merge duplicate materials](Macro_merge_duplicate_materials.md) , [Macro MeshToPart](Macro_MeshToPart.md) , [Macro MessageBox](Macro_MessageBox.md) , [Macro Mouse Cross](Macro_Mouse_Cross.md) , [Macro Mouse over cb](Macro_Mouse_over_cb.md) , [Macro MoveToOrigin](Macro_MoveToOrigin.md) , [Macro MultiCopy](Macro_MultiCopy.md) , [Macro Normal Vector](Macro_Normal_Vector.md) , [Macro ObjectInfo](Macro_ObjectInfo.md) , [Macro Overlap](Macro_Overlap.md) , [Macro Parametric Curve FP](Macro_Parametric_Curve_FP.md) , [Macro PartsLibrary](Macro_PartsLibrary.md) , [Macro PartToVRML](Macro_PartToVRML.md) , [Macro Perpendicular To Wire](Macro_Perpendicular_To_Wire.md) , [Macro PlacementAbsolufy](Macro_PlacementAbsolufy.md) , [Macro Polyhedrons](Macro_Polyhedrons.md) , [Macro Print SceneGraph](Macro_Print_SceneGraph.md) , [Macro PropertyMemo](Macro_PropertyMemo.md) , [Macro Pyramid](Macro_Pyramid.md) , [Macro Python Assistant Window](Macro_Python_Assistant_Window.md) , [Macro Recompute Profiler](Macro_Recompute_Profiler.md) , [Macro Rectellipse](Macro_Rectellipse.md) , [Macro Remove parametric history](Macro_Remove_parametric_history.md) , [Macro Replace Part in Assembly](Macro_Replace_Part_in_Assembly.md) , [Macro Repro Wire](Macro_Repro_Wire.md) , [Macro Rotate To Point](Macro_Rotate_To_Point.md) , [Macro Rotate View](Macro_Rotate_View.md) , [Macro Rotate View Free](Macro_Rotate_View_Free.md) , [Macro Rotate ViewAxonometric](Macro_Rotate_ViewAxonometric.md) , [Macro Rubik Cube](Macro_Rubik_Cube.md) , [Macro Screen Wiki](Macro_Screen_Wiki.md) , [Macro screw maker1 2](Macro_screw_maker1_2.md) , [Macro Section](Macro_Section.md) , [Macro Select Hovering](Macro_Select_Hovering.md) , [Macro SelectVisible](Macro_SelectVisible.md) , [Macro Shake Sketch](Macro_Shake_Sketch.md) , [Macro Sheet Metal Unfolder](Macro_Sheet_Metal_Unfolder.md) , [Macro SimpleProperties](Macro_SimpleProperties.md) , [Macro Site From Contours](Macro_Site_From_Contours.md) , [Macro SketchUnmap](Macro_SketchUnmap.md) , [Macro Snip](Macro_Snip.md) , [Macro Solid Sweep](Macro_Solid_Sweep.md) , [Macro SplitPropEditor](Macro_SplitPropEditor.md) , [Macro Spreadsheet2html](Macro_Spreadsheet2html.md) , [Macro SpreadsheetTools](Macro_SpreadsheetTools.md) , [Macro Spring](Macro_Spring.md) , [Macro Stairs](Macro_Stairs.md) , [Macro StraightenObject](Macro_StraightenObject.md) , [Macro SuperWire](Macro_SuperWire.md) , [Macro TemplateHelper](Macro_TemplateHelper.md) , [Macro Texture](Macro_Texture.md) , [Macro Texture Objects](Macro_Texture_Objects.md) , [Macro Toggle Drawstyle](Macro_Toggle_Drawstyle.md) , [Macro Toggle Drawstyle Optimized](Macro_Toggle_Drawstyle_Optimized.md) , [Macro Toggle Panels Visibility](Macro_Toggle_Panels_Visibility.md) , [Macro Toggle Visibility](Macro_Toggle_Visibility.md) , [Macro Toggle Visibility2 1-2](Macro_Toggle_Visibility2_1-2.md) , [Macro Toggle Visibility2 2-2](Macro_Toggle_Visibility2_2-2.md) , [Macro TreeToAscii](Macro_TreeToAscii.md) , [Macro Triangle AH](Macro_Triangle_AH.md) , [Macro Unbind Numpad Shortcuts](Macro_Unbind_Numpad_Shortcuts.md) , [Macro Unfold Box](Macro_Unfold_Box.md) , [Macro Unroll Ruled Surface](Macro_Unroll_Ruled_Surface.md) , [Macro View Rotation](Macro_View_Rotation.md) , [Macro Visibility Manager](Macro_Visibility_Manager.md) , [Macro VisibleAlls](Macro_VisibleAlls.md) , [Macro Wiki Object Properties List Generator](Macro_Wiki_Object_Properties_List_Generator.md) , [Macro Wiki Object Properties List Generator Basic Version](Macro_Wiki_Object_Properties_List_Generator_Basic_Version.md) , [Macro WireXYZ](Macro_WireXYZ.md) , [Macro Wiring And Hoses](Macro_Wiring_And_Hoses.md) , [Macro WorkFeatures](Macro_WorkFeatures.md) , [Macro ZTest Over 128](Macro_ZTest_Over_128.md) , [Macros](Macros.md) , [Macros recipes](Macros_recipes.md) , [Misc templates Full](Misc_templates_Full.md) , [Piffpoof Macro Half-Hull Model](Piffpoof_Macro_Half-Hull_Model.md) , [Qt Example](Qt_Example.md) , [Sandbox:Simone.b](Sandbox:Simone.b.md) , [Simple grid](Simple_grid.md) , [Svg Namespace](Svg_Namespace.md) [Category:Addons](Category:Addons.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Macros diff --git a/wiki/Category:Manual.md b/wiki/Category:Manual.md index 95b2b0d955..dc95e15d92 100644 --- a/wiki/Category:Manual.md +++ b/wiki/Category:Manual.md @@ -4,3 +4,6 @@ This category contains all the page of the FreeCAD manual ### Contents: [Manual:A gentle introduction](Manual:A_gentle_introduction.md) , [Manual:All workbenches at a glance](Manual:All_workbenches_at_a_glance.md) , [Manual:BIM modeling](Manual:BIM_modeling.md) , [Manual:Creating and manipulating geometry](Manual:Creating_and_manipulating_geometry.md) , [Manual:Creating FEM analyses](Manual:Creating_FEM_analyses.md) , [Manual:Creating interface tools](Manual:Creating_interface_tools.md) , [Manual:Creating parametric objects](Manual:Creating_parametric_objects.md) , [Manual:Creating renderings](Manual:Creating_renderings.md) , [Manual:Generating 2D drawings](Manual:Generating_2D_drawings.md) , [Manual:Import and export to other filetypes](Manual:Import_and_export_to_other_filetypes.md) , [Manual:Installing](Manual:Installing.md) , [Manual:Introduction](Manual:Introduction.md) , [Manual:Modeling for product design](Manual:Modeling_for_product_design.md) , [Manual:Navigating in the 3D view](Manual:Navigating_in_the_3D_view.md) , [Manual:Parametric objects](Manual:Parametric_objects.md) , [Manual:Preparing models for 3D printing](Manual:Preparing_models_for_3D_printing.md) , [Manual:Summary](Manual:Summary.md) , [Manual:The Community](Manual:The_Community.md) , [Manual:The FreeCAD document](Manual:The_FreeCAD_document.md) , [Manual:The FreeCAD Interface](Manual:The_FreeCAD_Interface.md) , [Template:Manual:TOC](Template:Manual:TOC.md) , [Manual:Traditional 2D drafting](Manual:Traditional_2D_drafting.md) , [Manual:Traditional modeling, the CSG way](Manual:Traditional_modeling,_the_CSG_way.md) , [Manual:Using spreadsheets](Manual:Using_spreadsheets.md) , [Manual:What is FreeCAD](Manual:What_is_FreeCAD.md) + +--- +[documentation index](../README.md) > Category:Manual diff --git a/wiki/Category:Mesh.md b/wiki/Category:Mesh.md index 899243c5fc..c7cefb3da4 100644 --- a/wiki/Category:Mesh.md +++ b/wiki/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh Workbench](Mesh_Workbench.md). [Artwork Mesh](Artwork_Mesh.md) , [Artwork MeshPart](Artwork_MeshPart.md) , [Artwork MeshPart/pl](Artwork_MeshPart/pl.md) , [Asymptote](Asymptote.md) , [Asymptote/pl](Asymptote/pl.md) , [Manual:Preparing models for 3D printing](Manual:Preparing_models_for_3D_printing.md) , [Mesh](Mesh.md) , [Mesh AddFacet](Mesh_AddFacet.md) , [Mesh AddFacet/pl](Mesh_AddFacet/pl.md) , [Mesh BoundingBox](Mesh_BoundingBox.md) , [Mesh BoundingBox/pl](Mesh_BoundingBox/pl.md) , [Mesh BuildRegularSolid](Mesh_BuildRegularSolid.md) , [Mesh BuildRegularSolid/pl](Mesh_BuildRegularSolid/pl.md) , [Mesh CrossSections](Mesh_CrossSections.md) , [Mesh CrossSections/pl](Mesh_CrossSections/pl.md) , [Mesh CurvatureInfo](Mesh_CurvatureInfo.md) , [Mesh CurvatureInfo/pl](Mesh_CurvatureInfo/pl.md) , [Mesh Decimating](Mesh_Decimating.md) , [Mesh Decimating/pl](Mesh_Decimating/pl.md) , [Mesh Difference](Mesh_Difference.md) , [Mesh Difference/pl](Mesh_Difference/pl.md) , [Mesh EvaluateFacet](Mesh_EvaluateFacet.md) , [Mesh EvaluateFacet/pl](Mesh_EvaluateFacet/pl.md) , [Mesh EvaluateSolid](Mesh_EvaluateSolid.md) , [Mesh EvaluateSolid/pl](Mesh_EvaluateSolid/pl.md) , [Mesh Evaluation](Mesh_Evaluation.md) , [Mesh Evaluation/pl](Mesh_Evaluation/pl.md) , [Mesh Export](Mesh_Export.md) , [Mesh Export/pl](Mesh_Export/pl.md) , [Mesh Feature](Mesh_Feature.md) , [Mesh Feature/pl](Mesh_Feature/pl.md) , [Mesh FillInteractiveHole](Mesh_FillInteractiveHole.md) , [Mesh FillInteractiveHole/pl](Mesh_FillInteractiveHole/pl.md) , [Mesh FillupHoles](Mesh_FillupHoles.md) , [Mesh FillupHoles/pl](Mesh_FillupHoles/pl.md) , [Mesh FlipNormals](Mesh_FlipNormals.md) , [Mesh FlipNormals/pl](Mesh_FlipNormals/pl.md) , [Mesh FromPartShape](Mesh_FromPartShape.md) , [Mesh FromPartShape/pl](Mesh_FromPartShape/pl.md) , [Mesh HarmonizeNormals](Mesh_HarmonizeNormals.md) , [Mesh HarmonizeNormals/pl](Mesh_HarmonizeNormals/pl.md) , [Mesh Import](Mesh_Import.md) , [Mesh Import/pl](Mesh_Import/pl.md) , [Mesh Intersection](Mesh_Intersection.md) , [Mesh Intersection/pl](Mesh_Intersection/pl.md) , [Mesh Merge](Mesh_Merge.md) , [Mesh Merge/pl](Mesh_Merge/pl.md) , [Mesh MeshObject](Mesh_MeshObject.md) , [Mesh MeshObject/pl](Mesh_MeshObject/pl.md) , [Mesh PolyCut](Mesh_PolyCut.md) , [Mesh PolyCut/pl](Mesh_PolyCut/pl.md) , [Mesh PolyTrim](Mesh_PolyTrim.md) , [Mesh PolyTrim/pl](Mesh_PolyTrim/pl.md) , [Mesh RemeshGmsh](Mesh_RemeshGmsh.md) , [Mesh RemeshGmsh/pl](Mesh_RemeshGmsh/pl.md) , [Mesh RemoveCompByHand](Mesh_RemoveCompByHand.md) , [Mesh RemoveCompByHand/pl](Mesh_RemoveCompByHand/pl.md) , [Mesh RemoveComponents](Mesh_RemoveComponents.md) , [Mesh RemoveComponents/pl](Mesh_RemoveComponents/pl.md) , [Mesh Scale](Mesh_Scale.md) , [Mesh Scale/pl](Mesh_Scale/pl.md) , [Mesh Scripting](Mesh_Scripting.md) , [Mesh Scripting/pl](Mesh_Scripting/pl.md) , [Mesh SectionByPlane](Mesh_SectionByPlane.md) , [Mesh SectionByPlane/pl](Mesh_SectionByPlane/pl.md) , [Mesh Segmentation](Mesh_Segmentation.md) , [Mesh Segmentation/pl](Mesh_Segmentation/pl.md) , [Mesh SegmentationBestFit](Mesh_SegmentationBestFit.md) , [Mesh SegmentationBestFit/pl](Mesh_SegmentationBestFit/pl.md) , [Mesh Smoothing](Mesh_Smoothing.md) , [Mesh Smoothing/pl](Mesh_Smoothing/pl.md) , [Mesh SplitComponents](Mesh_SplitComponents.md) , [Mesh SplitComponents/pl](Mesh_SplitComponents/pl.md) , [Mesh to Part](Mesh_to_Part.md) , [Mesh to Part/pl](Mesh_to_Part/pl.md) , [Template:Mesh Tools navi](Template:Mesh_Tools_navi.md) , [Mesh TrimByPlane](Mesh_TrimByPlane.md) , [Mesh TrimByPlane/pl](Mesh_TrimByPlane/pl.md) , [Mesh Union](Mesh_Union.md) , [Mesh Union/pl](Mesh_Union/pl.md) , [Mesh VertexCurvature](Mesh_VertexCurvature.md) , [Mesh VertexCurvature/pl](Mesh_VertexCurvature/pl.md) , [Mesh Workbench](Mesh_Workbench.md) , [Mesh Workbench/pl](Mesh_Workbench/pl.md) , [Mesh/pl](Mesh/pl.md) , [MeshPart CreateFlatFace](MeshPart_CreateFlatFace.md) , [MeshPart CreateFlatFace/pl](MeshPart_CreateFlatFace/pl.md) , [MeshPart CreateFlatMesh](MeshPart_CreateFlatMesh.md) , [MeshPart CreateFlatMesh/pl](MeshPart_CreateFlatMesh/pl.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Mesh diff --git a/wiki/Category:News.md b/wiki/Category:News.md index 4d7c95db1d..aa2c44d6ed 100644 --- a/wiki/Category:News.md +++ b/wiki/Category:News.md @@ -6,3 +6,6 @@ This category contains articles with news and messages about FreeCAD. [History](History.md) , [Release notes 0.11](Release_notes_0.11.md) , [Release notes 0.12](Release_notes_0.12.md) , [Release notes 0.13](Release_notes_0.13.md) , [Release notes 0.14](Release_notes_0.14.md) , [Release notes 0.15](Release_notes_0.15.md) , [Release notes 0.16](Release_notes_0.16.md) , [Release notes 0.17](Release_notes_0.17.md) , [Release notes 0.18](Release_notes_0.18.md) , [Release notes 0.19](Release_notes_0.19.md) , [Release notes 0.20](Release_notes_0.20.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:News diff --git a/wiki/Category:Obsolete_Workbenches.md b/wiki/Category:Obsolete_Workbenches.md index d72a9d6417..1fd499e4ad 100644 --- a/wiki/Category:Obsolete_Workbenches.md +++ b/wiki/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists obsolete workbenches, that is, workbenches that are old and [Complete Workbench](Complete_Workbench.md) , [Drawing Workbench](Drawing_Workbench.md) , [Drawing Workbench/ro](Drawing_Workbench/ro.md) , , [Category:Workbenches](Category:Workbenches.md) [Category:Complete](Category:Complete.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches diff --git a/wiki/Category:Obsolete_page.md b/wiki/Category:Obsolete_page.md index 18ed0738fc..2085a6a1bd 100644 --- a/wiki/Category:Obsolete_page.md +++ b/wiki/Category:Obsolete_page.md @@ -1,6 +1,7 @@ # Category:Obsolete page - - - This category lists pages that are obsolete in regard to the current FreeCAD version. They are candidate for deletion, after discussion on the FreeCAD forum\... +This category lists pages that are obsolete in regard to the current FreeCAD version. They are candidate for deletion, after discussion on the FreeCAD forum\... ### Contents: + +--- +[documentation index](../README.md) > Category:Obsolete page diff --git a/wiki/Category:OpenSCAD.md b/wiki/Category:OpenSCAD.md index 9213439fb3..c9402a40a8 100644 --- a/wiki/Category:OpenSCAD.md +++ b/wiki/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD Workbench](OpenSCAD_Workbench [Artwork OpenSCAD](Artwork_OpenSCAD.md) , [Import OpenSCAD code](Import_OpenSCAD_code.md) , [OpenSCAD AddOpenSCADElement](OpenSCAD_AddOpenSCADElement.md) , [OpenSCAD ColorCodeShape](OpenSCAD_ColorCodeShape.md) , [OpenSCAD CSG](OpenSCAD_CSG.md) , [OpenSCAD CSG tested files](OpenSCAD_CSG_tested_files.md) , [OpenSCAD Edgestofaces](OpenSCAD_Edgestofaces.md) , [OpenSCAD ExpandPlacements](OpenSCAD_ExpandPlacements.md) , [OpenSCAD ExplodeGroup](OpenSCAD_ExplodeGroup.md) , [OpenSCAD Hull](OpenSCAD_Hull.md) , [OpenSCAD IncreaseToleranceFeature](OpenSCAD_IncreaseToleranceFeature.md) , [OpenSCAD MeshBoolean](OpenSCAD_MeshBoolean.md) , [OpenSCAD Minkowski](OpenSCAD_Minkowski.md) , [OpenSCAD MirrorMeshFeature](OpenSCAD_MirrorMeshFeature.md) , [OpenSCAD Preferences](OpenSCAD_Preferences.md) , [OpenSCAD RefineShapeFeature](OpenSCAD_RefineShapeFeature.md) , [OpenSCAD RemoveSubtree](OpenSCAD_RemoveSubtree.md) , [OpenSCAD ReplaceObject](OpenSCAD_ReplaceObject.md) , [OpenSCAD ResizeMeshFeature](OpenSCAD_ResizeMeshFeature.md) , [OpenSCAD ScaleMeshFeature](OpenSCAD_ScaleMeshFeature.md) , [Template:OpenSCAD Tools navi](Template:OpenSCAD_Tools_navi.md) , [OpenSCAD Workbench](OpenSCAD_Workbench.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD diff --git a/wiki/Category:Packaging.md b/wiki/Category:Packaging.md index dc5b445f44..5b3468c730 100644 --- a/wiki/Category:Packaging.md +++ b/wiki/Category:Packaging.md @@ -6,3 +6,6 @@ This category collects pages related to packing FreeCAD for different platforms, [AppImage](AppImage.md) , [Debian development](Debian_development.md) , [Debian Unstable](Debian_Unstable.md) , [Git buildpackage](Git_buildpackage.md) , [Linux packaging](Linux_packaging.md) , [MacOS packaging](MacOS_packaging.md) , [Packaging](Packaging.md) , [Windows packaging](Windows_packaging.md) , [Windows packaging/en](Windows_packaging/en.md) , [Windows packaging/pl](Windows_packaging/pl.md) , [Windows packaging/ru](Windows_packaging/ru.md) [Category:Developer\_Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > Category:Packaging diff --git a/wiki/Category:Pages_to_delete.md b/wiki/Category:Pages_to_delete.md index 4cdcc2c1fb..9256eed0cc 100644 --- a/wiki/Category:Pages_to_delete.md +++ b/wiki/Category:Pages_to_delete.md @@ -8,3 +8,6 @@ See [Template Talk:delete](Template_Talk:delete.md) on how to use the deletion t ![](images/TechDraw_Workbench_Example_ru.png ) [Category:Administration](Category:Administration.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Pages to delete diff --git a/wiki/Category:Pages_using_duplicate_arguments_in_template_calls.md b/wiki/Category:Pages_using_duplicate_arguments_in_template_calls.md index 42fb615528..95d33c7183 100644 --- a/wiki/Category:Pages_using_duplicate_arguments_in_template_calls.md +++ b/wiki/Category:Pages_using_duplicate_arguments_in_template_calls.md @@ -4,3 +4,6 @@ Pages using duplicate arguments in template calls ### Contents: [Assembly3 ConstraintCoincidence](Assembly3_ConstraintCoincidence.md) , [Assembly3 ConstraintCoincidence/en](Assembly3_ConstraintCoincidence/en.md) , [Assembly3 ConstraintCoincidence/fr](Assembly3_ConstraintCoincidence/fr.md) , [BIM Library/fr](BIM_Library/fr.md) , [Draft Arc/de](Draft_Arc/de.md) , [Draft BSpline/tr](Draft_BSpline/tr.md) , [Draft Rectangle/ro](Draft_Rectangle/ro.md) , [Draft Slope/it](Draft_Slope/it.md) , [Draft Snap Midpoint/it](Draft_Snap_Midpoint/it.md) , [Draft Snap Parallel/it](Draft_Snap_Parallel/it.md) , [Draft Upgrade/ro](Draft_Upgrade/ro.md) , [Draft WireToBSpline/es](Draft_WireToBSpline/es.md) , [EM FHPort/fr](EM_FHPort/fr.md) , [FEM ConstraintFlowVelocity/ru](FEM_ConstraintFlowVelocity/ru.md) , [FEM ElementFluid1D/ru](FEM_ElementFluid1D/ru.md) , [Import/Export IFC - compiling IfcOpenShell/de](Import/Export_IFC_-_compiling_IfcOpenShell/de.md) , [Macro BoundingBox Tracing/fr](Macro_BoundingBox_Tracing/fr.md) , [Macro Draw 2D Function/it](Macro_Draw_2D_Function/it.md) , [Macro Geneva Wheel/it](Macro_Geneva_Wheel/it.md) , [Macro PartsLibrary/de](Macro_PartsLibrary/de.md) , [Macro PropertyMemo/it](Macro_PropertyMemo/it.md) , [Macro Rotate View/it](Macro_Rotate_View/it.md) , [Macros recipes/fr](Macros_recipes/fr.md) , [Mouse navigation/zh](Mouse_navigation/zh.md) , [Part Builder/de](Part_Builder/de.md) , [Part SimpleCopy/it](Part_SimpleCopy/it.md) , [PartDesign CompPrimitiveAdditive/de](PartDesign_CompPrimitiveAdditive/de.md) , [Sketcher CloseShape/it](Sketcher_CloseShape/it.md) , [Sketcher CompCreateConic/it](Sketcher_CompCreateConic/it.md) , [Sketcher CreateRectangle/es](Sketcher_CreateRectangle/es.md) , [Sketcher NewSketch/pl](Sketcher_NewSketch/pl.md) , [Sketcher ValidateSketch/sv](Sketcher_ValidateSketch/sv.md) , [Std DlgMacroRecord/ro](Std_DlgMacroRecord/ro.md) , [Std ViewDimetric/it](Std_ViewDimetric/it.md) , [Std ViewFitSelection/de](Std_ViewFitSelection/de.md) , [Std ViewIsometric/de](Std_ViewIsometric/de.md) , [Std ViewIvIssueCamPos/fr](Std_ViewIvIssueCamPos/fr.md) , [Std ViewScreenShot/fr](Std_ViewScreenShot/fr.md) + +--- +[documentation index](../README.md) > Category:Pages using duplicate arguments in template calls diff --git a/wiki/Category:Pages_with_broken_file_links.md b/wiki/Category:Pages_with_broken_file_links.md index 6cd0440ff7..eae4f2fdc9 100644 --- a/wiki/Category:Pages_with_broken_file_links.md +++ b/wiki/Category:Pages_with_broken_file_links.md @@ -6,3 +6,6 @@ This category groups all of the Pages with broken file links [Arch CompRebarStraight/de](Arch_CompRebarStraight/de.md) , [Arch Profile/de](Arch_Profile/de.md) , [Arch Rebar Slab Reinforcement](Arch_Rebar_Slab_Reinforcement.md) , [Arch RemoveShape/de](Arch_RemoveShape/de.md) , [Arch Workbench/es](Arch_Workbench/es.md) , [Arch Workbench/it](Arch_Workbench/it.md) , [Basic Part Design Tutorial/pl](Basic_Part_Design_Tutorial/pl.md) , [Basic TechDraw Tutorial/it](Basic_TechDraw_Tutorial/it.md) , [Basic TechDraw Tutorial/pl](Basic_TechDraw_Tutorial/pl.md) , [Basic TechDraw Tutorial/ru](Basic_TechDraw_Tutorial/ru.md) , [BIM Classification/de](BIM_Classification/de.md) , [BIM Project/de](BIM_Project/de.md) , [BIM Setup/de](BIM_Setup/de.md) , [BIM Views/de](BIM_Views/de.md) , [Cfd Workbench](Cfd_Workbench.md) , [Cfd Workbench/en](Cfd_Workbench/en.md) , [Cfd Workbench/fr](Cfd_Workbench/fr.md) , [Cfd Workbench/hr](Cfd_Workbench/hr.md) , [Cfd Workbench/it](Cfd_Workbench/it.md) , [Cfd Workbench/pl](Cfd_Workbench/pl.md) , [Cfd Workbench/pt-br](Cfd_Workbench/pt-br.md) , [Cfd Workbench/ru](Cfd_Workbench/ru.md) , [CurvedShapes CurvedArray](CurvedShapes_CurvedArray.md) , [CurvedShapes CurvedArray/en](CurvedShapes_CurvedArray/en.md) , [CurvedShapes CurvedArray/fr](CurvedShapes_CurvedArray/fr.md) , [CurvedShapes CurvedArray/it](CurvedShapes_CurvedArray/it.md) , [Design456 Workbench](Design456_Workbench.md) , [Draft AddToGroup/de](Draft_AddToGroup/de.md) , [Draft BezCurve/es](Draft_BezCurve/es.md) , [Draft SelectPlane/de](Draft_SelectPlane/de.md) , [Draft Shape2DView/it](Draft_Shape2DView/it.md) , [Draft Snap Midpoint/it](Draft_Snap_Midpoint/it.md) , [Draft WorkingPlaneProxy/es](Draft_WorkingPlaneProxy/es.md) , [Drawing/it](Drawing/it.md) , [Fasteners ChamferHole](Fasteners_ChamferHole.md) , [Fasteners ChangeParameters](Fasteners_ChangeParameters.md) , [Fasteners Flip](Fasteners_Flip.md) , [Fasteners MatchTypeInner](Fasteners_MatchTypeInner.md) , [Fasteners MatchTypeOuter](Fasteners_MatchTypeOuter.md) , [Fasteners ScrewCalculator](Fasteners_ScrewCalculator.md) , [FEM CalculiX Cantilever 3D/it](FEM_CalculiX_Cantilever_3D/it.md) , [FEM CalculiX Cantilever 3D/ro](FEM_CalculiX_Cantilever_3D/ro.md) , [FEM CalculiX Cantilever 3D/ru](FEM_CalculiX_Cantilever_3D/ru.md) , [FreeCAD-Ship s60 tutorial/es](FreeCAD-Ship_s60_tutorial/es.md) , [Macro EdgesToArc/de](Macro_EdgesToArc/de.md) , [Macro FCInfo Alternate Linux/it](Macro_FCInfo_Alternate_Linux/it.md) , [Macro FCInfo/de](Macro_FCInfo/de.md) , [Macro FCInfo/ru](Macro_FCInfo/ru.md) , [Macros recipes/it](Macros_recipes/it.md) , [Macros recipes/ru](Macros_recipes/ru.md) , [Manual:All workbenches at a glance/de](Manual:All_workbenches_at_a_glance/de.md) , [Manual:All workbenches at a glance/ru](Manual:All_workbenches_at_a_glance/ru.md) , [Manual:BIM modeling/ru](Manual:BIM_modeling/ru.md) , [Manual:Generating 2D drawings/de](Manual:Generating_2D_drawings/de.md) , [Manual:Generating 2D drawings/ru](Manual:Generating_2D_drawings/ru.md) , [Manual:Traditional 2D drafting/ru](Manual:Traditional_2D_drafting/ru.md) , [ManualArch/it](ManualArch/it.md) , [ManualDraft/it](ManualDraft/it.md) , [Mesh FillInteractiveHole/de](Mesh_FillInteractiveHole/de.md) , [Mesh RemoveComponents/de](Mesh_RemoveComponents/de.md) , [Part Measure Menu/ru](Part_Measure_Menu/ru.md) , [Path Post/de](Path_Post/de.md) , [Path Workbench/es](Path_Workbench/es.md) , [User:PiffPoof](User:PiffPoof.md) , [Reinforcement Workbench](Reinforcement_Workbench.md) , [Sandbox:Keyboard Shortcuts](Sandbox:Keyboard_Shortcuts.md) , [Ship Workbench/ru](Ship_Workbench/ru.md) , [Sketcher CompCreateConic/it](Sketcher_CompCreateConic/it.md) , [Sketcher CreateBSpline/de](Sketcher_CreateBSpline/de.md) , [Sketcher scripting/de](Sketcher_scripting/de.md) , [Sketcher Tutorial](Sketcher_Tutorial.md) , [Sketcher Tutorial/de](Sketcher_Tutorial/de.md) , [Sketcher Tutorial/en](Sketcher_Tutorial/en.md) , [Sketcher Tutorial/es](Sketcher_Tutorial/es.md) , [Sketcher Tutorial/fr](Sketcher_Tutorial/fr.md) , [Sketcher Tutorial/hr](Sketcher_Tutorial/hr.md) , [Sketcher Tutorial/it](Sketcher_Tutorial/it.md) , [Sketcher Tutorial/pl](Sketcher_Tutorial/pl.md) , [Sketcher Tutorial/ru](Sketcher_Tutorial/ru.md) , [Sphinx](Sphinx.md) , [Sphinx/en](Sphinx/en.md) , [Sphinx/fr](Sphinx/fr.md) , [Sphinx/it](Sphinx/it.md) , [Std DlgPreferences](Std_DlgPreferences.md) , [Std Edit](Std_Edit.md) , [Std Edit Menu](Std_Edit_Menu.md) , [Std File Menu/ro](Std_File_Menu/ro.md) , [TechDraw Balloon/de](TechDraw_Balloon/de.md) , [TechDraw Balloon/it](TechDraw_Balloon/it.md) , [TechDraw Hatch/it](TechDraw_Hatch/it.md) , [TechDraw HorizontalExtentDimension/it](TechDraw_HorizontalExtentDimension/it.md) , [TechDraw LandmarkDimension/it](TechDraw_LandmarkDimension/it.md) , [TechDraw LengthDimension/es](TechDraw_LengthDimension/es.md) , [TechDraw PageDefault/de](TechDraw_PageDefault/de.md) , [TechDraw VerticalExtentDimension/it](TechDraw_VerticalExtentDimension/it.md) , [TechDraw Workbench/de](TechDraw_Workbench/de.md) , [TechDraw Workbench/ro](TechDraw_Workbench/ro.md) , [Timber Workbench](Timber_Workbench.md) , [Timber Workbench/en](Timber_Workbench/en.md) , [Timber Workbench/fr](Timber_Workbench/fr.md) , [Timber Workbench/hr](Timber_Workbench/hr.md) , [Timber Workbench/it](Timber_Workbench/it.md) , [Timber Workbench/pl](Timber_Workbench/pl.md) , [Tutorials/de](Tutorials/de.md) , [Tutorials/es](Tutorials/es.md) , [Tutorials/hr](Tutorials/hr.md) , [Tutorials/ro](Tutorials/ro.md) , [Tutorials/zh-cn](Tutorials/zh-cn.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Pages with broken file links diff --git a/wiki/Category:Part.md b/wiki/Category:Part.md index 8905b7ecce..65e63b6a6e 100644 --- a/wiki/Category:Part.md +++ b/wiki/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench](Part_Workbench.md). [Aeroplane](Aeroplane.md) , [Aeroplane/en](Aeroplane/en.md) , [Artwork Part](Artwork_Part.md) , [Artwork Part/en](Artwork_Part/en.md) , [Basic modeling tutorial](Basic_modeling_tutorial.md) , [Basic modeling tutorial/en](Basic_modeling_tutorial/en.md) , [Constructive solid geometry](Constructive_solid_geometry.md) , [Constructive solid geometry/en](Constructive_solid_geometry/en.md) , [Draft ShapeString tutorial](Draft_ShapeString_tutorial.md) , [Draft ShapeString tutorial/en](Draft_ShapeString_tutorial/en.md) , [Feature](Feature.md) , [Feature/en](Feature/en.md) , [Part and PartDesign](Part_and_PartDesign.md) , [Part and PartDesign/en](Part_and_PartDesign/en.md) , [Part Boolean](Part_Boolean.md) , [Part Boolean/en](Part_Boolean/en.md) , [Part BooleanFragments](Part_BooleanFragments.md) , [Part BooleanFragments/en](Part_BooleanFragments/en.md) , [Part Box](Part_Box.md) , [Part Box/en](Part_Box/en.md) , [Part BoxSelection](Part_BoxSelection.md) , [Part BoxSelection/en](Part_BoxSelection/en.md) , [Part Builder](Part_Builder.md) , [Part Builder/en](Part_Builder/en.md) , [Part Chamfer](Part_Chamfer.md) , [Part Chamfer/en](Part_Chamfer/en.md) , [Part CheckGeometry](Part_CheckGeometry.md) , [Part CheckGeometry/en](Part_CheckGeometry/en.md) , [Part Circle](Part_Circle.md) , [Part Circle/en](Part_Circle/en.md) , [Part Common](Part_Common.md) , [Part Common/en](Part_Common/en.md) , [Part CompCompoundTools](Part_CompCompoundTools.md) , [Part CompCompoundTools/en](Part_CompCompoundTools/en.md) , [Part CompJoinFeatures](Part_CompJoinFeatures.md) , [Part CompJoinFeatures/en](Part_CompJoinFeatures/en.md) , [Part CompOffsetTools](Part_CompOffsetTools.md) , [Part CompOffsetTools/en](Part_CompOffsetTools/en.md) , [Part Compound](Part_Compound.md) , [Part Compound/en](Part_Compound/en.md) , [Part CompoundFilter](Part_CompoundFilter.md) , [Part CompoundFilter/en](Part_CompoundFilter/en.md) , [Part CompSplittingTools](Part_CompSplittingTools.md) , [Part CompSplittingTools/en](Part_CompSplittingTools/en.md) , [Part Cone](Part_Cone.md) , [Part Cone/en](Part_Cone/en.md) , [Part CrossSections](Part_CrossSections.md) , [Part CrossSections/en](Part_CrossSections/en.md) , [Part Cut](Part_Cut.md) , [Part Cut/en](Part_Cut/en.md) , [Part Cylinder](Part_Cylinder.md) , [Part Cylinder/en](Part_Cylinder/en.md) , [Part Defeaturing](Part_Defeaturing.md) , [Part Defeaturing/en](Part_Defeaturing/en.md) , [Part EditAttachment](Part_EditAttachment.md) , [Part EditAttachment/en](Part_EditAttachment/en.md) , [Part ElementCopy](Part_ElementCopy.md) , [Part ElementCopy/en](Part_ElementCopy/en.md) , [Part Ellipse](Part_Ellipse.md) , [Part Ellipse/en](Part_Ellipse/en.md) , [Part Ellipsoid](Part_Ellipsoid.md) , [Part Ellipsoid/en](Part_Ellipsoid/en.md) , [Part ExplodeCompound](Part_ExplodeCompound.md) , [Part ExplodeCompound/en](Part_ExplodeCompound/en.md) , [Part Export](Part_Export.md) , [Part Export/en](Part_Export/en.md) , [Part Extrude](Part_Extrude.md) , [Part Extrude/en](Part_Extrude/en.md) , [Part Feature](Part_Feature.md) , [Part Feature/en](Part_Feature/en.md) , [Part Fillet](Part_Fillet.md) , [Part Fillet/en](Part_Fillet/en.md) , [Part Fuse](Part_Fuse.md) , [Part Fuse/en](Part_Fuse/en.md) , [Part Helix](Part_Helix.md) , [Part Helix/en](Part_Helix/en.md) , [Part Import](Part_Import.md) , [Part Import/en](Part_Import/en.md) , [Part JoinConnect](Part_JoinConnect.md) , [Part JoinConnect/en](Part_JoinConnect/en.md) , [Part JoinCutout](Part_JoinCutout.md) , [Part JoinCutout/en](Part_JoinCutout/en.md) , [Part JoinEmbed](Part_JoinEmbed.md) , [Part JoinEmbed/en](Part_JoinEmbed/en.md) , [Part Line](Part_Line.md) , [Part Line/en](Part_Line/en.md) , [Part Loft](Part_Loft.md) , [Part Loft Technical Details](Part_Loft_Technical_Details.md) , [Part Loft Technical Details/en](Part_Loft_Technical_Details/en.md) , [Part Loft/en](Part_Loft/en.md) , [Part MakeFace](Part_MakeFace.md) , [Part MakeFace/en](Part_MakeFace/en.md) , [Part MakeSolid](Part_MakeSolid.md) , [Part MakeSolid/en](Part_MakeSolid/en.md) , [Part Measure Angular](Part_Measure_Angular.md) , [Part Measure Angular/en](Part_Measure_Angular/en.md) , [Part Measure Clear All](Part_Measure_Clear_All.md) , [Part Measure Clear All/en](Part_Measure_Clear_All/en.md) , [Part Measure Linear](Part_Measure_Linear.md) , [Part Measure Linear/en](Part_Measure_Linear/en.md) , [Part Measure Menu](Part_Measure_Menu.md) , [Part Measure Menu/en](Part_Measure_Menu/en.md) , [Part Measure Refresh](Part_Measure_Refresh.md) , [Part Measure Refresh/en](Part_Measure_Refresh/en.md) , [Part Measure Toggle 3d](Part_Measure_Toggle_3d.md) , [Part Measure Toggle 3d/en](Part_Measure_Toggle_3d/en.md) , [Part Measure Toggle All](Part_Measure_Toggle_All.md) , [Part Measure Toggle All/en](Part_Measure_Toggle_All/en.md) , [Part Measure Toggle Delta](Part_Measure_Toggle_Delta.md) , [Part Measure Toggle Delta/en](Part_Measure_Toggle_Delta/en.md) , [Part Mirror](Part_Mirror.md) , [Part Mirror/en](Part_Mirror/en.md) , [Part Module](Part_Module.md) , [Part Module/en](Part_Module/en.md) , [Part Offset](Part_Offset.md) , [Part Offset/en](Part_Offset/en.md) , [Part Offset2D](Part_Offset2D.md) , [Part Offset2D/en](Part_Offset2D/en.md) , [Part Part2DObject](Part_Part2DObject.md) , [Part Part2DObject/en](Part_Part2DObject/en.md) , [Part Plane](Part_Plane.md) , [Part Plane/en](Part_Plane/en.md) , [Part Point](Part_Point.md) , [Part Point/en](Part_Point/en.md) , [Part PointsFromMesh](Part_PointsFromMesh.md) , [Part PointsFromMesh/en](Part_PointsFromMesh/en.md) , [Part Primitives](Part_Primitives.md) , [Part Primitives/en](Part_Primitives/en.md) , [Part Prism](Part_Prism.md) , [Part Prism/en](Part_Prism/en.md) , [Part ProjectionOnSurface](Part_ProjectionOnSurface.md) , [Part ProjectionOnSurface/en](Part_ProjectionOnSurface/en.md) , [Part RefineShape](Part_RefineShape.md) , [Part RefineShape/en](Part_RefineShape/en.md) , [Part RegularPolygon](Part_RegularPolygon.md) , [Part RegularPolygon/en](Part_RegularPolygon/en.md) , [Part ReverseShapes](Part_ReverseShapes.md) , [Part ReverseShapes/en](Part_ReverseShapes/en.md) , [Part Revolve](Part_Revolve.md) , [Part Revolve/en](Part_Revolve/en.md) , [Part RuledSurface](Part_RuledSurface.md) , [Part RuledSurface/en](Part_RuledSurface/en.md) , [Part scripting](Part_scripting.md) , [Part scripting/en](Part_scripting/en.md) , [Part Section](Part_Section.md) , [Part Section/en](Part_Section/en.md) , [Part ShapeFromMesh](Part_ShapeFromMesh.md) , [Part ShapeFromMesh/en](Part_ShapeFromMesh/en.md) , [Part SimpleCopy](Part_SimpleCopy.md) , [Part SimpleCopy/en](Part_SimpleCopy/en.md) , [Part Slice](Part_Slice.md) , [Part Slice/en](Part_Slice/en.md) , [Part SliceApart](Part_SliceApart.md) , [Part SliceApart/en](Part_SliceApart/en.md) , [Part Sphere](Part_Sphere.md) , [Part Sphere/en](Part_Sphere/en.md) , [Part Spiral](Part_Spiral.md) , [Part Spiral/en](Part_Spiral/en.md) , [Part Sweep](Part_Sweep.md) , [Part Sweep/en](Part_Sweep/en.md) , [Part Thickness](Part_Thickness.md) , [Part Thickness/en](Part_Thickness/en.md) , [Template:Part Tools navi](Template:Part_Tools_navi.md) , [Template:Part Tools navi/en](Template:Part_Tools_navi/en.md) , [Part TopoShape](Part_TopoShape.md) , [Part TopoShape/en](Part_TopoShape/en.md) , [Part Torus](Part_Torus.md) , [Part Torus/en](Part_Torus/en.md) , [Part TransformedCopy](Part_TransformedCopy.md) , [Part TransformedCopy/en](Part_TransformedCopy/en.md) , [Part Tube](Part_Tube.md) , [Part Tube/en](Part_Tube/en.md) , [Part Wedge](Part_Wedge.md) , [Part Wedge/en](Part_Wedge/en.md) , [Part XOR](Part_XOR.md) , [Part XOR/en](Part_XOR/en.md) , [Shape](Shape.md) , [Shape/en](Shape/en.md) , [Thread for Screw Tutorial](Thread_for_Screw_Tutorial.md) , [Thread for Screw Tutorial/en](Thread_for_Screw_Tutorial/en.md) , [Topological naming problem](Topological_naming_problem.md) , [Topological naming problem/en](Topological_naming_problem/en.md) , [Whiffle Ball tutorial](Whiffle_Ball_tutorial.md) , [Whiffle Ball tutorial/en](Whiffle_Ball_tutorial/en.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Part diff --git a/wiki/Category:PartDesign.md b/wiki/Category:PartDesign.md index 5448d790c2..baa74f6d49 100644 --- a/wiki/Category:PartDesign.md +++ b/wiki/Category:PartDesign.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench](PartDesign_Workb [Artwork PartDesign](Artwork_PartDesign.md) , [Basic Attachment Tutorial](Basic_Attachment_Tutorial.md) , [Basic Part Design Tutorial](Basic_Part_Design_Tutorial.md) , [Body](Body.md) , [Creating a simple part with PartDesign](Creating_a_simple_part_with_PartDesign.md) , [Datum](Datum.md) , [Draft ShapeString tutorial](Draft_ShapeString_tutorial.md) , [Feature](Feature.md) , [Feature editing](Feature_editing.md) , [Part and PartDesign](Part_and_PartDesign.md) , [PartDesign AdditiveBox](PartDesign_AdditiveBox.md) , [PartDesign AdditiveCone](PartDesign_AdditiveCone.md) , [PartDesign AdditiveCylinder](PartDesign_AdditiveCylinder.md) , [PartDesign AdditiveEllipsoid](PartDesign_AdditiveEllipsoid.md) , [PartDesign AdditiveHelix](PartDesign_AdditiveHelix.md) , [PartDesign AdditiveLoft](PartDesign_AdditiveLoft.md) , [PartDesign AdditivePipe](PartDesign_AdditivePipe.md) , [PartDesign AdditivePrism](PartDesign_AdditivePrism.md) , [PartDesign AdditiveSphere](PartDesign_AdditiveSphere.md) , [PartDesign AdditiveTorus](PartDesign_AdditiveTorus.md) , [PartDesign AdditiveWedge](PartDesign_AdditiveWedge.md) , [PartDesign Body](PartDesign_Body.md) , [PartDesign Boolean](PartDesign_Boolean.md) , [PartDesign Chamfer](PartDesign_Chamfer.md) , [PartDesign Clone](PartDesign_Clone.md) , [PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive.md) , [PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) , [PartDesign CoordinateSystem](PartDesign_CoordinateSystem.md) , [PartDesign Draft](PartDesign_Draft.md) , [PartDesign Feature](PartDesign_Feature.md) , [PartDesign Fillet](PartDesign_Fillet.md) , [PartDesign Groove](PartDesign_Groove.md) , [PartDesign Hole](PartDesign_Hole.md) , [PartDesign InvoluteGear](PartDesign_InvoluteGear.md) , [PartDesign Line](PartDesign_Line.md) , [PartDesign LinearPattern](PartDesign_LinearPattern.md) , [PartDesign Migrate](PartDesign_Migrate.md) , [PartDesign Mirrored](PartDesign_Mirrored.md) , [PartDesign MoveFeature](PartDesign_MoveFeature.md) , [PartDesign MoveFeatureInTree](PartDesign_MoveFeatureInTree.md) , [PartDesign MoveTip](PartDesign_MoveTip.md) , [PartDesign MultiTransform](PartDesign_MultiTransform.md) , [PartDesign NewSketch](PartDesign_NewSketch.md) , [PartDesign Pad](PartDesign_Pad.md) , [PartDesign Plane](PartDesign_Plane.md) , [PartDesign Pocket](PartDesign_Pocket.md) , [PartDesign Point](PartDesign_Point.md) , [PartDesign PolarPattern](PartDesign_PolarPattern.md) , [PartDesign Preferences](PartDesign_Preferences.md) , [PartDesign Revolution](PartDesign_Revolution.md) , [PartDesign ShapeBinder](PartDesign_ShapeBinder.md) , [PartDesign Sprocket](PartDesign_Sprocket.md) , [PartDesign SubShapeBinder](PartDesign_SubShapeBinder.md) , [PartDesign SubtractiveBox](PartDesign_SubtractiveBox.md) , [PartDesign SubtractiveCone](PartDesign_SubtractiveCone.md) , [PartDesign SubtractiveCylinder](PartDesign_SubtractiveCylinder.md) , [PartDesign SubtractiveEllipsoid](PartDesign_SubtractiveEllipsoid.md) , [PartDesign SubtractiveHelix](PartDesign_SubtractiveHelix.md) , [PartDesign SubtractiveLoft](PartDesign_SubtractiveLoft.md) , [PartDesign SubtractivePipe](PartDesign_SubtractivePipe.md) , [PartDesign SubtractivePrism](PartDesign_SubtractivePrism.md) , [PartDesign SubtractiveSphere](PartDesign_SubtractiveSphere.md) , [PartDesign SubtractiveTorus](PartDesign_SubtractiveTorus.md) , [PartDesign SubtractiveWedge](PartDesign_SubtractiveWedge.md) , [PartDesign Thickness](PartDesign_Thickness.md) , [Template:PartDesign Tools navi](Template:PartDesign_Tools_navi.md) , [PartDesign WizardShaft](PartDesign_WizardShaft.md) , [PartDesign Workbench](PartDesign_Workbench.md) , [Thread for Screw Tutorial](Thread_for_Screw_Tutorial.md) , [Toothbrush Head Stand](Toothbrush_Head_Stand.md) , [Topological naming problem](Topological_naming_problem.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:PartDesign diff --git a/wiki/Category:Path.md b/wiki/Category:Path.md index b01123ed7c..50f87c2148 100644 --- a/wiki/Category:Path.md +++ b/wiki/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [Path Workbench](Path_Workbench.md). [Artwork Path](Artwork_Path.md) , [Template:Depths/Heights](Template:Depths/Heights.md) , [GSoC Path/Robot Integration](GSoC_Path/Robot_Integration.md) , [Manual:Preparing models for 3D printing](Manual:Preparing_models_for_3D_printing.md) , [Path Adaptive](Path_Adaptive.md) , [Path Area](Path_Area.md) , [Path Area Workplane](Path_Area_Workplane.md) , [Path Array](Path_Array.md) , [Path Comment](Path_Comment.md) , [Path Copy](Path_Copy.md) , [Path Custom](Path_Custom.md) , [Path Development Roadmap](Path_Development_Roadmap.md) , [Path DressupDogbone](Path_DressupDogbone.md) , [Path DressupDragKnife](Path_DressupDragKnife.md) , [Path DressupLeadInOut](Path_DressupLeadInOut.md) , [Path DressupPathBoundary](Path_DressupPathBoundary.md) , [Path DressupRampEntry](Path_DressupRampEntry.md) , [Path DressupTag](Path_DressupTag.md) , [Path Drilling](Path_Drilling.md) , [Path Engrave](Path_Engrave.md) , [Path experimental](Path_experimental.md) , [Path ExportTemplate](Path_ExportTemplate.md) , [Path FAQ](Path_FAQ.md) , [Path Fixture](Path_Fixture.md) , [Path fourth axis](Path_fourth_axis.md) , [Path Helix](Path_Helix.md) , [Path Inspect](Path_Inspect.md) , [Path Job](Path_Job.md) , [Path MillFace](Path_MillFace.md) , [Path OpActiveToggle](Path_OpActiveToggle.md) , [Path Pocket 3D](Path_Pocket_3D.md) , [Path Pocket Shape](Path_Pocket_Shape.md) , [Path Post](Path_Post.md) , [Path Postprocessor Customization](Path_Postprocessor_Customization.md) , [Path Preferences](Path_Preferences.md) , [Path Profile](Path_Profile.md) , [Path Sanity](Path_Sanity.md) , [Path scripting](Path_scripting.md) , [Path SelectLoop](Path_SelectLoop.md) , [Path SetupSheet](Path_SetupSheet.md) , [Path Shape](Path_Shape.md) , [Path SimpleCopy](Path_SimpleCopy.md) , [Path Simulator](Path_Simulator.md) , [Path Slot](Path_Slot.md) , [Path Stop](Path_Stop.md) , [Path Surface](Path_Surface.md) , [Path ToolBit](Path_ToolBit.md) , [Path ToolBit Library](Path_ToolBit_Library.md) , [Path ToolBitDock](Path_ToolBitDock.md) , [Path ToolBitLibraryOpen](Path_ToolBitLibraryOpen.md) , [Path ToolController](Path_ToolController.md) , [Path ToolLibraryEdit](Path_ToolLibraryEdit.md) , [Path Tools](Path_Tools.md) , [Template:Path Tools navi](Template:Path_Tools_navi.md) , [Path ToolShape](Path_ToolShape.md) , [Path Vcarve](Path_Vcarve.md) , [Path Walkthrough for the Impatient](Path_Walkthrough_for_the_Impatient.md) , [Path Waterline](Path_Waterline.md) , [Path Workbench](Path_Workbench.md) [Category:User\_Documentation](Category:User_Documentation.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Category:Path diff --git a/wiki/Category:Plot.md b/wiki/Category:Plot.md index 7a27c5f7e1..07c7c830e9 100644 --- a/wiki/Category:Plot.md +++ b/wiki/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench](Plot_Workbench.md). [Artwork Plot](Artwork_Plot.md) , [Plot Axes](Plot_Axes.md) , [Plot Axes/pl](Plot_Axes/pl.md) , [Plot Basic tutorial](Plot_Basic_tutorial.md) , [Plot Basic tutorial/pl](Plot_Basic_tutorial/pl.md) , [Plot Grid](Plot_Grid.md) , [Plot Grid/pl](Plot_Grid/pl.md) , [Plot Labels](Plot_Labels.md) , [Plot Labels/pl](Plot_Labels/pl.md) , [Plot Legend](Plot_Legend.md) , [Plot Legend/pl](Plot_Legend/pl.md) , [Plot Module](Plot_Module.md) , [Plot Module/pl](Plot_Module/pl.md) , [Plot MultiAxes tutorial](Plot_MultiAxes_tutorial.md) , [Plot MultiAxes tutorial/pl](Plot_MultiAxes_tutorial/pl.md) , [Plot Positions](Plot_Positions.md) , [Plot Positions/pl](Plot_Positions/pl.md) , [Plot Save](Plot_Save.md) , [Plot Save/pl](Plot_Save/pl.md) , [Plot Series](Plot_Series.md) , [Plot Series/pl](Plot_Series/pl.md) , [Template:Plot Tools navi](Template:Plot_Tools_navi.md) , [Template:Plot Tools navi/pl](Template:Plot_Tools_navi/pl.md) [Category:User\_Documentation](Category:User_Documentation.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Category:Plot diff --git a/wiki/Category:Points.md b/wiki/Category:Points.md index f3762f2220..97b6936485 100644 --- a/wiki/Category:Points.md +++ b/wiki/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench](Points_Workbench.md) [Artwork Points](Artwork_Points.md) , [Points Convert](Points_Convert.md) , [Points Export](Points_Export.md) , [Points Import](Points_Import.md) , [Points Merge](Points_Merge.md) , [Points PolyCut](Points_PolyCut.md) , [Points Structure](Points_Structure.md) , [Template:Points Tools navi](Template:Points_Tools_navi.md) , [Points Workbench](Points_Workbench.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Points diff --git a/wiki/Category:Poweruser_Documentation.md b/wiki/Category:Poweruser_Documentation.md index 76776e4b2a..7579132f91 100644 --- a/wiki/Category:Poweruser_Documentation.md +++ b/wiki/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Arch API](Arch_API.md) , [Base API](Base_API.md) , [Builtin modules](Builtin_modules.md) , [Code snippets](Code_snippets.md) , [Coin3d snippets](Coin3d_snippets.md) , [Command](Command.md) , [Console API](Console_API.md) , [Create a FeaturePython object part I](Create_a_FeaturePython_object_part_I.md) , [Create a FeaturePython object part II](Create_a_FeaturePython_object_part_II.md) , [Custom icon in tree view](Custom_icon_in_tree_view.md) , [Debugging](Debugging.md) , [Dialog creation](Dialog_creation.md) , [Dialog creation image and animated GIF](Dialog_creation_image_and_animated_GIF.md) , [Dialog creation reading and writing files](Dialog_creation_reading_and_writing_files.md) , [Dialog creation setting colors](Dialog_creation_setting_colors.md) , [Dialog creation with various widgets](Dialog_creation_with_various_widgets.md) , [Draft API](Draft_API.md) , [Drawing API example](Drawing_API_example.md) , [Embedding FreeCAD](Embedding_FreeCAD.md) , [Embedding FreeCADGui](Embedding_FreeCADGui.md) , [Expressions](Expressions.md) , [FeaturePython methods](FeaturePython_methods.md) , [FEM CalculiX](FEM_CalculiX.md) , [FEM Element Types](FEM_Element_Types.md) , [FEM Mesh CalculiX](FEM_Mesh_CalculiX.md) , [FreeCAD API](FreeCAD_API.md) , [FreeCAD Scripting Basics](FreeCAD_Scripting_Basics.md) , [FreeCAD vector math library](FreeCAD_vector_math_library.md) , [FreeCADGui API](FreeCADGui_API.md) , [Gui Command](Gui_Command.md) , [Headless FreeCAD](Headless_FreeCAD.md) , [How to install additional workbenches](How_to_install_additional_workbenches.md) , [How to install macros](How_to_install_macros.md) , [Installing more workbenches](Installing_more_workbenches.md) , [Interface creation](Interface_creation.md) , [Introduction to Python](Introduction_to_Python.md) , [Line drawing function](Line_drawing_function.md) , [LinkSub](LinkSub.md) , [LinkSubList](LinkSubList.md) , [Macro at Startup](Macro_at_Startup.md) , [Macros](Macros.md) , [Manual:A gentle introduction](Manual:A_gentle_introduction.md) , [Manual:Creating and manipulating geometry](Manual:Creating_and_manipulating_geometry.md) , [Manual:Creating interface tools](Manual:Creating_interface_tools.md) , [Manual:Creating parametric objects](Manual:Creating_parametric_objects.md) , [Manual:Import and export to other filetypes](Manual:Import_and_export_to_other_filetypes.md) , [Manual:Installing](Manual:Installing.md) , [Manual:Parametric objects](Manual:Parametric_objects.md) , [Matrix API](Matrix_API.md) , [Mesh API](Mesh_API.md) , [Mesh Scripting](Mesh_Scripting.md) , [Mesh to Part](Mesh_to_Part.md) , [Multithreading](Multithreading.md) , [Object API](Object_API.md) , [OpenCASCADE](OpenCASCADE.md) , [Part API](Part_API.md) , [Part scripting](Part_scripting.md) , [Path experimental](Path_experimental.md) , [Path scripting](Path_scripting.md) , [Pivy](Pivy.md) , [Placement API](Placement_API.md) , [Power users hub](Power_users_hub.md) , [Profiling](Profiling.md) , [Property](Property.md) , [PySide](PySide.md) , [PySide Advanced Examples](PySide_Advanced_Examples.md) , [PySide Beginner Examples](PySide_Beginner_Examples.md) , [PySide Intermediate Examples](PySide_Intermediate_Examples.md) , [PySide usage snippets](PySide_usage_snippets.md) , [Python](Python.md) , [Python Development Environment](Python_Development_Environment.md) , [Python scripting tutorial](Python_scripting_tutorial.md) , [PythonOCC](PythonOCC.md) , [Qt Example](Qt_Example.md) , [Quantity](Quantity.md) , [Raytracing API example](Raytracing_API_example.md) , [Reinforcement API](Reinforcement_API.md) , [Scenegraph](Scenegraph.md) , [Scientific literature](Scientific_literature.md) , [Scripted objects](Scripted_objects.md) , [Scripted objects migration](Scripted_objects_migration.md) , [Scripted objects saving attributes](Scripted_objects_saving_attributes.md) , [Scripted objects with attachment](Scripted_objects_with_attachment.md) , [Scripted Parts: Ball Bearing - Part 1](Scripted_Parts:_Ball_Bearing_-_Part_1.md) , [Scripted Parts: Ball Bearing - Part 2](Scripted_Parts:_Ball_Bearing_-_Part_2.md) , [Scripting and macros](Scripting_and_macros.md) , [Scripts](Scripts.md) , [Selection API](Selection_API.md) , [Svg Namespace](Svg_Namespace.md) , [TechDraw API](TechDraw_API.md) , [TechDrawGui API](TechDrawGui_API.md) , [Topological data scripting](Topological_data_scripting.md) , [TopoShape API](TopoShape_API.md) , [Units](Units.md) , [Vector API](Vector_API.md) , [ViewObject API](ViewObject_API.md) , [Viewprovider](Viewprovider.md) , [Workbench creation](Workbench_creation.md) , [Wrapping a Cplusplus class in Python](Wrapping_a_Cplusplus_class_in_Python.md) , [Category:Documentation](Category:Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation diff --git a/wiki/Category:Preferences.md b/wiki/Category:Preferences.md index 52c5a2c6ce..59c796da30 100644 --- a/wiki/Category:Preferences.md +++ b/wiki/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Arch Preferences](Arch_Preferences.md) , [Customize Toolbars](Customize_Toolbars.md) , [Draft Preferences](Draft_Preferences.md) , [FEM Preferences](FEM_Preferences.md) , [Import Export Preferences](Import_Export_Preferences.md) , [OpenSCAD Preferences](OpenSCAD_Preferences.md) , [PartDesign Preferences](PartDesign_Preferences.md) , [Path Preferences](Path_Preferences.md) , [Preferences Editor](Preferences_Editor.md) , [Raytracing Preferences](Raytracing_Preferences.md) , [Sketcher Preferences](Sketcher_Preferences.md) , [Start Preferences](Start_Preferences.md) , [TechDraw Preferences](TechDraw_Preferences.md) + +--- +[documentation index](../README.md) > Category:Preferences diff --git a/wiki/Category:Python_Code.md b/wiki/Category:Python_Code.md index 7ed7906898..fb7ff756c7 100644 --- a/wiki/Category:Python_Code.md +++ b/wiki/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Code snippets](Code_snippets.md) , [Command](Command.md) , [Create a FeaturePython object part I](Create_a_FeaturePython_object_part_I.md) , [Create a FeaturePython object part II](Create_a_FeaturePython_object_part_II.md) , [Custom icon in tree view](Custom_icon_in_tree_view.md) , [Debugging](Debugging.md) , [Dialog creation](Dialog_creation.md) , [Dialog creation image and animated GIF](Dialog_creation_image_and_animated_GIF.md) , [Dialog creation reading and writing files](Dialog_creation_reading_and_writing_files.md) , [Dialog creation setting colors](Dialog_creation_setting_colors.md) , [Dialog creation with various widgets](Dialog_creation_with_various_widgets.md) , [Drawing API example](Drawing_API_example.md) , [Embedding FreeCAD](Embedding_FreeCAD.md) , [Embedding FreeCADGui](Embedding_FreeCADGui.md) , [Extra python modules](Extra_python_modules.md) , [FeaturePython methods](FeaturePython_methods.md) , [FEM Tutorial Python](FEM_Tutorial_Python.md) , [FreeCAD Scripting Basics](FreeCAD_Scripting_Basics.md) , [FreeCAD vector math library](FreeCAD_vector_math_library.md) , [How to install macros](How_to_install_macros.md) , [Interface creation](Interface_creation.md) , [Introduction to Python](Introduction_to_Python.md) , [IPython notebook integration](IPython_notebook_integration.md) , [Line drawing function](Line_drawing_function.md) , [Macro at Startup](Macro_at_Startup.md) , [Macros](Macros.md) , [Macros recipes](Macros_recipes.md) , [Manual:A gentle introduction](Manual:A_gentle_introduction.md) , [Manual:Creating and manipulating geometry](Manual:Creating_and_manipulating_geometry.md) , [Manual:Creating interface tools](Manual:Creating_interface_tools.md) , [Manual:Creating parametric objects](Manual:Creating_parametric_objects.md) , [Mesh Scripting](Mesh_Scripting.md) , [Mesh to Part](Mesh_to_Part.md) , [Part scripting](Part_scripting.md) , [Path scripting](Path_scripting.md) , [Piffpoof Macro Half-Hull Model](Piffpoof_Macro_Half-Hull_Model.md) , [Pivy](Pivy.md) , [Profiling](Profiling.md) , [Property](Property.md) , [PySide](PySide.md) , [PySide Advanced Examples](PySide_Advanced_Examples.md) , [PySide Beginner Examples](PySide_Beginner_Examples.md) , [PySide Intermediate Examples](PySide_Intermediate_Examples.md) , [PySide usage snippets](PySide_usage_snippets.md) , [Python](Python.md) , [Python Development Environment](Python_Development_Environment.md) , [Python scripting tutorial](Python_scripting_tutorial.md) , [PythonOCC](PythonOCC.md) , [Qt Example](Qt_Example.md) , [Quantity](Quantity.md) , [Raytracing API example](Raytracing_API_example.md) , [Scripted objects](Scripted_objects.md) , [Scripted objects migration](Scripted_objects_migration.md) , [Scripted objects saving attributes](Scripted_objects_saving_attributes.md) , [Scripted objects with attachment](Scripted_objects_with_attachment.md) , [Scripted Parts: Ball Bearing - Part 1](Scripted_Parts:_Ball_Bearing_-_Part_1.md) , [Scripted Parts: Ball Bearing - Part 2](Scripted_Parts:_Ball_Bearing_-_Part_2.md) , [Scripting and macros](Scripting_and_macros.md) , [Scripts](Scripts.md) , [Svg Namespace](Svg_Namespace.md) , [Topological data scripting](Topological_data_scripting.md) , [Viewprovider](Viewprovider.md) , [Workbench creation](Workbench_creation.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Python Code diff --git a/wiki/Category:Raytracing.md b/wiki/Category:Raytracing.md index b9fbb4dabc..cf47105a88 100644 --- a/wiki/Category:Raytracing.md +++ b/wiki/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench](Raytracing_Workb [Artwork Raytracing](Artwork_Raytracing.md) , [Manual:Creating renderings](Manual:Creating_renderings.md) , [Raytracing API example](Raytracing_API_example.md) , [Raytracing ExportProject](Raytracing_ExportProject.md) , [Raytracing InsertPart](Raytracing_InsertPart.md) , [Raytracing Lux](Raytracing_Lux.md) , [Raytracing New](Raytracing_New.md) , [Raytracing Preferences](Raytracing_Preferences.md) , [Raytracing Render](Raytracing_Render.md) , [Raytracing ResetCamera](Raytracing_ResetCamera.md) , [Raytracing templates](Raytracing_templates.md) , [Raytracing templates/en](Raytracing_templates/en.md) , [Template:Raytracing Tools navi](Template:Raytracing_Tools_navi.md) , [Raytracing tutorial](Raytracing_tutorial.md) , [Raytracing Workbench](Raytracing_Workbench.md) , [Raytracing WriteCamera](Raytracing_WriteCamera.md) , [Raytracing WritePart](Raytracing_WritePart.md) , [Raytracing WriteView](Raytracing_WriteView.md) , [Tutorial FreeCAD POV ray](Tutorial_FreeCAD_POV_ray.md) , [Tutorial Render with Blender](Tutorial_Render_with_Blender.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Raytracing diff --git a/wiki/Category:Redirects.md b/wiki/Category:Redirects.md index 69f0fb7060..586ecc69b7 100644 --- a/wiki/Category:Redirects.md +++ b/wiki/Category:Redirects.md @@ -4,3 +4,6 @@ This category tracks redirects in the FreeCAD wiki ### Contents: [About](About.md) , [Appimage](Appimage.md) , [Backtrace](Backtrace.md) , [Bugtracker](Bugtracker.md) , [Bugtracker/de](Bugtracker/de.md) , [Combo View](Combo_View.md) , [Constructive Solid Geometry](Constructive_Solid_Geometry.md) , [Dependency Graph](Dependency_Graph.md) , [Dependency graph](Dependency_graph.md) , [DependencyGraph](DependencyGraph.md) , [Docker](Docker.md) , [Downloads](Downloads.md) , [DWG](DWG.md) , [Editing](Editing.md) , [External Workbench](External_Workbench.md) , [External Workbenches](External_Workbenches.md) , [External Workbenches/ru](External_Workbenches/ru.md) , [FCMacro](FCMacro.md) , [FCMat](FCMat.md) , [FCStd](FCStd.md) , [Fcstd file format](Fcstd_file_format.md) , [Git](Git.md) , [GitHub](GitHub.md) , [Github](Github.md) , [Github mantisbt](Github_mantisbt.md) , [Gitkraken](Gitkraken.md) , [Google Summer of Code](Google_Summer_of_Code.md) , [Graphviz](Graphviz.md) , [Graphviz/it](Graphviz/it.md) , [ODA](ODA.md) , [Parameter editor](Parameter_editor.md) , [Parameter Editor](Parameter_Editor.md) , [Part Cube](Part_Cube.md) , [Patch](Patch.md) , [Path Module](Path_Module.md) , [Recompute](Recompute.md) , [Recompute/ru](Recompute/ru.md) , [Scripting](Scripting.md) , [Source Documentation](Source_Documentation.md) , [Std Exit](Std_Exit.md) , [Topological](Topological.md) , [Translation](Translation.md) , [TravisCI](TravisCI.md) , [Tree View](Tree_View.md) , [Visibility](Visibility.md) , [Workbench Selector](Workbench_Selector.md) , [Workbench Selector/de](Workbench_Selector/de.md) , [Workbench Selector/ru](Workbench_Selector/ru.md) + +--- +[documentation index](../README.md) > Category:Redirects diff --git a/wiki/Category:Reinforcement.md b/wiki/Category:Reinforcement.md index 5f056fcf93..b9c47427d7 100644 --- a/wiki/Category:Reinforcement.md +++ b/wiki/Category:Reinforcement.md @@ -4,3 +4,6 @@ [Arch Rebar](Arch_Rebar.md) , [Arch Rebar BeamReinforcement](Arch_Rebar_BeamReinforcement.md) , [Arch Rebar BentShape](Arch_Rebar_BentShape.md) , [Arch Rebar BOM](Arch_Rebar_BOM.md) , [Arch Rebar Circular ColumnReinforcement](Arch_Rebar_Circular_ColumnReinforcement.md) , [Arch Rebar ColumnReinforcement](Arch_Rebar_ColumnReinforcement.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) , [Arch Rebar Dimensioning](Arch_Rebar_Dimensioning.md) , [Arch Rebar Drawing](Arch_Rebar_Drawing.md) , [Arch Rebar Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) , [Arch Rebar Footing Reinforcement](Arch_Rebar_Footing_Reinforcement.md) , [Arch Rebar Helical](Arch_Rebar_Helical.md) , [Arch Rebar LShape](Arch_Rebar_LShape.md) , [Arch Rebar Slab Reinforcement](Arch_Rebar_Slab_Reinforcement.md) , [Arch Rebar Stirrup](Arch_Rebar_Stirrup.md) , [Arch Rebar Straight](Arch_Rebar_Straight.md) , [Arch Rebar UShape](Arch_Rebar_UShape.md) , [Custom Spacing](Custom_Spacing.md) , [Reinforcement Addon](Reinforcement_Addon.md) , [Reinforcement API](Reinforcement_API.md) , [Reinforcement Bar Bending Schedule](Reinforcement_Bar_Bending_Schedule.md) , [Reinforcement Bar Shape Cut List](Reinforcement_Bar_Shape_Cut_List.md) , [Reinforcement Workbench](Reinforcement_Workbench.md) [Category:Arch](Category:Arch.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Category:Reinforcement diff --git a/wiki/Category:Releases.md b/wiki/Category:Releases.md index 30fcdaf594..ca738e0f41 100644 --- a/wiki/Category:Releases.md +++ b/wiki/Category:Releases.md @@ -4,3 +4,6 @@ Category that links all FreeCAD release pages. ### Contents: [Release notes 0.11](Release_notes_0.11.md) , [Release notes 0.12](Release_notes_0.12.md) , [Release notes 0.13](Release_notes_0.13.md) , [Release notes 0.14](Release_notes_0.14.md) , [Release notes 0.15](Release_notes_0.15.md) , [Release notes 0.16](Release_notes_0.16.md) , [Release notes 0.17](Release_notes_0.17.md) , [Release notes 0.18](Release_notes_0.18.md) , [Release notes 0.19](Release_notes_0.19.md) , [Release notes 0.20](Release_notes_0.20.md) + +--- +[documentation index](../README.md) > Category:Releases diff --git a/wiki/Category:Reverse_Engineering.md b/wiki/Category:Reverse_Engineering.md index beb5e505ae..57e6decf1c 100644 --- a/wiki/Category:Reverse_Engineering.md +++ b/wiki/Category:Reverse_Engineering.md @@ -6,3 +6,6 @@ This category lists pages related to the [Reverse Engineering Workbench](Reverse [Artwork ReverseEngineering](Artwork_ReverseEngineering.md) , [Reverse Engineering Workbench](Reverse_Engineering_Workbench.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Reverse Engineering diff --git a/wiki/Category:Reverse_engineering.md b/wiki/Category:Reverse_engineering.md index 96e9244ed5..1083bb727c 100644 --- a/wiki/Category:Reverse_engineering.md +++ b/wiki/Category:Reverse_engineering.md @@ -2,3 +2,6 @@ This category contains pages related to the [Reverse Engineering Workbench](Reverse_Engineering_Workbench.md). ### Contents: + +--- +[documentation index](../README.md) > Category:Reverse engineering diff --git a/wiki/Category:Roadmap.md b/wiki/Category:Roadmap.md index 8a568c9077..d814631e14 100644 --- a/wiki/Category:Roadmap.md +++ b/wiki/Category:Roadmap.md @@ -6,3 +6,6 @@ This category gathers all articles documenting what is planned in the Roadmap of [0.20 Development Cycle](0.20_Development_Cycle.md) , [Arch Concept](Arch_Concept.md) , [Artwork project](Artwork_project.md) , [Assembly project](Assembly_project.md) , [CAM project](CAM_project.md) , [Development roadmap](Development_roadmap.md) , [FEM project](FEM_project.md) , [FreeCAD development model project](FreeCAD_development_model_project.md) , [HiDPI support](HiDPI_support.md) , [Land Survey Workbench Blueprint](Land_Survey_Workbench_Blueprint.md) , [Material](Material.md) , [Material data model](Material_data_model.md) , [Naming project](Naming_project.md) , [PartDesign project](PartDesign_project.md) , [Project template](Project_template.md) , [Quality project](Quality_project.md) , [Raytracing project](Raytracing_project.md) , [Release process](Release_process.md) , [Release process/en](Release_process/en.md) , [Resource framework project](Resource_framework_project.md) , [Robot project](Robot_project.md) , [Sketcher project](Sketcher_project.md) , [STEP project](STEP_project.md) , [Tolerancing](Tolerancing.md) , [Units project](Units_project.md) , [UTF Project](UTF_Project.md) , [Wished tools](Wished_tools.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Roadmap diff --git a/wiki/Category:Robot.md b/wiki/Category:Robot.md index e9d1381fe5..3137cd0729 100644 --- a/wiki/Category:Robot.md +++ b/wiki/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench](Robot_Workbench.md). [Artwork Robot](Artwork_Robot.md) , [GSoC Path/Robot Integration](GSoC_Path/Robot_Integration.md) , [Robot 6-Axis](Robot_6-Axis.md) , [Robot API example](Robot_API_example.md) , [Robot API example/en](Robot_API_example/en.md) , [Robot API example/pt-br](Robot_API_example/pt-br.md) , [Robot CreateRobot](Robot_CreateRobot.md) , [Robot CreateTrajectory](Robot_CreateTrajectory.md) , [Robot Edge2Trac](Robot_Edge2Trac.md) , [Robot Export](Robot_Export.md) , [Robot InsertWaypoint](Robot_InsertWaypoint.md) , [Robot InsertWaypointPre](Robot_InsertWaypointPre.md) , [Robot RestoreHomePos](Robot_RestoreHomePos.md) , [Robot SetDefaultOrientation](Robot_SetDefaultOrientation.md) , [Robot SetDefaultValues](Robot_SetDefaultValues.md) , [Robot SetHomePos](Robot_SetHomePos.md) , [Robot Simulate](Robot_Simulate.md) , [Template:Robot Tools navi](Template:Robot_Tools_navi.md) , [Robot TrajectoryCompound](Robot_TrajectoryCompound.md) , [Robot TrajectoryDressUp](Robot_TrajectoryDressUp.md) , [Robot tutorial](Robot_tutorial.md) , [Robot Workbench](Robot_Workbench.md) , [VRML Preparation for Robot Simulation](VRML_Preparation_for_Robot_Simulation.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Robot diff --git a/wiki/Category:Robot_API.md b/wiki/Category:Robot_API.md index 641775aaf3..3bdb6c0a8d 100644 --- a/wiki/Category:Robot_API.md +++ b/wiki/Category:Robot_API.md @@ -6,3 +6,6 @@ This page collects the programming interface (API) and examples for the [Robot W [Robot API example](Robot_API_example.md) [Category:API](Category:API.md) + +--- +[documentation index](../README.md) > Category:Robot API diff --git a/wiki/Category:Sandbox.md b/wiki/Category:Sandbox.md index d20b652dad..97f310d974 100644 --- a/wiki/Category:Sandbox.md +++ b/wiki/Category:Sandbox.md @@ -6,3 +6,6 @@ This category gathers all pages used as Sandbox: a place where you can draft or [A Beginner\'s Questions about Working on the Wiki](A_Beginner's_Questions_about_Working_on_the_Wiki.md) , [Best Practices with SpreadSheets](Best_Practices_with_SpreadSheets.md) , [CadQuery Workbench](CadQuery_Workbench.md) , [Cfd Workbench](Cfd_Workbench.md) , [Cura Engine Workbench](Cura_Engine_Workbench.md) , [ExplodedAssembly Workbench](ExplodedAssembly_Workbench.md) , [FEM FrontISTR Workbench](FEM_FrontISTR_Workbench.md) , [FreeCAD on video](FreeCAD_on_video.md) , [FreeCad with Multiple Monitors](FreeCad_with_Multiple_Monitors.md) , [FreeCad Workbenches](FreeCad_Workbenches.md) , [FreeCADDocu:Sandbox](FreeCADDocu:Sandbox.md) , [Macro Kerkythea](Macro_Kerkythea.md) , [Microscope Adapter Model](Microscope_Adapter_Model.md) , [PCB Workbench](PCB_Workbench.md) , [User:RussHensel](User:RussHensel.md) , [Sandbox/TechDrawTemplateExplained](Sandbox/TechDrawTemplateExplained.md) , [Sandbox:3rd Party Dependencies](Sandbox:3rd_Party_Dependencies.md) , [Sandbox:Add FEM Solver Tutorial](Sandbox:Add_FEM_Solver_Tutorial.md) , [Sandbox:Dependency Matrix](Sandbox:Dependency_Matrix.md) , [Sandbox:Exploded Assembly](Sandbox:Exploded_Assembly.md) , [Sandbox:FBXL5](Sandbox:FBXL5.md) , [Sandbox:Gnrc](Sandbox:Gnrc.md) , [Sandbox:HowTo](Sandbox:HowTo.md) , [Sandbox:Keyboard Shortcuts](Sandbox:Keyboard_Shortcuts.md) , [Sandbox:Kinagaki](Sandbox:Kinagaki.md) , [Sandbox:Mario52](Sandbox:Mario52.md) , [Sandbox:Mario52/fr](Sandbox:Mario52/fr.md) , [Sandbox:Sketcher import DXF tutorial](Sandbox:Sketcher_import_DXF_tutorial.md) , [Sandbox:TechDraw template creation tutorial](Sandbox:TechDraw_template_creation_tutorial.md) , [Sandbox:TechDraw template creation tutorial/en](Sandbox:TechDraw_template_creation_tutorial/en.md) , [Sandbox:TechDraw TemplateHelper](Sandbox:TechDraw_TemplateHelper.md) , [Sandbox:TestWikiPage](Sandbox:TestWikiPage.md) , [Sandbox:TestWikiPage/de](Sandbox:TestWikiPage/de.md) , [Sandbox:TestWikiPage/en](Sandbox:TestWikiPage/en.md) , [Sandbox:TutorialArchBIM](Sandbox:TutorialArchBIM.md) , [Sandbox:TutorialBIMannex](Sandbox:TutorialBIMannex.md) , [Sandbox:VWegert](Sandbox:VWegert.md) , [Symbols Library Workbench](Symbols_Library_Workbench.md) , [Timber Workbench](Timber_Workbench.md) , [Tutorial guidelines](Tutorial_guidelines.md) , [WikiPagesBasicColors](WikiPagesBasicColors.md) , [Workfeature Workbench](Workfeature_Workbench.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Sandbox diff --git a/wiki/Category:Screenshots.md b/wiki/Category:Screenshots.md index e853de647b..6ec17aeb22 100644 --- a/wiki/Category:Screenshots.md +++ b/wiki/Category:Screenshots.md @@ -6,3 +6,6 @@ This category lists pages with screenshots. [Screenshots](Screenshots.md) , [Screenshots/en](Screenshots/en.md) , [Screenshots/hr](Screenshots/hr.md) , [Screenshots/id](Screenshots/id.md) , [Screenshots/ko](Screenshots/ko.md) , [Screenshots/pl](Screenshots/pl.md) , [Screenshots/pt-br](Screenshots/pt-br.md) , [Screenshots/zh](Screenshots/zh.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > Category:Screenshots diff --git a/wiki/Category:SheetMetal.md b/wiki/Category:SheetMetal.md index 3ba1f17e04..bb45dd42e6 100644 --- a/wiki/Category:SheetMetal.md +++ b/wiki/Category:SheetMetal.md @@ -6,3 +6,6 @@ This page collects the documentation pages for the [SheetMetal Workbench](SheetM [SheetMetal AddBase](SheetMetal_AddBase.md) , [SheetMetal AddBend](SheetMetal_AddBend.md) , [SheetMetal AddCornerRelief](SheetMetal_AddCornerRelief.md) , [SheetMetal AddFoldWall](SheetMetal_AddFoldWall.md) , [SheetMetal AddJunction](SheetMetal_AddJunction.md) , [SheetMetal AddRelief](SheetMetal_AddRelief.md) , [SheetMetal AddWall](SheetMetal_AddWall.md) , [SheetMetal Examples](SheetMetal_Examples.md) , [SheetMetal Extrude](SheetMetal_Extrude.md) , [SheetMetal Forming](SheetMetal_Forming.md) , [SheetMetal SketchOnSheet](SheetMetal_SketchOnSheet.md) , [SheetMetal UnattendedUnfold](SheetMetal_UnattendedUnfold.md) , [SheetMetal Unfold](SheetMetal_Unfold.md) , [SheetMetal Workbench](SheetMetal_Workbench.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Category:SheetMetal diff --git a/wiki/Category:Ship.md b/wiki/Category:Ship.md index e835cf9ea7..94c5c7c3d9 100644 --- a/wiki/Category:Ship.md +++ b/wiki/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench](Ship_Workbench.md). [Artwork Ship](Artwork_Ship.md) , [FreeCAD-Ship s60 tutorial](FreeCAD-Ship_s60_tutorial.md) , [FreeCAD-Ship s60 tutorial (II)](FreeCAD-Ship_s60_tutorial_(II).md) , [Ship Area](Ship_Area.md) , [Ship Geometries Examples](Ship_Geometries_Examples.md) , [Ship Hydrostatics](Ship_Hydrostatics.md) , [Ship Loading](Ship_Loading.md) , [Ship Loading/en](Ship_Loading/en.md) , [Ship New](Ship_New.md) , [Ship Outline](Ship_Outline.md) , [Ship PlotGZ](Ship_PlotGZ.md) , [Ship PlotGZ/en](Ship_PlotGZ/en.md) , [Ship PlotGZ/fr](Ship_PlotGZ/fr.md) , [Ship PlotGZ/it](Ship_PlotGZ/it.md) , [Ship PlotGZ/ro](Ship_PlotGZ/ro.md) , [Ship PlotGZ/ru](Ship_PlotGZ/ru.md) , [Ship TankCapacity](Ship_TankCapacity.md) , [Ship TankCapacity/en](Ship_TankCapacity/en.md) , [Ship TankCapacity/fr](Ship_TankCapacity/fr.md) , [Ship TankCapacity/it](Ship_TankCapacity/it.md) , [Ship TankCapacity/ro](Ship_TankCapacity/ro.md) , [Ship TankCapacity/ru](Ship_TankCapacity/ru.md) , [Ship TankNew](Ship_TankNew.md) , [Ship TankNew/en](Ship_TankNew/en.md) , [Ship TankNew/fr](Ship_TankNew/fr.md) , [Ship TankNew/it](Ship_TankNew/it.md) , [Ship TankNew/ro](Ship_TankNew/ro.md) , [Ship TankNew/ru](Ship_TankNew/ru.md) , [Template:Ship Tools navi](Template:Ship_Tools_navi.md) , [Ship Weight](Ship_Weight.md) , [Ship Weight/en](Ship_Weight/en.md) , [Ship Weight/fr](Ship_Weight/fr.md) , [Ship Weight/it](Ship_Weight/it.md) , [Ship Weight/ru](Ship_Weight/ru.md) , [Ship Workbench](Ship_Workbench.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Ship diff --git a/wiki/Category:Silk.md b/wiki/Category:Silk.md index 3bc1ea966e..587afa8e98 100644 --- a/wiki/Category:Silk.md +++ b/wiki/Category:Silk.md @@ -4,3 +4,6 @@ Pages related to the [Silk workbench](Silk_Workbench.md) which is an [external w ### Contents: [Silk Workbench](Silk_Workbench.md) + +--- +[documentation index](../README.md) > Category:Silk diff --git a/wiki/Category:Sketcher.md b/wiki/Category:Sketcher.md index 72e488aa99..0d5d450b09 100644 --- a/wiki/Category:Sketcher.md +++ b/wiki/Category:Sketcher.md @@ -6,3 +6,6 @@ This category lists pages related to the [Sketcher Workbench](Sketcher_Workbench [Arch panel tutorial](Arch_panel_tutorial.md) , [Artwork Sketcher](Artwork_Sketcher.md) , [Basic Attachment Tutorial](Basic_Attachment_Tutorial.md) , [Basic Part Design Tutorial](Basic_Part_Design_Tutorial.md) , [Basic Sketcher Tutorial](Basic_Sketcher_Tutorial.md) , [Basic Sketcher Tutorial/ro](Basic_Sketcher_Tutorial/ro.md) , [Constraint](Constraint.md) , [Creating a simple part with PartDesign](Creating_a_simple_part_with_PartDesign.md) , [Draft ShapeString tutorial](Draft_ShapeString_tutorial.md) , [Part and PartDesign](Part_and_PartDesign.md) , [Sketch](Sketch.md) , [Sketcher BSplineApproximate](Sketcher_BSplineApproximate.md) , [Sketcher BSplineComb](Sketcher_BSplineComb.md) , [Sketcher BSplineDecreaseDegree](Sketcher_BSplineDecreaseDegree.md) , [Sketcher BSplineDecreaseKnotMultiplicity](Sketcher_BSplineDecreaseKnotMultiplicity.md) , [Sketcher BSplineDegree](Sketcher_BSplineDegree.md) , [Sketcher BSplineIncreaseDegree](Sketcher_BSplineIncreaseDegree.md) , [Sketcher BSplineIncreaseKnotMultiplicity](Sketcher_BSplineIncreaseKnotMultiplicity.md) , [Sketcher BSplineKnotMultiplicity](Sketcher_BSplineKnotMultiplicity.md) , [Sketcher BSplinePoleWeight](Sketcher_BSplinePoleWeight.md) , [Sketcher BSplinePolygon](Sketcher_BSplinePolygon.md) , [Sketcher CarbonCopy](Sketcher_CarbonCopy.md) , [Sketcher Clone](Sketcher_Clone.md) , [Sketcher CloseShape](Sketcher_CloseShape.md) , [Sketcher CompConstrainRadDia](Sketcher_CompConstrainRadDia.md) , [Sketcher CompCopy](Sketcher_CompCopy.md) , [Sketcher CompCreateArc](Sketcher_CompCreateArc.md) , [Sketcher CompCreateBSpline](Sketcher_CompCreateBSpline.md) , [Sketcher CompCreateCircle](Sketcher_CompCreateCircle.md) , [Sketcher CompCreateConic](Sketcher_CompCreateConic.md) , [Sketcher CompCreateRectangles](Sketcher_CompCreateRectangles.md) , [Sketcher CompCreateRegularPolygon](Sketcher_CompCreateRegularPolygon.md) , [Sketcher ConnectLines](Sketcher_ConnectLines.md) , [Sketcher ConstrainAngle](Sketcher_ConstrainAngle.md) , [Sketcher ConstrainBlock](Sketcher_ConstrainBlock.md) , [Sketcher ConstrainCoincident](Sketcher_ConstrainCoincident.md) , [Sketcher ConstrainDiameter](Sketcher_ConstrainDiameter.md) , [Sketcher ConstrainDistance](Sketcher_ConstrainDistance.md) , [Sketcher ConstrainDistanceX](Sketcher_ConstrainDistanceX.md) , [Sketcher ConstrainDistanceY](Sketcher_ConstrainDistanceY.md) , [Sketcher ConstrainEqual](Sketcher_ConstrainEqual.md) , [Sketcher ConstrainHorizontal](Sketcher_ConstrainHorizontal.md) , [Sketcher ConstrainHorizontal/ja](Sketcher_ConstrainHorizontal/ja.md) , [Sketcher ConstrainInternalAlignment](Sketcher_ConstrainInternalAlignment.md) , [Sketcher ConstrainLock](Sketcher_ConstrainLock.md) , [Sketcher ConstrainParallel](Sketcher_ConstrainParallel.md) , [Sketcher ConstrainPerpendicular](Sketcher_ConstrainPerpendicular.md) , [Sketcher ConstrainPointOnObject](Sketcher_ConstrainPointOnObject.md) , [Sketcher ConstrainRadiam](Sketcher_ConstrainRadiam.md) , [Sketcher ConstrainRadius](Sketcher_ConstrainRadius.md) , [Sketcher ConstrainSnellsLaw](Sketcher_ConstrainSnellsLaw.md) , [Sketcher ConstrainSymmetric](Sketcher_ConstrainSymmetric.md) , [Sketcher ConstrainTangent](Sketcher_ConstrainTangent.md) , [Sketcher ConstrainVertical](Sketcher_ConstrainVertical.md) , [Sketcher Copy](Sketcher_Copy.md) , [Sketcher Create3PointArc](Sketcher_Create3PointArc.md) , [Sketcher Create3PointCircle](Sketcher_Create3PointCircle.md) , [Sketcher CreateArc](Sketcher_CreateArc.md) , [Sketcher CreateArcOfEllipse](Sketcher_CreateArcOfEllipse.md) , [Sketcher CreateArcOfHyperbola](Sketcher_CreateArcOfHyperbola.md) , [Sketcher CreateArcOfParabola](Sketcher_CreateArcOfParabola.md) , [Sketcher CreateBSpline](Sketcher_CreateBSpline.md) , [Sketcher CreateCircle](Sketcher_CreateCircle.md) , [Sketcher CreateEllipseBy3Points](Sketcher_CreateEllipseBy3Points.md) , [Sketcher CreateEllipseByCenter](Sketcher_CreateEllipseByCenter.md) , [Sketcher CreateFillet](Sketcher_CreateFillet.md) , [Sketcher CreateHeptagon](Sketcher_CreateHeptagon.md) , [Sketcher CreateHexagon](Sketcher_CreateHexagon.md) , [Sketcher CreateLine](Sketcher_CreateLine.md) , [Sketcher CreateOblong](Sketcher_CreateOblong.md) , [Sketcher CreateOctagon](Sketcher_CreateOctagon.md) , [Sketcher CreatePentagon](Sketcher_CreatePentagon.md) , [Sketcher CreatePeriodicBSpline](Sketcher_CreatePeriodicBSpline.md) , [Sketcher CreatePoint](Sketcher_CreatePoint.md) , [Sketcher CreatePolyline](Sketcher_CreatePolyline.md) , [Sketcher CreateRectangle](Sketcher_CreateRectangle.md) , [Sketcher CreateRectangle Center](Sketcher_CreateRectangle_Center.md) , [Sketcher CreateRegularPolygon](Sketcher_CreateRegularPolygon.md) , [Sketcher CreateSlot](Sketcher_CreateSlot.md) , [Sketcher CreateSquare](Sketcher_CreateSquare.md) , [Sketcher CreateTriangle](Sketcher_CreateTriangle.md) , [Sketcher DeleteAllConstraints](Sketcher_DeleteAllConstraints.md) , [Sketcher DeleteAllGeometry](Sketcher_DeleteAllGeometry.md) , [Sketcher Dialog](Sketcher_Dialog.md) , [Sketcher EditSketch](Sketcher_EditSketch.md) , [Sketcher Extend](Sketcher_Extend.md) , [Sketcher External](Sketcher_External.md) , [Sketcher helper constraint](Sketcher_helper_constraint.md) , [Sketcher LeaveSketch](Sketcher_LeaveSketch.md) , [Sketcher MapSketch](Sketcher_MapSketch.md) , [Sketcher MergeSketches](Sketcher_MergeSketches.md) , [Sketcher Micro Tutorial - Constraint Practices](Sketcher_Micro_Tutorial_-_Constraint_Practices.md) , [Sketcher MirrorSketch](Sketcher_MirrorSketch.md) , [Sketcher Move](Sketcher_Move.md) , [Sketcher NewSketch](Sketcher_NewSketch.md) , [Sketcher Preferences](Sketcher_Preferences.md) , [Sketcher project](Sketcher_project.md) , [Sketcher RectangularArray](Sketcher_RectangularArray.md) , [Sketcher reference](Sketcher_reference.md) , [Sketcher RemoveAxesAlignment](Sketcher_RemoveAxesAlignment.md) , [Sketcher ReorientSketch](Sketcher_ReorientSketch.md) , [Sketcher requirement for a sketch](Sketcher_requirement_for_a_sketch.md) , [Sketcher RestoreInternalAlignmentGeometry](Sketcher_RestoreInternalAlignmentGeometry.md) , [Sketcher scripting](Sketcher_scripting.md) , [Sketcher SelectConflictingConstraints](Sketcher_SelectConflictingConstraints.md) , [Sketcher SelectConstraints](Sketcher_SelectConstraints.md) , [Sketcher SelectElementsAssociatedWithConstraints](Sketcher_SelectElementsAssociatedWithConstraints.md) , [Sketcher SelectElementsWithDoFs](Sketcher_SelectElementsWithDoFs.md) , [Sketcher SelectHorizontalAxis](Sketcher_SelectHorizontalAxis.md) , [Sketcher SelectOrigin](Sketcher_SelectOrigin.md) , [Sketcher SelectRedundantConstraints](Sketcher_SelectRedundantConstraints.md) , [Sketcher SelectVerticalAxis](Sketcher_SelectVerticalAxis.md) , [Sketcher Sketch](Sketcher_Sketch.md) , [Sketcher SketchObject](Sketcher_SketchObject.md) , [Sketcher Split](Sketcher_Split.md) , [Sketcher StopOperation](Sketcher_StopOperation.md) , [Sketcher SwitchVirtualSpace](Sketcher_SwitchVirtualSpace.md) , [Sketcher Symmetry](Sketcher_Symmetry.md) , [Sketcher ToggleActiveConstraint](Sketcher_ToggleActiveConstraint.md) , [Sketcher ToggleConstruction](Sketcher_ToggleConstruction.md) , [Sketcher ToggleDrivingConstraint](Sketcher_ToggleDrivingConstraint.md) , [Template:Sketcher Tools navi](Template:Sketcher_Tools_navi.md) , [Sketcher Trimming](Sketcher_Trimming.md) , [Sketcher Tutorial](Sketcher_Tutorial.md) , [Sketcher ValidateSketch](Sketcher_ValidateSketch.md) , [Sketcher ViewSection](Sketcher_ViewSection.md) , [Sketcher ViewSketch](Sketcher_ViewSketch.md) , [Sketcher Workbench](Sketcher_Workbench.md) , [Thread for Screw Tutorial](Thread_for_Screw_Tutorial.md) , [Toothbrush Head Stand](Toothbrush_Head_Stand.md) , [Tutorial custom placing of windows and doors](Tutorial_custom_placing_of_windows_and_doors.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Sketcher diff --git a/wiki/Category:Spreadsheet.md b/wiki/Category:Spreadsheet.md index 7b2c86713e..87b44a81fd 100644 --- a/wiki/Category:Spreadsheet.md +++ b/wiki/Category:Spreadsheet.md @@ -6,3 +6,6 @@ This category lists pages related to the [Spreadsheet Workbench](Spreadsheet_Wor [Artwork Spreadsheet](Artwork_Spreadsheet.md) , [Best Practices with SpreadSheets](Best_Practices_with_SpreadSheets.md) , [Expressions](Expressions.md) , [Spreadsheet AlignBottom](Spreadsheet_AlignBottom.md) , [Spreadsheet AlignCenter](Spreadsheet_AlignCenter.md) , [Spreadsheet AlignLeft](Spreadsheet_AlignLeft.md) , [Spreadsheet AlignRight](Spreadsheet_AlignRight.md) , [Spreadsheet AlignTop](Spreadsheet_AlignTop.md) , [Spreadsheet AlignVCenter](Spreadsheet_AlignVCenter.md) , [Spreadsheet CreateSheet](Spreadsheet_CreateSheet.md) , [Spreadsheet CSV](Spreadsheet_CSV.md) , [Spreadsheet Export](Spreadsheet_Export.md) , [Spreadsheet Import](Spreadsheet_Import.md) , [Spreadsheet MergeCells](Spreadsheet_MergeCells.md) , [Spreadsheet SetAlias](Spreadsheet_SetAlias.md) , [Spreadsheet SplitCell](Spreadsheet_SplitCell.md) , [Spreadsheet StyleBold](Spreadsheet_StyleBold.md) , [Spreadsheet StyleItalic](Spreadsheet_StyleItalic.md) , [Spreadsheet StyleUnderline](Spreadsheet_StyleUnderline.md) , [Template:Spreadsheet Tools navi](Template:Spreadsheet_Tools_navi.md) , [Spreadsheet Workbench](Spreadsheet_Workbench.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Spreadsheet diff --git a/wiki/Category:Start.md b/wiki/Category:Start.md index 02661f3575..2d23a93102 100644 --- a/wiki/Category:Start.md +++ b/wiki/Category:Start.md @@ -6,3 +6,6 @@ This category lists pages related to the [Start Workbench](Start_Workbench.md). [Artwork Start](Artwork_Start.md) , [Start Preferences](Start_Preferences.md) , [Template:Start Tools navi](Template:Start_Tools_navi.md) , [Start Workbench](Start_Workbench.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Start diff --git a/wiki/Category:Std_Base.md b/wiki/Category:Std_Base.md index 3079976032..8cacd0e28d 100644 --- a/wiki/Category:Std_Base.md +++ b/wiki/Category:Std_Base.md @@ -6,3 +6,6 @@ This category list pages related to the [Std Base](Std_Base.md), which collects [App DocumentObjectGroup](App_DocumentObjectGroup.md) , [App DocumentObjectGroup/pl](App_DocumentObjectGroup/pl.md) , [App Link](App_Link.md) , [App Link/pl](App_Link/pl.md) , [App Part](App_Part.md) , [App Part/pl](App_Part/pl.md) , [Assembly](Assembly.md) , [Assembly/pl](Assembly/pl.md) , [Combo view](Combo_view.md) , [Combo view/pl](Combo_view/pl.md) , [DAG view](DAG_view.md) , [DAG view/pl](DAG_view/pl.md) , [Interface Customization](Interface_Customization.md) , [Interface Customization/pl](Interface_Customization/pl.md) , [Part](Part.md) , [Part/pl](Part/pl.md) , [Property editor](Property_editor.md) , [Property editor/pl](Property_editor/pl.md) , [Python console](Python_console.md) , [Python console/pl](Python_console/pl.md) , [Report view](Report_view.md) , [Report view/pl](Report_view/pl.md) , [Selection view](Selection_view.md) , [Selection view/pl](Selection_view/pl.md) , [Standard Menu](Standard_Menu.md) , [Standard Menu/pl](Standard_Menu/pl.md) , [Std About](Std_About.md) , [Std About/pl](Std_About/pl.md) , [Std ActivateNextWindow](Std_ActivateNextWindow.md) , [Std ActivateNextWindow/pl](Std_ActivateNextWindow/pl.md) , [Std ActivatePrevWindow](Std_ActivatePrevWindow.md) , [Std ActivatePrevWindow/pl](Std_ActivatePrevWindow/pl.md) , [Std AddonMgr](Std_AddonMgr.md) , [Std AddonMgr/pl](Std_AddonMgr/pl.md) , [Std Alignment](Std_Alignment.md) , [Std Alignment/pl](Std_Alignment/pl.md) , [Std ArrangeIcons](Std_ArrangeIcons.md) , [Std ArrangeIcons/pl](Std_ArrangeIcons/pl.md) , [Std AxisCross](Std_AxisCross.md) , [Std AxisCross/pl](Std_AxisCross/pl.md) , [Std Base](Std_Base.md) , [Template:Std Base navi](Template:Std_Base_navi.md) , [Std Base/pl](Std_Base/pl.md) , [Std BoxElementSelection](Std_BoxElementSelection.md) , [Std BoxElementSelection/pl](Std_BoxElementSelection/pl.md) , [Std BoxSelection](Std_BoxSelection.md) , [Std BoxSelection/pl](Std_BoxSelection/pl.md) , [Std CascadeWindows](Std_CascadeWindows.md) , [Std CascadeWindows/pl](Std_CascadeWindows/pl.md) , [Std CloseActiveWindow](Std_CloseActiveWindow.md) , [Std CloseActiveWindow/pl](Std_CloseActiveWindow/pl.md) , [Std CloseAllWindows](Std_CloseAllWindows.md) , [Std CloseAllWindows/pl](Std_CloseAllWindows/pl.md) , [Std Copy](Std_Copy.md) , [Std Copy/pl](Std_Copy/pl.md) , [Std Cut](Std_Cut.md) , [Std Cut/pl](Std_Cut/pl.md) , [Std Delete](Std_Delete.md) , [Std Delete/pl](Std_Delete/pl.md) , [Std DemoMode](Std_DemoMode.md) , [Std DemoMode/pl](Std_DemoMode/pl.md) , [Std DependencyGraph](Std_DependencyGraph.md) , [Std DependencyGraph/pl](Std_DependencyGraph/pl.md) , [Std DlgCustomize](Std_DlgCustomize.md) , [Std DlgCustomize/pl](Std_DlgCustomize/pl.md) , [Std DlgMacroExecute](Std_DlgMacroExecute.md) , [Std DlgMacroExecuteDirect](Std_DlgMacroExecuteDirect.md) , [Std DlgMacroRecord](Std_DlgMacroRecord.md) , [Std DlgMacroRecord/pl](Std_DlgMacroRecord/pl.md) , [Std DlgParameter](Std_DlgParameter.md) , [Std DlgParameter/pl](Std_DlgParameter/pl.md) , [Std DlgPreferences](Std_DlgPreferences.md) , [Std DlgPreferences/pl](Std_DlgPreferences/pl.md) , [Std DrawStyle](Std_DrawStyle.md) , [Std DuplicateSelection](Std_DuplicateSelection.md) , [Std DuplicateSelection/pl](Std_DuplicateSelection/pl.md) , [Std Edit](Std_Edit.md) , [Std Edit Menu](Std_Edit_Menu.md) , [Std Edit Menu/pl](Std_Edit_Menu/pl.md) , [Std Edit/pl](Std_Edit/pl.md) , [Std Export](Std_Export.md) , [Std Export/pl](Std_Export/pl.md) , [Std File Menu](Std_File_Menu.md) , [Std File Menu/pl](Std_File_Menu/pl.md) , [Std FreeCADFAQ](Std_FreeCADFAQ.md) , [Std FreeCADFAQ/pl](Std_FreeCADFAQ/pl.md) , [Std FreeCADForum](Std_FreeCADForum.md) , [Std FreeCADForum/pl](Std_FreeCADForum/pl.md) , [Std FreeCADPowerUserHub](Std_FreeCADPowerUserHub.md) , [Std FreeCADPowerUserHub/pl](Std_FreeCADPowerUserHub/pl.md) , [Std FreeCADUserHub](Std_FreeCADUserHub.md) , [Std FreeCADUserHub/pl](Std_FreeCADUserHub/pl.md) , [Std FreeCADWebsite](Std_FreeCADWebsite.md) , [Std FreeCADWebsite/pl](Std_FreeCADWebsite/pl.md) , [Std FreezeViews](Std_FreezeViews.md) , [Std FreezeViews/pl](Std_FreezeViews/pl.md) , [Std Group](Std_Group.md) , [Std Group/pl](Std_Group/pl.md) , [Std Help Menu](Std_Help_Menu.md) , [Std Help Menu/pl](Std_Help_Menu/pl.md) , [Std HideObjects](Std_HideObjects.md) , [Std HideSelection](Std_HideSelection.md) , [Std HideSelection/pl](Std_HideSelection/pl.md) , [Std Import](Std_Import.md) , [Std Import/pl](Std_Import/pl.md) , [Std LinkImport](Std_LinkImport.md) , [Std LinkImport/pl](Std_LinkImport/pl.md) , [Std LinkImportAll](Std_LinkImportAll.md) , [Std LinkImportAll/pl](Std_LinkImportAll/pl.md) , [Std LinkMake](Std_LinkMake.md) , [Std LinkMake/pl](Std_LinkMake/pl.md) , [Std LinkMakeRelative](Std_LinkMakeRelative.md) , [Std LinkMakeRelative/pl](Std_LinkMakeRelative/pl.md) , [Std LinkReplace](Std_LinkReplace.md) , [Std LinkReplace/pl](Std_LinkReplace/pl.md) , [Std LinkSelectAllLinks](Std_LinkSelectAllLinks.md) , [Std LinkSelectAllLinks/pl](Std_LinkSelectAllLinks/pl.md) , [Std LinkSelectLinked](Std_LinkSelectLinked.md) , [Std LinkSelectLinked/pl](Std_LinkSelectLinked/pl.md) , [Std LinkSelectLinkedFinal](Std_LinkSelectLinkedFinal.md) , [Std LinkSelectLinkedFinal/pl](Std_LinkSelectLinkedFinal/pl.md) , [Std LinkUnlink](Std_LinkUnlink.md) , [Std LinkUnlink/pl](Std_LinkUnlink/pl.md) , [Std Macro Menu](Std_Macro_Menu.md) , [Std Macro Menu/pl](Std_Macro_Menu/pl.md) , [Std MacroAttachDebugger](Std_MacroAttachDebugger.md) , [Std MacroStartDebug](Std_MacroStartDebug.md) , [Std MacroStepInto](Std_MacroStepInto.md) , [Std MacroStepOver](Std_MacroStepOver.md) , [Std MacroStopDebug](Std_MacroStopDebug.md) , [Std MacroStopRecord](Std_MacroStopRecord.md) , [Std MainFullscreen](Std_MainFullscreen.md) , [Std MainFullscreen/pl](Std_MainFullscreen/pl.md) , [Std MeasureDistance](Std_MeasureDistance.md) , [Std MergeProjects](Std_MergeProjects.md) , [Std MergeProjects/pl](Std_MergeProjects/pl.md) , [Std New](Std_New.md) , [Std New/pl](Std_New/pl.md) , [Std OnlineHelp](Std_OnlineHelp.md) , [Std OnlineHelp/pl](Std_OnlineHelp/pl.md) , [Std Open](Std_Open.md) , [Std Open/pl](Std_Open/pl.md) , [Std OrthographicCamera](Std_OrthographicCamera.md) , [Std OrthographicCamera/pl](Std_OrthographicCamera/pl.md) , [Std Part](Std_Part.md) , [Std Part/pl](Std_Part/pl.md) , [Std Paste](Std_Paste.md) , [Std Paste/pl](Std_Paste/pl.md) , [Std PerspectiveCamera](Std_PerspectiveCamera.md) , [Std PerspectiveCamera/pl](Std_PerspectiveCamera/pl.md) , [Std Placement](Std_Placement.md) , [Std Placement/pl](Std_Placement/pl.md) , [Std Print](Std_Print.md) , [Std Print/pl](Std_Print/pl.md) , [Std PrintPdf](Std_PrintPdf.md) , [Std PrintPdf/pl](Std_PrintPdf/pl.md) , [Std PrintPreview](Std_PrintPreview.md) , [Std PrintPreview/pl](Std_PrintPreview/pl.md) , [Std ProjectInfo](Std_ProjectInfo.md) , [Std ProjectInfo/pl](Std_ProjectInfo/pl.md) , [Std ProjectUtil](Std_ProjectUtil.md) , [Std ProjectUtil/pl](Std_ProjectUtil/pl.md) , [Std PythonHelp](Std_PythonHelp.md) , [Std PythonHelp/pl](Std_PythonHelp/pl.md) , [Std Quit](Std_Quit.md) , [Std Quit/pl](Std_Quit/pl.md) , [Std RandomColor](Std_RandomColor.md) , [Std RandomColor/pl](Std_RandomColor/pl.md) , [Std RecentFiles](Std_RecentFiles.md) , [Std RecentFiles/pl](Std_RecentFiles/pl.md) , [Std Redo](Std_Redo.md) , [Std Redo/pl](Std_Redo/pl.md) , [Std Refresh](Std_Refresh.md) , [Std Refresh/pl](Std_Refresh/pl.md) , [Std Revert](Std_Revert.md) , [Std Revert/pl](Std_Revert/pl.md) , [Std Save](Std_Save.md) , [Std Save/pl](Std_Save/pl.md) , [Std SaveAll](Std_SaveAll.md) , [Std SaveAll/pl](Std_SaveAll/pl.md) , [Std SaveAs](Std_SaveAs.md) , [Std SaveAs/pl](Std_SaveAs/pl.md) , [Std SaveCopy](Std_SaveCopy.md) , [Std SaveCopy/pl](Std_SaveCopy/pl.md) , [Std SceneInspector](Std_SceneInspector.md) , [Std SceneInspector/pl](Std_SceneInspector/pl.md) , [Std SelBack](Std_SelBack.md) , [Std SelBack/pl](Std_SelBack/pl.md) , [Std SelBoundingBox](Std_SelBoundingBox.md) , [Std SelBoundingBox/pl](Std_SelBoundingBox/pl.md) , [Std SelectAll](Std_SelectAll.md) , [Std SelectAll/pl](Std_SelectAll/pl.md) , [Std SelectVisibleObjects](Std_SelectVisibleObjects.md) , [Std SelForward](Std_SelForward.md) , [Std SelForward/pl](Std_SelForward/pl.md) , [Std SendToPythonConsole](Std_SendToPythonConsole.md) , [Std SendToPythonConsole/pl](Std_SendToPythonConsole/pl.md) , [Std SetAppearance](Std_SetAppearance.md) , [Std SetAppearance/pl](Std_SetAppearance/pl.md) , [Std ShowObjects](Std_ShowObjects.md) , [Std ShowSelection](Std_ShowSelection.md) , [Std TextDocument](Std_TextDocument.md) , [Std TextureMapping](Std_TextureMapping.md) , [Std TextureMapping/pl](Std_TextureMapping/pl.md) , [Std TileWindows](Std_TileWindows.md) , [Std TileWindows/pl](Std_TileWindows/pl.md) , [Std ToggleBreakpoint](Std_ToggleBreakpoint.md) , [Std ToggleClipPlane](Std_ToggleClipPlane.md) , [Std ToggleClipPlane/pl](Std_ToggleClipPlane/pl.md) , [Std ToggleNavigation](Std_ToggleNavigation.md) , [Std ToggleNavigation/pl](Std_ToggleNavigation/pl.md) , [Std ToggleObjects](Std_ToggleObjects.md) , [Std ToggleSelectability](Std_ToggleSelectability.md) , [Std ToggleVisibility](Std_ToggleVisibility.md) , [Std ToggleVisibility/pl](Std_ToggleVisibility/pl.md) , [Std Tools Menu](Std_Tools_Menu.md) , [Std Tools Menu/pl](Std_Tools_Menu/pl.md) , [Std TransformManip](Std_TransformManip.md) , [Std TransformManip/pl](Std_TransformManip/pl.md) , [Std TreeCollapseDocument](Std_TreeCollapseDocument.md) , [Std TreeDrag](Std_TreeDrag.md) , [Std TreeMultiDocument](Std_TreeMultiDocument.md) , [Std TreePreSelection](Std_TreePreSelection.md) , [Std TreeRecordSelection](Std_TreeRecordSelection.md) , [Std TreeSelection](Std_TreeSelection.md) , [Std TreeSingleDocument](Std_TreeSingleDocument.md) , [Std TreeSyncPlacement](Std_TreeSyncPlacement.md) , [Std TreeSyncSelection](Std_TreeSyncSelection.md) , [Std TreeSyncView](Std_TreeSyncView.md) , [Std Undo](Std_Undo.md) , [Std Undo/pl](Std_Undo/pl.md) , [Std UnitsCalculator](Std_UnitsCalculator.md) , [Std UserEditMode](Std_UserEditMode.md) , [Std View Menu](Std_View_Menu.md) , [Std View Menu/pl](Std_View_Menu/pl.md) , [Std ViewBottom](Std_ViewBottom.md) , [Std ViewBoxZoom](Std_ViewBoxZoom.md) , [Std ViewCreate](Std_ViewCreate.md) , [Std ViewCreate/pl](Std_ViewCreate/pl.md) , [Std ViewDimetric](Std_ViewDimetric.md) , [Std ViewDockUndockFullscreen](Std_ViewDockUndockFullscreen.md) , [Std ViewFitAll](Std_ViewFitAll.md) , [Std ViewFitAll/pl](Std_ViewFitAll/pl.md) , [Std ViewFitSelection](Std_ViewFitSelection.md) , [Std ViewFront](Std_ViewFront.md) , [Std ViewFullscreen](Std_ViewFullscreen.md) , [Std ViewHome](Std_ViewHome.md) , [Std ViewIsometric](Std_ViewIsometric.md) , [Std ViewIvIssueCamPos](Std_ViewIvIssueCamPos.md) , [Std ViewIvStereoInterleavedColumns](Std_ViewIvStereoInterleavedColumns.md) , [Std ViewIvStereoInterleavedRows](Std_ViewIvStereoInterleavedRows.md) , [Std ViewIvStereoOff](Std_ViewIvStereoOff.md) , [Std ViewIvStereoQuadBuff](Std_ViewIvStereoQuadBuff.md) , [Std ViewIvStereoRedGreen](Std_ViewIvStereoRedGreen.md) , [Std ViewLeft](Std_ViewLeft.md) , [Std ViewRear](Std_ViewRear.md) , [Std ViewRight](Std_ViewRight.md) , [Std ViewRotateLeft](Std_ViewRotateLeft.md) , [Std ViewRotateRight](Std_ViewRotateRight.md) , [Std ViewScreenShot](Std_ViewScreenShot.md) , [Std ViewScreenShot/pl](Std_ViewScreenShot/pl.md) , [Std ViewStatusBar](Std_ViewStatusBar.md) , [Std ViewStatusBar/pl](Std_ViewStatusBar/pl.md) , [Std ViewTop](Std_ViewTop.md) , [Std ViewTrimetric](Std_ViewTrimetric.md) , [Std ViewZoomIn](Std_ViewZoomIn.md) , [Std ViewZoomOut](Std_ViewZoomOut.md) , [Std WhatsThis](Std_WhatsThis.md) , [Std WhatsThis/pl](Std_WhatsThis/pl.md) , [Std Windows](Std_Windows.md) , [Std Windows Menu](Std_Windows_Menu.md) , [Std Windows Menu/pl](Std_Windows_Menu/pl.md) , [Std Windows/pl](Std_Windows/pl.md) , [Std Workbench](Std_Workbench.md) , [Std Workbench/pl](Std_Workbench/pl.md) , [Tree view](Tree_view.md) , [Tree view/pl](Tree_view/pl.md) , [View Measure Clear All](View_Measure_Clear_All.md) , [View Measure Toggle All](View_Measure_Toggle_All.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Std Base diff --git a/wiki/Category:Surface.md b/wiki/Category:Surface.md index 63822bdeb3..19be06159e 100644 --- a/wiki/Category:Surface.md +++ b/wiki/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench](Surface_Workbench.m [Artwork Surface](Artwork_Surface.md) , [Surface CurveOnMesh](Surface_CurveOnMesh.md) , [Surface ExtendFace](Surface_ExtendFace.md) , [Surface Filling](Surface_Filling.md) , [Surface GeomFillSurface](Surface_GeomFillSurface.md) , [Surface Sections](Surface_Sections.md) , [Template:Surface Tools navi](Template:Surface_Tools_navi.md) , [Surface Workbench](Surface_Workbench.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Surface diff --git a/wiki/Category:TechDraw.md b/wiki/Category:TechDraw.md index 82e346b9a8..64f537d6e7 100644 --- a/wiki/Category:TechDraw.md +++ b/wiki/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench](TechDraw_Workbench [Advanced TechDraw Tutorial](Advanced_TechDraw_Tutorial.md) , [Artwork TechDraw](Artwork_TechDraw.md) , [Basic TechDraw Tutorial](Basic_TechDraw_Tutorial.md) , [Bitmap](Bitmap.md) , [Drawing](Drawing.md) , [DXF](DXF.md) , [Measurement Of Angles On Holes](Measurement_Of_Angles_On_Holes.md) , [Sandbox:TechDraw template creation tutorial](Sandbox:TechDraw_template_creation_tutorial.md) , [SVG](SVG.md) , [TechDraw 2LineCenterLine](TechDraw_2LineCenterLine.md) , [TechDraw 2PointCenterLine](TechDraw_2PointCenterLine.md) , [TechDraw 2PointCosmeticLine](TechDraw_2PointCosmeticLine.md) , [TechDraw 3PtAngleDimension](TechDraw_3PtAngleDimension.md) , [TechDraw ActiveView](TechDraw_ActiveView.md) , [TechDraw AngleDimension](TechDraw_AngleDimension.md) , [TechDraw Annotation](TechDraw_Annotation.md) , [TechDraw API](TechDraw_API.md) , [TechDraw ArchView](TechDraw_ArchView.md) , [TechDraw Balloon](TechDraw_Balloon.md) , [TechDraw ClipGroup](TechDraw_ClipGroup.md) , [TechDraw ClipGroupAdd](TechDraw_ClipGroupAdd.md) , [TechDraw ClipGroupRemove](TechDraw_ClipGroupRemove.md) , [TechDraw CosmeticEraser](TechDraw_CosmeticEraser.md) , [TechDraw CosmeticVertex](TechDraw_CosmeticVertex.md) , [TechDraw DecorateLine](TechDraw_DecorateLine.md) , [TechDraw DetailView](TechDraw_DetailView.md) , [TechDraw DiameterDimension](TechDraw_DiameterDimension.md) , [TechDraw DraftView](TechDraw_DraftView.md) , [TechDraw ExportPageDXF](TechDraw_ExportPageDXF.md) , [TechDraw ExportPageSVG](TechDraw_ExportPageSVG.md) , [TechDraw ExtensionCircleCenterLines](TechDraw_ExtensionCircleCenterLines.md) , [TechDraw ExtensionThreadBoltBottom](TechDraw_ExtensionThreadBoltBottom.md) , [TechDraw ExtensionThreadBoltSide](TechDraw_ExtensionThreadBoltSide.md) , [TechDraw ExtensionThreadHoleBottom](TechDraw_ExtensionThreadHoleBottom.md) , [TechDraw ExtensionThreadHoleSide](TechDraw_ExtensionThreadHoleSide.md) , [TechDraw FaceCenterLine](TechDraw_FaceCenterLine.md) , [TechDraw Geometric dimensioning and tolerancing](TechDraw_Geometric_dimensioning_and_tolerancing.md) , [TechDraw GeometricHatch](TechDraw_GeometricHatch.md) , [TechDraw Hatch](TechDraw_Hatch.md) , [TechDraw Hatching](TechDraw_Hatching.md) , [TechDraw HorizontalDimension](TechDraw_HorizontalDimension.md) , [TechDraw HorizontalExtentDimension](TechDraw_HorizontalExtentDimension.md) , [TechDraw HowTo Page](TechDraw_HowTo_Page.md) , [TechDraw Image](TechDraw_Image.md) , [TechDraw LandmarkDimension](TechDraw_LandmarkDimension.md) , [TechDraw LeaderLine](TechDraw_LeaderLine.md) , [TechDraw LengthDimension](TechDraw_LengthDimension.md) , [TechDraw LineGroup](TechDraw_LineGroup.md) , [TechDraw LinkDimension](TechDraw_LinkDimension.md) , [TechDraw Midpoints](TechDraw_Midpoints.md) , [TechDraw PageDefault](TechDraw_PageDefault.md) , [TechDraw PageTemplate](TechDraw_PageTemplate.md) , [TechDraw pitch circle tutorial](TechDraw_pitch_circle_tutorial.md) , [TechDraw Preferences](TechDraw_Preferences.md) , [TechDraw ProjectionGroup](TechDraw_ProjectionGroup.md) , [TechDraw Quadrants](TechDraw_Quadrants.md) , [TechDraw RadiusDimension](TechDraw_RadiusDimension.md) , [TechDraw RedrawPage](TechDraw_RedrawPage.md) , [TechDraw RichTextAnnotation](TechDraw_RichTextAnnotation.md) , [TechDraw Roadmap](TechDraw_Roadmap.md) , [TechDraw SectionView](TechDraw_SectionView.md) , [TechDraw ShowAll](TechDraw_ShowAll.md) , [TechDraw SpreadsheetView](TechDraw_SpreadsheetView.md) , [TechDraw Symbol](TechDraw_Symbol.md) , [TechDraw TemplateHowTo](TechDraw_TemplateHowTo.md) , [TechDraw Templates](TechDraw_Templates.md) , [TechDraw ToggleFrame](TechDraw_ToggleFrame.md) , [Template:TechDraw Tools navi](Template:TechDraw_Tools_navi.md) , [TechDraw VerticalDimension](TechDraw_VerticalDimension.md) , [TechDraw VerticalExtentDimension](TechDraw_VerticalExtentDimension.md) , [TechDraw View](TechDraw_View.md) , [TechDraw WeldSymbol](TechDraw_WeldSymbol.md) , [TechDraw Workbench](TechDraw_Workbench.md) , [TechDrawGui API](TechDrawGui_API.md) , [Tolerancing](Tolerancing.md) , [Topological naming problem](Topological_naming_problem.md) , [Tutorial for open windows](Tutorial_for_open_windows.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:TechDraw diff --git a/wiki/Category:Template.md b/wiki/Category:Template.md index 9b39349f97..70ccdf1cae 100644 --- a/wiki/Category:Template.md +++ b/wiki/Category:Template.md @@ -8,3 +8,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md). [Template:=](Template:=.md) , [Template:Docnav](Template:Docnav.md) , [Template:GuiCommand](Template:GuiCommand.md) , [Template:GuiCommand/bg](Template:GuiCommand/bg.md) , [Template:GuiCommand/cs](Template:GuiCommand/cs.md) , [Template:GuiCommand/de](Template:GuiCommand/de.md) , [Template:GuiCommand/en](Template:GuiCommand/en.md) , [Template:GuiCommand/es](Template:GuiCommand/es.md) , [Template:GuiCommand/fr](Template:GuiCommand/fr.md) , [Template:GuiCommand/hr](Template:GuiCommand/hr.md) , [Template:GuiCommand/id](Template:GuiCommand/id.md) , [Template:GuiCommand/it](Template:GuiCommand/it.md) , [Template:GuiCommand/ko](Template:GuiCommand/ko.md) , [Template:GuiCommand/pl](Template:GuiCommand/pl.md) , [Template:GuiCommand/pt](Template:GuiCommand/pt.md) , [Template:GuiCommand/pt-br](Template:GuiCommand/pt-br.md) , [Template:GuiCommand/ro](Template:GuiCommand/ro.md) , [Template:GuiCommand/ru](Template:GuiCommand/ru.md) , [Template:GuiCommand/sv](Template:GuiCommand/sv.md) , [Template:GuiCommand/tr](Template:GuiCommand/tr.md) , [Template:GuiCommand/uk](Template:GuiCommand/uk.md) , [Template:GuiCommand/zh](Template:GuiCommand/zh.md) , [Template:GuiCommand/zh-cn](Template:GuiCommand/zh-cn.md) , [Template:GuiCommand/zh-tw](Template:GuiCommand/zh-tw.md) , [Template:GuiCommandAddon](Template:GuiCommandAddon.md) , [Template:GuiCommandAddon/pl](Template:GuiCommandAddon/pl.md) , [Template:TOCleft](Template:TOCleft.md) , [Template:TOCright](Template:TOCright.md) , [Template:Top](Template:Top.md) , [Template:TutorialInfo](Template:TutorialInfo.md) , [Template:TutorialInfo/cs](Template:TutorialInfo/cs.md) , [Template:TutorialInfo/de](Template:TutorialInfo/de.md) , [Template:TutorialInfo/en](Template:TutorialInfo/en.md) , [Template:TutorialInfo/es](Template:TutorialInfo/es.md) , [Template:TutorialInfo/fr](Template:TutorialInfo/fr.md) , [Template:TutorialInfo/hr](Template:TutorialInfo/hr.md) , [Template:TutorialInfo/id](Template:TutorialInfo/id.md) , [Template:TutorialInfo/it](Template:TutorialInfo/it.md) , [Template:TutorialInfo/pl](Template:TutorialInfo/pl.md) , [Template:TutorialInfo/pt](Template:TutorialInfo/pt.md) , [Template:TutorialInfo/pt-br](Template:TutorialInfo/pt-br.md) , [Template:TutorialInfo/ro](Template:TutorialInfo/ro.md) , [Template:TutorialInfo/ru](Template:TutorialInfo/ru.md) , [Template:TutorialInfo/sv](Template:TutorialInfo/sv.md) , [Template:TutorialInfo/tr](Template:TutorialInfo/tr.md) , [Template:TutorialInfo/uk](Template:TutorialInfo/uk.md) , [Template:TutorialInfo/zh](Template:TutorialInfo/zh.md) , [Template:TutorialInfo/zh-cn](Template:TutorialInfo/zh-cn.md) , [Template:TutorialInfo/zh-hant](Template:TutorialInfo/zh-hant.md) , [Template:TutorialInfo/zh-tw](Template:TutorialInfo/zh-tw.md) , , , , , , , , , [Category:Categories](Category:Categories.md) [Category:Template:Doc](Category:Template:Doc.md) [Category:Template:Effect](Category:Template:Effect.md) [Category:Template:Image](Category:Template:Image.md) [Category:Template:Navigation](Category:Template:Navigation.md) [Category:Template:Navigation/it](Category:Template:Navigation/it.md) [Category:Template:Text](Category:Template:Text.md) [Category:Template:Text Box](Category:Template:Text_Box.md) [Category:Template:Text Format](Category:Template:Text_Format.md) [Category:Template:Text Long](Category:Template:Text_Long.md) + +--- +[documentation index](../README.md) > Category:Template diff --git a/wiki/Category:Template:Doc.md b/wiki/Category:Template:Doc.md index c96b004729..a2b4e226f7 100644 --- a/wiki/Category:Template:Doc.md +++ b/wiki/Category:Template:Doc.md @@ -6,3 +6,6 @@ This category lists templates that produce text boxes used for documenting comma [Template:GuiCommand](Template:GuiCommand.md) , [Template:GuiCommand/bg](Template:GuiCommand/bg.md) , [Template:GuiCommand/cs](Template:GuiCommand/cs.md) , [Template:GuiCommand/de](Template:GuiCommand/de.md) , [Template:GuiCommand/en](Template:GuiCommand/en.md) , [Template:GuiCommand/es](Template:GuiCommand/es.md) , [Template:GuiCommand/fr](Template:GuiCommand/fr.md) , [Template:GuiCommand/hr](Template:GuiCommand/hr.md) , [Template:GuiCommand/id](Template:GuiCommand/id.md) , [Template:GuiCommand/it](Template:GuiCommand/it.md) , [Template:GuiCommand/ko](Template:GuiCommand/ko.md) , [Template:GuiCommand/pl](Template:GuiCommand/pl.md) , [Template:GuiCommand/pt](Template:GuiCommand/pt.md) , [Template:GuiCommand/pt-br](Template:GuiCommand/pt-br.md) , [Template:GuiCommand/ro](Template:GuiCommand/ro.md) , [Template:GuiCommand/ru](Template:GuiCommand/ru.md) , [Template:GuiCommand/sv](Template:GuiCommand/sv.md) , [Template:GuiCommand/tr](Template:GuiCommand/tr.md) , [Template:GuiCommand/uk](Template:GuiCommand/uk.md) , [Template:GuiCommand/zh](Template:GuiCommand/zh.md) , [Template:GuiCommand/zh-cn](Template:GuiCommand/zh-cn.md) , [Template:GuiCommand/zh-tw](Template:GuiCommand/zh-tw.md) , [Template:GuiCommandAddon](Template:GuiCommandAddon.md) , [Template:GuiCommandAddon/pl](Template:GuiCommandAddon/pl.md) , [Template:Macro](Template:Macro.md) , [Template:Macro/pl](Template:Macro/pl.md) , [Help:Transclusion demo](Help:Transclusion_demo.md) , [Template:Transclusion demo](Template:Transclusion_demo.md) , [Template:TutorialInfo](Template:TutorialInfo.md) , [Template:TutorialInfo/cs](Template:TutorialInfo/cs.md) , [Template:TutorialInfo/de](Template:TutorialInfo/de.md) , [Template:TutorialInfo/en](Template:TutorialInfo/en.md) , [Template:TutorialInfo/es](Template:TutorialInfo/es.md) , [Template:TutorialInfo/fr](Template:TutorialInfo/fr.md) , [Template:TutorialInfo/hr](Template:TutorialInfo/hr.md) , [Template:TutorialInfo/id](Template:TutorialInfo/id.md) , [Template:TutorialInfo/it](Template:TutorialInfo/it.md) , [Template:TutorialInfo/pl](Template:TutorialInfo/pl.md) , [Template:TutorialInfo/pt](Template:TutorialInfo/pt.md) , [Template:TutorialInfo/pt-br](Template:TutorialInfo/pt-br.md) , [Template:TutorialInfo/ro](Template:TutorialInfo/ro.md) , [Template:TutorialInfo/ru](Template:TutorialInfo/ru.md) , [Template:TutorialInfo/sv](Template:TutorialInfo/sv.md) , [Template:TutorialInfo/tr](Template:TutorialInfo/tr.md) , [Template:TutorialInfo/uk](Template:TutorialInfo/uk.md) , [Template:TutorialInfo/zh](Template:TutorialInfo/zh.md) , [Template:TutorialInfo/zh-cn](Template:TutorialInfo/zh-cn.md) , [Template:TutorialInfo/zh-hant](Template:TutorialInfo/zh-hant.md) , [Template:TutorialInfo/zh-tw](Template:TutorialInfo/zh-tw.md) [Category:Template](Category:Template.md) + +--- +[documentation index](../README.md) > Category:Template:Doc diff --git a/wiki/Category:Template:Effect.md b/wiki/Category:Template:Effect.md index b14ca1871b..0e24f50b53 100644 --- a/wiki/Category:Template:Effect.md +++ b/wiki/Category:Template:Effect.md @@ -6,3 +6,6 @@ This category lists templates that produce an effect in the page without necessa [Template:Anchor](Template:Anchor.md) , [Template:Clear](Template:Clear.md) , [Template:Gloss](Template:Gloss.md) , [Template:Glossend](Template:Glossend.md) , [Template:Prettytable](Template:Prettytable.md) , [Template:Softredirect](Template:Softredirect.md) , [Template:TOCleft](Template:TOCleft.md) , [Template:TOCright](Template:TOCright.md) [Category:Template](Category:Template.md) + +--- +[documentation index](../README.md) > Category:Template:Effect diff --git a/wiki/Category:Template:Image.md b/wiki/Category:Template:Image.md index b9884fd2f9..bb96ec2751 100644 --- a/wiki/Category:Template:Image.md +++ b/wiki/Category:Template:Image.md @@ -6,3 +6,6 @@ This category lists templates that add images. [Template:Booksbox](Template:Booksbox.md) , [Template:En](Template:En.md) , [Template:Screenshot](Template:Screenshot.md) [Category:Template](Category:Template.md) + +--- +[documentation index](../README.md) > Category:Template:Image diff --git a/wiki/Category:Template:Navigation.md b/wiki/Category:Template:Navigation.md index 9ee6885d65..277313c028 100644 --- a/wiki/Category:Template:Navigation.md +++ b/wiki/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi](Template:Arch_Tools_navi.md) , [Template:Artwork](Template:Artwork.md) , [Template:Artwork/ru](Template:Artwork/ru.md) , [Template:Docnav](Template:Docnav.md) , [Template:Document objects navi](Template:Document_objects_navi.md) , [Template:Draft Tools navi](Template:Draft_Tools_navi.md) , [Template:Drawing Tools navi](Template:Drawing_Tools_navi.md) , [Template:EM Tools navi](Template:EM_Tools_navi.md) , [Template:FEM Tools navi](Template:FEM_Tools_navi.md) , [Template:FEM Tools navi/pl](Template:FEM_Tools_navi/pl.md) , [Template:Image Tools navi](Template:Image_Tools_navi.md) , [Template:Interface navi](Template:Interface_navi.md) , [Template:Mesh Tools navi](Template:Mesh_Tools_navi.md) , [Template:Navigation menu 2](Template:Navigation_menu_2.md) , [Template:OpenSCAD Tools navi](Template:OpenSCAD_Tools_navi.md) , [Template:Part Tools navi](Template:Part_Tools_navi.md) , [Template:Part Tools navi/en](Template:Part_Tools_navi/en.md) , [Template:PartDesign Tools navi](Template:PartDesign_Tools_navi.md) , [Template:Path Tools navi](Template:Path_Tools_navi.md) , [Template:Plot Tools navi](Template:Plot_Tools_navi.md) , [Template:Plot Tools navi/pl](Template:Plot_Tools_navi/pl.md) , [Template:Points Tools navi](Template:Points_Tools_navi.md) , [Template:Powerdocnavi](Template:Powerdocnavi.md) , [Template:Raytracing Tools navi](Template:Raytracing_Tools_navi.md) , [Template:Robot Tools navi](Template:Robot_Tools_navi.md) , [Template:Ship Tools navi](Template:Ship_Tools_navi.md) , [Template:Sketcher Tools navi](Template:Sketcher_Tools_navi.md) , [Template:Spreadsheet Tools navi](Template:Spreadsheet_Tools_navi.md) , [Template:Start Tools navi](Template:Start_Tools_navi.md) , [Template:Std Base navi](Template:Std_Base_navi.md) , [Template:Surface Tools navi](Template:Surface_Tools_navi.md) , [Template:TechDraw Tools navi](Template:TechDraw_Tools_navi.md) , [Template:Top](Template:Top.md) , [Template:Tutorials navi](Template:Tutorials_navi.md) , [Template:Userdocnavi](Template:Userdocnavi.md) [Category:Template](Category:Template.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation diff --git a/wiki/Category:Template:Text.md b/wiki/Category:Template:Text.md index 4218dec396..6c045ddb42 100644 --- a/wiki/Category:Template:Text.md +++ b/wiki/Category:Template:Text.md @@ -10,3 +10,6 @@ Longer pieces of text should be placed in the page itself so that they are trans [Template:!](Template:!.md) , [Template:Development-Version](Template:Development-Version.md) , [Template:FALSE](Template:FALSE.md) , [Template:False](Template:False.md) , [Template:FALSE/pl](Template:FALSE/pl.md) , [Template:False/pl](Template:False/pl.md) , [Template:Obsolete](Template:Obsolete.md) , [Template:Obsolete/es](Template:Obsolete/es.md) , [Template:Obsolete/ru](Template:Obsolete/ru.md) , [Template:Stable-Major-and-Minor-Version](Template:Stable-Major-and-Minor-Version.md) , [Template:Stable-Version](Template:Stable-Version.md) , [Template:TRUE](Template:TRUE.md) , [Template:True](Template:True.md) , [Template:TRUE/pl](Template:TRUE/pl.md) , [Template:True/pl](Template:True/pl.md) , [Template:Version](Template:Version.md) , [Template:Version/ko](Template:Version/ko.md) , [Template:Version/ru](Template:Version/ru.md) , [Template:VersionMinus](Template:VersionMinus.md) , [Template:VersionMinus/es](Template:VersionMinus/es.md) , [Template:VersionMinus/ru](Template:VersionMinus/ru.md) , [Template:VersionPlus](Template:VersionPlus.md) , [Template:VersionPlus/es](Template:VersionPlus/es.md) , [Template:VersionPlus/ru](Template:VersionPlus/ru.md) [Category:Template](Category:Template.md) + +--- +[documentation index](../README.md) > Category:Template:Text diff --git a/wiki/Category:Template:Text_Box.md b/wiki/Category:Template:Text_Box.md index 2d414d2dc4..0320c2cce7 100644 --- a/wiki/Category:Template:Text_Box.md +++ b/wiki/Category:Template:Text_Box.md @@ -8,3 +8,6 @@ These templates produce small pieces of text that are suitable for transclusion. [Template:BIMTutorialAction](Template:BIMTutorialAction.md) , [Template:Click](Template:Click.md) , [Template:CodeDownload](Template:CodeDownload.md) , [Template:Codeextralink](Template:Codeextralink.md) , [Template:Codeextralink/fr](Template:Codeextralink/fr.md) , [Template:Collapsible](Template:Collapsible.md) , [Template:Disambig](Template:Disambig.md) , [Template:Download](Template:Download.md) , [Template:DownloadMacStable](Template:DownloadMacStable.md) , [Template:DownloadUnixStable](Template:DownloadUnixStable.md) , [Template:DownloadWindowsStable](Template:DownloadWindowsStable.md) , [Template:Footnote](Template:Footnote.md) , [Template:Hidden begin](Template:Hidden_begin.md) , [Template:Languages](Template:Languages.md) , [Template:Languages-top](Template:Languages-top.md) , [Template:Mantisbox](Template:Mantisbox.md) , [Template:Menu](Template:Menu.md) , [Template:Newsbox](Template:Newsbox.md) , [Template:Note](Template:Note.md) , [Template:Page in progress](Template:Page_in_progress.md) , [Template:Page in progress/pl](Template:Page_in_progress/pl.md) , [Template:Ref](Template:Ref.md) , [Template:Rightbox](Template:Rightbox.md) , [Template:Rightspacer](Template:Rightspacer.md) , [Template:UnfinishedDocu](Template:UnfinishedDocu.md) , [Template:Work in progress](Template:Work_in_progress.md) [Category:Template](Category:Template.md) + +--- +[documentation index](../README.md) > Category:Template:Text Box diff --git a/wiki/Category:Template:Text_Format.md b/wiki/Category:Template:Text_Format.md index 91598a0473..0947f8578e 100644 --- a/wiki/Category:Template:Text_Format.md +++ b/wiki/Category:Template:Text_Format.md @@ -6,3 +6,6 @@ This category lists templates that format text given as input. [Template:APIClass](Template:APIClass.md) , [Template:APIClass b](Template:APIClass_b.md) , [Template:APIFunction](Template:APIFunction.md) , [Template:APIFunction b](Template:APIFunction_b.md) , [Template:APIProperty](Template:APIProperty.md) , [Template:ASCII](Template:ASCII.md) , [Template:Button](Template:Button.md) , [Template:Caption](Template:Caption.md) , [Template:CaptionTest](Template:CaptionTest.md) , [Template:CheckBox](Template:CheckBox.md) , [Template:Choice](Template:Choice.md) , [Template:Code](Template:Code.md) , [Template:ColoredParagraph](Template:ColoredParagraph.md) , [Template:ColoredText](Template:ColoredText.md) , [Template:ComboBox](Template:ComboBox.md) , [Template:DASH](Template:DASH.md) , [Template:Defn](Template:Defn.md) , [Template:Emphasis](Template:Emphasis.md) , [Template:Fake heading](Template:Fake_heading.md) , [Template:FileName](Template:FileName.md) , [Template:Incode](Template:Incode.md) , [Template:KEY](Template:KEY.md) , [Template:MacroCode](Template:MacroCode.md) , [Template:MacroLink](Template:MacroLink.md) , [Template:MacroLink/cs](Template:MacroLink/cs.md) , [Template:MacroLink/es](Template:MacroLink/es.md) , [Template:MacroLink/fr](Template:MacroLink/fr.md) , [Template:MacroLink/it](Template:MacroLink/it.md) , [Template:MacroLink/sv](Template:MacroLink/sv.md) , [Template:Mario52](Template:Mario52.md) , [Template:MenuCommand](Template:MenuCommand.md) , [Template:Message](Template:Message.md) , [Template:Optional](Template:Optional.md) , [Template:Properties Title](Template:Properties_Title.md) , [Template:Properties Title/pl](Template:Properties_Title/pl.md) , [Template:PropertyData](Template:PropertyData.md) , [Template:PropertyTasks](Template:PropertyTasks.md) , [Template:PropertyView](Template:PropertyView.md) , [Template:Quote](Template:Quote.md) , [Template:RadioButton](Template:RadioButton.md) , [Template:SpinBox](Template:SpinBox.md) , [Template:StdMenu](Template:StdMenu.md) , [Template:SystemInput](Template:SystemInput.md) , [Template:SystemOutput](Template:SystemOutput.md) , [Template:Term](Template:Term.md) , [Template:TitleTasks](Template:TitleTasks.md) , [Template:URL](Template:URL.md) , [Template:URLn](Template:URLn.md) , [Template:Value](Template:Value.md) , [Template:Variable](Template:Variable.md) , [Template:VeryImportantMessage](Template:VeryImportantMessage.md) [Category:Template](Category:Template.md) + +--- +[documentation index](../README.md) > Category:Template:Text Format diff --git a/wiki/Category:Template:Text_Long.md b/wiki/Category:Template:Text_Long.md index 1273044e1e..2eeb7a61f4 100644 --- a/wiki/Category:Template:Text_Long.md +++ b/wiki/Category:Template:Text_Long.md @@ -10,3 +10,6 @@ These long pages should not be transcluded; rather, the information should be pl [Template:Blender Navigation](Template:Blender_Navigation.md) , [Template:Blender Navigation 2](Template:Blender_Navigation_2.md) , [Template:CAD Navigation](Template:CAD_Navigation.md) , [Template:CAD Navigation 2](Template:CAD_Navigation_2.md) , [Template:Gesture Navigation](Template:Gesture_Navigation.md) , [Template:Gesture Navigation 2](Template:Gesture_Navigation_2.md) , [Template:Inventor Navigation 2](Template:Inventor_Navigation_2.md) , [Template:MayaGesture Navigation](Template:MayaGesture_Navigation.md) , [Template:MayaGesture Navigation 2](Template:MayaGesture_Navigation_2.md) , [Template:OpenCascade Navigation](Template:OpenCascade_Navigation.md) , [Template:OpenInventor Navigation](Template:OpenInventor_Navigation.md) , [Template:Revit Navigation](Template:Revit_Navigation.md) , [Template:Touchpad Navigation](Template:Touchpad_Navigation.md) , [Template:Touchpad Navigation 2](Template:Touchpad_Navigation_2.md) [Category:Template](Category:Template.md) + +--- +[documentation index](../README.md) > Category:Template:Text Long diff --git a/wiki/Category:Test_Framework.md b/wiki/Category:Test_Framework.md index 83787c730a..47d7423b08 100644 --- a/wiki/Category:Test_Framework.md +++ b/wiki/Category:Test_Framework.md @@ -6,3 +6,6 @@ This category lists pages related to the [Test Framework Workbench](Test_Framewo [Testing](Testing.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > Category:Test Framework diff --git a/wiki/Category:Testing.md b/wiki/Category:Testing.md index 859c737132..fa85af6cd1 100644 --- a/wiki/Category:Testing.md +++ b/wiki/Category:Testing.md @@ -6,3 +6,6 @@ Pages related to testing in regards to unit testing, continuous integration, qua [AppImage](AppImage.md) , [Continuous Integration](Continuous_Integration.md) , [LGTM](LGTM.md) , [Testing](Testing.md) , [Category:Test Framework](Category:Test_Framework.md) + +--- +[documentation index](../README.md) > Category:Testing diff --git a/wiki/Category:Tutorials.md b/wiki/Category:Tutorials.md index 2816862eea..0489bd8777 100644 --- a/wiki/Category:Tutorials.md +++ b/wiki/Category:Tutorials.md @@ -12,3 +12,6 @@ Please note which version of FreeCAD is used in the tutorial. Some tutorials may [Add A Button In FEM Toolbar Tutorial](Add_A_Button_In_FEM_Toolbar_Tutorial.md) , [Add FEM constraint tutorial](Add_FEM_constraint_tutorial.md) , [Add FEM equation tutorial](Add_FEM_equation_tutorial.md) , [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mouse_navigation_option_to_FreeCAD.md) , [Advanced TechDraw Tutorial](Advanced_TechDraw_Tutorial.md) , [Aeroplane](Aeroplane.md) , [Analysis of reinforced concrete with FEM](Analysis_of_reinforced_concrete_with_FEM.md) , [Arch panel tutorial](Arch_panel_tutorial.md) , [Arch tutorial](Arch_tutorial.md) , [Basic Attachment Tutorial](Basic_Attachment_Tutorial.md) , [Basic Attachment Tutorial/en](Basic_Attachment_Tutorial/en.md) , [Basic Attachment Tutorial/fr](Basic_Attachment_Tutorial/fr.md) , [Basic Attachment Tutorial/it](Basic_Attachment_Tutorial/it.md) , [Basic Attachment Tutorial/pl](Basic_Attachment_Tutorial/pl.md) , [Basic modeling tutorial](Basic_modeling_tutorial.md) , [Basic Part Design Tutorial](Basic_Part_Design_Tutorial.md) , [Basic Sketcher Tutorial](Basic_Sketcher_Tutorial.md) , [Basic TechDraw Tutorial](Basic_TechDraw_Tutorial.md) , [Best Practices with SpreadSheets](Best_Practices_with_SpreadSheets.md) , [BIM ingame tutorial](BIM_ingame_tutorial.md) , [Creating a simple part with PartDesign](Creating_a_simple_part_with_PartDesign.md) , [Customize Toolbars](Customize_Toolbars.md) , [Template:DevWB](Template:DevWB.md) , [Draft ShapeString tutorial](Draft_ShapeString_tutorial.md) , [Draft tutorial](Draft_tutorial.md) , [Drawing Template HowTo](Drawing_Template_HowTo.md) , [Drawing tutorial](Drawing_tutorial.md) , [Dxf Importer Install](Dxf_Importer_Install.md) , [Engine Block Tutorial](Engine_Block_Tutorial.md) , [Export to STL or OBJ](Export_to_STL_or_OBJ.md) , [Extend FEM Module](Extend_FEM_Module.md) , [FEM Beginner tutorial](FEM_Beginner_tutorial.md) , [FEM CalculiX Cantilever 3D](FEM_CalculiX_Cantilever_3D.md) , [FEM Example Capacitance Two Balls](FEM_Example_Capacitance_Two_Balls.md) , [FEM Shear of a Composite Block](FEM_Shear_of_a_Composite_Block.md) , [FEM tutorial](FEM_tutorial.md) , [FEM Tutorial Python](FEM_Tutorial_Python.md) , [FreeCAD on video](FreeCAD_on_video.md) , [FreeCAD-Ship s60 tutorial](FreeCAD-Ship_s60_tutorial.md) , [FreeCAD-Ship s60 tutorial (II)](FreeCAD-Ship_s60_tutorial_(II).md) , [How to examine a fcstd file](How_to_examine_a_fcstd_file.md) , [How to install additional workbenches](How_to_install_additional_workbenches.md) , [How to install macros](How_to_install_macros.md) , [Import from STL or OBJ](Import_from_STL_or_OBJ.md) , [Import OpenSCAD code](Import_OpenSCAD_code.md) , [Import text and geometry from Inkscape](Import_text_and_geometry_from_Inkscape.md) , [Import/Export IFC - compiling IfcOpenShell](Import/Export_IFC_-_compiling_IfcOpenShell.md) , [Manual:BIM modeling](Manual:BIM_modeling.md) , [Manual:Creating FEM analyses](Manual:Creating_FEM_analyses.md) , [Manual:Creating renderings](Manual:Creating_renderings.md) , [Manual:Generating 2D drawings](Manual:Generating_2D_drawings.md) , [Manual:Generating 2D drawings/en](Manual:Generating_2D_drawings/en.md) , [Manual:Import and export to other filetypes](Manual:Import_and_export_to_other_filetypes.md) , [Manual:Installing](Manual:Installing.md) , [Manual:Modeling for product design](Manual:Modeling_for_product_design.md) , [Manual:Modeling for product design/en](Manual:Modeling_for_product_design/en.md) , [Manual:Parametric objects](Manual:Parametric_objects.md) , [Manual:Preparing models for 3D printing](Manual:Preparing_models_for_3D_printing.md) , [Manual:Traditional 2D drafting](Manual:Traditional_2D_drafting.md) , [Manual:Traditional modeling, the CSG way](Manual:Traditional_modeling,_the_CSG_way.md) , [Manual:Traditional modeling, the CSG way/en](Manual:Traditional_modeling,_the_CSG_way/en.md) , [Manual:Using spreadsheets](Manual:Using_spreadsheets.md) , [Manual:Using spreadsheets/en](Manual:Using_spreadsheets/en.md) , [Measurement Of Angles On Holes](Measurement_Of_Angles_On_Holes.md) , [Offsite tutorials](Offsite_tutorials.md) , [Part and PartDesign](Part_and_PartDesign.md) , [Part Loft Technical Details](Part_Loft_Technical_Details.md) , [PartDesign Bearingholder Tutorial I](PartDesign_Bearingholder_Tutorial_I.md) , [PartDesign Bearingholder Tutorial II](PartDesign_Bearingholder_Tutorial_II.md) , [PartDesign tutorial](PartDesign_tutorial.md) , [Path Walkthrough for the Impatient](Path_Walkthrough_for_the_Impatient.md) , [Plot Basic tutorial](Plot_Basic_tutorial.md) , [Plot MultiAxes tutorial](Plot_MultiAxes_tutorial.md) , [Post-Processing of FEM Results with Paraview](Post-Processing_of_FEM_Results_with_Paraview.md) , [Raytracing tutorial](Raytracing_tutorial.md) , [Robot 6-Axis](Robot_6-Axis.md) , [Robot tutorial](Robot_tutorial.md) , [Sandbox:Add FEM Solver Tutorial](Sandbox:Add_FEM_Solver_Tutorial.md) , [Sandbox:Hollow Cylinder Tutorial](Sandbox:Hollow_Cylinder_Tutorial.md) , [Sandbox:TechDraw template creation tutorial](Sandbox:TechDraw_template_creation_tutorial.md) , [Sandbox:TutorialArchBIM](Sandbox:TutorialArchBIM.md) , [Sandbox:TutorialBIMannex](Sandbox:TutorialBIMannex.md) , [Scripted Parts: Ball Bearing - Part 1](Scripted_Parts:_Ball_Bearing_-_Part_1.md) , [Scripted Parts: Ball Bearing - Part 2](Scripted_Parts:_Ball_Bearing_-_Part_2.md) , [Scripts](Scripts.md) , [Sketcher Micro Tutorial - Constraint Practices](Sketcher_Micro_Tutorial_-_Constraint_Practices.md) , [Sketcher reference](Sketcher_reference.md) , [Sketcher requirement for a sketch](Sketcher_requirement_for_a_sketch.md) , [Sketcher Tutorial](Sketcher_Tutorial.md) , [TechDraw HowTo Page](TechDraw_HowTo_Page.md) , [TechDraw pitch circle tutorial](TechDraw_pitch_circle_tutorial.md) , [TechDraw TemplateGenerator](TechDraw_TemplateGenerator.md) , [TechDraw TemplateHowTo](TechDraw_TemplateHowTo.md) , [Thread for Screw Tutorial](Thread_for_Screw_Tutorial.md) , [Toothbrush Head Stand](Toothbrush_Head_Stand.md) , [Transient FEM analysis](Transient_FEM_analysis.md) , [Tutorial custom placing of windows and doors](Tutorial_custom_placing_of_windows_and_doors.md) , [Tutorial for open windows](Tutorial_for_open_windows.md) , [Tutorial FreeCAD POV ray](Tutorial_FreeCAD_POV_ray.md) , [Tutorial guidelines](Tutorial_guidelines.md) , [Tutorial Render with Blender](Tutorial_Render_with_Blender.md) , [Template:TutorialInfo](Template:TutorialInfo.md) , [Tutorials](Tutorials.md) , [Video tutorials](Video_tutorials.md) , [Video tutorials for architectural design](Video_tutorials_for_architectural_design.md) , [Video tutorials for product design](Video_tutorials_for_product_design.md) , [Video tutorials obsolete](Video_tutorials_obsolete.md) , [VRML Preparation for Robot Simulation](VRML_Preparation_for_Robot_Simulation.md) , [Washers](Washers.md) , [Whiffle Ball tutorial](Whiffle_Ball_tutorial.md) , [Wikihouse porting tutorial](Wikihouse_porting_tutorial.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Tutorials diff --git a/wiki/Category:UnfinishedDocu.md b/wiki/Category:UnfinishedDocu.md index 7418aa7dbf..6db28e3970 100644 --- a/wiki/Category:UnfinishedDocu.md +++ b/wiki/Category:UnfinishedDocu.md @@ -6,3 +6,6 @@ This category contains all Unfinished Documents [A Beginner\'s Questions about Working on the Wiki](A_Beginner's_Questions_about_Working_on_the_Wiki.md) , [Animation Workbench](Animation_Workbench.md) , [Arch CompAxis](Arch_CompAxis.md) , [Arch CompPanel](Arch_CompPanel.md) , [Arch CompPipe](Arch_CompPipe.md) , [Arch CompSetMaterial](Arch_CompSetMaterial.md) , [Assembly3 ConstraintAlignment](Assembly3_ConstraintAlignment.md) , [Assembly3 ConstraintAngle](Assembly3_ConstraintAngle.md) , [Assembly3 ConstraintArcLineTangent](Assembly3_ConstraintArcLineTangent.md) , [Assembly3 ConstraintAttachment](Assembly3_ConstraintAttachment.md) , [Assembly3 ConstraintAxial](Assembly3_ConstraintAxial.md) , [Assembly3 ConstraintCoincidence](Assembly3_ConstraintCoincidence.md) , [Assembly3 ConstraintColinear](Assembly3_ConstraintColinear.md) , [Assembly3 ConstraintDiameter](Assembly3_ConstraintDiameter.md) , [Assembly3 ConstraintEqualAngle](Assembly3_ConstraintEqualAngle.md) , [Assembly3 ConstraintEqualLength](Assembly3_ConstraintEqualLength.md) , [Assembly3 ConstraintEqualLineArcLength](Assembly3_ConstraintEqualLineArcLength.md) , [Assembly3 ConstraintEqualPointLineDistance](Assembly3_ConstraintEqualPointLineDistance.md) , [Assembly3 ConstraintEqualRadius](Assembly3_ConstraintEqualRadius.md) , [Assembly3 ConstraintLengthDifference](Assembly3_ConstraintLengthDifference.md) , [Assembly3 ConstraintLengthEqualPointLineDistance](Assembly3_ConstraintLengthEqualPointLineDistance.md) , [Assembly3 ConstraintLengthRatio](Assembly3_ConstraintLengthRatio.md) , [Assembly3 ConstraintLineHorizontal](Assembly3_ConstraintLineHorizontal.md) , [Assembly3 ConstraintLineLength](Assembly3_ConstraintLineLength.md) , [Assembly3 ConstraintLineVertical](Assembly3_ConstraintLineVertical.md) , [Assembly3 ConstraintLock](Assembly3_ConstraintLock.md) , [Assembly3 ConstraintMidPoint](Assembly3_ConstraintMidPoint.md) , [Assembly3 ConstraintMultiParallel](Assembly3_ConstraintMultiParallel.md) , [Assembly3 ConstraintPerpendicular](Assembly3_ConstraintPerpendicular.md) , [Assembly3 ConstraintPointDistance](Assembly3_ConstraintPointDistance.md) , [Assembly3 ConstraintPointInPlane](Assembly3_ConstraintPointInPlane.md) , [Assembly3 ConstraintPointLineDistance](Assembly3_ConstraintPointLineDistance.md) , [Assembly3 ConstraintPointOnCircle](Assembly3_ConstraintPointOnCircle.md) , [Assembly3 ConstraintPointOnLine](Assembly3_ConstraintPointOnLine.md) , [Assembly3 ConstraintPointPlaneDistance](Assembly3_ConstraintPointPlaneDistance.md) , [Assembly3 ConstraintPointsCoincident](Assembly3_ConstraintPointsCoincident.md) , [Assembly3 ConstraintPointsDistance](Assembly3_ConstraintPointsDistance.md) , [Assembly3 ConstraintPointsHorizontal](Assembly3_ConstraintPointsHorizontal.md) , [Assembly3 ConstraintPointsProjectDistance](Assembly3_ConstraintPointsProjectDistance.md) , [Assembly3 ConstraintPointsSymmetric](Assembly3_ConstraintPointsSymmetric.md) , [Assembly3 ConstraintPointsVertical](Assembly3_ConstraintPointsVertical.md) , [Assembly3 ConstraintSameOrientation](Assembly3_ConstraintSameOrientation.md) , [Assembly3 ConstraintSketchPlane](Assembly3_ConstraintSketchPlane.md) , [Assembly3 ConstraintSymmetric](Assembly3_ConstraintSymmetric.md) , [Assembly3 ConstraintSymmetricHorizontal](Assembly3_ConstraintSymmetricHorizontal.md) , [Assembly3 ConstraintSymmetricLine](Assembly3_ConstraintSymmetricLine.md) , [Assembly3 ConstraintSymmetricVertical](Assembly3_ConstraintSymmetricVertical.md) , [Assembly3 CreateAssembly](Assembly3_CreateAssembly.md) , [Assembly3 CreateElement](Assembly3_CreateElement.md) , [Assembly3 GoToRelation](Assembly3_GoToRelation.md) , [Assembly3 GroupObjects](Assembly3_GroupObjects.md) , [Assembly3 ImportFromSTEP](Assembly3_ImportFromSTEP.md) , [Assembly3 ImportMultiDocument](Assembly3_ImportMultiDocument.md) , [Assembly3 MeasureAngle](Assembly3_MeasureAngle.md) , [Assembly3 MeasurePointLine](Assembly3_MeasurePointLine.md) , [Assembly3 MeasurePointPlane](Assembly3_MeasurePointPlane.md) , [Assembly3 MeasurePoints](Assembly3_MeasurePoints.md) , [BIM application compatibility table](BIM_application_compatibility_table.md) , [BIM ingame tutorial](BIM_ingame_tutorial.md) , [BIM Workbench](BIM_Workbench.md) , [BOLTSFC Workbench](BOLTSFC_Workbench.md) , [Compile on Docker](Compile_on_Docker.md) , [Compile on Docker/de](Compile_on_Docker/de.md) , [Compile on Docker/en](Compile_on_Docker/en.md) , [Compile on Docker/es](Compile_on_Docker/es.md) , [Compile on Docker/fr](Compile_on_Docker/fr.md) , [Compile on Docker/it](Compile_on_Docker/it.md) , [Compile on Docker/pl](Compile_on_Docker/pl.md) , [Compile on Docker/pt-br](Compile_on_Docker/pt-br.md) , [Compile on Docker/ru](Compile_on_Docker/ru.md) , [CurvedShapes Workbench](CurvedShapes_Workbench.md) , [Curves Pipeshell](Curves_Pipeshell.md) , [Curves SketchOnSurface](Curves_SketchOnSurface.md) , [Curves SplitCurve](Curves_SplitCurve.md) , [Curves Workbench](Curves_Workbench.md) , [Curves ZebraTool](Curves_ZebraTool.md) , [Developing FreeCAD with KDevelop](Developing_FreeCAD_with_KDevelop.md) , [Engine Block Tutorial](Engine_Block_Tutorial.md) , [FEM ClippingPlaneAdd](FEM_ClippingPlaneAdd.md) , [FEM ClippingPlaneRemoveAll](FEM_ClippingPlaneRemoveAll.md) , [FEM ConstantVacuumPermittivity](FEM_ConstantVacuumPermittivity.md) , [FEM ConstraintBearing](FEM_ConstraintBearing.md) , [FEM ConstraintBodyHeatSource](FEM_ConstraintBodyHeatSource.md) , [FEM ConstraintElectrostaticPotential](FEM_ConstraintElectrostaticPotential.md) , [FEM ConstraintFluidBoundary](FEM_ConstraintFluidBoundary.md) , [FEM ConstraintForce](FEM_ConstraintForce.md) , [FEM ConstraintGear](FEM_ConstraintGear.md) , [FEM ConstraintPulley](FEM_ConstraintPulley.md) , [FEM ConstraintSectionPrint](FEM_ConstraintSectionPrint.md) , [FEM ConstraintSpring](FEM_ConstraintSpring.md) , [FEM ConstraintTie](FEM_ConstraintTie.md) , [FEM ConstraintTransform](FEM_ConstraintTransform.md) , [FEM CreateNodesSet](FEM_CreateNodesSet.md) , [FEM ElementGeometry1D](FEM_ElementGeometry1D.md) , [FEM ElementGeometry2D](FEM_ElementGeometry2D.md) , [FEM ElementRotation1D](FEM_ElementRotation1D.md) , [FEM EquationElasticity](FEM_EquationElasticity.md) , [FEM EquationElectricforce](FEM_EquationElectricforce.md) , [FEM EquationElectrostatic](FEM_EquationElectrostatic.md) , [FEM EquationFlow](FEM_EquationFlow.md) , [FEM EquationFlux](FEM_EquationFlux.md) , [FEM EquationHeat](FEM_EquationHeat.md) , [FEM MaterialMechanicalNonlinear](FEM_MaterialMechanicalNonlinear.md) , [FEM MaterialReinforced](FEM_MaterialReinforced.md) , [FEM MeshClear](FEM_MeshClear.md) , [FEM MeshGroup](FEM_MeshGroup.md) , [FEM MeshNetgenFromShape](FEM_MeshNetgenFromShape.md) , [FEM PostApplyChanges](FEM_PostApplyChanges.md) , [FEM PostCreateFunctions](FEM_PostCreateFunctions.md) , [FEM PostFilterClipRegion](FEM_PostFilterClipRegion.md) , [FEM PostFilterClipScalar](FEM_PostFilterClipScalar.md) , [FEM PostFilterCutFunction](FEM_PostFilterCutFunction.md) , [FEM PostFilterDataAlongLine](FEM_PostFilterDataAlongLine.md) , [FEM PostFilterDataAtPoint](FEM_PostFilterDataAtPoint.md) , [FEM PostFilterLinearizedStresses](FEM_PostFilterLinearizedStresses.md) , [FEM PostFilterWarp](FEM_PostFilterWarp.md) , [FEM PostPipelineFromResult](FEM_PostPipelineFromResult.md) , [FEM ResultShow](FEM_ResultShow.md) , [FEM ResultsPurge](FEM_ResultsPurge.md) , [FEM SolverCalculiX](FEM_SolverCalculiX.md) , [FEM SolverControl](FEM_SolverControl.md) , [FEM SolverMystran](FEM_SolverMystran.md) , [FEM SolverRun](FEM_SolverRun.md) , [FEM SolverZ88](FEM_SolverZ88.md) , [FreeCAD Docker CLI mode](FreeCAD_Docker_CLI_mode.md) , [FreeCAD Docker CLI mode/de](FreeCAD_Docker_CLI_mode/de.md) , [FreeCAD Docker CLI mode/en](FreeCAD_Docker_CLI_mode/en.md) , [FreeCAD Docker CLI mode/fr](FreeCAD_Docker_CLI_mode/fr.md) , [FreeCAD Docker CLI mode/it](FreeCAD_Docker_CLI_mode/it.md) , [FreeCAD Docker CLI mode/pl](FreeCAD_Docker_CLI_mode/pl.md) , [FreeCAD Docker CLI mode/pt-br](FreeCAD_Docker_CLI_mode/pt-br.md) , [FreeCAD Docker CLI mode/ru](FreeCAD_Docker_CLI_mode/ru.md) , [InputField](InputField.md) , [Lattice2 AttachablePlacement](Lattice2_AttachablePlacement.md) , [Lattice2 Workbench](Lattice2_Workbench.md) , [MacOS packaging](MacOS_packaging.md) , [Macro clone explicit](Macro_clone_explicit.md) , [Manipulator](Manipulator.md) , [Manual:BIM modeling](Manual:BIM_modeling.md) , [Material](Material.md) , [ModernUI Workbench](ModernUI_Workbench.md) , [OpenSCAD ColorCodeShape](OpenSCAD_ColorCodeShape.md) , [Part BoxSelection](Part_BoxSelection.md) , [Part CompCompoundTools](Part_CompCompoundTools.md) , [Part CompSplittingTools](Part_CompSplittingTools.md) , [Part ElementCopy](Part_ElementCopy.md) , [Part Ellipse](Part_Ellipse.md) , [Part Ellipsoid](Part_Ellipsoid.md) , [Part Helix](Part_Helix.md) , [Part Line](Part_Line.md) , [Part Loft](Part_Loft.md) , [Part Mirror](Part_Mirror.md) , [Part Offset](Part_Offset.md) , [Part Plane](Part_Plane.md) , [Part Point](Part_Point.md) , [Part PointsFromMesh](Part_PointsFromMesh.md) , [Part RegularPolygon](Part_RegularPolygon.md) , [Part RuledSurface](Part_RuledSurface.md) , [Part Spiral](Part_Spiral.md) , [Part TransformedCopy](Part_TransformedCopy.md) , [Part Wedge](Part_Wedge.md) , [Path Area](Path_Area.md) , [Path Area Workplane](Path_Area_Workplane.md) , [Path Development Roadmap](Path_Development_Roadmap.md) , [Path Development Roadmap/de](Path_Development_Roadmap/de.md) , [Path Development Roadmap/en](Path_Development_Roadmap/en.md) , [Path Development Roadmap/fr](Path_Development_Roadmap/fr.md) , [Path Development Roadmap/pt-br](Path_Development_Roadmap/pt-br.md) , [Path DressupLeadInOut](Path_DressupLeadInOut.md) , [Path Engrave](Path_Engrave.md) , [Path Fixture](Path_Fixture.md) , [Path Helix](Path_Helix.md) , [Path MillFace](Path_MillFace.md) , [Path OpActiveToggle](Path_OpActiveToggle.md) , [Path Pocket 3D](Path_Pocket_3D.md) , [Path Postprocessor Customization](Path_Postprocessor_Customization.md) , [Path Postprocessor Customization/de](Path_Postprocessor_Customization/de.md) , [Path Postprocessor Customization/en](Path_Postprocessor_Customization/en.md) , [Path Postprocessor Customization/es](Path_Postprocessor_Customization/es.md) , [Path Postprocessor Customization/fr](Path_Postprocessor_Customization/fr.md) , [Path Postprocessor Customization/it](Path_Postprocessor_Customization/it.md) , [Path Postprocessor Customization/pt-br](Path_Postprocessor_Customization/pt-br.md) , [Path Postprocessor Customization/ru](Path_Postprocessor_Customization/ru.md) , [Path Sanity](Path_Sanity.md) , [Path Shape](Path_Shape.md) , [Path Simulator](Path_Simulator.md) , [Path Surface](Path_Surface.md) , [Path ToolBit](Path_ToolBit.md) , [Path ToolBit Library](Path_ToolBit_Library.md) , [Path ToolBit Library/en](Path_ToolBit_Library/en.md) , [Path ToolBit Library/fr](Path_ToolBit_Library/fr.md) , [Path ToolBit Library/ru](Path_ToolBit_Library/ru.md) , [Path ToolBit/en](Path_ToolBit/en.md) , [Path ToolBit/fr](Path_ToolBit/fr.md) , [Path ToolBitDock](Path_ToolBitDock.md) , [Path ToolBitLibraryOpen](Path_ToolBitLibraryOpen.md) , [Path ToolController](Path_ToolController.md) , [Path ToolController/en](Path_ToolController/en.md) , [Path ToolController/fr](Path_ToolController/fr.md) , [Path ToolController/it](Path_ToolController/it.md) , [Path ToolController/ru](Path_ToolController/ru.md) , [Path Tools](Path_Tools.md) , [Path Tools/en](Path_Tools/en.md) , [Path Tools/fr](Path_Tools/fr.md) , [Path Tools/ru](Path_Tools/ru.md) , [Path ToolShape](Path_ToolShape.md) , [Path ToolShape/en](Path_ToolShape/en.md) , [Path ToolShape/fr](Path_ToolShape/fr.md) , [Path ToolShape/ru](Path_ToolShape/ru.md) , [Path Waterline](Path_Waterline.md) , [POV-Ray-Rendering Workbench](POV-Ray-Rendering_Workbench.md) , [POV-Ray-Rendering Workbench/en](POV-Ray-Rendering_Workbench/en.md) , [Pyrate Workbench](Pyrate_Workbench.md) , [Pyrate Workbench/en](Pyrate_Workbench/en.md) , [Pyrate Workbench/fr](Pyrate_Workbench/fr.md) , [Pyrate Workbench/it](Pyrate_Workbench/it.md) , [Pyrate Workbench/pl](Pyrate_Workbench/pl.md) , [Robot SetDefaultOrientation](Robot_SetDefaultOrientation.md) , [Sandbox/TechDrawTemplateExplained](Sandbox/TechDrawTemplateExplained.md) , [Sandbox:TechDraw TemplateHelper](Sandbox:TechDraw_TemplateHelper.md) , [SheetMetal AddBase](SheetMetal_AddBase.md) , [SheetMetal AddBend](SheetMetal_AddBend.md) , [SheetMetal AddCornerRelief](SheetMetal_AddCornerRelief.md) , [SheetMetal AddFoldWall](SheetMetal_AddFoldWall.md) , [SheetMetal AddJunction](SheetMetal_AddJunction.md) , [SheetMetal AddRelief](SheetMetal_AddRelief.md) , [SheetMetal AddWall](SheetMetal_AddWall.md) , [SheetMetal Examples](SheetMetal_Examples.md) , [SheetMetal Extrude](SheetMetal_Extrude.md) , [SheetMetal Forming](SheetMetal_Forming.md) , [SheetMetal SketchOnSheet](SheetMetal_SketchOnSheet.md) , [SheetMetal UnattendedUnfold](SheetMetal_UnattendedUnfold.md) , [SheetMetal Unfold](SheetMetal_Unfold.md) , [SheetMetal Workbench](SheetMetal_Workbench.md) , [Ship Area](Ship_Area.md) , [Ship Hydrostatics](Ship_Hydrostatics.md) , [Ship Loading](Ship_Loading.md) , [Ship PlotGZ](Ship_PlotGZ.md) , [Ship TankCapacity](Ship_TankCapacity.md) , [Ship TankNew](Ship_TankNew.md) , [Ship Weight](Ship_Weight.md) , [Silk Workbench](Silk_Workbench.md) , [Sketcher ConstrainHorizontal](Sketcher_ConstrainHorizontal.md) , [Sketcher SelectElementsWithDoFs](Sketcher_SelectElementsWithDoFs.md) , [Std MacroAttachDebugger](Std_MacroAttachDebugger.md) , [TechDraw LinkDimension](TechDraw_LinkDimension.md) , [TechDraw TemplateGenerator](TechDraw_TemplateGenerator.md) , [Transient FEM analysis](Transient_FEM_analysis.md) , [Template:UnfinishedDocu](Template:UnfinishedDocu.md) , [Washers](Washers.md) , [WikiPages](WikiPages.md) , [WikiPages/de](WikiPages/de.md) , [WikiPages/en](WikiPages/en.md) , [WikiPages/es](WikiPages/es.md) , [WikiPages/fr](WikiPages/fr.md) , [WikiPages/pl](WikiPages/pl.md) , [WikiPages/pt-br](WikiPages/pt-br.md) , [WikiPages/ru](WikiPages/ru.md) , [Windows packaging](Windows_packaging.md) , [Windows packaging/en](Windows_packaging/en.md) , [Category:Administration](Category:Administration.md) [Category:Categories](Category:Categories.md) [Category:Work in progress](Category:Work_in_progress.md) + +--- +[documentation index](../README.md) > Category:UnfinishedDocu diff --git a/wiki/Category:User_Documentation.md b/wiki/Category:User_Documentation.md index 0444b59180..bf3042b7a2 100644 --- a/wiki/Category:User_Documentation.md +++ b/wiki/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [3D view](3D_view.md) , [3Dconnexion input devices](3Dconnexion_input_devices.md) , [A2plus Workbench](A2plus_Workbench.md) , [About FreeCAD](About_FreeCAD.md) , [Add A Button In FEM Toolbar Tutorial](Add_A_Button_In_FEM_Toolbar_Tutorial.md) , [Add FEM constraint tutorial](Add_FEM_constraint_tutorial.md) , [Add FEM equation tutorial](Add_FEM_equation_tutorial.md) , [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mouse_navigation_option_to_FreeCAD.md) , [Addon](Addon.md) , [Advanced TechDraw Tutorial](Advanced_TechDraw_Tutorial.md) , [Aeroplane](Aeroplane.md) , [Analysis of reinforced concrete with FEM](Analysis_of_reinforced_concrete_with_FEM.md) , [Animation Workbench](Animation_Workbench.md) , [App DocumentObject](App_DocumentObject.md) , [App DocumentObjectGroup](App_DocumentObjectGroup.md) , [App FeaturePython](App_FeaturePython.md) , [App GeoFeature](App_GeoFeature.md) , [App Link](App_Link.md) , [App Part](App_Part.md) , [AppImage](AppImage.md) , [Arch 3DS](Arch_3DS.md) , [Arch 3Views](Arch_3Views.md) , [Arch Add](Arch_Add.md) , [Arch API](Arch_API.md) , [Arch Axis](Arch_Axis.md) , [Arch AxisSystem](Arch_AxisSystem.md) , [Arch Building](Arch_Building.md) , [Arch BuildingPart](Arch_BuildingPart.md) , [Arch Check](Arch_Check.md) , [Arch CloneComponent](Arch_CloneComponent.md) , [Arch CloseHoles](Arch_CloseHoles.md) , [Arch CompAxis](Arch_CompAxis.md) , [Arch Component](Arch_Component.md) , [Arch CompPanel](Arch_CompPanel.md) , [Arch CompPipe](Arch_CompPipe.md) , [Arch CompRebarStraight](Arch_CompRebarStraight.md) , [Arch CompSetMaterial](Arch_CompSetMaterial.md) , [Arch CurtainWall](Arch_CurtainWall.md) , [Arch CutLine](Arch_CutLine.md) , [Arch CutPlane](Arch_CutPlane.md) , [Arch DAE](Arch_DAE.md) , [Arch Door](Arch_Door.md) , [Arch Equipment](Arch_Equipment.md) , [Arch Fence](Arch_Fence.md) , [Arch Floor](Arch_Floor.md) , [Arch Frame](Arch_Frame.md) , [Arch Grid](Arch_Grid.md) , [Arch IFC](Arch_IFC.md) , [Arch IfcExplorer](Arch_IfcExplorer.md) , [Arch IfcSpreadsheet](Arch_IfcSpreadsheet.md) , [Arch JSON](Arch_JSON.md) , [Arch MergeWalls](Arch_MergeWalls.md) , [Arch MeshToShape](Arch_MeshToShape.md) , [Arch MultiMaterial](Arch_MultiMaterial.md) , [Arch Nest](Arch_Nest.md) , [Arch OBJ](Arch_OBJ.md) , [Arch Panel](Arch_Panel.md) , [Arch Panel Cut](Arch_Panel_Cut.md) , [Arch Panel Sheet](Arch_Panel_Sheet.md) , [Arch panel tutorial](Arch_panel_tutorial.md) , [Arch Pipe](Arch_Pipe.md) , [Arch PipeConnector](Arch_PipeConnector.md) , [Arch Preferences](Arch_Preferences.md) , [Arch Profile](Arch_Profile.md) , [Arch Project](Arch_Project.md) , [Arch Rebar](Arch_Rebar.md) , [Arch Rebar BeamReinforcement](Arch_Rebar_BeamReinforcement.md) , [Arch Rebar BentShape](Arch_Rebar_BentShape.md) , [Arch Rebar BOM](Arch_Rebar_BOM.md) , [Arch Rebar Circular ColumnReinforcement](Arch_Rebar_Circular_ColumnReinforcement.md) , [Arch Rebar ColumnReinforcement](Arch_Rebar_ColumnReinforcement.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) , [Arch Rebar Dimensioning](Arch_Rebar_Dimensioning.md) , [Arch Rebar Drawing](Arch_Rebar_Drawing.md) , [Arch Rebar Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) , [Arch Rebar Footing Reinforcement](Arch_Rebar_Footing_Reinforcement.md) , [Arch Rebar Helical](Arch_Rebar_Helical.md) , [Arch Rebar LShape](Arch_Rebar_LShape.md) , [Arch Rebar Slab Reinforcement](Arch_Rebar_Slab_Reinforcement.md) , [Arch Rebar Stirrup](Arch_Rebar_Stirrup.md) , [Arch Rebar Straight](Arch_Rebar_Straight.md) , [Arch Rebar UShape](Arch_Rebar_UShape.md) , [Arch Reference](Arch_Reference.md) , [Arch Remove](Arch_Remove.md) , [Arch RemoveShape](Arch_RemoveShape.md) , [Arch Roof](Arch_Roof.md) , [Arch Schedule](Arch_Schedule.md) , [Arch SectionPlane](Arch_SectionPlane.md) , [Arch SelectNonSolidMeshes](Arch_SelectNonSolidMeshes.md) , [Arch SetMaterial](Arch_SetMaterial.md) , [Arch SHP](Arch_SHP.md) , [Arch Site](Arch_Site.md) , [Arch Space](Arch_Space.md) , [Arch SplitMesh](Arch_SplitMesh.md) , [Arch Stairs](Arch_Stairs.md) , [Arch Structure](Arch_Structure.md) , [Arch Survey](Arch_Survey.md) , [Arch ToggleIfcBrepFlag](Arch_ToggleIfcBrepFlag.md) , [Arch ToggleSubs](Arch_ToggleSubs.md) , [Arch Truss](Arch_Truss.md) , [Arch tutorial](Arch_tutorial.md) , [Arch Wall](Arch_Wall.md) , [Arch Window](Arch_Window.md) , [Arch Workbench](Arch_Workbench.md) , [Assembly](Assembly.md) , [Assembly2 Workbench](Assembly2_Workbench.md) , [Assembly3 ConstraintAlignment](Assembly3_ConstraintAlignment.md) , [Assembly3 ConstraintAngle](Assembly3_ConstraintAngle.md) , [Assembly3 ConstraintArcLineTangent](Assembly3_ConstraintArcLineTangent.md) , [Assembly3 ConstraintAttachment](Assembly3_ConstraintAttachment.md) , [Assembly3 ConstraintAxial](Assembly3_ConstraintAxial.md) , [Assembly3 ConstraintCoincidence](Assembly3_ConstraintCoincidence.md) , [Assembly3 ConstraintColinear](Assembly3_ConstraintColinear.md) , [Assembly3 ConstraintDiameter](Assembly3_ConstraintDiameter.md) , [Assembly3 ConstraintEqualAngle](Assembly3_ConstraintEqualAngle.md) , [Assembly3 ConstraintEqualLength](Assembly3_ConstraintEqualLength.md) , [Assembly3 ConstraintEqualLineArcLength](Assembly3_ConstraintEqualLineArcLength.md) , [Assembly3 ConstraintEqualPointLineDistance](Assembly3_ConstraintEqualPointLineDistance.md) , [Assembly3 ConstraintEqualRadius](Assembly3_ConstraintEqualRadius.md) , [Assembly3 ConstraintLengthDifference](Assembly3_ConstraintLengthDifference.md) , [Assembly3 ConstraintLengthEqualPointLineDistance](Assembly3_ConstraintLengthEqualPointLineDistance.md) , [Assembly3 ConstraintLengthRatio](Assembly3_ConstraintLengthRatio.md) , [Assembly3 ConstraintLineHorizontal](Assembly3_ConstraintLineHorizontal.md) , [Assembly3 ConstraintLineLength](Assembly3_ConstraintLineLength.md) , [Assembly3 ConstraintLineVertical](Assembly3_ConstraintLineVertical.md) , [Assembly3 ConstraintLock](Assembly3_ConstraintLock.md) , [Assembly3 ConstraintMidPoint](Assembly3_ConstraintMidPoint.md) , [Assembly3 ConstraintMore](Assembly3_ConstraintMore.md) , [Assembly3 ConstraintMultiParallel](Assembly3_ConstraintMultiParallel.md) , [Assembly3 ConstraintPerpendicular](Assembly3_ConstraintPerpendicular.md) , [Assembly3 ConstraintPointDistance](Assembly3_ConstraintPointDistance.md) , [Assembly3 ConstraintPointInPlane](Assembly3_ConstraintPointInPlane.md) , [Assembly3 ConstraintPointLineDistance](Assembly3_ConstraintPointLineDistance.md) , [Assembly3 ConstraintPointOnCircle](Assembly3_ConstraintPointOnCircle.md) , [Assembly3 ConstraintPointOnLine](Assembly3_ConstraintPointOnLine.md) , [Assembly3 ConstraintPointPlaneDistance](Assembly3_ConstraintPointPlaneDistance.md) , [Assembly3 ConstraintPointsCoincident](Assembly3_ConstraintPointsCoincident.md) , [Assembly3 ConstraintPointsDistance](Assembly3_ConstraintPointsDistance.md) , [Assembly3 ConstraintPointsHorizontal](Assembly3_ConstraintPointsHorizontal.md) , [Assembly3 ConstraintPointsProjectDistance](Assembly3_ConstraintPointsProjectDistance.md) , [Assembly3 ConstraintPointsSymmetric](Assembly3_ConstraintPointsSymmetric.md) , [Assembly3 ConstraintPointsVertical](Assembly3_ConstraintPointsVertical.md) , [Assembly3 ConstraintSameOrientation](Assembly3_ConstraintSameOrientation.md) , [Assembly3 ConstraintSketchPlane](Assembly3_ConstraintSketchPlane.md) , [Assembly3 ConstraintSymmetric](Assembly3_ConstraintSymmetric.md) , [Assembly3 ConstraintSymmetricHorizontal](Assembly3_ConstraintSymmetricHorizontal.md) , [Assembly3 ConstraintSymmetricLine](Assembly3_ConstraintSymmetricLine.md) , [Assembly3 ConstraintSymmetricVertical](Assembly3_ConstraintSymmetricVertical.md) , [Assembly3 CreateAssembly](Assembly3_CreateAssembly.md) , [Assembly3 CreateElement](Assembly3_CreateElement.md) , [Assembly3 GoToRelation](Assembly3_GoToRelation.md) , [Assembly3 GroupObjects](Assembly3_GroupObjects.md) , [Assembly3 ImportFromSTEP](Assembly3_ImportFromSTEP.md) , [Assembly3 ImportMultiDocument](Assembly3_ImportMultiDocument.md) , [Assembly3 MeasureAngle](Assembly3_MeasureAngle.md) , [Assembly3 MeasurePointLine](Assembly3_MeasurePointLine.md) , [Assembly3 MeasurePointPlane](Assembly3_MeasurePointPlane.md) , [Assembly3 MeasurePoints](Assembly3_MeasurePoints.md) , [Assembly3 Workbench](Assembly3_Workbench.md) , [Assembly4 Workbench](Assembly4_Workbench.md) , [Asymptote](Asymptote.md) , [Base API](Base_API.md) , [Basic Attachment Tutorial](Basic_Attachment_Tutorial.md) , [Basic modeling tutorial](Basic_modeling_tutorial.md) , [Basic Part Design Tutorial](Basic_Part_Design_Tutorial.md) , [Basic Sketcher Tutorial](Basic_Sketcher_Tutorial.md) , [Basic TechDraw Tutorial](Basic_TechDraw_Tutorial.md) , [BIM Box](BIM_Box.md) , [BIM Classification](BIM_Classification.md) , [BIM Clone](BIM_Clone.md) , [BIM Copy](BIM_Copy.md) , [BIM IfcElements](BIM_IfcElements.md) , [BIM IfcProperties](BIM_IfcProperties.md) , [BIM IfcQuantities](BIM_IfcQuantities.md) , [BIM Layers](BIM_Layers.md) , [BIM Library](BIM_Library.md) , [BIM Preflight](BIM_Preflight.md) , [BIM Project](BIM_Project.md) , [BIM Setup](BIM_Setup.md) , [BIM Views](BIM_Views.md) , [BIM Windows](BIM_Windows.md) , [BIM Workbench](BIM_Workbench.md) , [Bitmap](Bitmap.md) , [Body](Body.md) , [BOLTSFC Workbench](BOLTSFC_Workbench.md) , [Branding](Branding.md) , [Bug Triage](Bug_Triage.md) , [CadQuery Workbench](CadQuery_Workbench.md) , [Cfd Workbench](Cfd_Workbench.md) , [Civil Engineering Workbench](Civil_Engineering_Workbench.md) , [Combo view](Combo_view.md) , [Common Airfoil Data Import](Common_Airfoil_Data_Import.md) , [Compile on Docker](Compile_on_Docker.md) , [Compile on Linux](Compile_on_Linux.md) , [Compile on MacOS](Compile_on_MacOS.md) , [Compile on MinGW](Compile_on_MinGW.md) , [Compile on Windows](Compile_on_Windows.md) , [Compile on Windows with VS2013](Compile_on_Windows_with_VS2013.md) , [Compiling](Compiling.md) , [Compiling (Speeding up)](Compiling_(Speeding_up).md) , [Complete Workbench](Complete_Workbench.md) , [Console API](Console_API.md) , [Constraint](Constraint.md) , [Constructive solid geometry](Constructive_solid_geometry.md) , [Continuous Integration](Continuous_Integration.md) , [Contributors](Contributors.md) , [Copying Objects](Copying_Objects.md) , [Creating a simple part with PartDesign](Creating_a_simple_part_with_PartDesign.md) , [Crowdin Administration](Crowdin_Administration.md) , [Crowdin Scripts](Crowdin_Scripts.md) , [CurvedShapes CurvedArray](CurvedShapes_CurvedArray.md) , [CurvedShapes Workbench](CurvedShapes_Workbench.md) , [Curves CompressionSpring](Curves_CompressionSpring.md) , [Curves Discretize](Curves_Discretize.md) , [Curves EditableSpline](Curves_EditableSpline.md) , [Curves ExtendCurve](Curves_ExtendCurve.md) , [Curves GordonSurface](Curves_GordonSurface.md) , [Curves Interpolate](Curves_Interpolate.md) , [Curves IsoCurve](Curves_IsoCurve.md) , [Curves JoinCurve](Curves_JoinCurve.md) , [Curves Line](Curves_Line.md) , [Curves MultiLoft](Curves_MultiLoft.md) , [Curves ParametricComb](Curves_ParametricComb.md) , [Curves ParametricSolid](Curves_ParametricSolid.md) , [Curves PasteSVG](Curves_PasteSVG.md) , [Curves Pipeshell](Curves_Pipeshell.md) , [Curves PipeshellProfile](Curves_PipeshellProfile.md) , [Curves ProfileSupport](Curves_ProfileSupport.md) , [Curves ReflectLines](Curves_ReflectLines.md) , [Curves SegmentSurface](Curves_SegmentSurface.md) , [Curves SketchOnSurface](Curves_SketchOnSurface.md) , [Curves SplitCurve](Curves_SplitCurve.md) , [Curves ToConsole](Curves_ToConsole.md) , [Curves Workbench](Curves_Workbench.md) , [Curves ZebraTool](Curves_ZebraTool.md) , [Custom Spacing](Custom_Spacing.md) , [Customize Toolbars](Customize_Toolbars.md) , [DAG view](DAG_view.md) , [Datum](Datum.md) , [Debian development](Debian_development.md) , [Debian Unstable](Debian_Unstable.md) , [Defeaturing](Defeaturing.md) , [Defeaturing Workbench](Defeaturing_Workbench.md) , [Template:Depths/Heights](Template:Depths/Heights.md) , [Design456 2DExtend](Design456_2DExtend.md) , [Design456 2DTrim](Design456_2DTrim.md) , [Design456 3Point](Design456_3Point.md) , [Design456 Extract](Design456_Extract.md) , [Design456 Extrude](Design456_Extrude.md) , [Design456 ExtrudeFace](Design456_ExtrudeFace.md) , [Design456 LoftOnDirection](Design456_LoftOnDirection.md) , [Design456 MultiPointsToWireClose](Design456_MultiPointsToWireClose.md) , [Design456 MultiPointsToWireOpen](Design456_MultiPointsToWireOpen.md) , [Design456 PartMerge](Design456_PartMerge.md) , [Design456 PartSubtract](Design456_PartSubtract.md) , [Design456 SplitObject](Design456_SplitObject.md) , [Design456 Tweak](Design456_Tweak.md) , [Design456 Workbench](Design456_Workbench.md) , [Developer hub](Developer_hub.md) , [Developing FreeCAD with GitKraken](Developing_FreeCAD_with_GitKraken.md) , [Template:DevWB](Template:DevWB.md) , [Document structure](Document_structure.md) , [Donate](Donate.md) , [Download](Download.md) , [Draft AddConstruction](Draft_AddConstruction.md) , [Draft AddToGroup](Draft_AddToGroup.md) , [Draft annotation scale widget](Draft_annotation_scale_widget.md) , [Draft AnnotationStyleEditor](Draft_AnnotationStyleEditor.md) , [Draft API](Draft_API.md) , [Draft ApplyStyle](Draft_ApplyStyle.md) , [Draft Arc](Draft_Arc.md) , [Draft Arc 3Points](Draft_Arc_3Points.md) , [Draft Array](Draft_Array.md) , [Draft AutoGroup](Draft_AutoGroup.md) , [Draft BezCurve](Draft_BezCurve.md) , [Draft BSpline](Draft_BSpline.md) , [Draft Circle](Draft_Circle.md) , [Draft CircularArray](Draft_CircularArray.md) , [Draft Clone](Draft_Clone.md) , [Draft Constrain](Draft_Constrain.md) , [Draft CubicBezCurve](Draft_CubicBezCurve.md) , [Draft DAT](Draft_DAT.md) , [Draft Dimension](Draft_Dimension.md) , [Draft Downgrade](Draft_Downgrade.md) , [Draft Draft2Sketch](Draft_Draft2Sketch.md) , [Draft Drawing](Draft_Drawing.md) , [Draft DXF](Draft_DXF.md) , [Draft DXF/ro](Draft_DXF/ro.md) , [Draft Edit](Draft_Edit.md) , [Draft Ellipse](Draft_Ellipse.md) , [Draft Facebinder](Draft_Facebinder.md) , [Draft Fillet](Draft_Fillet.md) , [Draft FlipDimension](Draft_FlipDimension.md) , [Draft Heal](Draft_Heal.md) , [Draft Join](Draft_Join.md) , [Draft Label](Draft_Label.md) , [Draft Layer](Draft_Layer.md) , [Draft Line](Draft_Line.md) , [Draft Mirror](Draft_Mirror.md) , [Draft Move](Draft_Move.md) , [Draft OCA](Draft_OCA.md) , [Draft Offset](Draft_Offset.md) , [Draft OrthoArray](Draft_OrthoArray.md) , [Draft PathArray](Draft_PathArray.md) , [Draft PathLinkArray](Draft_PathLinkArray.md) , [Draft Pattern](Draft_Pattern.md) , [Draft Point](Draft_Point.md) , [Draft PointArray](Draft_PointArray.md) , [Draft PointLinkArray](Draft_PointLinkArray.md) , [Draft PolarArray](Draft_PolarArray.md) , [Draft Polygon](Draft_Polygon.md) , [Draft Preferences](Draft_Preferences.md) , [Draft Rectangle](Draft_Rectangle.md) , [Draft Rotate](Draft_Rotate.md) , [Draft Scale](Draft_Scale.md) , [Draft SelectGroup](Draft_SelectGroup.md) , [Draft SelectPlane](Draft_SelectPlane.md) , [Draft SetStyle](Draft_SetStyle.md) , [Draft Shape2DView](Draft_Shape2DView.md) , [Draft ShapeString](Draft_ShapeString.md) , [Draft ShapeString tutorial](Draft_ShapeString_tutorial.md) , [Draft ShowSnapBar](Draft_ShowSnapBar.md) , [Draft Slope](Draft_Slope.md) , [Draft Snap](Draft_Snap.md) , [Draft Snap Angle](Draft_Snap_Angle.md) , [Draft Snap Center](Draft_Snap_Center.md) , [Draft Snap Dimensions](Draft_Snap_Dimensions.md) , [Draft Snap Endpoint](Draft_Snap_Endpoint.md) , [Draft Snap Extension](Draft_Snap_Extension.md) , [Draft Snap Grid](Draft_Snap_Grid.md) , [Draft Snap Intersection](Draft_Snap_Intersection.md) , [Draft Snap Lock](Draft_Snap_Lock.md) , [Draft Snap Midpoint](Draft_Snap_Midpoint.md) , [Draft Snap Near](Draft_Snap_Near.md) , [Draft Snap Ortho](Draft_Snap_Ortho.md) , [Draft Snap Parallel](Draft_Snap_Parallel.md) , [Draft Snap Perpendicular](Draft_Snap_Perpendicular.md) , [Draft Snap Special](Draft_Snap_Special.md) , [Draft snap widget](Draft_snap_widget.md) , [Draft Snap WorkingPlane](Draft_Snap_WorkingPlane.md) , [Draft Split](Draft_Split.md) , [Draft Stretch](Draft_Stretch.md) , [Draft SubelementHighlight](Draft_SubelementHighlight.md) , [Draft SVG](Draft_SVG.md) , [Draft Text](Draft_Text.md) , [Draft ToggleConstructionMode](Draft_ToggleConstructionMode.md) , [Draft ToggleContinueMode](Draft_ToggleContinueMode.md) , [Draft ToggleDisplayMode](Draft_ToggleDisplayMode.md) , [Draft ToggleGrid](Draft_ToggleGrid.md) , [Draft Tray](Draft_Tray.md) , [Draft Trimex](Draft_Trimex.md) , [Draft tutorial](Draft_tutorial.md) , [Draft Upgrade](Draft_Upgrade.md) , [Draft Wire](Draft_Wire.md) , [Draft WireToBSpline](Draft_WireToBSpline.md) , [Draft Workbench](Draft_Workbench.md) , [Draft WorkingPlaneProxy](Draft_WorkingPlaneProxy.md) , [Drawing](Drawing.md) , [Drawing Annotation](Drawing_Annotation.md) , [Drawing Clip](Drawing_Clip.md) , [Drawing Dimensioning Addon](Drawing_Dimensioning_Addon.md) , [Drawing Landscape A3](Drawing_Landscape_A3.md) , [Drawing Open SVG](Drawing_Open_SVG.md) , [Drawing Openbrowser](Drawing_Openbrowser.md) , [Drawing Orthoviews](Drawing_Orthoviews.md) , [Drawing ProjectShape](Drawing_ProjectShape.md) , [Drawing Save](Drawing_Save.md) , [Drawing SpreadsheetView](Drawing_SpreadsheetView.md) , [Drawing Symbol](Drawing_Symbol.md) , [Drawing Template HowTo](Drawing_Template_HowTo.md) , [Drawing templates](Drawing_templates.md) , [Drawing tutorial](Drawing_tutorial.md) , [Drawing View](Drawing_View.md) , [Drawing Workbench](Drawing_Workbench.md) , [DXF](DXF.md) , [Dxf Importer Install](Dxf_Importer_Install.md) , [DynamicData Workbench](DynamicData_Workbench.md) , [EM FHEquiv](EM_FHEquiv.md) , [EM FHInputFile](EM_FHInputFile.md) , [EM FHNode](EM_FHNode.md) , [EM FHPath](EM_FHPath.md) , [EM FHPlane](EM_FHPlane.md) , [EM FHPlaneAddRemoveNodeHole](EM_FHPlaneAddRemoveNodeHole.md) , [EM FHPlaneHole](EM_FHPlaneHole.md) , [EM FHPort](EM_FHPort.md) , [EM FHSegment](EM_FHSegment.md) , [EM FHSolver](EM_FHSolver.md) , [EM Workbench](EM_Workbench.md) , [Engine Block Tutorial](Engine_Block_Tutorial.md) , [Example Combined Footing](Example_Combined_Footing.md) , [Example Slab Having LShape Rebars Reinforcement Mesh](Example_Slab_Having_LShape_Rebars_Reinforcement_Mesh.md) , [Example Slab Having Mesh Of Straight Rebars](Example_Slab_Having_Mesh_Of_Straight_Rebars.md) , [Example Slab Having UShape Rebars Reinforcement Mesh](Example_Slab_Having_UShape_Rebars_Reinforcement_Mesh.md) , [Example Slab Spanning in One Direction](Example_Slab_Spanning_in_One_Direction.md) , [Example Slab Spanning in Two Directions](Example_Slab_Spanning_in_Two_Directions.md) , [ExplodedAssembly Workbench](ExplodedAssembly_Workbench.md) , [Export to STL or OBJ](Export_to_STL_or_OBJ.md) , [Extend FEM Module](Extend_FEM_Module.md) , [External workbenches](External_workbenches.md) , [Extra python modules](Extra_python_modules.md) , [Fasteners BOM](Fasteners_BOM.md) , [Fasteners ChamferHole](Fasteners_ChamferHole.md) , [Fasteners ChangeParameters](Fasteners_ChangeParameters.md) , [Fasteners Flip](Fasteners_Flip.md) , [Fasteners MatchTypeInner](Fasteners_MatchTypeInner.md) , [Fasteners MatchTypeOuter](Fasteners_MatchTypeOuter.md) , [Fasteners Move](Fasteners_Move.md) , [Fasteners ScrewCalculator](Fasteners_ScrewCalculator.md) , [Fasteners Shape](Fasteners_Shape.md) , [Fasteners Workbench](Fasteners_Workbench.md) , [FCGear BevelGear](FCGear_BevelGear.md) , [FCGear CrownGear](FCGear_CrownGear.md) , [FCGear CycloideGear](FCGear_CycloideGear.md) , [FCGear InvoluteGear](FCGear_InvoluteGear.md) , [FCGear InvoluteRack](FCGear_InvoluteRack.md) , [FCGear LanternGear](FCGear_LanternGear.md) , [FCGear TimingGear](FCGear_TimingGear.md) , [FCGear Workbench](FCGear_Workbench.md) , [FCGear WormGear](FCGear_WormGear.md) , [Feature](Feature.md) , [Feature editing](Feature_editing.md) , [Feature list](Feature_list.md) , [FeaturePython Custom Properties](FeaturePython_Custom_Properties.md) , [FEM Analysis](FEM_Analysis.md) , [FEM Beginner tutorial](FEM_Beginner_tutorial.md) , [FEM CalculiX Cantilever 3D](FEM_CalculiX_Cantilever_3D.md) , [FEM ClippingPlaneAdd](FEM_ClippingPlaneAdd.md) , [FEM ClippingPlaneRemoveAll](FEM_ClippingPlaneRemoveAll.md) , [FEM Concrete](FEM_Concrete.md) , [FEM ConstantVacuumPermittivity](FEM_ConstantVacuumPermittivity.md) , [FEM ConstraintBearing](FEM_ConstraintBearing.md) , [FEM ConstraintBodyHeatSource](FEM_ConstraintBodyHeatSource.md) , [FEM ConstraintContact](FEM_ConstraintContact.md) , [FEM ConstraintDisplacement](FEM_ConstraintDisplacement.md) , [FEM ConstraintElectrostaticPotential](FEM_ConstraintElectrostaticPotential.md) , [FEM ConstraintFixed](FEM_ConstraintFixed.md) , [FEM ConstraintFlowVelocity](FEM_ConstraintFlowVelocity.md) , [FEM ConstraintFluidBoundary](FEM_ConstraintFluidBoundary.md) , [FEM ConstraintForce](FEM_ConstraintForce.md) , [FEM ConstraintGear](FEM_ConstraintGear.md) , [FEM ConstraintHeatflux](FEM_ConstraintHeatflux.md) , [FEM ConstraintInitialFlowVelocity](FEM_ConstraintInitialFlowVelocity.md) , [FEM ConstraintInitialTemperature](FEM_ConstraintInitialTemperature.md) , [FEM ConstraintPlaneRotation](FEM_ConstraintPlaneRotation.md) , [FEM ConstraintPressure](FEM_ConstraintPressure.md) , [FEM ConstraintPulley](FEM_ConstraintPulley.md) , [FEM ConstraintSectionPrint](FEM_ConstraintSectionPrint.md) , [FEM ConstraintSelfWeight](FEM_ConstraintSelfWeight.md) , [FEM ConstraintSpring](FEM_ConstraintSpring.md) , [FEM ConstraintTemperature](FEM_ConstraintTemperature.md) , [FEM ConstraintTie](FEM_ConstraintTie.md) , [FEM ConstraintTransform](FEM_ConstraintTransform.md) , [FEM CreateNodesSet](FEM_CreateNodesSet.md) , [FEM Element Types](FEM_Element_Types.md) , [FEM ElementFluid1D](FEM_ElementFluid1D.md) , [FEM ElementGeometry1D](FEM_ElementGeometry1D.md) , [FEM ElementGeometry2D](FEM_ElementGeometry2D.md) , [FEM ElementRotation1D](FEM_ElementRotation1D.md) , [FEM EquationElasticity](FEM_EquationElasticity.md) , [FEM EquationElectricforce](FEM_EquationElectricforce.md) , [FEM EquationElectrostatic](FEM_EquationElectrostatic.md) , [FEM EquationFlow](FEM_EquationFlow.md) , [FEM EquationFlux](FEM_EquationFlux.md) , [FEM EquationHeat](FEM_EquationHeat.md) , [FEM Example Capacitance Two Balls](FEM_Example_Capacitance_Two_Balls.md) , [FEM Examples](FEM_Examples.md) , [FEM FemMesh2Mesh](FEM_FemMesh2Mesh.md) , [FEM FrontISTR Workbench](FEM_FrontISTR_Workbench.md) , [FEM Install](FEM_Install.md) , [FEM MaterialFluid](FEM_MaterialFluid.md) , [FEM MaterialMechanicalNonlinear](FEM_MaterialMechanicalNonlinear.md) , [FEM MaterialReinforced](FEM_MaterialReinforced.md) , [FEM MaterialSolid](FEM_MaterialSolid.md) , [FEM Mesh](FEM_Mesh.md) , [FEM Mesh CalculiX](FEM_Mesh_CalculiX.md) , [FEM MeshBoundaryLayer](FEM_MeshBoundaryLayer.md) , [FEM MeshClear](FEM_MeshClear.md) , [FEM MeshDisplayInfo](FEM_MeshDisplayInfo.md) , [FEM MeshGmshFromShape](FEM_MeshGmshFromShape.md) , [FEM MeshGroup](FEM_MeshGroup.md) , [FEM MeshNetgenFromShape](FEM_MeshNetgenFromShape.md) , [FEM MeshRegion](FEM_MeshRegion.md) , [FEM PostApplyChanges](FEM_PostApplyChanges.md) , [FEM PostCreateFunctions](FEM_PostCreateFunctions.md) , [FEM PostFilterClipRegion](FEM_PostFilterClipRegion.md) , [FEM PostFilterClipScalar](FEM_PostFilterClipScalar.md) , [FEM PostFilterCutFunction](FEM_PostFilterCutFunction.md) , [FEM PostFilterDataAlongLine](FEM_PostFilterDataAlongLine.md) , [FEM PostFilterDataAtPoint](FEM_PostFilterDataAtPoint.md) , [FEM PostFilterLinearizedStresses](FEM_PostFilterLinearizedStresses.md) , [FEM PostFilterWarp](FEM_PostFilterWarp.md) , [FEM PostPipelineFromResult](FEM_PostPipelineFromResult.md) , [FEM Preferences](FEM_Preferences.md) , [FEM project](FEM_project.md) , [FEM ResultShow](FEM_ResultShow.md) , [FEM ResultsPurge](FEM_ResultsPurge.md) , [FEM Shear of a Composite Block](FEM_Shear_of_a_Composite_Block.md) , [FEM Solver](FEM_Solver.md) , [FEM SolverCalculiX](FEM_SolverCalculiX.md) , [FEM SolverCalculixCxxtools](FEM_SolverCalculixCxxtools.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > Category:User Documentation diff --git a/wiki/Category:Web.md b/wiki/Category:Web.md index 6203190804..a130601e02 100644 --- a/wiki/Category:Web.md +++ b/wiki/Category:Web.md @@ -6,3 +6,6 @@ This category lists pages that relate to the [Web Workbench](Web_Workbench.md). [Artwork Web](Artwork_Web.md) , [Web Workbench](Web_Workbench.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Web diff --git a/wiki/Category:Wiki.md b/wiki/Category:Wiki.md index 35c13d55b1..0540af31d9 100644 --- a/wiki/Category:Wiki.md +++ b/wiki/Category:Wiki.md @@ -6,3 +6,6 @@ This category contains all documents that relate to the Wiki. [Glossary](Glossary.md) , [Localisation](Localisation.md) , [Localisation Sidebar](Localisation_Sidebar.md) , [Sandbox:TestWikiPage](Sandbox:TestWikiPage.md) , [Sandbox:TestWikiPage/de](Sandbox:TestWikiPage/de.md) , [Sandbox:TestWikiPage/en](Sandbox:TestWikiPage/en.md) , [Sandbox:TestWikiPage/it](Sandbox:TestWikiPage/it.md) , [TechDraw TemplateGenerator](TechDraw_TemplateGenerator.md) , [TechDraw TemplateGenerator/en](TechDraw_TemplateGenerator/en.md) , [Tutorial guidelines](Tutorial_guidelines.md) , [WikiPages](WikiPages.md) , [WikiPagesBasicColors](WikiPagesBasicColors.md) [Category:Administration](Category:Administration.md) [Category:Categories](Category:Categories.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > Category:Wiki diff --git a/wiki/Category:Wiki:Example.md b/wiki/Category:Wiki:Example.md index 4e7c3f24a1..7a681e1716 100644 --- a/wiki/Category:Wiki:Example.md +++ b/wiki/Category:Wiki:Example.md @@ -6,3 +6,6 @@ This category lists pages that are examples for the wiki documentation. [GuiCommand model](GuiCommand_model.md) , [GuiCommand model/de](GuiCommand_model/de.md) , [GuiCommand model/en](GuiCommand_model/en.md) , [GuiCommand model/es](GuiCommand_model/es.md) , [GuiCommand model/fr](GuiCommand_model/fr.md) , [GuiCommand model/it](GuiCommand_model/it.md) , [GuiCommand model/pl](GuiCommand_model/pl.md) , [GuiCommand model/pt-br](GuiCommand_model/pt-br.md) , [GuiCommand model/ro](GuiCommand_model/ro.md) , [GuiCommand model/ru](GuiCommand_model/ru.md) [Category:Wiki Documentation](Category:Wiki_Documentation.md) + +--- +[documentation index](../README.md) > Category:Wiki:Example diff --git a/wiki/Category:Wiki_Documentation.md b/wiki/Category:Wiki_Documentation.md index 6a35e00f52..69aacce438 100644 --- a/wiki/Category:Wiki_Documentation.md +++ b/wiki/Category:Wiki_Documentation.md @@ -6,3 +6,6 @@ This category lists pages that relate to using the wiki effectively for document [WikiPages](WikiPages.md) , [Category:Documentation](Category:Documentation.md) [Category:Wiki:Example](Category:Wiki:Example.md) + +--- +[documentation index](../README.md) > Category:Wiki Documentation diff --git a/wiki/Category:Work_in_progress.md b/wiki/Category:Work_in_progress.md index eb9acf2fd9..c1bebd224c 100644 --- a/wiki/Category:Work_in_progress.md +++ b/wiki/Category:Work_in_progress.md @@ -6,3 +6,6 @@ This category is for pages that are under construction and should not be touched [Add A Button In FEM Toolbar Tutorial](Add_A_Button_In_FEM_Toolbar_Tutorial.md) , [Advanced TechDraw Tutorial](Advanced_TechDraw_Tutorial.md) , [Advanced TechDraw Tutorial/de](Advanced_TechDraw_Tutorial/de.md) , [Advanced TechDraw Tutorial/en](Advanced_TechDraw_Tutorial/en.md) , [Advanced TechDraw Tutorial/es](Advanced_TechDraw_Tutorial/es.md) , [Advanced TechDraw Tutorial/fr](Advanced_TechDraw_Tutorial/fr.md) , [Advanced TechDraw Tutorial/it](Advanced_TechDraw_Tutorial/it.md) , [Advanced TechDraw Tutorial/pl](Advanced_TechDraw_Tutorial/pl.md) , [Advanced TechDraw Tutorial/ru](Advanced_TechDraw_Tutorial/ru.md) , [FreeCAD Managing Expectations](FreeCAD_Managing_Expectations.md) , [FreeCAD Managing Expectations/en](FreeCAD_Managing_Expectations/en.md) , [FreeCAD on video](FreeCAD_on_video.md) , [FreeCAD used in production](FreeCAD_used_in_production.md) , [FreeCAD used in production/en](FreeCAD_used_in_production/en.md) , [FreeCAD used in production/fr](FreeCAD_used_in_production/fr.md) , [FreeCAD used in production/pt-br](FreeCAD_used_in_production/pt-br.md) , [FreeCAD used in production/ru](FreeCAD_used_in_production/ru.md) , [How to examine a fcstd file](How_to_examine_a_fcstd_file.md) , [PartDesign Bearingholder Tutorial I](PartDesign_Bearingholder_Tutorial_I.md) , [PartDesign Bearingholder Tutorial I/de](PartDesign_Bearingholder_Tutorial_I/de.md) , [PartDesign Bearingholder Tutorial I/en](PartDesign_Bearingholder_Tutorial_I/en.md) , [PartDesign Bearingholder Tutorial I/es](PartDesign_Bearingholder_Tutorial_I/es.md) , [PartDesign Bearingholder Tutorial I/fr](PartDesign_Bearingholder_Tutorial_I/fr.md) , [PartDesign Bearingholder Tutorial I/it](PartDesign_Bearingholder_Tutorial_I/it.md) , [PartDesign Bearingholder Tutorial I/pl](PartDesign_Bearingholder_Tutorial_I/pl.md) , [PartDesign Bearingholder Tutorial I/pt-br](PartDesign_Bearingholder_Tutorial_I/pt-br.md) , [PartDesign Bearingholder Tutorial I/ro](PartDesign_Bearingholder_Tutorial_I/ro.md) , [PartDesign Bearingholder Tutorial I/ru](PartDesign_Bearingholder_Tutorial_I/ru.md) , [PartDesign Bearingholder Tutorial I/tr](PartDesign_Bearingholder_Tutorial_I/tr.md) , [PartDesign Bearingholder Tutorial II](PartDesign_Bearingholder_Tutorial_II.md) , [PartDesign Bearingholder Tutorial II/de](PartDesign_Bearingholder_Tutorial_II/de.md) , [PartDesign Bearingholder Tutorial II/en](PartDesign_Bearingholder_Tutorial_II/en.md) , [PartDesign Bearingholder Tutorial II/es](PartDesign_Bearingholder_Tutorial_II/es.md) , [PartDesign Bearingholder Tutorial II/fr](PartDesign_Bearingholder_Tutorial_II/fr.md) , [PartDesign Bearingholder Tutorial II/it](PartDesign_Bearingholder_Tutorial_II/it.md) , [PartDesign Bearingholder Tutorial II/pl](PartDesign_Bearingholder_Tutorial_II/pl.md) , [PartDesign Bearingholder Tutorial II/pt-br](PartDesign_Bearingholder_Tutorial_II/pt-br.md) , [PartDesign Bearingholder Tutorial II/ro](PartDesign_Bearingholder_Tutorial_II/ro.md) , [PartDesign Bearingholder Tutorial II/ru](PartDesign_Bearingholder_Tutorial_II/ru.md) , [PartDesign Bearingholder Tutorial II/tr](PartDesign_Bearingholder_Tutorial_II/tr.md) , [Sandbox:Add FEM Solver Tutorial](Sandbox:Add_FEM_Solver_Tutorial.md) , [Sandbox:Hollow Cylinder Tutorial](Sandbox:Hollow_Cylinder_Tutorial.md) , [Sandbox:TechDraw template creation tutorial](Sandbox:TechDraw_template_creation_tutorial.md) , [Sandbox:TechDraw template creation tutorial/en](Sandbox:TechDraw_template_creation_tutorial/en.md) , [Spreadsheet Workbench](Spreadsheet_Workbench.md) , [Spreadsheet Workbench/bg](Spreadsheet_Workbench/bg.md) , [Spreadsheet Workbench/cs](Spreadsheet_Workbench/cs.md) , [Spreadsheet Workbench/de](Spreadsheet_Workbench/de.md) , [Spreadsheet Workbench/en](Spreadsheet_Workbench/en.md) , [Spreadsheet Workbench/es](Spreadsheet_Workbench/es.md) , [Spreadsheet Workbench/fr](Spreadsheet_Workbench/fr.md) , [Spreadsheet Workbench/hr](Spreadsheet_Workbench/hr.md) , [Spreadsheet Workbench/id](Spreadsheet_Workbench/id.md) , [Spreadsheet Workbench/it](Spreadsheet_Workbench/it.md) , [Spreadsheet Workbench/ko](Spreadsheet_Workbench/ko.md) , [Spreadsheet Workbench/pl](Spreadsheet_Workbench/pl.md) , [Spreadsheet Workbench/pt](Spreadsheet_Workbench/pt.md) , [Spreadsheet Workbench/pt-br](Spreadsheet_Workbench/pt-br.md) , [Spreadsheet Workbench/ro](Spreadsheet_Workbench/ro.md) , [Spreadsheet Workbench/ru](Spreadsheet_Workbench/ru.md) , [Spreadsheet Workbench/sv](Spreadsheet_Workbench/sv.md) , [Spreadsheet Workbench/tr](Spreadsheet_Workbench/tr.md) , [Spreadsheet Workbench/zh](Spreadsheet_Workbench/zh.md) , [Spreadsheet Workbench/zh-cn](Spreadsheet_Workbench/zh-cn.md) , [Spreadsheet Workbench/zh-tw](Spreadsheet_Workbench/zh-tw.md) , [TechDraw ExtensionCircleCenterLines](TechDraw_ExtensionCircleCenterLines.md) , [TechDraw ExtensionThreadBoltBottom](TechDraw_ExtensionThreadBoltBottom.md) , [TechDraw ExtensionThreadBoltSide](TechDraw_ExtensionThreadBoltSide.md) , [TechDraw ExtensionThreadHoleBottom](TechDraw_ExtensionThreadHoleBottom.md) , [TechDraw ExtensionThreadHoleSide](TechDraw_ExtensionThreadHoleSide.md) , [Transitioning from Solidworks to FreeCAD](Transitioning_from_Solidworks_to_FreeCAD.md) , [WikiPages](WikiPages.md) , [WikiPages/de](WikiPages/de.md) , [WikiPages/en](WikiPages/en.md) , [WikiPages/es](WikiPages/es.md) , [WikiPages/fr](WikiPages/fr.md) , [WikiPages/pl](WikiPages/pl.md) , [WikiPages/pt-br](WikiPages/pt-br.md) , [WikiPages/ru](WikiPages/ru.md) , [Template:Work in progress](Template:Work_in_progress.md) [Category:Administration](Category:Administration.md) [Category:UnfinishedDocu](Category:UnfinishedDocu.md) + +--- +[documentation index](../README.md) > Category:Work in progress diff --git a/wiki/Category:Workbenches.md b/wiki/Category:Workbenches.md index d9ff588a77..2d908b956d 100644 --- a/wiki/Category:Workbenches.md +++ b/wiki/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench](Arch_Workbench.md) , [Draft Workbench](Draft_Workbench.md) , [FEM Workbench](FEM_Workbench.md) , [FreeCad Workbenches](FreeCad_Workbenches.md) , [Image Workbench](Image_Workbench.md) , [Inspection Workbench](Inspection_Workbench.md) , [Mesh Workbench](Mesh_Workbench.md) , [OpenSCAD Workbench](OpenSCAD_Workbench.md) , [Part Module](Part_Module.md) , [PartDesign Workbench](PartDesign_Workbench.md) , [Path Workbench](Path_Workbench.md) , [Points Workbench](Points_Workbench.md) , [Raytracing Workbench](Raytracing_Workbench.md) , [Reverse Engineering Workbench](Reverse_Engineering_Workbench.md) , [Robot Workbench](Robot_Workbench.md) , [Sketcher Workbench](Sketcher_Workbench.md) , [Spreadsheet Workbench](Spreadsheet_Workbench.md) , [Start Workbench](Start_Workbench.md) , [Std Base](Std_Base.md) , [Std Edit Menu](Std_Edit_Menu.md) , [Std File Menu](Std_File_Menu.md) , [Std Help Menu](Std_Help_Menu.md) , [Std Macro Menu](Std_Macro_Menu.md) , [Std Tools Menu](Std_Tools_Menu.md) , [Std View Menu](Std_View_Menu.md) , [Std Windows Menu](Std_Windows_Menu.md) , [Surface Workbench](Surface_Workbench.md) , [TechDraw Workbench](TechDraw_Workbench.md) , [Testing](Testing.md) , [Web Workbench](Web_Workbench.md) , [Workbenches](Workbenches.md) , , , , , , , , , , , , , , , , , , , , , , , , , , , , , [Category:User Documentation](Category:User_Documentation.md) [Category:Arch](Category:Arch.md) [Category:Draft](Category:Draft.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:FEM](Category:FEM.md) [Category:Image](Category:Image.md) [Category:Inspection](Category:Inspection.md) [Category:Mesh](Category:Mesh.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) [Category:OpenSCAD](Category:OpenSCAD.md) [Category:Part](Category:Part.md) [Category:PartDesign](Category:PartDesign.md) [Category:Path](Category:Path.md) [Category:Plot](Category:Plot.md) [Category:Points](Category:Points.md) [Category:Raytracing](Category:Raytracing.md) [Category:Reinforcement](Category:Reinforcement.md) [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Reverse Engineering/pl](Category:Reverse_Engineering/pl.md) [Category:Robot](Category:Robot.md) [Category:Ship](Category:Ship.md) [Category:Sketcher](Category:Sketcher.md) [Category:Spreadsheet](Category:Spreadsheet.md) [Category:Spreadsheet/pl](Category:Spreadsheet/pl.md) [Category:Start](Category:Start.md) [Category:Surface](Category:Surface.md) [Category:TechDraw](Category:TechDraw.md) [Category:Test Framework](Category:Test_Framework.md) [Category:Web](Category:Web.md) [Category:Web/pl](Category:Web/pl.md) + +--- +[documentation index](../README.md) > Category:Workbenches diff --git a/wiki/Ccache.md b/wiki/Ccache.md index 70dca83726..8690ea164b 100644 --- a/wiki/Ccache.md +++ b/wiki/Ccache.md @@ -12,3 +12,6 @@ Ccache (or "ccache") is a compiler cache. It speeds up recompilation by caching - [distcc](distcc.md) [Category: Developer Documentation](Category:_Developer_Documentation.md) [Category: 3rd Party](Category:_3rd_Party.md) + +--- +[documentation index](../README.md) > [ Developer Documentation](Category: Developer Documentation.md) > Ccache diff --git a/wiki/Cfd_Workbench.md b/wiki/Cfd_Workbench.md index 06099fafa3..2d68ad32ff 100644 --- a/wiki/Cfd_Workbench.md +++ b/wiki/Cfd_Workbench.md @@ -1,6 +1,4 @@ # Cfd Workbench - - ## Introduction @@ -60,3 +58,6 @@ To use CFD for FreeCAD [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Cfd Workbench diff --git a/wiki/Changelog.md b/wiki/Changelog.md index 6fe3285da7..4dda7f7e07 100644 --- a/wiki/Changelog.md +++ b/wiki/Changelog.md @@ -1,5 +1,5 @@ # Changelog - The FreeCAD changelog is maintained on our mantis tracker: +The FreeCAD changelog is maintained on our mantis tracker: @@ -9,3 +9,6 @@ [Category:Administration](Category:Administration.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Changelog diff --git a/wiki/Civil_Engineering_Workbench.md b/wiki/Civil_Engineering_Workbench.md index b2cb33e01a..87e2799324 100644 --- a/wiki/Civil_Engineering_Workbench.md +++ b/wiki/Civil_Engineering_Workbench.md @@ -1,6 +1,4 @@ # Civil Engineering Workbench - - ## Description Civil Engineering is a broad category of engineering and covers several subjects, primarily environmental (wastewater), geotechnical, transportation, and structural. At present, the primary focus of the civil engineering effort in FreeCAD is focused on transportation engineering, or more specifically 3D Highway design. @@ -35,3 +33,6 @@ The Rebar tools are currently part of the [Arch Workbench](Arch_Workbench.md) [Category:Documentation](Category:Documentation.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Civil Engineering Workbench diff --git a/wiki/Code_snippets.md b/wiki/Code_snippets.md index 6e31c4a985..8dfbc09322 100644 --- a/wiki/Code_snippets.md +++ b/wiki/Code_snippets.md @@ -1,8 +1,4 @@ # Code snippets - - - - ## Introduction This page contains examples, pieces, chunks of FreeCAD python code collected from users experiences and discussions on the [forums](https://forum.freecadweb.org/viewforum.php?f=22). Read and use it as a start for your own scripts\... @@ -1751,3 +1747,6 @@ See [Coin3d snippets](Coin3d_snippets.md) {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Code snippets diff --git a/wiki/Codespell.md b/wiki/Codespell.md index 64fad8d27d..ee5956aab9 100644 --- a/wiki/Codespell.md +++ b/wiki/Codespell.md @@ -15,3 +15,6 @@ codespell -q 3 -L aci,ake,aline,alle,alledges,alocation,als,ang,anid,apoints,ba, - [Category: Developer Documentation](Category:_Developer_Documentation.md) + +--- +[documentation index](../README.md) > Codespell diff --git a/wiki/Coin3d_snippets.md b/wiki/Coin3d_snippets.md index 485a2a601f..b213c29b8e 100644 --- a/wiki/Coin3d_snippets.md +++ b/wiki/Coin3d_snippets.md @@ -1,8 +1,4 @@ # Coin3d snippets - - - - ## Description of this list Complex libraries like [COIN3D](https://en.wikipedia.org/wiki/Coin3D) need good documentation and good tutorials. Unfortunately, there aren\'t many tutorials for the COIN library. After a long search, the code examples listed below were found. They have been modified so that they can be loaded in FreeCAD. But some code may fail as these examples were created for other environments. You will find warnings to that effect in the code. @@ -99,3 +95,6 @@ No installation is required. Thanks go to the author of the program. {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Coin3d snippets diff --git a/wiki/Combo_View.md b/wiki/Combo_View.md index 7f03f9613f..83ff45bee2 100644 --- a/wiki/Combo_View.md +++ b/wiki/Combo_View.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Combo View diff --git a/wiki/Combo_view.md b/wiki/Combo_view.md index 356d1972bb..9a4bda67ec 100644 --- a/wiki/Combo_view.md +++ b/wiki/Combo_view.md @@ -1,6 +1,4 @@ # Combo view - - ## Introduction The [Combo view](combo_view.md) is one of the main panels in the FreeCAD [interface](interface.md). It is located on the left side of the screen by default. It is **composed of two sections**, the: @@ -56,4 +54,7 @@ Then activate the view using the menu, **View → Panels → Tree view** or ** {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Combo view diff --git a/wiki/Command.md b/wiki/Command.md index 97867ab75b..39751f4e5a 100644 --- a/wiki/Command.md +++ b/wiki/Command.md @@ -1,6 +1,4 @@ # Command - - ## Introduction @@ -96,3 +94,6 @@ See [Line drawing function](Line_drawing_function.md). {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Command_Reference|:Category:Command Reference]] page. Commands can be launched by a toolbar button, a menu item, or from a ](Category:Command_Reference|:Category:Command Reference]] page. Commands can be launched by a toolbar button, a menu item, or from a .md) > Command diff --git a/wiki/Common_Airfoil_Data_Import.md b/wiki/Common_Airfoil_Data_Import.md index 352a68dbed..42a1d4baa8 100644 --- a/wiki/Common_Airfoil_Data_Import.md +++ b/wiki/Common_Airfoil_Data_Import.md @@ -1,6 +1,4 @@ # Common Airfoil Data Import - - ## Importing Airfoil Data FreeCAD can import airfoil data such as that found on the [UIUC Airfoil Coordinates Database](http://m-selig.ae.illinois.edu/ads/coord_database.html) or files produced by airfoil creation and annalizing software like [XFLR5](http://www.xflr5.com/xflr5.htm) @@ -40,3 +38,6 @@ There is a macro available that will import the airfoil with a user defined chor [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Common Airfoil Data Import diff --git a/wiki/CompileOnCygwin.md b/wiki/CompileOnCygwin.md index 9a04a5c398..787bdfb89f 100644 --- a/wiki/CompileOnCygwin.md +++ b/wiki/CompileOnCygwin.md @@ -1,2 +1,5 @@ # CompileOnCygwin 1. REDIRECT [Compile on Cygwin](Compile_on_Cygwin.md) + +--- +[documentation index](../README.md) > CompileOnCygwin diff --git a/wiki/CompileOnMac.md b/wiki/CompileOnMac.md index aa1a930fff..5b3870a153 100644 --- a/wiki/CompileOnMac.md +++ b/wiki/CompileOnMac.md @@ -1,2 +1,5 @@ # CompileOnMac 1. REDIRECT [Compile on MacOS](Compile_on_MacOS.md) + +--- +[documentation index](../README.md) > CompileOnMac diff --git a/wiki/CompileOnMinGW.md b/wiki/CompileOnMinGW.md index 564711173e..6ad9104593 100644 --- a/wiki/CompileOnMinGW.md +++ b/wiki/CompileOnMinGW.md @@ -1,2 +1,5 @@ # CompileOnMinGW 1. REDIRECT [Compile on MinGW](Compile_on_MinGW.md) + +--- +[documentation index](../README.md) > CompileOnMinGW diff --git a/wiki/CompileOnUnix.md b/wiki/CompileOnUnix.md index d2f8bb2c02..6e06e2464a 100644 --- a/wiki/CompileOnUnix.md +++ b/wiki/CompileOnUnix.md @@ -1,2 +1,5 @@ # CompileOnUnix 1. REDIRECT [Compile\_on\_Linux](Compile_on_Linux.md) + +--- +[documentation index](../README.md) > CompileOnUnix diff --git a/wiki/CompileOnWindows.md b/wiki/CompileOnWindows.md index a28408035b..16f10bfa23 100644 --- a/wiki/CompileOnWindows.md +++ b/wiki/CompileOnWindows.md @@ -1,2 +1,5 @@ # CompileOnWindows 1. REDIRECT [Compile on Windows](Compile_on_Windows.md) + +--- +[documentation index](../README.md) > CompileOnWindows diff --git a/wiki/CompileOnWindows_-_Reducing_Disk_Footprint.md b/wiki/CompileOnWindows_-_Reducing_Disk_Footprint.md index f68abb154d..6920315b01 100644 --- a/wiki/CompileOnWindows_-_Reducing_Disk_Footprint.md +++ b/wiki/CompileOnWindows_-_Reducing_Disk_Footprint.md @@ -1,5 +1,5 @@ # CompileOnWindows - Reducing Disk Footprint - Techniques to reduce disk space required for building FreeCAD on Windows This may be of use to those, who are limited on disk space (for example, because of an SSD), and for those, who want to avoid installing complete Visual Studio. +Techniques to reduce disk space required for building FreeCAD on Windows This may be of use to those, who are limited on disk space (for example, because of an SSD), and for those, who want to avoid installing complete Visual Studio. It is recommended that you know on practice, how to [Compile on Windows](Compile_on_Windows.md) with Qt Creator, before attempting this. @@ -161,3 +161,6 @@ This batch must be run with administrator privileges (or, you can set to allow u [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > CompileOnWindows - Reducing Disk Footprint diff --git a/wiki/Compile_on_Cygwin.md b/wiki/Compile_on_Cygwin.md index f2494f68a3..de9d811e1c 100644 --- a/wiki/Compile_on_Cygwin.md +++ b/wiki/Compile_on_Cygwin.md @@ -1,5 +1,5 @@ # Compile on Cygwin - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** ## How to build and run FreeCAD under Cygwin @@ -76,3 +76,6 @@ Once you have built the sources successfully using \'make\' with \'make install\ [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Cygwin diff --git a/wiki/Compile_on_Docker.md b/wiki/Compile_on_Docker.md index 094a243793..85986aa988 100644 --- a/wiki/Compile_on_Docker.md +++ b/wiki/Compile_on_Docker.md @@ -1,11 +1,4 @@ # Compile on Docker - - - - - - - ## Overview Among the options for building and installing FreeCAD, there is the option of using Docker. This method is primarily useful for FreeCAD developers, using Linux or Mac OS computers. @@ -132,3 +125,6 @@ You can find the attached directories in the `/mnt` directory. [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Compile on Docker diff --git a/wiki/Compile_on_Linux.md b/wiki/Compile_on_Linux.md index e747a37731..19c925e280 100644 --- a/wiki/Compile_on_Linux.md +++ b/wiki/Compile_on_Linux.md @@ -1,10 +1,4 @@ # Compile on Linux - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -1296,3 +1290,6 @@ To update FreeCAD to latest build just repeat from step 3. Update AUR repo when [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Linux diff --git a/wiki/Compile_on_MacOS.md b/wiki/Compile_on_MacOS.md index 54924a569e..96c304d932 100644 --- a/wiki/Compile_on_MacOS.md +++ b/wiki/Compile_on_MacOS.md @@ -1,10 +1,4 @@ # Compile on MacOS - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -196,3 +190,6 @@ FreeCAD can be built against the latest git master hosted on github, and launche [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS diff --git a/wiki/Compile_on_MinGW.md b/wiki/Compile_on_MinGW.md index 9d1dfb7d3e..81b244bf3a 100644 --- a/wiki/Compile_on_MinGW.md +++ b/wiki/Compile_on_MinGW.md @@ -1,7 +1,4 @@ # Compile on MinGW - - - **(2021) The re-write of this page is an early draft, and work is still in progress. Please help us to finish it!
Meanwhile, try other [compilation options](Compiling.md).** @@ -151,3 +148,6 @@ And finally: [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MinGW diff --git a/wiki/Compile_on_Windows.md b/wiki/Compile_on_Windows.md index da8e3c1316..85382432f4 100644 --- a/wiki/Compile_on_Windows.md +++ b/wiki/Compile_on_Windows.md @@ -1,11 +1,4 @@ # Compile on Windows - - - - - - - This page explains step by step **how to compile FreeCAD 0.19 or newer on Windows**. For other platforms see [Compiling](Compiling.md). ## Prerequisites @@ -484,3 +477,6 @@ See also [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows diff --git a/wiki/Compile_on_Windows_with_VS2013.md b/wiki/Compile_on_Windows_with_VS2013.md index ff1f905c84..4584ccc3c0 100644 --- a/wiki/Compile_on_Windows_with_VS2013.md +++ b/wiki/Compile_on_Windows_with_VS2013.md @@ -1,5 +1,5 @@ # Compile on Windows with VS2013 - {{Note|Important Note:|This page is a child of the [Complile of Windows](CompileOnWindows.md) page.}} The following procedure will work for compiling on Windows Vista/7/8, for XP an alternate VS tool set is required for VS 2012 and 2013, which has not been tested successfully with the current Libpacks. To target XP(both x32 and x64) it is recommended to use VS2008 and Libpack FreeCADLibs\_11.0\_x86\_VC9.7z +{{Note|Important Note:|This page is a child of the [Complile of Windows](CompileOnWindows.md) page.}} The following procedure will work for compiling on Windows Vista/7/8, for XP an alternate VS tool set is required for VS 2012 and 2013, which has not been tested successfully with the current Libpacks. To target XP(both x32 and x64) it is recommended to use VS2008 and Libpack FreeCADLibs\_11.0\_x86\_VC9.7z ## **Prerequisites** @@ -115,3 +115,6 @@ If you don\'t get any errors your done. Exit Visual Studio and start FreeCAD by [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows with VS2013 diff --git a/wiki/Compile_using_Docker.md b/wiki/Compile_using_Docker.md index 58e9fb02c6..987dd087dd 100644 --- a/wiki/Compile_using_Docker.md +++ b/wiki/Compile_using_Docker.md @@ -1,2 +1,5 @@ # Compile using Docker 1. REDIRECT [Compile on Docker](Compile_on_Docker.md) + +--- +[documentation index](../README.md) > Compile using Docker diff --git a/wiki/Compiling.md b/wiki/Compiling.md index 11eca7bdd6..6aa3e27e81 100644 --- a/wiki/Compiling.md +++ b/wiki/Compiling.md @@ -1,5 +1,5 @@ # Compiling - Each operating system has its own page for compiling FreeCAD in the [Online Help Documentation](Online_Help_Toc.md). +Each operating system has its own page for compiling FreeCAD in the [Online Help Documentation](Online_Help_Toc.md). ------------------------------------------------------ -------------------------------------------------- ------------------------------------------------- ------------------------------------------------------------- [Compile on Docker container](Compile_on_Docker.md) @@ -19,3 +19,6 @@ To learn to use revision control system and contribute code see [Source code man [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling diff --git a/wiki/Compiling_(Speeding_up).md b/wiki/Compiling_(Speeding_up).md index aba88b2a19..69e97d2799 100644 --- a/wiki/Compiling_(Speeding_up).md +++ b/wiki/Compiling_(Speeding_up).md @@ -1,11 +1,4 @@ # Compiling (Speeding up) - - - - - - - ## Overview FreeCAD is a large application that may take from 10 minutes to one hour to compile completely from source. This depends primarily on the CPU that you have, and the number of cores that are used in the compilation process. Here are some tips to shorten that process and make build times shorter. @@ -60,3 +53,6 @@ The `distcc` program can be used to perform distributed compilation of C and C++ [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling (Speeding up) diff --git a/wiki/Complete_Workbench.md b/wiki/Complete_Workbench.md index 03a8d964ea..11f479ccfa 100644 --- a/wiki/Complete_Workbench.md +++ b/wiki/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench - - - **The [[Complete Workbench]] is deprecated.** @@ -13,3 +10,6 @@ See [Interface Customization](Interface_Customization.md) if you\'d like to adap [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench diff --git a/wiki/Conda.md b/wiki/Conda.md index 43d39b64ce..67dd6523ee 100644 --- a/wiki/Conda.md +++ b/wiki/Conda.md @@ -1,6 +1,4 @@ # Conda - - ## Introduction @@ -96,3 +94,6 @@ conda create --name fcenv-dev --channel freecad/label/dev freecad [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Conda diff --git a/wiki/Console_API.md b/wiki/Console_API.md index ea3e1935c1..558e418003 100644 --- a/wiki/Console_API.md +++ b/wiki/Console_API.md @@ -1,5 +1,5 @@ # Console API - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** This module is contained inside the FreeCAD module and contains methods to send text to FreeCAD\'s output console and status bar. The messages will have different color if they are message, warning or error. @@ -30,3 +30,6 @@ FreeCAD.Console.PrintMessage("Hello World!\n") [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Console API diff --git a/wiki/Constraint.md b/wiki/Constraint.md index 1ea5c235d8..05cbb72e73 100644 --- a/wiki/Constraint.md +++ b/wiki/Constraint.md @@ -1,6 +1,4 @@ # Constraint - - ## Introduction @@ -43,3 +41,6 @@ See the information in the [Glossary](Category:Glossary.md) > Constraint diff --git a/wiki/Constructive_Solid_Geometry.md b/wiki/Constructive_Solid_Geometry.md index 88e7b0f300..84b7f42ac0 100644 --- a/wiki/Constructive_Solid_Geometry.md +++ b/wiki/Constructive_Solid_Geometry.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > Constructive Solid Geometry diff --git a/wiki/Constructive_solid_geometry.md b/wiki/Constructive_solid_geometry.md index ab07c09591..316823ad13 100644 --- a/wiki/Constructive_solid_geometry.md +++ b/wiki/Constructive_solid_geometry.md @@ -1,6 +1,4 @@ # Constructive solid geometry - - ## Introduction [Constructive solid geometry](https://en.wikipedia.org/wiki/Constructive_solid_geometry) (**CSG**) is a modelling paradigm that is used in many traditional CAD systems. It essentially consists of using primitive solid objects and doing boolean operations with them, such as fusion, subtraction and intersection, in order to create a final shape. @@ -37,3 +35,6 @@ The [tutorials](tutorials.md) page provides some examples on creating solids wit [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Constructive solid geometry diff --git a/wiki/Continuous_Integration.md b/wiki/Continuous_Integration.md index e29ae5fe6e..9d542bd141 100644 --- a/wiki/Continuous_Integration.md +++ b/wiki/Continuous_Integration.md @@ -1,11 +1,4 @@ # Continuous Integration - - - - - - - ## Continuous Integration Currently the FreeCAD repository on GitHub will trigger a build on the below two CI systems. Between these systems pretty much all the main cross-platforms OSs are coveredː Linux, MacOSX, and Windows. CIs can also be used to run [unit tests](Testing.md). @@ -32,3 +25,6 @@ Currently the FreeCAD repository on GitHub will trigger a build on the below two [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Continuous Integration diff --git a/wiki/Contributors.md b/wiki/Contributors.md index 9dc0721210..14b07543b0 100644 --- a/wiki/Contributors.md +++ b/wiki/Contributors.md @@ -1,12 +1,4 @@ -# Contributors - - - - - - - - +# Contributors FreeCAD would not be what it is without the generous contributions of many people. Here\'s an overview of the people and companies who contributed to FreeCAD over time. For credits for the third party libraries see the [Third Party Libraries](Third_Party_Libraries.md) page. @@ -266,3 +258,6 @@ Developers of FreeCAD addons (retrieved from [Developer](Category:Developer.md) > Contributors diff --git a/wiki/Contributors_hub.md b/wiki/Contributors_hub.md index 9f6595b464..4b3c1f2e3d 100644 --- a/wiki/Contributors_hub.md +++ b/wiki/Contributors_hub.md @@ -1,6 +1,4 @@ # Contributors hub - - ## Introduction If you want to contribute to FreeCAD and use your energy to push this project forward, there are many ways to help. Below, you can find different roles that you can join. @@ -23,6 +21,7 @@ Also, you can help other users in the [FreeCAD support page](https://forum.freec ## FreeCAD Developer -## Web Developer or Administrator - +## Web Developer or Administrator +--- +[documentation index](../README.md) > Contributors hub diff --git a/wiki/Copying_Objects.md b/wiki/Copying_Objects.md index bf37e4e949..4c6bce2833 100644 --- a/wiki/Copying_Objects.md +++ b/wiki/Copying_Objects.md @@ -1,6 +1,4 @@ # Copying Objects - - ## Overview Like many other software FreeCAD also has the ability to copy/cut and paste objects (paragraphs, spreadsheet cells, images, etc.). [Document](Document_structure.md) objects may be freely copied within a document or between documents using the ** [Copy](Std_Copy.md)**, ** [Paste](Std_Paste.md)** and **[Duplicate Selection](Std_DuplicateSelection.md)** commands. @@ -39,4 +37,5 @@ Like most things in FreeCAD, there are many ways of making a copy. For more idea - [Paste](Std_Paste.md) - [Duplicate Selection](Std_DuplicateSelection.md) - +--- +[documentation index](../README.md) > Copying Objects diff --git a/wiki/Create_a_FeaturePython_object_part_I.md b/wiki/Create_a_FeaturePython_object_part_I.md index 393718866a..950fc79582 100644 --- a/wiki/Create_a_FeaturePython_object_part_I.md +++ b/wiki/Create_a_FeaturePython_object_part_I.md @@ -1,11 +1,4 @@ # Create a FeaturePython object part I - - - - - - - ## Introduction FeaturePython objects (also referred to as [Scripted objects](Scripted_objects.md)) provide the ability to extend FreeCAD with objects that integrate seamlessly into the FreeCAD framework. @@ -393,3 +386,6 @@ class box(): {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Create a FeaturePython object part I diff --git a/wiki/Create_a_FeaturePython_object_part_II.md b/wiki/Create_a_FeaturePython_object_part_II.md index 07c216ed96..70774f5869 100644 --- a/wiki/Create_a_FeaturePython_object_part_II.md +++ b/wiki/Create_a_FeaturePython_object_part_II.md @@ -1,11 +1,4 @@ # Create a FeaturePython object part II - - - - - - - ## Introduction On the [Create a FeaturePython object part I](Create_a_FeaturePython_object_part_I.md) page we\'ve focused on the internal aspects of a Python class built around a FeaturePython object, specifically an `App::FeaturePython` object. We\'ve created the object, defined some properties, and added a document-level event callback that allows our object to respond to a document recompute with the `execute()` method. But our object still lacks a presence in the [3D view](3D_view.md). Let\'s remedy that by adding a box. @@ -398,3 +391,6 @@ class ViewProviderBox: {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Create a FeaturePython object part II diff --git a/wiki/Creating_a_FeaturePython_Box,_Part_II.md b/wiki/Creating_a_FeaturePython_Box,_Part_II.md index dbc9f3c758..79b1c3797b 100644 --- a/wiki/Creating_a_FeaturePython_Box,_Part_II.md +++ b/wiki/Creating_a_FeaturePython_Box,_Part_II.md @@ -1,2 +1,5 @@ # Creating a FeaturePython Box, Part II 1. REDIRECT [Create\_a\_FeaturePython\_object\_part\_II](Create_a_FeaturePython_object_part_II.md) + +--- +[documentation index](../README.md) > Creating a FeaturePython Box, Part II diff --git a/wiki/Creating_a_simple_part_with_PartDesign.md b/wiki/Creating_a_simple_part_with_PartDesign.md index f92764da0b..98017c4e10 100644 --- a/wiki/Creating_a_simple_part_with_PartDesign.md +++ b/wiki/Creating_a_simple_part_with_PartDesign.md @@ -1,7 +1,4 @@ # Creating a simple part with PartDesign - - - {{TutorialInfo |Topic=Modeling |Level=Beginner @@ -264,4 +261,7 @@ You can also continue with this other tutorial of a slightly more complicated pa [Basic Part Design Tutorial](Basic_Part_Design_Tutorial.md) - {{Tutorials navi}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + {{Tutorials navi}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Creating a simple part with PartDesign diff --git a/wiki/Crowdin.md b/wiki/Crowdin.md index 4909a6d507..8bf802ac5b 100644 --- a/wiki/Crowdin.md +++ b/wiki/Crowdin.md @@ -1,2 +1,5 @@ # Crowdin 1. REDIRECT [Localisation\#Translate\_the\_FreeCAD\_source\_code](Localisation#Translate_the_FreeCAD_source_code.md) + +--- +[documentation index](../README.md) > Crowdin diff --git a/wiki/Crowdin_Administration.md b/wiki/Crowdin_Administration.md index db9b220549..6c4056ed27 100644 --- a/wiki/Crowdin_Administration.md +++ b/wiki/Crowdin_Administration.md @@ -1,6 +1,4 @@ # Crowdin Administration - - ## Roles - Translator @@ -40,3 +38,6 @@ [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Crowdin Administration diff --git a/wiki/Crowdin_Scripts.md b/wiki/Crowdin_Scripts.md index f8a6c3c62a..6864bc84ad 100644 --- a/wiki/Crowdin_Scripts.md +++ b/wiki/Crowdin_Scripts.md @@ -1,6 +1,4 @@ # Crowdin Scripts - - ## Managing Translations for FreeCAD FreeCAD uses a 3rd party translation service called [Crowdin](https://crowdin.com/project/freecad) to manage translations. @@ -92,3 +90,6 @@ The updatefromcrowdin.py script pulls changes from crowdin to your local FreeCAD [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Crowdin Scripts diff --git a/wiki/Crowdin_scripts.md b/wiki/Crowdin_scripts.md index d1b8a6ccce..1b3e98f47e 100644 --- a/wiki/Crowdin_scripts.md +++ b/wiki/Crowdin_scripts.md @@ -1,2 +1,5 @@ # Crowdin scripts 1. REDIRECT [Crowdin Scripts](Crowdin_Scripts.md) + +--- +[documentation index](../README.md) > Crowdin scripts diff --git a/wiki/Cura_Engine_Workbench.md b/wiki/Cura_Engine_Workbench.md index 561d53114a..e4cc865782 100644 --- a/wiki/Cura_Engine_Workbench.md +++ b/wiki/Cura_Engine_Workbench.md @@ -63,3 +63,6 @@ To use do the following: - [Macros recipes](Macros_recipes.md) [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Cura Engine Workbench diff --git a/wiki/CurvedShapes.md b/wiki/CurvedShapes.md index 645271cf0c..ec61a46248 100644 --- a/wiki/CurvedShapes.md +++ b/wiki/CurvedShapes.md @@ -1,2 +1,5 @@ # CurvedShapes 1. REDIRECT [CurvedShapes Workbench](CurvedShapes_Workbench.md) + +--- +[documentation index](../README.md) > CurvedShapes diff --git a/wiki/CurvedShapes_CurvedArray.md b/wiki/CurvedShapes_CurvedArray.md index 8d5df523c1..fa06941756 100644 --- a/wiki/CurvedShapes_CurvedArray.md +++ b/wiki/CurvedShapes_CurvedArray.md @@ -7,6 +7,8 @@ SeeAlso: --- +# CurvedShapes CurvedArray + ## Description Creates an array and resizes the items in the bounds of one or more hull curves. In this example, the orange base shape is rescaled in the bounds of the red and violet hullcurves. The curves do not have to be connected. The hullcurves should lie on or parallel to the XY- XZ- or YZ- plane. @@ -55,3 +57,6 @@ Creates an array and resizes the items in the bounds of one or more hull curves. [Category:Name](Category:Name.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Name](Category:Name.md) > CurvedShapes CurvedArray diff --git a/wiki/CurvedShapes_Workbench.md b/wiki/CurvedShapes_Workbench.md index 989096019b..c19d869a8f 100644 --- a/wiki/CurvedShapes_Workbench.md +++ b/wiki/CurvedShapes_Workbench.md @@ -1,5 +1,4 @@ -# CurvedShapes Workbench -  CurvedShapes External Workbench Icon +#  CurvedShapes External Workbench Icon CurvedShapes Workbench ## Introduction @@ -42,3 +41,6 @@ Recommended installation is through the FreeCAD CurvedShapes Workbench diff --git a/wiki/Curves_CompressionSpring.md b/wiki/Curves_CompressionSpring.md index 129048312f..13e465d49e 100644 --- a/wiki/Curves_CompressionSpring.md +++ b/wiki/Curves_CompressionSpring.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves CompressionSpring + ## Description The [Curves CompressionSpring](Curves_CompressionSpring.md) creates a compression spring. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -27,4 +29,7 @@ The [C - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves CompressionSpring diff --git a/wiki/Curves_Discretize.md b/wiki/Curves_Discretize.md index 99f672ef71..5f4220d07d 100644 --- a/wiki/Curves_Discretize.md +++ b/wiki/Curves_Discretize.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves Discretize + ## Description The [Curves Discretize](Curves_Discretize.md) command allows to discretize an edge or a wire. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -27,4 +29,7 @@ The [Curves D - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves Discretize diff --git a/wiki/Curves_EditableSpline.md b/wiki/Curves_EditableSpline.md index 98ca3230ad..33403de553 100644 --- a/wiki/Curves_EditableSpline.md +++ b/wiki/Curves_EditableSpline.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves EditableSpline + ## Description The [Curves EditableSpline](Curves_EditableSpline.md) creates a freehand B-Spline curve. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -27,4 +29,7 @@ The [Curv - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves EditableSpline diff --git a/wiki/Curves_ExtendCurve.md b/wiki/Curves_ExtendCurve.md index 410894a5b3..11f89163eb 100644 --- a/wiki/Curves_ExtendCurve.md +++ b/wiki/Curves_ExtendCurve.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ExtendCurve + ## Description The [Curves ExtendCurve](Curves_ExtendCurve.md) extends the selected edge. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md).. @@ -27,4 +29,7 @@ The [Curves - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves ExtendCurve diff --git a/wiki/Curves_GordonSurface.md b/wiki/Curves_GordonSurface.md index 0e492bd211..d2ca2dc793 100644 --- a/wiki/Curves_GordonSurface.md +++ b/wiki/Curves_GordonSurface.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves GordonSurface + ## Description The [Curves GordonSurface](Curves_GordonSurface.md) creates a surface that skins a network of curves. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -87,4 +89,7 @@ TODO - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves GordonSurface diff --git a/wiki/Curves_Interpolate.md b/wiki/Curves_Interpolate.md index 64223bf0f1..6839fbe404 100644 --- a/wiki/Curves_Interpolate.md +++ b/wiki/Curves_Interpolate.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves Interpolate + ## Description The [Curves Interpolate](Curves_Interpolate.md) interpolates points with a BSpline curve. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -27,4 +29,7 @@ The [Curves - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves Interpolate diff --git a/wiki/Curves_IsoCurve.md b/wiki/Curves_IsoCurve.md index 9d549c6f54..331c2a20d9 100644 --- a/wiki/Curves_IsoCurve.md +++ b/wiki/Curves_IsoCurve.md @@ -6,6 +6,8 @@ SeeAlso:[Curves JoinCurves](Curves_JoinCurve.md) --- +# Curves IsoCurve + ## Description The [Curves IsoCurve](Curves_IsoCurve.md) tool applies a UV oriented lattice on to a selected surface. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -36,4 +38,7 @@ The [Curves Iso - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves IsoCurve diff --git a/wiki/Curves_JoinCurve.md b/wiki/Curves_JoinCurve.md index a2eb082a58..4ce31a92ed 100644 --- a/wiki/Curves_JoinCurve.md +++ b/wiki/Curves_JoinCurve.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves JoinCurve + ## Description The [Curves JoinCurve](Curves_JoinCurve.md) joins the selected edges into BSpline curves. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -32,4 +34,7 @@ The [Curves Jo - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves JoinCurve diff --git a/wiki/Curves_Line.md b/wiki/Curves_Line.md index 752178b800..13a6bd6b03 100644 --- a/wiki/Curves_Line.md +++ b/wiki/Curves_Line.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves Line + ## Description The [Curves Line](Curves_Line.md) creates a parametric line between two vertices. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -27,4 +29,7 @@ The [Curves Line](C - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves Line diff --git a/wiki/Curves_MultiLoft.md b/wiki/Curves_MultiLoft.md index cb3edb9094..3d23310e6c 100644 --- a/wiki/Curves_MultiLoft.md +++ b/wiki/Curves_MultiLoft.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves MultiLoft + ## Description The [Curves MultiLoft](Curves_MultiLoft.md) lofts profile objects made of multiple faces in parallel. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -27,4 +29,7 @@ The [Curves Mu - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves MultiLoft diff --git a/wiki/Curves_ParametricComb.md b/wiki/Curves_ParametricComb.md index b32f9fa00f..0b763e2731 100644 --- a/wiki/Curves_ParametricComb.md +++ b/wiki/Curves_ParametricComb.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ParametricComb + ## Description The [Curves ParametricComb](Curves_ParametricComb.md) can help to visualize the regularity or smoothness of a curve as well as the continuity between two curves. Note: A comb is only for visualization. @@ -39,3 +41,6 @@ A 3D comb will be created for 3D curves. Sample and scale can be changed. This t {{Curves Tools navi}} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Curves ParametricComb diff --git a/wiki/Curves_ParametricSolid.md b/wiki/Curves_ParametricSolid.md index 0bfa273036..20b73b1037 100644 --- a/wiki/Curves_ParametricSolid.md +++ b/wiki/Curves_ParametricSolid.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ParametricSolid + ## Description The [Curves ParametricSolid](Curves_ParametricSolid.md) makes a parametric solid from selected faces. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -36,3 +38,6 @@ The [Cur {{Curves Tools navi}} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Curves ParametricSolid diff --git a/wiki/Curves_PasteSVG.md b/wiki/Curves_PasteSVG.md index e2b41671b3..90fa804723 100644 --- a/wiki/Curves_PasteSVG.md +++ b/wiki/Curves_PasteSVG.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves PasteSVG + ## Description The [Curves PasteSVG](Curves_PasteSVG.md) pastes the SVG content of the clipboard in to the [3D view](3D_view.md). This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -27,4 +29,7 @@ The [Curves Pas - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves PasteSVG diff --git a/wiki/Curves_PipeShell.md b/wiki/Curves_PipeShell.md index 4160c37a71..37bb8e9f76 100644 --- a/wiki/Curves_PipeShell.md +++ b/wiki/Curves_PipeShell.md @@ -1,2 +1,5 @@ # Curves PipeShell 1. REDIRECT [Curves\_Pipeshell](Curves_Pipeshell.md) + +--- +[documentation index](../README.md) > Curves PipeShell diff --git a/wiki/Curves_Pipeshell.md b/wiki/Curves_Pipeshell.md index 85cd635691..45ebada519 100644 --- a/wiki/Curves_Pipeshell.md +++ b/wiki/Curves_Pipeshell.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves Pipeshell + ## Description The [Curves Pipeshell](Curves_Pipeshell.md) creates a Pipeshell sweep object. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -88,4 +90,7 @@ The [Curves Pi - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves Pipeshell diff --git a/wiki/Curves_PipeshellProfile.md b/wiki/Curves_PipeshellProfile.md index 8dd61c4dee..8fc1ffaceb 100644 --- a/wiki/Curves_PipeshellProfile.md +++ b/wiki/Curves_PipeshellProfile.md @@ -6,6 +6,8 @@ SeeAlso:[Curves Pipeshell](Curves_Pipeshell.md) --- +# Curves PipeshellProfile + ## Description The [Curves PipeshellProfile](Curves_PipeshellProfile.md) creates a Profile object for Pipeshell. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -28,4 +30,7 @@ The [Cu - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves PipeshellProfile diff --git a/wiki/Curves_ProfileSupport.md b/wiki/Curves_ProfileSupport.md index 69d400c1b0..575679a0f8 100644 --- a/wiki/Curves_ProfileSupport.md +++ b/wiki/Curves_ProfileSupport.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ProfileSupport + ## Description The [Curves ProfileSupport](Curves_ProfileSupport.md) creates a support plane for sketches. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -29,4 +31,7 @@ The [Curv - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves ProfileSupport diff --git a/wiki/Curves_ReflectLines.md b/wiki/Curves_ReflectLines.md index 605f4daaba..30b1fd647d 100644 --- a/wiki/Curves_ReflectLines.md +++ b/wiki/Curves_ReflectLines.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ReflectLines + ## Description The [Curves ReflectLines](Curves_ReflectLines.md) creates the reflect lines on a shape, according to a view direction. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -27,4 +29,7 @@ The [Curves - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves ReflectLines diff --git a/wiki/Curves_SegmentSurface.md b/wiki/Curves_SegmentSurface.md index 2a14afa843..3c037fb66e 100644 --- a/wiki/Curves_SegmentSurface.md +++ b/wiki/Curves_SegmentSurface.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves SegmentSurface + ## Description The [Curves SegmentSurface](Curves_SegmentSurface.md) allows to segment a surface on isocurves. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -27,4 +29,7 @@ The [Curv - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves SegmentSurface diff --git a/wiki/Curves_SketchOnSurface.md b/wiki/Curves_SketchOnSurface.md index e65e64179e..13b183d645 100644 --- a/wiki/Curves_SketchOnSurface.md +++ b/wiki/Curves_SketchOnSurface.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves SketchOnSurface + ## Description This tool maps a sketch onto a face, like a label on a bottle. The sketch must be actually attached to a face (see Sketch.Support). The `Map` mode of the sketch has no effect on the result. @@ -59,4 +61,7 @@ The blue construction lines of the sketch are part of the sketch even if they ar - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves SketchOnSurface diff --git a/wiki/Curves_SplitCurve.md b/wiki/Curves_SplitCurve.md index 8a43d1d6a3..6093ad1570 100644 --- a/wiki/Curves_SplitCurve.md +++ b/wiki/Curves_SplitCurve.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves SplitCurve + ## Description The [Curves SplitCurve](Curves_SplitCurve.md) splits the selected edge. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -27,4 +29,7 @@ The [Curves S - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves SplitCurve diff --git a/wiki/Curves_ToConsole.md b/wiki/Curves_ToConsole.md index 44f65ebc2e..97d11fcd72 100644 --- a/wiki/Curves_ToConsole.md +++ b/wiki/Curves_ToConsole.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ToConsole + ## Description The [Curves ToConsole](Curves_ToConsole.md) moves objects to the console. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -27,4 +29,7 @@ The [Curves To - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves ToConsole diff --git a/wiki/Curves_Workbench.md b/wiki/Curves_Workbench.md index c0911de73b..31d8df7af1 100644 --- a/wiki/Curves_Workbench.md +++ b/wiki/Curves_Workbench.md @@ -1,5 +1,5 @@ # Curves Workbench - } +} @@ -50,3 +50,6 @@ Download the Curves workbench via the Curves Workbench diff --git a/wiki/Curves_ZebraTool.md b/wiki/Curves_ZebraTool.md index 7f81b12104..756fd27482 100644 --- a/wiki/Curves_ZebraTool.md +++ b/wiki/Curves_ZebraTool.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ZebraTool + ## Description The [Curves ZebraTool](Curves_ZebraTool.md) creates a Zebra texture for surface inspection. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -37,4 +39,7 @@ The [Curves Ze - {{Curves Tools navi}} + {{Curves Tools navi}} + +--- +[documentation index](../README.md) > Curves ZebraTool diff --git a/wiki/Custom_Spacing.md b/wiki/Custom_Spacing.md index 1b9e16812f..258ac6c3fb 100644 --- a/wiki/Custom_Spacing.md +++ b/wiki/Custom_Spacing.md @@ -1,6 +1,4 @@ # Custom Spacing - - ## Description The Custom Spacing tool allows a user to create rebar distribution in the structural element. You can define three segments for the distribution. For the first and third segments, you can give both a number of rebars and spacing between rebars. But for the second segment, you can only give either a number of rebars or spacing between rebars because one value automatically determines other. @@ -19,3 +17,6 @@ Output produced by Rebar Distribution dialog when user clicks on **OK** button: [Category:User Documentation](Category:User_Documentation.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Custom Spacing diff --git a/wiki/Custom_icon_in_tree_view.md b/wiki/Custom_icon_in_tree_view.md index 71cc75befd..e5a87f3252 100644 --- a/wiki/Custom_icon_in_tree_view.md +++ b/wiki/Custom_icon_in_tree_view.md @@ -1,6 +1,4 @@ # Custom icon in tree view - - ## Introduction This is an example of modifying the icon of a custom [viewprovider](Viewprovider.md), which are normally added to [scripted objects](scripted_objects.md). @@ -275,3 +273,6 @@ makeBox() {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Custom icon in tree view diff --git a/wiki/Customize_Toolbars.md b/wiki/Customize_Toolbars.md index a9578cdf35..76564a7943 100644 --- a/wiki/Customize_Toolbars.md +++ b/wiki/Customize_Toolbars.md @@ -1,5 +1,5 @@ # Customize Toolbars - {{TutorialInfo|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} +{{TutorialInfo|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} ## Synopsis @@ -116,3 +116,6 @@ See also [Interface Customization](Interface_Customization.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Customize Toolbars diff --git a/wiki/Customize_ToolsBar.md b/wiki/Customize_ToolsBar.md index 358b87aceb..ff975a3a5a 100644 --- a/wiki/Customize_ToolsBar.md +++ b/wiki/Customize_ToolsBar.md @@ -1,2 +1,5 @@ # Customize ToolsBar 1. REDIRECT [Customize\_Toolbars](Customize_Toolbars.md) + +--- +[documentation index](../README.md) > Customize ToolsBar diff --git a/wiki/DAG_view.md b/wiki/DAG_view.md index 38dc9ebef3..82cb48dd4c 100644 --- a/wiki/DAG_view.md +++ b/wiki/DAG_view.md @@ -1,6 +1,4 @@ # DAG view - - ## Introduction @@ -63,4 +61,7 @@ In the [parameter editor](Std_DlgParameter.md) you can also change some properti {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > DAG view diff --git a/wiki/DWG.md b/wiki/DWG.md index 12639dc3ac..31de31655c 100644 --- a/wiki/DWG.md +++ b/wiki/DWG.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > DWG diff --git a/wiki/DXF.md b/wiki/DXF.md index 53d2c2a383..e447f2e5b2 100644 --- a/wiki/DXF.md +++ b/wiki/DXF.md @@ -1,6 +1,4 @@ # DXF - - ## Background history The Drawing Exchange Format (DXF) is a proprietary CAD data format developed by Autodesk to enable file exchange between their flagship AutoCAD product and other software. There are a number of good software libraries for reading/writing the DXF format. @@ -42,3 +40,6 @@ In addition to the options under the Edit → Preferences, the [TechDraw Workben [Category:User Documentation](Category:User_Documentation.md) [Category:Draft](Category:Draft.md) [Category:TechDraw](Category:TechDraw.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > DXF diff --git a/wiki/Datum.md b/wiki/Datum.md index da77d82403..c0e6daac48 100644 --- a/wiki/Datum.md +++ b/wiki/Datum.md @@ -1,6 +1,4 @@ # Datum - - ## Introduction In FreeCAD the word \"[Datum](Datum.md)\" is normally used to refer to auxiliary geometry in the [PartDesign Workbench](PartDesign_Workbench.md). These geometrical elements will not form part of the final [Shape](Shape.md) of the [Body](Body.md), but can be used as references and supports for [sketches](Sketch.md) and other types of [features](Feature.md). @@ -43,3 +41,6 @@ Since they appeared in v0.17, datum objects were intended to be used inside [Par {{PartDesign Tools navi}} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Datum diff --git a/wiki/DebianDevelopment.md b/wiki/DebianDevelopment.md index b422822c4d..7059fb2090 100644 --- a/wiki/DebianDevelopment.md +++ b/wiki/DebianDevelopment.md @@ -1,2 +1,5 @@ # DebianDevelopment 1. REDIRECT [Debian development](Debian_development.md) + +--- +[documentation index](../README.md) > DebianDevelopment diff --git a/wiki/DebianUnstable.md b/wiki/DebianUnstable.md index 473e952a6c..32c2329dc0 100644 --- a/wiki/DebianUnstable.md +++ b/wiki/DebianUnstable.md @@ -1,2 +1,5 @@ # DebianUnstable 1. REDIRECT [Debian Unstable](Debian_Unstable.md) + +--- +[documentation index](../README.md) > DebianUnstable diff --git a/wiki/Debian_Unstable.md b/wiki/Debian_Unstable.md index 31336a344e..e082b5dd50 100644 --- a/wiki/Debian_Unstable.md +++ b/wiki/Debian_Unstable.md @@ -1,6 +1,4 @@ # Debian Unstable - - [Debian Unstable](https://wiki.debian.org/DebianUnstable) is a rolling distribution used for [Debian development](Debian_development.md) and recommended for advanced users in FreeCAD development and packaging. New packages are ready as soon as they are uploaded and built, unless the uploader has marked them for [Debian Experimental](https://wiki.debian.org/DebianExperimental) which requires explicit installation (after some setup to enable the extra distribution) via . Frequently, people using Debian Testing should actually use Debian Unstable; Debian Testing should only be considered a \"QA release pocket\", since, while it may appear to be more stable than Unstable, there\'s actually a downside. New packages are uploaded to Debian Unstable and migrate to Testing after some time, and so security fixes and important packaging changes can be inappropriately delayed. @@ -31,3 +29,6 @@ deb [http://deb.debian.org/debian](http://deb.debian.org/debian) experimental [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian Unstable diff --git a/wiki/Debian_development.md b/wiki/Debian_development.md index 2731ab508d..d7af704b0b 100644 --- a/wiki/Debian_development.md +++ b/wiki/Debian_development.md @@ -1,6 +1,4 @@ # Debian development - - Debian is the parent distribution from which many other Linux distributions are derived, such as Ubuntu, Linux Mint, and others. As such, it\'s worthwhile to focus specifically on Debian development since improvements in Debian will filter down through its descendants. [Debian Unstable](Debian_Unstable.md) is a good target distribution for FreeCAD development on Linux since it provides the most up-to-date packages possible, as a rolling distribution. One can contribute both to FreeCAD development on Debian as well as its ecosystem of related packages and dependencies. @@ -8,3 +6,6 @@ Debian is the parent distribution from which many other Linux distributions are [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian development diff --git a/wiki/Debug.md b/wiki/Debug.md index ad74a0555b..38521ad7e1 100644 --- a/wiki/Debug.md +++ b/wiki/Debug.md @@ -1,2 +1,5 @@ # Debug 1. REDIRECT [Debugging](Debugging.md) + +--- +[documentation index](../README.md) > Debug diff --git a/wiki/Debugging.md b/wiki/Debugging.md index 5974cd0657..2cf558ec40 100644 --- a/wiki/Debugging.md +++ b/wiki/Debugging.md @@ -1,11 +1,4 @@ # Debugging - - - - - - - ## Test First Before you go through the pain of debugging use the [Test framework](Testing.md) to check if the standard tests work properly. If they do not run complete there is possibly a broken installation. @@ -374,3 +367,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging diff --git a/wiki/Defeaturing.md b/wiki/Defeaturing.md index d450818b0b..50a0e41a10 100644 --- a/wiki/Defeaturing.md +++ b/wiki/Defeaturing.md @@ -1,6 +1,4 @@ # Defeaturing - - ## Introduction 3D Model Defeaturing got added with Open CASCADE 7.3 [1](https://dev.opencascade.org/index.php?q=node/1211) and can be used for editing STEP models by removing of the features from the model. @@ -28,3 +26,6 @@ Part.show(box4) #show defeatured shape [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Defeaturing diff --git a/wiki/Defeaturing_Workbench.md b/wiki/Defeaturing_Workbench.md index 8b46e561c7..612a0040b1 100644 --- a/wiki/Defeaturing_Workbench.md +++ b/wiki/Defeaturing_Workbench.md @@ -1,5 +1,4 @@ -# Defeaturing Workbench - Defeaturing workbench icon +# Defeaturing workbench icon Defeaturing Workbench ## Introduction @@ -117,3 +116,6 @@ New workbenches are in development, stay tuned! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Defeaturing Workbench diff --git a/wiki/DependencyGraph.md b/wiki/DependencyGraph.md index 5f4dc20006..8371474d97 100644 --- a/wiki/DependencyGraph.md +++ b/wiki/DependencyGraph.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > DependencyGraph diff --git a/wiki/Dependency_Graph.md b/wiki/Dependency_Graph.md index 7c2de8729d..614362cc72 100644 --- a/wiki/Dependency_Graph.md +++ b/wiki/Dependency_Graph.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Dependency Graph diff --git a/wiki/Dependency_Matrix.md b/wiki/Dependency_Matrix.md index 4e9939caf3..940e706618 100644 --- a/wiki/Dependency_Matrix.md +++ b/wiki/Dependency_Matrix.md @@ -1,2 +1,5 @@ # Dependency Matrix 1. REDIRECT [Sandbox:Dependency Matrix](Sandbox:Dependency_Matrix.md) + +--- +[documentation index](../README.md) > Dependency Matrix diff --git a/wiki/Dependency_graph.md b/wiki/Dependency_graph.md index d3b3783643..6800f3e1ab 100644 --- a/wiki/Dependency_graph.md +++ b/wiki/Dependency_graph.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Dependency graph diff --git a/wiki/Design456_2DExtend.md b/wiki/Design456_2DExtend.md index 360f4543c0..be1fcb652b 100644 --- a/wiki/Design456_2DExtend.md +++ b/wiki/Design456_2DExtend.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Design456 2DExtend + ## Description The **Design456 Trim Line** lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at felis ut urna auctor pharetra id at nulla. . This tool is part of the [external workbench](external_workbenches.md) called [Design456](Design456_Workbench.md). @@ -44,3 +46,6 @@ At the moment, the command extend only at the end. This must be improved to do l }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Design456 2DExtend diff --git a/wiki/Design456_2DTrim.md b/wiki/Design456_2DTrim.md index 6b43a04440..0dc84eb039 100644 --- a/wiki/Design456_2DTrim.md +++ b/wiki/Design456_2DTrim.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Design456 2DTrim + ## Description The **Design456 Trim Line** lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at felis ut urna auctor pharetra id at nulla. This tool is part of the [external workbench](external_workbenches.md) called [Design456](Design456_Workbench.md). @@ -43,3 +45,6 @@ Unknown yet. }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Design456 2DTrim diff --git a/wiki/Design456_3Point.md b/wiki/Design456_3Point.md index 337f8fb750..d76e0ba2fa 100644 --- a/wiki/Design456_3Point.md +++ b/wiki/Design456_3Point.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Design456 3Point + ## Description The [Design456 3Point](Design456_3Point.md) lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at felis ut urna auctor pharetra id at nulla. . This tool is part of the [external workbench](external_workbenches.md) called [Design456](Design456_Workbench.md). @@ -43,3 +45,6 @@ Unknown yet. }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Design456 3Point diff --git a/wiki/Design456_Extract.md b/wiki/Design456_Extract.md index f0621867c6..bf240f3060 100644 --- a/wiki/Design456_Extract.md +++ b/wiki/Design456_Extract.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Design456 Extract + ## Description The **Extract face** lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at felis ut urna auctor pharetra id at nulla. . This tool is part of the [external workbench](external_workbenches.md) called [Design456](Design456_Workbench.md). @@ -38,3 +40,6 @@ Works on 3D objects. }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Design456 Extract diff --git a/wiki/Design456_Extrude.md b/wiki/Design456_Extrude.md index 6bc802771a..05aa8ee6c9 100644 --- a/wiki/Design456_Extrude.md +++ b/wiki/Design456_Extrude.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Design456 Extrude + ## Description The **Extrude** lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at felis ut urna auctor pharetra id at nulla. This tool is part of the [external workbench](external_workbenches.md) called [Design456](Design456_Workbench.md). @@ -36,3 +38,6 @@ Extrude doesn\'t work on 3D objects. This limitation is from the fact that many }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Design456 Extrude diff --git a/wiki/Design456_ExtrudeFace.md b/wiki/Design456_ExtrudeFace.md index be9377273c..fe4b6abb01 100644 --- a/wiki/Design456_ExtrudeFace.md +++ b/wiki/Design456_ExtrudeFace.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Design456 ExtrudeFace + ## Description The [Design456 ExtrudeFace](Design456_ExtrudeFace.md) lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at felis ut urna auctor pharetra id at nulla. This tool is part of the [external workbench](external_workbenches.md) called [Design456](Design456_Workbench.md). @@ -37,3 +39,6 @@ Works on 3D objects. }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Design456 ExtrudeFace diff --git a/wiki/Design456_LoftOnDirection.md b/wiki/Design456_LoftOnDirection.md index aa30422712..08a1e0b8a6 100644 --- a/wiki/Design456_LoftOnDirection.md +++ b/wiki/Design456_LoftOnDirection.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Design456 LoftOnDirection + ## Description The **Design456 Loft on Direction** lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at felis ut urna auctor pharetra id at nulla. This tool is part of the [external workbench](external_workbenches.md) called [Design456](Design456_Workbench.md). @@ -39,3 +41,6 @@ Works on 3D objects and might fail sometimes. To be more tested and find out the }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Design456 LoftOnDirection diff --git a/wiki/Design456_MultiPointsToWireClose.md b/wiki/Design456_MultiPointsToWireClose.md index d9c5443190..4b057b2d08 100644 --- a/wiki/Design456_MultiPointsToWireClose.md +++ b/wiki/Design456_MultiPointsToWireClose.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Design456 MultiPointsToWireClose + ## Description The **Design456 Multi Points To Wire - Close** lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at felis ut urna auctor pharetra id at nulla. This tool is part of the [external workbench](external_workbenches.md) called [Design456](Design456_Workbench.md). @@ -36,3 +38,6 @@ When you select the points in the object lists, the points aren\'t green. That c }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Design456 MultiPointsToWireClose diff --git a/wiki/Design456_MultiPointsToWireOpen.md b/wiki/Design456_MultiPointsToWireOpen.md index 07d5334842..eab97c9aca 100644 --- a/wiki/Design456_MultiPointsToWireOpen.md +++ b/wiki/Design456_MultiPointsToWireOpen.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Design456 MultiPointsToWireOpen + ## Description The **Design456 Multi Points To Wire - Open** lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at felis ut urna auctor pharetra id at nulla. This tool is part of the [external workbench](external_workbenches.md) called [Design456](Design456_Workbench.md). @@ -36,3 +38,6 @@ When you select the points in the object lists, the points aren\'t green. That c }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Design456 MultiPointsToWireOpen diff --git a/wiki/Design456_PartMerge.md b/wiki/Design456_PartMerge.md index cdb60938ad..e13470c54d 100644 --- a/wiki/Design456_PartMerge.md +++ b/wiki/Design456_PartMerge.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Design456 PartMerge + ## Description The **Part Merge** lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at felis ut urna auctor pharetra id at nulla. This tool is part of the [external workbench](external_workbenches.md) called [Design456](Design456_Workbench.md). @@ -36,3 +38,6 @@ Works on 3D objects. }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Design456 PartMerge diff --git a/wiki/Design456_PartSubtract.md b/wiki/Design456_PartSubtract.md index 62ceb82b6c..6812d4d5d2 100644 --- a/wiki/Design456_PartSubtract.md +++ b/wiki/Design456_PartSubtract.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Design456 PartSubtract + ## Description The **Part Subtract** lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at felis ut urna auctor pharetra id at nulla. This tool is part of the [external workbench](external_workbenches.md) called [Design456](Design456_Workbench.md). @@ -36,3 +38,6 @@ Works on 3D objects. }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Design456 PartSubtract diff --git a/wiki/Design456_SplitObject.md b/wiki/Design456_SplitObject.md index 194f216340..5873b2c252 100644 --- a/wiki/Design456_SplitObject.md +++ b/wiki/Design456_SplitObject.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Design456 SplitObject + ## Description The **Design456 Split Object** lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at felis ut urna auctor pharetra id at nulla. This tool is part of the [external workbench](external_workbenches.md) called [Design456](Design456_Workbench.md). @@ -41,3 +43,6 @@ Works on 3D objects. }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Design456 SplitObject diff --git a/wiki/Design456_Tweak.md b/wiki/Design456_Tweak.md index c56e56f473..c5de041a1b 100644 --- a/wiki/Design456_Tweak.md +++ b/wiki/Design456_Tweak.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Design456 Tweak + ## Description The [Design456 Tweak](Design456_Tweak.md) tool is an experimental command to modify an object\'s shape. This tool, originally conceived for the Draft Workbench, it\'s still unfinished, and became part of the [external workbench](external_workbenches.md) called [Design456](Design456_Workbench.md) to allow initial testing. For reference: @@ -43,3 +45,6 @@ The tool is actually quite limited: }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Design456 Tweak diff --git a/wiki/Design456_Workbench.md b/wiki/Design456_Workbench.md index e2bcaafdce..bf87bb64f8 100644 --- a/wiki/Design456_Workbench.md +++ b/wiki/Design456_Workbench.md @@ -1,5 +1,4 @@ # Design456 Workbench - **This workbench is under heavy development** ## Introduction @@ -100,3 +99,6 @@ I did the conversion for the Nurbs and fixed many bugs. In the begning I added t }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Design456 Workbench diff --git a/wiki/Developer_hub.md b/wiki/Developer_hub.md index a436fe76fe..d9ab5e688a 100644 --- a/wiki/Developer_hub.md +++ b/wiki/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub - - ![150](images/Crystal_Clear_app_tutorials.png ) This is the place to come if you want to contribute to the development of the FreeCAD software. @@ -125,3 +123,6 @@ FreeCAD, though usable in certain areas, is at the beginning of a long way into [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub diff --git a/wiki/Developing_FreeCAD_with_KDevelop.md b/wiki/Developing_FreeCAD_with_KDevelop.md index 570eb3be68..960ff4e5b0 100644 --- a/wiki/Developing_FreeCAD_with_KDevelop.md +++ b/wiki/Developing_FreeCAD_with_KDevelop.md @@ -1,6 +1,4 @@ # Developing FreeCAD with KDevelop - - ## Introduction The intention for this page is to help orient users who are inclined toward understanding and reading FreeCAD source code with the possible end goal of contributing eventually to the project. @@ -21,3 +19,6 @@ The intention for this page is to help orient users who are inclined toward unde [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Developing FreeCAD with KDevelop diff --git a/wiki/Development_roadmap.md b/wiki/Development_roadmap.md index 5df419f11c..30a46b8114 100644 --- a/wiki/Development_roadmap.md +++ b/wiki/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap - **Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** +**Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** FreeCAD - though usable in many applications - is at the beginning of a long journey into CAD mainstream. There is still a lot to do to reach a state where we can compete with commercial software. @@ -46,3 +46,6 @@ Like in the most [FLOSS](http://en.wikipedia.org/wiki/FLOSS) projects a release [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap diff --git a/wiki/Dialog_creation.md b/wiki/Dialog_creation.md index c1c3223abe..57246b4ec6 100644 --- a/wiki/Dialog_creation.md +++ b/wiki/Dialog_creation.md @@ -1,8 +1,4 @@ # Dialog creation - - - - ## Introduction In this page we will show how to build a simple graphical interface with [Qt Designer](http://qt-project.org/doc/qt-4.8/designer-manual.html), Qt\'s official tool for designing interfaces; the dialog will be converted to [Python](Python.md) code, then it will be used inside FreeCAD. We\'ll assume that the user knows how to edit and run [Python](Python.md) generally. @@ -257,3 +253,6 @@ class plane(): {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation diff --git a/wiki/Dialog_creation_image_and_animated_GIF.md b/wiki/Dialog_creation_image_and_animated_GIF.md index 612711b314..4699348f87 100644 --- a/wiki/Dialog_creation_image_and_animated_GIF.md +++ b/wiki/Dialog_creation_image_and_animated_GIF.md @@ -1,6 +1,4 @@ # Dialog creation image and animated GIF - - ## Introduction This is an example of [dialog creation](Dialog_creation.md) with [PySide](PySide.md). @@ -48,3 +46,6 @@ patience.show() #show the image {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation image and animated GIF diff --git a/wiki/Dialog_creation_reading_and_writing_files.md b/wiki/Dialog_creation_reading_and_writing_files.md index 3a7acc015e..7e63d84d36 100644 --- a/wiki/Dialog_creation_reading_and_writing_files.md +++ b/wiki/Dialog_creation_reading_and_writing_files.md @@ -1,6 +1,4 @@ # Dialog creation reading and writing files - - ## Introduction This is an example of [dialog creation](Dialog_creation.md) with [PySide](PySide.md). @@ -93,3 +91,6 @@ else: {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation reading and writing files diff --git a/wiki/Dialog_creation_setting_colors.md b/wiki/Dialog_creation_setting_colors.md index 3bcb9c6b38..0dc61bd52b 100644 --- a/wiki/Dialog_creation_setting_colors.md +++ b/wiki/Dialog_creation_setting_colors.md @@ -1,6 +1,4 @@ # Dialog creation setting colors - - ## Introduction This is an example of [dialog creation](Dialog_creation.md) with [PySide](PySide.md). @@ -200,3 +198,6 @@ else: {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation setting colors diff --git a/wiki/Dialog_creation_with_various_widgets.md b/wiki/Dialog_creation_with_various_widgets.md index cf4b73143d..a779386fe4 100644 --- a/wiki/Dialog_creation_with_various_widgets.md +++ b/wiki/Dialog_creation_with_various_widgets.md @@ -1,6 +1,4 @@ # Dialog creation with various widgets - - ## Introduction This is an example of [dialog creation](Dialog_creation.md) with [PySide](PySide.md). @@ -398,3 +396,6 @@ The code page and the icons [Qt\_Example](Qt_Example.md) {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation with various widgets diff --git a/wiki/Direct_modeling_tools.md b/wiki/Direct_modeling_tools.md index bbd13bbdca..9c09cd319a 100644 --- a/wiki/Direct_modeling_tools.md +++ b/wiki/Direct_modeling_tools.md @@ -1,5 +1,4 @@ # Direct modeling tools - **An effort to implement direct modelling methodologies is currently being explored at https://github.com/MariwanJ/Design456** This page is dedicated to the description of the [Google Summer of Code 2017](Google_Summer_of_Code.md) project idea regarding direct modeling. @@ -51,3 +50,6 @@ Medium - Ticket [\#1367: Extend Draft Edit mode to work with 3D shapes](https://tracker.freecadweb.org/view.php?id=1367) [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > [Google Summer of Code](Category:Google Summer of Code.md) > Direct modeling tools diff --git a/wiki/Distcc.md b/wiki/Distcc.md index 6d303acd70..5cc47637aa 100644 --- a/wiki/Distcc.md +++ b/wiki/Distcc.md @@ -14,3 +14,6 @@ FreeCAD dev \'etrombly\' has published a short explanation on [how to install di - [ccache](ccache.md) [Category: Developer Documentation](Category:_Developer_Documentation.md) [Category: 3rd Party](Category:_3rd_Party.md) + +--- +[documentation index](../README.md) > [ Developer Documentation](Category: Developer Documentation.md) > Distcc diff --git a/wiki/Docker.md b/wiki/Docker.md index 0ed3d6f2e1..af7e80c7a2 100644 --- a/wiki/Docker.md +++ b/wiki/Docker.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Docker diff --git a/wiki/Document_structure.md b/wiki/Document_structure.md index 9430022a0a..d11653fc60 100644 --- a/wiki/Document_structure.md +++ b/wiki/Document_structure.md @@ -1,11 +1,4 @@ # Document structure - - - - - - - ![](images/Screenshot_treeview.jpg ) A FreeCAD document contains all the objects of your scene. It can contain groups, and objects made with any workbench. You can therefore switch between workbenches, and still work on the same document. The document is what gets saved to disk when you save your work. You can also open several documents at the same time in FreeCAD, and open several views of the same document. Inside the document, the objects can be moved into groups, and have a unique name. Managing groups, objects and object names is done mainly from the [Tree view](Tree_view.md). **Note:** It can also be done, of course, like everything in FreeCAD, from the [Python](Python.md) interpreter. In the [Tree view](Tree_view.md), you can create [groups](Std_Group.md), move objects to groups, delete objects or groups, by right-clicking in the [tree view](tree_view.md) or on an object, rename objects by double-clicking on their names, or possibly other operations, depending on the current workbench. @@ -41,7 +34,5 @@ FreeCADGui.ActiveDocument.Blob FreeCADGui.ActiveDocument.ActiveView ``` Will return the current view - - - - +--- +[documentation index](../README.md) > Document structure diff --git a/wiki/Dodo.md b/wiki/Dodo.md index 9546c0633b..db69a34678 100644 --- a/wiki/Dodo.md +++ b/wiki/Dodo.md @@ -1,2 +1,5 @@ # Dodo 1. REDIRECT [Flamingo Workbench](Flamingo_Workbench.md)Dodo is a Py3/Qt5 update of Flamingo with some other revisions a refactoring + +--- +[documentation index](../README.md) > Dodo diff --git a/wiki/Dodo_Workbench.md b/wiki/Dodo_Workbench.md index 03cc8b8c8a..363929c58e 100644 --- a/wiki/Dodo_Workbench.md +++ b/wiki/Dodo_Workbench.md @@ -1,2 +1,5 @@ # Dodo Workbench 1. REDIRECT [Flamingo Workbench](Flamingo_Workbench.md)Dodo is a Py3/Qt5 update of Flamingo with some other revisions a refactoring + +--- +[documentation index](../README.md) > Dodo Workbench diff --git a/wiki/Donate.md b/wiki/Donate.md index a91a3cbf12..2c4eb8ca7f 100644 --- a/wiki/Donate.md +++ b/wiki/Donate.md @@ -1,7 +1,4 @@ # Donate - - - +--- +[documentation index](../README.md) > Macro TemplateHelper diff --git a/wiki/Macro_Texture.md b/wiki/Macro_Texture.md index 61f1defb03..11bb22a9d7 100644 --- a/wiki/Macro_Texture.md +++ b/wiki/Macro_Texture.md @@ -1,7 +1,4 @@ # Macro Texture - - - {{Macro |Name=Macro Texture |Icon=FCTexture.png @@ -284,4 +281,5 @@ The macro FCCreaLoft that causes an error with the version FreeCAD : Version: 0.14.3343 (Git), Python version: 2.7.6, Qt version: 4.8.5 - +--- +[documentation index](../README.md) > Macro Texture diff --git a/wiki/Macro_Texture_Objects.md b/wiki/Macro_Texture_Objects.md index a24f4edafc..095e9335a9 100644 --- a/wiki/Macro_Texture_Objects.md +++ b/wiki/Macro_Texture_Objects.md @@ -1,5 +1,5 @@ # Macro Texture Objects - {{Macro +{{Macro |Name=Texture Objects |Icon=Macro_Texture_Objects.png |Description=This macro allows you to temporarily put a texture image on selected objects. To remove the textures, simply close and reopen the document. @@ -49,4 +49,5 @@ for obj in FreeCADGui.Selection.getSelection(): [Script to map texture with environement checked](https://forum.freecadweb.org/viewtopic.php?f=3&t=28795) - +--- +[documentation index](../README.md) > Macro Texture Objects diff --git a/wiki/Macro_Toggle_Drawstyle.md b/wiki/Macro_Toggle_Drawstyle.md index 783649d031..4e00b5249a 100644 --- a/wiki/Macro_Toggle_Drawstyle.md +++ b/wiki/Macro_Toggle_Drawstyle.md @@ -1,5 +1,5 @@ # Macro Toggle Drawstyle - {{Macro +{{Macro |Name=Macro Toggle Drawstyle |Description=When working with FreeCAD there are times when you want to quickly change the Drawstyle of the object you are working with. This is available through the Drawstyle pull-down menu where any Drawstyle may be selected. This macro makes 2 of the Drawstyles available as a clickable button on a toolbar which the user may click to toggle back and forth between the two Drawstyles. The user can modify the macro code to select which 2 Drawstyles they wish to toggle between. This does not add functionality missing in the Drawstyles pull-down menu, but rather an increased convenience level. |Author=Piffpoof @@ -131,4 +131,5 @@ else: The forum discussion [Keyboard shortcut, View toolbar - Wireframe](https://forum.freecadweb.org/viewtopic.php?f=3&t=14336) - +--- +[documentation index](../README.md) > Macro Toggle Drawstyle diff --git a/wiki/Macro_Toggle_Drawstyle_Optimized.md b/wiki/Macro_Toggle_Drawstyle_Optimized.md index c092d9b9f2..c140a00b01 100644 --- a/wiki/Macro_Toggle_Drawstyle_Optimized.md +++ b/wiki/Macro_Toggle_Drawstyle_Optimized.md @@ -1,5 +1,5 @@ # Macro Toggle Drawstyle Optimized - {{Macro +{{Macro |Name=Macro Toggle Drawstyle Optimized |Description=Script optimized for all languages and to object selected or all objects.
When working with FreeCAD there are times when you want to quickly change the Drawstyle of the object you are working with. This is available through the Drawstyle pull-down menu where any Drawstyle may be selected. This macro makes 2 of the Drawstyles available as a clickable button on a toolbar which the user may click to toggle back and forth between the two Drawstyles.
See also:
Toggle global display mode: [https://www.freecadweb.org/wiki/Macro_Toggle_Drawstyle_Optimized#Script_2 Macro_Toggle_Drawstyle_Optimized_2.FCMacro]
Toggle selected object(s) display mode (changes visible only in global As is (located on View toolbar) display mode): [https://www.freecadweb.org/wiki/Macro_Toggle_Drawstyle_Optimized#Script_3 Macro_Toggle_Drawstyle_Optimized_3.FCMacro] |Author=Piffpoof , triplus @@ -237,4 +237,5 @@ The Forum link (2016-11-27 ver:1.0 FC =\< 0.17) : [Keyboard shortcut, View toolb The Forum link (2020-29-01 ver:2.0 FC =\> 0.17) : [Keyboard shortcut, View toolbar - Wireframe](https://forum.freecadweb.org/viewtopic.php?f=3&t=14336&start=50#p364692) - +--- +[documentation index](../README.md) > Macro Toggle Drawstyle Optimized diff --git a/wiki/Macro_Toggle_Panels_Visibility.md b/wiki/Macro_Toggle_Panels_Visibility.md index 7d145659bb..c7c6d3bc71 100644 --- a/wiki/Macro_Toggle_Panels_Visibility.md +++ b/wiki/Macro_Toggle_Panels_Visibility.md @@ -1,5 +1,5 @@ # Macro Toggle Panels Visibility - {{Macro +{{Macro |Name=Macro Toggle Panels Visibility |Icon=Macro_Toggle_Views_Visibility.png |Description=This macro toggles the visibility of various supporting views in FreeCAD, allowing the main window to be viewed with all available screen space. @@ -62,6 +62,5 @@ else: }} - - - +--- +[documentation index](../README.md) > Macro Toggle Panels Visibility diff --git a/wiki/Macro_Toggle_Visibility.md b/wiki/Macro_Toggle_Visibility.md index 812cfcf904..d9fc01636f 100644 --- a/wiki/Macro_Toggle_Visibility.md +++ b/wiki/Macro_Toggle_Visibility.md @@ -1,5 +1,5 @@ # Macro Toggle Visibility - {{Macro +{{Macro |Name=Toggle Visibility |Icon=Macro SelectVisible.png |Description=Flip/Flop Hidden/Display all objects not selected.
objects that are selected in a document are made visible while objects that are not selected are made invisible
if no objects are selected then all objects are hidden
if all objects are selected then all objects are made visible @@ -81,4 +81,5 @@ The discussion on the forum [Proposal: select one or more pieces, hide the other ver 00.02 12/11/2015 **macro Macro\_SelectVisible** : hidden the objects not selected, if not object selected displayed all objects, hidden all objects. This version include the tree macro in one - +--- +[documentation index](../README.md) > Macro Toggle Visibility diff --git a/wiki/Macro_Toggle_Visibility2_1-2.md b/wiki/Macro_Toggle_Visibility2_1-2.md index 1d20a4cca0..68a28898f5 100644 --- a/wiki/Macro_Toggle_Visibility2_1-2.md +++ b/wiki/Macro_Toggle_Visibility2_1-2.md @@ -1,5 +1,5 @@ # Macro Toggle Visibility2 1-2 - {{Macro +{{Macro |Name=Macro Toggle Visibility2 1-2 |Icon=Macro SelectVisible2.png |Description={{ColoredParagraph|DarkRed|Yellow|This macro must be used with '''Macro Toggle Visibility2 2-2'''}}
This is a set of four related macros for managing the visibility of objects in the Object Model (return on original visibility):
# objects that are selected in a document are made visible while objects that are not selected are made invisible
#*if no objects are selected then all objects are hidden;
#*if all objects are selected then all objects are made visible
# make all objects visible @@ -89,4 +89,7 @@ Second macro [Macro Toggle Visibility2 2-2](Macro_Toggle_Visibility2_2-2.md) The discussion on the forum [Re: Proposal: select one or more pieces, hide the others.](https://forum.freecadweb.org/viewtopic.php?f=8&t=13152&start=10#p184056) -Original idea [Macro\_Toggle\_Visibility](https://www.freecadweb.org/wiki/index.php?title=Macro_Toggle_Visibility) +Original idea [Macro\_Toggle\_Visibility](https://www.freecadweb.org/wiki/index.php?title=Macro_Toggle_Visibility) + +--- +[documentation index](../README.md) > Macro Toggle Visibility2 1-2 diff --git a/wiki/Macro_Toggle_Visibility2_2-2.md b/wiki/Macro_Toggle_Visibility2_2-2.md index 00e5e4babe..0674c343d2 100644 --- a/wiki/Macro_Toggle_Visibility2_2-2.md +++ b/wiki/Macro_Toggle_Visibility2_2-2.md @@ -1,5 +1,5 @@ # Macro Toggle Visibility2 2-2 - {{Macro +{{Macro |Name=Macro Toggle Visibility2 2-2 |translate=Macro Toggle Visibility2 2-2 |Icon=Macro_VisibleAlls2.png @@ -51,3 +51,5 @@ try: except Exception: None }} +--- +[documentation index](../README.md) > Macro Toggle Visibility2 2-2 diff --git a/wiki/Macro_TreeToAscii.md b/wiki/Macro_TreeToAscii.md index a7dfbde98d..9c24092735 100644 --- a/wiki/Macro_TreeToAscii.md +++ b/wiki/Macro_TreeToAscii.md @@ -1,5 +1,5 @@ # Macro TreeToAscii - {{Macro +{{Macro |Name=TreeToAscii |Description=This macro generates an ASCII art representation of the tree of selected object(s) |Author=OpenBrain @@ -251,3 +251,5 @@ dlg.exec_() }} +--- +[documentation index](../README.md) > Macro TreeToAscii diff --git a/wiki/Macro_Triangle_AH.md b/wiki/Macro_Triangle_AH.md index bae3c2b0bd..fe0895d41a 100644 --- a/wiki/Macro_Triangle_AH.md +++ b/wiki/Macro_Triangle_AH.md @@ -1,5 +1,5 @@ # Macro Triangle AH - {{Macro +{{Macro |Name=Macro Triangle AH |Icon=Macro_Triangle_AH.png |Description=This macro create one triangle creates a triangle by giving the head angle and the height of the triangle. The new triangle is created in the real coordinate.
{{ColoredText|(Command line, paste this complete macro in the Python console)}}. @@ -105,4 +105,5 @@ ver 00.02 03/05/2015 : adding \"base=0.0\", \"hypo=0.0\" and print data of trian ver 00.01 20/03/2015 : - +--- +[documentation index](../README.md) > Macro Triangle AH diff --git a/wiki/Macro_Unbind_Numpad_Shortcuts.md b/wiki/Macro_Unbind_Numpad_Shortcuts.md index 44a19401e6..530eeebc75 100644 --- a/wiki/Macro_Unbind_Numpad_Shortcuts.md +++ b/wiki/Macro_Unbind_Numpad_Shortcuts.md @@ -1,5 +1,5 @@ # Macro Unbind Numpad Shortcuts - {{Macro +{{Macro |Name=Macro Unbind Numpad Shortcuts |Icon=Macro_Unbind_Numpad_Shortcuts.png |Description=When entering numbers, and the number input box is not properly focused, FreeCAD will react to digits by switching standard views. This macro is a quick way to re-bind the shortcuts to Ctrl+number. Doesn't help very much with entering numbers, but at least the view won't spin like crazy. @@ -47,3 +47,5 @@ for (cmd, shortcut) in preset: App.ParamGet("User parameter:BaseApp/Preferences/Shortcut").SetString(cmd, shortcut) }} +--- +[documentation index](../README.md) > Macro Unbind Numpad Shortcuts diff --git a/wiki/Macro_Unfold_Box.md b/wiki/Macro_Unfold_Box.md index 71a9a19d9a..532ba17bec 100644 --- a/wiki/Macro_Unfold_Box.md +++ b/wiki/Macro_Unfold_Box.md @@ -1,5 +1,5 @@ # Macro Unfold Box - {{Macro +{{Macro |Name=Macro Unfold Box |Icon=Macro_Unfold_Box.png |Description=The macro allows to unfold the surfaces of a box of any shape and to draw them on a page.
@@ -602,3 +602,5 @@ DialogBox.show() }} +--- +[documentation index](../README.md) > Macro Unfold Box diff --git a/wiki/Macro_Unroll_Ruled_Surface.md b/wiki/Macro_Unroll_Ruled_Surface.md index 899ef79c1f..6b1381e939 100644 --- a/wiki/Macro_Unroll_Ruled_Surface.md +++ b/wiki/Macro_Unroll_Ruled_Surface.md @@ -1,5 +1,5 @@ # Macro Unroll Ruled Surface - {{Macro +{{Macro |Name=Macro Unroll Ruled Surface |Description=The macro allows to unroll ruled surfaces and to draw them on a page. |Author=Hervé B. @@ -745,6 +745,5 @@ DialogBox.show() }} - - - +--- +[documentation index](../README.md) > Macro Unroll Ruled Surface diff --git a/wiki/Macro_View_Rotation.md b/wiki/Macro_View_Rotation.md index a522710389..73784a6b3e 100644 --- a/wiki/Macro_View_Rotation.md +++ b/wiki/Macro_View_Rotation.md @@ -1,5 +1,5 @@ # Macro View Rotation - {{Macro +{{Macro |Name=Macro View Rotation |Icon=Macro_View_Rotation.png |Description=This GUI allows the view to be rotated with more precision than when using the mouse. Rotation is according to axes fixed with respect to the user and not the objects, though the aim is that the objects rotate about their approximate shared centre rather than the view centre.
@@ -294,4 +294,7 @@ at the end of the function \'initUI\'. The first two arguments (right-300, 0) (l ## Discussion page -[View+Rotation](http://forum.freecadweb.org/viewtopic.php?f=3&t=1784&hilit=View+Rotation#p12012) +[View+Rotation](http://forum.freecadweb.org/viewtopic.php?f=3&t=1784&hilit=View+Rotation#p12012) + +--- +[documentation index](../README.md) > Macro View Rotation diff --git a/wiki/Macro_Visibility_Manager.md b/wiki/Macro_Visibility_Manager.md index dccc4f1070..ef8dab7421 100644 --- a/wiki/Macro_Visibility_Manager.md +++ b/wiki/Macro_Visibility_Manager.md @@ -1,7 +1,4 @@ # Macro Visibility Manager - - - {{Macro |Name=Visibility_Manager |Icon=Macro_Visibility_Manager.png @@ -239,3 +236,5 @@ else: FreeCAD.Console.PrintWarning("Visibility Manager v"+str(__version__)+": no active document\n") ``` +--- +[documentation index](../README.md) > Macro Visibility Manager diff --git a/wiki/Macro_VisibleAlls.md b/wiki/Macro_VisibleAlls.md index 70cc4dccf9..e84a97677f 100644 --- a/wiki/Macro_VisibleAlls.md +++ b/wiki/Macro_VisibleAlls.md @@ -1,7 +1,4 @@ # Macro VisibleAlls - - - {{Macro |Name=Macro VisibleAlls |Icon=Macro_VisibleAlls.png @@ -42,6 +39,5 @@ except Exception: None ``` - - - +--- +[documentation index](../README.md) > Macro VisibleAlls diff --git a/wiki/Macro_Wiki_List_Generator_Of_Object_Properties.md b/wiki/Macro_Wiki_List_Generator_Of_Object_Properties.md index bbe007aa12..8bef57fdb0 100644 --- a/wiki/Macro_Wiki_List_Generator_Of_Object_Properties.md +++ b/wiki/Macro_Wiki_List_Generator_Of_Object_Properties.md @@ -1,6 +1,5 @@ # Macro Wiki List Generator Of Object Properties - - This page moved to and may be deleted - +--- +[documentation index](../README.md) > Macro Wiki List Generator Of Object Properties diff --git a/wiki/Macro_Wiki_Object_Properties_List_Generator.md b/wiki/Macro_Wiki_Object_Properties_List_Generator.md index ce85799f97..be06a46e59 100644 --- a/wiki/Macro_Wiki_Object_Properties_List_Generator.md +++ b/wiki/Macro_Wiki_Object_Properties_List_Generator.md @@ -1,7 +1,4 @@ # Macro Wiki Object Properties List Generator - - - {{Macro |Name=Macro Wiki Object Properties List Generator |Description=This macro generates lists of properties of the selected object of the selected object in different forms in Wiki format. @@ -575,4 +572,5 @@ Only Unique Properties - print only unique properties of selected object. The discussion on the forum: - +--- +[documentation index](../README.md) > Macro Wiki Object Properties List Generator diff --git a/wiki/Macro_Wiki_Object_Properties_List_Generator_Basic_Version.md b/wiki/Macro_Wiki_Object_Properties_List_Generator_Basic_Version.md index 9bd2f10288..ded7b67c41 100644 --- a/wiki/Macro_Wiki_Object_Properties_List_Generator_Basic_Version.md +++ b/wiki/Macro_Wiki_Object_Properties_List_Generator_Basic_Version.md @@ -1,7 +1,4 @@ # Macro Wiki Object Properties List Generator Basic Version - - - {{Macro |Name=Wiki List Generator of Object Properties |Description=This macro generate properties list of selected object. List presented in wiki format into python report view window. @@ -268,4 +265,5 @@ print_obj_properties(obj,"Data") The discussion on the forum: - +--- +[documentation index](../README.md) > Macro Wiki Object Properties List Generator Basic Version diff --git a/wiki/Macro_WireXYZ.md b/wiki/Macro_WireXYZ.md index fb92f60e06..560cf475cf 100644 --- a/wiki/Macro_WireXYZ.md +++ b/wiki/Macro_WireXYZ.md @@ -1,5 +1,5 @@ # Macro WireXYZ - {{Macro +{{Macro |Name=WireXYZ |Icon=Macro_WireXYZ.png |Description=This macro creates a wire (or points) with the coordinates extracted from a file. The coordinates X Y Z are separated by a space.
{{ColoredText|(Command line, paste this complete macro in the Python console)}}. @@ -141,4 +141,5 @@ The discussion [How do I transform a point cloud to a line?](http://forum.freeca 00.01 21/02/2015 - +--- +[documentation index](../README.md) > Macro WireXYZ diff --git a/wiki/Macro_Wiring_And_Hoses.md b/wiki/Macro_Wiring_And_Hoses.md index 5f9dde9b64..59a45d8f2f 100644 --- a/wiki/Macro_Wiring_And_Hoses.md +++ b/wiki/Macro_Wiring_And_Hoses.md @@ -1,5 +1,5 @@ # Macro Wiring And Hoses - {{Macro|Name=Macro Wiring And Hoses|Description=These macros support the creation and maintenance of Wires and Hoses.|Author=Piffpoof}} +{{Macro|Name=Macro Wiring And Hoses|Description=These macros support the creation and maintenance of Wires and Hoses.|Author=Piffpoof}} **From [User:Piffpoof](User:Piffpoof.md) Note: some changes between v 0.14 and v 0.15 have effected this macro which will delay releasing it** @@ -183,4 +183,5 @@ blah blah blah blah blah blah - +--- +[documentation index](../README.md) > Macro Wiring And Hoses diff --git a/wiki/Macro_ZTest_Over_128.md b/wiki/Macro_ZTest_Over_128.md index 0fbf6c0e00..390ba33222 100644 --- a/wiki/Macro_ZTest_Over_128.md +++ b/wiki/Macro_ZTest_Over_128.md @@ -1,5 +1,4 @@ # Macro ZTest Over 128 - **Not translate this page
This macro is only used by programmers
Test characters ASCII over 127
** @@ -153,3 +152,6 @@ ToolBar Icon ![](images/Macro_ZTest_Over_128.png ) label.show() print("End__Pipe_________________________") + +--- +[documentation index](../README.md) > Macro ZTest Over 128 diff --git a/wiki/Macro_at_Startup.md b/wiki/Macro_at_Startup.md index 0639a5f349..cec4a14119 100644 --- a/wiki/Macro_at_Startup.md +++ b/wiki/Macro_at_Startup.md @@ -1,6 +1,4 @@ # Macro at Startup - - ## Introduction @@ -121,3 +119,6 @@ Notice that if the original macro was downloaded through the Addon Manager, it w {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macro at Startup diff --git a/wiki/Macro_circle.md b/wiki/Macro_circle.md index 4c14c8c544..04bf9ce290 100644 --- a/wiki/Macro_circle.md +++ b/wiki/Macro_circle.md @@ -1,2 +1,5 @@ # Macro circle 1. REDIRECT [Macro Circle](Macro_Circle.md) + +--- +[documentation index](../README.md) > Macro circle diff --git a/wiki/Macro_clone_explicit.md b/wiki/Macro_clone_explicit.md index a6dee13b79..5ec90399e8 100644 --- a/wiki/Macro_clone_explicit.md +++ b/wiki/Macro_clone_explicit.md @@ -1,8 +1,4 @@ # Macro clone explicit - - - - {{Macro |Name=clone_explicit |Icon=Macro_clone_explicit.png @@ -233,3 +229,6 @@ Coin version: 4.0.0a OCC version: 7.3.0 Locale: French/France (fr_FR) ``` + +--- +[documentation index](../README.md) > Macro clone explicit diff --git a/wiki/Macro_crank_simul.md b/wiki/Macro_crank_simul.md index 6ccb05bc34..625e30f3dd 100644 --- a/wiki/Macro_crank_simul.md +++ b/wiki/Macro_crank_simul.md @@ -1,5 +1,5 @@ # Macro crank simul - {{Macro +{{Macro |Name=Crank Simul |Icon=Macro_crank_simul.png |Description=My simple animation uses sketch and sketcher solver to determine piston position and conrod position/rotation. @@ -84,4 +84,5 @@ The forum discussion [Inline-four engine animation](http://forum.freecadweb.org/ The blog [freecad-tutorial.blogspot](http://freecad-tutorial.blogspot.be/) - +--- +[documentation index](../README.md) > Macro crank simul diff --git a/wiki/Macro_cross_section.md b/wiki/Macro_cross_section.md index 93e1570d0d..1c54a0cfcb 100644 --- a/wiki/Macro_cross_section.md +++ b/wiki/Macro_cross_section.md @@ -1,5 +1,5 @@ # Macro cross section - {{Macro +{{Macro |Name=Cross_section |Icon=Macro_cross_section.png |Description=Macro to display a cross-section of the objects in the scene: the cross-section plane can be moved by a slider bar. @@ -672,4 +672,5 @@ ver 00.06 06/09/2017 : upgrade by Gift see [Optischer Schnitt durch Baugruppe, z ver 00.05 17/08/2017 : upgrade for 0.17 FreeCAD version by Sam see [Sezione Dinamica](https://forum.freecadweb.org/viewtopic.php?f=28&t=15084&start=10#p187030) - +--- +[documentation index](../README.md) > Macro cross section diff --git a/wiki/Macro_cutCircle.md b/wiki/Macro_cutCircle.md index 0b64ac6036..1313dcb66b 100644 --- a/wiki/Macro_cutCircle.md +++ b/wiki/Macro_cutCircle.md @@ -1,2 +1,5 @@ # Macro cutCircle 1. REDIRECT [Macro Cut Circle](Macro_Cut_Circle.md) + +--- +[documentation index](../README.md) > Macro cutCircle diff --git a/wiki/Macro_cutLine.md b/wiki/Macro_cutLine.md index cf515b38f2..91c6a4689e 100644 --- a/wiki/Macro_cutLine.md +++ b/wiki/Macro_cutLine.md @@ -1,2 +1,5 @@ # Macro cutLine 1. REDIRECT [Macro Cut Line](Macro_Cut_Line.md) + +--- +[documentation index](../README.md) > Macro cutLine diff --git a/wiki/Macro_documentation.md b/wiki/Macro_documentation.md index 68d6231fab..c4be1150fe 100644 --- a/wiki/Macro_documentation.md +++ b/wiki/Macro_documentation.md @@ -1,6 +1,4 @@ # Macro documentation - - ## Description All macros should be properly documented in the same way [Gui Commands](Gui_Command.md) are documented. They should have an individual wiki page, and should be listed in one of the categories in [Macros recipes](Macros_recipes.md). @@ -221,3 +219,6 @@ In order to include the macro there, first it must be reviewed by the FreeCAD co [Category:Macros](Category:Macros.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [Macros](Category:Macros.md) > Macro documentation diff --git a/wiki/Macro_export_transient_FEM_results.md b/wiki/Macro_export_transient_FEM_results.md index b32166969e..85cfaa34dc 100644 --- a/wiki/Macro_export_transient_FEM_results.md +++ b/wiki/Macro_export_transient_FEM_results.md @@ -1,5 +1,5 @@ # Macro export transient FEM results - {{Macro +{{Macro |Name=export transient FEM results |Description=Export multiple FEM results from a transient analysis for post-processing in ParaView. |Download=[https://drive.google.com/file/d/1MSBxLPlQ-TwzF-sFkgOeFb48zij5_scp/view?usp=sharing Macro file (3 kB)]
[https://drive.google.com/file/d/1m3RiJ-JM7QSJ6YDhZnafHIbyL92V6sYU/view?usp=sharing Example file without results (200 kB)]
[https://drive.google.com/file/d/157aIdVpIyfpVW9WxL-ReGz0FIsQebH_q/view?usp=sharing Example file with results (10 MB)]
[https://drive.google.com/file/d/1g-QOJtl3G5KaY2bSrw03NNQ8mnfBi03T/view?usp=sharing All example files, including the vtk-export folder (21 MB)] @@ -139,4 +139,5 @@ Example [Transient FEM analysis](https://www.freecadweb.org/wiki/Transient_FEM_a The Forum discussion [Export transient FEM results to vtk/vtu for ParaView](https://forum.freecadweb.org/viewtopic.php?f=22&t=37650) - +--- +[documentation index](../README.md) > Macro export transient FEM results diff --git a/wiki/Macro_findConfigFiles.md b/wiki/Macro_findConfigFiles.md index 76114bd359..7f34de3b31 100644 --- a/wiki/Macro_findConfigFiles.md +++ b/wiki/Macro_findConfigFiles.md @@ -1,5 +1,5 @@ # Macro findConfigFiles - {{Macro +{{Macro |Name=findConfigFiles |Icon=Macro_findConfigFiles.png |Description=Use this macro to find your user setting configuration files, that is,
'''system.cfg'''
'''user.cfg'''
These files can be renamed in order to reset FreeCAD's settings back to their original defaults. This can sometimes fix problems you are having with FreeCAD.
You should exit FreeCAD before renaming the files, and then open FreeCAD again afterwards. If renaming the files did not solve the issue you were having you can delete the new files FreeCAD created and rename the original files back to their original names in order to restore your previous settings. You can also safely delete the renamed files once you are certain you no longer need or want them, but it is recommended to rename them instead of deleting until you are certain they are no longer needed.
Note: The macro does not rename the files or make any changes to your settings. It merely finds the location of these files, copies that location to the clipboard, and (attempts to) open the folder containing these files on your computer using the default file browser. @@ -109,4 +109,7 @@ if ok == QtGui.QMessageBox.Ok or ok==0: ## Link -[findConfigFiles macro](https://forum.freecadweb.org/viewtopic.php?f=22&t=29888) +[findConfigFiles macro](https://forum.freecadweb.org/viewtopic.php?f=22&t=29888) + +--- +[documentation index](../README.md) > Macro findConfigFiles diff --git a/wiki/Macro_hinge.md b/wiki/Macro_hinge.md index 0265d14857..eb9de1b5c2 100644 --- a/wiki/Macro_hinge.md +++ b/wiki/Macro_hinge.md @@ -1,5 +1,5 @@ # Macro hinge - {{Macro +{{Macro |Name=Simulates hinge movement |Icon=Macro hinge.png |Description=Hinge simulation. @@ -61,4 +61,7 @@ for ii2 in range(180): ## Link -The discussion page [Struggling with LinearPattern (again)](http://forum.freecadweb.org/viewtopic.php?f=3&t=7606&p=62086#p62086) +The discussion page [Struggling with LinearPattern (again)](http://forum.freecadweb.org/viewtopic.php?f=3&t=7606&p=62086#p62086) + +--- +[documentation index](../README.md) > Macro hinge diff --git a/wiki/Macro_merge_duplicate_materials.md b/wiki/Macro_merge_duplicate_materials.md index eb069dd1d0..2b614ed41a 100644 --- a/wiki/Macro_merge_duplicate_materials.md +++ b/wiki/Macro_merge_duplicate_materials.md @@ -1,7 +1,4 @@ # Macro merge duplicate materials - - - {{Macro |Name=Macro merge duplicate materials |Icon=Macro_merge_duplicate_materials.png @@ -54,6 +51,5 @@ for tod in todelete: ``` - - - +--- +[documentation index](../README.md) > Macro merge duplicate materials diff --git a/wiki/Macro_screw_maker1_2.md b/wiki/Macro_screw_maker1_2.md index 107d5aff9c..4d18780fc0 100644 --- a/wiki/Macro_screw_maker1_2.md +++ b/wiki/Macro_screw_maker1_2.md @@ -1,5 +1,5 @@ # Macro screw maker1 2 - {{Macro +{{Macro |Name=Macro_screw_maker1_2 |Icon=Macro_screw_maker1_2.png |Description=Creates a screw, bolt... with or without thread, according to ISO standards. @@ -4984,4 +4984,7 @@ if __name__ == '__main__': ## Link -The forum [Screw Maker](https://forum.freecadweb.org/viewtopic.php?f=22&t=6558&start=30#p95929) +The forum [Screw Maker](https://forum.freecadweb.org/viewtopic.php?f=22&t=6558&start=30#p95929) + +--- +[documentation index](../README.md) > Macro screw maker1 2 diff --git a/wiki/Macro_triangleAH.md b/wiki/Macro_triangleAH.md index 55988c62dd..070ff7ea8a 100644 --- a/wiki/Macro_triangleAH.md +++ b/wiki/Macro_triangleAH.md @@ -1,2 +1,5 @@ # Macro triangleAH 1. REDIRECT [Macro Triangle AH](Macro_Triangle_AH.md) + +--- +[documentation index](../README.md) > Macro triangleAH diff --git a/wiki/Macros.md b/wiki/Macros.md index d98ff1c1a1..675f7abf14 100644 --- a/wiki/Macros.md +++ b/wiki/Macros.md @@ -1,8 +1,4 @@ # Macros - - - - ## Introduction [Macros](Macros.md) are a convenient way to reproduce complex actions in FreeCAD. You simply record actions as you do them, then save those actions under a name, and replay them whenever you want. Since macros are in reality a list of [Python](Python.md) commands, you can also edit them, and create very complex scripts. @@ -64,3 +60,6 @@ You can manually install extensions, however, it is much simpler to just use the {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros diff --git a/wiki/Main_Page.md b/wiki/Main_Page.md index 6fc9730df2..67b1e43699 100644 --- a/wiki/Main_Page.md +++ b/wiki/Main_Page.md @@ -1,6 +1,4 @@ # Main Page - - ## Introduction This is the documentation wiki of [FreeCAD](http://www.freecadweb.org). There are several ways to use this documentation: by exploring the hubs, by following the manual, or by using the Help menu entries from within FreeCAD. This is a work in progress, written by the community of users and developers of FreeCAD. If you find information that is wrong or missing, please [help FreeCAD](Special:MyLanguage/help_FreeCAD.md)! @@ -65,3 +63,6 @@ Check the [Development roadmap](Development_roadmap.md) for news about what is b [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page diff --git a/wiki/Main_view_area.md b/wiki/Main_view_area.md index 661887a713..c50db436e0 100644 --- a/wiki/Main_view_area.md +++ b/wiki/Main_view_area.md @@ -1,6 +1,4 @@ # Main view area - - ## Introduction The [main view area](main_view_area.md) is the main widget that holds sub-windows in the [interface](interface.md). It is an instance of Qt\'s [QMdiArea](https://doc.qt.io/qt-5/qmdiarea.html). @@ -16,4 +14,7 @@ It normally contains tabs for the start page from the [Start Workbench](Start_Wo The windows in the main view area can be organized with commands located in the [Windows menu](Std_Windows_Menu.md), like [Std TileWindows](Std_TileWindows.md) and [Std CascadeWindows](Std_CascadeWindows.md). - {{Interface navi}} + {{Interface navi}} + +--- +[documentation index](../README.md) > Main view area diff --git a/wiki/Manipulator.md b/wiki/Manipulator.md index 0b016f1389..3b2a5d1c4a 100644 --- a/wiki/Manipulator.md +++ b/wiki/Manipulator.md @@ -1,6 +1,4 @@ # Manipulator - - ## Description A **manipulator** can be used to modify an object\'s appearance, shape, or other parameters. To access the manipulators you use the double click for most objects. For many Part objects such as the geometric primitives or booleans this will open the [Std TransformManip](Std_TransformManip.md) tool, for others such as chamfer or fillet it will open a dedicated editing panel. @@ -12,3 +10,6 @@ A **manipulator** can be used to modify an object\'s appearance, shape, or other [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Manipulator diff --git a/wiki/Manipulator_Workbench.md b/wiki/Manipulator_Workbench.md index ce040384da..4f3dfd0ad8 100644 --- a/wiki/Manipulator_Workbench.md +++ b/wiki/Manipulator_Workbench.md @@ -1,7 +1,4 @@ -# Manipulator Workbench - - -Manipulator workbench icon +# Manipulator workbench icon Manipulator Workbench ## Introduction @@ -127,3 +124,6 @@ New workbenches are in development, stay tuned! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Manipulator Workbench diff --git a/wiki/Manipulator_workbench.md b/wiki/Manipulator_workbench.md index 257fa18629..450563a349 100644 --- a/wiki/Manipulator_workbench.md +++ b/wiki/Manipulator_workbench.md @@ -1,2 +1,5 @@ # Manipulator workbench 1. REDIRECT [Manipulator Workbench](Manipulator_Workbench.md) + +--- +[documentation index](../README.md) > Manipulator workbench diff --git a/wiki/Manual.md b/wiki/Manual.md index 1fd6a1a7ab..351ff21672 100644 --- a/wiki/Manual.md +++ b/wiki/Manual.md @@ -1,2 +1,5 @@ # Manual 1. Redirect:[Manual:Introduction](Manual:Introduction.md) + +--- +[documentation index](../README.md) > Manual diff --git a/wiki/Manual:A_gentle_introduction.md b/wiki/Manual:A_gentle_introduction.md index 92e2d13138..deb3806d51 100644 --- a/wiki/Manual:A_gentle_introduction.md +++ b/wiki/Manual:A_gentle_introduction.md @@ -1,10 +1,4 @@ # Manual:A gentle introduction - - - - - - {{Manual:TOC}} [Python](https://en.wikipedia.org/wiki/Python_%28programming_language%29) is a popular, open source programming language, very often embedded in applications as a scripting language, as is the case with FreeCAD. It has a series of features that make it suitable for us FreeCAD users: It is very easy to learn, especially for people who had never programmed before, and it is embedded in many other applications. This make it a valuable tool to learn, as you will be able to use it in other software, such as [Blender](http://www.blender.org), [Inkscape](http://www.inkscape.org) or [GRASS](http://grass.osgeo.org/). @@ -115,3 +109,6 @@ box.Placement = otherpla {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:A gentle introduction diff --git a/wiki/Manual:All_workbenches_at_a_glance.md b/wiki/Manual:All_workbenches_at_a_glance.md index ce89ad3ec5..33a9a720a3 100644 --- a/wiki/Manual:All_workbenches_at_a_glance.md +++ b/wiki/Manual:All_workbenches_at_a_glance.md @@ -1,10 +1,4 @@ # Manual:All workbenches at a glance - - - - - - {{Manual:TOC}} One of the biggest difficulties for new users of FreeCAD, is to know in which workbench to find a specific tool. The table below will give you an overview of the most important workbenches and their tools. Refer to each [workbench](Workbenches.md) page in the FreeCAD documentation for a more complete list. @@ -154,7 +148,5 @@ A number of other very useful workbenches produced by FreeCAD community members - [The FEM Workbench](FEM_Workbench.md) - [The FreeCAD-addons repository](https://github.com/FreeCAD/FreeCAD-addons) - - - - +--- +[documentation index](../README.md) > Manual:All workbenches at a glance diff --git a/wiki/Manual:BIM_modeling.md b/wiki/Manual:BIM_modeling.md index b7fb1c767f..ac6dcecdef 100644 --- a/wiki/Manual:BIM_modeling.md +++ b/wiki/Manual:BIM_modeling.md @@ -1,10 +1,4 @@ # Manual:BIM modeling - - - - - - {{Manual:TOC}} BIM stands for [Building Information Modeling](https://en.wikipedia.org/wiki/Building_information_modeling). The exact definition of what it is varies, but we can simply say that it is how buildings and other large structures like bridges, tunnels, etc\... are modeled today. BIM models are usually based on 3D models, and also include a series of additional layers of information, such as materials information, relationships to other objects or models, or special instructions for building or maintenance. This extra information permits all kinds of advanced analysis of the model, such as structural resistance, cost and construction time estimations, or calculations of energy consumption. @@ -240,3 +234,6 @@ Our page is now ready, and we can export it to SVG or DXF formats, or print it. {{Tutorials navi}} [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Manual:BIM modeling diff --git a/wiki/Manual:Creating_FEM_analyses.md b/wiki/Manual:Creating_FEM_analyses.md index 9834e98164..66ac23903d 100644 --- a/wiki/Manual:Creating_FEM_analyses.md +++ b/wiki/Manual:Creating_FEM_analyses.md @@ -1,10 +1,4 @@ # Manual:Creating FEM analyses - - - - - - {{Manual:TOC}} FEM stands for [Finite Element Method](https://en.wikipedia.org/wiki/Finite_element_method). It is a vast mathematical subject, but in FreeCAD we can think of it as a way to calculate propagations inside a 3D object, by cutting it into small pieces, and analyzing the impact of each small piece on its neighbours. This has several uses in the engineering and electromagnetism fields, but we will focus on one use that is already well developed in FreeCAD, which is simulating deformations in objects which are submitted to forces and weights. @@ -90,3 +84,6 @@ The results displayed by the FEM workbench are of course currently not enough to {{Tutorials navi}} + +--- +[documentation index](../README.md) > Manual:Creating FEM analyses diff --git a/wiki/Manual:Creating_and_manipulating_geometry.md b/wiki/Manual:Creating_and_manipulating_geometry.md index 817bfdfef2..acf010fa48 100644 --- a/wiki/Manual:Creating_and_manipulating_geometry.md +++ b/wiki/Manual:Creating_and_manipulating_geometry.md @@ -1,7 +1,4 @@ # Manual:Creating and manipulating geometry - - - {{Manual:TOC}} In the previous chapters, we learned about the different workbenches of FreeCAD, and how each of them implement their own tools and geometry types. The same concept applies when working from Python code. @@ -228,3 +225,6 @@ All of the above, and much more, is explained in detail on the [Part Scripting]( {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating and manipulating geometry diff --git a/wiki/Manual:Creating_interface_tools.md b/wiki/Manual:Creating_interface_tools.md index 9a63d07c89..5784163e9e 100644 --- a/wiki/Manual:Creating_interface_tools.md +++ b/wiki/Manual:Creating_interface_tools.md @@ -1,7 +1,4 @@ # Manual:Creating interface tools - - - {{Manual:TOC}} In the last two chapters, we saw how to [create Part geometry](Manual:Creating_and_manipulating_geometry.md) and [create parametric objects](Manual:Creating_parametric_objects.md). One last piece is missing to gain full control over FreeCAD: Create tools that will interact with the user. @@ -130,3 +127,6 @@ Finally, don\'t forget there is much more documentation about using Qt widgets o {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating interface tools diff --git a/wiki/Manual:Creating_parametric_objects.md b/wiki/Manual:Creating_parametric_objects.md index 5420d096f0..3493b55a59 100644 --- a/wiki/Manual:Creating_parametric_objects.md +++ b/wiki/Manual:Creating_parametric_objects.md @@ -1,7 +1,4 @@ # Manual:Creating parametric objects - - - {{Manual:TOC}} In the [previous chapter](Manual:Creating_and_manipulating_geometry.md), we saw how to create Part geometry, and how to display it on screen, by attaching it to a \"dumb\" (non-parametric) document object. This is tedious when we want to change the shape of that object. We would need to create a new shape, then attribute it again to our object. @@ -126,3 +123,6 @@ Remember, if you want to distribute files created with this new tool to other pe {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating parametric objects diff --git a/wiki/Manual:Creating_renderings.md b/wiki/Manual:Creating_renderings.md index bd27050a44..f1177621fb 100644 --- a/wiki/Manual:Creating_renderings.md +++ b/wiki/Manual:Creating_renderings.md @@ -1,7 +1,4 @@ # Manual:Creating renderings - - - {{Manual:TOC}} In computer speak, the word [rendering](https://en.wikipedia.org/wiki/Rendering_%28computer_graphics%29) is used to describe a nice image produced from a 3D model. Of course, we could say that what we see in the FreeCAD 3D view is already nice. However, anybody who has seen a recent Hollywood movie, knows that it is possible to produce images with a computer that are almost indistinguishable from a photograph. @@ -86,3 +83,6 @@ You can greatly extend the rendering possibilities of FreeCAD by creating new te {{Raytracing Tools navi}} [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials](Category:Tutorials.md) > Manual:Creating renderings diff --git a/wiki/Manual:Generating_2D_drawings.md b/wiki/Manual:Generating_2D_drawings.md index 414c26d950..3990c21185 100644 --- a/wiki/Manual:Generating_2D_drawings.md +++ b/wiki/Manual:Generating_2D_drawings.md @@ -1,10 +1,4 @@ # Manual:Generating 2D drawings - - - - - - {{Manual:TOC}} When your model cannot be printed or milled directly by a machine, for example it is too big (a building) or it requires manual assembly after the pieces are ready, you will usually need to explain to another person how to do it. In technical fields (engineering, architecture, etc), this is usually done with drawings. The drawings are handed over to the person responsible for assembling the final product and will explain how to do it. @@ -110,3 +104,6 @@ Our page can now be exported to SVG for further work in graphical applications l [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > Manual:Generating 2D drawings diff --git a/wiki/Manual:Import_and_export_to_other_filetypes.md b/wiki/Manual:Import_and_export_to_other_filetypes.md index 8581409489..a823fed319 100644 --- a/wiki/Manual:Import_and_export_to_other_filetypes.md +++ b/wiki/Manual:Import_and_export_to_other_filetypes.md @@ -1,7 +1,4 @@ # Manual:Import and export to other filetypes - - - {{Manual:TOC}} FreeCAD can import and export to many filetypes. Here is a list of the most important ones with a short description of the available features: @@ -45,3 +42,6 @@ Some of these file formats have options. These can be configured from menu **Edi [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Import and export to other filetypes diff --git a/wiki/Manual:Installing.md b/wiki/Manual:Installing.md index a7d9705cc6..3b9a1e0512 100644 --- a/wiki/Manual:Installing.md +++ b/wiki/Manual:Installing.md @@ -1,10 +1,4 @@ # Manual:Installing - - - - - - {{Manual:TOC}} FreeCAD uses the [LGPL](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License) license; you may download, install, redistribute and use FreeCAD the way you want, regardless of the type of work you\'ll do with it (commercial or non-commercial). You are not bound to any clause or restriction, and the files you produce with it are fully yours. The only thing that the license prohibits, really, is to claim that you programmed FreeCAD yourself! @@ -103,3 +97,6 @@ If you are using the Ubuntu operating system, some of the addons above are also [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Installing diff --git a/wiki/Manual:Introduction.md b/wiki/Manual:Introduction.md index 6468692c18..905eb44ef9 100644 --- a/wiki/Manual:Introduction.md +++ b/wiki/Manual:Introduction.md @@ -1,10 +1,4 @@ # Manual:Introduction - - - - - - {{Manual:TOC}} ![150\|center](images/Crystal_Clear_manual.png ) @@ -19,7 +13,5 @@ This manual is being written for the newest stable version of FreeCAD, version * The contents of this manual are published under the [Creative Commons 4.0](http://creativecommons.org/licenses/by/4.0/) license, and can be freely used, downloaded, copied, and modified. The source files for this manual are hosted on this [wiki](Main_Page.md), and on the original [github](https://github.com/yorikvanhavre/FreeCAD-manual) account used to write the first version of this book. Easier to read HTML, PDF, MOBI and EPUB versions are available on [GitBook](https://www.gitbook.com/book/yorikvanhavre/a-freecad-manual/details). A printed version is being prepared. - - - - +--- +[documentation index](../README.md) > Manual:Introduction diff --git a/wiki/Manual:Modeling_for_product_design.md b/wiki/Manual:Modeling_for_product_design.md index 59e7a72f8e..6737ebf31e 100644 --- a/wiki/Manual:Modeling_for_product_design.md +++ b/wiki/Manual:Modeling_for_product_design.md @@ -1,7 +1,4 @@ # Manual:Modeling for product design - - - {{Manual:TOC}} [Product design](https://en.wikipedia.org/wiki/Product_design) is originally a commercial term, but in the 3D world, it often means modeling something with the idea to have it [3D-printed](https://en.wikipedia.org/wiki/3D_printing) or, more generally, manufactured by a machine, for example a 3D printer or a [CNC machine](https://en.wikipedia.org/wiki/Numerical_control). @@ -151,3 +148,6 @@ But the best of both worlds also exists, which is the [Assembly2 Workbench](http [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > Manual:Modeling for product design diff --git a/wiki/Manual:Navigating_in_the_3D_view.md b/wiki/Manual:Navigating_in_the_3D_view.md index a9adf1852b..b0c76af048 100644 --- a/wiki/Manual:Navigating_in_the_3D_view.md +++ b/wiki/Manual:Navigating_in_the_3D_view.md @@ -1,10 +1,4 @@ # Manual:Navigating in the 3D view - - - - - - {{Manual:TOC}} ### A word about the 3D space @@ -102,7 +96,5 @@ You can also use the Selection View to select objects by searching for a particu - [The FreeCAD navigation modes](Mouse_navigation.md) - [Navigation Cluster](Navigation_Cube.md) - - - - +--- +[documentation index](../README.md) > Manual:Navigating in the 3D view diff --git a/wiki/Manual:Parametric_objects.md b/wiki/Manual:Parametric_objects.md index 24629fe5df..ed30cf55d4 100644 --- a/wiki/Manual:Parametric_objects.md +++ b/wiki/Manual:Parametric_objects.md @@ -1,10 +1,4 @@ # Manual:Parametric objects - - - - - - {{Manual:TOC}} FreeCAD is designed for parametric modeling. This means that the geometry that you create, instead of being freely sculptable, is produced by rules and parameters. For example, a cylinder might be produced from a radius and a height. With these two parameters, the program has enough information to build the cylinder. @@ -43,3 +37,6 @@ Finally, it is worth noting that custom parametric objects are [easy to program [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Parametric objects diff --git a/wiki/Manual:Preparing_models_for_3D_printing.md b/wiki/Manual:Preparing_models_for_3D_printing.md index bc8d67c223..23cd9aac32 100644 --- a/wiki/Manual:Preparing_models_for_3D_printing.md +++ b/wiki/Manual:Preparing_models_for_3D_printing.md @@ -1,10 +1,4 @@ # Manual:Preparing models for 3D printing - - - - - - {{Manual:TOC}} One of the main uses of FreeCAD is to produce real-world objects. These can be designed in FreeCAD, and then made real in different ways, such as communicated to other people who will then build them, or, more and more frequently, sent directly to a [3D printer](https://en.wikipedia.org/wiki/3D_printing) or a [CNC mill](https://en.wikipedia.org/wiki/Milling_%28machining%29). This chapter will show you how to get your models ready to send to these machines. @@ -141,3 +135,6 @@ There are many applications available to simulate the real cutting, one of them [Category:Path](Category:Path.md) [Category:Mesh](Category:Mesh.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Path](Category:Path.md) > Manual:Preparing models for 3D printing diff --git a/wiki/Manual:Summary.md b/wiki/Manual:Summary.md index 239d6b5d38..95eb894970 100644 --- a/wiki/Manual:Summary.md +++ b/wiki/Manual:Summary.md @@ -1,5 +1,5 @@ # Manual:Summary - This is the table of contents used for the automatic construction of the **FreeCAD MANUAL**. +This is the table of contents used for the automatic construction of the **FreeCAD MANUAL**. There is another table of contents for the [FreeCAD **Online Help** system](Online_Help_Toc.md). @@ -57,3 +57,6 @@ There is another table of contents for the [FreeCAD **Online Help** system](Onli [Category:Manual](Category:Manual.md) + +--- +[documentation index](../README.md) > [Manual](Category:Manual.md) > Manual:Summary diff --git a/wiki/Manual:The_Community.md b/wiki/Manual:The_Community.md index d18dd0bcd1..1d7ac04c8a 100644 --- a/wiki/Manual:The_Community.md +++ b/wiki/Manual:The_Community.md @@ -1,7 +1,4 @@ # Manual:The Community - - - {{Manual:TOC}} No manual dealing with free and open source software would be complete without a chapter about the community. As the vast majority of free and open source software projects, FreeCAD is made by a community, and maintained by that community. Instead of the opaque, unknown, impersonal and inaccessable firm that is more than often found behind commercial software, free and open source software communities are open spaces, where you as a user are welcome, and where you can get answers very fast, and even have your say in the development of the software itself. You are also more than welcome to help, there are tasks for everybody. @@ -38,7 +35,5 @@ Hopefully, we managed to give you a good taste of FreeCAD in this manual, and yo - [Translating FreeCAD on crowdin](https://crowdin.com/project/freecad) - [The FreeCAD bug tracker](http://www.freecadweb.org/tracker) - - - - +--- +[documentation index](../README.md) > Manual:The Community diff --git a/wiki/Manual:The_FreeCAD_Interface.md b/wiki/Manual:The_FreeCAD_Interface.md index 1ed7e92af1..f881cf587a 100644 --- a/wiki/Manual:The_FreeCAD_Interface.md +++ b/wiki/Manual:The_FreeCAD_Interface.md @@ -1,10 +1,4 @@ # Manual:The FreeCAD Interface - - - - - - {{Manual:TOC}} FreeCAD uses the [Qt framework](https://en.wikipedia.org/wiki/Qt_(software)) to draw and manage its interface. This framework is used in a wide range of applications, so the FreeCAD interface is very classical and presents no particular difficulty to understand. Most buttons are standard and will be found where you expect them **File → Open, Edit → Paste, etc**. Here is the look of FreeCAD when you open it for the first time, just after installing, showing you the start center: @@ -71,7 +65,5 @@ These advanced customization options are available from the **Tools → Customiz - [Workbenches](Workbenches.md) - [More about Python](https://www.python.org) - - - - +--- +[documentation index](../README.md) > Manual:The FreeCAD Interface diff --git a/wiki/Manual:The_FreeCAD_document.md b/wiki/Manual:The_FreeCAD_document.md index a8bc981ff4..13d4ab1b3d 100644 --- a/wiki/Manual:The_FreeCAD_document.md +++ b/wiki/Manual:The_FreeCAD_document.md @@ -1,10 +1,4 @@ # Manual:The FreeCAD document - - - - - - {{Manual:TOC}} A FreeCAD document contains all the objects of your scene. It can contain groups and objects made with any workbench. You can therefore switch between workbenches, and still work on the same document and/or objects within that document. The document is what gets saved to disk when you save your work. You can also open several documents at the same time in FreeCAD, and open several views of the same document. @@ -26,7 +20,5 @@ FreeCAD documents are saved with the .FcStd extension, which is a zip-based comp - [The FreeCAD document](Document_structure.md) - [File Format FCStd](File_Format_FCStd.md) - - - - +--- +[documentation index](../README.md) > Manual:The FreeCAD document diff --git a/wiki/Manual:Traditional_2D_drafting.md b/wiki/Manual:Traditional_2D_drafting.md index 93c14f90f0..b627f863f0 100644 --- a/wiki/Manual:Traditional_2D_drafting.md +++ b/wiki/Manual:Traditional_2D_drafting.md @@ -1,7 +1,4 @@ # Manual:Traditional 2D drafting - - - {{Manual:TOC}} You might be interested by FreeCAD because you already have some technical drawing experience, for example with software like [AutoCAD](https://en.wikipedia.org/wiki/AutoCAD). Or you already know something about design, or you prefer to draw things before building them. In any case, FreeCAD features a more traditional workbench, with tools found in most 2D CAD applications: The [Draft Workbench](Draft_Workbench.md). @@ -116,3 +113,6 @@ Fundamentally, what the Draft Workbench does is to provide graphical ways to cre [Category:Tutorials](Category:Tutorials.md) [Category:Draft](Category:Draft.md) + +--- +[documentation index](../README.md) > [Tutorials](Category:Tutorials.md) > Manual:Traditional 2D drafting diff --git a/wiki/Manual:Traditional_modeling,_the_CSG_way.md b/wiki/Manual:Traditional_modeling,_the_CSG_way.md index 6b86387114..4fd1695d05 100644 --- a/wiki/Manual:Traditional_modeling,_the_CSG_way.md +++ b/wiki/Manual:Traditional_modeling,_the_CSG_way.md @@ -1,7 +1,4 @@ # Manual:Traditional modeling, the CSG way - - - {{Manual:TOC}} CSG stands for [Constructive Solid Geometry](https://en.wikipedia.org/wiki/Constructive_solid_geometry) and describes the most basic way to work with solid 3D geometry, which is creating complex objects by adding and removing pieces to/from solids by using Boolean operations such as union, subtraction or intersection. @@ -133,3 +130,6 @@ You might look at the table above, and think its design is not good. The tighten [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > Manual:Traditional modeling, the CSG way diff --git a/wiki/Manual:Using_spreadsheets.md b/wiki/Manual:Using_spreadsheets.md index 6501ed8ca0..2224ecb47a 100644 --- a/wiki/Manual:Using_spreadsheets.md +++ b/wiki/Manual:Using_spreadsheets.md @@ -1,7 +1,4 @@ # Manual:Using spreadsheets - - - {{Manual:TOC}} FreeCAD features another interesting workbench to explore: the [Spreadsheet Workbench](Spreadsheet_Workbench.md). This workbench allows you to create [spreadsheets](https://en.wikipedia.org/wiki/Spreadsheet) such as those made with [Excel](https://en.wikipedia.org/wiki/Microsoft_Excel) or [LibreOffice](https://en.wikipedia.org/wiki/OpenOffice.org_Calc) directly in FreeCAD. These spreadsheets can then be populated with data extracted from your model, and can also perform a series of calculations between values. Spreadsheets can be exported as CSV files, which can be imported in any other spreadsheet application. @@ -89,3 +86,6 @@ You can also give aliases to dimensional constraints (horizontal, vertical or di [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > Manual:Using spreadsheets diff --git a/wiki/Manual:What_is_FreeCAD.md b/wiki/Manual:What_is_FreeCAD.md index 28fe80081c..dce76893c6 100644 --- a/wiki/Manual:What_is_FreeCAD.md +++ b/wiki/Manual:What_is_FreeCAD.md @@ -1,7 +1,4 @@ # Manual:What is FreeCAD - - - {{Manual:TOC}} ![](images/Freecad016_screenshot1.jpg ) @@ -22,7 +19,5 @@ The official website of FreeCAD is at - [List of features](Feature_list.md) - [Screenshots and user cases](http://forum.freecadweb.org/viewforum.php?f=24) - - - - +--- +[documentation index](../README.md) > Manual:What is FreeCAD diff --git a/wiki/Mapping_of_main_ElmerSolver_setting_for_mechanical_simulations.md b/wiki/Mapping_of_main_ElmerSolver_setting_for_mechanical_simulations.md index 7f95ebbd4c..d9055cf854 100644 --- a/wiki/Mapping_of_main_ElmerSolver_setting_for_mechanical_simulations.md +++ b/wiki/Mapping_of_main_ElmerSolver_setting_for_mechanical_simulations.md @@ -45,3 +45,6 @@ Medium ### Additional Information [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > Mapping of main ElmerSolver setting for mechanical simulations diff --git a/wiki/Material.md b/wiki/Material.md index ecaa24c527..03ea5d32e3 100644 --- a/wiki/Material.md +++ b/wiki/Material.md @@ -1,6 +1,4 @@ # Material - - ## Overview @@ -169,3 +167,6 @@ This section defines material-properties which are related to the visual appeara {{FEM Tools navi}} [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Roadmap](Category:Roadmap.md) [Category:BIM](Category:BIM.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Material diff --git a/wiki/Material_data_model.md b/wiki/Material_data_model.md index 0201d9f860..89f19ea8b6 100644 --- a/wiki/Material_data_model.md +++ b/wiki/Material_data_model.md @@ -1,7 +1,4 @@ # Material data model - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -236,3 +233,6 @@ CSI/MasterFormat code (as there are several systems used in the industry which g [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Material](Material_Workbench.md) > Material data model diff --git a/wiki/Material_editor.md b/wiki/Material_editor.md index 10b51e58c7..694b1dd1ab 100644 --- a/wiki/Material_editor.md +++ b/wiki/Material_editor.md @@ -8,6 +8,8 @@ SeeAlso:[Material](Material.md), [Arch SetMaterial](Arch_SetMaterial.md), [FEM tutorial](FEM_tutorial.md) --- +# Material editor + ## Description The Material Editor allows you to edit and save the information contained in a [FreeCAD material](Material.md). Currently such materials are used by the ** [FEM](FEM_Workbench.md)** and ** [Arch](Arch_Workbench.md)** workbenches. @@ -59,4 +61,7 @@ MaterialEditor.openEditor() - {{FEM Tools navi}} + {{FEM Tools navi}} + +--- +[documentation index](../README.md) > [Material](Material_Workbench.md) > Material editor diff --git a/wiki/Matrix_API.md b/wiki/Matrix_API.md index 21d101c3a1..3bb00d2cad 100644 --- a/wiki/Matrix_API.md +++ b/wiki/Matrix_API.md @@ -1,5 +1,5 @@ # Matrix API - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** 4x4 Matrixes are used everywhere throughout FreeCAD and can be created by one of the following manners: ```python @@ -97,3 +97,6 @@ print m.A21() # print m[1][0] [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Matrix API diff --git a/wiki/Measurement_Of_Angles_On_Holes.md b/wiki/Measurement_Of_Angles_On_Holes.md index 2388ab0899..4860162bc0 100644 --- a/wiki/Measurement_Of_Angles_On_Holes.md +++ b/wiki/Measurement_Of_Angles_On_Holes.md @@ -1,7 +1,4 @@ # Measurement Of Angles On Holes - - - {{TutorialInfo |Topic=TechDraw |Level=Base @@ -39,4 +36,7 @@ The created center line can change. Select the center line and press the button Quadrant points select with from the tool bar. Next select the points as show below and use from the tool bar to create the angle. Other succession create other angles. Is there no catching point on the center line change \"ISO count\" in the properties. - {{TechDraw Tools navi}} {{Tutorials navi}} + {{TechDraw Tools navi}} {{Tutorials navi}} + +--- +[documentation index](../README.md) > Measurement Of Angles On Holes diff --git a/wiki/Media_kit.md b/wiki/Media_kit.md index 3c9e07446f..a27914f9e8 100644 --- a/wiki/Media_kit.md +++ b/wiki/Media_kit.md @@ -1,2 +1,5 @@ # Media kit 1. REDIRECT [Press\_kit](Press_kit.md) + +--- +[documentation index](../README.md) > Media kit diff --git a/wiki/Mesh.md b/wiki/Mesh.md index 96c817ed26..b846bfac78 100644 --- a/wiki/Mesh.md +++ b/wiki/Mesh.md @@ -1,6 +1,4 @@ # Mesh - - ## Introduction In FreeCAD the word \"[Mesh](Mesh.md)\" is normally used to refer to a [Mesh MeshObject](Mesh_MeshObject.md) (`Mesh::MeshObject` class), a type of object that defines 3D data but is not a solid \"[Shape](Shape.md)\". @@ -39,3 +37,6 @@ For more information see [FEM Workbench](FEM_Workbench.md) and [FEM Mesh](FEM_Me {{Mesh Tools navi}} {{FEM Tools navi}} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Mesh diff --git a/wiki/MeshPart_CreateFlatFace.md b/wiki/MeshPart_CreateFlatFace.md index 25ca5227b8..8df8267505 100644 --- a/wiki/MeshPart_CreateFlatFace.md +++ b/wiki/MeshPart_CreateFlatFace.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh Part Create Flat Mesh](MeshPart_CreateFlatMesh.md) --- +# MeshPart CreateFlatFace + ## Description The **MeshPart CreateFlatFace** command creates a flat representation of a face of a shape object. The created outline is a [Part Feature](Part_Feature.md). At this time the command almost always creates a rectangular outline. @@ -22,4 +24,7 @@ See: [Part Feature](Part_Feature.md). - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [MeshPart](MeshPart_Workbench.md) > MeshPart CreateFlatFace diff --git a/wiki/MeshPart_CreateFlatMesh.md b/wiki/MeshPart_CreateFlatMesh.md index b1310b9f42..f97d79ec9f 100644 --- a/wiki/MeshPart_CreateFlatMesh.md +++ b/wiki/MeshPart_CreateFlatMesh.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh Part Create Flat Face](MeshPart_CreateFlatFace.md) --- +# MeshPart CreateFlatMesh + ## Description The **MeshPart CreateFlatMesh** command creates a flat representation of a mesh object by unwrapping, unfolding, it. The created outline is a [Part Feature](Part_Feature.md). @@ -24,4 +26,7 @@ See: [Part Feature](Part_Feature.md). - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [MeshPart](MeshPart_Workbench.md) > MeshPart CreateFlatMesh diff --git a/wiki/Mesh_API.md b/wiki/Mesh_API.md index f78a510112..0902786af8 100644 --- a/wiki/Mesh_API.md +++ b/wiki/Mesh_API.md @@ -1,7 +1,4 @@ # Mesh API - - - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** The Mesh objects can be manipulated by adding new facets, deleting facets, importing from an STL file, transforming the mesh and much more. For a complete overview of what can be done see also the [Mesh Workbench](Mesh_Workbench.md) documentation. A mesh object cannot be added to an existing document directly. Therefore the document must create an object with a property class that supports meshes. Example: @@ -235,3 +232,6 @@ d.recompute() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh API diff --git a/wiki/Mesh_AddFacet.md b/wiki/Mesh_AddFacet.md index 26028933bd..e792a8eb45 100644 --- a/wiki/Mesh_AddFacet.md +++ b/wiki/Mesh_AddFacet.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh FillupHoles](Mesh_FillupHoles.md), [Mesh FillInteractiveHole](Mesh_FillInteractiveHole.md) --- +# Mesh AddFacet + ## Description The **Mesh AddFacet** command adds faces along a boundary of an open mesh object. It can be used to fill holes. @@ -44,4 +46,7 @@ The **Mesh AddFacet** command adds faces along a boundary of an open mesh object - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh AddFacet diff --git a/wiki/Mesh_AddTriangle.md b/wiki/Mesh_AddTriangle.md index 698529be97..0b6adaa22a 100644 --- a/wiki/Mesh_AddTriangle.md +++ b/wiki/Mesh_AddTriangle.md @@ -1,2 +1,5 @@ # Mesh AddTriangle 1. REDIRECT [Mesh\_AddFacet](Mesh_AddFacet.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh AddTriangle diff --git a/wiki/Mesh_BoundingBox.md b/wiki/Mesh_BoundingBox.md index 151dd99066..7029e57757 100644 --- a/wiki/Mesh_BoundingBox.md +++ b/wiki/Mesh_BoundingBox.md @@ -5,6 +5,8 @@ Workbenches:[Mesh](Mesh_Workbench.md) --- +# Mesh BoundingBox + ## Description The **Mesh BoundingBox** command shows the bounding box coordinates of a mesh object. @@ -22,4 +24,7 @@ The **Mesh BoundingBox** command shows the bounding box coordinates of a mesh ob - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh BoundingBox diff --git a/wiki/Mesh_BuildRegularSolid.md b/wiki/Mesh_BuildRegularSolid.md index 6237f39ad8..176b9e2c83 100644 --- a/wiki/Mesh_BuildRegularSolid.md +++ b/wiki/Mesh_BuildRegularSolid.md @@ -5,6 +5,8 @@ Workbenches:[Mesh](Mesh_Workbench.md) --- +# Mesh BuildRegularSolid + ## Description The **Mesh BuildRegularSolid** command creates a regular parametric solid mesh object. @@ -148,4 +150,7 @@ Mesh objects created with this command inherit all [Mesh Feature](Mesh_Feature.m - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh BuildRegularSolid diff --git a/wiki/Mesh_Cone.md b/wiki/Mesh_Cone.md index 5d4af9dca4..4dd1ca7d5c 100644 --- a/wiki/Mesh_Cone.md +++ b/wiki/Mesh_Cone.md @@ -1,2 +1,5 @@ # Mesh Cone 1. REDIRECT [Mesh\_BuildRegularSolid](Mesh_BuildRegularSolid.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cone diff --git a/wiki/Mesh_CreateMeshSegment.md b/wiki/Mesh_CreateMeshSegment.md index 24387db290..16b35e905b 100644 --- a/wiki/Mesh_CreateMeshSegment.md +++ b/wiki/Mesh_CreateMeshSegment.md @@ -1,2 +1,5 @@ # Mesh CreateMeshSegment 1. REDIRECT [Mesh\_Segmentation](Mesh_Segmentation.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CreateMeshSegment diff --git a/wiki/Mesh_CrossSections.md b/wiki/Mesh_CrossSections.md index 07ef7ddad0..ff262b8ddc 100644 --- a/wiki/Mesh_CrossSections.md +++ b/wiki/Mesh_CrossSections.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh SectionByPlane](Mesh_SectionByPlane.md) --- +# Mesh CrossSections + ## Description The **Mesh CrossSections** command creates multiple cross sections across mesh objects. The cross sections are taken parallel to one of the main global planes (XY, XZ or YZ). For each set of cross sections a single [Part Feature](Part_Feature.md) is created. @@ -59,4 +61,7 @@ See: [Part Feature](Part_Feature.md). - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CrossSections diff --git a/wiki/Mesh_Cube.md b/wiki/Mesh_Cube.md index 9424e87b57..16f97a6ed3 100644 --- a/wiki/Mesh_Cube.md +++ b/wiki/Mesh_Cube.md @@ -1,2 +1,5 @@ # Mesh Cube 1. REDIRECT [Mesh\_BuildRegularSolid](Mesh_BuildRegularSolid.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cube diff --git a/wiki/Mesh_CurvatureInfo.md b/wiki/Mesh_CurvatureInfo.md index ca6bc31e30..49ad07c994 100644 --- a/wiki/Mesh_CurvatureInfo.md +++ b/wiki/Mesh_CurvatureInfo.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh VertexCurvature](Mesh_VertexCurvature.md) --- +# Mesh CurvatureInfo + ## Description The **Mesh CurvatureInfo** command shows the absolute curvature of [curvature objects](Mesh_VertexCurvature.md) at selected points. @@ -26,4 +28,7 @@ The **Mesh CurvatureInfo** command shows the absolute curvature of [curvature ob - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CurvatureInfo diff --git a/wiki/Mesh_CurvaturePlot.md b/wiki/Mesh_CurvaturePlot.md index 03f49dabcc..a0ef363b3e 100644 --- a/wiki/Mesh_CurvaturePlot.md +++ b/wiki/Mesh_CurvaturePlot.md @@ -1,2 +1,5 @@ # Mesh CurvaturePlot 1. REDIRECT [Mesh\_VertexCurvature](Mesh_VertexCurvature.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CurvaturePlot diff --git a/wiki/Mesh_Cylinder.md b/wiki/Mesh_Cylinder.md index bcb4e9128b..c20cfad0ed 100644 --- a/wiki/Mesh_Cylinder.md +++ b/wiki/Mesh_Cylinder.md @@ -1,2 +1,5 @@ # Mesh Cylinder 1. REDIRECT [Mesh\_BuildRegularSolid](Mesh_BuildRegularSolid.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cylinder diff --git a/wiki/Mesh_Decimating.md b/wiki/Mesh_Decimating.md index 699a910e87..4659781461 100644 --- a/wiki/Mesh_Decimating.md +++ b/wiki/Mesh_Decimating.md @@ -5,6 +5,8 @@ Workbenches:[Mesh](Mesh_Workbench.md) --- +# Mesh Decimating + ## Description The **Mesh Decimating** command reduces the number of faces in mesh objects. @@ -27,4 +29,7 @@ The **Mesh Decimating** command reduces the number of faces in mesh objects. - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Decimating diff --git a/wiki/Mesh_Difference.md b/wiki/Mesh_Difference.md index 2fbac127a8..78e53e3730 100644 --- a/wiki/Mesh_Difference.md +++ b/wiki/Mesh_Difference.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh Union](Mesh_Union.md), [Mesh Intersection](Mesh_Intersection.md) --- +# Mesh Difference + ## Description The **Mesh Difference** command creates a new non-parametric mesh object, a [Mesh Feature](Mesh_Feature.md), that is the difference of two mesh objects: one mesh object is cut from the other. @@ -29,4 +31,7 @@ See: [Mesh Feature](Mesh_Feature.md). - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Difference diff --git a/wiki/Mesh_Ellipsoid.md b/wiki/Mesh_Ellipsoid.md index e3e6d01406..b58eabd65e 100644 --- a/wiki/Mesh_Ellipsoid.md +++ b/wiki/Mesh_Ellipsoid.md @@ -1,2 +1,5 @@ # Mesh Ellipsoid 1. REDIRECT [Mesh\_BuildRegularSolid](Mesh_BuildRegularSolid.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Ellipsoid diff --git a/wiki/Mesh_EvaluateCurvature.md b/wiki/Mesh_EvaluateCurvature.md index 14d49d4a26..4b6356eac3 100644 --- a/wiki/Mesh_EvaluateCurvature.md +++ b/wiki/Mesh_EvaluateCurvature.md @@ -1,2 +1,5 @@ # Mesh EvaluateCurvature 1. REDIRECT [Mesh\_CurvatureInfo](Mesh_CurvatureInfo.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateCurvature diff --git a/wiki/Mesh_EvaluateFacet.md b/wiki/Mesh_EvaluateFacet.md index 674c74fe10..91a8184e60 100644 --- a/wiki/Mesh_EvaluateFacet.md +++ b/wiki/Mesh_EvaluateFacet.md @@ -5,6 +5,8 @@ Workbenches:[Mesh](Mesh_Workbench.md) --- +# Mesh EvaluateFacet + ## Description The **Mesh EvaluateFacet** command shows information about faces of mesh objects. @@ -37,4 +39,7 @@ Triangle: <[1.964574, 0.047063, 0.748046], [1.937166, 0.062461, 0.992797], - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateFacet diff --git a/wiki/Mesh_EvaluateRepair.md b/wiki/Mesh_EvaluateRepair.md index 61099002f8..626656490a 100644 --- a/wiki/Mesh_EvaluateRepair.md +++ b/wiki/Mesh_EvaluateRepair.md @@ -1,2 +1,5 @@ # Mesh EvaluateRepair 1. REDIRECT [Mesh\_Evaluation](Mesh_Evaluation.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateRepair diff --git a/wiki/Mesh_EvaluateSolid.md b/wiki/Mesh_EvaluateSolid.md index a3e5a0607c..99cb7c6862 100644 --- a/wiki/Mesh_EvaluateSolid.md +++ b/wiki/Mesh_EvaluateSolid.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SelectNonSolidMeshes](Arch_SelectNonSolidMeshes.md) --- +# Mesh EvaluateSolid + ## Description The **Mesh EvaluateSolid** command checks if a mesh object is solid. A solid mesh object does not have any holes. @@ -22,4 +24,7 @@ The **Mesh EvaluateSolid** command checks if a mesh object is solid. A solid mes - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateSolid diff --git a/wiki/Mesh_Evaluation.md b/wiki/Mesh_Evaluation.md index b2d3b5b1d4..00fefe194b 100644 --- a/wiki/Mesh_Evaluation.md +++ b/wiki/Mesh_Evaluation.md @@ -5,6 +5,8 @@ Workbenches:[Mesh](Mesh_Workbench.md) --- +# Mesh Evaluation + ## Description The **Mesh Evaluation** command evaluates and repairs a mesh object. @@ -56,4 +58,7 @@ The **Mesh Evaluation** command evaluates and repairs a mesh object. - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Evaluation diff --git a/wiki/Mesh_Export.md b/wiki/Mesh_Export.md index d9a601d603..3f299ab781 100644 --- a/wiki/Mesh_Export.md +++ b/wiki/Mesh_Export.md @@ -6,6 +6,8 @@ SeeAlso:[Std Export](Std_Export.md), [Import Export](Import_Export.md) --- +# Mesh Export + ## Description The **Mesh Export** command exports a mesh object to a mesh file format. Several file formats are supported. @@ -48,4 +50,7 @@ Mesh.export([doc.Cone, doc.Cylinder], 'D:/testfiles/mymodel.stl') - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Export diff --git a/wiki/Mesh_Feature.md b/wiki/Mesh_Feature.md index dae5424cbf..1f2c7d0acb 100644 --- a/wiki/Mesh_Feature.md +++ b/wiki/Mesh_Feature.md @@ -1,6 +1,4 @@ # Mesh Feature - - ## Introduction @@ -157,3 +155,6 @@ obj.Label = "Custom label" {{Mesh Tools navi}} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Feature diff --git a/wiki/Mesh_FillHoles.md b/wiki/Mesh_FillHoles.md index 76c17f5626..264eb2b80c 100644 --- a/wiki/Mesh_FillHoles.md +++ b/wiki/Mesh_FillHoles.md @@ -1,2 +1,5 @@ # Mesh FillHoles 1. REDIRECT [Mesh\_FillupHoles](Mesh_FillupHoles.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FillHoles diff --git a/wiki/Mesh_FillInteractiveHole.md b/wiki/Mesh_FillInteractiveHole.md index db09bdb68a..001e6025ec 100644 --- a/wiki/Mesh_FillInteractiveHole.md +++ b/wiki/Mesh_FillInteractiveHole.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh FillupHoles](Mesh_FillupHoles.md), [Mesh AddFacet](Mesh_AddFacet.md) --- +# Mesh FillInteractiveHole + ## Description The **Mesh FillInteractiveHole** command fills selected holes in mesh objects. @@ -29,4 +31,7 @@ The **Mesh FillInteractiveHole** command fills selected holes in mesh objects. - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FillInteractiveHole diff --git a/wiki/Mesh_FillupHoles.md b/wiki/Mesh_FillupHoles.md index 0e410511b8..8afe20f571 100644 --- a/wiki/Mesh_FillupHoles.md +++ b/wiki/Mesh_FillupHoles.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh FillInteractiveHole](Mesh_FillInteractiveHole.md), [Mesh AddFacet](Mesh_AddFacet.md) --- +# Mesh FillupHoles + ## Description The **Mesh FillupHoles** command fills holes in mesh objects. @@ -23,4 +25,7 @@ The **Mesh FillupHoles** command fills holes in mesh objects. - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FillupHoles diff --git a/wiki/Mesh_FlipNormals.md b/wiki/Mesh_FlipNormals.md index 2caa8a917b..c75aaaf555 100644 --- a/wiki/Mesh_FlipNormals.md +++ b/wiki/Mesh_FlipNormals.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh HarmonizeNormals](Mesh_HarmonizeNormals.md) --- +# Mesh FlipNormals + ## Description The **Mesh FlipNormals** command reverses, flips, the normals of mesh objects. @@ -24,4 +26,7 @@ The **Mesh FlipNormals** command reverses, flips, the normals of mesh objects. - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FlipNormals diff --git a/wiki/Mesh_FromPartShape.md b/wiki/Mesh_FromPartShape.md index 9d4ea8ce94..65cdb38d1b 100644 --- a/wiki/Mesh_FromPartShape.md +++ b/wiki/Mesh_FromPartShape.md @@ -5,6 +5,8 @@ Workbenches:[Mesh](Mesh_Workbench.md) --- +# Mesh FromPartShape + ## Description The **Mesh\_FromPartShape** command creates non-parametric [mesh](mesh.md) objects ([Mesh Features](Mesh_Feature.md)) from [shape](shape.md) objects ([Part Features](Part_Feature.md)). @@ -187,4 +189,7 @@ msh.ViewObject.DisplayMode = "Flat Lines" - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FromPartShape diff --git a/wiki/Mesh_HarmonizeNormals.md b/wiki/Mesh_HarmonizeNormals.md index ab60d79488..6611cbea14 100644 --- a/wiki/Mesh_HarmonizeNormals.md +++ b/wiki/Mesh_HarmonizeNormals.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh FlipNormals](Mesh_FlipNormals.md) --- +# Mesh HarmonizeNormals + ## Description The **Mesh HarmonizeNormals** command harmonizes the normals of mesh objects. @@ -25,4 +27,7 @@ The **Mesh HarmonizeNormals** command harmonizes the normals of mesh objects. - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh HarmonizeNormals diff --git a/wiki/Mesh_Import.md b/wiki/Mesh_Import.md index fe36c65a58..1483c68dd6 100644 --- a/wiki/Mesh_Import.md +++ b/wiki/Mesh_Import.md @@ -6,6 +6,8 @@ SeeAlso:[Std Import](Std_Import.md), [Std Open](Std_Open.md), [Import Export](Import_Export.md) --- +# Mesh Import + ## Description The **Mesh Import** command imports geometry from a mesh file format into the active document. Several file formats are supported. The command creates a non-parametric mesh object, a [Mesh Feature](Mesh_Feature.md). @@ -47,4 +49,7 @@ Mesh.insert('D:/testfiles/cylinder.stl') - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Import diff --git a/wiki/Mesh_Intersection.md b/wiki/Mesh_Intersection.md index 828cb53a53..f5092ed761 100644 --- a/wiki/Mesh_Intersection.md +++ b/wiki/Mesh_Intersection.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh Union](Mesh_Union.md), [Mesh Difference](Mesh_Difference.md) --- +# Mesh Intersection + ## Description The **Mesh Intersection** command creates a new non-parametric mesh object, a [Mesh Feature](Mesh_Feature.md), that is the intersection (common) of two mesh objects. @@ -28,4 +30,7 @@ See: [Mesh Feature](Mesh_Feature.md). - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Intersection diff --git a/wiki/Mesh_Merge.md b/wiki/Mesh_Merge.md index 306a436ac2..1d82b462ae 100644 --- a/wiki/Mesh_Merge.md +++ b/wiki/Mesh_Merge.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh SplitComponents](Mesh_SplitComponents.md) --- +# Mesh Merge + ## Description The **Mesh Merge** command creates a new non-parametric mesh object, a [Mesh Feature](Mesh_Feature.md), by combining the meshes of two or more mesh objects. The command does not perform a Boolean union, the new object will contain separate mesh components. For a Boolean union use the [Mesh Union](Mesh_Union.md) command instead. This command is the counterpart of the [Mesh SplitComponents](Mesh_SplitComponents.md) command. @@ -24,4 +26,7 @@ See: [Mesh Feature](Mesh_Feature.md). - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Merge diff --git a/wiki/Mesh_MeshFromShape.md b/wiki/Mesh_MeshFromShape.md index b827051180..29a01f076b 100644 --- a/wiki/Mesh_MeshFromShape.md +++ b/wiki/Mesh_MeshFromShape.md @@ -1,2 +1,5 @@ # Mesh MeshFromShape 1. REDIRECT [Mesh FromPartShape](Mesh_FromPartShape.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh MeshFromShape diff --git a/wiki/Mesh_MeshObject.md b/wiki/Mesh_MeshObject.md index 2e477b96c1..18ca00c5c2 100644 --- a/wiki/Mesh_MeshObject.md +++ b/wiki/Mesh_MeshObject.md @@ -1,6 +1,4 @@ # Mesh MeshObject - - ## Description A [Mesh MeshObject](Mesh_MeshObject.md), or formally a `Mesh::MeshObject`, is a class that defines a mesh data structure in the software. This is similar to the [Part TopoShape](Part_TopoShape.md) but for [meshes](Mesh.md). @@ -58,4 +56,7 @@ obj.Mesh.write("my_file.stl") {{Mesh Tools navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh MeshObject diff --git a/wiki/Mesh_Module.md b/wiki/Mesh_Module.md index 4a2f029b46..4f9dd982df 100644 --- a/wiki/Mesh_Module.md +++ b/wiki/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module 1. REDIRECT [Mesh Workbench](Mesh_Workbench.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module diff --git a/wiki/Mesh_PolyCut.md b/wiki/Mesh_PolyCut.md index 5887792c2a..9d8e1f5b0d 100644 --- a/wiki/Mesh_PolyCut.md +++ b/wiki/Mesh_PolyCut.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh PolyTrim](Mesh_PolyTrim.md), [Mesh TrimByPlane](Mesh_TrimByPlane.md) --- +# Mesh PolyCut + ## Description The **Mesh PolyCut** command cuts whole faces from mesh objects. @@ -42,4 +44,7 @@ The **Mesh PolyCut** command cuts whole faces from mesh objects. - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh PolyCut diff --git a/wiki/Mesh_PolyTrim.md b/wiki/Mesh_PolyTrim.md index 6be3718d20..04de225ba7 100644 --- a/wiki/Mesh_PolyTrim.md +++ b/wiki/Mesh_PolyTrim.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh PolyCut](Mesh_PolyCut.md), [Mesh TrimByPlane](Mesh_TrimByPlane.md) --- +# Mesh PolyTrim + ## Description The **Mesh PolyTrim** command trims faces and parts of faces from mesh objects. @@ -42,4 +44,7 @@ The **Mesh PolyTrim** command trims faces and parts of faces from mesh objects. - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh PolyTrim diff --git a/wiki/Mesh_RemeshGmsh.md b/wiki/Mesh_RemeshGmsh.md index a894e9bd9e..14e6f38f14 100644 --- a/wiki/Mesh_RemeshGmsh.md +++ b/wiki/Mesh_RemeshGmsh.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh FromPartShape](Mesh_FromPartShape.md) --- +# Mesh RemeshGmsh + ## Description The **Mesh RemeshGmsh** command remeshes a mesh object using the [Gmsh](https://gmsh.info/) mesher. The new mesh can be finer or coarser. @@ -34,4 +36,7 @@ See: [Mesh Feature](Mesh_Feature.md). - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemeshGmsh diff --git a/wiki/Mesh_RemoveCompByHand.md b/wiki/Mesh_RemoveCompByHand.md index d2e1061f9e..89132b6f45 100644 --- a/wiki/Mesh_RemoveCompByHand.md +++ b/wiki/Mesh_RemoveCompByHand.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh RemoveComponents](Mesh_RemoveComponents.md), [Arch SplitMesh](Arch_SplitMesh.md) --- +# Mesh RemoveCompByHand + ## Description The **Mesh RemoveCompByHand** command removes components from mesh objects. @@ -26,4 +28,7 @@ The **Mesh RemoveCompByHand** command removes components from mesh objects. - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemoveCompByHand diff --git a/wiki/Mesh_RemoveComponents.md b/wiki/Mesh_RemoveComponents.md index 33edf7bde8..d4139bcd02 100644 --- a/wiki/Mesh_RemoveComponents.md +++ b/wiki/Mesh_RemoveComponents.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh RemoveCompByHand](Mesh_RemoveCompByHand.md), [Arch SplitMesh](Arch_SplitMesh.md) --- +# Mesh RemoveComponents + ## Description The **Mesh RemoveComponents** command removes faces from mesh objects. @@ -34,4 +36,7 @@ The **Mesh RemoveComponents** command removes faces from mesh objects. - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemoveComponents diff --git a/wiki/Mesh_Scale.md b/wiki/Mesh_Scale.md index 5ee9b91ffa..e8a3ef0e7e 100644 --- a/wiki/Mesh_Scale.md +++ b/wiki/Mesh_Scale.md @@ -5,6 +5,8 @@ Workbenches:[Mesh](Mesh_Workbench.md) --- +# Mesh Scale + ## Description The **Mesh Scale** command scales mesh objects. @@ -22,4 +24,7 @@ The **Mesh Scale** command scales mesh objects. - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scale diff --git a/wiki/Mesh_Scripting.md b/wiki/Mesh_Scripting.md index 35859636bd..a3517e6d0a 100644 --- a/wiki/Mesh_Scripting.md +++ b/wiki/Mesh_Scripting.md @@ -1,8 +1,4 @@ # Mesh Scripting - - - - ## Introduction To get access to the `Mesh` module you have to import it first: @@ -103,3 +99,6 @@ See also: [Mesh API](Mesh_API.md). {{Powerdocnavi}} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scripting diff --git a/wiki/Mesh_SectionByPlane.md b/wiki/Mesh_SectionByPlane.md index a663fc1d60..e500c880bc 100644 --- a/wiki/Mesh_SectionByPlane.md +++ b/wiki/Mesh_SectionByPlane.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh CrossSections](Mesh_CrossSections.md) --- +# Mesh SectionByPlane + ## Description The **Mesh SectionByPlane** command creates a cross section across a mesh object. The cross section is a [Part Feature](Part_Feature.md). @@ -24,4 +26,7 @@ See: [Part Feature](Part_Feature.md). - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh SectionByPlane diff --git a/wiki/Mesh_Segmentation.md b/wiki/Mesh_Segmentation.md index a63e4795a1..2dcc8521b3 100644 --- a/wiki/Mesh_Segmentation.md +++ b/wiki/Mesh_Segmentation.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh SegmentationBestFit](Mesh_SegmentationBestFit.md) --- +# Mesh Segmentation + ## Description The **Mesh Segmentation** command creates separate mesh segments for specified surface types of a mesh object. @@ -47,4 +49,7 @@ The **Mesh Segmentation** command creates separate mesh segments for specified s - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Segmentation diff --git a/wiki/Mesh_SegmentationBestFit.md b/wiki/Mesh_SegmentationBestFit.md index 7a44160458..f2e1dcf714 100644 --- a/wiki/Mesh_SegmentationBestFit.md +++ b/wiki/Mesh_SegmentationBestFit.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh Segmentation](Mesh_Segmentation.md) --- +# Mesh SegmentationBestFit + ## Description The **Mesh SegmentationBestFit** command creates separate mesh segments for specified surface types of a mesh object. The command can also identify their parameters which can be useful when re-engineering a mesh object. @@ -49,4 +51,7 @@ The **Mesh SegmentationBestFit** command creates separate mesh segments for spec - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh SegmentationBestFit diff --git a/wiki/Mesh_Smooth.md b/wiki/Mesh_Smooth.md index e32ffe2499..2c79a385d3 100644 --- a/wiki/Mesh_Smooth.md +++ b/wiki/Mesh_Smooth.md @@ -1,2 +1,5 @@ # Mesh Smooth 1. REDIRECT [Mesh\_Smoothing](Mesh_Smoothing.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Smooth diff --git a/wiki/Mesh_Smoothing.md b/wiki/Mesh_Smoothing.md index 14ee2c17d5..3a3d9b5fc1 100644 --- a/wiki/Mesh_Smoothing.md +++ b/wiki/Mesh_Smoothing.md @@ -5,6 +5,8 @@ Workbenches:[Mesh](Mesh_Workbench.md) --- +# Mesh Smoothing + ## Description The **Mesh Smoothing** command smooths mesh objects by changing the position of their vertices. @@ -61,4 +63,7 @@ The **Mesh Smoothing** command smooths mesh objects by changing the position of - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Smoothing diff --git a/wiki/Mesh_Sphere.md b/wiki/Mesh_Sphere.md index 5f6ae1ece3..9b70b3cf00 100644 --- a/wiki/Mesh_Sphere.md +++ b/wiki/Mesh_Sphere.md @@ -1,2 +1,5 @@ # Mesh Sphere 1. REDIRECT [Mesh\_BuildRegularSolid](Mesh_BuildRegularSolid.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Sphere diff --git a/wiki/Mesh_SplitComponents.md b/wiki/Mesh_SplitComponents.md index 28444fcb02..7a99d843e0 100644 --- a/wiki/Mesh_SplitComponents.md +++ b/wiki/Mesh_SplitComponents.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh Merge](Mesh_Merge.md) --- +# Mesh SplitComponents + ## Description The **Mesh SplitComponents** command splits a mesh object into its components. A mesh component is a complete group of connected faces. For each component a new non-parametric mesh object, a [Mesh Feature](Mesh_Feature.md), is created. If the original mesh object contains only one component, and this is usually the case, a single new mesh object, effectively a copy, is created. This command is the counterpart of the [Mesh Merge](Mesh_Merge.md) command. @@ -24,4 +26,7 @@ See: [Mesh Feature](Mesh_Feature.md). - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh SplitComponents diff --git a/wiki/Mesh_Torus.md b/wiki/Mesh_Torus.md index 667adaacc3..2c65bb0b92 100644 --- a/wiki/Mesh_Torus.md +++ b/wiki/Mesh_Torus.md @@ -1,2 +1,5 @@ # Mesh Torus 1. REDIRECT [Mesh\_BuildRegularSolid](Mesh_BuildRegularSolid.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Torus diff --git a/wiki/Mesh_TrimByPlane.md b/wiki/Mesh_TrimByPlane.md index 1626fbef3e..de4c1a1a95 100644 --- a/wiki/Mesh_TrimByPlane.md +++ b/wiki/Mesh_TrimByPlane.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh PolyCut](Mesh_PolyCut.md), [Mesh PolyTrim](Mesh_PolyTrim.md) --- +# Mesh TrimByPlane + ## Description The **Mesh TrimByPlane** command trims faces and parts of faces on one side of a plane from a mesh object. @@ -39,4 +41,7 @@ The **Mesh TrimByPlane** command trims faces and parts of faces on one side of a - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh TrimByPlane diff --git a/wiki/Mesh_TrimMesh.md b/wiki/Mesh_TrimMesh.md index 9fe5ea1478..de4f3a3fb3 100644 --- a/wiki/Mesh_TrimMesh.md +++ b/wiki/Mesh_TrimMesh.md @@ -1,2 +1,5 @@ # Mesh TrimMesh 1. REDIRECT [Mesh\_PolyTrim](Mesh_PolyTrim.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh TrimMesh diff --git a/wiki/Mesh_TrimMeshWithPlane.md b/wiki/Mesh_TrimMeshWithPlane.md index dca2ac0843..11f18e733b 100644 --- a/wiki/Mesh_TrimMeshWithPlane.md +++ b/wiki/Mesh_TrimMeshWithPlane.md @@ -1,2 +1,5 @@ # Mesh TrimMeshWithPlane 1. REDIRECT [Mesh\_TrimByPlane](Mesh_TrimByPlane.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh TrimMeshWithPlane diff --git a/wiki/Mesh_Union.md b/wiki/Mesh_Union.md index 6670b80eb4..83b7989ed4 100644 --- a/wiki/Mesh_Union.md +++ b/wiki/Mesh_Union.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh Intersection](Mesh_Intersection.md), [Mesh Difference](Mesh_Difference.md) --- +# Mesh Union + ## Description The **Mesh Union** command creates a new non-parametric mesh object, a [Mesh Feature](Mesh_Feature.md), that is the union (fusion) of two mesh objects. @@ -28,4 +30,7 @@ See: [Mesh Feature](Mesh_Feature.md). - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Union diff --git a/wiki/Mesh_VertexCurvature.md b/wiki/Mesh_VertexCurvature.md index e6f5de3e46..09c0dba4ab 100644 --- a/wiki/Mesh_VertexCurvature.md +++ b/wiki/Mesh_VertexCurvature.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh CurvatureInfo](Mesh_CurvatureInfo.md) --- +# Mesh VertexCurvature + ## Description The **Mesh VertexCurvature** command creates Mesh Curvature objects for mesh objects. A curvature object displays the curvature of a mesh using different colors for the convex, flat and concave parts. @@ -71,4 +73,7 @@ For a Mesh Curvature object the following properties are available in the [Prope - {{Mesh Tools navi}} + {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh VertexCurvature diff --git a/wiki/Mesh_Workbench.md b/wiki/Mesh_Workbench.md index c70e011568..46f1de8c4c 100644 --- a/wiki/Mesh_Workbench.md +++ b/wiki/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench @@ -107,3 +101,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref {{Mesh Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench diff --git a/wiki/Mesh_to_Part.md b/wiki/Mesh_to_Part.md index aab25582ae..637da539dc 100644 --- a/wiki/Mesh_to_Part.md +++ b/wiki/Mesh_to_Part.md @@ -1,8 +1,4 @@ # Mesh to Part - - - - ## Convert Part objects to meshes Converting higher-level objects such as [Part](Part_Workbench.md) shapes to simpler objects such as [meshes](Mesh_Workbench.md) is a pretty straightforward operation where all faces of a Part object get triangulated. The result of that triangulation (tessellation) is then used to construct a mesh: @@ -106,3 +102,6 @@ Part.show(solid) {{Powerdocnavi}} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh to Part diff --git a/wiki/Microscope_Adapter_Model.md b/wiki/Microscope_Adapter_Model.md index f3e266930b..489d773cb4 100644 --- a/wiki/Microscope_Adapter_Model.md +++ b/wiki/Microscope_Adapter_Model.md @@ -53,3 +53,6 @@ The clamp at the GoPro end is different than the microscope end because of the s and perhaps add category Model and Best Practice [Category:Sandbox‏‎](Category:Sandbox‏‎.md) + +--- +[documentation index](../README.md) > Microscope Adapter Model diff --git a/wiki/Migrating_to_FreeCAD_from_Fusion360.md b/wiki/Migrating_to_FreeCAD_from_Fusion360.md index 1fa104c5fb..8d5f4c1c91 100644 --- a/wiki/Migrating_to_FreeCAD_from_Fusion360.md +++ b/wiki/Migrating_to_FreeCAD_from_Fusion360.md @@ -1,6 +1,4 @@ # Migrating to FreeCAD from Fusion360 - - ## Background This page is intended for users who are interested in migrating to FreeCAD from the Fusion 360 world. @@ -56,4 +54,5 @@ Is this wiki page missing something. Please make a request for [wiki permissions - [Migrating to FreeCAD from OnShape](Migrating_to_FreeCAD_from_OnShape.md) - +--- +[documentation index](../README.md) > Migrating to FreeCAD from Fusion360 diff --git a/wiki/Migrating_to_FreeCAD_from_OnShape.md b/wiki/Migrating_to_FreeCAD_from_OnShape.md index 4442c060c0..74477cd4bb 100644 --- a/wiki/Migrating_to_FreeCAD_from_OnShape.md +++ b/wiki/Migrating_to_FreeCAD_from_OnShape.md @@ -1,6 +1,4 @@ # Migrating to FreeCAD from OnShape - - ## Background This page is intended for users who are interested in working with FreeCAD that are coming from the OnShape world. @@ -11,4 +9,5 @@ This page is intended for users who are interested in working with FreeCAD that - [Migrating to FreeCAD from Fusion360](Migrating_to_FreeCAD_from_Fusion360.md) - Joko Engineering [video](https://youtu.be/oH8GOR8Jx88) side-by-side comparison of FreeCAD with OnShape - +--- +[documentation index](../README.md) > Migrating to FreeCAD from OnShape diff --git a/wiki/Misc_templates.md b/wiki/Misc_templates.md index a7f7a53912..333d6b3f42 100644 --- a/wiki/Misc_templates.md +++ b/wiki/Misc_templates.md @@ -1,6 +1,4 @@ # Misc templates - - This page lists some mixed templates. All models are in SVG format directly downloadable and usable with or without modification. All the templates and cartridges are equipped with editable texts in FreeCAD. @@ -85,3 +83,6 @@ CompassRose\_3D [CompassRose\_3D.FCStd](http://forum.freecadweb.org/download/fil [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Misc templates diff --git a/wiki/Misc_templates_Full.md b/wiki/Misc_templates_Full.md index e6197c461b..ca4881ac6e 100644 --- a/wiki/Misc_templates_Full.md +++ b/wiki/Misc_templates_Full.md @@ -1,5 +1,5 @@ # Misc templates Full - These templates are completely empty cartridge (22 fields to fill) and dedicated to the macro [Macro\_CartoucheFC\_Full](Macro_CartoucheFC_Full.md) +These templates are completely empty cartridge (22 fields to fill) and dedicated to the macro [Macro\_CartoucheFC\_Full](Macro_CartoucheFC_Full.md) The same work can be done directly in FreeCAD @@ -34,3 +34,6 @@ for Linux : \"\" [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Macros](Category:Macros.md) > Misc templates Full diff --git a/wiki/Model.md b/wiki/Model.md index 6f91da4dde..f8ba8a6cdc 100644 --- a/wiki/Model.md +++ b/wiki/Model.md @@ -1,6 +1,4 @@ # Model - - ## Introduction In FreeCAD the word \"[Model](Model.md)\" is normally used to refer to any 3D object, or collection of objects, created in the [3D view](3D_view.md). @@ -18,3 +16,6 @@ In informal usage, the word \"[Drawing](Drawing.md)\" may be used with the same {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Model diff --git a/wiki/ModernUI_Workbench.md b/wiki/ModernUI_Workbench.md index e0ccf4b113..f13fb8b48f 100644 --- a/wiki/ModernUI_Workbench.md +++ b/wiki/ModernUI_Workbench.md @@ -1,7 +1,4 @@ -# ModernUI Workbench - - -Modern UI workbench icon +# Modern UI workbench icon ModernUI Workbench @@ -89,3 +86,6 @@ for WB in WBList: [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > ModernUI Workbench diff --git a/wiki/Module_Creation.md b/wiki/Module_Creation.md index 9c8c190e69..806972935a 100644 --- a/wiki/Module_Creation.md +++ b/wiki/Module_Creation.md @@ -1,2 +1,5 @@ # Module Creation 1. REDIRECT [Workbench\_creation](Workbench_creation.md) + +--- +[documentation index](../README.md) > Module Creation diff --git a/wiki/Mouse_Model.md b/wiki/Mouse_Model.md index 1cc1e76c83..819e0f4053 100644 --- a/wiki/Mouse_Model.md +++ b/wiki/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model 1. REDIRECT [Mouse\_navigation](Mouse_navigation.md) + +--- +[documentation index](../README.md) > Mouse Model diff --git a/wiki/Mouse_navigation.md b/wiki/Mouse_navigation.md index a07700a27c..aad0e944c6 100644 --- a/wiki/Mouse_navigation.md +++ b/wiki/Mouse_navigation.md @@ -1,11 +1,4 @@ # Mouse navigation - - - - - - - ## Overview The FreeCAD **mouse navigation** consists of the commands used to visually navigate the 3D space and interact with the objects displayed. FreeCAD supports multiple mouse navigation styles. The default navigation style is referred to as \"CAD Navigation,\" and is very simple and practical, but FreeCAD also provides alternative navigation styles which you can choose according to your preferences. @@ -244,7 +237,5 @@ On MacBooks with a trackpad the Gesture navigation works very well, but the gest The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mouse_navigation_option_to_FreeCAD.md) orients developers who want to develop a custom mouse navigation option. Familiarity with the C++ syntax is required. - - - - +--- +[documentation index](../README.md) > Mouse navigation diff --git a/wiki/Multithreading.md b/wiki/Multithreading.md index 412a0db640..c0e8279895 100644 --- a/wiki/Multithreading.md +++ b/wiki/Multithreading.md @@ -1,7 +1,4 @@ # Multithreading - - - **This is a stub that needs expanding.** ## Multithreading in FreeCAD @@ -18,3 +15,6 @@ {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Multithreading diff --git a/wiki/Naming_project.md b/wiki/Naming_project.md index 876470f848..576f02fa6e 100644 --- a/wiki/Naming_project.md +++ b/wiki/Naming_project.md @@ -1,7 +1,4 @@ # Naming project - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -107,3 +104,6 @@ See [here](https://github.com/ezzieyguywuf/freecadTopoTesting/blob/master/TNamin [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Naming project diff --git a/wiki/Navigation_Cube.md b/wiki/Navigation_Cube.md index 4f1eaf1951..7d74806d01 100644 --- a/wiki/Navigation_Cube.md +++ b/wiki/Navigation_Cube.md @@ -1,11 +1,4 @@ # Navigation Cube - - - - - - - The navigational cube control, or **navigation cube**, is a user interface graphic aid for reorienting the 3D view. By default, it is visible and resides in the upper right corner of the 3D display. If you are looking at the standard 3D view, it looks like the following: ![](images/FreeCAD-v0-18-NavCube_Axonometric.png ) @@ -78,3 +71,6 @@ For more advanced configuration, refer to the [CubeMenu](Interface_Customization [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Navigation Cube diff --git a/wiki/New_solver_object_for_handling_ElmerFEM_execution_in_FEM-workbench.md b/wiki/New_solver_object_for_handling_ElmerFEM_execution_in_FEM-workbench.md index 7f5cba6530..8646159e0d 100644 --- a/wiki/New_solver_object_for_handling_ElmerFEM_execution_in_FEM-workbench.md +++ b/wiki/New_solver_object_for_handling_ElmerFEM_execution_in_FEM-workbench.md @@ -42,3 +42,6 @@ Easy ### Additional Information [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > New solver object for handling ElmerFEM execution in FEM-workbench diff --git a/wiki/Node_editors.md b/wiki/Node_editors.md index ad22918927..199e2a0950 100644 --- a/wiki/Node_editors.md +++ b/wiki/Node_editors.md @@ -1,5 +1,4 @@ # Node editors - {{TOCright}} @@ -32,3 +31,6 @@ Modelica: ### DynFreeCAD Nodes for managing FreeCAD from Dynamo ([forum thread](https://forum.freecadweb.org/viewtopic.php?t=49910)) + +--- +[documentation index](../README.md) > Node editors diff --git a/wiki/NumPy.md b/wiki/NumPy.md index 6ca06c71e8..aa897c34f9 100644 --- a/wiki/NumPy.md +++ b/wiki/NumPy.md @@ -1,6 +1,4 @@ # NumPy - - ## Introduction This page aims to document how to use [NumPy](https://numpy.org/) with FreeCAD. @@ -20,3 +18,6 @@ numpy comes installed as a dependency of FreeCAD, therefore you can import numpy [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > NumPy diff --git a/wiki/OCCT.md b/wiki/OCCT.md index 7cf04df5cf..4c38638153 100644 --- a/wiki/OCCT.md +++ b/wiki/OCCT.md @@ -1,2 +1,5 @@ # OCCT 1. REDIRECT [OpenCASCADE](OpenCASCADE.md) + +--- +[documentation index](../README.md) > OCCT diff --git a/wiki/ODA.md b/wiki/ODA.md index 8dbd590ab4..0d41551a40 100644 --- a/wiki/ODA.md +++ b/wiki/ODA.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > ODA diff --git a/wiki/ODA_File_Converter.md b/wiki/ODA_File_Converter.md index bddf4a2136..88b91e041a 100644 --- a/wiki/ODA_File_Converter.md +++ b/wiki/ODA_File_Converter.md @@ -1,2 +1,5 @@ # ODA File Converter 1. REDIRECT [FreeCAD\_and\_DWG\_Import](FreeCAD_and_DWG_Import.md) + +--- +[documentation index](../README.md) > ODA File Converter diff --git a/wiki/OSE_3D_Printer_Workbench.md b/wiki/OSE_3D_Printer_Workbench.md index 99e8c6b468..b5f1d29079 100644 --- a/wiki/OSE_3D_Printer_Workbench.md +++ b/wiki/OSE_3D_Printer_Workbench.md @@ -1,8 +1,9 @@ # OSE 3D Printer Workbench - - See workbench at OSE wiki: [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > OSE 3D Printer Workbench diff --git a/wiki/OSE_Piping_Workbench.md b/wiki/OSE_Piping_Workbench.md index cfec5fd36e..596653908b 100644 --- a/wiki/OSE_Piping_Workbench.md +++ b/wiki/OSE_Piping_Workbench.md @@ -1,6 +1,4 @@ # OSE Piping Workbench - - # Introduction @@ -42,3 +40,6 @@ A sweep elbow is a special elbow with larger radius of the bent part. It is desc [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > OSE Piping Workbench diff --git a/wiki/Object_API.md b/wiki/Object_API.md index cd4d7ba8c5..2c0b81ad5f 100644 --- a/wiki/Object_API.md +++ b/wiki/Object_API.md @@ -1,5 +1,5 @@ # Object API - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Being parametric, document objects in FreeCAD can have a lot of additional properties, but these are the basic ones, present in every FreeCAD Document Object. Objects can be retrieved simply by their name. Example: ```python @@ -58,3 +58,6 @@ print myObj.PropertiesList [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Object API diff --git a/wiki/Object_name.md b/wiki/Object_name.md index 7d0490a6a4..43c95fc56a 100644 --- a/wiki/Object_name.md +++ b/wiki/Object_name.md @@ -1,6 +1,4 @@ # Object name - - ## Introduction @@ -117,4 +115,5 @@ obj3 = App.ActiveDocument.getObjectsByLabel("Some special name for this cube__00 Given that the `Label` is in general not unique, the `getObjectsByLabel` method returns a list with all objects found with that `Label`. However, if the `Label` is unique in the document then the first element in that list should be the desired object. - +--- +[documentation index](../README.md) > Object name diff --git a/wiki/Offsite_tutorials.md b/wiki/Offsite_tutorials.md index 41a376a6f4..7dec4293c2 100644 --- a/wiki/Offsite_tutorials.md +++ b/wiki/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** This page lists FreeCAD tutorials found on other sites on the web. @@ -15,4 +15,7 @@ This page lists FreeCAD tutorials found on other sites on the web. - 4 - camshaft : - 5 - camshaft gear : - {{Tutorials navi}} + {{Tutorials navi}} + +--- +[documentation index](../README.md) > Offsite tutorials diff --git a/wiki/Onboarding_FEM_Devs.md b/wiki/Onboarding_FEM_Devs.md index 7d69458be7..0a2b721f2e 100644 --- a/wiki/Onboarding_FEM_Devs.md +++ b/wiki/Onboarding_FEM_Devs.md @@ -1,5 +1,4 @@ # Onboarding FEM Devs - {{TOCright}} ## Description @@ -138,3 +137,6 @@ TBD - [FEM Workbench](FEM_Workbench.md) - [Category:FEM](Category:FEM.md) [Category:FEM](Category:FEM.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Onboarding FEM Devs diff --git a/wiki/Online_Help_Startpage.md b/wiki/Online_Help_Startpage.md index 2c56ec5d59..6fcbe2d2a9 100644 --- a/wiki/Online_Help_Startpage.md +++ b/wiki/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage - - ![150](images/Crystal_Clear_app_tutorials.png ) ## Welcome to the FreeCAD on-line help @@ -21,3 +19,6 @@ As you may have experienced sometimes, programmers are really bad help writers! [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage diff --git a/wiki/Online_Help_Toc.md b/wiki/Online_Help_Toc.md index 44bb9ec972..f40c167b63 100644 --- a/wiki/Online_Help_Toc.md +++ b/wiki/Online_Help_Toc.md @@ -1,6 +1,4 @@ # Online Help Toc - - This is the table of contents used for the automatic building of the **Online Help** system in FreeCAD. A printable version of this manual is also available on the [releases page](https://github.com/FreeCAD/FreeCAD/releases). If you have any questions or need help with FreeCAD please consult the [help page](Help.md) including the forums and chat groups. There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction.md). @@ -113,3 +111,6 @@ There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction. [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc diff --git a/wiki/OpenCASCADE.md b/wiki/OpenCASCADE.md index 2ddd7b6ee4..41943753c8 100644 --- a/wiki/OpenCASCADE.md +++ b/wiki/OpenCASCADE.md @@ -1,8 +1,4 @@ # OpenCASCADE - - - - ## Description [OpenCASCADE Technology](OpenCASCADE.md), **OCC** or **OCCT** for short, is a collection of C++ libraries that together constitute a professional computer aided design (CAD) kernel for modelling 2D and 3D objects, and building specialized tools for manufacturing, simulation, or visualization. OpenCASCADE is the heart of the geometrical capabilities of FreeCAD. @@ -84,3 +80,6 @@ Thus, out of shapes you can build very complex parts or, the other way round, ex {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > OpenCASCADE diff --git a/wiki/OpenCamLib.md b/wiki/OpenCamLib.md index fbf8444187..74fb86d05b 100644 --- a/wiki/OpenCamLib.md +++ b/wiki/OpenCamLib.md @@ -1,6 +1,4 @@ # OpenCamLib - - ## Description OpenCamLib (OCL) is an open source library aiming to provide computer aided manufacturing (CAM) algorithms. FreeCAD uses OCL in the experimental ** [3D Surface](Path_3DSurface.md)** path operations and other experimental features. @@ -123,3 +121,6 @@ Thank you to [Dr. Anders Wallin](http://www.anderswallin.net/about/) for providi [Category:User Documentation](Category:User_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > OpenCamLib diff --git a/wiki/OpenCascade.md b/wiki/OpenCascade.md index 8f3000b390..387acdbed4 100644 --- a/wiki/OpenCascade.md +++ b/wiki/OpenCascade.md @@ -1,2 +1,5 @@ # OpenCascade 1. REDIRECT [OpenCASCADE](OpenCASCADE.md) + +--- +[documentation index](../README.md) > OpenCascade diff --git a/wiki/OpenGL_on_MacOS.md b/wiki/OpenGL_on_MacOS.md index fadccdfe2c..6c73265b41 100644 --- a/wiki/OpenGL_on_MacOS.md +++ b/wiki/OpenGL_on_MacOS.md @@ -8,3 +8,6 @@ This issue has been resolved by moving FreeCAD\'s Qt OpenGL usage to new classes See [issue 1401](http://freecadweb.org/tracker/view.php?id=1401). [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > OpenGL on MacOS diff --git a/wiki/OpenSCAD_AddOpenSCADElement.md b/wiki/OpenSCAD_AddOpenSCADElement.md index 1ee1af13f4..0fdc79cfd8 100644 --- a/wiki/OpenSCAD_AddOpenSCADElement.md +++ b/wiki/OpenSCAD_AddOpenSCADElement.md @@ -6,6 +6,8 @@ Workbenches:[OpenSCAD](OpenSCAD_Workbench.md) --- +# OpenSCAD AddOpenSCADElement + ## Description Add an OpenSCAD element by entering OpenSCAD code into the task panel and executing the OpenSCAD binary (requires OpenSCAD) @@ -43,4 +45,7 @@ Starting from (v0.14) FreeCAD will search for the OpenSCAD execu - {{OpenSCAD_Tools_navi}} + {{OpenSCAD_Tools_navi}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD AddOpenSCADElement diff --git a/wiki/OpenSCAD_CSG.md b/wiki/OpenSCAD_CSG.md index a8ab471d89..f7036789d5 100644 --- a/wiki/OpenSCAD_CSG.md +++ b/wiki/OpenSCAD_CSG.md @@ -1,6 +1,4 @@ # OpenSCAD CSG - - ## Import ### Supported Elements @@ -39,3 +37,6 @@ Every object derived from Part::Feature which is not (yet) supported will get me {{OpenSCAD Tools navi}} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD CSG diff --git a/wiki/OpenSCAD_CSG_tested_files.md b/wiki/OpenSCAD_CSG_tested_files.md index f5d38f149f..2f11239b71 100644 --- a/wiki/OpenSCAD_CSG_tested_files.md +++ b/wiki/OpenSCAD_CSG_tested_files.md @@ -1,6 +1,4 @@ # OpenSCAD CSG tested files - - ## This is a list of OpenSCAD files that can not be opened in FreeCAD ------------------- ------------------------------------------ -------------------------------------------------------- ----------------------------------------------------------- ------------------------------------------ @@ -28,3 +26,6 @@ {{OpenSCAD Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD CSG tested files diff --git a/wiki/OpenSCAD_ColorCodeShape.md b/wiki/OpenSCAD_ColorCodeShape.md index 16789399e5..3d26fd1faf 100644 --- a/wiki/OpenSCAD_ColorCodeShape.md +++ b/wiki/OpenSCAD_ColorCodeShape.md @@ -5,6 +5,8 @@ Workbenches:[OpenSCAD](OpenSCAD_Workbench.md) --- +# OpenSCAD ColorCodeShape + ## Description ## Usage @@ -16,4 +18,7 @@ - {{OpenSCAD_Tools_navi}} + {{OpenSCAD_Tools_navi}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ColorCodeShape diff --git a/wiki/OpenSCAD_Edgestofaces.md b/wiki/OpenSCAD_Edgestofaces.md index f7e06577a1..bc33e046b7 100644 --- a/wiki/OpenSCAD_Edgestofaces.md +++ b/wiki/OpenSCAD_Edgestofaces.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Upgrade](Draft_Upgrade.md) --- +# OpenSCAD Edgestofaces + ## Description Convert edges to faces. Useful to prepare imported DXF geometry for extrusion. @@ -24,4 +26,7 @@ See also Draft\_Upgrade +# OpenSCAD workbench icon OpenSCAD Workbench ## Introduction @@ -89,3 +83,6 @@ If FreeCAD crashes when importing CSG, it is strongly recommended that you enabl {{OpenSCAD Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench diff --git a/wiki/Opencamlib.md b/wiki/Opencamlib.md index 09e18f68da..8057b2aea2 100644 --- a/wiki/Opencamlib.md +++ b/wiki/Opencamlib.md @@ -1,2 +1,5 @@ # Opencamlib 1. REDIRECT [OpenCamLib](OpenCamLib.md) + +--- +[documentation index](../README.md) > Opencamlib diff --git a/wiki/PCB_Workbench.md b/wiki/PCB_Workbench.md index 5450577773..9877dc3faa 100644 --- a/wiki/PCB_Workbench.md +++ b/wiki/PCB_Workbench.md @@ -1,6 +1,4 @@ # PCB Workbench - - ## Introduction @@ -110,3 +108,6 @@ Security → Edit → Users and mark all checkboxes under \'Allow\' option. [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > PCB Workbench diff --git a/wiki/PDF.md b/wiki/PDF.md index 18f211ad7c..be5fa359fe 100644 --- a/wiki/PDF.md +++ b/wiki/PDF.md @@ -1,8 +1,4 @@ # PDF - - - - ## Description [Portable Document Format](https://en.wikipedia.org/wiki/PDF) (PDF) is a file format developed by Adobe in the 1990s to present documents, including text and images. @@ -28,3 +24,6 @@ The option to export to PDF is available in the **File → [Export PDF](Std_Expo [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > PDF diff --git a/wiki/POV-Ray-Rendering_Workbench.md b/wiki/POV-Ray-Rendering_Workbench.md index 1f24c1c2d7..50a3f243f5 100644 --- a/wiki/POV-Ray-Rendering_Workbench.md +++ b/wiki/POV-Ray-Rendering_Workbench.md @@ -1,7 +1,4 @@ -# POV-Ray-Rendering Workbench - - -POV-Ray-Rendering Workbench icon +# POV-Ray-Rendering Workbench icon POV-Ray-Rendering Workbench @@ -91,3 +88,6 @@ To complete the installation the path to the POV-Ray executable has to be define [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > POV-Ray-Rendering Workbench diff --git a/wiki/POV-Ray.md b/wiki/POV-Ray.md index dbb4509f6b..46773fe374 100644 --- a/wiki/POV-Ray.md +++ b/wiki/POV-Ray.md @@ -1,5 +1,5 @@ # POV-Ray - **The development of POV-Ray seems to be halted. The latest stable version is 3.7.0.8 (2018-05-27), the latest development version is 3.8.0-x (2019-02-19), the [https://github.com/POV-Ray/povray/ official project on GitHub] has been edited the last time on 2019-03-08. Please remove this warning if the situation changes** +**The development of POV-Ray seems to be halted. The latest stable version is 3.7.0.8 (2018-05-27), the latest development version is 3.8.0-x (2019-02-19), the [https://github.com/POV-Ray/povray/ official project on GitHub] has been edited the last time on 2019-03-08. Please remove this warning if the situation changes** # Description @@ -96,4 +96,7 @@ After installing the Render Workbench and POV-Ray, launch FreeCAD, open the [Pre Set the POV-Ray executable path to point to your installation of POV-Ray, usually it is *C:/Program Files/POV-Ray/v3.7/bin/pvengine64.exe*, and apply. -Then, before trying to render something, start POV-Ray separately and [set I/O restrictions according to POV-Ray documentation](https://wiki.povray.org/content/Documentation:Windows_Section_2.1), otherwise rendering will not work properly (or will not work at all). +Then, before trying to render something, start POV-Ray separately and [set I/O restrictions according to POV-Ray documentation](https://wiki.povray.org/content/Documentation:Windows_Section_2.1), otherwise rendering will not work properly (or will not work at all). + +--- +[documentation index](../README.md) > POV-Ray diff --git a/wiki/Package_Metadata.md b/wiki/Package_Metadata.md index 6532d03d18..e07c1a4236 100644 --- a/wiki/Package_Metadata.md +++ b/wiki/Package_Metadata.md @@ -1,5 +1,4 @@ # Package Metadata - **This page documents a feature currently under development. ** @@ -255,3 +254,6 @@ The maximum version of FreeCAD required to use package/element, as a semantic ve + +--- +[documentation index](../README.md) > Package Metadata diff --git a/wiki/Packaging.md b/wiki/Packaging.md index 86e920b3a8..afb6517933 100644 --- a/wiki/Packaging.md +++ b/wiki/Packaging.md @@ -1,6 +1,4 @@ # Packaging - - This page collects the information on packaging FreeCAD in different platforms. - [Linux packaging](Linux_packaging.md). Information on AppImages, Debian packages, unstable and daily, and others. @@ -10,3 +8,6 @@ This page collects the information on packaging FreeCAD in different platforms. [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Packaging diff --git a/wiki/Parameter_Editor.md b/wiki/Parameter_Editor.md index a7594158aa..979b7eafbb 100644 --- a/wiki/Parameter_Editor.md +++ b/wiki/Parameter_Editor.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Parameter Editor diff --git a/wiki/Parameter_editor.md b/wiki/Parameter_editor.md index 37d8ef3b9d..4281183745 100644 --- a/wiki/Parameter_editor.md +++ b/wiki/Parameter_editor.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Parameter editor diff --git a/wiki/Part.md b/wiki/Part.md index c0f64831e8..5642417b2e 100644 --- a/wiki/Part.md +++ b/wiki/Part.md @@ -1,6 +1,4 @@ # Part - - ## Introduction In FreeCAD the word \"[Part](Part.md)\" is normally used to refer to a [Std Part](Std_Part.md) (`App::Part` class), a type of container object that is defined by the base system. This Part is used to manage the position of 3D shapes in order to create mechanical assemblies. @@ -33,3 +31,6 @@ However, when more precision is required, the distinction must be made. }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Part diff --git a/wiki/Part::Feature.md b/wiki/Part::Feature.md index b5d616afa1..8b6469e74e 100644 --- a/wiki/Part::Feature.md +++ b/wiki/Part::Feature.md @@ -1,2 +1,5 @@ # Part::Feature 1. REDIRECT [Part\_Feature](Part_Feature.md) + +--- +[documentation index](../README.md) > Part::Feature diff --git a/wiki/Part::Part2DObject.md b/wiki/Part::Part2DObject.md index af98a870ae..cd6ecf083f 100644 --- a/wiki/Part::Part2DObject.md +++ b/wiki/Part::Part2DObject.md @@ -1,2 +1,5 @@ # Part::Part2DObject 1. REDIRECT [Part\_Part2DObject](Part_Part2DObject.md) + +--- +[documentation index](../README.md) > Part::Part2DObject diff --git a/wiki/PartDesign_AdditiveBox.md b/wiki/PartDesign_AdditiveBox.md index cd1978590b..b51d001f72 100644 --- a/wiki/PartDesign_AdditiveBox.md +++ b/wiki/PartDesign_AdditiveBox.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Primitive additive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign AdditiveBox + ## Description Inserts a primitive box in the active Body as the first feature, or fuses it to the existing feature(s). @@ -42,4 +44,7 @@ The Box can be edited after its creation in two ways: - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveBox diff --git a/wiki/PartDesign_AdditiveCone.md b/wiki/PartDesign_AdditiveCone.md index 55b02d5c36..0594616b9e 100644 --- a/wiki/PartDesign_AdditiveCone.md +++ b/wiki/PartDesign_AdditiveCone.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create an additive primitive](PartDesign_CompPrimitiveAdditive.md), [PartDesign Subtractive Cone](PartDesign_SubtractiveCone.md) --- +# PartDesign AdditiveCone + ## Description Inserts a primitive cone in the active Body as the first feature, or fuses it to the existing feature(s). @@ -44,4 +46,7 @@ The Cone can be edited after its creation in two ways: - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCone diff --git a/wiki/PartDesign_AdditiveCylinder.md b/wiki/PartDesign_AdditiveCylinder.md index d3d8e8b010..156a410c48 100644 --- a/wiki/PartDesign_AdditiveCylinder.md +++ b/wiki/PartDesign_AdditiveCylinder.md @@ -7,6 +7,8 @@ SeeAlso:[Create an additive primitive](PartDesign_CompPrimitiveAdditive.md), [Subtractive Cylinder](PartDesign_SubtractiveCylinder.md) --- +# PartDesign AdditiveCylinder + ## Description Inserts a primitive cylinder in the active Body as the first feature, or fuses it to the existing feature(s). @@ -48,4 +50,7 @@ The Cylinder can be edited after its creation in two ways: - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCylinder diff --git a/wiki/PartDesign_AdditiveEllipsoid.md b/wiki/PartDesign_AdditiveEllipsoid.md index 8387d7ddbb..b2f4fce8cc 100644 --- a/wiki/PartDesign_AdditiveEllipsoid.md +++ b/wiki/PartDesign_AdditiveEllipsoid.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign AdditiveEllipsoid + ## Description Inserts a primitive ellipsoid in the active Body as the first feature, or fuses it to the existing feature(s). @@ -48,4 +50,7 @@ The Ellipsoid can be edited after its creation in two ways: - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveEllipsoid diff --git a/wiki/PartDesign_AdditiveHelix.md b/wiki/PartDesign_AdditiveHelix.md index 60f64ce287..b9a9232788 100644 --- a/wiki/PartDesign_AdditiveHelix.md +++ b/wiki/PartDesign_AdditiveHelix.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign SubtractiveHelix](PartDesign_SubtractiveHelix.md) --- +# PartDesign AdditiveHelix + ## Description The **AdditiveHelix** tool creates a solid by sweeping a selected sketch or 2D object along a helix path. @@ -121,4 +123,7 @@ If checked, the helix will be shown in the view, and updated automatically on ev - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveHelix diff --git a/wiki/PartDesign_AdditiveLoft.md b/wiki/PartDesign_AdditiveLoft.md index 8eb4fe497c..c82d333e55 100644 --- a/wiki/PartDesign_AdditiveLoft.md +++ b/wiki/PartDesign_AdditiveLoft.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign AdditivePipe](PartDesign_AdditivePipe.md), [PartDesign SubtractiveLoft](PartDesign_SubtractiveLoft.md) --- +# PartDesign AdditiveLoft + ## Description **Additive Loft** creates a solid in the active Body by making a transition between two or more sketches (also referred to as cross-sections). If the Body already contains features, the additive loft will be merged to them. @@ -82,4 +84,7 @@ - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveLoft diff --git a/wiki/PartDesign_AdditivePipe.md b/wiki/PartDesign_AdditivePipe.md index 5f0ea585db..235598f09b 100644 --- a/wiki/PartDesign_AdditivePipe.md +++ b/wiki/PartDesign_AdditivePipe.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Additive Loft](PartDesign_AdditiveLoft.md), [PartDesign Subtractive Pipe](PartDesign_SubtractivePipe.md) --- +# PartDesign AdditivePipe + ## Description **Additive Pipe** creates a solid in the active Body by sweeping one or more sketches (also referred to as cross-sections) along an open or closed path. If the Body already contains features, the additive pipe will be merged to them. @@ -97,4 +99,7 @@ To use more than one cross-section, start with the first cross-section sketch as - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePipe diff --git a/wiki/PartDesign_AdditivePrism.md b/wiki/PartDesign_AdditivePrism.md index 8770b3ff71..bf0540d3b6 100644 --- a/wiki/PartDesign_AdditivePrism.md +++ b/wiki/PartDesign_AdditivePrism.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create an additive primitive](PartDesign_CompPrimitiveAdditive.md), [PartDesign Subtractive Prism](PartDesign_SubtractivePrism.md) --- +# PartDesign AdditivePrism + ## Description Inserts a primitive prism in the active Body as the first feature, or fuses it to the existing feature(s). @@ -48,4 +50,7 @@ The Prism can be edited after its creation in two ways: - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePrism diff --git a/wiki/PartDesign_AdditiveSphere.md b/wiki/PartDesign_AdditiveSphere.md index 8045f8582c..0ddfa1daeb 100644 --- a/wiki/PartDesign_AdditiveSphere.md +++ b/wiki/PartDesign_AdditiveSphere.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign AdditiveSphere + ## Description Inserts a primitive sphere in the active Body as the first feature, or fuses it to the existing feature(s). @@ -44,4 +46,7 @@ The Sphere can be edited after its creation in two ways: - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveSphere diff --git a/wiki/PartDesign_AdditiveTorus.md b/wiki/PartDesign_AdditiveTorus.md index 473eebec06..79344fef5a 100644 --- a/wiki/PartDesign_AdditiveTorus.md +++ b/wiki/PartDesign_AdditiveTorus.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign AdditiveTorus + ## Description Inserts a primitive torus in the active Body as the first feature, or fuses it to the existing feature(s). @@ -46,4 +48,7 @@ The Torus can be edited after its creation in two ways: - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveTorus diff --git a/wiki/PartDesign_AdditiveWedge.md b/wiki/PartDesign_AdditiveWedge.md index 20b344cd1b..9ea6404cc2 100644 --- a/wiki/PartDesign_AdditiveWedge.md +++ b/wiki/PartDesign_AdditiveWedge.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create an additive primitive](PartDesign_CompPrimitiveAdditive.md), [PartDesign Subtractive Wedge](PartDesign_SubtractiveWedge.md) --- +# PartDesign AdditiveWedge + ## Description Inserts a primitive wedge in the active Body as the first feature, or fuses it to the existing feature(s). @@ -48,4 +50,7 @@ Wedges can be used to create pyramids by setting **X2 min/max** and **Z2 min/max - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveWedge diff --git a/wiki/PartDesign_Bearingholder_Tutorial_I.md b/wiki/PartDesign_Bearingholder_Tutorial_I.md index bb891a1f2f..5ceeece77a 100644 --- a/wiki/PartDesign_Bearingholder_Tutorial_I.md +++ b/wiki/PartDesign_Bearingholder_Tutorial_I.md @@ -1,10 +1,4 @@ # PartDesign Bearingholder Tutorial I - - - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -118,3 +112,6 @@ We have modelled the bearing holder top with the dimensions it will have after c [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial I diff --git a/wiki/PartDesign_Bearingholder_Tutorial_II.md b/wiki/PartDesign_Bearingholder_Tutorial_II.md index dfb571a4b6..face068551 100644 --- a/wiki/PartDesign_Bearingholder_Tutorial_II.md +++ b/wiki/PartDesign_Bearingholder_Tutorial_II.md @@ -1,10 +1,4 @@ # PartDesign Bearingholder Tutorial II - - - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -91,3 +85,6 @@ For the rest of the machining, create a new Body. The bottom of the holder will [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial II diff --git a/wiki/PartDesign_Body.md b/wiki/PartDesign_Body.md index 7cd097a2d9..a1749a45cc 100644 --- a/wiki/PartDesign_Body.md +++ b/wiki/PartDesign_Body.md @@ -7,6 +7,8 @@ SeeAlso:[Std Part](Std_Part.md), [Feature editing](Feature_editing.md) --- +# PartDesign Body + ## Description A [PartDesign Body](PartDesign_Body.md) is the base element to create solids shapes with the [PartDesign Workbench](PartDesign_Workbench.md). It can contain [sketches](Sketch.md), [datum objects](Datum.md), and [PartDesign Features](PartDesign_Feature.md) that help in building a [single contiguous solid](PartDesign_Body#Single_contiguous_solid.md). @@ -291,4 +293,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Body diff --git a/wiki/PartDesign_Boolean.md b/wiki/PartDesign_Boolean.md index 85cf49edeb..95ca56eaea 100644 --- a/wiki/PartDesign_Boolean.md +++ b/wiki/PartDesign_Boolean.md @@ -6,6 +6,8 @@ Version:0.17 --- +# PartDesign Boolean + ## Description **PartDesign Boolean** imports one or more [PartDesign Bodies](PartDesign_Body.md) or [PartDesign Clones](PartDesign_Clone.md) (designated as \"tool bodies\") into the active PartDesign Body and applies a Boolean operation (fuse, cut or common). @@ -58,4 +60,7 @@ Alternatively, one or more Bodies can be selected prior to pressing the Boolean - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Boolean diff --git a/wiki/PartDesign_Chamfer.md b/wiki/PartDesign_Chamfer.md index 23c42a8116..576e9b0567 100644 --- a/wiki/PartDesign_Chamfer.md +++ b/wiki/PartDesign_Chamfer.md @@ -6,6 +6,8 @@ SeeAlso:[PartDesign Fillet](PartDesign_Fillet.md), [Part Chamfer](Part_Chamfer.md) --- +# PartDesign Chamfer + ## Description This tool creates chamfers on the selected edges of an object. A new separate Chamfer entry (followed by a consecutive number if there are already existing chamfers in the document) is created in the Project tree. @@ -32,4 +34,7 @@ This tool creates chamfers on the selected edges of an object. A new separate Ch - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Chamfer diff --git a/wiki/PartDesign_Clone.md b/wiki/PartDesign_Clone.md index fdf725301a..7bae3ba31b 100644 --- a/wiki/PartDesign_Clone.md +++ b/wiki/PartDesign_Clone.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Clone](Draft_Clone.md) --- +# PartDesign Clone + ## Description **PartDesign Clone** creates a linked copy of a selected object which will follow any future edits to the original object (except placement). For example, one use case is when you want to do [PartDesign Boolean](PartDesign_Boolean.md) on an object created in another workbench. Most types of objects are accepted, as long as they are single solids. If you need to clone multiple objects (i.e., bodies) or a [Part Container](Std_Part.md), you may use [Draft Workbench\'s clone](Draft_Clone.md). One caveat is that the Part Design Workbench\'s clone sets the current placement of the clone as zero (both Cartesian translation and spatial orientations). While the Draft\'s workbenches clone calculates and sets the numerical values of the current placement and orientation of the cloned objects with respect to the cloned object container. @@ -34,4 +36,7 @@ - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Clone diff --git a/wiki/PartDesign_CompPrimitiveAdditive.md b/wiki/PartDesign_CompPrimitiveAdditive.md index e60c95c457..00b0a339fc 100644 --- a/wiki/PartDesign_CompPrimitiveAdditive.md +++ b/wiki/PartDesign_CompPrimitiveAdditive.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign CompPrimitiveAdditive + ## Description Creates an additive primitive in the active Body as the first feature, or fuses it to the existing feature(s). If no Body is found in the document, one will be automatically created. @@ -25,4 +27,7 @@ Creates an additive primitive in the active Body as the first feature, or fuses - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveAdditive diff --git a/wiki/PartDesign_CompPrimitiveSubtractive.md b/wiki/PartDesign_CompPrimitiveSubtractive.md index c9f6356d04..550edcfd0f 100644 --- a/wiki/PartDesign_CompPrimitiveSubtractive.md +++ b/wiki/PartDesign_CompPrimitiveSubtractive.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign CompPrimitiveSubtractive + ## Description Creates a subtractive primitive in the active Body, subtracting its shape from the existing solid. @@ -25,4 +27,7 @@ Creates a subtractive primitive in the active Body, subtracting its shape from t - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveSubtractive diff --git a/wiki/PartDesign_CoordinateSystem.md b/wiki/PartDesign_CoordinateSystem.md index c57692bd64..f4d3452c38 100644 --- a/wiki/PartDesign_CoordinateSystem.md +++ b/wiki/PartDesign_CoordinateSystem.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Datum point](PartDesign_Point.md), [PartDesign Datum line](PartDesign_Line.md), [PartDesign Datum plane](PartDesign_Plane.md) --- +# PartDesign CoordinateSystem + ## Description Creates a **local coordinate system** which can be used as reference for other datum geometry. It also helps identify the orientation of the referenced datum geometry in 3D space. @@ -54,4 +56,7 @@ lcs = App.activeDocument().addObject( 'PartDesign::CoordinateSystem', 'LCS' ) - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CoordinateSystem diff --git a/wiki/PartDesign_Draft.md b/wiki/PartDesign_Draft.md index 466b391bc5..b0345c34c3 100644 --- a/wiki/PartDesign_Draft.md +++ b/wiki/PartDesign_Draft.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign Draft + ### Description This tool creates angular draft on the selected faces of an object. A new separate Draft entry (followed by a sequential number if there are already existing drafts in the document) is created in the Project tree. @@ -47,4 +49,7 @@ This tool creates angular draft on the selected faces of an object. A new separa - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Draft diff --git a/wiki/PartDesign_Feature.md b/wiki/PartDesign_Feature.md index 5617ebcc98..86b018a148 100644 --- a/wiki/PartDesign_Feature.md +++ b/wiki/PartDesign_Feature.md @@ -1,6 +1,4 @@ # PartDesign Feature - - ## Introduction A [PartDesign Feature](PartDesign_Feature.md) refers to a \"step\" in the modelling process that happens inside of a [PartDesign Body](PartDesign_Body.md). For example, each time you add a solid box with [PartDesign AdditiveBox](PartDesign_AdditiveBox.md), you add a feature; when you add a chamfer to an edge with [PartDesign Chamfer](PartDesign_Chamfer.md), you add another feature; when you cut a hole using a [sketch](Sketch.md) and [PartDesign Pocket](PartDesign_Pocket.md), you add another feature. @@ -78,4 +76,7 @@ obj.addObject(feature2) App.ActiveDocument.recompute() ``` - {{PartDesign Tools navi}} {{Document objects navi}} + {{PartDesign Tools navi}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Feature diff --git a/wiki/PartDesign_Fillet.md b/wiki/PartDesign_Fillet.md index 5909f81111..c365b7f1fc 100644 --- a/wiki/PartDesign_Fillet.md +++ b/wiki/PartDesign_Fillet.md @@ -6,6 +6,8 @@ SeeAlso:[PartDesign Chamfer](PartDesign_Chamfer.md), [Part Fillet](Part_Fillet.md) --- +# PartDesign Fillet + ## Description This tool creates fillets (rounds) on the selected edges of an object. A new separate Fillet entry (followed by a sequential number if there are already existing fillets in the document) is created in the project tree. @@ -95,4 +97,7 @@ Part.show(Box) - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Fillet diff --git a/wiki/PartDesign_Groove.md b/wiki/PartDesign_Groove.md index 80113f4544..a8c26eb663 100644 --- a/wiki/PartDesign_Groove.md +++ b/wiki/PartDesign_Groove.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign Groove + ## Description The **Groove** tool revolves a selected sketch or profile about a given axis, cutting out material from the support . @@ -70,4 +72,7 @@ Below are properties which can be defined after creation of the feature. Data pr - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Groove diff --git a/wiki/PartDesign_Hole.md b/wiki/PartDesign_Hole.md index c6ece654c3..414e909f8a 100644 --- a/wiki/PartDesign_Hole.md +++ b/wiki/PartDesign_Hole.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Pocket](PartDesign_Pocket.md) --- +# PartDesign Hole + ## Description The **Hole** feature creates one or more holes from a selected sketch\'s circles and arcs. If arcs are present they must be part of closed contours. All non arc/circle entities are ignored but they still must form closed contours. Many parameters can be set such as threading and size, fit, hole type (countersink, counterbore, straight) and more. @@ -104,4 +106,7 @@ Example: {{Code|lang=json|code= - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Hole diff --git a/wiki/PartDesign_InvoluteGear.md b/wiki/PartDesign_InvoluteGear.md index 37feef5163..3bef5e94c4 100644 --- a/wiki/PartDesign_InvoluteGear.md +++ b/wiki/PartDesign_InvoluteGear.md @@ -6,6 +6,8 @@ SeeAlso:[FCGear Workbench](FCGear_Workbench.md) --- +# PartDesign InvoluteGear + ## Description This tool allows you to create a 2D profile of an involute gear. This 2D profile is fully parametric, and can be padded with the [PartDesign Pad](PartDesign_Pad.md) feature. @@ -39,4 +41,7 @@ For more detailed information see Wikipedia\'s entries for: [Gear](https://en.wi - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign InvoluteGear diff --git a/wiki/PartDesign_Legacy.md b/wiki/PartDesign_Legacy.md index 30d5cc83fb..ddc6a5ac23 100644 --- a/wiki/PartDesign_Legacy.md +++ b/wiki/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy 1. REDIRECT [PartDesign\_Workbench](PartDesign_Workbench.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy diff --git a/wiki/PartDesign_Line.md b/wiki/PartDesign_Line.md index 3dcd066d1d..5de1bb676f 100644 --- a/wiki/PartDesign_Line.md +++ b/wiki/PartDesign_Line.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Point](PartDesign_Point.md), [PartDesign Plane](PartDesign_Plane.md) --- +# PartDesign Line + ## Description Creates a **datum line** which can be used as reference for sketches, other datum geometry or features. For example it can be used as revolution axis for Revolution and Groove features. @@ -39,4 +41,7 @@ Double-click the DatumLine label in the Model tree or right-click and select **E - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Line diff --git a/wiki/PartDesign_LinearPattern.md b/wiki/PartDesign_LinearPattern.md index 0195164e1f..ad04e8ba6c 100644 --- a/wiki/PartDesign_LinearPattern.md +++ b/wiki/PartDesign_LinearPattern.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign LinearPattern + ## Description The ** '''LinearPattern'''** tool creates evenly spaced copies of a feature in a linear direction. As of (v0.17) the Linear pattern tool can pattern multiple features. @@ -83,4 +85,7 @@ Select one of the Body Origin\'s standard axis (X, Y or Z) as direction. - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign LinearPattern diff --git a/wiki/PartDesign_Migrate.md b/wiki/PartDesign_Migrate.md index 3929ebc15a..e654464604 100644 --- a/wiki/PartDesign_Migrate.md +++ b/wiki/PartDesign_Migrate.md @@ -6,6 +6,8 @@ Version:0.17 --- +# PartDesign Migrate + ## Description The PartDesign workbench in FreeCAD v0.17 introduces new tools and elements that are not recognized by older FreeCAD versions (0.16 and older). FreeCAD documents created in older versions can still be opened and edited. To benefit from the new features, they must be migrated via the menu PartDesign → Migrate. @@ -29,4 +31,7 @@ The PartDesign workbench in FreeCAD v0.17 introduces new tools and elements that - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Migrate diff --git a/wiki/PartDesign_Mirrored.md b/wiki/PartDesign_Mirrored.md index 04596dd9f6..15dea9b573 100644 --- a/wiki/PartDesign_Mirrored.md +++ b/wiki/PartDesign_Mirrored.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign Mirrored + ## Description The **Mirrored** tool mirrors features on a plane. @@ -77,4 +79,7 @@ The mirror result can be previewed in real time before clicking - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Mirrored diff --git a/wiki/PartDesign_MoveFeature.md b/wiki/PartDesign_MoveFeature.md index 7ea627cfac..38dcca2b3b 100644 --- a/wiki/PartDesign_MoveFeature.md +++ b/wiki/PartDesign_MoveFeature.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Set tip](PartDesign_MoveTip.md), [PartDesign Move object after other object](PartDesign_MoveFeatureInTree.md) --- +# PartDesign MoveFeature + ## Description [Move object to other body](PartDesign_MoveFeature.md), as this command is labeled in the context menu, allows moving objects under a Body to another Body. The moved object is placed right below the other Body\'s tip. Sketches, datum geometry and features are supported. @@ -21,4 +23,7 @@ - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeature diff --git a/wiki/PartDesign_MoveFeatureInTree.md b/wiki/PartDesign_MoveFeatureInTree.md index b2e02d0ce5..b6080087e3 100644 --- a/wiki/PartDesign_MoveFeatureInTree.md +++ b/wiki/PartDesign_MoveFeatureInTree.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Set tip](PartDesign_MoveTip.md), [PartDesign Move object to other body](PartDesign_MoveFeature.md) --- +# PartDesign MoveFeatureInTree + ## Description [Move object after other object](PartDesign_MoveFeatureInTree.md), as this command is labeled in the context menu, allows reordering of objects under a Body. Sketches, datum geometry and features are supported. @@ -27,4 +29,7 @@ The following three pictures show the same model with a pocket defined on a sket - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeatureInTree diff --git a/wiki/PartDesign_MoveTip.md b/wiki/PartDesign_MoveTip.md index cff6842317..73e1374a6a 100644 --- a/wiki/PartDesign_MoveTip.md +++ b/wiki/PartDesign_MoveTip.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Move object to other body](PartDesign_MoveFeature.md), [PartDesign Move object after other object](PartDesign_MoveFeatureInTree.md) --- +# PartDesign MoveTip + ## Description [Set tip](PartDesign_MoveTip.md), as this command is labeled in the context menu, redefines the tip, which is the feature exposed outside of the Body. By default, the tip is the last feature added to the Body; but sometimes it can be useful to temporarily set the tip to a feature earlier in the tree. This may be done to add a sketch, datum geometry or a feature which in retrospect should have been created earlier in the Body\'s history. @@ -26,4 +28,7 @@ The tip is visually distinguished in the Model tree by a small white down arrow - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveTip diff --git a/wiki/PartDesign_MultiTransform.md b/wiki/PartDesign_MultiTransform.md index ac05ffaa86..0f35d71610 100644 --- a/wiki/PartDesign_MultiTransform.md +++ b/wiki/PartDesign_MultiTransform.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign MultiTransform + ## Description \'Make a pattern from combinations of transformations\' - The **![](images/)_[MultiTransform](PartDesign_MultiTransform.md)** tool takes one (or a set of) part \'features\' as its input, and allows the user to apply multiple transformations to that feature (or set of features) progressively, in sequence - creating a combined or compound transformation. @@ -144,4 +146,7 @@ When initiated and completed in this way, the **![](images/)_[MultiTransform](P - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MultiTransform diff --git a/wiki/PartDesign_NewSketch.md b/wiki/PartDesign_NewSketch.md index 29b3fc9138..ca833ce827 100644 --- a/wiki/PartDesign_NewSketch.md +++ b/wiki/PartDesign_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher NewSketch](Sketcher_NewSketch.md) --- +# PartDesign NewSketch + ## Description This tool creates a new sketch, creates a new [PartDesign Body](PartDesign_Body.md) to contain the sketch if one does not exist and automatically opens the [Sketcher workbench](Sketcher_Workbench.md) after creation. @@ -56,4 +58,7 @@ To reference any items in the [PartDesign Pad](PartDesign_Pad.md)** tool extrudes a sketch into a solid in a direction normal to the sketch plane. As of (v0.17) faces on the solid can also be used. @@ -116,4 +118,7 @@ Reverses the direction of the pad. - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pad diff --git a/wiki/PartDesign_Plane.md b/wiki/PartDesign_Plane.md index e58f99c3c2..b9681a6dac 100644 --- a/wiki/PartDesign_Plane.md +++ b/wiki/PartDesign_Plane.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Point](PartDesign_Point.md), [PartDesign Line](PartDesign_Line.md) --- +# PartDesign Plane + ## Description Creates a **datum plane** which can be used as reference for sketches or other datum geometry. Sketches can be attached to datum planes. @@ -45,4 +47,7 @@ Double-click the DatumPlane label in the Model tree or right-click and select ** - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Plane diff --git a/wiki/PartDesign_Pocket.md b/wiki/PartDesign_Pocket.md index e7dfa3e05d..d6fdb8f1dd 100644 --- a/wiki/PartDesign_Pocket.md +++ b/wiki/PartDesign_Pocket.md @@ -6,6 +6,8 @@ SeeAlso:[PartDesign Pad](PartDesign_Pad.md) --- +# PartDesign Pocket + ## Description The **Pocket** tool cuts out a solid by extruding a sketch (or a face of the solid) in a straight path and subtracting it from the solid. @@ -59,4 +61,7 @@ An [example](http://forum.freecadweb.org/viewtopic.php?f=3&t=3733&start=10) with - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pocket diff --git a/wiki/PartDesign_Point.md b/wiki/PartDesign_Point.md index a79dd44518..9fd1c9d41c 100644 --- a/wiki/PartDesign_Point.md +++ b/wiki/PartDesign_Point.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Line](PartDesign_Line.md), [PartDesign Plane](PartDesign_Plane.md) --- +# PartDesign Point + ## Description Creates a **datum point** which can be used as reference for sketches or other datum geometry. @@ -42,4 +44,7 @@ Double-click the DatumPoint label in the Model tree or right-click and select ** - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Point diff --git a/wiki/PartDesign_PolarPattern.md b/wiki/PartDesign_PolarPattern.md index 7ad3da0956..4225033cce 100644 --- a/wiki/PartDesign_PolarPattern.md +++ b/wiki/PartDesign_PolarPattern.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign PolarPattern + ## Description The **polar pattern** tool takes a selected feature and creates a set of copies rotated around a chosen axis. Starting with v0.17, it can pattern multiple features. @@ -125,4 +127,7 @@ Specifies the angle to be covered by the pattern, and the total number of patter - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign PolarPattern diff --git a/wiki/PartDesign_Preferences.md b/wiki/PartDesign_Preferences.md index 678f2059af..1594f9b93e 100644 --- a/wiki/PartDesign_Preferences.md +++ b/wiki/PartDesign_Preferences.md @@ -1,11 +1,4 @@ # PartDesign Preferences - - - - - - - ## Introduction The [PartDesign Workbench](PartDesign_Workbench.md) and the [Part Workbench](Part_Workbench.md) use the same preferences. They can be found in the **Part design** section of the [Preferences editor](Preferences_Editor.md). This section will only be available if one of the workbenches has been loaded in the current FreeCAD session. @@ -112,3 +105,6 @@ Right click on **Mesh deviation** choose in the context menu **Change value**. S {{PartDesign Tools navi}} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Preferences diff --git a/wiki/PartDesign_Revolution.md b/wiki/PartDesign_Revolution.md index 44e7f0a1c2..9702cdc233 100644 --- a/wiki/PartDesign_Revolution.md +++ b/wiki/PartDesign_Revolution.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign Revolution + ## Description The **Revolution** tool creates a solid by revolving a selected sketch or 2D object about a given axis. @@ -72,4 +74,7 @@ A [detailed example of use](http://forum.freecadweb.org/viewtopic.php?f=3&t=3674 - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Revolution diff --git a/wiki/PartDesign_Scaled.md b/wiki/PartDesign_Scaled.md index 800442c92d..d8d8bbbdb5 100644 --- a/wiki/PartDesign_Scaled.md +++ b/wiki/PartDesign_Scaled.md @@ -1,5 +1,5 @@ # PartDesign Scaled - {{GuiCommand +{{GuiCommand |Name=PartDesign Scaled |Workbenches=[PartDesign](PartDesign_Workbench.md), Complete |MenuLocation=PartDesign → MultiTransform @@ -40,6 +40,7 @@ Starting from FreeCAD 0.15, this operation is not available directly, but was in ![c\|center\|800px](images/mt_example2.png ) The smallest pad was first patterned three times in X direction and then scaled to factor two (so the three occurrences have scaling factor 1.0, 1.5 and 2.0). Then a polar pattern was applied with 8 occurrences. -Since the scaling is done with respect to the center of gravity, in the case of a pad, it is necessary that the pad penetrate also in the main body, otherwise the scaled objects are floating, detached from the body. To have a pad that intersects the main body can be used \"two dimensions\" type or \"simmetric to plane\" option. - +Since the scaling is done with respect to the center of gravity, in the case of a pad, it is necessary that the pad penetrate also in the main body, otherwise the scaled objects are floating, detached from the body. To have a pad that intersects the main body can be used \"two dimensions\" type or \"simmetric to plane\" option. +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Scaled diff --git a/wiki/PartDesign_ShapeBinder.md b/wiki/PartDesign_ShapeBinder.md index ae8c92b76a..f6eb4bd1d9 100644 --- a/wiki/PartDesign_ShapeBinder.md +++ b/wiki/PartDesign_ShapeBinder.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign SubShapeBinder](PartDesign_SubShapeBinder.md), [PartDesign Clone](PartDesign_Clone.md) --- +# PartDesign ShapeBinder + ## Description Creates a datum **shape binder** inside the active Body. A shape binder is a reference object that links to edges or faces from another Body. It also can be used to link a sketch from one body to another body. The shape binder object displays as translucent yellow in the [3D view](3D_view.md). @@ -105,4 +107,7 @@ There is a workaround for multiple selection: If you select all the elements you - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign ShapeBinder diff --git a/wiki/PartDesign_Sprocket.md b/wiki/PartDesign_Sprocket.md index 6de746813e..3f0c83d37a 100644 --- a/wiki/PartDesign_Sprocket.md +++ b/wiki/PartDesign_Sprocket.md @@ -6,6 +6,8 @@ Version:0.19 --- +# PartDesign Sprocket + ## Description This tool allows you to create a 2D profile of a sprocket (or chainwheel). It can be padded with the [PartDesign Pad](PartDesign_Pad.md) feature. @@ -32,4 +34,7 @@ This tool allows you to create a 2D profile of a sprocket (or chainwheel). It ca - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Sprocket diff --git a/wiki/PartDesign_SubShapeBinder.md b/wiki/PartDesign_SubShapeBinder.md index 31208c4ad8..547565d831 100644 --- a/wiki/PartDesign_SubShapeBinder.md +++ b/wiki/PartDesign_SubShapeBinder.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign ShapeBinder](PartDesign_ShapeBinder.md), [PartDesign Clone](PartDesign_Clone.md) --- +# PartDesign SubShapeBinder + ## Description A [PartDesign\_SubShapeBinder](PartDesign_SubShapeBinder.md) imports an element from another Body into the active [Body](PartDesign_Body.md). It can take the [Shape](Shape.md) of, or be \"bound\" to one or multiple objects or subelements (edges or faces) from another object. @@ -76,4 +78,7 @@ See [Part Feature](Part_Feature.md). - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubShapeBinder diff --git a/wiki/PartDesign_SubtractiveBox.md b/wiki/PartDesign_SubtractiveBox.md index 00b41489c3..18baa66b8a 100644 --- a/wiki/PartDesign_SubtractiveBox.md +++ b/wiki/PartDesign_SubtractiveBox.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveBox + ## Description Inserts a subtractive box in the active Body. Its shape is subtracted from the existing solid. @@ -42,4 +44,7 @@ The Box can be edited after its creation in two ways: - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveBox diff --git a/wiki/PartDesign_SubtractiveCone.md b/wiki/PartDesign_SubtractiveCone.md index 4373bc165f..3a5e991e58 100644 --- a/wiki/PartDesign_SubtractiveCone.md +++ b/wiki/PartDesign_SubtractiveCone.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [PartDesign Additive Cone](PartDesign_AdditiveCone.md) --- +# PartDesign SubtractiveCone + ## Description Inserts a subtractive cone in the active Body. Its shape is subtracted from the existing solid. @@ -46,4 +48,7 @@ The Cone can be edited after its creation in two ways: - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCone diff --git a/wiki/PartDesign_SubtractiveCylinder.md b/wiki/PartDesign_SubtractiveCylinder.md index c70e9c22d5..f35e0c534a 100644 --- a/wiki/PartDesign_SubtractiveCylinder.md +++ b/wiki/PartDesign_SubtractiveCylinder.md @@ -7,6 +7,8 @@ SeeAlso:[Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [Additive Cylinder](PartDesign_AdditiveCylinder.md) --- +# PartDesign SubtractiveCylinder + ## Description Inserts a subtractive cylinder in the active Body. Its shape is subtracted from the existing solid. @@ -50,4 +52,7 @@ The Cylinder can be edited after its creation in two ways: - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCylinder diff --git a/wiki/PartDesign_SubtractiveEllipsoid.md b/wiki/PartDesign_SubtractiveEllipsoid.md index 157c471cf5..1358684911 100644 --- a/wiki/PartDesign_SubtractiveEllipsoid.md +++ b/wiki/PartDesign_SubtractiveEllipsoid.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveEllipsoid + ## Description Inserts a subtractive ellipsoid in the active Body. Its shape is subtracted from the existing solid. @@ -50,4 +52,7 @@ The Ellipsoid can be edited after its creation in two ways: - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveEllipsoid diff --git a/wiki/PartDesign_SubtractiveHelix.md b/wiki/PartDesign_SubtractiveHelix.md index e862f61c10..cf3fb8e0b6 100644 --- a/wiki/PartDesign_SubtractiveHelix.md +++ b/wiki/PartDesign_SubtractiveHelix.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign AdditiveHelix](PartDesign_AdditiveHelix.md) --- +# PartDesign SubtractiveHelix + ## Description The **SubtractiveHelix** tool modifies a solid by sweeping a selected sketch or 2D object along a helix path cutting away the material. @@ -119,4 +121,7 @@ If checked, the helix will be shown in the view, and updated automatically on ev - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveHelix diff --git a/wiki/PartDesign_SubtractiveLoft.md b/wiki/PartDesign_SubtractiveLoft.md index bb166c1e49..f10023c4d2 100644 --- a/wiki/PartDesign_SubtractiveLoft.md +++ b/wiki/PartDesign_SubtractiveLoft.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Additive loft](PartDesign_AdditiveLoft.md), [PartDesign Subtractive pipe](PartDesign_SubtractivePipe.md) --- +# PartDesign SubtractiveLoft + ## Description **Subtractive Loft** creates a subtractive solid in the active Body by making a transition between two or more sketches (also referred to as cross-sections). Its shape is then subtracted from the existing solid. @@ -68,4 +70,7 @@ - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveLoft diff --git a/wiki/PartDesign_SubtractivePipe.md b/wiki/PartDesign_SubtractivePipe.md index 2cf32b75f7..68840ed4bc 100644 --- a/wiki/PartDesign_SubtractivePipe.md +++ b/wiki/PartDesign_SubtractivePipe.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Additive pipe](PartDesign_AdditivePipe.md), [PartDesign Subtractive loft](PartDesign_SubtractiveLoft.md) --- +# PartDesign SubtractivePipe + ## Description **Subtractive Pipe** creates a subtractive solid in the active Body by sweeping one or more sketches (also referred to as cross-sections) along an open or closed path. Its shape is then subtracted from the existing solid. SubtractivePipe is often used in connection with [Part Helix](Part_Helix.md) and [PartDesign ShapeBinder](PartDesign_ShapeBinder.md) to create a thread; see the [Thread for Screw Tutorial](Thread_for_Screw_Tutorial.md) for details. @@ -83,4 +85,7 @@ - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePipe diff --git a/wiki/PartDesign_SubtractivePrism.md b/wiki/PartDesign_SubtractivePrism.md index e838281279..e221fb39f3 100644 --- a/wiki/PartDesign_SubtractivePrism.md +++ b/wiki/PartDesign_SubtractivePrism.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [PartDesign Additive Prism](PartDesign_AdditivePrism.md) --- +# PartDesign SubtractivePrism + ## Description Inserts a subtractive prism in the active Body. Its shape is subtracted from the existing solid. @@ -50,4 +52,7 @@ The Prism can be edited after its creation in two ways: - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePrism diff --git a/wiki/PartDesign_SubtractiveSphere.md b/wiki/PartDesign_SubtractiveSphere.md index b2fa40a8ce..be15021fc0 100644 --- a/wiki/PartDesign_SubtractiveSphere.md +++ b/wiki/PartDesign_SubtractiveSphere.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveSphere + ## Description Inserts a subtractive sphere in the active Body. Its shape is subtracted from the existing solid. @@ -44,4 +46,7 @@ The Sphere can be edited after its creation in two ways: - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveSphere diff --git a/wiki/PartDesign_SubtractiveTorus.md b/wiki/PartDesign_SubtractiveTorus.md index b9baa1cb80..7b38ba1714 100644 --- a/wiki/PartDesign_SubtractiveTorus.md +++ b/wiki/PartDesign_SubtractiveTorus.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveTorus + ## Description Inserts a subtractive torus in the active Body. Its shape is subtracted from the existing solid. @@ -46,4 +48,7 @@ The Torus can be edited after its creation in two ways: - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveTorus diff --git a/wiki/PartDesign_SubtractiveWedge.md b/wiki/PartDesign_SubtractiveWedge.md index 0314ec92c7..86cabaa055 100644 --- a/wiki/PartDesign_SubtractiveWedge.md +++ b/wiki/PartDesign_SubtractiveWedge.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [PartDesign Additive Wedge](PartDesign_AdditiveWedge.md) --- +# PartDesign SubtractiveWedge + ## Description Inserts a subtractive wedge in the active Body. Its shape is subtracted from the existing solid. @@ -48,4 +50,7 @@ Wedges can be used to create pyramids by setting **X2 min/max** and **Z2 min/max - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveWedge diff --git a/wiki/PartDesign_Thickness.md b/wiki/PartDesign_Thickness.md index 6e8867e890..757bc34d9d 100644 --- a/wiki/PartDesign_Thickness.md +++ b/wiki/PartDesign_Thickness.md @@ -7,6 +7,8 @@ SeeAlso:[Part Thickness](Part_Thickness.md) --- +# PartDesign Thickness + ## Description The **Thickness** tool works on a solid Body and transforms it into a thick-walled hollow object with at least one open face, giving to each of its remaining faces a uniform thickness. On some solids it allows you to significantly speed up the work, and avoids making extrusions and pockets. @@ -74,4 +76,7 @@ Result: ![](images/Brga-spessore.png ) - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Thickness diff --git a/wiki/PartDesign_Updates.md b/wiki/PartDesign_Updates.md index 2788dd50f5..680619aeb9 100644 --- a/wiki/PartDesign_Updates.md +++ b/wiki/PartDesign_Updates.md @@ -41,3 +41,6 @@ Medium ### Additional Information [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Updates diff --git a/wiki/PartDesign_WizardShaft.md b/wiki/PartDesign_WizardShaft.md index 31c03ec707..a029f2ed59 100644 --- a/wiki/PartDesign_WizardShaft.md +++ b/wiki/PartDesign_WizardShaft.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign WizardShaft + ## Description This tool allows you to create a shaft from a table of values, and to analyse forces and moments. You can start the wizard from the Part Design menu **Part Design → Shaft design wizard...**. @@ -57,4 +59,7 @@ To add a new shaft segment, right-click into the empty space to the right of the - {{PartDesign Tools navi}} + {{PartDesign Tools navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign WizardShaft diff --git a/wiki/PartDesign_Workbench.md b/wiki/PartDesign_Workbench.md index 252edcd57f..ae737cdc31 100644 --- a/wiki/PartDesign_Workbench.md +++ b/wiki/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench - - -PartDesign workbench icon +# PartDesign workbench icon PartDesign Workbench @@ -198,3 +195,6 @@ Some additional functionality found in the Part Design menu: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench diff --git a/wiki/PartDesign_project.md b/wiki/PartDesign_project.md index 17fe709b25..63b35bb4fb 100644 --- a/wiki/PartDesign_project.md +++ b/wiki/PartDesign_project.md @@ -1,7 +1,4 @@ # PartDesign project - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -162,3 +159,6 @@ Rotate a Sketch along one of its Axis and a certain angle. **Done \[jrheinlaende [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign project diff --git a/wiki/PartDesign_tutorial.md b/wiki/PartDesign_tutorial.md index 8d66150320..bbb045ed73 100644 --- a/wiki/PartDesign_tutorial.md +++ b/wiki/PartDesign_tutorial.md @@ -1,5 +1,5 @@ # PartDesign tutorial - {{TutorialInfo +{{TutorialInfo |Topic= Sketcher |Level= Beginner |Time= 15 minutes @@ -106,4 +106,5 @@ If not, re-edit the MultiTransform operation by double clicking on it in the Tre We are now finished with the basic workflow for the [PartDesign Workbench](PartDesign_Workbench.md). - +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign tutorial diff --git a/wiki/Part_API.md b/wiki/Part_API.md index 1eb9820723..48e66e428b 100644 --- a/wiki/Part_API.md +++ b/wiki/Part_API.md @@ -1,5 +1,5 @@ # Part API - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** The Part module is the direct connection between FreeCAD and the OpenCasCade kernel. It provides mainly [TopoShapes](TopoShape_API.md) which is the main object type used by OpenCascade. The Part module also contains a variety of convenience functions to create and manipulate topoShapes. Example: ```python @@ -92,3 +92,6 @@ Part.show(mycube) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part API diff --git a/wiki/Part_Attachment.md b/wiki/Part_Attachment.md index 5dea40ea1a..dc79dbf4f7 100644 --- a/wiki/Part_Attachment.md +++ b/wiki/Part_Attachment.md @@ -1,2 +1,5 @@ # Part Attachment 1. REDIRECT [Part\_EditAttachment](Part_EditAttachment.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Attachment diff --git a/wiki/Part_Boolean.md b/wiki/Part_Boolean.md index 6d17851957..0dc43167b2 100644 --- a/wiki/Part_Boolean.md +++ b/wiki/Part_Boolean.md @@ -6,6 +6,8 @@ SeeAlso:[Part Cut](Part_Cut.md), [Part Fuse](Part_Fuse.md), [Part Common](Part_Common.md), [Part Section](Part_Section.md) --- +# Part Boolean + ## Description @@ -62,7 +64,5 @@ In cases of coplanarity, even if the first boolean operation succeeds, subsequen *Left: shapes that share a face, a boolean union may produce incorrect results. Right: shapes that intersect each other clearly, the boolean union will be successful in most cases.* - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Boolean diff --git a/wiki/Part_BooleanFragments.md b/wiki/Part_BooleanFragments.md index 563511c7f4..dc7fea56f6 100644 --- a/wiki/Part_BooleanFragments.md +++ b/wiki/Part_BooleanFragments.md @@ -7,6 +7,8 @@ SeeAlso:[Part Slice](Part_Slice.md), [Part XOR](Part_XOR.md), [Part Join features](Part_CompJoinFeatures.md), [Part Boolean](Part_Boolean.md) --- +# Part BooleanFragments + ## Description Tool to compute all fragments that can result from applying Boolean operations between input shapes. For example, for two intersecting spheres, three non-overlapping but touching solids are generated. @@ -84,7 +86,5 @@ The tool itself is implemented in Python, see /Mod/Part/BOPTools/SplitFeatures.p The tool was introduced in FreeCAD v0.17.8053. FreeCAD needs to be compiled with OCC 6.9.0 or later; otherwise, the tool is unavailable. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part BooleanFragments diff --git a/wiki/Part_Booleans.md b/wiki/Part_Booleans.md index 101cdafc51..bdd36f4c22 100644 --- a/wiki/Part_Booleans.md +++ b/wiki/Part_Booleans.md @@ -1,2 +1,5 @@ # Part Booleans 1. REDIRECT [Part\_Boolean](Part_Boolean.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Booleans diff --git a/wiki/Part_Box.md b/wiki/Part_Box.md index 0f36f5c747..4a4a4bb064 100644 --- a/wiki/Part_Box.md +++ b/wiki/Part_Box.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Box + ## Description The Box command from the [Part Workbench](Part_Workbench.md) inserts a parametric, [rectangular cuboid](http://en.wikipedia.org/wiki/Cuboid#Rectangular_cuboid), geometric primitive into the active document. By default, the Box command will insert a 10x10x10 mm cube, positioned at the origin, with the label \"cube\". These parameters may be modified after the object has been added. @@ -65,7 +67,5 @@ You can change its placement with: FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6, 3), FreeCAD.Rotation(30, 45, 10)) ``` - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Box diff --git a/wiki/Part_BoxSelection.md b/wiki/Part_BoxSelection.md index de57fdc58c..8a62e17a3e 100644 --- a/wiki/Part_BoxSelection.md +++ b/wiki/Part_BoxSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std BoxSelection](Std_BoxSelection.md), [Std BoxElementSelection](Std_BoxElementSelection.md), [Std SelectAll](Std_SelectAll.md) --- +# Part BoxSelection + ## Description The ** [Part BoxSelection](Part_BoxSelection.md)** tool allows you to select the faces of the objects on the screen that are touched by the rectangular selection. @@ -26,7 +28,5 @@ The ** [Part BoxSelection](Pa ## Scripting - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part BoxSelection diff --git a/wiki/Part_Builder.md b/wiki/Part_Builder.md index 56b789c6a5..9a79d2e03c 100644 --- a/wiki/Part_Builder.md +++ b/wiki/Part_Builder.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Builder + ## Description A tool to create more complex shapes from various parametric geometric primitives. @@ -69,7 +71,5 @@ A possible workflow could be: - Create a \"shell from faces\" - Create a \"solid from shell\" - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Builder diff --git a/wiki/Part_Chamfer.md b/wiki/Part_Chamfer.md index 1bfa6fbc02..a0926d41fe 100644 --- a/wiki/Part_Chamfer.md +++ b/wiki/Part_Chamfer.md @@ -6,6 +6,8 @@ SeeAlso:[Part Fillet](Part_Fillet.md) --- +# Part Chamfer + ## Description Chamfers the selected edge(s) of an object. A dialog allows you to choose which edge(s) to work on as well as modify various chamfer parameters. @@ -153,7 +155,5 @@ FreeCAD.ActiveDocument.recompute() - Recomputes all altered components on the screen and refreshes the display. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Chamfer diff --git a/wiki/Part_CheckGeometry.md b/wiki/Part_CheckGeometry.md index ad5fa9e211..219af7aed7 100644 --- a/wiki/Part_CheckGeometry.md +++ b/wiki/Part_CheckGeometry.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part CheckGeometry + ## Description The ** [Part CheckGeometry](Part_CheckGeometry.md)** tool runs a verification and reports if geometry is a valid solid. The tool checks if the [Boundary representation](https://en.wikipedia.org/wiki/Boundary_representation) (BRep or [B-rep](Glossary#B.md)) of the model is valid. @@ -33,9 +35,7 @@ If ticked, additionally a Boolean OPerations (BOP) check is performed. (v ### Log errors -If ticked, any errors found are also logged in the [report view](Report_view.md). (v0.19) - - +If ticked, any errors found are also logged in the [report view](Report_view.md). (v0.19) - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CheckGeometry diff --git a/wiki/Part_Circle.md b/wiki/Part_Circle.md index 8bfa614441..924b4c5c40 100644 --- a/wiki/Part_Circle.md +++ b/wiki/Part_Circle.md @@ -6,6 +6,8 @@ SeeAlso: --- +# Part Circle + ## Description This command will create a circular curved edge. With the default values, the circular curved edge will be closed and therefore will be a circle. If the properties Angle 0 or Angle 1 are changed from their default values (0 and 360) the edge will be an open curve, an arc. @@ -29,7 +31,5 @@ A Circle geometric primitive is available from the Create Primitives dialogue in - {{Parameter|Angle 1}}: end of the curved edge, (degrees anti-clockwise), the default value is 360 - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Circle diff --git a/wiki/Part_Common.md b/wiki/Part_Common.md index 3d9fb0f41f..02100ff056 100644 --- a/wiki/Part_Common.md +++ b/wiki/Part_Common.md @@ -6,6 +6,8 @@ SeeAlso:[Part Boolean](Part_Boolean.md), [Part Cut](Part_Cut.md), [Part Fuse](Part_Fuse.md) --- +# Part Common + ## Description Extracts the common part (intersection) between selected Part objects. This operation is fully parametric and the components can be modified and the result recomputed. @@ -19,7 +21,5 @@ Extracts the common part (intersection) between selected Part objects. This oper Input objects must be [OpenCascade](OpenCascade.md) shapes. Examples: stuff made with Part, PartDesign, Sketcher workbenches. Not meshes (unless those were converted to shapes) - for meshes, there are specific Boolean tools in MeshDesign workbench. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Common diff --git a/wiki/Part_CompCompoundTools.md b/wiki/Part_CompCompoundTools.md index d804d787bd..1312589b35 100644 --- a/wiki/Part_CompCompoundTools.md +++ b/wiki/Part_CompCompoundTools.md @@ -6,6 +6,8 @@ SeeAlso: --- +# Part CompCompoundTools + ## Description A set of various Compound tools. @@ -16,7 +18,5 @@ A set of various Compound tools. - [Explode Compound](Part_ExplodeCompound.md): Tool to split up compounds of shapes - [Compound Filter](Part_Compound‏‎Filter.md): The CompoundFilter can be used to extract the individual pieces. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompCompoundTools diff --git a/wiki/Part_CompJoinFeatures.md b/wiki/Part_CompJoinFeatures.md index d7582ce3be..f5b183a69b 100644 --- a/wiki/Part_CompJoinFeatures.md +++ b/wiki/Part_CompJoinFeatures.md @@ -7,6 +7,8 @@ SeeAlso:[Part JoinConnect](Part_JoinConnect.md), [Part JoinEmbed](Part_JoinEmbed.md), [Part JoinCutout](Part_JoinCutout.md), [Part Boolean](Part_Boolean.md), [Part Thickness](Part_Thickness.md) --- +# Part CompJoinFeatures + ## Description This command is a dropdown toolbar button containing all the Join tools. See individual tool pages for more info. @@ -22,7 +24,5 @@ This command is a dropdown toolbar button containing all the Join tools. See ind *Above: showing the result of each tool available* - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompJoinFeatures diff --git a/wiki/Part_CompOffsetTools.md b/wiki/Part_CompOffsetTools.md index bd64989b3a..54bb4663c1 100644 --- a/wiki/Part_CompOffsetTools.md +++ b/wiki/Part_CompOffsetTools.md @@ -6,6 +6,8 @@ SeeAlso: --- +# Part CompOffsetTools + ## Description A set of Offset tools @@ -15,7 +17,5 @@ A set of Offset tools - [3D Offset](Part_Offset.md): Constructs a parallel shape at a certain distance from original. - [2D Offset](Part_Offset2D.md): Constructs a parallel wire at certain distance from original, or enlarges/shrinks a planar face. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompOffsetTools diff --git a/wiki/Part_CompSplittingTools.md b/wiki/Part_CompSplittingTools.md index 269d2ac903..6a00ae271e 100644 --- a/wiki/Part_CompSplittingTools.md +++ b/wiki/Part_CompSplittingTools.md @@ -6,6 +6,8 @@ SeeAlso: --- +# Part CompSplittingTools + ## Description A collection of splitting tools. @@ -17,7 +19,5 @@ A collection of splitting tools. - [Slice](Part_Slice.md): Splits an object into pieces by intersections with another object. - [XOR](Part_XOR.md): removes space shared by even number of objects (symmetric version of [Cut](Part_Cut.md)). - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompSplittingTools diff --git a/wiki/Part_Compound.md b/wiki/Part_Compound.md index 6370178eb7..36a516e667 100644 --- a/wiki/Part_Compound.md +++ b/wiki/Part_Compound.md @@ -7,6 +7,8 @@ SeeAlso:[Part Fuse](Part_Fuse.md), [Part CompoundFilter](Part_CompoundFilter.md), [Part ExplodeCompound](Part_ExplodeCompound.md) --- +# Part Compound + ## Description This command creates a compound of any kind of topological shapes. These can be solids or meshes or any other kind of topological shapes. @@ -24,7 +26,5 @@ A compound containing pieces that intersect or touch is **invalid** for Boolean To turn this check on go to **Tools → Edit Parameters → Preferences... → Mod → Part → CheckGeometry → RunBOPCheck** and set the parameter to `true`. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Compound diff --git a/wiki/Part_CompoundFilter.md b/wiki/Part_CompoundFilter.md index e51b1b9992..37421fe7f1 100644 --- a/wiki/Part_CompoundFilter.md +++ b/wiki/Part_CompoundFilter.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Part CompoundFilter + ![](images/CompoundFilter.png ) ## Description @@ -66,7 +68,5 @@ If there is only one child in the result, the output is the child. If there is m - **items**: List or range of elements to be selected if Filter Type is \"specific items\". - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompoundFilter diff --git a/wiki/Part_Cone.md b/wiki/Part_Cone.md index 37229163d5..c823b8b73e 100644 --- a/wiki/Part_Cone.md +++ b/wiki/Part_Cone.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Cone + ## Description A parametric truncated Part Cone primitive is available in the Part workbench from the Part tool bar, Part menu (primitives sub-menu) and the Create Primitives dialogue. @@ -34,7 +36,5 @@ The cone properties can later be edited, either in the [Property editor](Propert - **Angle**: Number of degrees of the arc or circles defining the upper and lower faces of the truncated cone. The default 360° creates circular faces, a lower value will create a portion of a cone as defined by upper and lower faces each with edges defined by an arc of the number of degrees and two radii. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cone diff --git a/wiki/Part_ConvertToSolid.md b/wiki/Part_ConvertToSolid.md index 8ad56c1a3c..117b3d08c6 100644 --- a/wiki/Part_ConvertToSolid.md +++ b/wiki/Part_ConvertToSolid.md @@ -1,2 +1,5 @@ # Part ConvertToSolid 1. REDIRECT [Part\_MakeSolid](Part_MakeSolid.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ConvertToSolid diff --git a/wiki/Part_CreatePrimitives.md b/wiki/Part_CreatePrimitives.md index 080fad8082..6a61e2e70c 100644 --- a/wiki/Part_CreatePrimitives.md +++ b/wiki/Part_CreatePrimitives.md @@ -1,2 +1,5 @@ # Part CreatePrimitives 1. REDIRECT [Part\_Primitives](Part_Primitives.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CreatePrimitives diff --git a/wiki/Part_CreateSimpleCopy.md b/wiki/Part_CreateSimpleCopy.md index fb14a5cca5..a9d8834314 100644 --- a/wiki/Part_CreateSimpleCopy.md +++ b/wiki/Part_CreateSimpleCopy.md @@ -1,2 +1,5 @@ # Part CreateSimpleCopy 1. REDIRECT [Part SimpleCopy](Part_SimpleCopy.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CreateSimpleCopy diff --git a/wiki/Part_CrossSections.md b/wiki/Part_CrossSections.md index f4d6117765..7830f9bd84 100644 --- a/wiki/Part_CrossSections.md +++ b/wiki/Part_CrossSections.md @@ -6,6 +6,8 @@ SeeAlso:[Part Section](Part_Section.md) --- +# Part CrossSections + ## Description The **Cross-sections** utility creates one or more cross-sections through the selected shape. @@ -34,7 +36,5 @@ The **Cross-sections** utility creates one or more cross-sections through the se ![Result](images/SectionCross3.png ) - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CrossSections diff --git a/wiki/Part_Cube.md b/wiki/Part_Cube.md index 196fa9f41d..33316c6644 100644 --- a/wiki/Part_Cube.md +++ b/wiki/Part_Cube.md @@ -4,3 +4,6 @@ As of [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cube diff --git a/wiki/Part_Cut.md b/wiki/Part_Cut.md index c954bc960c..462b114ec6 100644 --- a/wiki/Part_Cut.md +++ b/wiki/Part_Cut.md @@ -6,6 +6,8 @@ SeeAlso: [Part Boolean](Part_Boolean.md), [Part Fuse](Part_Fuse.md), [Part Common](Part_Common.md) --- +# Part Cut + ## Description Cuts (subtracts) selected Part objects, the last one being subtracted from the first one. This operation is fully parametric and the components can be modified and the result recomputed. @@ -25,7 +27,5 @@ Cuts (subtracts) selected Part objects, the last one being subtracted from the f Input objects must be [OpenCascade](OpenCascade.md) shapes. Examples: stuff made with Part, PartDesign, Sketcher workbenches. Not meshes (unless those were converted to shapes) - for meshes, there are specific Boolean tools in MeshDesign workbench. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cut diff --git a/wiki/Part_Cylinder.md b/wiki/Part_Cylinder.md index 200a7898b3..2a346682e0 100644 --- a/wiki/Part_Cylinder.md +++ b/wiki/Part_Cylinder.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Cylinder + ## Description Creates a simple parametric cylinder, with position, angle, radius and height parameters. @@ -33,9 +35,7 @@ The cylinder properties can later be edited, either in the [Property editor](Pro - **First Angle**: Angle in first direction. (v0.20) -- **Second Angle**: Angle in second direction. (v0.20) - - +- **Second Angle**: Angle in second direction. (v0.20) - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cylinder diff --git a/wiki/Part_Defeaturing.md b/wiki/Part_Defeaturing.md index c308701bbc..d9c9e66a14 100644 --- a/wiki/Part_Defeaturing.md +++ b/wiki/Part_Defeaturing.md @@ -6,6 +6,8 @@ Version:0.18 --- +# Part Defeaturing + ## Description The **Defeaturing** tool is intended for removal of selected features from the model. In this context, features are meant as holes, protrusions, gaps, chamfers, fillets etc. found on the model. @@ -33,7 +35,5 @@ To be available, this tool requires FreeCAD to be based on Open Cascade 7.3.0 or - [3D Model Defeaturing](https://dev.opencascade.org/index.php?q=node/1211), the official announcement on the Open Cascade collaborative development portal. - [Defeaturing Workbench](Defeaturing_Workbench.md) - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Defeaturing diff --git a/wiki/Part_EditAttachment.md b/wiki/Part_EditAttachment.md index 3ea0ed830b..fe5227a8cf 100644 --- a/wiki/Part_EditAttachment.md +++ b/wiki/Part_EditAttachment.md @@ -7,6 +7,8 @@ SeeAlso:[Placement](Placement.md), [Basic Attachment Tutorial](Basic_Attachment_Tutorial.md), [Part Part2DObject](Part_Part2DObject.md) --- +# Part EditAttachment + ## Description **Part EditAttachment** is a utility to attach an object to another one. The attached object is linked to the other object, which means that if the latter\'s placement is changed afterwards, the attached object will update to its new position. @@ -301,4 +303,7 @@ Attachment Offset is used to apply a linear or rotary offset from the referenced - {{Part_Tools_navi}} + {{Part_Tools_navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part EditAttachment diff --git a/wiki/Part_ElementCopy.md b/wiki/Part_ElementCopy.md index 7393159dd8..c1f158dd87 100644 --- a/wiki/Part_ElementCopy.md +++ b/wiki/Part_ElementCopy.md @@ -7,6 +7,8 @@ SeeAlso:[Part SimpleCopy](Part_SimpleCopy.md), [Part TransformedCopy](Part_TransformedCopy.md), [Part RefineShape](Part_RefineShape.md) --- +# Part ElementCopy + ## Description [Part ElementCopy](Part_ElementCopy.md) produces a non-parametric copy of a sub-element of a particular object, that is, of a vertex, edge, or face. @@ -29,7 +31,5 @@ The copy has a simple **Placement** property like any other [Part Feature](Part_ The copy has simple view properties like any other [Part Feature](Part_Feature.md). - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ElementCopy diff --git a/wiki/Part_Ellipse.md b/wiki/Part_Ellipse.md index b2459c95af..aa45bd6598 100644 --- a/wiki/Part_Ellipse.md +++ b/wiki/Part_Ellipse.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Ellipse + ## Description This command will create a elliptical curved edge. With the default values, the elliptical curved edge will be closed and therefore will be an ellipse. If the properties Angle 1 or Angle 2 are changed from their default values (0 and 360) the edge will be an open curve. @@ -21,7 +23,5 @@ The Create Primitives dialogue can be accessed via the [Primitives](Part_Primiti - **Angle 1:** start of the edge of the ellipse or elliptical curved edge, (degrees anti-clockwise), the default value is 0 - **Angle 2:** end of the edge of the ellipse or elliptical curved edge, (degrees anti-clockwise), the default value is 360 - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipse diff --git a/wiki/Part_Ellipsoid.md b/wiki/Part_Ellipsoid.md index ad91e4798a..7192183e95 100644 --- a/wiki/Part_Ellipsoid.md +++ b/wiki/Part_Ellipsoid.md @@ -6,6 +6,8 @@ SeeAlso:[Part Create primitives](Part_Primitives.md) --- +# Part Ellipsoid + ## Description The [Part Ellipsoid](Part_Ellipsoid.md) command creates a parametric Ellipsoid solid. @@ -35,7 +37,5 @@ A parametric Ellipsoid solid is available from the Create Primitives dialogue in ![](images/Part_Ellipsoid_screenshot.jpg ) - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipsoid diff --git a/wiki/Part_ExplodeCompound.md b/wiki/Part_ExplodeCompound.md index c463ea92be..f3e557ce01 100644 --- a/wiki/Part_ExplodeCompound.md +++ b/wiki/Part_ExplodeCompound.md @@ -7,6 +7,8 @@ SeeAlso:[Part Compound](Part_Compound.md), [Draft Downgrade](Draft_Downgrade.md) --- +# Part ExplodeCompound + ## Description Tool to split up compounds of shapes, to make each contained shape (child) available as a separate object in model tree. The children are automatically put into a [Group](Std_Group.md) if there is more than one child. @@ -30,7 +32,5 @@ The tool will also explode non-compound shapes into their lower-level constituen - Obtaining individual contours from multi-contour sketches and faces - Obtaining a pure solid from a solid-in-compound, for use in [FEM Workbench](FEM_Workbench.md). - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ExplodeCompound diff --git a/wiki/Part_Export.md b/wiki/Part_Export.md index 14d090ec8c..2cb3096515 100644 --- a/wiki/Part_Export.md +++ b/wiki/Part_Export.md @@ -6,6 +6,8 @@ SeeAlso:[Part Import](Part_Import.md), [Std Export](Std_Export.md), [Import Export](Import_Export.md) --- +# Part Export + ## Description The ** [Part Export](Part_Export.md)** tool opens a dialog that allows you to export objects in the document to the following CAD file formats: [IGES](http://en.wikipedia.org/wiki/IGES), [STEP](http://en.wikipedia.org/wiki/Step_file) and [BREP](http://en.wikipedia.org/wiki/BREP). @@ -17,13 +19,5 @@ The ** [Part Export](Part_Export.md 3. Go to the menu **Part → Export CAD**. 4. Select the file format and the output path. - - - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Export diff --git a/wiki/Part_ExportCAD.md b/wiki/Part_ExportCAD.md index 7c5ecb4767..18c79a3615 100644 --- a/wiki/Part_ExportCAD.md +++ b/wiki/Part_ExportCAD.md @@ -1,2 +1,5 @@ # Part ExportCAD 1. REDIRECT [Part Export](Part_Export.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ExportCAD diff --git a/wiki/Part_Extrude.md b/wiki/Part_Extrude.md index c24eb20f46..6b33513c14 100644 --- a/wiki/Part_Extrude.md +++ b/wiki/Part_Extrude.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Trimex](Draft_Trimex.md) --- +# Part Extrude + ![600px](images/Part_Extrude_demo.png) ## Description @@ -110,7 +112,5 @@ Part Extrude doesn\'t care where it is in model tree. PartDesign Pad can only li Part Extrude can extrude any object that has Part Geometry (OCC shape), except for solids and compsolids. And it can\'t extrude individual faces of other objects. PartDesign Pad will only accept a Sketch as a profile (and a small selection of other object types), or a face of a solid. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Extrude diff --git a/wiki/Part_FaceColors.md b/wiki/Part_FaceColors.md index 9650626019..f1f1a9ef8f 100644 --- a/wiki/Part_FaceColors.md +++ b/wiki/Part_FaceColors.md @@ -6,6 +6,8 @@ SeeAlso:[Std Appearance](Std_SetAppearance.md) --- +# Part FaceColors + ## Description The **FaceColors** feature allows you to define a color for each face or surface of an object. This way you can assign multiple colors to one part. To color whole parts, use instead is the feature *[SetAppearance](Std_SetAppearance.md)*. @@ -34,3 +36,6 @@ To reset all face colors: [Category:User Documentation](Category:User_Documentation.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part FaceColors diff --git a/wiki/Part_Feature.md b/wiki/Part_Feature.md index 11deb73d86..93c8610985 100644 --- a/wiki/Part_Feature.md +++ b/wiki/Part_Feature.md @@ -1,6 +1,4 @@ # Part Feature - - ## Introduction @@ -198,4 +196,7 @@ If desired, the `Label` attribute can be changed to a more meaningful text. - The `Label` can accept any UTF8 string, including accents and spaces. Since the [tree view](tree_view.md) displays the `Label`, it is a good practice to change the `Label` to a more descriptive string. - By default the `Label` is unique, just like the `Name`. However, this behavior can be changed in the [preferences editor](Preferences_Editor.md), **Edit → Preferences → General → Document → Allow duplicate object labels in one document**. This means that in general the `Label` may be repeated in the same document; when testing for a specific element the user should rely on the `Name` rather than on the `Label`. - {{Document objects navi}} + {{Document objects navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Feature diff --git a/wiki/Part_Fillet.md b/wiki/Part_Fillet.md index 96d92fec2c..4e99568bf7 100644 --- a/wiki/Part_Fillet.md +++ b/wiki/Part_Fillet.md @@ -6,6 +6,8 @@ SeeAlso:[Part Chamfer](Part_Chamfer.md) --- +# Part Fillet + ## Description This tool creates a fillet (round) on the selected edges of an object. A dialog allows you to choose which objects and which edges to work on. @@ -38,7 +40,5 @@ The fillet tool sometimes fails when trying to fillet complex objects. A common Also note that the part Fillet feature is affected by the [Topological naming problem](Topological_naming_problem.md) when the any change is done to a modeling step earlier in the chain that affects the number of facets or vertices. This could cause unpredictable result. Until that is resolved (possibly with V0.19) it is advised to apply Chamfer and [Fillet](Part_Fillet.md) operations at the last steps in the chain. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fillet diff --git a/wiki/Part_Fuse.md b/wiki/Part_Fuse.md index 26204c7ec7..537cb8c00f 100644 --- a/wiki/Part_Fuse.md +++ b/wiki/Part_Fuse.md @@ -6,6 +6,8 @@ SeeAlso:[Part Boolean](Part_Boolean.md), [Part Cut](Part_Cut.md), [Part Common](Part_Common.md) --- +# Part Fuse + ## Description The **![](images/)_[Part_Fuse](Part_Fuse.md)** tool fuses (unites) selected Part objects into one. This operation is fully parametric and the components can be modified and the result recomputed. @@ -37,7 +39,5 @@ Items can be added and removed from the fusion, by dragging them in or out of th After this operation is complete, it may be necessary to clean up the shape with [RefineShape](Part_RefineShape.md). - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fuse diff --git a/wiki/Part_Helix.md b/wiki/Part_Helix.md index d6d41df10f..a2e7a76e79 100644 --- a/wiki/Part_Helix.md +++ b/wiki/Part_Helix.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Helix + ## Description The ** [Part Helix](Part_Helix.md)** geometric primitive creates a helix shape, defined by a radius, a pitch, and a total height. @@ -61,7 +63,5 @@ Once you have created the helix you have the possibility to edit its parameters. | | | +----------------------------------------------------------+----------------------------------------------------------------------------------+ - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Helix diff --git a/wiki/Part_Import.md b/wiki/Part_Import.md index f1091eac15..e743a8b9c7 100644 --- a/wiki/Part_Import.md +++ b/wiki/Part_Import.md @@ -6,6 +6,8 @@ SeeAlso:[Part Export](Part_Export.md), [Std Import](Std_Import.md), [Import Export](Import_Export.md) --- +# Part Import + ## Description The ** [Part Import](Part_Import.md)** tool opens a dialog that allows you to import the following CAD file formats: [IGES](http://en.wikipedia.org/wiki/IGES), [STEP](http://en.wikipedia.org/wiki/Step_file) and [BREP](http://en.wikipedia.org/wiki/BREP) into the current document. @@ -16,7 +18,5 @@ The ** [Part Import](Part_Import.md 2. Go to the menu **Part → Import CAD**. 3. Select the file to be imported. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Import diff --git a/wiki/Part_ImportCAD.md b/wiki/Part_ImportCAD.md index 5b42d2139f..e9bfbbd807 100644 --- a/wiki/Part_ImportCAD.md +++ b/wiki/Part_ImportCAD.md @@ -1,2 +1,5 @@ # Part ImportCAD 1. REDIRECT [Part Import](Part_Import.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ImportCAD diff --git a/wiki/Part_JoinConnect.md b/wiki/Part_JoinConnect.md index 778ce5c2a6..c2b790b001 100644 --- a/wiki/Part_JoinConnect.md +++ b/wiki/Part_JoinConnect.md @@ -7,6 +7,8 @@ SeeAlso:[Part JoinEmbed](Part_JoinEmbed.md), [Part JoinCutout](Part_JoinCutout.md), [Part Boolean](Part_Boolean.md), [Part Thickness](Part_Thickness.md) --- +# Part JoinConnect + ## Description Connect tool connects interiors of two walled objects (e.g., pipes). It can also join shells and wires. @@ -88,7 +90,5 @@ j.Objects = FreeCADGui.Selection.getSelection() - The tool was re-implemented to work via generalFuse in FreeCAD v0.17.8053 - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinConnect diff --git a/wiki/Part_JoinCutout.md b/wiki/Part_JoinCutout.md index 175f9bc800..3ffe8b4bd0 100644 --- a/wiki/Part_JoinCutout.md +++ b/wiki/Part_JoinCutout.md @@ -7,6 +7,8 @@ SeeAlso:[Part JoinConnect](Part_JoinConnect.md), [Part JoinEmbed](Part_JoinEmbed.md), [Part Boolean](Part_Boolean.md), [Part Thickness](Part_Thickness.md) --- +# Part JoinCutout + ## Description The [Part JoinCutout](Part_JoinCutout.md) tool creates a cutout in a walled object (e.g., a pipe) to fit another walled object. @@ -80,7 +82,5 @@ j.Tool = FreeCADGui.Selection.getSelection()[1] The tool itself is implemented in Python, see {{FileName|/Mod/Part/JoinFeatures.py}} ([Github link](https://github.com/FreeCAD/FreeCAD/blob/master/src/Mod/Part/JoinFeatures.py)) under where FreeCAD is installed. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinCutout diff --git a/wiki/Part_JoinEmbed.md b/wiki/Part_JoinEmbed.md index 81a3f6ec02..fe27ec5ff3 100644 --- a/wiki/Part_JoinEmbed.md +++ b/wiki/Part_JoinEmbed.md @@ -7,6 +7,8 @@ SeeAlso:[Part JoinConnect](Part_JoinConnect.md), [Part JoinCutout](Part_JoinCutout.md), [Part Boolean](Part_Boolean.md), [Part Thickness](Part_Thickness.md) --- +# Part JoinEmbed + ## Description Embed tool embeds a walled object (e.g., a pipe) into another walled object. @@ -83,7 +85,5 @@ j.Tool = FreeCADGui.Selection.getSelection()[1] The tool itself is implemented in Python, see {{FileName|/Mod/Part/JoinFeatures.py}} ([Github link](https://github.com/FreeCAD/FreeCAD/blob/master/src/Mod/Part/JoinFeatures.py)) under where FreeCAD is installed. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinEmbed diff --git a/wiki/Part_Line.md b/wiki/Part_Line.md index af80261df3..0f5737816b 100644 --- a/wiki/Part_Line.md +++ b/wiki/Part_Line.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Line + ## Description ## Usage @@ -83,10 +85,5 @@ | | : | +--------------------------------------------------------+------------------------------------------+ - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Line diff --git a/wiki/Part_Loft.md b/wiki/Part_Loft.md index 264b547c44..9e58e5f1e4 100644 --- a/wiki/Part_Loft.md +++ b/wiki/Part_Loft.md @@ -7,6 +7,8 @@ SeeAlso:[Part Sweep](Part_Sweep.md) --- +# Part Loft + ## Overview The Loft tool is used to create a face, shell or a solid shape from two or more profiles. The profiles can be a point (vertex), line (Edge), wire or face. Edges and wires may be either open or closed. There are various [Limitations and complications](Part_Loft#Limitations_and_complications.md), see below, however the profiles may come from the Part Workbench primitives, Draft Workbench features and a Sketch. @@ -102,7 +104,5 @@ If you want to change the selection of the sections after creation of the loft, The sequence of sections depends on the sequence of clicks in the list. If you want to make substantial changes it is recommended to first deselect all and then start selection in the right order. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Loft diff --git a/wiki/Part_Loft_Technical_Details.md b/wiki/Part_Loft_Technical_Details.md index 4d0d35e43c..6cc3c69292 100644 --- a/wiki/Part_Loft_Technical_Details.md +++ b/wiki/Part_Loft_Technical_Details.md @@ -1,5 +1,5 @@ # Part Loft Technical Details - This page explains the details of how the [Loft](Part_Loft.md) surface is created. This is also relevant to [Part Sweep](Part_Sweep.md) done along a straight path, although there are differences. +This page explains the details of how the [Loft](Part_Loft.md) surface is created. This is also relevant to [Part Sweep](Part_Sweep.md) done along a straight path, although there are differences. The information provided is implementation specific, and may change. Current state is relevant to FreeCAD 0.15.4119, OCC version: 6.7.0. @@ -72,3 +72,6 @@ Note that Loft has a \"Ruled\" property. If it is set to true, ruled surfaces ar [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Loft Technical Details diff --git a/wiki/Part_MakeCompound.md b/wiki/Part_MakeCompound.md index 2fa37e556c..0f289b6926 100644 --- a/wiki/Part_MakeCompound.md +++ b/wiki/Part_MakeCompound.md @@ -1,2 +1,5 @@ # Part MakeCompound 1. REDIRECT [Part Compound](Part_Compound.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeCompound diff --git a/wiki/Part_MakeFace.md b/wiki/Part_MakeFace.md index 992f3a3cf0..cc238f1ea3 100644 --- a/wiki/Part_MakeFace.md +++ b/wiki/Part_MakeFace.md @@ -7,6 +7,8 @@ SeeAlso:[Part RuledSurface](Part_RuledSurface.md) --- +# Part MakeFace + ## Description Part MakeFace‏‎ creates a [plane](Part_Plane.md) in a custom shape. The shape is defined by a closed sketch contour. @@ -23,7 +25,5 @@ It is possible to nest closed contours, for example to have circles inside a pol 1. Select a sketch defining at least one closed contour 2. Press the [Part MakeFace](Part_MakeFace.md) button - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeFace diff --git a/wiki/Part_MakeSolid.md b/wiki/Part_MakeSolid.md index 901d637b92..565f8b8225 100644 --- a/wiki/Part_MakeSolid.md +++ b/wiki/Part_MakeSolid.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part MakeSolid + ## Description This command creates a solid from a shape object. @@ -20,7 +22,5 @@ This command creates a solid from a shape object. - There will be no analyzing or validating of the shape object. - It is recommended to use [Part RefineShape](Part_RefineShape.md) before converting to a solid. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeSolid diff --git a/wiki/Part_Measure_Angular.md b/wiki/Part_Measure_Angular.md index 0dd9e23e95..88c210587b 100644 --- a/wiki/Part_Measure_Angular.md +++ b/wiki/Part_Measure_Angular.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Measure Angular + ## Description This tool measures the angle between two straight edges, two planar faces or one straight edge and a planar face and displays the measurement in the [3D view](3D_view.md). @@ -20,10 +22,5 @@ This tool measures the angle between two straight edges, two planar faces or one 3. Alternatively the command can be launched without prior selection. A selection dialog then opens in the [Task panel](Task_panel.md). A Control widget also provides buttons to reset the selection, toggle the measurement display in the [3D view](3D_view.md), and clear all measurements. 4. Measurements are automatically discarded when closing the document. - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Angular diff --git a/wiki/Part_Measure_Clear_All.md b/wiki/Part_Measure_Clear_All.md index 7578e3d754..5c633eb67a 100644 --- a/wiki/Part_Measure_Clear_All.md +++ b/wiki/Part_Measure_Clear_All.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Measure Clear All + ## Description This tool clears all measurements from the 3D view. @@ -15,10 +17,5 @@ This tool clears all measurements from the 3D view. - Press the ** [Clear All](Part_Measure_Clear_All.md)** button. - Use the **Measure → Clear All** - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Clear All diff --git a/wiki/Part_Measure_Linear.md b/wiki/Part_Measure_Linear.md index dfb202075f..7aef9eb2ba 100644 --- a/wiki/Part_Measure_Linear.md +++ b/wiki/Part_Measure_Linear.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Measure Linear + ## Description This tool measures the distance between two selected topology elements (vertex, edge, face) and displays the measurement in the [3D view](3D_view.md). The shortest distance between the two elements is shown in red, and delta measurements (distances parallel to standard X, Y, Z axes) are shown in green. @@ -20,7 +22,5 @@ This tool measures the distance between two selected topology elements (vertex, 3. Alternatively the command can be launched without prior selection. A selection dialog then opens in the [Task panel](Task_panel.md). A Control widget also provides buttons to reset the selection, toggle the measurement display in the [3D view](3D_view.md), and clear all measurements. 4. Measurements are automatically discarded when closing the document. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Linear diff --git a/wiki/Part_Measure_Menu.md b/wiki/Part_Measure_Menu.md index 64e685090a..ec5f4e1201 100644 --- a/wiki/Part_Measure_Menu.md +++ b/wiki/Part_Measure_Menu.md @@ -5,6 +5,8 @@ SeeAlso:[Std MeasureDistance](Std_MeasureDistance.md), [Draft Dimension](Draft_Dimension.md), [Arch Survey](Arch_Survey.md) --- +# Part Measure Menu + {{StdMenu| Measure}} @@ -33,3 +35,6 @@ [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Menu diff --git a/wiki/Part_Measure_Refresh.md b/wiki/Part_Measure_Refresh.md index 66ee84c482..6b448b7f22 100644 --- a/wiki/Part_Measure_Refresh.md +++ b/wiki/Part_Measure_Refresh.md @@ -6,6 +6,8 @@ SeeAlso:[Part Measure Linear](Part_Measure_Linear.md), [Part Measure Angular](Part_Measure_Angular.md) --- +# Part Measure Refresh + ## Description [Part Measure Refresh](Part_Measure_Refresh.md) updates the [3D view](3D_view.md) to display all measurements created with [Measure Linear](Part_Measure_Linear.md) and [Measure Angular](Part_Measure_Angular.md). @@ -16,10 +18,5 @@ - Press the ** [Measure Refresh](Part_Measure_Refresh.md)** button. - Use the **Measure → Refresh**. - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Refresh diff --git a/wiki/Part_Measure_Toggle_3d.md b/wiki/Part_Measure_Toggle_3d.md index 79bdbcae1b..64273c3e61 100644 --- a/wiki/Part_Measure_Toggle_3d.md +++ b/wiki/Part_Measure_Toggle_3d.md @@ -6,6 +6,8 @@ SeeAlso:[Part Measure Toggle Delta](Part_Measure_Toggle_Delta.md) --- +# Part Measure Toggle 3d + ## Description This tool toggles the visibility of linear (red) and angular (blue) measurements. @@ -16,7 +18,5 @@ This tool toggles the visibility of linear (red) and angular (blue) measurements - Press the ** '''Toggle 3d'''** button - Use the **Measure → Toggle 3d** - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle 3d diff --git a/wiki/Part_Measure_Toggle_All.md b/wiki/Part_Measure_Toggle_All.md index 6f37d75d4a..f48ac8f012 100644 --- a/wiki/Part_Measure_Toggle_All.md +++ b/wiki/Part_Measure_Toggle_All.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Measure Toggle All + ## Description This tool toggles the visibility of all measurements from the [3D view](3D_view.md). @@ -17,10 +19,5 @@ This tool toggles the visibility of all measurements from the [3D view](3D_view. - Press the ** '''Toggle All'''** button. - Use the **Measure → Toggle All** - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle All diff --git a/wiki/Part_Measure_Toggle_Delta.md b/wiki/Part_Measure_Toggle_Delta.md index e3a32d29b4..b847962d03 100644 --- a/wiki/Part_Measure_Toggle_Delta.md +++ b/wiki/Part_Measure_Toggle_Delta.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Measure Toggle Delta + ## Description This tool toggles the visibility of delta (green) measurements. @@ -15,7 +17,5 @@ This tool toggles the visibility of delta (green) measurements. - Press the ** '''Toggle Delta'''** button. - Use the **Measure → Toggle Delta** - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle Delta diff --git a/wiki/Part_Mirror.md b/wiki/Part_Mirror.md index a4ad89a2a4..f4d840b641 100644 --- a/wiki/Part_Mirror.md +++ b/wiki/Part_Mirror.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Mirror + ## Description \'Mirror Object\' - This tool creates a new object (image) which is a reflection of the original object (source). The image object is created behind a mirror plane. The mirror plane may be standard plane (**XY**, **YZ**, or **XZ**), or any plane parallel to a standard plane. @@ -42,7 +44,5 @@ The **Base point** boxes can be used to move the mirror plane parallel to the se - Arbitrary mirror planes (ie not parallel to a standard plane) are not supported. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Mirror diff --git a/wiki/Part_Module.md b/wiki/Part_Module.md index 29dc2f4e8a..a112e4746a 100644 --- a/wiki/Part_Module.md +++ b/wiki/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module - - - - - -Part workbench icon +# Part workbench icon Part Module @@ -199,3 +193,6 @@ See [Part scripting](Part_scripting.md). [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module diff --git a/wiki/Part_Offset.md b/wiki/Part_Offset.md index b701f6adcf..aeec0e3693 100644 --- a/wiki/Part_Offset.md +++ b/wiki/Part_Offset.md @@ -6,6 +6,8 @@ SeeAlso:[Thickness](Part_Thickness.md), [Part 2D Offset](Part_Offset2D.md) --- +# Part Offset + ## Description The Part 3D Offset tool creates parallel copies of a selected shape at a certain distance from the base shape, giving a new object. @@ -54,9 +56,7 @@ same shape with a 3D Offset as SKIN and *filled* offset *filled* offset with 2 Cylinders creating boolean cuts. Cylinder A goes through the FILL whilst Cylinder B only goes thru the FILL and NOT through the source 2D shape. - - - + - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset diff --git a/wiki/Part_Offset2D.md b/wiki/Part_Offset2D.md index d7151b882e..c8ce25aaf3 100644 --- a/wiki/Part_Offset2D.md +++ b/wiki/Part_Offset2D.md @@ -7,6 +7,8 @@ SeeAlso:[Part Offset 3D](Part_Offset.md), [Part Thickness](Part_Thickness.md), [Draft Offset](Draft_Offset.md) --- +# Part Offset2D + ## Description Part 2D Offset constructs a wire, parallel to the original wire, at a certain distance from it. Or enlarges/shrinks a planar face, similarly. @@ -120,7 +122,5 @@ Part.show(enlarged_circle) # structure follows that of source shape. }} - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset2D diff --git a/wiki/Part_Part2DObject.md b/wiki/Part_Part2DObject.md index 2c91ceb692..7c88f5c1a1 100644 --- a/wiki/Part_Part2DObject.md +++ b/wiki/Part_Part2DObject.md @@ -1,6 +1,4 @@ # Part Part2DObject - - ## Introduction @@ -118,4 +116,5 @@ obj.Label = "Custom label" For example, most tools from the [Draft Workbench](Draft_Workbench.md), like [Draft Line](Draft_Line.md), [Draft Rectangle](Draft_Rectangle.md), [Draft Polygon](Draft_Polygon.md), etc., are `Part::Part2DObjectPython` objects with a custom icon and additional properties. - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Part2DObject diff --git a/wiki/Part_Plane.md b/wiki/Part_Plane.md index 73de3b08b0..d6753f85e1 100644 --- a/wiki/Part_Plane.md +++ b/wiki/Part_Plane.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Plane + ## Description Create a simple parametric plane 10 x 10 mm, with the parameters of position, length, and width. By default, the plane is positioned at the origin (0,0,0). @@ -46,7 +48,5 @@ The properties of the object can be edited, either in the [Property editor](Prop You have the standard properties view. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Plane diff --git a/wiki/Part_Point.md b/wiki/Part_Point.md index 9ed11a039f..1faa8eb5b5 100644 --- a/wiki/Part_Point.md +++ b/wiki/Part_Point.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Point + ## Description A Point (vertex) geometric primitive. @@ -82,4 +84,7 @@ A Point (vertex) geometric primitive. - {{Part_Tools_navi}} + {{Part_Tools_navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Point diff --git a/wiki/Part_PointsFromMesh.md b/wiki/Part_PointsFromMesh.md index ecfaa218e6..ee8aeae023 100644 --- a/wiki/Part_PointsFromMesh.md +++ b/wiki/Part_PointsFromMesh.md @@ -7,6 +7,8 @@ SeeAlso:[Part ShapeFromMesh](Part_ShapeFromMesh.md), [Part ConvertToSolid](Part_MakeSolid.md), [Part RefineShape](Part_RefineShape.md) --- +# Part PointsFromMesh + ## Description The ** [Part PointsFromMesh](Part_PointsFromMesh.md) @@ -31,7 +33,5 @@ There will be no analyzing or validating of the mesh object. Analyzing and repai ## Scripting - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part PointsFromMesh diff --git a/wiki/Part_Primitives.md b/wiki/Part_Primitives.md index 792dd31787..e67fc3dd3b 100644 --- a/wiki/Part_Primitives.md +++ b/wiki/Part_Primitives.md @@ -6,6 +6,8 @@ SeeAlso:[Part Shapebuilder](Part_Builder.md) --- +# Part Primitives + ## Description [Part Primitives](Part_Primitives.md) opens a dialog to create any of the parametric geometric primitives defined in the [Part Workbench](Part_Workbench.md). @@ -84,7 +86,5 @@ It can be used as input to the program as well. freecad $INSTALL_DIR/Mod/Part/parttests/part_test_objects.py ``` - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Primitives diff --git a/wiki/Part_Prism.md b/wiki/Part_Prism.md index 19c5d1bf43..50ecd95fcf 100644 --- a/wiki/Part_Prism.md +++ b/wiki/Part_Prism.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md), [Part Box/Cube](Part_Box.md) --- +# Part Prism + ## Description A Part Prism is a solid defined by a regular polygon cross section and a height. @@ -29,9 +31,7 @@ The prism properties can later be edited, either in the [Property editor](Proper - **First Angle**: Angle in first direction. (v0.19) -- **Second Angle**: Angle in second direction. (v0.19) - - +- **Second Angle**: Angle in second direction. (v0.19) - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Prism diff --git a/wiki/Part_ProjectionOnSurface.md b/wiki/Part_ProjectionOnSurface.md index dba443ffca..c2cfffca88 100644 --- a/wiki/Part_ProjectionOnSurface.md +++ b/wiki/Part_ProjectionOnSurface.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Part ProjectionOnSurface + ## Description @@ -90,7 +92,5 @@ If this happens: ## Examples - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ProjectionOnSurface diff --git a/wiki/Part_RefineShape.md b/wiki/Part_RefineShape.md index e0c4c06814..1bb41b2bff 100644 --- a/wiki/Part_RefineShape.md +++ b/wiki/Part_RefineShape.md @@ -6,6 +6,8 @@ SeeAlso:[Part SimpleCopy](Part_SimpleCopy.md), [Part TransformedCopy](Part_TransformedCopy.md), [Part ElementCopy](Part_ElementCopy.md), [OpenSCAD RefineShapeFeature](OpenSCAD_RefineShapeFeature.md) --- +# Part RefineShape + ## Description The ** [Part RefineShape](Part_RefineShape.md)** produces a non-parametric copy with a refined shape, that is, with certain edges and faces cleaned up. @@ -53,7 +55,5 @@ The Python command for refining a shape is the following: shape.removeSplitter() ``` - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RefineShape diff --git a/wiki/Part_RegularPolygon.md b/wiki/Part_RegularPolygon.md index 9fb7ac99ff..22d33087bd 100644 --- a/wiki/Part_RegularPolygon.md +++ b/wiki/Part_RegularPolygon.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part RegularPolygon + ## Description Creates a RegularPolygon geometric primitive. @@ -25,7 +27,5 @@ The RegularPolygon is available from the Create Primitives dialogue in the Part - Polygon - the number of sides of the polygon which describes the cross section of the Part Prism - Circumradius - the circumradius is the distance from the centre of the polygon to a vertex. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RegularPolygon diff --git a/wiki/Part_ReverseShapes.md b/wiki/Part_ReverseShapes.md index 19f3c54a87..62c5d13504 100644 --- a/wiki/Part_ReverseShapes.md +++ b/wiki/Part_ReverseShapes.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part ReverseShapes + ## Description Flips the normals of all faces of the selected object. @@ -30,7 +32,5 @@ You can verify this by ## Scripting - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ReverseShapes diff --git a/wiki/Part_Revolve.md b/wiki/Part_Revolve.md index bc68bf9971..15040ac58c 100644 --- a/wiki/Part_Revolve.md +++ b/wiki/Part_Revolve.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Revolve + ## Description Revolves the selected object around a given axis. The following shape types are allowed, and lead to the listed output shapes ([See Notes for exceptions](#Notes.md)): @@ -30,7 +32,5 @@ If you select a user defined axis, the numbers define the direction of the revol - If your version of FreeCAD has a check box for Solid in the Revolve dialog, you can make Solids from closed Wires and Edges. - If Revolve is performed using an axis that intersects the face to rotate, and you want to create a solid, the result might be invalid. This can happen for various reasons, self-intersection, direction, etc. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Revolve diff --git a/wiki/Part_RuledSurface.md b/wiki/Part_RuledSurface.md index 75dae84023..f9e1faea14 100644 --- a/wiki/Part_RuledSurface.md +++ b/wiki/Part_RuledSurface.md @@ -6,6 +6,8 @@ SeeAlso:[Part MakeFace](Part_MakeFace.md) --- +# Part RuledSurface + ## Description Create ruled surface @@ -18,7 +20,5 @@ Create ruled surface - Press the [Part RuledSurface](Part_RuledSurface.md) button - Use the **Part → RuledSurface** entry in the Part menu - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RuledSurface diff --git a/wiki/Part_Section.md b/wiki/Part_Section.md index 3d9bae5914..d5cf517814 100644 --- a/wiki/Part_Section.md +++ b/wiki/Part_Section.md @@ -6,6 +6,8 @@ SeeAlso:[Part CrossSections](Part_CrossSections.md) --- +# Part Section + ## Description Extracts a section from the intersection of two selected shapes, the second one being used as a section plane. This operation is fully parametric and the components can be modified and the result recomputed. @@ -30,7 +32,5 @@ In this example, a cube is sectioned with a cylinder: To create sections with a section plane see [Cross-sections](Part_CrossSections.md). - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Section diff --git a/wiki/Part_SectionCross.md b/wiki/Part_SectionCross.md index bb62d82a92..6593fc8d72 100644 --- a/wiki/Part_SectionCross.md +++ b/wiki/Part_SectionCross.md @@ -1,2 +1,5 @@ # Part SectionCross 1. REDIRECT [Part\_CrossSections](Part_CrossSections.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SectionCross diff --git a/wiki/Part_ShapeFromMesh.md b/wiki/Part_ShapeFromMesh.md index 835c959328..63b7873851 100644 --- a/wiki/Part_ShapeFromMesh.md +++ b/wiki/Part_ShapeFromMesh.md @@ -6,6 +6,8 @@ SeeAlso:[Part ConvertToSolid](Part_MakeSolid.md), [Part RefineShape](Part_RefineShape.md), [Part PointsFromMesh](Part_PointsFromMesh.md) --- +# Part ShapeFromMesh + ## Introduction The ** [Part ShapeFromMesh](Part_ShapeFromMesh.md)** command creates a shape from a [mesh object](Mesh.md). Mesh objects have limited editing capabilities in FreeCAD, converting them to [shapes](Shape.md) will allow their use with many more boolean and modification tools. @@ -52,7 +54,5 @@ solid.purgeTouched() doc.recompute() ``` - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ShapeFromMesh diff --git a/wiki/Part_Shapebuilder.md b/wiki/Part_Shapebuilder.md index 75cb5b887d..62c8149c48 100644 --- a/wiki/Part_Shapebuilder.md +++ b/wiki/Part_Shapebuilder.md @@ -1,2 +1,5 @@ # Part Shapebuilder 1. REDIRECT [Part\_Builder](Part_Builder.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Shapebuilder diff --git a/wiki/Part_SimpleCopy.md b/wiki/Part_SimpleCopy.md index 7a38759d11..6201999ab3 100644 --- a/wiki/Part_SimpleCopy.md +++ b/wiki/Part_SimpleCopy.md @@ -6,6 +6,8 @@ SeeAlso:[Std Copy](Std_Copy.md), [Std Duplicate Selection](Std_DuplicateSelection.md), [Part TransformedCopy](Part_TransformedCopy.md), [Part ElementCopy](Part_ElementCopy.md), [Part RefineShape](Part_RefineShape.md) --- +# Part SimpleCopy + ## Description @@ -30,7 +32,5 @@ The copy has a simple **Placement** property like any other [Part Feature](Part_ The copy has simple view properties like any other [Part Feature](Part_Feature.md). - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SimpleCopy diff --git a/wiki/Part_Slice.md b/wiki/Part_Slice.md index 56007336fc..0acf59b68d 100644 --- a/wiki/Part_Slice.md +++ b/wiki/Part_Slice.md @@ -7,6 +7,8 @@ SeeAlso:[Part Boolean Fragments](Part_BooleanFragments.md), [Part XOR](Part_XOR.md), [Part Join features](Part_CompJoinFeatures.md), [Part Boolean](Part_Boolean.md) --- +# Part Slice + ## Description The [Part Slice](Part_Slice.md) also known as **Slice to compound** tool is used to split shapes by intersection with other shapes. For example, for a box and a plane, a compound of two solids is created. @@ -124,7 +126,5 @@ The tool itself is implemented in Python, see {{FileName|/Mod/Part/BOPTools/Spli - [FreeCAD Slice und Slice Apart und andere Tricks](https://www.youtube.com/watch?v=JJAL5JmqqKQ) (German language), author: Ha Gei - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Slice diff --git a/wiki/Part_SliceApart.md b/wiki/Part_SliceApart.md index 2b5a2f717f..3df5799af4 100644 --- a/wiki/Part_SliceApart.md +++ b/wiki/Part_SliceApart.md @@ -7,6 +7,8 @@ SeeAlso:[Part Slice to compound](Part_Slice.md), [Part Explode Compound](Part_ExplodeCompound.md) --- +# Part SliceApart + ## Description Tool to split shapes by intersection with other shapes. For example, for a box and a plane, two solids are created. ![600px](images/Part_Slice_Demo.png) @@ -66,7 +68,5 @@ Slice Apart was introduced in FreeCAD v0.18.15506. FreeCAD needs to be compiled - : FreeCAD Slice und Slice Apart und andere Tricks (German lanuage), author: Ha Gei - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SliceApart diff --git a/wiki/Part_Sphere.md b/wiki/Part_Sphere.md index 6811e0ec2c..d04705dc1a 100644 --- a/wiki/Part_Sphere.md +++ b/wiki/Part_Sphere.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Sphere + ## Description Creates a simple parametric sphere, with position, angle1, angle2, angle3 and radius parameters. @@ -40,9 +42,7 @@ The properties of the object can be edited, either in the [Property editor](Prop Because it is quite difficult to explain the meaning of the parameters angle 1, angle 2, angle 3, the picture below gives an explanation about these parameters with following values: angle 1 = -45°, angle 2 = 45° and angle 3= 90°. - - - + - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sphere diff --git a/wiki/Part_Spiral.md b/wiki/Part_Spiral.md index eb20e6bf90..f77a58806e 100644 --- a/wiki/Part_Spiral.md +++ b/wiki/Part_Spiral.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Spiral + ## Description ## Usage @@ -19,7 +21,5 @@ The Create Primitives dialogue can be accessed via the [Primitives](Part_Primiti ![](images/Spiral_y45_it.png ) - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Spiral diff --git a/wiki/Part_Sweep.md b/wiki/Part_Sweep.md index cdddfbc38d..cfde0b4e3f 100644 --- a/wiki/Part_Sweep.md +++ b/wiki/Part_Sweep.md @@ -6,6 +6,8 @@ SeeAlso:[Part Loft](Part_Loft.md) --- +# Part Sweep + ## Description The [Part Sweep](Part_Sweep.md) tool is used to create a face, a shell, or a solid shape from one or more profiles (cross-sections) projected along a path. @@ -82,7 +84,5 @@ If \"Frenet\" is \"true\" the orientation of the profile is computed basing on l - Since Sweep is often used to create threads for screws, you should see [Thread for Screw Tutorial](Thread_for_Screw_Tutorial.md). - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sweep diff --git a/wiki/Part_Thickness.md b/wiki/Part_Thickness.md index bf00f45b07..c02bfd047d 100644 --- a/wiki/Part_Thickness.md +++ b/wiki/Part_Thickness.md @@ -6,6 +6,8 @@ SeeAlso:[Part Offset](Part_Offset.md) --- +# Part Thickness + ## Description The [Thickness](Part_Thickness.md) tool works on a solid shape and transforms it into a hollow object, giving to each of its faces a defined thickness. On some solids it allows you to significantly speed up the work, and avoids making extrusions and pockets. @@ -69,7 +71,5 @@ Notes: ![](images/ThicknessEsempio4.png ) - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Thickness diff --git a/wiki/Part_TopoShape.md b/wiki/Part_TopoShape.md index a5694bba92..828a7ac18c 100644 --- a/wiki/Part_TopoShape.md +++ b/wiki/Part_TopoShape.md @@ -1,6 +1,4 @@ # Part TopoShape - - ## Introduction A [Part TopoShape](Part_TopoShape.md), or formally a `Part::TopoShape`, is a class that defines a parametric **topological shape** in the software. Objects in the document that show something in the [3D view](3D_view.md) normally have a TopoShape. @@ -69,4 +67,7 @@ You can obtain a quick summary of all methods using Python\'s built-in help(obj.Shape) ``` - {{Document objects navi}} + {{Document objects navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part TopoShape diff --git a/wiki/Part_Torus.md b/wiki/Part_Torus.md index 02a42ad634..982675c669 100644 --- a/wiki/Part_Torus.md +++ b/wiki/Part_Torus.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Torus + ## Description Creates a simple parametric torus, with position, angle1, angle2, angle3, radius1 and radius2 as parameters. @@ -50,9 +52,7 @@ as well as the standard set of placement parameters. The pictures below give a v ![](images/TorusExampleAngle2.jpg ) The parameter Angle2 has a value of 90°. -![](images/TorusExampleAngle3.jpg ) The parameter Angle3 has a value of 90°. - - +![](images/TorusExampleAngle3.jpg ) The parameter Angle3 has a value of 90°. - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Torus diff --git a/wiki/Part_TransformedCopy.md b/wiki/Part_TransformedCopy.md index 38adbfe92e..c6b79deb8f 100644 --- a/wiki/Part_TransformedCopy.md +++ b/wiki/Part_TransformedCopy.md @@ -7,6 +7,8 @@ SeeAlso:[Part SimpleCopy](Part_SimpleCopy.md), [Part ElementCopy](Part_ElementCopy.md), [Part RefineShape](Part_RefineShape.md) --- +# Part TransformedCopy + ## Description [Part TransformedCopy](Part_TransformedCopy.md) produces a non-parametric copy of an object that has been displaced from its original position. @@ -29,7 +31,5 @@ The copy has a simple **Placement** property like any other [Part Feature](Part_ The copy has simple view properties like any other [Part Feature](Part_Feature.md). - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part TransformedCopy diff --git a/wiki/Part_Tube.md b/wiki/Part_Tube.md index 82baff9a92..79c1a7f080 100644 --- a/wiki/Part_Tube.md +++ b/wiki/Part_Tube.md @@ -7,6 +7,8 @@ SeeAlso:[Part CreatePrimitives](Part_CreatePrimitives.md) --- +# Part Tube + ## Description The Tube command inserts a tube into the active document. The tube is geometrically treated as a cut of a smaller cylinder into a larger one. By default, the command will insert a 10 mm high tube with an outer radius of 5 mm and an inner radius of 2 mm. These parameters can be modified after the object has been added. @@ -36,7 +38,5 @@ To edit the tube - **Placement:** Specifies the orientation and position of the Box in the 3D space. See [ Placement](Placement.md). The reference point is the left front lower corner of the box. - **Label:** The Label is the name given to the operation. This name can be changed at your convenience. - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Tube diff --git a/wiki/Part_Union.md b/wiki/Part_Union.md index 841542f0fd..2fe181c5ae 100644 --- a/wiki/Part_Union.md +++ b/wiki/Part_Union.md @@ -1,2 +1,5 @@ # Part Union 1. REDIRECT [Part\_Fuse](Part_Fuse.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Union diff --git a/wiki/Part_Wedge.md b/wiki/Part_Wedge.md index bade270138..e9dac3d27b 100644 --- a/wiki/Part_Wedge.md +++ b/wiki/Part_Wedge.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Wedge + ## Description Create a parametric Wedge object. This Wedge defaults to a larger square base and a smaller square top. @@ -67,7 +69,5 @@ Create a parametric Wedge object. This Wedge defaults to a larger square base an ![](images/Wedge_examples.png ) - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Wedge diff --git a/wiki/Part_Workbench.md b/wiki/Part_Workbench.md index 93d455ff67..075567682a 100644 --- a/wiki/Part_Workbench.md +++ b/wiki/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench 1. REDIRECT [Part\_Module](Part_Module.md) + +--- +[documentation index](../README.md) > Part Workbench diff --git a/wiki/Part_XOR.md b/wiki/Part_XOR.md index 5f5fcfea23..5773cf39aa 100644 --- a/wiki/Part_XOR.md +++ b/wiki/Part_XOR.md @@ -7,6 +7,8 @@ SeeAlso:[Part Boolean Fragments](Part_BooleanFragments.md), [Part Slice](Part_Slice.md), [Part Join features](Part_CompJoinFeatures.md), [Part Boolean](Part_Boolean.md) --- +# Part XOR + ## Description ## Usage @@ -17,7 +19,5 @@ ## Scripting - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part XOR diff --git a/wiki/Part_and_PartDesign.md b/wiki/Part_and_PartDesign.md index 0619895b68..33de125a06 100644 --- a/wiki/Part_and_PartDesign.md +++ b/wiki/Part_and_PartDesign.md @@ -1,6 +1,4 @@ # Part and PartDesign - - ## Overview There has been much discussion over the years about the differences and ramifications of using the [Part](Part_Workbench.md) and the [PartDesign](PartDesign_Workbench.md) workbenches. @@ -172,4 +170,7 @@ Part and PartDesign workbenches can be used together with some care, creating qu {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part and PartDesign diff --git a/wiki/Part_and_Part_Design.md b/wiki/Part_and_Part_Design.md index 930252b492..d0edbdbd49 100644 --- a/wiki/Part_and_Part_Design.md +++ b/wiki/Part_and_Part_Design.md @@ -1,2 +1,5 @@ # Part and Part Design 1. REDIRECT [Part and PartDesign](Part_and_PartDesign.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part and Part Design diff --git a/wiki/Part_scripting.md b/wiki/Part_scripting.md index 770e843cb9..81d0a312d5 100644 --- a/wiki/Part_scripting.md +++ b/wiki/Part_scripting.md @@ -1,8 +1,4 @@ # Part scripting - - - - ## Introduction The main data structure used in the Part module is the [BRep](http://en.wikipedia.org/wiki/Boundary_representation) data type from OpenCascade. Almost all contents and object types of the Part module are available by [Python](Python.md) scripting. This includes geometric primitives, such as Line and Circle (or Arc), and the whole range of TopoShapes, like Vertexes, Edges, Wires, Faces, Solids and Compounds. For each of those objects, several creation methods exist, and for some of them, especially the TopoShapes, advanced operations like boolean union/difference/intersection are also available. Explore the contents of the Part module, as described in the [FreeCAD Scripting Basics](FreeCAD_Scripting_Basics.md) page, to know more. @@ -182,3 +178,6 @@ Head to the [Topological data scripting](Topological_data_scripting.md) page if {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part scripting diff --git a/wiki/Parts_Library.md b/wiki/Parts_Library.md index 682fb6c7d2..59ae340190 100644 --- a/wiki/Parts_Library.md +++ b/wiki/Parts_Library.md @@ -1,2 +1,5 @@ # Parts Library 1. REDIRECT [Parts\_Library\_Workbench](Parts_Library_Workbench.md) + +--- +[documentation index](../README.md) > Parts Library diff --git a/wiki/Parts_Library_Workbench.md b/wiki/Parts_Library_Workbench.md index 1cd9e9c728..662b7e8661 100644 --- a/wiki/Parts_Library_Workbench.md +++ b/wiki/Parts_Library_Workbench.md @@ -1,6 +1,4 @@ # Parts Library Workbench - - ## Introduction @@ -56,3 +54,6 @@ The library is a simple container for FreeCAD (.fcstd) and STEP (.stp) files. Yo [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Parts Library Workbench diff --git a/wiki/Patch.md b/wiki/Patch.md index ec72399198..5b8e9536dd 100644 --- a/wiki/Patch.md +++ b/wiki/Patch.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Patch diff --git a/wiki/Path_3DPocket.md b/wiki/Path_3DPocket.md index 116e60010e..ec7712a134 100644 --- a/wiki/Path_3DPocket.md +++ b/wiki/Path_3DPocket.md @@ -1,2 +1,5 @@ # Path 3DPocket 1. REDIRECT [Path\_Pocket\_3D](Path_Pocket_3D.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path 3DPocket diff --git a/wiki/Path_3DSurface.md b/wiki/Path_3DSurface.md index 82169ceaef..4e84709593 100644 --- a/wiki/Path_3DSurface.md +++ b/wiki/Path_3DSurface.md @@ -1,2 +1,5 @@ # Path 3DSurface 1. REDIRECT [Path\_Surface](Path_Surface.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path 3DSurface diff --git a/wiki/Path_Adaptive.md b/wiki/Path_Adaptive.md index c39f938ad7..eb8bd18217 100644 --- a/wiki/Path_Adaptive.md +++ b/wiki/Path_Adaptive.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Adaptive + ## Description The [Adaptive](Path_Adaptive.md) tool uses an adaptive algorithm to create clearing and profiling paths that manage cutter engagement so that engagement and material removal never exceed a maximum value. @@ -218,4 +220,7 @@ Note: It is suggested that you do not edit the Placement property of path operat - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Adaptive diff --git a/wiki/Path_Area.md b/wiki/Path_Area.md index 4fbba22d3f..8cca1ef84e 100644 --- a/wiki/Path_Area.md +++ b/wiki/Path_Area.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Area + ## Description Empty @@ -158,4 +160,7 @@ Example: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Area diff --git a/wiki/Path_Area_Workplane.md b/wiki/Path_Area_Workplane.md index 968e1b242f..d2184f35d6 100644 --- a/wiki/Path_Area_Workplane.md +++ b/wiki/Path_Area_Workplane.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Area Workplane + ## Description Empty @@ -44,4 +46,7 @@ Example: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Area Workplane diff --git a/wiki/Path_Array.md b/wiki/Path_Array.md index b6e03b4c66..5fea893f32 100644 --- a/wiki/Path_Array.md +++ b/wiki/Path_Array.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Array + ## Description This tool creates a new path by duplicating another path several times at a certain interval distance. @@ -45,4 +47,7 @@ Example: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Array diff --git a/wiki/Path_Comment.md b/wiki/Path_Comment.md index d45cc454e8..e3f797427e 100644 --- a/wiki/Path_Comment.md +++ b/wiki/Path_Comment.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Comment + ## Description This tool inserts a comment. When exporting a project to G-code, the comments will be inserted in the G-code program, and can be read by people reading the file. Some machine controllers will also display comments on their display screens. @@ -35,4 +37,7 @@ Example: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Comment diff --git a/wiki/Path_Contour.md b/wiki/Path_Contour.md index ff02350abd..19ee5f0d65 100644 --- a/wiki/Path_Contour.md +++ b/wiki/Path_Contour.md @@ -1,2 +1,5 @@ # Path Contour 1. REDIRECT [Path\_Profile](Path_Profile.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Contour diff --git a/wiki/Path_Copy.md b/wiki/Path_Copy.md index fd0db44a94..7e59a77f9e 100644 --- a/wiki/Path_Copy.md +++ b/wiki/Path_Copy.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Copy + ## Description This tool creates a copy of a selected path @@ -28,4 +30,7 @@ The copy stays linked with the original path. If the original changes, so does t - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Copy diff --git a/wiki/Path_Custom.md b/wiki/Path_Custom.md index 4e3c6ac6bd..e9892dac6d 100644 --- a/wiki/Path_Custom.md +++ b/wiki/Path_Custom.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Custom + ## Description This tool inserts a path object which is built from hand coded custom G-code. @@ -33,4 +35,7 @@ Note that Feed rates will be correctly generated by the Postprocessor, only if t - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Custom diff --git a/wiki/Path_Development_Roadmap.md b/wiki/Path_Development_Roadmap.md index f6f8da4f0c..d12225c253 100644 --- a/wiki/Path_Development_Roadmap.md +++ b/wiki/Path_Development_Roadmap.md @@ -1,11 +1,4 @@ # Path Development Roadmap - - - - - - - ## Purpose This page will discuss the strategic objectives for the [Path Workbench](Path_Workbench.md). This shouldn\'t be a list of features to implement but broader objectives that will steer the overall direction of Path development. @@ -147,4 +140,7 @@ The following list is not individual bugs but shows how Path is inconsistent in - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Development Roadmap diff --git a/wiki/Path_Dressup.md b/wiki/Path_Dressup.md index f3fab1b6de..bb98f1d9f4 100644 --- a/wiki/Path_Dressup.md +++ b/wiki/Path_Dressup.md @@ -1,2 +1,5 @@ # Path Dressup 1. REDIRECT [Path\_Workbench](Path_Workbench.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Dressup diff --git a/wiki/Path_DressupBoundary.md b/wiki/Path_DressupBoundary.md index c38e507c7c..31736485a2 100644 --- a/wiki/Path_DressupBoundary.md +++ b/wiki/Path_DressupBoundary.md @@ -1,2 +1,5 @@ # Path DressupBoundary 1. REDIRECT [Path\_DressupPathBoundary](Path_DressupPathBoundary.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupBoundary diff --git a/wiki/Path_DressupDogbone.md b/wiki/Path_DressupDogbone.md index 193fb2d0a2..945c8a1c94 100644 --- a/wiki/Path_DressupDogbone.md +++ b/wiki/Path_DressupDogbone.md @@ -6,6 +6,8 @@ SeeAlso:[Path DressupTag](Path_DressupTag.md), [Path DressupRampEntry](Path_DressupRampEntry.md), [Path DressupDragKnife](Path_DressupDragKnife.md) --- +# Path DressupDogbone + ## Description This tool dresses up an existing path to overcut corners on inside angles of a profile or contour operation. A cylindrical cutter cannot cut all the way into an acute corner without colliding with the model. In certain cases, it may be preferable to violate the model and ensure that the material at the corner is removed. This is especially necessary if parts are going to intersect/interlock with each other. @@ -30,4 +32,7 @@ The dogbone dressup needs a straight path segment (G1) before and after the corn - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupDogbone diff --git a/wiki/Path_DressupDragKnife.md b/wiki/Path_DressupDragKnife.md index 95da750c30..983d5819da 100644 --- a/wiki/Path_DressupDragKnife.md +++ b/wiki/Path_DressupDragKnife.md @@ -6,6 +6,8 @@ SeeAlso:[Path DressupTag](Path_DressupTag.md), [Path DressupRampEntry](Path_DressupRampEntry.md), [Path DressupDogbone](Path_DressupDogbone.md) --- +# Path DressupDragKnife + ## Description A drag knife uses a cutting edge on a pivot to cut sheet material like vinyl, cardboard, and leather. The cutting point is not aligned with the center of the spindle but rather follows it as the spindle moves. Because the cutting point is offset, the path must be modified to extend past the endpoint of each segment. Also, the dragknife is incapable of making extremely tight turns. To compensate, a pivot \'corner action\' is inserted which momentarily lifts the blade slightly and then pivots into the new position. @@ -26,4 +28,7 @@ This tool dresses up an existing path to add corner actions and edge extensions - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupDragKnife diff --git a/wiki/Path_DressupLeadInOut.md b/wiki/Path_DressupLeadInOut.md index d158da55ad..26729a8994 100644 --- a/wiki/Path_DressupLeadInOut.md +++ b/wiki/Path_DressupLeadInOut.md @@ -6,6 +6,8 @@ SeeAlso:[Path DressupDogbone](Path_DressupDogbone.md), [Path DressupTag](Path_DressupTag.md), [Path DressupRampEntry](Path_DressupRampEntry.md), [Path DressupDragKnife](Path_DressupDragKnife.md) --- +# Path DressupLeadInOut + ## Description ## Usage @@ -28,4 +30,7 @@ Add python code here - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupLeadInOut diff --git a/wiki/Path_DressupPathBoundary.md b/wiki/Path_DressupPathBoundary.md index 643f25b50e..15eafa4372 100644 --- a/wiki/Path_DressupPathBoundary.md +++ b/wiki/Path_DressupPathBoundary.md @@ -6,6 +6,8 @@ SeeAlso:[Path DressupTag](Path_DressupTag.md), [Path DressupRampEntry](Path_DressupRampEntry.md) --- +# Path DressupPathBoundary + ## Description Boundary dress-up allows restricting the extent of a path to a smaller part of the object. For example, restricting a profile path to just one face or part of the model. @@ -29,4 +31,7 @@ Boundary dress-up allows restricting the extent of a path to a smaller part of t - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupPathBoundary diff --git a/wiki/Path_DressupRampEntry.md b/wiki/Path_DressupRampEntry.md index ac31c5fa62..e661af3b34 100644 --- a/wiki/Path_DressupRampEntry.md +++ b/wiki/Path_DressupRampEntry.md @@ -6,6 +6,8 @@ SeeAlso:[Path DressupTag](Path_DressupTag.md), [Path DressupDogbone](Path_DressupDogbone.md), [Path DressupDragKnife](Path_DressupDragKnife.md) --- +# Path DressupRampEntry + ## Description This tool dresses up an existing path to add a ramp entry @@ -30,4 +32,7 @@ This tool dresses up an existing path to add a ramp entry - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupRampEntry diff --git a/wiki/Path_DressupTag.md b/wiki/Path_DressupTag.md index 7341a1feff..5121ea72c6 100644 --- a/wiki/Path_DressupTag.md +++ b/wiki/Path_DressupTag.md @@ -6,6 +6,8 @@ SeeAlso:[Path DressupRampEntry](Path_DressupRampEntry.md), [Path DressupDogbone](Path_DressupDogbone.md), [Path DressupDragKnife](Path_DressupDragKnife.md) --- +# Path DressupTag + ## Description This tool dresses up an existing path (usually a 2D contour cutting path) to leave tags that hold the part in place. Without them a part (which is not fixed to the base) is liable to fly off the machine uncontrollably as the final cut is made. The tags are intended to be broken off by hand (or using a chisel) and then filed flat to finish the part. @@ -30,4 +32,7 @@ Tags are automatically generated evenly spaced along the contour, beginning with - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupTag diff --git a/wiki/Path_Drilling.md b/wiki/Path_Drilling.md index f8403b3593..6a61d779ff 100644 --- a/wiki/Path_Drilling.md +++ b/wiki/Path_Drilling.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Drilling + ## Description The Drilling command generates a drilling Operation in the Job. @@ -225,4 +227,7 @@ Example: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Drilling diff --git a/wiki/Path_EditToolsTable.md b/wiki/Path_EditToolsTable.md index a43cb22f19..6b66036e5c 100644 --- a/wiki/Path_EditToolsTable.md +++ b/wiki/Path_EditToolsTable.md @@ -1,2 +1,5 @@ # Path EditToolsTable 1. REDIRECT [Path\_ToolLibraryEdit](Path_ToolLibraryEdit.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path EditToolsTable diff --git a/wiki/Path_Engrave.md b/wiki/Path_Engrave.md index 1267f32c13..bd1fd99852 100644 --- a/wiki/Path_Engrave.md +++ b/wiki/Path_Engrave.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Engrave + ## Description The [Path Engrave](Path_Engrave.md) tool is primarily for engraving a [Draft ShapeString](Draft_ShapeString.md) onto a part. However, it may be useful for other kinds of 2D. @@ -94,4 +96,7 @@ Example: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Engrave diff --git a/wiki/Path_ExportTemplate.md b/wiki/Path_ExportTemplate.md index 3422cf98f4..43bbb911ce 100644 --- a/wiki/Path_ExportTemplate.md +++ b/wiki/Path_ExportTemplate.md @@ -6,6 +6,8 @@ SeeAlso:[Path SetupSheet](Path_SetupSheet.md) --- +# Path ExportTemplate + ## Description Exporting Job templates provides a convenient mechanism to save commonly used Job definitions from within an existing Job. This facilitates the setup of future Jobs, that are largely similar, by allowing Job template import during the Job creation process. @@ -46,4 +48,7 @@ The **Edit → Preferences... → Path → Job Preferences tab, Defaults → Tem - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ExportTemplate diff --git a/wiki/Path_FAQ.md b/wiki/Path_FAQ.md index 200062b16b..4a518d6804 100644 --- a/wiki/Path_FAQ.md +++ b/wiki/Path_FAQ.md @@ -1,9 +1,4 @@ # Path FAQ - - - - - ## How many axes can Path Workbench handle? At the moment, Version 0.18, Path Workbench can handle up to 3 axis milling. Currently, 4th-axis capabilities are under development for the next official release, with some Path Workbench operations already upgraded to basic 4th-axis status. @@ -228,4 +223,7 @@ This is only a matter of displaying the path. You can change this in the prefere - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FAQ diff --git a/wiki/Path_FacePocket.md b/wiki/Path_FacePocket.md index 0075fa46f8..0387866c41 100644 --- a/wiki/Path_FacePocket.md +++ b/wiki/Path_FacePocket.md @@ -1,2 +1,5 @@ # Path FacePocket 1. REDIRECT [Path\_Pocket\_Shape](Path_Pocket_Shape.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FacePocket diff --git a/wiki/Path_FaceProfile.md b/wiki/Path_FaceProfile.md index 192890520a..5cbcbfff7b 100644 --- a/wiki/Path_FaceProfile.md +++ b/wiki/Path_FaceProfile.md @@ -1,2 +1,5 @@ # Path FaceProfile 1. REDIRECT [Path\_Profile](Path_Profile.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FaceProfile diff --git a/wiki/Path_Fixture.md b/wiki/Path_Fixture.md index 88842fe086..d6e9a32e69 100644 --- a/wiki/Path_Fixture.md +++ b/wiki/Path_Fixture.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Fixture + ## Description This tool sets the Work Offset Coordinate Fixture of the machine CNC controller. @@ -37,4 +39,7 @@ The G59 Fixture is used to expand available fixtures. The degree of expansion im - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Fixture diff --git a/wiki/Path_FromShapes.md b/wiki/Path_FromShapes.md index 7742e4b8d3..740485c9e3 100644 --- a/wiki/Path_FromShapes.md +++ b/wiki/Path_FromShapes.md @@ -1,2 +1,5 @@ # Path FromShapes 1. REDIRECT [Path\_Shape](Path_Shape.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FromShapes diff --git a/wiki/Path_GcodeFromShape.md b/wiki/Path_GcodeFromShape.md index c79705104d..1d085acfbc 100644 --- a/wiki/Path_GcodeFromShape.md +++ b/wiki/Path_GcodeFromShape.md @@ -1,2 +1,5 @@ # Path GcodeFromShape 1. REDIRECT [Path\_Shape](Path_Shape.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path GcodeFromShape diff --git a/wiki/Path_Helix.md b/wiki/Path_Helix.md index de7dd3c6bf..1a268cb6c9 100644 --- a/wiki/Path_Helix.md +++ b/wiki/Path_Helix.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Helix + ## Description The [Path Helix](Path_Helix.md) command appends a helical interpolation Operation to the Job. Clockwise Helix interpolation outputs (G2) G-Code commands. Counterclockwise outputs (G3) G-Code commands. Step Over percentage specifies the concentric step-over as a percentage of the Tool diameter. @@ -51,4 +53,7 @@ Example: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Helix diff --git a/wiki/Path_Inspect.md b/wiki/Path_Inspect.md index 6942e343e3..b5b93c41dc 100644 --- a/wiki/Path_Inspect.md +++ b/wiki/Path_Inspect.md @@ -6,6 +6,8 @@ Shortcut:**P** **I** --- +# Path Inspect + ## Description This tool allows inspection of the internal FreeCAD G-code dialect contents of a Path Operation object. @@ -28,4 +30,7 @@ This tool allows inspection of the internal FreeCAD G-code dialect contents of a - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Inspect diff --git a/wiki/Path_Job.md b/wiki/Path_Job.md index 30b7dc4ff0..822f916bfd 100644 --- a/wiki/Path_Job.md +++ b/wiki/Path_Job.md @@ -6,6 +6,8 @@ Shortcut:**P** **J** --- +# Path Job + ## Description The Job tool creates a new Job object in the active document. The Job object contains the following information: @@ -74,4 +76,7 @@ If you have a job which contends more than one path operation, you can determine - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Job diff --git a/wiki/Path_MillFace.md b/wiki/Path_MillFace.md index f717444706..d068c53c59 100644 --- a/wiki/Path_MillFace.md +++ b/wiki/Path_MillFace.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path MillFace + ## Description The [Mill Face](Path_MillFace.md) tool creates a path to perform a facing operation on a horizontal surface. This operation is generally used: @@ -212,4 +214,7 @@ Example: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path MillFace diff --git a/wiki/Path_Module.md b/wiki/Path_Module.md index 748c5c167f..d1376114a3 100644 --- a/wiki/Path_Module.md +++ b/wiki/Path_Module.md @@ -2,3 +2,6 @@ 1. REDIRECT [Path Workbench](Path_Workbench.md) [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Module diff --git a/wiki/Path_OpActive.md b/wiki/Path_OpActive.md index 847bb97f2c..e3c1ae6554 100644 --- a/wiki/Path_OpActive.md +++ b/wiki/Path_OpActive.md @@ -1,2 +1,5 @@ # Path OpActive 1. REDIRECT [Path\_OpActiveToggle](Path_OpActiveToggle.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path OpActive diff --git a/wiki/Path_OpActiveToggle.md b/wiki/Path_OpActiveToggle.md index b14008d91c..6ace28fd84 100644 --- a/wiki/Path_OpActiveToggle.md +++ b/wiki/Path_OpActiveToggle.md @@ -6,6 +6,8 @@ Shortcut:**P** **X ** --- +# Path OpActiveToggle + ## Description The ** [Active](Path_OpActiveToggle.md)** tool in the [Path Workbench](Path_Workbench.md) is used to toggle the active state of an existing path operation. This tool is not available, indicated as a light gray version of the icon, until you have created one or more path operations. Once your [Job](Path_Job.md) has at least one path operation the icon will be fully colored indicating it is available for use. @@ -60,4 +62,7 @@ Example: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path OpActiveToggle diff --git a/wiki/Path_PathCommands.md b/wiki/Path_PathCommands.md index 0ffb851f9f..3f3ccb073e 100644 --- a/wiki/Path_PathCommands.md +++ b/wiki/Path_PathCommands.md @@ -1,2 +1,5 @@ # Path PathCommands 1. REDIRECT [Path\_Workbench](Path_Workbench.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path PathCommands diff --git a/wiki/Path_Pocket_3D.md b/wiki/Path_Pocket_3D.md index d357b59ccf..f91a338be6 100644 --- a/wiki/Path_Pocket_3D.md +++ b/wiki/Path_Pocket_3D.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Pocket 3D + ## Description This command inserts a path [3D Pocket](Path_Pocket_3D.md) object into the Job. This operation takes into account the bottom surface of the pocket, as well as selected walls that are not vertical. In its current state, this operation is used to rough out a pocket with non-vertical walls and/or non-horizontal bottom. A common finishing technique is to use a ball end mill with the experimental [3D Surface](Path_3DSurface.md) operation. Sample image of 3D Pocket operation used to clear cylindrical battery holder. @@ -207,4 +209,7 @@ Example: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Pocket 3D diff --git a/wiki/Path_Pocket_Shape.md b/wiki/Path_Pocket_Shape.md index 551e298deb..88c4208258 100644 --- a/wiki/Path_Pocket_Shape.md +++ b/wiki/Path_Pocket_Shape.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Pocket Shape + ## Description This tool creates a pocketing operation from selected bottom faces, or walls, of one ore more pockets of the jobs base object. @@ -226,4 +228,7 @@ Note: It is suggested that you do not edit the Placement property of path operat - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Pocket Shape diff --git a/wiki/Path_Post.md b/wiki/Path_Post.md index 7b30483c37..e278ca6482 100644 --- a/wiki/Path_Post.md +++ b/wiki/Path_Post.md @@ -6,6 +6,8 @@ Shortcut:**P** **P** --- +# Path Post + ## Description The ** [Post](Path_Post.md)** command exports the selected ** [Path Job](Path_Job.md)** to a G-code file. @@ -111,4 +113,7 @@ Included Postprocessors are saved in the **FreeCAD.Mod.Path.Pathscripts.Post** b - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Post diff --git a/wiki/Path_PostprocessorCustomization.md b/wiki/Path_PostprocessorCustomization.md index 5b0f1c38c1..01deac832d 100644 --- a/wiki/Path_PostprocessorCustomization.md +++ b/wiki/Path_PostprocessorCustomization.md @@ -1,2 +1,5 @@ # Path PostprocessorCustomization 1. REDIRECT [Path Postprocessor Customization](Path_Postprocessor_Customization.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path PostprocessorCustomization diff --git a/wiki/Path_Postprocessor_Customization.md b/wiki/Path_Postprocessor_Customization.md index a8816d8555..55c6da18f0 100644 --- a/wiki/Path_Postprocessor_Customization.md +++ b/wiki/Path_Postprocessor_Customization.md @@ -1,11 +1,4 @@ # Path Postprocessor Customization - - - - - - - ## Introduction FreeCAD uses as internal representation for the generated paths, so called G-codes. They can describe such things as: speed and feed rates, stopping the motor etc\... But the most important thing is the movements they describe. These movements are rather simple: They can be straight lines or they can be circular arcs. More sophisticated curves such as B-splines are already approximated by FreeCAD\'s [Path Workbench](Path_Workbench.md). @@ -99,4 +92,7 @@ You\'ll see that both functions also call the \"linenumber()\" function. If the - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Postprocessor Customization diff --git a/wiki/Path_Preferences.md b/wiki/Path_Preferences.md index 571aa06369..5e63676e69 100644 --- a/wiki/Path_Preferences.md +++ b/wiki/Path_Preferences.md @@ -1,11 +1,4 @@ # Path Preferences - - - - - - - ## Overview The preferences screen of the [Path Workbench](Path_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → Path**. @@ -42,3 +35,6 @@ There are three sections: General, Post processor, and Setup. {{Path_Tools_navi}} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Preferences diff --git a/wiki/Path_Profile.md b/wiki/Path_Profile.md index 8a23fbccef..7cfbc754d9 100644 --- a/wiki/Path_Profile.md +++ b/wiki/Path_Profile.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Profile + ## Description The ** [Profile](Path_Profile.md)** tool creates a contour operation based on selected features of the model. The tool was introduced in version 0.19. It offers three operations that were handled by separate tools in previous versions. @@ -286,4 +288,7 @@ Example: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Profile diff --git a/wiki/Path_ProfileEdges.md b/wiki/Path_ProfileEdges.md index ad6429bee6..8fe7e9c993 100644 --- a/wiki/Path_ProfileEdges.md +++ b/wiki/Path_ProfileEdges.md @@ -1,2 +1,5 @@ # Path ProfileEdges 1. REDIRECT [Path\_Profile](Path_Profile.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ProfileEdges diff --git a/wiki/Path_ProfileFace.md b/wiki/Path_ProfileFace.md index 4be12383ff..69cec9c11d 100644 --- a/wiki/Path_ProfileFace.md +++ b/wiki/Path_ProfileFace.md @@ -1,2 +1,5 @@ # Path ProfileFace 1. REDIRECT [Path\_Profile](Path_Profile.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ProfileFace diff --git a/wiki/Path_Project.md b/wiki/Path_Project.md index 451af35a65..43c01034f6 100644 --- a/wiki/Path_Project.md +++ b/wiki/Path_Project.md @@ -1,2 +1,5 @@ # Path Project 1. REDIRECT [Path\_Job](Path_Job.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Project diff --git a/wiki/Path_Sanity.md b/wiki/Path_Sanity.md index cddb56e822..10f7104aa1 100644 --- a/wiki/Path_Sanity.md +++ b/wiki/Path_Sanity.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Path Sanity + ## Description Many Path users are hobbyists and DIYers. As such, they use their CNC machines to run G-code that they configured and generated themselves. That isn\'t the case for most professional/commercial users. In professional shops, different people are responsible for creating the G-code (CNC programmers) from those who run it on the machines (CNC operator). @@ -76,4 +78,7 @@ Asciidoctor is a fast open-source text processor for converting asciidoc into HT - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Sanity diff --git a/wiki/Path_SelectLoop.md b/wiki/Path_SelectLoop.md index ba16a4c9a7..b78b685e45 100644 --- a/wiki/Path_SelectLoop.md +++ b/wiki/Path_SelectLoop.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Path SelectLoop + ## Description The ** [Path SelectLoop](Path_SelectLoop.md)** command completes a selection of edges that form a loop. @@ -27,4 +29,7 @@ The ** [Path SelectLoop](Path_S - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SelectLoop diff --git a/wiki/Path_SetupSheet.md b/wiki/Path_SetupSheet.md index 7262a450f7..a178ed05af 100644 --- a/wiki/Path_SetupSheet.md +++ b/wiki/Path_SetupSheet.md @@ -1,11 +1,4 @@ # Path SetupSheet - - - - - - - ## Description Using a SetupSheet allows the user to customize how the various property values for operations will be calculated. The user always has the option to override the SetupSheet values with an explicit value or change the way SetupSheet values are calculated. @@ -61,4 +54,7 @@ Other values in the SetupSheet can be referenced directly: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SetupSheet diff --git a/wiki/Path_Shape.md b/wiki/Path_Shape.md index d497aaeb8b..ee1e89bafa 100644 --- a/wiki/Path_Shape.md +++ b/wiki/Path_Shape.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Shape + ## Description Path Shape doesn\'t match the current Path workflow. For that reason it\'s moved to the experimental features. @@ -116,4 +118,7 @@ Path.fromShapes(shapes, start=Vector(), return_end=False arc_plane=1, sort_mode= - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Shape diff --git a/wiki/Path_SimpleCopy.md b/wiki/Path_SimpleCopy.md index a1bc8c56f6..3f07ad8935 100644 --- a/wiki/Path_SimpleCopy.md +++ b/wiki/Path_SimpleCopy.md @@ -6,6 +6,8 @@ SeeAlso:[Path Copy](Path_Copy.md) --- +# Path SimpleCopy + ## Description This tool creates a non-parametric copy of a given path. @@ -22,4 +24,7 @@ This tool creates a non-parametric copy of a given path. - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SimpleCopy diff --git a/wiki/Path_Simulator.md b/wiki/Path_Simulator.md index 7efb4fe117..a4bccd6a68 100644 --- a/wiki/Path_Simulator.md +++ b/wiki/Path_Simulator.md @@ -7,6 +7,8 @@ SeeAlso:[Path Inspect](Path_Inspect.md) --- +# Path Simulator + ## Description This tool allows Simulation of the Path Job by sweeping 3D Models of the Tools used in each Operation, along the G-Code paths, subtracting material from the Stock, where the stock and tool overlap, providing visualization of the Job. This allows detection and isolation of errors prior to running the Job on a mill. @@ -43,4 +45,7 @@ This tool allows Simulation of the Path Job by sweeping 3D Models of the Tools u - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Simulator diff --git a/wiki/Path_Slot.md b/wiki/Path_Slot.md index e1e77dea5c..4588861503 100644 --- a/wiki/Path_Slot.md +++ b/wiki/Path_Slot.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Slot + ## Description This tool creates a simple slotting operation using various methods of input. Inputs include: @@ -251,4 +253,7 @@ Example: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Slot diff --git a/wiki/Path_Stop.md b/wiki/Path_Stop.md index c343a823a1..6414b14057 100644 --- a/wiki/Path_Stop.md +++ b/wiki/Path_Stop.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Stop + ## Description This tool inserts a Stop command (M1). This command will Pause a running program on the CNC controller, waiting for user interaction to continue. @@ -22,4 +24,7 @@ This tool inserts a Stop command (M1). This command will Pause a running program - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Stop diff --git a/wiki/Path_Surface.md b/wiki/Path_Surface.md index c75d923d12..25940c7a0c 100644 --- a/wiki/Path_Surface.md +++ b/wiki/Path_Surface.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Surface + ## Description This tool creates a new ** [3D Surface](Path_3DSurface.md)** operation which is capable of generating G-Code paths for the entire top surface of a 3D model (or is able to work with selected faces) and allows for faces to be avoided. This operation offers multiple cut patterns: Line, Zigzag, Circular, Circular Zigzag, Offset, and Spiral (similar to an adaptive pattern). As of version 0.19, this operation offers many customizations to allow for greater productivity. @@ -413,4 +415,7 @@ Note: It is suggested that you do not edit the Placement property of path operat - {{Path Tools navi}} + {{Path Tools navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Surface diff --git a/wiki/Path_ToolBit.md b/wiki/Path_ToolBit.md index ffc5ef5297..c96a188219 100644 --- a/wiki/Path_ToolBit.md +++ b/wiki/Path_ToolBit.md @@ -1,11 +1,4 @@ # Path ToolBit - - - - - - - ## Description Toolbits are the foundation of the [Path Tools](Path_Tools.md) system. They represent a specific tool that can be used in a Path Job to generate a toolpath. Each toolbit is stored as a JSON file. JSON is structured data that can be easily parsed by macros or python scripts but remains human readable. Describing toolbits with JSON allows for the possibility of automatically creating large collections of accurate toolbits automatically or with a script. @@ -51,4 +44,7 @@ Within the FreeCAD GUI the Path toolbit library manager provides a mechanism to - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolBit diff --git a/wiki/Path_ToolBitDock.md b/wiki/Path_ToolBitDock.md index a4ffc2078c..eb44e8b389 100644 --- a/wiki/Path_ToolBitDock.md +++ b/wiki/Path_ToolBitDock.md @@ -8,6 +8,8 @@ SeeAlso:[Path ToolBitLibraryOpen](Path_ToolBitLibraryOpen.md), [Path Tools](Path_Tools.md), [Path ToolBit](Path_ToolBit.md) --- +# Path ToolBitDock + ## Description ![](images/Toolbit_Dock.png ) @@ -41,4 +43,7 @@ A manager button at the top right (4) allows the user to launch the library mana - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolBitDock diff --git a/wiki/Path_ToolBitLibraryOpen.md b/wiki/Path_ToolBitLibraryOpen.md index 508eb46fc2..765ad28929 100644 --- a/wiki/Path_ToolBitLibraryOpen.md +++ b/wiki/Path_ToolBitLibraryOpen.md @@ -7,6 +7,8 @@ SeeAlso:[Path ToolBitDock](Path_ToolBitDock.md), [Path Tools](Path_Tools.md), [Path ToolBit](Path_ToolBit.md) --- +# Path ToolBitLibraryOpen + ## Description The ** [Tool xxxxx](Path_ToolBitLibraryOpen.md) @@ -88,4 +90,7 @@ C. Double clicking anywhere else in the row will open the toolbit editing panel. - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolBitLibraryOpen diff --git a/wiki/Path_ToolBit_Dock.md b/wiki/Path_ToolBit_Dock.md index dfcd53f1e2..c837e20201 100644 --- a/wiki/Path_ToolBit_Dock.md +++ b/wiki/Path_ToolBit_Dock.md @@ -1,2 +1,5 @@ # Path ToolBit Dock 1. REDIRECT [Path ToolBitDock](Path_ToolBitDock.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolBit Dock diff --git a/wiki/Path_ToolBit_Library.md b/wiki/Path_ToolBit_Library.md index 3d86728c8c..0639fd1964 100644 --- a/wiki/Path_ToolBit_Library.md +++ b/wiki/Path_ToolBit_Library.md @@ -1,11 +1,4 @@ # Path ToolBit Library - - - - - - - ## Description Within the [Path Tools](Path_Tools.md) system, Toolbits are organized into libraries. A library is simply a list of toolbits and can be used by the user for whichever purpose is needed. A tool library is nevertheless a great representation for a physical grouping of tools, such as in an automatic tool changer. Or tools might be grouped by intended use, for example all tools for cutting plastic. @@ -51,4 +44,7 @@ A toolbit library can be exported to create a [LinuxCNC Tool Table](http://wiki. - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolBit Library diff --git a/wiki/Path_ToolBit_Library_Manager.md b/wiki/Path_ToolBit_Library_Manager.md index 8574e24eee..54026fccba 100644 --- a/wiki/Path_ToolBit_Library_Manager.md +++ b/wiki/Path_ToolBit_Library_Manager.md @@ -1,2 +1,5 @@ # Path ToolBit Library Manager 1. REDIRECT [Path ToolBitLibraryOpen](Path_ToolBitLibraryOpen.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolBit Library Manager diff --git a/wiki/Path_ToolController.md b/wiki/Path_ToolController.md index c6491f8786..ad75ee03c3 100644 --- a/wiki/Path_ToolController.md +++ b/wiki/Path_ToolController.md @@ -1,11 +1,4 @@ # Path ToolController - - - - - - - ## Description A tool controller carries properties for how a tool should be used in one or more operations. @@ -25,4 +18,7 @@ Tool Number - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolController diff --git a/wiki/Path_ToolLibraryEdit.md b/wiki/Path_ToolLibraryEdit.md index 23afa88aab..5d9f3a229c 100644 --- a/wiki/Path_ToolLibraryEdit.md +++ b/wiki/Path_ToolLibraryEdit.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Path ToolLibraryEdit + ## Description The ** [Tool Manager/Editor](Path_ToolLibraryEdit.md)** allows to edit the different tools of the tooltable contained in the machine object of a ** [Path Job](Path_Job.md)**. This tooltable is used by the different operations contained in the project to obtain necessary information about the current tool. @@ -46,4 +48,7 @@ The handling is straight forward: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolLibraryEdit diff --git a/wiki/Path_ToolShape.md b/wiki/Path_ToolShape.md index 313b79e931..dc0f0c51c6 100644 --- a/wiki/Path_ToolShape.md +++ b/wiki/Path_ToolShape.md @@ -1,11 +1,4 @@ # Path ToolShape - - - - - - - ## Description ToolShapes are a core part of the [Path Tools](Path_Tools.md) system. ToolShapes are the templates from which ToolBits are created. They represent the specific physical shape of a tool. A ToolShape does not completely describe the bit - for that some additional parameters are needed which will be added when an actual bit is parameterized from the template. @@ -91,4 +84,7 @@ Important notes: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolShape diff --git a/wiki/Path_Tools.md b/wiki/Path_Tools.md index ec46ebe8bd..128b912b90 100644 --- a/wiki/Path_Tools.md +++ b/wiki/Path_Tools.md @@ -1,11 +1,4 @@ # Path Tools - - - - - - - ## Description This page describes the ToolBit architecture used in the [Path Workbench](Path_Workbench.md) which became the default for FreeCAD v 0.19. For the older \'Legacy\' tool system see [Path ToolLibraryEdit](Path_ToolLibraryEdit.md). Tools in the Path workbench are handled differently than in other CAM packages. @@ -131,4 +124,7 @@ Once the desired tool shape(profile) exists, you need to create a [tool bit](Pat - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Tools diff --git a/wiki/Path_Vcarve.md b/wiki/Path_Vcarve.md index 62b9f3131c..8135a9009b 100644 --- a/wiki/Path_Vcarve.md +++ b/wiki/Path_Vcarve.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Vcarve + ## Description The [Path Vcarve](Path_Vcarve.md) tool is primarily for center-line engraving a [Draft ShapeString](Draft_ShapeString.md) onto a part. However, it may be useful for other kinds of 2D. @@ -151,4 +153,7 @@ Example: - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Vcarve diff --git a/wiki/Path_Walkthrough_for_the_Impatient.md b/wiki/Path_Walkthrough_for_the_Impatient.md index b5ef22e0ae..b4c6b6d538 100644 --- a/wiki/Path_Walkthrough_for_the_Impatient.md +++ b/wiki/Path_Walkthrough_for_the_Impatient.md @@ -1,7 +1,4 @@ # Path Walkthrough for the Impatient - - - {{TutorialInfo |Topic=Path Workbench |Level=Beginner/Moderate @@ -159,4 +156,7 @@ The final step to generate G-Code for the target mill is to postprocess the Job. {{Tutorials navi -}} {{Path Tools navi}} +}} {{Path Tools navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Walkthrough for the Impatient diff --git a/wiki/Path_Waterline.md b/wiki/Path_Waterline.md index a2aa778dba..de06ea91d0 100644 --- a/wiki/Path_Waterline.md +++ b/wiki/Path_Waterline.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Waterline + ## Description This tool creates a new Waterline operation. As of 0.19\_pre, the Waterline operation works on the entire model to generate G-Code for the Job. Currently, within the operation\'s settings there is no functionality to select specific areas, faces, or regions of the model. @@ -256,4 +258,7 @@ Note: It is suggested that you do not edit the Placement property of path operat - {{Path Tools navi}} + {{Path Tools navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Waterline diff --git a/wiki/Path_Workbench.md b/wiki/Path_Workbench.md index f7d8b26203..a63b03e81e 100644 --- a/wiki/Path_Workbench.md +++ b/wiki/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench - - - - - -Path workbench icon +# Path workbench icon Path Workbench @@ -221,3 +215,6 @@ See [Path scripting](Path_scripting.md). {{Path_Tools_navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench diff --git a/wiki/Path_experimental.md b/wiki/Path_experimental.md index 6241e71067..edf51eb667 100644 --- a/wiki/Path_experimental.md +++ b/wiki/Path_experimental.md @@ -1,8 +1,4 @@ # Path experimental - - - - ## Description The Path Workbench contains a set of hidden commands. They are hidden by default because they are experimental. A command can be considered experimental for any of the following reasons: @@ -39,3 +35,6 @@ Read more about the specific experimental commands on the [wiki pages that link {{Path Tools navi}} [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path experimental diff --git a/wiki/Path_fourth_axis.md b/wiki/Path_fourth_axis.md index 44354fc843..652630f02a 100644 --- a/wiki/Path_fourth_axis.md +++ b/wiki/Path_fourth_axis.md @@ -1,11 +1,4 @@ # Path fourth axis - - - - - - - ## Description These experimental features allow milling of four axis [faces](https://forum.freecadweb.org/viewtopic.php?f=15&t=36773) and [pockets](https://forum.freecadweb.org/viewtopic.php?f=15&t=35867) @@ -65,4 +58,7 @@ There is currently no GUI integration of 4th-axis rotational settings in the rel - {{Path_Tools_navi}} + {{Path_Tools_navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path fourth axis diff --git a/wiki/Path_scripting.md b/wiki/Path_scripting.md index e60101c1d5..233f7dde43 100644 --- a/wiki/Path_scripting.md +++ b/wiki/Path_scripting.md @@ -1,11 +1,4 @@ # Path scripting - - - - - - - ## Introduction The Path workbench offers tools to import, create, manipulate and export [machine toolpaths](http://en.wikipedia.org/wiki/G-code) in FreeCAD. With it, the user is able to import, visualize and modify existing gcode programs, generate toolpaths from 3D shapes, and export these toolpaths to gcode. @@ -443,3 +436,6 @@ doc.recompute() {{Path_Tools_navi}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path scripting diff --git a/wiki/Piffpoof_Macro_Half-Hull_Model.md b/wiki/Piffpoof_Macro_Half-Hull_Model.md index 6da218a7dc..1a630f3aa6 100644 --- a/wiki/Piffpoof_Macro_Half-Hull_Model.md +++ b/wiki/Piffpoof_Macro_Half-Hull_Model.md @@ -1,5 +1,5 @@ # Piffpoof Macro Half-Hull Model - # +# # # Half Hull # @@ -1182,3 +1182,6 @@ resetSketchesVisibility() [Category:Macros](Category:Macros.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > Piffpoof Macro Half-Hull Model diff --git a/wiki/Pivy.md b/wiki/Pivy.md index fd4b5d0185..541ebd34c4 100644 --- a/wiki/Pivy.md +++ b/wiki/Pivy.md @@ -1,8 +1,4 @@ # Pivy - - - - ## Introduction [Pivy](Pivy.md) is a [Python](Python.md) binding library for [Coin](https://github.com/coin3d), the 3D-rendering library used in FreeCAD to display things in a [3D view](3D_view.md). Coin is an open source implementation of the \"Open Inventor\" specification to handle graphics. Therefore, in FreeCAD, the terms \"Pivy\", \"Coin\" or \"Open Inventor\" refer to the same thing essentially. @@ -164,3 +160,6 @@ These links provide reference documentation for Coin v3.x. The differences with {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Pivy diff --git a/wiki/Placement.md b/wiki/Placement.md index 608f8a28b9..0f3aa04986 100644 --- a/wiki/Placement.md +++ b/wiki/Placement.md @@ -1,6 +1,4 @@ # Placement - - ## Overview **Placement** is how FreeCAD specifies the location and attitude (orientation) of an object in space. Placement can be specified in multiple forms and manipulated via [scripting](Python_scripting_tutorial#Vectors_and_placements.md), the [property editor](Property_editor.md) or selecting **Edit → Placement...** to open the [Placement task panel](Std_Placement.md). @@ -239,4 +237,5 @@ To make the placement of \"Sketch\" equal to that of \"Cylinder\", you would ent - This tutorial: [Aeroplane](Aeroplane.md) covers the mechanics of changing an object\'s Placement extensively. - +--- +[documentation index](../README.md) > Placement diff --git a/wiki/Placement_API.md b/wiki/Placement_API.md index 7b125bd482..b139bd958b 100644 --- a/wiki/Placement_API.md +++ b/wiki/Placement_API.md @@ -1,5 +1,5 @@ # Placement API - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** In FreeCAD, Placement defines an object\'s position and rotation. The Placement concept is explained in detail here: [Placement](Placement.md). @@ -38,3 +38,6 @@ myObj.Placement = pl [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Placement API diff --git a/wiki/Plot_Axes.md b/wiki/Plot_Axes.md index 1e633180f3..a2b15297b4 100644 --- a/wiki/Plot_Axes.md +++ b/wiki/Plot_Axes.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Axes + ## Description The standard plot module already provides a basic tool to control the plot axes . But that tool is clearly insufficient when multi-axes plots have to be handled, as is the case in the [Multi-axes plot tutorial](Plot_MultiAxes_tutorial.md). To overcome that limitation you can install the [Plot Workbench](Plot_Workbench.md) using the [Add-on manager](Std_AddonMgr.md), so a more complete tool to edit the plot axes will be available. @@ -43,3 +45,6 @@ Finally you can set the minimum and maximum values considered for each set of ax {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Axes diff --git a/wiki/Plot_Basic_tutorial.md b/wiki/Plot_Basic_tutorial.md index faa46798e5..98655fbb91 100644 --- a/wiki/Plot_Basic_tutorial.md +++ b/wiki/Plot_Basic_tutorial.md @@ -1,7 +1,4 @@ # Plot Basic tutorial - - - {{TutorialInfo |Topic=Plot Workbench Basic Tutorial |Level=Beginner @@ -146,3 +143,6 @@ Set the output image size in inches, for example use 11.7x8.3 to get a **DIN A4* {{Tutorials_navi}} {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Basic tutorial diff --git a/wiki/Plot_Grid.md b/wiki/Plot_Grid.md index 656b016855..c6637b6f35 100644 --- a/wiki/Plot_Grid.md +++ b/wiki/Plot_Grid.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Grid + ## Description This tool allows the user to enable/disable the grid lines on a specific plot. @@ -23,3 +25,6 @@ This tool acts on the active set of axis. In case of multi-axes plots you can se {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Grid diff --git a/wiki/Plot_Labels.md b/wiki/Plot_Labels.md index bf88da528b..0a5e677f98 100644 --- a/wiki/Plot_Labels.md +++ b/wiki/Plot_Labels.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Labels + ## Description This tool allows the user to edit the title and axes labels, as well as their font sizes. @@ -32,3 +34,6 @@ Select the plot tab that you want to edit, and run this tool. In case of multi-a {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Labels diff --git a/wiki/Plot_Legend.md b/wiki/Plot_Legend.md index 3c3ac8e031..a3f2126aeb 100644 --- a/wiki/Plot_Legend.md +++ b/wiki/Plot_Legend.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Legend + ## Description This tool allows the user to enable/disable the data series legend on a specific plot. @@ -23,3 +25,6 @@ Remember that the styles and labels of the data series can be edited with the [d {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Legend diff --git a/wiki/Plot_Module.md b/wiki/Plot_Module.md index a6861d99e2..3607083f77 100644 --- a/wiki/Plot_Module.md +++ b/wiki/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module - - -Plot workbench icon +# Plot workbench icon Plot Module @@ -60,3 +57,6 @@ Since the Plot Workbench is a layer on top of `matplotlib`, you are free to use {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module diff --git a/wiki/Plot_MultiAxes_tutorial.md b/wiki/Plot_MultiAxes_tutorial.md index 4c17a0a212..2c33c6937c 100644 --- a/wiki/Plot_MultiAxes_tutorial.md +++ b/wiki/Plot_MultiAxes_tutorial.md @@ -1,7 +1,4 @@ # Plot MultiAxes tutorial - - - {{TutorialInfo |Topic=Plot workbench |Level=Intermediate @@ -127,3 +124,6 @@ Now you can save your work. See the [previous tutorial](Plot_Basic_tutorial.md) {{Tutorials_navi}} {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot MultiAxes tutorial diff --git a/wiki/Plot_Positions.md b/wiki/Plot_Positions.md index 56e62f7909..ef07bc547e 100644 --- a/wiki/Plot_Positions.md +++ b/wiki/Plot_Positions.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Positions + ## Description This tool allows the user to edit the position of some items like titles, axes labels and legend. @@ -28,3 +30,6 @@ Select the plot tab that you want to edit, and run this tool. Then you can selec {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Positions diff --git a/wiki/Plot_Save.md b/wiki/Plot_Save.md index 0d89647be6..cd7230ca17 100644 --- a/wiki/Plot_Save.md +++ b/wiki/Plot_Save.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Save + ## Description The standard plot module already provides a minimum tool to save plots . If you install the [Plot Workbench](Plot_Workbench.md) using the [Add-on manager](Std_AddonMgr.md), a more complete tool to save the active plot will be available. With this tool you can also select the size and resolution of the output image. @@ -29,3 +31,6 @@ Select the plot tab that you want to save, and run this tool. Use the path selec {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Save diff --git a/wiki/Plot_Series.md b/wiki/Plot_Series.md index 7a2caebdd1..f4d62388e0 100644 --- a/wiki/Plot_Series.md +++ b/wiki/Plot_Series.md @@ -5,6 +5,8 @@ ‏‎ Workbenches:[Plot](Plot_Module.md) --- +# Plot Series + ## Description The standard plot module already provides a tool to edit the plot series style . But if you install the [Plot Workbench](Plot_Workbench.md) using the [Add-on manager](Std_AddonMgr.md), a more complete and straigthforward tool will be available. @@ -33,3 +35,6 @@ Select the plot tab that you want to edit, and run this tool. Then select the se {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Series diff --git a/wiki/Plot_Workbench.md b/wiki/Plot_Workbench.md index ee85fb8c34..8687273fe2 100644 --- a/wiki/Plot_Workbench.md +++ b/wiki/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench 1. REDIRECT [Plot Module](Plot_Module.md) + +--- +[documentation index](../README.md) > Plot Workbench diff --git a/wiki/Plugin_Loader.md b/wiki/Plugin_Loader.md index 0247620db9..15c1b704ad 100644 --- a/wiki/Plugin_Loader.md +++ b/wiki/Plugin_Loader.md @@ -1,2 +1,5 @@ # Plugin Loader 1. REDIRECT [Std\_AddonMgr](Std_AddonMgr.md) + +--- +[documentation index](../README.md) > Plugin Loader diff --git a/wiki/Pobieralnia.md b/wiki/Pobieralnia.md index 6dfc64e1b2..b04c201380 100644 --- a/wiki/Pobieralnia.md +++ b/wiki/Pobieralnia.md @@ -1,2 +1,5 @@ # Pobieralnia 1. REDIRECT [Download/pl](Download/pl.md) + +--- +[documentation index](../README.md) > Pobieralnia diff --git a/wiki/Points_Convert.md b/wiki/Points_Convert.md index c594baae4f..6cf0aa5b14 100644 --- a/wiki/Points_Convert.md +++ b/wiki/Points_Convert.md @@ -5,6 +5,8 @@ Workbenches:[Points](Points_Workbench.md) --- +# Points Convert + ## Description The **Points Convert** command creates point clouds from shape objects or mesh objects. @@ -51,4 +53,7 @@ Point cloud objects are [App GeoFeature](App_GeoFeature.md) objects with the fol - {{Points Tools navi}} + {{Points Tools navi}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Convert diff --git a/wiki/Points_Export.md b/wiki/Points_Export.md index 5a95047123..fd40ead7cd 100644 --- a/wiki/Points_Export.md +++ b/wiki/Points_Export.md @@ -6,6 +6,8 @@ SeeAlso:[Import Export](Import_Export.md) --- +# Points Export + ## Description The **Points Export** command exports a point cloud to a file. @@ -22,4 +24,7 @@ The **Points Export** command exports a point cloud to a file. - {{Points Tools navi}} + {{Points Tools navi}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Export diff --git a/wiki/Points_Import.md b/wiki/Points_Import.md index d5e6cb07ad..e116dd0f6a 100644 --- a/wiki/Points_Import.md +++ b/wiki/Points_Import.md @@ -6,6 +6,8 @@ SeeAlso:[Import Export](Import_Export.md) --- +# Points Import + ## Description The **Points Import** command imports a point cloud from a file. @@ -44,4 +46,7 @@ For testing you can use [this file](https://raw.githubusercontent.com/FreeCAD/Ex - {{Points Tools navi}} + {{Points Tools navi}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Import diff --git a/wiki/Points_Merge.md b/wiki/Points_Merge.md index f073620ff6..6ced42b233 100644 --- a/wiki/Points_Merge.md +++ b/wiki/Points_Merge.md @@ -5,6 +5,8 @@ Workbenches:[Points](Points_Workbench.md) --- +# Points Merge + ## Description The **Points Merge** command creates a point cloud by combining the points of two or more point clouds. @@ -21,4 +23,7 @@ See [Points Convert](Points_Convert.md). - {{Points Tools navi}} + {{Points Tools navi}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Merge diff --git a/wiki/Points_Module.md b/wiki/Points_Module.md index f85fdd9f25..0b6c7b787c 100644 --- a/wiki/Points_Module.md +++ b/wiki/Points_Module.md @@ -1,2 +1,5 @@ # Points Module 1. REDIRECT [Points\_Workbench](Points_Workbench.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module diff --git a/wiki/Points_PolyCut.md b/wiki/Points_PolyCut.md index 35db00518e..ae7585ec19 100644 --- a/wiki/Points_PolyCut.md +++ b/wiki/Points_PolyCut.md @@ -5,6 +5,8 @@ Workbenches:[Points](Points_Workbench.md) --- +# Points PolyCut + ## Description The **Points PolyCut** command cuts points from point clouds. @@ -36,4 +38,7 @@ The **Points PolyCut** command cuts points from point clouds. - {{Points Tools navi}} + {{Points Tools navi}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points PolyCut diff --git a/wiki/Points_Structure.md b/wiki/Points_Structure.md index 9b1bc427b9..c6c202dd27 100644 --- a/wiki/Points_Structure.md +++ b/wiki/Points_Structure.md @@ -5,6 +5,8 @@ Workbenches:[Points](Points_Workbench.md) --- +# Points Structure + ## Description The **Points Structure** command creates a structured point cloud from the points of an existing scattered point cloud. A structured point cloud has the advantage that tessellation is much easier. @@ -24,4 +26,7 @@ See [Points Convert](Points_Convert.md). - {{Points Tools navi}} + {{Points Tools navi}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Structure diff --git a/wiki/Points_Workbench.md b/wiki/Points_Workbench.md index 8c8d20f11a..ff27c67d36 100644 --- a/wiki/Points_Workbench.md +++ b/wiki/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench - - - - - -Points workbench icon +# Points workbench icon Points Workbench ## Introduction @@ -42,3 +36,6 @@ All Points Workbench tools can be accessed from the **Points** menu. Some tools {{Points Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench diff --git a/wiki/Post-Processing_of_FEM_Results_with_Paraview.md b/wiki/Post-Processing_of_FEM_Results_with_Paraview.md index f6dd5d146e..a8f7d56e89 100644 --- a/wiki/Post-Processing_of_FEM_Results_with_Paraview.md +++ b/wiki/Post-Processing_of_FEM_Results_with_Paraview.md @@ -1,5 +1,5 @@ # Post-Processing of FEM Results with Paraview - {{TutorialInfo +{{TutorialInfo |Topic= Post-Processing of FEM Results with ParaView |Level= Intermediate |Time= 120 minutes @@ -351,4 +351,7 @@ The final result shows the major and minor principal stress vectors superimposed ## Export of Graphical Results -To export a RenderView window highlight the window and use menu option {{Tutorials navi}} {{FEM Tools navi}} +To export a RenderView window highlight the window and use menu option {{Tutorials navi}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Post-Processing of FEM Results with Paraview diff --git a/wiki/Power_users_hub.md b/wiki/Power_users_hub.md index 62cc14cc1a..01d3826e1e 100644 --- a/wiki/Power_users_hub.md +++ b/wiki/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub - +# Power users hub ------------------------------------------------------------------------ @@ -132,3 +131,6 @@ On the [Community portal](FreeCAD_Community_Portal.md), you can find other FreeC {{Powerdocnavi}} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub diff --git a/wiki/Preferences_Editor.md b/wiki/Preferences_Editor.md index 8dc4d784b2..89f101edad 100644 --- a/wiki/Preferences_Editor.md +++ b/wiki/Preferences_Editor.md @@ -1,11 +1,4 @@ # Preferences Editor - - - - - - - ## Introduction To start the **Preferences editor** select the **Edit → Preferences...** option from the menu. On the Mac OS the **Preferences...** option appears in the **FreeCAD** menu instead (this is the default place for preferences on the Mac). @@ -690,3 +683,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor diff --git a/wiki/Preferences_editor.md b/wiki/Preferences_editor.md index 75918489cb..bead94ac5e 100644 --- a/wiki/Preferences_editor.md +++ b/wiki/Preferences_editor.md @@ -1,2 +1,5 @@ # Preferences editor 1. REDIRECT [Preferences Editor](Preferences_Editor.md) + +--- +[documentation index](../README.md) > Preferences editor diff --git a/wiki/Press_kit.md b/wiki/Press_kit.md index 174f3051d3..fa86e0676d 100644 --- a/wiki/Press_kit.md +++ b/wiki/Press_kit.md @@ -37,4 +37,7 @@ Screenshots/gifs of various formats/sizes - Mastodon: - Reddit: -## History of FreeCAD +## History of FreeCAD + +--- +[documentation index](../README.md) > Press kit diff --git a/wiki/Profiling.md b/wiki/Profiling.md index 73599194bd..146b2d1e10 100644 --- a/wiki/Profiling.md +++ b/wiki/Profiling.md @@ -1,6 +1,4 @@ # Profiling - - ## Description Profiling the code of FreeCAD helps find bottlenecks in the algorithms used to create or manipulate objects. @@ -38,3 +36,6 @@ kcachegrind /tmp/callgrind.out {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Profiling diff --git a/wiki/Project.md b/wiki/Project.md index 371b6f6258..a4769172b4 100644 --- a/wiki/Project.md +++ b/wiki/Project.md @@ -1,2 +1,5 @@ # Project 1. REDIRECT [Development\_roadmap](Development_roadmap.md) + +--- +[documentation index](../README.md) > Project diff --git a/wiki/Project_template.md b/wiki/Project_template.md index bb215932f3..8a081d1fd1 100644 --- a/wiki/Project_template.md +++ b/wiki/Project_template.md @@ -1,5 +1,5 @@ # Project template - This template is the guideline for a FreeCAD development project. It follows the rules of the [Getting Things Done (GTD)](http://en.wikipedia.org/wiki/Getting_Things_Done#Methodology) process. The projects are collected in the [Development roadmap](Development_roadmap.md). +This template is the guideline for a FreeCAD development project. It follows the rules of the [Getting Things Done (GTD)](http://en.wikipedia.org/wiki/Getting_Things_Done#Methodology) process. The projects are collected in the [Development roadmap](Development_roadmap.md). *Lets start by looking at the Natural Planning Model. The Natural Planning Model really is nothing new. It is not some fantastic new model devised by David Allen to help us plan and manage our projects. it is however, the planning model that is recommended by David in his Getting Things Done book. The Natural Planning Model is based upon the planning that we do on a daily basis, using just our brains. For example, think of how many tasks we plan on a day by day basis that we do not even bother to write down as these are normally classed as mundane tasks. For example, getting dressed, or driving to work. All of these can be thought of tasks but we just go ahead and plan them without any thought whatsoever. We utilize the planning aspects of our brain that are conditioned for this natural type of planning.* @@ -28,3 +28,6 @@ [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Project template diff --git a/wiki/Project_utility.md b/wiki/Project_utility.md index 7a6c1c5fb3..af48d5395b 100644 --- a/wiki/Project_utility.md +++ b/wiki/Project_utility.md @@ -1,2 +1,5 @@ # Project utility 1. REDIRECT [Std\_ProjectUtil](Std_ProjectUtil.md) + +--- +[documentation index](../README.md) > Project utility diff --git a/wiki/Property.md b/wiki/Property.md index 4aa83c7e41..6d5b3f3506 100644 --- a/wiki/Property.md +++ b/wiki/Property.md @@ -1,6 +1,4 @@ # Property - - ## Introduction A [property](Property.md) is a piece of information like a number or a text string that is attached to a FreeCAD document or an object in a document. Public properties can be viewed and modified in the [Property editor](Property_editor.md). @@ -112,3 +110,6 @@ They are imported and initialized in {{Code|lang=cpp|code= {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property diff --git a/wiki/PropertyLink:_InList_and_OutList.md b/wiki/PropertyLink:_InList_and_OutList.md index 6c7a0990be..c9bba6a2a8 100644 --- a/wiki/PropertyLink:_InList_and_OutList.md +++ b/wiki/PropertyLink:_InList_and_OutList.md @@ -1,6 +1,4 @@ # PropertyLink: InList and OutList - - See [Properties](Property.md) before this section. # PropertyLink @@ -83,4 +81,5 @@ objects can be accessed using a Python property using the name that they are reg Note that `InList` and `OutList` have **nothing** to do with the tree view of the document model that is presented in the GUI. At any time, a parent in that tree view may contain children that are part of the `InList`, the `OutList`, or neither. - +--- +[documentation index](../README.md) > PropertyLink: InList and OutList diff --git a/wiki/Property_editor.md b/wiki/Property_editor.md index 2f5a101e22..3d671ec110 100644 --- a/wiki/Property_editor.md +++ b/wiki/Property_editor.md @@ -1,11 +1,4 @@ # Property editor - - - - - - - ## Introduction The [property editor](property_editor.md) appears when the **Model** tab of the [combo view](combo_view.md) is active in the [interface](interface.md); it allows managing the publicly exposed properties of the objects in the document. @@ -240,4 +233,7 @@ print(obj.ViewObject.PropertiesList) - {{Interface navi}} {{Std Base navi}} + {{Interface navi}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor diff --git a/wiki/PyQt.md b/wiki/PyQt.md index 648c85ec5b..a1ee36d1dd 100644 --- a/wiki/PyQt.md +++ b/wiki/PyQt.md @@ -1,2 +1,5 @@ # PyQt 1. REDIRECT [PySide](PySide.md) + +--- +[documentation index](../README.md) > PyQt diff --git a/wiki/PySide.md b/wiki/PySide.md index 8c3a155a81..c8c7bc1da1 100644 --- a/wiki/PySide.md +++ b/wiki/PySide.md @@ -1,8 +1,4 @@ # PySide - - - - ## Introduction The [PySide](PySide.md) library gives access to the cross-platform graphical user interface (GUI) toolkit Qt from [Python](Python.md). Qt is a collection of C++ libraries, but with the help of PySide, the same components can be used from [Python](Python.md). Every graphical interface that can be created in C++, can also be created and modified in Python. An advantage of using Python is that Qt interfaces can be developed and tested live, as we don\'t need to compile the source files. @@ -71,3 +67,6 @@ The PySide documentation refers to the Python-style classes; however, since Qt i {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide diff --git a/wiki/PySide_Advanced_Examples.md b/wiki/PySide_Advanced_Examples.md index 16c2e58a13..4fcd61f806 100644 --- a/wiki/PySide_Advanced_Examples.md +++ b/wiki/PySide_Advanced_Examples.md @@ -1,8 +1,4 @@ # PySide Advanced Examples - - - - ## Introduction The purpose of this page is to cover advanced level examples of the [PySide](PySide.md) GUI manager (there are accompanying pages [PySide Beginner Examples](PySide_Beginner_Examples.md) and [PySide Intermediate Examples](PySide_Intermediate_Examples.md)). @@ -102,3 +98,6 @@ self.dialog = FreeCADGui.PySideUic.loadUi(os.path.join(os.path.dirname(__file__) {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Advanced Examples diff --git a/wiki/PySide_Beginner_Examples.md b/wiki/PySide_Beginner_Examples.md index 59f36ed264..0730302f31 100644 --- a/wiki/PySide_Beginner_Examples.md +++ b/wiki/PySide_Beginner_Examples.md @@ -1,6 +1,4 @@ # PySide Beginner Examples - - ## Introduction The purpose of this page is to cover beginner level examples of the [PySide](PySide.md) GUI manager (there are accompanying pages [Intermediate PySide Examples](PySide_Intermediate_Examples.md) and [Advanced PySide Examples](PySide_Advanced_Examples.md)). @@ -168,3 +166,6 @@ buttonBox = QtGui.QDialogButtonBox(QtCore.Qt.Vertical) {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Beginner Examples diff --git a/wiki/PySide_Intermediate_Examples.md b/wiki/PySide_Intermediate_Examples.md index e594b031fc..52665b5300 100644 --- a/wiki/PySide_Intermediate_Examples.md +++ b/wiki/PySide_Intermediate_Examples.md @@ -1,6 +1,4 @@ # PySide Intermediate Examples - - ## Introduction @@ -708,3 +706,6 @@ mainWin.frameGeometry() {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Intermediate Examples diff --git a/wiki/PySide_usage_snippets.md b/wiki/PySide_usage_snippets.md index cd35d8f4f7..19adc6af5e 100644 --- a/wiki/PySide_usage_snippets.md +++ b/wiki/PySide_usage_snippets.md @@ -1,6 +1,4 @@ # PySide usage snippets - - ## Introduction These are snippets of code that are useful when [creating interfaces](Dialog_creation.md) with [PySide](PySide.md). @@ -131,3 +129,6 @@ print(unicode(uniteSs, 'iso8859')) {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide usage snippets diff --git a/wiki/Pyramids_and_polyhedrons_Workbench.md b/wiki/Pyramids_and_polyhedrons_Workbench.md index 0a3dfb24f1..dc917c992b 100644 --- a/wiki/Pyramids_and_polyhedrons_Workbench.md +++ b/wiki/Pyramids_and_polyhedrons_Workbench.md @@ -1,6 +1,4 @@ # Pyramids and polyhedrons Workbench - - ## Description The Pyramids-and-Polyhedrons External Workbench Icon @@ -43,3 +41,6 @@ Please direct your feedback, ideas, thoughts about this workbench to the dedicat [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Pyramids and polyhedrons Workbench diff --git a/wiki/Pyrate_Workbench.md b/wiki/Pyrate_Workbench.md index 84425778c8..b03e1cdcd1 100644 --- a/wiki/Pyrate_Workbench.md +++ b/wiki/Pyrate_Workbench.md @@ -1,9 +1,4 @@ # Pyrate Workbench - - - - - ## Introduction @@ -17,3 +12,6 @@ This workbench is a new style workbench. This means it is intended to install it [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Pyrate Workbench diff --git a/wiki/Python.md b/wiki/Python.md index 0234c6ce41..fab6035057 100644 --- a/wiki/Python.md +++ b/wiki/Python.md @@ -1,5 +1,5 @@ # Python - **FreeCAD was originally designed to work with Python 2.x. This series ended with 2.7.18 release dated April, 20th 2020 and is succeeded by Python 3. The further development of FreeCAD will be done exclusively with Python 3, and backwards compatibility will not be supported.** +**FreeCAD was originally designed to work with Python 2.x. This series ended with 2.7.18 release dated April, 20th 2020 and is succeeded by Python 3. The further development of FreeCAD will be done exclusively with Python 3, and backwards compatibility will not be supported.** ## Description @@ -129,3 +129,6 @@ Structure = Arch.make_structure(Wire, name="Big pillar") {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:API Documentation](Category:API_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python diff --git a/wiki/PythonOCC.md b/wiki/PythonOCC.md index 13d882e8d2..ce894075fa 100644 --- a/wiki/PythonOCC.md +++ b/wiki/PythonOCC.md @@ -1,6 +1,4 @@ # PythonOCC - - ## Description [PythonOCC](PythonOCC.md) is a project that aims at providing the entire range of [OpenCASCADE Technology](OpenCASCADE.md) (OCCT) functions through the [Python](Python.md) module `OCC`. This is a different approach from FreeCAD\'s, where only certain components of OCCT are exposed through the [Part Workbench](Part_Workbench.md). @@ -42,3 +40,6 @@ You can also self compile pythonOCC (see [instructions](https://github.com/tpavi {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PythonOCC diff --git a/wiki/Python_3.md b/wiki/Python_3.md index be57c0282a..fb55900738 100644 --- a/wiki/Python_3.md +++ b/wiki/Python_3.md @@ -1,7 +1,4 @@ # Python 3 - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -162,3 +159,6 @@ conda build . --python=3.6 --dirty [Category:User Documentation](Category:User_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Python 3 diff --git a/wiki/Python_Console.md b/wiki/Python_Console.md index 65ca124d50..0dbe85576b 100644 --- a/wiki/Python_Console.md +++ b/wiki/Python_Console.md @@ -1,2 +1,5 @@ # Python Console 1. REDIRECT [Python console](Python_console.md) + +--- +[documentation index](../README.md) > Python Console diff --git a/wiki/Python_Development_Environment.md b/wiki/Python_Development_Environment.md index 13f6f68b93..d0937d5ae8 100644 --- a/wiki/Python_Development_Environment.md +++ b/wiki/Python_Development_Environment.md @@ -1,6 +1,4 @@ # Python Development Environment - - ## A Simplistic Development Environment for Python within FreeCAD [Python](wikipedia:Python_(programming_language).md) is a programming environment which has been incorporated into the [FreeCAD](http://www.freecadweb.org/) system. Using Python many operations offered by FreeCAD are available for programmatic access. Python programs for FreeCAD are usually developed to be either run on the Python console or through the Macro facility of FreeCAD (see [How to install macros](How_to_install_macros.md)). @@ -551,3 +549,6 @@ Some other links about IDEs for Python which might be of interest are: [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Python Development Environment diff --git a/wiki/Python_console.md b/wiki/Python_console.md index ee729b4025..b133ced01f 100644 --- a/wiki/Python_console.md +++ b/wiki/Python_console.md @@ -1,5 +1,5 @@ # Python console - **(January 2020) FreeCAD was originally designed to work with Python 2. Since Python 2 reached end of life in 2020, future development of FreeCAD will be done exclusively with Python 3, and backwards compatibility will not be supported.** +**(January 2020) FreeCAD was originally designed to work with Python 2. Since Python 2 reached end of life in 2020, future development of FreeCAD will be done exclusively with Python 3, and backwards compatibility will not be supported.** ## Introduction @@ -83,4 +83,7 @@ Right click on the Python console shows some commands: 4. By choosing a function and following it with a `.` one can repeat steps 2 and 3 to traverse deeper in to the API - Tab/Word completion is supported using the **Ctrl**+**Space** shortcut - {{Interface navi}} {{Std Base navi}} + {{Interface navi}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Python console diff --git a/wiki/Python_scripting_tutorial.md b/wiki/Python_scripting_tutorial.md index 262ac27c86..19cfa2f58e 100644 --- a/wiki/Python_scripting_tutorial.md +++ b/wiki/Python_scripting_tutorial.md @@ -1,8 +1,4 @@ # Python scripting tutorial - - - - ## Introduction [Python](https://en.wikipedia.org/wiki/Python_%28programming_language%29) is a programming language that it relatively easy to learn and understand. It is open-source and multi-platform, and can be used for many purposes: from simple shell scripts to very complex programs. But its most widespread use is as a scripting language embedded in other applications. That is how it is used inside FreeCAD. From the [Python console](Python_console.md), or from custom scripts, you can control FreeCAD and make it perform very complex operations. @@ -286,3 +282,6 @@ Now you are ready for more in-depth FreeCAD scripting. So head on to the [Power {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python scripting tutorial diff --git a/wiki/Qt_Example.md b/wiki/Qt_Example.md index 9982101350..5492300b6b 100644 --- a/wiki/Qt_Example.md +++ b/wiki/Qt_Example.md @@ -1,5 +1,5 @@ # Qt Example - {{Macro +{{Macro |Name=Macro Qt Example |Icon=MEPlan.png |Description=It describes Qt commands. @@ -800,3 +800,6 @@ MainWindow.show() [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Qt Example diff --git a/wiki/Quality_project.md b/wiki/Quality_project.md index 802d9f9054..0a45d02bc4 100644 --- a/wiki/Quality_project.md +++ b/wiki/Quality_project.md @@ -1,7 +1,4 @@ # Quality project - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -42,3 +39,6 @@ Work through all the unfinished commands and make a documentation: [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Quality project diff --git a/wiki/Quantity.md b/wiki/Quantity.md index 2eaa6e4e85..f8731903c1 100644 --- a/wiki/Quantity.md +++ b/wiki/Quantity.md @@ -1,5 +1,5 @@ # Quantity - The quantity is a combination of a floating point number and a unit. It is used throughout all of FreeCAD to handle parameters and all other kind of input/output. +The quantity is a combination of a floating point number and a unit. It is used throughout all of FreeCAD to handle parameters and all other kind of input/output. ## General @@ -274,3 +274,6 @@ from FreeCAD import Units {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Quantity diff --git a/wiki/Raytracing_API_example.md b/wiki/Raytracing_API_example.md index a27a7d6b12..df2d202b8f 100644 --- a/wiki/Raytracing_API_example.md +++ b/wiki/Raytracing_API_example.md @@ -1,6 +1,4 @@ # Raytracing API example - - ## Introduction The `Raytracing` and `RaytracingGui` modules provide several methods to write scene contents as povray or luxrender data. @@ -50,3 +48,6 @@ myCustomRenderObject.Result = "// Hello from python!" {{Powerdocnavi}} {{Raytracing Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing API example diff --git a/wiki/Raytracing_Camera.md b/wiki/Raytracing_Camera.md index f62806da94..525d036ab3 100644 --- a/wiki/Raytracing_Camera.md +++ b/wiki/Raytracing_Camera.md @@ -1,2 +1,5 @@ # Raytracing Camera 1. REDIRECT [Raytracing WriteCamera](Raytracing_WriteCamera.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Camera diff --git a/wiki/Raytracing_Export.md b/wiki/Raytracing_Export.md index 18d1840a37..799acb8f66 100644 --- a/wiki/Raytracing_Export.md +++ b/wiki/Raytracing_Export.md @@ -1,2 +1,5 @@ # Raytracing Export 1. REDIRECT [Raytracing WriteView](Raytracing_WriteView.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Export diff --git a/wiki/Raytracing_ExportProject.md b/wiki/Raytracing_ExportProject.md index 09fbea8684..43dcb72c01 100644 --- a/wiki/Raytracing_ExportProject.md +++ b/wiki/Raytracing_ExportProject.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Raytracing ExportProject + ## Description Exports the selected raytracing project to a file. @@ -23,4 +25,7 @@ Exports the selected raytracing project to a file. - {{Raytracing_Tools_navi}} + {{Raytracing_Tools_navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing ExportProject diff --git a/wiki/Raytracing_InsertPart.md b/wiki/Raytracing_InsertPart.md index 23461c40ff..2e7b161f5a 100644 --- a/wiki/Raytracing_InsertPart.md +++ b/wiki/Raytracing_InsertPart.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Raytracing InsertPart + ## Description Insert a view of a Part in a raytracing project. @@ -25,4 +27,7 @@ Insert a view of a Part in a raytracing project. - {{Raytracing_Tools_navi}} + {{Raytracing_Tools_navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing InsertPart diff --git a/wiki/Raytracing_Lux.md b/wiki/Raytracing_Lux.md index 0bad5f59f5..c091ae947e 100644 --- a/wiki/Raytracing_Lux.md +++ b/wiki/Raytracing_Lux.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Raytracing Lux + ## Description Insert new LuxRender project in the document. @@ -27,4 +29,7 @@ Insert new LuxRender project in the document. - {{Raytracing_Tools_navi}} + {{Raytracing_Tools_navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Lux diff --git a/wiki/Raytracing_Module.md b/wiki/Raytracing_Module.md index 8cc46493d7..6af80f7523 100644 --- a/wiki/Raytracing_Module.md +++ b/wiki/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module 1. REDIRECT [Raytracing\_Workbench](Raytracing_Workbench.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module diff --git a/wiki/Raytracing_New.md b/wiki/Raytracing_New.md index cefdb425ef..728c200968 100644 --- a/wiki/Raytracing_New.md +++ b/wiki/Raytracing_New.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Raytracing New + ## Description Insert new PovRay project in the document. @@ -27,4 +29,7 @@ Insert new PovRay project in the document. - {{Raytracing_Tools_navi}} + {{Raytracing_Tools_navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing New diff --git a/wiki/Raytracing_Part.md b/wiki/Raytracing_Part.md index 41847e399d..730f7a7c55 100644 --- a/wiki/Raytracing_Part.md +++ b/wiki/Raytracing_Part.md @@ -1,2 +1,5 @@ # Raytracing Part 1. REDIRECT [Raytracing WritePart](Raytracing_WritePart.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Part diff --git a/wiki/Raytracing_Preferences.md b/wiki/Raytracing_Preferences.md index ca6bd703f3..6cb0cdb882 100644 --- a/wiki/Raytracing_Preferences.md +++ b/wiki/Raytracing_Preferences.md @@ -1,5 +1,5 @@ # Raytracing Preferences - The preferences screen of the [Raytracing Workbench](Raytracing_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → Raytracing**. +The preferences screen of the [Raytracing Workbench](Raytracing_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → Raytracing**. There is only one tab: Raytracing. @@ -10,3 +10,6 @@ There is only one tab: Raytracing. {{Raytracing_Tools_navi}} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Preferences diff --git a/wiki/Raytracing_Render.md b/wiki/Raytracing_Render.md index 5b0221f4f5..5dddf98d04 100644 --- a/wiki/Raytracing_Render.md +++ b/wiki/Raytracing_Render.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing Render + ## Description Renders the selected raytracing project using an external renderer. @@ -26,4 +28,7 @@ Currently only POV-Ray and Luxrender are supported. - {{Raytracing_Tools_navi}} + {{Raytracing_Tools_navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Render diff --git a/wiki/Raytracing_ResetCamera.md b/wiki/Raytracing_ResetCamera.md index 0d95b0dfd0..0dfbf531af 100644 --- a/wiki/Raytracing_ResetCamera.md +++ b/wiki/Raytracing_ResetCamera.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Raytracing ResetCamera + ## Description Sets the camera of the selected raytracing project to match the current view. @@ -27,4 +29,7 @@ Sets the camera of the selected raytracing project to match the current view. - {{Raytracing_Tools_navi}} + {{Raytracing_Tools_navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing ResetCamera diff --git a/wiki/Raytracing_Workbench.md b/wiki/Raytracing_Workbench.md index 36f2c11840..fd0d35ec61 100644 --- a/wiki/Raytracing_Workbench.md +++ b/wiki/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench - - - **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. @@ -146,3 +143,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around {{Raytracing Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench diff --git a/wiki/Raytracing_WriteCamera.md b/wiki/Raytracing_WriteCamera.md index 0a897fe24b..d7dd96293e 100644 --- a/wiki/Raytracing_WriteCamera.md +++ b/wiki/Raytracing_WriteCamera.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Raytracing WriteCamera + ## Description Exports the current camera properties to a pov-file for use in a POV-Ray project. @@ -23,4 +25,7 @@ Exports the current camera properties to a pov-file for use in a POV-Ray project - {{Raytracing_Tools_navi}} + {{Raytracing_Tools_navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteCamera diff --git a/wiki/Raytracing_WritePart.md b/wiki/Raytracing_WritePart.md index 7ee98758fa..06b1a4fc32 100644 --- a/wiki/Raytracing_WritePart.md +++ b/wiki/Raytracing_WritePart.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Raytracing WritePart + ## Description Exports the selected part to a pov-file for use in a POV-Ray project. @@ -23,4 +25,7 @@ Exports the selected part to a pov-file for use in a POV-Ray project. - {{Raytracing_Tools_navi}} + {{Raytracing_Tools_navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WritePart diff --git a/wiki/Raytracing_WriteView.md b/wiki/Raytracing_WriteView.md index 97324f775a..05d7e62d7b 100644 --- a/wiki/Raytracing_WriteView.md +++ b/wiki/Raytracing_WriteView.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Raytracing WriteView + ## Description Exports the current view properties to a pov-file for use in a POV-Ray project. @@ -23,4 +25,7 @@ Exports the current view properties to a pov-file for use in a POV-Ray project. - {{Raytracing_Tools_navi}} + {{Raytracing_Tools_navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteView diff --git a/wiki/Raytracing_project.md b/wiki/Raytracing_project.md index c5866a4535..1579f47602 100644 --- a/wiki/Raytracing_project.md +++ b/wiki/Raytracing_project.md @@ -1,7 +1,4 @@ # Raytracing project - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -82,3 +79,6 @@ Featured is a part that was creating using PartDesign/Sketcher then rendered usi [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing project diff --git a/wiki/Raytracing_templates.md b/wiki/Raytracing_templates.md index 2facf0c9f4..7459adec9e 100644 --- a/wiki/Raytracing_templates.md +++ b/wiki/Raytracing_templates.md @@ -1,6 +1,4 @@ # Raytracing templates - - ## Introduction The [Raytracing Workbench](Raytracing_Workbench.md) comes with some templates for povray and luxrender, but you can easily create your own. All you need to do is to create a scene file for the given renderer, then edit it manually with a text editor to insert special tags that FreeCAD will recognize and where it will insert its contents (camera and objects data). @@ -57,7 +55,5 @@ Note that in luxrender, the objects stored in a scene file can define transforma {{Raytracing Tools navi}} - - - - +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing templates diff --git a/wiki/Raytracing_tutorial.md b/wiki/Raytracing_tutorial.md index 2da977c5e9..dc26da4ad8 100644 --- a/wiki/Raytracing_tutorial.md +++ b/wiki/Raytracing_tutorial.md @@ -1,6 +1,4 @@ # Raytracing tutorial - - ## Raytracing Workbench @@ -80,4 +78,7 @@ Now we have a model with which to work. FreeCAD will immediately open the image after the render is finished. -We are now finished with the basic workflow for the [Raytracing workbench](Raytracing_Workbench.md). {{Tutorials navi}} {{Raytracing Tools navi}} +We are now finished with the basic workflow for the [Raytracing workbench](Raytracing_Workbench.md). {{Tutorials navi}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing tutorial diff --git a/wiki/Recompute.md b/wiki/Recompute.md index 073e5e5db3..c0160a13ef 100644 --- a/wiki/Recompute.md +++ b/wiki/Recompute.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Recompute diff --git a/wiki/Reinforcement_API.md b/wiki/Reinforcement_API.md index 465ebdb9d4..2bd7afa377 100644 --- a/wiki/Reinforcement_API.md +++ b/wiki/Reinforcement_API.md @@ -1,5 +1,5 @@ # Reinforcement API - **(November 2018) The [[Reinforcement Addon]] is developed separately from the [[Arch Workbench]]. Its code and API is hosted in the [https://github.com/amrit3701/FreeCAD-Reinforcement FreeCAD-Reinforcement] repository, which is separate from the main FreeCAD repository.** +**(November 2018) The [[Reinforcement Addon]] is developed separately from the [[Arch Workbench]]. Its code and API is hosted in the [https://github.com/amrit3701/FreeCAD-Reinforcement FreeCAD-Reinforcement] repository, which is separate from the main FreeCAD repository.** See also the [Arch API](Arch_API.md) for the main [Arch Workbench](Arch_Workbench.md) functions. @@ -17,3 +17,6 @@ import HelicalRebar [Category:API](Category:API.md) [Category:Reinforcement](Category:Reinforcement.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Reinforcement API diff --git a/wiki/Reinforcement_Addon.md b/wiki/Reinforcement_Addon.md index a6d2e80b35..7e0efc7d33 100644 --- a/wiki/Reinforcement_Addon.md +++ b/wiki/Reinforcement_Addon.md @@ -1,6 +1,4 @@ # Reinforcement Addon - - ## Introduction The [Reinforcement Addon](Reinforcement_Addon.md) augments the [Arch Workbench](Arch_Workbench.md) by providing new interfaces and presets for the creation of common rebar types for use with [Arch Structures](Arch_Structure.md). @@ -42,3 +40,6 @@ New workbenches are in development, stay tuned! [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Reinforcement](Category:Reinforcement.md) > Reinforcement Addon diff --git a/wiki/Reinforcement_Bar_Bending_Schedule.md b/wiki/Reinforcement_Bar_Bending_Schedule.md index 1edc703af8..6085bac7ec 100644 --- a/wiki/Reinforcement_Bar_Bending_Schedule.md +++ b/wiki/Reinforcement_Bar_Bending_Schedule.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar BOM](Arch_Rebar_BOM.md), [Arch Rebar Reinforcement Drawing](Arch_Rebar_Drawing_Dimensioning.md) --- +# Reinforcement Bar Bending Schedule + ## Description The [Bar Bending Schedule](Reinforcement_Bar_Bending_Schedule.md) tool allows the user to create the bar bending schedule of reinforcing bars. @@ -373,3 +375,6 @@ BBSfunc.getBarBendingSchedule( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Reinforcement Bar Bending Schedule diff --git a/wiki/Reinforcement_Bar_Shape_Cut_List.md b/wiki/Reinforcement_Bar_Shape_Cut_List.md index 5471135451..a2480afee7 100644 --- a/wiki/Reinforcement_Bar_Shape_Cut_List.md +++ b/wiki/Reinforcement_Bar_Shape_Cut_List.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar Reinforcement Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md), [Arch Rebar BOM](Arch_Rebar_BOM.md) --- +# Reinforcement Bar Shape Cut List + ## Description The [Rebar Shape Cut List](Reinforcement_Bar_Shape_Cut_List.md) tool allows the user to create the rebar shape cut list of reinforcing bars. @@ -416,3 +418,6 @@ RebarShapeCutListfunc.getRebarShapeCutList( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Reinforcement Bar Shape Cut List diff --git a/wiki/Reinforcement_Workbench.md b/wiki/Reinforcement_Workbench.md index 925faa6644..1cb3bd769c 100644 --- a/wiki/Reinforcement_Workbench.md +++ b/wiki/Reinforcement_Workbench.md @@ -1,7 +1,4 @@ -# Reinforcement Workbench - - -Reinforcement workbench icon +# Reinforcement workbench icon Reinforcement Workbench @@ -64,3 +61,6 @@ The Reinforcement workbench is not bundled with the default FreeCAD package, but [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > Reinforcement Workbench diff --git a/wiki/Release_checklist.md b/wiki/Release_checklist.md index 14835941f1..762e75a254 100644 --- a/wiki/Release_checklist.md +++ b/wiki/Release_checklist.md @@ -1,2 +1,5 @@ # Release checklist 1. REDIRECT [Release process](Release_process.md) + +--- +[documentation index](../README.md) > Release checklist diff --git a/wiki/Release_notes_0.11.md b/wiki/Release_notes_0.11.md index c31f972d99..7d8145c9d6 100644 --- a/wiki/Release_notes_0.11.md +++ b/wiki/Release_notes_0.11.md @@ -66,3 +66,6 @@ A screenshot of the 0.11 version {{languages | {{de|Release_notes_0.11/de}} {{es|Release_notes_0.11/es}} {{fr|Release_notes_0.11/fr}} {{it|Release_notes_0.11/it}} {{pl|Release_notes_0.11/pl}} {{ru|Release_notes_0.11/ru}} }} [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.11 diff --git a/wiki/Release_notes_0.12.md b/wiki/Release_notes_0.12.md index b3ac17e119..96bc5e6974 100644 --- a/wiki/Release_notes_0.12.md +++ b/wiki/Release_notes_0.12.md @@ -47,3 +47,6 @@ Older versions: [0.11](Release_notes_0.11.md) {{languages | {{es|Release_notes_0.12/es}} {{fr|Release_notes_0.12/fr}} {{it|Release_notes_0.12/it}} {{pl|Release_notes_0.12/pl}} {{ru|Release_notes_0.12/ru}} }} [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.12 diff --git a/wiki/Release_notes_0.13.md b/wiki/Release_notes_0.13.md index 31958bd185..b3ab842d1f 100644 --- a/wiki/Release_notes_0.13.md +++ b/wiki/Release_notes_0.13.md @@ -1,5 +1,5 @@ # Release notes 0.13 - This is a summary of the most interesting changes occured in FreeCAD since latest version. See [the Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php) on SourceForge for the complete list of changes. +This is a summary of the most interesting changes occured in FreeCAD since latest version. See [the Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php) on SourceForge for the complete list of changes. Older versions: [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -146,3 +146,6 @@ Geometry (Points, Lines and Curves) may be selected by dragging on the backgroun [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.13 diff --git a/wiki/Release_notes_0.14.md b/wiki/Release_notes_0.14.md index 26de9b3438..3cc6da49e4 100644 --- a/wiki/Release_notes_0.14.md +++ b/wiki/Release_notes_0.14.md @@ -1,6 +1,4 @@ # Release notes 0.14 - - FreeCAD 0.14 was released on July 1, 2014. This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -234,3 +232,6 @@ The full list of bugfixes and new features can be read on [News](Category:News.md) > Release notes 0.14 diff --git a/wiki/Release_notes_0.15.md b/wiki/Release_notes_0.15.md index 0408e9792e..82d6e81263 100644 --- a/wiki/Release_notes_0.15.md +++ b/wiki/Release_notes_0.15.md @@ -1,5 +1,5 @@ # Release notes 0.15 - FreeCAD 0.15 was released on April 8, 2015. This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) +FreeCAD 0.15 was released on April 8, 2015. This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -154,3 +154,6 @@ The [WorkFeature macro](https://github.com/Rentlau/WorkFeature) adds a wide rang [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.15 diff --git a/wiki/Release_notes_0.16.md b/wiki/Release_notes_0.16.md index f6ad51c782..6c99d5c7de 100644 --- a/wiki/Release_notes_0.16.md +++ b/wiki/Release_notes_0.16.md @@ -1,5 +1,5 @@ # Release notes 0.16 - FreeCAD 0.16 was released on 18. April, 2016, get it from [Github](https://github.com/FreeCAD/FreeCAD/releases). This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.15](Release_notes_0.15.md) - [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) +FreeCAD 0.16 was released on 18. April, 2016, get it from [Github](https://github.com/FreeCAD/FreeCAD/releases). This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.15](Release_notes_0.15.md) - [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -123,3 +123,6 @@ A couple of new [addons workbenches](https://github.com/FreeCAD/FreeCAD-addons) [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.16 diff --git a/wiki/Release_notes_0.17.md b/wiki/Release_notes_0.17.md index 31467cfa70..6eb6f5370e 100644 --- a/wiki/Release_notes_0.17.md +++ b/wiki/Release_notes_0.17.md @@ -1,7 +1,4 @@ # Release notes 0.17 - - -
*This release of FreeCAD is dedicated to our friend Roland Frank [who left us in 2017](https://forum.freecadweb.org/viewtopic.php?f=8&t=25673). He was an active and well-appreciated member of the FreeCAD forum, and his video tutorials on the [Learn FreeCAD](https://www.youtube.com/watch?v=_HEvhclR4-o&list=PL6fZ68Cq3L8k0JhxnIVjZQN26cn9idJrj) and [BPLFRE](https://www.youtube.com/watch?v=m49z0weonog&list=PLsrwVwvqYb8G4Ri0iz1JIebsOXkgoytAY) Youtube channels helped many people get started with FreeCAD.* @@ -313,3 +310,6 @@ Some of the new community modules that were created. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.17 diff --git a/wiki/Release_notes_0.18.md b/wiki/Release_notes_0.18.md index e844fdc724..4217a8342b 100644 --- a/wiki/Release_notes_0.18.md +++ b/wiki/Release_notes_0.18.md @@ -1,7 +1,5 @@ # Release notes 0.18 - - - FreeCAD 0.18 was released on 12 March, 2019, get it from the [Download](Download.md) page. This is a summary of the most interesting changes. The complete list of changes can be found in the [MantisBT bugtracker FC 0.18 changelog](https://www.freecadweb.org/tracker/changelog_page.php?version_id=78). +FreeCAD 0.18 was released on 12 March, 2019, get it from the [Download](Download.md) page. This is a summary of the most interesting changes. The complete list of changes can be found in the [MantisBT bugtracker FC 0.18 changelog](https://www.freecadweb.org/tracker/changelog_page.php?version_id=78). Older FreeCAD release notes can be found in [Feature list](Feature_list#Release_notes.md). @@ -222,3 +220,6 @@ Some of the new community modules that were actively developed during the 0.18 d [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.18 diff --git a/wiki/Release_notes_0.19.md b/wiki/Release_notes_0.19.md index 3a7001e3ee..20ede2997a 100644 --- a/wiki/Release_notes_0.19.md +++ b/wiki/Release_notes_0.19.md @@ -1,6 +1,4 @@ # Release notes 0.19 - - **FreeCAD 0.19** was released on **March 20th, 2021**, get it from the [Download](Download.md) page. This is a summary of the most interesting changes. The complete list of changes can be found in the [MantisBT bugtracker FC 0.19 changelog](https://www.freecadweb.org/tracker/changelog_page.php?version_id=122). Older FreeCAD release notes can be found in [Feature list](Feature_list#Release_notes.md). @@ -779,3 +777,6 @@ these are the new workbenches created in this development cycle, or older workbe [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.19 diff --git a/wiki/Release_notes_0.20.md b/wiki/Release_notes_0.20.md index ac1ab92325..059d3d1257 100644 --- a/wiki/Release_notes_0.20.md +++ b/wiki/Release_notes_0.20.md @@ -1,7 +1,4 @@ # Release notes 0.20 - - - **This page tracks new features as they are added to the development version of FreeCAD, which is currently 0.20. When the 0.20 feature freeze happens, delete these messages, and don't add more features to this page. FreeCAD 0.20 is expected to be released in 202x.** @@ -220,3 +217,6 @@ There is also a text box for feedback of OpenSCAD errors. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.20 diff --git a/wiki/Release_notes_011.md b/wiki/Release_notes_011.md index b1c30f5404..9470dddb01 100644 --- a/wiki/Release_notes_011.md +++ b/wiki/Release_notes_011.md @@ -1,2 +1,5 @@ # Release notes 011 1. REDIRECT [Release notes 0.11](Release_notes_0.11.md) + +--- +[documentation index](../README.md) > Release notes 011 diff --git a/wiki/Release_notes_012.md b/wiki/Release_notes_012.md index d910ba76d0..95025aab1a 100644 --- a/wiki/Release_notes_012.md +++ b/wiki/Release_notes_012.md @@ -1,2 +1,5 @@ # Release notes 012 1. REDIRECT [Release notes 0.12](Release_notes_0.12.md) + +--- +[documentation index](../README.md) > Release notes 012 diff --git a/wiki/Release_notes_013.md b/wiki/Release_notes_013.md index 3b2705ee87..26bd00c999 100644 --- a/wiki/Release_notes_013.md +++ b/wiki/Release_notes_013.md @@ -1,2 +1,5 @@ # Release notes 013 1. REDIRECT [Release\_notes\_0.13](Release_notes_0.13.md) + +--- +[documentation index](../README.md) > Release notes 013 diff --git a/wiki/Release_notes_016.md b/wiki/Release_notes_016.md index 3e51bfb63d..8309a6ad47 100644 --- a/wiki/Release_notes_016.md +++ b/wiki/Release_notes_016.md @@ -1,2 +1,5 @@ # Release notes 016 1. REDIRECT [Release\_notes\_0.16](Release_notes_0.16.md) + +--- +[documentation index](../README.md) > Release notes 016 diff --git a/wiki/Release_notes_017.md b/wiki/Release_notes_017.md index d7bca0f170..f6a6151867 100644 --- a/wiki/Release_notes_017.md +++ b/wiki/Release_notes_017.md @@ -1,2 +1,5 @@ # Release notes 017 1. REDIRECT [Release\_notes\_0.17](Release_notes_0.17.md) + +--- +[documentation index](../README.md) > Release notes 017 diff --git a/wiki/Release_of_FC_0.19.md b/wiki/Release_of_FC_0.19.md index 5ababe5d20..956d5d215d 100644 --- a/wiki/Release_of_FC_0.19.md +++ b/wiki/Release_of_FC_0.19.md @@ -52,3 +52,6 @@ Document the new features listed [here](Release_notes_0.19.md) and updating exis Maintainer(s): [Uwestoehr](User:Uwestoehr.md) Contributors: + +--- +[documentation index](../README.md) > Release of FC 0.19 diff --git a/wiki/Release_process.md b/wiki/Release_process.md index c45b27f54a..98a0b7d222 100644 --- a/wiki/Release_process.md +++ b/wiki/Release_process.md @@ -1,5 +1,4 @@ # Release process - **'''NOTE: 1) THIS PAGE NEEDS TO BE ADAPTED TO FREECAD
2) PLEASE DO NOT TRANSLATE THIS PAGE
@@ -382,3 +381,6 @@ This is a raw list of sites and blogs that have at some point mentioned FreeCAD. [Category:Roadmap](Category:Roadmap.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > Release process diff --git a/wiki/Rename_Module_to_Workbench.md b/wiki/Rename_Module_to_Workbench.md index 2a348b60ea..ac75ac26c5 100644 --- a/wiki/Rename_Module_to_Workbench.md +++ b/wiki/Rename_Module_to_Workbench.md @@ -1,6 +1,4 @@ # Rename Module to Workbench - - ## Tracking page for wiki-renaming Module to Workbench - 2021 effort +------------------------------------------------------------------------+----------------------------------------------------+ @@ -57,3 +55,6 @@ For some reason it is currently not possible to rename the Part\_Module page. The green background indicates links that have been fixed or that never existed. [Category:HouseKeeping](Category:HouseKeeping.md) + +--- +[documentation index](../README.md) > Rename Module to Workbench diff --git a/wiki/Render_Quick_Start.md b/wiki/Render_Quick_Start.md index cfce2fba27..e2c489bfd1 100644 --- a/wiki/Render_Quick_Start.md +++ b/wiki/Render_Quick_Start.md @@ -2,3 +2,6 @@ ## Render Workbench Quick Start Guide This is a place holder for this WIP. + +--- +[documentation index](../README.md) > Render Quick Start diff --git a/wiki/Render_Workbench.md b/wiki/Render_Workbench.md index 7b5337b0f0..b4821294af 100644 --- a/wiki/Render_Workbench.md +++ b/wiki/Render_Workbench.md @@ -1,2 +1,5 @@ # Render Workbench 1. REDIRECT [Render project](Render_project.md) + +--- +[documentation index](../README.md) > Render Workbench diff --git a/wiki/Render_project.md b/wiki/Render_project.md index aa1b08a4d1..a50fed8609 100644 --- a/wiki/Render_project.md +++ b/wiki/Render_project.md @@ -1,5 +1,5 @@ # Render project - **(2020) This page refers to an attempt to update the [Raytracing Workbench](Raytracing_Workbench.md), proposed around 2012. Its original author never completed the implementation so this information is outdated, and should not be considered current. +**(2020) This page refers to an attempt to update the [Raytracing Workbench](Raytracing_Workbench.md), proposed around 2012. Its original author never completed the implementation so this information is outdated, and should not be considered current. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], a complete Python replacement for the [Raytracing Workbench](Raytracing_Workbench.md). @@ -120,3 +120,6 @@ See also [Raytracing tutorial](Raytracing_tutorial.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Render](Category:Render.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Render project diff --git a/wiki/Report_view.md b/wiki/Report_view.md index 25485c2bfd..0e4729026b 100644 --- a/wiki/Report_view.md +++ b/wiki/Report_view.md @@ -1,6 +1,4 @@ # Report view - - ## Introduction The [Report view](Report_view.md) is a panel that shows text messages from FreeCAD processes and tools. It is available in the menu **{{StdMenu|[View](Std_View_Menu.md)** → Panels → Report view}}. @@ -50,4 +48,7 @@ Right click on the report view shows some commands: - **Save as**: save the messages in the report view to a text file. - {{Interface navi}} {{Std Base navi}} + {{Interface navi}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Report view diff --git a/wiki/Resource_framework_project.md b/wiki/Resource_framework_project.md index f0a1a1eef1..387cd917e4 100644 --- a/wiki/Resource_framework_project.md +++ b/wiki/Resource_framework_project.md @@ -1,7 +1,4 @@ # Resource framework project - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -122,3 +119,6 @@ A class design for the Resource framwork. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Resource framework project diff --git a/wiki/Reverse_Engineering_Workbench.md b/wiki/Reverse_Engineering_Workbench.md index 47b177a8e1..fde8eba13b 100644 --- a/wiki/Reverse_Engineering_Workbench.md +++ b/wiki/Reverse_Engineering_Workbench.md @@ -1,10 +1,4 @@ -# Reverse Engineering Workbench - - - - - -Reverse Engineering workbench icon +# Reverse Engineering workbench icon Reverse Engineering Workbench ## Introduction @@ -28,3 +22,6 @@ Link to appropriate threads discussing this workbench [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench diff --git a/wiki/Right_side_view.md b/wiki/Right_side_view.md index 6f58855726..0b6de2755b 100644 --- a/wiki/Right_side_view.md +++ b/wiki/Right_side_view.md @@ -1,2 +1,5 @@ # Right side view 1. REDIRECT [Std View Menu](Std_View_Menu.md) + +--- +[documentation index](../README.md) > Right side view diff --git a/wiki/Robot_API_example.md b/wiki/Robot_API_example.md index 5a90227db4..a912b924cb 100644 --- a/wiki/Robot_API_example.md +++ b/wiki/Robot_API_example.md @@ -1,6 +1,4 @@ # Robot API example - - ## Introduction This example is based on the [RobotExample.py](https://github.com/FreeCAD/FreeCAD_sf_master/blob/master/src/Mod/Robot/RobotExample.py) example. @@ -171,3 +169,6 @@ for w in App.activeDocument().Trajectory.Trajectory.Waypoints: [Category:Robot API](Category:Robot_API.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot API example diff --git a/wiki/Robot_CreateRobot.md b/wiki/Robot_CreateRobot.md index 973490a997..43c17e59dd 100644 --- a/wiki/Robot_CreateRobot.md +++ b/wiki/Robot_CreateRobot.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot CreateRobot + ## Description Insert a new robot (KUKA IR500) into the scene. @@ -41,4 +43,7 @@ The predefined robots are - {{Robot_Tools_navi}} + {{Robot_Tools_navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateRobot diff --git a/wiki/Robot_CreateTrajectory.md b/wiki/Robot_CreateTrajectory.md index a78580dd74..bf6e35e1f4 100644 --- a/wiki/Robot_CreateTrajectory.md +++ b/wiki/Robot_CreateTrajectory.md @@ -6,6 +6,8 @@ SeeAlso: --- +# Robot CreateTrajectory + ## Description Inserts a new empty trajectory-object into the scene. @@ -19,4 +21,7 @@ Click on - {{Robot_Tools_navi}} + {{Robot_Tools_navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateTrajectory diff --git a/wiki/Robot_Edge2Trac.md b/wiki/Robot_Edge2Trac.md index d77c7ee808..5360e04723 100644 --- a/wiki/Robot_Edge2Trac.md +++ b/wiki/Robot_Edge2Trac.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot Edge2Trac + ## Description Insert a new object which decompose edges to a trajectory. @@ -29,4 +31,7 @@ You are able to change values for this trajectory by defining a [Robot](Robot_Workbench.md) > Robot Edge2Trac diff --git a/wiki/Robot_Export.md b/wiki/Robot_Export.md index 116141feaf..8e9e7f3a7b 100644 --- a/wiki/Robot_Export.md +++ b/wiki/Robot_Export.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot Export + ## Description Export a robot program file. Export can either be a KUKA **compact** subroutine or a KUKA **full** subroutine. @@ -23,4 +25,7 @@ Result: A KRL file (\*.src) will be created. - {{Robot_Tools_navi}} + {{Robot_Tools_navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Export diff --git a/wiki/Robot_InsertWaypoint.md b/wiki/Robot_InsertWaypoint.md index 1004a13fc8..b98f350ec0 100644 --- a/wiki/Robot_InsertWaypoint.md +++ b/wiki/Robot_InsertWaypoint.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Robot InsertWaypoint + ## Description Insert a way-point from the current robot (tool) position into a trajectory. @@ -30,4 +32,7 @@ Moving a robot is done by - {{Robot_Tools_navi}} + {{Robot_Tools_navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot InsertWaypoint diff --git a/wiki/Robot_InsertWaypointPre.md b/wiki/Robot_InsertWaypointPre.md index 12ff2efe2f..c0e9191468 100644 --- a/wiki/Robot_InsertWaypointPre.md +++ b/wiki/Robot_InsertWaypointPre.md @@ -7,6 +7,8 @@ SeeAlso:[Robot CreateTrajectory](Robot_CreateTrajectory.md), [Robot InsertWaypoint](Robot_InsertWaypoint.md) --- +# Robot InsertWaypointPre + ## Description Inserts a waypoint from preselected objects into a trajectory. @@ -30,4 +32,7 @@ Selectable objects are: - {{Robot_Tools_navi}} + {{Robot_Tools_navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot InsertWaypointPre diff --git a/wiki/Robot_Module.md b/wiki/Robot_Module.md index 9a4ec93456..92d797d425 100644 --- a/wiki/Robot_Module.md +++ b/wiki/Robot_Module.md @@ -1,2 +1,5 @@ # Robot Module 1. REDIRECT [Robot Workbench](Robot_Workbench.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Module diff --git a/wiki/Robot_RestoreHomePos.md b/wiki/Robot_RestoreHomePos.md index 54eb9eac11..5ef56269a0 100644 --- a/wiki/Robot_RestoreHomePos.md +++ b/wiki/Robot_RestoreHomePos.md @@ -5,6 +5,8 @@ MenuLocation:Robot → Restore home position --- +# Robot RestoreHomePos + ## Description Lets the selected robot move to its home position. @@ -23,4 +25,7 @@ Lets the selected robot move to its home position. - {{Robot_Tools_navi}} + {{Robot_Tools_navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot RestoreHomePos diff --git a/wiki/Robot_SetDefaultOrientation.md b/wiki/Robot_SetDefaultOrientation.md index 21448a1f10..14d9f99216 100644 --- a/wiki/Robot_SetDefaultOrientation.md +++ b/wiki/Robot_SetDefaultOrientation.md @@ -6,6 +6,8 @@ SeeAlso:... --- +# Robot SetDefaultOrientation + ## Description ## Usage @@ -13,4 +15,7 @@ - {{Robot_Tools_navi}} + {{Robot_Tools_navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetDefaultOrientation diff --git a/wiki/Robot_SetDefaultValues.md b/wiki/Robot_SetDefaultValues.md index c0f9aa54ee..574810f332 100644 --- a/wiki/Robot_SetDefaultValues.md +++ b/wiki/Robot_SetDefaultValues.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot SetDefaultValues + ## Description Set the default values for way-point creation. @@ -30,4 +32,7 @@ The program\'s default values are for - {{Robot_Tools_navi}} + {{Robot_Tools_navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetDefaultValues diff --git a/wiki/Robot_SetHomePos.md b/wiki/Robot_SetHomePos.md index 4920266382..3eb3cdd09e 100644 --- a/wiki/Robot_SetHomePos.md +++ b/wiki/Robot_SetHomePos.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot SetHomePos + ## Description Sets the current position/orientation of the selected robot as home position. @@ -23,4 +25,7 @@ Sets the current position/orientation of the selected robot as home position. - {{Robot_Tools_navi}} + {{Robot_Tools_navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetHomePos diff --git a/wiki/Robot_Simulate.md b/wiki/Robot_Simulate.md index 0f671ecd9f..b952371f6d 100644 --- a/wiki/Robot_Simulate.md +++ b/wiki/Robot_Simulate.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot Simulate + ## Description Opens the simulation dialog and lets you simulate robot movement along a trajectory. @@ -32,4 +34,7 @@ The buttons from left to right. - {{Robot_Tools_navi}} + {{Robot_Tools_navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Simulate diff --git a/wiki/Robot_TrajectoryCompound.md b/wiki/Robot_TrajectoryCompound.md index 27a4831584..ed0a94cdb1 100644 --- a/wiki/Robot_TrajectoryCompound.md +++ b/wiki/Robot_TrajectoryCompound.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot TrajectoryCompound + ## Description Creates a compound out of some single trajectories. @@ -23,4 +25,7 @@ Creates a compound out of some single trajectories. - {{Robot_Tools_navi}} + {{Robot_Tools_navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot TrajectoryCompound diff --git a/wiki/Robot_TrajectoryDressUp.md b/wiki/Robot_TrajectoryDressUp.md index ce38cf480e..01611f2bca 100644 --- a/wiki/Robot_TrajectoryDressUp.md +++ b/wiki/Robot_TrajectoryDressUp.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot TrajectoryDressUp + ## Description Lets you override one or more properties of a trajectory. @@ -27,4 +29,7 @@ Resulting in the ability to change values for: - {{Robot_Tools_navi}} + {{Robot_Tools_navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot TrajectoryDressUp diff --git a/wiki/Robot_Workbench.md b/wiki/Robot_Workbench.md index 10e69a2ac4..f40961404c 100644 --- a/wiki/Robot_Workbench.md +++ b/wiki/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. @@ -76,3 +70,6 @@ See the [Robot API example](Robot_API_example.md) for a description of the funct {{Robot Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench diff --git a/wiki/Robot_project.md b/wiki/Robot_project.md index 2d25476001..f58b033776 100644 --- a/wiki/Robot_project.md +++ b/wiki/Robot_project.md @@ -1,7 +1,4 @@ # Robot project - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -74,3 +71,6 @@ Robot simulation [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot project diff --git a/wiki/Robot_tutorial.md b/wiki/Robot_tutorial.md index a3b3cd7cad..76223ab16e 100644 --- a/wiki/Robot_tutorial.md +++ b/wiki/Robot_tutorial.md @@ -1,5 +1,5 @@ # Robot tutorial - {{TutorialInfo +{{TutorialInfo |Topic= Robot Workbench |Level= Beginner |Time= @@ -49,4 +49,7 @@ This tutorial is targeting on the use of [industrial robots](http://en.wikipedia 3. Click on Play ** ▶** button 4. Watch simulation - {{Tutorials navi}} {{Robot Tools navi}} + {{Tutorials navi}} {{Robot Tools navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot tutorial diff --git a/wiki/Rocket_BodyTube.md b/wiki/Rocket_BodyTube.md index eba1cbe924..52d764a503 100644 --- a/wiki/Rocket_BodyTube.md +++ b/wiki/Rocket_BodyTube.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Rocket BodyTube + ## Description Body tubes are the basic building block of all rockets. It typically contain the motor and payload, and server as an attachment point for the fins and nose cone. @@ -60,3 +62,6 @@ TBD [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [API]] and ](Category:API]] and .md) > Rocket BodyTube diff --git a/wiki/Rocket_Bulkhead.md b/wiki/Rocket_Bulkhead.md index a9600cec15..a54f6efef3 100644 --- a/wiki/Rocket_Bulkhead.md +++ b/wiki/Rocket_Bulkhead.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Rocket Bulkhead + ## Description A bulkhead is a solid section of material used to close off a section of body tube, or to provide a base for a nose cone. @@ -88,3 +90,6 @@ TBD [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [API]] and ](Category:API]] and .md) > Rocket Bulkhead diff --git a/wiki/Rocket_Calc_EjectionCharge.md b/wiki/Rocket_Calc_EjectionCharge.md index a7117dbda7..370dd3ece7 100644 --- a/wiki/Rocket_Calc_EjectionCharge.md +++ b/wiki/Rocket_Calc_EjectionCharge.md @@ -1,2 +1,5 @@ # Rocket Calc EjectionCharge + +--- +[documentation index](../README.md) > Rocket Calc EjectionCharge diff --git a/wiki/Rocket_Calc_ParachuteSize.md b/wiki/Rocket_Calc_ParachuteSize.md index 390693b282..af16fe06ed 100644 --- a/wiki/Rocket_Calc_ParachuteSize.md +++ b/wiki/Rocket_Calc_ParachuteSize.md @@ -1,2 +1,5 @@ # Rocket Calc ParachuteSize + +--- +[documentation index](../README.md) > Rocket Calc ParachuteSize diff --git a/wiki/Rocket_Calc_ThrustToWeight.md b/wiki/Rocket_Calc_ThrustToWeight.md index 6c694c51cf..b2bec441bc 100644 --- a/wiki/Rocket_Calc_ThrustToWeight.md +++ b/wiki/Rocket_Calc_ThrustToWeight.md @@ -1,2 +1,5 @@ # Rocket Calc ThrustToWeight + +--- +[documentation index](../README.md) > Rocket Calc ThrustToWeight diff --git a/wiki/Rocket_Calc_VentHoleSize.md b/wiki/Rocket_Calc_VentHoleSize.md index 252f5fe2a0..c940ff24a1 100644 --- a/wiki/Rocket_Calc_VentHoleSize.md +++ b/wiki/Rocket_Calc_VentHoleSize.md @@ -1,2 +1,5 @@ # Rocket Calc VentHoleSize + +--- +[documentation index](../README.md) > Rocket Calc VentHoleSize diff --git a/wiki/Rocket_CenteringRing.md b/wiki/Rocket_CenteringRing.md index 403166e482..e830c5a160 100644 --- a/wiki/Rocket_CenteringRing.md +++ b/wiki/Rocket_CenteringRing.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Rocket CenteringRing + ## Description A Centering Ring is a solid object used to hold one or more body tubes inside another body tube. @@ -93,3 +95,6 @@ TBD [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [API]] and ](Category:API]] and .md) > Rocket CenteringRing diff --git a/wiki/Rocket_Ejection_Charge_Calculator.md b/wiki/Rocket_Ejection_Charge_Calculator.md index 94c1e8a606..9eeab94bcb 100644 --- a/wiki/Rocket_Ejection_Charge_Calculator.md +++ b/wiki/Rocket_Ejection_Charge_Calculator.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Rocket Ejection Charge Calculator + ## Description @@ -82,3 +84,6 @@ Calculations are done using metric units, but will display in your preferred uni [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Rocket Ejection Charge Calculator diff --git a/wiki/Rocket_Fin.md b/wiki/Rocket_Fin.md index 2c889dac51..7169a044c9 100644 --- a/wiki/Rocket_Fin.md +++ b/wiki/Rocket_Fin.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Rocket Fin + ## Description Fins are used to aerodynamically control the direction of flight. @@ -152,3 +154,6 @@ TBD [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [API]] and ](Category:API]] and .md) > Rocket Fin diff --git a/wiki/Rocket_NoseCone.md b/wiki/Rocket_NoseCone.md index f420dcb1c1..07264cbb7e 100644 --- a/wiki/Rocket_NoseCone.md +++ b/wiki/Rocket_NoseCone.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Rocket NoseCone + ## Description Nose cones come in a variety of shapes and sizes, most of which are difficult to model without programming. For many rocket builders, this makes the process unworkable. This command allows for nose cone creation using simple properties combined with a specialized task dialog. @@ -131,3 +133,6 @@ TBD [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [API]] and ](Category:API]] and .md) > Rocket NoseCone diff --git a/wiki/Rocket_Parachute_Size_Calculator.md b/wiki/Rocket_Parachute_Size_Calculator.md index 99ff04a3ab..ac333aaf3f 100644 --- a/wiki/Rocket_Parachute_Size_Calculator.md +++ b/wiki/Rocket_Parachute_Size_Calculator.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Rocket Parachute Size Calculator + ## Description This calculator determines the parachute size required to achieve the desired descent rate based on the parachute parameters. @@ -72,3 +74,6 @@ Calculations are done using metric units, but will display in your preferred uni [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Rocket Parachute Size Calculator diff --git a/wiki/Rocket_Thrust_To_Weight_Calculator.md b/wiki/Rocket_Thrust_To_Weight_Calculator.md index 71a370cf8b..9f38695cb1 100644 --- a/wiki/Rocket_Thrust_To_Weight_Calculator.md +++ b/wiki/Rocket_Thrust_To_Weight_Calculator.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Rocket Thrust To Weight Calculator + ## Description This simple calculator determines the minimum average thrust required to maintain a 5:1 thrust to weight ratio. @@ -42,3 +44,6 @@ Calculations are done using metric units, but will display in your preferred uni [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Rocket Thrust To Weight Calculator diff --git a/wiki/Rocket_Transition.md b/wiki/Rocket_Transition.md index 005dfbd179..dfa7643445 100644 --- a/wiki/Rocket_Transition.md +++ b/wiki/Rocket_Transition.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Rocket Transition + ## Description Transitions are like [nose cones](Rocket_NoseCone.md) in many ways. While typically conical, they can have the same shapes as nose cones, but are far more versatile. @@ -120,3 +122,6 @@ TBD [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [API]] and ](Category:API]] and .md) > Rocket Transition diff --git a/wiki/Rocket_Vent_Hole_Size_Calculator.md b/wiki/Rocket_Vent_Hole_Size_Calculator.md index 50087c179b..6d0349346a 100644 --- a/wiki/Rocket_Vent_Hole_Size_Calculator.md +++ b/wiki/Rocket_Vent_Hole_Size_Calculator.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Rocket Vent Hole Size Calculator + ## Description This calculator determines the minimum size of vent holes for barometric altimeters based on the volume of the space and the number of vent holes. @@ -52,3 +54,6 @@ Calculations are done using metric units, but will display in your preferred uni [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Rocket Vent Hole Size Calculator diff --git a/wiki/Rocket_Workbench.md b/wiki/Rocket_Workbench.md index 3c92efa52d..2f7bdbc840 100644 --- a/wiki/Rocket_Workbench.md +++ b/wiki/Rocket_Workbench.md @@ -1,7 +1,4 @@ -# Rocket Workbench - - -Rocket Workbench icon +# Rocket Workbench icon Rocket Workbench @@ -51,3 +48,6 @@ Components created using the Rocket Workbench are essentially parts similar to w [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Rocket Workbench diff --git a/wiki/STEP_project.md b/wiki/STEP_project.md index ab4edebfb9..e8e4c7e615 100644 --- a/wiki/STEP_project.md +++ b/wiki/STEP_project.md @@ -1,7 +1,4 @@ # STEP project - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -77,3 +74,6 @@ The ISO 10303 (STEP) is very important in this field. Its the only good standard [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > STEP project diff --git a/wiki/SVG.md b/wiki/SVG.md index 0aa19073f9..b7eee3682c 100644 --- a/wiki/SVG.md +++ b/wiki/SVG.md @@ -1,6 +1,4 @@ # SVG - - ## Description [Scalable Vector Graphics](https://en.wikipedia.org/wiki/Scalable_Vector_Graphics) (**SVG**) is a type of vectorized image format for two-dimensional graphics. @@ -24,3 +22,6 @@ FreeCAD is primarily a 3D modeling application, and thus doesn\'t have many 2D d [Category:Draft](Category:Draft.md) [Category:TechDraw](Category:TechDraw.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Category:Draft.md) > SVG diff --git a/wiki/SandBox:Arch_Structure.md b/wiki/SandBox:Arch_Structure.md index 9a63dc69a7..c0e81cc5ae 100644 --- a/wiki/SandBox:Arch_Structure.md +++ b/wiki/SandBox:Arch_Structure.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Rebar](Arch_Rebar.md) --- +# SandBox:Arch Structure + ## Description The [Arch Structure](Arch_Structure.md) tool allows you to build structural elements such as columns or beams, by specifying their width, length and height, or by basing them on a 2D profile (face, wire or sketch). @@ -266,9 +268,7 @@ FreeCAD.ActiveDocument.recompute() Structure2 = Arch.makeStructure(None, length=500, width=1000, height=3000) Draft.move(Structure2, FreeCAD.Vector(2000, 0, 0)) FreeCAD.ActiveDocument.recompute() -``` - - - - +``` +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > SandBox:Arch Structure diff --git a/wiki/SandBox:Import_Export_Preferences.md b/wiki/SandBox:Import_Export_Preferences.md index 1f0758d2a8..f5f2254c28 100644 --- a/wiki/SandBox:Import_Export_Preferences.md +++ b/wiki/SandBox:Import_Export_Preferences.md @@ -1,11 +1,4 @@ # SandBox:Import Export Preferences - - - - - - - ## Introduction FreeCAD can import and export many file formats. For some formats dedicated preferences exist. These can be found in the [Preferences editor](Preferences_Editor.md), in the menu **Edit → Preferences → Import-Export**. @@ -627,3 +620,6 @@ For the Mesh formats you can specify the following: [Category:Common Questions](Category:Common_Questions.md) [Category:Preferences](Category:Preferences.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > SandBox:Import Export Preferences diff --git a/wiki/SandBox:Preferences_Editor.md b/wiki/SandBox:Preferences_Editor.md index e23fb3484c..f3aa56059f 100644 --- a/wiki/SandBox:Preferences_Editor.md +++ b/wiki/SandBox:Preferences_Editor.md @@ -1,11 +1,4 @@ # SandBox:Preferences Editor - - - - - - - ## Introduction To start the **Preferences editor** select the **Edit → Preferences...** option from the menu. On the Mac OS the **Preferences...** option appears in the **FreeCAD** menu instead (this is the default place for preferences on the Mac). @@ -691,3 +684,6 @@ It is likely a bad idea to modify the preferences of other parts of FreeCAD unle [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > SandBox:Preferences Editor diff --git a/wiki/Sandbox:3rd_Party_Dependencies.md b/wiki/Sandbox:3rd_Party_Dependencies.md index 80a2e684e7..52dbc7945c 100644 --- a/wiki/Sandbox:3rd_Party_Dependencies.md +++ b/wiki/Sandbox:3rd_Party_Dependencies.md @@ -1,5 +1,5 @@ # Sandbox:3rd Party Dependencies - qt5 qt5-base +qt5 qt5-base -------------------------------------------------------- ------------------------------------------------------------- @@ -74,3 +74,6 @@ \[!\[Packaging status\](https://repology.org/badge/vertical-allrepos/graphviz.svg)\](https://repology.org/metapackage/graphviz-addons/versions) [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:3rd Party Dependencies diff --git a/wiki/Sandbox:Add_FEM_Solver_Tutorial.md b/wiki/Sandbox:Add_FEM_Solver_Tutorial.md index 3d3db4a15e..2e6d886725 100644 --- a/wiki/Sandbox:Add_FEM_Solver_Tutorial.md +++ b/wiki/Sandbox:Add_FEM_Solver_Tutorial.md @@ -1,8 +1,4 @@ # Sandbox:Add FEM Solver Tutorial - - - - {{TutorialInfo |Topic= Add FEM Solver |Level= @@ -27,3 +23,6 @@ The task can be split into seven parts: - **A solver input writing unit test**. Best to take the ccx cantilever. This is available for all mesh element types. [Category:FEM](Category:FEM.md) [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Sandbox:Add FEM Solver Tutorial diff --git a/wiki/Sandbox:CFD.md b/wiki/Sandbox:CFD.md index f974e70cbb..7c3a3630a9 100644 --- a/wiki/Sandbox:CFD.md +++ b/wiki/Sandbox:CFD.md @@ -1,2 +1,5 @@ # Sandbox:CFD 1. REDIRECT [Cfd Workbench](Cfd_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:CFD diff --git a/wiki/Sandbox:CadQuery.md b/wiki/Sandbox:CadQuery.md index a31172d79c..27df88b36c 100644 --- a/wiki/Sandbox:CadQuery.md +++ b/wiki/Sandbox:CadQuery.md @@ -1,2 +1,5 @@ # Sandbox:CadQuery 1. REDIRECT [CadQuery Workbench](CadQuery_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:CadQuery diff --git a/wiki/Sandbox:Cura_Engine.md b/wiki/Sandbox:Cura_Engine.md index 38972928b7..00cff3ffe4 100644 --- a/wiki/Sandbox:Cura_Engine.md +++ b/wiki/Sandbox:Cura_Engine.md @@ -1,2 +1,5 @@ # Sandbox:Cura Engine 1. REDIRECT [Cura Engine Workbench](Cura_Engine_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:Cura Engine diff --git a/wiki/Sandbox:Ddefc.md b/wiki/Sandbox:Ddefc.md index 89934cc70b..584042b5e7 100644 --- a/wiki/Sandbox:Ddefc.md +++ b/wiki/Sandbox:Ddefc.md @@ -2,3 +2,6 @@ Checking whether my newly-minted editing permissions allow me to create this page. *Narrator: They did.* + +--- +[documentation index](../README.md) > Sandbox:Ddefc diff --git a/wiki/Sandbox:Dependency_Matrix.md b/wiki/Sandbox:Dependency_Matrix.md index ab8893b56e..a64283e271 100644 --- a/wiki/Sandbox:Dependency_Matrix.md +++ b/wiki/Sandbox:Dependency_Matrix.md @@ -104,3 +104,6 @@ graphviz OpenCamlib [Category:3rd Party](Category:3rd_Party.md) [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:Dependency Matrix diff --git a/wiki/Sandbox:Developing_FreeCAD_with_GitKraken.md b/wiki/Sandbox:Developing_FreeCAD_with_GitKraken.md index 4bcd47f13b..29df05668a 100644 --- a/wiki/Sandbox:Developing_FreeCAD_with_GitKraken.md +++ b/wiki/Sandbox:Developing_FreeCAD_with_GitKraken.md @@ -1,2 +1,5 @@ # Sandbox:Developing FreeCAD with GitKraken 1. REDIRECT [Developing FreeCAD with GitKraken](Developing_FreeCAD_with_GitKraken.md) + +--- +[documentation index](../README.md) > Sandbox:Developing FreeCAD with GitKraken diff --git a/wiki/Sandbox:Edwilliams16.md b/wiki/Sandbox:Edwilliams16.md index bbc81b4f6a..5d90eeecca 100644 --- a/wiki/Sandbox:Edwilliams16.md +++ b/wiki/Sandbox:Edwilliams16.md @@ -319,3 +319,6 @@ def getLCSVertex(sel): + +--- +[documentation index](../README.md) > Sandbox:Edwilliams16 diff --git a/wiki/Sandbox:ExplodedAnimation.md b/wiki/Sandbox:ExplodedAnimation.md index c4f4e34718..276df1e774 100644 --- a/wiki/Sandbox:ExplodedAnimation.md +++ b/wiki/Sandbox:ExplodedAnimation.md @@ -1,2 +1,5 @@ # Sandbox:ExplodedAnimation 1. REDIRECT [ExplodedAssembly Workbench](ExplodedAssembly_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:ExplodedAnimation diff --git a/wiki/Sandbox:Exploded_Assembly.md b/wiki/Sandbox:Exploded_Assembly.md index 9ed4de6d30..08c67541c4 100644 --- a/wiki/Sandbox:Exploded_Assembly.md +++ b/wiki/Sandbox:Exploded_Assembly.md @@ -91,3 +91,6 @@ To install manually download this repository as ZIP and: - [Macros recipes](Macros_recipes.md) [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:Exploded Assembly diff --git a/wiki/Sandbox:FBXL5.md b/wiki/Sandbox:FBXL5.md index e6d9031471..64ea5ffa41 100644 --- a/wiki/Sandbox:FBXL5.md +++ b/wiki/Sandbox:FBXL5.md @@ -2,3 +2,6 @@ Dies ist eine Sandbox [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:FBXL5 diff --git a/wiki/Sandbox:FCGear.md b/wiki/Sandbox:FCGear.md index daaa60df25..b42624d728 100644 --- a/wiki/Sandbox:FCGear.md +++ b/wiki/Sandbox:FCGear.md @@ -1,2 +1,5 @@ # Sandbox:FCGear 1. REDIRECT [FCGear Workbench](FCGear_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:FCGear diff --git a/wiki/Sandbox:Fasteners.md b/wiki/Sandbox:Fasteners.md index bfe2c489f8..9051684428 100644 --- a/wiki/Sandbox:Fasteners.md +++ b/wiki/Sandbox:Fasteners.md @@ -1,2 +1,5 @@ # Sandbox:Fasteners 1. REDIRECT [Fasteners Workbench](Fasteners_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:Fasteners diff --git a/wiki/Sandbox:Gnrc.md b/wiki/Sandbox:Gnrc.md index ee1b265601..199356773f 100644 --- a/wiki/Sandbox:Gnrc.md +++ b/wiki/Sandbox:Gnrc.md @@ -26,3 +26,6 @@ Bonjour ! [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:Gnrc diff --git a/wiki/Sandbox:Hollow_Cylinder_Tutorial.md b/wiki/Sandbox:Hollow_Cylinder_Tutorial.md index 1b60688980..d89af80c41 100644 --- a/wiki/Sandbox:Hollow_Cylinder_Tutorial.md +++ b/wiki/Sandbox:Hollow_Cylinder_Tutorial.md @@ -1,7 +1,4 @@ # Sandbox:Hollow Cylinder Tutorial - - - [Tutorial\_guidelines](Tutorial_guidelines.md) @@ -21,3 +18,6 @@ - ![](images/At2_Tip.png )Tip - ![](images/At2_Delete.gif )Delete ? - Something You think should be deleted + +--- +[documentation index](../README.md) > Sandbox:Hollow Cylinder Tutorial diff --git a/wiki/Sandbox:HowTo.md b/wiki/Sandbox:HowTo.md index 42cd9f51f5..17dbba3b6a 100644 --- a/wiki/Sandbox:HowTo.md +++ b/wiki/Sandbox:HowTo.md @@ -124,3 +124,6 @@ In FC 0.18 this does not work. The View are projected from the acutal 3D view, b [top](#top.md) [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:HowTo diff --git a/wiki/Sandbox:Images.md b/wiki/Sandbox:Images.md index 711aa97c0f..aabe4a2660 100644 --- a/wiki/Sandbox:Images.md +++ b/wiki/Sandbox:Images.md @@ -1,4 +1,7 @@ # Sandbox:Images - Screenshot: Snapping the second point of a line to the center of an arc +Screenshot: Snapping the second point of a line to the center of an arc --------------------------------------------------------------------------------- -- - + + +--- +[documentation index](../README.md) > Sandbox:Images diff --git a/wiki/Sandbox:Kerkythea.md b/wiki/Sandbox:Kerkythea.md index eb27a313d8..11d80be215 100644 --- a/wiki/Sandbox:Kerkythea.md +++ b/wiki/Sandbox:Kerkythea.md @@ -1,2 +1,5 @@ # Sandbox:Kerkythea 1. REDIRECT [Macro Kerkythea](Macro_Kerkythea.md) + +--- +[documentation index](../README.md) > Sandbox:Kerkythea diff --git a/wiki/Sandbox:Keyboard_Shortcuts.md b/wiki/Sandbox:Keyboard_Shortcuts.md index 64f8f8b5de..0ec74593da 100644 --- a/wiki/Sandbox:Keyboard_Shortcuts.md +++ b/wiki/Sandbox:Keyboard_Shortcuts.md @@ -1,5 +1,4 @@ # Sandbox:Keyboard Shortcuts - {{TOCright}} # Context @@ -979,3 +978,6 @@ Proposed guidelines : [Web\_OpenWebsite](Web_OpenWebsite.md) Opens a website in FreeCAD [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:Keyboard Shortcuts diff --git a/wiki/Sandbox:Kinagaki.md b/wiki/Sandbox:Kinagaki.md index 14e625aeac..598c79e565 100644 --- a/wiki/Sandbox:Kinagaki.md +++ b/wiki/Sandbox:Kinagaki.md @@ -93,3 +93,6 @@ Under preparation. [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Sandbox](Category:Sandbox.md) > Sandbox:Kinagaki diff --git a/wiki/Sandbox:Lattice2.md b/wiki/Sandbox:Lattice2.md index 8a1346d258..3f014e2660 100644 --- a/wiki/Sandbox:Lattice2.md +++ b/wiki/Sandbox:Lattice2.md @@ -1,2 +1,5 @@ # Sandbox:Lattice2 1. REDIRECT [Lattice2 Workbench](Lattice2_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:Lattice2 diff --git a/wiki/Sandbox:Mario52.md b/wiki/Sandbox:Mario52.md index 3b01b65262..f65be6614e 100644 --- a/wiki/Sandbox:Mario52.md +++ b/wiki/Sandbox:Mario52.md @@ -1,5 +1,4 @@ # Sandbox:Mario52 - **'''my personal Sanbox Mario52'''
'''Not For Release - Do not Translate - Do not change - Not to read - Not to look'''** @@ -53,3 +52,6 @@ totoche [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:Mario52 diff --git a/wiki/Sandbox:Parts_Library.md b/wiki/Sandbox:Parts_Library.md index 493d8021f7..e101cc4044 100644 --- a/wiki/Sandbox:Parts_Library.md +++ b/wiki/Sandbox:Parts_Library.md @@ -1,2 +1,5 @@ # Sandbox:Parts Library 1. REDIRECT [Parts Library Workbench](Parts_Library_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:Parts Library diff --git a/wiki/Sandbox:Printed_Circuit_Board.md b/wiki/Sandbox:Printed_Circuit_Board.md index b277961f67..8400d51496 100644 --- a/wiki/Sandbox:Printed_Circuit_Board.md +++ b/wiki/Sandbox:Printed_Circuit_Board.md @@ -1,2 +1,5 @@ # Sandbox:Printed Circuit Board 1. REDIRECT [PCB Workbench](PCB_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:Printed Circuit Board diff --git a/wiki/Sandbox:Pyrate.md b/wiki/Sandbox:Pyrate.md index 41ea21eac0..58e17a3fe7 100644 --- a/wiki/Sandbox:Pyrate.md +++ b/wiki/Sandbox:Pyrate.md @@ -1,2 +1,5 @@ # Sandbox:Pyrate 1. REDIRECT [Pyrate Workbench](Pyrate_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:Pyrate diff --git a/wiki/Sandbox:Rename_m2wb_tracking.md b/wiki/Sandbox:Rename_m2wb_tracking.md index 0a1d21e936..c2f82f1e8b 100644 --- a/wiki/Sandbox:Rename_m2wb_tracking.md +++ b/wiki/Sandbox:Rename_m2wb_tracking.md @@ -1,2 +1,5 @@ # Sandbox:Rename m2wb tracking 1. REDIRECT [Rename Module to Workbench](Rename_Module_to_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:Rename m2wb tracking diff --git a/wiki/Sandbox:Roy_043.md b/wiki/Sandbox:Roy_043.md index 7574642bec..721835838d 100644 --- a/wiki/Sandbox:Roy_043.md +++ b/wiki/Sandbox:Roy_043.md @@ -1,11 +1,4 @@ # Sandbox:Roy 043 - - - - - - - The preferences for the [Draft Workbench](Draft_Workbench.md) can be found in the [Preferences Editor](Preferences_Editor.md). In the menu select **Edit → Preferences... → Draft**. There are five tabs: [General settings](#General_settings.md), [User interface settings](#User_interface_settings.md), [Grid and snapping](#Grid_and_snapping.md), [Visual settings](#Visual_settings.md) and [Texts and dimensions](#Texts_and_dimensions.md). @@ -444,3 +437,6 @@ On the *Texts and dimensions* tab you can specify the following: [Category:Preferences](Category:Preferences.md) [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Sandbox:Roy 043 diff --git a/wiki/Sandbox:Sheet_Metal.md b/wiki/Sandbox:Sheet_Metal.md index 0d67f2a3a7..de6c3bdd59 100644 --- a/wiki/Sandbox:Sheet_Metal.md +++ b/wiki/Sandbox:Sheet_Metal.md @@ -1,2 +1,5 @@ # Sandbox:Sheet Metal 1. REDIRECT [SheetMetal Workbench](SheetMetal_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:Sheet Metal diff --git a/wiki/Sandbox:Simone.b.md b/wiki/Sandbox:Simone.b.md index 39c0644bd5..0a7bac4c7c 100644 --- a/wiki/Sandbox:Simone.b.md +++ b/wiki/Sandbox:Simone.b.md @@ -1,5 +1,4 @@ # Sandbox:Simone.b - {{Macro |Name=HilbertCurve |Description=This macro creates an Hilbert curve wire in 2 or 3 dimensions with many iterations. @@ -293,6 +292,5 @@ hilbert_dialog = Hilbert_Dialog() hilbert_dialog.exec() }} - - - +--- +[documentation index](../README.md) > Sandbox:Simone.b diff --git a/wiki/Sandbox:Sketcher_import_DXF_tutorial.md b/wiki/Sandbox:Sketcher_import_DXF_tutorial.md index 334f595514..034a5a8c90 100644 --- a/wiki/Sandbox:Sketcher_import_DXF_tutorial.md +++ b/wiki/Sandbox:Sketcher_import_DXF_tutorial.md @@ -30,3 +30,6 @@ In the preferences section [Inport Export](Import_Export_Preferences.md) (DXF Ta Tip: This procedure can also be useful to convert parts from other CAD programs that can not be directly imported. If much of the design is in sketches, exporting the sketches to DXF and re-adding constraints and dimensions in FreeCAD can much quicker than re-creating the parts from scratch or using exported STEP files without modifiable creation history. [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:Sketcher import DXF tutorial diff --git a/wiki/Sandbox:Symbols_Library.md b/wiki/Sandbox:Symbols_Library.md index c331a7e0cb..63dd4586dd 100644 --- a/wiki/Sandbox:Symbols_Library.md +++ b/wiki/Sandbox:Symbols_Library.md @@ -1,2 +1,5 @@ # Sandbox:Symbols Library 1. REDIRECT [Symbols Library Workbench](Symbols_Library_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:Symbols Library diff --git a/wiki/Sandbox:TechDraw_TemplateHelper.md b/wiki/Sandbox:TechDraw_TemplateHelper.md index 65fb965336..5ad3420273 100644 --- a/wiki/Sandbox:TechDraw_TemplateHelper.md +++ b/wiki/Sandbox:TechDraw_TemplateHelper.md @@ -1,11 +1,4 @@ # Sandbox:TechDraw TemplateHelper - - - - - - - {{TOCright}} ## Introduction @@ -3155,3 +3148,6 @@ main() This is a sandbox / Dies ist eine Sandbox [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:TechDraw TemplateHelper diff --git a/wiki/Sandbox:TechDraw_template_creation_tutorial.md b/wiki/Sandbox:TechDraw_template_creation_tutorial.md index 4d59330b27..ca4426b3f5 100644 --- a/wiki/Sandbox:TechDraw_template_creation_tutorial.md +++ b/wiki/Sandbox:TechDraw_template_creation_tutorial.md @@ -1,10 +1,4 @@ # Sandbox:TechDraw template creation tutorial - - - - - - {{TutorialInfo |Topic=Drafting |Level=Beginner @@ -154,3 +148,6 @@ If you do not see the green boxes for your editable texts, there might be someth {{Tutorials navi}} {{TechDraw Tools navi}} [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:TechDraw template creation tutorial diff --git a/wiki/Sandbox:TestWikiPage.md b/wiki/Sandbox:TestWikiPage.md index 6aaaeb7d55..c5931e2199 100644 --- a/wiki/Sandbox:TestWikiPage.md +++ b/wiki/Sandbox:TestWikiPage.md @@ -1,6 +1,4 @@ # Sandbox:TestWikiPage - - ### Overview This page can be used to try out wiki mark up before editing a real page. Feel free to do whatever you want here! @@ -86,3 +84,6 @@ This page can be used to try out wiki mark up before editing a real page. Feel f [Category:Documentation](Category:Documentation.md) [Category:Wiki](Category:Wiki.md) [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:TestWikiPage diff --git a/wiki/Sandbox:Timber.md b/wiki/Sandbox:Timber.md index 0952f0d8fa..3be7022e98 100644 --- a/wiki/Sandbox:Timber.md +++ b/wiki/Sandbox:Timber.md @@ -1,2 +1,5 @@ # Sandbox:Timber 1. REDIRECT [Timber Workbench](Timber_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:Timber diff --git a/wiki/Sandbox:TutorialArchBIM.md b/wiki/Sandbox:TutorialArchBIM.md index cd2227ff05..849137660f 100644 --- a/wiki/Sandbox:TutorialArchBIM.md +++ b/wiki/Sandbox:TutorialArchBIM.md @@ -1,5 +1,4 @@ # Sandbox:TutorialArchBIM - {{TutorialInfo/en |Topic=Modeling |Level=Intermediate @@ -1476,3 +1475,6 @@ Also in {{Code| }} [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:TutorialArchBIM diff --git a/wiki/Sandbox:TutorialBIMannex.md b/wiki/Sandbox:TutorialBIMannex.md index cf0bb01102..7e2be30967 100644 --- a/wiki/Sandbox:TutorialBIMannex.md +++ b/wiki/Sandbox:TutorialBIMannex.md @@ -1,5 +1,4 @@ # Sandbox:TutorialBIMannex - {{TutorialInfo/en |Topic=Modeling |Level=Intermediate @@ -177,3 +176,6 @@ As a resource: there is an excellent explanation on - [Jason\'s Blog](https://jt [IfcOpenShell\_code\_examples](https://wiki.osarch.org/index.php?title=IfcOpenShell_code_examples) [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:TutorialBIMannex diff --git a/wiki/Sandbox:VWegert.md b/wiki/Sandbox:VWegert.md index 3f98f6a1f8..b98d0d5adb 100644 --- a/wiki/Sandbox:VWegert.md +++ b/wiki/Sandbox:VWegert.md @@ -7,3 +7,6 @@ This is a sandbox page to try out Wiki formatting code. Cell by Alias =Spreadsheet042.MyAlias =\<\>.MyAlias [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:VWegert diff --git a/wiki/Sandbox:Workfeature.md b/wiki/Sandbox:Workfeature.md index 11fbc96207..c394485ff9 100644 --- a/wiki/Sandbox:Workfeature.md +++ b/wiki/Sandbox:Workfeature.md @@ -1,2 +1,5 @@ # Sandbox:Workfeature 1. REDIRECT [Workfeature Workbench](Workfeature_Workbench.md) + +--- +[documentation index](../README.md) > Sandbox:Workfeature diff --git a/wiki/Sandbox:Yourname.md b/wiki/Sandbox:Yourname.md index bbf8a77877..381b17d601 100644 --- a/wiki/Sandbox:Yourname.md +++ b/wiki/Sandbox:Yourname.md @@ -1,2 +1,5 @@ # Sandbox:Yourname 1. REDIRECT [Sandbox:Edwilliams16](Sandbox:Edwilliams16.md) + +--- +[documentation index](../README.md) > Sandbox:Yourname diff --git a/wiki/Scarica.md b/wiki/Scarica.md index 66e0e44137..2b1b0468c2 100644 --- a/wiki/Scarica.md +++ b/wiki/Scarica.md @@ -1,2 +1,5 @@ # Scarica 1. REDIRECT [Download/it](Download/it.md) + +--- +[documentation index](../README.md) > Scarica diff --git a/wiki/Scene_inspector.md b/wiki/Scene_inspector.md index 1db5b6e82e..7027ea0872 100644 --- a/wiki/Scene_inspector.md +++ b/wiki/Scene_inspector.md @@ -1,2 +1,5 @@ # Scene inspector 1. REDIRECT [Std\_SceneInspector](Std_SceneInspector.md) + +--- +[documentation index](../README.md) > Scene inspector diff --git a/wiki/Scenegraph.md b/wiki/Scenegraph.md index 3cbd5d0483..9a3f0abf85 100644 --- a/wiki/Scenegraph.md +++ b/wiki/Scenegraph.md @@ -1,8 +1,4 @@ # Scenegraph - - - - ## Introduction The geometry that appears in the [3D views](3D_view.md) of FreeCAD is rendered by the [Coin3D](https://en.wikipedia.org/wiki/Coin3D) library. Coin3D is an implementation of the [OpenInventor](https://en.wikipedia.org/wiki/Open_Inventor) standard. The [OpenCASCADE](https://en.wikipedia.org/wiki/Open_Cascade_Technology) software also provides the same functionality, but it was decided at the very early stages of FreeCAD not to use the built-in OpenCASCADE viewer, but rather switch to the more performant Coin3D software. A good way to learn about that library is the book [Open Inventor Mentor](http://www-evasion.imag.fr/Membres/Francois.Faure/doc/inventorMentor/sgi_html/). @@ -69,3 +65,6 @@ See [Coin3d snippets](Coin3d_snippets.md) courtesy of MariwanJ\'s research for t {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scenegraph diff --git a/wiki/Scientific_Papers.md b/wiki/Scientific_Papers.md index cd99746288..b4c3c43460 100644 --- a/wiki/Scientific_Papers.md +++ b/wiki/Scientific_Papers.md @@ -10,3 +10,6 @@ List of scientific papers that reference FreeCAD ## Glossary [Glossary](Glossary.md) + +--- +[documentation index](../README.md) > Scientific Papers diff --git a/wiki/Scientific_literature.md b/wiki/Scientific_literature.md index 75c1bb1cfa..79136b6d7f 100644 --- a/wiki/Scientific_literature.md +++ b/wiki/Scientific_literature.md @@ -1,6 +1,4 @@ # Scientific literature - - ## Description This page collects some articles published that reference or use the FreeCAD system. @@ -14,3 +12,6 @@ Most of these articles are open-access. {{Powerdocnavi}} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Scientific literature diff --git a/wiki/Screenshots.md b/wiki/Screenshots.md index 86bae460df..7941c8c58b 100644 --- a/wiki/Screenshots.md +++ b/wiki/Screenshots.md @@ -1,6 +1,4 @@ # Screenshots - - Here are a few screenshots showing different parts of FreeCAD. They are not ordered in any particular timeline, so the images may differ from your actual version. See more screenshots submitted by FreeCAD users on the [screenshot forum thread](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) and on the [\"Show your project here!\" Users Showcase forum part](http://forum.freecadweb.org/viewforum.php?f=24). ### The 0.17 release @@ -204,3 +202,6 @@ Dialog to save a picture with arbitrary sizes. [Category:User Documentation](Category:User_Documentation.md) [Category:Screenshots](Category:Screenshots.md) + +--- +[documentation index](../README.md) > Screenshots diff --git a/wiki/Scripted_Parts:_Ball_Bearing_-_Part_1.md b/wiki/Scripted_Parts:_Ball_Bearing_-_Part_1.md index 82618fc544..d04071aab7 100644 --- a/wiki/Scripted_Parts:_Ball_Bearing_-_Part_1.md +++ b/wiki/Scripted_Parts:_Ball_Bearing_-_Part_1.md @@ -1,5 +1,5 @@ # Scripted Parts: Ball Bearing - Part 1 - {{TutorialInfo +{{TutorialInfo |Topic= Part Scripting - Ball Bearing #1 |Level= Beginner |Time= 30 min @@ -139,3 +139,6 @@ Gui.SendMsgToActiveView("ViewFit") {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted Parts: Ball Bearing - Part 1 diff --git a/wiki/Scripted_Parts:_Ball_Bearing_-_Part_2.md b/wiki/Scripted_Parts:_Ball_Bearing_-_Part_2.md index 12a02ec727..85cecc7bfc 100644 --- a/wiki/Scripted_Parts:_Ball_Bearing_-_Part_2.md +++ b/wiki/Scripted_Parts:_Ball_Bearing_-_Part_2.md @@ -1,5 +1,5 @@ # Scripted Parts: Ball Bearing - Part 2 - {{TutorialInfo +{{TutorialInfo |Topic= Part Scripting - Ball Bearing #2 |Level= Beginner |Time= 30 min @@ -174,3 +174,6 @@ Gui.SendMsgToActiveView("ViewFit") {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted Parts: Ball Bearing - Part 2 diff --git a/wiki/Scripted_objects.md b/wiki/Scripted_objects.md index 3e5d67f2e6..41d5e118c7 100644 --- a/wiki/Scripted_objects.md +++ b/wiki/Scripted_objects.md @@ -1,8 +1,4 @@ # Scripted objects - - - - ## Introduction Besides the standard object types such as annotations, meshes and parts objects, FreeCAD also offers the amazing possibility to build 100% python-scripted parametric objects, called [Python Features](App_FeaturePython.md). Those objects will behave exactly as any other FreeCAD object, and are saved and restored automatically on file save/load. @@ -888,3 +884,6 @@ In addition to the examples presented here have a look at FreeCAD source code [s {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects diff --git a/wiki/Scripted_objects_migration.md b/wiki/Scripted_objects_migration.md index 576b9f9010..728feb173f 100644 --- a/wiki/Scripted_objects_migration.md +++ b/wiki/Scripted_objects_migration.md @@ -1,6 +1,4 @@ # Scripted objects migration - - ## Introduction [Scripted objects](Scripted_objects.md) are rebuilt every time a [FCStd document](File_Format_FCStd.md) is opened. To do this the document keeps a reference to the module and Python class that were used to create the object, along with its properties. @@ -550,3 +548,6 @@ Preferably avoid the following: {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects migration diff --git a/wiki/Scripted_objects_saving_attributes.md b/wiki/Scripted_objects_saving_attributes.md index 2b75392368..4f99f43e3b 100644 --- a/wiki/Scripted_objects_saving_attributes.md +++ b/wiki/Scripted_objects_saving_attributes.md @@ -1,7 +1,4 @@ # Scripted objects saving attributes - - - {{TOCright}} @@ -190,3 +187,6 @@ class CustomObject: {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects saving attributes diff --git a/wiki/Scripted_objects_with_attachment.md b/wiki/Scripted_objects_with_attachment.md index 8dea9aadd6..392798e2b7 100644 --- a/wiki/Scripted_objects_with_attachment.md +++ b/wiki/Scripted_objects_with_attachment.md @@ -1,6 +1,4 @@ # Scripted objects with attachment - - ## Introduction The purpose of this page is to show a minimal example of [Part EditAttachment](Part_EditAttachment.md) feature using [Scripted objects](Scripted_objects.md) in Python. @@ -158,3 +156,6 @@ Note: For FreeCAD 0.19 this tutorial needs a minor update: {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects with attachment diff --git a/wiki/Scripting.md b/wiki/Scripting.md index ff8bbfd55e..f54d107dd1 100644 --- a/wiki/Scripting.md +++ b/wiki/Scripting.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Scripting diff --git a/wiki/Scripting_Sketcher_constraints_in_Python.md b/wiki/Scripting_Sketcher_constraints_in_Python.md index 9c5ff9c6a4..5367b64d30 100644 --- a/wiki/Scripting_Sketcher_constraints_in_Python.md +++ b/wiki/Scripting_Sketcher_constraints_in_Python.md @@ -1,2 +1,5 @@ # Scripting Sketcher constraints in Python 1. REDIRECT [Sketcher scripting](Sketcher_scripting.md) + +--- +[documentation index](../README.md) > Scripting Sketcher constraints in Python diff --git a/wiki/Scripting_and_macros.md b/wiki/Scripting_and_macros.md index 553f55a7c6..d0d80e9164 100644 --- a/wiki/Scripting_and_macros.md +++ b/wiki/Scripting_and_macros.md @@ -1,9 +1,4 @@ # Scripting and macros - - - - - ## Overview of Python scripting pages - Python related pages in the Manual: @@ -93,3 +88,6 @@ {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripting and macros diff --git a/wiki/Scripting_examples.md b/wiki/Scripting_examples.md index 6a60c95f6e..1df11f3239 100644 --- a/wiki/Scripting_examples.md +++ b/wiki/Scripting_examples.md @@ -1,2 +1,5 @@ # Scripting examples 1. REDIRECT [Scripting\_and\_macros](Scripting_and_macros.md) + +--- +[documentation index](../README.md) > Scripting examples diff --git a/wiki/Scripts.md b/wiki/Scripts.md index e4dc002274..e5608d8d73 100644 --- a/wiki/Scripts.md +++ b/wiki/Scripts.md @@ -1,5 +1,5 @@ # Scripts - {{TutorialInfo +{{TutorialInfo |Topic=Scripting |Level=Base |Time= @@ -313,3 +313,6 @@ This is the meaning of the word \"awkward\" that I\'ve used to define `Placement {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripts diff --git a/wiki/Selection_API.md b/wiki/Selection_API.md index 59024bfadb..03a12ff10b 100644 --- a/wiki/Selection_API.md +++ b/wiki/Selection_API.md @@ -1,5 +1,5 @@ # Selection API - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** The selection submodule is part of the FreeCADGui module. Example: ```python @@ -28,3 +28,6 @@ sel = FreeCADGui.Selection.getSelection() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Selection API diff --git a/wiki/Selection_methods.md b/wiki/Selection_methods.md index d7a2d22651..7eaf0ae305 100644 --- a/wiki/Selection_methods.md +++ b/wiki/Selection_methods.md @@ -1,11 +1,4 @@ # Selection methods - - - - - - - ## Overview [Selection methods](Selection_methods.md) in FreeCAD allow picking objects in the [FreeCAD Interface](Interface.md): such as [3D view](3D_view.md), [tree view](Tree_view.md), [selection view](Selection_view.md), and other dialogs. Some selection methods are workbench specific and are documented in the particular workbench documentation. @@ -85,7 +78,5 @@ Gui.Selection.addSelectionGate("SELECT Part::Feature SUBELEMENT Edge") See the [Source documentation](Source_documentation.md) and [Std PythonHelp](Std_PythonHelp.md) for more help on using these tools. - - - - +--- +[documentation index](../README.md) > Selection methods diff --git a/wiki/Selection_view.md b/wiki/Selection_view.md index 8b89109fb7..9cabcf61cd 100644 --- a/wiki/Selection_view.md +++ b/wiki/Selection_view.md @@ -1,6 +1,4 @@ # Selection view - - ## Introduction The [selection view](selection_view.md) is a panel in the [interface](interface.md) by default located below the [combo view](combo_view.md). Just like the [property editor](property_editor.md), it shows more information about the currently selected objects. @@ -78,4 +76,7 @@ Starting from v0.19, the **picked object list** checkbox is available. If this i {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Selection view diff --git a/wiki/Shape.md b/wiki/Shape.md index 2f5521f7ae..5be276f589 100644 --- a/wiki/Shape.md +++ b/wiki/Shape.md @@ -1,6 +1,4 @@ # Shape - - ## Introduction In FreeCAD the word \"[Shape](Shape.md)\" is normally used to refer to a [Part TopoShape](Part_TopoShape.md) (`Part::TopoShape` class), a type of object that gives an element its 3D geometrical and parametric representation (cube, pyramid, sphere, cylinder, fusion, etc.). @@ -35,3 +33,6 @@ However, when more precision is required, the distinction must be made. {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Shape diff --git a/wiki/SheetMetal.md b/wiki/SheetMetal.md index 38fae7cfef..315b0ce566 100644 --- a/wiki/SheetMetal.md +++ b/wiki/SheetMetal.md @@ -1,2 +1,5 @@ # SheetMetal 1. REDIRECT [SheetMetal Workbench](SheetMetal_Workbench.md) + +--- +[documentation index](../README.md) > SheetMetal diff --git a/wiki/SheetMetal_AddBase.md b/wiki/SheetMetal_AddBase.md index 6be87aeb5f..6c318474b2 100644 --- a/wiki/SheetMetal_AddBase.md +++ b/wiki/SheetMetal_AddBase.md @@ -6,6 +6,8 @@ Shortcut:**C** **B** --- +# SheetMetal AddBase + ## Description The **SheetMetal AddBase** command creates a sheetmetal wall from a sketch. @@ -59,3 +61,6 @@ A SheetMetal BaseBend object is derived from a [Part Feature](Part_Feature.md) o [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddBase diff --git a/wiki/SheetMetal_AddBend.md b/wiki/SheetMetal_AddBend.md index aac396bbdd..a990402600 100644 --- a/wiki/SheetMetal_AddBend.md +++ b/wiki/SheetMetal_AddBend.md @@ -6,6 +6,8 @@ Shortcut:**S** **B** --- +# SheetMetal AddBend + ## Description The **SheetMetal AddBend** command folds a wall at a chosen line. @@ -44,3 +46,6 @@ A SheetMetal SolidBend object is derived from a [Part Feature](Part_Feature.md) [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddBend diff --git a/wiki/SheetMetal_AddCornerRelief.md b/wiki/SheetMetal_AddCornerRelief.md index 432db0ca1e..959251e54b 100644 --- a/wiki/SheetMetal_AddCornerRelief.md +++ b/wiki/SheetMetal_AddCornerRelief.md @@ -6,6 +6,8 @@ Shortcut:**C** **R** --- +# SheetMetal AddCornerRelief + ## Description The **SheetMetal AddCornerRelief** command adds a corner relief to a corner. @@ -57,3 +59,6 @@ A SheetMetal CornerRelief object is derived from a [Part Feature](Part_Feature.m [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddCornerRelief diff --git a/wiki/SheetMetal_AddFoldWall.md b/wiki/SheetMetal_AddFoldWall.md index 64813f628f..f8edda918d 100644 --- a/wiki/SheetMetal_AddFoldWall.md +++ b/wiki/SheetMetal_AddFoldWall.md @@ -6,6 +6,8 @@ Shortcut:**C** **F** --- +# SheetMetal AddFoldWall + ## Description The **SheetMetal AddFoldWall** command folds a wall at a chosen line with a specified bend radius. @@ -121,3 +123,6 @@ Note!: In real life the upward fold must be done before the downward fold. Only [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddFoldWall diff --git a/wiki/SheetMetal_AddJunction.md b/wiki/SheetMetal_AddJunction.md index de663fcdeb..daeb128d22 100644 --- a/wiki/SheetMetal_AddJunction.md +++ b/wiki/SheetMetal_AddJunction.md @@ -6,6 +6,8 @@ Shortcut:**S** **J** --- +# SheetMetal AddJunction + ## Description The **SheetMetal AddJunction** command\... @@ -79,3 +81,6 @@ A SheetMetal Junction object is derived from a [Part Feature](Part_Feature.md) o [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddJunction diff --git a/wiki/SheetMetal_AddRelief.md b/wiki/SheetMetal_AddRelief.md index c4952da338..ac955028b4 100644 --- a/wiki/SheetMetal_AddRelief.md +++ b/wiki/SheetMetal_AddRelief.md @@ -6,6 +6,8 @@ Shortcut:**S** **R** --- +# SheetMetal AddRelief + ## Description The **SheetMetal AddRelief** command\... @@ -79,3 +81,6 @@ A SheetMetal Relief object is derived from a [Part Feature](Part_Feature.md) obj [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddRelief diff --git a/wiki/SheetMetal_AddWall.md b/wiki/SheetMetal_AddWall.md index 1f2ebd907f..5ba152857c 100644 --- a/wiki/SheetMetal_AddWall.md +++ b/wiki/SheetMetal_AddWall.md @@ -6,6 +6,8 @@ Shortcut:**W** --- +# SheetMetal AddWall + ## Description The **SheetMetal AddWall** command creates a bend on a selected edge. @@ -187,3 +189,6 @@ Done! [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddWall diff --git a/wiki/SheetMetal_Examples.md b/wiki/SheetMetal_Examples.md index 6d876e6345..34f478cdd4 100644 --- a/wiki/SheetMetal_Examples.md +++ b/wiki/SheetMetal_Examples.md @@ -1,8 +1,4 @@ # SheetMetal Examples - - - - {{TOCright}} @@ -105,3 +101,6 @@ For the second use of **Extend Face** a Sketch with two contours is used for sha [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal Examples diff --git a/wiki/SheetMetal_Extrude.md b/wiki/SheetMetal_Extrude.md index bb52c9d104..31f54a32da 100644 --- a/wiki/SheetMetal_Extrude.md +++ b/wiki/SheetMetal_Extrude.md @@ -6,6 +6,8 @@ Shortcut:**E** --- +# SheetMetal Extrude + ## Description The **SheetMetal Extrude** command extends a sheet metal face. @@ -93,3 +95,6 @@ A SheetMetal Extend object is derived from a [Part Feature](Part_Feature.md) obj [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal Extrude diff --git a/wiki/SheetMetal_Forming.md b/wiki/SheetMetal_Forming.md index 8481d1d6fc..03bc130547 100644 --- a/wiki/SheetMetal_Forming.md +++ b/wiki/SheetMetal_Forming.md @@ -6,6 +6,8 @@ Shortcut:**M** **F** --- +# SheetMetal Forming + ## Description The **SheetMetal Forming** command creates an embossed shape in a SheetMetal wall using a separate solid object. @@ -183,3 +185,6 @@ No need to work with coplanar sketches here. [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal Forming diff --git a/wiki/SheetMetal_SketchOnSheet.md b/wiki/SheetMetal_SketchOnSheet.md index 9e7f0de725..58b66c3443 100644 --- a/wiki/SheetMetal_SketchOnSheet.md +++ b/wiki/SheetMetal_SketchOnSheet.md @@ -6,6 +6,8 @@ Shortcut:**M** **S** --- +# SheetMetal SketchOnSheet + ## Description The [Sketch On Sheet metal](SheetMetal_SketchOnSheet.md) command cuts holes along the folded walls of a sheet metal object. For the hole layout a [sketch](Sketcher_Workbench.md) is used. @@ -106,3 +108,6 @@ This thingamajig is made of a folded sheet metal object with holes added. And s [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal SketchOnSheet diff --git a/wiki/SheetMetal_UnattendedUnfold.md b/wiki/SheetMetal_UnattendedUnfold.md index 4b0b2bdc83..a43899af50 100644 --- a/wiki/SheetMetal_UnattendedUnfold.md +++ b/wiki/SheetMetal_UnattendedUnfold.md @@ -7,6 +7,8 @@ SeeAlso:[SheetMetal Unfold](SheetMetal_Unfold.md) --- +# SheetMetal UnattendedUnfold + ## Description The [Unattended Unfold](SheetMetal_UnattendedUnfold.md) command unfolds a sheet metal object. @@ -58,3 +60,6 @@ See [Unfold]( [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal UnattendedUnfold diff --git a/wiki/SheetMetal_Unfold.md b/wiki/SheetMetal_Unfold.md index 0f14049e4e..b0f4d3f38b 100644 --- a/wiki/SheetMetal_Unfold.md +++ b/wiki/SheetMetal_Unfold.md @@ -7,6 +7,8 @@ SeeAlso:[SheetMetal UnattendedUnfold](SheetMetal_UnattendedUnfold.md) --- +# SheetMetal Unfold + ## Description The **SheetMetal Unfold** command unfolds a sheet metal object. @@ -51,3 +53,6 @@ The **Unfold** object, on the other hand, is derived from a [Part Feature](Part_ [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal Unfold diff --git a/wiki/SheetMetal_Workbench.md b/wiki/SheetMetal_Workbench.md index 1aa755ece7..b6605c790d 100644 --- a/wiki/SheetMetal_Workbench.md +++ b/wiki/SheetMetal_Workbench.md @@ -1,8 +1,4 @@ -# SheetMetal Workbench - - - -Sheet Metal External workbench icon +# Sheet Metal External workbench icon SheetMetal Workbench @@ -267,3 +263,6 @@ How to do ? [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > SheetMetal Workbench diff --git a/wiki/Sheetmetal_Workbench.md b/wiki/Sheetmetal_Workbench.md index b68a3d85ba..251b039ec7 100644 --- a/wiki/Sheetmetal_Workbench.md +++ b/wiki/Sheetmetal_Workbench.md @@ -1,2 +1,5 @@ # Sheetmetal Workbench 1. REDIRECT [SheetMetal\_Workbench](SheetMetal_Workbench.md) + +--- +[documentation index](../README.md) > Sheetmetal Workbench diff --git a/wiki/Ship_Area.md b/wiki/Ship_Area.md index ccfe8cf3da..3def181278 100644 --- a/wiki/Ship_Area.md +++ b/wiki/Ship_Area.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Ship Area + ## Description Plot the transversal areas curve @@ -22,4 +24,7 @@ Plot the transversal areas curve - {{Ship_Tools_navi}} + {{Ship_Tools_navi}} + +--- +[documentation index](../README.md) > Ship Area diff --git a/wiki/Ship_Geometries_Examples.md b/wiki/Ship_Geometries_Examples.md index 1b632059bf..5e252bcb72 100644 --- a/wiki/Ship_Geometries_Examples.md +++ b/wiki/Ship_Geometries_Examples.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Ship Geometries Examples + ## Description Ship works over **Ship entities**, that must be created on top of provided geometry. Geometry must be a solid, or set of solids, following criteria must be taken into account: @@ -44,4 +46,7 @@ In order to help new users, Ship includes a geometries examples loader, with the - {{Ship_Tools_navi}} + {{Ship_Tools_navi}} + +--- +[documentation index](../README.md) > Ship Geometries Examples diff --git a/wiki/Ship_Hydrostatics.md b/wiki/Ship_Hydrostatics.md index 061d06d8de..24db4a967c 100644 --- a/wiki/Ship_Hydrostatics.md +++ b/wiki/Ship_Hydrostatics.md @@ -7,6 +7,8 @@ SeeAlso= --- +# Ship Hydrostatics + ## Description Hydrostatics computation is a critical stage of a ship\'s design, it provides an understanding to the underlying principal stability hull parameters. Hydrostatics are mandatory data for classification societies certificates ship, coupled with loading condition data (weights and gravity position) provides essential data about ship stability. The Ship workbench provides a tool to obtain main hydrostatics curves. @@ -23,4 +25,7 @@ When the Hydrostatics tool is executed, a task dialog is shown. Usually Hydrosta - {{Ship_Tools_navi}} + {{Ship_Tools_navi}} + +--- +[documentation index](../README.md) > Ship Hydrostatics diff --git a/wiki/Ship_Loading.md b/wiki/Ship_Loading.md index 0ccc248569..004221aec2 100644 --- a/wiki/Ship_Loading.md +++ b/wiki/Ship_Loading.md @@ -1,3 +1,4 @@ +# Ship Loading --- - GuiCommand: Name:Ship Loading MenuLocation:Weights → Create a new loading condition |Workbenches:[[Ship Workbench Ship]]|Shortcut: SeeAlso:--- @@ -16,7 +17,5 @@ TODO {{Ship_Tools_navi}} - - - - +--- +[documentation index](../README.md) > Ship Loading diff --git a/wiki/Ship_New.md b/wiki/Ship_New.md index a7bdfba0e5..cc00ce08f2 100644 --- a/wiki/Ship_New.md +++ b/wiki/Ship_New.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Ship New + ## Description Create a New Ship or new Ship Instance. @@ -47,4 +49,7 @@ Note: From here onward, you must have **Ship** selected before you execute any S \|[Ship Geometries Examples Loader](Ship_Geometries_Examples.md) \|[Lines drawing](Ship_Outline.md) \|[Ship](Ship_Workbench.md) \|IconL=Ship\_Load.svg \|IconC=Workbench\_Ship.svg \|IconR=Ship\_OutlineDraw.svg }} - {{Ship_Tools_navi}} + {{Ship_Tools_navi}} + +--- +[documentation index](../README.md) > Ship New diff --git a/wiki/Ship_Outline.md b/wiki/Ship_Outline.md index 9a7a3dfd45..ff554e10c9 100644 --- a/wiki/Ship_Outline.md +++ b/wiki/Ship_Outline.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Ship Outline + ## Description Plots the ship hull outline draw @@ -103,4 +105,7 @@ Outline draw plot. - {{Ship_Tools_navi}} + {{Ship_Tools_navi}} + +--- +[documentation index](../README.md) > Ship Outline diff --git a/wiki/Ship_PlotGZ.md b/wiki/Ship_PlotGZ.md index 39189b2e85..fe63ff52d2 100644 --- a/wiki/Ship_PlotGZ.md +++ b/wiki/Ship_PlotGZ.md @@ -1,3 +1,4 @@ +# Ship PlotGZ --- - GuiCommand: Name:Ship PlotGZ MenuLocation:Weights → GZ curve computation |Workbenches:[[Ship Workbench Ship]]|Shortcut: SeeAlso:--- @@ -16,7 +17,5 @@ TODO {{Ship_Tools_navi}} - - - - +--- +[documentation index](../README.md) > Ship PlotGZ diff --git a/wiki/Ship_TankCapacity.md b/wiki/Ship_TankCapacity.md index 83e16607fc..2ead259165 100644 --- a/wiki/Ship_TankCapacity.md +++ b/wiki/Ship_TankCapacity.md @@ -1,3 +1,4 @@ +# Ship TankCapacity --- - GuiCommand: Name:Ship TankCapacity MenuLocation:Weights → Tank capacity curve |Workbenches:[[Ship Workbench Ship]]|Shortcut: SeeAlso:--- @@ -16,7 +17,5 @@ TODO {{Ship_Tools_navi}} - - - - +--- +[documentation index](../README.md) > Ship TankCapacity diff --git a/wiki/Ship_TankNew.md b/wiki/Ship_TankNew.md index 132390e4f7..09a4b1d3aa 100644 --- a/wiki/Ship_TankNew.md +++ b/wiki/Ship_TankNew.md @@ -1,3 +1,4 @@ +# Ship TankNew --- - GuiCommand: Name:Ship TankNew MenuLocation:Weights → Create a new tank |Workbenches:[[Ship Workbench Ship]]|Shortcut: SeeAlso:--- @@ -16,7 +17,5 @@ TODO {{Ship_Tools_navi}} - - - - +--- +[documentation index](../README.md) > Ship TankNew diff --git a/wiki/Ship_Weight.md b/wiki/Ship_Weight.md index 5c5a03cd5e..aaa49edb74 100644 --- a/wiki/Ship_Weight.md +++ b/wiki/Ship_Weight.md @@ -1,3 +1,4 @@ +# Ship Weight --- - GuiCommand: Name:Ship Weight MenuLocation:Weights → Create a new ship weight |Workbenches:[[Ship Workbench Ship]]|Shortcut: SeeAlso:--- @@ -16,7 +17,5 @@ TODO {{Ship_Tools_navi}} - - - - +--- +[documentation index](../README.md) > Ship Weight diff --git a/wiki/Ship_Workbench.md b/wiki/Ship_Workbench.md index 746b1ac430..b9f72c0364 100644 --- a/wiki/Ship_Workbench.md +++ b/wiki/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench - - -Ship workbench icon +# Ship workbench icon Ship Workbench @@ -45,3 +42,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 {{Ship Tools navi}} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench diff --git a/wiki/Silk_Workbench.md b/wiki/Silk_Workbench.md index 6c6997991d..adb611f638 100644 --- a/wiki/Silk_Workbench.md +++ b/wiki/Silk_Workbench.md @@ -1,5 +1,5 @@ # Silk Workbench - *align=center|The Silk External Workbench Icon* +*align=center|The Silk External Workbench Icon* ## Description @@ -22,3 +22,6 @@ Recommended install is via the [Sketcher CarbonCopy](Sketcher_CarbonCopy.md)** tool copies all the geometry and constraints from another sketch into the active sketch. @@ -34,4 +36,7 @@ Dimensional constraints which exist before the copy function remain linked to th - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CarbonCopy diff --git a/wiki/Sketcher_Circle3Point.md b/wiki/Sketcher_Circle3Point.md index 7880e5bb7d..dc8194ae05 100644 --- a/wiki/Sketcher_Circle3Point.md +++ b/wiki/Sketcher_Circle3Point.md @@ -1,2 +1,5 @@ # Sketcher Circle3Point 1. REDIRECT [Sketcher\_Create3PointCircle](Sketcher_Create3PointCircle.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Circle3Point diff --git a/wiki/Sketcher_Clone.md b/wiki/Sketcher_Clone.md index 8d521bc311..5da40825d1 100644 --- a/wiki/Sketcher_Clone.md +++ b/wiki/Sketcher_Clone.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Copy](Sketcher_Copy.md), [Sketcher Move](Sketcher_Move.md) --- +# Sketcher Clone + ## Description Clones the selected sketch elements from one point to another, using the last selected point as reference. If any constraints are part of the source elements, then the new constraints are linked to the source constraints; if the constraints in the source are changed, the constraints in the clone are also changed. To avoid this linking see ** [Sketcher Copy](Sketcher_Copy.md)**. @@ -24,4 +26,7 @@ No extra constraints for clone-behaviour are added. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Clone diff --git a/wiki/Sketcher_CloseShape.md b/wiki/Sketcher_CloseShape.md index 80f43c20e0..cf3c1bbd47 100644 --- a/wiki/Sketcher_CloseShape.md +++ b/wiki/Sketcher_CloseShape.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher CloseShape + ## Description This tool can be used to make a selected contour in sketcher closed by making an endpoint of a sketcher element coincident with the endpoint of the sketcher element selected next. @@ -26,4 +28,7 @@ The tool will connect the elements in the order of their selection, so make sure - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CloseShape diff --git a/wiki/Sketcher_CompConstrainRadDia.md b/wiki/Sketcher_CompConstrainRadDia.md index df8e4452a7..faa1d12bdf 100644 --- a/wiki/Sketcher_CompConstrainRadDia.md +++ b/wiki/Sketcher_CompConstrainRadDia.md @@ -1,5 +1,5 @@ # Sketcher CompConstrainRadDia - {{GuiCommand +{{GuiCommand |Name=Sketcher constrain an arc or a circle |Workbenches=[Sketcher](Sketcher_Workbench.md) |MenuLocation=None (toolbar only) @@ -14,4 +14,7 @@ - [Constrain radius](Sketcher_ConstrainRadius.md) : Fix the radius of a circle or an arc. - [Constrain diameter](Sketcher_ConstrainDiameter.md) : Fix the diameter of a circle or an arc. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompConstrainRadDia diff --git a/wiki/Sketcher_CompCopy.md b/wiki/Sketcher_CompCopy.md index b0f3c07729..1caa0aa2fc 100644 --- a/wiki/Sketcher_CompCopy.md +++ b/wiki/Sketcher_CompCopy.md @@ -1,5 +1,5 @@ # Sketcher CompCopy - {{GuiCommand +{{GuiCommand |Name=Clone, copy or move a geometrie |Workbenches=[Sketcher](Sketcher_Workbench.md) |MenuLocation=None (toolbar only) @@ -15,4 +15,7 @@ Clone, copy or move a geometrie. Click on the down arrow to its right to expand - [Copy](Sketcher_Copy.md) : Creates a simple copy of the geometry taking as reference the last selected point. - [Move](Sketcher_Move.md) : Moves the geometry taking as reference the last selected point. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCopy diff --git a/wiki/Sketcher_CompCreateArc.md b/wiki/Sketcher_CompCreateArc.md index 069eabad95..f5c5660ff6 100644 --- a/wiki/Sketcher_CompCreateArc.md +++ b/wiki/Sketcher_CompCreateArc.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench.md) --- +# Sketcher CompCreateArc + ## Description **Create an arc** is an icon button in the Sketcher geometries toolbar that groups tools to create an arc by picking three points. Click on the down arrow to its right to expand the icons below it and select a tool. @@ -18,4 +20,7 @@ - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateArc diff --git a/wiki/Sketcher_CompCreateBSpline.md b/wiki/Sketcher_CompCreateBSpline.md index d5e131b091..b2aa76c697 100644 --- a/wiki/Sketcher_CompCreateBSpline.md +++ b/wiki/Sketcher_CompCreateBSpline.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Sketcher CompCreateBSpline + ## Description **Create a B-Spline** is an icon button in the Sketcher geometries toolbar that groups tools to create a B-Spline curve. Click on the down arrow to its right to expand the icons below it and select a tool. @@ -19,4 +21,7 @@ - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateBSpline diff --git a/wiki/Sketcher_CompCreateCircle.md b/wiki/Sketcher_CompCreateCircle.md index 8a634814b4..5d7f80afa0 100644 --- a/wiki/Sketcher_CompCreateCircle.md +++ b/wiki/Sketcher_CompCreateCircle.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench.md) --- +# Sketcher CompCreateCircle + ## Description **Create a circle** is an icon button in the Sketcher geometries toolbar that groups tools to create a circle. Click on the down arrow to its right to expand the icons below it and select a tool. @@ -18,4 +20,7 @@ - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateCircle diff --git a/wiki/Sketcher_CompCreateConic.md b/wiki/Sketcher_CompCreateConic.md index a0d8994061..c76a54ff45 100644 --- a/wiki/Sketcher_CompCreateConic.md +++ b/wiki/Sketcher_CompCreateConic.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench.md) --- +# Sketcher CompCreateConic + ## Description **Create a conic** is an icon button in the Sketcher geometries toolbar that groups tools to create curves based on a section of a cone. Click on the down arrow to its right to expand the icons below it and select a tool. @@ -21,4 +23,7 @@ - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateConic diff --git a/wiki/Sketcher_CompCreateRectangles.md b/wiki/Sketcher_CompCreateRectangles.md index 98b6fe996a..a3352f6ef4 100644 --- a/wiki/Sketcher_CompCreateRectangles.md +++ b/wiki/Sketcher_CompCreateRectangles.md @@ -7,6 +7,8 @@ Version:0.20 --- +# Sketcher CompCreateRectangles + ## Description **Create a rectangle** is an icon button in the Sketcher geometries toolbar that groups tools to create rectangles. Click on the down arrow to its right to expand the icons below it and select a tool. @@ -20,4 +22,7 @@ - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateRectangles diff --git a/wiki/Sketcher_CompCreateRegularPolygon.md b/wiki/Sketcher_CompCreateRegularPolygon.md index 5bf231849e..cce99880ac 100644 --- a/wiki/Sketcher_CompCreateRegularPolygon.md +++ b/wiki/Sketcher_CompCreateRegularPolygon.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench.md) --- +# Sketcher CompCreateRegularPolygon + ## Description **Create a regular polygon** is an icon button in the Sketcher geometries toolbar that groups tools to create a regular polygon. Click on the down arrow to its right to expand the icons below it and select a tool. @@ -23,4 +25,7 @@ - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateRegularPolygon diff --git a/wiki/Sketcher_ConnectLines.md b/wiki/Sketcher_ConnectLines.md index dadbf825b6..15ba7993a0 100644 --- a/wiki/Sketcher_ConnectLines.md +++ b/wiki/Sketcher_ConnectLines.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher ConstrainCoincident](Sketcher_ConstrainCoincident.md) --- +# Sketcher ConnectLines + ## Description Applies [Coincident constraints](Sketcher_ConstrainCoincident.md) to endpoints with the same coordinates of the selected elements. @@ -27,4 +29,7 @@ Before using this command make sure that obvious constraints (horizontal, vertic - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConnectLines diff --git a/wiki/Sketcher_ConstrainAngle.md b/wiki/Sketcher_ConstrainAngle.md index 4207ca8e81..50e884a0c4 100644 --- a/wiki/Sketcher_ConstrainAngle.md +++ b/wiki/Sketcher_ConstrainAngle.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constrain distance](Sketcher_ConstrainDistance.md), [Sketcher Constraint Perpendicular](Sketcher_ConstrainPerpendicular.md) --- +# Sketcher ConstrainAngle + ## Description Angle constraint is a [datum constraint](Sketcher_Workbench#Sketcher_Constraints.md) intended to fix angles in sketch. It is capable of setting slopes of individual lines, angles between lines, angles of intersections of curves, and angle spans of circular arcs. @@ -101,4 +103,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainAngle diff --git a/wiki/Sketcher_ConstrainBlock.md b/wiki/Sketcher_ConstrainBlock.md index fc8a748d7c..09427f3486 100644 --- a/wiki/Sketcher_ConstrainBlock.md +++ b/wiki/Sketcher_ConstrainBlock.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constrain Lock](Sketcher_ConstrainLock.md) --- +# Sketcher ConstrainBlock + ## Description **Constrain Block** blocks a geometric element in place with a single constraint. @@ -29,4 +31,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainBlock diff --git a/wiki/Sketcher_ConstrainCoincident.md b/wiki/Sketcher_ConstrainCoincident.md index 736626201d..6b6152871c 100644 --- a/wiki/Sketcher_ConstrainCoincident.md +++ b/wiki/Sketcher_ConstrainCoincident.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constrain Lock](Sketcher_ConstrainLock.md), [Sketcher Constrain Point onto Object](Sketcher_ConstrainPointOnObject.md) --- +# Sketcher ConstrainCoincident + ## Description Create a coincident constraint on the selected item @@ -75,4 +77,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainCoincident diff --git a/wiki/Sketcher_ConstrainDiameter.md b/wiki/Sketcher_ConstrainDiameter.md index db961bb3c0..f97c8a7fbb 100644 --- a/wiki/Sketcher_ConstrainDiameter.md +++ b/wiki/Sketcher_ConstrainDiameter.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Sketcher ConstrainDiameter + ## Description This constraint constrains the value of the diameter of a circle or arc to have a specific value. If more than one circle or arc is selected before launching the command : @@ -40,4 +42,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDiameter diff --git a/wiki/Sketcher_ConstrainDistance.md b/wiki/Sketcher_ConstrainDistance.md index 290c3a5cf3..96baf5d045 100644 --- a/wiki/Sketcher_ConstrainDistance.md +++ b/wiki/Sketcher_ConstrainDistance.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constrain horizontal distance](Sketcher_ConstrainDistanceX.md), [Sketcher Constrain vertical distance](Sketcher_ConstrainDistanceY.md) --- +# Sketcher ConstrainDistance + ## Description **Constrain distance** constrains the length of a line, the perpendicular distance between a point and a line or the distance between two points to have a specified value. @@ -51,4 +53,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistance diff --git a/wiki/Sketcher_ConstrainDistanceX.md b/wiki/Sketcher_ConstrainDistanceX.md index 1b38a68362..0046a8091e 100644 --- a/wiki/Sketcher_ConstrainDistanceX.md +++ b/wiki/Sketcher_ConstrainDistanceX.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constrain Length](Sketcher_ConstrainDistance.md), [Sketcher Constrain Vertical Distance](Sketcher_ConstrainDistanceY.md) --- +# Sketcher ConstrainDistanceX + ## Description Fixes the horizontal distance between 2 points or line ends. If only one point is selected, the distance is set to the sketch origin. @@ -43,4 +45,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceX diff --git a/wiki/Sketcher_ConstrainDistanceY.md b/wiki/Sketcher_ConstrainDistanceY.md index 5e2c20ec0f..9c6d76ed00 100644 --- a/wiki/Sketcher_ConstrainDistanceY.md +++ b/wiki/Sketcher_ConstrainDistanceY.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constrain Horizontal Distance](Sketcher_ConstrainDistanceX.md), [Sketcher Constrain Length](Sketcher_ConstrainDistance.md) --- +# Sketcher ConstrainDistanceY + ## Description Fixes the vertical distance between 2 points or line ends. If only one point is selected, the distance is set to the sketch origin. @@ -43,4 +45,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceY diff --git a/wiki/Sketcher_ConstrainEqual.md b/wiki/Sketcher_ConstrainEqual.md index 49d461d07e..0c875df6e8 100644 --- a/wiki/Sketcher_ConstrainEqual.md +++ b/wiki/Sketcher_ConstrainEqual.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constrain radius](Sketcher_ConstrainRadius.md) --- +# Sketcher ConstrainEqual + ## Description The Constrain Equal constraint forces two or more line segments in a line, poly-line or rectangle to have equal length. If applied to arcs or circles the radii are constrained to be equal. It cannot be applied to geometry primitives which are not of the same type (e.g. line segments and arcs). @@ -58,4 +60,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainEqual diff --git a/wiki/Sketcher_ConstrainHorizontal.md b/wiki/Sketcher_ConstrainHorizontal.md index 4cc457bdca..61daed6578 100644 --- a/wiki/Sketcher_ConstrainHorizontal.md +++ b/wiki/Sketcher_ConstrainHorizontal.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constraint Vertical](Sketcher_ConstrainVertical.md) --- +# Sketcher ConstrainHorizontal + ## Description The Horizontal Constraint forces a selected line or lines in the sketch to be parallel to the horizontal axis of the sketch. @@ -37,4 +39,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainHorizontal diff --git a/wiki/Sketcher_ConstrainInternalAlignment.md b/wiki/Sketcher_ConstrainInternalAlignment.md index 9b1c92b457..8d0d6c0566 100644 --- a/wiki/Sketcher_ConstrainInternalAlignment.md +++ b/wiki/Sketcher_ConstrainInternalAlignment.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Show/Hide Internal Geometry](Sketcher_RestoreInternalAlignmentGeometry.md), [Sketcher Ellipse by Center](Sketcher_CreateEllipseByCenter.md) --- +# Sketcher ConstrainInternalAlignment + ## Description The InternalAlignment constraint aligns lines and points to particular places of a complex sketcher element (there is just one \"complex\" element so far, the [Ellipse](Sketcher_CreateEllipseByCenter.md)). @@ -52,4 +54,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainInternalAlignment diff --git a/wiki/Sketcher_ConstrainLock.md b/wiki/Sketcher_ConstrainLock.md index f8d7e54bb5..d076226e28 100644 --- a/wiki/Sketcher_ConstrainLock.md +++ b/wiki/Sketcher_ConstrainLock.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher Constrain Block](Sketcher_ConstrainBlock.md) --- +# Sketcher ConstrainLock + ## Description **Constraint Lock** applies ** [Vertical distance](Sketcher_ConstrainDistanceY.md)** constraints to selected vertices (points) in the sketch. If a single vertex is selected, the horizontal and vertical distance constraints will refer to the sketch origin point. If two or more points are selected, horizontal and vertical distance constraints will be added for each pair of points. There is no automatic prompt to edit the constraints\' values, they must be edited manually. @@ -25,4 +27,7 @@ The [Loc - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainLock diff --git a/wiki/Sketcher_ConstrainParallel.md b/wiki/Sketcher_ConstrainParallel.md index 249400bd28..feadd360d8 100644 --- a/wiki/Sketcher_ConstrainParallel.md +++ b/wiki/Sketcher_ConstrainParallel.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constraint Vertical](Sketcher_ConstrainVertical.md), [Sketcher Constraint Horizontal](Sketcher_ConstrainHorizontal.md) --- +# Sketcher ConstrainParallel + ## Description The Constrain Parallel constraint forces two selected straight lines or edges to be parallel to each other. @@ -42,4 +44,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainParallel diff --git a/wiki/Sketcher_ConstrainPerpendicular.md b/wiki/Sketcher_ConstrainPerpendicular.md index d86bde03c8..0a2f9427e4 100644 --- a/wiki/Sketcher_ConstrainPerpendicular.md +++ b/wiki/Sketcher_ConstrainPerpendicular.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constrain angle](Sketcher_ConstrainAngle.md) --- +# Sketcher ConstrainPerpendicular + ## Description The Perpendicular Constraint makes two lines to be perpendicular (i.e. orthogonal) to each other, or two curves to be perpendicular at their intersection. Lines are treated infinite, and arcs are treated as full circles/ellipses. The constraint is also capable of connecting two curves, forcing them perpendicular at the joint, similarly to ** [Constraint tangent](Sketcher_ConstrainTangent.md)**. @@ -108,4 +110,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPerpendicular diff --git a/wiki/Sketcher_ConstrainPointOnObject.md b/wiki/Sketcher_ConstrainPointOnObject.md index 9bca8dac63..db26aa1785 100644 --- a/wiki/Sketcher_ConstrainPointOnObject.md +++ b/wiki/Sketcher_ConstrainPointOnObject.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constrain Coincident](Sketcher_ConstrainCoincident.md) --- +# Sketcher ConstrainPointOnObject + ## Description Affixes a point onto another object such as a line, arc, or sketch axis. @@ -42,4 +44,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains how to identify th - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPointOnObject diff --git a/wiki/Sketcher_ConstrainRadiam.md b/wiki/Sketcher_ConstrainRadiam.md index cc99a32206..d6379554e6 100644 --- a/wiki/Sketcher_ConstrainRadiam.md +++ b/wiki/Sketcher_ConstrainRadiam.md @@ -7,6 +7,8 @@ Version:0.20 --- +# Sketcher ConstrainRadiam + ## Description This constraint automatically constrains the value of the radius/diameter of a circle or arc to have a specific value. Following rules are applied : @@ -44,4 +46,7 @@ No specific scripting applies. See the [Sketcher scripting](Sketcher_scripting.m - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadiam diff --git a/wiki/Sketcher_ConstrainRadius.md b/wiki/Sketcher_ConstrainRadius.md index e7b1720345..30f42bd994 100644 --- a/wiki/Sketcher_ConstrainRadius.md +++ b/wiki/Sketcher_ConstrainRadius.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher Constrain distance](Sketcher_ConstrainDistance.md), [Sketcher Constrain horizontal distance](Sketcher_ConstrainDistanceX.md), [Sketcher Constrain vertical distance](Sketcher_ConstrainDistanceY.md) --- +# Sketcher ConstrainRadius + ## Description This constraint constrains the value of the radius of a circle or arc to have a specific value. If more than one circle or arc is selected before launching the command : @@ -41,4 +43,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadius diff --git a/wiki/Sketcher_ConstrainSnellsLaw.md b/wiki/Sketcher_ConstrainSnellsLaw.md index 44a953550d..6dfa2be6b1 100644 --- a/wiki/Sketcher_ConstrainSnellsLaw.md +++ b/wiki/Sketcher_ConstrainSnellsLaw.md @@ -6,6 +6,8 @@ Version:0.15 --- +# Sketcher ConstrainSnellsLaw + ## Description Constrains two lines to follow the law of refraction of light as it penetrates through an interface, where two materials of different refraction indices meet. See [Snell\'s law](http://en.wikipedia.org/wiki/Snell%27s_law) on Wikipedia for more info. @@ -92,4 +94,7 @@ App.ActiveDocument.recompute() - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSnellsLaw diff --git a/wiki/Sketcher_ConstrainSymmetric.md b/wiki/Sketcher_ConstrainSymmetric.md index 6d698d7559..39c838b1e4 100644 --- a/wiki/Sketcher_ConstrainSymmetric.md +++ b/wiki/Sketcher_ConstrainSymmetric.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constraint Parallel](Sketcher_ConstrainParallel.md) --- +# Sketcher ConstrainSymmetric + ## Description The **Symmetrical Constraint** constrains two selected points to be symmetrical around a given line, i.e., both selected points are constrained to lie on a normal to the line through both points and are constrained to be equidistant from the line. Alternatively it can constrain two points to be symmetric with respect to a third one. @@ -54,4 +56,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSymmetric diff --git a/wiki/Sketcher_ConstrainTangent.md b/wiki/Sketcher_ConstrainTangent.md index 6ca1a1930f..91995a5446 100644 --- a/wiki/Sketcher_ConstrainTangent.md +++ b/wiki/Sketcher_ConstrainTangent.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constraint point on object](Sketcher_ConstrainPointOnObject.md) --- +# Sketcher ConstrainTangent + ## Description Tangent Constraint makes two curves to touch each other (be tangent). Lines are treated infinite, and arcs are treated as full circles/ellipses. The constraint is also capable of connecting two curves, forcing them tangent at the joint, thus making the joint smooth. @@ -119,4 +121,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainTangent diff --git a/wiki/Sketcher_ConstrainVertical.md b/wiki/Sketcher_ConstrainVertical.md index 721a60ba40..7c9ecef03e 100644 --- a/wiki/Sketcher_ConstrainVertical.md +++ b/wiki/Sketcher_ConstrainVertical.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constraint Horizontal](Sketcher_ConstrainHorizontal.md) --- +# Sketcher ConstrainVertical + ## Description Creates a vertical constraint to the selected lines or polyline elements. As of (v0.17) it can also constrain vertices vertically. More than one object can be selected. @@ -31,4 +33,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainVertical diff --git a/wiki/Sketcher_ConvertToNURB.md b/wiki/Sketcher_ConvertToNURB.md index 2fc4c7143e..2a8091a29f 100644 --- a/wiki/Sketcher_ConvertToNURB.md +++ b/wiki/Sketcher_ConvertToNURB.md @@ -1,2 +1,5 @@ # Sketcher ConvertToNURB 1. REDIRECT [Sketcher\_BSplineApproximate](Sketcher_BSplineApproximate.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConvertToNURB diff --git a/wiki/Sketcher_Copy.md b/wiki/Sketcher_Copy.md index ea0909a92a..c2369ad295 100644 --- a/wiki/Sketcher_Copy.md +++ b/wiki/Sketcher_Copy.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Clone](Sketcher_Clone.md), [Sketcher Move](Sketcher_Move.md) --- +# Sketcher Copy + ## Description Copies the selected sketch elements from one point to another, using the last selected point as reference. When a copy is made, there is no link established between the copy and the original, see ** [Sketcher Clone](Sketcher_Clone.md)**. @@ -22,4 +24,7 @@ No extra constraints are added. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Copy diff --git a/wiki/Sketcher_Create3PointArc.md b/wiki/Sketcher_Create3PointArc.md index 10599488d5..9b9932d3a7 100644 --- a/wiki/Sketcher_Create3PointArc.md +++ b/wiki/Sketcher_Create3PointArc.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Sketcher Create3PointArc + ## Description This tool draws an arc by picking three points: the start point, the end point and a point on the arc. @@ -21,4 +23,7 @@ When starting the tool, the mouse pointer changes to a white cross with a red ar - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Create3PointArc diff --git a/wiki/Sketcher_Create3PointCircle.md b/wiki/Sketcher_Create3PointCircle.md index e1a7881113..2351e016f0 100644 --- a/wiki/Sketcher_Create3PointCircle.md +++ b/wiki/Sketcher_Create3PointCircle.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Sketcher Create3PointCircle + ## Description This tool draws a circle by picking three points on the circle outline. When starting the tool, the mouse pointer changes to a white cross with a red circle icon. Besides are coordinates shown in real time. @@ -19,4 +21,7 @@ This tool \_\_TOC\_\_ @@ -218,4 +210,7 @@ You can set the following options: - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Dialog diff --git a/wiki/Sketcher_EditSketch.md b/wiki/Sketcher_EditSketch.md index 9a8ed19585..473c6f81af 100644 --- a/wiki/Sketcher_EditSketch.md +++ b/wiki/Sketcher_EditSketch.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher LeaveSketch](Sketcher_LeaveSketch.md) --- +# Sketcher EditSketch + ## Description This command will let you edit an existing sketch. It will open the [Sketcher Dialog](Sketcher_Dialog.md). @@ -25,4 +27,7 @@ There are several ways to invoke the Edit Sketch command: - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher EditSketch diff --git a/wiki/Sketcher_Ellipse.md b/wiki/Sketcher_Ellipse.md index d34c0cca71..fbc1dfa654 100644 --- a/wiki/Sketcher_Ellipse.md +++ b/wiki/Sketcher_Ellipse.md @@ -1,2 +1,5 @@ # Sketcher Ellipse 1. REDIRECT [Sketcher CreateEllipseByCenter](Sketcher_CreateEllipseByCenter.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Ellipse diff --git a/wiki/Sketcher_Extend.md b/wiki/Sketcher_Extend.md index 361139b80f..2b00c6e81b 100644 --- a/wiki/Sketcher_Extend.md +++ b/wiki/Sketcher_Extend.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Trim edge](Sketcher_Trimming.md) --- +# Sketcher Extend + ## Description The **extend edge** tool extends an edge to an arbitrary location in the sketch, or to another edge. @@ -30,4 +32,7 @@ The **extend edge** tool extends an edge to an arbitrary location in the sketch, - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Extend diff --git a/wiki/Sketcher_External.md b/wiki/Sketcher_External.md index feec7a716b..d009a3b9b6 100644 --- a/wiki/Sketcher_External.md +++ b/wiki/Sketcher_External.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher ConstructionMode](Sketcher_ToggleConstruction.md) --- +# Sketcher External + ## Description Use the ** [External Geometry](Sketcher_External.md)** tool when you need to apply a constraint between sketch geometry and something outside of the sketch. It works by inserting a linked construction geometry into the sketch. The default colour of externally linked edges is magenta. As with standard non-linked construction geometry (blue), the externally linked geometry is only visible when the sketch is in edit mode and is not directly used in the subsequent result from use of the sketch in another tool. Both types of construction geometry may be used as a reference for constraints within the sketch. @@ -73,4 +75,7 @@ When the sketch edit mode is closed, external Geometry lines are not visible. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher External diff --git a/wiki/Sketcher_LeaveSketch.md b/wiki/Sketcher_LeaveSketch.md index b5af43b5fe..0de7855cbb 100644 --- a/wiki/Sketcher_LeaveSketch.md +++ b/wiki/Sketcher_LeaveSketch.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher EditSketch](Sketcher_EditSketch.md) --- +# Sketcher LeaveSketch + ## Description The **Leave sketch** command exits the sketch editing mode and frees up the [Task panel](Task_panel.md). @@ -19,4 +21,7 @@ The **Leave sketch** command exits the sketch editing mode and frees up the [Tas - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher LeaveSketch diff --git a/wiki/Sketcher_MapSketch.md b/wiki/Sketcher_MapSketch.md index 072ea4e033..363efcf9e7 100644 --- a/wiki/Sketcher_MapSketch.md +++ b/wiki/Sketcher_MapSketch.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher New sketch](Sketcher_NewSketch.md) --- +# Sketcher MapSketch + ## Description This tool maps an existing sketch onto the face of a shape. PartDesign features created from this sketch will be fused with the underlying solid for additive features (Pad, Revolution) or be subtracted from the underlying solid in case of subtractive features (Pocket, Groove). @@ -50,4 +52,7 @@ Now we select the top face of Pad and then select the Map A Sketch To A Face too - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MapSketch diff --git a/wiki/Sketcher_MergeSketches.md b/wiki/Sketcher_MergeSketches.md index e3650d607a..1467e4418e 100644 --- a/wiki/Sketcher_MergeSketches.md +++ b/wiki/Sketcher_MergeSketches.md @@ -6,6 +6,8 @@ Version:0.15 --- +# Sketcher MergeSketches + ## Description Merge two or more sketches into one. @@ -19,4 +21,7 @@ Merge two or more sketches into one. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MergeSketches diff --git a/wiki/Sketcher_Micro_Tutorial_-_Constraint_Practices.md b/wiki/Sketcher_Micro_Tutorial_-_Constraint_Practices.md index 159b08d8f9..0751f6bc4a 100644 --- a/wiki/Sketcher_Micro_Tutorial_-_Constraint_Practices.md +++ b/wiki/Sketcher_Micro_Tutorial_-_Constraint_Practices.md @@ -1,7 +1,4 @@ # Sketcher Micro Tutorial - Constraint Practices - - - {{TutorialInfo |Topic=Sketcher |Level=Beginner @@ -123,4 +120,7 @@ This is the best way to constrain this sketch, as we only used one datum (dimens - [Sketcher reference](Sketcher_reference.md) - [Sketcher Tutorial](Sketcher_Tutorial.md) - {{Tutorials navi}} {{Sketcher Tools navi}} + {{Tutorials navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Micro Tutorial - Constraint Practices diff --git a/wiki/Sketcher_MirrorSketch.md b/wiki/Sketcher_MirrorSketch.md index 6fb4a6f453..372c6e7ff8 100644 --- a/wiki/Sketcher_MirrorSketch.md +++ b/wiki/Sketcher_MirrorSketch.md @@ -6,6 +6,8 @@ Version:0.16 --- +# Sketcher MirrorSketch + ## Description Mirror a sketch along the x-axis, the y-axis, or the origin. This command is invoked while *not* editing a sketch. It creates a new sketch which contains the mirrored geometry. @@ -23,4 +25,7 @@ Notes: - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MirrorSketch diff --git a/wiki/Sketcher_Module.md b/wiki/Sketcher_Module.md index b15553b1b4..f91b6bcd62 100644 --- a/wiki/Sketcher_Module.md +++ b/wiki/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module 1. REDIRECT [Sketcher Workbench](Sketcher_Workbench.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module diff --git a/wiki/Sketcher_Move.md b/wiki/Sketcher_Move.md index 86060314a0..6925ce9d18 100644 --- a/wiki/Sketcher_Move.md +++ b/wiki/Sketcher_Move.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Clone](Sketcher_Clone.md), [Sketcher Copy](Sketcher_Copy.md) --- +# Sketcher Move + ## Description Moves the selected sketch elements from one point to another, using the last selected point as reference. @@ -27,4 +29,7 @@ Moves the selected sketch elements from one point to another, using the last sel - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Move diff --git a/wiki/Sketcher_NewSketch.md b/wiki/Sketcher_NewSketch.md index e33b9c7f68..e29974c97b 100644 --- a/wiki/Sketcher_NewSketch.md +++ b/wiki/Sketcher_NewSketch.md @@ -6,6 +6,8 @@ SeeAlso:[PartDesign NewSketch](PartDesign_NewSketch.md), [Sketcher MapSketch](Sketcher_MapSketch.md), [Sketcher Reorient](Sketcher_ReorientSketch.md) --- +# Sketcher NewSketch + ## Description This will create a new [sketch](Sketcher_Workbench.md). @@ -33,4 +35,7 @@ The sketch can be moved in the [3D view](3D_view.md) using [Placement](Placement - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher NewSketch diff --git a/wiki/Sketcher_Polyline.md b/wiki/Sketcher_Polyline.md index f5da359108..7a81f2559c 100644 --- a/wiki/Sketcher_Polyline.md +++ b/wiki/Sketcher_Polyline.md @@ -1,2 +1,5 @@ # Sketcher Polyline 1. REDIRECT [Sketcher\_CreatePolyline](Sketcher_CreatePolyline.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Polyline diff --git a/wiki/Sketcher_Preferences.md b/wiki/Sketcher_Preferences.md index 4a09e07417..7ca243304c 100644 --- a/wiki/Sketcher_Preferences.md +++ b/wiki/Sketcher_Preferences.md @@ -1,8 +1,4 @@ # Sketcher Preferences - - - - The preferences screen of the [Sketcher Workbench](Sketcher_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → Sketcher**. There are three tabs: General, Display, and Colors. @@ -242,3 +238,6 @@ In the *Colors* tab you can specify the following: {{Sketcher Tools navi}} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Preferences diff --git a/wiki/Sketcher_RectangularArray.md b/wiki/Sketcher_RectangularArray.md index 8f5f5b1604..d1e0670c1b 100644 --- a/wiki/Sketcher_RectangularArray.md +++ b/wiki/Sketcher_RectangularArray.md @@ -6,6 +6,8 @@ Version:0.16 --- +# Sketcher RectangularArray + ## Description Creates an array of selected sketcher elements. @@ -25,4 +27,7 @@ Creates an array of selected sketcher elements. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RectangularArray diff --git a/wiki/Sketcher_RemoveAxesAlignment.md b/wiki/Sketcher_RemoveAxesAlignment.md index 736c89a42a..bac46eab01 100644 --- a/wiki/Sketcher_RemoveAxesAlignment.md +++ b/wiki/Sketcher_RemoveAxesAlignment.md @@ -6,6 +6,8 @@ Version:0.20 --- +# Sketcher RemoveAxesAlignment + ## Description This tool removes axis alignments ( [Horizontal](Sketcher_ConstrainHorizontal.md), [Vertical](Sketcher_ConstrainVertical.md) constraints) from the selected elements by trying to preserve the constraint relationship. @@ -26,4 +28,7 @@ As result the (horizontal, vertical constraints) will be removed. In the example - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RemoveAxesAlignment diff --git a/wiki/Sketcher_Reorient.md b/wiki/Sketcher_Reorient.md index 484341bfe0..0021a63533 100644 --- a/wiki/Sketcher_Reorient.md +++ b/wiki/Sketcher_Reorient.md @@ -1,2 +1,5 @@ # Sketcher Reorient 1. REDIRECT [Sketcher\_ReorientSketch](Sketcher_ReorientSketch.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Reorient diff --git a/wiki/Sketcher_ReorientSketch.md b/wiki/Sketcher_ReorientSketch.md index bab73fadaa..7c827908a2 100644 --- a/wiki/Sketcher_ReorientSketch.md +++ b/wiki/Sketcher_ReorientSketch.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher Map sketch](Sketcher_MapSketch.md), [Sketcher New Sketch](Sketcher_NewSketch.md) --- +# Sketcher ReorientSketch + ## Description Allows you to detach a sketch from a face and attach it to one of the main planes (with an offset). @@ -27,4 +29,7 @@ Allows you to detach a sketch from a face and attach it to one of the main plane - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ReorientSketch diff --git a/wiki/Sketcher_RestoreInternalAlignmentGeometry.md b/wiki/Sketcher_RestoreInternalAlignmentGeometry.md index 21f1c1352d..a87d9f0ac5 100644 --- a/wiki/Sketcher_RestoreInternalAlignmentGeometry.md +++ b/wiki/Sketcher_RestoreInternalAlignmentGeometry.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Ellipse](Sketcher_CreateEllipseByCenter.md), [Sketcher Internal Alignment Constraint](Sketcher_ConstrainInternalAlignment.md) --- +# Sketcher RestoreInternalAlignmentGeometry + ## Description The command deletes unused elements aligned to internal geometry, or recreates the missing ones. @@ -30,4 +32,7 @@ If there are free alignment places for the selected element, new construction ge - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RestoreInternalAlignmentGeometry diff --git a/wiki/Sketcher_SelectConflictingConstraints.md b/wiki/Sketcher_SelectConflictingConstraints.md index a02a222f78..7589e1e6fc 100644 --- a/wiki/Sketcher_SelectConflictingConstraints.md +++ b/wiki/Sketcher_SelectConflictingConstraints.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectConflictingConstraints + ## Description Selects the conflicting constraints of a sketch. @@ -20,4 +22,7 @@ Selects the conflicting constraints of a sketch. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConflictingConstraints diff --git a/wiki/Sketcher_SelectConstraints.md b/wiki/Sketcher_SelectConstraints.md index 4d7a548775..ff8745ec4e 100644 --- a/wiki/Sketcher_SelectConstraints.md +++ b/wiki/Sketcher_SelectConstraints.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectConstraints + ## Description Selects the constraints of a sketcher element. @@ -27,4 +29,7 @@ Selects the constraints of a sketcher element. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConstraints diff --git a/wiki/Sketcher_SelectElementsAssociatedWithConstraints.md b/wiki/Sketcher_SelectElementsAssociatedWithConstraints.md index 8333b5f166..972e03652b 100644 --- a/wiki/Sketcher_SelectElementsAssociatedWithConstraints.md +++ b/wiki/Sketcher_SelectElementsAssociatedWithConstraints.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectElementsAssociatedWithConstraints + ## Description Select sketcher Elements associated with constraints. @@ -20,4 +22,7 @@ Select sketcher Elements associated with constraints. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsAssociatedWithConstraints diff --git a/wiki/Sketcher_SelectElementsWithDoFs.md b/wiki/Sketcher_SelectElementsWithDoFs.md index e77e434d1e..56e305bdd1 100644 --- a/wiki/Sketcher_SelectElementsWithDoFs.md +++ b/wiki/Sketcher_SelectElementsWithDoFs.md @@ -6,6 +6,8 @@ Version:0.18 --- +# Sketcher SelectElementsWithDoFs + ## Description This tool is meant to aid in fully constraining a sketch by highlighting in green the sketch elements with remaining degrees of freedom (DoF). @@ -30,4 +32,7 @@ where \"X\" is the number of degrees of freedom remaining in the sketch; you wil - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsWithDoFs diff --git a/wiki/Sketcher_SelectHorizontalAxis.md b/wiki/Sketcher_SelectHorizontalAxis.md index df60e8d82e..849ad6926b 100644 --- a/wiki/Sketcher_SelectHorizontalAxis.md +++ b/wiki/Sketcher_SelectHorizontalAxis.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectHorizontalAxis + ## Description Selects the horizontal axis of a sketch. @@ -20,4 +22,7 @@ Selects the horizontal axis of a sketch. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectHorizontalAxis diff --git a/wiki/Sketcher_SelectOrigin.md b/wiki/Sketcher_SelectOrigin.md index a8e1077a29..366138945c 100644 --- a/wiki/Sketcher_SelectOrigin.md +++ b/wiki/Sketcher_SelectOrigin.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectOrigin + ## Description Selects the origin of a sketch. @@ -20,4 +22,7 @@ Selects the origin of a sketch. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectOrigin diff --git a/wiki/Sketcher_SelectRedundantConstraints.md b/wiki/Sketcher_SelectRedundantConstraints.md index dafd6e2bcc..1e18b7f8d6 100644 --- a/wiki/Sketcher_SelectRedundantConstraints.md +++ b/wiki/Sketcher_SelectRedundantConstraints.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectRedundantConstraints + ## Description Selects the redundant constraints of a sketch. @@ -20,4 +22,7 @@ Selects the redundant constraints of a sketch. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectRedundantConstraints diff --git a/wiki/Sketcher_SelectVerticalAxis.md b/wiki/Sketcher_SelectVerticalAxis.md index 0b543edf8f..9ee2860802 100644 --- a/wiki/Sketcher_SelectVerticalAxis.md +++ b/wiki/Sketcher_SelectVerticalAxis.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectVerticalAxis + ## Description Selects the vertical axis of a sketch. @@ -20,4 +22,7 @@ Selects the vertical axis of a sketch. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectVerticalAxis diff --git a/wiki/Sketcher_Sketch.md b/wiki/Sketcher_Sketch.md index 8d9cdde6c0..62dffc8a98 100644 --- a/wiki/Sketcher_Sketch.md +++ b/wiki/Sketcher_Sketch.md @@ -1,6 +1,4 @@ # Sketcher Sketch - - This should hold the description of the Sketch tool that is part of the [Sketcher Workbench](Sketcher_Workbench.md) and the [PartDesign Workbench](PartDesign_Workbench.md). This is a work in progress. Meanwhile, consult: @@ -8,4 +6,7 @@ This is a work in progress. Meanwhile, consult: - [PartDesign NewSketch](PartDesign_NewSketch.md) - [Sketcher NewSketch](Sketcher_NewSketch.md) - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Sketch diff --git a/wiki/Sketcher_SketchObject.md b/wiki/Sketcher_SketchObject.md index 74e7ed46a0..7dd14b85f2 100644 --- a/wiki/Sketcher_SketchObject.md +++ b/wiki/Sketcher_SketchObject.md @@ -1,6 +1,4 @@ # Sketcher SketchObject - - ## Introduction @@ -138,4 +136,7 @@ obj.Label = "Custom label" {{Sketcher Tools navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SketchObject diff --git a/wiki/Sketcher_Sketcher_CompCreateRegularPolygon.md b/wiki/Sketcher_Sketcher_CompCreateRegularPolygon.md index 3de8877562..2fcba1ed31 100644 --- a/wiki/Sketcher_Sketcher_CompCreateRegularPolygon.md +++ b/wiki/Sketcher_Sketcher_CompCreateRegularPolygon.md @@ -1,2 +1,5 @@ # Sketcher Sketcher CompCreateRegularPolygon 1. REDIRECT [Sketcher CompCreateRegularPolygon](Sketcher_CompCreateRegularPolygon.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Sketcher CompCreateRegularPolygon diff --git a/wiki/Sketcher_Split.md b/wiki/Sketcher_Split.md index ca74ae1d76..997ca21c4c 100644 --- a/wiki/Sketcher_Split.md +++ b/wiki/Sketcher_Split.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Trimming](Sketcher_Trimming.md) --- +# Sketcher Split + ## Description This tool allows to divide an edge into two identical ones, while most of the constraints are duplicated, so both parts remain constrained apart from split point position. For a special case of a circle, this is converted to an loose ends arc with existing circle constraints being transferred to the new arc. @@ -41,4 +43,7 @@ This tool allows to divide an edge into two identical ones, while most of the co - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Split diff --git a/wiki/Sketcher_StopOperation.md b/wiki/Sketcher_StopOperation.md index 4b8b8ad464..5125f4b119 100644 --- a/wiki/Sketcher_StopOperation.md +++ b/wiki/Sketcher_StopOperation.md @@ -5,6 +5,8 @@ MenuLocation:Sketch → Stop operation --- +# Sketcher StopOperation + ## Description @@ -21,4 +23,7 @@ This is similar to pressing the **Esc** key. 3. Click on ** [Stop operation](Sketcher_StopOperation.md)** from the top menu. 4. The tool is deactivated and the pointer returns to being a simple pointer. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher StopOperation diff --git a/wiki/Sketcher_SwitchVirtualSpace.md b/wiki/Sketcher_SwitchVirtualSpace.md index c6f8ceef30..1a37bf6040 100644 --- a/wiki/Sketcher_SwitchVirtualSpace.md +++ b/wiki/Sketcher_SwitchVirtualSpace.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Sketcher SwitchVirtualSpace + ## Description The FreeCAD Sketcher has two virtual spaces on which constraints can be set. Usually all constraints gets set on virtual space one. You can move some constraints to virtual space two. This can help to inspect only on a few constraints at a time. @@ -30,4 +32,7 @@ if you decide to set constraints on the second virtual space, don\'t forget abou - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SwitchVirtualSpace diff --git a/wiki/Sketcher_Symmetry.md b/wiki/Sketcher_Symmetry.md index 6ea41748f1..a0cbe5c7c4 100644 --- a/wiki/Sketcher_Symmetry.md +++ b/wiki/Sketcher_Symmetry.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher MirrorSketch](Sketcher_MirrorSketch.md) --- +# Sketcher Symmetry + ## Description Mirrors sketcher geometry in reference to a chosen line or sketch axis. @@ -22,4 +24,7 @@ Note that no extra symmetry constraint will be added. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Symmetry diff --git a/wiki/Sketcher_ToggleActiveConstraint.md b/wiki/Sketcher_ToggleActiveConstraint.md index 987f78a751..88fc68ea35 100644 --- a/wiki/Sketcher_ToggleActiveConstraint.md +++ b/wiki/Sketcher_ToggleActiveConstraint.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Sketcher ToggleActiveConstraint + ## Description @@ -58,4 +60,7 @@ sketch.toggleActive(3) - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleActiveConstraint diff --git a/wiki/Sketcher_ToggleConstruction.md b/wiki/Sketcher_ToggleConstruction.md index a7c2d97b09..aa61dff97c 100644 --- a/wiki/Sketcher_ToggleConstruction.md +++ b/wiki/Sketcher_ToggleConstruction.md @@ -5,6 +5,8 @@ Workbenches:[Sketcher](Sketcher_Workbench.md) --- +# Sketcher ToggleConstruction + ## Description This tool toggles sketch geometry from/to construction mode. It can be used on any type of geometry: line, arc or circle. @@ -43,4 +45,7 @@ and once you ** [lea - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleConstruction diff --git a/wiki/Sketcher_ToggleDrivingConstraint.md b/wiki/Sketcher_ToggleDrivingConstraint.md index e760d59be2..9533075030 100644 --- a/wiki/Sketcher_ToggleDrivingConstraint.md +++ b/wiki/Sketcher_ToggleDrivingConstraint.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Toggle Construction](Sketcher_ToggleConstruction.md) --- +# Sketcher ToggleDrivingConstraint + ## Description The ** [Toggle driving constraint](Sketcher_ToggleDrivingConstraint.md)** tool turns dimensional constraints (Lock, Horizontal/Vertical distance, Length, Radius and Angle) into reference mode, and back. The icons in the toolbar turn blue, and rather than dimensional constraints, reference dimensions are created. Reference dimensions do not constrain the sketch. It can be useful to create reference dimensions in a sketch as a way to check on measurements; when given a name, they can also be used to drive constraints in another sketch through [expressions](Expressions.md). @@ -25,4 +27,7 @@ The ** [ - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleDrivingConstraint diff --git a/wiki/Sketcher_Trimming.md b/wiki/Sketcher_Trimming.md index 049b1132b2..a304a31182 100644 --- a/wiki/Sketcher_Trimming.md +++ b/wiki/Sketcher_Trimming.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Extend edge](Sketcher_Extend.md) --- +# Sketcher Trimming + ## Description This tool trims an edge to the nearest overlapping edge. @@ -27,4 +29,7 @@ This tool trims an edge to the nearest overlapping edge. - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Trimming diff --git a/wiki/Sketcher_ValidateSketch.md b/wiki/Sketcher_ValidateSketch.md index 93c2e11fb2..59280e5954 100644 --- a/wiki/Sketcher_ValidateSketch.md +++ b/wiki/Sketcher_ValidateSketch.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher ConstrainCoincident](Sketcher_ConstrainCoincident.md), [Topological naming problem](Topological_naming_problem.md) --- +# Sketcher ValidateSketch + ## Description The **Validate sketch** utility can be used to analyze and repair a sketch that is no longer editable or has invalid constraints, or to add missing [coincident constraints](Sketcher_ConstrainCoincident.md) to a sketch created from imported geometry such as DXF files. It can also be useful to locate a missing coincidence in a native sketch that generates a \"can\'t validate broken face\" error when trying to apply a PartDesign feature. @@ -74,4 +76,7 @@ The locking mechanism typically works well and this tool should not be needed. * - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ValidateSketch diff --git a/wiki/Sketcher_ViewSection.md b/wiki/Sketcher_ViewSection.md index 3b8bb0db90..cb4839c4c5 100644 --- a/wiki/Sketcher_ViewSection.md +++ b/wiki/Sketcher_ViewSection.md @@ -6,6 +6,8 @@ Version:0.18 --- +# Sketcher ViewSection + ## Description The **View section** tool creates a section plane that temporarily hides any matter in front of the sketch plane. @@ -23,4 +25,7 @@ Several ways to invoke this command: - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSection diff --git a/wiki/Sketcher_ViewSketch.md b/wiki/Sketcher_ViewSketch.md index 6992f5b5d1..962d1f9058 100644 --- a/wiki/Sketcher_ViewSketch.md +++ b/wiki/Sketcher_ViewSketch.md @@ -5,6 +5,8 @@ Workbenches:[Sketcher](Sketcher_Workbench.md), [PartDesign](PartDesign_Workbench.md) --- +# Sketcher ViewSketch + ## Description This tool sets the model view perpendicular to the sketch plane. It is useful when the user has changed the model view orientation to examine another aspect of the model and wants to return to a view normal to the sketch. @@ -19,4 +21,7 @@ While in sketch edit mode, either - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSketch diff --git a/wiki/Sketcher_Workbench.md b/wiki/Sketcher_Workbench.md index 58870a76f9..63dca164f8 100644 --- a/wiki/Sketcher_Workbench.md +++ b/wiki/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench @@ -315,3 +309,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to {{Sketcher Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench diff --git a/wiki/Sketcher_helper_constraint.md b/wiki/Sketcher_helper_constraint.md index 4f97c6313d..e67228667e 100644 --- a/wiki/Sketcher_helper_constraint.md +++ b/wiki/Sketcher_helper_constraint.md @@ -1,6 +1,4 @@ # Sketcher helper constraint - - ## Overview Example of a helper constraint (Constraint5 - point on circle) for a tangent constraint (Constraint6; in tangent-via-point mode). Only one helper constraint is used in this case, since the point of tangency is the endpoint of ellipse\'s major diameter, which inherently lies on the ellipse. @@ -36,4 +34,7 @@ Sketch.calculateConstraintError(iconstr) Helper constraints were introduced in v0.15.4387 - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher helper constraint diff --git a/wiki/Sketcher_project.md b/wiki/Sketcher_project.md index a2c029d6b0..c2f342a806 100644 --- a/wiki/Sketcher_project.md +++ b/wiki/Sketcher_project.md @@ -1,7 +1,4 @@ # Sketcher project - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -116,3 +113,6 @@ For 0.12: {{Sketcher Tools navi}} [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher project diff --git a/wiki/Sketcher_reference.md b/wiki/Sketcher_reference.md index 986d243e63..aeb5bcf1a1 100644 --- a/wiki/Sketcher_reference.md +++ b/wiki/Sketcher_reference.md @@ -1,6 +1,4 @@ # Sketcher reference - - ## Introduction User **chrisb** wrote a lengthy 70-page reference manual for the [Sketcher Workbench](Sketcher_Workbench.md) that covers many topics of using this workbench. For inexperienced users, it is a gentle introduction that covers the basic usage of the Sketcher, and then goes into many details of creating geometrical elements, and using each type of constraint. @@ -61,4 +59,7 @@ The general structure of the manual is: - Placement and attachment offset - Validate sketches - {{Tutorials navi}} {{Sketcher Tools navi}} + {{Tutorials navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher reference diff --git a/wiki/Sketcher_requirement_for_a_sketch.md b/wiki/Sketcher_requirement_for_a_sketch.md index 0f1151bf66..3acb2df517 100644 --- a/wiki/Sketcher_requirement_for_a_sketch.md +++ b/wiki/Sketcher_requirement_for_a_sketch.md @@ -1,7 +1,4 @@ # Sketcher requirement for a sketch - - - {{TutorialInfo |Topic=Sketch |Level=Beginner @@ -41,4 +38,7 @@ If one waits until the end of the drawing to determine, one finds remaining \"fr If you accidentally create an \"overmodulation\", a warning appears in the combo-view asking you to undo the corresponding actions (constraints). - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher requirement for a sketch diff --git a/wiki/Sketcher_scripting.md b/wiki/Sketcher_scripting.md index 675bb4c1f9..1d86e3ade9 100644 --- a/wiki/Sketcher_scripting.md +++ b/wiki/Sketcher_scripting.md @@ -1,6 +1,4 @@ # Sketcher scripting - - ## Creating a constraint using Python A geometric constraint and the special [InternalAlignment](Sketcher_ConstrainInternalAlignment.md) constraints can be created from macros and from the python console by using the following command: @@ -212,4 +210,7 @@ The command `Sketch.addConstraint(Sketcher.Constraint('Coincident',0,2,2,2))` yi - {{Sketcher Tools navi}} + {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher scripting diff --git a/wiki/Sketcher_tutorial.md b/wiki/Sketcher_tutorial.md index a77fc40691..60ef934cfa 100644 --- a/wiki/Sketcher_tutorial.md +++ b/wiki/Sketcher_tutorial.md @@ -1,2 +1,5 @@ # Sketcher tutorial 1. REDIRECT [Basic\_Sketcher\_Tutorial](Basic_Sketcher_Tutorial.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher tutorial diff --git a/wiki/Snap.md b/wiki/Snap.md index f2a4fd06ee..a0b6f518ce 100644 --- a/wiki/Snap.md +++ b/wiki/Snap.md @@ -1,2 +1,5 @@ # Snap 1. REDIRECT [Ubuntu\_Snap](Ubuntu_Snap.md) + +--- +[documentation index](../README.md) > Snap diff --git a/wiki/Soluzione1.md b/wiki/Soluzione1.md index 56b3f8e771..b5a2038695 100644 --- a/wiki/Soluzione1.md +++ b/wiki/Soluzione1.md @@ -1,5 +1,4 @@ # Soluzione1 - **pagina in costruzione** # Costruzione di contorno non vincolato @@ -53,3 +52,6 @@ Torna a [Esercitazioni](Esercitazioni.md) {{languages/it | }} [Category:Documentation/it](Category:Documentation/it.md) [Category:Tutorials/it](Category:Tutorials/it.md) + +--- +[documentation index](../README.md) > Soluzione1 diff --git a/wiki/Soluzione2.md b/wiki/Soluzione2.md index 1d767d1f70..6f19f8aa75 100644 --- a/wiki/Soluzione2.md +++ b/wiki/Soluzione2.md @@ -1,5 +1,4 @@ # Soluzione2 - **pagina in costruzione** ## Costruzione di contorno completamente vincolato @@ -90,3 +89,6 @@ Torna a [Esercitazioni](Esercitazioni.md) {{languages/it | }} [Category:Documentation/it](Category:Documentation/it.md) [Category:Tutorials/it](Category:Tutorials/it.md) + +--- +[documentation index](../README.md) > Soluzione2 diff --git a/wiki/Source_Code_Management.md b/wiki/Source_Code_Management.md index 46b3828321..71d2b25096 100644 --- a/wiki/Source_Code_Management.md +++ b/wiki/Source_Code_Management.md @@ -1,2 +1,5 @@ # Source Code Management 1. REDIRECT [Source\_code\_management](Source_code_management.md) + +--- +[documentation index](../README.md) > Source Code Management diff --git a/wiki/Source_Documentation.md b/wiki/Source_Documentation.md index ff97a64a55..03f85623f8 100644 --- a/wiki/Source_Documentation.md +++ b/wiki/Source_Documentation.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Source Documentation diff --git a/wiki/Source_Integration_Markup.md b/wiki/Source_Integration_Markup.md index a91f92a671..d46557176c 100644 --- a/wiki/Source_Integration_Markup.md +++ b/wiki/Source_Integration_Markup.md @@ -1,2 +1,5 @@ # Source Integration Markup 1. REDIRECT [Tracker\#MantisBT\_.3C.3D.3E\_GitHub\_Markup](Tracker#MantisBT_.3C.3D.3E_GitHub_Markup.md) + +--- +[documentation index](../README.md) > Source Integration Markup diff --git a/wiki/Source_code_management.md b/wiki/Source_code_management.md index 82473bf92a..38a8ef8fb6 100644 --- a/wiki/Source_code_management.md +++ b/wiki/Source_code_management.md @@ -1,6 +1,4 @@ # Source code management - - ## Introduction The main source code management tool for the FreeCAD project is [Git](http://en.wikipedia.org/wiki/Git_%28software%29), which can be easily installed in most operating systems from a package manager or directly from [Git\'s website](https://git-scm.com/). You are advised to become familiar with Git before working with the FreeCAD source code directly. Visit the [Git documentation](https://git-scm.com/doc) page for the reference manual, as well as the [Pro Git book](https://git-scm.com/book/en/v2) to learn to use the system in a general way. The present document focuses on the use of Git for FreeCAD development. Compiling FreeCAD is described in [Compiling](Compiling.md). @@ -1029,3 +1027,6 @@ Head to the development section of the [FreeCAD forum](https://forum.freecadweb. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source code management diff --git a/wiki/Source_documentation.md b/wiki/Source_documentation.md index 478e460c86..a8be86b6c6 100644 --- a/wiki/Source_documentation.md +++ b/wiki/Source_documentation.md @@ -1,11 +1,4 @@ # Source documentation - - - - - - - ## Overview The FreeCAD source code is commented to allow automatic programming documentation generation using [Doxygen](Doxygen.md), a popular source code documentation system. Doxygen can document both the C++ and Python parts of FreeCAD, resulting in HTML pages with hyperlinks to each documented function and class. @@ -129,3 +122,6 @@ void removeTaskWatcher(void); [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source documentation diff --git a/wiki/Sphinx.md b/wiki/Sphinx.md index 9c6d78c87a..a595ecde36 100644 --- a/wiki/Sphinx.md +++ b/wiki/Sphinx.md @@ -1,6 +1,4 @@ # Sphinx - - ## Introduction [Sphinx](Sphinx.md) is a documentation system similar to [Doxygen](Doxygen.md), designed primarily to document [Python](Python.md) code. With the use of [\"Breathe\"](https://github.com/michaeljones/breathe) it can also be used to parse C++ code, so it can be used in projects that mix C++ and Python. @@ -35,3 +33,6 @@ Encouraging results from David\_D: [Category:Developer\_Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Sphinx diff --git a/wiki/Spinning.md b/wiki/Spinning.md index b3b363842e..252c3718da 100644 --- a/wiki/Spinning.md +++ b/wiki/Spinning.md @@ -1,2 +1,5 @@ # Spinning 1. REDIRECT [Std\_DemoMode](Std_DemoMode.md) + +--- +[documentation index](../README.md) > Spinning diff --git a/wiki/Splash_screen.md b/wiki/Splash_screen.md index e385b53566..e2957a427c 100644 --- a/wiki/Splash_screen.md +++ b/wiki/Splash_screen.md @@ -1,6 +1,9 @@ # Splash screen - The **splash screen** is an image that appears during the startup of FreeCAD. You can disable the splash screen in the Preferences Menu of FreeCAD by removing the option \"Enable splash screen at startup\". +The **splash screen** is an image that appears during the startup of FreeCAD. You can disable the splash screen in the Preferences Menu of FreeCAD by removing the option \"Enable splash screen at startup\". [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Splash screen diff --git a/wiki/Spreadsheet.md b/wiki/Spreadsheet.md index aecb5c5488..cfb5eac678 100644 --- a/wiki/Spreadsheet.md +++ b/wiki/Spreadsheet.md @@ -1,6 +1,4 @@ # Spreadsheet - - ## Description A [spreadsheet](spreadsheet.md) is a page that contains rows and columns that allows you to store arbitrary text in cells. More importantly, it allows you to use the cells with [expressions](Expressions.md) to calculate values that depend on previously entered values; these can be lengths, angles, areas, volumes, and other types. @@ -12,4 +10,5 @@ A [spreadsheet](spreadsheet.md) is a page that contains rows and columns that al 3. Edit the contents of the cells. 4. Close the spreadsheet tab when you are finished, the values are saved automatically as you type them. - +--- +[documentation index](../README.md) > Spreadsheet diff --git a/wiki/Spreadsheet_AlignBottom.md b/wiki/Spreadsheet_AlignBottom.md index 6be66be08c..a3ae0e9a9e 100644 --- a/wiki/Spreadsheet_AlignBottom.md +++ b/wiki/Spreadsheet_AlignBottom.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet AlignBottom + ## Description The ** [Spreadsheet AlignBottom](Spreadsheet_AlignBottom.md)** tool makes the text inside the cell align to the bottom of the cell. @@ -19,4 +21,7 @@ The ** [Spreadshe - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignBottom diff --git a/wiki/Spreadsheet_AlignCenter.md b/wiki/Spreadsheet_AlignCenter.md index a85e45f4d9..4b1c1b91bc 100644 --- a/wiki/Spreadsheet_AlignCenter.md +++ b/wiki/Spreadsheet_AlignCenter.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet AlignCenter + ## Description The ** [Spreadsheet AlignCenter](Spreadsheet_AlignCenter.md)** tool makes the text inside the cell align to the center. @@ -19,4 +21,7 @@ The ** [Spreadshe - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignCenter diff --git a/wiki/Spreadsheet_AlignLeft.md b/wiki/Spreadsheet_AlignLeft.md index a03621eaca..e2e5db2193 100644 --- a/wiki/Spreadsheet_AlignLeft.md +++ b/wiki/Spreadsheet_AlignLeft.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet AlignLeft + ## Description The ** [Spreadsheet AlignLeft](Spreadsheet_AlignLeft.md)** tool makes the text inside the cell align to the left. @@ -19,4 +21,7 @@ The ** [Spreadsheet - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignLeft diff --git a/wiki/Spreadsheet_AlignRight.md b/wiki/Spreadsheet_AlignRight.md index 8bfcec24b1..deb1b69f12 100644 --- a/wiki/Spreadsheet_AlignRight.md +++ b/wiki/Spreadsheet_AlignRight.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet AlignRight + ## Description The ** [Spreadsheet AlignRight](Spreadsheet_AlignRight.md)** tool makes the text inside the cell align to the right. @@ -19,4 +21,7 @@ The ** [Spreadshee - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignRight diff --git a/wiki/Spreadsheet_AlignTop.md b/wiki/Spreadsheet_AlignTop.md index 18f4e725b2..cf765fbad0 100644 --- a/wiki/Spreadsheet_AlignTop.md +++ b/wiki/Spreadsheet_AlignTop.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet AlignTop + ## Description The ** [Spreadsheet AlignTop](Spreadsheet_AlignTop.md)** tool makes the text inside the cell align to the top of the cell. @@ -19,4 +21,7 @@ The ** [Spreadsheet - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignTop diff --git a/wiki/Spreadsheet_AlignVCenter.md b/wiki/Spreadsheet_AlignVCenter.md index a8e3cc4ca2..673d73d7b6 100644 --- a/wiki/Spreadsheet_AlignVCenter.md +++ b/wiki/Spreadsheet_AlignVCenter.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet AlignVCenter + ## Description The ** [Spreadsheet AlignVCenter](Spreadsheet_AlignVCenter.md)** tool makes the text inside the cell align vertically to the center of the cell. @@ -19,4 +21,7 @@ The ** [Spreadsh - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignVCenter diff --git a/wiki/Spreadsheet_CSV.md b/wiki/Spreadsheet_CSV.md index a94bab57cc..025cae4eea 100644 --- a/wiki/Spreadsheet_CSV.md +++ b/wiki/Spreadsheet_CSV.md @@ -1,5 +1,5 @@ # Spreadsheet CSV - The [CSV format](http://en.wikipedia.org/wiki/Comma-separated_values) (comma-separated values) is a plain-text format to exchange spreadsheet data. It can usually be imported and exported by any spreadsheet application such as LibreOffice or Microsoft Excel. Reading and writing to csv format is done with python\'s built-in [csv module](http://docs.python.org/2/library/csv.html). +The [CSV format](http://en.wikipedia.org/wiki/Comma-separated_values) (comma-separated values) is a plain-text format to exchange spreadsheet data. It can usually be imported and exported by any spreadsheet application such as LibreOffice or Microsoft Excel. Reading and writing to csv format is done with python\'s built-in [csv module](http://docs.python.org/2/library/csv.html). ## Importing @@ -12,3 +12,6 @@ Exporting a [Spreadsheet CreateSheet](Spreadsheet_CreateSheet.md)** tool adds a new spreadsheet object to the active document, which will be opened in a new tab in the [main view area](main_view_area.md). @@ -19,4 +21,7 @@ The ** [Spreadshe - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet CreateSheet diff --git a/wiki/Spreadsheet_Export.md b/wiki/Spreadsheet_Export.md index c2fb94a106..936529a4b5 100644 --- a/wiki/Spreadsheet_Export.md +++ b/wiki/Spreadsheet_Export.md @@ -7,6 +7,8 @@ SeeAlso:[Spreadsheet Import](Spreadsheet_Import.md) --- +# Spreadsheet Export + ## Description The ** [Spreadsheet Export](Spreadsheet_Export.md)** tool allows you to export a spreadsheet as a tab-separated values file (loosely denoted as CSV), which subsequently can be opened and used in other applications. @@ -19,4 +21,7 @@ The ** [Spreadsheet Ex - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Export diff --git a/wiki/Spreadsheet_Import.md b/wiki/Spreadsheet_Import.md index f9465893a9..3086943442 100644 --- a/wiki/Spreadsheet_Import.md +++ b/wiki/Spreadsheet_Import.md @@ -7,6 +7,8 @@ SeeAlso:[Spreadsheet Export](Spreadsheet_Export.md) --- +# Spreadsheet Import + ## Description The ** [Spreadsheet Import](Spreadsheet_Import.md)** tool allows you to import a tab-separated values file (loosely denoted as CSV) into a spreadsheet so that it can be modified and used with [expressions](expressions.md). @@ -23,4 +25,7 @@ The ** [Spreadsheet Im - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Import diff --git a/wiki/Spreadsheet_MergeCells.md b/wiki/Spreadsheet_MergeCells.md index 308a342523..d47c990742 100644 --- a/wiki/Spreadsheet_MergeCells.md +++ b/wiki/Spreadsheet_MergeCells.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet MergeCells + ## Description The ** [Spreadsheet MergeCells](Spreadsheet_MergeCells.md)** tool merges at least two selected cells in an existing spreadsheet in the active document. @@ -19,4 +21,7 @@ The ** [Spreadshee - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet MergeCells diff --git a/wiki/Spreadsheet_Module.md b/wiki/Spreadsheet_Module.md index 4b790f1c59..94f9f90dea 100644 --- a/wiki/Spreadsheet_Module.md +++ b/wiki/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module 1. REDIRECT [Spreadsheet Workbench](Spreadsheet_Workbench.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module diff --git a/wiki/Spreadsheet_SetAlias.md b/wiki/Spreadsheet_SetAlias.md index 5d1c9fb344..79eac822de 100644 --- a/wiki/Spreadsheet_SetAlias.md +++ b/wiki/Spreadsheet_SetAlias.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet SetAlias + ## Description The ** [Spreadsheet SetAlias](Spreadsheet_SetAlias.md)** tool opens a dialog to set up an alias for a cell. Instead of using the exact cell name like A2, B3, or C4, a custom name can be used. @@ -20,4 +22,7 @@ The ** [Spreadsheet - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet SetAlias diff --git a/wiki/Spreadsheet_SplitCell.md b/wiki/Spreadsheet_SplitCell.md index 8275bec069..91b14ab0e8 100644 --- a/wiki/Spreadsheet_SplitCell.md +++ b/wiki/Spreadsheet_SplitCell.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet SplitCell + ## Description The ** [Spreadsheet SplitCell](Spreadsheet_SplitCell.md)** tool splits apart a cell that was merged into one in an existing spreadsheet in the active document. @@ -19,4 +21,7 @@ The ** [Spreadsheet - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet SplitCell diff --git a/wiki/Spreadsheet_StyleBold.md b/wiki/Spreadsheet_StyleBold.md index bdf70d6a4e..8f8fa94d33 100644 --- a/wiki/Spreadsheet_StyleBold.md +++ b/wiki/Spreadsheet_StyleBold.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet StyleBold + ## Description The ** [Spreadsheet StyleBold](Spreadsheet_StyleBold.md)** tool makes the text inside the cell adopt **bold** style. @@ -19,4 +21,7 @@ The ** [Spreadsheet - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleBold diff --git a/wiki/Spreadsheet_StyleItalic.md b/wiki/Spreadsheet_StyleItalic.md index 16a15a5b73..76bbc12f3a 100644 --- a/wiki/Spreadsheet_StyleItalic.md +++ b/wiki/Spreadsheet_StyleItalic.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet StyleItalic + ## Description The ** [Spreadsheet StyleItalic](Spreadsheet_StyleItalic.md)** tool makes the text inside the cell adopt *italic* style. @@ -19,4 +21,7 @@ The ** [Spreadshe - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleItalic diff --git a/wiki/Spreadsheet_StyleUnderline.md b/wiki/Spreadsheet_StyleUnderline.md index 6a844112ab..326ec733a2 100644 --- a/wiki/Spreadsheet_StyleUnderline.md +++ b/wiki/Spreadsheet_StyleUnderline.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet StyleUnderline + ## Description The underline style. @@ -19,4 +21,7 @@ The underline style. - {{Spreadsheet_Tools_navi}} + {{Spreadsheet_Tools_navi}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleUnderline diff --git a/wiki/Spreadsheet_Workbench.md b/wiki/Spreadsheet_Workbench.md index 83c3fcf470..ed29ba5ee0 100644 --- a/wiki/Spreadsheet_Workbench.md +++ b/wiki/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench - {{Page_in_progress}} @@ -235,3 +234,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench diff --git a/wiki/Spreadsheet_legacy.md b/wiki/Spreadsheet_legacy.md index 5c451ae7b9..34a0164f71 100644 --- a/wiki/Spreadsheet_legacy.md +++ b/wiki/Spreadsheet_legacy.md @@ -1,2 +1,5 @@ # Spreadsheet legacy 1. REDIRECT [Spreadsheet\_Workbench](Spreadsheet_Workbench.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet legacy diff --git a/wiki/Standard_Menu.md b/wiki/Standard_Menu.md index 75ed2bb107..12bb64d61b 100644 --- a/wiki/Standard_Menu.md +++ b/wiki/Standard_Menu.md @@ -1,6 +1,4 @@ # Standard Menu - - ## Introduction The standard menu gives access to tools that can be used in all workbenches. The menu may look slightly different depending on the desktop environment (KDE, Gnome, Windows, OS X, etc.). Workbenches can also add sub-menus depending on how they decide to structure their tools. @@ -44,4 +42,7 @@ The standard menu is composed of 7 sub-menus: - {{StdMenu|[Help](Std_Help_Menu.md)}}The Help menu provides access to the help system and links to the FreeCAD website and forum. - {{Std Base navi}} {{Interface navi}} + {{Std Base navi}} {{Interface navi}} + +--- +[documentation index](../README.md) > Standard Menu diff --git a/wiki/Standard_view.md b/wiki/Standard_view.md index 2b72944868..c18eb694e9 100644 --- a/wiki/Standard_view.md +++ b/wiki/Standard_view.md @@ -1,2 +1,5 @@ # Standard view 1. REDIRECT [Std View Menu](Std_View_Menu.md) + +--- +[documentation index](../README.md) > Standard view diff --git a/wiki/Start_Preferences.md b/wiki/Start_Preferences.md index 0d88005c77..153ff16b41 100644 --- a/wiki/Start_Preferences.md +++ b/wiki/Start_Preferences.md @@ -1,6 +1,4 @@ # Start Preferences - - The preferences screen of the [Start Workbench](Start_Workbench.md) is found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → Start**. There is only one tab: Start page. @@ -111,3 +109,6 @@ In the *Start page* tab you can specify the following: {{Start Tools navi}} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start Preferences diff --git a/wiki/Start_Workbench.md b/wiki/Start_Workbench.md index 4ceb5c8da7..131c0529c5 100644 --- a/wiki/Start_Workbench.md +++ b/wiki/Start_Workbench.md @@ -1,10 +1,4 @@ -# Start Workbench - - - - - -Start workbench icon +# Start workbench icon Start Workbench The [Start Workbench](Start_Workbench.md) is not really a workbench, it\'s just the page that is presented when you open FreeCAD with no document loaded. @@ -22,3 +16,6 @@ From this interface you can see useful information and jump to recently opened f [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench diff --git a/wiki/Start_up_and_Configuration.md b/wiki/Start_up_and_Configuration.md index 426a6fd010..c83f8ba87b 100644 --- a/wiki/Start_up_and_Configuration.md +++ b/wiki/Start_up_and_Configuration.md @@ -1,11 +1,4 @@ # Start up and Configuration - - - - - - - ## Overview This page shows the different ways to start FreeCAD and the most important configuration features. @@ -433,3 +426,6 @@ Now double-click the batch file to start FreeCAD. ([see](https://forum.freecadwe [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start up and Configuration diff --git a/wiki/Status_bar.md b/wiki/Status_bar.md index a7d2de9a8c..445d9d545a 100644 --- a/wiki/Status_bar.md +++ b/wiki/Status_bar.md @@ -1,6 +1,4 @@ # Status bar - - ## Introduction The [status bar](status_bar.md) is a simple ribbon that appears at the bottom of the FreeCAD [interface](interface.md). @@ -22,4 +20,7 @@ The status bar also shows the last pre-selected object (any object under the poi {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Status bar diff --git a/wiki/Std_About.md b/wiki/Std_About.md index 7ba4bfe397..72feb71df4 100644 --- a/wiki/Std_About.md +++ b/wiki/Std_About.md @@ -5,6 +5,8 @@ MenuLocation:Help → About FreeCAD --- +# Std About + ## Description The **Std About** command opens a dialog box that shows information about the FreeCAD program. @@ -72,3 +74,6 @@ The Libraries tab shows a list of the external libraries used by the program, an {{Std Base navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Std About diff --git a/wiki/Std_ActivateNextWindow.md b/wiki/Std_ActivateNextWindow.md index 1f59ffd0ec..a13c3a557e 100644 --- a/wiki/Std_ActivateNextWindow.md +++ b/wiki/Std_ActivateNextWindow.md @@ -7,6 +7,8 @@ SeeAlso:[Std ActivatePrevWindow](Std_ActivatePrevWindow.md), [Std Windows](Std_Windows.md) --- +# Std ActivateNextWindow + ## Description The **Std ActivateNextWindow** command activates the next window in the [Main view area](Main_view_area.md). The next window is determined by the order in which the Main view area windows were last activated. @@ -25,4 +27,7 @@ The **Std ActivateNextWindow** command activates the next window in the [Main vi - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ActivateNextWindow diff --git a/wiki/Std_ActivatePrevWindow.md b/wiki/Std_ActivatePrevWindow.md index f3922bdb76..2f4af22988 100644 --- a/wiki/Std_ActivatePrevWindow.md +++ b/wiki/Std_ActivatePrevWindow.md @@ -7,6 +7,8 @@ SeeAlso:[Std ActivateNextWindow](Std_ActivateNextWindow.md), [Std Windows](Std_Windows.md) --- +# Std ActivatePrevWindow + ## Description The **Std ActivatePrevWindow** command does not work properly [1](https://forum.freecadweb.org/viewtopic.php?f=3&t=45157). @@ -25,4 +27,7 @@ The **Std ActivatePrevWindow** command does not work properly [1](https://forum. - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ActivatePrevWindow diff --git a/wiki/Std_AddonMgr.md b/wiki/Std_AddonMgr.md index 922074f834..9fdfb07333 100644 --- a/wiki/Std_AddonMgr.md +++ b/wiki/Std_AddonMgr.md @@ -7,6 +7,8 @@ SeeAlso:[External workbenches](External_workbenches.md), [Macros](Macros.md) --- +# Std AddonMgr + ## Description The **Std AddonMgr** command opens the Addon manager. With the Addon manager you can install and manage [external workbenches](external_workbenches.md) and [macros](macros.md) provided by the FreeCAD community. The available workbenches and macros are taken from two repositories, [FreeCAD-addons](https://github.com/FreeCAD/FreeCAD-addons/) and [FreeCAD-macros](https://github.com/FreeCAD/FreeCAD-macros/), and from the [Macros recipes](Macros_recipes.md) page. @@ -74,4 +76,7 @@ If you develop a workbench in C++, it cannot be run directly by users and must b - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std AddonMgr diff --git a/wiki/Std_Alignment.md b/wiki/Std_Alignment.md index b303c6cb23..12865a257e 100644 --- a/wiki/Std_Alignment.md +++ b/wiki/Std_Alignment.md @@ -6,6 +6,8 @@ SeeAlso:[Std Placement](Std_Placement.md) --- +# Std Alignment + ## Description The **Std Alignment** command aligns an object in relation to a fixed reference object using one or more point pairs. @@ -33,4 +35,7 @@ The following additional options are available in the context menu: - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Alignment diff --git a/wiki/Std_ArrangeIcons.md b/wiki/Std_ArrangeIcons.md index a7bbf75660..a672e8de13 100644 --- a/wiki/Std_ArrangeIcons.md +++ b/wiki/Std_ArrangeIcons.md @@ -7,6 +7,8 @@ SeeAlso:[Std TileWindows](Std_TileWindows.md) --- +# Std ArrangeIcons + ## Description The **Std ArrangeIcons** command does not work properly. It has the same effect as the [Std TileWindows](Std_TileWindows.md) command. See there. @@ -14,4 +16,7 @@ The **Std ArrangeIcons** command does not work properly. It has the same effect - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ArrangeIcons diff --git a/wiki/Std_AxisCross.md b/wiki/Std_AxisCross.md index 8cf1f7c964..7585aa6d54 100644 --- a/wiki/Std_AxisCross.md +++ b/wiki/Std_AxisCross.md @@ -6,6 +6,8 @@ Shortcut:**A** **C** --- +# Std AxisCross + ## Description The **Std AxisCross** command toggles the axis cross in the active [3D view](3D_view.md). @@ -49,4 +51,7 @@ FreeCADGui.ActiveDocument.ActiveView.hasAxisCross() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std AxisCross diff --git a/wiki/Std_Base.md b/wiki/Std_Base.md index e76cf8114b..3019f8e98e 100644 --- a/wiki/Std_Base.md +++ b/wiki/Std_Base.md @@ -1,10 +1,4 @@ -# Std Base - - - - - -Std Base icon +# Std Base icon Std Base @@ -63,3 +57,6 @@ The standard menu is composed of 7 sub-menus. Each sub-menu has a dedicated page {{Std Base navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Base diff --git a/wiki/Std_BoxElementSelection.md b/wiki/Std_BoxElementSelection.md index 29a104e1d7..c1d6ab75ce 100644 --- a/wiki/Std_BoxElementSelection.md +++ b/wiki/Std_BoxElementSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std BoxSelection](Std_BoxSelection.md), [Std SelectAll](Std_SelectAll.md) --- +# Std BoxElementSelection + ## Description The **Std BoxElementSelection** command selects faces from a user defined rectangular area, a box, in the [3D view](3D_view.md). @@ -27,4 +29,7 @@ The **Std BoxElementSelection** command selects faces from a user defined rectan - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std BoxElementSelection diff --git a/wiki/Std_BoxSelection.md b/wiki/Std_BoxSelection.md index 7bbbb601ab..a7f35c32c2 100644 --- a/wiki/Std_BoxSelection.md +++ b/wiki/Std_BoxSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std BoxElementSelection](Std_BoxElementSelection.md), [Std SelectAll](Std_SelectAll.md) --- +# Std BoxSelection + ## Description The **Std BoxSelection** command selects objects from a user defined rectangular area, a box, in the [3D view](3D_view.md). @@ -32,4 +34,7 @@ The **Std BoxSelection** command selects objects from a user defined rectangular - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std BoxSelection diff --git a/wiki/Std_CascadeWindows.md b/wiki/Std_CascadeWindows.md index 2fa29f4d0a..870922ebb8 100644 --- a/wiki/Std_CascadeWindows.md +++ b/wiki/Std_CascadeWindows.md @@ -6,6 +6,8 @@ SeeAlso:[Std TileWindows](Std_TileWindows.md) --- +# Std CascadeWindows + ## Description The **Std CascadeWindows** command rearranges the windows in the [Main view area](Main_view_area.md) so that they are all visible but do overlap. The result is determined by the order in which the windows were last activated. @@ -21,4 +23,7 @@ The **Std CascadeWindows** command rearranges the windows in the [Main view area - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std CascadeWindows diff --git a/wiki/Std_Close.md b/wiki/Std_Close.md index ce8cc4fad2..4e4c30a6ad 100644 --- a/wiki/Std_Close.md +++ b/wiki/Std_Close.md @@ -1,2 +1,5 @@ # Std Close 1. REDIRECT [Std\_CloseActiveWindow](Std_CloseActiveWindow.md) + +--- +[documentation index](../README.md) > Std Close diff --git a/wiki/Std_CloseActiveWindow.md b/wiki/Std_CloseActiveWindow.md index ecd914b0e3..ca80d1f9a5 100644 --- a/wiki/Std_CloseActiveWindow.md +++ b/wiki/Std_CloseActiveWindow.md @@ -7,6 +7,8 @@ SeeAlso:[Std CloseAllWindows](Std_CloseAllWindows.md) --- +# Std CloseActiveWindow + ## Description The **Std CloseActiveWindow** command closes the active window. To close a document all its windows must be closed. @@ -46,4 +48,7 @@ To close a document use the `closeDocument` method of the FreeCAD application. F - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std CloseActiveWindow diff --git a/wiki/Std_CloseAll.md b/wiki/Std_CloseAll.md index a9d4e09de6..5d9f64d547 100644 --- a/wiki/Std_CloseAll.md +++ b/wiki/Std_CloseAll.md @@ -1,2 +1,5 @@ # Std CloseAll 1. REDIRECT [Std\_CloseAllWindows](Std_CloseAllWindows.md) + +--- +[documentation index](../README.md) > Std CloseAll diff --git a/wiki/Std_CloseAllWindows.md b/wiki/Std_CloseAllWindows.md index 1fc5059135..3fb6b1fa75 100644 --- a/wiki/Std_CloseAllWindows.md +++ b/wiki/Std_CloseAllWindows.md @@ -6,6 +6,8 @@ SeeAlso:[Std Close](Std_CloseActiveWindow.md) --- +# Std CloseAllWindows + ## Description The **Std CloseAllWindows** command closes all windows, thereby closing all documents. @@ -42,4 +44,7 @@ To close a document use the `closeDocument` method of the FreeCAD application. F - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std CloseAllWindows diff --git a/wiki/Std_Copy.md b/wiki/Std_Copy.md index 1cdce13702..be9ee401ee 100644 --- a/wiki/Std_Copy.md +++ b/wiki/Std_Copy.md @@ -7,6 +7,8 @@ SeeAlso:[Std Cut](Std_Cut.md), [Std Paste](Std_Paste.md), [Std DuplicateSelection](Std_DuplicateSelection.md) --- +# Std Copy + ## Description The **Std Copy** command copies objects to the Clipboard. @@ -29,4 +31,7 @@ The **Std Copy** command copies objects to the Clipboard. - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Copy diff --git a/wiki/Std_Cut.md b/wiki/Std_Cut.md index e05aa253eb..d1be40bb61 100644 --- a/wiki/Std_Cut.md +++ b/wiki/Std_Cut.md @@ -6,6 +6,8 @@ SeeAlso:[Std Copy](Std_Copy.md), [Std Paste](Std_Paste.md), [Std DuplicateSelection](Std_DuplicateSelection.md) --- +# Std Cut + ## Description The **Std Cut** command is limited: it can only be used for [spreadsheet cells](Spreadsheet_Workbench.md). The command copies the contents and properties of cells to the Clipboard and then clears them. @@ -26,4 +28,7 @@ To cut other objects you can use the [Std Copy](Std_Copy.md) command followed by - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Cut diff --git a/wiki/Std_DebugInto.md b/wiki/Std_DebugInto.md index 70e2ac5009..f3057cb0c8 100644 --- a/wiki/Std_DebugInto.md +++ b/wiki/Std_DebugInto.md @@ -1,2 +1,5 @@ # Std DebugInto 1. REDIRECT [Std\_MacroStepInto](Std_MacroStepInto.md) + +--- +[documentation index](../README.md) > Std DebugInto diff --git a/wiki/Std_DebugOver.md b/wiki/Std_DebugOver.md index 3a0c63d257..27528bd1ca 100644 --- a/wiki/Std_DebugOver.md +++ b/wiki/Std_DebugOver.md @@ -1,2 +1,5 @@ # Std DebugOver 1. REDIRECT [Std\_MacroStepOver](Std_MacroStepOver.md) + +--- +[documentation index](../README.md) > Std DebugOver diff --git a/wiki/Std_DebugToggle.md b/wiki/Std_DebugToggle.md index ff4567ae7b..25f830e424 100644 --- a/wiki/Std_DebugToggle.md +++ b/wiki/Std_DebugToggle.md @@ -1,2 +1,5 @@ # Std DebugToggle 1. REDIRECT [Std\_ToggleBreakpoint](Std_ToggleBreakpoint.md) + +--- +[documentation index](../README.md) > Std DebugToggle diff --git a/wiki/Std_Delete.md b/wiki/Std_Delete.md index 2b7d56f4d2..76fffb0be0 100644 --- a/wiki/Std_Delete.md +++ b/wiki/Std_Delete.md @@ -6,6 +6,8 @@ Shortcut:**Del** --- +# Std Delete + ## Description The **Std Delete** command deletes selected objects. @@ -37,4 +39,7 @@ FreeCAD.ActiveDocument.removeObject("myObjectName") - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Delete diff --git a/wiki/Std_DemoMode.md b/wiki/Std_DemoMode.md index 45dc49067c..0d86eec104 100644 --- a/wiki/Std_DemoMode.md +++ b/wiki/Std_DemoMode.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std DemoMode + ## Description The **Std DemoMode** command will continuously rotate the camera in a [3D view](3D_view.md). @@ -32,4 +34,7 @@ The **Std DemoMode** command will continuously rotate the camera in a [3D view]( - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std DemoMode diff --git a/wiki/Std_DependencyGraph.md b/wiki/Std_DependencyGraph.md index bb25049fa0..dd7c6b5575 100644 --- a/wiki/Std_DependencyGraph.md +++ b/wiki/Std_DependencyGraph.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std DependencyGraph + ## Description The **Std DependencyGraph** command displays the dependencies between objects in the active document in a \'dependency graph\'. As opposed to the [Tree view](Tree_view.md), objects are listed in reverse chronological order, with the first created object at the bottom. @@ -90,3 +92,6 @@ You can save a dependency graph: {{Std Base navi}} [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > Std DependencyGraph diff --git a/wiki/Std_DlgCustomize.md b/wiki/Std_DlgCustomize.md index 5b37386e8c..4fd492c77d 100644 --- a/wiki/Std_DlgCustomize.md +++ b/wiki/Std_DlgCustomize.md @@ -6,6 +6,8 @@ SeeAlso:[Interface Customization](Interface_Customization.md) --- +# Std DlgCustomize + ## Description The **Std DlgCustomize** command opens the Customize dialog box giving access to several customization options. @@ -28,4 +30,7 @@ The **Std DlgCustomize** command opens the Customize dialog box giving access to - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std DlgCustomize diff --git a/wiki/Std_DlgMacroExecute.md b/wiki/Std_DlgMacroExecute.md index 8c06eb1696..9de6b2fba9 100644 --- a/wiki/Std_DlgMacroExecute.md +++ b/wiki/Std_DlgMacroExecute.md @@ -6,6 +6,8 @@ SeeAlso:[Std DlgMacroExecuteDirect](Std_DlgMacroExecuteDirect.md) --- +# Std DlgMacroExecute + ## Description The **Std DlgMacroExecute** command opens the Execute macro dialog box. From this dialog box macros can be executed, edited and managed. @@ -104,4 +106,7 @@ The **Std DlgMacroExecute** command opens the Execute macro dialog box. From thi - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std DlgMacroExecute diff --git a/wiki/Std_DlgMacroExecuteDirect.md b/wiki/Std_DlgMacroExecuteDirect.md index 6ca7e9487a..e1927800ac 100644 --- a/wiki/Std_DlgMacroExecuteDirect.md +++ b/wiki/Std_DlgMacroExecuteDirect.md @@ -7,6 +7,8 @@ SeeAlso:[Std DlgMacroExecute](Std_DlgMacroExecute.md) --- +# Std DlgMacroExecuteDirect + ## Description The **Std DlgMacroExecuteDirect** command executes the macro in the current Macro editor window. @@ -28,4 +30,7 @@ The **Std DlgMacroExecuteDirect** command executes the macro in the current Macr - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std DlgMacroExecuteDirect diff --git a/wiki/Std_DlgMacroRecord.md b/wiki/Std_DlgMacroRecord.md index 32da1eb559..5d98824643 100644 --- a/wiki/Std_DlgMacroRecord.md +++ b/wiki/Std_DlgMacroRecord.md @@ -6,6 +6,8 @@ SeeAlso:[Std MacroStopRecord](Std_MacroStopRecord.md) --- +# Std DlgMacroRecord + ## Description The **Std DlgMacroRecord** command starts a [macro](Macros.md) recording session during which user actions are stored in a FreeCAD macro, a file with the {{FileName|.FCMacro}} extension. A macro can later be replayed, executed, to repeat the recorded actions. @@ -46,4 +48,7 @@ The **Std DlgMacroRecord** command starts a [macro](Macros.md) recording session - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std DlgMacroRecord diff --git a/wiki/Std_DlgParameter.md b/wiki/Std_DlgParameter.md index 33f7891135..eb432d1e00 100644 --- a/wiki/Std_DlgParameter.md +++ b/wiki/Std_DlgParameter.md @@ -6,6 +6,8 @@ SeeAlso:[Preferences Editor](Preferences_Editor.md) --- +# Std DlgParameter + ## Description The **Std DlgParameter** command opens the Parameter Editor. In the Parameter Editor the parameters that control the behavior of FreeCAD and its workbenches can be inspected and optionally removed, added or changed. The parameters are stored in a file called {{FileName|user.cfg}}, the location of this file depends on your OS. @@ -166,4 +168,7 @@ It is likely a bad idea to modify the preferences of other parts of FreeCAD unle - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std DlgParameter diff --git a/wiki/Std_DlgPreferences.md b/wiki/Std_DlgPreferences.md index 32a1b63ea6..3b6cf33b51 100644 --- a/wiki/Std_DlgPreferences.md +++ b/wiki/Std_DlgPreferences.md @@ -6,6 +6,8 @@ SeeAlso:[Preferences Editor](Preferences_Editor.md) --- +# Std DlgPreferences + ## Description The **Std DlgPreferences** command opens the [Preferences Editor](Preferences_Editor.md). @@ -22,4 +24,7 @@ The **Std DlgPreferences** command opens the [Preferences Editor](Preferences_Ed - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std DlgPreferences diff --git a/wiki/Std_DrawStyle.md b/wiki/Std_DrawStyle.md index f8f0ba1451..f2a1aaf4e6 100644 --- a/wiki/Std_DrawStyle.md +++ b/wiki/Std_DrawStyle.md @@ -7,6 +7,8 @@ SeeAlso:[Std SelBoundingBox](Std_SelBoundingBox.md) --- +# Std DrawStyle + ## Description The **Std DrawStyle** command can override the effect of the **Display Mode** [property](Property_editor.md) of objects in a [3D view](3D_view.md). @@ -71,4 +73,7 @@ The **Flat lines** style overrides the **Display Mode** of objects. This style m - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std DrawStyle diff --git a/wiki/Std_DuplicateSelection.md b/wiki/Std_DuplicateSelection.md index 7199aa0f0f..9cbf813365 100644 --- a/wiki/Std_DuplicateSelection.md +++ b/wiki/Std_DuplicateSelection.md @@ -6,6 +6,8 @@ SeeAlso:[Std Cut](Std_Cut.md), [Std Copy](Std_Copy.md), [Std Paste](Std_Paste.md) --- +# Std DuplicateSelection + ## Description The **Std DuplicateSelection** command duplicates objects within the active document. @@ -27,4 +29,7 @@ The **Std DuplicateSelection** command duplicates objects within the active docu - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std DuplicateSelection diff --git a/wiki/Std_Edit.md b/wiki/Std_Edit.md index 5f5f693982..625598cebe 100644 --- a/wiki/Std_Edit.md +++ b/wiki/Std_Edit.md @@ -6,6 +6,8 @@ SeeAlso:[Std UserEditMode](Std_UserEditMode.md) --- +# Std Edit + ## Description The **Std Edit** command activates or deactivates an object\'s edit mode. @@ -58,4 +60,7 @@ FreeCADGui.ActiveDocument.resetEdit() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Edit diff --git a/wiki/Std_Edit_Menu.md b/wiki/Std_Edit_Menu.md index 237f59852e..4db7f31679 100644 --- a/wiki/Std_Edit_Menu.md +++ b/wiki/Std_Edit_Menu.md @@ -1,10 +1,4 @@ -# Std Edit Menu - - - - - -Std Base icon +# Std Base icon Std Edit Menu @@ -79,3 +73,6 @@ The following tools are available in this menu: {{Std Base navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Edit Menu diff --git a/wiki/Std_Exit.md b/wiki/Std_Exit.md index 6cd0f0ba56..6431c53805 100644 --- a/wiki/Std_Exit.md +++ b/wiki/Std_Exit.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Std Exit diff --git a/wiki/Std_Export.md b/wiki/Std_Export.md index 88edc5a684..b604b7a8cc 100644 --- a/wiki/Std_Export.md +++ b/wiki/Std_Export.md @@ -7,6 +7,8 @@ SeeAlso:[Std PrintPdf](Std_PrintPdf.md), [Import Export](Import_Export.md), [Import Export Preferences](Import_Export_Preferences.md) --- +# Std Export + ## Description The **Std Export** command exports selected objects to a different file format. Many file formats are supported and for some formats multiple export options exist. See [Import Export](Import_Export.md) for more information. @@ -47,3 +49,6 @@ The **Std Export** command exports selected objects to a different file format. {{Std Base navi}} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Export diff --git a/wiki/Std_ExportGraphviz.md b/wiki/Std_ExportGraphviz.md index d28ace7842..7ef5e0359a 100644 --- a/wiki/Std_ExportGraphviz.md +++ b/wiki/Std_ExportGraphviz.md @@ -1,2 +1,5 @@ # Std ExportGraphviz 1. REDIRECT [Std\_DependencyGraph](Std_DependencyGraph.md) + +--- +[documentation index](../README.md) > Std ExportGraphviz diff --git a/wiki/Std_File_Menu.md b/wiki/Std_File_Menu.md index 7cd2f7e248..364437852d 100644 --- a/wiki/Std_File_Menu.md +++ b/wiki/Std_File_Menu.md @@ -1,10 +1,4 @@ -# Std File Menu - - - - - -Std Base icon +# Std Base icon Std File Menu @@ -78,3 +72,6 @@ The following tools are available in this menu: {{Std Base navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std File Menu diff --git a/wiki/Std_FreeCADFAQ.md b/wiki/Std_FreeCADFAQ.md index 6e4472195b..05e898aa0d 100644 --- a/wiki/Std_FreeCADFAQ.md +++ b/wiki/Std_FreeCADFAQ.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreeCADWebsite](Std_FreeCADWebsite.md), [Std FreeCADUserHub](Std_FreeCADUserHub.md), [Std FreeCADPowerUserHub](Std_FreeCADPowerUserHub.md), [Std FreeCADForum](Std_FreeCADForum.md) --- +# Std FreeCADFAQ + ## Description The **Std FreeCADFAQ** command opens the FreeCAD FAQ page in the system\'s default Internet browser. The command requires a working Internet connection. @@ -19,4 +21,7 @@ Currently the command points to [](https:// - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std FreeCADFAQ diff --git a/wiki/Std_FreeCADForum.md b/wiki/Std_FreeCADForum.md index 24ed722dea..84ec832c97 100644 --- a/wiki/Std_FreeCADForum.md +++ b/wiki/Std_FreeCADForum.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreeCADWebsite](Std_FreeCADWebsite.md), [Std FreeCADUserHub](Std_FreeCADUserHub.md), [Std FreeCADPowerUserHub](Std_FreeCADPowerUserHub.md), [Std FreeCADFAQ](Std_FreeCADFAQ.md) --- +# Std FreeCADForum + ## Description The **Std FreeCADForum** command opens the FreeCAD forum website in the system\'s default Internet browser. The command requires a working Internet connection. @@ -19,4 +21,7 @@ Currently the command points to [](https://forum.f - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std FreeCADForum diff --git a/wiki/Std_FreeCADPowerUserHub.md b/wiki/Std_FreeCADPowerUserHub.md index ebb0f73517..a936f2597b 100644 --- a/wiki/Std_FreeCADPowerUserHub.md +++ b/wiki/Std_FreeCADPowerUserHub.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreeCADWebsite](Std_FreeCADWebsite.md), [Std FreeCADUserHub](Std_FreeCADUserHub.md), [Std FreeCADForum](Std_FreeCADForum.md), [Std FreeCADFAQ](Std_FreeCADFAQ.md) --- +# Std FreeCADPowerUserHub + ## Description The **Std FreeCADPowerUserHub** command opens the FreeCAD Power users documentation page in the system\'s default Internet browser. The command requires a working Internet connection. @@ -19,4 +21,7 @@ Currently the command points to [ Std FreeCADPowerUserHub diff --git a/wiki/Std_FreeCADUserHub.md b/wiki/Std_FreeCADUserHub.md index a5eeeaef79..2a82615121 100644 --- a/wiki/Std_FreeCADUserHub.md +++ b/wiki/Std_FreeCADUserHub.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreeCADWebsite](Std_FreeCADWebsite.md), [Std FreeCADPowerUserHub](Std_FreeCADPowerUserHub.md), [Std FreeCADForum](Std_FreeCADForum.md), [Std FreeCADFAQ](Std_FreeCADFAQ.md) --- +# Std FreeCADUserHub + ## Description The **Std FreeCADUserHub** command opens the FreeCAD Users documentation page in the system\'s default Internet browser. The command requires a working Internet connection. @@ -19,4 +21,7 @@ Currently the command points to [](htt - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std FreeCADUserHub diff --git a/wiki/Std_FreeCADWebsite.md b/wiki/Std_FreeCADWebsite.md index 6ba290451a..e4c57c888f 100644 --- a/wiki/Std_FreeCADWebsite.md +++ b/wiki/Std_FreeCADWebsite.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreeCADUserHub](Std_FreeCADUserHub.md), [Std FreeCADPowerUserHub](Std_FreeCADPowerUserHub.md), [Std FreeCADForum](Std_FreeCADForum.md), [Std FreeCADFAQ](Std_FreeCADFAQ.md) --- +# Std FreeCADWebsite + ## Description The **Std FreeCADWebsite** command opens the main website of the FreeCAD project in the system\'s default Internet browser. The command requires a working Internet connection. @@ -19,4 +21,7 @@ Currently the command points to [](https://www.freec - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std FreeCADWebsite diff --git a/wiki/Std_FreezeViews.md b/wiki/Std_FreezeViews.md index e1d873206d..ddbb013323 100644 --- a/wiki/Std_FreezeViews.md +++ b/wiki/Std_FreezeViews.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewIvIssueCamPos](Std_ViewIvIssueCamPos.md) --- +# Std FreezeViews + ## Introduction FreeCAD can store camera settings in up to 50 \'frozen views\'. The menu options that deal with frozen views can be found in the **View → Freeze display** submenu. Frozen views are not stored in the document and, if not saved with the **[Save views\...](#Save_views.md)** menu option, will be lost when the FreeCAD application closes. @@ -84,4 +86,7 @@ For each frozen view a **Restore view** option is added with which it can be res - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std FreezeViews diff --git a/wiki/Std_Group.md b/wiki/Std_Group.md index a19afe8099..ddff7c6008 100644 --- a/wiki/Std_Group.md +++ b/wiki/Std_Group.md @@ -8,6 +8,8 @@ SeeAlso:[Std Part](Std_Part.md), [Draft SelectGroup](Draft_SelectGroup.md), [Draft AddToGroup](Draft_AddToGroup.md) --- +# Std Group + ## Description [Std Group](Std_Group.md) (internally called [App DocumentObjectGroup](App_DocumentObjectGroup.md)) is a general purpose container that allows you to group different types of objects in the [tree view](tree_view.md), regardless of their data type. It is used as a simple folder to categorize and organize the objects in your model, in order to keep a logical structure. Std Groups may be nested inside other Std Groups. @@ -121,4 +123,7 @@ For example, a [FEM Analysis](FEM_Analysis.md) is an `App::DocumentObjectGroupPy - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Group diff --git a/wiki/Std_Help.md b/wiki/Std_Help.md index 9ab75e6961..592add0c8c 100644 --- a/wiki/Std_Help.md +++ b/wiki/Std_Help.md @@ -1,2 +1,5 @@ # Std Help 1. REDIRECT [Std\_Help\_Menu](Std_Help_Menu.md) + +--- +[documentation index](../README.md) > Std Help diff --git a/wiki/Std_Help_Menu.md b/wiki/Std_Help_Menu.md index 35deb3ba40..51063a850d 100644 --- a/wiki/Std_Help_Menu.md +++ b/wiki/Std_Help_Menu.md @@ -1,10 +1,4 @@ -# Std Help Menu - - - - - -Std Base icon +# Std Base icon Std Help Menu @@ -60,3 +54,6 @@ The following tools are available in this menu: {{Std Base navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Help Menu diff --git a/wiki/Std_HideObjects.md b/wiki/Std_HideObjects.md index b5b4540c7a..f54f01c3ca 100644 --- a/wiki/Std_HideObjects.md +++ b/wiki/Std_HideObjects.md @@ -6,6 +6,8 @@ SeeAlso:[Std ToggleVisibility](Std_ToggleVisibility.md), [Std ShowSelection](Std_ShowSelection.md), [Std HideSelection](Std_HideSelection.md), [Std ToggleObjects](Std_ToggleObjects.md), [Std ShowObjects](Std_ShowObjects.md) --- +# Std HideObjects + ## Description The **Std HideObjects** command hides all objects belonging to the active document in [3D views](3D_view.md). @@ -32,4 +34,7 @@ For a scripting example see [Std ToggleVisibility](Std_ToggleVisibility.md). - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std HideObjects diff --git a/wiki/Std_HideSelection.md b/wiki/Std_HideSelection.md index d48cf0de37..2c563f9ad8 100644 --- a/wiki/Std_HideSelection.md +++ b/wiki/Std_HideSelection.md @@ -6,6 +6,8 @@ SeeAlso:[Std ToggleVisibility](Std_ToggleVisibility.md), [Std ShowSelection](Std_ShowSelection.md), [Std ToggleObjects](Std_ToggleObjects.md), [Std ShowObjects](Std_ShowObjects.md), [Std HideObjects](Std_HideObjects.md) --- +# Std HideSelection + ## Description The **Std HideSelection** command hides selected objects in [3D views](3D_view.md). @@ -37,4 +39,7 @@ For a scripting example see [Std ToggleVisibility](Std_ToggleVisibility.md). - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std HideSelection diff --git a/wiki/Std_Import.md b/wiki/Std_Import.md index a6852e129d..baf672d67b 100644 --- a/wiki/Std_Import.md +++ b/wiki/Std_Import.md @@ -7,6 +7,8 @@ SeeAlso:[Std Open](Std_Open.md), [Import Export](Import_Export.md), [Import Export Preferences](Import_Export_Preferences.md) --- +# Std Import + ## Description The **Std Import** command imports geometry from a different file format into the active document. Many file formats are supported and for some formats multiple import options exist. See [Import Export](Import_Export.md) for more information. @@ -42,3 +44,6 @@ The **Std Import** command imports geometry from a different file format into th {{Std Base navi}} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Import diff --git a/wiki/Std_InterfaceCustomization.md b/wiki/Std_InterfaceCustomization.md index 96edd70da9..0fd8bcc130 100644 --- a/wiki/Std_InterfaceCustomization.md +++ b/wiki/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization 1. REDIRECT [Interface\_Customization](Interface_Customization.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization diff --git a/wiki/Std_Link.md b/wiki/Std_Link.md index e5c24eac16..4fa549c6bc 100644 --- a/wiki/Std_Link.md +++ b/wiki/Std_Link.md @@ -1,2 +1,5 @@ # Std Link 1. REDIRECT [Std\_LinkMake](Std_LinkMake.md) + +--- +[documentation index](../README.md) > Std Link diff --git a/wiki/Std_LinkImport.md b/wiki/Std_LinkImport.md index a4c9cfd1a6..3afe3dda5b 100644 --- a/wiki/Std_LinkImport.md +++ b/wiki/Std_LinkImport.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkMake](Std_LinkMake.md), [Std LinkMakeRelative](Std_LinkMakeRelative.md), [Std LinkImportAll](Std_LinkImportAll.md) --- +# Std LinkImport + ## Description @@ -34,4 +36,7 @@ A copy of the original ** [Std P - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std LinkImport diff --git a/wiki/Std_LinkImportAll.md b/wiki/Std_LinkImportAll.md index 6681ef0997..70a4102087 100644 --- a/wiki/Std_LinkImportAll.md +++ b/wiki/Std_LinkImportAll.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkMake](Std_LinkMake.md), [Std LinkMakeRelative](Std_LinkMakeRelative.md), [Std LinkImport](Std_LinkImport.md) --- +# Std LinkImportAll + ## Description @@ -29,4 +31,7 @@ This command essentially runs ** Std LinkMake diff --git a/wiki/Std_LinkMakeRelative.md b/wiki/Std_LinkMakeRelative.md index d44f8e850e..f16c11f9fe 100644 --- a/wiki/Std_LinkMakeRelative.md +++ b/wiki/Std_LinkMakeRelative.md @@ -7,6 +7,8 @@ SeeAlso:[Std Part](Std_Part.md), [Std Group](Std_Group.md), [Std LinkMake](Std_LinkMake.md) --- +# Std LinkMakeRelative + ## Description @@ -60,4 +62,7 @@ App.ActiveDocument.recompute() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std LinkMakeRelative diff --git a/wiki/Std_LinkReplace.md b/wiki/Std_LinkReplace.md index 3835e655a1..d8fa9c2267 100644 --- a/wiki/Std_LinkReplace.md +++ b/wiki/Std_LinkReplace.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkMake](Std_LinkMake.md), [Std LinkMakeRelative](Std_LinkMakeRelative.md), [Std LinkUnlink](Std_LinkUnlink.md) --- +# Std LinkReplace + ## Description @@ -45,4 +47,7 @@ This command creates a new +# Std Base icon Std Macro Menu @@ -64,3 +58,6 @@ The following tools are available in this menu: {{Std Base navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Macro Menu diff --git a/wiki/Std_MainFullscreen.md b/wiki/Std_MainFullscreen.md index 9e11b2f544..4611e0fa47 100644 --- a/wiki/Std_MainFullscreen.md +++ b/wiki/Std_MainFullscreen.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewFullscreen](Std_ViewFullscreen.md) --- +# Std MainFullscreen + ## Description The **Std MainFullscreen** command toggles FreeCAD\'s main window fullscreen mode. @@ -20,4 +22,7 @@ The **Std MainFullscreen** command toggles FreeCAD\'s main window fullscreen mod - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std MainFullscreen diff --git a/wiki/Std_MeasureDistance.md b/wiki/Std_MeasureDistance.md index e9354e40b9..db629b43cc 100644 --- a/wiki/Std_MeasureDistance.md +++ b/wiki/Std_MeasureDistance.md @@ -6,6 +6,8 @@ SeeAlso:[Part Measure Tools](Part_Measure_Menu.md), [Draft Dimension](Draft_Dimension.md), [Arch Survey](Arch_Survey.md) --- +# Std MeasureDistance + ## Description The **Std MeasureDistance** command creates a distance object that measures and displays the distance between two points. @@ -58,4 +60,7 @@ The **Std MeasureDistance** command creates a distance object that measures and - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std MeasureDistance diff --git a/wiki/Std_Measure_Menu.md b/wiki/Std_Measure_Menu.md index 76d0ca8a3d..9170f62f1b 100644 --- a/wiki/Std_Measure_Menu.md +++ b/wiki/Std_Measure_Menu.md @@ -1,2 +1,5 @@ # Std Measure Menu 1. REDIRECT [Part\_Measure\_Menu](Part_Measure_Menu.md) + +--- +[documentation index](../README.md) > Std Measure Menu diff --git a/wiki/Std_MergeProject.md b/wiki/Std_MergeProject.md index 86e8026f5e..0f9ee75dc5 100644 --- a/wiki/Std_MergeProject.md +++ b/wiki/Std_MergeProject.md @@ -1,2 +1,5 @@ # Std MergeProject 1. REDIRECT [Std\_MergeProjects](Std_MergeProjects.md) + +--- +[documentation index](../README.md) > Std MergeProject diff --git a/wiki/Std_MergeProjects.md b/wiki/Std_MergeProjects.md index 2b9cf8df79..a7e0b21de1 100644 --- a/wiki/Std_MergeProjects.md +++ b/wiki/Std_MergeProjects.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std MergeProjects + ## Description The **Std MergeProjects** command adds the contents of a FreeCAD file into the active document. @@ -32,4 +34,7 @@ The **Std MergeProjects** command adds the contents of a FreeCAD file into the a - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std MergeProjects diff --git a/wiki/Std_New.md b/wiki/Std_New.md index 27d79fea68..1c8985f89e 100644 --- a/wiki/Std_New.md +++ b/wiki/Std_New.md @@ -7,6 +7,8 @@ SeeAlso:[Std Open](Std_Open.md), [Std Import](Std_Import.md) --- +# Std New + ## Description The **Std New** command creates a new empty document and makes it the active document. @@ -92,4 +94,7 @@ FreeCAD.closeDocument(doc.Name) - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std New diff --git a/wiki/Std_OnlineHelp.md b/wiki/Std_OnlineHelp.md index c51420bd84..ef8559d209 100644 --- a/wiki/Std_OnlineHelp.md +++ b/wiki/Std_OnlineHelp.md @@ -7,6 +7,8 @@ SeeAlso:[Std WhatsThis](Std_WhatsThis.md) --- +# Std OnlineHelp + ## Description The **Std OnlineHelp** command opens the help documentation. To open the documentation for a specified command, use the [Std WhatsThis](Std_WhatsThis.md) command. @@ -27,4 +29,7 @@ The **Std OnlineHelp** command opens the help documentation. To open the documen - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std OnlineHelp diff --git a/wiki/Std_Open.md b/wiki/Std_Open.md index 97daf91936..1d98ee6fc8 100644 --- a/wiki/Std_Open.md +++ b/wiki/Std_Open.md @@ -7,6 +7,8 @@ SeeAlso:[Std Import](Std_Import.md), [Std New](Std_New.md) --- +# Std Open + ## Description The **Std Open** command opens a file. If the file is not a native FreeCAD file (\*.FCStd) its geometry will be imported into a new document. See [Std Import](Std_Import.md) for more information. @@ -45,4 +47,7 @@ For a scripting example see [Std New](Std_New#Scripting.md). - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Open diff --git a/wiki/Std_OrthographicCamera.md b/wiki/Std_OrthographicCamera.md index 8f8d582687..5f8bee987b 100644 --- a/wiki/Std_OrthographicCamera.md +++ b/wiki/Std_OrthographicCamera.md @@ -7,6 +7,8 @@ SeeAlso:[Std PerspectiveCamera](Std_PerspectiveCamera.md) --- +# Std OrthographicCamera + ## Description The **Std OrthographicCamera** command switches the camera in the active [3D view](3D_view.md) to orthographic view mode. In this mode, objects that are further from the camera do not appear smaller than those that are closer. @@ -47,4 +49,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std OrthographicCamera diff --git a/wiki/Std_Part.md b/wiki/Std_Part.md index fdccf4b43c..142da8f432 100644 --- a/wiki/Std_Part.md +++ b/wiki/Std_Part.md @@ -7,6 +7,8 @@ SeeAlso:[Std Group](Std_Group.md), [PartDesign Body](PartDesign_Body.md) --- +# Std Part + ## Description @@ -267,4 +269,7 @@ App.ActiveDocument.addObject('Part::FeaturePython', 'Group', group.MyGroup(), gr - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Part diff --git a/wiki/Std_Paste.md b/wiki/Std_Paste.md index 2254da2472..eb1142ee4d 100644 --- a/wiki/Std_Paste.md +++ b/wiki/Std_Paste.md @@ -7,6 +7,8 @@ SeeAlso:[Std Cut](Std_Cut.md), [Std Copy](Std_Copy.md), [Std DuplicateSelection](Std_DuplicateSelection.md) --- +# Std Paste + ## Description The **Std Paste** command pastes objects from the Clipboard into the active document. @@ -33,4 +35,7 @@ The **Std Paste** command pastes objects from the Clipboard into the active docu - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Paste diff --git a/wiki/Std_PerspectiveCamera.md b/wiki/Std_PerspectiveCamera.md index b4bae4f4d2..b955da301b 100644 --- a/wiki/Std_PerspectiveCamera.md +++ b/wiki/Std_PerspectiveCamera.md @@ -7,6 +7,8 @@ SeeAlso:[Std OrthographicCamera](Std_OrthographicCamera.md) --- +# Std PerspectiveCamera + ## Description The **Std PerspectiveCamera** command switches the camera in the active [3D view](3D_view.md) to perspective view mode. In this mode, objects that are further from the camera appear smaller than those that are closer. @@ -47,4 +49,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std PerspectiveCamera diff --git a/wiki/Std_Placement.md b/wiki/Std_Placement.md index d4f1012873..7eee54f4d6 100644 --- a/wiki/Std_Placement.md +++ b/wiki/Std_Placement.md @@ -6,6 +6,8 @@ SeeAlso:[Std Alignment](Std_Alignment.md), [Placement](Placement.md) --- +# Std Placement + ## Description The **Std Placement** command displays the Placement [task panel](Task_panel.md) for a selected object. @@ -80,4 +82,7 @@ print(obj.Placement.Matrix) - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Placement diff --git a/wiki/Std_Print.md b/wiki/Std_Print.md index 4a3bfc08f1..399d55be9c 100644 --- a/wiki/Std_Print.md +++ b/wiki/Std_Print.md @@ -7,6 +7,8 @@ SeeAlso:[Std PrintPreview](Std_PrintPreview.md), [Std PrintPdf](Std_PrintPdf.md), [Std Export](Std_Export.md), [Std ViewScreenShot](Std_ViewScreenShot.md) --- +# Std Print + ## Description The **Std Print** command is primarily intended to print [TechDraw Workbench](TechDraw_Workbench.md) pages, but can also be used to print what is currently visible in the [3D view](3D_View.md). @@ -27,4 +29,7 @@ The **Std Print** command is primarily intended to print [TechDraw Workbench](Te - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Print diff --git a/wiki/Std_PrintPdf.md b/wiki/Std_PrintPdf.md index 5ee3719f7e..ee2d9bcd7f 100644 --- a/wiki/Std_PrintPdf.md +++ b/wiki/Std_PrintPdf.md @@ -6,6 +6,8 @@ SeeAlso:[Std Print](Std_Print.md), [Std Export](Std_Export.md), [Std ViewScreenShot](Std_ViewScreenShot.md) --- +# Std PrintPdf + ## Description The **Std PrintPdf** command is primarily intended to create [PDF](PDF.md) files from [TechDraw Workbench](TechDraw_Workbench.md) pages, but can also be used to create a PDF from what is currently visible in the [3D view](3D_View.md). @@ -33,4 +35,7 @@ The **Std PrintPdf** command is primarily intended to create [PDF](PDF.md) files - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std PrintPdf diff --git a/wiki/Std_PrintPreview.md b/wiki/Std_PrintPreview.md index 6ae5a14ade..a1e8278c0d 100644 --- a/wiki/Std_PrintPreview.md +++ b/wiki/Std_PrintPreview.md @@ -6,6 +6,8 @@ SeeAlso:[Std Print](Std_Print.md) --- +# Std PrintPreview + ## Description The **Std PrintPreview** command will show a preview of the result of the [Std Print](Std_Print.md) command. You can also print directly from the preview dialog box. @@ -24,4 +26,7 @@ The **Std PrintPreview** command will show a preview of the result of the [Std P - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std PrintPreview diff --git a/wiki/Std_ProjectInfo.md b/wiki/Std_ProjectInfo.md index d7eaf2f17b..b6e165c788 100644 --- a/wiki/Std_ProjectInfo.md +++ b/wiki/Std_ProjectInfo.md @@ -6,6 +6,8 @@ SeeAlso:[Std New](Std_New.md) --- +# Std ProjectInfo + ## Description The **Std ProjectInfo** command shows a dialog box with project information belonging to the active document. Some of this information can be edited. @@ -38,4 +40,7 @@ The **Std ProjectInfo** command shows a dialog box with project information belo - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ProjectInfo diff --git a/wiki/Std_ProjectUtil.md b/wiki/Std_ProjectUtil.md index 13f1bba1ee..8f3219c290 100644 --- a/wiki/Std_ProjectUtil.md +++ b/wiki/Std_ProjectUtil.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std ProjectUtil + ## Description With the **Std ProjectUtil** command you can extract files from a FreeCAD project file ({{FileName|*.FCStd}}), which is in fact a [ZIP](https://en.wikipedia.org/wiki/Zip_(file_format)) file, and, after manual edits, create a new project file from them. @@ -48,4 +50,7 @@ It is important to realize that the files inside a FreeCAD project file are inte - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ProjectUtil diff --git a/wiki/Std_ProjectUtility.md b/wiki/Std_ProjectUtility.md index 957acddf38..b935f34476 100644 --- a/wiki/Std_ProjectUtility.md +++ b/wiki/Std_ProjectUtility.md @@ -1,2 +1,5 @@ # Std ProjectUtility 1. REDIRECT [Std\_ProjectUtil](Std_ProjectUtil.md) + +--- +[documentation index](../README.md) > Std ProjectUtility diff --git a/wiki/Std_PythonHelp.md b/wiki/Std_PythonHelp.md index c71064ab38..27572d80b4 100644 --- a/wiki/Std_PythonHelp.md +++ b/wiki/Std_PythonHelp.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreeCADPowerUserHub](Std_FreeCADPowerUserHub.md) --- +# Std PythonHelp + ## Description The **Std PythonHelp** command starts a web server that communicates with the system\'s default Internet browser over a local socket. The web server displays information about the available [Python](Python.md) modules, classes and functions of FreeCAD. The required pages are generated automatically. @@ -20,4 +22,7 @@ The web server is based on Python\'s [pydoc](https://docs.python.org/3.8/library - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std PythonHelp diff --git a/wiki/Std_Quit.md b/wiki/Std_Quit.md index 411cbef556..725daf23ae 100644 --- a/wiki/Std_Quit.md +++ b/wiki/Std_Quit.md @@ -7,6 +7,8 @@ SeeAlso:[Std Close](Std_CloseActiveWindow.md) --- +# Std Quit + ## Description The **Std Quit** command closes the FreeCAD application and optionally saves unsaved documents. @@ -32,4 +34,7 @@ The **Std Quit** command closes the FreeCAD application and optionally saves uns - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Quit diff --git a/wiki/Std_RandomColor.md b/wiki/Std_RandomColor.md index 2010bbc386..b52f894cdb 100644 --- a/wiki/Std_RandomColor.md +++ b/wiki/Std_RandomColor.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std RandomColor + ## Description The **Std RandomColor** command applies a random **Shape Color** to selected objects. @@ -23,4 +25,7 @@ The **Std RandomColor** command applies a random **Shape Color** to selected obj - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std RandomColor diff --git a/wiki/Std_RecentFiles.md b/wiki/Std_RecentFiles.md index 913af4605a..04f0384560 100644 --- a/wiki/Std_RecentFiles.md +++ b/wiki/Std_RecentFiles.md @@ -7,6 +7,8 @@ SeeAlso:[Std Open](Std_Open.md), [Std Import](Std_Import.md) --- +# Std RecentFiles + ## Description The **Std RecentFiles** menu option displays a list of recent files which can be opened. @@ -28,4 +30,7 @@ The **Std RecentFiles** menu option displays a list of recent files which can be - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std RecentFiles diff --git a/wiki/Std_Redo.md b/wiki/Std_Redo.md index e587793f95..e760999d85 100644 --- a/wiki/Std_Redo.md +++ b/wiki/Std_Redo.md @@ -7,6 +7,8 @@ SeeAlso:[Std Undo](Std_Undo.md) --- +# Std Redo + ## Description The **Std Redo** command reverses the action of the [Std Undo](Std_Undo.md) command. @@ -46,4 +48,7 @@ FreeCAD.ActiveDocument.redo() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Redo diff --git a/wiki/Std_Refresh.md b/wiki/Std_Refresh.md index 72e00836eb..8c9f0841f6 100644 --- a/wiki/Std_Refresh.md +++ b/wiki/Std_Refresh.md @@ -6,6 +6,8 @@ Shortcut:**F5** --- +# Std Refresh + ## Description The **Std Refresh** command recomputes the active document. The command is disabled if the document does not require a recompute. @@ -46,4 +48,7 @@ doc.recompute() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Refresh diff --git a/wiki/Std_Revert.md b/wiki/Std_Revert.md index d6a8faaad4..826d2c0067 100644 --- a/wiki/Std_Revert.md +++ b/wiki/Std_Revert.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std Revert + ## Description The **Std Revert** command closes the active document and reopens the last saved version of the document. @@ -21,4 +23,7 @@ The **Std Revert** command closes the active document and reopens the last saved - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Revert diff --git a/wiki/Std_Save.md b/wiki/Std_Save.md index 037fd94152..19e8990a48 100644 --- a/wiki/Std_Save.md +++ b/wiki/Std_Save.md @@ -7,6 +7,8 @@ SeeAlso:[Std SaveAs](Std_SaveAs.md), [Std SaveCopy](Std_SaveCopy.md), [Std SaveAll](Std_SaveAll.md) --- +# Std Save + ## Description The **Std Save** command saves the active document. @@ -43,4 +45,7 @@ To save a document use the `save` method of the document object. A new document - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Save diff --git a/wiki/Std_SaveAll.md b/wiki/Std_SaveAll.md index a76a5078d5..946bc7dd7a 100644 --- a/wiki/Std_SaveAll.md +++ b/wiki/Std_SaveAll.md @@ -6,6 +6,8 @@ SeeAlso:[Std Save](Std_Save.md) --- +# Std SaveAll + ## Description The **Std SaveAll** command saves all open documents. @@ -35,4 +37,7 @@ To save a document use the `save` method of the document object. A new document - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std SaveAll diff --git a/wiki/Std_SaveAs.md b/wiki/Std_SaveAs.md index 8c89c68cac..4f6c6be8fa 100644 --- a/wiki/Std_SaveAs.md +++ b/wiki/Std_SaveAs.md @@ -6,6 +6,8 @@ SeeAlso:[Std SaveCopy](Std_SaveCopy.md), [Std Save](Std_Save.md) --- +# Std SaveAs + ## Description The **Std SaveAs** command saves the active document under a new file name. @@ -40,4 +42,7 @@ To save a document under a new name use the `saveAs` method of the document obje - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std SaveAs diff --git a/wiki/Std_SaveCopy.md b/wiki/Std_SaveCopy.md index 9a4b12d308..86235f62cc 100644 --- a/wiki/Std_SaveCopy.md +++ b/wiki/Std_SaveCopy.md @@ -6,6 +6,8 @@ SeeAlso:[Std SaveAs](Std_SaveAs.md), [Std Save](Std_Save.md) --- +# Std SaveCopy + ## Description The **Std SaveCopy** command saves a copy of the active document under a new file name. @@ -52,4 +54,7 @@ doc.saveCopy(fnm) - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std SaveCopy diff --git a/wiki/Std_SaveaCopy.md b/wiki/Std_SaveaCopy.md index 184ecb998c..ac959c781f 100644 --- a/wiki/Std_SaveaCopy.md +++ b/wiki/Std_SaveaCopy.md @@ -1,2 +1,5 @@ # Std SaveaCopy 1. REDIRECT [Std\_SaveCopy](Std_SaveCopy.md) + +--- +[documentation index](../README.md) > Std SaveaCopy diff --git a/wiki/Std_SceneInspector.md b/wiki/Std_SceneInspector.md index 549fe08e5d..4aa9e7d18d 100644 --- a/wiki/Std_SceneInspector.md +++ b/wiki/Std_SceneInspector.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std SceneInspector + ## Description The **Std SceneInspector** command opens a dialog box displaying an overview of all nodes in the [scenegraph](Scenegraph.md) of the active [3D view](3D_view.md). It is more a utility for programmers than for average users. It can be used to find out why the rendering is slow or why something isn\'t rendered properly. @@ -20,4 +22,7 @@ The **Std SceneInspector** command opens a dialog box displaying an overview of - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std SceneInspector diff --git a/wiki/Std_SelBack.md b/wiki/Std_SelBack.md index 615afbb520..df50d7ed51 100644 --- a/wiki/Std_SelBack.md +++ b/wiki/Std_SelBack.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkSelectLinked](Std_LinkSelectLinked.md), [Std LinkSelectLinkedFinal](Std_LinkSelectLinkedFinal.md), [Std LinkSelectAllLinks](Std_LinkSelectAllLinks.md), [Std SelForward](Std_SelForward.md) --- +# Std SelBack + ## Description The **Std SelBack** command restores the previous recorded [Tree view](Tree_view.md) selection. Note that selections are only recorded if [Tree RecordSelection mode](Std_TreeRecordSelection.md) is switched on. @@ -24,4 +26,7 @@ The **Std SelBack** command restores the previous recorded [Tree view](Tree_view - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std SelBack diff --git a/wiki/Std_SelBoundingBox.md b/wiki/Std_SelBoundingBox.md index 60966bea21..9eb9037073 100644 --- a/wiki/Std_SelBoundingBox.md +++ b/wiki/Std_SelBoundingBox.md @@ -7,6 +7,8 @@ SeeAlso:[Std DrawStyle](Std_DrawStyle.md) --- +# Std SelBoundingBox + ## Description The **Std SelBoundingBox** command toggles the global bounding box highlighting mode. If this mode is switched on, selected objects are marked in a [3D view](3D_view.md) with a highlighted bounding box even if their **Selection Style** is set to \'Shape\'. @@ -46,4 +48,7 @@ FreeCADGui.updateCommands() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std SelBoundingBox diff --git a/wiki/Std_SelForward.md b/wiki/Std_SelForward.md index e4d047b8bb..cc8d624376 100644 --- a/wiki/Std_SelForward.md +++ b/wiki/Std_SelForward.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkSelectLinked](Std_LinkSelectLinked.md), [Std LinkSelectLinkedFinal](Std_LinkSelectLinkedFinal.md), [Std LinkSelectAllLinks](Std_LinkSelectAllLinks.md), [Std SelBack](Std_SelBack.md) --- +# Std SelForward + ## Description The **Std SelForward** command restores the next recorded [Tree view](Tree_view.md) selection. Note that selections are only recorded if [Tree RecordSelection mode](Std_TreeRecordSelection.md) is switched on. @@ -24,4 +26,7 @@ The **Std SelForward** command restores the next recorded [Tree view](Tree_view. - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std SelForward diff --git a/wiki/Std_SelectAll.md b/wiki/Std_SelectAll.md index 22c32cdddb..72f4506ede 100644 --- a/wiki/Std_SelectAll.md +++ b/wiki/Std_SelectAll.md @@ -6,6 +6,8 @@ SeeAlso:[Std BoxSelection](Std_BoxSelection.md), [Std BoxElementSelection](Std_BoxElementSelection.md) --- +# Std SelectAll + ## Description The **Std SelectAll** command selects all objects in the [Tree view](Tree_view.md). @@ -21,4 +23,7 @@ The **Std SelectAll** command selects all objects in the [Tree view](Tree_view.m - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std SelectAll diff --git a/wiki/Std_SelectVisibleObjects.md b/wiki/Std_SelectVisibleObjects.md index f470053e4d..1a425d9e71 100644 --- a/wiki/Std_SelectVisibleObjects.md +++ b/wiki/Std_SelectVisibleObjects.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std SelectVisibleObjects + ## Description The **Std SelectVisibleObjects** command selects all visible objects. Note that for each [PartDesign body](PartDesign_Body.md) typically two objects will be selected: the body itself and its **Tip** object. @@ -16,4 +18,7 @@ The **Std SelectVisibleObjects** command selects all visible objects. Note that - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std SelectVisibleObjects diff --git a/wiki/Std_SendToPythonConsole.md b/wiki/Std_SendToPythonConsole.md index 2ebac092a8..d7606ce352 100644 --- a/wiki/Std_SendToPythonConsole.md +++ b/wiki/Std_SendToPythonConsole.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Std SendToPythonConsole + ## Description The **Std SendToPythonConsole** command creates a variable in the [Python console](Python_console.md) referencing a selected object. If a subshape of the object is selected two additional variables are created, one referencing the shape of the object and the other referencing the subshape itself. The variables and the code involved can be used to development Python code. @@ -32,4 +34,7 @@ The **Std SendToPythonConsole** command creates a variable in the [Python consol - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std SendToPythonConsole diff --git a/wiki/Std_SetAppearance.md b/wiki/Std_SetAppearance.md index 6cc26a7eaf..3d25ec05ca 100644 --- a/wiki/Std_SetAppearance.md +++ b/wiki/Std_SetAppearance.md @@ -7,6 +7,8 @@ SeeAlso:[Part FaceColors](Part_FaceColors.md) --- +# Std SetAppearance + ## Description The **Std SetAppearance** command shows the Display properties [task panel](Task_panel.md) for selected objects. @@ -50,4 +52,7 @@ The **Std SetAppearance** command shows the Display properties [task panel](Task - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std SetAppearance diff --git a/wiki/Std_SetColors.md b/wiki/Std_SetColors.md index d88fcd10d2..ffc5495e5c 100644 --- a/wiki/Std_SetColors.md +++ b/wiki/Std_SetColors.md @@ -1,2 +1,5 @@ # Std SetColors 1. REDIRECT [Part\_FaceColors](Part_FaceColors.md) + +--- +[documentation index](../README.md) > Std SetColors diff --git a/wiki/Std_ShowObjects.md b/wiki/Std_ShowObjects.md index 68abaf89f7..7bc29afb7e 100644 --- a/wiki/Std_ShowObjects.md +++ b/wiki/Std_ShowObjects.md @@ -6,6 +6,8 @@ SeeAlso:[Std ToggleVisibility](Std_ToggleVisibility.md), [Std ShowSelection](Std_ShowSelection.md), [Std HideSelection](Std_HideSelection.md), [Std ToggleObjects](Std_ToggleObjects.md), [Std HideObjects](Std_HideObjects.md) --- +# Std ShowObjects + ## Description The **Std ShowObjects** command shows all objects belonging to the active document in [3D views](3D_view.md). Be careful when you use this command as it will also show sub-elements of [PartDesign bodies](PartDesign_Body.md) and objects used for [Part Booleans](Part_Boolean.md). In most cases these should stay invisible. @@ -31,4 +33,7 @@ For a scripting example see [Std ToggleVisibility](Std_ToggleVisibility.md). - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ShowObjects diff --git a/wiki/Std_ShowSelection.md b/wiki/Std_ShowSelection.md index 92073ee0fe..d06838aa6f 100644 --- a/wiki/Std_ShowSelection.md +++ b/wiki/Std_ShowSelection.md @@ -6,6 +6,8 @@ SeeAlso:[Std ToggleVisibility](Std_ToggleVisibility.md), [Std HideSelection](Std_HideSelection.md), [Std ToggleObjects](Std_ToggleObjects.md), [Std ShowObjects](Std_ShowObjects.md), [Std HideObjects](Std_HideObjects.md) --- +# Std ShowSelection + ## Description The **Std ShowSelection** command shows selected objects in [3D views](3D_view.md). @@ -40,4 +42,7 @@ For a scripting example see [Std ToggleVisibility](Std_ToggleVisibility.md). - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ShowSelection diff --git a/wiki/Std_TextDocument.md b/wiki/Std_TextDocument.md index 24a3366a4a..794607ca43 100644 --- a/wiki/Std_TextDocument.md +++ b/wiki/Std_TextDocument.md @@ -7,6 +7,8 @@ SeeAlso:[Draft ShapeString](Draft_ShapeString.md), [Draft Text](Draft_Text.md) --- +# Std TextDocument + ## Description The **Std TextDocument** command creates an object capable of holding arbitrary text. This element can be used to write general information or documentation about the model. @@ -61,4 +63,7 @@ App.ActiveDocument.recompute() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std TextDocument diff --git a/wiki/Std_TextureMapping.md b/wiki/Std_TextureMapping.md index b794a0a9fc..9061c7c1f7 100644 --- a/wiki/Std_TextureMapping.md +++ b/wiki/Std_TextureMapping.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std TextureMapping + ## Description The **Std TextureMapping** command temporarily maps a texture onto all objects in a [3D view](3D_view.md). @@ -22,4 +24,7 @@ The **Std TextureMapping** command temporarily maps a texture onto all objects i - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std TextureMapping diff --git a/wiki/Std_TileWindows.md b/wiki/Std_TileWindows.md index 1eebb3ba05..77b73d78b2 100644 --- a/wiki/Std_TileWindows.md +++ b/wiki/Std_TileWindows.md @@ -6,6 +6,8 @@ SeeAlso:[Std CascadeWindows](Std_CascadeWindows.md) --- +# Std TileWindows + ## Description The **Std TileWindows** command rearranges the windows in the [Main view area](Main_view_area.md) so that they are all visible and do not overlap. The result is determined by the order in which the windows were last activated. @@ -21,4 +23,7 @@ The **Std TileWindows** command rearranges the windows in the [Main view area](M - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std TileWindows diff --git a/wiki/Std_ToggleBreakpoint.md b/wiki/Std_ToggleBreakpoint.md index e4d78a36d8..dad7b5464b 100644 --- a/wiki/Std_ToggleBreakpoint.md +++ b/wiki/Std_ToggleBreakpoint.md @@ -8,6 +8,8 @@ SeeAlso:[Std MacroStepOver](Std_MacroStepOver.md), [Std MacroStepInto](Std_MacroStepInto.md) --- +# Std ToggleBreakpoint + ## Description This command does not work at this time. @@ -15,4 +17,7 @@ This command does not work at this time. - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ToggleBreakpoint diff --git a/wiki/Std_ToggleClipPlane.md b/wiki/Std_ToggleClipPlane.md index 7bf853f652..c5e061e1e6 100644 --- a/wiki/Std_ToggleClipPlane.md +++ b/wiki/Std_ToggleClipPlane.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std ToggleClipPlane + ## Description The **Std ToggleClipPlane** command temporarily hides objects and parts of objects on one side of up to three virtual planes in the active [3D view](3D_view.md). @@ -36,4 +38,7 @@ The **Std ToggleClipPlane** command temporarily hides objects and parts of objec - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ToggleClipPlane diff --git a/wiki/Std_ToggleNavigation.md b/wiki/Std_ToggleNavigation.md index 91aaee2247..430c2a1370 100644 --- a/wiki/Std_ToggleNavigation.md +++ b/wiki/Std_ToggleNavigation.md @@ -6,6 +6,8 @@ Shortcut:**Esc** --- +# Std ToggleNavigation + ## Description The **Std ToggleNavigation** command is intended for certain inspection operations and certain interactive mesh editing operations. These operations are quite \'expensive\' and therefore rely on an edit mode during which most navigation options are disabled. With this command it is possible to temporarily switch from edit mode to navigation mode, and, after changing the [3D view](3D_view.md), switch back to edit mode. @@ -45,4 +47,7 @@ Do not confuse this command with the [Std Edit](Std_Edit.md) command. - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ToggleNavigation diff --git a/wiki/Std_ToggleObjects.md b/wiki/Std_ToggleObjects.md index af1ad5c4b9..ca67578a98 100644 --- a/wiki/Std_ToggleObjects.md +++ b/wiki/Std_ToggleObjects.md @@ -6,6 +6,8 @@ SeeAlso:[Std ToggleVisibility](Std_ToggleVisibility.md), [Std ShowSelection](Std_ShowSelection.md), [Std HideSelection](Std_HideSelection.md), [Std ShowObjects](Std_ShowObjects.md), [Std HideObjects](Std_HideObjects.md) --- +# Std ToggleObjects + ## Description The **Std ToggleObjects** command toggles the visibility of all objects belonging to the active document in [3D views](3D_view.md). Be careful when you use this command as it will also toggle the visibility of sub-elements of [PartDesign bodies](PartDesign_Body.md) and objects used for [Part Booleans](Part_Boolean.md). In most cases these should stay invisible. @@ -34,4 +36,7 @@ For a scripting example see [Std ToggleVisibility](Std_ToggleVisibility.md). - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ToggleObjects diff --git a/wiki/Std_ToggleSelectability.md b/wiki/Std_ToggleSelectability.md index fe734160f0..6f402fba96 100644 --- a/wiki/Std_ToggleSelectability.md +++ b/wiki/Std_ToggleSelectability.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std ToggleSelectability + ## Description The **Std ToggleSelectability** command toggles the selectability of objects in [3D views](3D_view.md). @@ -45,4 +47,7 @@ else: - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ToggleSelectability diff --git a/wiki/Std_ToggleVisibility.md b/wiki/Std_ToggleVisibility.md index 599f4e7687..de88936fe6 100644 --- a/wiki/Std_ToggleVisibility.md +++ b/wiki/Std_ToggleVisibility.md @@ -7,6 +7,8 @@ SeeAlso:[Std ShowSelection](Std_ShowSelection.md), [Std HideSelection](Std_HideSelection.md), [Std ToggleObjects](Std_ToggleObjects.md), [Std ShowObjects](Std_ShowObjects.md), [Std HideObjects](Std_HideObjects.md) --- +# Std ToggleVisibility + ## Description The **Std ToggleVisibility** command toggles the visibility of selected objects in [3D views](3D_view.md). @@ -56,4 +58,7 @@ else: - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ToggleVisibility diff --git a/wiki/Std_Tools_Menu.md b/wiki/Std_Tools_Menu.md index 78b5ba11df..63f8259267 100644 --- a/wiki/Std_Tools_Menu.md +++ b/wiki/Std_Tools_Menu.md @@ -1,10 +1,4 @@ -# Std Tools Menu - - - - - -Std Base icon +# Std Base icon Std Tools Menu @@ -64,3 +58,6 @@ The following tools are available in this menu: {{Std Base navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Tools Menu diff --git a/wiki/Std_Transform.md b/wiki/Std_Transform.md index 748781b058..f4545d929e 100644 --- a/wiki/Std_Transform.md +++ b/wiki/Std_Transform.md @@ -1,2 +1,5 @@ # Std Transform 1. REDIRECT [Std\_TransformManip](Std_TransformManip.md) + +--- +[documentation index](../README.md) > Std Transform diff --git a/wiki/Std_TransformManip.md b/wiki/Std_TransformManip.md index 8c68d0f844..5e8ca52460 100644 --- a/wiki/Std_TransformManip.md +++ b/wiki/Std_TransformManip.md @@ -7,6 +7,8 @@ Edit → Transform SeeAlso:[Std Base](Std_Base.md) --- +# Std TransformManip + ## Description This tool allows you to apply rotation increments or translation increments to an object. @@ -31,4 +33,7 @@ This tool allows you to apply rotation increments or translation increments to a - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std TransformManip diff --git a/wiki/Std_TreeCollapseDocument.md b/wiki/Std_TreeCollapseDocument.md index 2c3fed6e11..47e45d7e0b 100644 --- a/wiki/Std_TreeCollapseDocument.md +++ b/wiki/Std_TreeCollapseDocument.md @@ -7,6 +7,8 @@ SeeAlso:[Std TreeSingleDocument](Std_TreeSingleDocument.md), [Std TreeMultiDocument](Std_TreeMultiDocument.md) --- +# Std TreeCollapseDocument + ## Description The **Std TreeCollapseDocument** command switches the [Tree view](Tree_view.md) DocumentMode to CollapseDocument. In this mode activating a document's [3D view](3D_view.md) will automatically expand that document in the Tree view and collapse all other documents. The other modes are [SingleDocument](Std_TreeSingleDocument.md) and [MultiDocument](Std_TreeMultiDocument.md). @@ -24,4 +26,7 @@ The Tree view DocumentMode mode is stored: **Tools → Edit parameters... → Ba - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std TreeCollapseDocument diff --git a/wiki/Std_TreeDrag.md b/wiki/Std_TreeDrag.md index 0f4f6c1da2..10149c750d 100644 --- a/wiki/Std_TreeDrag.md +++ b/wiki/Std_TreeDrag.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Std TreeDrag + ## Description The **Std TreeDrag** command initiates a drag operation for selected objects in the [Tree view](Tree_view.md). This command is useful when the objects you want to drag and drop and the target container are not visible at the same time in the Tree view. @@ -24,4 +26,7 @@ The **Std TreeDrag** command initiates a drag operation for selected objects in - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std TreeDrag diff --git a/wiki/Std_TreeMultiDocument.md b/wiki/Std_TreeMultiDocument.md index f0f65efd08..68e9310096 100644 --- a/wiki/Std_TreeMultiDocument.md +++ b/wiki/Std_TreeMultiDocument.md @@ -7,6 +7,8 @@ SeeAlso:[Std TreeSingleDocument](Std_TreeSingleDocument.md), [Std TreeCollapseDocument](Std_TreeCollapseDocument.md) --- +# Std TreeMultiDocument + ## Description The **Std TreeMultiDocument** command switches the [Tree view](Tree_view.md) DocumentMode to MultiDocument. In this mode all documents are visible in the Tree view and multiple documents can be expanded. The other modes are [SingleDocument](Std_TreeSingleDocument.md) and [CollapseDocument](Std_TreeCollapseDocument.md). @@ -24,4 +26,7 @@ The Tree view DocumentMode mode is stored: **Tools → Edit parameters... → Ba - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std TreeMultiDocument diff --git a/wiki/Std_TreePreSelection.md b/wiki/Std_TreePreSelection.md index d3f0019874..b42e4bc6e9 100644 --- a/wiki/Std_TreePreSelection.md +++ b/wiki/Std_TreePreSelection.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Std TreePreSelection + ## Description The **Std TreePreSelection** command toggles the [Tree view](Tree_view.md) PreSelection mode. If this mode is on, an object that the mouse is over in the Tree view will be pre-selectected (temporarily highlighted) in all [3D views](3D_view.md) belonging to that object\'s document. @@ -25,4 +27,7 @@ The Tree view PreSelection mode can also be set in the [Preferences editor](Pref - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std TreePreSelection diff --git a/wiki/Std_TreeRecordSelection.md b/wiki/Std_TreeRecordSelection.md index 94faabf854..6d475015cc 100644 --- a/wiki/Std_TreeRecordSelection.md +++ b/wiki/Std_TreeRecordSelection.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Std TreeRecordSelection + ## Description The **Std TreeRecordSelection** command toggles the [Tree view](Tree_view.md) RecordSelection mode. If this mode is on, each Tree view selection is stored for future use. With the **** and **** buttons you can go backwards and forwards through these selections and restore them. @@ -25,4 +27,7 @@ The Tree view RecordSelection mode can also be set in the [Preferences editor](P - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std TreeRecordSelection diff --git a/wiki/Std_TreeSelection.md b/wiki/Std_TreeSelection.md index 7f2d62aa78..f3ecb75d2b 100644 --- a/wiki/Std_TreeSelection.md +++ b/wiki/Std_TreeSelection.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Std TreeSelection + ## Description The **Std TreeSelection** command scrolls the [Tree view](Tree_view.md) to the first created object in a [3D view](3D_view.md) selection. @@ -25,4 +27,7 @@ If the Tree view [SyncSelection](Std_TreeSyncSelection.md) mode is off, the Tree - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std TreeSelection diff --git a/wiki/Std_TreeSingleDocument.md b/wiki/Std_TreeSingleDocument.md index 06791dea4e..fe44a5b401 100644 --- a/wiki/Std_TreeSingleDocument.md +++ b/wiki/Std_TreeSingleDocument.md @@ -7,6 +7,8 @@ SeeAlso:[Std TreeMultiDocument](Std_TreeMultiDocument.md), [Std TreeCollapseDocument](Std_TreeCollapseDocument.md) --- +# Std TreeSingleDocument + ## Description The **Std TreeSingleDocument** command switches the [Tree view](Tree_view.md) DocumentMode to SingleDocument. In this mode only a single document is visible in the Tree view. The other modes are [MultiDocument](Std_TreeMultiDocument.md) and [CollapseDocument](Std_TreeCollapseDocument.md). @@ -26,4 +28,7 @@ The Tree view DocumentMode mode is stored: **Tools → Edit parameters... → Ba - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std TreeSingleDocument diff --git a/wiki/Std_TreeSyncPlacement.md b/wiki/Std_TreeSyncPlacement.md index 88d26f3f78..571e6b7e25 100644 --- a/wiki/Std_TreeSyncPlacement.md +++ b/wiki/Std_TreeSyncPlacement.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Std TreeSyncPlacement + ## Description The **Std TreeSyncPlacement** command toggles the [Tree view](Tree_view.md) SyncPlacement mode. If this mode is on, the **Placement** of objects is automatically adjusted when they are dragged and dropped from one container into another container with a different coordinate system, preserving their placement relative to the global coordinate system. @@ -25,4 +27,7 @@ The Tree view SyncPlacement mode is stored: **Tools → Edit parameters... → B - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std TreeSyncPlacement diff --git a/wiki/Std_TreeSyncSelection.md b/wiki/Std_TreeSyncSelection.md index 593f60bc8f..a21e4f34cf 100644 --- a/wiki/Std_TreeSyncSelection.md +++ b/wiki/Std_TreeSyncSelection.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Std TreeSyncSelection + ## Description The **Std TreeSyncSelection** command toggles the [Tree view](Tree_view.md) SyncSelection mode. If this mode is on, selecting an object in a [3D view](3D_view.md) will automatically expand the Tree view to show that object. @@ -25,4 +27,7 @@ The Tree view SyncSelection mode can also be set in the [Preferences editor](Pre - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std TreeSyncSelection diff --git a/wiki/Std_TreeSyncView.md b/wiki/Std_TreeSyncView.md index 952d4164fd..c7af4d9350 100644 --- a/wiki/Std_TreeSyncView.md +++ b/wiki/Std_TreeSyncView.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Std TreeSyncView + ## Description The **Std TreeSyncView** command toggles the [Tree view](Tree_view.md) SyncView mode. If this mode is on, selecting an object from a different document in the Tree view automatically activates that document's last used docked [3D view](3D_view.md). @@ -25,4 +27,7 @@ The Tree view SyncView mode can also be set in the [Preferences editor](Preferen - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std TreeSyncView diff --git a/wiki/Std_Undo.md b/wiki/Std_Undo.md index 23c4573643..a4af8416b5 100644 --- a/wiki/Std_Undo.md +++ b/wiki/Std_Undo.md @@ -7,6 +7,8 @@ SeeAlso:[Std Redo](Std_Redo.md) --- +# Std Undo + ## Description The **Std Undo** command undoes the last action. @@ -46,4 +48,7 @@ FreeCAD.ActiveDocument.undo() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Undo diff --git a/wiki/Std_UnitsCalculator.md b/wiki/Std_UnitsCalculator.md index 225cbc0123..67c82d0b29 100644 --- a/wiki/Std_UnitsCalculator.md +++ b/wiki/Std_UnitsCalculator.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std UnitsCalculator + ## Description The **Std UnitsCalculator** command opens the Units calculator dialog box. The Units calculator can be used to convert values from one unit system to another. @@ -54,4 +56,7 @@ The **Std UnitsCalculator** command opens the Units calculator dialog box. The U - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std UnitsCalculator diff --git a/wiki/Std_UserEditMode.md b/wiki/Std_UserEditMode.md index 6c3b2e39af..5c6366e405 100644 --- a/wiki/Std_UserEditMode.md +++ b/wiki/Std_UserEditMode.md @@ -7,6 +7,8 @@ SeeAlso:[Std Edit](Std_Edit.md) --- +# Std UserEditMode + ## Description The **Std UserEditMode** command defines the edit mode to be used when an object is double-clicked in the [Tree view](Tree_view.md). @@ -58,4 +60,7 @@ FreeCADGui.setUserEditMode(MODENAME) # Where MODENAME is a string available in t - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std UserEditMode diff --git a/wiki/Std_ViewBottom.md b/wiki/Std_ViewBottom.md index 1c19c80171..885e715f78 100644 --- a/wiki/Std_ViewBottom.md +++ b/wiki/Std_ViewBottom.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewRear](Std_ViewRear.md), [Std ViewLeft](Std_ViewLeft.md) --- +# Std ViewBottom + ## Description The **Std ViewBottom** command points the camera in the active [3D view](3D_view.md) in the direction of the positive Z axis. @@ -41,4 +43,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewBottom diff --git a/wiki/Std_ViewBoxZoom.md b/wiki/Std_ViewBoxZoom.md index 8a9b91981a..7599ffb620 100644 --- a/wiki/Std_ViewBoxZoom.md +++ b/wiki/Std_ViewBoxZoom.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewZoomIn](Std_ViewZoomIn.md), [Std ViewZoomOut](Std_ViewZoomOut.md) --- +# Std ViewBoxZoom + ## Description The **Std ViewBoxZoom** command zooms in on a user defined rectangular area, a box, in the active [3D view](3D_view.md). @@ -21,4 +23,7 @@ The **Std ViewBoxZoom** command zooms in on a user defined rectangular area, a b - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewBoxZoom diff --git a/wiki/Std_ViewCreate.md b/wiki/Std_ViewCreate.md index d0a1cf25b4..7d2b267475 100644 --- a/wiki/Std_ViewCreate.md +++ b/wiki/Std_ViewCreate.md @@ -6,6 +6,8 @@ SeeAlso:[Std ViewDockUndockFullscreen](Std_ViewDockUndockFullscreen.md), [Std ViewFullscreen](Std_ViewFullscreen.md) --- +# Std ViewCreate + ## Description The **Std ViewCreate** command creates a new [3D view](3D_view.md) for the active document. Additional 3D views can be useful if you want to inspect the model from multiple directions or at different zoom levels. @@ -23,4 +25,7 @@ The **Std ViewCreate** command creates a new [3D view](3D_view.md) for the activ - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewCreate diff --git a/wiki/Std_ViewDimetric.md b/wiki/Std_ViewDimetric.md index c0181236c8..fc71d608fc 100644 --- a/wiki/Std_ViewDimetric.md +++ b/wiki/Std_ViewDimetric.md @@ -6,6 +6,8 @@ SeeAlso:[Std ViewIsometric](Std_ViewIsometric.md), [Std ViewTrimetric](Std_ViewTrimetric.md) --- +# Std ViewDimetric + ## Description The **Std ViewDimetric** command realigns the camera in the active [3D view](3D_view.md) to obtain a [dimetric](https://en.wikipedia.org/wiki/Axonometric_projection#Three_types) view. For a truly dimetric view the 3D view must be in [orthographic mode](Std_OrthographicCamera.md), but the command also works if the view is in [perspective mode](Std_PerspectiveCamera.md). @@ -36,4 +38,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewDimetric diff --git a/wiki/Std_ViewDockUndockFullscreen.md b/wiki/Std_ViewDockUndockFullscreen.md index d7ba721e04..f89742e994 100644 --- a/wiki/Std_ViewDockUndockFullscreen.md +++ b/wiki/Std_ViewDockUndockFullscreen.md @@ -9,6 +9,8 @@ SeeAlso:[Std ViewFullscreen](Std_ViewFullscreen.md), [Std MainFullscreen](Std_MainFullscreen.md) --- +# Std ViewDockUndockFullscreen + ## Introduction [3D views](3D_view.md) can be undocked from the main [FreeCAD interface](Interface.md) and moved to a different display for example. @@ -51,4 +53,7 @@ The **Undocked** menu option undocks the active [3D view](3D_view.md) from the m - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewDockUndockFullscreen diff --git a/wiki/Std_ViewFitAll.md b/wiki/Std_ViewFitAll.md index 281b9040ef..be54a39377 100644 --- a/wiki/Std_ViewFitAll.md +++ b/wiki/Std_ViewFitAll.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewFitSelection](Std_ViewFitSelection.md) --- +# Std ViewFitAll + ## Description The **Std ViewFitAll** command zooms and pans the camera so that all visible objects fit inside the active [3D view](3D_view.md). @@ -51,4 +53,7 @@ FreeCADGui.SendMsgToActiveView('ViewFit') - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewFitAll diff --git a/wiki/Std_ViewFitSelection.md b/wiki/Std_ViewFitSelection.md index 2ecc601ddf..5e73ec03fc 100644 --- a/wiki/Std_ViewFitSelection.md +++ b/wiki/Std_ViewFitSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewFitAll](Std_ViewFitAll.md) --- +# Std ViewFitSelection + ## Description The **Std ViewFitSelection** command zooms and pans the camera so that all selected objects fit inside the active [3D view](3D_view.md). @@ -39,4 +41,7 @@ FreeCADGui.SendMsgToActiveView('ViewSelection') - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewFitSelection diff --git a/wiki/Std_ViewFront.md b/wiki/Std_ViewFront.md index e4eee4c77f..ab390b4dd4 100644 --- a/wiki/Std_ViewFront.md +++ b/wiki/Std_ViewFront.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewTop](Std_ViewTop.md), [Std ViewRight](Std_ViewRight.md) --- +# Std ViewFront + ## Description The **Std ViewFront** command points the camera in the active [3D view](3D_view.md) in the direction of the positive Y axis. @@ -41,4 +43,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewFront diff --git a/wiki/Std_ViewFullscreen.md b/wiki/Std_ViewFullscreen.md index 1bc612cb17..ea3e2520ae 100644 --- a/wiki/Std_ViewFullscreen.md +++ b/wiki/Std_ViewFullscreen.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewDockUndockFullscreen](Std_ViewDockUndockFullscreen.md), [Std MainFullscreen](Std_MainFullscreen.md) --- +# Std ViewFullscreen + ## Description The **Std ViewFullscreen** command switches [3D views](3D_view.md) to and from fullscreen mode. 3D views are automatically [undocked](Std_ViewDockUndockFullscreen.md) for fullscreen mode. @@ -27,4 +29,7 @@ The **Std ViewFullscreen** command switches [3D views](3D_view.md) to and from f - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewFullscreen diff --git a/wiki/Std_ViewHome.md b/wiki/Std_ViewHome.md index 022782368d..f2cb0e2413 100644 --- a/wiki/Std_ViewHome.md +++ b/wiki/Std_ViewHome.md @@ -8,6 +8,8 @@ SeeAlso:[Std ViewFitAll](Std_ViewFitAll.md) --- +# Std ViewHome + ## Description The **Std ViewHome** command changes the camera in the active [3D view](3D_view.md) to the default camera orientation. And then zooms and pans the camera so that all visible objects fit inside the view. @@ -26,4 +28,7 @@ The **Std ViewHome** command changes the camera in the active [3D view](3D_view. - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewHome diff --git a/wiki/Std_ViewIsometric.md b/wiki/Std_ViewIsometric.md index 776983c378..d9f687694f 100644 --- a/wiki/Std_ViewIsometric.md +++ b/wiki/Std_ViewIsometric.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewDimetric](Std_ViewDimetric.md), [Std ViewTrimetric](Std_ViewTrimetric.md) --- +# Std ViewIsometric + ## Description The **Std ViewIsometric** command realigns the camera in the active [3D view](3D_view.md) to obtain an [isometric](https://en.wikipedia.org/wiki/Isometric_projection) view. For a truly isometric view the 3D view must be in [orthographic mode](Std_OrthographicCamera.md), but the command also works if the view is in [perspective mode](Std_PerspectiveCamera.md). @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewIsometric diff --git a/wiki/Std_ViewIvIssueCamPos.md b/wiki/Std_ViewIvIssueCamPos.md index 3ac15139fd..851ebc2846 100644 --- a/wiki/Std_ViewIvIssueCamPos.md +++ b/wiki/Std_ViewIvIssueCamPos.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreezeViews](Std_FreezeViews.md) --- +# Std ViewIvIssueCamPos + ## Description The **Std ViewIvIssueCamPos** command prints the camera settings of the active [3D view](3D_view.md) in the [Report view](Report_view.md) and the [Python console](Python_console.md). @@ -41,4 +43,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCamera() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewIvIssueCamPos diff --git a/wiki/Std_ViewIvStereoInterleavedColumns.md b/wiki/Std_ViewIvStereoInterleavedColumns.md index 15602ff74f..28680cae72 100644 --- a/wiki/Std_ViewIvStereoInterleavedColumns.md +++ b/wiki/Std_ViewIvStereoInterleavedColumns.md @@ -6,6 +6,8 @@ SeeAlso:[Std ViewIvStereoRedGreen](Std_ViewIvStereoRedGreen.md), [Std ViewIvStereoQuadBuff](Std_ViewIvStereoQuadBuff.md), [Std ViewIvStereoInterleavedRows](Std_ViewIvStereoInterleavedRows.md), [Std ViewIvStereoOff](Std_ViewIvStereoOff.md) --- +# Std ViewIvStereoInterleavedColumns + ## Description The **Std ViewIvStereoInterleavedColumns** command changes the active [3D view](3D_view.md) to interleaved columns stereo view mode. To use this stereo mode a special graphics card, a special display and [glasses with polarized lenses](https://en.wikipedia.org/wiki/Polarized_3D_system) are requires. @@ -38,4 +40,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewIvStereoInterleavedColumns diff --git a/wiki/Std_ViewIvStereoInterleavedRows.md b/wiki/Std_ViewIvStereoInterleavedRows.md index b86c8918c1..ce7fb9f0db 100644 --- a/wiki/Std_ViewIvStereoInterleavedRows.md +++ b/wiki/Std_ViewIvStereoInterleavedRows.md @@ -6,6 +6,8 @@ SeeAlso:[Std ViewIvStereoRedGreen](Std_ViewIvStereoRedGreen.md), [Std ViewIvStereoQuadBuff](Std_ViewIvStereoQuadBuff.md), [Std ViewIvStereoInterleavedColumns](Std_ViewIvStereoInterleavedColumns.md), [Std ViewIvStereoOff](Std_ViewIvStereoOff.md) --- +# Std ViewIvStereoInterleavedRows + ## Description The **Std ViewIvStereoInterleavedRows** command changes the active [3D view](3D_view.md) to interleaved rows stereo view mode. To use this stereo mode a special graphics card, a special display and [glasses with polarized lenses](https://en.wikipedia.org/wiki/Polarized_3D_system) are requires. @@ -38,4 +40,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewIvStereoInterleavedRows diff --git a/wiki/Std_ViewIvStereoOff.md b/wiki/Std_ViewIvStereoOff.md index fe877fa86e..f9581ae375 100644 --- a/wiki/Std_ViewIvStereoOff.md +++ b/wiki/Std_ViewIvStereoOff.md @@ -6,6 +6,8 @@ SeeAlso:[Std ViewIvStereoRedGreen](Std_ViewIvStereoRedGreen.md), [Std ViewIvStereoQuadBuff](Std_ViewIvStereoQuadBuff.md), [Std ViewIvStereoInterleavedRows](Std_ViewIvStereoInterleavedRows.md), [Std ViewIvStereoInterleavedColumns](Std_ViewIvStereoInterleavedColumns.md) --- +# Std ViewIvStereoOff + ## Description The **Std ViewIvStereoOff** command switches off stereo mode in the active [3D view](3D_view.md). @@ -34,4 +36,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewIvStereoOff diff --git a/wiki/Std_ViewIvStereoQuadBuff.md b/wiki/Std_ViewIvStereoQuadBuff.md index 438cc9e274..74d997324b 100644 --- a/wiki/Std_ViewIvStereoQuadBuff.md +++ b/wiki/Std_ViewIvStereoQuadBuff.md @@ -6,6 +6,8 @@ SeeAlso:[Std ViewIvStereoRedGreen](Std_ViewIvStereoRedGreen.md), [Std ViewIvStereoInterleavedRows](Std_ViewIvStereoInterleavedRows.md), [Std ViewIvStereoInterleavedColumns](Std_ViewIvStereoInterleavedColumns.md), [Std ViewIvStereoOff](Std_ViewIvStereoOff.md) --- +# Std ViewIvStereoQuadBuff + ## Description The **Std ViewIvStereoQuadBuff** command changes the active [3D view](3D_view.md) to quad buffer stereo view mode. To use this stereo mode a special graphics card, a special display and [shutter glasses](https://en.wikipedia.org/wiki/Active_shutter_3D_system) are requires. @@ -38,4 +40,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewIvStereoQuadBuff diff --git a/wiki/Std_ViewIvStereoRedGreen.md b/wiki/Std_ViewIvStereoRedGreen.md index a0db7dd973..ebf8b38836 100644 --- a/wiki/Std_ViewIvStereoRedGreen.md +++ b/wiki/Std_ViewIvStereoRedGreen.md @@ -6,6 +6,8 @@ SeeAlso:[Std ViewIvStereoQuadBuff](Std_ViewIvStereoQuadBuff.md), [Std ViewIvStereoInterleavedRows](Std_ViewIvStereoInterleavedRows.md), [Std ViewIvStereoInterleavedColumns](Std_ViewIvStereoInterleavedColumns.md), [Std ViewIvStereoOff](Std_ViewIvStereoOff.md) --- +# Std ViewIvStereoRedGreen + ## Description The **Std ViewIvStereoRedGreen** command changes the active [3D view](3D_view.md) to red/cyan, [anaglyph](https://en.wikipedia.org/wiki/Anaglyph_3D), stereo view mode. To use this stereo mode glasses with colored lenses are requires. @@ -38,4 +40,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewIvStereoRedGreen diff --git a/wiki/Std_ViewLeft.md b/wiki/Std_ViewLeft.md index 706ed113e3..fdfa906e2b 100644 --- a/wiki/Std_ViewLeft.md +++ b/wiki/Std_ViewLeft.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewRear](Std_ViewRear.md), [Std ViewBottom](Std_ViewBottom.md) --- +# Std ViewLeft + ## Description The **Std ViewLeft** command points the camera in the active [3D view](3D_view.md) in the direction of the positive X axis. @@ -41,4 +43,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewLeft diff --git a/wiki/Std_ViewRear.md b/wiki/Std_ViewRear.md index 52d25a880d..dce18d8809 100644 --- a/wiki/Std_ViewRear.md +++ b/wiki/Std_ViewRear.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewBottom](Std_ViewBottom.md), [Std ViewLeft](Std_ViewLeft.md) --- +# Std ViewRear + ## Description The **Std ViewRear** command points the camera in the active [3D view](3D_view.md) in the direction of the negative Y axis. @@ -41,4 +43,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewRear diff --git a/wiki/Std_ViewRight.md b/wiki/Std_ViewRight.md index 01f7288f1d..36434bfad7 100644 --- a/wiki/Std_ViewRight.md +++ b/wiki/Std_ViewRight.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewFront](Std_ViewFront.md), [Std ViewTop](Std_ViewTop.md) --- +# Std ViewRight + ## Description The **Std ViewRight** command points the camera in the active [3D view](3D_view.md) in the direction of the negative X axis. @@ -41,4 +43,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewRight diff --git a/wiki/Std_ViewRotateLeft.md b/wiki/Std_ViewRotateLeft.md index 88a12b52c8..f3aa5eaa2b 100644 --- a/wiki/Std_ViewRotateLeft.md +++ b/wiki/Std_ViewRotateLeft.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewRotateRight](Std_ViewRotateRight.md) --- +# Std ViewRotateLeft + ## Description The **Std ViewRotateLeft** command rotates the camera in the active [3D view](3D_view.md) around the view direction in 90-degree increments towards the left (counterclockwise). @@ -38,4 +40,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewRotateLeft diff --git a/wiki/Std_ViewRotateRight.md b/wiki/Std_ViewRotateRight.md index db66813f1d..73c3f4fc56 100644 --- a/wiki/Std_ViewRotateRight.md +++ b/wiki/Std_ViewRotateRight.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewRotateLeft](Std_ViewRotateLeft.md) --- +# Std ViewRotateRight + ## Description The **Std ViewRotateRight** command rotates the camera in the active [3D view](3D_view.md) around the view direction in 90-degree increments towards the right (clockwise). @@ -38,4 +40,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewRotateRight diff --git a/wiki/Std_ViewScreenShot.md b/wiki/Std_ViewScreenShot.md index a3c63dc72e..fec03723ec 100644 --- a/wiki/Std_ViewScreenShot.md +++ b/wiki/Std_ViewScreenShot.md @@ -6,6 +6,8 @@ SeeAlso:[Std Print](Std_Print.md), [Std PrintPdf](Std_PrintPdf.md) --- +# Std ViewScreenShot + ## Description The **Std ViewScreenShot** command opens a dialog box to create an image file, a screenshot, from the active [3D view](3D_view.md). @@ -120,4 +122,7 @@ App.closeDocument(App.ActiveDocument.Name) - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewScreenShot diff --git a/wiki/Std_ViewStatusBar.md b/wiki/Std_ViewStatusBar.md index ab1406e09f..0a38e39779 100644 --- a/wiki/Std_ViewStatusBar.md +++ b/wiki/Std_ViewStatusBar.md @@ -6,6 +6,8 @@ Workbenches:All --- +# Std ViewStatusBar + ## Description The **Std ViewStatusBar** command toggles the display of the [Status bar](Status_bar.md). @@ -17,4 +19,7 @@ The **Std ViewStatusBar** command toggles the display of the [Status bar](Status - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewStatusBar diff --git a/wiki/Std_ViewTop.md b/wiki/Std_ViewTop.md index a95d77f24d..bd0d4f7f2b 100644 --- a/wiki/Std_ViewTop.md +++ b/wiki/Std_ViewTop.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewFront](Std_ViewFront.md), [Std ViewRight](Std_ViewRight.md) --- +# Std ViewTop + ## Description The **Std ViewTop** command points the camera in the active [3D view](3D_view.md) in the direction of the negative Z axis. @@ -41,4 +43,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewTop diff --git a/wiki/Std_ViewTrimetric.md b/wiki/Std_ViewTrimetric.md index b02f70323d..0130ebaaea 100644 --- a/wiki/Std_ViewTrimetric.md +++ b/wiki/Std_ViewTrimetric.md @@ -6,6 +6,8 @@ SeeAlso:[Std ViewIsometric](Std_ViewIsometric.md), [Std ViewDimetric](Std_ViewDimetric.md) --- +# Std ViewTrimetric + ## Description The **Std ViewTrimetric** command realigns the camera in the active [3D view](3D_view.md) to obtain a [trimetric](https://en.wikipedia.org/wiki/Axonometric_projection#Three_types) view. For a truly trimetric view the 3D view must be in [orthographic mode](Std_OrthographicCamera.md), but the command also works if the view is in [perspective mode](Std_PerspectiveCamera.md). @@ -36,4 +38,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewTrimetric diff --git a/wiki/Std_ViewZoomIn.md b/wiki/Std_ViewZoomIn.md index eeebfccf60..822f35b72d 100644 --- a/wiki/Std_ViewZoomIn.md +++ b/wiki/Std_ViewZoomIn.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewZoomOut](Std_ViewZoomOut.md), [Std ViewBoxZoom](Std_ViewBoxZoom.md) --- +# Std ViewZoomIn + ## Description The **Std ViewZoomIn** command zooms in in the active [3D view](3D_view.md). @@ -44,4 +46,7 @@ FreeCADGui.ActiveDocument.ActiveView.zoomIn() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewZoomIn diff --git a/wiki/Std_ViewZoomOut.md b/wiki/Std_ViewZoomOut.md index 8de0bac7b4..d08d3e2a0c 100644 --- a/wiki/Std_ViewZoomOut.md +++ b/wiki/Std_ViewZoomOut.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewZoomIn](Std_ViewZoomIn.md), [Std ViewBoxZoom](Std_ViewBoxZoom.md) --- +# Std ViewZoomOut + ## Description The **Std ViewZoomOut** command zooms out in the active [3D view](3D_view.md). @@ -44,4 +46,7 @@ FreeCADGui.ActiveDocument.ActiveView.zoomOut() - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std ViewZoomOut diff --git a/wiki/Std_View_Menu.md b/wiki/Std_View_Menu.md index f2f7d754be..e89d0f9e9e 100644 --- a/wiki/Std_View_Menu.md +++ b/wiki/Std_View_Menu.md @@ -1,10 +1,4 @@ -# Std View Menu - - - - - -Std Base icon +# Std Base icon Std View Menu @@ -161,3 +155,6 @@ The following tools are available in this menu: {{Std Base navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std View Menu diff --git a/wiki/Std_WhatsThis.md b/wiki/Std_WhatsThis.md index e841e948b4..8fd6fe2b4c 100644 --- a/wiki/Std_WhatsThis.md +++ b/wiki/Std_WhatsThis.md @@ -7,6 +7,8 @@ SeeAlso:[Std OnlineHelp](Std_OnlineHelp.md) --- +# Std WhatsThis + ## Description The **Std WhatsThis** command opens the help documentation for a specified command. @@ -33,4 +35,7 @@ Read this post to understand how the commands must be named in the code to match - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std WhatsThis diff --git a/wiki/Std_Windows.md b/wiki/Std_Windows.md index 35579cdda1..d722cc8cde 100644 --- a/wiki/Std_Windows.md +++ b/wiki/Std_Windows.md @@ -6,6 +6,8 @@ SeeAlso:[Std ActivateNextWindow](Std_ActivateNextWindow.md), [Std ActivatePrevWindow](Std_ActivatePrevWindow.md) --- +# Std Windows + ## Description The **Std Windows** command opens a dialog box with a list of [Main view area](Main_view_area.md) windows. From this list a selected window can be activated. @@ -33,4 +35,7 @@ The **Std Windows** command opens a dialog box with a list of [Main view area](M - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > Std Windows diff --git a/wiki/Std_Windows_Menu.md b/wiki/Std_Windows_Menu.md index 79516d71ad..b8f6b9a709 100644 --- a/wiki/Std_Windows_Menu.md +++ b/wiki/Std_Windows_Menu.md @@ -1,10 +1,4 @@ -# Std Windows Menu - - - - - -Std Base icon +# Std Base icon Std Windows Menu @@ -54,3 +48,6 @@ The following tools are available in this menu: {{Std Base navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Windows Menu diff --git a/wiki/Std_Workbench.md b/wiki/Std_Workbench.md index 83b575d6ce..77637a702a 100644 --- a/wiki/Std_Workbench.md +++ b/wiki/Std_Workbench.md @@ -6,6 +6,8 @@ Workbenches:[Workbenches](Workbenches.md) --- +# Std Workbench + ## Description The **Std Workbench** command activates a selected [workbench](Workbenches.md) including its graphical user interface (GUI). @@ -46,4 +48,7 @@ FreeCADGui.activateWorkbench("PartDesignWorkbench") - {{Std Base navi}} {{Interface navi}} + {{Std Base navi}} {{Interface navi}} + +--- +[documentation index](../README.md) > Std Workbench diff --git a/wiki/Stemfie_Workbench.md b/wiki/Stemfie_Workbench.md index aac517a525..209d48afc5 100644 --- a/wiki/Stemfie_Workbench.md +++ b/wiki/Stemfie_Workbench.md @@ -1,8 +1,4 @@ # Stemfie Workbench - - - - ## Introduction The Stemfie Workbench is an [external workbench](External_workbenches.md) aimed at implementing a parametric set of parts for the [Stemfie project](https://www.stemfie.org/). @@ -20,3 +16,6 @@ The Stenfie workbench is not bundled with the default FreeCAD package, but can e [Category:Addons](Category:Addons.md) [\*](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Stemfie Workbench diff --git a/wiki/Surface_CurveOnMesh.md b/wiki/Surface_CurveOnMesh.md index eee34a0f1d..8695ce8bc6 100644 --- a/wiki/Surface_CurveOnMesh.md +++ b/wiki/Surface_CurveOnMesh.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Surface CurveOnMesh + ## Description @@ -86,4 +88,7 @@ In addition to the properties described in [Part Feature](Part_Feature.md), the - {{Surface Tools navi}} + {{Surface Tools navi}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface CurveOnMesh diff --git a/wiki/Surface_ExtendFace.md b/wiki/Surface_ExtendFace.md index eb2e105018..be59777524 100644 --- a/wiki/Surface_ExtendFace.md +++ b/wiki/Surface_ExtendFace.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Surface ExtendFace + ## Description @@ -123,4 +125,7 @@ doc.recompute() - {{Surface Tools navi}} + {{Surface Tools navi}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface ExtendFace diff --git a/wiki/Surface_Filling.md b/wiki/Surface_Filling.md index a6c7818c57..a5c1fb08a0 100644 --- a/wiki/Surface_Filling.md +++ b/wiki/Surface_Filling.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Surface Filling + ## Description @@ -196,4 +198,7 @@ doc.recompute() - {{Surface Tools navi}} + {{Surface Tools navi}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Filling diff --git a/wiki/Surface_GeomFillSurface.md b/wiki/Surface_GeomFillSurface.md index 07fd92da5c..a200728901 100644 --- a/wiki/Surface_GeomFillSurface.md +++ b/wiki/Surface_GeomFillSurface.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Surface GeomFillSurface + ## Description @@ -142,4 +144,7 @@ doc.recompute() - {{Surface Tools navi}} + {{Surface Tools navi}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface GeomFillSurface diff --git a/wiki/Surface_Module.md b/wiki/Surface_Module.md index ec49c70aef..1b0c52fd1d 100644 --- a/wiki/Surface_Module.md +++ b/wiki/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module 1. REDIRECT [Surface\_Workbench](Surface_Workbench.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module diff --git a/wiki/Surface_Sections.md b/wiki/Surface_Sections.md index 982f4bf9a1..6c707ac6c1 100644 --- a/wiki/Surface_Sections.md +++ b/wiki/Surface_Sections.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Surface Sections + ## Description @@ -112,4 +114,7 @@ doc.recompute() - {{Surface Tools navi}} + {{Surface Tools navi}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Sections diff --git a/wiki/Surface_Workbench.md b/wiki/Surface_Workbench.md index 01591fe071..2942528f91 100644 --- a/wiki/Surface_Workbench.md +++ b/wiki/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench @@ -53,3 +47,6 @@ The generated surface cannot be placed inside a ** Surface Workbench diff --git a/wiki/Svg_Namespace.md b/wiki/Svg_Namespace.md index 45cdaf13ea..e1677e8a5e 100644 --- a/wiki/Svg_Namespace.md +++ b/wiki/Svg_Namespace.md @@ -1,7 +1,4 @@ # Svg Namespace - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** @@ -275,3 +272,6 @@ See [Drawing templates](Drawing_templates.md) {{Drawing Tools navi}} [Category:Poweruser\_Documentation](Category:Poweruser_Documentation.md) [Category:Developer](Category:Developer.md) [Category:Python\_Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Poweruser_Documentation](Category:Poweruser_Documentation.md) > Svg Namespace diff --git a/wiki/Swag.md b/wiki/Swag.md index dc696cfefa..102aed2844 100644 --- a/wiki/Swag.md +++ b/wiki/Swag.md @@ -44,3 +44,6 @@ Downloadable files: [freecad-sticker-color.svg](https://yorik.uncreated.net/images/2021/freecad-sticker-color.svg) - color (print) only [freecad-sticker-contour.svg](https://yorik.uncreated.net/images/2021/freecad-sticker-contour.svg) - contour only + +--- +[documentation index](../README.md) > Swag diff --git a/wiki/SweetHome3D.md b/wiki/SweetHome3D.md index f5bb8ca3dd..1eee1c83aa 100644 --- a/wiki/SweetHome3D.md +++ b/wiki/SweetHome3D.md @@ -1,5 +1,5 @@ # SweetHome3D - ![](images/SweetHome3DLogo.png ) +![](images/SweetHome3DLogo.png ) ## About @@ -18,3 +18,6 @@ [Category:3rd Party](Category:3rd_Party.md) [Category:Arch](Category:Arch.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > SweetHome3D diff --git a/wiki/Swept-path_Analysis_GSoC_Project.md b/wiki/Swept-path_Analysis_GSoC_Project.md index 5bd85f788b..f777d09a73 100644 --- a/wiki/Swept-path_Analysis_GSoC_Project.md +++ b/wiki/Swept-path_Analysis_GSoC_Project.md @@ -39,3 +39,6 @@ Medium [FreeCAD Civil Engineering Thread](https://forum.freecadweb.org/viewtopic.php?f=8&t=22277&start=250) [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > Swept-path Analysis GSoC Project diff --git a/wiki/Symbols_Library_Workbench.md b/wiki/Symbols_Library_Workbench.md index e9ef8bb554..37990c747f 100644 --- a/wiki/Symbols_Library_Workbench.md +++ b/wiki/Symbols_Library_Workbench.md @@ -1,6 +1,4 @@ # Symbols Library Workbench - - ## Introduction @@ -50,3 +48,6 @@ The library is a simple container for SVG files. You can download it anywhere an [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Symbols Library Workbench diff --git a/wiki/Task_Panel.md b/wiki/Task_Panel.md index 920fbdfb03..1d018cb478 100644 --- a/wiki/Task_Panel.md +++ b/wiki/Task_Panel.md @@ -1,2 +1,5 @@ # Task Panel 1. REDIRECT [Task panel](Task_panel.md) + +--- +[documentation index](../README.md) > Task Panel diff --git a/wiki/Task_panel.md b/wiki/Task_panel.md index 47957c44df..eb173f4984 100644 --- a/wiki/Task_panel.md +++ b/wiki/Task_panel.md @@ -1,6 +1,4 @@ # Task panel - - ## Introduction The [task panel](Task_panel.md) appears in the **Tasks** tab of the [combo view](combo_view.md), one of the important panels of the [interface](interface.md). It is a customizable space that is able to contain any type of graphical widget like collapsible sub-windows, tables, input fields, checkboxes, spinboxes, selector boxes, text boxes, buttons, labels, images, and other elements, depending on the currently active [workbench](Workbenches.md), and the currently active tool. @@ -51,4 +49,7 @@ Using c++: Gui::Control().closeDialog(); ``` - {{Interface navi}} + {{Interface navi}} + +--- +[documentation index](../README.md) > Task panel diff --git a/wiki/Tasks_Placement.md b/wiki/Tasks_Placement.md index 2cfad9967e..48602d47ba 100644 --- a/wiki/Tasks_Placement.md +++ b/wiki/Tasks_Placement.md @@ -1,6 +1,4 @@ # Tasks Placement - - ## Description Command for modifying **Placement**. These options relate only to the position and orientation of the object in space, they do not affect other attributes of the shape. The placement is stored internally as a position, and a rotation (rotation axis and angle transformed into a quaternion [1](https://en.wikipedia.org/wiki/Quaternions_and_spatial_rotation)). While there are several methods to specify a rotation, for instance with a rotation center, this is only used to affect the rotation computation and is not stored for later operations. Similarly, if a rotation axis of (1,1,1) is specified, it may be normalized when stored in the quaternion and appear as (0.58, 0.58, 0.58) when browsing the object later. @@ -120,3 +118,6 @@ Other explanation on [Placement](Placement.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Command_Reference](Category:Command_Reference.md) > Tasks Placement diff --git a/wiki/TechDraw.md b/wiki/TechDraw.md index cd7074c68d..8ba8dffc33 100644 --- a/wiki/TechDraw.md +++ b/wiki/TechDraw.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > TechDraw diff --git a/wiki/TechDrawGui_API.md b/wiki/TechDrawGui_API.md index 8ab1adb3a2..33d6d4443e 100644 --- a/wiki/TechDrawGui_API.md +++ b/wiki/TechDrawGui_API.md @@ -1,5 +1,5 @@ # TechDrawGui API - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** These functions are part of the [TechDraw Workbench](TechDraw_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `TechDrawGui` module has been imported. +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** These functions are part of the [TechDraw Workbench](TechDraw_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `TechDrawGui` module has been imported. See the [TechDraw API](TechDraw_API.md) for more functions. @@ -32,3 +32,6 @@ TechDrawGui.exportPageAsSvg(p, f) {{TechDraw Tools navi}} [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > TechDrawGui API diff --git a/wiki/TechDraw_2LineCenterLine.md b/wiki/TechDraw_2LineCenterLine.md index 4296fa7a4e..1ddc128fb7 100644 --- a/wiki/TechDraw_2LineCenterLine.md +++ b/wiki/TechDraw_2LineCenterLine.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Centerline to Face(s)](TechDraw_FaceCenterLine.md), [TechDraw Centerline between 2 Points](TechDraw_2PointCenterLine.md) --- +# TechDraw 2LineCenterLine + ## Description The 2LineCenterLine tool adds a centerline between two Edges. @@ -67,4 +69,7 @@ Centerlines are not accessible from [macros](Macros.md) or the [Python](Python.m - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2LineCenterLine diff --git a/wiki/TechDraw_2PointCenterLine.md b/wiki/TechDraw_2PointCenterLine.md index 45a172073b..f7e801f3af 100644 --- a/wiki/TechDraw_2PointCenterLine.md +++ b/wiki/TechDraw_2PointCenterLine.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Centerline to Face(s)](TechDraw_FaceCenterLine.md), [TechDraw Centerline between 2 Lines](TechDraw_2LineCenterLine.md) --- +# TechDraw 2PointCenterLine + ## Description The 2PointCenterLine tool adds a centerline between two Vertices (Points). @@ -62,4 +64,7 @@ Centerlines are not accessible from [macros](Macros.md) or the [Python](Python.m - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2PointCenterLine diff --git a/wiki/TechDraw_2PointCosmeticLine.md b/wiki/TechDraw_2PointCosmeticLine.md index 4482375e9e..04a60ed0d1 100644 --- a/wiki/TechDraw_2PointCosmeticLine.md +++ b/wiki/TechDraw_2PointCosmeticLine.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Centerline to Face(s)](TechDraw_FaceCenterLine.md), [TechDraw Centerline between 2 Lines](TechDraw_2LineCenterLine.md) --- +# TechDraw 2PointCosmeticLine + ## Description The 2PointCosmeticLine tool adds a cosmetic line between two Vertices (Points). The vertices can be 2d or 3d. The resulting line can be used for dimensioning. The line\'s appearance can be modified using the [Remove Cosmetic Object](TechDraw_CosmeticEraser.md) tool. @@ -53,4 +55,7 @@ Cosmetic lines can be created using the makeCosmeticLine(v1, v2) or makeCosmetic - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2PointCosmeticLine diff --git a/wiki/TechDraw_3PtAngleDimension.md b/wiki/TechDraw_3PtAngleDimension.md index f976153926..538c51b5d3 100644 --- a/wiki/TechDraw_3PtAngleDimension.md +++ b/wiki/TechDraw_3PtAngleDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw AngleDimension](TechDraw_AngleDimension.md) --- +# TechDraw 3PtAngleDimension + ## Description The 3-Point Angle Dimension tool adds a angular dimension to a View. The dimension may be specified by selecting three Vertices on a View. **Note that the second of the three Vertices is the apex of the angle**. The Angle3Pt will initially be the projected angle (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -51,4 +53,7 @@ rc = page.addView(dim1) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 3PtAngleDimension diff --git a/wiki/TechDraw_API.md b/wiki/TechDraw_API.md index ba7cae223e..a11313f1e9 100644 --- a/wiki/TechDraw_API.md +++ b/wiki/TechDraw_API.md @@ -1,5 +1,5 @@ # TechDraw API - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** These functions are part of the [TechDraw Workbench](TechDraw_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `TechDraw` module has been imported. +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** These functions are part of the [TechDraw Workbench](TechDraw_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `TechDraw` module has been imported. Good examples of basic TechDraw scripting can be found in the [unit test scripts](https://github.com/FreeCAD/FreeCAD/tree/master/src/Mod/TechDraw/TDTest). @@ -371,3 +371,6 @@ dvp.requestPaint() Redraw the graphic for this View. {{TechDraw Tools navi}} [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw API diff --git a/wiki/TechDraw_ActiveView.md b/wiki/TechDraw_ActiveView.md index 63e423c695..7981220d04 100644 --- a/wiki/TechDraw_ActiveView.md +++ b/wiki/TechDraw_ActiveView.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Symbol](TechDraw_Symbol.md) --- +# TechDraw ActiveView + ## Description The ActiveView tool inserts a copy of a 3D window into a drawing page. @@ -74,4 +76,7 @@ TechDrawGui.copyActiveViewToSvgFile(Gui.ActiveDocument.ActiveView,"myFile.svg") - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ActiveView diff --git a/wiki/TechDraw_AngleDimension.md b/wiki/TechDraw_AngleDimension.md index 2ba308400b..bbd6f7238f 100644 --- a/wiki/TechDraw_AngleDimension.md +++ b/wiki/TechDraw_AngleDimension.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw 3PtAngleDimension](TechDraw_3PtAngleDimension.md) --- +# TechDraw AngleDimension + ## Description The Angle Dimension tool adds a angular dimension to a View. The dimension may be the interior angle between any two straight line edges. The angle will initially be the projected angle (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -50,4 +52,7 @@ rc = page.addView(dim1) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw AngleDimension diff --git a/wiki/TechDraw_Annotation.md b/wiki/TechDraw_Annotation.md index c753bafddd..5b38767592 100644 --- a/wiki/TechDraw_Annotation.md +++ b/wiki/TechDraw_Annotation.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Text](Draft_Text.md), [Draft ShapeString](Draft_ShapeString.md) --- +# TechDraw Annotation + ## Description The Annotation tool adds a text block to a drawing page. @@ -67,4 +69,7 @@ rc = page.addView(anno) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Annotation diff --git a/wiki/TechDraw_ArchView.md b/wiki/TechDraw_ArchView.md index 56396aa61e..9a913d4134 100644 --- a/wiki/TechDraw_ArchView.md +++ b/wiki/TechDraw_ArchView.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Section Plane](Arch_SectionPlane.md) --- +# TechDraw ArchView + ## Description The ArchView tool inserts a view of an ** [Arch SectionPlane](Arch_SectionPlane.md)** on a [TechDraw page](TechDraw_PageDefault.md). @@ -72,4 +74,7 @@ rc = page.addView(dv) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ArchView diff --git a/wiki/TechDraw_Balloon.md b/wiki/TechDraw_Balloon.md index e68ab45c37..c79677a344 100644 --- a/wiki/TechDraw_Balloon.md +++ b/wiki/TechDraw_Balloon.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Annotation](TechDraw_Annotation.md) --- +# TechDraw Balloon + ## Description The Balloon tool can add balloons with leader line in a drawing. @@ -87,4 +89,7 @@ rc = page.addView(bal1) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Balloon diff --git a/wiki/TechDraw_Clip.md b/wiki/TechDraw_Clip.md index 58f6d8c527..6406aaacf7 100644 --- a/wiki/TechDraw_Clip.md +++ b/wiki/TechDraw_Clip.md @@ -1,2 +1,5 @@ # TechDraw Clip 1. REDIRECT [TechDraw\_ClipGroup](TechDraw_ClipGroup.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Clip diff --git a/wiki/TechDraw_ClipGroup.md b/wiki/TechDraw_ClipGroup.md index 0e431da144..e831667d32 100644 --- a/wiki/TechDraw_ClipGroup.md +++ b/wiki/TechDraw_ClipGroup.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Add Clip Group](TechDraw_ClipGroupAdd.md), [TechDraw Remove Clip Group](TechDraw_ClipGroupRemove.md) --- +# TechDraw ClipGroup + ## Description This tool creates a clipping window which can contain Views. @@ -31,4 +33,7 @@ This tool creates a clipping window which can contain Views. - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroup diff --git a/wiki/TechDraw_ClipGroupAdd.md b/wiki/TechDraw_ClipGroupAdd.md index a9e0601c31..0ee1d7419d 100644 --- a/wiki/TechDraw_ClipGroupAdd.md +++ b/wiki/TechDraw_ClipGroupAdd.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Clip Group](TechDraw_ClipGroup.md), [TechDraw Remove Clip Group](TechDraw_ClipGroupRemove.md) --- +# TechDraw ClipGroupAdd + ## Description This tool adds a View to an existing Clip. @@ -19,4 +21,7 @@ This tool adds a View to an existing Clip. - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroupAdd diff --git a/wiki/TechDraw_ClipGroupRemove.md b/wiki/TechDraw_ClipGroupRemove.md index a8bf3cadda..0313bebdc4 100644 --- a/wiki/TechDraw_ClipGroupRemove.md +++ b/wiki/TechDraw_ClipGroupRemove.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Clip Group](TechDraw_ClipGroup.md), [TechDraw Add Clip Group](TechDraw_ClipGroupAdd.md) --- +# TechDraw ClipGroupRemove + ## Description This tool removes a View from an existing Clip and returns it to the Page area. @@ -19,4 +21,7 @@ This tool removes a View from an existing Clip and returns it to the Page area. - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroupRemove diff --git a/wiki/TechDraw_ClipMinus.md b/wiki/TechDraw_ClipMinus.md index 823a5330f2..0815eba935 100644 --- a/wiki/TechDraw_ClipMinus.md +++ b/wiki/TechDraw_ClipMinus.md @@ -1,2 +1,5 @@ # TechDraw ClipMinus 1. REDIRECT [TechDraw\_ClipGroupRemove](TechDraw_ClipGroupRemove.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipMinus diff --git a/wiki/TechDraw_ClipPlus.md b/wiki/TechDraw_ClipPlus.md index 9f3931578d..07c838336c 100644 --- a/wiki/TechDraw_ClipPlus.md +++ b/wiki/TechDraw_ClipPlus.md @@ -1,2 +1,5 @@ # TechDraw ClipPlus 1. REDIRECT [TechDraw\_ClipGroupAdd](TechDraw_ClipGroupAdd.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipPlus diff --git a/wiki/TechDraw_CosmeticEraser.md b/wiki/TechDraw_CosmeticEraser.md index d7e3177ec8..a82cecbf6f 100644 --- a/wiki/TechDraw_CosmeticEraser.md +++ b/wiki/TechDraw_CosmeticEraser.md @@ -6,6 +6,8 @@ Version:0.19 --- +# TechDraw CosmeticEraser + ## Description The CosmeticEraser tool removes cosmetic objects from the page. Cosmetic objects are @@ -39,4 +41,7 @@ CosmeticEraser is not accessible from [macros](Macros.md) or the [Python](Python - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw CosmeticEraser diff --git a/wiki/TechDraw_CosmeticVertex.md b/wiki/TechDraw_CosmeticVertex.md index 5fe56974e7..273a9d9fa6 100644 --- a/wiki/TechDraw_CosmeticVertex.md +++ b/wiki/TechDraw_CosmeticVertex.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Midpoint](TechDraw_Midpoints.md), [TechDraw Quadrant](TechDraw_Quadrants.md) --- +# TechDraw CosmeticVertex + ## Description The Cosmetic Vertex tool adds a [Vertex](Glossary#V.md), which is not part of the source geometry, to a View. This Vertex behaves like any other vertex and can be used for dimensioning. @@ -56,4 +58,7 @@ dvp.makeCosmeticLine(start,end,style, weight, pyGreen) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw CosmeticVertex diff --git a/wiki/TechDraw_DecorateLine.md b/wiki/TechDraw_DecorateLine.md index a93c02d1ee..625649e93a 100644 --- a/wiki/TechDraw_DecorateLine.md +++ b/wiki/TechDraw_DecorateLine.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Centerline to Face(s)](TechDraw_FaceCenterLine.md), [TechDraw Cosmetic Eraser](TechDraw_CosmeticEraser.md) --- +# TechDraw DecorateLine + ## Description The DecorateLine tool changes the appearance of Edges. @@ -43,4 +45,7 @@ DecorateLine is not accessible from [macros](Macros.md) or the [Python](Python.m - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DecorateLine diff --git a/wiki/TechDraw_DetailView.md b/wiki/TechDraw_DetailView.md index d9953c2b9d..c418ea7362 100644 --- a/wiki/TechDraw_DetailView.md +++ b/wiki/TechDraw_DetailView.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw View](TechDraw_View.md), [TechDraw Projection Group](TechDraw_ProjectionGroup.md) --- +# TechDraw DetailView + ## Description The Detail tool creates a view of small area of an existing view. @@ -84,4 +86,7 @@ This is done by putting the Detail view into a [clip group](TechDraw_ClipGroup.m - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DetailView diff --git a/wiki/TechDraw_DiameterDimension.md b/wiki/TechDraw_DiameterDimension.md index 23d8db9def..92e66271b2 100644 --- a/wiki/TechDraw_DiameterDimension.md +++ b/wiki/TechDraw_DiameterDimension.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw RadiusDimension](TechDraw_RadiusDimension.md) --- +# TechDraw DiameterDimension + ## Description The Diameter Dimension tool adds a diameter dimension to a View. The dimension may be applied to any circular in the drawing. The distance will initially be the projected distance (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -50,4 +52,7 @@ rc = page.addView(dim1) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DiameterDimension diff --git a/wiki/TechDraw_Dimension_Angle.md b/wiki/TechDraw_Dimension_Angle.md index d90f10fa75..21359d1d9a 100644 --- a/wiki/TechDraw_Dimension_Angle.md +++ b/wiki/TechDraw_Dimension_Angle.md @@ -1,2 +1,5 @@ # TechDraw Dimension Angle 1. REDIRECT [TechDraw\_AngleDimension](TechDraw_AngleDimension.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Angle diff --git a/wiki/TechDraw_Dimension_Angle3Pt.md b/wiki/TechDraw_Dimension_Angle3Pt.md index 1bc30ee4e2..b59a76e935 100644 --- a/wiki/TechDraw_Dimension_Angle3Pt.md +++ b/wiki/TechDraw_Dimension_Angle3Pt.md @@ -1,2 +1,5 @@ # TechDraw Dimension Angle3Pt 1. REDIRECT [TechDraw\_3PtAngleDimension](TechDraw_3PtAngleDimension.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Angle3Pt diff --git a/wiki/TechDraw_Dimension_Diameter.md b/wiki/TechDraw_Dimension_Diameter.md index 0afec4fb03..77a490f7a3 100644 --- a/wiki/TechDraw_Dimension_Diameter.md +++ b/wiki/TechDraw_Dimension_Diameter.md @@ -1,2 +1,5 @@ # TechDraw Dimension Diameter 1. REDIRECT [TechDraw\_DiameterDimension](TechDraw_DiameterDimension.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Diameter diff --git a/wiki/TechDraw_Dimension_Horizontal.md b/wiki/TechDraw_Dimension_Horizontal.md index f969ee8b31..9939198f17 100644 --- a/wiki/TechDraw_Dimension_Horizontal.md +++ b/wiki/TechDraw_Dimension_Horizontal.md @@ -1,2 +1,5 @@ # TechDraw Dimension Horizontal 1. REDIRECT [TechDraw\_HorizontalDimension](TechDraw_HorizontalDimension.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Horizontal diff --git a/wiki/TechDraw_Dimension_Horizontal_Extent.md b/wiki/TechDraw_Dimension_Horizontal_Extent.md index 8cf53d9d3b..427970e76f 100644 --- a/wiki/TechDraw_Dimension_Horizontal_Extent.md +++ b/wiki/TechDraw_Dimension_Horizontal_Extent.md @@ -1,2 +1,5 @@ # TechDraw Dimension Horizontal Extent 1. REDIRECT [TechDraw\_HorizontalExtentDimension](TechDraw_HorizontalExtentDimension.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Horizontal Extent diff --git a/wiki/TechDraw_Dimension_Landmark.md b/wiki/TechDraw_Dimension_Landmark.md index 5705640675..9c02ac50cd 100644 --- a/wiki/TechDraw_Dimension_Landmark.md +++ b/wiki/TechDraw_Dimension_Landmark.md @@ -1,2 +1,5 @@ # TechDraw Dimension Landmark 1. REDIRECT [TechDraw\_LandmarkDimension](TechDraw_LandmarkDimension.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Landmark diff --git a/wiki/TechDraw_Dimension_Length.md b/wiki/TechDraw_Dimension_Length.md index 31dc5378d3..8ced56827f 100644 --- a/wiki/TechDraw_Dimension_Length.md +++ b/wiki/TechDraw_Dimension_Length.md @@ -1,2 +1,5 @@ # TechDraw Dimension Length 1. REDIRECT [TechDraw\_LengthDimension](TechDraw_LengthDimension.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Length diff --git a/wiki/TechDraw_Dimension_Link.md b/wiki/TechDraw_Dimension_Link.md index 7950f2a1d8..dce47f088d 100644 --- a/wiki/TechDraw_Dimension_Link.md +++ b/wiki/TechDraw_Dimension_Link.md @@ -1,2 +1,5 @@ # TechDraw Dimension Link 1. REDIRECT [TechDraw\_LinkDimension](TechDraw_LinkDimension.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Link diff --git a/wiki/TechDraw_Dimension_Radius.md b/wiki/TechDraw_Dimension_Radius.md index bb474be5bc..320b46ea8f 100644 --- a/wiki/TechDraw_Dimension_Radius.md +++ b/wiki/TechDraw_Dimension_Radius.md @@ -1,2 +1,5 @@ # TechDraw Dimension Radius 1. REDIRECT [TechDraw\_RadiusDimension](TechDraw_RadiusDimension.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Radius diff --git a/wiki/TechDraw_Dimension_Vertical.md b/wiki/TechDraw_Dimension_Vertical.md index f512bdd2b8..3f6829d829 100644 --- a/wiki/TechDraw_Dimension_Vertical.md +++ b/wiki/TechDraw_Dimension_Vertical.md @@ -1,2 +1,5 @@ # TechDraw Dimension Vertical 1. REDIRECT [TechDraw\_VerticalDimension](TechDraw_VerticalDimension.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Vertical diff --git a/wiki/TechDraw_Dimension_Vertical_Extent.md b/wiki/TechDraw_Dimension_Vertical_Extent.md index 9de567cdb2..4833df9aa5 100644 --- a/wiki/TechDraw_Dimension_Vertical_Extent.md +++ b/wiki/TechDraw_Dimension_Vertical_Extent.md @@ -1,2 +1,5 @@ # TechDraw Dimension Vertical Extent 1. REDIRECT [TechDraw\_VerticalExtentDimension](TechDraw_VerticalExtentDimension.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Vertical Extent diff --git a/wiki/TechDraw_DraftView.md b/wiki/TechDraw_DraftView.md index 875b6b03d2..9aeb555747 100644 --- a/wiki/TechDraw_DraftView.md +++ b/wiki/TechDraw_DraftView.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Arch View](TechDraw_ArchView.md) --- +# TechDraw DraftView + ## Description The [DraftView](TechDraw_DraftView.md) tool inserts a view of a selected [Part](Part_Workbench.md)-based or Group object into a drawing page. Unlike the standard [View](TechDraw_View.md) tool, views created with this tool are handled by the [Draft Workbench](Draft_Workbench.md), and specially designed for showing 2D objects. See Notes. @@ -68,4 +70,7 @@ rc = page.addView(dv) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DraftView diff --git a/wiki/TechDraw_Enhancement_Project.md b/wiki/TechDraw_Enhancement_Project.md index a03dc9d53d..520d80af8f 100644 --- a/wiki/TechDraw_Enhancement_Project.md +++ b/wiki/TechDraw_Enhancement_Project.md @@ -41,3 +41,6 @@ Medium ### Additional Information [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Enhancement Project diff --git a/wiki/TechDraw_ExportPageDXF.md b/wiki/TechDraw_ExportPageDXF.md index 9494c72525..4be4d47248 100644 --- a/wiki/TechDraw_ExportPageDXF.md +++ b/wiki/TechDraw_ExportPageDXF.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Export Page as SVG](TechDraw_ExportPageSVG.md), [Draft DXF](Draft_DXF.md) --- +# TechDraw ExportPageDXF + ## Description The ExportPageDXF tool saves a drawing page as a [DXF](DXF.md) file. @@ -64,4 +66,7 @@ TechDraw.writeDXFPage(page,filename) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ExportPageDXF diff --git a/wiki/TechDraw_ExportPageSVG.md b/wiki/TechDraw_ExportPageSVG.md index b5be335540..713e11044c 100644 --- a/wiki/TechDraw_ExportPageSVG.md +++ b/wiki/TechDraw_ExportPageSVG.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Templates](TechDraw_Templates.md), [Draft SVG](Draft_SVG.md) --- +# TechDraw ExportPageSVG + ## Description The ExportPageSVG tool saves the current drawing page as an [SVG](SVG.md) file. @@ -37,4 +39,7 @@ TechDrawGui.exportPageAsSvg(DrawPageObject,FilePath) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ExportPageSVG diff --git a/wiki/TechDraw_ExtensionCircleCenterLines.md b/wiki/TechDraw_ExtensionCircleCenterLines.md index 6610433745..2086b92545 100644 --- a/wiki/TechDraw_ExtensionCircleCenterLines.md +++ b/wiki/TechDraw_ExtensionCircleCenterLines.md @@ -8,6 +8,8 @@ SeeAlso: --- +# TechDraw ExtensionCircleCenterLines + ## Description The **Circle Center Lines** tool adds center lines to circles and arcs. @@ -24,4 +26,7 @@ The **Thread Bolt Bottom** tool adds symbolic threads to the bottom view of bolts. @@ -24,4 +26,7 @@ The **Thread Bolt Side** tool adds a symbolic thread to the side view of a bolt. @@ -24,4 +26,7 @@ The **Thread Hole Bottom** tool adds symbolic threads to the bottom view of holes. @@ -24,4 +26,7 @@ The **Thread Hole Side** tool adds a symbolic thread to the side view of a hole. @@ -24,4 +26,7 @@ The **Circle Center Lines** tool adds center lines to circles and arcs. @@ -24,4 +26,7 @@ The **Thread Bolt Bottom** tool adds symbolic threads to the bottom view of bolts. @@ -24,4 +26,7 @@ The **Thread Bolt Side** tool adds a symbolic thread to the side view of a bolt. @@ -24,4 +26,7 @@ The **Thread Hole Bottom** tool adds symbolic threads to the bottom view of holes. @@ -24,4 +26,7 @@ The **Thread Hole Side** tool adds a symbolic thread to the side view of a hole. @@ -24,4 +26,7 @@ The [Geometric Hatch](TechDraw_GeometricHatch.md) tool uses a specific PAT pattern file, see [Hatching](TechDraw_Hatching.md) for details. @@ -64,4 +66,7 @@ rc = page.addView(hatch) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Hatch diff --git a/wiki/TechDraw_Hatching.md b/wiki/TechDraw_Hatching.md index fb532d214e..22f9cae7e8 100644 --- a/wiki/TechDraw_Hatching.md +++ b/wiki/TechDraw_Hatching.md @@ -1,11 +1,4 @@ # TechDraw Hatching - - - - - - - ## Description The TechDraw workbench has two hatching tools: @@ -75,4 +68,7 @@ The `FCPAT.pat` file can be found in the following location. - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Hatching diff --git a/wiki/TechDraw_HorizontalDimension.md b/wiki/TechDraw_HorizontalDimension.md index d816f0550d..a2aa294129 100644 --- a/wiki/TechDraw_HorizontalDimension.md +++ b/wiki/TechDraw_HorizontalDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw LengthDimension](TechDraw_LengthDimension.md), [TechDraw VerticalDimension](TechDraw_VerticalDimension.md) --- +# TechDraw HorizontalDimension + ## Description The Horizontal Dimension tool adds a horizontal dimension to a View. The dimension may be between two vertices, the length of one edge or the horizontal distance between 2 edges. The distance will initially be the projected distance (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -51,4 +53,7 @@ rc = page.addView(dim1) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HorizontalDimension diff --git a/wiki/TechDraw_HorizontalExtentDimension.md b/wiki/TechDraw_HorizontalExtentDimension.md index b7776ee3cb..1675da5903 100644 --- a/wiki/TechDraw_HorizontalExtentDimension.md +++ b/wiki/TechDraw_HorizontalExtentDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw LengthDimension](TechDraw_LengthDimension.md), [TechDraw VerticalExtentDimension](TechDraw_VerticalExtentDimension.md) --- +# TechDraw HorizontalExtentDimension + ## Description The Horizontal Extent Dimension tool adds a linear dimension to a View. The dimension extends from the left most point on the selected objects to the right most point. A CosmeticVertex will be placed at each point. @@ -51,4 +53,7 @@ rc = page.addView(hExtentDim) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HorizontalExtentDimension diff --git a/wiki/TechDraw_HowTo_Page.md b/wiki/TechDraw_HowTo_Page.md index df2f0a35da..94e84f926a 100644 --- a/wiki/TechDraw_HowTo_Page.md +++ b/wiki/TechDraw_HowTo_Page.md @@ -1,5 +1,5 @@ # TechDraw HowTo Page - Back to [TechDraw Tutorials](TechDraw_Workbench#Tutorials.md) +Back to [TechDraw Tutorials](TechDraw_Workbench#Tutorials.md) {{TutorialInfo @@ -52,4 +52,7 @@ See also [Measurement Of Angles On Holes](Measurement_Of_Angles_On_Holes.md) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HowTo Page diff --git a/wiki/TechDraw_Image.md b/wiki/TechDraw_Image.md index dad0ea95d6..91a96fcb22 100644 --- a/wiki/TechDraw_Image.md +++ b/wiki/TechDraw_Image.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw SVG Symbol](TechDraw_Symbol.md) --- +# TechDraw Image + ## Description The Image tool inserts a [bitmap](bitmap.md) image (PNG, TIFF, JPEG, etc.) from a file into the page as a view. @@ -43,4 +45,7 @@ dvi.Width = 200 - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Image diff --git a/wiki/TechDraw_LandmarkDimension.md b/wiki/TechDraw_LandmarkDimension.md index 1a5cf1c595..bec75699f9 100644 --- a/wiki/TechDraw_LandmarkDimension.md +++ b/wiki/TechDraw_LandmarkDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw HorizontalDimension](TechDraw_HorizontalDimension.md), [TechDraw VerticalDimension](TechDraw_VerticalDimension.md) --- +# TechDraw LandmarkDimension + ## Description The Landmark Dimension tool adds a linear dimension to a View. The dimension is based on two Point **feature** (Draft.Point or Part.Vertex) from the 3D model. Note that the points must be **feature** objects that appear in the model [tree view](Tree_view.md). Random vertexes from a shape will not work. @@ -55,4 +57,7 @@ rc = page.addView(dim1) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LandmarkDimension diff --git a/wiki/TechDraw_LeaderLine.md b/wiki/TechDraw_LeaderLine.md index 157cfb500b..9ea4d8feb9 100644 --- a/wiki/TechDraw_LeaderLine.md +++ b/wiki/TechDraw_LeaderLine.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Rich Text Annotation](TechDraw_RichTextAnnotation.md), [TechDraw Welding Symbol](TechDraw_WeldSymbol.md), [TechDraw Line Group](TechDraw_LineGroup.md) --- +# TechDraw LeaderLine + ## Description The LeaderLine tool adds a line to a View. Other annotation objects (such as [Rich Text Annotations](TechDraw_RichTextAnnotation.md)) can be connected to the leaderline to form complex annotations. @@ -88,4 +90,7 @@ leaderObj.Y = 5 - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LeaderLine diff --git a/wiki/TechDraw_LengthDimension.md b/wiki/TechDraw_LengthDimension.md index 78fc62ebd3..02ce25ccf4 100644 --- a/wiki/TechDraw_LengthDimension.md +++ b/wiki/TechDraw_LengthDimension.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw HorizontalDimension](TechDraw_HorizontalDimension.md), [TechDraw VerticalDimension](TechDraw_VerticalDimension.md) --- +# TechDraw LengthDimension + ## Description The Length Dimension tool adds a linear dimension to a View. The dimension may be between the distance between two vertices, the length of one edge or the distance between 2 edges. The distance will initially be the projected distance (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -252,4 +254,7 @@ rc = page.addView(dim1) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LengthDimension diff --git a/wiki/TechDraw_LineGroup.md b/wiki/TechDraw_LineGroup.md index 3438763500..4ff637485a 100644 --- a/wiki/TechDraw_LineGroup.md +++ b/wiki/TechDraw_LineGroup.md @@ -1,11 +1,4 @@ # TechDraw LineGroup - - - - - - - ## Overview LineGroups are used to control the appearance of various types of lines. @@ -77,4 +70,7 @@ Note: A new preference has been added to allow you to use your own personal Line - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LineGroup diff --git a/wiki/TechDraw_LinkDimension.md b/wiki/TechDraw_LinkDimension.md index 4a2216ed0f..31eb573e9b 100644 --- a/wiki/TechDraw_LinkDimension.md +++ b/wiki/TechDraw_LinkDimension.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw View](TechDraw_View.md), [TechDraw ProjectionGroup](TechDraw_ProjectionGroup.md) --- +# TechDraw LinkDimension + ## Description The Link Dimension tool creates a link between 3D geometry and one or more existing projected Dimensions on a Page. This link allows the Dimension to use actual 3D values instead of 2D projected values. @@ -55,4 +57,7 @@ to be defined - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LinkDimension diff --git a/wiki/TechDraw_Midpoints.md b/wiki/TechDraw_Midpoints.md index 3621306990..6bfc92ba40 100644 --- a/wiki/TechDraw_Midpoints.md +++ b/wiki/TechDraw_Midpoints.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Cosmetic Vertex](TechDraw_CosmeticVertex.md), [TechDraw Quadrant Vertices](TechDraw_Quadrants.md) --- +# TechDraw Midpoints + ## Description The Midpoints tool adds Cosmetic [Vertices](Glossary#V.md) at the midpoints of one or more Edges. @@ -45,4 +47,7 @@ Cosmetic Vertices are not accessible from [macros](Macros.md) or the [Python](Py - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Midpoints diff --git a/wiki/TechDraw_Module.md b/wiki/TechDraw_Module.md index 48646c27e1..9c5e833fac 100644 --- a/wiki/TechDraw_Module.md +++ b/wiki/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module 1. REDIRECT [TechDraw\_Workbench](TechDraw_Workbench.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module diff --git a/wiki/TechDraw_NewAnnotation.md b/wiki/TechDraw_NewAnnotation.md index dd89e18b83..d24f832ec3 100644 --- a/wiki/TechDraw_NewAnnotation.md +++ b/wiki/TechDraw_NewAnnotation.md @@ -1,2 +1,5 @@ # TechDraw NewAnnotation 1. REDIRECT [TechDraw\_Annotation](TechDraw_Annotation.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewAnnotation diff --git a/wiki/TechDraw_NewArch.md b/wiki/TechDraw_NewArch.md index 35e3551cfe..3b1457ca2d 100644 --- a/wiki/TechDraw_NewArch.md +++ b/wiki/TechDraw_NewArch.md @@ -1,2 +1,5 @@ # TechDraw NewArch 1. REDIRECT [TechDraw\_ArchView](TechDraw_ArchView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewArch diff --git a/wiki/TechDraw_NewDetail.md b/wiki/TechDraw_NewDetail.md index e2722a9782..bbb5856b26 100644 --- a/wiki/TechDraw_NewDetail.md +++ b/wiki/TechDraw_NewDetail.md @@ -1,2 +1,5 @@ # TechDraw NewDetail 1. REDIRECT [TechDraw\_DetailView](TechDraw_DetailView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewDetail diff --git a/wiki/TechDraw_NewDraft.md b/wiki/TechDraw_NewDraft.md index 10afb87042..fc6959e722 100644 --- a/wiki/TechDraw_NewDraft.md +++ b/wiki/TechDraw_NewDraft.md @@ -1,2 +1,5 @@ # TechDraw NewDraft 1. REDIRECT [TechDraw\_DraftView](TechDraw_DraftView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewDraft diff --git a/wiki/TechDraw_NewMulti.md b/wiki/TechDraw_NewMulti.md index 71df5767db..c4444adb34 100644 --- a/wiki/TechDraw_NewMulti.md +++ b/wiki/TechDraw_NewMulti.md @@ -1,2 +1,5 @@ # TechDraw NewMulti 1. REDIRECT [TechDraw\_ProjectionGroup](TechDraw_ProjectionGroup.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewMulti diff --git a/wiki/TechDraw_NewProjGroup.md b/wiki/TechDraw_NewProjGroup.md index 0360156c23..d5a131d298 100644 --- a/wiki/TechDraw_NewProjGroup.md +++ b/wiki/TechDraw_NewProjGroup.md @@ -1,2 +1,5 @@ # TechDraw NewProjGroup 1. REDIRECT [TechDraw\_ProjectionGroup](TechDraw_ProjectionGroup.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewProjGroup diff --git a/wiki/TechDraw_NewSection.md b/wiki/TechDraw_NewSection.md index b739f6ddc2..274c524174 100644 --- a/wiki/TechDraw_NewSection.md +++ b/wiki/TechDraw_NewSection.md @@ -1,2 +1,5 @@ # TechDraw NewSection 1. REDIRECT [TechDraw\_SectionView](TechDraw_SectionView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewSection diff --git a/wiki/TechDraw_New_Default.md b/wiki/TechDraw_New_Default.md index 4dc368a3cd..364c6e550d 100644 --- a/wiki/TechDraw_New_Default.md +++ b/wiki/TechDraw_New_Default.md @@ -1,2 +1,5 @@ # TechDraw New Default 1. REDIRECT [TechDraw\_PageDefault](TechDraw_PageDefault.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw New Default diff --git a/wiki/TechDraw_New_Pick.md b/wiki/TechDraw_New_Pick.md index 4665449892..5686b393fd 100644 --- a/wiki/TechDraw_New_Pick.md +++ b/wiki/TechDraw_New_Pick.md @@ -1,2 +1,5 @@ # TechDraw New Pick 1. REDIRECT [TechDraw\_PageTemplate](TechDraw_PageTemplate.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw New Pick diff --git a/wiki/TechDraw_PageDefault.md b/wiki/TechDraw_PageDefault.md index 8140e95b35..1d95a50a1a 100644 --- a/wiki/TechDraw_PageDefault.md +++ b/wiki/TechDraw_PageDefault.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Page Template](TechDraw_PageTemplate.md), [TechDraw Templates](TechDraw_Templates.md) --- +# TechDraw PageDefault + ## Description The New Default tool creates a new Page object using the the template file specified in the [TechDraw Preferences](TechDraw_Preferences.md). @@ -84,4 +86,7 @@ page.Template.EditableTexts = texts - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw PageDefault diff --git a/wiki/TechDraw_PageTemplate.md b/wiki/TechDraw_PageTemplate.md index e1d3a03f70..104efce4d1 100644 --- a/wiki/TechDraw_PageTemplate.md +++ b/wiki/TechDraw_PageTemplate.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Default Page](TechDraw_PageDefault.md), [TechDraw Templates](TechDraw_Templates.md) --- +# TechDraw PageTemplate + ## Description The New Pick tool creates a new Page object using the template file selected from a dialog. @@ -59,4 +61,7 @@ See the information in [Insert Default Page](TechDraw_PageDefault.md) to program - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw PageTemplate diff --git a/wiki/TechDraw_Pitch_Circle.md b/wiki/TechDraw_Pitch_Circle.md index cdc361a12e..6504f14d09 100644 --- a/wiki/TechDraw_Pitch_Circle.md +++ b/wiki/TechDraw_Pitch_Circle.md @@ -1,2 +1,5 @@ # TechDraw Pitch Circle 1. REDIRECT [TechDraw pitch circle tutorial](TechDraw_pitch_circle_tutorial.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Pitch Circle diff --git a/wiki/TechDraw_Preferences.md b/wiki/TechDraw_Preferences.md index e50401cae5..e03bacac32 100644 --- a/wiki/TechDraw_Preferences.md +++ b/wiki/TechDraw_Preferences.md @@ -1,11 +1,4 @@ # TechDraw Preferences - - - - - - - ## Introduction The preferences of the [TechDraw Workbench](TechDraw_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → TechDraw**. @@ -197,3 +190,6 @@ Some preference settings are only accessible through the [Parameter editor](Std_ {{TechDraw Tools navi}} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Preferences diff --git a/wiki/TechDraw_ProjectionGroup.md b/wiki/TechDraw_ProjectionGroup.md index 2457b6b992..e6637b3de5 100644 --- a/wiki/TechDraw_ProjectionGroup.md +++ b/wiki/TechDraw_ProjectionGroup.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw View](TechDraw_View.md), [TechDraw Section View](TechDraw_SectionView.md) --- +# TechDraw ProjectionGroup + ## Description The [ProjectionGroup](TechDraw_ProjectionGroup.md) tool creates a [multiview projection](https://en.wikipedia.org/wiki/Multiview_projection) of one or more 3D objects. The isometric views of the 4 front corners can also be included. @@ -90,4 +92,7 @@ The NewProjGroup tool can be used in [macros](Macros.md) and from the [Python](P - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ProjectionGroup diff --git a/wiki/TechDraw_Quadrants.md b/wiki/TechDraw_Quadrants.md index ee683807f5..b1e3369fa7 100644 --- a/wiki/TechDraw_Quadrants.md +++ b/wiki/TechDraw_Quadrants.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Cosmetic Vertex](TechDraw_CosmeticVertex.md), [TechDraw Midpoint](TechDraw_Midpoints.md) --- +# TechDraw Quadrants + ## Description The Quadrant tool adds [Cosmetic Vertices](TechDraw_CosmeticVertex.md) at the 90/180/270° points of a circular edge. The 0° vertex should already be there as a geometric vertex. @@ -47,4 +49,7 @@ Cosmetic Vertices are not accessible from [macros](Macros.md) or the [Python](Py - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Quadrants diff --git a/wiki/TechDraw_RadiusDimension.md b/wiki/TechDraw_RadiusDimension.md index d3ac6b3513..49d7ee24b6 100644 --- a/wiki/TechDraw_RadiusDimension.md +++ b/wiki/TechDraw_RadiusDimension.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw DiameterDimension](TechDraw_DiameterDimension.md) --- +# TechDraw RadiusDimension + ## Description The Radius Dimension tool adds a radius dimension to a View. The dimension may be applied to any Edge in the drawing which is a circle or circular arc. The distance will initially be the projected distance (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -50,4 +52,7 @@ rc = page.addView(dim1) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RadiusDimension diff --git a/wiki/TechDraw_Redraw.md b/wiki/TechDraw_Redraw.md index 99ce4a4bf1..f2229538ee 100644 --- a/wiki/TechDraw_Redraw.md +++ b/wiki/TechDraw_Redraw.md @@ -1,2 +1,5 @@ # TechDraw Redraw 1. REDIRECT [TechDraw\_RedrawPage](TechDraw_RedrawPage.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Redraw diff --git a/wiki/TechDraw_RedrawPage.md b/wiki/TechDraw_RedrawPage.md index 0e5bfdeeac..0d8842cca9 100644 --- a/wiki/TechDraw_RedrawPage.md +++ b/wiki/TechDraw_RedrawPage.md @@ -6,6 +6,8 @@ Version:0.19 --- +# TechDraw RedrawPage + ## Description The Redraw tool forces a page update despite any contrary settings of KeepUpdated (Page property), Update with 3D (parameter) or Allow Page Override (parameter). @@ -36,4 +38,7 @@ The Redraw command is not directly available in scripts. - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RedrawPage diff --git a/wiki/TechDraw_RichTextAnnotation.md b/wiki/TechDraw_RichTextAnnotation.md index 33462a89f7..3d81e2f523 100644 --- a/wiki/TechDraw_RichTextAnnotation.md +++ b/wiki/TechDraw_RichTextAnnotation.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Templates](TechDraw_Templates.md), [Draft SVG](Draft_SVG.md), [TechDraw Leaderline](TechDraw_LeaderLine.md) --- +# TechDraw RichTextAnnotation + ## Description The RichTextBlock tool adds a formatted annotation block to a [Leaderline](TechDraw_LeaderLine.md) or a View. @@ -57,4 +59,7 @@ blockObj.AnnoText = myHTMLText - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RichTextAnnotation diff --git a/wiki/TechDraw_Roadmap.md b/wiki/TechDraw_Roadmap.md index 412e17f502..a668632d10 100644 --- a/wiki/TechDraw_Roadmap.md +++ b/wiki/TechDraw_Roadmap.md @@ -1,5 +1,4 @@ -# TechDraw Roadmap - +# TechDraw Roadmap The [TechDraw Workbench](TechDraw_Workbench.md) was introduced officially as part of FreeCAD in version 0.17. It is relatively new and hasn\'t had the years of development that have benefited some other workbenches. Still, TechDraw now meets its original design goal and can now \"produce basic technical drawings based on the 3D model\". @@ -78,3 +77,6 @@ See the bug tracker for up to date information. {{TechDraw Tools navi}} [Category:User Documentation](Category:User_Documentation.md) [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Roadmap diff --git a/wiki/TechDraw_SaveDXF.md b/wiki/TechDraw_SaveDXF.md index d696edb940..060a4c1fe4 100644 --- a/wiki/TechDraw_SaveDXF.md +++ b/wiki/TechDraw_SaveDXF.md @@ -1,2 +1,5 @@ # TechDraw SaveDXF 1. REDIRECT [TechDraw\_ExportPageDXF](TechDraw_ExportPageDXF.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SaveDXF diff --git a/wiki/TechDraw_SaveSVG.md b/wiki/TechDraw_SaveSVG.md index 1914ec3707..43428ccf63 100644 --- a/wiki/TechDraw_SaveSVG.md +++ b/wiki/TechDraw_SaveSVG.md @@ -1,2 +1,5 @@ # TechDraw SaveSVG 1. REDIRECT [TechDraw\_ExportPageSVG](TechDraw_ExportPageSVG.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SaveSVG diff --git a/wiki/TechDraw_SectionView.md b/wiki/TechDraw_SectionView.md index bff12baac8..02f1d2c200 100644 --- a/wiki/TechDraw_SectionView.md +++ b/wiki/TechDraw_SectionView.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw View](TechDraw_View.md), [TechDraw Projection Group](TechDraw_ProjectionGroup.md) --- +# TechDraw SectionView + ## Description The Section tool creates a cross section view based on an existing part view. @@ -112,4 +114,7 @@ section.SectionOrigin = (5.0,5.0,5.0) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SectionView diff --git a/wiki/TechDraw_ShowAll.md b/wiki/TechDraw_ShowAll.md index 283b4e080c..075a8b0e88 100644 --- a/wiki/TechDraw_ShowAll.md +++ b/wiki/TechDraw_ShowAll.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Change Appearance of Line(s)](TechDraw_DecorateLine.md) --- +# TechDraw ShowAll + ## Description The ShowAll tool shows or hide invisible lines in a View. Note that \"invisible\" is a cosmetic state, not to be confused with hidden lines which are geometric constructs. @@ -39,4 +41,7 @@ The effect of the ShowAll tool can be duplicated in [macros](Macros.md) or the [ - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ShowAll diff --git a/wiki/TechDraw_Spreadsheet.md b/wiki/TechDraw_Spreadsheet.md index 10653b40c4..ed1403dee9 100644 --- a/wiki/TechDraw_Spreadsheet.md +++ b/wiki/TechDraw_Spreadsheet.md @@ -1,2 +1,5 @@ # TechDraw Spreadsheet 1. REDIRECT [TechDraw\_SpreadsheetView](TechDraw_SpreadsheetView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Spreadsheet diff --git a/wiki/TechDraw_SpreadsheetView.md b/wiki/TechDraw_SpreadsheetView.md index 9dcc8fab45..4560d0e2ba 100644 --- a/wiki/TechDraw_SpreadsheetView.md +++ b/wiki/TechDraw_SpreadsheetView.md @@ -5,6 +5,8 @@ Workbenches:[TechDraw](TechDraw_Workbench.md), [Spreadsheet](Spreadsheet_Workbench.md) --- +# TechDraw SpreadsheetView + ## Description This tool allows you to place a view of a selected [spreadsheet](Spreadsheet_Workbench.md) on a [Page](TechDraw_Workbench.md). @@ -35,4 +37,7 @@ This tool allows you to place a view of a selected [spreadsheet](Spreadsheet_Wor - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SpreadsheetView diff --git a/wiki/TechDraw_Symbol.md b/wiki/TechDraw_Symbol.md index 0ce821085d..3316e6594c 100644 --- a/wiki/TechDraw_Symbol.md +++ b/wiki/TechDraw_Symbol.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Templates](TechDraw_Templates.md), [Draft SVG](Draft_SVG.md) --- +# TechDraw Symbol + ## Description The Symbol tool inserts an [SVG](SVG.md) file into the page. This symbol can be anything that helps annotating your drawing, and that doesn\'t need to be further modified. @@ -49,4 +51,7 @@ rc = page.addView(sym) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Symbol diff --git a/wiki/TechDraw_TemplateGenerator.md b/wiki/TechDraw_TemplateGenerator.md index 430b61b550..3fb7d70e5a 100644 --- a/wiki/TechDraw_TemplateGenerator.md +++ b/wiki/TechDraw_TemplateGenerator.md @@ -1,8 +1,4 @@ # TechDraw TemplateGenerator - - - - {{TutorialInfo |Topic= Template generation with Python macro |Level= Basic skills of Python and svg-structures are helpful @@ -513,3 +509,6 @@ And what it should look like when inserted (plus magnified title block): ![TechDraw TemplateGenerator.png](images/TechDraw_TemplateGenerator.png ) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw TemplateGenerator diff --git a/wiki/TechDraw_TemplateHowTo.md b/wiki/TechDraw_TemplateHowTo.md index 9b8ce07bf2..83745b86ea 100644 --- a/wiki/TechDraw_TemplateHowTo.md +++ b/wiki/TechDraw_TemplateHowTo.md @@ -1,7 +1,4 @@ # TechDraw TemplateHowTo - - - {{TutorialInfo |Topic=Drafting |Level=Intermediate @@ -117,4 +114,7 @@ See a Stackoverflow discussion on [removing transform clauses in SVG files](http If you do not see the green boxes for your editable texts, there might be something wrong with your document scale. Open your file in Inkscape again and confirm the values of the viewBox and the sizes are matching. - {{Tutorials navi}} {{TechDraw Tools navi}} + {{Tutorials navi}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw TemplateHowTo diff --git a/wiki/TechDraw_Templates.md b/wiki/TechDraw_Templates.md index a67264d11b..cad46e4293 100644 --- a/wiki/TechDraw_Templates.md +++ b/wiki/TechDraw_Templates.md @@ -1,11 +1,4 @@ # TechDraw Templates - - - - - - - ## Overview Every TechDraw page is based on a Template object. The Template controls paper size and contains fixed text graphics and text, for example, a page frame or border. @@ -73,4 +66,7 @@ See also [How to make a custom TechDraw template](TechDraw_TemplateHowTo.md). - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Templates diff --git a/wiki/TechDraw_TextLeader.md b/wiki/TechDraw_TextLeader.md index 39d156b3f4..dc3fd34e6b 100644 --- a/wiki/TechDraw_TextLeader.md +++ b/wiki/TechDraw_TextLeader.md @@ -1,2 +1,5 @@ # TechDraw TextLeader 1. REDIRECT [TechDraw\_RichTextAnnotation](TechDraw_RichTextAnnotation.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw TextLeader diff --git a/wiki/TechDraw_Toggle.md b/wiki/TechDraw_Toggle.md index 773915a8b3..294f632b7d 100644 --- a/wiki/TechDraw_Toggle.md +++ b/wiki/TechDraw_Toggle.md @@ -1,2 +1,5 @@ # TechDraw Toggle 1. REDIRECT [TechDraw\_ToggleFrame](TechDraw_ToggleFrame.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Toggle diff --git a/wiki/TechDraw_ToggleFrame.md b/wiki/TechDraw_ToggleFrame.md index eaafc4f6aa..0f8dad0971 100644 --- a/wiki/TechDraw_ToggleFrame.md +++ b/wiki/TechDraw_ToggleFrame.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw View](TechDraw_View.md), [TechDraw Projection Group](TechDraw_ProjectionGroup.md) --- +# TechDraw ToggleFrame + ## Description The Toggle tool turns the display of View frames, labels and vertices on or off. @@ -40,4 +42,7 @@ The Toggle tool currently doesn\'t have a programming interface. - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ToggleFrame diff --git a/wiki/TechDraw_VerticalDimension.md b/wiki/TechDraw_VerticalDimension.md index ee6d3be8cc..48bff0c1c8 100644 --- a/wiki/TechDraw_VerticalDimension.md +++ b/wiki/TechDraw_VerticalDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw LengthDimension](TechDraw_LengthDimension.md), [TechDraw HorizontalDimension](TechDraw_HorizontalDimension.md) --- +# TechDraw VerticalDimension + ## Description The Vertical Dimension tool adds a vertical dimension to a View. The dimension may be between two vertices, the length of one edge or the vertical distance between 2 edges. The distance will initially be the projected distance (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -51,4 +53,7 @@ rc = page.addView(dim1) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw VerticalDimension diff --git a/wiki/TechDraw_VerticalExtentDimension.md b/wiki/TechDraw_VerticalExtentDimension.md index 6ef882ad06..09da45775b 100644 --- a/wiki/TechDraw_VerticalExtentDimension.md +++ b/wiki/TechDraw_VerticalExtentDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw LengthDimension](TechDraw_LengthDimension.md), [TechDraw HorizontalExtentDimension](TechDraw_HorizontalExtentDimension.md) --- +# TechDraw VerticalExtentDimension + ## Description The Vertical Extent Dimension tool adds a linear dimension to a View. The dimension extends from the bottom most point on the selected objects to the top most point. A CosmeticVertex will be placed at each point. @@ -51,4 +53,7 @@ rc = page.addView(hExtentDim) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw VerticalExtentDimension diff --git a/wiki/TechDraw_View.md b/wiki/TechDraw_View.md index 3dd9b02d50..b80935c474 100644 --- a/wiki/TechDraw_View.md +++ b/wiki/TechDraw_View.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Projection Group](TechDraw_ProjectionGroup.md), [TechDraw Section View](TechDraw_SectionView.md) --- +# TechDraw View + ## Description The View tool adds a representation of one or more objects to a Drawing page. This is the basic building block of the TechDraw workbench. Most other Views are derived in some way from NewView. @@ -127,4 +129,7 @@ FreeCAD.ActiveDocument.View.Direction = (0.0,0.0,1.0) - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw View diff --git a/wiki/TechDraw_WeldSymbol.md b/wiki/TechDraw_WeldSymbol.md index d7f4cce55e..161d5ee8f7 100644 --- a/wiki/TechDraw_WeldSymbol.md +++ b/wiki/TechDraw_WeldSymbol.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Leaderline](TechDraw_LeaderLine.md) --- +# TechDraw WeldSymbol + ## Description The WeldingSymbol tool adds welding specifications to an existing leader line. @@ -107,4 +109,7 @@ Individual symbols are formed by 64x64 pixel SVG files. Additional symbols can b - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw WeldSymbol diff --git a/wiki/TechDraw_Workbench.md b/wiki/TechDraw_Workbench.md index 58a305f740..50786ee26c 100644 --- a/wiki/TechDraw_Workbench.md +++ b/wiki/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench ## Introduction @@ -205,3 +199,6 @@ Video tutorials by sliptonic {{TechDraw Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench diff --git a/wiki/TechDraw_pitch_circle_tutorial.md b/wiki/TechDraw_pitch_circle_tutorial.md index 3fb1a00dfd..b63261c84b 100644 --- a/wiki/TechDraw_pitch_circle_tutorial.md +++ b/wiki/TechDraw_pitch_circle_tutorial.md @@ -1,7 +1,4 @@ # TechDraw pitch circle tutorial - - - {{TutorialInfo |Topic=TechDraw |Level=Beginner @@ -41,4 +38,7 @@ This tutorial explains how to add a pitch circle to a [TechDraw DecorateLine](TechDraw_DecorateLine.md) command. 9. Change the **Style** and **Weight** of the circle. - {{TechDraw Tools navi}} + {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw pitch circle tutorial diff --git a/wiki/Teigha.md b/wiki/Teigha.md index bf3416c70c..da55a812db 100644 --- a/wiki/Teigha.md +++ b/wiki/Teigha.md @@ -1,2 +1,5 @@ # Teigha 1. REDIRECT [FreeCAD\_and\_DWG\_Import](FreeCAD_and_DWG_Import.md) + +--- +[documentation index](../README.md) > Teigha diff --git a/wiki/Teigha_Converter.md b/wiki/Teigha_Converter.md index 64da1224a4..3d52a830f9 100644 --- a/wiki/Teigha_Converter.md +++ b/wiki/Teigha_Converter.md @@ -1,2 +1,5 @@ # Teigha Converter 1. REDIRECT [FreeCAD\_and\_DWG\_Import](FreeCAD_and_DWG_Import.md) + +--- +[documentation index](../README.md) > Teigha Converter diff --git a/wiki/Test_Ambiente_PartDesign.md b/wiki/Test_Ambiente_PartDesign.md index 4f024ed5bf..246328b4fc 100644 --- a/wiki/Test_Ambiente_PartDesign.md +++ b/wiki/Test_Ambiente_PartDesign.md @@ -1,5 +1,4 @@ # Test Ambiente PartDesign - **This section is work in progress, for test. For now only in Italian. There are no links that direct to this page. Sezione in costruzione.** @@ -55,3 +54,6 @@ Per vedere come creare gli schizzi di base fare riferimento alla pagina dedicata Torna a [Esercitazioni](Esercitazioni.md) [Category:User Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > [Test](Test_Workbench.md) > Test Ambiente PartDesign diff --git a/wiki/Test_Framework_Workbench.md b/wiki/Test_Framework_Workbench.md index ae15a26d5d..a5ac61294a 100644 --- a/wiki/Test_Framework_Workbench.md +++ b/wiki/Test_Framework_Workbench.md @@ -1,2 +1,5 @@ # Test Framework Workbench 1. REDIRECT [Testing](Testing.md) + +--- +[documentation index](../README.md) > Test Framework Workbench diff --git a/wiki/Test_Workbench.md b/wiki/Test_Workbench.md index 3a17c29543..37b0791eb0 100644 --- a/wiki/Test_Workbench.md +++ b/wiki/Test_Workbench.md @@ -1,2 +1,5 @@ # Test Workbench 1. REDIRECT [Testing](Testing.md) + +--- +[documentation index](../README.md) > Test Workbench diff --git a/wiki/Testing.md b/wiki/Testing.md index 760c650737..f617d6d20f 100644 --- a/wiki/Testing.md +++ b/wiki/Testing.md @@ -1,10 +1,4 @@ -# Testing - - - - - -Test workbench icon +# Test workbench icon Testing @@ -160,3 +154,6 @@ r.run(suite) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Test Framework](Category:Test_Framework.md) [Category:Workbenches](Category:Workbenches.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Testing diff --git a/wiki/The_FreeCAD_source_code.md b/wiki/The_FreeCAD_source_code.md index 10c4bde527..d839521549 100644 --- a/wiki/The_FreeCAD_source_code.md +++ b/wiki/The_FreeCAD_source_code.md @@ -1,5 +1,5 @@ # The FreeCAD source code - The [FreeCAD source code](https://github.com/FreeCAD/FreeCAD) is managed with git, and is public, open and available under the [LGPL license](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License). It can be copied, downloaded, read, analyzed, redistributed and modified by anyone. If you plan to make modifications that you wish to see included into the official code itself, remember that your changes will need to be approved by the FreeCAD developers, so it is wise to discuss first your intents and ideas on the [forum](http://forum.freecadweb.org), to avoid the risk to have your changes rejected for some reason you didn\'t foresee. +The [FreeCAD source code](https://github.com/FreeCAD/FreeCAD) is managed with git, and is public, open and available under the [LGPL license](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License). It can be copied, downloaded, read, analyzed, redistributed and modified by anyone. If you plan to make modifications that you wish to see included into the official code itself, remember that your changes will need to be approved by the FreeCAD developers, so it is wise to discuss first your intents and ideas on the [forum](http://forum.freecadweb.org), to avoid the risk to have your changes rejected for some reason you didn\'t foresee. Below are some clues and useful information to get you on tracks if you are interested in exploring the FreeCAD code. @@ -35,3 +35,6 @@ Below are some clues and useful information to get you on tracks if you are inte [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > The FreeCAD source code diff --git a/wiki/Themes.md b/wiki/Themes.md index 5725ad8860..02f6ac8e77 100644 --- a/wiki/Themes.md +++ b/wiki/Themes.md @@ -1,7 +1,4 @@ # Themes - - - {{TOCright}} ## Description @@ -41,3 +38,6 @@ If one chooses to tweak a preexisting theme or create their own, all that needs {{Interface navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Themes diff --git a/wiki/Third_Party_Libraries.md b/wiki/Third_Party_Libraries.md index 5a3b851821..5a8738d82c 100644 --- a/wiki/Third_Party_Libraries.md +++ b/wiki/Third_Party_Libraries.md @@ -1,11 +1,4 @@ # Third Party Libraries - - - - - - - ## Overview These are libraries which FreeCAD uses as third party dependencies during compilation. They are usually [dynamically linked libraries](https://en.wikipedia.org/wiki/Dynamic_loading) and have an extension `.so` in Linux/MacOS and `.dll` in Windows, and are accompanied by their header files `.h` or `.hpp` or similar. If a modified library is necessary, or a wrapper class is needed, the code of the modified library, or the wrapper, has to become part of the FreeCAD source code, and compiled together with it. @@ -280,3 +273,6 @@ It includes among other things: Boost 1.67, Coin3D 4.0.0a, Eigen3, Open CASCADE [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Libraries diff --git a/wiki/Third_Party_Tools.md b/wiki/Third_Party_Tools.md index 2d64ab809f..49a579d18d 100644 --- a/wiki/Third_Party_Tools.md +++ b/wiki/Third_Party_Tools.md @@ -1,11 +1,4 @@ # Third Party Tools - - - - - - - ## Tool Page For every serious software development you need tools. Here is a list of tools we use to develop FreeCAD: @@ -75,3 +68,6 @@ TODO [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Tools diff --git a/wiki/ThreadProfile_Workbench.md b/wiki/ThreadProfile_Workbench.md index d868d02e3e..2f1f7bb077 100644 --- a/wiki/ThreadProfile_Workbench.md +++ b/wiki/ThreadProfile_Workbench.md @@ -1,6 +1,4 @@ # ThreadProfile Workbench - - ThreadProfile Workbench is a workbench for creating a thread profile, which can be swept along a helix to produce a thread. This workbench is currently under development. Full documentation can be found on Github: [ThreadProfile Workbench on Github](https://github.com/mwganson/ThreadProfile) @@ -8,3 +6,6 @@ Full documentation can be found on Github: [ThreadProfile Workbench on Github](h [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > ThreadProfile Workbench diff --git a/wiki/Thread_for_Screw_Tutorial.md b/wiki/Thread_for_Screw_Tutorial.md index a490e1941f..c30e9545f2 100644 --- a/wiki/Thread_for_Screw_Tutorial.md +++ b/wiki/Thread_for_Screw_Tutorial.md @@ -1,7 +1,4 @@ # Thread for Screw Tutorial - - - {{TutorialInfo |Topic=Product design |Level=Advanced @@ -239,4 +236,7 @@ ISO and other threads have relieved, ie flat, inner and outer edges rather than ![761PX](images/Threadform.PNG ) -This method produces reliable solids that boolean properly. While it doesn\'t produce \"parametric\" screw threads in standard sizes in the sense of having simple access to form by fastener size, it\'s an easy way of producing an accurate library for reuse, and models of specialised forms like ACME, or Archimedian screws, are also uncomplicated as one-offs. {{Tutorials navi}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +This method produces reliable solids that boolean properly. While it doesn\'t produce \"parametric\" screw threads in standard sizes in the sense of having simple access to form by fastener size, it\'s an easy way of producing an accurate library for reuse, and models of specialised forms like ACME, or Archimedian screws, are also uncomplicated as one-offs. {{Tutorials navi}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Thread for Screw Tutorial diff --git a/wiki/Timber_Workbench.md b/wiki/Timber_Workbench.md index b1659089c1..ab2fd6795d 100644 --- a/wiki/Timber_Workbench.md +++ b/wiki/Timber_Workbench.md @@ -1,5 +1,5 @@ # Timber Workbench - **This workbench is no longer developed or maintained.** +**This workbench is no longer developed or maintained.** ## Introduction @@ -72,3 +72,6 @@ See [How to install macros](How_to_install_macros.md) [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Timber Workbench diff --git a/wiki/Tolerancing.md b/wiki/Tolerancing.md index 4408b9be4f..17d26bd3d6 100644 --- a/wiki/Tolerancing.md +++ b/wiki/Tolerancing.md @@ -1,7 +1,4 @@ # Tolerancing - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -78,3 +75,6 @@ There are two approaches to specifying Product and Manufacturing Information (PM [Category:Roadmap](Category:Roadmap.md) [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Tolerancing diff --git a/wiki/Toothbrush_Head_Stand.md b/wiki/Toothbrush_Head_Stand.md index edcec72833..e28e6207bf 100644 --- a/wiki/Toothbrush_Head_Stand.md +++ b/wiki/Toothbrush_Head_Stand.md @@ -1,5 +1,5 @@ # Toothbrush Head Stand - {{TutorialInfo|Topic=Modeling|Level=Beginner|Author=[EmmanuelG](User:EmmanuelG.md)|Time=1 hour|FCVersion=0.16 or greater|Files=[https://www.thingiverse.com/thing:2403310 Thingiverse 2403310]}} +{{TutorialInfo|Topic=Modeling|Level=Beginner|Author=[EmmanuelG](User:EmmanuelG.md)|Time=1 hour|FCVersion=0.16 or greater|Files=[https://www.thingiverse.com/thing:2403310 Thingiverse 2403310]}} ## A daily-life problem @@ -423,4 +423,7 @@ Perfect ! {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Toothbrush Head Stand diff --git a/wiki/Top_view.md b/wiki/Top_view.md index 8dfc0491b0..9dc0592131 100644 --- a/wiki/Top_view.md +++ b/wiki/Top_view.md @@ -1,2 +1,5 @@ # Top view 1. REDIRECT [Std View Menu](Std_View_Menu.md) + +--- +[documentation index](../README.md) > Top view diff --git a/wiki/TopoShape_API.md b/wiki/TopoShape_API.md index c051c24562..06fcc4db99 100644 --- a/wiki/TopoShape_API.md +++ b/wiki/TopoShape_API.md @@ -1,5 +1,5 @@ # TopoShape API - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** The TopoShape is the mother object of the Part Module. All shape types (wire, face, solid, etc\...) of the Part module are TopoShapes, and share the following attributes and methods. Example: ```python @@ -228,3 +228,6 @@ Some attributes and methods apply only to certain TopoShapes. These items apply [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > TopoShape API diff --git a/wiki/Topological.md b/wiki/Topological.md index 49a7aeda1f..9e64380049 100644 --- a/wiki/Topological.md +++ b/wiki/Topological.md @@ -2,3 +2,6 @@ 1. REDIRECT [Topological naming problem](Topological_naming_problem.md) [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Topological diff --git a/wiki/Topological_Naming_Project.md b/wiki/Topological_Naming_Project.md index d54916db74..cccb530c73 100644 --- a/wiki/Topological_Naming_Project.md +++ b/wiki/Topological_Naming_Project.md @@ -1,8 +1,4 @@ # Topological Naming Project - - - - This page is dedicated to the description of the Google Summer of Code project idea regarding topological naming. For the topic in itself please see [Naming project](Naming_project.md). The linked wiki page can also serve as a starting point to get into the naming problem. ## Outline @@ -46,3 +42,6 @@ Hard [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > Topological Naming Project diff --git a/wiki/Topological_data_scripting.md b/wiki/Topological_data_scripting.md index 34d7f255dd..7f0541ee50 100644 --- a/wiki/Topological_data_scripting.md +++ b/wiki/Topological_data_scripting.md @@ -1,8 +1,4 @@ # Topological data scripting - - - - ## Introduction Here we will explain to you how to control the [Part](Part_Workbench.md) module directly from the FreeCAD Python interpreter, or from any external script. Be sure to browse the [Scripting](Scripting.md) section and the [FreeCAD Scripting Basics](FreeCAD_Scripting_Basics.md) pages if you need more information about how Python scripting works in FreeCAD. If you are new to Python, it is a good idea to first read the [Introduction to Python](Introduction_to_Python.md). @@ -1042,3 +1038,6 @@ To convert a STEP file to an IGS file: {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting diff --git a/wiki/Topological_naming_problem.md b/wiki/Topological_naming_problem.md index 01195ca293..f0fa56ab83 100644 --- a/wiki/Topological_naming_problem.md +++ b/wiki/Topological_naming_problem.md @@ -1,6 +1,4 @@ # Topological naming problem - - ## Introduction @@ -147,3 +145,6 @@ Datum objects, [points](PartDesign_Point.md), [lines](PartDesign_Line.md), [plan {{TechDraw Tools navi}} {{PartDesign Tools navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Topological naming problem diff --git a/wiki/Topological_shape.md b/wiki/Topological_shape.md index f2b7a0f022..bc8a0f1758 100644 --- a/wiki/Topological_shape.md +++ b/wiki/Topological_shape.md @@ -1,2 +1,5 @@ # Topological shape 1. REDIRECT [Part\_TopoShape](Part_TopoShape.md) + +--- +[documentation index](../README.md) > Topological shape diff --git a/wiki/Toponaming.md b/wiki/Toponaming.md index 2ce3e5447d..f3e5ad83a8 100644 --- a/wiki/Toponaming.md +++ b/wiki/Toponaming.md @@ -1,2 +1,5 @@ # Toponaming 1. REDIRECT [Topological naming problem](Topological_naming_problem.md) + +--- +[documentation index](../README.md) > Toponaming diff --git a/wiki/Tracker.md b/wiki/Tracker.md index 081a76bad5..1d363fe361 100644 --- a/wiki/Tracker.md +++ b/wiki/Tracker.md @@ -1,11 +1,4 @@ # Tracker - - - - - - - ![](images/Mantis_logo_262x90.png ) The [FreeCAD BugTracker](https://www.freecadweb.org/tracker) is the place toː report bugs, submit feature requests, patches, or request to merge your branch if you developed something using Git. The tracker is divided into \'Workbenches\', so please be specific and file your request in the appropriate subsection. In case of doubt, leave it in the \"FreeCAD\" section. @@ -181,3 +174,6 @@ For the inquisitive here is the regex MantisBT uses for this operation: [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Tracker diff --git a/wiki/Trademark_legend.md b/wiki/Trademark_legend.md index 15f6d06d38..4a65cf5010 100644 --- a/wiki/Trademark_legend.md +++ b/wiki/Trademark_legend.md @@ -26,3 +26,6 @@ - Haiku, Inc. owns the \'Haiku\'® name, HAIKU logo®, HAIKU Background Leaf™, and HAIKU Leaf™ (registered) trademarks. + +--- +[documentation index](../README.md) > Trademark legend diff --git a/wiki/Transient_FEM_analysis.md b/wiki/Transient_FEM_analysis.md index 60aa34eb2e..8543d3af4e 100644 --- a/wiki/Transient_FEM_analysis.md +++ b/wiki/Transient_FEM_analysis.md @@ -1,7 +1,4 @@ # Transient FEM analysis - - - {{TutorialInfo |Topic= Transient FEM analysis |Level= @@ -92,4 +89,7 @@ Within FreeCAD, we can use Transient FEM analysis diff --git a/wiki/Transitioning_from_Solidworks_to_FreeCAD.md b/wiki/Transitioning_from_Solidworks_to_FreeCAD.md index 9472b9706d..d8fe5204cd 100644 --- a/wiki/Transitioning_from_Solidworks_to_FreeCAD.md +++ b/wiki/Transitioning_from_Solidworks_to_FreeCAD.md @@ -1,8 +1,4 @@ # Transitioning from Solidworks to FreeCAD - - - - {{FYI}} @@ -39,6 +35,5 @@ There are many video tutorials online. One of the most popular (at the time this - [Anyone willing to collaborate on writing guides for users coming from other CAD/CAM solutions to FreeCAD?](https://forum.freecadweb.org/viewtopic.php?f=8&t=42139&p=366957#p357540) - [Extreme Difficulty coming from Autodesk Inventor 2019.](https://forum.freecadweb.org/viewtopic.php?f=3&t=42980#p366121) - - - +--- +[documentation index](../README.md) > Transitioning from Solidworks to FreeCAD diff --git a/wiki/Translating_an_external_workbench.md b/wiki/Translating_an_external_workbench.md index 1fbd7d218c..c22b346151 100644 --- a/wiki/Translating_an_external_workbench.md +++ b/wiki/Translating_an_external_workbench.md @@ -1,6 +1,4 @@ # Translating an external workbench - - In the following notes, `"context"` should be your addon\'s or workbench\'s name, for example, `"MySuperAddon"` or `"DraftPlus"`, or whatever. This context makes it so that all translation of your code will be gathered under the same name, to be more easily identified by translators. That is, they will know exactly to which addon or workbench a particular string belongs. **Note**: Here is an all-in-one script that automates the complete procedure mentioned below (you are still advised to read the procedure to know what the script should do, though): @@ -223,3 +221,6 @@ Yorik maintains a convenience script for the BIM workbench, that can gather, upl [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Translating an external workbench diff --git a/wiki/Translation.md b/wiki/Translation.md index 8287c891d8..a1f25ff7b4 100644 --- a/wiki/Translation.md +++ b/wiki/Translation.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Translation diff --git a/wiki/Transportation_Workbench.md b/wiki/Transportation_Workbench.md index 86cdd8dd3b..1cdba0e942 100644 --- a/wiki/Transportation_Workbench.md +++ b/wiki/Transportation_Workbench.md @@ -1,6 +1,4 @@ # Transportation Workbench - - ## Description A subset of the [Civil Engineering Workbench](Civil_Engineering_Workbench.md) @@ -19,3 +17,6 @@ A subset of the [Civil Engineering Workbench](Civil_Engineering_Workbench.md) [Category:Documentation](Category:Documentation.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Transportation Workbench diff --git a/wiki/TravisCI.md b/wiki/TravisCI.md index 34f424f5b6..a0c33c6dd7 100644 --- a/wiki/TravisCI.md +++ b/wiki/TravisCI.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > TravisCI diff --git a/wiki/Tree_View.md b/wiki/Tree_View.md index 8a5d74a9e0..db6e125afd 100644 --- a/wiki/Tree_View.md +++ b/wiki/Tree_View.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Tree View diff --git a/wiki/Tree_view.md b/wiki/Tree_view.md index 70388caab1..94f97af507 100644 --- a/wiki/Tree_view.md +++ b/wiki/Tree_view.md @@ -1,6 +1,4 @@ # Tree view - - ## Introduction The [tree view](Tree_view.md) appears in the **Model** tab of the [combo view](Combo_view.md), one of the most important panels in the [interface](Interface.md); it shows all user defined objects that are part of a FreeCAD document. The tree view is a representation of the [document\'s structure](document_structure.md), and indicates what information is saved to disk. @@ -144,4 +142,7 @@ This is only used for [sketches](Sketch.md) and indicates that the sketch is not This indicates that the object has an error that needs to be fixed. After recomputing the whole document a tooltip describing the error is shown when you hover the mouse over the object in the tree view. Note: All other objects depending on an object in such an error state will not be properly recomputed, thus they may still show some old state. - {{Interface navi}} {{Std Base navi}} + {{Interface navi}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Tree view diff --git a/wiki/Troubleshooting.md b/wiki/Troubleshooting.md index f98bc19319..652c17dfa9 100644 --- a/wiki/Troubleshooting.md +++ b/wiki/Troubleshooting.md @@ -1,2 +1,5 @@ # Troubleshooting 1. REDIRECT [Troubleshooting FreeCAD](Troubleshooting_FreeCAD.md) + +--- +[documentation index](../README.md) > Troubleshooting diff --git a/wiki/Troubleshooting_FreeCAD.md b/wiki/Troubleshooting_FreeCAD.md index 7b90d62e21..7897773ae8 100644 --- a/wiki/Troubleshooting_FreeCAD.md +++ b/wiki/Troubleshooting_FreeCAD.md @@ -1,5 +1,4 @@ # Troubleshooting FreeCAD - {{TOCright}} @@ -26,3 +25,6 @@ Link to [Troubleshooting FreeCAD/Qt](Troubleshooting_FreeCAD/Qt.md) Related: [Category:](Category:.md) + +--- +[documentation index](../README.md) > Troubleshooting FreeCAD diff --git a/wiki/Troubleshooting_models.md b/wiki/Troubleshooting_models.md index f8348f36ef..11d1a3043e 100644 --- a/wiki/Troubleshooting_models.md +++ b/wiki/Troubleshooting_models.md @@ -34,3 +34,6 @@ This page is to help find solutions to problems that can occur across multiple m - Cause: OCC call fails. The selection(s) made to define your command are incorrect or lead to a case that is not handled by OCC. - Solution: Try using different selections for command or using a different command. + +--- +[documentation index](../README.md) > Troubleshooting models diff --git a/wiki/Tutorial_FreeCAD_POV_ray.md b/wiki/Tutorial_FreeCAD_POV_ray.md index 7eb5471b37..a6e6b45661 100644 --- a/wiki/Tutorial_FreeCAD_POV_ray.md +++ b/wiki/Tutorial_FreeCAD_POV_ray.md @@ -1,7 +1,4 @@ # Tutorial FreeCAD POV ray - - - **The [Raytracing workbench](Raytracing_Workbench.md) is being superseded by the new [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This must not be confused with the halted and outdated [Render project](Render_project.md). The Render Workbench can be installed through the [Addon Manager](AddonManager.md). The information here is provided because by default FreeCAD is still shipped (as of 0.19-24276) with the Raytracing Workbench, and because the new workbench should basically work in the same way** @@ -860,4 +857,7 @@ The user is advised to read the POV-Ray documentation and more tutorials or exam - [POV-Ray Tutorial](http://www.povray.org/documentation/3.7.0/t2_0.html) - [POV-Ray Reference](http://www.povray.org/documentation/3.7.0/r3_0.html) - {{Tutorials navi}} {{Raytracing Tools navi}} + {{Tutorials navi}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > Tutorial FreeCAD POV ray diff --git a/wiki/Tutorial_Guidelines.md b/wiki/Tutorial_Guidelines.md index 349166133f..274a45a9d7 100644 --- a/wiki/Tutorial_Guidelines.md +++ b/wiki/Tutorial_Guidelines.md @@ -1,2 +1,5 @@ # Tutorial Guidelines 1. REDIRECT [Tutorial guidelines](Tutorial_guidelines.md) + +--- +[documentation index](../README.md) > Tutorial Guidelines diff --git a/wiki/Tutorial_Render_with_Blender.md b/wiki/Tutorial_Render_with_Blender.md index ff0da81be4..27826ebd71 100644 --- a/wiki/Tutorial_Render_with_Blender.md +++ b/wiki/Tutorial_Render_with_Blender.md @@ -1,7 +1,4 @@ # Tutorial Render with Blender - - - {{TutorialInfo |Topic=Rendering |Level=Intermediate @@ -337,4 +334,7 @@ On the other hand, Cycles is a true raytracing renderer which means it is more a Both renderers can be used to leverage the advantages of each. In many cases the scene can be quickly prepared and tested with EEVEE to obtain preliminary renderings; then the same scene can be used with minor changes with Cycles in order to produce a higher quality, final rendering. In particular, when a scene that was setup with EEVEE will be used with Cycles, the lights may need to be adjusted in value and position as both renderers treat light in different ways. -Obtaining good results is highly dependent on the rendering options, the materials, and the lighting. The {{Tutorials navi}} {{Raytracing Tools navi}} +Obtaining good results is highly dependent on the rendering options, the materials, and the lighting. The {{Tutorials navi}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > Tutorial Render with Blender diff --git a/wiki/Tutorial_custom_placing_of_windows_and_doors.md b/wiki/Tutorial_custom_placing_of_windows_and_doors.md index da503e0ce1..252053f646 100644 --- a/wiki/Tutorial_custom_placing_of_windows_and_doors.md +++ b/wiki/Tutorial_custom_placing_of_windows_and_doors.md @@ -1,5 +1,5 @@ # Tutorial custom placing of windows and doors - {{TutorialInfo +{{TutorialInfo |Topic=Architecture |Level=Intermediate |Time=60 minutes @@ -332,4 +332,7 @@ abs(N) = 1 = sqrt(sin^2(angle) + cos^2(angle) + z^2) {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Tutorial custom placing of windows and doors diff --git a/wiki/Tutorial_for_open_windows.md b/wiki/Tutorial_for_open_windows.md index e79232b40f..2603e7da75 100644 --- a/wiki/Tutorial_for_open_windows.md +++ b/wiki/Tutorial_for_open_windows.md @@ -1,7 +1,4 @@ # Tutorial for open windows - - - {{TutorialInfo |Topic=Architecture |Level=Beginner @@ -243,4 +240,7 @@ The [TechDraw Workbench](TechDraw_Workbench.md) only has minimal control over ho A closer interaction between the workbenches is planed for future versions of FreeCAD. In those versions it is expected that long-standing issues be resolved, such as controlling the characteristics of lines and faces (line width, line color, face color, hatch patterns, and others). - {{Tutorials navi}} {{TechDraw Tools navi}} + {{Tutorials navi}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Tutorial for open windows diff --git a/wiki/Tutorial_guidelines.md b/wiki/Tutorial_guidelines.md index a88b42d7de..89d8e09c53 100644 --- a/wiki/Tutorial_guidelines.md +++ b/wiki/Tutorial_guidelines.md @@ -1,5 +1,4 @@ # Tutorial guidelines - {{Note|Note|This is meant as a test for a new style guideline for tutorials.Feel free to add any ideas or test formatting. DO NOT TRANSLATE! Inspirations & ideas: @@ -89,3 +88,6 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor i Image:Astronotus\_ocellatus.jpg\|*[Astronotus ocellatus](commons:Astronotus_ocellatus.md)* (Oscar) Image:Salmonlarvakils.jpg\|*[Salmo salar](commons:Salmo_salar.md)* (Salmon Larva) Image:Georgia Aquarium - Giant Grouper.jpg\|*[Epinephelus lanceolatus](commons:Epinephelus_lanceolatus.md)* (Giant grouper) Image:Pterois volitans Manado-e.jpg\|*[Pterois volitans](commons:Pterois_volitans.md)* (Red Lionfish) Image:Macropodus opercularis - front (aka).jpg\|*[Macropodus opercularis](commons:Macropodus_opercularis.md)* (Paradise fish) Image:Canthigaster valentini 1.jpg\|*[Canthigaster valentini](commons:Canthigaster_valentini.md)* (Valentinni\'s sharpnose puffer) Image:Flughahn.jpg\| *[Dactylopterus volitans](commons:Dactylopterus_volitans.md)* (Flying gurnard) Image:Fishmarket 01.jpg\|*[Semicossyphus pulcher](commons:Semicossyphus_pulcher.md)* (California Sheephead) [Category:Wiki](Category:Wiki.md) [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Tutorial guidelines diff --git a/wiki/Tutorials.md b/wiki/Tutorials.md index 4e5ee7213d..bbf6e97f2d 100644 --- a/wiki/Tutorials.md +++ b/wiki/Tutorials.md @@ -1,11 +1,4 @@ # Tutorials - - - - - - - This page presents a selection of high quality written tutorials. A complete, unsorted list of tutorials can be found in [:Category:Tutorials](:Category:Tutorials.md), a complete and sortable one can be found in the [table below](Tutorials#Tutorials_-_Comprehensive_list.md). Also visit [video tutorials](Video_tutorials.md) and [offsite tutorials](Offsite_tutorials.md) for tutorials hosted on external sites. A useful source of video tutorials is [YouTube](https://YouTube.com). @@ -325,3 +318,6 @@ Here are listed all the tutorials that are not in the manual **regardless of the [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials]], a complete and sortable one can be found in the ](Category:Tutorials]], a complete and sortable one can be found in the .md) > Tutorials diff --git "a/wiki/T\303\251l\303\251charger.md" "b/wiki/T\303\251l\303\251charger.md" index 47a3867d09..9128893237 100644 --- "a/wiki/T\303\251l\303\251charger.md" +++ "b/wiki/T\303\251l\303\251charger.md" @@ -1,2 +1,5 @@ # Télécharger 1. REDIRECT [download/fr](download/fr.md) + +--- +[documentation index](../README.md) > Télécharger diff --git a/wiki/UTF_Project.md b/wiki/UTF_Project.md index 72500b6df6..ebc9523fd6 100644 --- a/wiki/UTF_Project.md +++ b/wiki/UTF_Project.md @@ -1,7 +1,4 @@ # UTF Project - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -37,3 +34,6 @@ Despite Coin3D now moving to a more open development platform, it\'s still very [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > UTF Project diff --git a/wiki/Ubuntu_Snap.md b/wiki/Ubuntu_Snap.md index 48379320c4..a2afc924bf 100644 --- a/wiki/Ubuntu_Snap.md +++ b/wiki/Ubuntu_Snap.md @@ -1,6 +1,4 @@ # Ubuntu Snap - - ## Introduction An [Ubuntu Snap](Ubuntu_Snap.md) package, or just [Snap](Ubuntu_Snap.md) is a distribution format similar to [AppImage](AppImage.md) in that it is intended to be a \"universal installable package\" to deploy software in Linux systems. Snaps were introduced by Ubuntu but they are intended to run in all Linux distributions as long as the Snap daemon, or `snapd`, is available in the target system. @@ -37,4 +35,5 @@ More information about current efforts to deal with Snaps. - [0.19 Snap Preview needs \"testers\"](https://forum.freecadweb.org/viewtopic.php?f=4&t=46044), older Snap by **vejmarie** - [Discussion: State of the snap (Snap Packaging)](https://forum.freecadweb.org/viewtopic.php?f=42&t=46853), newer version of the Snap by **ppd** - +--- +[documentation index](../README.md) > Ubuntu Snap diff --git a/wiki/Unified_Measurement_Facility.md b/wiki/Unified_Measurement_Facility.md index df5f37c1b6..df87253470 100644 --- a/wiki/Unified_Measurement_Facility.md +++ b/wiki/Unified_Measurement_Facility.md @@ -37,3 +37,6 @@ Medium ### Additional Information [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > Unified Measurement Facility diff --git a/wiki/Units.md b/wiki/Units.md index 04b3a079fc..29067fe28d 100644 --- a/wiki/Units.md +++ b/wiki/Units.md @@ -1,6 +1,4 @@ # Units - - Some reading about units: - [Metrology](http://en.wikipedia.org/wiki/Metrology) @@ -290,4 +288,7 @@ It becomes thus very easy to manage any number of properties with any kind of un - The documentation of [Quantity](Quantity.md). - The [Std UnitsCalculator](Std_UnitsCalculator.md) tool. - {{Powerdocnavi}} + {{Powerdocnavi}} + +--- +[documentation index](../README.md) > Units diff --git a/wiki/Units_project.md b/wiki/Units_project.md index 1fcc308bfd..2097d5b2f5 100644 --- a/wiki/Units_project.md +++ b/wiki/Units_project.md @@ -1,7 +1,4 @@ # Units project - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -52,3 +49,6 @@ Eventually a property editor for the PropertyUntit. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Units project diff --git a/wiki/Upgrade_the_documentation_system.md b/wiki/Upgrade_the_documentation_system.md index 30cb2937d2..ec9ede51e7 100644 --- a/wiki/Upgrade_the_documentation_system.md +++ b/wiki/Upgrade_the_documentation_system.md @@ -58,3 +58,6 @@ Medium - Potential mentors: [Yorik](http://forum.freecadweb.org/memberlist.php?mode=viewprofile&u=68) [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > Upgrade the documentation system diff --git a/wiki/User_hub.md b/wiki/User_hub.md index 689959404b..25d0929c64 100644 --- a/wiki/User_hub.md +++ b/wiki/User_hub.md @@ -1,5 +1,4 @@ -# User hub - +# User hub ------------------------------------------------------------------------ @@ -121,3 +120,6 @@ This is the official FreeCAD online help. Please note that the whole online help [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub diff --git a/wiki/VRML_Preparation_for_Robot_Simulation.md b/wiki/VRML_Preparation_for_Robot_Simulation.md index eaecb31d0a..b37ede26d6 100644 --- a/wiki/VRML_Preparation_for_Robot_Simulation.md +++ b/wiki/VRML_Preparation_for_Robot_Simulation.md @@ -1,5 +1,5 @@ # VRML Preparation for Robot Simulation - {{TutorialInfo +{{TutorialInfo |Topic=Robot Workbench |Level=Intermediate |Time= @@ -384,3 +384,6 @@ Group { [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > VRML Preparation for Robot Simulation diff --git a/wiki/Valgrind.md b/wiki/Valgrind.md index cf7f1c0bc1..c2f77b774f 100644 --- a/wiki/Valgrind.md +++ b/wiki/Valgrind.md @@ -1,5 +1,4 @@ # Valgrind - {{TOCright}} ## Introduction @@ -24,3 +23,6 @@ - [gcc address santizers](http://gavinchou.github.io/experience/summary/syntax/gcc-address-sanitizer/) are another option. Apparently the error message output is very clear. [Category:3rd Party](Category:3rd_Party.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > Valgrind diff --git a/wiki/Vector_API.md b/wiki/Vector_API.md index 6d2c2dc5ed..8ca81355d8 100644 --- a/wiki/Vector_API.md +++ b/wiki/Vector_API.md @@ -1,5 +1,5 @@ # Vector API - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Vectors are used everywhere in FreeCAD. @@ -67,3 +67,6 @@ print v3.Length [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Vector API diff --git a/wiki/Video_tutorials.md b/wiki/Video_tutorials.md index 1b610e1b60..7e7dd8b74c 100644 --- a/wiki/Video_tutorials.md +++ b/wiki/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials - - - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** This page presents a selection of video tutorials made by FreeCAD users and developers. Visit the [Tutorials and videos](https://forum.freecadweb.org/viewforum.php?f=36) subforum for more links. A useful source of video tutorials is [YouTube](https://YouTube.com). @@ -92,3 +89,6 @@ For more see [Video tutorials obsolete](Video_tutorials_obsolete.md). {{Tutorials navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Video tutorials diff --git a/wiki/Video_tutorials_for_architectural_design.md b/wiki/Video_tutorials_for_architectural_design.md index ae97a8c293..7be61b44d0 100644 --- a/wiki/Video_tutorials_for_architectural_design.md +++ b/wiki/Video_tutorials_for_architectural_design.md @@ -1,5 +1,5 @@ # Video tutorials for architectural design - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** ## Introduction @@ -44,4 +44,7 @@ Videos that go through modeling of rooms, houses, office buildings, and similar - [Grundmodell mit FreeCAD und ARCH](https://www.youtube.com/watch?v=Qe-vXRtKql4&list=PLNv9lsSmVr-iDNhHqJ1u8aZUImYIc8bB8): first part of a series of two videos with step-by-step instructions to create a simple model. General introduction to FreeCAD, axis systems and BuildingParts. - [Fachmodell mit FreeCAD und ARCH](https://www.youtube.com/watch?v=iarSNPBKkfo&list=PLNv9lsSmVr-iDNhHqJ1u8aZUImYIc8bB8): second part of the series. The building of the actual model: a garage. - {{Tutorials navi}} + {{Tutorials navi}} + +--- +[documentation index](../README.md) > Video tutorials for architectural design diff --git a/wiki/Video_tutorials_for_product_design.md b/wiki/Video_tutorials_for_product_design.md index 69391994f1..9e26709209 100644 --- a/wiki/Video_tutorials_for_product_design.md +++ b/wiki/Video_tutorials_for_product_design.md @@ -1,5 +1,5 @@ # Video tutorials for product design - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** ## Introduction @@ -74,4 +74,7 @@ Although this list focuses on German content, many of these channels also have v - [Christian Tutoriales CAD playlists](https://www.youtube.com/user/TheMeeone/playlists): various videos on using 3D modellers, including, FreeCAD, in Spanish. - [FREECAD 0.17 - 0.18](https://www.youtube.com/watch?v=cBA7EJyrLkQ&list=PLfv54N1Sqk4zFGrn6mVU5kTSpfyfN2GyW): a series of 15 videos showing how to model various objects: mechanical connectors, turbines, pliers, tubings, tire rims, screws, a screw cap, a screw bit, a helical gear, a bicycle tire, and others. - {{Tutorials navi}} + {{Tutorials navi}} + +--- +[documentation index](../README.md) > Video tutorials for product design diff --git a/wiki/Video_tutorials_obsolete.md b/wiki/Video_tutorials_obsolete.md index d181c6135d..f85b7778cc 100644 --- a/wiki/Video_tutorials_obsolete.md +++ b/wiki/Video_tutorials_obsolete.md @@ -1,5 +1,5 @@ # Video tutorials obsolete - **In FreeCAD 0.17 the [PartDesign Workbench](PartDesign_Workbench.md) received important updates that change the way solids are created with respect to previous versions. New users should watch videos for versions 0.17 and above to understand the concept of working with a [PartDesign Body](PartDesign_Body.md) and datum objects.** **These videos are considered obsolete because they use v0.16 or earlier versions of the program.** +**In FreeCAD 0.17 the [PartDesign Workbench](PartDesign_Workbench.md) received important updates that change the way solids are created with respect to previous versions. New users should watch videos for versions 0.17 and above to understand the concept of working with a [PartDesign Body](PartDesign_Body.md) and datum objects.** **These videos are considered obsolete because they use v0.16 or earlier versions of the program.** ## Introduction @@ -53,4 +53,7 @@ For up-to-date videos on different topics, see the [video tutorials](video_tutor - [openPLM demo : FreeCAD interface](http://www.youtube.com/watch?v=SanPyZhLq6w): FreeCAD 0.10, it showcases the OpenPLM [addon](addon.md), intended for [Product Lifecycle Management](http://en.wikipedia.org/wiki/Product_lifecycle_management). It no longer works with recent versions of FreeCAD. - {{Tutorials navi}} + {{Tutorials navi}} + +--- +[documentation index](../README.md) > Video tutorials obsolete diff --git a/wiki/Video_tutorials_product_design.md b/wiki/Video_tutorials_product_design.md index 8540ced8a5..485541b6c1 100644 --- a/wiki/Video_tutorials_product_design.md +++ b/wiki/Video_tutorials_product_design.md @@ -1,2 +1,5 @@ # Video tutorials product design 1. REDIRECT [Video tutorials for product design](Video_tutorials_for_product_design.md) + +--- +[documentation index](../README.md) > Video tutorials product design diff --git a/wiki/ViewObject_API.md b/wiki/ViewObject_API.md index 08011ad173..7ad3864daf 100644 --- a/wiki/ViewObject_API.md +++ b/wiki/ViewObject_API.md @@ -1,5 +1,5 @@ # ViewObject API - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** When the GUI is up, each object in the FreeCAD document has an associated ViewObject, that resides in the FreeCADGui document counterpart. A view object can be retrieved by two ways. Example: ```python @@ -83,3 +83,6 @@ print myViewObj.IV [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > ViewObject API diff --git a/wiki/View_Measure_Clear_All.md b/wiki/View_Measure_Clear_All.md index 99b81b3e2b..24438b49d6 100644 --- a/wiki/View_Measure_Clear_All.md +++ b/wiki/View_Measure_Clear_All.md @@ -6,6 +6,8 @@ SeeAlso:[View Measure Toggle All](View_Measure_Toggle_All.md), [Part Measure Toggle All](Part_Measure_Toggle_All.md), [Part Measure Clear All](Part_Measure_Clear_All.md) --- +# View Measure Clear All + ## Description The **View Measure Clear All** command clears the active [3D view](3D_view.md)\'s [Part](Part_Workbench.md) measurements. @@ -23,4 +25,7 @@ The **View Measure Clear All** command clears the active [3D view](3D_view.md)\' - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > View Measure Clear All diff --git a/wiki/View_Measure_Toggle_All.md b/wiki/View_Measure_Toggle_All.md index f96b7e889d..e4a0a1a30c 100644 --- a/wiki/View_Measure_Toggle_All.md +++ b/wiki/View_Measure_Toggle_All.md @@ -6,6 +6,8 @@ SeeAlso:[View Measure Clear All](View_Measure_Clear_All.md), [Part Measure Toggle All](Part_Measure_Toggle_All.md), [Part Measure Clear All](Part_Measure_Clear_All.md) --- +# View Measure Toggle All + ## Description The **View Measure Toggle All** command toggles the display of the active [3D view](3D_view.md)\'s [Part](Part_Workbench.md) measurements. @@ -23,4 +25,7 @@ The **View Measure Toggle All** command toggles the display of the active [3D vi - {{Std Base navi}} + {{Std Base navi}} + +--- +[documentation index](../README.md) > View Measure Toggle All diff --git a/wiki/View_provider.md b/wiki/View_provider.md index 2384d13f1c..bf5403b7e3 100644 --- a/wiki/View_provider.md +++ b/wiki/View_provider.md @@ -1,2 +1,5 @@ # View provider 1. REDIRECT [Viewprovider](Viewprovider.md) + +--- +[documentation index](../README.md) > View provider diff --git a/wiki/Viewprovider.md b/wiki/Viewprovider.md index 9773b432e5..0760f23ade 100644 --- a/wiki/Viewprovider.md +++ b/wiki/Viewprovider.md @@ -1,6 +1,4 @@ # Viewprovider - - ## Introduction [Viewproviders](Viewprovider.md) are classes that define the way objects will look like in the [tree view](tree_view.md) and the [3D view](3D_view.md), and how they will interact with certain graphical actions such as [selection](selection.md). @@ -137,3 +135,6 @@ See various examples in [Custom icon in tree view](Custom_icon_in_tree_view.md). {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Viewprovider diff --git a/wiki/Visibility.md b/wiki/Visibility.md index 3b71093446..2a8e38247e 100644 --- a/wiki/Visibility.md +++ b/wiki/Visibility.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > Visibility diff --git a/wiki/Washer.md b/wiki/Washer.md index 8bb918e10a..f18ddaf21c 100644 --- a/wiki/Washer.md +++ b/wiki/Washer.md @@ -1,2 +1,5 @@ # Washer 1. REDIRECT [Washers](Washers.md) + +--- +[documentation index](../README.md) > Washer diff --git a/wiki/Washers.md b/wiki/Washers.md index 2b9814e649..7b2572c362 100644 --- a/wiki/Washers.md +++ b/wiki/Washers.md @@ -1,7 +1,4 @@ # Washers - - - ## Some way to create a washer Comparison of some workflows to create a simple washer with FreeCAD. You can create many other workflows. @@ -20,3 +17,6 @@ Using Draft ![](images/washerDraft1a.png ) ![washer6a.png](images/washer6a.png ) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > Washers diff --git a/wiki/WebTools_BimServer.md b/wiki/WebTools_BimServer.md index 8efc1972d6..6c60abf0fc 100644 --- a/wiki/WebTools_BimServer.md +++ b/wiki/WebTools_BimServer.md @@ -5,6 +5,8 @@ Workbenches:[WebTools](WebTools_Workbench.md) --- +# WebTools BimServer + **Starting from FreeCAD v0.17, this tool has been removed from the Arch Workbench and is now part of the external [WebTools Workbench](WebTools_Workbench.md) that you can install via menu Tools → [Addon manager](Addon_manager.md). ** @@ -49,4 +51,5 @@ In order to use this command, the following conditions must be met: - Write a **Comment**, that will be the description (name) of the revision. - Press the **Upload** button. A dialog box will open to allow you to save the produced IFC file at a location of your choice before uploading it. If you press **Cancel**, the file will be saved under a temporary name in the system\'s temporary directory instead. - +--- +[documentation index](../README.md) > WebTools BimServer diff --git a/wiki/WebTools_Git.md b/wiki/WebTools_Git.md index 584a742ecd..531bbc21ae 100644 --- a/wiki/WebTools_Git.md +++ b/wiki/WebTools_Git.md @@ -6,6 +6,8 @@ Version:0.17 --- +# WebTools Git + **Starting from FreeCAD v0.17, this tool has been removed from the Arch Workbench and is now part of the external [[WebTools Workbench]] that you can install via menu Tools → [[Addon manager]]. ** @@ -120,4 +122,5 @@ Alternatively, if you want to invoke fcinfo with arguments (e.g., --gui) use thi [diff "fcinfo"] textconv = sh -c '/path/to/fcinfo --gui "$0"' - +--- +[documentation index](../README.md) > WebTools Git diff --git a/wiki/WebTools_Sketchfab.md b/wiki/WebTools_Sketchfab.md index 55976d5545..8c292651c8 100644 --- a/wiki/WebTools_Sketchfab.md +++ b/wiki/WebTools_Sketchfab.md @@ -5,6 +5,8 @@ Workbenches:[WebTools](WebTools_Workbench.md) --- +# WebTools Sketchfab + ## Description This tool allows you to export and upload objects to your [SketchFab](http://www.sketchfab.com) account. (v0.17) @@ -28,4 +30,5 @@ This tool allows you to export and upload objects to your [SketchFab](http://www - When you press the \"Upload button\", after the upload finished, if everything went well, the button will turn into a \"View your model online\" button, which, when clicked, will take you directly to the model page on Sketchfab. - Some formats, like OBJ, are interpreted differently by Sketchfab and FreeCAD. FreeCAD considers the Z axis to point upwards, while Sketchfab considers it points towards the person behind the screen. To remedy this, after the upload is finished, the exporter will use the Sketchfab API to rotate the model to its correct position. If this operation fails, you will be warned, but your model will still be correctly uploaded. You can rotate it manually in the Sketchfab interface, by pressing the right arrow besides the\"X\" axis in the model orientation tab. - +--- +[documentation index](../README.md) > WebTools Sketchfab diff --git a/wiki/WebTools_Workbench.md b/wiki/WebTools_Workbench.md index c5a6a439fb..cced2e128d 100644 --- a/wiki/WebTools_Workbench.md +++ b/wiki/WebTools_Workbench.md @@ -1,5 +1,4 @@ -# WebTools Workbench - WebTools workbench icon +# WebTools workbench icon WebTools Workbench ## Overview @@ -22,3 +21,6 @@ This workbench can be installed from the [Addon Manager](Std_AddonMgr.md). For m [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > WebTools Workbench diff --git a/wiki/Web_Workbench.md b/wiki/Web_Workbench.md index 7e6e015bf8..c19f612932 100644 --- a/wiki/Web_Workbench.md +++ b/wiki/Web_Workbench.md @@ -1,10 +1,4 @@ -# Web Workbench - - - - - -Web workbench icon +# Web workbench icon Web Workbench ## Introduction @@ -18,3 +12,6 @@ From this browser you are able to navigate the web, click on links, read the onl [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench diff --git a/wiki/Whiffle_Ball_tutorial.md b/wiki/Whiffle_Ball_tutorial.md index 956e899e1e..095a228ffa 100644 --- a/wiki/Whiffle_Ball_tutorial.md +++ b/wiki/Whiffle_Ball_tutorial.md @@ -1,5 +1,5 @@ # Whiffle Ball tutorial - {{TutorialInfo +{{TutorialInfo |Topic=Product design |Level=Beginner |Time=30 minutes @@ -248,4 +248,7 @@ We\'ll duplicate the previous two objects again to use once more as cutting obje {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Whiffle Ball tutorial diff --git a/wiki/WikiPages.md b/wiki/WikiPages.md index 236714c711..19d6e66f59 100644 --- a/wiki/WikiPages.md +++ b/wiki/WikiPages.md @@ -1,6 +1,4 @@ # WikiPages - - This page is an extension of the [Help:Editing](Help:Editing.md) page and gives common guidelines for writing and updating the FreeCAD wiki documentation. It summarizes several discussions and brainstorming sessions ## Before starting @@ -592,3 +590,6 @@ See [Glossary](Glossary.md). [Category:Documentation](Category:Documentation.md) [Category:Wiki](Category:Wiki.md) [Category:Wiki Documentation](Category:Wiki_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > WikiPages diff --git a/wiki/WikiRobots.md b/wiki/WikiRobots.md index 64a4b57514..18ac715a06 100644 --- a/wiki/WikiRobots.md +++ b/wiki/WikiRobots.md @@ -1,5 +1,5 @@ # WikiRobots - **Robots are intrinsically dangerous as they can automatically do a lot of damage. Use with extreme care!** +**Robots are intrinsically dangerous as they can automatically do a lot of damage. Use with extreme care!** ## Overview @@ -164,3 +164,6 @@ Replace a string in all the pages listed in the Arch category (a/k/a ) [Category:Arch](Category:Arch.md) [Category:Administration](Category:Administration.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > WikiRobots diff --git a/wiki/Wiki_Allpages_Template.md b/wiki/Wiki_Allpages_Template.md index e78dea0bba..46ad48a1fd 100644 --- a/wiki/Wiki_Allpages_Template.md +++ b/wiki/Wiki_Allpages_Template.md @@ -1,5 +1,4 @@ # Wiki Allpages Template - {{Special:Allpages/Template:}} \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_ @@ -14,3 +13,5 @@ {{Special:Allpages/Template}} +--- +[documentation index](../README.md) > Wiki Allpages Template diff --git a/wiki/Wikihouse_porting_tutorial.md b/wiki/Wikihouse_porting_tutorial.md index c94d3d0d7e..205c46a34c 100644 --- a/wiki/Wikihouse_porting_tutorial.md +++ b/wiki/Wikihouse_porting_tutorial.md @@ -1,7 +1,4 @@ # Wikihouse porting tutorial - - - {{TutorialInfo |Topic= Wikihouse porting tutorial |Level= Intermediate/Advanced @@ -136,4 +133,5 @@ The last step is simply to select all the sheets, then export them to DXF from m These files are ready to send to the shops that will do the actual cut. It would be possible to generate the G-Code to be sent to the CNC machine directly from FreeCAD too, but that is matter for another tutorial. - +--- +[documentation index](../README.md) > Wikihouse porting tutorial diff --git a/wiki/Wikipages.md b/wiki/Wikipages.md index b26a42464f..485dca1454 100644 --- a/wiki/Wikipages.md +++ b/wiki/Wikipages.md @@ -1,2 +1,5 @@ # Wikipages 1. REDIRECT [WikiPages](WikiPages.md) + +--- +[documentation index](../README.md) > Wikipages diff --git a/wiki/Windows_packaging.md b/wiki/Windows_packaging.md index 5bb2698c2a..3bd7f6715d 100644 --- a/wiki/Windows_packaging.md +++ b/wiki/Windows_packaging.md @@ -1,6 +1,5 @@ # Windows packaging - - - - [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > Windows packaging diff --git a/wiki/Wireframe_mode.md b/wiki/Wireframe_mode.md index dfedc6caaa..3e7afb1529 100644 --- a/wiki/Wireframe_mode.md +++ b/wiki/Wireframe_mode.md @@ -1,2 +1,5 @@ # Wireframe mode 1. REDIRECT [Std View Menu](Std_View_Menu.md) + +--- +[documentation index](../README.md) > Wireframe mode diff --git a/wiki/Wished_tools.md b/wiki/Wished_tools.md index aba7c97121..807b6b133a 100644 --- a/wiki/Wished_tools.md +++ b/wiki/Wished_tools.md @@ -1,5 +1,5 @@ # Wished tools - I begin this page as an attempt to gather end-user wishes on specific tools they would like to find in FreeCAD. Several cad users already chatted with me about cad tools, about what they use most, what they would like to see in FreeCAD, what they couldn\'t live without, etc\... Although FreeCAD is not meant to specifically become a replacement for any other famous CAD software (especially the one that begins with Auto and ends with CAD), I think this can become a good reference to know about end-users expectations, and maybe to prioritize things over others in development. +I begin this page as an attempt to gather end-user wishes on specific tools they would like to find in FreeCAD. Several cad users already chatted with me about cad tools, about what they use most, what they would like to see in FreeCAD, what they couldn\'t live without, etc\... Although FreeCAD is not meant to specifically become a replacement for any other famous CAD software (especially the one that begins with Auto and ends with CAD), I think this can become a good reference to know about end-users expectations, and maybe to prioritize things over others in development. If you are a CAD user and would like to add stuff here, feel free to edit, we would be glad to have your opinion here. @@ -81,3 +81,6 @@ If you are a CAD user and would like to add stuff here, feel free to edit, we wo [Category:Hubs](Category:Hubs.md) [Category:Roadmap](Category:Roadmap.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Wished tools diff --git a/wiki/Wood_Frame_Workbench.md b/wiki/Wood_Frame_Workbench.md index 513c7cae46..922ec6a84d 100644 --- a/wiki/Wood_Frame_Workbench.md +++ b/wiki/Wood_Frame_Workbench.md @@ -1,7 +1,4 @@ # Wood Frame Workbench - - - **This workbench is not actively developed or maintained, but looking for developers and maintainers.** @@ -59,3 +56,6 @@ Wood Frame is compatible with Freecad 0.19. [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Wood Frame Workbench diff --git a/wiki/Workbench_Concept.md b/wiki/Workbench_Concept.md index 1ead1a25f8..02458322a7 100644 --- a/wiki/Workbench_Concept.md +++ b/wiki/Workbench_Concept.md @@ -1,2 +1,5 @@ # Workbench Concept 1. REDIRECT [Workbenches](Workbenches.md) + +--- +[documentation index](../README.md) > Workbench Concept diff --git a/wiki/Workbench_Selector.md b/wiki/Workbench_Selector.md index 9bf21ec879..5241f1eb1e 100644 --- a/wiki/Workbench_Selector.md +++ b/wiki/Workbench_Selector.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Workbench Selector diff --git a/wiki/Workbench_creation.md b/wiki/Workbench_creation.md index 05bdee28c8..7b1e370350 100644 --- a/wiki/Workbench_creation.md +++ b/wiki/Workbench_creation.md @@ -1,11 +1,4 @@ # Workbench creation - - - - - - - ## Introduction This page will show you how to add a new workbench to the FreeCAD interface. [Workbenches](Workbenches.md) are containers for FreeCAD commands. They can be coded in Python, in C++, or in a mix of both, which has the advantage to ally the speed of C++ to the flexibility of Python. In all cases, though, your workbench will be launched by a set of two Python files. @@ -342,3 +335,6 @@ os.remove(qrc_filename) {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > Workbench creation diff --git a/wiki/Workbenches.md b/wiki/Workbenches.md index a4a580d5f7..694c08408b 100644 --- a/wiki/Workbenches.md +++ b/wiki/Workbenches.md @@ -1,9 +1,4 @@ # Workbenches - - - - - FreeCAD, like many modern design applications such as [Revit](wikipedia:Revit.md) or [CATIA](wikipedia:CATIA.md), is based on the concept of [Workbench](wikipedia:Workbench.md). 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. @@ -82,3 +77,6 @@ New workbenches are always in development, stay tuned! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches diff --git a/wiki/Workfeature_Workbench.md b/wiki/Workfeature_Workbench.md index cf6d399b4d..81954e6f2e 100644 --- a/wiki/Workfeature_Workbench.md +++ b/wiki/Workfeature_Workbench.md @@ -1,7 +1,4 @@ -# Workfeature Workbench - - -Workfeature workbench icon +# Workfeature workbench icon Workfeature Workbench {{Note|Note|Merge with [[Macro_WorkFeatures]]??}} @@ -79,3 +76,6 @@ This workbench can be installed from the [Addon Manager](Std_AddonMgr.md). [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Workfeature Workbench diff --git a/wiki/Wrapping_a_C++_class_in_Python.md b/wiki/Wrapping_a_C++_class_in_Python.md index b98fe2a068..63e46a0af1 100644 --- a/wiki/Wrapping_a_C++_class_in_Python.md +++ b/wiki/Wrapping_a_C++_class_in_Python.md @@ -1,2 +1,5 @@ # Wrapping a C++ class in Python 1. REDIRECT [Wrapping a Cplusplus class in Python](Wrapping_a_Cplusplus_class_in_Python.md) + +--- +[documentation index](../README.md) > Wrapping a C++ class in Python diff --git a/wiki/Wrapping_a_Cplusplus_class_in_Python.md b/wiki/Wrapping_a_Cplusplus_class_in_Python.md index 08d2a8fd5a..4c8a5eaa58 100644 --- a/wiki/Wrapping_a_Cplusplus_class_in_Python.md +++ b/wiki/Wrapping_a_Cplusplus_class_in_Python.md @@ -1,7 +1,4 @@ # Wrapping a Cplusplus class in Python - - - **This article is a stub. Please contribute your knowledge to it!** @@ -157,3 +154,6 @@ PyAPI_FUNC(int) PyArg_VaParseTupleAndKeywords (PyObject *, PyObject *, const cha {{Powerdocnavi}} [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Wrapping a Cplusplus class in Python diff --git a/wiki/Zoom_in.md b/wiki/Zoom_in.md index 0a3b2676fc..f190547b3d 100644 --- a/wiki/Zoom_in.md +++ b/wiki/Zoom_in.md @@ -1,2 +1,5 @@ # Zoom in 1. REDIRECT [Std View Menu](Std_View_Menu.md) + +--- +[documentation index](../README.md) > Zoom in diff --git a/wiki/Zoom_out.md b/wiki/Zoom_out.md index dee04c7331..5899fd798b 100644 --- a/wiki/Zoom_out.md +++ b/wiki/Zoom_out.md @@ -1,2 +1,5 @@ # Zoom out 1. REDIRECT [Std\_View\_Menu](Std_View_Menu.md) + +--- +[documentation index](../README.md) > Zoom out diff --git a/wiki/translations/Export_IFC_-_compiling_IfcOpenShell/Import.md b/wiki/translations/Export_IFC_-_compiling_IfcOpenShell/Import.md index 25fdd880cb..75512f354a 100644 --- a/wiki/translations/Export_IFC_-_compiling_IfcOpenShell/Import.md +++ b/wiki/translations/Export_IFC_-_compiling_IfcOpenShell/Import.md @@ -1,5 +1,5 @@ # Import/Export IFC - compiling IfcOpenShell - {{TutorialInfo +{{TutorialInfo |Topic=Arch Workbench |Level=Advanced |Time=120 minutes @@ -129,3 +129,6 @@ Cheers [Category:BIM](Category:BIM.md) [Category:Arch](Category:Arch.md) [Category:3rd Party](Category:3rd_Party.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Import/Export IFC - compiling IfcOpenShell diff --git a/wiki/translations/FAQ.md b/wiki/translations/FAQ.md index 6b402a0477..74c40d0100 100644 --- a/wiki/translations/FAQ.md +++ b/wiki/translations/FAQ.md @@ -1,2 +1,5 @@ # FAQ/ 1. REDIRECT [Frequently\_asked\_questions](Frequently_asked_questions.md) + +--- +[documentation index](../README.md) > FAQ/ diff --git a/wiki/translations/Linux/Compile_on_Unix.md b/wiki/translations/Linux/Compile_on_Unix.md index 96a9e8aad8..671104b667 100644 --- a/wiki/translations/Linux/Compile_on_Unix.md +++ b/wiki/translations/Linux/Compile_on_Unix.md @@ -1,2 +1,5 @@ # Compile on Unix/Linux 1. REDIRECT [Compile on Linux](Compile_on_Linux.md) + +--- +[documentation index](../README.md) > Compile on Unix/Linux diff --git a/wiki/translations/Robot_Integration/GSoC_Path.md b/wiki/translations/Robot_Integration/GSoC_Path.md index 5e03e4f496..ee0d3bdca0 100644 --- a/wiki/translations/Robot_Integration/GSoC_Path.md +++ b/wiki/translations/Robot_Integration/GSoC_Path.md @@ -45,3 +45,6 @@ Medium ### Additional Information [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) [Category:Path](Category:Path.md) [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > GSoC Path/Robot Integration diff --git a/wiki/translations/TechDrawTemplateExplained/Sandbox.md b/wiki/translations/TechDrawTemplateExplained/Sandbox.md index b4c0e224d1..2bd0ef90b3 100644 --- a/wiki/translations/TechDrawTemplateExplained/Sandbox.md +++ b/wiki/translations/TechDrawTemplateExplained/Sandbox.md @@ -1,8 +1,4 @@ # Sandbox/TechDrawTemplateExplained - - - - {{TOCright}} ## Introduction @@ -661,3 +657,6 @@ The editable texts are sorted according to font size. The group tag defines the Dies ist eine Sandbox [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox/TechDrawTemplateExplained diff --git a/wiki/translations/Unix/Compile_on_Linux.md b/wiki/translations/Unix/Compile_on_Linux.md index 5a47119c7f..f527ba5ac2 100644 --- a/wiki/translations/Unix/Compile_on_Linux.md +++ b/wiki/translations/Unix/Compile_on_Linux.md @@ -1,2 +1,5 @@ # Compile on Linux/Unix 1. REDIRECT [Compile\_on\_Linux](Compile_on_Linux.md) + +--- +[documentation index](../README.md) > Compile on Linux/Unix diff --git a/wiki/translations/Unix/Install_on_Linux.md b/wiki/translations/Unix/Install_on_Linux.md index e16f28dccb..3eac8b9b62 100644 --- a/wiki/translations/Unix/Install_on_Linux.md +++ b/wiki/translations/Unix/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/Unix 1. REDIRECT [Installing\_on\_Linux](Installing_on_Linux.md) + +--- +[documentation index](../README.md) > Install on Linux/Unix diff --git a/wiki/translations/_MultiPointsToWire/Design456_Workbench.md b/wiki/translations/_MultiPointsToWire/Design456_Workbench.md index 342639534d..a4e3456b6c 100644 --- a/wiki/translations/_MultiPointsToWire/Design456_Workbench.md +++ b/wiki/translations/_MultiPointsToWire/Design456_Workbench.md @@ -1,2 +1,5 @@ # Design456 Workbench/ MultiPointsToWire Multi Points to Wire (Closed or Open): + +--- +[documentation index](../README.md) > Design456 Workbench/ MultiPointsToWire diff --git a/wiki/translations/bg/About_FreeCAD.md b/wiki/translations/bg/About_FreeCAD.md index aaea8e60d6..d48363c275 100644 --- a/wiki/translations/bg/About_FreeCAD.md +++ b/wiki/translations/bg/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/bg - - - +# About FreeCAD/bg
@@ -82,3 +79,6 @@ FreeCAD се поддържа и развива от общност от ент [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/bg diff --git a/wiki/translations/bg/Arch_Module.md b/wiki/translations/bg/Arch_Module.md index 0a5942782b..c89e2e06c9 100644 --- a/wiki/translations/bg/Arch_Module.md +++ b/wiki/translations/bg/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/bg 1. REDIRECT [Arch\_Workbench/bg](Arch_Workbench/bg.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/bg diff --git a/wiki/translations/bg/Arch_Workbench.md b/wiki/translations/bg/Arch_Workbench.md index 547123cf2f..31167b7cef 100644 --- a/wiki/translations/bg/Arch_Workbench.md +++ b/wiki/translations/bg/Arch_Workbench.md @@ -1,7 +1,4 @@ # Arch Workbench/bg - - - {{docnav/bg|[Workbenches/bg](Workbenches/bg.md)|[Draft Workbench/bg](Draft_Workbench/bg.md)|IconL=|IconR=Workbench_Draft.svg}} Arch workbench icon @@ -144,3 +141,6 @@ The Arch module can be used in [Python](Python.md) scripts and [macros](macros.m [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/bg diff --git a/wiki/translations/bg/Category:Addons.md b/wiki/translations/bg/Category:Addons.md index 54768cc16f..4b09dca000 100644 --- a/wiki/translations/bg/Category:Addons.md +++ b/wiki/translations/bg/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/bg - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [Plot Module/bg](Plot_Module/bg.md) , [Ship Workbench/bg](Ship_Workbench/bg.md) , , [Category:Categories](Category:Categories.md) [Category:External Workbenches/bg](Category:External_Workbenches/bg.md) [Category:Macros/bg](Category:Macros/bg.md) + +--- +[documentation index](../README.md) > Category:Addons/bg diff --git a/wiki/translations/bg/Category:Administration.md b/wiki/translations/bg/Category:Administration.md index 13f1ff4680..1a2c482a55 100644 --- a/wiki/translations/bg/Category:Administration.md +++ b/wiki/translations/bg/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/bg](Template:Arch_Tools_navi/bg.md) , [Template:Drawing Tools navi/bg](Template:Drawing_Tools_navi/bg.md) , [Template:FEM Tools navi/bg](Template:FEM_Tools_navi/bg.md) , [Template:Mesh Tools navi/bg](Template:Mesh_Tools_navi/bg.md) , [Template:OpenSCAD Tools navi/bg](Template:OpenSCAD_Tools_navi/bg.md) , [Template:Part Tools navi/bg](Template:Part_Tools_navi/bg.md) , [Template:PartDesign Tools navi/bg](Template:PartDesign_Tools_navi/bg.md) , [Template:Path Tools navi/bg](Template:Path_Tools_navi/bg.md) , [Template:Plot Tools navi/bg](Template:Plot_Tools_navi/bg.md) , [Template:Raytracing Tools navi/bg](Template:Raytracing_Tools_navi/bg.md) , [Template:Robot Tools navi/bg](Template:Robot_Tools_navi/bg.md) , [Template:Ship Tools navi/bg](Template:Ship_Tools_navi/bg.md) , [Template:Sketcher Tools navi/bg](Template:Sketcher_Tools_navi/bg.md) [Category:Categories/bg](Category:Categories/bg.md) + +--- +[documentation index](../README.md) > Category:Administration/bg diff --git a/wiki/translations/bg/Category:Arch.md b/wiki/translations/bg/Category:Arch.md index 974e954173..6409b7cdee 100644 --- a/wiki/translations/bg/Category:Arch.md +++ b/wiki/translations/bg/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Template:Arch Tools navi/bg](Template:Arch_Tools_navi/bg.md) , [Arch Workbench/bg](Arch_Workbench/bg.md) [Category:User Documentation/bg](Category:User_Documentation/bg.md) [Category:BIM/bg](Category:BIM/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Arch/bg diff --git a/wiki/translations/bg/Category:BIM.md b/wiki/translations/bg/Category:BIM.md index 3cd7df884e..9e03213bd2 100644 --- a/wiki/translations/bg/Category:BIM.md +++ b/wiki/translations/bg/Category:BIM.md @@ -4,3 +4,6 @@ This category is for pages related to building information management (BIM). ### Contents: [Category:User Documentation/bg](Category:User_Documentation/bg.md) [Category:Arch/bg](Category:Arch/bg.md) + +--- +[documentation index](../README.md) > Category:BIM/bg diff --git a/wiki/translations/bg/Category:Categories.md b/wiki/translations/bg/Category:Categories.md index 47e3b9640e..f70fb25f03 100644 --- a/wiki/translations/bg/Category:Categories.md +++ b/wiki/translations/bg/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , , , [Category:Categories/bg](Category:Categories/bg.md) [Category:Addons/bg](Category:Addons/bg.md) [Category:Administration/bg](Category:Administration/bg.md) [Category:Categories/bg](Category:Categories/bg.md) [Category:Command Reference/bg](Category:Command_Reference/bg.md) [Category:Developer Documentation/bg](Category:Developer_Documentation/bg.md) [Category:Developer/bg](Category:Developer/bg.md) [Category:Hubs/bg](Category:Hubs/bg.md) [Category:Macros/bg](Category:Macros/bg.md) [Category:Template/bg](Category:Template/bg.md) [Category:Tutorials/bg](Category:Tutorials/bg.md) + +--- +[documentation index](../README.md) > Category:Categories/bg diff --git a/wiki/translations/bg/Category:Command_Reference.md b/wiki/translations/bg/Category:Command_Reference.md index d95b8d0e92..d28b6349f2 100644 --- a/wiki/translations/bg/Category:Command_Reference.md +++ b/wiki/translations/bg/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD [Command/bg](Command/bg [Template:GuiCommand/bg](Template:GuiCommand/bg.md) [Category:Categories/bg](Category:Categories/bg.md) + +--- +[documentation index](../README.md) > Category:Command Reference/bg diff --git a/wiki/translations/bg/Category:Developer.md b/wiki/translations/bg/Category:Developer.md index 8388b3face..b25addc1c7 100644 --- a/wiki/translations/bg/Category:Developer.md +++ b/wiki/translations/bg/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Compile on Linux/bg](Compile_on_Linux/bg.md) [Category:Developer Documentation/bg](Category:Developer_Documentation/bg.md) [Category:Categories/bg](Category:Categories/bg.md) + +--- +[documentation index](../README.md) > Category:Developer/bg diff --git a/wiki/translations/bg/Category:Developer_Documentation.md b/wiki/translations/bg/Category:Developer_Documentation.md index fca1acd869..29a6d9a4c7 100644 --- a/wiki/translations/bg/Category:Developer_Documentation.md +++ b/wiki/translations/bg/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Compile on Linux/bg](Compile_on_Linux/bg.md) , [Debugging/bg](Debugging/bg.md) , [Help FreeCAD/bg](Help_FreeCAD/bg.md) , [Installing on Linux/bg](Installing_on_Linux/bg.md) , [Localisation/bg](Localisation/bg.md) , [Macros/bg](Macros/bg.md) , [Category:Documentation/bg](Category:Documentation/bg.md) [Category:Categories/bg](Category:Categories/bg.md) [Category:Developer/bg](Category:Developer/bg.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/bg diff --git a/wiki/translations/bg/Category:Documentation.md b/wiki/translations/bg/Category:Documentation.md index 41ecc1c59c..625592f930 100644 --- a/wiki/translations/bg/Category:Documentation.md +++ b/wiki/translations/bg/Category:Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [Help FreeCAD/bg](Help_FreeCAD/bg.md) , [Main Page/bg](Main_Page/bg.md) , [Online Help Toc/bg](Online_Help_Toc/bg.md) , , , , [Category:Documentation/bg](Category:Documentation/bg.md) [Category:Developer Documentation/bg](Category:Developer_Documentation/bg.md) [Category:Documentation/bg](Category:Documentation/bg.md) [Category:Poweruser Documentation/bg](Category:Poweruser_Documentation/bg.md) [Category:User Documentation/bg](Category:User_Documentation/bg.md) + +--- +[documentation index](../README.md) > Category:Documentation/bg diff --git a/wiki/translations/bg/Category:Draft.md b/wiki/translations/bg/Category:Draft.md index 137247fd54..4e67b5e8f9 100644 --- a/wiki/translations/bg/Category:Draft.md +++ b/wiki/translations/bg/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/bg\" and \"Workben [Draft Workbench/bg](Draft_Workbench/bg.md) [Category:User Documentation/bg](Category:User_Documentation/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Draft/bg diff --git a/wiki/translations/bg/Category:Drawing.md b/wiki/translations/bg/Category:Drawing.md index 28dc8098de..0378a1a7ef 100644 --- a/wiki/translations/bg/Category:Drawing.md +++ b/wiki/translations/bg/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/bg](Drawing_Workbenc [Template:Drawing Tools navi/bg](Template:Drawing_Tools_navi/bg.md) , [Drawing Workbench/bg](Drawing_Workbench/bg.md) [Category:Obsolete Workbenches/bg](Category:Obsolete_Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Drawing/bg diff --git a/wiki/translations/bg/Category:External_Workbenches.md b/wiki/translations/bg/Category:External_Workbenches.md index f86cfa84ea..fa0e36f846 100644 --- a/wiki/translations/bg/Category:External_Workbenches.md +++ b/wiki/translations/bg/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [Plot Module/bg](Plot_Module/bg.md) , [Ship Workbench/bg](Ship_Workbench/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) [Category:Addons/bg](Category:Addons/bg.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/bg diff --git a/wiki/translations/bg/Category:FEM.md b/wiki/translations/bg/Category:FEM.md index 4f7565e476..810eabac73 100644 --- a/wiki/translations/bg/Category:FEM.md +++ b/wiki/translations/bg/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/bg](FEM_Workbench/bg.md) [Template:FEM Tools navi/bg](Template:FEM_Tools_navi/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:FEM/bg diff --git a/wiki/translations/bg/Category:Hubs.md b/wiki/translations/bg/Category:Hubs.md index 6e4a13fb90..3e544d4244 100644 --- a/wiki/translations/bg/Category:Hubs.md +++ b/wiki/translations/bg/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [User hub/bg](User_hub/bg.md) [Category:Categories/bg](Category:Categories/bg.md) + +--- +[documentation index](../README.md) > Category:Hubs/bg diff --git a/wiki/translations/bg/Category:Image.md b/wiki/translations/bg/Category:Image.md index 1b6c84f238..6bb039152e 100644 --- a/wiki/translations/bg/Category:Image.md +++ b/wiki/translations/bg/Category:Image.md @@ -4,3 +4,6 @@ This category lists pages related to the [Image Workbench/bg](Image_Workbench/bg ### Contents: [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Image/bg diff --git a/wiki/translations/bg/Category:Macros.md b/wiki/translations/bg/Category:Macros.md index fd1bff485c..a5c2c51483 100644 --- a/wiki/translations/bg/Category:Macros.md +++ b/wiki/translations/bg/Category:Macros.md @@ -6,3 +6,6 @@ This category contains macros to extend your FreeCAD installation with new funct [Macros/bg](Macros/bg.md) [Category:Addons](Category:Addons.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Macros/bg diff --git a/wiki/translations/bg/Category:Mesh.md b/wiki/translations/bg/Category:Mesh.md index 553d2d8d3a..bd412fc8ae 100644 --- a/wiki/translations/bg/Category:Mesh.md +++ b/wiki/translations/bg/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/bg](Mesh_Workbench/bg. [Template:Mesh Tools navi/bg](Template:Mesh_Tools_navi/bg.md) , [Mesh Workbench/bg](Mesh_Workbench/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Mesh/bg diff --git a/wiki/translations/bg/Category:Obsolete_Workbenches.md b/wiki/translations/bg/Category:Obsolete_Workbenches.md index d9ecd89303..8df2b104d7 100644 --- a/wiki/translations/bg/Category:Obsolete_Workbenches.md +++ b/wiki/translations/bg/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists obsolete workbenches, that is, workbenches that are old and [Drawing Workbench/bg](Drawing_Workbench/bg.md) , [Category:Workbenches/bg](Category:Workbenches/bg.md) [Category:Drawing/bg](Category:Drawing/bg.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/bg diff --git a/wiki/translations/bg/Category:OpenSCAD.md b/wiki/translations/bg/Category:OpenSCAD.md index f699ac0bfa..c11a798979 100644 --- a/wiki/translations/bg/Category:OpenSCAD.md +++ b/wiki/translations/bg/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/bg](OpenSCAD_Workb [Template:OpenSCAD Tools navi/bg](Template:OpenSCAD_Tools_navi/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/bg diff --git a/wiki/translations/bg/Category:Part.md b/wiki/translations/bg/Category:Part.md index 3fba00a6b1..14aee8a07e 100644 --- a/wiki/translations/bg/Category:Part.md +++ b/wiki/translations/bg/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part\_Workbench/bg](Part_Workbench/bg. [Template:Part Tools navi/bg](Template:Part_Tools_navi/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Part/bg diff --git a/wiki/translations/bg/Category:PartDesign.md b/wiki/translations/bg/Category:PartDesign.md index f5d555db75..a120cc3471 100644 --- a/wiki/translations/bg/Category:PartDesign.md +++ b/wiki/translations/bg/Category:PartDesign.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/bg](PartDesign_Wo [Template:PartDesign Tools navi/bg](Template:PartDesign_Tools_navi/bg.md) , [PartDesign Workbench/bg](PartDesign_Workbench/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:PartDesign/bg diff --git a/wiki/translations/bg/Category:Path.md b/wiki/translations/bg/Category:Path.md index 6a0d02270e..8ac749583b 100644 --- a/wiki/translations/bg/Category:Path.md +++ b/wiki/translations/bg/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/bg](PartDesign_Wo [Template:Path Tools navi/bg](Template:Path_Tools_navi/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Path/bg diff --git a/wiki/translations/bg/Category:Plot.md b/wiki/translations/bg/Category:Plot.md index 1fcf487c8c..fb9d7f670c 100644 --- a/wiki/translations/bg/Category:Plot.md +++ b/wiki/translations/bg/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/bg](Plot_Workbench/bg.m [Plot Module/bg](Plot_Module/bg.md) , [Template:Plot Tools navi/bg](Template:Plot_Tools_navi/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Plot/bg diff --git a/wiki/translations/bg/Category:Points.md b/wiki/translations/bg/Category:Points.md index da36a3a5a8..1e428e28c0 100644 --- a/wiki/translations/bg/Category:Points.md +++ b/wiki/translations/bg/Category:Points.md @@ -4,3 +4,6 @@ This category lists pages related to the [Points Workbench/bg](Points_Workbench/ ### Contents: [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Points/bg diff --git a/wiki/translations/bg/Category:Poweruser_Documentation.md b/wiki/translations/bg/Category:Poweruser_Documentation.md index 9e2a7a0ed2..67eb364578 100644 --- a/wiki/translations/bg/Category:Poweruser_Documentation.md +++ b/wiki/translations/bg/Category:Poweruser_Documentation.md @@ -4,3 +4,6 @@ This category shows documentation articles dealing with python scripting, which ### Contents: [Category:Documentation/bg](Category:Documentation/bg.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/bg diff --git a/wiki/translations/bg/Category:Preferences.md b/wiki/translations/bg/Category:Preferences.md index 43f9e43da8..8d18faf719 100644 --- a/wiki/translations/bg/Category:Preferences.md +++ b/wiki/translations/bg/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Preferences Editor/bg](Preferences_Editor/bg.md) + +--- +[documentation index](../README.md) > Category:Preferences/bg diff --git a/wiki/translations/bg/Category:Raytracing.md b/wiki/translations/bg/Category:Raytracing.md index 1a5c7e3612..364eba57e6 100644 --- a/wiki/translations/bg/Category:Raytracing.md +++ b/wiki/translations/bg/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/bg](Raytracing_Wo [Template:Raytracing Tools navi/bg](Template:Raytracing_Tools_navi/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Raytracing/bg diff --git a/wiki/translations/bg/Category:Robot.md b/wiki/translations/bg/Category:Robot.md index 43914b3d11..b34d481677 100644 --- a/wiki/translations/bg/Category:Robot.md +++ b/wiki/translations/bg/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/bg](Robot_Workbench/bg [Template:Robot Tools navi/bg](Template:Robot_Tools_navi/bg.md) , [Robot Workbench/bg](Robot_Workbench/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Robot/bg diff --git a/wiki/translations/bg/Category:Ship.md b/wiki/translations/bg/Category:Ship.md index 2b2fd44bf6..691cdf6f9a 100644 --- a/wiki/translations/bg/Category:Ship.md +++ b/wiki/translations/bg/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/bg](Ship_Workbench/bg.m [Template:Ship Tools navi/bg](Template:Ship_Tools_navi/bg.md) , [Ship Workbench/bg](Ship_Workbench/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Ship/bg diff --git a/wiki/translations/bg/Category:Sketcher.md b/wiki/translations/bg/Category:Sketcher.md index 671137f56b..fee53f390f 100644 --- a/wiki/translations/bg/Category:Sketcher.md +++ b/wiki/translations/bg/Category:Sketcher.md @@ -6,3 +6,6 @@ This category lists pages related to the [Sketcher Workbench/bg](Sketcher_Workbe [Template:Sketcher Tools navi/bg](Template:Sketcher_Tools_navi/bg.md) , [Sketcher Workbench/bg](Sketcher_Workbench/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Sketcher/bg diff --git a/wiki/translations/bg/Category:Surface.md b/wiki/translations/bg/Category:Surface.md index 8326f3e95a..bc917c2cb3 100644 --- a/wiki/translations/bg/Category:Surface.md +++ b/wiki/translations/bg/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/bg](Surface_Workbenc [Surface Workbench/bg](Surface_Workbench/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Surface/bg diff --git a/wiki/translations/bg/Category:TechDraw.md b/wiki/translations/bg/Category:TechDraw.md index 6476d9efd5..d5ae910990 100644 --- a/wiki/translations/bg/Category:TechDraw.md +++ b/wiki/translations/bg/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/bg](TechDraw_Workbe [TechDraw Workbench/bg](TechDraw_Workbench/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:TechDraw/bg diff --git a/wiki/translations/bg/Category:Template.md b/wiki/translations/bg/Category:Template.md index 3b9baa0c4b..f711e3c7b0 100644 --- a/wiki/translations/bg/Category:Template.md +++ b/wiki/translations/bg/Category:Template.md @@ -8,3 +8,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) [Template:Blender Navigation/bg](Template:Blender_Navigation/bg.md) , [Template:CAD Navigation/bg](Template:CAD_Navigation/bg.md) , [Template:Gesture Navigation/bg](Template:Gesture_Navigation/bg.md) , [Template:Inventor Navigation/bg](Template:Inventor_Navigation/bg.md) , [Template:MayaGesture Navigation/bg](Template:MayaGesture_Navigation/bg.md) , [Template:Property/bg](Template:Property/bg.md) , [Template:Touchpad Navigation/bg](Template:Touchpad_Navigation/bg.md) , [Category:Categories/bg](Category:Categories/bg.md) [Category:Template:Navigation/bg](Category:Template:Navigation/bg.md) + +--- +[documentation index](../README.md) > Category:Template/bg diff --git a/wiki/translations/bg/Category:Template:Navigation.md b/wiki/translations/bg/Category:Template:Navigation.md index 96ee77a8d9..8d9b419df1 100644 --- a/wiki/translations/bg/Category:Template:Navigation.md +++ b/wiki/translations/bg/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/bg](Template:Arch_Tools_navi/bg.md) , [Template:Drawing Tools navi/bg](Template:Drawing_Tools_navi/bg.md) , [Template:FEM Tools navi/bg](Template:FEM_Tools_navi/bg.md) , [Template:Mesh Tools navi/bg](Template:Mesh_Tools_navi/bg.md) , [Template:OpenSCAD Tools navi/bg](Template:OpenSCAD_Tools_navi/bg.md) , [Template:Part Tools navi/bg](Template:Part_Tools_navi/bg.md) , [Template:PartDesign Tools navi/bg](Template:PartDesign_Tools_navi/bg.md) , [Template:Path Tools navi/bg](Template:Path_Tools_navi/bg.md) , [Template:Plot Tools navi/bg](Template:Plot_Tools_navi/bg.md) , [Template:Raytracing Tools navi/bg](Template:Raytracing_Tools_navi/bg.md) , [Template:Robot Tools navi/bg](Template:Robot_Tools_navi/bg.md) , [Template:Ship Tools navi/bg](Template:Ship_Tools_navi/bg.md) , [Template:Sketcher Tools navi/bg](Template:Sketcher_Tools_navi/bg.md) [Category:Template/bg](Category:Template/bg.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/bg diff --git a/wiki/translations/bg/Category:Tutorials.md b/wiki/translations/bg/Category:Tutorials.md index 9c9a056226..ac9dbbdf4d 100644 --- a/wiki/translations/bg/Category:Tutorials.md +++ b/wiki/translations/bg/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials](Offsite_tutorials.md) and [Video tutorials [Tutorials/bg](Tutorials/bg.md) [Category:Categories/bg](Category:Categories/bg.md) + +--- +[documentation index](../README.md) > Category:Tutorials/bg diff --git a/wiki/translations/bg/Category:User_Documentation.md b/wiki/translations/bg/Category:User_Documentation.md index 063b1ca33a..4ad1fe66ac 100644 --- a/wiki/translations/bg/Category:User_Documentation.md +++ b/wiki/translations/bg/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [About FreeCAD/bg](About_FreeCAD/bg.md) , [Arch Workbench/bg](Arch_Workbench/bg.md) , [Compile on Linux/bg](Compile_on_Linux/bg.md) , [Document structure/bg](Document_structure/bg.md) , [Download/bg](Download/bg.md) , [Draft Workbench/bg](Draft_Workbench/bg.md) , [Drawing Workbench/bg](Drawing_Workbench/bg.md) , [Feature list/bg](Feature_list/bg.md) , [Getting started/bg](Getting_started/bg.md) , [Template:GuiCommand/bg](Template:GuiCommand/bg.md) , [Help FreeCAD/bg](Help_FreeCAD/bg.md) , [Installing on Linux/bg](Installing_on_Linux/bg.md) , [Installing on Mac/bg](Installing_on_Mac/bg.md) , [Installing on Windows/bg](Installing_on_Windows/bg.md) , [Interface Customization/bg](Interface_Customization/bg.md) , [Localisation/bg](Localisation/bg.md) , [Main Page/bg](Main_Page/bg.md) , [Mesh Workbench/bg](Mesh_Workbench/bg.md) , [Mouse navigation/bg](Mouse_navigation/bg.md) , [Online Help Toc/bg](Online_Help_Toc/bg.md) , [PartDesign Workbench/bg](PartDesign_Workbench/bg.md) , [Plot Module/bg](Plot_Module/bg.md) , [Preferences Editor/bg](Preferences_Editor/bg.md) , [Property editor/bg](Property_editor/bg.md) , [Robot Workbench/bg](Robot_Workbench/bg.md) , [Ship Workbench/bg](Ship_Workbench/bg.md) , [Sketcher Workbench/bg](Sketcher_Workbench/bg.md) , [Spreadsheet Workbench/bg](Spreadsheet_Workbench/bg.md) , [Surface Workbench/bg](Surface_Workbench/bg.md) , [TechDraw Workbench/bg](TechDraw_Workbench/bg.md) , [Tutorials/bg](Tutorials/bg.md) , [User hub/bg](User_hub/bg.md) , [Web Workbench/bg](Web_Workbench/bg.md) , [Workbenches/bg](Workbenches/bg.md) , , , , , , [Category:Documentation/bg](Category:Documentation/bg.md) [Category:Arch/bg](Category:Arch/bg.md) [Category:BIM/bg](Category:BIM/bg.md) [Category:Draft/bg](Category:Draft/bg.md) [Category:Macros/bg](Category:Macros/bg.md) [Category:Web/bg](Category:Web/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:User Documentation/bg diff --git a/wiki/translations/bg/Category:Web.md b/wiki/translations/bg/Category:Web.md index 3d974e9bf6..4a7cbbc42e 100644 --- a/wiki/translations/bg/Category:Web.md +++ b/wiki/translations/bg/Category:Web.md @@ -6,3 +6,6 @@ This category lists pages that relate to the [Web Workbench/bg](Web_Workbench/bg [Web Workbench/bg](Web_Workbench/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) [Category:User\_Documentation/bg](Category:User_Documentation/bg.md) + +--- +[documentation index](../README.md) > Category:Web/bg diff --git a/wiki/translations/bg/Category:Wiki.md b/wiki/translations/bg/Category:Wiki.md index dcfa506f32..dddf987bce 100644 --- a/wiki/translations/bg/Category:Wiki.md +++ b/wiki/translations/bg/Category:Wiki.md @@ -6,3 +6,6 @@ This category lists pages that relate to the [Web Workbench/bg](Web_Workbench/bg [Localisation/bg](Localisation/bg.md) [Category:Workbenches/bg](Category:Workbenches/bg.md) + +--- +[documentation index](../README.md) > Category:Wiki/bg diff --git a/wiki/translations/bg/Category:Workbenches.md b/wiki/translations/bg/Category:Workbenches.md index 7a37793aee..e31f33d223 100644 --- a/wiki/translations/bg/Category:Workbenches.md +++ b/wiki/translations/bg/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/bg](Arch_Workbench/bg.md) , [Draft Workbench/bg](Draft_Workbench/bg.md) , [Mesh Workbench/bg](Mesh_Workbench/bg.md) , [PartDesign Workbench/bg](PartDesign_Workbench/bg.md) , [Robot Workbench/bg](Robot_Workbench/bg.md) , [Sketcher Workbench/bg](Sketcher_Workbench/bg.md) , [Spreadsheet Workbench/bg](Spreadsheet_Workbench/bg.md) , [Surface Workbench/bg](Surface_Workbench/bg.md) , [TechDraw Workbench/bg](TechDraw_Workbench/bg.md) , [Web Workbench/bg](Web_Workbench/bg.md) , [Workbenches/bg](Workbenches/bg.md) , , , , , , , , , , , , , , , , , , , , , [Category:User Documentation/bg](Category:User_Documentation/bg.md) [Category:Arch/bg](Category:Arch/bg.md) [Category:Draft/bg](Category:Draft/bg.md) [Category:External Workbenches/bg](Category:External_Workbenches/bg.md) [Category:FEM/bg](Category:FEM/bg.md) [Category:Image/bg](Category:Image/bg.md) [Category:Mesh/bg](Category:Mesh/bg.md) [Category:Obsolete Workbenches/bg](Category:Obsolete_Workbenches/bg.md) [Category:OpenSCAD/bg](Category:OpenSCAD/bg.md) [Category:Part/bg](Category:Part/bg.md) [Category:PartDesign/bg](Category:PartDesign/bg.md) [Category:Path/bg](Category:Path/bg.md) [Category:Plot/bg](Category:Plot/bg.md) [Category:Points/bg](Category:Points/bg.md) [Category:Raytracing/bg](Category:Raytracing/bg.md) [Category:Robot/bg](Category:Robot/bg.md) [Category:Ship/bg](Category:Ship/bg.md) [Category:Sketcher/bg](Category:Sketcher/bg.md) [Category:Surface/bg](Category:Surface/bg.md) [Category:TechDraw/bg](Category:TechDraw/bg.md) [Category:Web/bg](Category:Web/bg.md) [Category:Wiki/bg](Category:Wiki/bg.md) + +--- +[documentation index](../README.md) > Category:Workbenches/bg diff --git a/wiki/translations/bg/CompileOnUnix.md b/wiki/translations/bg/CompileOnUnix.md index 8a8a8c7fa8..085b7ff136 100644 --- a/wiki/translations/bg/CompileOnUnix.md +++ b/wiki/translations/bg/CompileOnUnix.md @@ -1,2 +1,5 @@ # CompileOnUnix/bg 1. REDIRECT [Compile\_on\_Linux/bg](Compile_on_Linux/bg.md) + +--- +[documentation index](../README.md) > CompileOnUnix/bg diff --git a/wiki/translations/bg/Compile_on_Linux.md b/wiki/translations/bg/Compile_on_Linux.md index 488b73a5df..b8049d6d75 100644 --- a/wiki/translations/bg/Compile_on_Linux.md +++ b/wiki/translations/bg/Compile_on_Linux.md @@ -1,10 +1,4 @@ # Compile on Linux/bg - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -1216,3 +1210,6 @@ To update FreeCAD to latest build just repeat from step 3. Update AUR repo when [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Linux/bg diff --git a/wiki/translations/bg/Debugging.md b/wiki/translations/bg/Debugging.md index 07090c6243..9e6dc6e0f4 100644 --- a/wiki/translations/bg/Debugging.md +++ b/wiki/translations/bg/Debugging.md @@ -1,10 +1,4 @@ # Debugging/bg - - - - - - {{TOCright}} ## Test First @@ -336,3 +330,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/bg diff --git a/wiki/translations/bg/Document_structure.md b/wiki/translations/bg/Document_structure.md index a266125a65..fc64cfb1f8 100644 --- a/wiki/translations/bg/Document_structure.md +++ b/wiki/translations/bg/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/bg - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) Документът в FreeCAD се състои от всички обекти във вашата сцена. Може да съдържа групи от обекти (самата група може да се третира като обект). Един документ може да съдържа едновременно обекти от всеки работен плот. Може да сменяте между работните плотове колкото често желаете докато работите върху един документ. Целия документ (със всички създадени обекти) се запазва върху твърдия диск всеки път когато натиснете Save. Може да отворите няколко документа едновременно в FreeCAD, както и да отворите различни изгледи към същия документ. @@ -85,5 +79,5 @@ FreeCADGui.ActiveDocument.ActiveView
- - +--- +[documentation index](../README.md) > Document structure/bg diff --git a/wiki/translations/bg/Download.md b/wiki/translations/bg/Download.md index 74700d77fa..b9755bc787 100644 --- a/wiki/translations/bg/Download.md +++ b/wiki/translations/bg/Download.md @@ -1,5 +1,5 @@ # Download/bg - {{TOCright}} +{{TOCright}} ## Current stable version @@ -61,5 +61,5 @@ The FreeCAD community provides a wealth of additional modules and macros. They c
- - +--- +[documentation index](../README.md) > Download/bg diff --git a/wiki/translations/bg/Draft_Module.md b/wiki/translations/bg/Draft_Module.md index 2e56ebfd5a..4ab2012ab0 100644 --- a/wiki/translations/bg/Draft_Module.md +++ b/wiki/translations/bg/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/bg 1. REDIRECT [Draft\_Workbench/bg](Draft_Workbench/bg.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/bg diff --git a/wiki/translations/bg/Draft_Workbench.md b/wiki/translations/bg/Draft_Workbench.md index b11faa19a3..25551b125c 100644 --- a/wiki/translations/bg/Draft_Workbench.md +++ b/wiki/translations/bg/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/bg - - - - - -Draft workbench icon +# Draft workbench icon Draft Workbench/bg {{TOCright}} @@ -367,3 +361,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/bg diff --git a/wiki/translations/bg/Drawing_Module.md b/wiki/translations/bg/Drawing_Module.md index 0c58595100..6c9688eb4b 100644 --- a/wiki/translations/bg/Drawing_Module.md +++ b/wiki/translations/bg/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/bg 1. REDIRECT [Drawing\_Workbench/bg](Drawing_Workbench/bg.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/bg diff --git a/wiki/translations/bg/Drawing_Workbench.md b/wiki/translations/bg/Drawing_Workbench.md index 7000db8385..c2bd17c554 100644 --- a/wiki/translations/bg/Drawing_Workbench.md +++ b/wiki/translations/bg/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/bg - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** Drawing workbench icon @@ -84,3 +81,6 @@ Some notes on the programming side of the drawing module will be added to the [D }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/bg diff --git a/wiki/translations/bg/Feature_list.md b/wiki/translations/bg/Feature_list.md index 06e5905eae..922d3ab2b2 100644 --- a/wiki/translations/bg/Feature_list.md +++ b/wiki/translations/bg/Feature_list.md @@ -1,6 +1,4 @@ # Feature list/bg - - This is an extensive, but not complete, list of features which FreeCAD implements. If you want to look into the future see the [Development roadmap](Development_roadmap.md) for a quick overview of what\'s coming next. Also, the [Screenshots](Screenshots.md) are a nice place to go. @@ -106,3 +104,6 @@ Power users have created various custom [external workbenches](external_workbenc [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/bg diff --git a/wiki/translations/bg/Getting_started.md b/wiki/translations/bg/Getting_started.md index 74e6527129..ffca12cd8b 100644 --- a/wiki/translations/bg/Getting_started.md +++ b/wiki/translations/bg/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/bg - - - - - - {{TOCright}} ## Увод @@ -348,3 +342,6 @@ There are two types of addons: [Category:User Documentation/bg](Category:User_Documentation/bg.md) + +--- +[documentation index](../README.md) > Getting started/bg diff --git a/wiki/translations/bg/Help_FreeCAD.md b/wiki/translations/bg/Help_FreeCAD.md index 732bcb68c1..addbbaa0a1 100644 --- a/wiki/translations/bg/Help_FreeCAD.md +++ b/wiki/translations/bg/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/bg - - ## Introduction @@ -87,3 +85,6 @@ Writing code for FreeCAD is not hard, and you don\'t need any permission, you ca [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command Reference]] page lists and documents all of the FreeCAD ](Category:Command Reference]] page lists and documents all of the FreeCAD .md) > Help FreeCAD/bg diff --git a/wiki/translations/bg/Install_on_Linux.md b/wiki/translations/bg/Install_on_Linux.md index 20d35c7b9e..75cf0d8059 100644 --- a/wiki/translations/bg/Install_on_Linux.md +++ b/wiki/translations/bg/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/bg 1. REDIRECT [Installing\_on\_Linux/bg](Installing_on_Linux/bg.md) + +--- +[documentation index](../README.md) > Install on Linux/bg diff --git a/wiki/translations/bg/Install_on_Mac.md b/wiki/translations/bg/Install_on_Mac.md index 04dcc1a3d1..fb8be28fe3 100644 --- a/wiki/translations/bg/Install_on_Mac.md +++ b/wiki/translations/bg/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/bg 1. REDIRECT [Installing\_on\_Mac/bg](Installing_on_Mac/bg.md) + +--- +[documentation index](../README.md) > Install on Mac/bg diff --git a/wiki/translations/bg/Install_on_Unix.md b/wiki/translations/bg/Install_on_Unix.md index 3214be4302..d2346031fb 100644 --- a/wiki/translations/bg/Install_on_Unix.md +++ b/wiki/translations/bg/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/bg 1. REDIRECT [Installing\_on\_Linux/bg](Installing_on_Linux/bg.md) + +--- +[documentation index](../README.md) > Install on Unix/bg diff --git a/wiki/translations/bg/Install_on_Windows.md b/wiki/translations/bg/Install_on_Windows.md index b9c1701b68..a27eb9797c 100644 --- a/wiki/translations/bg/Install_on_Windows.md +++ b/wiki/translations/bg/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/bg 1. REDIRECT [Installing\_on\_Windows/bg](Installing_on_Windows/bg.md) + +--- +[documentation index](../README.md) > Install on Windows/bg diff --git a/wiki/translations/bg/Installing.md b/wiki/translations/bg/Installing.md index 09d4313ba3..8939d25829 100644 --- a/wiki/translations/bg/Installing.md +++ b/wiki/translations/bg/Installing.md @@ -1,2 +1,5 @@ # Installing/bg 1. REDIRECT [Installing\_additional\_components/bg](Installing_additional_components/bg.md) + +--- +[documentation index](../README.md) > Installing/bg diff --git a/wiki/translations/bg/Installing_additional_components.md b/wiki/translations/bg/Installing_additional_components.md index 4cdd7ee918..5b2aedcd9c 100644 --- a/wiki/translations/bg/Installing_additional_components.md +++ b/wiki/translations/bg/Installing_additional_components.md @@ -1,10 +1,4 @@ # Installing additional components/bg - - - - - - {{TOCright}} # Introduction @@ -148,3 +142,6 @@ The [ODA File Converter](https://www.opendesign.com/guestfiles/oda_file_converte [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Installing additional components/bg diff --git a/wiki/translations/bg/Installing_on_Linux.md b/wiki/translations/bg/Installing_on_Linux.md index 25f9338827..89ba5ffabe 100644 --- a/wiki/translations/bg/Installing_on_Linux.md +++ b/wiki/translations/bg/Installing_on_Linux.md @@ -1,9 +1,4 @@ # Installing on Linux/bg - - - - - ## Overview @@ -377,3 +372,6 @@ Once you\'ve got FreeCAD installed, it\'s time to [get started](Getting_started. [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/bg diff --git a/wiki/translations/bg/Installing_on_Mac.md b/wiki/translations/bg/Installing_on_Mac.md index 08bdfedb35..2d5591ae3d 100644 --- a/wiki/translations/bg/Installing_on_Mac.md +++ b/wiki/translations/bg/Installing_on_Mac.md @@ -1,10 +1,4 @@ # Installing on Mac/bg - - - - - -
FreeCAD може да бъде инсталиран на Mac OS X само с една стъпка използвайки инсталаторът по-долу. @@ -73,5 +67,5 @@ The FreeCAD installer is provided as a app package (.app) enclosed in a disk ima
- - +--- +[documentation index](../README.md) > Installing on Mac/bg diff --git a/wiki/translations/bg/Installing_on_Windows.md b/wiki/translations/bg/Installing_on_Windows.md index 8df2d08781..580d7d5b5f 100644 --- a/wiki/translations/bg/Installing_on_Windows.md +++ b/wiki/translations/bg/Installing_on_Windows.md @@ -1,9 +1,4 @@ # Installing on Windows/bg - - - - - Най-лесния начин за инсталиране на FreeCAD на Windows е да свалите инсталаторът по-долу. @@ -240,5 +235,5 @@ FreeCAD is running, but it has been reported that the OpenGL display does not wo - - +--- +[documentation index](../README.md) > Installing on Windows/bg diff --git a/wiki/translations/bg/Interface_Customization.md b/wiki/translations/bg/Interface_Customization.md index 9920657802..e67683fc1d 100644 --- a/wiki/translations/bg/Interface_Customization.md +++ b/wiki/translations/bg/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/bg - - - - - - {{TOCright}} ## Introduction @@ -305,4 +299,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/bg diff --git a/wiki/translations/bg/Localisation.md b/wiki/translations/bg/Localisation.md index a56330a768..e94cb9c77d 100644 --- a/wiki/translations/bg/Localisation.md +++ b/wiki/translations/bg/Localisation.md @@ -1,10 +1,4 @@ # Localisation/bg - - - - - - {{TOCright}} ## Overview @@ -239,3 +233,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/bg diff --git a/wiki/translations/bg/Macros.md b/wiki/translations/bg/Macros.md index 3666fe608e..366989590e 100644 --- a/wiki/translations/bg/Macros.md +++ b/wiki/translations/bg/Macros.md @@ -1,7 +1,4 @@ # Macros/bg - - - {{TOCright}} ## Introduction @@ -74,3 +71,6 @@ You can manually install extensions, however, it is much simpler to just use the }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/bg diff --git a/wiki/translations/bg/Main_Page.md b/wiki/translations/bg/Main_Page.md index 9f7fedb073..368cfd1bb7 100644 --- a/wiki/translations/bg/Main_Page.md +++ b/wiki/translations/bg/Main_Page.md @@ -1,7 +1,4 @@ # Main Page/bg - - -
Това е документацията на [FreeCAD](http://www.freecadweb.org). Информацията кояте се съдържа тук е това което оформя документацията която се доставя с FreeCAD. Има два основни начина да преглеждате документацията: като проучвате потребителски центрове или като следвате ръководството. Това е работа в прогрес която се пише от общност от потребители и разработчици на FreeCAD. Ако намерите информация която е грешна или липсва, моля [помогнете](Help_FreeCAD/bg.md)! @@ -97,3 +94,6 @@ FreeCAD може да бъде компилиран на всички платф [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/bg diff --git a/wiki/translations/bg/Mesh_Module.md b/wiki/translations/bg/Mesh_Module.md index 45c4dfdc31..cf1fd5cd59 100644 --- a/wiki/translations/bg/Mesh_Module.md +++ b/wiki/translations/bg/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/bg 1. REDIRECT [Mesh Workbench/bg](Mesh_Workbench/bg.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/bg diff --git a/wiki/translations/bg/Mesh_Workbench.md b/wiki/translations/bg/Mesh_Workbench.md index 45ba8a2b2a..4861e66916 100644 --- a/wiki/translations/bg/Mesh_Workbench.md +++ b/wiki/translations/bg/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/bg - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench/bg {{TOCright}} @@ -111,3 +105,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/bg diff --git a/wiki/translations/bg/Mouse_Model.md b/wiki/translations/bg/Mouse_Model.md index 92905b1766..b17fc839a9 100644 --- a/wiki/translations/bg/Mouse_Model.md +++ b/wiki/translations/bg/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/bg 1. REDIRECT [Mouse\_navigation/bg](Mouse_navigation/bg.md) + +--- +[documentation index](../README.md) > Mouse Model/bg diff --git a/wiki/translations/bg/Mouse_navigation.md b/wiki/translations/bg/Mouse_navigation.md index f70b3cf7bf..0924fa3745 100644 --- a/wiki/translations/bg/Mouse_navigation.md +++ b/wiki/translations/bg/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/bg - - - - - - {{TOCright}} ## Overview @@ -263,5 +257,5 @@ The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mous {{docnav|Getting started/bg|Document structure/bg}} - - +--- +[documentation index](../README.md) > Mouse navigation/bg diff --git a/wiki/translations/bg/Online_Help_Toc.md b/wiki/translations/bg/Online_Help_Toc.md index 20d1a7fe4d..b8d68b29a6 100644 --- a/wiki/translations/bg/Online_Help_Toc.md +++ b/wiki/translations/bg/Online_Help_Toc.md @@ -1,7 +1,4 @@ # Online Help Toc/bg - - -
Това е съдържанието което се използва за автоматичното създаване на системата за онлайн помощ във FreeCad. Версия за разпечатване на този наръчник на английски език е на разположение на [releases page](https://github.com/FreeCAD/FreeCAD/releases) @@ -143,3 +140,6 @@ There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction. [Category:Documentation/bg](Category:Documentation/bg.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/bg diff --git a/wiki/translations/bg/PartDesign_Workbench.md b/wiki/translations/bg/PartDesign_Workbench.md index 81328fd021..6c4cad0762 100644 --- a/wiki/translations/bg/PartDesign_Workbench.md +++ b/wiki/translations/bg/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/bg - - -PartDesign workbench icon +# PartDesign workbench icon PartDesign Workbench/bg {{TOCright}} @@ -217,3 +214,6 @@ Some additional functionality found in the Part Design menu: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/bg diff --git a/wiki/translations/bg/Plot_Module.md b/wiki/translations/bg/Plot_Module.md index 1e364c7872..e8a9d161ff 100644 --- a/wiki/translations/bg/Plot_Module.md +++ b/wiki/translations/bg/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/bg - - -Plot workbench icon +# Plot workbench icon Plot Module/bg {{TOCright}} @@ -64,3 +61,6 @@ Since the Plot Workbench is a layer on top of `matplotlib`, you are free to use }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/bg diff --git a/wiki/translations/bg/Plot_Workbench.md b/wiki/translations/bg/Plot_Workbench.md index a2b4ab25d9..457b5322e3 100644 --- a/wiki/translations/bg/Plot_Workbench.md +++ b/wiki/translations/bg/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/bg 1. REDIRECT [Plot\_Module/bg](Plot_Module/bg.md) + +--- +[documentation index](../README.md) > Plot Workbench/bg diff --git a/wiki/translations/bg/Preferences_Editor.md b/wiki/translations/bg/Preferences_Editor.md index 4b0d9cb1d5..c6dbeb002e 100644 --- a/wiki/translations/bg/Preferences_Editor.md +++ b/wiki/translations/bg/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/bg - - - - - - {{TOCright}} ## Introduction @@ -716,3 +710,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/bg diff --git a/wiki/translations/bg/Property_editor.md b/wiki/translations/bg/Property_editor.md index 848d6da365..116d4d0143 100644 --- a/wiki/translations/bg/Property_editor.md +++ b/wiki/translations/bg/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/bg - - - - - - {{TOCright}} @@ -301,4 +295,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/bg diff --git a/wiki/translations/bg/Ray_Tracing_Workbench.md b/wiki/translations/bg/Ray_Tracing_Workbench.md index d9ea261980..f4e0a55999 100644 --- a/wiki/translations/bg/Ray_Tracing_Workbench.md +++ b/wiki/translations/bg/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/bg 1. REDIRECT [Raytracing\_Workbench/bg](Raytracing_Workbench/bg.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/bg diff --git a/wiki/translations/bg/Robot_Workbench.md b/wiki/translations/bg/Robot_Workbench.md index b3a515fc7b..9635df3ca2 100644 --- a/wiki/translations/bg/Robot_Workbench.md +++ b/wiki/translations/bg/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/bg - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. @@ -81,3 +75,6 @@ See the [Robot API example](Robot_API_example.md) for a description of the funct }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/bg diff --git a/wiki/translations/bg/Ship_Workbench.md b/wiki/translations/bg/Ship_Workbench.md index 31497c00ef..df7506327c 100644 --- a/wiki/translations/bg/Ship_Workbench.md +++ b/wiki/translations/bg/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/bg - - -Ship workbench icon +# Ship workbench icon Ship Workbench/bg {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/bg diff --git a/wiki/translations/bg/Sketcher_Module.md b/wiki/translations/bg/Sketcher_Module.md index e135bbf3ac..1ec0833e73 100644 --- a/wiki/translations/bg/Sketcher_Module.md +++ b/wiki/translations/bg/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/bg 1. REDIRECT [Sketcher Workbench/bg](Sketcher_Workbench/bg.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/bg diff --git a/wiki/translations/bg/Sketcher_Workbench.md b/wiki/translations/bg/Sketcher_Workbench.md index 764f5f268f..c86a9e90d4 100644 --- a/wiki/translations/bg/Sketcher_Workbench.md +++ b/wiki/translations/bg/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/bg - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/bg {{TOCright}} @@ -322,3 +316,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [Category:User Documentation/bg](Category:User_Documentation/bg.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/bg diff --git a/wiki/translations/bg/Spinning.md b/wiki/translations/bg/Spinning.md index 9b0529bac8..3497ca5449 100644 --- a/wiki/translations/bg/Spinning.md +++ b/wiki/translations/bg/Spinning.md @@ -1,2 +1,5 @@ # Spinning/bg 1. REDIRECT [Std\_DemoMode](Std_DemoMode.md) + +--- +[documentation index](../README.md) > Spinning/bg diff --git a/wiki/translations/bg/Spreadsheet_Module.md b/wiki/translations/bg/Spreadsheet_Module.md index 1b18fdbdd8..6f71d36574 100644 --- a/wiki/translations/bg/Spreadsheet_Module.md +++ b/wiki/translations/bg/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module/bg 1. REDIRECT [Spreadsheet Workbench/bg](Spreadsheet_Workbench/bg.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module/bg diff --git a/wiki/translations/bg/Spreadsheet_Workbench.md b/wiki/translations/bg/Spreadsheet_Workbench.md index 18390799f3..e17baeae39 100644 --- a/wiki/translations/bg/Spreadsheet_Workbench.md +++ b/wiki/translations/bg/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/bg - {{Page_in_progress}} @@ -235,3 +234,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/bg diff --git a/wiki/translations/bg/Std_InterfaceCustomization.md b/wiki/translations/bg/Std_InterfaceCustomization.md index 9db90ee0aa..1141985b27 100644 --- a/wiki/translations/bg/Std_InterfaceCustomization.md +++ b/wiki/translations/bg/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/bg 1. REDIRECT [Interface\_Customization/bg](Interface_Customization/bg.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/bg diff --git a/wiki/translations/bg/Surface_Module.md b/wiki/translations/bg/Surface_Module.md index 46a1a0c2e9..8f46f71dc3 100644 --- a/wiki/translations/bg/Surface_Module.md +++ b/wiki/translations/bg/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/bg 1. REDIRECT [Surface\_Workbench/bg](Surface_Workbench/bg.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/bg diff --git a/wiki/translations/bg/Surface_Workbench.md b/wiki/translations/bg/Surface_Workbench.md index 77f6aa34a5..dabba6aa82 100644 --- a/wiki/translations/bg/Surface_Workbench.md +++ b/wiki/translations/bg/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/bg - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/bg {{TOCright}} @@ -57,3 +51,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/bg diff --git a/wiki/translations/bg/TechDraw_Module.md b/wiki/translations/bg/TechDraw_Module.md index 8d0ac32655..5ad81204a8 100644 --- a/wiki/translations/bg/TechDraw_Module.md +++ b/wiki/translations/bg/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/bg 1. REDIRECT [TechDraw\_Workbench/bg](TechDraw_Workbench/bg.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/bg diff --git a/wiki/translations/bg/TechDraw_Workbench.md b/wiki/translations/bg/TechDraw_Workbench.md index 5863fe6c02..b2ac023d6c 100644 --- a/wiki/translations/bg/TechDraw_Workbench.md +++ b/wiki/translations/bg/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/bg - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/bg ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/bg diff --git a/wiki/translations/bg/Tutorials.md b/wiki/translations/bg/Tutorials.md index d42a1f88cc..043de8d3e6 100644 --- a/wiki/translations/bg/Tutorials.md +++ b/wiki/translations/bg/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/bg - - - - - - {{TOCright}} This page presents a selection of high quality written tutorials. A complete, unsorted list of tutorials can be found in [:Category:Tutorials](:Category:Tutorials.md), a complete and sortable one can be found in the [table below](Tutorials#Tutorials_-_Comprehensive_list.md). @@ -283,3 +277,6 @@ Here are listed all the tutorials that are not in the manual **regardless of the [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials]], a complete and sortable one can be found in the ](Category:Tutorials]], a complete and sortable one can be found in the .md) > Tutorials/bg diff --git a/wiki/translations/bg/User_hub.md b/wiki/translations/bg/User_hub.md index 598d81196a..7d7d9e3fe5 100644 --- a/wiki/translations/bg/User_hub.md +++ b/wiki/translations/bg/User_hub.md @@ -1,5 +1,4 @@ -# User hub/bg - +# User hub/bg ------------------------------------------------------------------------ @@ -219,3 +218,6 @@ Since FreeCAD 0.17, many workbenches can be installed using the [Addon Manager]( [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/bg diff --git a/wiki/translations/bg/Web_Workbench.md b/wiki/translations/bg/Web_Workbench.md index 07e14bb2fd..79edc7e669 100644 --- a/wiki/translations/bg/Web_Workbench.md +++ b/wiki/translations/bg/Web_Workbench.md @@ -1,10 +1,4 @@ -# Web Workbench/bg - - - - - -Web workbench icon +# Web workbench icon Web Workbench/bg ## Introduction @@ -19,3 +13,6 @@ From this browser you are able to navigate the web, click on links, read the onl [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/bg diff --git a/wiki/translations/bg/Workbenches.md b/wiki/translations/bg/Workbenches.md index 2ac27d5a6f..3fddd578c1 100644 --- a/wiki/translations/bg/Workbenches.md +++ b/wiki/translations/bg/Workbenches.md @@ -1,9 +1,4 @@ # Workbenches/bg - - - - - FreeCAD, like many modern design applications such as [Revit](wikipedia:Revit.md) or [CATIA](wikipedia:CATIA.md), is based on the concept of [Workbench](wikipedia:Workbench.md). 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. @@ -89,3 +84,6 @@ New workbenches are always in development, stay tuned! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/bg diff --git a/wiki/translations/cn/Category:Administration.md b/wiki/translations/cn/Category:Administration.md index 862c53ae37..5a2a36cd5b 100644 --- a/wiki/translations/cn/Category:Administration.md +++ b/wiki/translations/cn/Category:Administration.md @@ -4,3 +4,6 @@ This category contains articles and categories about wiki administrative subject ### Contents: [Category:Categories/cn](Category:Categories/cn.md) + +--- +[documentation index](../README.md) > Category:Administration/cn diff --git a/wiki/translations/cn/Category:Categories.md b/wiki/translations/cn/Category:Categories.md index a0493a9d84..d7d08be6f3 100644 --- a/wiki/translations/cn/Category:Categories.md +++ b/wiki/translations/cn/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , [Category:Categories/cn](Category:Categories/cn.md) [Category:Administration/cn](Category:Administration/cn.md) [Category:Categories/cn](Category:Categories/cn.md) [Category:Command Reference/cn](Category:Command_Reference/cn.md) [Category:Documentation/cn](Category:Documentation/cn.md) [Category:Python Code/cn](Category:Python_Code/cn.md) + +--- +[documentation index](../README.md) > Category:Categories/cn diff --git a/wiki/translations/cn/Category:Command_Reference.md b/wiki/translations/cn/Category:Command_Reference.md index 5c13ae8ecb..b3ca355700 100644 --- a/wiki/translations/cn/Category:Command_Reference.md +++ b/wiki/translations/cn/Category:Command_Reference.md @@ -4,3 +4,6 @@ This category contains the help pages of each of FreeCAD command. ### Contents: [Category:Categories/cn](Category:Categories/cn.md) + +--- +[documentation index](../README.md) > Category:Command Reference/cn diff --git a/wiki/translations/cn/Category:Developer_Documentation.md b/wiki/translations/cn/Category:Developer_Documentation.md index 455e1019b6..b8dc415a39 100644 --- a/wiki/translations/cn/Category:Developer_Documentation.md +++ b/wiki/translations/cn/Category:Developer_Documentation.md @@ -4,3 +4,6 @@ This category gathers documentation article mostly aimed at programmers ### Contents: [Category:Documentation/cn](Category:Documentation/cn.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/cn diff --git a/wiki/translations/cn/Category:Documentation.md b/wiki/translations/cn/Category:Documentation.md index aa1f8e31b5..a22de59f30 100644 --- a/wiki/translations/cn/Category:Documentation.md +++ b/wiki/translations/cn/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation , , [Category:Categories/cn](Category:Categories/cn.md) [Category:Developer Documentation/cn](Category:Developer_Documentation/cn.md) [Category:Poweruser Documentation/cn](Category:Poweruser_Documentation/cn.md) [Category:User Documentation/cn](Category:User_Documentation/cn.md) + +--- +[documentation index](../README.md) > Category:Documentation/cn diff --git a/wiki/translations/cn/Category:Poweruser_Documentation.md b/wiki/translations/cn/Category:Poweruser_Documentation.md index b65373a37e..f462334a94 100644 --- a/wiki/translations/cn/Category:Poweruser_Documentation.md +++ b/wiki/translations/cn/Category:Poweruser_Documentation.md @@ -4,3 +4,6 @@ This category shows documentation articles dealing with python scripting, which ### Contents: [Category:Documentation/cn](Category:Documentation/cn.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/cn diff --git a/wiki/translations/cn/Category:Python_Code.md b/wiki/translations/cn/Category:Python_Code.md index f9839d3e90..1ab6a2f533 100644 --- a/wiki/translations/cn/Category:Python_Code.md +++ b/wiki/translations/cn/Category:Python_Code.md @@ -4,3 +4,6 @@ This category contains python code examples for FreeCAD ### Contents: [Category:Categories/cn](Category:Categories/cn.md) + +--- +[documentation index](../README.md) > Category:Python Code/cn diff --git a/wiki/translations/cn/Category:Template:Navigation.md b/wiki/translations/cn/Category:Template:Navigation.md index 6c5b9acd04..10589e890f 100644 --- a/wiki/translations/cn/Category:Template:Navigation.md +++ b/wiki/translations/cn/Category:Template:Navigation.md @@ -4,3 +4,6 @@ This category lists templates that create navigation elements. ### Contents: [Category:Template/tr](Category:Template/tr.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/cn diff --git a/wiki/translations/cn/Category:User_Documentation.md b/wiki/translations/cn/Category:User_Documentation.md index 11c0fc02c0..a88183cee2 100644 --- a/wiki/translations/cn/Category:User_Documentation.md +++ b/wiki/translations/cn/Category:User_Documentation.md @@ -4,3 +4,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr ### Contents: [Category:Documentation/cn](Category:Documentation/cn.md) + +--- +[documentation index](../README.md) > Category:User Documentation/cn diff --git a/wiki/translations/cs/3D_input_devices.md b/wiki/translations/cs/3D_input_devices.md index 26ecde67a6..67e9c2e53d 100644 --- a/wiki/translations/cs/3D_input_devices.md +++ b/wiki/translations/cs/3D_input_devices.md @@ -1,5 +1,5 @@ # 3D input devices/cs - FreeCAD podporuje některá speciální vstupní zařízení jako jsou 3D myši. Ty umožňují uživateli objekty otáčet, posunovat a zoomovat ve 3 rozměrech. +FreeCAD podporuje některá speciální vstupní zařízení jako jsou 3D myši. Ty umožňují uživateli objekty otáčet, posunovat a zoomovat ve 3 rozměrech. ## Podporovaný hardware @@ -13,3 +13,6 @@
[category:Documentation](category:Documentation.md) + +--- +[documentation index](../README.md) > 3D input devices/cs diff --git a/wiki/translations/cs/ANSI_templates.md b/wiki/translations/cs/ANSI_templates.md index f38085305d..13e8a8e1fa 100644 --- a/wiki/translations/cs/ANSI_templates.md +++ b/wiki/translations/cs/ANSI_templates.md @@ -1,5 +1,5 @@ # ANSI templates/cs - Tato stránka obsahuje seznam šablon podle American National Standards Institute (ANSI) [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) standardů +Tato stránka obsahuje seznam šablon podle American National Standards Institute (ANSI) [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) standardů ### ANSI A @@ -62,3 +62,6 @@ Šablony jsou nakreselny uživatelem [Quick61](User:Quick61.md) a jejich seznam je na [FreeCAD-výkresové-šablony](https://github.com/quick61/FreeCAD-Drawing-Templates). [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > ANSI templates/cs diff --git a/wiki/translations/cs/API_documentation.md b/wiki/translations/cs/API_documentation.md index b708556f5d..478b3487a5 100644 --- a/wiki/translations/cs/API_documentation.md +++ b/wiki/translations/cs/API_documentation.md @@ -5,3 +5,6 @@ This category gathers article that list objects and methods available to the pyt **This section contains obsolete data, and is in the process of being transferred to autogenerated API documentation on http://www.freecadweb.org/api** [Category:Categories/cs](Category:Categories/cs.md) + +--- +[documentation index](../README.md) > API documentation/cs diff --git a/wiki/translations/cs/About_FreeCAD.md b/wiki/translations/cs/About_FreeCAD.md index 5f056cdbfe..0597226bdf 100644 --- a/wiki/translations/cs/About_FreeCAD.md +++ b/wiki/translations/cs/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/cs - - - +# About FreeCAD/cs
@@ -82,3 +79,6 @@ FreeCAD je udržován a vyvíjen komunitou nadšených vývojářů a uživatel [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/cs diff --git a/wiki/translations/cs/Aeroplane.md b/wiki/translations/cs/Aeroplane.md index 9d8e70fe30..eb965f6268 100644 --- a/wiki/translations/cs/Aeroplane.md +++ b/wiki/translations/cs/Aeroplane.md @@ -1,7 +1,4 @@ # Aeroplane/cs - - -
@@ -240,4 +237,7 @@ Doufám, že Vám tento výukový program pomohl orientovat se v otáčení obje {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Aeroplane/cs diff --git a/wiki/translations/cs/Arch_Add.md b/wiki/translations/cs/Arch_Add.md index 124110ed5e..aeb91bbc5d 100644 --- a/wiki/translations/cs/Arch_Add.md +++ b/wiki/translations/cs/Arch_Add.md @@ -1,3 +1,4 @@ +# Arch Add/cs --- - GuiCommand:/cs Name:Arch Add Name/cs:Arch Přidat Workbenches:[MenuLocation:Arch → Add SeeAlso:[[Arch Remove/cs|Remove](Arch_Workbench/cs___Arch]].md)--- @@ -106,11 +107,5 @@ Arch.addComponents(Wall2, Wall) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Add/cs diff --git a/wiki/translations/cs/Arch_Axis.md b/wiki/translations/cs/Arch_Axis.md index 214627f8f2..b06e1d4cf0 100644 --- a/wiki/translations/cs/Arch_Axis.md +++ b/wiki/translations/cs/Arch_Axis.md @@ -1,3 +1,4 @@ +# Arch Axis/cs --- - GuiCommand:/cs Name:Arch Axis Name/cs:Osy Workbenches:[[Arch_Workbench/cs Architektura]]|MenuLocation:Arch → Osy Shortcut:A X--- @@ -125,3 +126,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/cs](Category:Arch/cs.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Axis/cs diff --git a/wiki/translations/cs/Arch_Building.md b/wiki/translations/cs/Arch_Building.md index 762d16b2ee..c77c7c95af 100644 --- a/wiki/translations/cs/Arch_Building.md +++ b/wiki/translations/cs/Arch_Building.md @@ -1,3 +1,4 @@ +# Arch Building/cs --- - GuiCommand:/cs Name:Arch Building Name/cs:Arch Budova Workbenches:[MenuLocation:Arch → Building Shortcut:B U SeeAlso:[[Arch Floor/cs|Arch Podlaží](Arch_Workbench/cs___Architektura]].md), [Arch Staveniště](Arch_Site/cs.md)--- @@ -100,5 +101,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Building/cs diff --git a/wiki/translations/cs/Arch_Check.md b/wiki/translations/cs/Arch_Check.md index b94cca769c..281554ac5f 100644 --- a/wiki/translations/cs/Arch_Check.md +++ b/wiki/translations/cs/Arch_Check.md @@ -1,3 +1,4 @@ +# Arch Check/cs --- - GuiCommand:/cs Name:Arch Check Name/cs:Arch Check Workbenches:[MenuLocation:Arch → Utilities → Check SeeAlso:[[Arch CloseHoles/cs|Arch CloseHoles](Arch_Workbench/cs___Arch]].md)--- @@ -81,11 +82,5 @@ list_bad = Arch.check([Wall1, Wall2, Circle, Wire], includehidden=True) print(list_bad) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Check/cs diff --git a/wiki/translations/cs/Arch_CloseHoles.md b/wiki/translations/cs/Arch_CloseHoles.md index bb3f49fe1a..b5a550f6e6 100644 --- a/wiki/translations/cs/Arch_CloseHoles.md +++ b/wiki/translations/cs/Arch_CloseHoles.md @@ -1,3 +1,4 @@ +# Arch CloseHoles/cs --- - GuiCommand:/cs Name:Arch CloseHoles Name/cs:Arch CloseHoles Workbenches:[MenuLocation:Arch → Utilities → Close Holes SeeAlso:[[Arch Check](Arch_Workbench/cs___Arch]].md)--- @@ -82,11 +83,5 @@ FreeCAD.ActiveDocument.recompute() solid = Arch.closeHole(Wall.Shape) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloseHoles/cs diff --git a/wiki/translations/cs/Arch_DAE.md b/wiki/translations/cs/Arch_DAE.md index 37e2ec9d28..83b28a1f88 100644 --- a/wiki/translations/cs/Arch_DAE.md +++ b/wiki/translations/cs/Arch_DAE.md @@ -1,7 +1,4 @@ # Arch DAE/cs - - -
@@ -51,3 +48,6 @@ Importní funkcionalita Collady v modulu Architektura závisí na [pycollada](ht [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch DAE/cs diff --git a/wiki/translations/cs/Arch_Floor.md b/wiki/translations/cs/Arch_Floor.md index d29fd63bc3..0ed1d33f41 100644 --- a/wiki/translations/cs/Arch_Floor.md +++ b/wiki/translations/cs/Arch_Floor.md @@ -1,3 +1,4 @@ +# Arch Floor/cs --- - GuiCommand:/cs Name:Arch Floor Name/cs:Arch Floor Workbenches:[MenuLocation:Arch → Floor Shortcut:F L SeeAlso:[[Arch Building/cs|Arch Building](Arch_Workbench/cs___Arch]].md), [Arch Site](Arch_Site/cs.md)--- @@ -103,8 +104,5 @@ FreeCAD.ActiveDocument.recompute()
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor/cs diff --git a/wiki/translations/cs/Arch_Frame.md b/wiki/translations/cs/Arch_Frame.md index bca6665742..abc859c392 100644 --- a/wiki/translations/cs/Arch_Frame.md +++ b/wiki/translations/cs/Arch_Frame.md @@ -8,6 +8,8 @@ SeeAlso:[[Arch Wall/cs]], [[Arch Structure/cs]] --- +# Arch Frame/cs +
@@ -86,8 +88,5 @@ FreeCAD.ActiveDocument.recompute()
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Frame/cs diff --git a/wiki/translations/cs/Arch_IFC.md b/wiki/translations/cs/Arch_IFC.md index f2c197e756..b7ae2dce8f 100644 --- a/wiki/translations/cs/Arch_IFC.md +++ b/wiki/translations/cs/Arch_IFC.md @@ -1,7 +1,4 @@ # Arch IFC/cs - - -
@@ -98,3 +95,6 @@ If the shape of exported objects is based on an extrusion or a boolean operation [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IFC/cs diff --git a/wiki/translations/cs/Arch_IfcExplorer.md b/wiki/translations/cs/Arch_IfcExplorer.md index fbe7e282a7..01345e98ec 100644 --- a/wiki/translations/cs/Arch_IfcExplorer.md +++ b/wiki/translations/cs/Arch_IfcExplorer.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch IFC]] --- +# Arch IfcExplorer/cs +
@@ -53,3 +55,6 @@ Důvod pro použití tohoto prohlížeče je jednoduše v tom, že si můžete z [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcExplorer/cs diff --git a/wiki/translations/cs/Arch_MeshToShape.md b/wiki/translations/cs/Arch_MeshToShape.md index 56f3a5061f..0e12ed792a 100644 --- a/wiki/translations/cs/Arch_MeshToShape.md +++ b/wiki/translations/cs/Arch_MeshToShape.md @@ -1,3 +1,4 @@ +# Arch MeshToShape/cs --- - GuiCommand:/cs Name:Arch MeshToShape Name/cs:Arch MeshToShape Workbenches:[MenuLocation:Arch → Utilities → Mesh to Shape SeeAlso:[[Arch RemoveShape/cs|Arch RemoveShape](Arch_Workbench/cs___Arch]].md)--- @@ -73,8 +74,5 @@ FreeCAD.ActiveDocument.recompute() new_obj = Arch.meshToShape(Box) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MeshToShape/cs diff --git a/wiki/translations/cs/Arch_Module.md b/wiki/translations/cs/Arch_Module.md index ce737c930a..886b9a2951 100644 --- a/wiki/translations/cs/Arch_Module.md +++ b/wiki/translations/cs/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/cs 1. REDIRECT [Arch\_Workbench/cs](Arch_Workbench/cs.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/cs diff --git a/wiki/translations/cs/Arch_OBJ.md b/wiki/translations/cs/Arch_OBJ.md index 6c9d35cff4..5fcfd769c5 100644 --- a/wiki/translations/cs/Arch_OBJ.md +++ b/wiki/translations/cs/Arch_OBJ.md @@ -1,7 +1,4 @@ # Arch OBJ/cs - - -
@@ -71,3 +68,6 @@ mesh.write(Filename="new_example.obj", Material=face_colors, Format="obj") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch OBJ/cs diff --git a/wiki/translations/cs/Arch_Rebar.md b/wiki/translations/cs/Arch_Rebar.md index dafe4a6d87..d797b35d90 100644 --- a/wiki/translations/cs/Arch_Rebar.md +++ b/wiki/translations/cs/Arch_Rebar.md @@ -1,3 +1,4 @@ +# Arch Rebar/cs --- - GuiCommand:/cs Name:Arch Rebar Name/cs:Arch Rebar Workbenches:[MenuLocation:Arch → Rebar Shortcut:R B SeeAlso:[[Arch Structure/cs|Arch Structure](Arch_Workbench/cs___Arch]].md)--- @@ -129,3 +130,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/cs](Category:Arch/cs.md) [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar/cs diff --git a/wiki/translations/cs/Arch_Remove.md b/wiki/translations/cs/Arch_Remove.md index d8ab6e768b..ecc7824ccd 100644 --- a/wiki/translations/cs/Arch_Remove.md +++ b/wiki/translations/cs/Arch_Remove.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Add]] --- +# Arch Remove/cs +
@@ -119,8 +121,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove/cs diff --git a/wiki/translations/cs/Arch_RemoveShape.md b/wiki/translations/cs/Arch_RemoveShape.md index eb0435416b..6a0d53ab2a 100644 --- a/wiki/translations/cs/Arch_RemoveShape.md +++ b/wiki/translations/cs/Arch_RemoveShape.md @@ -6,6 +6,8 @@ SeeAlso:[Arch MeshToShape](Arch_MeshToShape/cs.md) --- +# Arch RemoveShape/cs + @@ -85,5 +87,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch RemoveShape/cs diff --git a/wiki/translations/cs/Arch_Roof.md b/wiki/translations/cs/Arch_Roof.md index 8d7018434c..f6842b769b 100644 --- a/wiki/translations/cs/Arch_Roof.md +++ b/wiki/translations/cs/Arch_Roof.md @@ -1,3 +1,4 @@ +# Arch Roof/cs --- - GuiCommand:/cs Name:Arch Roof Name/cs:Arch Střecha Workbenches:[[Arch_Workbench/cs Arch]]|MenuLocation:Arch → Střecha Shortcut:R F--- @@ -146,3 +147,6 @@ doc.recompute() [Category:Arch/cs](Category:Arch/cs.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Roof/cs diff --git a/wiki/translations/cs/Arch_SectionPlane.md b/wiki/translations/cs/Arch_SectionPlane.md index 0a39113225..9dc7476a87 100644 --- a/wiki/translations/cs/Arch_SectionPlane.md +++ b/wiki/translations/cs/Arch_SectionPlane.md @@ -1,3 +1,4 @@ +# Arch SectionPlane/cs --- - GuiCommand:/cs Name:Arch SectionPlane Name/cs:Arch SectionPlane Workbenches:[[Arch_Workbench/cs Arch]]|MenuLocation:Arch → Section Plane Shortcut:S P--- @@ -163,3 +164,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/cs](Category:Arch/cs.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane/cs diff --git a/wiki/translations/cs/Arch_SelectNonSolidMeshes.md b/wiki/translations/cs/Arch_SelectNonSolidMeshes.md index 81f318bd70..24ecee18c7 100644 --- a/wiki/translations/cs/Arch_SelectNonSolidMeshes.md +++ b/wiki/translations/cs/Arch_SelectNonSolidMeshes.md @@ -1,3 +1,4 @@ +# Arch SelectNonSolidMeshes/cs --- - GuiCommand:/cs Name:Arch SelectNonSolidMeshes Name/cs:SelectNonSolidMeshes Workbenches:[MenuLocation:Arch → Utilities → Select non solid SeeAlso:[[Arch MeshToShape/cs|Arch MeshToShape](Arch_Workbench/cs___Arch]].md)--- @@ -31,8 +32,5 @@ Tento nástroj identifikuje a vybírá netělesové (neuzavřené) (non-[manifol - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SelectNonSolidMeshes/cs diff --git a/wiki/translations/cs/Arch_Site.md b/wiki/translations/cs/Arch_Site.md index 876102b2d3..fa311dfb26 100644 --- a/wiki/translations/cs/Arch_Site.md +++ b/wiki/translations/cs/Arch_Site.md @@ -1,3 +1,4 @@ +# Arch Site/cs --- - GuiCommand:/cs Name:Arch Site Name/cs:Arch Site Workbenches:[MenuLocation:Arch → Site Shortcut:S I SeeAlso:[[Arch Floor/cs|Arch Floor](Arch_Workbench/cs___Arch]].md), [Arch Building](Arch_Building/cs.md)--- @@ -205,3 +206,6 @@ FreeCAD.Gui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node) [Category:Arch/cs](Category:Arch/cs.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Site/cs diff --git a/wiki/translations/cs/Arch_Space.md b/wiki/translations/cs/Arch_Space.md index 7929d5a881..b1ad9e5aac 100644 --- a/wiki/translations/cs/Arch_Space.md +++ b/wiki/translations/cs/Arch_Space.md @@ -9,6 +9,8 @@ Version:0.14 --- +# Arch Space/cs + @@ -172,5 +174,5 @@ Arch.removeSpaceBoundaries(Space, selection) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Space/cs diff --git a/wiki/translations/cs/Arch_SplitMesh.md b/wiki/translations/cs/Arch_SplitMesh.md index 10140d12f7..8d2e4da487 100644 --- a/wiki/translations/cs/Arch_SplitMesh.md +++ b/wiki/translations/cs/Arch_SplitMesh.md @@ -1,3 +1,4 @@ +# Arch SplitMesh/cs --- - GuiCommand:/cs Name:Arch SplitMesh Name/cs:Arch Rozděl síť Workbenches:[MenuLocation:Arch → Utilities → Split Mesh SeeAlso:[[Arch SelectNonSolidMeshes/cs|Arch SelectNonSolidMeshes](Arch_Workbench/cs___Arch]].md)--- @@ -80,11 +81,5 @@ mesh_obj.ViewObject.DisplayMode = "Flat Lines" new_list = Arch.splitMesh(mesh_obj) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SplitMesh/cs diff --git a/wiki/translations/cs/Arch_Stairs.md b/wiki/translations/cs/Arch_Stairs.md index 70b638ca21..3221e52607 100644 --- a/wiki/translations/cs/Arch_Stairs.md +++ b/wiki/translations/cs/Arch_Stairs.md @@ -8,6 +8,8 @@ Version:0.14 --- +# Arch Stairs/cs + @@ -138,5 +140,5 @@ Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Stairs/cs diff --git a/wiki/translations/cs/Arch_Structure.md b/wiki/translations/cs/Arch_Structure.md index 2fca21f4ef..26a8b514ac 100644 --- a/wiki/translations/cs/Arch_Structure.md +++ b/wiki/translations/cs/Arch_Structure.md @@ -1,3 +1,4 @@ +# Arch Structure/cs --- - GuiCommand:/cs Name:Arch_Structure Name/cs:Struktury Workbenches:[MenuLocation:Arch → Struktura Shortcut:S T SeeAlso:[[Arch Wall/cs|Zed'](Arch_Workbench/cs___Arch]].md)--- @@ -158,8 +159,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/cs diff --git a/wiki/translations/cs/Arch_Survey.md b/wiki/translations/cs/Arch_Survey.md index 645f9b6854..de2fabd3c2 100644 --- a/wiki/translations/cs/Arch_Survey.md +++ b/wiki/translations/cs/Arch_Survey.md @@ -1,3 +1,4 @@ +# Arch Survey/cs --- - GuiCommand:/cs Name:Arch Survey Name/cs:Architektura Přehled Workbenches:[MenuLocation:Arch → Survey SeeAlso:[[Macro FCInfo/cs|FcInfo (macro)](Arch_Workbench/cs___Architektura]].md)--- @@ -85,8 +86,5 @@ for obj in selection: print("Center of Mass: %f", element.CenterOfMass) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Survey/cs diff --git a/wiki/translations/cs/Arch_Wall.md b/wiki/translations/cs/Arch_Wall.md index f4316510e4..ae8918e5d6 100644 --- a/wiki/translations/cs/Arch_Wall.md +++ b/wiki/translations/cs/Arch_Wall.md @@ -1,3 +1,4 @@ +# Arch Wall/cs --- - GuiCommand:/cs Name:Arch Wall Name/cs:Zed' Workbenches:[MenuLocation:Arch → Zed' Shortcut:W A SeeAlso:[[Arch Structure/cs|Struktura](Arch_Workbench/cs___Architettura]].md)--- @@ -213,3 +214,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/cs](Category:Arch/cs.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/cs diff --git a/wiki/translations/cs/Arch_Window.md b/wiki/translations/cs/Arch_Window.md index 3f37702af3..19b0cb2102 100644 --- a/wiki/translations/cs/Arch_Window.md +++ b/wiki/translations/cs/Arch_Window.md @@ -1,3 +1,4 @@ +# Arch Window/cs --- - GuiCommand:/cs Name:Arch Window Name/cs:Arch Okno Workbenches:[MenuLocation:Arch → Window Shortcut:W I SeeAlso:[[Arch Wall/cs|Arch Wall](Arch_Workbench/cs___Arch]].md)--- @@ -263,3 +264,6 @@ Door = Arch.makeWindowPreset("Simple door", [Category:Arch/cs](Category:Arch/cs.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Window/cs diff --git a/wiki/translations/cs/Arch_Workbench.md b/wiki/translations/cs/Arch_Workbench.md index b3b9312891..19fc3d3952 100644 --- a/wiki/translations/cs/Arch_Workbench.md +++ b/wiki/translations/cs/Arch_Workbench.md @@ -1,7 +1,4 @@ # Arch Workbench/cs - - - {{docnav/cs|[Workbenches/cs](Workbenches/cs.md)|[Draft Workbench/cs](Draft_Workbench/cs.md)|IconL=|IconR=Workbench_Draft.svg}} Arch workbench icon @@ -121,3 +118,6 @@ Modul Architektura může být použit v pythonovských skriptech a [makrech](ma [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/cs diff --git a/wiki/translations/cs/Arch_templates.md b/wiki/translations/cs/Arch_templates.md index 7dc9da24a5..147cb684a7 100644 --- a/wiki/translations/cs/Arch_templates.md +++ b/wiki/translations/cs/Arch_templates.md @@ -1,7 +1,4 @@ # Arch templates/cs - - -
Na této stránce je seznam šablon podle standardů American National Standards Institute (ANSI) [Stavebnictví](http://en.wikipedia.org/wiki/American_National_Standards_Institute) @@ -100,3 +97,6 @@ Na této stránce je seznam šablon podle standardů American National Standards Šablony jsou nakresleny uživatelem [Quick61](User:Quick61.md) a jejich seznam je na [FreeCAD-Drawing-Templates](https://github.com/quick61/FreeCAD-Drawing-Templates). [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch templates/cs diff --git a/wiki/translations/cs/Arch_tutorial.md b/wiki/translations/cs/Arch_tutorial.md index 8a4f5e9a3f..5bd32eacc6 100644 --- a/wiki/translations/cs/Arch_tutorial.md +++ b/wiki/translations/cs/Arch_tutorial.md @@ -1,7 +1,4 @@ # Arch tutorial/cs - - -
@@ -663,4 +660,7 @@ Soubor vytvořený tímto výukovým programem najdete [zde](http://yorik.uncrea {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch tutorial/cs diff --git a/wiki/translations/cs/Assembly_Workbench.md b/wiki/translations/cs/Assembly_Workbench.md index 4b371b659d..d9528a1d28 100644 --- a/wiki/translations/cs/Assembly_Workbench.md +++ b/wiki/translations/cs/Assembly_Workbench.md @@ -1,2 +1,5 @@ # Assembly Workbench/cs 1. REDIRECT [Assembly project/cs](Assembly_project/cs.md) + +--- +[documentation index](../README.md) > Assembly Workbench/cs diff --git a/wiki/translations/cs/Assembly_project.md b/wiki/translations/cs/Assembly_project.md index 0d5de05c1e..bcae577616 100644 --- a/wiki/translations/cs/Assembly_project.md +++ b/wiki/translations/cs/Assembly_project.md @@ -1,7 +1,4 @@ # Assembly project/cs - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -156,3 +153,6 @@ Interface to allow (external) (multi)physics simulation software to take control - \... [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Assembly project/cs diff --git a/wiki/translations/cs/Basic_modeling_tutorial.md b/wiki/translations/cs/Basic_modeling_tutorial.md index af053356f7..7bc34a6856 100644 --- a/wiki/translations/cs/Basic_modeling_tutorial.md +++ b/wiki/translations/cs/Basic_modeling_tutorial.md @@ -1,5 +1,5 @@ # Basic modeling tutorial/cs - {{TutorialInfo/cs +{{TutorialInfo/cs |Topic= Introduction to modelling |Level= Beginner |Time= 15 minutes @@ -204,4 +204,7 @@ Instrukce uvedené výše budou fungovat bez ohledu na to co je tlačítku. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Basic modeling tutorial/cs diff --git a/wiki/translations/cs/Branding.md b/wiki/translations/cs/Branding.md index 8a043b0ed1..867ef9972f 100644 --- a/wiki/translations/cs/Branding.md +++ b/wiki/translations/cs/Branding.md @@ -1,10 +1,4 @@ # Branding/cs - - - - - - {{TOCright}} ## Overview @@ -100,3 +94,6 @@ All listed tags are optional. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Branding/cs diff --git a/wiki/translations/cs/Category:API.md b/wiki/translations/cs/Category:API.md index 92c9bffdc1..6439fa6e64 100644 --- a/wiki/translations/cs/Category:API.md +++ b/wiki/translations/cs/Category:API.md @@ -9,3 +9,6 @@ This category gathers article that list objects and methods available to the pyt [Draft API/cs](Draft_API/cs.md) , [Placement API/cs](Placement_API/cs.md) [Category:Categories/cs](Category:Categories/cs.md) + +--- +[documentation index](../README.md) > Category:API/cs diff --git a/wiki/translations/cs/Category:Addons.md b/wiki/translations/cs/Category:Addons.md index 0d2dd4297d..e437208c1a 100644 --- a/wiki/translations/cs/Category:Addons.md +++ b/wiki/translations/cs/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/cs - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [Plot Module/cs](Plot_Module/cs.md) , [Ship Workbench/cs](Ship_Workbench/cs.md) , [Category:Categories](Category:Categories.md) [Category:External Workbenches/cs](Category:External_Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:Addons/cs diff --git a/wiki/translations/cs/Category:Administration.md b/wiki/translations/cs/Category:Administration.md index 558e9d300f..2d1dad7590 100644 --- a/wiki/translations/cs/Category:Administration.md +++ b/wiki/translations/cs/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/cs](Template:Arch_Tools_navi/cs.md) , [Template:Drawing Tools navi/cs](Template:Drawing_Tools_navi/cs.md) , [Template:FEM Tools navi/cs](Template:FEM_Tools_navi/cs.md) , [Template:Mesh Tools navi/cs](Template:Mesh_Tools_navi/cs.md) , [Template:OpenSCAD Tools navi/cs](Template:OpenSCAD_Tools_navi/cs.md) , [Template:Part Tools navi/cs](Template:Part_Tools_navi/cs.md) , [Template:PartDesign Tools navi/cs](Template:PartDesign_Tools_navi/cs.md) , [Template:Path Tools navi/cs](Template:Path_Tools_navi/cs.md) , [Template:Plot Tools navi/cs](Template:Plot_Tools_navi/cs.md) , [Template:Powerdocnavi/cs](Template:Powerdocnavi/cs.md) , [Template:PropertyData/cs](Template:PropertyData/cs.md) , [Template:PropertyView/cs](Template:PropertyView/cs.md) , [Template:Raytracing Tools navi/cs](Template:Raytracing_Tools_navi/cs.md) , [Template:Robot Tools navi/cs](Template:Robot_Tools_navi/cs.md) , [Template:Ship Tools navi/cs](Template:Ship_Tools_navi/cs.md) , [Template:Sketcher Tools navi/cs](Template:Sketcher_Tools_navi/cs.md) , [Template:Tutorials navi/cs](Template:Tutorials_navi/cs.md) , [Template:UnfinishedDocu/cs](Template:UnfinishedDocu/cs.md) , [Category:Categories/cs](Category:Categories/cs.md) [Category:UnfinishedDocu/cs](Category:UnfinishedDocu/cs.md) + +--- +[documentation index](../README.md) > Category:Administration/cs diff --git a/wiki/translations/cs/Category:Arch.md b/wiki/translations/cs/Category:Arch.md index 460cc106eb..e387c64af0 100644 --- a/wiki/translations/cs/Category:Arch.md +++ b/wiki/translations/cs/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Arch Add/cs](Arch_Add/cs.md) , [Arch Axis/cs](Arch_Axis/cs.md) , [Arch Building/cs](Arch_Building/cs.md) , [Arch Check/cs](Arch_Check/cs.md) , [Arch CloseHoles/cs](Arch_CloseHoles/cs.md) , [Arch DAE/cs](Arch_DAE/cs.md) , [Arch Floor/cs](Arch_Floor/cs.md) , [Arch Frame/cs](Arch_Frame/cs.md) , [Arch IFC/cs](Arch_IFC/cs.md) , [Arch IfcExplorer/cs](Arch_IfcExplorer/cs.md) , [Arch MeshToShape/cs](Arch_MeshToShape/cs.md) , [Arch OBJ/cs](Arch_OBJ/cs.md) , [Arch Rebar/cs](Arch_Rebar/cs.md) , [Arch Remove/cs](Arch_Remove/cs.md) , [Arch RemoveShape/cs](Arch_RemoveShape/cs.md) , [Arch Roof/cs](Arch_Roof/cs.md) , [Arch SectionPlane/cs](Arch_SectionPlane/cs.md) , [Arch SelectNonSolidMeshes/cs](Arch_SelectNonSolidMeshes/cs.md) , [Arch Site/cs](Arch_Site/cs.md) , [Arch Space/cs](Arch_Space/cs.md) , [Arch SplitMesh/cs](Arch_SplitMesh/cs.md) , [Arch Stairs/cs](Arch_Stairs/cs.md) , [Arch Structure/cs](Arch_Structure/cs.md) , [Arch Survey/cs](Arch_Survey/cs.md) , [Template:Arch Tools navi/cs](Template:Arch_Tools_navi/cs.md) , [Arch tutorial/cs](Arch_tutorial/cs.md) , [Arch Wall/cs](Arch_Wall/cs.md) , [Arch Window/cs](Arch_Window/cs.md) , [Arch Workbench/cs](Arch_Workbench/cs.md) , [Material/cs](Material/cs.md) [Category:User Documentation/cs](Category:User_Documentation/cs.md) [Category:BIM/cs](Category:BIM/cs.md) + +--- +[documentation index](../README.md) > Category:Arch/cs diff --git a/wiki/translations/cs/Category:BIM.md b/wiki/translations/cs/Category:BIM.md index 00d1e1b958..4d4f9a5a83 100644 --- a/wiki/translations/cs/Category:BIM.md +++ b/wiki/translations/cs/Category:BIM.md @@ -6,3 +6,6 @@ This category is for pages related to building information management (BIM). [Arch IfcExplorer/cs](Arch_IfcExplorer/cs.md) , [Material/cs](Material/cs.md) , [Category:User Documentation/cs](Category:User_Documentation/cs.md) [Category:Arch/cs](Category:Arch/cs.md) + +--- +[documentation index](../README.md) > Category:BIM/cs diff --git a/wiki/translations/cs/Category:Base.md b/wiki/translations/cs/Category:Base.md index f2b2073bd7..b584928bd1 100644 --- a/wiki/translations/cs/Category:Base.md +++ b/wiki/translations/cs/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/cs](Category:User_Documentation/cs.md) + +--- +[documentation index](../README.md) > Category:Base/cs diff --git a/wiki/translations/cs/Category:Categories.md b/wiki/translations/cs/Category:Categories.md index a9266e9da7..6f09da74f8 100644 --- a/wiki/translations/cs/Category:Categories.md +++ b/wiki/translations/cs/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w [API documentation/cs](API_documentation/cs.md) , [List of Commands/cs](List_of_Commands/cs.md) , , , , , , , , , , , , , , , , [Category:Categories/cs](Category:Categories/cs.md) [Category:Addons/cs](Category:Addons/cs.md) [Category:Administration/cs](Category:Administration/cs.md) [Category:API/cs](Category:API/cs.md) [Category:Categories/cs](Category:Categories/cs.md) [Category:Command Reference/cs](Category:Command_Reference/cs.md) [Category:Developer/cs](Category:Developer/cs.md) [Category:Documentation/cs](Category:Documentation/cs.md) [Category:Hubs/cs](Category:Hubs/cs.md) [Category:Macros/cs](Category:Macros/cs.md) [Category:News/cs](Category:News/cs.md) [Category:Python Code/cs](Category:Python_Code/cs.md) [Category:Repository/cs](Category:Repository/cs.md) [Category:Roadmap/cs](Category:Roadmap/cs.md) [Category:Template/cs](Category:Template/cs.md) [Category:Tutorials/cs](Category:Tutorials/cs.md) [Category:UnfinishedDocu/cs](Category:UnfinishedDocu/cs.md) + +--- +[documentation index](../README.md) > Category:Categories/cs diff --git a/wiki/translations/cs/Category:Command_Reference.md b/wiki/translations/cs/Category:Command_Reference.md index 1d013cc44a..e2dbb5224d 100644 --- a/wiki/translations/cs/Category:Command_Reference.md +++ b/wiki/translations/cs/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD command. [Arch Add/cs](Arch_Add/cs.md) , [Arch Axis/cs](Arch_Axis/cs.md) , [Arch Building/cs](Arch_Building/cs.md) , [Arch Check/cs](Arch_Check/cs.md) , [Arch CloseHoles/cs](Arch_CloseHoles/cs.md) , [Arch Floor/cs](Arch_Floor/cs.md) , [Arch Frame/cs](Arch_Frame/cs.md) , [Arch IfcExplorer/cs](Arch_IfcExplorer/cs.md) , [Arch MeshToShape/cs](Arch_MeshToShape/cs.md) , [Arch Rebar/cs](Arch_Rebar/cs.md) , [Arch Remove/cs](Arch_Remove/cs.md) , [Arch RemoveShape/cs](Arch_RemoveShape/cs.md) , [Arch Roof/cs](Arch_Roof/cs.md) , [Arch SectionPlane/cs](Arch_SectionPlane/cs.md) , [Arch SelectNonSolidMeshes/cs](Arch_SelectNonSolidMeshes/cs.md) , [Arch Site/cs](Arch_Site/cs.md) , [Arch Space/cs](Arch_Space/cs.md) , [Arch SplitMesh/cs](Arch_SplitMesh/cs.md) , [Arch Stairs/cs](Arch_Stairs/cs.md) , [Arch Structure/cs](Arch_Structure/cs.md) , [Arch Survey/cs](Arch_Survey/cs.md) , [Arch Wall/cs](Arch_Wall/cs.md) , [Arch Window/cs](Arch_Window/cs.md) , [Draft AddToGroup/cs](Draft_AddToGroup/cs.md) , [Draft ApplyStyle/cs](Draft_ApplyStyle/cs.md) , [Draft Arc/cs](Draft_Arc/cs.md) , [Draft Array/cs](Draft_Array/cs.md) , [Draft BezCurve/cs](Draft_BezCurve/cs.md) , [Draft BSpline/cs](Draft_BSpline/cs.md) , [Draft Circle/cs](Draft_Circle/cs.md) , [Draft Clone/cs](Draft_Clone/cs.md) , [Draft Dimension/cs](Draft_Dimension/cs.md) , [Draft Downgrade/cs](Draft_Downgrade/cs.md) , [Draft Draft2Sketch/cs](Draft_Draft2Sketch/cs.md) , [Draft Drawing/cs](Draft_Drawing/cs.md) , [Draft Edit/cs](Draft_Edit/cs.md) , [Draft Ellipse/cs](Draft_Ellipse/cs.md) , [Draft Facebinder/cs](Draft_Facebinder/cs.md) , [Draft FlipDimension/cs](Draft_FlipDimension/cs.md) , [Draft Heal/cs](Draft_Heal/cs.md) , [Draft Line/cs](Draft_Line/cs.md) , [Draft Move/cs](Draft_Move/cs.md) , [Draft Offset/cs](Draft_Offset/cs.md) , [Draft PathArray/cs](Draft_PathArray/cs.md) , [Draft Point/cs](Draft_Point/cs.md) , [Draft Polygon/cs](Draft_Polygon/cs.md) , [Draft Rectangle/cs](Draft_Rectangle/cs.md) , [Draft Rotate/cs](Draft_Rotate/cs.md) , [Draft Scale/cs](Draft_Scale/cs.md) , [Draft SelectGroup/cs](Draft_SelectGroup/cs.md) , [Draft SelectPlane/cs](Draft_SelectPlane/cs.md) , [Draft Shape2DView/cs](Draft_Shape2DView/cs.md) , [Draft ShapeString/cs](Draft_ShapeString/cs.md) , [Draft ShowSnapBar/cs](Draft_ShowSnapBar/cs.md) , [Draft Snap Lock/cs](Draft_Snap_Lock/cs.md) , [Draft Text/cs](Draft_Text/cs.md) , [Draft ToggleConstructionMode/cs](Draft_ToggleConstructionMode/cs.md) , [Draft ToggleContinueMode/cs](Draft_ToggleContinueMode/cs.md) , [Draft ToggleDisplayMode/cs](Draft_ToggleDisplayMode/cs.md) , [Draft ToggleGrid/cs](Draft_ToggleGrid/cs.md) , [Draft Trimex/cs](Draft_Trimex/cs.md) , [Draft Upgrade/cs](Draft_Upgrade/cs.md) , [Draft Wire/cs](Draft_Wire/cs.md) , [Draft WireToBSpline/cs](Draft_WireToBSpline/cs.md) , [Drawing Annotation/cs](Drawing_Annotation/cs.md) , [Drawing Clip/cs](Drawing_Clip/cs.md) , [Drawing Landscape A3/cs](Drawing_Landscape_A3/cs.md) , [Drawing Open SVG/cs](Drawing_Open_SVG/cs.md) , [Drawing Openbrowser/cs](Drawing_Openbrowser/cs.md) , [Drawing Orthoviews/cs](Drawing_Orthoviews/cs.md) , [Drawing Save/cs](Drawing_Save/cs.md) , [Drawing Symbol/cs](Drawing_Symbol/cs.md) , [Drawing View/cs](Drawing_View/cs.md) , [Template:GuiCommand/cs](Template:GuiCommand/cs.md) , [Part Boolean/cs](Part_Boolean/cs.md) , [Part Box/cs](Part_Box/cs.md) , [Part Builder/cs](Part_Builder/cs.md) , [Part Chamfer/cs](Part_Chamfer/cs.md) , [Part Circle/cs](Part_Circle/cs.md) , [Part Common/cs](Part_Common/cs.md) , [Part Cone/cs](Part_Cone/cs.md) , [Part Cut/cs](Part_Cut/cs.md) , [Part Cylinder/cs](Part_Cylinder/cs.md) , [Part Ellipse/cs](Part_Ellipse/cs.md) , [Part Ellipsoid/cs](Part_Ellipsoid/cs.md) , [Part Extrude/cs](Part_Extrude/cs.md) , [Part Fillet/cs](Part_Fillet/cs.md) , [Part Fuse/cs](Part_Fuse/cs.md) , [Part Helix/cs](Part_Helix/cs.md) , [Part Line/cs](Part_Line/cs.md) , [Part Loft/cs](Part_Loft/cs.md) , [Part Mirror/cs](Part_Mirror/cs.md) , [Part Offset/cs](Part_Offset/cs.md) , [Part Plane/cs](Part_Plane/cs.md) , [Part Point/cs](Part_Point/cs.md) , [Part Primitives/cs](Part_Primitives/cs.md) , [Part Prism/cs](Part_Prism/cs.md) , [Part RefineShape/cs](Part_RefineShape/cs.md) , [Part RegularPolygon/cs](Part_RegularPolygon/cs.md) , [Part Revolve/cs](Part_Revolve/cs.md) , [Part RuledSurface/cs](Part_RuledSurface/cs.md) , [Part Section/cs](Part_Section/cs.md) , [Part Sphere/cs](Part_Sphere/cs.md) , [Part Spiral/cs](Part_Spiral/cs.md) , [Part Sweep/cs](Part_Sweep/cs.md) , [Part Thickness/cs](Part_Thickness/cs.md) , [Part Torus/cs](Part_Torus/cs.md) , [Part Wedge/cs](Part_Wedge/cs.md) , [PartDesign Chamfer/cs](PartDesign_Chamfer/cs.md) , [PartDesign Draft/cs](PartDesign_Draft/cs.md) , [PartDesign Fillet/cs](PartDesign_Fillet/cs.md) , [PartDesign Groove/cs](PartDesign_Groove/cs.md) , [PartDesign InvoluteGear/cs](PartDesign_InvoluteGear/cs.md) , [PartDesign LinearPattern/cs](PartDesign_LinearPattern/cs.md) , [PartDesign Mirrored/cs](PartDesign_Mirrored/cs.md) , [PartDesign MultiTransform/cs](PartDesign_MultiTransform/cs.md) , [PartDesign Pad/cs](PartDesign_Pad/cs.md) , [PartDesign Pocket/cs](PartDesign_Pocket/cs.md) , [PartDesign PolarPattern/cs](PartDesign_PolarPattern/cs.md) , [PartDesign Revolution/cs](PartDesign_Revolution/cs.md) , [PartDesign Scaled/cs](PartDesign_Scaled/cs.md) , [PartDesign WizardShaft/cs](PartDesign_WizardShaft/cs.md) , [Sketcher CarbonCopy/cs](Sketcher_CarbonCopy/cs.md) , [Sketcher ConstrainAngle/cs](Sketcher_ConstrainAngle/cs.md) , [Sketcher ConstrainCoincident/cs](Sketcher_ConstrainCoincident/cs.md) , [Sketcher ConstrainDistance/cs](Sketcher_ConstrainDistance/cs.md) , [Sketcher ConstrainDistanceX/cs](Sketcher_ConstrainDistanceX/cs.md) , [Sketcher ConstrainDistanceY/cs](Sketcher_ConstrainDistanceY/cs.md) , [Sketcher ConstrainEqual/cs](Sketcher_ConstrainEqual/cs.md) , [Sketcher ConstrainHorizontal/cs](Sketcher_ConstrainHorizontal/cs.md) , [Sketcher ConstrainLock/cs](Sketcher_ConstrainLock/cs.md) , [Sketcher ConstrainParallel/cs](Sketcher_ConstrainParallel/cs.md) , [Sketcher ConstrainPerpendicular/cs](Sketcher_ConstrainPerpendicular/cs.md) , [Sketcher ConstrainPointOnObject/cs](Sketcher_ConstrainPointOnObject/cs.md) , [Sketcher ConstrainRadius/cs](Sketcher_ConstrainRadius/cs.md) , [Sketcher ConstrainSymmetric/cs](Sketcher_ConstrainSymmetric/cs.md) , [Sketcher ConstrainTangent/cs](Sketcher_ConstrainTangent/cs.md) , [Sketcher ConstrainVertical/cs](Sketcher_ConstrainVertical/cs.md) , [Sketcher CreateArc/cs](Sketcher_CreateArc/cs.md) , [Sketcher CreateCircle/cs](Sketcher_CreateCircle/cs.md) , [Sketcher CreateFillet/cs](Sketcher_CreateFillet/cs.md) , [Sketcher CreateLine/cs](Sketcher_CreateLine/cs.md) , [Sketcher CreatePoint/cs](Sketcher_CreatePoint/cs.md) , [Sketcher CreatePolyline/cs](Sketcher_CreatePolyline/cs.md) , [Sketcher CreateRectangle/cs](Sketcher_CreateRectangle/cs.md) , [Sketcher External/cs](Sketcher_External/cs.md) , [Sketcher LeaveSketch/cs](Sketcher_LeaveSketch/cs.md) , [Sketcher MapSketch/cs](Sketcher_MapSketch/cs.md) , [Sketcher NewSketch/cs](Sketcher_NewSketch/cs.md) , [Sketcher ReorientSketch/cs](Sketcher_ReorientSketch/cs.md) , [Sketcher ToggleConstruction/cs](Sketcher_ToggleConstruction/cs.md) , [Sketcher Trimming/cs](Sketcher_Trimming/cs.md) , [Sketcher ViewSketch/cs](Sketcher_ViewSketch/cs.md) , [Std Copy/cs](Std_Copy/cs.md) , [Std DuplicateSelection/cs](Std_DuplicateSelection/cs.md) , [Std Edit/cs](Std_Edit/cs.md) , [Std Paste/cs](Std_Paste/cs.md) , [Std ViewScreenShot/cs](Std_ViewScreenShot/cs.md) , [Tasks Placement/cs](Tasks_Placement/cs.md) [Category:Categories/cs](Category:Categories/cs.md) + +--- +[documentation index](../README.md) > Category:Command Reference/cs diff --git a/wiki/translations/cs/Category:Developer.md b/wiki/translations/cs/Category:Developer.md index 320e36060d..a068b9ce3f 100644 --- a/wiki/translations/cs/Category:Developer.md +++ b/wiki/translations/cs/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Compile on Linux/cs](Compile_on_Linux/cs.md) , [Compile on MacOS/cs](Compile_on_MacOS/cs.md) , [Compile on Windows/cs](Compile_on_Windows/cs.md) , [Compiling/cs](Compiling/cs.md) , [File Format FCStd/cs](File_Format_FCStd/cs.md) , [ImageConv/cs](ImageConv/cs.md) , [InputField/cs](InputField/cs.md) , [Material/cs](Material/cs.md) [Category:Categories/cs](Category:Categories/cs.md) + +--- +[documentation index](../README.md) > Category:Developer/cs diff --git a/wiki/translations/cs/Category:Developer_Documentation.md b/wiki/translations/cs/Category:Developer_Documentation.md index b02f9247f8..d70738982a 100644 --- a/wiki/translations/cs/Category:Developer_Documentation.md +++ b/wiki/translations/cs/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [ANSI templates/cs](ANSI_templates/cs.md) , [Arch templates/cs](Arch_templates/cs.md) , [Branding/cs](Branding/cs.md) , [Code snippets/cs](Code_snippets/cs.md) , [Compile on Linux/cs](Compile_on_Linux/cs.md) , [Compile on MacOS/cs](Compile_on_MacOS/cs.md) , [Compile on Windows/cs](Compile_on_Windows/cs.md) , [Compiling/cs](Compiling/cs.md) , [Debugging/cs](Debugging/cs.md) , [Developer hub/cs](Developer_hub/cs.md) , [Dialog creation/cs](Dialog_creation/cs.md) , [Drawing Documentation/cs](Drawing_Documentation/cs.md) , [Drawing templates/cs](Drawing_templates/cs.md) , [Embedding FreeCAD/cs](Embedding_FreeCAD/cs.md) , [Embedding FreeCADGui/cs](Embedding_FreeCADGui/cs.md) , [Extra python modules/cs](Extra_python_modules/cs.md) , [File Format FCStd/cs](File_Format_FCStd/cs.md) , [FreeCAD Scripting Basics/cs](FreeCAD_Scripting_Basics/cs.md) , [FreeCAD vector math library/cs](FreeCAD_vector_math_library/cs.md) , [Help FreeCAD/cs](Help_FreeCAD/cs.md) , [How to install macros/cs](How_to_install_macros/cs.md) , [Installing on Linux/cs](Installing_on_Linux/cs.md) , [Introduction to Python/cs](Introduction_to_Python/cs.md) , [Licence/cs](Licence/cs.md) , [Line drawing function/cs](Line_drawing_function/cs.md) , [Localisation/cs](Localisation/cs.md) , [Macros/cs](Macros/cs.md) , [Material/cs](Material/cs.md) , [Mesh Scripting/cs](Mesh_Scripting/cs.md) , [Mesh to Part/cs](Mesh_to_Part/cs.md) , [Misc templates/cs](Misc_templates/cs.md) , [Pivy/cs](Pivy/cs.md) , [Property/cs](Property/cs.md) , [PySide/cs](PySide/cs.md) , [Python scripting tutorial/cs](Python_scripting_tutorial/cs.md) , [PythonOCC/cs](PythonOCC/cs.md) , [Quantity/cs](Quantity/cs.md) , [Scenegraph/cs](Scenegraph/cs.md) , [Scripted objects/cs](Scripted_objects/cs.md) , [Scripting and macros/cs](Scripting_and_macros/cs.md) , [Start up and Configuration/cs](Start_up_and_Configuration/cs.md) , [Topological data scripting/cs](Topological_data_scripting/cs.md) [Category:Documentation/cs](Category:Documentation/cs.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/cs diff --git a/wiki/translations/cs/Category:Documentation.md b/wiki/translations/cs/Category:Documentation.md index 9bc9e0de07..1666ea8343 100644 --- a/wiki/translations/cs/Category:Documentation.md +++ b/wiki/translations/cs/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [3D input devices/cs](3D_input_devices/cs.md) , [ANSI templates/cs](ANSI_templates/cs.md) , [Arch templates/cs](Arch_templates/cs.md) , [Drawing templates/cs](Drawing_templates/cs.md) , [Help FreeCAD/cs](Help_FreeCAD/cs.md) , [Main Page/cs](Main_Page/cs.md) , [Misc templates/cs](Misc_templates/cs.md) , [Online Help Toc/cs](Online_Help_Toc/cs.md) , [Release notes 0.14/cs](Release_notes_0.14/cs.md) , , , , [Category:Categories/cs](Category:Categories/cs.md) [Category:Developer Documentation/cs](Category:Developer_Documentation/cs.md) [Category:Poweruser Documentation/cs](Category:Poweruser_Documentation/cs.md) [Category:Screenshots/cs](Category:Screenshots/cs.md) [Category:User Documentation/cs](Category:User_Documentation/cs.md) + +--- +[documentation index](../README.md) > Category:Documentation/cs diff --git a/wiki/translations/cs/Category:Draft.md b/wiki/translations/cs/Category:Draft.md index af76b250fc..9c4c5c22b9 100644 --- a/wiki/translations/cs/Category:Draft.md +++ b/wiki/translations/cs/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/cs\" and \"Workben [Draft AddToGroup/cs](Draft_AddToGroup/cs.md) , [Draft API/cs](Draft_API/cs.md) , [Draft ApplyStyle/cs](Draft_ApplyStyle/cs.md) , [Draft Arc/cs](Draft_Arc/cs.md) , [Draft Array/cs](Draft_Array/cs.md) , [Draft BezCurve/cs](Draft_BezCurve/cs.md) , [Draft BSpline/cs](Draft_BSpline/cs.md) , [Draft Circle/cs](Draft_Circle/cs.md) , [Draft Clone/cs](Draft_Clone/cs.md) , [Draft Constrain/cs](Draft_Constrain/cs.md) , [Draft DAT/cs](Draft_DAT/cs.md) , [Draft Dimension/cs](Draft_Dimension/cs.md) , [Draft Downgrade/cs](Draft_Downgrade/cs.md) , [Draft Draft2Sketch/cs](Draft_Draft2Sketch/cs.md) , [Draft Drawing/cs](Draft_Drawing/cs.md) , [Draft DXF/cs](Draft_DXF/cs.md) , [Draft Edit/cs](Draft_Edit/cs.md) , [Draft Ellipse/cs](Draft_Ellipse/cs.md) , [Draft Facebinder/cs](Draft_Facebinder/cs.md) , [Draft FlipDimension/cs](Draft_FlipDimension/cs.md) , [Draft Heal/cs](Draft_Heal/cs.md) , [Draft Line/cs](Draft_Line/cs.md) , [Draft Move/cs](Draft_Move/cs.md) , [Draft OCA/cs](Draft_OCA/cs.md) , [Draft Offset/cs](Draft_Offset/cs.md) , [Draft PathArray/cs](Draft_PathArray/cs.md) , [Draft Pattern/cs](Draft_Pattern/cs.md) , [Draft Point/cs](Draft_Point/cs.md) , [Draft Polygon/cs](Draft_Polygon/cs.md) , [Draft Preferences/cs](Draft_Preferences/cs.md) , [Draft Rectangle/cs](Draft_Rectangle/cs.md) , [Draft Rotate/cs](Draft_Rotate/cs.md) , [Draft Scale/cs](Draft_Scale/cs.md) , [Draft SelectGroup/cs](Draft_SelectGroup/cs.md) , [Draft SelectPlane/cs](Draft_SelectPlane/cs.md) , [Draft Shape2DView/cs](Draft_Shape2DView/cs.md) , [Draft ShapeString/cs](Draft_ShapeString/cs.md) , [Draft ShowSnapBar/cs](Draft_ShowSnapBar/cs.md) , [Draft Snap Lock/cs](Draft_Snap_Lock/cs.md) , [Draft Snap/cs](Draft_Snap/cs.md) , [Draft SVG/cs](Draft_SVG/cs.md) , [Draft Text/cs](Draft_Text/cs.md) , [Draft ToggleConstructionMode/cs](Draft_ToggleConstructionMode/cs.md) , [Draft ToggleContinueMode/cs](Draft_ToggleContinueMode/cs.md) , [Draft ToggleDisplayMode/cs](Draft_ToggleDisplayMode/cs.md) , [Draft ToggleGrid/cs](Draft_ToggleGrid/cs.md) , [Draft Trimex/cs](Draft_Trimex/cs.md) , [Draft tutorial/cs](Draft_tutorial/cs.md) , [Draft Upgrade/cs](Draft_Upgrade/cs.md) , [Draft Wire/cs](Draft_Wire/cs.md) , [Draft WireToBSpline/cs](Draft_WireToBSpline/cs.md) , [Draft Workbench/cs](Draft_Workbench/cs.md) [Category:User Documentation/cs](Category:User_Documentation/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:Draft/cs diff --git a/wiki/translations/cs/Category:Drawing.md b/wiki/translations/cs/Category:Drawing.md index c203a1a6e7..092ba1b222 100644 --- a/wiki/translations/cs/Category:Drawing.md +++ b/wiki/translations/cs/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/cs](Drawing_Workbenc [ANSI templates/cs](ANSI_templates/cs.md) , [Arch templates/cs](Arch_templates/cs.md) , [Drawing Annotation/cs](Drawing_Annotation/cs.md) , [Drawing Clip/cs](Drawing_Clip/cs.md) , [Drawing Documentation/cs](Drawing_Documentation/cs.md) , [Drawing Landscape A3/cs](Drawing_Landscape_A3/cs.md) , [Drawing Open SVG/cs](Drawing_Open_SVG/cs.md) , [Drawing Openbrowser/cs](Drawing_Openbrowser/cs.md) , [Drawing Orthoviews/cs](Drawing_Orthoviews/cs.md) , [Drawing Save/cs](Drawing_Save/cs.md) , [Drawing Symbol/cs](Drawing_Symbol/cs.md) , [Drawing Template HowTo/cs](Drawing_Template_HowTo/cs.md) , [Drawing templates/cs](Drawing_templates/cs.md) , [Template:Drawing Tools navi/cs](Template:Drawing_Tools_navi/cs.md) , [Drawing View/cs](Drawing_View/cs.md) , [Drawing Workbench/cs](Drawing_Workbench/cs.md) , [Misc templates/cs](Misc_templates/cs.md) [Category:Obsolete Workbenches/cs](Category:Obsolete_Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:Drawing/cs diff --git a/wiki/translations/cs/Category:External_Workbenches.md b/wiki/translations/cs/Category:External_Workbenches.md index 6d885c6806..f63176cf64 100644 --- a/wiki/translations/cs/Category:External_Workbenches.md +++ b/wiki/translations/cs/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [Plot Module/cs](Plot_Module/cs.md) , [Ship Workbench/cs](Ship_Workbench/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) [Category:Addons/cs](Category:Addons/cs.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/cs diff --git a/wiki/translations/cs/Category:FEM.md b/wiki/translations/cs/Category:FEM.md index c6adb07b32..a66f0d89c5 100644 --- a/wiki/translations/cs/Category:FEM.md +++ b/wiki/translations/cs/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/cs](FEM_Workbench/cs.md) [FEM project/cs](FEM_project/cs.md) , [Template:FEM Tools navi/cs](Template:FEM_Tools_navi/cs.md) , [FEM Workbench/cs](FEM_Workbench/cs.md) , [Material/cs](Material/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:FEM/cs diff --git a/wiki/translations/cs/Category:File_Formats.md b/wiki/translations/cs/Category:File_Formats.md index 5aab8c2ec2..010c276423 100644 --- a/wiki/translations/cs/Category:File_Formats.md +++ b/wiki/translations/cs/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [Arch DAE/cs](Arch_DAE/cs.md) , [Arch IFC/cs](Arch_IFC/cs.md) , [Arch OBJ/cs](Arch_OBJ/cs.md) , [Draft DAT/cs](Draft_DAT/cs.md) , [Draft DXF/cs](Draft_DXF/cs.md) , [Draft OCA/cs](Draft_OCA/cs.md) , [Draft SVG/cs](Draft_SVG/cs.md) , [File Format FCStd/cs](File_Format_FCStd/cs.md) , [Material/cs](Material/cs.md) + +--- +[documentation index](../README.md) > Category:File Formats/cs diff --git a/wiki/translations/cs/Category:Hubs.md b/wiki/translations/cs/Category:Hubs.md index 966cfa8b25..7d410746e8 100644 --- a/wiki/translations/cs/Category:Hubs.md +++ b/wiki/translations/cs/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Developer hub/cs](Developer_hub/cs.md) , [Power users hub/cs](Power_users_hub/cs.md) , [User hub/cs](User_hub/cs.md) [Category:Categories/cs](Category:Categories/cs.md) + +--- +[documentation index](../README.md) > Category:Hubs/cs diff --git a/wiki/translations/cs/Category:Image.md b/wiki/translations/cs/Category:Image.md index 18ca0d971c..3ee321e2a4 100644 --- a/wiki/translations/cs/Category:Image.md +++ b/wiki/translations/cs/Category:Image.md @@ -6,3 +6,6 @@ This category lists pages related to the [Image Workbench/cs](Image_Workbench/cs [Image Workbench/cs](Image_Workbench/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:Image/cs diff --git a/wiki/translations/cs/Category:Inspection.md b/wiki/translations/cs/Category:Inspection.md index 7057526383..f18f721ebe 100644 --- a/wiki/translations/cs/Category:Inspection.md +++ b/wiki/translations/cs/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Inspection Workbench/cs](Inspection_Workbench/cs.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection/cs diff --git a/wiki/translations/cs/Category:Macros.md b/wiki/translations/cs/Category:Macros.md index 3b9e08e57a..162e084019 100644 --- a/wiki/translations/cs/Category:Macros.md +++ b/wiki/translations/cs/Category:Macros.md @@ -6,3 +6,6 @@ This category contains macros to extend your FreeCAD installation with new funct [Macro 3D Parametric Curve/cs](Macro_3D_Parametric_Curve/cs.md) , [Macro 3d Printer Slicer/cs](Macro_3d_Printer_Slicer/cs.md) , [Macro Airfoil Import & Scale/cs](Macro_Airfoil_Import_&_Scale/cs.md) , [Macro Align View to Face/cs](Macro_Align_View_to_Face/cs.md) , [Macro ArrayCopy/cs](Macro_ArrayCopy/cs.md) , [Macro Automatic drawing/cs](Macro_Automatic_drawing/cs.md) , [Macro BOLTS/cs](Macro_BOLTS/cs.md) , [Macro BoundingBox Tracing/cs](Macro_BoundingBox_Tracing/cs.md) , [Macro CartoucheFC 2/cs](Macro_CartoucheFC_2/cs.md) , [Macro CartoucheFC Full/cs](Macro_CartoucheFC_Full/cs.md) , [Macro CartoucheFC/cs](Macro_CartoucheFC/cs.md) , [Macro CenterFace/cs](Macro_CenterFace/cs.md) , [Macro Corner shapes wizard/cs](Macro_Corner_shapes_wizard/cs.md) , [Macro Delta xyz/cs](Macro_Delta_xyz/cs.md) , [Macro Draft Circle 3 Points 3D/cs](Macro_Draft_Circle_3_Points_3D/cs.md) , [Macro Draft Circle 3 Points/cs](Macro_Draft_Circle_3_Points/cs.md) , [Macro Draw 2D Function/cs](Macro_Draw_2D_Function/cs.md) , [Macro Draw Parametric 2D Function/cs](Macro_Draw_Parametric_2D_Function/cs.md) , [Macro EdgesToArc/cs](Macro_EdgesToArc/cs.md) , [Macro Ellipse-Center+2Points/cs](Macro_Ellipse-Center+2Points/cs.md) , [Macro FaceToSketch/cs](Macro_FaceToSketch/cs.md) , [Macro FCInfo Alternate Linux/cs](Macro_FCInfo_Alternate_Linux/cs.md) , [Macro FCInfo/cs](Macro_FCInfo/cs.md) , [Macro FlattenWire/cs](Macro_FlattenWire/cs.md) , [Macro HealArcs/cs](Macro_HealArcs/cs.md) , [Macro JointWire/cs](Macro_JointWire/cs.md) , [Macro Line Length/cs](Macro_Line_Length/cs.md) , [Macro Loft/cs](Macro_Loft/cs.md) , [Macro MacroMenu/cs](Macro_MacroMenu/cs.md) , [Macro Make Circle 3 Points/cs](Macro_Make_Circle_3_Points/cs.md) , [Macro Make Cube/cs](Macro_Make_Cube/cs.md) , [Macro MeshToPart/cs](Macro_MeshToPart/cs.md) , [Macro MessageBox/cs](Macro_MessageBox/cs.md) , [Macro Mouse Cross/cs](Macro_Mouse_Cross/cs.md) , [Macro ObjectInfo/cs](Macro_ObjectInfo/cs.md) , [Macro PartsLibrary/cs](Macro_PartsLibrary/cs.md) , [Macro Rectellipse/cs](Macro_Rectellipse/cs.md) , [Macro Remove parametric history/cs](Macro_Remove_parametric_history/cs.md) , [Macro Rotate View/cs](Macro_Rotate_View/cs.md) , [Macro screw maker1 2/cs](Macro_screw_maker1_2/cs.md) , [Macro Solid Sweep/cs](Macro_Solid_Sweep/cs.md) , [Macro SuperWire/cs](Macro_SuperWire/cs.md) , [Macro Texture Objects/cs](Macro_Texture_Objects/cs.md) , [Macro Texture/cs](Macro_Texture/cs.md) , [Macro Unfold Box/cs](Macro_Unfold_Box/cs.md) , [Macro Unroll Ruled Surface/cs](Macro_Unroll_Ruled_Surface/cs.md) , [Macro View Rotation/cs](Macro_View_Rotation/cs.md) , [Template:Macro/cs](Template:Macro/cs.md) , [Macros recipes/cs](Macros_recipes/cs.md) , [Macros/cs](Macros/cs.md) [Category:Categories/cs](Category:Categories/cs.md) + +--- +[documentation index](../README.md) > Category:Macros/cs diff --git a/wiki/translations/cs/Category:Mesh.md b/wiki/translations/cs/Category:Mesh.md index 207f43f35e..6228e45118 100644 --- a/wiki/translations/cs/Category:Mesh.md +++ b/wiki/translations/cs/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/cs](Mesh_Workbench/cs. [Mesh Scripting/cs](Mesh_Scripting/cs.md) , [Mesh to Part/cs](Mesh_to_Part/cs.md) , [Template:Mesh Tools navi/cs](Template:Mesh_Tools_navi/cs.md) , [Mesh Workbench/cs](Mesh_Workbench/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:Mesh/cs diff --git a/wiki/translations/cs/Category:News.md b/wiki/translations/cs/Category:News.md index 906efa09f0..9ce2a1668f 100644 --- a/wiki/translations/cs/Category:News.md +++ b/wiki/translations/cs/Category:News.md @@ -6,3 +6,6 @@ This category contains articles with news and messages about FreeCAD. [Release notes 0.14/cs](Release_notes_0.14/cs.md) [Category:Categories/cs](Category:Categories/cs.md) + +--- +[documentation index](../README.md) > Category:News/cs diff --git a/wiki/translations/cs/Category:Obsolete_Workbenches.md b/wiki/translations/cs/Category:Obsolete_Workbenches.md index 885faa9024..5042fa8dac 100644 --- a/wiki/translations/cs/Category:Obsolete_Workbenches.md +++ b/wiki/translations/cs/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists obsolete workbenches, that is, workbenches that are old and [Complete Workbench/cs](Complete_Workbench/cs.md) , [Drawing Workbench/cs](Drawing_Workbench/cs.md) , [Category:Workbenches/cs](Category:Workbenches/cs.md) [Category:Drawing/cs](Category:Drawing/cs.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/cs diff --git a/wiki/translations/cs/Category:OpenSCAD.md b/wiki/translations/cs/Category:OpenSCAD.md index b8287a5b24..113272d293 100644 --- a/wiki/translations/cs/Category:OpenSCAD.md +++ b/wiki/translations/cs/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/cs](OpenSCAD_Workb [Template:OpenSCAD Tools navi/cs](Template:OpenSCAD_Tools_navi/cs.md) , [OpenSCAD Workbench/cs](OpenSCAD_Workbench/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/cs diff --git a/wiki/translations/cs/Category:Part.md b/wiki/translations/cs/Category:Part.md index c6e6fb626a..db35bec623 100644 --- a/wiki/translations/cs/Category:Part.md +++ b/wiki/translations/cs/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part\_Workbench/cs](Part_Workbench/cs. [Aeroplane/cs](Aeroplane/cs.md) , [Basic modeling tutorial/cs](Basic_modeling_tutorial/cs.md) , [Part Boolean/cs](Part_Boolean/cs.md) , [Part Box/cs](Part_Box/cs.md) , [Part Builder/cs](Part_Builder/cs.md) , [Part Chamfer/cs](Part_Chamfer/cs.md) , [Part Circle/cs](Part_Circle/cs.md) , [Part Common/cs](Part_Common/cs.md) , [Part Cone/cs](Part_Cone/cs.md) , [Part Cut/cs](Part_Cut/cs.md) , [Part Cylinder/cs](Part_Cylinder/cs.md) , [Part Ellipse/cs](Part_Ellipse/cs.md) , [Part Ellipsoid/cs](Part_Ellipsoid/cs.md) , [Part Extrude/cs](Part_Extrude/cs.md) , [Part Fillet/cs](Part_Fillet/cs.md) , [Part Fuse/cs](Part_Fuse/cs.md) , [Part Helix/cs](Part_Helix/cs.md) , [Part Line/cs](Part_Line/cs.md) , [Part Loft/cs](Part_Loft/cs.md) , [Part Mirror/cs](Part_Mirror/cs.md) , [Part Module/cs](Part_Module/cs.md) , [Part Offset/cs](Part_Offset/cs.md) , [Part Plane/cs](Part_Plane/cs.md) , [Part Point/cs](Part_Point/cs.md) , [Part Primitives/cs](Part_Primitives/cs.md) , [Part Prism/cs](Part_Prism/cs.md) , [Part RefineShape/cs](Part_RefineShape/cs.md) , [Part RegularPolygon/cs](Part_RegularPolygon/cs.md) , [Part Revolve/cs](Part_Revolve/cs.md) , [Part RuledSurface/cs](Part_RuledSurface/cs.md) , [Part Section/cs](Part_Section/cs.md) , [Part Sphere/cs](Part_Sphere/cs.md) , [Part Spiral/cs](Part_Spiral/cs.md) , [Part Sweep/cs](Part_Sweep/cs.md) , [Part Thickness/cs](Part_Thickness/cs.md) , [Template:Part Tools navi/cs](Template:Part_Tools_navi/cs.md) , [Part Torus/cs](Part_Torus/cs.md) , [Part Wedge/cs](Part_Wedge/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:Part/cs diff --git a/wiki/translations/cs/Category:PartDesign.md b/wiki/translations/cs/Category:PartDesign.md index 1cea35ba17..4592de8c55 100644 --- a/wiki/translations/cs/Category:PartDesign.md +++ b/wiki/translations/cs/Category:PartDesign.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to PartDesign ### Contents: [PartDesign Chamfer/cs](PartDesign_Chamfer/cs.md) , [PartDesign Draft/cs](PartDesign_Draft/cs.md) , [PartDesign Fillet/cs](PartDesign_Fillet/cs.md) , [PartDesign Groove/cs](PartDesign_Groove/cs.md) , [PartDesign InvoluteGear/cs](PartDesign_InvoluteGear/cs.md) , [PartDesign LinearPattern/cs](PartDesign_LinearPattern/cs.md) , [PartDesign Mirrored/cs](PartDesign_Mirrored/cs.md) , [PartDesign MultiTransform/cs](PartDesign_MultiTransform/cs.md) , [PartDesign Pad/cs](PartDesign_Pad/cs.md) , [PartDesign Pocket/cs](PartDesign_Pocket/cs.md) , [PartDesign PolarPattern/cs](PartDesign_PolarPattern/cs.md) , [PartDesign Revolution/cs](PartDesign_Revolution/cs.md) , [Template:PartDesign Tools navi/cs](Template:PartDesign_Tools_navi/cs.md) , [PartDesign WizardShaft/cs](PartDesign_WizardShaft/cs.md) , [PartDesign Workbench/cs](PartDesign_Workbench/cs.md) + +--- +[documentation index](../README.md) > Category:PartDesign/cs diff --git a/wiki/translations/cs/Category:Path.md b/wiki/translations/cs/Category:Path.md index 4cf1a266f3..9815f7e55e 100644 --- a/wiki/translations/cs/Category:Path.md +++ b/wiki/translations/cs/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/cs](PartDesign_Wo [Template:Path Tools navi/cs](Template:Path_Tools_navi/cs.md) , [Path Workbench/cs](Path_Workbench/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:Path/cs diff --git a/wiki/translations/cs/Category:Plot.md b/wiki/translations/cs/Category:Plot.md index e9ac6f3654..6f2db77ae6 100644 --- a/wiki/translations/cs/Category:Plot.md +++ b/wiki/translations/cs/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/cs](Plot_Workbench/cs.m [Plot Module/cs](Plot_Module/cs.md) , [Template:Plot Tools navi/cs](Template:Plot_Tools_navi/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:Plot/cs diff --git a/wiki/translations/cs/Category:Points.md b/wiki/translations/cs/Category:Points.md index af27bbd1b2..f52cf8b33e 100644 --- a/wiki/translations/cs/Category:Points.md +++ b/wiki/translations/cs/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/cs](Points_Workbench/ [Points Workbench/cs](Points_Workbench/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:Points/cs diff --git a/wiki/translations/cs/Category:Poweruser_Documentation.md b/wiki/translations/cs/Category:Poweruser_Documentation.md index f556101926..e1454987be 100644 --- a/wiki/translations/cs/Category:Poweruser_Documentation.md +++ b/wiki/translations/cs/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Code snippets/cs](Code_snippets/cs.md) , [Debugging/cs](Debugging/cs.md) , [Dialog creation/cs](Dialog_creation/cs.md) , [Draft API/cs](Draft_API/cs.md) , [Embedding FreeCAD/cs](Embedding_FreeCAD/cs.md) , [Embedding FreeCADGui/cs](Embedding_FreeCADGui/cs.md) , [FreeCAD Scripting Basics/cs](FreeCAD_Scripting_Basics/cs.md) , [FreeCAD vector math library/cs](FreeCAD_vector_math_library/cs.md) , [Gui Command/cs](Gui_Command/cs.md) , [How to install macros/cs](How_to_install_macros/cs.md) , [Introduction to Python/cs](Introduction_to_Python/cs.md) , [Line drawing function/cs](Line_drawing_function/cs.md) , [Macros/cs](Macros/cs.md) , [Mesh Scripting/cs](Mesh_Scripting/cs.md) , [Mesh to Part/cs](Mesh_to_Part/cs.md) , [Pivy/cs](Pivy/cs.md) , [Placement API/cs](Placement_API/cs.md) , [Power users hub/cs](Power_users_hub/cs.md) , [Property/cs](Property/cs.md) , [PySide/cs](PySide/cs.md) , [Python scripting tutorial/cs](Python_scripting_tutorial/cs.md) , [PythonOCC/cs](PythonOCC/cs.md) , [Quantity/cs](Quantity/cs.md) , [Scenegraph/cs](Scenegraph/cs.md) , [Scripted objects/cs](Scripted_objects/cs.md) , [Scripting and macros/cs](Scripting_and_macros/cs.md) , [Topological data scripting/cs](Topological_data_scripting/cs.md) , [Units/cs](Units/cs.md) [Category:Documentation/cs](Category:Documentation/cs.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/cs diff --git a/wiki/translations/cs/Category:Preferences.md b/wiki/translations/cs/Category:Preferences.md index d60e0014f5..b4dc6d4c3b 100644 --- a/wiki/translations/cs/Category:Preferences.md +++ b/wiki/translations/cs/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Customize Toolbars/cs](Customize_Toolbars/cs.md) , [Draft Preferences/cs](Draft_Preferences/cs.md) , [Preferences Editor/cs](Preferences_Editor/cs.md) + +--- +[documentation index](../README.md) > Category:Preferences/cs diff --git a/wiki/translations/cs/Category:Python_Code.md b/wiki/translations/cs/Category:Python_Code.md index 996228adfd..c46c5d920c 100644 --- a/wiki/translations/cs/Category:Python_Code.md +++ b/wiki/translations/cs/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Code snippets/cs](Code_snippets/cs.md) , [Debugging/cs](Debugging/cs.md) , [Dialog creation/cs](Dialog_creation/cs.md) , [Embedding FreeCAD/cs](Embedding_FreeCAD/cs.md) , [Embedding FreeCADGui/cs](Embedding_FreeCADGui/cs.md) , [Extra python modules/cs](Extra_python_modules/cs.md) , [FreeCAD Scripting Basics/cs](FreeCAD_Scripting_Basics/cs.md) , [FreeCAD vector math library/cs](FreeCAD_vector_math_library/cs.md) , [How to install macros/cs](How_to_install_macros/cs.md) , [Introduction to Python/cs](Introduction_to_Python/cs.md) , [Line drawing function/cs](Line_drawing_function/cs.md) , [Macros recipes/cs](Macros_recipes/cs.md) , [Macros/cs](Macros/cs.md) , [Mesh Scripting/cs](Mesh_Scripting/cs.md) , [Mesh to Part/cs](Mesh_to_Part/cs.md) , [Pivy/cs](Pivy/cs.md) , [Property/cs](Property/cs.md) , [PySide/cs](PySide/cs.md) , [Python scripting tutorial/cs](Python_scripting_tutorial/cs.md) , [PythonOCC/cs](PythonOCC/cs.md) , [Quantity/cs](Quantity/cs.md) , [Scripted objects/cs](Scripted_objects/cs.md) , [Scripting and macros/cs](Scripting_and_macros/cs.md) , [Topological data scripting/cs](Topological_data_scripting/cs.md) [Category:Categories/cs](Category:Categories/cs.md) + +--- +[documentation index](../README.md) > Category:Python Code/cs diff --git a/wiki/translations/cs/Category:Raytracing.md b/wiki/translations/cs/Category:Raytracing.md index 84e48e3cbc..f8862cfd7a 100644 --- a/wiki/translations/cs/Category:Raytracing.md +++ b/wiki/translations/cs/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/cs](Raytracing_Wo [Template:Raytracing Tools navi/cs](Template:Raytracing_Tools_navi/cs.md) , [Raytracing Workbench/cs](Raytracing_Workbench/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:Raytracing/cs diff --git a/wiki/translations/cs/Category:Repository.md b/wiki/translations/cs/Category:Repository.md index 171f865cb7..8c9dc7491d 100644 --- a/wiki/translations/cs/Category:Repository.md +++ b/wiki/translations/cs/Category:Repository.md @@ -4,3 +4,6 @@ This category gathers pages that act as a repository of resources for FreeCAD, s ### Contents: [Category:Categories/cs](Category:Categories/cs.md) + +--- +[documentation index](../README.md) > Category:Repository/cs diff --git a/wiki/translations/cs/Category:Roadmap.md b/wiki/translations/cs/Category:Roadmap.md index b26ceeeb89..26ce949449 100644 --- a/wiki/translations/cs/Category:Roadmap.md +++ b/wiki/translations/cs/Category:Roadmap.md @@ -6,3 +6,6 @@ This category gathers all articles documenting what is planned in the Roadmap of [Assembly project/cs](Assembly_project/cs.md) , [Development roadmap/cs](Development_roadmap/cs.md) , [FEM project/cs](FEM_project/cs.md) , [Material/cs](Material/cs.md) [Category:Categories/cs](Category:Categories/cs.md) + +--- +[documentation index](../README.md) > Category:Roadmap/cs diff --git a/wiki/translations/cs/Category:Robot.md b/wiki/translations/cs/Category:Robot.md index e6102bf76a..e5c5ca9a35 100644 --- a/wiki/translations/cs/Category:Robot.md +++ b/wiki/translations/cs/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/cs](Robot_Workbench/cs [Robot 6-Axis/cs](Robot_6-Axis/cs.md) , [Template:Robot Tools navi/cs](Template:Robot_Tools_navi/cs.md) , [Robot Workbench/cs](Robot_Workbench/cs.md) , [VRML Preparation for Robot Simulation/cs](VRML_Preparation_for_Robot_Simulation/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:Robot/cs diff --git a/wiki/translations/cs/Category:Screenshots.md b/wiki/translations/cs/Category:Screenshots.md index 86742df7c0..9b6503a9f1 100644 --- a/wiki/translations/cs/Category:Screenshots.md +++ b/wiki/translations/cs/Category:Screenshots.md @@ -6,3 +6,6 @@ This category lists pages with screenshots. [Screenshots/cs](Screenshots/cs.md) [Category:Documentation/cs](Category:Documentation/cs.md) + +--- +[documentation index](../README.md) > Category:Screenshots/cs diff --git a/wiki/translations/cs/Category:Ship.md b/wiki/translations/cs/Category:Ship.md index faaa55562c..71e545e2d2 100644 --- a/wiki/translations/cs/Category:Ship.md +++ b/wiki/translations/cs/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/cs](Ship_Workbench/cs.m [Template:Ship Tools navi/cs](Template:Ship_Tools_navi/cs.md) , [Ship Workbench/cs](Ship_Workbench/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:Ship/cs diff --git a/wiki/translations/cs/Category:Sketcher.md b/wiki/translations/cs/Category:Sketcher.md index 9e62efed46..bec7d9ed33 100644 --- a/wiki/translations/cs/Category:Sketcher.md +++ b/wiki/translations/cs/Category:Sketcher.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to Sketcher ### Contents: [Sketcher CarbonCopy/cs](Sketcher_CarbonCopy/cs.md) , [Sketcher ConstrainAngle/cs](Sketcher_ConstrainAngle/cs.md) , [Sketcher ConstrainCoincident/cs](Sketcher_ConstrainCoincident/cs.md) , [Sketcher ConstrainDistance/cs](Sketcher_ConstrainDistance/cs.md) , [Sketcher ConstrainDistanceX/cs](Sketcher_ConstrainDistanceX/cs.md) , [Sketcher ConstrainDistanceY/cs](Sketcher_ConstrainDistanceY/cs.md) , [Sketcher ConstrainEqual/cs](Sketcher_ConstrainEqual/cs.md) , [Sketcher ConstrainHorizontal/cs](Sketcher_ConstrainHorizontal/cs.md) , [Sketcher ConstrainLock/cs](Sketcher_ConstrainLock/cs.md) , [Sketcher ConstrainParallel/cs](Sketcher_ConstrainParallel/cs.md) , [Sketcher ConstrainPerpendicular/cs](Sketcher_ConstrainPerpendicular/cs.md) , [Sketcher ConstrainPointOnObject/cs](Sketcher_ConstrainPointOnObject/cs.md) , [Sketcher ConstrainRadius/cs](Sketcher_ConstrainRadius/cs.md) , [Sketcher ConstrainSymmetric/cs](Sketcher_ConstrainSymmetric/cs.md) , [Sketcher ConstrainTangent/cs](Sketcher_ConstrainTangent/cs.md) , [Sketcher ConstrainVertical/cs](Sketcher_ConstrainVertical/cs.md) , [Sketcher CreateArc/cs](Sketcher_CreateArc/cs.md) , [Sketcher CreateCircle/cs](Sketcher_CreateCircle/cs.md) , [Sketcher CreateFillet/cs](Sketcher_CreateFillet/cs.md) , [Sketcher CreateLine/cs](Sketcher_CreateLine/cs.md) , [Sketcher CreatePoint/cs](Sketcher_CreatePoint/cs.md) , [Sketcher CreatePolyline/cs](Sketcher_CreatePolyline/cs.md) , [Sketcher CreateRectangle/cs](Sketcher_CreateRectangle/cs.md) , [Sketcher External/cs](Sketcher_External/cs.md) , [Sketcher LeaveSketch/cs](Sketcher_LeaveSketch/cs.md) , [Sketcher MapSketch/cs](Sketcher_MapSketch/cs.md) , [Sketcher NewSketch/cs](Sketcher_NewSketch/cs.md) , [Sketcher ReorientSketch/cs](Sketcher_ReorientSketch/cs.md) , [Sketcher ToggleConstruction/cs](Sketcher_ToggleConstruction/cs.md) , [Template:Sketcher Tools navi/cs](Template:Sketcher_Tools_navi/cs.md) , [Sketcher Trimming/cs](Sketcher_Trimming/cs.md) , [Sketcher ViewSketch/cs](Sketcher_ViewSketch/cs.md) , [Sketcher Workbench/cs](Sketcher_Workbench/cs.md) + +--- +[documentation index](../README.md) > Category:Sketcher/cs diff --git a/wiki/translations/cs/Category:Surface.md b/wiki/translations/cs/Category:Surface.md index 0d9ae134a6..509fb8e7ea 100644 --- a/wiki/translations/cs/Category:Surface.md +++ b/wiki/translations/cs/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/cs](Surface_Workbenc [Surface Workbench/cs](Surface_Workbench/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:Surface/cs diff --git a/wiki/translations/cs/Category:TechDraw.md b/wiki/translations/cs/Category:TechDraw.md index 552bdbb069..5f79e935ca 100644 --- a/wiki/translations/cs/Category:TechDraw.md +++ b/wiki/translations/cs/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/cs](TechDraw_Workbe [TechDraw Workbench/cs](TechDraw_Workbench/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:TechDraw/cs diff --git a/wiki/translations/cs/Category:Template.md b/wiki/translations/cs/Category:Template.md index 0f07e06b27..2a539b1fd8 100644 --- a/wiki/translations/cs/Category:Template.md +++ b/wiki/translations/cs/Category:Template.md @@ -8,3 +8,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) [Template:Blender Navigation/cs](Template:Blender_Navigation/cs.md) , [Template:CAD Navigation/cs](Template:CAD_Navigation/cs.md) , [Template:Inventor Navigation/cs](Template:Inventor_Navigation/cs.md) , [Template:Languages/cs](Template:Languages/cs.md) , [Template:PartDesign Extras/cs](Template:PartDesign_Extras/cs.md) , [Template:PartDesign Tools/cs](Template:PartDesign_Tools/cs.md) , [Template:Property/cs](Template:Property/cs.md) , [Template:Sketcher Tools/cs](Template:Sketcher_Tools/cs.md) , [Template:Touchpad Navigation/cs](Template:Touchpad_Navigation/cs.md) , , [Category:Categories/cs](Category:Categories/cs.md) [Category:Template:Doc/cs](Category:Template:Doc/cs.md) [Category:Template:Navigation/cs](Category:Template:Navigation/cs.md) + +--- +[documentation index](../README.md) > Category:Template/cs diff --git a/wiki/translations/cs/Category:Template:Doc.md b/wiki/translations/cs/Category:Template:Doc.md index cef9074a7e..a8bf47de5a 100644 --- a/wiki/translations/cs/Category:Template:Doc.md +++ b/wiki/translations/cs/Category:Template:Doc.md @@ -6,3 +6,6 @@ This category lists templates that produce text boxes used for documenting comma [Template:Macro/cs](Template:Macro/cs.md) [Category:Template/cs](Category:Template/cs.md) + +--- +[documentation index](../README.md) > Category:Template:Doc/cs diff --git a/wiki/translations/cs/Category:Template:Navigation.md b/wiki/translations/cs/Category:Template:Navigation.md index 13e3915565..69deb7451b 100644 --- a/wiki/translations/cs/Category:Template:Navigation.md +++ b/wiki/translations/cs/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/cs](Template:Arch_Tools_navi/cs.md) , [Template:Drawing Tools navi/cs](Template:Drawing_Tools_navi/cs.md) , [Template:FEM Tools navi/cs](Template:FEM_Tools_navi/cs.md) , [Template:Mesh Tools navi/cs](Template:Mesh_Tools_navi/cs.md) , [Template:OpenSCAD Tools navi/cs](Template:OpenSCAD_Tools_navi/cs.md) , [Template:Part Tools navi/cs](Template:Part_Tools_navi/cs.md) , [Template:PartDesign Tools navi/cs](Template:PartDesign_Tools_navi/cs.md) , [Template:Path Tools navi/cs](Template:Path_Tools_navi/cs.md) , [Template:Plot Tools navi/cs](Template:Plot_Tools_navi/cs.md) , [Template:Powerdocnavi/cs](Template:Powerdocnavi/cs.md) , [Template:Raytracing Tools navi/cs](Template:Raytracing_Tools_navi/cs.md) , [Template:Robot Tools navi/cs](Template:Robot_Tools_navi/cs.md) , [Template:Ship Tools navi/cs](Template:Ship_Tools_navi/cs.md) , [Template:Sketcher Tools navi/cs](Template:Sketcher_Tools_navi/cs.md) , [Template:Tutorials navi/cs](Template:Tutorials_navi/cs.md) [Category:Template/cs](Category:Template/cs.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/cs diff --git a/wiki/translations/cs/Category:Tutorials.md b/wiki/translations/cs/Category:Tutorials.md index e9de5d74b7..fa999e4123 100644 --- a/wiki/translations/cs/Category:Tutorials.md +++ b/wiki/translations/cs/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials/cs](Offsite_tutorials/cs.md) and [Video tut [Aeroplane/cs](Aeroplane/cs.md) , [Arch tutorial/cs](Arch_tutorial/cs.md) , [Basic modeling tutorial/cs](Basic_modeling_tutorial/cs.md) , [Customize Toolbars/cs](Customize_Toolbars/cs.md) , [Draft tutorial/cs](Draft_tutorial/cs.md) , [Drawing Template HowTo/cs](Drawing_Template_HowTo/cs.md) , [How to install macros/cs](How_to_install_macros/cs.md) , [Offsite tutorials/cs](Offsite_tutorials/cs.md) , [Robot 6-Axis/cs](Robot_6-Axis/cs.md) , [Template:TutorialInfo/cs](Template:TutorialInfo/cs.md) , [Tutorials/cs](Tutorials/cs.md) , [Video tutorials/cs](Video_tutorials/cs.md) , [VRML Preparation for Robot Simulation/cs](VRML_Preparation_for_Robot_Simulation/cs.md) [Category:Categories/cs](Category:Categories/cs.md) + +--- +[documentation index](../README.md) > Category:Tutorials/cs diff --git a/wiki/translations/cs/Category:UnfinishedDocu.md b/wiki/translations/cs/Category:UnfinishedDocu.md index 3f0e51006b..79e3e45f7c 100644 --- a/wiki/translations/cs/Category:UnfinishedDocu.md +++ b/wiki/translations/cs/Category:UnfinishedDocu.md @@ -6,3 +6,6 @@ This category contains all Unfinished Documents [InputField/cs](InputField/cs.md) , [Material/cs](Material/cs.md) , [Part Ellipse/cs](Part_Ellipse/cs.md) , [Part Ellipsoid/cs](Part_Ellipsoid/cs.md) , [Part Helix/cs](Part_Helix/cs.md) , [Part Line/cs](Part_Line/cs.md) , [Part Loft/cs](Part_Loft/cs.md) , [Part Mirror/cs](Part_Mirror/cs.md) , [Part Offset/cs](Part_Offset/cs.md) , [Part Plane/cs](Part_Plane/cs.md) , [Part Point/cs](Part_Point/cs.md) , [Part RegularPolygon/cs](Part_RegularPolygon/cs.md) , [Part RuledSurface/cs](Part_RuledSurface/cs.md) , [Part Spiral/cs](Part_Spiral/cs.md) , [Part Wedge/cs](Part_Wedge/cs.md) , [Sketcher ConstrainHorizontal/cs](Sketcher_ConstrainHorizontal/cs.md) , [Template:UnfinishedDocu/cs](Template:UnfinishedDocu/cs.md) [Category:Administration/cs](Category:Administration/cs.md) [Category:Categories/cs](Category:Categories/cs.md) + +--- +[documentation index](../README.md) > Category:UnfinishedDocu/cs diff --git a/wiki/translations/cs/Category:User_Documentation.md b/wiki/translations/cs/Category:User_Documentation.md index 1990015624..0f8aedeeb0 100644 --- a/wiki/translations/cs/Category:User_Documentation.md +++ b/wiki/translations/cs/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [3Dconnexion input devices/cs](3Dconnexion_input_devices/cs.md) , [About FreeCAD/cs](About_FreeCAD/cs.md) , [Aeroplane/cs](Aeroplane/cs.md) , [Arch Add/cs](Arch_Add/cs.md) , [Arch Axis/cs](Arch_Axis/cs.md) , [Arch Building/cs](Arch_Building/cs.md) , [Arch Check/cs](Arch_Check/cs.md) , [Arch CloseHoles/cs](Arch_CloseHoles/cs.md) , [Arch DAE/cs](Arch_DAE/cs.md) , [Arch Floor/cs](Arch_Floor/cs.md) , [Arch Frame/cs](Arch_Frame/cs.md) , [Arch IFC/cs](Arch_IFC/cs.md) , [Arch IfcExplorer/cs](Arch_IfcExplorer/cs.md) , [Arch MeshToShape/cs](Arch_MeshToShape/cs.md) , [Arch OBJ/cs](Arch_OBJ/cs.md) , [Arch Rebar/cs](Arch_Rebar/cs.md) , [Arch Remove/cs](Arch_Remove/cs.md) , [Arch RemoveShape/cs](Arch_RemoveShape/cs.md) , [Arch Roof/cs](Arch_Roof/cs.md) , [Arch SectionPlane/cs](Arch_SectionPlane/cs.md) , [Arch SelectNonSolidMeshes/cs](Arch_SelectNonSolidMeshes/cs.md) , [Arch Site/cs](Arch_Site/cs.md) , [Arch Space/cs](Arch_Space/cs.md) , [Arch SplitMesh/cs](Arch_SplitMesh/cs.md) , [Arch Stairs/cs](Arch_Stairs/cs.md) , [Arch Structure/cs](Arch_Structure/cs.md) , [Arch Survey/cs](Arch_Survey/cs.md) , [Arch tutorial/cs](Arch_tutorial/cs.md) , [Arch Wall/cs](Arch_Wall/cs.md) , [Arch Window/cs](Arch_Window/cs.md) , [Arch Workbench/cs](Arch_Workbench/cs.md) , [Basic modeling tutorial/cs](Basic_modeling_tutorial/cs.md) , [Branding/cs](Branding/cs.md) , [Compile on Linux/cs](Compile_on_Linux/cs.md) , [Compile on MacOS/cs](Compile_on_MacOS/cs.md) , [Compile on Windows/cs](Compile_on_Windows/cs.md) , [Compiling/cs](Compiling/cs.md) , [Complete Workbench/cs](Complete_Workbench/cs.md) , [Copying Objects/cs](Copying_Objects/cs.md) , [Customize Toolbars/cs](Customize_Toolbars/cs.md) , [Developer hub/cs](Developer_hub/cs.md) , [Document structure/cs](Document_structure/cs.md) , [Download/cs](Download/cs.md) , [Draft AddToGroup/cs](Draft_AddToGroup/cs.md) , [Draft API/cs](Draft_API/cs.md) , [Draft ApplyStyle/cs](Draft_ApplyStyle/cs.md) , [Draft Arc/cs](Draft_Arc/cs.md) , [Draft Array/cs](Draft_Array/cs.md) , [Draft BezCurve/cs](Draft_BezCurve/cs.md) , [Draft BSpline/cs](Draft_BSpline/cs.md) , [Draft Circle/cs](Draft_Circle/cs.md) , [Draft Clone/cs](Draft_Clone/cs.md) , [Draft Constrain/cs](Draft_Constrain/cs.md) , [Draft DAT/cs](Draft_DAT/cs.md) , [Draft Dimension/cs](Draft_Dimension/cs.md) , [Draft Downgrade/cs](Draft_Downgrade/cs.md) , [Draft Draft2Sketch/cs](Draft_Draft2Sketch/cs.md) , [Draft Drawing/cs](Draft_Drawing/cs.md) , [Draft DXF/cs](Draft_DXF/cs.md) , [Draft Edit/cs](Draft_Edit/cs.md) , [Draft Ellipse/cs](Draft_Ellipse/cs.md) , [Draft Facebinder/cs](Draft_Facebinder/cs.md) , [Draft FlipDimension/cs](Draft_FlipDimension/cs.md) , [Draft Heal/cs](Draft_Heal/cs.md) , [Draft Line/cs](Draft_Line/cs.md) , [Draft Move/cs](Draft_Move/cs.md) , [Draft OCA/cs](Draft_OCA/cs.md) , [Draft Offset/cs](Draft_Offset/cs.md) , [Draft PathArray/cs](Draft_PathArray/cs.md) , [Draft Pattern/cs](Draft_Pattern/cs.md) , [Draft Point/cs](Draft_Point/cs.md) , [Draft Polygon/cs](Draft_Polygon/cs.md) , [Draft Preferences/cs](Draft_Preferences/cs.md) , [Draft Rectangle/cs](Draft_Rectangle/cs.md) , [Draft Rotate/cs](Draft_Rotate/cs.md) , [Draft Scale/cs](Draft_Scale/cs.md) , [Draft SelectGroup/cs](Draft_SelectGroup/cs.md) , [Draft SelectPlane/cs](Draft_SelectPlane/cs.md) , [Draft Shape2DView/cs](Draft_Shape2DView/cs.md) , [Draft ShapeString/cs](Draft_ShapeString/cs.md) , [Draft ShowSnapBar/cs](Draft_ShowSnapBar/cs.md) , [Draft Snap Lock/cs](Draft_Snap_Lock/cs.md) , [Draft Snap/cs](Draft_Snap/cs.md) , [Draft SVG/cs](Draft_SVG/cs.md) , [Draft Text/cs](Draft_Text/cs.md) , [Draft ToggleConstructionMode/cs](Draft_ToggleConstructionMode/cs.md) , [Draft ToggleContinueMode/cs](Draft_ToggleContinueMode/cs.md) , [Draft ToggleDisplayMode/cs](Draft_ToggleDisplayMode/cs.md) , [Draft ToggleGrid/cs](Draft_ToggleGrid/cs.md) , [Draft Trimex/cs](Draft_Trimex/cs.md) , [Draft tutorial/cs](Draft_tutorial/cs.md) , [Draft Upgrade/cs](Draft_Upgrade/cs.md) , [Draft Wire/cs](Draft_Wire/cs.md) , [Draft WireToBSpline/cs](Draft_WireToBSpline/cs.md) , [Draft Workbench/cs](Draft_Workbench/cs.md) , [Drawing Annotation/cs](Drawing_Annotation/cs.md) , [Drawing Clip/cs](Drawing_Clip/cs.md) , [Drawing Landscape A3/cs](Drawing_Landscape_A3/cs.md) , [Drawing Open SVG/cs](Drawing_Open_SVG/cs.md) , [Drawing Openbrowser/cs](Drawing_Openbrowser/cs.md) , [Drawing Orthoviews/cs](Drawing_Orthoviews/cs.md) , [Drawing Save/cs](Drawing_Save/cs.md) , [Drawing Symbol/cs](Drawing_Symbol/cs.md) , [Drawing Template HowTo/cs](Drawing_Template_HowTo/cs.md) , [Drawing templates/cs](Drawing_templates/cs.md) , [Drawing View/cs](Drawing_View/cs.md) , [Drawing Workbench/cs](Drawing_Workbench/cs.md) , [Extra python modules/cs](Extra_python_modules/cs.md) , [Feature list/cs](Feature_list/cs.md) , [FEM project/cs](FEM_project/cs.md) , [FEM Workbench/cs](FEM_Workbench/cs.md) , [File Format FCStd/cs](File_Format_FCStd/cs.md) , [Getting started/cs](Getting_started/cs.md) , [Template:GuiCommand/cs](Template:GuiCommand/cs.md) , [Help FreeCAD/cs](Help_FreeCAD/cs.md) , [How to install macros/cs](How_to_install_macros/cs.md) , [Image Workbench/cs](Image_Workbench/cs.md) , [Inspection Workbench/cs](Inspection_Workbench/cs.md) , [Installing additional components/cs](Installing_additional_components/cs.md) , [Installing on Linux/cs](Installing_on_Linux/cs.md) , [Installing on Mac/cs](Installing_on_Mac/cs.md) , [Installing on Windows/cs](Installing_on_Windows/cs.md) , [Interface Customization/cs](Interface_Customization/cs.md) , [Licence/cs](Licence/cs.md) , [Localisation/cs](Localisation/cs.md) , [Macro 3D Parametric Curve/cs](Macro_3D_Parametric_Curve/cs.md) , [Macro 3d Printer Slicer/cs](Macro_3d_Printer_Slicer/cs.md) , [Macro Airfoil Import & Scale/cs](Macro_Airfoil_Import_&_Scale/cs.md) , [Macro Align View to Face/cs](Macro_Align_View_to_Face/cs.md) , [Macro ArrayCopy/cs](Macro_ArrayCopy/cs.md) , [Macro Automatic drawing/cs](Macro_Automatic_drawing/cs.md) , [Macro BOLTS/cs](Macro_BOLTS/cs.md) , [Macro BoundingBox Tracing/cs](Macro_BoundingBox_Tracing/cs.md) , [Macro CartoucheFC 2/cs](Macro_CartoucheFC_2/cs.md) , [Macro CartoucheFC Full/cs](Macro_CartoucheFC_Full/cs.md) , [Macro CartoucheFC/cs](Macro_CartoucheFC/cs.md) , [Macro CenterFace/cs](Macro_CenterFace/cs.md) , [Macro Corner shapes wizard/cs](Macro_Corner_shapes_wizard/cs.md) , [Macro Delta xyz/cs](Macro_Delta_xyz/cs.md) , [Macro Draft Circle 3 Points 3D/cs](Macro_Draft_Circle_3_Points_3D/cs.md) , [Macro Draft Circle 3 Points/cs](Macro_Draft_Circle_3_Points/cs.md) , [Macro Draw 2D Function/cs](Macro_Draw_2D_Function/cs.md) , [Macro Draw Parametric 2D Function/cs](Macro_Draw_Parametric_2D_Function/cs.md) , [Macro EdgesToArc/cs](Macro_EdgesToArc/cs.md) , [Macro Ellipse-Center+2Points/cs](Macro_Ellipse-Center+2Points/cs.md) , [Macro FaceToSketch/cs](Macro_FaceToSketch/cs.md) , [Macro FCInfo Alternate Linux/cs](Macro_FCInfo_Alternate_Linux/cs.md) , [Macro FCInfo/cs](Macro_FCInfo/cs.md) , [Macro FlattenWire/cs](Macro_FlattenWire/cs.md) , [Macro HealArcs/cs](Macro_HealArcs/cs.md) , [Macro JointWire/cs](Macro_JointWire/cs.md) , [Macro Line Length/cs](Macro_Line_Length/cs.md) , [Macro Loft/cs](Macro_Loft/cs.md) , [Macro MacroMenu/cs](Macro_MacroMenu/cs.md) , [Macro Make Circle 3 Points/cs](Macro_Make_Circle_3_Points/cs.md) , [Macro Make Cube/cs](Macro_Make_Cube/cs.md) , [Macro MeshToPart/cs](Macro_MeshToPart/cs.md) , [Macro MessageBox/cs](Macro_MessageBox/cs.md) , [Macro Mouse Cross/cs](Macro_Mouse_Cross/cs.md) , [Macro ObjectInfo/cs](Macro_ObjectInfo/cs.md) , [Macro PartsLibrary/cs](Macro_PartsLibrary/cs.md) , [Macro Rectellipse/cs](Macro_Rectellipse/cs.md) , [Macro Remove parametric history/cs](Macro_Remove_parametric_history/cs.md) , [Macro Rotate View/cs](Macro_Rotate_View/cs.md) , [Macro screw maker1 2/cs](Macro_screw_maker1_2/cs.md) , [Macro Solid Sweep/cs](Macro_Solid_Sweep/cs.md) , [Macro SuperWire/cs](Macro_SuperWire/cs.md) , [Macro Texture Objects/cs](Macro_Texture_Objects/cs.md) , [Macro Texture/cs](Macro_Texture/cs.md) , [Macro Unfold Box/cs](Macro_Unfold_Box/cs.md) , [Macro Unroll Ruled Surface/cs](Macro_Unroll_Ruled_Surface/cs.md) , [Macro View Rotation/cs](Macro_View_Rotation/cs.md) , [Template:Macro/cs](Template:Macro/cs.md) , [Main Page/cs](Main_Page/cs.md) , [Material/cs](Material/cs.md) , [Mesh Workbench/cs](Mesh_Workbench/cs.md) , [MIBA/cs](MIBA/cs.md) , [Misc templates/cs](Misc_templates/cs.md) , [Mouse navigation/cs](Mouse_navigation/cs.md) , [Offsite tutorials/cs](Offsite_tutorials/cs.md) , [Online Help Startpage/cs](Online_Help_Startpage/cs.md) , [Online Help Toc/cs](Online_Help_Toc/cs.md) , [OpenSCAD Workbench/cs](OpenSCAD_Workbench/cs.md) , [Part Boolean/cs](Part_Boolean/cs.md) , [Part Box/cs](Part_Box/cs.md) , [Part Builder/cs](Part_Builder/cs.md) , [Part Chamfer/cs](Part_Chamfer/cs.md) , [Part Circle/cs](Part_Circle/cs.md) , [Part Common/cs](Part_Common/cs.md) , [Part Cone/cs](Part_Cone/cs.md) , [Part Cut/cs](Part_Cut/cs.md) , [Part Cylinder/cs](Part_Cylinder/cs.md) , [Part Ellipse/cs](Part_Ellipse/cs.md) , [Part Ellipsoid/cs](Part_Ellipsoid/cs.md) , [Part Extrude/cs](Part_Extrude/cs.md) , [Part Fillet/cs](Part_Fillet/cs.md) , [Part Fuse/cs](Part_Fuse/cs.md) , [Part Helix/cs](Part_Helix/cs.md) , [Part Line/cs](Part_Line/cs.md) , [Part Loft/cs](Part_Loft/cs.md) , [Part Mirror/cs](Part_Mirror/cs.md) , [Part Module/cs](Part_Module/cs.md) , [Part Offset/cs](Part_Offset/cs.md) , [Part Plane/cs](Part_Plane/cs.md) , [Part Point/cs](Part_Point/cs.md) , [Part Primitives/cs](Part_Primitives/cs.md) , [Part Prism/cs](Part_Prism/cs.md) , [Part RefineShape/cs](Part_RefineShape/cs.md) , [Part RegularPolygon/cs](Part_RegularPolygon/cs.md) , [Part Revolve/cs](Part_Revolve/cs.md) , [Part RuledSurface/cs](Part_RuledSurface/cs.md) , [Part Section/cs](Part_Section/cs.md) , [Part Sphere/cs](Part_Sphere/cs.md) , [Part Spiral/cs](Part_Spiral/cs.md) , [Part Sweep/cs](Part_Sweep/cs.md) , [Part Thickness/cs](Part_Thickness/cs.md) , [Part Torus/cs](Part_Torus/cs.md) , [Part Wedge/cs](Part_Wedge/cs.md) , [PartDesign Chamfer/cs](PartDesign_Chamfer/cs.md) , [PartDesign Draft/cs](PartDesign_Draft/cs.md) , [PartDesign Fillet/cs](PartDesign_Fillet/cs.md) , [PartDesign Groove/cs](PartDesign_Groove/cs.md) , [PartDesign InvoluteGear/cs](PartDesign_InvoluteGear/cs.md) , [PartDesign LinearPattern/cs](PartDesign_LinearPattern/cs.md) , [PartDesign Mirrored/cs](PartDesign_Mirrored/cs.md) , [PartDesign MultiTransform/cs](PartDesign_MultiTransform/cs.md) , [PartDesign Pad/cs](PartDesign_Pad/cs.md) , [PartDesign Pocket/cs](PartDesign_Pocket/cs.md) , [PartDesign PolarPattern/cs](PartDesign_PolarPattern/cs.md) , [PartDesign Revolution/cs](PartDesign_Revolution/cs.md) , [PartDesign Scaled/cs](PartDesign_Scaled/cs.md) , [PartDesign WizardShaft/cs](PartDesign_WizardShaft/cs.md) , [PartDesign Workbench/cs](PartDesign_Workbench/cs.md) , [Path Workbench/cs](Path_Workbench/cs.md) , [Placement API/cs](Placement_API/cs.md) , [Placement/cs](Placement/cs.md) , [Plot Module/cs](Plot_Module/cs.md) , [Points Workbench/cs](Points_Workbench/cs.md) , [Preferences Editor/cs](Preferences_Editor/cs.md) , [Property editor/cs](Property_editor/cs.md) , [Raytracing Workbench/cs](Raytracing_Workbench/cs.md) , [Reverse Engineering Workbench/cs](Reverse_Engineering_Workbench/cs.md) , [Robot 6-Axis/cs](Robot_6-Axis/cs.md) , [Robot Workbench/cs](Robot_Workbench/cs.md) , [Screenshots/cs](Screenshots/cs.md) , [Ship Workbench/cs](Ship_Workbench/cs.md) , [Sketcher CarbonCopy/cs](Sketcher_CarbonCopy/cs.md) , [Sketcher ConstrainAngle/cs](Sketcher_ConstrainAngle/cs.md) , [Sketcher ConstrainCoincident/cs](Sketcher_ConstrainCoincident/cs.md) , [Sketcher ConstrainDistance/cs](Sketcher_ConstrainDistance/cs.md) , [Sketcher ConstrainDistanceX/cs](Sketcher_ConstrainDistanceX/cs.md) , [Sketcher ConstrainDistanceY/cs](Sketcher_ConstrainDistanceY/cs.md) , [Sketcher ConstrainEqual/cs](Sketcher_ConstrainEqual/cs.md) , [Sketcher ConstrainHorizontal/cs](Sketcher_ConstrainHorizontal/cs.md) , [Sketcher ConstrainLock/cs](Sketcher_ConstrainLock/cs.md) , [Sketcher ConstrainParallel/cs](Sketcher_ConstrainParallel/cs.md) , [Sketcher ConstrainPerpendicular/cs](Sketcher_ConstrainPerpendicular/cs.md) , [Sketcher ConstrainPointOnObject/cs](Sketcher_ConstrainPointOnObject/cs.md) , [Sketcher ConstrainRadius/cs](Sketcher_ConstrainRadius/cs.md) , [Sketcher ConstrainSymmetric/cs](Sketcher_ConstrainSymmetric/cs.md) , [Sketcher ConstrainTangent/cs](Sketcher_ConstrainTangent/cs.md) , [Sketcher ConstrainVertical/cs](Sketcher_ConstrainVertical/cs.md) , [Sketcher CreateArc/cs](Sketcher_CreateArc/cs.md) , [Sketcher CreateCircle/cs](Sketcher_CreateCircle/cs.md) , [Sketcher CreateFillet/cs](Sketcher_CreateFillet/cs.md) , [Sketcher CreateLine/cs](Sketcher_CreateLine/cs.md) , [Sketcher CreatePoint/cs](Sketcher_CreatePoint/cs.md) , [Sketcher CreatePolyline/cs](Sketcher_CreatePolyline/cs.md) , [Sketcher CreateRectangle/cs](Sketcher_CreateRectangle/cs.md) , [Sketcher External/cs](Sketcher_External/cs.md) , [Sketcher LeaveSketch/cs](Sketcher_LeaveSketch/cs.md) , [Sketcher MapSketch/cs](Sketcher_MapSketch/cs.md) , [Sketcher NewSketch/cs](Sketcher_NewSketch/cs.md) , [Sketcher ReorientSketch/cs](Sketcher_ReorientSketch/cs.md) , [Sketcher ToggleConstruction/cs](Sketcher_ToggleConstruction/cs.md) , [Sketcher Trimming/cs](Sketcher_Trimming/cs.md) , [Sketcher ViewSketch/cs](Sketcher_ViewSketch/cs.md) , [Sketcher Workbench/cs](Sketcher_Workbench/cs.md) , [Spreadsheet Workbench/cs](Spreadsheet_Workbench/cs.md) , [Start up and Configuration/cs](Start_up_and_Configuration/cs.md) , [Start Workbench/cs](Start_Workbench/cs.md) , [Std Copy/cs](Std_Copy/cs.md) , [Std DuplicateSelection/cs](Std_DuplicateSelection/cs.md) , [Std Edit Menu/cs](Std_Edit_Menu/cs.md) , [Std Edit/cs](Std_Edit/cs.md) , [Std Paste/cs](Std_Paste/cs.md) , [Std Tools Menu/cs](Std_Tools_Menu/cs.md) , [Std ViewScreenShot/cs](Std_ViewScreenShot/cs.md) , [Surface Workbench/cs](Surface_Workbench/cs.md) , [Tasks Placement/cs](Tasks_Placement/cs.md) , [TechDraw Workbench/cs](TechDraw_Workbench/cs.md) , [Template:TutorialInfo/cs](Template:TutorialInfo/cs.md) , [Tutorials/cs](Tutorials/cs.md) , [User hub/cs](User_hub/cs.md) , [Video tutorials/cs](Video_tutorials/cs.md) , [VRML Preparation for Robot Simulation/cs](VRML_Preparation_for_Robot_Simulation/cs.md) , [Web Workbench/cs](Web_Workbench/cs.md) , [Workbenches/cs](Workbenches/cs.md) , , , , , , [Category:Documentation/cs](Category:Documentation/cs.md) [Category:Arch/cs](Category:Arch/cs.md) [Category:Base/cs](Category:Base/cs.md) [Category:BIM/cs](Category:BIM/cs.md) [Category:Draft/cs](Category:Draft/cs.md) [Category:Inspection/cs](Category:Inspection/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:User Documentation/cs diff --git a/wiki/translations/cs/Category:Web.md b/wiki/translations/cs/Category:Web.md index 3c4150e60c..d56aad12e7 100644 --- a/wiki/translations/cs/Category:Web.md +++ b/wiki/translations/cs/Category:Web.md @@ -6,3 +6,6 @@ This category lists pages that relate to the [Web Workbench/cs](Web_Workbench/cs [Web Workbench/cs](Web_Workbench/cs.md) [Category:Workbenches/cs](Category:Workbenches/cs.md) + +--- +[documentation index](../README.md) > Category:Web/cs diff --git a/wiki/translations/cs/Category:Workbenches.md b/wiki/translations/cs/Category:Workbenches.md index 491f483d5b..99b2375e28 100644 --- a/wiki/translations/cs/Category:Workbenches.md +++ b/wiki/translations/cs/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/cs](Arch_Workbench/cs.md) , [Draft Workbench/cs](Draft_Workbench/cs.md) , [FEM Workbench/cs](FEM_Workbench/cs.md) , [Image Workbench/cs](Image_Workbench/cs.md) , [Inspection Workbench/cs](Inspection_Workbench/cs.md) , [Mesh Workbench/cs](Mesh_Workbench/cs.md) , [OpenSCAD Workbench/cs](OpenSCAD_Workbench/cs.md) , [Part Module/cs](Part_Module/cs.md) , [PartDesign Workbench/cs](PartDesign_Workbench/cs.md) , [Path Workbench/cs](Path_Workbench/cs.md) , [Points Workbench/cs](Points_Workbench/cs.md) , [Raytracing Workbench/cs](Raytracing_Workbench/cs.md) , [Reverse Engineering Workbench/cs](Reverse_Engineering_Workbench/cs.md) , [Robot Workbench/cs](Robot_Workbench/cs.md) , [Sketcher Workbench/cs](Sketcher_Workbench/cs.md) , [Spreadsheet Workbench/cs](Spreadsheet_Workbench/cs.md) , [Start Workbench/cs](Start_Workbench/cs.md) , [Std Edit Menu/cs](Std_Edit_Menu/cs.md) , [Std Tools Menu/cs](Std_Tools_Menu/cs.md) , [Surface Workbench/cs](Surface_Workbench/cs.md) , [TechDraw Workbench/cs](TechDraw_Workbench/cs.md) , [Web Workbench/cs](Web_Workbench/cs.md) , [Workbenches/cs](Workbenches/cs.md) , , , , , , , , , , , , , , , , , , [Category:User Documentation/cs](Category:User_Documentation/cs.md) [Category:Draft/cs](Category:Draft/cs.md) [Category:External Workbenches/cs](Category:External_Workbenches/cs.md) [Category:FEM/cs](Category:FEM/cs.md) [Category:Image/cs](Category:Image/cs.md) [Category:Inspection/cs](Category:Inspection/cs.md) [Category:Mesh/cs](Category:Mesh/cs.md) [Category:Obsolete Workbenches/cs](Category:Obsolete_Workbenches/cs.md) [Category:OpenSCAD/cs](Category:OpenSCAD/cs.md) [Category:Part/cs](Category:Part/cs.md) [Category:Path/cs](Category:Path/cs.md) [Category:Plot/cs](Category:Plot/cs.md) [Category:Points/cs](Category:Points/cs.md) [Category:Raytracing/cs](Category:Raytracing/cs.md) [Category:Robot/cs](Category:Robot/cs.md) [Category:Ship/cs](Category:Ship/cs.md) [Category:Surface/cs](Category:Surface/cs.md) [Category:TechDraw/cs](Category:TechDraw/cs.md) [Category:Web/cs](Category:Web/cs.md) + +--- +[documentation index](../README.md) > Category:Workbenches/cs diff --git a/wiki/translations/cs/Code_snippets.md b/wiki/translations/cs/Code_snippets.md index edae1fbc06..864df3ec5f 100644 --- a/wiki/translations/cs/Code_snippets.md +++ b/wiki/translations/cs/Code_snippets.md @@ -1,7 +1,4 @@ # Code snippets/cs - - - {{TOCright}} ## Introduction @@ -1773,3 +1770,6 @@ See [Coin3d snippets](Coin3d_snippets.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Code snippets/cs diff --git a/wiki/translations/cs/CompileOnMac.md b/wiki/translations/cs/CompileOnMac.md index 667fd40750..efea7036f7 100644 --- a/wiki/translations/cs/CompileOnMac.md +++ b/wiki/translations/cs/CompileOnMac.md @@ -1,2 +1,5 @@ # CompileOnMac/cs 1. REDIRECT [Compile on MacOS/cs](Compile_on_MacOS/cs.md) + +--- +[documentation index](../README.md) > CompileOnMac/cs diff --git a/wiki/translations/cs/CompileOnUnix.md b/wiki/translations/cs/CompileOnUnix.md index 005b29d8c7..8eb35c2822 100644 --- a/wiki/translations/cs/CompileOnUnix.md +++ b/wiki/translations/cs/CompileOnUnix.md @@ -1,2 +1,5 @@ # CompileOnUnix/cs 1. REDIRECT [Compile\_on\_Linux/cs](Compile_on_Linux/cs.md) + +--- +[documentation index](../README.md) > CompileOnUnix/cs diff --git a/wiki/translations/cs/CompileOnWindows.md b/wiki/translations/cs/CompileOnWindows.md index 969a9d10cd..97dfcf2070 100644 --- a/wiki/translations/cs/CompileOnWindows.md +++ b/wiki/translations/cs/CompileOnWindows.md @@ -1,2 +1,5 @@ # CompileOnWindows/cs 1. REDIRECT [Compile on Windows/cs](Compile_on_Windows/cs.md) + +--- +[documentation index](../README.md) > CompileOnWindows/cs diff --git a/wiki/translations/cs/Compile_on_Linux.md b/wiki/translations/cs/Compile_on_Linux.md index ccb7a0d863..a0a9bcf3b2 100644 --- a/wiki/translations/cs/Compile_on_Linux.md +++ b/wiki/translations/cs/Compile_on_Linux.md @@ -1,10 +1,4 @@ # Compile on Linux/cs - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -1216,3 +1210,6 @@ To update FreeCAD to latest build just repeat from step 3. Update AUR repo when [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Linux/cs diff --git a/wiki/translations/cs/Compile_on_MacOS.md b/wiki/translations/cs/Compile_on_MacOS.md index 9293d926bc..bfea7cc367 100644 --- a/wiki/translations/cs/Compile_on_MacOS.md +++ b/wiki/translations/cs/Compile_on_MacOS.md @@ -1,10 +1,4 @@ # Compile on MacOS/cs - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -200,3 +194,6 @@ FreeCAD can be built against the latest git master hosted on github, and launche [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS/cs diff --git a/wiki/translations/cs/Compile_on_Windows.md b/wiki/translations/cs/Compile_on_Windows.md index 47f17a1415..2784c15169 100644 --- a/wiki/translations/cs/Compile_on_Windows.md +++ b/wiki/translations/cs/Compile_on_Windows.md @@ -1,10 +1,4 @@ # Compile on Windows/cs - - - - - - {{TOCright}} This page explains step by step **how to compile FreeCAD 0.19 or newer on Windows**. For other platforms see [Compiling](Compiling.md). @@ -471,3 +465,6 @@ See also [Category:Developer Documentation/cs](Category:Developer_Documentation/cs.md) [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows/cs diff --git a/wiki/translations/cs/Compiling.md b/wiki/translations/cs/Compiling.md index 04b94f943e..706267b2f9 100644 --- a/wiki/translations/cs/Compiling.md +++ b/wiki/translations/cs/Compiling.md @@ -1,5 +1,5 @@ # Compiling/cs - Each operating system has its own page for compiling FreeCAD in the [Online Help Documentation](Online_Help_Toc.md). +Each operating system has its own page for compiling FreeCAD in the [Online Help Documentation](Online_Help_Toc.md). ------------------------------------------------------ -------------------------------------------------- ------------------------------------------------- ------------------------------------------------------------- [Compile on Docker container](Compile_on_Docker.md) @@ -20,3 +20,6 @@ To learn to use revision control system and contribute code see [Source code man [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling/cs diff --git a/wiki/translations/cs/Complete_Workbench.md b/wiki/translations/cs/Complete_Workbench.md index 832db5ce91..f9bc2272af 100644 --- a/wiki/translations/cs/Complete_Workbench.md +++ b/wiki/translations/cs/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/cs - - - **The [[Complete Workbench]] is deprecated.** @@ -14,3 +11,6 @@ See [Interface Customization](Interface_Customization.md) if you\'d like to adap [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/cs diff --git a/wiki/translations/cs/Copying_Objects.md b/wiki/translations/cs/Copying_Objects.md index 529c0ae7e4..950bfcbf2c 100644 --- a/wiki/translations/cs/Copying_Objects.md +++ b/wiki/translations/cs/Copying_Objects.md @@ -1,5 +1,5 @@ # Copying Objects/cs - {{TOCright}} +{{TOCright}}
@@ -73,5 +73,5 @@ Jako mnoho věcí ve FreeCADu, je mnoho způsobů jak vytvořit kopii. Pro dalš - [Vložit](Std_Paste.md) - [Duplikace výběru](Std_DuplicateSelection.md) - - +--- +[documentation index](../README.md) > Copying Objects/cs diff --git a/wiki/translations/cs/Customize_Toolbars.md b/wiki/translations/cs/Customize_Toolbars.md index f4058da8dc..15d7b6547e 100644 --- a/wiki/translations/cs/Customize_Toolbars.md +++ b/wiki/translations/cs/Customize_Toolbars.md @@ -1,5 +1,5 @@ # Customize Toolbars/cs - {{TutorialInfo/cs|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} +{{TutorialInfo/cs|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} ## Synopsis @@ -116,3 +116,6 @@ See also [Interface Customization](Interface_Customization.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Customize Toolbars/cs diff --git a/wiki/translations/cs/Debugging.md b/wiki/translations/cs/Debugging.md index 62144b4af2..e98fd2166b 100644 --- a/wiki/translations/cs/Debugging.md +++ b/wiki/translations/cs/Debugging.md @@ -1,10 +1,4 @@ # Debugging/cs - - - - - - {{TOCright}} ## Test First @@ -336,3 +330,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/cs diff --git a/wiki/translations/cs/Developer_hub.md b/wiki/translations/cs/Developer_hub.md index bec6f466d3..f3eb70e692 100644 --- a/wiki/translations/cs/Developer_hub.md +++ b/wiki/translations/cs/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/cs - - ![150](images/Crystal_Clear_app_tutorials.png ) Toto je místo kam jít, jestliže se chcete zúčastnit vývoje software FreeCADu. @@ -179,3 +177,6 @@ FreeCAD, ačkoli už je použitelný v určité oblasti, je na začátku dlouhé [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/cs diff --git a/wiki/translations/cs/Development_roadmap.md b/wiki/translations/cs/Development_roadmap.md index 1ed4f9ac16..f11c24e695 100644 --- a/wiki/translations/cs/Development_roadmap.md +++ b/wiki/translations/cs/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/cs - **Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** +**Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** FreeCAD - though usable in many applications - is at the beginning of a long journey into CAD mainstream. There is still a lot to do to reach a state where we can compete with commercial software. @@ -44,3 +44,6 @@ Like in the most [FLOSS](http://en.wikipedia.org/wiki/FLOSS) projects a release [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/cs diff --git a/wiki/translations/cs/Dialog_creation.md b/wiki/translations/cs/Dialog_creation.md index e64b6d8eb7..a17c3a2761 100644 --- a/wiki/translations/cs/Dialog_creation.md +++ b/wiki/translations/cs/Dialog_creation.md @@ -1,7 +1,4 @@ # Dialog creation/cs - - - {{TOCright}} ## Introduction @@ -263,3 +260,6 @@ class plane(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation/cs diff --git a/wiki/translations/cs/Document_structure.md b/wiki/translations/cs/Document_structure.md index ba1d2234e2..e57eca2f2e 100644 --- a/wiki/translations/cs/Document_structure.md +++ b/wiki/translations/cs/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/cs - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) Dokument FreeCADu obsahuje všechny objekty Vaší úlohy. Může obsahovat skupiny a objekty vytvořené na jakékoliv pracovní ploše. Proto můžete přepínat mezi pracovními plochami a pořád pracujete na stejném dokumentu. Dokument je to se zapisuje na disk, když ukládáte svou práci. Ve FreeCADu můžete také zároveň otevřít několik dokumentů a také otevřít několik pohledů stejného dokumentu. @@ -85,5 +79,5 @@ FreeCADGui.ActiveDocument.ActiveView
- - +--- +[documentation index](../README.md) > Document structure/cs diff --git a/wiki/translations/cs/Download.md b/wiki/translations/cs/Download.md index 92b2442a1d..1bc21540e2 100644 --- a/wiki/translations/cs/Download.md +++ b/wiki/translations/cs/Download.md @@ -1,5 +1,5 @@ # Download/cs - {{TOCright}} +{{TOCright}} ## Current stable version @@ -61,5 +61,5 @@ The FreeCAD community provides a wealth of additional modules and macros. They c
- - +--- +[documentation index](../README.md) > Download/cs diff --git a/wiki/translations/cs/Draft_API.md b/wiki/translations/cs/Draft_API.md index aec8e95c38..4c847d7392 100644 --- a/wiki/translations/cs/Draft_API.md +++ b/wiki/translations/cs/Draft_API.md @@ -1,5 +1,5 @@ # Draft API/cs - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** These functions are part of the [Draft Workbench](Draft_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `Draft` module has been imported. @@ -85,3 +85,6 @@ Draft.move(myrect, mydistance) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft API/cs diff --git a/wiki/translations/cs/Draft_AddToGroup.md b/wiki/translations/cs/Draft_AddToGroup.md index a79729eeb5..2796e01c0b 100644 --- a/wiki/translations/cs/Draft_AddToGroup.md +++ b/wiki/translations/cs/Draft_AddToGroup.md @@ -8,6 +8,8 @@ SeeAlso:[Draft SelectGroup](Draft_SelectGroup/cs.md), [Std CreateGroup](Std_CreateGroup/cs.md) --- +# Draft AddToGroup/cs +
@@ -44,5 +46,5 @@ In FreeCAD version 0.20 the command can also handle group-like [Arch](Arch_Workb - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddToGroup/cs diff --git a/wiki/translations/cs/Draft_Apply.md b/wiki/translations/cs/Draft_Apply.md index 027acfd7ee..7c8893ab31 100644 --- a/wiki/translations/cs/Draft_Apply.md +++ b/wiki/translations/cs/Draft_Apply.md @@ -1,2 +1,5 @@ # Draft Apply/cs 1. REDIRECT [Draft\_ApplyStyle/cs](Draft_ApplyStyle/cs.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Apply/cs diff --git a/wiki/translations/cs/Draft_ApplyStyle.md b/wiki/translations/cs/Draft_ApplyStyle.md index 9bd1701d13..56b37ce10a 100644 --- a/wiki/translations/cs/Draft_ApplyStyle.md +++ b/wiki/translations/cs/Draft_ApplyStyle.md @@ -1,3 +1,4 @@ +# Draft ApplyStyle/cs --- - GuiCommand:/cs Name:Draft_Apply Name/cs:Kreslení Použij Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft -> Apply style--- @@ -52,8 +53,5 @@ This command currently handles only five of the settings the [Draft SetStyle](Dr - In FreeCAD version 0.20 the [Draft SetStyle](Draft_SetStyle.md) command can also apply the settings. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ApplyStyle/cs diff --git a/wiki/translations/cs/Draft_Arc.md b/wiki/translations/cs/Draft_Arc.md index 77037e73d1..11a9c77db5 100644 --- a/wiki/translations/cs/Draft_Arc.md +++ b/wiki/translations/cs/Draft_Arc.md @@ -1,3 +1,4 @@ +# Draft Arc/cs --- - GuiCommand:/cs Name:Draft_Arc Name/cs:Kreslení oblouk Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení → Oblouk Shortcut:A R SeeAlso:[Kreslení kružnice](Draft_Circle/cs.md)--- @@ -119,8 +120,5 @@ arc3 = Draft.make_circle(750, startangle=-30, endangle=-150) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc/cs diff --git a/wiki/translations/cs/Draft_Array.md b/wiki/translations/cs/Draft_Array.md index e4a2a9dfc8..9ca86e83fc 100644 --- a/wiki/translations/cs/Draft_Array.md +++ b/wiki/translations/cs/Draft_Array.md @@ -1,3 +1,4 @@ +# Draft Array/cs --- - GuiCommand:/cs Name:Draft_Array Name/cs:Kreslení Pole Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft → Array SeeAlso:[PathArray](Draft_PathArray/cs.md)--- @@ -43,8 +44,5 @@ See [Draft OrthoArray](Draft_OrthoArray#Properties.md). See [Draft OrthoArray](Draft_OrthoArray#Scripting.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Array/cs diff --git a/wiki/translations/cs/Draft_BSpline.md b/wiki/translations/cs/Draft_BSpline.md index d8afe67255..d4be14581a 100644 --- a/wiki/translations/cs/Draft_BSpline.md +++ b/wiki/translations/cs/Draft_BSpline.md @@ -1,3 +1,4 @@ +# Draft BSpline/cs --- - GuiCommand:/cs Name:Draft BSpline Name/cs:Draft BSpline Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft → BSpline Shortcut:B S SeeAlso:[Drát](Draft_Wire/cs.md)--- @@ -192,8 +193,5 @@ spline3 = Draft.make_bspline([1.3*p3, p1, -1.7*p2], closed=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BSpline/cs diff --git a/wiki/translations/cs/Draft_BezCurve.md b/wiki/translations/cs/Draft_BezCurve.md index a0ed6da2e7..4f05bd6c7e 100644 --- a/wiki/translations/cs/Draft_BezCurve.md +++ b/wiki/translations/cs/Draft_BezCurve.md @@ -6,6 +6,8 @@ Shortcut:B Z --- +# Draft BezCurve/cs + @@ -194,8 +196,5 @@ bezcurve3 = Draft.make_bezcurve([1.7*p3, 1.5*p4, 2.1*p2, p1], closed=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BezCurve/cs diff --git a/wiki/translations/cs/Draft_Circle.md b/wiki/translations/cs/Draft_Circle.md index 42360c01a0..31303cac27 100644 --- a/wiki/translations/cs/Draft_Circle.md +++ b/wiki/translations/cs/Draft_Circle.md @@ -1,3 +1,4 @@ +# Draft Circle/cs --- - GuiCommand:/cs Name:Draft_Circle Name/cs:Kreslení_Kružnice Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení -> Kružnice Shortcut:C I SeeAlso:[Kreslení oblouk](Draft_Arc/cs.md)--- @@ -163,8 +164,5 @@ circle3 = Draft.make_circle(750, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Circle/cs diff --git a/wiki/translations/cs/Draft_Clone.md b/wiki/translations/cs/Draft_Clone.md index 4c267c640b..e46bb47076 100644 --- a/wiki/translations/cs/Draft_Clone.md +++ b/wiki/translations/cs/Draft_Clone.md @@ -1,3 +1,4 @@ +# Draft Clone/cs --- - GuiCommand:/cs Name:Draft Clone Name/cs:Kreslení Klon Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft → Clone SeeAlso:[Kreslení Měřítko](Draft_Scale/cs.md)--- @@ -115,8 +116,5 @@ cloned_object.Fuse = True doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Clone/cs diff --git a/wiki/translations/cs/Draft_CloseLine.md b/wiki/translations/cs/Draft_CloseLine.md index 5482c4c029..fcf308e500 100644 --- a/wiki/translations/cs/Draft_CloseLine.md +++ b/wiki/translations/cs/Draft_CloseLine.md @@ -1,2 +1,5 @@ # Draft CloseLine/cs 1. REDIRECT [Draft\_Wire/cs](Draft_Wire/cs.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CloseLine/cs diff --git a/wiki/translations/cs/Draft_Constrain.md b/wiki/translations/cs/Draft_Constrain.md index 8d2d9da963..5c58f40bc6 100644 --- a/wiki/translations/cs/Draft_Constrain.md +++ b/wiki/translations/cs/Draft_Constrain.md @@ -1,10 +1,4 @@ # Draft Constrain/cs - - - - - - {{TOCright}} ## Description @@ -68,3 +62,6 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr [Category:User Documentation/cs](Category:User_Documentation/cs.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Constrain/cs diff --git a/wiki/translations/cs/Draft_DAT.md b/wiki/translations/cs/Draft_DAT.md index 8b6b62787d..47c9fc94ac 100644 --- a/wiki/translations/cs/Draft_DAT.md +++ b/wiki/translations/cs/Draft_DAT.md @@ -1,9 +1,4 @@ # Draft DAT/cs - - - - - The common airfoil data format is a simple file containing the optional metadata of the airfoil in the first 1-2 lines and the coordinates of the upper and lower surface. There are many different dialects of this format so this import module tries to be as smart as possible to understand the input file. @@ -18,3 +13,6 @@ There are many different dialects of this format so this import module tries to [Category:User Documentation/cs](Category:User_Documentation/cs.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DAT/cs diff --git a/wiki/translations/cs/Draft_DXF.md b/wiki/translations/cs/Draft_DXF.md index 0430b0c1d3..a5d3be050c 100644 --- a/wiki/translations/cs/Draft_DXF.md +++ b/wiki/translations/cs/Draft_DXF.md @@ -1,10 +1,4 @@ # Draft DXF/cs - - - - - - {{TOCright}} ## Description @@ -180,3 +174,6 @@ importDXF.export(objects, "/home/user/Pictures/myfile.dxf") [Category:User Documentation/cs](Category:User_Documentation/cs.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DXF/cs diff --git a/wiki/translations/cs/Draft_Dimension.md b/wiki/translations/cs/Draft_Dimension.md index 97071d63f1..0d9beb54c6 100644 --- a/wiki/translations/cs/Draft_Dimension.md +++ b/wiki/translations/cs/Draft_Dimension.md @@ -1,3 +1,4 @@ +# Draft Dimension/cs --- - GuiCommand:/cs Name:Draft Dimension Name/cs:Draft Dimension Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft → Dimension Shortcut:D I SeeAlso:[FlipDimension](Draft_FlipDimension/cs.md)--- @@ -362,8 +363,5 @@ dimension4.ViewObject.FontSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Dimension/cs diff --git a/wiki/translations/cs/Draft_Downgrade.md b/wiki/translations/cs/Draft_Downgrade.md index b746ab41c9..ad9bb4091b 100644 --- a/wiki/translations/cs/Draft_Downgrade.md +++ b/wiki/translations/cs/Draft_Downgrade.md @@ -1,3 +1,4 @@ +# Draft Downgrade/cs --- - GuiCommand:/cs Name:Draft_Downgrade Name/cs:Kreslení Degradace Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft → Downgrade Shortcut:D N SeeAlso:[Draft Upgrade](Draft_Upgrade/cs.md)--- @@ -99,8 +100,5 @@ add_list4, delete_list4 = Draft.downgrade(box, delete=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Downgrade/cs diff --git a/wiki/translations/cs/Draft_Draft2Sketch.md b/wiki/translations/cs/Draft_Draft2Sketch.md index 12491de3a7..1254d543d0 100644 --- a/wiki/translations/cs/Draft_Draft2Sketch.md +++ b/wiki/translations/cs/Draft_Draft2Sketch.md @@ -1,3 +1,4 @@ +# Draft Draft2Sketch/cs --- - GuiCommand:/cs Name:Draft_Draft2Sketch Name/cs:Kreslení Kreslení2Náčrt Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení -> Nákres do Náčrtu--- @@ -120,8 +121,5 @@ draft_from_sketch = Draft.draftify(sketch_from_draft, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Draft2Sketch/cs diff --git a/wiki/translations/cs/Draft_Drawing.md b/wiki/translations/cs/Draft_Drawing.md index 0602d1a72e..e04a22fb81 100644 --- a/wiki/translations/cs/Draft_Drawing.md +++ b/wiki/translations/cs/Draft_Drawing.md @@ -1,3 +1,4 @@ +# Draft Drawing/cs --- - GuiCommand:/cs Name:Draft_Drawing Name/cs:Draft Drawing Workbenches:[Architektura](Drawing_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Drafting → Drawing--- @@ -39,8 +40,5 @@ This command is now obsolete. Use the [TechDraw Workbench](TechDraw_Workbench.md - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Drawing/cs diff --git a/wiki/translations/cs/Draft_Edit.md b/wiki/translations/cs/Draft_Edit.md index 068d7e9743..3849e78fbb 100644 --- a/wiki/translations/cs/Draft_Edit.md +++ b/wiki/translations/cs/Draft_Edit.md @@ -1,3 +1,4 @@ +# Draft Edit/cs --- - GuiCommand:/cs Name:Draft Edit |Name/cs:Kreslení Úpravy Workbenches:[Architektura](Draft_Workbench/cs___Modul_kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft -> Edit--- @@ -197,8 +198,5 @@ Není dostupné. Každý z výše uvedených objektů může být upravován př - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Edit/cs diff --git a/wiki/translations/cs/Draft_Ellipse.md b/wiki/translations/cs/Draft_Ellipse.md index cc3d7d666c..0a4721034f 100644 --- a/wiki/translations/cs/Draft_Ellipse.md +++ b/wiki/translations/cs/Draft_Ellipse.md @@ -1,3 +1,4 @@ +# Draft Ellipse/cs --- - GuiCommand:/cs Name:Draft_Ellipse Name/cs:Kreslení Elipsa Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení -> Elipsa Shortcut:E L SeeAlso:[Kreslení Kružnice](Draft_Circle/cs.md)--- @@ -158,8 +159,5 @@ ellipse3 = Draft.make_ellipse(700, 1000, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Ellipse/cs diff --git a/wiki/translations/cs/Draft_Facebinder.md b/wiki/translations/cs/Draft_Facebinder.md index 42a4698518..a2da67d7c8 100644 --- a/wiki/translations/cs/Draft_Facebinder.md +++ b/wiki/translations/cs/Draft_Facebinder.md @@ -1,3 +1,4 @@ +# Draft Facebinder/cs --- - GuiCommand:/cs Name:Draft_Facebinder Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft → Facebinder Shortcut:F F--- @@ -137,8 +138,5 @@ facebinder.ViewObject.ShapeColor = (0.99, 0.99, 0.4) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Facebinder/cs diff --git a/wiki/translations/cs/Draft_FinishLine.md b/wiki/translations/cs/Draft_FinishLine.md index 92a9212776..fd9b2c09c5 100644 --- a/wiki/translations/cs/Draft_FinishLine.md +++ b/wiki/translations/cs/Draft_FinishLine.md @@ -1,2 +1,5 @@ # Draft FinishLine/cs 1. REDIRECT [Draft\_Wire/cs](Draft_Wire/cs.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FinishLine/cs diff --git a/wiki/translations/cs/Draft_FlipDimension.md b/wiki/translations/cs/Draft_FlipDimension.md index e55602546c..38e0da4a0f 100644 --- a/wiki/translations/cs/Draft_FlipDimension.md +++ b/wiki/translations/cs/Draft_FlipDimension.md @@ -1,3 +1,4 @@ +# Draft FlipDimension/cs --- - GuiCommand:/cs Name:Draft FlipDimension Name/cs:Kreslení PřehoďKótu Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft → Utilities → Flip Dimension SeeAlso:[Kóty](Draft_Dimension/cs.md)--- @@ -59,8 +60,5 @@ dimension.Normal = dimension.Normal.negative() doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FlipDimension/cs diff --git a/wiki/translations/cs/Draft_Heal.md b/wiki/translations/cs/Draft_Heal.md index f0a2aa9195..dd46665c99 100644 --- a/wiki/translations/cs/Draft_Heal.md +++ b/wiki/translations/cs/Draft_Heal.md @@ -1,3 +1,4 @@ +# Draft Heal/cs --- - GuiCommand:/cs Name:Draft Heal Name/cs:Kreslení Léčit Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení → Utility → Léčit--- @@ -30,8 +31,5 @@ Kvůli rychlému vývoji FreeCADu se některé definice objektů mohou v čase a - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Heal/cs diff --git a/wiki/translations/cs/Draft_Line.md b/wiki/translations/cs/Draft_Line.md index 675c9d921d..bdd223f616 100644 --- a/wiki/translations/cs/Draft_Line.md +++ b/wiki/translations/cs/Draft_Line.md @@ -1,3 +1,4 @@ +# Draft Line/cs --- - GuiCommand:/cs Name:Draft Line Name/cs:Kreslení Přímka Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení → Přímka Shortcut:L I SeeAlso:[Kreslení drát](Draft_Wire/cs.md)--- @@ -145,8 +146,5 @@ line2 = Draft.make_line(p3, p4) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Line/cs diff --git a/wiki/translations/cs/Draft_Linestyle.md b/wiki/translations/cs/Draft_Linestyle.md index b4738e645b..d4188ff606 100644 --- a/wiki/translations/cs/Draft_Linestyle.md +++ b/wiki/translations/cs/Draft_Linestyle.md @@ -1,2 +1,5 @@ # Draft Linestyle/cs 1. REDIRECT [Draft\_Tray](Draft_Tray.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Linestyle/cs diff --git a/wiki/translations/cs/Draft_Module.md b/wiki/translations/cs/Draft_Module.md index 87bf453348..8d7764e4a3 100644 --- a/wiki/translations/cs/Draft_Module.md +++ b/wiki/translations/cs/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/cs 1. REDIRECT [Draft\_Workbench/cs](Draft_Workbench/cs.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/cs diff --git a/wiki/translations/cs/Draft_Move.md b/wiki/translations/cs/Draft_Move.md index 3bea87240e..785e8431e1 100644 --- a/wiki/translations/cs/Draft_Move.md +++ b/wiki/translations/cs/Draft_Move.md @@ -1,3 +1,4 @@ +# Draft Move/cs --- - GuiCommand:/cs Name:Draft_Move Name/cs:Kreslení Posun Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft -> Move Shortcut:M V--- @@ -127,8 +128,5 @@ list3 = Draft.move(list1, -2*vector, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Move/cs diff --git a/wiki/translations/cs/Draft_OCA.md b/wiki/translations/cs/Draft_OCA.md index 3ae5818933..f679596ae8 100644 --- a/wiki/translations/cs/Draft_OCA.md +++ b/wiki/translations/cs/Draft_OCA.md @@ -1,10 +1,4 @@ # Draft OCA/cs - - - - - - {{TOCright}} ## Description @@ -75,3 +69,6 @@ importOCA.export(objects, "/home/user/Pictures/myfile.oca") [Category:User Documentation/cs](Category:User_Documentation/cs.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft OCA/cs diff --git a/wiki/translations/cs/Draft_Offset.md b/wiki/translations/cs/Draft_Offset.md index 020b73812a..753159f945 100644 --- a/wiki/translations/cs/Draft_Offset.md +++ b/wiki/translations/cs/Draft_Offset.md @@ -1,3 +1,4 @@ +# Draft Offset/cs --- - GuiCommand:/cs Name:Draft Offset Name/cs:Kreslení Odsadit Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft → Offset Shortcut:O S SeeAlso:[Part 2D Offset](Part_Offset2D/cs.md)--- @@ -126,8 +127,5 @@ offset5 = Draft.offset(wire, 1.5*vector, copy=True, occ=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Offset/cs diff --git a/wiki/translations/cs/Draft_PathArray.md b/wiki/translations/cs/Draft_PathArray.md index 6e6ef5671c..d209f8dd05 100644 --- a/wiki/translations/cs/Draft_PathArray.md +++ b/wiki/translations/cs/Draft_PathArray.md @@ -1,3 +1,4 @@ +# Draft PathArray/cs --- - GuiCommand:/cs Name:Draft PathArray Name/cs:Kreslení TrasovéPole Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft → PathArray SeeAlso:[Draft Array](Draft_Array/cs.md) --- @@ -272,8 +273,5 @@ path_array2 = Draft.make_path_array(obj, wire, count=3, extra=App.Vector(0, -500 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathArray/cs diff --git a/wiki/translations/cs/Draft_Pattern.md b/wiki/translations/cs/Draft_Pattern.md index cd2d8873c3..cc5e1ad4ba 100644 --- a/wiki/translations/cs/Draft_Pattern.md +++ b/wiki/translations/cs/Draft_Pattern.md @@ -1,10 +1,4 @@ # Draft Pattern/cs - - - - - - {{TOCright}} ## Description @@ -59,8 +53,5 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr - The **Edit → Preferences... → Draft → Visual settings → Hatch patterns resolution** preference is not used. - To change the **Pattern Size** used for new objects: **Edit → Preferences... → Draft → Visual settings → Hatch Pattern default size**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Pattern/cs diff --git a/wiki/translations/cs/Draft_Point.md b/wiki/translations/cs/Draft_Point.md index 6a3566e67d..87d7885868 100644 --- a/wiki/translations/cs/Draft_Point.md +++ b/wiki/translations/cs/Draft_Point.md @@ -1,3 +1,4 @@ +# Draft Point/cs --- - GuiCommand:/cs Name:Draft Point Name/cs:Kreslení Bod Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení -> Bod Shortcut:P T--- @@ -170,8 +171,5 @@ for i in range(N): doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Point/cs diff --git a/wiki/translations/cs/Draft_Polygon.md b/wiki/translations/cs/Draft_Polygon.md index dee4075a30..d04750023e 100644 --- a/wiki/translations/cs/Draft_Polygon.md +++ b/wiki/translations/cs/Draft_Polygon.md @@ -1,3 +1,4 @@ +# Draft Polygon/cs --- - GuiCommand:/cs Name:Draft Polygon Name/cs:Draft Polygon Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft -> Polygon Shortcut:P G--- @@ -174,8 +175,5 @@ Polygon3 = Draft.make_polygon(6, radius=1450, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Polygon/cs diff --git a/wiki/translations/cs/Draft_Preferences.md b/wiki/translations/cs/Draft_Preferences.md index 60e4325c08..91a28c40ae 100644 --- a/wiki/translations/cs/Draft_Preferences.md +++ b/wiki/translations/cs/Draft_Preferences.md @@ -1,10 +1,4 @@ # Draft Preferences/cs - - - - - - {{TOCright}} The preferences for the [Draft Workbench](Draft_Workbench.md) can be found in the [Preferences Editor](Preferences_Editor.md). In the menu select **Edit → Preferences...** and then **Draft**. @@ -496,3 +490,6 @@ On the *Texts and dimensions* tab you can specify the following: [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Preferences/cs diff --git a/wiki/translations/cs/Draft_Rectangle.md b/wiki/translations/cs/Draft_Rectangle.md index c5e5b574de..2cb03bdd88 100644 --- a/wiki/translations/cs/Draft_Rectangle.md +++ b/wiki/translations/cs/Draft_Rectangle.md @@ -1,3 +1,4 @@ +# Draft Rectangle/cs --- - GuiCommand:/cs Name:Draft Rectangle Name/cs:Draft Rectangle Workbenches:[Architecture](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft -> Rectangle Shortcut:R E SeeAlso:[Part Box](Part_Box/cs.md)--- @@ -180,8 +181,5 @@ rectangle3 = Draft.make_rectangle(3500, 250, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rectangle/cs diff --git a/wiki/translations/cs/Draft_Rotate.md b/wiki/translations/cs/Draft_Rotate.md index 730e0435be..8e87961ed2 100644 --- a/wiki/translations/cs/Draft_Rotate.md +++ b/wiki/translations/cs/Draft_Rotate.md @@ -1,3 +1,4 @@ +# Draft Rotate/cs --- - GuiCommand:/cs Name:Draft Rotate Name/cs:Kreslení Otočit Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení → Otočit Shortcut:R O--- @@ -140,8 +141,5 @@ rot_list4 = Draft.rotate(list2, 4*angle2, center=cen, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rotate/cs diff --git a/wiki/translations/cs/Draft_SVG.md b/wiki/translations/cs/Draft_SVG.md index f319479ead..cf1795477d 100644 --- a/wiki/translations/cs/Draft_SVG.md +++ b/wiki/translations/cs/Draft_SVG.md @@ -1,10 +1,4 @@ # Draft SVG/cs - - - - - - {{TOCright}} ## Description @@ -171,3 +165,6 @@ importSVG.export(objects, "/home/user/Pictures/myfile.svg") [Category:User Documentation/cs](Category:User_Documentation/cs.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SVG/cs diff --git a/wiki/translations/cs/Draft_Scale.md b/wiki/translations/cs/Draft_Scale.md index 38f870a610..aad394d19c 100644 --- a/wiki/translations/cs/Draft_Scale.md +++ b/wiki/translations/cs/Draft_Scale.md @@ -1,3 +1,4 @@ +# Draft Scale/cs --- - GuiCommand:/cs Name:Draft Scale Name/cs:Kreslení Roztáhnout Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení → Roztáhnout Shortcut:S C SeeAlso:[Kreslení Klon](Draft_Clone/cs.md)--- @@ -134,8 +135,5 @@ wires = Draft.scale([wire1, wire2], scale2, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Scale/cs diff --git a/wiki/translations/cs/Draft_SelectGroup.md b/wiki/translations/cs/Draft_SelectGroup.md index d07af22edf..4da2ae6511 100644 --- a/wiki/translations/cs/Draft_SelectGroup.md +++ b/wiki/translations/cs/Draft_SelectGroup.md @@ -7,6 +7,8 @@ Shortcut: SeeAlso:[Draft AddToGroup](Draft_AddToGroup/cs.md), [Std CreateGroup](Std_Group/cs.md) --- +# Draft SelectGroup/cs + @@ -42,8 +44,5 @@ The command currently does not work well with layers and can produce confusing r - For more information about organizing your model see [Document structure](Document_structure.md) and [Arch tutorial](Arch_tutorial#Organizing_your_model.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectGroup/cs diff --git a/wiki/translations/cs/Draft_SelectPlane.md b/wiki/translations/cs/Draft_SelectPlane.md index 2049119c6d..a4a1ec7c1b 100644 --- a/wiki/translations/cs/Draft_SelectPlane.md +++ b/wiki/translations/cs/Draft_SelectPlane.md @@ -1,3 +1,4 @@ +# Draft SelectPlane/cs --- - GuiCommand:/cs Name:Draft SelectPlane Name/cs:Kreslení VýběrRoviny Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení -> Utility -> Výběr roviny--- @@ -160,8 +161,5 @@ projection = my_plane.projectPoint(App.Vector(10, 15, 2)) print(projection) ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectPlane/cs diff --git a/wiki/translations/cs/Draft_Shape2DView.md b/wiki/translations/cs/Draft_Shape2DView.md index a36557b732..338898f9ca 100644 --- a/wiki/translations/cs/Draft_Shape2DView.md +++ b/wiki/translations/cs/Draft_Shape2DView.md @@ -1,3 +1,4 @@ +# Draft Shape2DView/cs --- - GuiCommand:/cs Name:Draft_Shape2DView Name/cs:Kreslení TělesoDo2DPohledu Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení -> TělesoDo2D--- @@ -126,8 +127,5 @@ shape3.ProjectionMode = "Individual Faces" doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Shape2DView/cs diff --git a/wiki/translations/cs/Draft_ShapeString.md b/wiki/translations/cs/Draft_ShapeString.md index 14d299e945..35d6a1276b 100644 --- a/wiki/translations/cs/Draft_ShapeString.md +++ b/wiki/translations/cs/Draft_ShapeString.md @@ -1,3 +1,4 @@ +# Draft ShapeString/cs --- - GuiCommand:/cs Name:Draft_ShapeString Name/cs:Draft ShapeString Workbenches:[MenuLocation:Draft -> ShapeString Shortcut:S S SeeAlso:[[Draft Text/cs|Draft Text](Draft_Workbench/cs___Kreslení]].md), [Part Extrude](Part_Extrude/cs.md)--- @@ -184,8 +185,5 @@ S3.Placement.Rotation = App.Rotation(zaxis, 180) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString/cs diff --git a/wiki/translations/cs/Draft_ShowSnapBar.md b/wiki/translations/cs/Draft_ShowSnapBar.md index cfa72b3dd4..e0c2d244a8 100644 --- a/wiki/translations/cs/Draft_ShowSnapBar.md +++ b/wiki/translations/cs/Draft_ShowSnapBar.md @@ -1,3 +1,4 @@ +# Draft ShowSnapBar/cs --- - GuiCommand:/cs Name:Draft ShowSnapBar Name/cs:Draft ShowSnapBar Workbenches:[Arch](Draft_Workbench/cs___Draft]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft → Utilities → Show Snap Bar--- @@ -18,8 +19,5 @@ The **Draft S - Select the **View → Toolbars → Draft Snap** option from the menu. - Right-click an empty space in the [toolbar area](Interface.md) and select the **Draft Snap** option from the menu that appears. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShowSnapBar/cs diff --git a/wiki/translations/cs/Draft_Snap.md b/wiki/translations/cs/Draft_Snap.md index ff51f0cfa9..82fc5703be 100644 --- a/wiki/translations/cs/Draft_Snap.md +++ b/wiki/translations/cs/Draft_Snap.md @@ -1,10 +1,4 @@ # Draft Snap/cs - - - - - - {{TOCright}} ## Description @@ -105,3 +99,6 @@ Note that after changing some preferences you must restart FreeCAD. [Category:User Documentation/cs](Category:User_Documentation/cs.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap/cs diff --git a/wiki/translations/cs/Draft_Snap_Lock.md b/wiki/translations/cs/Draft_Snap_Lock.md index 3076666753..af6f0e2ade 100644 --- a/wiki/translations/cs/Draft_Snap_Lock.md +++ b/wiki/translations/cs/Draft_Snap_Lock.md @@ -1,3 +1,4 @@ +# Draft Snap Lock/cs --- - GuiCommand:/cs Name:Draft ToggleSnap Name/cs:Přepínání uchopování Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení → Utility → Přepínání uchopování--- @@ -25,8 +26,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). - Press the **** button in the [Draft snap widget](Draft_snap_widget.md) and in the menu select the ** Snap Lock** option. - Use the \"in-command\" shortcut: **S**. This shortcut can only be used if a command is active and does not work for all commands. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Lock/cs diff --git a/wiki/translations/cs/Draft_Text.md b/wiki/translations/cs/Draft_Text.md index aca8347c2b..2973d16abf 100644 --- a/wiki/translations/cs/Draft_Text.md +++ b/wiki/translations/cs/Draft_Text.md @@ -1,3 +1,4 @@ +# Draft Text/cs --- - GuiCommand:/cs Name:Draft_Text Name/cs:Draft Text Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft → Text Shortcut:T E--- @@ -200,8 +201,5 @@ text3.ViewObject.FontSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Text/cs diff --git a/wiki/translations/cs/Draft_ToggleConstructionMode.md b/wiki/translations/cs/Draft_ToggleConstructionMode.md index 6c9022048b..457dee5e83 100644 --- a/wiki/translations/cs/Draft_ToggleConstructionMode.md +++ b/wiki/translations/cs/Draft_ToggleConstructionMode.md @@ -1,3 +1,4 @@ +# Draft ToggleConstructionMode/cs --- - GuiCommand:/cs Name:Draft ToggleConstructionMode Name/cs:DKreslení Přepnutí do konstrukčního módu Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení -> Utility -> Přepnutí do konstrukčního módu--- @@ -47,8 +48,5 @@ In FreeCAD version 0.19 this command and the [Draft AddConstruction](Draft_AddCo - To change the label ((v0.20) ) of the construction group: **Edit → Preferences... → Draft → General settings → Construction Geometry → Construction group name**. - To change the color that is used: **Edit → Preferences... → Draft → General settings → Construction Geometry → Construction geometry color**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleConstructionMode/cs diff --git a/wiki/translations/cs/Draft_ToggleContinueMode.md b/wiki/translations/cs/Draft_ToggleContinueMode.md index 6844d61d1c..8c2bd67541 100644 --- a/wiki/translations/cs/Draft_ToggleContinueMode.md +++ b/wiki/translations/cs/Draft_ToggleContinueMode.md @@ -1,3 +1,4 @@ +# Draft ToggleContinueMode/cs --- - GuiCommand:/cs Name:Draft ToggleContinueMode Name/cs:Kreslení Přepnout pokračovací mód Workbenches:[Architektura](Draft_Workbench/cs___kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení -> Utility -> Přepnout pokračovací mód--- @@ -31,8 +32,5 @@ Některé nástroje modulů Kreslení a Architektura mají zaklikávací políč - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleContinueMode/cs diff --git a/wiki/translations/cs/Draft_ToggleDisplayMode.md b/wiki/translations/cs/Draft_ToggleDisplayMode.md index 953ace4339..e47d6f2f20 100644 --- a/wiki/translations/cs/Draft_ToggleDisplayMode.md +++ b/wiki/translations/cs/Draft_ToggleDisplayMode.md @@ -1,3 +1,4 @@ +# Draft ToggleDisplayMode/cs --- - GuiCommand:/cs Name:Draft ToggleDisplayMode Name/cs:Přepnout zobrazovací mód Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení → Utility → Přepnout zobrazovací mód Shortcut:Shift + Space--- @@ -33,8 +34,5 @@ Tento nástroj přepíná zobrazení vybraného objektu(ů) mezi Drátovým zobr - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleDisplayMode/cs diff --git a/wiki/translations/cs/Draft_ToggleGrid.md b/wiki/translations/cs/Draft_ToggleGrid.md index 0bb0b0e1e9..1ad3ef96e5 100644 --- a/wiki/translations/cs/Draft_ToggleGrid.md +++ b/wiki/translations/cs/Draft_ToggleGrid.md @@ -1,3 +1,4 @@ +# Draft ToggleGrid/cs --- - GuiCommand:/cs Name:Draft ToggleGrid Name/cs:Kreslení Přepnout mřížka Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Draft → Utilitiy → Přepnout mřížka--- @@ -35,8 +36,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - To use the grid select: **Edit → Preferences... → Draft → Grid and snapping → Grid → Use grid**. After changing this preference you must restart FreeCAD. - Several other grid preferences are also available: **Edit → Preferences... → Draft → Grid and snapping → Grid**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleGrid/cs diff --git a/wiki/translations/cs/Draft_Trimex.md b/wiki/translations/cs/Draft_Trimex.md index 6437005fe9..e6c30f22f4 100644 --- a/wiki/translations/cs/Draft_Trimex.md +++ b/wiki/translations/cs/Draft_Trimex.md @@ -1,3 +1,4 @@ +# Draft Trimex/cs --- - GuiCommand:/cs Name:Draft Trimex Name/cs:Kreslení Zakrácení/Prodloužení Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení → Zakrácení/Prodloužení Shortcut:T R SeeAlso:[DílVysunutí](Part_Extrude/cs.md)--- @@ -134,8 +135,5 @@ solid = Draft.extrude(rectangle, vector, solid=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Trimex/cs diff --git a/wiki/translations/cs/Draft_UndoLine.md b/wiki/translations/cs/Draft_UndoLine.md index 9c8058469b..c44935468a 100644 --- a/wiki/translations/cs/Draft_UndoLine.md +++ b/wiki/translations/cs/Draft_UndoLine.md @@ -1,2 +1,5 @@ # Draft UndoLine/cs 1. REDIRECT [Draft\_Wire/cs](Draft_Wire/cs.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft UndoLine/cs diff --git a/wiki/translations/cs/Draft_Upgrade.md b/wiki/translations/cs/Draft_Upgrade.md index 89d432710d..545c6004b9 100644 --- a/wiki/translations/cs/Draft_Upgrade.md +++ b/wiki/translations/cs/Draft_Upgrade.md @@ -1,3 +1,4 @@ +# Draft Upgrade/cs --- - GuiCommand:/cs Name:Draft Upgrade Name/cs:Kreslení Vylepšení Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení → Aktualizace Shortcut:U P SeeAlso:[Kreslení Degradace](Draft_Downgrade/cs.md)--- @@ -100,8 +101,5 @@ add_list5, delete_list5 = Draft.upgrade(face, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Upgrade/cs diff --git a/wiki/translations/cs/Draft_Wire.md b/wiki/translations/cs/Draft_Wire.md index 2d3c2b8734..46d9ed5f35 100644 --- a/wiki/translations/cs/Draft_Wire.md +++ b/wiki/translations/cs/Draft_Wire.md @@ -1,3 +1,4 @@ +# Draft Wire/cs --- - GuiCommand:/cs Name:Draft_Wire Name/cs:Kreslení Drát Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|Shortcut:W I MenuLocation:Kreslení -> Drát SeeAlso:[Kreslení Přímka](Draft_Line/cs.md), [Kreslení B-křivka](Draft_BSpline/cs.md)--- @@ -192,8 +193,5 @@ wire3 = Draft.make_wire([1.3*p3, p1, -1.7*p2], closed=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Wire/cs diff --git a/wiki/translations/cs/Draft_WireToBSpline.md b/wiki/translations/cs/Draft_WireToBSpline.md index 0053566a83..f2c79d7fa2 100644 --- a/wiki/translations/cs/Draft_WireToBSpline.md +++ b/wiki/translations/cs/Draft_WireToBSpline.md @@ -1,3 +1,4 @@ +# Draft WireToBSpline/cs --- - GuiCommand:/cs Name:Draft WireToBSpline Name/cs:Kreslení Drát do B-křivky Workbenches:[Architektura](Draft_Workbench/cs___Kreslení]],_[[Arch_Workbench/cs.md)|MenuLocation:Kreslení -> Drát do B-křivky--- @@ -89,8 +90,5 @@ wire_from_spline = Draft.make_wire(points2) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WireToBSpline/cs diff --git a/wiki/translations/cs/Draft_Workbench.md b/wiki/translations/cs/Draft_Workbench.md index 689c8469a2..e0a9f7d843 100644 --- a/wiki/translations/cs/Draft_Workbench.md +++ b/wiki/translations/cs/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/cs - - - - - -Draft workbench icon +# Draft workbench icon Draft Workbench/cs {{TOCright}} @@ -390,3 +384,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/cs diff --git a/wiki/translations/cs/Draft_tutorial.md b/wiki/translations/cs/Draft_tutorial.md index 35ed9ec2df..a2a3fe33a2 100644 --- a/wiki/translations/cs/Draft_tutorial.md +++ b/wiki/translations/cs/Draft_tutorial.md @@ -1,7 +1,4 @@ # Draft tutorial/cs - - -
@@ -230,4 +227,7 @@ The [Draft Workbench](Draft_Workbench.md) in many ways is similar to the [Sketch {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft tutorial/cs diff --git a/wiki/translations/cs/Drawing_Annotation.md b/wiki/translations/cs/Drawing_Annotation.md index 102aefb1d9..90cbb1975c 100644 --- a/wiki/translations/cs/Drawing_Annotation.md +++ b/wiki/translations/cs/Drawing_Annotation.md @@ -1,3 +1,4 @@ +# Drawing Annotation/cs --- - GuiCommand:/cs Name:Drawing_Annotation Name/cs:Drawing Annotation Workbenches:[[Drawing Workbench/cs Vykreslování]], Complete|MenuLocation:Drawing → Annotation Shortcut:none--- @@ -34,4 +35,7 @@ This command allows you to place a block of text on a [Drawing page](Drawing_Lan {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Annotation/cs diff --git a/wiki/translations/cs/Drawing_Clip.md b/wiki/translations/cs/Drawing_Clip.md index c9c20131de..90263ccc94 100644 --- a/wiki/translations/cs/Drawing_Clip.md +++ b/wiki/translations/cs/Drawing_Clip.md @@ -1,3 +1,4 @@ +# Drawing Clip/cs --- - GuiCommand:/cs Name:Drawing Clip Name/cs:Drawing Clip Workbenches:[[Drawing Workbench/cs Drawing]], Complete|MenuLocation:Drawing → Clip Shortcut:none--- @@ -27,4 +28,7 @@ This command allows you to place a clipping rectangle on a [Drawing page](Drawin {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Clip/cs diff --git a/wiki/translations/cs/Drawing_Documentation.md b/wiki/translations/cs/Drawing_Documentation.md index 69f40b2251..ba7e08e763 100644 --- a/wiki/translations/cs/Drawing_Documentation.md +++ b/wiki/translations/cs/Drawing_Documentation.md @@ -1,5 +1,5 @@ # Drawing Documentation/cs - This page documents jcc242\'s understanding of the Drawing module. It includes files and features that he is currently working on and may not yet be in the master branch. The source for those files is on [his Github](https://github.com/jcc242/FreeCAD), but be careful as that is very unstable! +This page documents jcc242\'s understanding of the Drawing module. It includes files and features that he is currently working on and may not yet be in the master branch. The source for those files is on [his Github](https://github.com/jcc242/FreeCAD), but be careful as that is very unstable! ## Base (Mod/Drawing) @@ -139,3 +139,6 @@ CanvasView is the actual QGraphicsScene object and DrawingView processes a list {{Drawing Tools navi}} [Category:Developer\_Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Documentation/cs diff --git a/wiki/translations/cs/Drawing_Landscape_A3.md b/wiki/translations/cs/Drawing_Landscape_A3.md index fee720ecef..77efbb2b2f 100644 --- a/wiki/translations/cs/Drawing_Landscape_A3.md +++ b/wiki/translations/cs/Drawing_Landscape_A3.md @@ -1,3 +1,4 @@ +# Drawing Landscape A3/cs --- - GuiCommand:/cs Name:Drawing Landscape A3 Name/cs:Drawing Landscape A3 Workbenches:[[Drawing Workbench/cs Výkres]], Sestavení|MenuLocation:Drawing → Insert new drawing → A3 Landscape Shortcut:none--- @@ -21,4 +22,7 @@ Jestliže se stránka nezobrazí, klikněte na obnovovací ikonu [Drawing](Drawing_Workbench.md) > Drawing Landscape A3/cs diff --git a/wiki/translations/cs/Drawing_Module.md b/wiki/translations/cs/Drawing_Module.md index 6c94c1830d..117e692a40 100644 --- a/wiki/translations/cs/Drawing_Module.md +++ b/wiki/translations/cs/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/cs 1. REDIRECT [Drawing\_Workbench/cs](Drawing_Workbench/cs.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/cs diff --git a/wiki/translations/cs/Drawing_Open_SVG.md b/wiki/translations/cs/Drawing_Open_SVG.md index 0c34069dc2..5389e4abf5 100644 --- a/wiki/translations/cs/Drawing_Open_SVG.md +++ b/wiki/translations/cs/Drawing_Open_SVG.md @@ -1,3 +1,4 @@ +# Drawing Open SVG/cs --- - GuiCommand:/cs Name:Drawing Open SVG Name/cs:Drawing Open SVG Workbenches:[MenuLocation:Drawing → Open SVG... Shortcut:none SeeAlso:[[Drawing Save/cs|Uložení výkresu](Drawing_Workbench/cs___Výkres]],_Sestavení.md)--- @@ -15,4 +16,7 @@ Tento nástroj otevírá výkres předtím uložený jako SVG (scalable vector g {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Open SVG/cs diff --git a/wiki/translations/cs/Drawing_Openbrowser.md b/wiki/translations/cs/Drawing_Openbrowser.md index 4f4fb62e85..c0852ac312 100644 --- a/wiki/translations/cs/Drawing_Openbrowser.md +++ b/wiki/translations/cs/Drawing_Openbrowser.md @@ -1,3 +1,4 @@ +# Drawing Openbrowser/cs --- - GuiCommand:/cs Name:Drawing Openbrowser Name/cs:Drawing Openbrowser Workbenches:[[Drawing Workbench/cs Drawing]], Complete|MenuLocation:Drawing → Open Browser Shortcut:none--- @@ -28,4 +29,7 @@ This command allows you to display a selected [Drawing page](Drawing_Landscape_A {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Openbrowser/cs diff --git a/wiki/translations/cs/Drawing_Orthoviews.md b/wiki/translations/cs/Drawing_Orthoviews.md index c52e627128..bfc06a8502 100644 --- a/wiki/translations/cs/Drawing_Orthoviews.md +++ b/wiki/translations/cs/Drawing_Orthoviews.md @@ -1,3 +1,4 @@ +# Drawing Orthoviews/cs --- - GuiCommand:/cs Name:Drawing Orthoviews Name/cs:Drawing Orthoviews Workbenches:[MenuLocation:Drawing → Insert orthographic views Shortcut:none SeeAlso:[[Drawing Landscape A3/cs|Drawing Landscape A3](Drawing_Workbench/cs___Drawing]],_Complete.md)--- @@ -56,4 +57,7 @@ To be added {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Orthoviews/cs diff --git a/wiki/translations/cs/Drawing_Save.md b/wiki/translations/cs/Drawing_Save.md index 171aafd42a..4b00928d02 100644 --- a/wiki/translations/cs/Drawing_Save.md +++ b/wiki/translations/cs/Drawing_Save.md @@ -1,3 +1,4 @@ +# Drawing Save/cs --- - GuiCommand:/cs Name:Drawing Save Name/cs:Drawing Save Workbenches:[MenuLocation:Drawing → Export page... Shortcut:none SeeAlso:[[Drawing Open SVG/cs|Výkres Otevření SVG](Drawing_Workbench/cs___Výkres]],_Sestavení.md)--- @@ -20,4 +21,7 @@ SVG soubory jsou běžně užívané a mohou být zobrazovány ve většině mod {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Save/cs diff --git a/wiki/translations/cs/Drawing_Symbol.md b/wiki/translations/cs/Drawing_Symbol.md index 00f76ede11..d9740c282c 100644 --- a/wiki/translations/cs/Drawing_Symbol.md +++ b/wiki/translations/cs/Drawing_Symbol.md @@ -1,3 +1,4 @@ +# Drawing Symbol/cs --- - GuiCommand:/cs Name:Drawing Symbol Name/cs:Drawing Symbol Workbenches:[[Drawing Workbench/cs Drawing]], Complete|MenuLocation:Drawing → Symbol Shortcut:none--- @@ -22,4 +23,7 @@ This command allows you to add the contents of a SVG image on a selected [Drawin {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Symbol/cs diff --git a/wiki/translations/cs/Drawing_Template_HowTo.md b/wiki/translations/cs/Drawing_Template_HowTo.md index 5c082dac35..474e09019e 100644 --- a/wiki/translations/cs/Drawing_Template_HowTo.md +++ b/wiki/translations/cs/Drawing_Template_HowTo.md @@ -1,7 +1,4 @@ # Drawing Template HowTo/cs - - - **The [Drawing Workbench](Drawing_Workbench.md) became obsolete in v0.17. Consider using the [TechDraw Workbench](TechDraw_Workbench.md) instead.** @@ -260,4 +257,7 @@ Dva použité nástroje v tomto výukovém programu byly Inkscape a Kate. Oba m {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Template HowTo/cs diff --git a/wiki/translations/cs/Drawing_View.md b/wiki/translations/cs/Drawing_View.md index 381754ee5d..532ebe2501 100644 --- a/wiki/translations/cs/Drawing_View.md +++ b/wiki/translations/cs/Drawing_View.md @@ -1,3 +1,4 @@ +# Drawing View/cs --- - GuiCommand:/cs Name:Drawing View Name/cs:Drawing View Workbenches:[MenuLocation:Drawing → Insert view in drawing Shortcut:none SeeAlso:[[Drawing Landscape A3/cs|Výkres A3 na šířku](Drawing_Workbench/cs___Výkres]],_Complete.md)--- @@ -58,4 +59,7 @@ If you are looking for persective-orthographic toggling in 3D view check [Std Pe {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing View/cs diff --git a/wiki/translations/cs/Drawing_Workbench.md b/wiki/translations/cs/Drawing_Workbench.md index 81e90c2e31..9fdecb04a8 100644 --- a/wiki/translations/cs/Drawing_Workbench.md +++ b/wiki/translations/cs/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/cs - - - **Development of the Drawing Workbench has stopped, and a new [[TechDraw Workbench]] aiming to replace it will be introduced in version 0.17. Both modules will be provided in v0.17, but the Drawing workbench may be removed in future releases.** Drawing workbench icon @@ -82,3 +79,6 @@ Některé poznámky k programovací stránce vykreslovacího modulu budou přid }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/cs diff --git a/wiki/translations/cs/Drawing_templates.md b/wiki/translations/cs/Drawing_templates.md index abae9ad977..ce1b8c019f 100644 --- a/wiki/translations/cs/Drawing_templates.md +++ b/wiki/translations/cs/Drawing_templates.md @@ -1,7 +1,4 @@ # Drawing templates/cs - - - **The [Drawing Workbench](Drawing_Workbench.md) became obsolete in v0.17. Consider using the [TechDraw Workbench](TechDraw_Workbench.md) instead.** @@ -303,3 +300,6 @@ The two lines that FreeCAD will be looking for are \"\$blocks\" and \"\$entities }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing templates/cs diff --git a/wiki/translations/cs/Embedding_FreeCAD.md b/wiki/translations/cs/Embedding_FreeCAD.md index 7797530e74..6b0ef54a3b 100644 --- a/wiki/translations/cs/Embedding_FreeCAD.md +++ b/wiki/translations/cs/Embedding_FreeCAD.md @@ -1,7 +1,4 @@ # Embedding FreeCAD/cs - - - {{TOCright}} ## Introduction @@ -134,3 +131,6 @@ Since the FreeCAD Python module is compiled from C++ (rather than being a pure P }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCAD/cs diff --git a/wiki/translations/cs/Embedding_FreeCADGui.md b/wiki/translations/cs/Embedding_FreeCADGui.md index d062f71036..fa5c90d769 100644 --- a/wiki/translations/cs/Embedding_FreeCADGui.md +++ b/wiki/translations/cs/Embedding_FreeCADGui.md @@ -1,6 +1,4 @@ # Embedding FreeCADGui/cs - - ## Introduction It is possible to [import the FreeCAD module](Embedding_FreeCAD.md) into a [Python](Python.md) application, and use all its tools from the host application, but the graphical user interface (GUI) can be imported as a Python module as well. Normally you can only import the complete interface as a whole, not pieces of it; this is because the FreeCAD interface system is not only made of independent widgets and toolbars, but is a complex construction where several invisible components (such as the selection system, etc) are needed for the main [3D view](3D_view.md) to be able to function. @@ -488,3 +486,6 @@ In the source code there are examples of embedding FreeCAD with various graphica }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCADGui/cs diff --git a/wiki/translations/cs/Extra_python_modules.md b/wiki/translations/cs/Extra_python_modules.md index dc4a663775..8e79393264 100644 --- a/wiki/translations/cs/Extra_python_modules.md +++ b/wiki/translations/cs/Extra_python_modules.md @@ -1,10 +1,4 @@ # Extra python modules/cs - - - - - - {{TOCright}} ## Overview @@ -727,3 +721,6 @@ utils = LazyLoader('PathScripts', globals(), 'PathScripts.PathUtils') [Category:Python Code](Category:Python_Code.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > Extra python modules/cs diff --git a/wiki/translations/cs/FEM_Module.md b/wiki/translations/cs/FEM_Module.md index 7bbc0bb092..840baf273f 100644 --- a/wiki/translations/cs/FEM_Module.md +++ b/wiki/translations/cs/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/cs 1. REDIRECT [FEM\_Workbench/cs](FEM_Workbench/cs.md) + +--- +[documentation index](../README.md) > FEM Module/cs diff --git a/wiki/translations/cs/FEM_Workbench.md b/wiki/translations/cs/FEM_Workbench.md index edf4dde066..6cf65d3487 100644 --- a/wiki/translations/cs/FEM_Workbench.md +++ b/wiki/translations/cs/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/cs - - - - - -FEM workbench icon +# FEM workbench icon FEM Workbench/cs {{TOCright}} @@ -278,3 +272,6 @@ A developer\'s guide has been written to help power users in understanding the c }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/cs diff --git a/wiki/translations/cs/FEM_project.md b/wiki/translations/cs/FEM_project.md index 154be646d5..521153a207 100644 --- a/wiki/translations/cs/FEM_project.md +++ b/wiki/translations/cs/FEM_project.md @@ -1,7 +1,4 @@ # FEM project/cs - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -54,3 +51,6 @@ See [FEM Solver](FEM_Solver.md) }} [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > FEM project/cs diff --git a/wiki/translations/cs/Fcstd_file_format.md b/wiki/translations/cs/Fcstd_file_format.md index df724b418c..13334ffb35 100644 --- a/wiki/translations/cs/Fcstd_file_format.md +++ b/wiki/translations/cs/Fcstd_file_format.md @@ -1,2 +1,5 @@ # Fcstd file format/cs 1. REDIRECT [File\_Format\_FCStd/cs](File_Format_FCStd/cs.md) + +--- +[documentation index](../README.md) > Fcstd file format/cs diff --git a/wiki/translations/cs/Feature_list.md b/wiki/translations/cs/Feature_list.md index 997904ca63..a92dbafb60 100644 --- a/wiki/translations/cs/Feature_list.md +++ b/wiki/translations/cs/Feature_list.md @@ -1,7 +1,4 @@ # Feature list/cs - - -
Toto je obsáhlý, i když ne kompletní, seznam charakteristických vlastností implementace FreeCADu. Chcete-li se nahlédnout do budoucnosti, podívejte se na [Směry vývoje](Development_roadmap/cs.md) na rychlý přehled o tom co se očekává. Zajímavé jsou i [Screenshoty](Screenshots/cs.md). @@ -277,3 +274,6 @@ Power users have created various custom [external workbenches](external_workbenc [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/cs diff --git a/wiki/translations/cs/File_Format_FCStd.md b/wiki/translations/cs/File_Format_FCStd.md index f680ceeb51..77f35e6af3 100644 --- a/wiki/translations/cs/File_Format_FCStd.md +++ b/wiki/translations/cs/File_Format_FCStd.md @@ -1,5 +1,5 @@ # File Format FCStd/cs - {{TOCright}} +{{TOCright}} ## Overview @@ -167,3 +167,6 @@ See the forum thread, [PDF inside the project](https://forum.freecadweb.org/view [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > File Format FCStd/cs diff --git a/wiki/translations/cs/FreeCADShip_Workbench.md b/wiki/translations/cs/FreeCADShip_Workbench.md index 02d9673991..92d6e6a879 100644 --- a/wiki/translations/cs/FreeCADShip_Workbench.md +++ b/wiki/translations/cs/FreeCADShip_Workbench.md @@ -1,2 +1,5 @@ # FreeCADShip Workbench/cs 1. REDIRECT [Ship\_Workbench/cs](Ship_Workbench/cs.md) + +--- +[documentation index](../README.md) > FreeCADShip Workbench/cs diff --git a/wiki/translations/cs/FreeCAD_Scripting_Basics.md b/wiki/translations/cs/FreeCAD_Scripting_Basics.md index aeb547a60d..14230c5f60 100644 --- a/wiki/translations/cs/FreeCAD_Scripting_Basics.md +++ b/wiki/translations/cs/FreeCAD_Scripting_Basics.md @@ -1,7 +1,4 @@ # FreeCAD Scripting Basics/cs - - - {{TOCright}} ## Python scripting in FreeCAD @@ -211,3 +208,6 @@ Now you can really start playing with FreeCAD! For a complete list of available }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Scripting Basics/cs diff --git a/wiki/translations/cs/FreeCAD_vector_math_library.md b/wiki/translations/cs/FreeCAD_vector_math_library.md index bb25c64b55..835938e79c 100644 --- a/wiki/translations/cs/FreeCAD_vector_math_library.md +++ b/wiki/translations/cs/FreeCAD_vector_math_library.md @@ -1,6 +1,4 @@ # FreeCAD vector math library/cs - - ## Introduction This is a [Python](Python.md) module containing a couple of useful functions to manipulate vectors. This library is included in the [Draft\_Workbench](Draft_Workbench.md) and can be accessed like this from the Python interpreter: @@ -87,3 +85,6 @@ def project(first, other): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD vector math library/cs diff --git a/wiki/translations/cs/Getting_started.md b/wiki/translations/cs/Getting_started.md index 9c3fcab45e..7f5fd58255 100644 --- a/wiki/translations/cs/Getting_started.md +++ b/wiki/translations/cs/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/cs - - - - - - {{TOCright}} ## Předmluva @@ -345,3 +339,6 @@ A nakonec jedna z nejmocnějších vlastností FreeCADu je prostředí pro [skri [Category:User Documentation/cs](Category:User_Documentation/cs.md) + +--- +[documentation index](../README.md) > Getting started/cs diff --git a/wiki/translations/cs/Gui_Command.md b/wiki/translations/cs/Gui_Command.md index ff6939e760..08e9de9ac2 100644 --- a/wiki/translations/cs/Gui_Command.md +++ b/wiki/translations/cs/Gui_Command.md @@ -1,5 +1,5 @@ # Gui Command/cs - The GuiCommand is one of the most important functions of FreeCAD in the main interaction point of the user. Every time the user selects a menu item or presses a toolbar button it activates a GuiCommand. Some of the attributes of a GuiCommand are: +The GuiCommand is one of the most important functions of FreeCAD in the main interaction point of the user. Every time the user selects a menu item or presses a toolbar button it activates a GuiCommand. Some of the attributes of a GuiCommand are: - Defines a name - Contains an icon @@ -60,4 +60,7 @@ Hopefully this becomes true for all GuiCommands in the [List of Commands](List_o {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Gui Command/cs diff --git a/wiki/translations/cs/Help_FreeCAD.md b/wiki/translations/cs/Help_FreeCAD.md index f7a9c5f07b..620e4e2ec8 100644 --- a/wiki/translations/cs/Help_FreeCAD.md +++ b/wiki/translations/cs/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/cs - - ## Introduction @@ -87,3 +85,6 @@ Writing code for FreeCAD is not hard, and you don\'t need any permission, you ca [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command Reference]] page lists and documents all of the FreeCAD ](Category:Command Reference]] page lists and documents all of the FreeCAD .md) > Help FreeCAD/cs diff --git a/wiki/translations/cs/How_to_install_macros.md b/wiki/translations/cs/How_to_install_macros.md index 71eb91493f..955b721bb9 100644 --- a/wiki/translations/cs/How_to_install_macros.md +++ b/wiki/translations/cs/How_to_install_macros.md @@ -1,7 +1,4 @@ # How to install macros/cs - - -
@@ -475,3 +472,6 @@ and then press the **OK** button. }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > How to install macros/cs diff --git a/wiki/translations/cs/ImageConv.md b/wiki/translations/cs/ImageConv.md index 06d50fd1d9..ecbf2a6d22 100644 --- a/wiki/translations/cs/ImageConv.md +++ b/wiki/translations/cs/ImageConv.md @@ -1,6 +1,4 @@ # ImageConv/cs - - **ImageConv** je program používaný pro konverzi obrázků z různých formátů do formátu XPM, který lze kompilovat do FreeCADu. ## Building @@ -33,3 +31,6 @@ ImageConv je nástroj používaný z příkazové řádky.
[Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > ImageConv/cs diff --git a/wiki/translations/cs/Image_Module.md b/wiki/translations/cs/Image_Module.md index 45527dc784..210ca909cd 100644 --- a/wiki/translations/cs/Image_Module.md +++ b/wiki/translations/cs/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/cs 1. REDIRECT [Image\_Workbench/cs](Image_Workbench/cs.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/cs diff --git a/wiki/translations/cs/Image_Workbench.md b/wiki/translations/cs/Image_Workbench.md index 4e25859d40..9ad87c6135 100644 --- a/wiki/translations/cs/Image_Workbench.md +++ b/wiki/translations/cs/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/cs - - -Image workbench icon +# Image workbench icon Image Workbench/cs ## Introduction @@ -39,3 +36,6 @@ The offset of the image can be set during import, or changed later through its p }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/cs diff --git a/wiki/translations/cs/InputField.md b/wiki/translations/cs/InputField.md index 150dc3cb55..d2d4d65e76 100644 --- a/wiki/translations/cs/InputField.md +++ b/wiki/translations/cs/InputField.md @@ -1,5 +1,5 @@ # InputField/cs - } +} This is the documentation of the FreeCAD \'InputField\' widgets, which get used in most of the dialogs handling parameter with units. @@ -8,3 +8,6 @@ ToDo\... [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > InputField/cs diff --git a/wiki/translations/cs/Inspection_Workbench.md b/wiki/translations/cs/Inspection_Workbench.md index 0b17980f41..26ffb6473c 100644 --- a/wiki/translations/cs/Inspection_Workbench.md +++ b/wiki/translations/cs/Inspection_Workbench.md @@ -1,7 +1,4 @@ -# Inspection Workbench/cs - - -Inspection workbench icon +# Inspection workbench icon Inspection Workbench/cs ## Introduction @@ -27,3 +24,6 @@ Alternatively, use the macro Inspection Workbench/cs diff --git a/wiki/translations/cs/Install_on_Linux.md b/wiki/translations/cs/Install_on_Linux.md index f6125f7119..856ffa34d4 100644 --- a/wiki/translations/cs/Install_on_Linux.md +++ b/wiki/translations/cs/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/cs 1. REDIRECT [Installing\_on\_Linux/cs](Installing_on_Linux/cs.md) + +--- +[documentation index](../README.md) > Install on Linux/cs diff --git a/wiki/translations/cs/Install_on_Mac.md b/wiki/translations/cs/Install_on_Mac.md index 46edc461b0..2bb52d1fc7 100644 --- a/wiki/translations/cs/Install_on_Mac.md +++ b/wiki/translations/cs/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/cs 1. REDIRECT [Installing\_on\_Mac/cs](Installing_on_Mac/cs.md) + +--- +[documentation index](../README.md) > Install on Mac/cs diff --git a/wiki/translations/cs/Install_on_Unix.md b/wiki/translations/cs/Install_on_Unix.md index 53917b9c63..c41a9d7db1 100644 --- a/wiki/translations/cs/Install_on_Unix.md +++ b/wiki/translations/cs/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/cs 1. REDIRECT [Installing\_on\_Linux/cs](Installing_on_Linux/cs.md) + +--- +[documentation index](../README.md) > Install on Unix/cs diff --git a/wiki/translations/cs/Install_on_Windows.md b/wiki/translations/cs/Install_on_Windows.md index ef3316030e..97a8fe4c34 100644 --- a/wiki/translations/cs/Install_on_Windows.md +++ b/wiki/translations/cs/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/cs 1. REDIRECT [Installing\_on\_Windows/cs](Installing_on_Windows/cs.md) + +--- +[documentation index](../README.md) > Install on Windows/cs diff --git a/wiki/translations/cs/Installing.md b/wiki/translations/cs/Installing.md index 25f0a27f35..e38e27b603 100644 --- a/wiki/translations/cs/Installing.md +++ b/wiki/translations/cs/Installing.md @@ -1,2 +1,5 @@ # Installing/cs 1. REDIRECT [Installing\_additional\_components/cs](Installing_additional_components/cs.md) + +--- +[documentation index](../README.md) > Installing/cs diff --git a/wiki/translations/cs/Installing_additional_components.md b/wiki/translations/cs/Installing_additional_components.md index af7135d70e..26e39b3d77 100644 --- a/wiki/translations/cs/Installing_additional_components.md +++ b/wiki/translations/cs/Installing_additional_components.md @@ -1,10 +1,4 @@ # Installing additional components/cs - - - - - - {{TOCright}} # Introduction @@ -142,3 +136,6 @@ The [ODA File Converter](https://www.opendesign.com/guestfiles/oda_file_converte
[Category:User Documentation/cs](Category:User_Documentation/cs.md) + +--- +[documentation index](../README.md) > Installing additional components/cs diff --git a/wiki/translations/cs/Installing_on_Linux.md b/wiki/translations/cs/Installing_on_Linux.md index d0bfa27ef3..4355a6cef8 100644 --- a/wiki/translations/cs/Installing_on_Linux.md +++ b/wiki/translations/cs/Installing_on_Linux.md @@ -1,9 +1,4 @@ # Installing on Linux/cs - - - - - ## Overview @@ -377,3 +372,6 @@ Once you\'ve got FreeCAD installed, it\'s time to [get started](Getting_started. [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/cs diff --git a/wiki/translations/cs/Installing_on_Mac.md b/wiki/translations/cs/Installing_on_Mac.md index 65cdaa08e4..2927293563 100644 --- a/wiki/translations/cs/Installing_on_Mac.md +++ b/wiki/translations/cs/Installing_on_Mac.md @@ -1,10 +1,4 @@ # Installing on Mac/cs - - - - - -
FreeCAD může být nainstalován na Mac OS X v jednom kroku použitím Installeru. @@ -78,5 +72,5 @@ A je to. V konečné verzi bude FreeCAD dostupný jako balík obsahující aplik
- - +--- +[documentation index](../README.md) > Installing on Mac/cs diff --git a/wiki/translations/cs/Installing_on_Windows.md b/wiki/translations/cs/Installing_on_Windows.md index 8f13780a7a..ccc0f48fca 100644 --- a/wiki/translations/cs/Installing_on_Windows.md +++ b/wiki/translations/cs/Installing_on_Windows.md @@ -1,9 +1,4 @@ # Installing on Windows/cs - - - - - Nejsnadnější způsob instalace FreeCADu na Windows je stáhnout níže uvedený instaler. @@ -240,5 +235,5 @@ FreeCAD is running, but it has been reported that the OpenGL display does not wo
- - +--- +[documentation index](../README.md) > Installing on Windows/cs diff --git a/wiki/translations/cs/Interface_Customization.md b/wiki/translations/cs/Interface_Customization.md index 14bf462e07..71f5bf64a9 100644 --- a/wiki/translations/cs/Interface_Customization.md +++ b/wiki/translations/cs/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/cs - - - - - - {{TOCright}} ## Introduction @@ -305,4 +299,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/cs diff --git a/wiki/translations/cs/Introduction_to_Python.md b/wiki/translations/cs/Introduction_to_Python.md index 8e8cb75ea1..56551eb3ce 100644 --- a/wiki/translations/cs/Introduction_to_Python.md +++ b/wiki/translations/cs/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/cs - - - {{TOCright}} ## Introduction @@ -501,3 +498,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/cs diff --git a/wiki/translations/cs/Licence.md b/wiki/translations/cs/Licence.md index c7223427ff..1fb14d1632 100644 --- a/wiki/translations/cs/Licence.md +++ b/wiki/translations/cs/Licence.md @@ -1,10 +1,4 @@ # Licence/cs - - - - - - {{TOCright}} ## Licences used in FreeCAD @@ -61,3 +55,6 @@ Nevertheless this decision is made only for the core system of FreeCAD. Every wr [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Licence/cs diff --git a/wiki/translations/cs/Line_drawing_function.md b/wiki/translations/cs/Line_drawing_function.md index a6f8dcb6fb..9eb3c9780c 100644 --- a/wiki/translations/cs/Line_drawing_function.md +++ b/wiki/translations/cs/Line_drawing_function.md @@ -1,7 +1,4 @@ # Line drawing function/cs - - - {{TOCright}} ## Introduction @@ -269,3 +266,6 @@ If you liked this exercise, why not try to improve this little tool? There are m Don\'t hesitate to ask questions or share ideas on the [forum](https://forum.freecadweb.org/)! {{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Line drawing function/cs diff --git a/wiki/translations/cs/List_of_Commands.md b/wiki/translations/cs/List_of_Commands.md index ef37fcb791..ffa6624e3f 100644 --- a/wiki/translations/cs/List_of_Commands.md +++ b/wiki/translations/cs/List_of_Commands.md @@ -2,3 +2,6 @@ This category contains the help pages of each of FreeCAD command. [Category:Categories/cs](Category:Categories/cs.md) + +--- +[documentation index](../README.md) > List of Commands/cs diff --git a/wiki/translations/cs/Localisation.md b/wiki/translations/cs/Localisation.md index 58aa814cfe..8868d9f252 100644 --- a/wiki/translations/cs/Localisation.md +++ b/wiki/translations/cs/Localisation.md @@ -1,10 +1,4 @@ # Localisation/cs - - - - - - {{TOCright}} ## Overview @@ -239,3 +233,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/cs diff --git a/wiki/translations/cs/MIBA.md b/wiki/translations/cs/MIBA.md index 867663fd37..debf093374 100644 --- a/wiki/translations/cs/MIBA.md +++ b/wiki/translations/cs/MIBA.md @@ -1,6 +1,4 @@ # MIBA/cs - - ## Introduction @@ -55,3 +53,6 @@ App.closeDocument(App.ActiveDocument.Name) ``` [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > MIBA/cs diff --git a/wiki/translations/cs/Macro_3D_Parametric_Curve.md b/wiki/translations/cs/Macro_3D_Parametric_Curve.md index f8b5aa78fc..3081a93c18 100644 --- a/wiki/translations/cs/Macro_3D_Parametric_Curve.md +++ b/wiki/translations/cs/Macro_3D_Parametric_Curve.md @@ -1,5 +1,5 @@ # Macro 3D Parametric Curve/cs - {{Macro/cs +{{Macro/cs |Name=Macro_3D_Parametric_Curve |Translate=Makro_3D_Parametrická_Křivka |Icon=Macro_3D_Parametric_Curve.png @@ -209,6 +209,5 @@ ParamCurv() }} - - - +--- +[documentation index](../README.md) > Macro 3D Parametric Curve/cs diff --git a/wiki/translations/cs/Macro_3d_Printer_Slicer.md b/wiki/translations/cs/Macro_3d_Printer_Slicer.md index 302d9ccfed..c831ad2b86 100644 --- a/wiki/translations/cs/Macro_3d_Printer_Slicer.md +++ b/wiki/translations/cs/Macro_3d_Printer_Slicer.md @@ -1,7 +1,4 @@ # Macro 3d Printer Slicer/cs - - -
@@ -93,4 +90,7 @@ subprocess.Popen([SLICER + "KISSlicer", stlFile]) ## Kredity Díky [Wmayer](http://forum.freecadweb.org/viewtopic.php?f=10&t=4686) za jeho pomoc při psaní tohoto skriptu. -Původní téma fóra : +Původní téma fóra : + +--- +[documentation index](../README.md) > Macro 3d Printer Slicer/cs diff --git a/wiki/translations/cs/Macro_Airfoil_Import_&_Scale.md b/wiki/translations/cs/Macro_Airfoil_Import_&_Scale.md index 7a4a8b8d33..a68556d828 100644 --- a/wiki/translations/cs/Macro_Airfoil_Import_&_Scale.md +++ b/wiki/translations/cs/Macro_Airfoil_Import_&_Scale.md @@ -1,5 +1,5 @@ # Macro Airfoil Import & Scale/cs - {{Macro/cs +{{Macro/cs |Name=Macro Airfoil Import & Scale |Icon=Macro_Airfoil_Import_&_Scale.png |Description=Trace the perimeter of a Airfoil from a .dat file. @@ -537,3 +537,6 @@ p() Diskuse o [Forum](http://forum.freecadweb.org/viewtopic.php?f=22&t=5554&p=45137&hilit=Airfoil#p45137) [UIUC Applied Aerodynamics Group Departement of Aerospace Engineering](http://aerospace.illinois.edu/m-selig/ads/coord_database.html#N) + +--- +[documentation index](../README.md) > Macro Airfoil Import & Scale/cs diff --git a/wiki/translations/cs/Macro_Align_View_to_Face.md b/wiki/translations/cs/Macro_Align_View_to_Face.md index d863f4c6ad..d683d43add 100644 --- a/wiki/translations/cs/Macro_Align_View_to_Face.md +++ b/wiki/translations/cs/Macro_Align_View_to_Face.md @@ -1,5 +1,5 @@ # Macro Align View to Face/cs - {{Macro/cs +{{Macro/cs |Name=Macro Align View to Face |Icone=Macro_Align_View_to_Face.png |Translate=Macro Align View to Face @@ -77,3 +77,6 @@ cam.orientation.setValue(rot.Q) Gui.SendMsgToActiveView("ViewSelection") }} + +--- +[documentation index](../README.md) > Macro Align View to Face/cs diff --git a/wiki/translations/cs/Macro_ArrayCopy.md b/wiki/translations/cs/Macro_ArrayCopy.md index 5718e85a74..a5f125e8c8 100644 --- a/wiki/translations/cs/Macro_ArrayCopy.md +++ b/wiki/translations/cs/Macro_ArrayCopy.md @@ -1,5 +1,5 @@ # Macro ArrayCopy/cs - {{Macro/cs +{{Macro/cs |Name=ArrayCopy |Icon=Macro_ArrayCopy.png |Translate=ArrayCopy @@ -84,3 +84,5 @@ dialog.show() }} +--- +[documentation index](../README.md) > Macro ArrayCopy/cs diff --git a/wiki/translations/cs/Macro_Automatic_drawing.md b/wiki/translations/cs/Macro_Automatic_drawing.md index a0c284a929..04c55b8385 100644 --- a/wiki/translations/cs/Macro_Automatic_drawing.md +++ b/wiki/translations/cs/Macro_Automatic_drawing.md @@ -1,5 +1,5 @@ # Macro Automatic drawing/cs - {{Macro/cs +{{Macro/cs |Name=Automatic drawing |Translate=Makro Automatický výkres |Icon=Macro_Automatic_drawing.png @@ -123,3 +123,6 @@ App.activeDocument().AutoDrawing.addObject(App.activeDocument().IsoView) ## Odkaz Diskuse na fóru [Automatic drawing](https://forum.freecadweb.org/viewtopic.php?f=8&t=3361) + +--- +[documentation index](../README.md) > Macro Automatic drawing/cs diff --git a/wiki/translations/cs/Macro_BOLTS.md b/wiki/translations/cs/Macro_BOLTS.md index a8dc2bb53b..d0e0d9b535 100644 --- a/wiki/translations/cs/Macro_BOLTS.md +++ b/wiki/translations/cs/Macro_BOLTS.md @@ -1,7 +1,4 @@ # Macro BOLTS/cs - - -
@@ -77,3 +74,5 @@ Knihovna dílů, která je užitečná pro široký okruh lidí, může být rea
+--- +[documentation index](../README.md) > Macro BOLTS/cs diff --git a/wiki/translations/cs/Macro_BoundingBox_Tracing.md b/wiki/translations/cs/Macro_BoundingBox_Tracing.md index 9b2f8c57f6..df1c19f479 100644 --- a/wiki/translations/cs/Macro_BoundingBox_Tracing.md +++ b/wiki/translations/cs/Macro_BoundingBox_Tracing.md @@ -1,5 +1,5 @@ # Macro BoundingBox Tracing/cs - {{Macro/cs +{{Macro/cs |Name=Macro BoundingBox Tracing |Translate=Macro BoundingBox Tracing |Icon=BoundBoxTracing.png @@ -454,3 +454,6 @@ ver 0.6 le 08/08/2017: přidat textovou kótu, kontejner pro obdélníky, obdél ver 0.5 le 08/05/2017 : upgrade now accept the \"mesh\" and \"Points\" thanks wmayer [Makro Bounding-Box für STL importierte Teile und für Punktewolken](http://forum.freecadweb.org/viewtopic.php?f=13&t=22331) ver 0.4 le 04/06/2016 : test if value = 0 pak nevytvořte ohraničovací rámeček (ex: object Draft) + +--- +[documentation index](../README.md) > Macro BoundingBox Tracing/cs diff --git a/wiki/translations/cs/Macro_CartoucheFC.md b/wiki/translations/cs/Macro_CartoucheFC.md index e5bdf5c1af..f3712e2cde 100644 --- a/wiki/translations/cs/Macro_CartoucheFC.md +++ b/wiki/translations/cs/Macro_CartoucheFC.md @@ -1,7 +1,4 @@ # Macro CartoucheFC/cs - - -
@@ -959,6 +956,5 @@ Tento modul pracuje s výkresovou dokumentací obsaženou v FreeCADu, tento list ver 0.3 02/07/2014 converted to PyQt4 and PySide - - - +--- +[documentation index](../README.md) > Macro CartoucheFC/cs diff --git a/wiki/translations/cs/Macro_CartoucheFC_2.md b/wiki/translations/cs/Macro_CartoucheFC_2.md index 583b9f832b..9e76c4d53e 100644 --- a/wiki/translations/cs/Macro_CartoucheFC_2.md +++ b/wiki/translations/cs/Macro_CartoucheFC_2.md @@ -1,7 +1,4 @@ # Macro CartoucheFC 2/cs - - -
@@ -715,3 +712,6 @@ MainWindow.show() ## Verze 5.0 : 08/08/2014 + +--- +[documentation index](../README.md) > Macro CartoucheFC 2/cs diff --git a/wiki/translations/cs/Macro_CartoucheFC_Full.md b/wiki/translations/cs/Macro_CartoucheFC_Full.md index b3b770602c..174a91147a 100644 --- a/wiki/translations/cs/Macro_CartoucheFC_Full.md +++ b/wiki/translations/cs/Macro_CartoucheFC_Full.md @@ -1,7 +1,4 @@ # Macro CartoucheFC Full/cs - - -
@@ -1193,6 +1190,5 @@ ver 00.06 : 13/10/2016 : selection format page and position for the symbol conve ver 5 : 08/08/2014 PyQt4 and PySide - - - +--- +[documentation index](../README.md) > Macro CartoucheFC Full/cs diff --git a/wiki/translations/cs/Macro_CenterFace.md b/wiki/translations/cs/Macro_CenterFace.md index aa221fa34e..3f7184e60d 100644 --- a/wiki/translations/cs/Macro_CenterFace.md +++ b/wiki/translations/cs/Macro_CenterFace.md @@ -1,5 +1,5 @@ # Macro CenterFace/cs - {{Macro/cs +{{Macro/cs |Name=Macro CenterFace |Translate=Macro CenterFace |Description=This macro red trace (editable) the center face (mass) with 1 point and print the coordinates. @@ -148,6 +148,5 @@ ver 0.2 07/10/2018 : upgrade for FC 017 \"getGlobalPlacement\" ver 0.1 29/04/2014 - - - +--- +[documentation index](../README.md) > Macro CenterFace/cs diff --git a/wiki/translations/cs/Macro_Corner_shapes_wizard.md b/wiki/translations/cs/Macro_Corner_shapes_wizard.md index 0c524e7c7c..fa309063f5 100644 --- a/wiki/translations/cs/Macro_Corner_shapes_wizard.md +++ b/wiki/translations/cs/Macro_Corner_shapes_wizard.md @@ -1,5 +1,5 @@ # Macro Corner shapes wizard/cs - {{Macro/cs +{{Macro/cs |Name=Corner shapes wizard |Translate=Corner shapes wizard |Icon=Macro_Corner_shapes_wizard.png @@ -196,6 +196,5 @@ ToolBar Icon ![](images/Macro_Corner_shapes_wizard.png ) QtCore.QMetaObject.connectSlotsByName(dialog) dialog.show() - - - +--- +[documentation index](../README.md) > Macro Corner shapes wizard/cs diff --git a/wiki/translations/cs/Macro_Delta_xyz.md b/wiki/translations/cs/Macro_Delta_xyz.md index 1763b05f3c..7ae9a21a5c 100644 --- a/wiki/translations/cs/Macro_Delta_xyz.md +++ b/wiki/translations/cs/Macro_Delta_xyz.md @@ -1,5 +1,5 @@ # Macro Delta xyz/cs - {{Macro/cs +{{Macro/cs |Name=Macro_Delta_xyz |Icon=Macro_Delta_xyz.png |Translate=Macro Delta xyz @@ -275,3 +275,6 @@ Version 0.2 2020-10-23 : přidáním stiskněte klávesu **SHIFT**, klikněte na Přidání možností konfigurovatelných v preferenci FC Version 0.1 2013-11-29 : [view toolbar : measure distance tool](https://forum.freecadweb.org/viewtopic.php?f=3&t=5036) + +--- +[documentation index](../README.md) > Macro Delta xyz/cs diff --git a/wiki/translations/cs/Macro_Draft_Circle_3_Points.md b/wiki/translations/cs/Macro_Draft_Circle_3_Points.md index 25ec6c45c1..8aeb28f7b2 100644 --- a/wiki/translations/cs/Macro_Draft_Circle_3_Points.md +++ b/wiki/translations/cs/Macro_Draft_Circle_3_Points.md @@ -1,5 +1,5 @@ # Macro Draft Circle 3 Points/cs - {{Macro/cs +{{Macro/cs |Name=Macro Make Circle 3 Points |Icon=Macro_Make_Circle_3_Points.png |Translate=Macro Draft Circle 3 Points @@ -284,3 +284,6 @@ Zde je 3D pohled, který Vám umožňuje vidět 2 různé pozice pohledu použit ## Uznání Geneze makra **Draft Circle 3 Points** [na fóru (PYTHONu) coordonnées d\'un point](http://forum.freecadweb.org/viewtopic.php?f=12&t=3696&sid=17886f953113e162dc9a4a843e1fce94) helped flachyjoe thanks. Vzorec pochází od [cercle\_3pts.pdf](http://www-obs.univ-lyon1.fr/labo/fc/Ateliers_archives/ateliers_2005-06/cercle_3pts.pdf) a byl použit s laskavým svolením jeho autora. + +--- +[documentation index](../README.md) > Macro Draft Circle 3 Points/cs diff --git a/wiki/translations/cs/Macro_Draft_Circle_3_Points_3D.md b/wiki/translations/cs/Macro_Draft_Circle_3_Points_3D.md index 67db7203ae..18423b5ad6 100644 --- a/wiki/translations/cs/Macro_Draft_Circle_3_Points_3D.md +++ b/wiki/translations/cs/Macro_Draft_Circle_3_Points_3D.md @@ -1,5 +1,5 @@ # Macro Draft Circle 3 Points 3D/cs - {{Macro/cs +{{Macro/cs |Name=Macro Draft Circle 3 Points 3D |Translate=Macro Draft Circle 3 Points 3D |Icon=Macro_Draft_Circle_3_Points.png @@ -136,3 +136,5 @@ else: }} +--- +[documentation index](../README.md) > Macro Draft Circle 3 Points 3D/cs diff --git a/wiki/translations/cs/Macro_Draw_2D_Function.md b/wiki/translations/cs/Macro_Draw_2D_Function.md index 0c9160161e..7a3918c35d 100644 --- a/wiki/translations/cs/Macro_Draw_2D_Function.md +++ b/wiki/translations/cs/Macro_Draw_2D_Function.md @@ -1,5 +1,5 @@ # Macro Draw 2D Function/cs - {{Macro/cs +{{Macro/cs |Name=Draw 2D Function |Translate=Vykresli 2D funkci |Icon=Macro_Draw_2D_Function.png @@ -61,3 +61,5 @@ Part.show(WWire) }} +--- +[documentation index](../README.md) > Macro Draw 2D Function/cs diff --git a/wiki/translations/cs/Macro_Draw_Parametric_2D_Function.md b/wiki/translations/cs/Macro_Draw_Parametric_2D_Function.md index 12036ca700..8f03fc475d 100644 --- a/wiki/translations/cs/Macro_Draw_Parametric_2D_Function.md +++ b/wiki/translations/cs/Macro_Draw_Parametric_2D_Function.md @@ -1,5 +1,5 @@ # Macro Draw Parametric 2D Function/cs - {{Macro/cs +{{Macro/cs |Name=Macro Draw Parametric 2D Function |Icon=Macro_Draw_Parametric_2D_Function.png |Translate=Vykresli 2D funkci parametrická|Description=Vykreslí 2-dimenzionální, parametrickou a volitelně polární rovnici. @@ -82,3 +82,5 @@ draw2Dfunction(xFunction="0.5*n", yFunction="-0.75*n", n=0, nd=-math.pi, step=50 }} +--- +[documentation index](../README.md) > Macro Draw Parametric 2D Function/cs diff --git a/wiki/translations/cs/Macro_EdgesToArc.md b/wiki/translations/cs/Macro_EdgesToArc.md index ea01bc7c0b..a58618841f 100644 --- a/wiki/translations/cs/Macro_EdgesToArc.md +++ b/wiki/translations/cs/Macro_EdgesToArc.md @@ -1,7 +1,4 @@ # Macro EdgesToArc/cs - - -
@@ -114,6 +111,5 @@ if circular: FreeCAD.ActiveDocument.removeObject(shape.Name) }} - - - +--- +[documentation index](../README.md) > Macro EdgesToArc/cs diff --git a/wiki/translations/cs/Macro_Ellipse-Center+2Points.md b/wiki/translations/cs/Macro_Ellipse-Center+2Points.md index 3e22430ce8..28ce9a0acb 100644 --- a/wiki/translations/cs/Macro_Ellipse-Center+2Points.md +++ b/wiki/translations/cs/Macro_Ellipse-Center+2Points.md @@ -1,5 +1,5 @@ # Macro Ellipse-Center+2Points/cs - {{Macro/cs +{{Macro/cs |Name=Macro_Ellipse-Center+2Points |Translate=Ellipse Center+2Points |Icon=Macro_Ellipse-Center%2B2Points.png @@ -67,6 +67,5 @@ except: }} - - - +--- +[documentation index](../README.md) > Macro Ellipse-Center+2Points/cs diff --git a/wiki/translations/cs/Macro_FCInfo.md b/wiki/translations/cs/Macro_FCInfo.md index f05f7ae0cf..2886183436 100644 --- a/wiki/translations/cs/Macro_FCInfo.md +++ b/wiki/translations/cs/Macro_FCInfo.md @@ -1,5 +1,5 @@ # Macro FCInfo/cs - {{Macro/cs +{{Macro/cs |Name=Macro_FCInfo |Translate=FCInfo |Icon=FCInfo.png @@ -332,6 +332,5 @@ Viz také [Arch Survey](Arch_Survey/cs.md) Arch Survey Macro FCInfo/cs diff --git a/wiki/translations/cs/Macro_FCInfo_Alternate_Linux.md b/wiki/translations/cs/Macro_FCInfo_Alternate_Linux.md index 4e3faddb89..1289fe2453 100644 --- a/wiki/translations/cs/Macro_FCInfo_Alternate_Linux.md +++ b/wiki/translations/cs/Macro_FCInfo_Alternate_Linux.md @@ -1,5 +1,5 @@ # Macro FCInfo Alternate Linux/cs - {{Macro/cs +{{Macro/cs |Name=Macro FCInfo Alternate Linux |Translate=Macro FCInfo Alternate Linux |Icon=FCInfo.png @@ -45,6 +45,5 @@ Soubory uložené s tímto makrem nejsou kompatibilní se soubory ostatních ver Obě verze mohou pracovat nezávisle na použitém operačním systému. - - - +--- +[documentation index](../README.md) > Macro FCInfo Alternate Linux/cs diff --git a/wiki/translations/cs/Macro_FaceToSketch.md b/wiki/translations/cs/Macro_FaceToSketch.md index 81c6505850..66f1e7e466 100644 --- a/wiki/translations/cs/Macro_FaceToSketch.md +++ b/wiki/translations/cs/Macro_FaceToSketch.md @@ -1,5 +1,5 @@ # Macro FaceToSketch/cs - {{Macro/cs +{{Macro/cs |Name=FaceToSketch |Translate=FaceToSketch |Icon=Macro_FaceToSketch.png @@ -42,6 +42,5 @@ for wire in wires: FreeCAD.ActiveDocument.removeObject(wire.Name) }} - - - +--- +[documentation index](../README.md) > Macro FaceToSketch/cs diff --git a/wiki/translations/cs/Macro_FlattenWire.md b/wiki/translations/cs/Macro_FlattenWire.md index 5bed7e3b83..54370b26ba 100644 --- a/wiki/translations/cs/Macro_FlattenWire.md +++ b/wiki/translations/cs/Macro_FlattenWire.md @@ -1,5 +1,5 @@ # Macro FlattenWire/cs - {{Macro/cs +{{Macro/cs |Name=FlattenWire |Translate=FlattenWire |Icon=Macro_FlattenWire.png @@ -35,6 +35,5 @@ obj.Points = newppoints }} - - - +--- +[documentation index](../README.md) > Macro FlattenWire/cs diff --git a/wiki/translations/cs/Macro_HealArcs.md b/wiki/translations/cs/Macro_HealArcs.md index 3c1c6d9a1b..549c596992 100644 --- a/wiki/translations/cs/Macro_HealArcs.md +++ b/wiki/translations/cs/Macro_HealArcs.md @@ -1,5 +1,5 @@ # Macro HealArcs/cs - {{Macro/cs +{{Macro/cs |Name=HealArcs |Translate=HealArcs |Icon=Macro_HealArcs.png @@ -45,6 +45,5 @@ else: FreeCAD.ActiveDocument.removeObject(n) }} - - - +--- +[documentation index](../README.md) > Macro HealArcs/cs diff --git a/wiki/translations/cs/Macro_JointWire.md b/wiki/translations/cs/Macro_JointWire.md index c35773c4bc..b177b7d662 100644 --- a/wiki/translations/cs/Macro_JointWire.md +++ b/wiki/translations/cs/Macro_JointWire.md @@ -1,5 +1,5 @@ # Macro JointWire/cs - **!!! This macro needs to be corrected. !!!** +**!!! This macro needs to be corrected. !!!** {{Macro/cs @@ -92,6 +92,5 @@ ToolBar Icon ![](images/Macro_JointWire.png ) }} - - - +--- +[documentation index](../README.md) > Macro JointWire/cs diff --git a/wiki/translations/cs/Macro_Line_Length.md b/wiki/translations/cs/Macro_Line_Length.md index be80895aac..c4469666da 100644 --- a/wiki/translations/cs/Macro_Line_Length.md +++ b/wiki/translations/cs/Macro_Line_Length.md @@ -1,5 +1,5 @@ # Macro Line Length/cs - {{Macro/cs +{{Macro/cs |Name=Macro Line_Length |Translate=Macro Line Length |Icon=Macro_Line_Length.png @@ -80,3 +80,5 @@ alebo výberu >>> line_length(length = 50, angle = 45) ``` +--- +[documentation index](../README.md) > Macro Line Length/cs diff --git a/wiki/translations/cs/Macro_Loft.md b/wiki/translations/cs/Macro_Loft.md index 0586bde1ca..fdfe81bf4e 100644 --- a/wiki/translations/cs/Macro_Loft.md +++ b/wiki/translations/cs/Macro_Loft.md @@ -1,5 +1,5 @@ # Macro Loft/cs - {{Macro +{{Macro |Name=Macro Loft |Icon=FCCreaLoft.png |Description=Vytvoří vybrané dráty s loft wit. @@ -69,3 +69,6 @@ ver 00.02 : 09/02/2016 : Add button \"Select all\" and little option displayed i ver 00.03 : 09/02/2016 : minor (display on button) ver 00.04 : 03/07/2019 : adapt to Python 3 + +--- +[documentation index](../README.md) > Macro Loft/cs diff --git a/wiki/translations/cs/Macro_MacroMenu.md b/wiki/translations/cs/Macro_MacroMenu.md index bdbbf1f964..7add89c1e5 100644 --- a/wiki/translations/cs/Macro_MacroMenu.md +++ b/wiki/translations/cs/Macro_MacroMenu.md @@ -1,5 +1,5 @@ # Macro MacroMenu/cs - {{Macro/cs +{{Macro/cs |Name=Macro MacroMenu |Icon=Macro_MacroMenu.png |Translate=Macro MacroMenu @@ -61,6 +61,5 @@ if macroPath and os.path.isdir(macroPath): }} - - - +--- +[documentation index](../README.md) > Macro MacroMenu/cs diff --git a/wiki/translations/cs/Macro_Make_Circle_3_Points.md b/wiki/translations/cs/Macro_Make_Circle_3_Points.md index 2bcf8539cf..3aeeb59e4f 100644 --- a/wiki/translations/cs/Macro_Make_Circle_3_Points.md +++ b/wiki/translations/cs/Macro_Make_Circle_3_Points.md @@ -1,5 +1,5 @@ # Macro Make Circle 3 Points/cs - {{Macro/cs +{{Macro/cs |Name=Macro Make Circle 3 Points |Icon=Macro_Make_Circle_3_Points.png |Translate=Macro Make Circle 3 Points @@ -639,3 +639,6 @@ Vzorec kružnice upravený \" galou\_breizh \" do 3D prostoru pochází z [Circu Samostatné programy jsou umístěny zde, [Macro\_Draft\_Circle\_3\_Points](Macro_Draft_Circle_3_Points.md) [Macro\_Draft\_Circle\_3\_Points\_3D](Macro_Draft_Circle_3_Points_3D.md) + +--- +[documentation index](../README.md) > Macro Make Circle 3 Points/cs diff --git a/wiki/translations/cs/Macro_Make_Cube.md b/wiki/translations/cs/Macro_Make_Cube.md index c85224b2d1..1bb3241d1f 100644 --- a/wiki/translations/cs/Macro_Make_Cube.md +++ b/wiki/translations/cs/Macro_Make_Cube.md @@ -1,7 +1,4 @@ # Macro Make Cube/cs - - - {{Macro/cs |Name=Make Cube |Translate=Make Cube @@ -154,3 +151,5 @@ class myCommand(draftTools.Creator): myCommand() ``` +--- +[documentation index](../README.md) > Macro Make Cube/cs diff --git a/wiki/translations/cs/Macro_MeshToPart.md b/wiki/translations/cs/Macro_MeshToPart.md index 19098a0b51..b5bf082e9b 100644 --- a/wiki/translations/cs/Macro_MeshToPart.md +++ b/wiki/translations/cs/Macro_MeshToPart.md @@ -1,5 +1,5 @@ # Macro MeshToPart/cs - {{Macro/cs +{{Macro/cs |Name=MeshToPart |Translate=MeshToPart |Icon=Macro_MeshToPart.png @@ -65,3 +65,6 @@ for obj in FreeCADGui.Selection.getSelection(): ## Odkaz Diskuse na fóru [Convert mesh to solid?](http://forum.freecadweb.org/viewtopic.php?f=3&t=253&hilit=getPlanarSegments) + +--- +[documentation index](../README.md) > Macro MeshToPart/cs diff --git a/wiki/translations/cs/Macro_MessageBox.md b/wiki/translations/cs/Macro_MessageBox.md index dd5c753257..3b2c285e2c 100644 --- a/wiki/translations/cs/Macro_MessageBox.md +++ b/wiki/translations/cs/Macro_MessageBox.md @@ -1,7 +1,4 @@ # Macro MessageBox/cs - - -
@@ -72,6 +69,5 @@ Příklad : "+str(z)+"\nRayon\t : "+str(r)) }} - - - +--- +[documentation index](../README.md) > Macro MessageBox/cs diff --git a/wiki/translations/cs/Macro_Mouse_Cross.md b/wiki/translations/cs/Macro_Mouse_Cross.md index 3a670dab0b..11f314116e 100644 --- a/wiki/translations/cs/Macro_Mouse_Cross.md +++ b/wiki/translations/cs/Macro_Mouse_Cross.md @@ -1,5 +1,5 @@ # Macro Mouse Cross/cs - {{Macro/cs +{{Macro/cs |Name=Macro_Mouse_Cross |Icon=Macro_Mouse_Cross.png |Translate=Macro Mouse Cross @@ -211,3 +211,6 @@ Kurzor může měnit vzhled v závislosti na používané pracovní ploše, mus Kurzor může být nahrazen jiným posuvníkem (např. rozšíření okna, rohu, \...). Mřížka je permanentní. Zbytek rezidentního makra. + +--- +[documentation index](../README.md) > Macro Mouse Cross/cs diff --git a/wiki/translations/cs/Macro_ObjectInfo.md b/wiki/translations/cs/Macro_ObjectInfo.md index 7216181f34..d6fb4d9122 100644 --- a/wiki/translations/cs/Macro_ObjectInfo.md +++ b/wiki/translations/cs/Macro_ObjectInfo.md @@ -1,5 +1,5 @@ # Macro ObjectInfo/cs - {{Macro/cs +{{Macro/cs |Name=Macro ObjectInfo |Translate=Macro ObjectInfo |Description=Poskytuje informace o vybraném objektu @@ -54,6 +54,5 @@ Uživatel FreeCAD vytvořil uživatelsky přívětivý modul \"Info\", který m Z fóra [Info Workbench - Help with icons please.](http://forum.freecadweb.org/viewtopic.php?f=10&t=3185) - - - +--- +[documentation index](../README.md) > Macro ObjectInfo/cs diff --git a/wiki/translations/cs/Macro_PartsLibrary.md b/wiki/translations/cs/Macro_PartsLibrary.md index 4cba16ed8b..163147df14 100644 --- a/wiki/translations/cs/Macro_PartsLibrary.md +++ b/wiki/translations/cs/Macro_PartsLibrary.md @@ -1,5 +1,5 @@ # Macro PartsLibrary/cs - {{Macro/cs +{{Macro/cs |Name=Parts Library |Translate=Parts Library |Icon=FreeCAD Doc.png @@ -27,3 +27,6 @@ Toto makro, které je také obsaženo v knihovně, zobrazí panel prohlížeče ToolBar Icon ![](images/FreeCAD_Doc.png ) [PartsLibrary.FCMacro](http://github.com/yorikvanhavre/FreeCAD-library/blob/master/PartsLibrary.FCMacro) + +--- +[documentation index](../README.md) > Macro PartsLibrary/cs diff --git a/wiki/translations/cs/Macro_Rectellipse.md b/wiki/translations/cs/Macro_Rectellipse.md index 41cb527cfc..5c53fcb0b8 100644 --- a/wiki/translations/cs/Macro_Rectellipse.md +++ b/wiki/translations/cs/Macro_Rectellipse.md @@ -1,7 +1,4 @@ # Macro Rectellipse/cs - - -
@@ -96,3 +93,6 @@ if __name__ == "__main__": ## Odkaz [Získejte kód od Github zde!](https://github.com/FreeCAD/FreeCAD-macros/blob/master/ParametricObjectCreation/Rectellipse.FCMacro) + +--- +[documentation index](../README.md) > Macro Rectellipse/cs diff --git a/wiki/translations/cs/Macro_Remove_parametric_history.md b/wiki/translations/cs/Macro_Remove_parametric_history.md index 7e15879a2b..ca8befbff9 100644 --- a/wiki/translations/cs/Macro_Remove_parametric_history.md +++ b/wiki/translations/cs/Macro_Remove_parametric_history.md @@ -1,5 +1,5 @@ # Macro Remove parametric history/cs - {{Macro/cs +{{Macro/cs |Name=Remove parametric history |Icon=Macro_Remove_parametric_history.png |Translate=Remove parametric history @@ -39,6 +39,5 @@ newObject.Shape = newShape }} - - - +--- +[documentation index](../README.md) > Macro Remove parametric history/cs diff --git a/wiki/translations/cs/Macro_Rotate_View.md b/wiki/translations/cs/Macro_Rotate_View.md index ba2d642dfa..52e1c3a876 100644 --- a/wiki/translations/cs/Macro_Rotate_View.md +++ b/wiki/translations/cs/Macro_Rotate_View.md @@ -1,7 +1,4 @@ # Macro Rotate View/cs - - -
@@ -52,6 +49,5 @@ nrot = cam.orientation.getValue() * rot cam.orientation = nrot }} - - - +--- +[documentation index](../README.md) > Macro Rotate View/cs diff --git a/wiki/translations/cs/Macro_Solid_Sweep.md b/wiki/translations/cs/Macro_Solid_Sweep.md index 37ed2a857b..bc88a7c56b 100644 --- a/wiki/translations/cs/Macro_Solid_Sweep.md +++ b/wiki/translations/cs/Macro_Solid_Sweep.md @@ -1,5 +1,5 @@ # Macro Solid Sweep/cs - {{Macro/cs +{{Macro/cs |Name=Solid Sweep |Icon=Macro_Solid_Sweep.png |Translate=Solid Sweep @@ -93,3 +93,6 @@ myObject.Shape = Sweep Díky [Wmayer](User:Wmayer.md) za jeho pomoc při psaní tohoto skriptu. Dva příklady použití makra lze nalézt na [this forum topic](http://forum.freecadweb.org/viewtopic.php?f=8&t=1222&start=50#p11120), spolu s odkazem na stažení do souboru FCStd. Použitím spirály jako trajektorie může být toto makro použito pro vytvoření závitu šroubu. + +--- +[documentation index](../README.md) > Macro Solid Sweep/cs diff --git a/wiki/translations/cs/Macro_SuperWire.md b/wiki/translations/cs/Macro_SuperWire.md index 05f0a4489d..9e982ea0e2 100644 --- a/wiki/translations/cs/Macro_SuperWire.md +++ b/wiki/translations/cs/Macro_SuperWire.md @@ -1,7 +1,4 @@ # Macro SuperWire/cs - - - {{Macro/cs |Name=SuperWire |Translate=SuperWire @@ -59,6 +56,5 @@ else: ``` - - - +--- +[documentation index](../README.md) > Macro SuperWire/cs diff --git a/wiki/translations/cs/Macro_Texture.md b/wiki/translations/cs/Macro_Texture.md index 85933efe71..9fc1d992f6 100644 --- a/wiki/translations/cs/Macro_Texture.md +++ b/wiki/translations/cs/Macro_Texture.md @@ -1,7 +1,4 @@ # Macro Texture/cs - - -
@@ -423,3 +420,6 @@ Macro FCCreaLoft [Mac - ver 0.3 : 28/03/2014 :comment out the line \"**\# self.checkBox\_5.setAccessibleName(\_fromUtf8(\"\"))**\" that causes an error with the version FreeCAD : Version: 0.14.3343 (Git), Python version: 2.7.6, Qt version: 4.8.5 + +--- +[documentation index](../README.md) > Macro Texture/cs diff --git a/wiki/translations/cs/Macro_Texture_Objects.md b/wiki/translations/cs/Macro_Texture_Objects.md index 5f5d3aa9fc..3715f6cad9 100644 --- a/wiki/translations/cs/Macro_Texture_Objects.md +++ b/wiki/translations/cs/Macro_Texture_Objects.md @@ -1,5 +1,5 @@ # Macro Texture Objects/cs - {{Macro/cs +{{Macro/cs |Name=Texture Objects |Translate=Texture Objects |Icon=Macro_Texture_Objects.png @@ -46,6 +46,5 @@ for obj in FreeCADGui.Selection.getSelection(): [Script to map texture with environement checked](https://forum.freecadweb.org/viewtopic.php?f=3&t=28795) - - - +--- +[documentation index](../README.md) > Macro Texture Objects/cs diff --git a/wiki/translations/cs/Macro_Unfold_Box.md b/wiki/translations/cs/Macro_Unfold_Box.md index 5fd3dcc34c..3baf412a17 100644 --- a/wiki/translations/cs/Macro_Unfold_Box.md +++ b/wiki/translations/cs/Macro_Unfold_Box.md @@ -1,7 +1,4 @@ # Macro Unfold Box/cs - - -
@@ -610,3 +607,5 @@ DialogBox.show() }} +--- +[documentation index](../README.md) > Macro Unfold Box/cs diff --git a/wiki/translations/cs/Macro_Unroll_Ruled_Surface.md b/wiki/translations/cs/Macro_Unroll_Ruled_Surface.md index 6eb62fefca..863dffabf7 100644 --- a/wiki/translations/cs/Macro_Unroll_Ruled_Surface.md +++ b/wiki/translations/cs/Macro_Unroll_Ruled_Surface.md @@ -1,7 +1,4 @@ # Macro Unroll Ruled Surface/cs - - -
@@ -754,6 +751,5 @@ DialogBox.show() }} - - - +--- +[documentation index](../README.md) > Macro Unroll Ruled Surface/cs diff --git a/wiki/translations/cs/Macro_View_Rotation.md b/wiki/translations/cs/Macro_View_Rotation.md index 771273458f..643c6bc390 100644 --- a/wiki/translations/cs/Macro_View_Rotation.md +++ b/wiki/translations/cs/Macro_View_Rotation.md @@ -1,5 +1,5 @@ # Macro View Rotation/cs - {{Macro/cs +{{Macro/cs |Name=View Rotation |Icon=Macro_View_Rotation.png |Translate=View Rotation @@ -291,3 +291,6 @@ Tři ikony symbolizují směr rotace. Zip soubory s ikonami najdete [zde](http:/ ## Diskusní stránka [View+Rotation](http://forum.freecadweb.org/viewtopic.php?f=3&t=1784&hilit=View+Rotation#p12012) + +--- +[documentation index](../README.md) > Macro View Rotation/cs diff --git a/wiki/translations/cs/Macro_screw_maker1_2.md b/wiki/translations/cs/Macro_screw_maker1_2.md index 6ce95a7c36..f229e77ff3 100644 --- a/wiki/translations/cs/Macro_screw_maker1_2.md +++ b/wiki/translations/cs/Macro_screw_maker1_2.md @@ -1,5 +1,5 @@ # Macro screw maker1 2/cs - {{Macro/cs +{{Macro/cs |Name=Macro_screw_maker1_2 |Translate=Macro screw maker1 2 |Icon=Macro_screw_maker1_2.png @@ -4981,3 +4981,6 @@ if __name__ == '__main__': ## Odkaz Fórum [Screw Maker](https://forum.freecadweb.org/viewtopic.php?f=22&t=6558&start=30#p95929) + +--- +[documentation index](../README.md) > Macro screw maker1 2/cs diff --git a/wiki/translations/cs/Macros.md b/wiki/translations/cs/Macros.md index 05e5bf9e16..efd6e4d770 100644 --- a/wiki/translations/cs/Macros.md +++ b/wiki/translations/cs/Macros.md @@ -1,7 +1,4 @@ # Macros/cs - - - {{TOCright}} ## Introduction @@ -132,3 +129,6 @@ You can manually install extensions, however, it is much simpler to just use the }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/cs diff --git a/wiki/translations/cs/Main_Page.md b/wiki/translations/cs/Main_Page.md index b961f004d8..266cecc6f9 100644 --- a/wiki/translations/cs/Main_Page.md +++ b/wiki/translations/cs/Main_Page.md @@ -1,7 +1,4 @@ # Main Page/cs - - -
Toto je wiki dokumentace [FreeCADu](http://www.freecadweb.org). Informace obsažené zde jsou ty, které budou v offline dokumentaci distribuované s FreeCADem. Pro prohlížení dokumentace pak máte dvě možnosti: buď v uživatelském centru nebo v manuálu. Právě se na tom pracuje, dokumentace je psána komunitou uživatelů a vývojářů FreeCADu. Najdete-li informace které jsou chybné nebo které chybí, prosím [pomozte](Help_FreeCAD/cs.md)! @@ -96,3 +93,6 @@ Podívejte se na [Vývojovou mapu](Development_roadmap/cs.md) na novinky, které [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/cs diff --git a/wiki/translations/cs/Material.md b/wiki/translations/cs/Material.md index 96e5d2c085..ea61bf3977 100644 --- a/wiki/translations/cs/Material.md +++ b/wiki/translations/cs/Material.md @@ -1,5 +1,5 @@ # Material/cs - } +}
@@ -243,3 +243,6 @@ Tento odstavec definuje materiálové vlastnosti, které se vztahují k vizuáln {{FEM Tools navi}} [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Roadmap](Category:Roadmap.md) [Category:BIM](Category:BIM.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Material/cs diff --git a/wiki/translations/cs/Mesh_Module.md b/wiki/translations/cs/Mesh_Module.md index a464ba1c96..2f159f7ef4 100644 --- a/wiki/translations/cs/Mesh_Module.md +++ b/wiki/translations/cs/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/cs 1. REDIRECT [Mesh Workbench/cs](Mesh_Workbench/cs.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/cs diff --git a/wiki/translations/cs/Mesh_Scripting.md b/wiki/translations/cs/Mesh_Scripting.md index c3d17e2a8f..2a824c020b 100644 --- a/wiki/translations/cs/Mesh_Scripting.md +++ b/wiki/translations/cs/Mesh_Scripting.md @@ -1,7 +1,4 @@ # Mesh Scripting/cs - - - {{TOCright}} ## Introduction @@ -99,3 +96,6 @@ An extensive, though hard to use, source of mesh related scripting are the unit See also: [Mesh API](Mesh_API.md). {{Top}} {{Powerdocnavi}} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scripting/cs diff --git a/wiki/translations/cs/Mesh_Workbench.md b/wiki/translations/cs/Mesh_Workbench.md index f65cbec850..b30ffee139 100644 --- a/wiki/translations/cs/Mesh_Workbench.md +++ b/wiki/translations/cs/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/cs - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench/cs {{TOCright}} @@ -158,3 +152,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/cs diff --git a/wiki/translations/cs/Mesh_to_Part.md b/wiki/translations/cs/Mesh_to_Part.md index b97f1bf4eb..93a5b2ca2a 100644 --- a/wiki/translations/cs/Mesh_to_Part.md +++ b/wiki/translations/cs/Mesh_to_Part.md @@ -1,7 +1,4 @@ # Mesh to Part/cs - - - {{TOCright}} ## Convert Part objects to meshes @@ -110,3 +107,6 @@ Part.show(solid) }} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh to Part/cs diff --git a/wiki/translations/cs/Misc_templates.md b/wiki/translations/cs/Misc_templates.md index e41d116bc5..8a281032b0 100644 --- a/wiki/translations/cs/Misc_templates.md +++ b/wiki/translations/cs/Misc_templates.md @@ -1,7 +1,4 @@ # Misc templates/cs - - -
Na této stránce je seznam různých šablon. @@ -91,3 +88,6 @@ CompassRose\_3D [CompassRose\_3D.FCStd](http://forum.freecadweb.org/download/fil [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Misc templates/cs diff --git a/wiki/translations/cs/Mouse_Model.md b/wiki/translations/cs/Mouse_Model.md index 90337ac5e1..3577421e3d 100644 --- a/wiki/translations/cs/Mouse_Model.md +++ b/wiki/translations/cs/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/cs 1. REDIRECT [Mouse\_navigation/cs](Mouse_navigation/cs.md) + +--- +[documentation index](../README.md) > Mouse Model/cs diff --git a/wiki/translations/cs/Mouse_navigation.md b/wiki/translations/cs/Mouse_navigation.md index 60117b65b3..4a832f18a3 100644 --- a/wiki/translations/cs/Mouse_navigation.md +++ b/wiki/translations/cs/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/cs - - - - - - {{TOCright}} ## Overview @@ -381,5 +375,5 @@ The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mous {{docnav/cs|[Zacínáme](Getting_started/cs.md)|[Struktura dokumentu](Document_structure/cs.md)}} - - +--- +[documentation index](../README.md) > Mouse navigation/cs diff --git a/wiki/translations/cs/Offsite_tutorials.md b/wiki/translations/cs/Offsite_tutorials.md index f339c38250..1104ab2ffa 100644 --- a/wiki/translations/cs/Offsite_tutorials.md +++ b/wiki/translations/cs/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/cs - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** This page lists FreeCAD tutorials found on other sites on the web. @@ -18,4 +18,7 @@ This page lists FreeCAD tutorials found on other sites on the web. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/cs diff --git a/wiki/translations/cs/Online_Help_Startpage.md b/wiki/translations/cs/Online_Help_Startpage.md index 39f0c3d2c3..9907271891 100644 --- a/wiki/translations/cs/Online_Help_Startpage.md +++ b/wiki/translations/cs/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/cs - - ![150](images/Crystal_Clear_app_tutorials.png ) ## Vítejte v on-line helpu FreeCADu @@ -46,3 +44,6 @@ Jak už jste možná někdy zjistili, programátoři jsou skutečně špatní au [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/cs diff --git a/wiki/translations/cs/Online_Help_Toc.md b/wiki/translations/cs/Online_Help_Toc.md index 1ddc674579..23614bcf11 100644 --- a/wiki/translations/cs/Online_Help_Toc.md +++ b/wiki/translations/cs/Online_Help_Toc.md @@ -1,7 +1,4 @@ # Online Help Toc/cs - - -
Zde je obsah stránky online help systému ve FreeCADu. Články, které jsou zde odkazované jsou automaticky včleněny v souboru FreeCAD.chm nástrojem wiki2chm.py tool.Tento nástroj najdete na src/Tools/wiki2chm.py. Je dostupná i [tisknutelná verze](Manual.md) o tohoto manuálu. @@ -171,3 +168,6 @@ There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction. [Kategorie:Dokumentace](Category:Documentation/cs.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/cs diff --git a/wiki/translations/cs/OpenSCAD_Module.md b/wiki/translations/cs/OpenSCAD_Module.md index 687c0d5fbf..8209e02791 100644 --- a/wiki/translations/cs/OpenSCAD_Module.md +++ b/wiki/translations/cs/OpenSCAD_Module.md @@ -1,2 +1,5 @@ # OpenSCAD Module/cs 1. REDIRECT [OpenSCAD\_Workbench/cs](OpenSCAD_Workbench/cs.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Module/cs diff --git a/wiki/translations/cs/OpenSCAD_Workbench.md b/wiki/translations/cs/OpenSCAD_Workbench.md index 444cc8f5ce..194828648a 100644 --- a/wiki/translations/cs/OpenSCAD_Workbench.md +++ b/wiki/translations/cs/OpenSCAD_Workbench.md @@ -1,10 +1,4 @@ -# OpenSCAD Workbench/cs - - - - - -OpenSCAD workbench icon +# OpenSCAD workbench icon OpenSCAD Workbench/cs ## Introduction @@ -108,3 +102,6 @@ If FreeCAD crashes when importing CSG, it is strongly recommended that you enabl }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/cs diff --git a/wiki/translations/cs/PartDesign_Chamfer.md b/wiki/translations/cs/PartDesign_Chamfer.md index 3163c99690..a0e7b1b622 100644 --- a/wiki/translations/cs/PartDesign_Chamfer.md +++ b/wiki/translations/cs/PartDesign_Chamfer.md @@ -1,3 +1,4 @@ +# PartDesign Chamfer/cs --- - GuiCommand:/cs Name:PartDesign Chamfer Name/cs:PartDesign Chamfer Workbenches:[MenuLocation:Part Design → Chamfer SeeAlso:[[Part Chamfer/cs|Chamfer Part](PartDesign_Workbench/cs___PartDesign]],_Complete.md)--- @@ -57,4 +58,7 @@ This tool creates chamfers on the selected edges of an object. A new separate Ch {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Chamfer/cs diff --git a/wiki/translations/cs/PartDesign_Draft.md b/wiki/translations/cs/PartDesign_Draft.md index 31fc0ae5c5..b5f40dfcb9 100644 --- a/wiki/translations/cs/PartDesign_Draft.md +++ b/wiki/translations/cs/PartDesign_Draft.md @@ -1,3 +1,4 @@ +# PartDesign Draft/cs --- - GuiCommand:/cs Name:PartDesign_Draft Name/cs:PartDesign Draft MenuLocation:Part Design -> Draft Workbenches:[[PartDesign_Workbench/cs Part Design]]|Shortcut:None SeeAlso:None--- @@ -96,4 +97,7 @@ Tento nástroj vytváří úhlové zkosení na vybrané ploše objektu. Ve strom {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Draft/cs diff --git a/wiki/translations/cs/PartDesign_Fillet.md b/wiki/translations/cs/PartDesign_Fillet.md index 7408d7dfda..b0034c92f7 100644 --- a/wiki/translations/cs/PartDesign_Fillet.md +++ b/wiki/translations/cs/PartDesign_Fillet.md @@ -1,3 +1,4 @@ +# PartDesign Fillet/cs --- - GuiCommand:/cs Name:PartDesign Fillet Name/cs:PartDesign Fillet Workbenches:[MenuLocation:PartDesign → Fillet SeeAlso:[[Part Fillet/cs|Part Fillet](PartDesign_Workbench/cs___PartDesign]],_Complete.md)--- @@ -146,4 +147,7 @@ Part.show(Box) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Fillet/cs diff --git a/wiki/translations/cs/PartDesign_Groove.md b/wiki/translations/cs/PartDesign_Groove.md index 3cb3e045d4..43d4f886c8 100644 --- a/wiki/translations/cs/PartDesign_Groove.md +++ b/wiki/translations/cs/PartDesign_Groove.md @@ -1,3 +1,4 @@ +# PartDesign Groove/cs --- - GuiCommand:/cs Name:PartDesign_Groove Name/cs:PartDesign Groove Workbenches:[[PartDesign Workbench/cs Návrh dílu]], Complete|MenuLocation:PartDesign -> Groove--- @@ -88,4 +89,7 @@ Below are properties which can be defined after creation of the feature. Data pr {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Groove/cs diff --git a/wiki/translations/cs/PartDesign_InvoluteGear.md b/wiki/translations/cs/PartDesign_InvoluteGear.md index 0f324b5e78..7782b2628c 100644 --- a/wiki/translations/cs/PartDesign_InvoluteGear.md +++ b/wiki/translations/cs/PartDesign_InvoluteGear.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/cs.md) --- +# PartDesign InvoluteGear/cs +
@@ -51,4 +53,7 @@ For more detailed information see Wikipedia\'s entries for: [Gear](https://en.wi {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign InvoluteGear/cs diff --git a/wiki/translations/cs/PartDesign_Legacy.md b/wiki/translations/cs/PartDesign_Legacy.md index d6c5a35e23..f80eb185d5 100644 --- a/wiki/translations/cs/PartDesign_Legacy.md +++ b/wiki/translations/cs/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/cs 1. REDIRECT [PartDesign\_Workbench/cs](PartDesign_Workbench/cs.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/cs diff --git a/wiki/translations/cs/PartDesign_LinearPattern.md b/wiki/translations/cs/PartDesign_LinearPattern.md index ad4160290f..40b507d164 100644 --- a/wiki/translations/cs/PartDesign_LinearPattern.md +++ b/wiki/translations/cs/PartDesign_LinearPattern.md @@ -1,3 +1,4 @@ +# PartDesign LinearPattern/cs --- - GuiCommand:/cs Name:PartDesign_LinearPattern Name/cs:PartDesign LinearPattern Workbenches:[[PartDesign Workbench/cs Návrh dílu]], Complete|MenuLocation:PartDesign -> LinearPattern--- @@ -126,4 +127,7 @@ Select one of the Body Origin\'s standard axis (X, Y or Z) as direction. {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign LinearPattern/cs diff --git a/wiki/translations/cs/PartDesign_Mirrored.md b/wiki/translations/cs/PartDesign_Mirrored.md index 9f708e475d..bafc888c1d 100644 --- a/wiki/translations/cs/PartDesign_Mirrored.md +++ b/wiki/translations/cs/PartDesign_Mirrored.md @@ -1,3 +1,4 @@ +# PartDesign Mirrored/cs --- - GuiCommand:/cs Name:PartDesign_Mirrored Name/cs:PartDesign Mirrored Workbenches:[[PartDesign Workbench/cs Návrh dílu]], Complete|MenuLocation:PartDesign -> Mirrored--- @@ -126,4 +127,7 @@ The mirror result can be previewed in real time before clicking **OK** by checki {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Mirrored/cs diff --git a/wiki/translations/cs/PartDesign_MultiTransform.md b/wiki/translations/cs/PartDesign_MultiTransform.md index 8fc3b9f654..18dd3df6fd 100644 --- a/wiki/translations/cs/PartDesign_MultiTransform.md +++ b/wiki/translations/cs/PartDesign_MultiTransform.md @@ -1,3 +1,4 @@ +# PartDesign MultiTransform/cs --- - GuiCommand:/cs Name:PartDesign_MultiTransform Name/cs:Návrh dílu MultiTransformace Workbenches:[[PartDesign Workbench/cs Návrh dílu]], Kompletace|MenuLocation:Návrh dílu -> MultiTransformace--- @@ -204,4 +205,7 @@ Allows changing the order of transformations in the list \|} {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MultiTransform/cs diff --git a/wiki/translations/cs/PartDesign_Pad.md b/wiki/translations/cs/PartDesign_Pad.md index 6b8d293e03..820335eecb 100644 --- a/wiki/translations/cs/PartDesign_Pad.md +++ b/wiki/translations/cs/PartDesign_Pad.md @@ -6,6 +6,8 @@ MenuLocation:Návrh dílu → Deska --- +# PartDesign Pad/cs +
@@ -146,4 +148,7 @@ Reverses the direction of the pad. {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pad/cs diff --git a/wiki/translations/cs/PartDesign_Pocket.md b/wiki/translations/cs/PartDesign_Pocket.md index 96bb45d728..789984697b 100644 --- a/wiki/translations/cs/PartDesign_Pocket.md +++ b/wiki/translations/cs/PartDesign_Pocket.md @@ -1,3 +1,4 @@ +# PartDesign Pocket/cs --- - GuiCommand:/cs Name:PartDesign_Pocket Name/cs:Návrh dílu Kapsa Workbenches:[[PartDesign Workbench/cs Návrh dílu]], Kompletace|MenuLocation:Návrh dílu -> Kapsa--- @@ -76,4 +77,7 @@ This allows to enter a second length in which the pocket should extend in the op {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pocket/cs diff --git a/wiki/translations/cs/PartDesign_PolarPattern.md b/wiki/translations/cs/PartDesign_PolarPattern.md index 83573e1b10..ee56f34b8c 100644 --- a/wiki/translations/cs/PartDesign_PolarPattern.md +++ b/wiki/translations/cs/PartDesign_PolarPattern.md @@ -6,6 +6,8 @@ MenuLocation:Návrh dílu -> Polární vzorky --- +# PartDesign PolarPattern/cs +
@@ -139,4 +141,7 @@ Určuje úhel, který má být vzorky pokryt a celkový počet vzorků (včetně {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign PolarPattern/cs diff --git a/wiki/translations/cs/PartDesign_Revolution.md b/wiki/translations/cs/PartDesign_Revolution.md index de5a8dba21..a0664b974c 100644 --- a/wiki/translations/cs/PartDesign_Revolution.md +++ b/wiki/translations/cs/PartDesign_Revolution.md @@ -1,3 +1,4 @@ +# PartDesign Revolution/cs --- - GuiCommand:/cs Name:PartDesign_Revolution Name/cs:Návrh dílu Obtáčení Workbenches:[[PartDesign Workbench/cs Návrh dílu]], Kompletace|MenuLocation:Návrh dílu -> Obtáčení--- @@ -122,4 +123,7 @@ Below are properties which can be defined after creation of the feature. Data pr {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Revolution/cs diff --git a/wiki/translations/cs/PartDesign_Scaled.md b/wiki/translations/cs/PartDesign_Scaled.md index fca4b6f86e..1c6548889a 100644 --- a/wiki/translations/cs/PartDesign_Scaled.md +++ b/wiki/translations/cs/PartDesign_Scaled.md @@ -1,3 +1,4 @@ +# PartDesign Scaled/cs --- - GuiCommand:/cs Name:PartDesign_Scaled Name/cs:PartDesign Scaled Workbenches:[[PartDesign Workbench/cs PartDesign]], Complete|MenuLocation:PartDesign → MultiTransform--- @@ -39,4 +40,7 @@ Starting from FreeCAD 0.15, this operation is not available directly, but was in ![c\|center\|800px](images/mt_example2.png ) The smallest pad was first patterned three times in X direction and then scaled to factor two (so the three occurrences have scaling factor 1.0, 1.5 and 2.0). Then a polar pattern was applied with 8 occurrences. -Since the scaling is done with respect to the center of gravity, in the case of a pad, it is necessary that the pad penetrate also in the main body, otherwise the scaled objects are floating, detached from the body. To have a pad that intersects the main body can be used \"two dimensions\" type or \"simmetric to plane\" option. +Since the scaling is done with respect to the center of gravity, in the case of a pad, it is necessary that the pad penetrate also in the main body, otherwise the scaled objects are floating, detached from the body. To have a pad that intersects the main body can be used \"two dimensions\" type or \"simmetric to plane\" option. + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Scaled/cs diff --git a/wiki/translations/cs/PartDesign_WizardShaft.md b/wiki/translations/cs/PartDesign_WizardShaft.md index a79702f5ad..e16eb4f985 100644 --- a/wiki/translations/cs/PartDesign_WizardShaft.md +++ b/wiki/translations/cs/PartDesign_WizardShaft.md @@ -1,3 +1,4 @@ +# PartDesign WizardShaft/cs --- - GuiCommand:/cs Name:PartDesign WizardShaft Name/cs:PartDesign WizardShaft MenuLocation:Part Design → Shaft design wizard... Workbenches:[PartDesign](PartDesign_Workbench/cs.md), Complete--- @@ -65,4 +66,7 @@ To add a new shaft segment, right-click into the empty space to the right of the {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign WizardShaft/cs diff --git a/wiki/translations/cs/PartDesign_Workbench.md b/wiki/translations/cs/PartDesign_Workbench.md index 680f75737e..1445f10779 100644 --- a/wiki/translations/cs/PartDesign_Workbench.md +++ b/wiki/translations/cs/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/cs - - -PartDesign workbench icon +# PartDesign workbench icon PartDesign Workbench/cs {{TOCright}} @@ -223,3 +220,6 @@ Some additional functionality found in the Part Design menu: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/cs diff --git a/wiki/translations/cs/Part_Boolean.md b/wiki/translations/cs/Part_Boolean.md index 593637a3df..29a79d511c 100644 --- a/wiki/translations/cs/Part_Boolean.md +++ b/wiki/translations/cs/Part_Boolean.md @@ -1,3 +1,4 @@ +# Part Boolean/cs --- - GuiCommand:/cs Name:Part Booleans Name/cs:Díl Booleans MenuLocation:Díl → Booleans Workbenches:[SeeAlso:[[Part Union/cs|Díl Sjednotit](Part_Workbench/cs___Díl]].md), [Díl Společné](Part_Common/cs.md) and [Díl Oddělit](Part_Cut/cs.md)--- @@ -66,8 +67,5 @@ In cases of coplanarity, even if the first boolean operation succeeds, subsequen *Left: shapes that share a face, a boolean union may produce incorrect results. Right: shapes that intersect each other clearly, the boolean union will be successful in most cases.* - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Boolean/cs diff --git a/wiki/translations/cs/Part_Box.md b/wiki/translations/cs/Part_Box.md index 457044b905..bc43b52ffe 100644 --- a/wiki/translations/cs/Part_Box.md +++ b/wiki/translations/cs/Part_Box.md @@ -1,3 +1,4 @@ +# Part Box/cs --- - GuiCommand:/cs Name:Part Box MenuLocation:Part → Box |Workbenches:[SeeAlso:[[Part_CreatePrimitives|Part CreatePrimitives](Part_Workbench___Part]],_Complete.md)--- @@ -63,8 +64,5 @@ You can change its placement with: FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6, 3), FreeCAD.Rotation(30, 45, 10)) ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Box/cs diff --git a/wiki/translations/cs/Part_Builder.md b/wiki/translations/cs/Part_Builder.md index 1856836142..e1ceadca1e 100644 --- a/wiki/translations/cs/Part_Builder.md +++ b/wiki/translations/cs/Part_Builder.md @@ -1,3 +1,4 @@ +# Part Builder/cs --- - GuiCommand:/cs Name:Part Shapebuilder Name/cs:Part Shapebuilder MenuLocation:Part -> Shapebuilder... |Workbenches:[SeeAlso:[[Part_CreatePrimitives/cs|Part CreatePrimitives](Part_Workbench/cs___Part]].md)--- @@ -67,8 +68,5 @@ A possible workflow could be: - Create a \"shell from faces\" - Create a \"solid from shell\" - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Builder/cs diff --git a/wiki/translations/cs/Part_Chamfer.md b/wiki/translations/cs/Part_Chamfer.md index d1b691a7b3..a6cbd55f03 100644 --- a/wiki/translations/cs/Part_Chamfer.md +++ b/wiki/translations/cs/Part_Chamfer.md @@ -1,3 +1,4 @@ +# Part Chamfer/cs --- - GuiCommand:/cs Name:Part Chamfer Name/cs:Díl Zkosení MenuLocation:Díl → Zkosení Workbenches:[[Part_Workbench/cs Díl]], Kompletace|SeeAlso:--- @@ -154,8 +155,5 @@ FreeCAD.ActiveDocument.recompute() - Recomputes all altered components on the screen and refreshes the display. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Chamfer/cs diff --git a/wiki/translations/cs/Part_Circle.md b/wiki/translations/cs/Part_Circle.md index cb413cfee4..6874afc769 100644 --- a/wiki/translations/cs/Part_Circle.md +++ b/wiki/translations/cs/Part_Circle.md @@ -1,3 +1,4 @@ +# Part Circle/cs --- - GuiCommand:/cs Name:Part_Circle Name/cs:Díl Kružnice MenuLocation:Díl → [Workbenches:[[Part_Workbench/cs Díl](Part_CreatePrimitives/cs___Vytváření_zákl.geom.tvarů]] → Kružnice.md), [OpenSCAD](OpenSCAD_Workbench/cs.md)|SeeAlso:..--- @@ -64,8 +65,5 @@ A Circle geometric primitive is available from the Create Primitives dialogue in - {{Parameter|Angle 1}}: end of the curved edge, (degrees anti-clockwise), the default value is 360 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Circle/cs diff --git a/wiki/translations/cs/Part_Common.md b/wiki/translations/cs/Part_Common.md index 3c14fa02b9..6892df66cd 100644 --- a/wiki/translations/cs/Part_Common.md +++ b/wiki/translations/cs/Part_Common.md @@ -1,3 +1,4 @@ +# Part Common/cs --- - GuiCommand:/cs Name:Part Common Name/cs:Part Common MenuLocation:Part → Common Workbenches:[SeeAlso:[[Part Union/cs|Part Union](Part_Workbench/cs___Part]],Complete.md), [Part Cut](Part_Cut/cs.md)--- @@ -17,8 +18,5 @@ Extracts the common part (intersection) between selected Part objects. This oper Input objects must be [OpenCascade](OpenCascade.md) shapes. Examples: stuff made with Part, PartDesign, Sketcher workbenches. Not meshes (unless those were converted to shapes) - for meshes, there are specific Boolean tools in MeshDesign workbench. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Common/cs diff --git a/wiki/translations/cs/Part_CreatePrimitives.md b/wiki/translations/cs/Part_CreatePrimitives.md index 2085ed832d..d6d079b67c 100644 --- a/wiki/translations/cs/Part_CreatePrimitives.md +++ b/wiki/translations/cs/Part_CreatePrimitives.md @@ -1,2 +1,5 @@ # Part CreatePrimitives/cs 1. REDIRECT [Part\_Primitives/cs](Part_Primitives/cs.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CreatePrimitives/cs diff --git a/wiki/translations/cs/Part_Cut.md b/wiki/translations/cs/Part_Cut.md index b5a2c0fa11..7c0c76def8 100644 --- a/wiki/translations/cs/Part_Cut.md +++ b/wiki/translations/cs/Part_Cut.md @@ -1,3 +1,4 @@ +# Part Cut/cs --- - GuiCommand:/cs Name:Part Cut Name/cs:Díl Oddělit MenuLocation:Díl → Oddělit Workbenches:[Kompletace ](Part_Workbench/cs___Díl]],_[[Complete_Workbench/cs.md)|SeeAlso:[Díl Sjednotit](Part_Union/cs.md), [Díl Společné](Part_Common/cs.md)--- @@ -29,8 +30,5 @@ Cuts (subtracts) selected Part objects, the last one being subtracted from the f Input objects must be [OpenCascade](OpenCascade.md) shapes. Examples: stuff made with Part, PartDesign, Sketcher workbenches. Not meshes (unless those were converted to shapes) - for meshes, there are specific Boolean tools in MeshDesign workbench. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cut/cs diff --git a/wiki/translations/cs/Part_Cylinder.md b/wiki/translations/cs/Part_Cylinder.md index ed2d10a82b..4a381eac31 100644 --- a/wiki/translations/cs/Part_Cylinder.md +++ b/wiki/translations/cs/Part_Cylinder.md @@ -1,3 +1,4 @@ +# Part Cylinder/cs --- - GuiCommand:/cs Name:Part Cylinder Name/cs:Díl Válec MenuLocation:Díl -> Válec |Workbenches:[SeeAlso:[[Part_CreatePrimitives/cs|Díl Vytváření zakl.geom.tvarů](Part_Workbench/cs___Modul_Díl]],_Kompletace.md)--- @@ -31,10 +32,7 @@ The cylinder properties can later be edited, either in the [Property editor](Pro - **First Angle**: Angle in first direction. (v0.20) -- **Second Angle**: Angle in second direction. (v0.20) +- **Second Angle**: Angle in second direction. (v0.20) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cylinder/cs diff --git a/wiki/translations/cs/Part_Ellipse.md b/wiki/translations/cs/Part_Ellipse.md index 9ddfc203ad..babd53a916 100644 --- a/wiki/translations/cs/Part_Ellipse.md +++ b/wiki/translations/cs/Part_Ellipse.md @@ -1,3 +1,4 @@ +# Part Ellipse/cs --- - GuiCommand:/cs Name:Part Ellipse Name/cs:Díl Elipsa MenuLocation:Díl → [Workbenches:[[Part_Workbench/cs Díl](Part_CreatePrimitives/cs___Vytváření_zákl.geom.tvarů]] → Elipsa.md), [OpenSCAD](OpenSCAD_Workbench/cs.md)|SeeAlso:..--- @@ -52,8 +53,5 @@ The Create Primitives dialogue can be accessed via the [Primitives](Part_Primiti - **Angle 1:** start of the edge of the ellipse or elliptical curved edge, (degrees anti-clockwise), the default value is 0 - **Angle 2:** end of the edge of the ellipse or elliptical curved edge, (degrees anti-clockwise), the default value is 360 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipse/cs diff --git a/wiki/translations/cs/Part_Ellipsoid.md b/wiki/translations/cs/Part_Ellipsoid.md index 20a6a7de0f..4cd947560f 100644 --- a/wiki/translations/cs/Part_Ellipsoid.md +++ b/wiki/translations/cs/Part_Ellipsoid.md @@ -1,3 +1,4 @@ +# Part Ellipsoid/cs --- - GuiCommand:/cs Name:Part Ellipsoid Name/cs:Díl Ellipsoid MenuLocation:Díl → [Workbenches:[[Part_Workbench/cs Díl](Part_CreatePrimitives/cs___Vytváření_zákl.geom.tvarů]] → Elipsoid.md), [OpenSCAD](OpenSCAD_Workbench/cs.md)|SeeAlso:..--- @@ -82,8 +83,5 @@ A parametric Ellipsoid solid is available from the Create Primitives dialogue in ![](images/Part_Ellipsoid_screenshot.jpg ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipsoid/cs diff --git a/wiki/translations/cs/Part_Extrude.md b/wiki/translations/cs/Part_Extrude.md index 570000bb00..e91491eb59 100644 --- a/wiki/translations/cs/Part_Extrude.md +++ b/wiki/translations/cs/Part_Extrude.md @@ -1,3 +1,4 @@ +# Part Extrude/cs --- - GuiCommand:/cs Name:Part Extrude Name/cs:Díl Vysunutí MenuLocation:Díl -> Vysunutí Workbenches:[[Part_Workbench/cs Modul Díl]], Kompletace|SeeAlso:--- @@ -132,8 +133,5 @@ Part Extrude doesn\'t care where it is in model tree. PartDesign Pad can only li Part Extrude can extrude any object that has Part Geometry (OCC shape), except for solids and compsolids. And it can\'t extrude individual faces of other objects. PartDesign Pad will only accept a Sketch as a profile (and a small selection of other object types), or a face of a solid. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Extrude/cs diff --git a/wiki/translations/cs/Part_Fillet.md b/wiki/translations/cs/Part_Fillet.md index 658c872db3..5cd37def39 100644 --- a/wiki/translations/cs/Part_Fillet.md +++ b/wiki/translations/cs/Part_Fillet.md @@ -1,3 +1,4 @@ +# Part Fillet/cs --- - GuiCommand:/cs Name:Part Fillet Name/cs:Díl Zaoblení MenuLocation:Díl → Zaoblení Workbenches:[SeeAlso:[[Part Chamfer/cs|Díl Zkosení](Part_Workbench/cs___Díl]],_Kompletace.md)--- @@ -69,8 +70,5 @@ The fillet tool sometimes fails when trying to fillet complex objects. A common Also note that the part Fillet feature is affected by the [Topological naming problem](Topological_naming_problem.md) when the any change is done to a modeling step earlier in the chain that affects the number of facets or vertices. This could cause unpredictable result. Until that is resolved (possibly with V0.19) it is advised to apply Chamfer and [Fillet](Part_Fillet.md) operations at the last steps in the chain. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fillet/cs diff --git a/wiki/translations/cs/Part_Fuse.md b/wiki/translations/cs/Part_Fuse.md index 6343077c06..dbee6b47d5 100644 --- a/wiki/translations/cs/Part_Fuse.md +++ b/wiki/translations/cs/Part_Fuse.md @@ -7,6 +7,8 @@ SeeAlso:[Part Cut](Part_Cut/cs.md), [Part Common](Part_Common/cs.md) --- +# Part Fuse/cs +
@@ -41,8 +43,5 @@ Items can be added and removed from the fusion, by dragging them in or out of th After this operation is complete, it may be necessary to clean up the shape with [RefineShape](Part_RefineShape.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fuse/cs diff --git a/wiki/translations/cs/Part_Helix.md b/wiki/translations/cs/Part_Helix.md index 0f403ed6d4..d604d843ac 100644 --- a/wiki/translations/cs/Part_Helix.md +++ b/wiki/translations/cs/Part_Helix.md @@ -1,3 +1,4 @@ +# Part Helix/cs --- - GuiCommand:/cs Name:Part Helix Name/cs:Díl Šroubovice MenuLocation:Díl → [Workbenches:[[Part_Workbench/cs Díl](Part_CreatePrimitives/cs___Vytváření_zákl.geom.tvarů]] → Šroubovice.md), [OpenSCAD](OpenSCAD_Workbench/cs.md)|SeeAlso:..--- @@ -73,8 +74,5 @@ Když jste šroubovici vytvořili, máte ještě možnost upravit její parametr
- - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Helix/cs diff --git a/wiki/translations/cs/Part_Line.md b/wiki/translations/cs/Part_Line.md index dcade9396c..8f07710096 100644 --- a/wiki/translations/cs/Part_Line.md +++ b/wiki/translations/cs/Part_Line.md @@ -1,3 +1,4 @@ +# Part Line/cs --- - GuiCommand:/cs Name:Part Line Name/cs:Díl Přímka MenuLocation:Part → [Workbenches:[[Part_Workbench/cs Díl](Part_CreatePrimitives/cs___Vytváření_zákl.geom.tvarů]] → Přímka.md), [OpenSCAD](OpenSCAD_Workbench/cs.md)|SeeAlso:..--- @@ -90,8 +91,5 @@
- - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Line/cs diff --git a/wiki/translations/cs/Part_Loft.md b/wiki/translations/cs/Part_Loft.md index df5202aee2..5ba1993e02 100644 --- a/wiki/translations/cs/Part_Loft.md +++ b/wiki/translations/cs/Part_Loft.md @@ -1,3 +1,4 @@ +# Part Loft/cs --- - GuiCommand:/cs Name:Part Loft Name/cs:Part Loft MenuLocation:Part → Loft... |Workbenches:[SeeAlso:[[Part Sweep/cs|Part Sweep](Part_Workbench/cs___Part]].md)--- @@ -99,8 +100,5 @@ If you want to change the selection of the sections after creation of the loft, The sequence of sections depends on the sequence of clicks in the list. If you want to make substantial changes it is recommended to first deselect all and then start selection in the right order. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Loft/cs diff --git a/wiki/translations/cs/Part_Mirror.md b/wiki/translations/cs/Part_Mirror.md index 51146cc2ae..784849befb 100644 --- a/wiki/translations/cs/Part_Mirror.md +++ b/wiki/translations/cs/Part_Mirror.md @@ -1,3 +1,4 @@ +# Part Mirror/cs --- - GuiCommand:/cs Name:Part Mirror Name/cs:Díl Zrcadlení MenuLocation:Díl -> Zrcadlení Workbenches:[[Part_Workbench/cs Díl]], Kompletace|SeeAlso:--- @@ -77,8 +78,5 @@ Políčka **Základní bod** mohou být použity pro posunutí roviny zrcadlení
- - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Mirror/cs diff --git a/wiki/translations/cs/Part_Module.md b/wiki/translations/cs/Part_Module.md index 8dc28d3ada..9d975c0c21 100644 --- a/wiki/translations/cs/Part_Module.md +++ b/wiki/translations/cs/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/cs - - - - - -Part workbench icon +# Part workbench icon Part Module/cs {{TOCright}} @@ -237,3 +231,6 @@ See [Part scripting](Part_scripting.md). [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/cs diff --git a/wiki/translations/cs/Part_Offset.md b/wiki/translations/cs/Part_Offset.md index 28eab4dd19..fe73353fd1 100644 --- a/wiki/translations/cs/Part_Offset.md +++ b/wiki/translations/cs/Part_Offset.md @@ -1,3 +1,4 @@ +# Part Offset/cs --- - GuiCommand:/cs Name:Part Offset Name/cs:Part Offset MenuLocation:Part → Offset |Workbenches:[SeeAlso:[[Part_Thickness/cs|Thickness](Part_Workbench/cs___Part]],_Complet.md)--- @@ -52,10 +53,7 @@ same shape with a 3D Offset as SKIN and *filled* offset *filled* offset with 2 Cylinders creating boolean cuts. Cylinder A goes through the FILL whilst Cylinder B only goes thru the FILL and NOT through the source 2D shape. - + - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset/cs diff --git a/wiki/translations/cs/Part_Plane.md b/wiki/translations/cs/Part_Plane.md index 55a29362f5..dd342214e4 100644 --- a/wiki/translations/cs/Part_Plane.md +++ b/wiki/translations/cs/Part_Plane.md @@ -1,3 +1,4 @@ +# Part Plane/cs --- - GuiCommand:/cs Name:Part CreatePrimitives Name/cs:Díl Rovina Workbenches:[OpenSCAD](Part_Workbench/cs___Díl]],_[[OpenSCAD_Workbench/cs.md)|MenuLocation:[Díl](Part_Workbench/cs.md) → [Vytváření zákl.geom.prvků](Part_CreatePrimitives/cs.md) → Plane| SeeAlso=[Vytváření zákl.geom.prvků](Part_CreatePrimitives/cs.md)--- @@ -51,8 +52,5 @@ Vlastnosti mohou být změněny později v menu **Složený pohled → Data**, p You have the standard properties view. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Plane/cs diff --git a/wiki/translations/cs/Part_Point.md b/wiki/translations/cs/Part_Point.md index 2ead1d74d3..0f9488eeb3 100644 --- a/wiki/translations/cs/Part_Point.md +++ b/wiki/translations/cs/Part_Point.md @@ -1,3 +1,4 @@ +# Part Point/cs --- - GuiCommand:/cs Name:Part Point Name/cs:Díl Bod MenuLocation:Díl → [Workbenches:[[Part_Workbench/cs Díl](Part_CreatePrimitives/cs___Vytváření_zákl.geom.tvarů]] → Bod.md), [OpenSCAD](OpenSCAD_Workbench/cs.md)|SeeAlso:..--- @@ -89,4 +90,7 @@ Bod (vrchol) základního geometrického tělesa je dostupný z dialogového okn {{Part_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Point/cs diff --git a/wiki/translations/cs/Part_Primitives.md b/wiki/translations/cs/Part_Primitives.md index 6cf2cbbb0a..5d3cd95c07 100644 --- a/wiki/translations/cs/Part_Primitives.md +++ b/wiki/translations/cs/Part_Primitives.md @@ -1,3 +1,4 @@ +# Part Primitives/cs --- - GuiCommand:/cs Name:Part_CreatePrimitives Name/cs:Díl Vytváření základních geometrických tvarů MenuLocation:Díl -> Díl Vytváření zákl.geom.tvarů |Workbenches:[SeeAlso:[[Part_Shapebuilder/cs|Díl Skládání tvarů](Part_Workbench/cs___díl]].md)--- @@ -110,8 +111,5 @@ It can be used as input to the program as well. freecad $INSTALL_DIR/Mod/Part/parttests/part_test_objects.py ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Primitives/cs diff --git a/wiki/translations/cs/Part_Prism.md b/wiki/translations/cs/Part_Prism.md index 9e8f70be7f..5ec75169e6 100644 --- a/wiki/translations/cs/Part_Prism.md +++ b/wiki/translations/cs/Part_Prism.md @@ -1,3 +1,4 @@ +# Part Prism/cs --- - GuiCommand:/cs Name:Part Prism Name/cs:Part Prism MenuLocation:Part → [Workbenches:[[Part_Workbench/cs Part](Part_CreatePrimitives/cs___Create_Primitives]]_→_Prism.md), [OpenSCAD](OpenSCAD_Workbench/cs.md)|SeeAlso:Part → Primitives → [Box](Part_Box/cs.md)--- @@ -26,10 +27,7 @@ The prism properties can later be edited, either in the [Property editor](Proper - **First Angle**: Angle in first direction. (v0.19) -- **Second Angle**: Angle in second direction. (v0.19) +- **Second Angle**: Angle in second direction. (v0.19) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Prism/cs diff --git a/wiki/translations/cs/Part_RefineShape.md b/wiki/translations/cs/Part_RefineShape.md index dfbaf48ef6..2d617ff24b 100644 --- a/wiki/translations/cs/Part_RefineShape.md +++ b/wiki/translations/cs/Part_RefineShape.md @@ -1,3 +1,4 @@ +# Part RefineShape/cs --- - GuiCommand:/cs Name:Part RefineShape Name/cs:Díl Vyčistit tvar MenuLocation:Díl → Vyčistit tvar Workbenches:[OpenSCAD](Part_Workbench/cs___Díl]],__[[OpenSCAD_Workbench/cs.md)|SeeAlso:--- @@ -71,8 +72,5 @@ The Python command for refining a shape is the following: shape.removeSplitter() ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RefineShape/cs diff --git a/wiki/translations/cs/Part_RegularPolygon.md b/wiki/translations/cs/Part_RegularPolygon.md index d2730515c5..b487ee5798 100644 --- a/wiki/translations/cs/Part_RegularPolygon.md +++ b/wiki/translations/cs/Part_RegularPolygon.md @@ -1,3 +1,4 @@ +# Part RegularPolygon/cs --- - GuiCommand:/cs Name:Part RegularPolygon Name/cs:Part RegularPolygon MenuLocation:Part → [Workbenches:[[Part_Workbench/cs Part](Part_CreatePrimitives/cs___Create_Primitives]]_→_Regular_Polygon.md), [OpenSCAD](OpenSCAD_Workbench/cs.md)|Version:0.14 SeeAlso:--- @@ -22,8 +23,5 @@ The RegularPolygon is available from the Create Primitives dialogue in the Part - Polygon - the number of sides of the polygon which describes the cross section of the Part Prism - Circumradius - the circumradius is the distance from the centre of the polygon to a vertex. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RegularPolygon/cs diff --git a/wiki/translations/cs/Part_Revolve.md b/wiki/translations/cs/Part_Revolve.md index d16a8d3efc..5c467b94c9 100644 --- a/wiki/translations/cs/Part_Revolve.md +++ b/wiki/translations/cs/Part_Revolve.md @@ -1,3 +1,4 @@ +# Part Revolve/cs --- - GuiCommand:/cs Name:Part Revolve Name/cs:Díl Obtáčení MenuLocation:Díl -> Obtáčení Workbenches:[[Part_Workbench/cs Díl]], Kompletace|SeeAlso:--- @@ -57,8 +58,5 @@ Jestli je vybrána uživetelsky definována osa, čísla definují směr obtáč - If your version of FreeCAD has a check box for Solid in the Revolve dialog, you can make Solids from closed Wires and Edges. - If Revolve is performed using an axis that intersects the face to rotate, and you want to create a solid, the result might be invalid. This can happen for various reasons, self-intersection, direction, etc. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Revolve/cs diff --git a/wiki/translations/cs/Part_RuledSurface.md b/wiki/translations/cs/Part_RuledSurface.md index bb330c71a7..1687858279 100644 --- a/wiki/translations/cs/Part_RuledSurface.md +++ b/wiki/translations/cs/Part_RuledSurface.md @@ -1,3 +1,4 @@ +# Part RuledSurface/cs --- - GuiCommand:/pl Name:Part RuledSurface Name/pl:Part RuledSurface MenuLocation:Part → RuledSurface Workbenches:[[Part_Workbench/pl Part]], Complete|SeeAlso:--- @@ -16,8 +17,5 @@ Create ruled surface - Press the [Part RuledSurface](Part_RuledSurface.md) button - Use the **Part → RuledSurface** entry in the Part menu - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RuledSurface/cs diff --git a/wiki/translations/cs/Part_Section.md b/wiki/translations/cs/Part_Section.md index 6ed75b3089..ebcea42210 100644 --- a/wiki/translations/cs/Part_Section.md +++ b/wiki/translations/cs/Part_Section.md @@ -1,3 +1,4 @@ +# Part Section/cs --- - GuiCommand:/cs Name:Part Chamfer Name/cs:Díl Řez MenuLocation:Díl → Řez Workbenches:[[Part_Workbench/cs Díl]], Kompletace|SeeAlso:--- @@ -28,8 +29,5 @@ In this example, a cube is sectioned with a cylinder: To create sections with a section plane see [Cross-sections](Part_CrossSections.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Section/cs diff --git a/wiki/translations/cs/Part_Shapebuilder.md b/wiki/translations/cs/Part_Shapebuilder.md index fbbb78b11e..9271b9dc22 100644 --- a/wiki/translations/cs/Part_Shapebuilder.md +++ b/wiki/translations/cs/Part_Shapebuilder.md @@ -1,2 +1,5 @@ # Part Shapebuilder/cs 1. REDIRECT [Part\_Builder/cs](Part_Builder/cs.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Shapebuilder/cs diff --git a/wiki/translations/cs/Part_Sphere.md b/wiki/translations/cs/Part_Sphere.md index cb4876044b..300919a541 100644 --- a/wiki/translations/cs/Part_Sphere.md +++ b/wiki/translations/cs/Part_Sphere.md @@ -1,3 +1,4 @@ +# Part Sphere/cs --- - GuiCommand:/cs Name:Part Sphere Name/cs:Díl Koule MenuLocation:Díl -> Koule |Workbenches:[SeeAlso:[[Part_CreatePrimitives/cs|Díl Vytváření zákl.geom.tvarů](Part_Workbench/cs___Modul_Díl]],_Kompletace.md)--- @@ -57,8 +58,5 @@ Because it is quite difficult to explain the meaning of the parameters angle 1, - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sphere/cs diff --git a/wiki/translations/cs/Part_Spiral.md b/wiki/translations/cs/Part_Spiral.md index bef9dff9b8..278f1f63eb 100644 --- a/wiki/translations/cs/Part_Spiral.md +++ b/wiki/translations/cs/Part_Spiral.md @@ -1,3 +1,4 @@ +# Part Spiral/cs --- - GuiCommand:/cs Name:Part_CreatePrimitives Name/cs:Part CreatePrimitives MenuLocation:[Create Primitives](Part_Workbench/cs___Part]]_→_[[Part_CreatePrimitives/cs.md) → Spiral|Workbenches:[OpenSCAD](Part_Workbench/cs___Part]],_[[OpenSCAD_Workbench/cs.md)|SeeAlso:[Create Primitives](Part_CreatePrimitives/cs.md)--- @@ -16,8 +17,5 @@ The Create Primitives dialogue can be accessed via the [Primitives](Part_Primiti ![](images/Spiral_y45_it.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Spiral/cs diff --git a/wiki/translations/cs/Part_Sweep.md b/wiki/translations/cs/Part_Sweep.md index 32fd086d7a..0f3bc72f3d 100644 --- a/wiki/translations/cs/Part_Sweep.md +++ b/wiki/translations/cs/Part_Sweep.md @@ -1,3 +1,4 @@ +# Part Sweep/cs --- - GuiCommand:/cs Name:Part Sweep Name/cs:Part Sweep MenuLocation:Part → Sweep... |Workbenches:[SeeAlso:[[Part Loft/cs|Part Loft](Part_Workbench/cs___Part]].md)--- @@ -80,8 +81,5 @@ If \"Frenet\" is \"true\" the orientation of the profile is computed basing on l - Since Sweep is often used to create threads for screws, you should see [Thread for Screw Tutorial](Thread_for_Screw_Tutorial.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sweep/cs diff --git a/wiki/translations/cs/Part_Thickness.md b/wiki/translations/cs/Part_Thickness.md index 66e8d7d272..d9b41042cb 100644 --- a/wiki/translations/cs/Part_Thickness.md +++ b/wiki/translations/cs/Part_Thickness.md @@ -1,3 +1,4 @@ +# Part Thickness/cs --- - GuiCommand:/cs Name:Part Thickness Name/cs:Part Thickness MenuLocation:Part → Thickness |Workbenches:[SeeAlso:[[Part Offset/cs|Offset](Part_Workbench/cs___Part]],_Complet.md)--- @@ -67,8 +68,5 @@ Notes: ![](images/ThicknessEsempio4.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Thickness/cs diff --git a/wiki/translations/cs/Part_Torus.md b/wiki/translations/cs/Part_Torus.md index 5b8436e866..16890174aa 100644 --- a/wiki/translations/cs/Part_Torus.md +++ b/wiki/translations/cs/Part_Torus.md @@ -1,3 +1,4 @@ +# Part Torus/cs --- - GuiCommand:/cs Name:Part_Torus Name/cs:Díl_Torus MenuLocation:Díl -> Torus |Workbenches:[SeeAlso:[[Part_CreatePrimitives/cs|Díl Vytváření zákl.geom.tvarů](Part_Workbench/cs___Modul_Díl]],_Kompletace.md)--- @@ -54,10 +55,7 @@ as well as the standard set of placement parameters. The pictures below give a v ![](images/TorusExampleAngle2.jpg ) The parameter Angle2 has a value of 90°. -![](images/TorusExampleAngle3.jpg ) The parameter Angle3 has a value of 90°. +![](images/TorusExampleAngle3.jpg ) The parameter Angle3 has a value of 90°. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Torus/cs diff --git a/wiki/translations/cs/Part_Union.md b/wiki/translations/cs/Part_Union.md index f484ecd192..24e76ffbb6 100644 --- a/wiki/translations/cs/Part_Union.md +++ b/wiki/translations/cs/Part_Union.md @@ -1,2 +1,5 @@ # Part Union/cs 1. REDIRECT [Part\_Fuse/cs](Part_Fuse/cs.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Union/cs diff --git a/wiki/translations/cs/Part_Wedge.md b/wiki/translations/cs/Part_Wedge.md index 012640c8c2..1a942531cd 100644 --- a/wiki/translations/cs/Part_Wedge.md +++ b/wiki/translations/cs/Part_Wedge.md @@ -1,3 +1,4 @@ +# Part Wedge/cs --- - GuiCommand:/cs Name:Part Wedge Name/cs:Díl_Klín MenuLocation:Díl -> [|Workbenches:[[Part_Workbench/cs Modul Díl](Part_CreatePrimitives/cs___Díl_Vytváření_zákl.geom.tvarů]] -> Klín.md)|SeeAlso:[Díl Vytváření zákl.geom.tvarů](Part_CreatePrimitives/cs.md)--- @@ -65,8 +66,5 @@ Vytváří parametrický objekt Klín. Defaultně se za základnu považuje vět ![](images/Wedge_examples.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Wedge/cs diff --git a/wiki/translations/cs/Part_Workbench.md b/wiki/translations/cs/Part_Workbench.md index f611ab9e0a..886ac8e95f 100644 --- a/wiki/translations/cs/Part_Workbench.md +++ b/wiki/translations/cs/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/cs 1. REDIRECT [Part\_Module/cs](Part_Module/cs.md) + +--- +[documentation index](../README.md) > Part Workbench/cs diff --git a/wiki/translations/cs/Path_Workbench.md b/wiki/translations/cs/Path_Workbench.md index 3f00620e56..d21ee9ace1 100644 --- a/wiki/translations/cs/Path_Workbench.md +++ b/wiki/translations/cs/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/cs - - - - - -Path workbench icon +# Path workbench icon Path Workbench/cs {{TOCright}} @@ -228,3 +222,6 @@ See [Path scripting](Path_scripting.md). }} [Category:User Documentation/cs](Category:User_Documentation/cs.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench/cs diff --git a/wiki/translations/cs/Pivy.md b/wiki/translations/cs/Pivy.md index af6d6e0add..8d6322e246 100644 --- a/wiki/translations/cs/Pivy.md +++ b/wiki/translations/cs/Pivy.md @@ -1,7 +1,4 @@ # Pivy/cs - - - {{TOCright}} ## Introduction @@ -168,3 +165,6 @@ These links provide reference documentation for Coin v3.x. The differences with }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Pivy/cs diff --git a/wiki/translations/cs/Placement.md b/wiki/translations/cs/Placement.md index ceab7c0809..175c2f8d20 100644 --- a/wiki/translations/cs/Placement.md +++ b/wiki/translations/cs/Placement.md @@ -1,7 +1,4 @@ # Placement/cs - - -
## Celkový pohled @@ -370,5 +367,5 @@ To make the placement of \"Sketch\" equal to that of \"Cylinder\", you would ent - This tutorial: [Aeroplane](Aeroplane.md) covers the mechanics of changing an object\'s Placement extensively. - - +--- +[documentation index](../README.md) > Placement/cs diff --git a/wiki/translations/cs/Placement_API.md b/wiki/translations/cs/Placement_API.md index 95ccd13cf6..ac17d60dc2 100644 --- a/wiki/translations/cs/Placement_API.md +++ b/wiki/translations/cs/Placement_API.md @@ -1,5 +1,5 @@ # Placement API/cs - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** In FreeCAD, Placement defines an object\'s position and rotation. The Placement concept is explained in detail here: [Placement](Placement.md). @@ -39,3 +39,6 @@ myObj.Placement = pl [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Placement API/cs diff --git a/wiki/translations/cs/Plot_Module.md b/wiki/translations/cs/Plot_Module.md index 4184e642bd..c8e37cf3d5 100644 --- a/wiki/translations/cs/Plot_Module.md +++ b/wiki/translations/cs/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/cs - - -Plot workbench icon +# Plot workbench icon Plot Module/cs {{TOCright}} @@ -72,3 +69,6 @@ Since Plot module is a layer over matplotlib, you are free to use all matplotlib }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/cs diff --git a/wiki/translations/cs/Plot_Workbench.md b/wiki/translations/cs/Plot_Workbench.md index 245c09cbd6..f1d7327ea8 100644 --- a/wiki/translations/cs/Plot_Workbench.md +++ b/wiki/translations/cs/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/cs 1. REDIRECT [Plot\_Module/cs](Plot_Module/cs.md) + +--- +[documentation index](../README.md) > Plot Workbench/cs diff --git a/wiki/translations/cs/Points_Module.md b/wiki/translations/cs/Points_Module.md index 31aa8b26fa..05d4948092 100644 --- a/wiki/translations/cs/Points_Module.md +++ b/wiki/translations/cs/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/cs 1. REDIRECT [Points\_Workbench/cs](Points_Workbench/cs.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/cs diff --git a/wiki/translations/cs/Points_Workbench.md b/wiki/translations/cs/Points_Workbench.md index cef4a8c7fb..7ad96554ee 100644 --- a/wiki/translations/cs/Points_Workbench.md +++ b/wiki/translations/cs/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/cs - - - - - -Points workbench icon +# Points workbench icon Points Workbench/cs ## Introduction @@ -51,3 +45,6 @@ All Points Workbench tools can be accessed from the **Points** menu. Some tools }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/cs diff --git a/wiki/translations/cs/Power_users_hub.md b/wiki/translations/cs/Power_users_hub.md index c6bf52a046..ba31dcdd2c 100644 --- a/wiki/translations/cs/Power_users_hub.md +++ b/wiki/translations/cs/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/cs - +# Power users hub/cs ------------------------------------------------------------------------ @@ -244,3 +243,6 @@ Na [komunitním portalu](FreeCAD_Community_Portal.md) najdete další projekty z }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/cs diff --git a/wiki/translations/cs/Preferences_Editor.md b/wiki/translations/cs/Preferences_Editor.md index e68cfcd913..355120509f 100644 --- a/wiki/translations/cs/Preferences_Editor.md +++ b/wiki/translations/cs/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/cs - - - - - - {{TOCright}} ## Introduction @@ -716,3 +710,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/cs diff --git a/wiki/translations/cs/Property.md b/wiki/translations/cs/Property.md index ceda7bda9c..e90e26f338 100644 --- a/wiki/translations/cs/Property.md +++ b/wiki/translations/cs/Property.md @@ -1,6 +1,4 @@ # Property/cs - - ## Introduction @@ -122,3 +120,6 @@ They are imported and initialized in `[https://github.com/FreeCAD/FreeCAD/blob/9 }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/cs diff --git a/wiki/translations/cs/Property_editor.md b/wiki/translations/cs/Property_editor.md index 767bf095f8..127613d67e 100644 --- a/wiki/translations/cs/Property_editor.md +++ b/wiki/translations/cs/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/cs - - - - - - {{TOCright}} @@ -298,4 +292,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/cs diff --git a/wiki/translations/cs/PySide.md b/wiki/translations/cs/PySide.md index daaa8c3c4b..f43fa3a20f 100644 --- a/wiki/translations/cs/PySide.md +++ b/wiki/translations/cs/PySide.md @@ -1,7 +1,4 @@ # PySide/cs - - - {{TOCright}} ## Introduction @@ -75,3 +72,6 @@ The PySide documentation refers to the Python-style classes; however, since Qt i }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide/cs diff --git a/wiki/translations/cs/PythonOCC.md b/wiki/translations/cs/PythonOCC.md index e5f17727d9..8b3eaff22a 100644 --- a/wiki/translations/cs/PythonOCC.md +++ b/wiki/translations/cs/PythonOCC.md @@ -1,6 +1,4 @@ # PythonOCC/cs - - ## Description [PythonOCC](PythonOCC.md) is a project that aims at providing the entire range of [OpenCASCADE Technology](OpenCASCADE.md) (OCCT) functions through the [Python](Python.md) module `OCC`. This is a different approach from FreeCAD\'s, where only certain components of OCCT are exposed through the [Part Workbench](Part_Workbench.md). @@ -45,3 +43,6 @@ You can also self compile pythonOCC (see [instructions](https://github.com/tpavi }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PythonOCC/cs diff --git a/wiki/translations/cs/Python_scripting_tutorial.md b/wiki/translations/cs/Python_scripting_tutorial.md index 99ac165fec..f222669f6c 100644 --- a/wiki/translations/cs/Python_scripting_tutorial.md +++ b/wiki/translations/cs/Python_scripting_tutorial.md @@ -1,7 +1,4 @@ # Python scripting tutorial/cs - - - {{TOCright}} ## Introduction @@ -292,3 +289,6 @@ Now you are ready for more in-depth FreeCAD scripting. So head on to the [Power }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python scripting tutorial/cs diff --git a/wiki/translations/cs/Quantity.md b/wiki/translations/cs/Quantity.md index d17209c8a4..eb87e3b487 100644 --- a/wiki/translations/cs/Quantity.md +++ b/wiki/translations/cs/Quantity.md @@ -1,7 +1,4 @@ # Quantity/cs - - -
Veličina je kombinace čísla a jednotky. Je využívána všude ve FreeCADu k práci s parametry a všemi dalšími druhy vstupů a výstupů. @@ -411,3 +408,6 @@ from FreeCAD import Units }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Quantity/cs diff --git a/wiki/translations/cs/Ray_Tracing_Workbench.md b/wiki/translations/cs/Ray_Tracing_Workbench.md index e229f390a6..de7acd1de6 100644 --- a/wiki/translations/cs/Ray_Tracing_Workbench.md +++ b/wiki/translations/cs/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/cs 1. REDIRECT [Raytracing\_Workbench/cs](Raytracing_Workbench/cs.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/cs diff --git a/wiki/translations/cs/Raytracing_Module.md b/wiki/translations/cs/Raytracing_Module.md index 57cd0f40ed..c01b02f689 100644 --- a/wiki/translations/cs/Raytracing_Module.md +++ b/wiki/translations/cs/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/cs 1. REDIRECT [Raytracing\_Workbench/cs](Raytracing_Workbench/cs.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/cs diff --git a/wiki/translations/cs/Raytracing_Workbench.md b/wiki/translations/cs/Raytracing_Workbench.md index b3da767178..a31e95b6c6 100644 --- a/wiki/translations/cs/Raytracing_Workbench.md +++ b/wiki/translations/cs/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/cs - - - **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. Nevertheless, the information in this page is generally useful for the new workbench, as both modules work basically in the same way. @@ -149,3 +146,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/cs diff --git a/wiki/translations/cs/Release_notes_0.14.md b/wiki/translations/cs/Release_notes_0.14.md index 183eae6279..787984e8a8 100644 --- a/wiki/translations/cs/Release_notes_0.14.md +++ b/wiki/translations/cs/Release_notes_0.14.md @@ -1,6 +1,4 @@ # Release notes 0.14/cs - - FreeCAD 0.14 was released on July 1, 2014. This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -232,3 +230,6 @@ Much work has been done on both FreeCAD and [IfcOpenShell](http://www.ifcopenshe The full list of bugfixes and new features can be read on [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.14/cs diff --git a/wiki/translations/cs/Reverse_Engineering_Workbench.md b/wiki/translations/cs/Reverse_Engineering_Workbench.md index 2412b24f52..7f4ca4bed5 100644 --- a/wiki/translations/cs/Reverse_Engineering_Workbench.md +++ b/wiki/translations/cs/Reverse_Engineering_Workbench.md @@ -1,10 +1,4 @@ -# Reverse Engineering Workbench/cs - - - - - -Reverse Engineering workbench icon +# Reverse Engineering workbench icon Reverse Engineering Workbench/cs ## Introduction @@ -29,3 +23,6 @@ Link to appropriate threads discussing this workbench [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench/cs diff --git a/wiki/translations/cs/Robot_Module.md b/wiki/translations/cs/Robot_Module.md index fd1980b4d6..3dc7109ebb 100644 --- a/wiki/translations/cs/Robot_Module.md +++ b/wiki/translations/cs/Robot_Module.md @@ -1,2 +1,5 @@ # Robot Module/cs 1. REDIRECT [Robot Workbench/cs](Robot_Workbench/cs.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Module/cs diff --git a/wiki/translations/cs/Robot_Workbench.md b/wiki/translations/cs/Robot_Workbench.md index 35cbca4a0f..c16fa183b7 100644 --- a/wiki/translations/cs/Robot_Workbench.md +++ b/wiki/translations/cs/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/cs - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. @@ -99,3 +93,6 @@ See the [Robot API example](Robot_API_example.md) for a description of the funct }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/cs diff --git a/wiki/translations/cs/Scenegraph.md b/wiki/translations/cs/Scenegraph.md index cf62b39729..310d88e61c 100644 --- a/wiki/translations/cs/Scenegraph.md +++ b/wiki/translations/cs/Scenegraph.md @@ -1,7 +1,4 @@ # Scenegraph/cs - - - {{TOCright}} ## Introduction @@ -73,3 +70,6 @@ See [Coin3d snippets](Coin3d_snippets.md) courtesy of MariwanJ\'s research for t }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scenegraph/cs diff --git a/wiki/translations/cs/Screenshots.md b/wiki/translations/cs/Screenshots.md index 426c3e1b1c..67a4b0b1c2 100644 --- a/wiki/translations/cs/Screenshots.md +++ b/wiki/translations/cs/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/cs - {{TOCright}} +{{TOCright}} Here are a few screenshots showing different parts of FreeCAD. They are not ordered in any particular timeline, so the images may differ from your actual version. See more screenshots submitted by FreeCAD users on the [screenshot forum thread](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) and on the [\"Show your project here!\" Users Showcase forum part](http://forum.freecadweb.org/viewforum.php?f=24). @@ -202,3 +202,6 @@ FreeCAD runs in console mode (without gui) Dialog to save a picture with arbitrary sizes. [Category:User Documentation/cs](Category:User_Documentation/cs.md) [Category:Screenshots/cs](Category:Screenshots/cs.md) + +--- +[documentation index](../README.md) > Screenshots/cs diff --git a/wiki/translations/cs/Scripted_objects.md b/wiki/translations/cs/Scripted_objects.md index 8b9dad6fe0..58f57e337f 100644 --- a/wiki/translations/cs/Scripted_objects.md +++ b/wiki/translations/cs/Scripted_objects.md @@ -1,7 +1,4 @@ # Scripted objects/cs - - - {{TOCright}} ## Introduction @@ -941,3 +938,6 @@ In addition to the examples presented here have a look at FreeCAD source code [s }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects/cs diff --git a/wiki/translations/cs/Scripting.md b/wiki/translations/cs/Scripting.md index 4b23b12ba3..821d26ae5e 100644 --- a/wiki/translations/cs/Scripting.md +++ b/wiki/translations/cs/Scripting.md @@ -1,2 +1,5 @@ # Scripting/cs 1. REDIRECT [Power users hub/cs](Power_users_hub/cs.md) + +--- +[documentation index](../README.md) > Scripting/cs diff --git a/wiki/translations/cs/Scripting_and_macros.md b/wiki/translations/cs/Scripting_and_macros.md index dfc9161567..d3bb3bb9d6 100644 --- a/wiki/translations/cs/Scripting_and_macros.md +++ b/wiki/translations/cs/Scripting_and_macros.md @@ -1,9 +1,4 @@ # Scripting and macros/cs - - - - - ## Overview of Python scripting pages - Python related pages in the Manual: @@ -96,3 +91,6 @@ }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripting and macros/cs diff --git a/wiki/translations/cs/Scripting_examples.md b/wiki/translations/cs/Scripting_examples.md index 9f8d9cb81f..c8ed74d0b7 100644 --- a/wiki/translations/cs/Scripting_examples.md +++ b/wiki/translations/cs/Scripting_examples.md @@ -1,2 +1,5 @@ # Scripting examples/cs 1. REDIRECT [Scripting\_and\_macros/cs](Scripting_and_macros/cs.md) + +--- +[documentation index](../README.md) > Scripting examples/cs diff --git a/wiki/translations/cs/Ship_Workbench.md b/wiki/translations/cs/Ship_Workbench.md index 16ef25835b..9a18fbe739 100644 --- a/wiki/translations/cs/Ship_Workbench.md +++ b/wiki/translations/cs/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/cs - - -Ship workbench icon +# Ship workbench icon Ship Workbench/cs {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/cs diff --git a/wiki/translations/cs/Sketcher_CarbonCopy.md b/wiki/translations/cs/Sketcher_CarbonCopy.md index 77e6a246f7..56df233d16 100644 --- a/wiki/translations/cs/Sketcher_CarbonCopy.md +++ b/wiki/translations/cs/Sketcher_CarbonCopy.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Sketcher CarbonCopy/cs +
@@ -41,4 +43,7 @@ Dimensional constraints which exist before the copy function remain linked to th {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CarbonCopy/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainAngle.md b/wiki/translations/cs/Sketcher_ConstrainAngle.md index 1d68ad9c1d..c1896433f6 100644 --- a/wiki/translations/cs/Sketcher_ConstrainAngle.md +++ b/wiki/translations/cs/Sketcher_ConstrainAngle.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainAngle/cs --- - GuiCommand:/cs Name:Constraint InternalAngle Name/cs:Constraint InternalAngle Workbenches:[PartDesign](Sketcher_Workbench/cs___Sketcher]],_[[PartDesign_Workbench/cs.md)|Shortcut:A MenuLocation:Sketch → Sketcher constraints → Constrain angle SeeAlso:[Constraint Length](Constraint_Length/cs.md), [Constraint Perpendicular](Constraint_Perpendicular/cs.md)--- @@ -101,4 +102,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainAngle/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainCoincident.md b/wiki/translations/cs/Sketcher_ConstrainCoincident.md index a9f7408ebb..9bdb417211 100644 --- a/wiki/translations/cs/Sketcher_ConstrainCoincident.md +++ b/wiki/translations/cs/Sketcher_ConstrainCoincident.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint Lock](Sketcher_ConstrainLock/cs.md), [Vazba Bod na objekt](Sketcher_ConstrainPointOnObject/cs.md) --- +# Sketcher ConstrainCoincident/cs +
@@ -99,3 +101,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/cs](Category:Sketcher/cs.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainCoincident/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainDistance.md b/wiki/translations/cs/Sketcher_ConstrainDistance.md index 58c8402895..a5efd8497f 100644 --- a/wiki/translations/cs/Sketcher_ConstrainDistance.md +++ b/wiki/translations/cs/Sketcher_ConstrainDistance.md @@ -8,6 +8,8 @@ SeeAlso:[Constrain horizontal distance](Sketcher_ConstrainDistanceX/cs.md), [Constrain vertical distance](Sketcher_ConstrainDistanceY/cs.md) --- +# Sketcher ConstrainDistance/cs +
@@ -84,4 +86,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistance/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainDistanceX.md b/wiki/translations/cs/Sketcher_ConstrainDistanceX.md index 34fcdfd258..283590e744 100644 --- a/wiki/translations/cs/Sketcher_ConstrainDistanceX.md +++ b/wiki/translations/cs/Sketcher_ConstrainDistanceX.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint Length](Sketcher_ConstrainDistance/cs.md), [Constraint VerticalDistance](Sketcher_ConstrainDistanceY/cs.md) --- +# Sketcher ConstrainDistanceX/cs +
@@ -79,4 +81,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceX/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainDistanceY.md b/wiki/translations/cs/Sketcher_ConstrainDistanceY.md index c098160d3c..200cb52655 100644 --- a/wiki/translations/cs/Sketcher_ConstrainDistanceY.md +++ b/wiki/translations/cs/Sketcher_ConstrainDistanceY.md @@ -8,6 +8,8 @@ SeeAlso:[Vazba vodorovné vzdálenosti](Sketcher_ConstrainDistanceX/cs.md), [Vazba délky](Sketcher_ConstrainDistance/cs.md) --- +# Sketcher ConstrainDistanceY/cs +
@@ -73,4 +75,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceY/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainEqual.md b/wiki/translations/cs/Sketcher_ConstrainEqual.md index f8210ada8a..7c11d49e8d 100644 --- a/wiki/translations/cs/Sketcher_ConstrainEqual.md +++ b/wiki/translations/cs/Sketcher_ConstrainEqual.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainEqual/cs --- - GuiCommand:/cs Name:Constraint EqualLength Name/cs:Constraint EqualLength Workbenches:[PartDesign](Sketcher_Workbench/cs___Sketcher]],_[[PartDesign_Workbench/cs.md)|MenuLocation:Sketch → Sketcher constraints → Constrain equal Shortcut:E SeeAlso:[Constraint Radius](Constraint_Radius/cs.md)--- @@ -92,4 +93,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainEqual/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainHorizontal.md b/wiki/translations/cs/Sketcher_ConstrainHorizontal.md index eeadd2a5b5..83f12a52c9 100644 --- a/wiki/translations/cs/Sketcher_ConstrainHorizontal.md +++ b/wiki/translations/cs/Sketcher_ConstrainHorizontal.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainHorizontal/cs --- - GuiCommand:/cs Name:Constraint Horizontal Name/cs:Constraint Horizontal Workbenches:[PartDesign](Sketcher_Workbench/cs___Sketcher]],_[[PartDesign_Workbench/cs.md)|MenuLocation:Sketch → Sketcher constraints → Constrain horizontally SeeAlso:[Constraint Vertical](Constraint_Vertical/cs.md)--- @@ -58,4 +59,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainHorizontal/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainLock.md b/wiki/translations/cs/Sketcher_ConstrainLock.md index e7e32461f8..47aad32b00 100644 --- a/wiki/translations/cs/Sketcher_ConstrainLock.md +++ b/wiki/translations/cs/Sketcher_ConstrainLock.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainLock/cs --- - GuiCommand:/cs Name:Sketcher ConstrainLock Name/cs:Sketcher ConstrainLock Workbenches:[PartDesign](Sketcher_Workbench/cs___Sketcher]],_[[PartDesign_Workbench/cs.md)|MenuLocation:Sketch → Sketcher constraints → Constrain lock SeeAlso:[Constraint Coincident](Constraint_PointOnPoint/cs.md)--- @@ -59,4 +60,7 @@ The [Loc {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainLock/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainParallel.md b/wiki/translations/cs/Sketcher_ConstrainParallel.md index c4f867eef7..c6f4c7b96a 100644 --- a/wiki/translations/cs/Sketcher_ConstrainParallel.md +++ b/wiki/translations/cs/Sketcher_ConstrainParallel.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainParallel/cs --- - GuiCommand:/cs Name:Constraint Parallel Name/cs:Constraint Parallel Workbenches:[PartDesign](Sketcher_Workbench/cs___Sketcher]],_[[PartDesign_Workbench/cs.md)|MenuLocation:Sketch → Sketcher constraints → Constrain parallel SeeAlso:[Constraint Vertical](Sketcher_ConstrainVertical/cs.md), [Constraint Horizontal](Sketcher_ConstrainHorizontal/cs.md)--- @@ -89,4 +90,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainParallel/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainPerpendicular.md b/wiki/translations/cs/Sketcher_ConstrainPerpendicular.md index c698a1ef1a..250dad5bc1 100644 --- a/wiki/translations/cs/Sketcher_ConstrainPerpendicular.md +++ b/wiki/translations/cs/Sketcher_ConstrainPerpendicular.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainPerpendicular/cs --- - GuiCommand:/cs Name:Constraint Perpendicular Name/cs:Constraint Perpendicular Workbenches:[Návrh dílu](Sketcher_Workbench/cs___Náčrt]],_[[PartDesign_Workbench/cs.md)|MenuLocation:Sketch → Sketcher constraints → Constrain perpendicular Shortcut:N SeeAlso:[Vazba úhlu](Constraint_InternalAngle/cs.md)--- @@ -108,4 +109,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPerpendicular/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainPointOnObject.md b/wiki/translations/cs/Sketcher_ConstrainPointOnObject.md index 90800ed8b8..156b94cc99 100644 --- a/wiki/translations/cs/Sketcher_ConstrainPointOnObject.md +++ b/wiki/translations/cs/Sketcher_ConstrainPointOnObject.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainPointOnObject/cs --- - GuiCommand:/cs Name:Constraint PointOnObject Name/cs:Constraint PointOnObject Workbenches:[Návrh dílu](Sketcher_Workbench/cs___Náčrt]],_[[PartDesign_Workbench/cs.md)|MenuLocation:Sketch → Sketcher constraints → Constrain point onto object SeeAlso:[Vazba totožnosti](Constraint_PointOnPoint/cs.md)--- @@ -54,4 +55,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains how to identify th {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPointOnObject/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainRadius.md b/wiki/translations/cs/Sketcher_ConstrainRadius.md index 61bd014d0c..4d412ac6eb 100644 --- a/wiki/translations/cs/Sketcher_ConstrainRadius.md +++ b/wiki/translations/cs/Sketcher_ConstrainRadius.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainRadius/cs --- - GuiCommand:/cs Name:Constraint Radius Name/cs:Constraint Radius Workbenches:[Návrh dílu](Sketcher_Workbench/cs___Náčrt]],_[[PartDesign_Workbench/cs.md)|MenuLocation:Sketch → Sketcher constraints → Constrain radius SeeAlso:[Vazba délky](Sketcher_ConstrainDistance/cs.md), [Vazba vodorovnosti](Sketcher_ConstrainDistanceX/cs.md), [Vazba svislosti](Sketcher_ConstrainDistanceY/cs.md)--- @@ -71,4 +72,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadius/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainSymmetric.md b/wiki/translations/cs/Sketcher_ConstrainSymmetric.md index d8cca72d9a..d89988f04e 100644 --- a/wiki/translations/cs/Sketcher_ConstrainSymmetric.md +++ b/wiki/translations/cs/Sketcher_ConstrainSymmetric.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainSymmetric/cs --- - GuiCommand:/cs Name:Constraint Symmetric Name/cs:Constraint Symmetric Workbenches:[Návrh dílu](Sketcher_Workbench/cs___Náčrt]],_[[PartDesign_Workbench/cs.md)|MenuLocation:Sketch → Sketcher constraints → Constrain symmetrical SeeAlso:[Vazba rovnoběžnosti](Constraint_Parallel/cs.md)--- @@ -78,4 +79,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSymmetric/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainTangent.md b/wiki/translations/cs/Sketcher_ConstrainTangent.md index 7c52f612f6..6b3d6798b3 100644 --- a/wiki/translations/cs/Sketcher_ConstrainTangent.md +++ b/wiki/translations/cs/Sketcher_ConstrainTangent.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint point on object](Sketcher_ConstrainPointOnObject/cs.md) --- +# Sketcher ConstrainTangent/cs +
@@ -126,4 +128,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainTangent/cs diff --git a/wiki/translations/cs/Sketcher_ConstrainVertical.md b/wiki/translations/cs/Sketcher_ConstrainVertical.md index 88c8cd0003..a9ac1dd172 100644 --- a/wiki/translations/cs/Sketcher_ConstrainVertical.md +++ b/wiki/translations/cs/Sketcher_ConstrainVertical.md @@ -8,6 +8,8 @@ SeeAlso:[Vazba vodorovnosti](Sketcher_ConstrainHorizontal/cs.md) --- +# Sketcher ConstrainVertical/cs +
@@ -56,3 +58,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/cs](Category:Sketcher/cs.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainVertical/cs diff --git a/wiki/translations/cs/Sketcher_CreateArc.md b/wiki/translations/cs/Sketcher_CreateArc.md index 523c2a2d9f..734e796501 100644 --- a/wiki/translations/cs/Sketcher_CreateArc.md +++ b/wiki/translations/cs/Sketcher_CreateArc.md @@ -7,6 +7,8 @@ SeeAlso:[Skicář Kružnice](Sketcher_CompCreateCircle/cs.md) --- +# Sketcher CreateArc/cs +
@@ -35,4 +37,7 @@ Po spuštění nástroje se ukazatel myši změní na bílý křížek s červen {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateArc/cs diff --git a/wiki/translations/cs/Sketcher_CreateCircle.md b/wiki/translations/cs/Sketcher_CreateCircle.md index 1480162bce..82ef8fa289 100644 --- a/wiki/translations/cs/Sketcher_CreateCircle.md +++ b/wiki/translations/cs/Sketcher_CreateCircle.md @@ -1,3 +1,4 @@ +# Sketcher CreateCircle/cs --- - GuiCommand:/cs Name:Sketcher CreateCircle Name/cs:Skicář Kružnice Workbenches:[MenuLocation:Náčrt → Skicář Konstrukce → Vytvořit kružnici SeeAlso:[[Sketcher CompCreateArc/cs|Skicář Oblouk](Sketcher_Workbench/cs___Skicář]].md)--- @@ -27,4 +28,7 @@ Tento nástroj nakreslí kružnici zadáním dvou bodů: střed a bod na polomě {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateCircle/cs diff --git a/wiki/translations/cs/Sketcher_CreateFillet.md b/wiki/translations/cs/Sketcher_CreateFillet.md index 5af036cbee..1fde984863 100644 --- a/wiki/translations/cs/Sketcher_CreateFillet.md +++ b/wiki/translations/cs/Sketcher_CreateFillet.md @@ -1,3 +1,4 @@ +# Sketcher CreateFillet/cs --- - GuiCommand:/cs Name:Sketcher CreateFillet Name/cs: Skicář Zaoblení Workbenches:[[Sketcher Workbench/cs Skicář]]|MenuLocation:Náčrt → Skicář Konstrukce → Vytvořit zaoblení Shortcut:F SeeAlso:--- @@ -44,4 +45,7 @@ Při spuštění nástroje se ukazatel myši změní na bílý křížek s červ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateFillet/cs diff --git a/wiki/translations/cs/Sketcher_CreateLine.md b/wiki/translations/cs/Sketcher_CreateLine.md index d770c72b56..70a054b4a7 100644 --- a/wiki/translations/cs/Sketcher_CreateLine.md +++ b/wiki/translations/cs/Sketcher_CreateLine.md @@ -1,3 +1,4 @@ +# Sketcher CreateLine/cs --- - GuiCommand:/cs Name:Sketcher CreateLine Name/cs:Skicář Přímka Workbenches:[MenuLocation:Náčrt → Skicář Konstrukce → Vytvořit přímku SeeAlso:[[Sketcher CreatePolyline/cs|Skicář Lomená čára](Sketcher_Workbench/cs___Skicář]].md)--- @@ -29,4 +30,7 @@ The created line object starts and ends at the given points, but the line is inf {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateLine/cs diff --git a/wiki/translations/cs/Sketcher_CreatePoint.md b/wiki/translations/cs/Sketcher_CreatePoint.md index 8a6f2e1c00..b3282fe52f 100644 --- a/wiki/translations/cs/Sketcher_CreatePoint.md +++ b/wiki/translations/cs/Sketcher_CreatePoint.md @@ -1,3 +1,4 @@ +# Sketcher CreatePoint/cs --- - GuiCommand:/cs Name:Sketcher CreatePoint Name/cs: Skicář Bod Workbenches:[[Sketcher Workbench/cs Skicář]]|MenuLocation:Náčrt → Skicář Konstrukce → Vytvořit bod SeeAlso:--- @@ -43,4 +44,7 @@ The created point is not available outside of the sketch. In case a point is nee {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreatePoint/cs diff --git a/wiki/translations/cs/Sketcher_CreatePolyline.md b/wiki/translations/cs/Sketcher_CreatePolyline.md index f906e5a4c7..fea5290e2a 100644 --- a/wiki/translations/cs/Sketcher_CreatePolyline.md +++ b/wiki/translations/cs/Sketcher_CreatePolyline.md @@ -1,3 +1,4 @@ +# Sketcher CreatePolyline/cs --- - GuiCommand:/cs Name:Sketcher CreatePolyline Name/cs:Skicář Lomená čára Workbenches:[MenuLocation:Náčrt → Skicář Konstrukce → Vytvořit Lomenou čáru SeeAlso:[[Sketcher CreateLine/cs|Skicář Přímka](Sketcher_Workbench/cs___Skicář]].md)--- @@ -50,4 +51,7 @@ Nástroj má vícenásobný mód, který může bý přepnut klávesou **M**. Na {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreatePolyline/cs diff --git a/wiki/translations/cs/Sketcher_CreateRectangle.md b/wiki/translations/cs/Sketcher_CreateRectangle.md index 07a313cb66..8f245363e3 100644 --- a/wiki/translations/cs/Sketcher_CreateRectangle.md +++ b/wiki/translations/cs/Sketcher_CreateRectangle.md @@ -1,3 +1,4 @@ +# Sketcher CreateRectangle/cs --- - GuiCommand:/cs Name:Sketcher CreateRectangle Name/cs:Skicář Obdélník Workbenches:[Shortcut:R MenuLocation:Náčrt → Skicář Konstrukce → Vytvořit Obdélník SeeAlso:[[Sketcher CreatePolyline/cs|Skicář Lomená čára](Sketcher_Workbench/cs___Skicář]].md)--- @@ -41,4 +42,7 @@ To define a rectangle via a center point and an edge point, use the [Centered re {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateRectangle/cs diff --git a/wiki/translations/cs/Sketcher_External.md b/wiki/translations/cs/Sketcher_External.md index 1c63450941..9826ad029e 100644 --- a/wiki/translations/cs/Sketcher_External.md +++ b/wiki/translations/cs/Sketcher_External.md @@ -1,3 +1,4 @@ +# Sketcher External/cs --- - GuiCommand:/cs Name:Sketcher_External Name/cs:Skicář Povrchový Náčrt Workbenches:[Návrh dílu](Sketcher_Workbench/cs___Skicář]],_[[PartDesign_Workbench/cs.md)|Shortcut:E MenuLocation:Náčrt → Skicář Konstrukce → Povrchový náčrt SeeAlso:[Konstrukční mód](Sketcher_ConstructionMode/cs.md)--- @@ -140,3 +141,6 @@ Při uzavření skicáře nejsou přetažené konstrukce viditelné. }} [Category:Sketcher/cs](Category:Sketcher/cs.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher External/cs diff --git a/wiki/translations/cs/Sketcher_LeaveSketch.md b/wiki/translations/cs/Sketcher_LeaveSketch.md index 4b27a6eaa6..4b1c5fcdf1 100644 --- a/wiki/translations/cs/Sketcher_LeaveSketch.md +++ b/wiki/translations/cs/Sketcher_LeaveSketch.md @@ -1,3 +1,4 @@ +# Sketcher LeaveSketch/cs --- - GuiCommand:/cs Name:Sketcher LeaveSketch Name/cs:Sketcher LeaveSketch Workbenches:[PartDesign](Sketcher_Workbench/cs___Sketcher]],_[[PartDesign_Workbench/cs.md)|MenuLocation:Sketch → Leave sketch|--- @@ -38,3 +39,6 @@ The **Leave sketch** command exits the sketch editing mode and frees up the [Tas }} [Category:Sketcher/cs](Category:Sketcher/cs.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher LeaveSketch/cs diff --git a/wiki/translations/cs/Sketcher_MapSketch.md b/wiki/translations/cs/Sketcher_MapSketch.md index 3cf30a30a8..ce21ec4ad3 100644 --- a/wiki/translations/cs/Sketcher_MapSketch.md +++ b/wiki/translations/cs/Sketcher_MapSketch.md @@ -1,3 +1,4 @@ +# Sketcher MapSketch/cs --- - GuiCommand:/cs Name:Sketcher_MapSketch Name/cs:Skicář Vyznač náčrt Vytvoří náčrt na ploše|Workbenches:[Návrh dílu](Sketcher_Workbench/cs___Skicář]],_[[PartDesign_Workbench/cs.md)|MenuLocation:Návrh dílu → Vytvoř náčrt na ploše SeeAlso:[Vytvoř náčrt](Sketcher_NewSketch/cs.md)--- @@ -70,3 +71,6 @@ Now we select the top face of Pad and then select the Map A Sketch To A Face too }} [Category:Sketcher/cs](Category:Sketcher/cs.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MapSketch/cs diff --git a/wiki/translations/cs/Sketcher_Module.md b/wiki/translations/cs/Sketcher_Module.md index 4f5254ee48..c1b5643ac6 100644 --- a/wiki/translations/cs/Sketcher_Module.md +++ b/wiki/translations/cs/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/cs 1. REDIRECT [Sketcher Workbench/cs](Sketcher_Workbench/cs.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/cs diff --git a/wiki/translations/cs/Sketcher_NewSketch.md b/wiki/translations/cs/Sketcher_NewSketch.md index 9d8eca0450..7b3cc8a706 100644 --- a/wiki/translations/cs/Sketcher_NewSketch.md +++ b/wiki/translations/cs/Sketcher_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher MapSketch](Sketcher_MapSketch/cs.md), [Sketcher Reorient](Sketcher_Reorient/cs.md) --- +# Sketcher NewSketch/cs +
@@ -46,4 +48,7 @@ The sketch can be moved in the [3D view](3D_view.md) using [Placement](Placement {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher NewSketch/cs diff --git a/wiki/translations/cs/Sketcher_ReorientSketch.md b/wiki/translations/cs/Sketcher_ReorientSketch.md index f0bf9bf5f5..783bebdad1 100644 --- a/wiki/translations/cs/Sketcher_ReorientSketch.md +++ b/wiki/translations/cs/Sketcher_ReorientSketch.md @@ -8,6 +8,8 @@ SeeAlso:[Vyznač náčrt](Sketcher_MapSketch/cs.md), [Nový náčrt](Sketcher_NewSketch/cs.md) --- +# Sketcher ReorientSketch/cs +
@@ -35,4 +37,7 @@ Allows you to detach a sketch from a face and attach it to one of the main plane {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ReorientSketch/cs diff --git a/wiki/translations/cs/Sketcher_ToggleConstruction.md b/wiki/translations/cs/Sketcher_ToggleConstruction.md index bcf02243e6..7a97290cb7 100644 --- a/wiki/translations/cs/Sketcher_ToggleConstruction.md +++ b/wiki/translations/cs/Sketcher_ToggleConstruction.md @@ -7,6 +7,8 @@ MenuLocation:Náčrt → Skicář Konstrukce → Změna konst.módu --- +# Sketcher ToggleConstruction/cs + @@ -78,3 +80,6 @@ and once you ** [lea }} [Category:Sketcher/cs](Category:Sketcher/cs.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleConstruction/cs diff --git a/wiki/translations/cs/Sketcher_Trimming.md b/wiki/translations/cs/Sketcher_Trimming.md index 5a2cc7c34a..28e6711408 100644 --- a/wiki/translations/cs/Sketcher_Trimming.md +++ b/wiki/translations/cs/Sketcher_Trimming.md @@ -8,6 +8,8 @@ SeeAlso:[Prodloužit hranu](Sketcher_Extend/cs.md) --- +# Sketcher Trimming/cs + @@ -54,4 +56,7 @@ This tool trims an edge to the nearest overlapping edge. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Trimming/cs diff --git a/wiki/translations/cs/Sketcher_ViewSketch.md b/wiki/translations/cs/Sketcher_ViewSketch.md index 4133970920..f69d63e371 100644 --- a/wiki/translations/cs/Sketcher_ViewSketch.md +++ b/wiki/translations/cs/Sketcher_ViewSketch.md @@ -1,3 +1,4 @@ +# Sketcher ViewSketch/cs --- - GuiCommand:/cs Name:Sketcher ViewSketch Name/cs:Skicář Pohled náčrtu Workbenches:[Návrh dílu](Sketcher_Workbench/cs___Skicář]],_[[PartDesign_Workbench/cs.md)|MenuLocation:Náčrt → Pohled náčrtu--- @@ -33,4 +34,7 @@ Když je náčrt v editačním módu, buď {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSketch/cs diff --git a/wiki/translations/cs/Sketcher_Workbench.md b/wiki/translations/cs/Sketcher_Workbench.md index 554ccaca72..dd1131ef00 100644 --- a/wiki/translations/cs/Sketcher_Workbench.md +++ b/wiki/translations/cs/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/cs - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/cs {{TOCright}} @@ -424,3 +418,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [Category:User Documentation/cs](Category:User_Documentation/cs.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/cs diff --git a/wiki/translations/cs/Spinning.md b/wiki/translations/cs/Spinning.md index 19e0dcdd0c..7229b07382 100644 --- a/wiki/translations/cs/Spinning.md +++ b/wiki/translations/cs/Spinning.md @@ -1,2 +1,5 @@ # Spinning/cs 1. REDIRECT [Std\_DemoMode](Std_DemoMode.md) + +--- +[documentation index](../README.md) > Spinning/cs diff --git a/wiki/translations/cs/Spreadsheet_Controller.md b/wiki/translations/cs/Spreadsheet_Controller.md index 413531b8e7..ef7d35719d 100644 --- a/wiki/translations/cs/Spreadsheet_Controller.md +++ b/wiki/translations/cs/Spreadsheet_Controller.md @@ -1,2 +1,5 @@ # Spreadsheet Controller/cs 1. REDIRECT [Arch\_Schedule](Arch_Schedule.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Controller/cs diff --git a/wiki/translations/cs/Spreadsheet_Create.md b/wiki/translations/cs/Spreadsheet_Create.md index ae8ad17464..fd1a3a9ad2 100644 --- a/wiki/translations/cs/Spreadsheet_Create.md +++ b/wiki/translations/cs/Spreadsheet_Create.md @@ -1,2 +1,5 @@ # Spreadsheet Create/cs 1. REDIRECT [Spreadsheet\_CreateSheet](Spreadsheet_CreateSheet.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Create/cs diff --git a/wiki/translations/cs/Spreadsheet_Module.md b/wiki/translations/cs/Spreadsheet_Module.md index 7e02bcfaf6..5416a6816f 100644 --- a/wiki/translations/cs/Spreadsheet_Module.md +++ b/wiki/translations/cs/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module/cs 1. REDIRECT [Spreadsheet Workbench/cs](Spreadsheet_Workbench/cs.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module/cs diff --git a/wiki/translations/cs/Spreadsheet_Workbench.md b/wiki/translations/cs/Spreadsheet_Workbench.md index 79f07696d2..e14cb13ef5 100644 --- a/wiki/translations/cs/Spreadsheet_Workbench.md +++ b/wiki/translations/cs/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/cs - {{Page_in_progress}} @@ -235,3 +234,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/cs diff --git a/wiki/translations/cs/Start_Workbench.md b/wiki/translations/cs/Start_Workbench.md index e8e515ea4b..ea8ab1a844 100644 --- a/wiki/translations/cs/Start_Workbench.md +++ b/wiki/translations/cs/Start_Workbench.md @@ -1,10 +1,4 @@ -# Start Workbench/cs - - - - - -Start workbench icon +# Start workbench icon Start Workbench/cs The [Start Workbench](Start_Workbench.md) is not really a workbench, it\'s just the page that is presented when you open FreeCAD with no document loaded. @@ -26,3 +20,6 @@ From this interface you can see useful information and jump to recently opened f [Category:User Documentation/cs](Category:User_Documentation/cs.md) [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench/cs diff --git a/wiki/translations/cs/Start_up_and_Configuration.md b/wiki/translations/cs/Start_up_and_Configuration.md index 76437792d3..efd988c0da 100644 --- a/wiki/translations/cs/Start_up_and_Configuration.md +++ b/wiki/translations/cs/Start_up_and_Configuration.md @@ -1,10 +1,4 @@ # Start up and Configuration/cs - - - - - - {{TOCright}} ## Overview @@ -417,3 +411,6 @@ Now double-click the batch file to start FreeCAD. ([see](https://forum.freecadwe [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start up and Configuration/cs diff --git a/wiki/translations/cs/Std_Copy.md b/wiki/translations/cs/Std_Copy.md index cebff62f5d..bfd66d045b 100644 --- a/wiki/translations/cs/Std_Copy.md +++ b/wiki/translations/cs/Std_Copy.md @@ -1,3 +1,4 @@ +# Std Copy/cs --- - GuiCommand:/cs Name:Std_Copy Name/cs:Std Kopírovat MenuLocation:[Shortcut:Ctrl+C Workbenches:Všechny SeeAlso:[[Std_Paste/cs|Vložit](Std_Edit_Menu/cs___Úpravy]]_→_Kopírovat.md), [Duplicate Selection](Std_DuplicateSelection/cs.md)--- @@ -40,4 +41,7 @@ Příkaz Kopírovat je součástí kopírování objektů [Document](Document_st {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Copy/cs diff --git a/wiki/translations/cs/Std_DuplicateSelection.md b/wiki/translations/cs/Std_DuplicateSelection.md index 82f1b7cf84..e3c22c127d 100644 --- a/wiki/translations/cs/Std_DuplicateSelection.md +++ b/wiki/translations/cs/Std_DuplicateSelection.md @@ -1,3 +1,4 @@ +# Std DuplicateSelection/cs --- - GuiCommand:/cs Name:Std_DuplicateSelection Name/cs:Std Duplikovat výběr MenuLocation:Úpravy → Kopírovat Shortcut: Workbenches:All SeeAlso:[Kopírovat](Std_Copy/cs.md), [Vložit](Std_Paste/cs.md)--- @@ -51,4 +52,7 @@ Příkaz Duplikovat výběr je zkratka pro příkazy Kopírovat+Vložit. Vytvá {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DuplicateSelection/cs diff --git a/wiki/translations/cs/Std_Edit.md b/wiki/translations/cs/Std_Edit.md index 468f416918..d024df682b 100644 --- a/wiki/translations/cs/Std_Edit.md +++ b/wiki/translations/cs/Std_Edit.md @@ -1,3 +1,4 @@ +# Std Edit/cs --- - GuiCommand:/cs Name:Std Edit Name/cs:Std Edit MenuLocation:[[Std_Edit_Menu/cs Edit]] → Toggle Editmode|Workbenches:All SeeAlso:...--- @@ -59,4 +60,7 @@ FreeCADGui.ActiveDocument.resetEdit() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Edit/cs diff --git a/wiki/translations/cs/Std_Edit_Menu.md b/wiki/translations/cs/Std_Edit_Menu.md index 9fbef8acaa..30e6cd7409 100644 --- a/wiki/translations/cs/Std_Edit_Menu.md +++ b/wiki/translations/cs/Std_Edit_Menu.md @@ -1,10 +1,4 @@ -# Std Edit Menu/cs - - - - - -Std Base icon +# Std Base icon Std Edit Menu/cs {{TOCright}} @@ -81,3 +75,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Edit Menu/cs diff --git a/wiki/translations/cs/Std_InterfaceCustomization.md b/wiki/translations/cs/Std_InterfaceCustomization.md index c44203be3f..53430ac7a8 100644 --- a/wiki/translations/cs/Std_InterfaceCustomization.md +++ b/wiki/translations/cs/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/cs 1. REDIRECT [Interface\_Customization/cs](Interface_Customization/cs.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/cs diff --git a/wiki/translations/cs/Std_Paste.md b/wiki/translations/cs/Std_Paste.md index c0e56bb0b8..9b4d29ee30 100644 --- a/wiki/translations/cs/Std_Paste.md +++ b/wiki/translations/cs/Std_Paste.md @@ -1,3 +1,4 @@ +# Std Paste/cs --- - GuiCommand:/cs Name:Std_Paste Name/cs:Std_Paste MenuLocation:Edit → Paste Shortcut:Ctrl+V Workbenches:All SeeAlso:[Copy](Std_Copy/cs.md), [Duplicate Selection](Std_DuplicateSelection/cs.md)--- @@ -33,4 +34,7 @@ The **Std Paste** command pastes objects from the Clipboard into the active docu {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Paste/cs diff --git a/wiki/translations/cs/Std_Tools_Menu.md b/wiki/translations/cs/Std_Tools_Menu.md index 820b3c68a4..001061ebd0 100644 --- a/wiki/translations/cs/Std_Tools_Menu.md +++ b/wiki/translations/cs/Std_Tools_Menu.md @@ -1,10 +1,4 @@ -# Std Tools Menu/cs - - - - - -Std Base icon +# Std Base icon Std Tools Menu/cs {{TOCright}} @@ -65,3 +59,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Tools Menu/cs diff --git a/wiki/translations/cs/Std_ViewScreenShot.md b/wiki/translations/cs/Std_ViewScreenShot.md index 2ba2a5a6c2..241bc91429 100644 --- a/wiki/translations/cs/Std_ViewScreenShot.md +++ b/wiki/translations/cs/Std_ViewScreenShot.md @@ -1,3 +1,4 @@ +# Std ViewScreenShot/cs --- - GuiCommand:/cs Name:Std ViewScreenShot Name/cs:ViewScreenShot MenuLocation:[[Std Tools Menu/cs Tools]] → Save picture...|Workbenches:All SeeAlso:...--- @@ -121,4 +122,7 @@ App.closeDocument(App.ActiveDocument.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewScreenShot/cs diff --git a/wiki/translations/cs/Surface_Module.md b/wiki/translations/cs/Surface_Module.md index 07fce3a3d9..5079a5d308 100644 --- a/wiki/translations/cs/Surface_Module.md +++ b/wiki/translations/cs/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/cs 1. REDIRECT [Surface\_Workbench/cs](Surface_Workbench/cs.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/cs diff --git a/wiki/translations/cs/Surface_Workbench.md b/wiki/translations/cs/Surface_Workbench.md index 91da4d89c1..c866e5d436 100644 --- a/wiki/translations/cs/Surface_Workbench.md +++ b/wiki/translations/cs/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/cs - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/cs {{TOCright}} @@ -57,3 +51,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/cs diff --git a/wiki/translations/cs/Tasks_Placement.md b/wiki/translations/cs/Tasks_Placement.md index da88d37ec6..bc6875bff6 100644 --- a/wiki/translations/cs/Tasks_Placement.md +++ b/wiki/translations/cs/Tasks_Placement.md @@ -1,6 +1,4 @@ # Tasks Placement/cs - - ## Popis Command for modifying **Placement**. These options relate only to the position and orientation of the object in space, they do not affect other attributes of the shape. The placement is stored internally as a position, and a rotation (rotation axis and angle transformed into a quaternion [1](https://en.wikipedia.org/wiki/Quaternions_and_spatial_rotation)). While there are several methods to specify a rotation, for instance with a rotation center, this is only used to affect the rotation computation and is not stored for later operations. Similarly, if a rotation axis of (1,1,1) is specified, it may be normalized when stored in the quaternion and appear as (0.58, 0.58, 0.58) when browsing the object later. @@ -121,3 +119,6 @@ Other explanation on [Placement](Placement.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Command_Reference](Category:Command_Reference.md) > Tasks Placement/cs diff --git a/wiki/translations/cs/TechDraw_Module.md b/wiki/translations/cs/TechDraw_Module.md index c72794f31b..bd846f180a 100644 --- a/wiki/translations/cs/TechDraw_Module.md +++ b/wiki/translations/cs/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/cs 1. REDIRECT [TechDraw\_Workbench/cs](TechDraw_Workbench/cs.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/cs diff --git a/wiki/translations/cs/TechDraw_Workbench.md b/wiki/translations/cs/TechDraw_Workbench.md index 9d19e5c363..ee63f5597e 100644 --- a/wiki/translations/cs/TechDraw_Workbench.md +++ b/wiki/translations/cs/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/cs - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/cs ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/cs diff --git a/wiki/translations/cs/Topological_data_scripting.md b/wiki/translations/cs/Topological_data_scripting.md index 040829c8d2..cf8dbd6441 100644 --- a/wiki/translations/cs/Topological_data_scripting.md +++ b/wiki/translations/cs/Topological_data_scripting.md @@ -1,7 +1,4 @@ # Topological data scripting/cs - - - {{TOCright}} ## Introduction @@ -938,3 +935,6 @@ s.read("test.stp") ```{{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting/cs diff --git a/wiki/translations/cs/Tutorials.md b/wiki/translations/cs/Tutorials.md index d370b0b26e..359724fa01 100644 --- a/wiki/translations/cs/Tutorials.md +++ b/wiki/translations/cs/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/cs - - - - - - {{TOCright}} This page presents a selection of high quality written tutorials. A complete, unsorted list of tutorials can be found in [:Category:Tutorials](:Category:Tutorials.md), a complete and sortable one can be found in the [table below](Tutorials#Tutorials_-_Comprehensive_list.md). @@ -283,3 +277,6 @@ Here are listed all the tutorials that are not in the manual **regardless of the [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials]], a complete and sortable one can be found in the ](Category:Tutorials]], a complete and sortable one can be found in the .md) > Tutorials/cs diff --git a/wiki/translations/cs/Units.md b/wiki/translations/cs/Units.md index 8df770fc56..0b33c95c6f 100644 --- a/wiki/translations/cs/Units.md +++ b/wiki/translations/cs/Units.md @@ -1,6 +1,4 @@ # Units/cs - - Some reading about units: - [Metrology](http://en.wikipedia.org/wiki/Metrology) @@ -292,4 +290,7 @@ It becomes thus very easy to manage any number of properties with any kind of un {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Units/cs diff --git a/wiki/translations/cs/User_hub.md b/wiki/translations/cs/User_hub.md index 07c0e2ca3f..d74f1be793 100644 --- a/wiki/translations/cs/User_hub.md +++ b/wiki/translations/cs/User_hub.md @@ -1,5 +1,4 @@ -# User hub/cs - +# User hub/cs ------------------------------------------------------------------------ @@ -189,3 +188,6 @@ Toto je oficiální online nápověda FreeCADu. Mějte prosím na paměti, že c [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/cs diff --git a/wiki/translations/cs/VRML_Preparation_for_Robot_Simulation.md b/wiki/translations/cs/VRML_Preparation_for_Robot_Simulation.md index cc4165ea38..5764e540d0 100644 --- a/wiki/translations/cs/VRML_Preparation_for_Robot_Simulation.md +++ b/wiki/translations/cs/VRML_Preparation_for_Robot_Simulation.md @@ -1,7 +1,4 @@ # VRML Preparation for Robot Simulation/cs - - -
@@ -392,3 +389,6 @@ Group { [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > VRML Preparation for Robot Simulation/cs diff --git a/wiki/translations/cs/Video_tutorials.md b/wiki/translations/cs/Video_tutorials.md index af16207dba..f720c4ad3a 100644 --- a/wiki/translations/cs/Video_tutorials.md +++ b/wiki/translations/cs/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials/cs - - - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** @@ -115,3 +112,6 @@ For more see [Video tutorials obsolete](Video_tutorials_obsolete.md). }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Video tutorials/cs diff --git a/wiki/translations/cs/Web_Workbench.md b/wiki/translations/cs/Web_Workbench.md index e62b42ff21..ce6fc75098 100644 --- a/wiki/translations/cs/Web_Workbench.md +++ b/wiki/translations/cs/Web_Workbench.md @@ -1,10 +1,4 @@ -# Web Workbench/cs - - - - - -Web workbench icon +# Web workbench icon Web Workbench/cs ## Introduction @@ -19,3 +13,6 @@ From this browser you are able to navigate the web, click on links, read the onl [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/cs diff --git a/wiki/translations/cs/Workbenches.md b/wiki/translations/cs/Workbenches.md index 6c165fbfc0..73e335cc16 100644 --- a/wiki/translations/cs/Workbenches.md +++ b/wiki/translations/cs/Workbenches.md @@ -1,7 +1,4 @@ # Workbenches/cs - - -
FreeCAD,stejně jako mnoho dalších moderních designových aplikací takových jako [Revit](wikipedia:Revit.md) nebo [CATIA](wikipedia:CATIA.md), je založen na konceptu [Pracovní plochy](wikipedia:Workbench.md). Pracovní plocha představuje skupinu nástrojů speciálně sestavených pro dané úlohy. V tradiční nábytkářské dílně byl samostatný pracovní stůl pro osobu, která pracovala se dřevem, další stůl pro osobu, která pracovala s kovovými částmi a třeba i třetí stůl, na kterém třetí pracovník montoval všechny kusy dohromady. @@ -118,3 +115,6 @@ Nové plochy jsou ve vývoji a ladění! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/cs diff --git a/wiki/translations/cz/Category:Categories.md b/wiki/translations/cz/Category:Categories.md index e658c8a538..4ceffd2be7 100644 --- a/wiki/translations/cz/Category:Categories.md +++ b/wiki/translations/cz/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , [Category:Categories/cz](Category:Categories/cz.md) [Category:Categories/cz](Category:Categories/cz.md) [Category:Documentation/cz](Category:Documentation/cz.md) [Category:Hubs/cz](Category:Hubs/cz.md) + +--- +[documentation index](../README.md) > Category:Categories/cz diff --git a/wiki/translations/cz/Category:Documentation.md b/wiki/translations/cz/Category:Documentation.md index 4453a8143f..a36aa2830f 100644 --- a/wiki/translations/cz/Category:Documentation.md +++ b/wiki/translations/cz/Category:Documentation.md @@ -4,3 +4,6 @@ This category groups all of the FreeCAD documentation ### Contents: [Category:Categories/cz](Category:Categories/cz.md) [Category:User Documentation/cz](Category:User_Documentation/cz.md) + +--- +[documentation index](../README.md) > Category:Documentation/cz diff --git a/wiki/translations/cz/Category:Hubs.md b/wiki/translations/cz/Category:Hubs.md index 114cae061d..975d3ff9c8 100644 --- a/wiki/translations/cz/Category:Hubs.md +++ b/wiki/translations/cz/Category:Hubs.md @@ -4,3 +4,6 @@ This category gathers the meeting points of the 3 broad categories of users of F ### Contents: [Category:Categories/cz](Category:Categories/cz.md) + +--- +[documentation index](../README.md) > Category:Hubs/cz diff --git a/wiki/translations/cz/Category:User_Documentation.md b/wiki/translations/cz/Category:User_Documentation.md index 8fbf83f49d..b9fe0dca13 100644 --- a/wiki/translations/cz/Category:User_Documentation.md +++ b/wiki/translations/cz/Category:User_Documentation.md @@ -4,3 +4,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr ### Contents: [Category:Documentation/cz](Category:Documentation/cz.md) + +--- +[documentation index](../README.md) > Category:User Documentation/cz diff --git a/wiki/translations/de/3D_input_devices.md b/wiki/translations/de/3D_input_devices.md index 2ec02931e9..30b28dcdeb 100644 --- a/wiki/translations/de/3D_input_devices.md +++ b/wiki/translations/de/3D_input_devices.md @@ -1,5 +1,5 @@ # 3D input devices/de - FreeCAD unterstützt einige spezielle Eingabegeräte wie etwa 3D Mäuse. Diese erlauben dem Benutzer, Objekte in drei Dimensionen zu rotieren, zu verschieben und in der Größe zu ändern. +FreeCAD unterstützt einige spezielle Eingabegeräte wie etwa 3D Mäuse. Diese erlauben dem Benutzer, Objekte in drei Dimensionen zu rotieren, zu verschieben und in der Größe zu ändern. ## Unterstützte Hardware @@ -7,3 +7,6 @@ - Installationanweisungen: [3D connexion Eingabegeräte](3Dconnexion_input_devices/de.md) [category:Documentation](category:Documentation.md) + +--- +[documentation index](../README.md) > 3D input devices/de diff --git a/wiki/translations/de/3D_view.md b/wiki/translations/de/3D_view.md index d785d126a2..569ceb5c21 100644 --- a/wiki/translations/de/3D_view.md +++ b/wiki/translations/de/3D_view.md @@ -1,6 +1,4 @@ # 3D view/de - - ## Einleitung @@ -89,4 +87,7 @@ Weitere Informationen findest Du in der Dokumentation erfahrener Nutzer: {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > 3D view/de diff --git a/wiki/translations/de/3Dconnexion_input_devices.md b/wiki/translations/de/3Dconnexion_input_devices.md index d545051b26..d64b560a76 100644 --- a/wiki/translations/de/3Dconnexion_input_devices.md +++ b/wiki/translations/de/3Dconnexion_input_devices.md @@ -1,5 +1,4 @@ -# 3Dconnexion input devices/de - 3Dconnexion SpaceNavigator {{TOCright}} +# 3Dconnexion SpaceNavigator {{TOCright}} 3Dconnexion input devices/de ## Treiberinstallation @@ -276,3 +275,6 @@ Um einen bestimmten Befehl mit einer Schaltfläche zu verbinden, wähle die Scha - Forum thread [Space navigator axis confusion](https://forum.freecadweb.org/viewtopic.php?f=8&t=57188) [Category:User Documentation](Category:User_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > 3Dconnexion input devices/de diff --git a/wiki/translations/de/A2plus_Workbench.md b/wiki/translations/de/A2plus_Workbench.md index d089c84ac0..acbb2c8241 100644 --- a/wiki/translations/de/A2plus_Workbench.md +++ b/wiki/translations/de/A2plus_Workbench.md @@ -1,5 +1,4 @@ -# A2plus Workbench/de - A2plus Arbeitsbereichssymbol +# A2plus Arbeitsbereichssymbol A2plus Workbench/de ## Einführung @@ -614,3 +613,6 @@ This is an A2plus-specific command. It solves the assembly constraints of the as [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > A2plus Workbench/de diff --git a/wiki/translations/de/ANSI_templates.md b/wiki/translations/de/ANSI_templates.md index 44ae232be4..1adfcd71dd 100644 --- a/wiki/translations/de/ANSI_templates.md +++ b/wiki/translations/de/ANSI_templates.md @@ -1,5 +1,5 @@ # ANSI templates/de - Dieses Seite zeigt die Vorlagen entsprechend dem American National Standards Institute [ANSI](https://de.wikipedia.org/wiki/American_National_Standards_Institute)-Standard +Dieses Seite zeigt die Vorlagen entsprechend dem American National Standards Institute [ANSI](https://de.wikipedia.org/wiki/American_National_Standards_Institute)-Standard ### ANSI A @@ -62,3 +62,6 @@ Die Vorlagen wurden erstellt durch [Quick61](User:Quick61.md) und aufgelistet in [FreeCAD-Drawing-Templates](https://github.com/quick61/FreeCAD-Drawing-Templates). [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > ANSI templates/de diff --git a/wiki/translations/de/About_FreeCAD.md b/wiki/translations/de/About_FreeCAD.md index f3595fee28..943acf7675 100644 --- a/wiki/translations/de/About_FreeCAD.md +++ b/wiki/translations/de/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/de - - - +# About FreeCAD/de **FreeCAD** ist ein universelles, parametrisches 3D-[**CAD**](http://de.wikipedia.org/wiki/CAD)-Modellierprogramm, dessen Entwicklung komplett [Open Source](http://de.wikipedia.org/wiki/Open_Source) ist ([LGPL License](https://www.gnu.org/licenses/lgpl-3.0.de.html)). FreeCAD zielt direkt auf [Maschinenbau](http://de.wikipedia.org/wiki/Maschinenbau) und [Produkt-Design](https://de.wikipedia.org/wiki/Produktdesign) ab, ist aber auch für eine große Bandbreite anderer Ingenieur-Anwendungen wie Architektur, Finite Elemente-Analyse, 3D-Druck oder andere Aufgaben geeignet. @@ -28,3 +25,6 @@ FreeCAD wird von einer Gemeinschaft enthusiastischer Entwickler und Nutzer gewar [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/de diff --git a/wiki/translations/de/Add_FEM_Constraint_Tutorial.md b/wiki/translations/de/Add_FEM_Constraint_Tutorial.md index cdbb5298f0..4c49884fdd 100644 --- a/wiki/translations/de/Add_FEM_Constraint_Tutorial.md +++ b/wiki/translations/de/Add_FEM_Constraint_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Constraint Tutorial/de 1. REDIRECT [Add\_FEM\_constraint\_tutorial/de](Add_FEM_constraint_tutorial/de.md) + +--- +[documentation index](../README.md) > Add FEM Constraint Tutorial/de diff --git a/wiki/translations/de/Add_FEM_Equation_Tutorial.md b/wiki/translations/de/Add_FEM_Equation_Tutorial.md index 83f04f3a68..2117e76a6d 100644 --- a/wiki/translations/de/Add_FEM_Equation_Tutorial.md +++ b/wiki/translations/de/Add_FEM_Equation_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Equation Tutorial/de 1. REDIRECT [Add\_FEM\_equation\_tutorial](Add_FEM_equation_tutorial.md) + +--- +[documentation index](../README.md) > Add FEM Equation Tutorial/de diff --git a/wiki/translations/de/Add_FEM_constraint_tutorial.md b/wiki/translations/de/Add_FEM_constraint_tutorial.md index 5623c301b5..b306f46eca 100644 --- a/wiki/translations/de/Add_FEM_constraint_tutorial.md +++ b/wiki/translations/de/Add_FEM_constraint_tutorial.md @@ -1,7 +1,4 @@ # Add FEM constraint tutorial/de - - - {{TutorialInfo/de |Topic= FEM Beschränkung hinzufügen |Level= @@ -312,3 +309,6 @@ def _handleFlowBndConditions(self): ``` [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM constraint tutorial/de diff --git a/wiki/translations/de/Add_FEM_equation_tutorial.md b/wiki/translations/de/Add_FEM_equation_tutorial.md index c782f6d1b8..a9b75919a1 100644 --- a/wiki/translations/de/Add_FEM_equation_tutorial.md +++ b/wiki/translations/de/Add_FEM_equation_tutorial.md @@ -1,7 +1,4 @@ # Add FEM equation tutorial/de - - - {{TutorialInfo/de |Topic=FEM Gleichung hinzufügen |Level=Fortgeschritten @@ -185,3 +182,6 @@ Nun haben wir den Funktionsteil der neuen Gleichung beendet. Nun werden wir die Wir haben gerade eine neue Gleichungsklasse erstellt. Um sie über die FEM-GUI anzusprechen, müssen wir eine Schaltfläche erstellen und sie mit der neuen Gleichungsklasse verbinden. Hier ist ein Tutorium: [Add button to FEM toolbar tutorial](Add_button_to_FEM_toolbar_tutorial/de.md). [Category:FEM](Category:FEM.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM equation tutorial/de diff --git a/wiki/translations/de/Addon.md b/wiki/translations/de/Addon.md index 497f37490b..4626ae515b 100644 --- a/wiki/translations/de/Addon.md +++ b/wiki/translations/de/Addon.md @@ -1,6 +1,4 @@ # Addon/de - - ## Einführung In FreeCAD und dieser Dokumentation ist eine [Erweiterung](addon/de.md) eine beliebige Komponente, die nicht Teil der Basisinstallation ist, die aber dem System durch bestimmte Methoden hinzugefügt werden kann. @@ -37,3 +35,6 @@ Trotzdem ist manuelle Installation weiterhin möglich. [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Addon/de diff --git a/wiki/translations/de/AddonManager.md b/wiki/translations/de/AddonManager.md index c6ea55736c..a3fc10acc5 100644 --- a/wiki/translations/de/AddonManager.md +++ b/wiki/translations/de/AddonManager.md @@ -1,2 +1,5 @@ # AddonManager/de 1. REDIRECT [Std AddonMgr/de](Std_AddonMgr/de.md) + +--- +[documentation index](../README.md) > AddonManager/de diff --git a/wiki/translations/de/Addon_Manager.md b/wiki/translations/de/Addon_Manager.md index e7f73fa13d..5862945edf 100644 --- a/wiki/translations/de/Addon_Manager.md +++ b/wiki/translations/de/Addon_Manager.md @@ -1,2 +1,5 @@ # Addon Manager/de 1. REDIRECT [Std AddonMgr/de](Std_AddonMgr/de.md) + +--- +[documentation index](../README.md) > Addon Manager/de diff --git a/wiki/translations/de/Advanced_TechDraw_Tutorial.md b/wiki/translations/de/Advanced_TechDraw_Tutorial.md index aa3a4d9f5a..3e414e563e 100644 --- a/wiki/translations/de/Advanced_TechDraw_Tutorial.md +++ b/wiki/translations/de/Advanced_TechDraw_Tutorial.md @@ -1,10 +1,4 @@ # Advanced TechDraw Tutorial/de - - - - - - {{TutorialInfo/de |Topic=Modellierung |Level=Erfahrene Anwender @@ -92,4 +86,7 @@ Jedoch könnte der beschriebene Weg den Ausgangspunkt (oder die Idee) darstellen {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Advanced TechDraw Tutorial/de diff --git a/wiki/translations/de/Aeroplane.md b/wiki/translations/de/Aeroplane.md index 36def8bb3d..a3fe0a2789 100644 --- a/wiki/translations/de/Aeroplane.md +++ b/wiki/translations/de/Aeroplane.md @@ -1,5 +1,5 @@ # Aeroplane/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic=Part Arbeitsbereich |Level=Anfänger |Time=10 Minuten @@ -99,4 +99,7 @@ Ich hoffe, dass dieses kleine Tutorial dir geholfen hat, ein Gefühl für Rotati {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Aeroplane/de diff --git a/wiki/translations/de/Analysis_of_reinforced_concrete_with_FEM.md b/wiki/translations/de/Analysis_of_reinforced_concrete_with_FEM.md index 3a9167c4fb..d7f01a0e6c 100644 --- a/wiki/translations/de/Analysis_of_reinforced_concrete_with_FEM.md +++ b/wiki/translations/de/Analysis_of_reinforced_concrete_with_FEM.md @@ -1,5 +1,5 @@ # Analysis of reinforced concrete with FEM/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic= Stahlbeton mit FEM |Level= Geübte |Time = 60 Minuten @@ -183,4 +183,7 @@ Das Zugspannungsmuster legt ein alternatives Konstruktionskonzept unter Verwendu {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Analysis of reinforced concrete with FEM/de diff --git a/wiki/translations/de/Animation_Workbench.md b/wiki/translations/de/Animation_Workbench.md index c27682913c..bb21579560 100644 --- a/wiki/translations/de/Animation_Workbench.md +++ b/wiki/translations/de/Animation_Workbench.md @@ -1,5 +1,4 @@ # Animation Workbench/de - {{Template:UnfinishedDocu }} @@ -101,3 +100,6 @@ Andere - [Externe Arbeitsbereiche](External_workbenches/de.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Animation Workbench/de diff --git a/wiki/translations/de/AppImage.md b/wiki/translations/de/AppImage.md index 54fc7fcbf8..ff0cd7981a 100644 --- a/wiki/translations/de/AppImage.md +++ b/wiki/translations/de/AppImage.md @@ -1,5 +1,5 @@ # AppImage/de - **Seit dem 7. Juli 2019 beobachtet die FreeCAD Gemeinschaft, dass das Herunterladen von AppImages von Github vor der Fertigstellung eine Zeitüberschreitung zu haben scheint. Wir sind uns nicht sicher, warum dies geschieht. Wenn dies bei dir passiert, versuche bitte das Herunterladen erneut. Es dauert ein paar Versuche. Es wird empfohlen, die Funktion AppImage [https://www.freecadweb.org/wiki/Appimage#Automatic_updating Auto-Aktualisierungsfunktion] zu verwenden, die das Herunterladen an der Stelle wiederherstellt, an der er fehlgeschlagen ist.** +**Seit dem 7. Juli 2019 beobachtet die FreeCAD Gemeinschaft, dass das Herunterladen von AppImages von Github vor der Fertigstellung eine Zeitüberschreitung zu haben scheint. Wir sind uns nicht sicher, warum dies geschieht. Wenn dies bei dir passiert, versuche bitte das Herunterladen erneut. Es dauert ein paar Versuche. Es wird empfohlen, die Funktion AppImage [https://www.freecadweb.org/wiki/Appimage#Automatic_updating Auto-Aktualisierungsfunktion] zu verwenden, die das Herunterladen an der Stelle wiederherstellt, an der er fehlgeschlagen ist.** {{TOCright}} @@ -171,3 +171,6 @@ Das Repositorium für diese Skripte befindet sich unter [realthunder/FreeCADMake [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > AppImage/de diff --git a/wiki/translations/de/App_DocumentObject.md b/wiki/translations/de/App_DocumentObject.md index bf5d5bf967..4b32af80fc 100644 --- a/wiki/translations/de/App_DocumentObject.md +++ b/wiki/translations/de/App_DocumentObject.md @@ -1,5 +1,5 @@ # App DocumentObject/de - {{TOCright}} +{{TOCright}} ## Einführung @@ -69,4 +69,7 @@ obj.Label = "Custom label" {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App DocumentObject/de diff --git a/wiki/translations/de/App_DocumentObjectGroup.md b/wiki/translations/de/App_DocumentObjectGroup.md index a2fd94fe98..2b51af2655 100644 --- a/wiki/translations/de/App_DocumentObjectGroup.md +++ b/wiki/translations/de/App_DocumentObjectGroup.md @@ -1,6 +1,4 @@ # App DocumentObjectGroup/de - - ## Einleitung @@ -31,4 +29,7 @@ Siehe die Eigenschaften auf der [Standard Gruppe](Std_Group/de.md) Seite. {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App DocumentObjectGroup/de diff --git a/wiki/translations/de/App_FeaturePython.md b/wiki/translations/de/App_FeaturePython.md index 45bc50c2b7..92af9edf2c 100644 --- a/wiki/translations/de/App_FeaturePython.md +++ b/wiki/translations/de/App_FeaturePython.md @@ -1,6 +1,4 @@ # App FeaturePython/de - - ## Einführung Ein [Anwendung FormelementPython](App_FeaturePython/de.md) Objekt oder formal ein `App::FeaturePython`, ist eine einfache Instanz des [Anwendung DokumentObjekt](App_DocumentObject/de.md) in [Python](Python/de.md). @@ -95,4 +93,7 @@ Wenn das gewünschte Objekt eine Platzierung, eine Form, einen Anhang oder ander {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App FeaturePython/de diff --git a/wiki/translations/de/App_Link.md b/wiki/translations/de/App_Link.md index f7c300c9d1..d8181a1e96 100644 --- a/wiki/translations/de/App_Link.md +++ b/wiki/translations/de/App_Link.md @@ -1,5 +1,5 @@ # App Link/de - {{TOCright}} +{{TOCright}} ## Einführung @@ -28,4 +28,7 @@ Siehe die vollständige Liste der Eigenschaften auf der [Std VerknüpfungHerstel {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Link/de diff --git a/wiki/translations/de/App_Part.md b/wiki/translations/de/App_Part.md index 779ef87169..8fd16e4e92 100644 --- a/wiki/translations/de/App_Part.md +++ b/wiki/translations/de/App_Part.md @@ -1,6 +1,4 @@ # App Part/de - - ## Einführung @@ -31,4 +29,7 @@ Siehe die komplette Liste der Eigenschaften auf der [Std Part](Std_Part/de.md) S {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Part/de diff --git a/wiki/translations/de/Arch_3DS.md b/wiki/translations/de/Arch_3DS.md index 425c56ed04..629d8b9b7f 100644 --- a/wiki/translations/de/Arch_3DS.md +++ b/wiki/translations/de/Arch_3DS.md @@ -1,9 +1,4 @@ # Arch 3DS/de - - - - - Der Arch-Arbeitsbereich unterstützt das Importieren von [3ds](https://de.wikibooks.org/wiki/Blender_Dokumentation:_3d_Studio_(3ds))-Dateien. Das 3ds-Format ist alt, aber immer noch weit verbreitet im Internet. Es kann Netz-Daten und Material-Informationen enthalten. Momentan werden in der Eingabedatei enthaltene Netzobjekte als FreeCAD-Netzobjekte importiert; es gibt bisher keine Unterstützung für Materialien. @@ -13,3 +8,6 @@ Der Arch-Arbeitsbereich unterstützt das Importieren von [3ds](https://de.wikibo [Category:User Documentation](Category:User_Documentation.md) [Category:Arch](Category:Arch.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3DS/de diff --git a/wiki/translations/de/Arch_3Views.md b/wiki/translations/de/Arch_3Views.md index c8efdcbd35..369d33bf27 100644 --- a/wiki/translations/de/Arch_3Views.md +++ b/wiki/translations/de/Arch_3Views.md @@ -7,6 +7,8 @@ SeeAlso:[Arch NetzAufteilen](Arch_SplitMesh/de.md), [Arch NetzZuForm](Arch_MeshToShape/de.md) --- +# Arch 3Views/de + ## Beschreibung @@ -69,11 +71,5 @@ Wall.ViewObject.Visibility = False mesh_obj.ViewObject.Visibility = False ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3Views/de diff --git a/wiki/translations/de/Arch_API.md b/wiki/translations/de/Arch_API.md index e7d45d5a85..50964b7c7b 100644 --- a/wiki/translations/de/Arch_API.md +++ b/wiki/translations/de/Arch_API.md @@ -1,5 +1,5 @@ # Arch API/de - **(November 2018) Diese Information kann unvollständig und veraltet sein. Für die letzte API siehe die (engl.) [https://www.freecadweb.org/api autogenerierte API-Dokumentation].** +**(November 2018) Diese Information kann unvollständig und veraltet sein. Für die letzte API siehe die (engl.) [https://www.freecadweb.org/api autogenerierte API-Dokumentation].** Die Funktionen der API sind Teil des [Arch-Arbeitsbereichs](Arch_Workbench/de.md) und können in [Makros](macros/de.md) und in der [Python](Python/de.md)-Konsole verwendet werden, sobald das `Arch`-Modul importiert wurde. Das [Reinforcement-Addon](Reinforcement_Addon/de.md) hat seine eigene [Reinforcement-API](Reinforcement_API/de.md). @@ -18,3 +18,6 @@ Arch.makeWall(baseline, length=None, width=200, height=2000) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch API/de diff --git a/wiki/translations/de/Arch_Add.md b/wiki/translations/de/Arch_Add.md index c6601d53ab..a66923ffc9 100644 --- a/wiki/translations/de/Arch_Add.md +++ b/wiki/translations/de/Arch_Add.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Komponente entfernen](Arch_Remove/de.md) --- +# Arch Add/de + ## Beschreibung Das Werkzeug Hinzufügen ermöglicht dir vier Arten von Arbeitsschritten durchzuführen: @@ -74,11 +76,5 @@ Arch.addComponents(Wall2, Wall) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Add/de diff --git a/wiki/translations/de/Arch_Axis.md b/wiki/translations/de/Arch_Axis.md index 0961eb835b..9ea9534e68 100644 --- a/wiki/translations/de/Arch_Axis.md +++ b/wiki/translations/de/Arch_Axis.md @@ -8,6 +8,8 @@ SeeAlso:[Achsensystem](Arch_AxisSystem/de.md), [Arch Gitter](Arch_Grid/de.md) --- +# Arch Axis/de + ## Beschreibung Das ** [Architektur Achsen](Arch_Axis/de.md)** Werkzeug ermöglicht es dir, eine Reihe von Achsen im aktuellen Dokument zu platzieren. Der Abstand und der Winkel zwischen den Achsen ist anpassbar, ebenso wie der Nummerierungsstil. Die Achsen dienen hauptsächlich als Referenzen, auf die Objekte gefangen werden, können aber auch zusammen mit ** [ Architektur AchsenSysteme](Arch_AxisSystem.md)** verwendet werden und kann auch von anderen Architekturobjekten referenziert werden, um parametrische Anordnungen, z.B. von Trägern oder Stützen, zu erstellen. ** [Architektur Gitter](Arch_Grid/de.md)** können auch an Stellen von Achsen verwendet werden. @@ -90,8 +92,5 @@ Draft.move(Axes2, FreeCAD.Vector(-1000, 2500, 0)) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Axis/de diff --git a/wiki/translations/de/Arch_AxisSystem.md b/wiki/translations/de/Arch_AxisSystem.md index 722707fa46..92a87ceddc 100644 --- a/wiki/translations/de/Arch_AxisSystem.md +++ b/wiki/translations/de/Arch_AxisSystem.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Achse](Arch_Axis/de.md), [Arch Gitter](Arch_Grid/de.md) --- +# Arch AxisSystem/de + ## Beschreibung Das [AchsenSystem](Arch_AxisSystem/de.md) Werkzeug ermöglicht dir zwei oder drei [AchsenSystem](Arch_Axis/de.md) Objekte zu kombinieren. @@ -75,8 +77,5 @@ Structure.Axis = AxisSystem FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch AxisSystem/de diff --git a/wiki/translations/de/Arch_Building.md b/wiki/translations/de/Arch_Building.md index 2afbad3af4..ab2cd5a4bf 100644 --- a/wiki/translations/de/Arch_Building.md +++ b/wiki/translations/de/Arch_Building.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Gebäudeteil](Arch_BuildingPart/de.md), [Arch Baugrund](Arch_Site/de.md) --- +# Arch Building/de + ## Beschreibung Ein Gebäude ist ein spezielles FreeCAD Gruppenobjekt, welches sich besonders dafür eignet, eine ganze Gebäudeeinheit zu repräsentieren. Ein Gebäude hilft so bei der Organisation des Modells, es enthält als Untereinheiten [Etagen](Arch_Floor/de.md) Objekte. @@ -64,8 +66,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Building/de diff --git a/wiki/translations/de/Arch_BuildingPart.md b/wiki/translations/de/Arch_BuildingPart.md index 648297cfa8..b879c1d829 100644 --- a/wiki/translations/de/Arch_BuildingPart.md +++ b/wiki/translations/de/Arch_BuildingPart.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Gebäude](Arch_Building/de.md), [Arch Baugrund](Arch_Site/de.md) --- +# Arch BuildingPart/de + ## Beschreibung Der GebäudeTeil ersetzt das alte [Arch Geschoss](Arch_Floor/de.md) und [Arch Gebäude](Arch_Building/de.md) Werkzeug durch eine leistungsfähigere Version, mit der nicht nur Geschosse/Etagen/Ebenen, sondern auch alle Arten von Situationen erstellt werden können, in denen verschiedene Architektur/BIM Objekte gruppiert werden sollen und das diese Gruppe als ein Objekt behandelt oder nachgebildet werden soll. @@ -130,8 +132,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BuildingPart/de diff --git a/wiki/translations/de/Arch_Check.md b/wiki/translations/de/Arch_Check.md index e441c1e327..6a5376c7b0 100644 --- a/wiki/translations/de/Arch_Check.md +++ b/wiki/translations/de/Arch_Check.md @@ -7,6 +7,8 @@ SeeAlso:[Arch SchließeLöcher](Arch_CloseHoles/de.md) --- +# Arch Check/de + ## Beschreibung Dieses Werkzeug prüft das aktuelle Dokument oder die ausgewählten Objekte auf Nicht-Volumenkörper ** [Part](Part_Workbench/de.md)**- oder ** [Arch](Arch_Workbench.md)**-Objekte, die Probleme bereiten könnten, da die meisten Operationen des Arch-Arbeitsbereichs Volumenkörper erfordern. @@ -54,11 +56,5 @@ list_bad = Arch.check([Wall1, Wall2, Circle, Wire], includehidden=True) print(list_bad) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Check/de diff --git a/wiki/translations/de/Arch_CloneComponent.md b/wiki/translations/de/Arch_CloneComponent.md index 9245397790..09c9742a0e 100644 --- a/wiki/translations/de/Arch_CloneComponent.md +++ b/wiki/translations/de/Arch_CloneComponent.md @@ -9,6 +9,8 @@ Icon:Arch_Component_Clone.svg --- +# Arch CloneComponent/de + ## Beschreibung Die ** [Arch Komponente klonen](Arch_CloneComponent/de.md)** erzeugt ** [Arch Komponenten](Arch_Component/de.md)**, die Klone von ausgewählten Arch Objekten sind. @@ -23,8 +25,5 @@ Bei der geklonten Komponente wird die {{PropertyData/de|CloneOf}}-Eigenschaft au ## Skripten - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloneComponent/de diff --git a/wiki/translations/de/Arch_CloseHoles.md b/wiki/translations/de/Arch_CloseHoles.md index 520e962fdc..a6661cfc99 100644 --- a/wiki/translations/de/Arch_CloseHoles.md +++ b/wiki/translations/de/Arch_CloseHoles.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Überprüfung](Arch_Check/de.md) --- +# Arch CloseHoles/de + ## Beschreibung Dieses Werkzeug identifiziert Löcher (ringförmige Folge von offenen Kanten) in einem [Formteil](Part_Workbench/de.md)-Objekt und versucht, sie durch hinzufügen einer Fläche zu schließen, die aus der Folge von Kanten erstellt wird. Du musst dich aber noch selbst davon überzeugen, dass das Ergebnis ein Volumenkörper ist. @@ -52,11 +54,5 @@ FreeCAD.ActiveDocument.recompute() solid = Arch.closeHole(Wall.Shape) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloseHoles/de diff --git a/wiki/translations/de/Arch_CompAxis.md b/wiki/translations/de/Arch_CompAxis.md index 26bac5170e..6eed06e43c 100644 --- a/wiki/translations/de/Arch_CompAxis.md +++ b/wiki/translations/de/Arch_CompAxis.md @@ -8,6 +8,8 @@ SeeAlso:[Achse](Arch_Axis/de.md), [Achsensystem](Arch_AxisSystem/de.md), [Gitter](Arch_Grid/de.md) --- +# Arch CompAxis/de + ## Beschreibung Achse erstellen. @@ -18,8 +20,5 @@ Achse erstellen. - [Achsensystem](Arch_AxisSystem/de.md): Fügt dem Dokument ein aus mehreren Achsen gebildetes Achsensystem hinzu - [Gitter](Arch_Grid/de.md): Fügt dem Dokument ein gitterartiges Objekt hinzu - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompAxis/de diff --git a/wiki/translations/de/Arch_CompPanel.md b/wiki/translations/de/Arch_CompPanel.md index 05e09700ea..0c4957eaad 100644 --- a/wiki/translations/de/Arch_CompPanel.md +++ b/wiki/translations/de/Arch_CompPanel.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch CompPanel/de + ## Beschreibung Gruppierung mehrerer Paneel bezogener Werkzeuge. @@ -17,10 +19,7 @@ Gruppierung mehrerer Paneel bezogener Werkzeuge. - [Paneel](Arch_Panel/de.md): Erzeugt ein Tafelobjekt aus einem ausgewählten 2D-Objekt (v0.15) - [Tafelschnitt](Arch_Panel_Cut/de.md): Erstellt eine 2D Schnittansicht aus einer [Arch Tafel](Arch_Panel/de.md) (v0.17) - [Tafelplatte](Arch_Panel_Sheet/de.md): Erstellt eine 2D Zuschnittplatte einschließlich [Tafelschnitte](Arch_Panel_Cut/de.md) oder anderer 2D Objekte (v0.17) -- [Verschachteln](Arch_Nest/de.md): Mehrere flache Objekte innerhalb einer Behälterform verschachteln (v0.17) - - +- [Verschachteln](Arch_Nest/de.md): Mehrere flache Objekte innerhalb einer Behälterform verschachteln (v0.17) - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompPanel/de diff --git a/wiki/translations/de/Arch_CompPipe.md b/wiki/translations/de/Arch_CompPipe.md index ca2227de9c..a1d646c81e 100644 --- a/wiki/translations/de/Arch_CompPipe.md +++ b/wiki/translations/de/Arch_CompPipe.md @@ -8,15 +8,14 @@ Version:0.17 --- +# Arch CompPipe/de + ## Beschreibung ## Typen von - [Rohr](Arch_Pipe/de.md): Erzeugt ein Rohr (v0.17) -- [Rohrverbindungsstück](Arch_PipeConnector/de.md): Erzeugt eine Eck- oder T-Stück Verbindung zwischen 2 oder 3 ausgewählten Rohren (v0.17) - - +- [Rohrverbindungsstück](Arch_PipeConnector/de.md): Erzeugt eine Eck- oder T-Stück Verbindung zwischen 2 oder 3 ausgewählten Rohren (v0.17) - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompPipe/de diff --git a/wiki/translations/de/Arch_CompRebarStraight.md b/wiki/translations/de/Arch_CompRebarStraight.md index 9acd17bbf9..ac44ffdf74 100644 --- a/wiki/translations/de/Arch_CompRebarStraight.md +++ b/wiki/translations/de/Arch_CompRebarStraight.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Arch CompRebarStraight/de + ## Beschreibung Das Bewehrungszusatzmodul erweitert die [Architektur Arbeitsbereich](Arch_Workbench/de.md) um neue Schnittstellen und Voreinstellungen für die Erstellung gängiger Bewehrungstypen zur Verwendung mit [Architektur Strukturen](Arch_Structure/de.md). Es ist außerdem im externen Arbeitsbereich [BIM](BIM_Workbench/de.md) integriert. @@ -38,8 +40,5 @@ Zurück zu [Arbeitsbereiche](Workbenches#External_workbenches/de.md) / [Externe - [Bewehrung](Arch_Rebar/de.md): Erstellt einen maßgefertigten Bewehrungsstab in einem ausgewählten Strukturelement unter Verwendung einer Skizze - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompRebarStraight/de diff --git a/wiki/translations/de/Arch_CompSetMaterial.md b/wiki/translations/de/Arch_CompSetMaterial.md index 83912217d5..c237f29c47 100644 --- a/wiki/translations/de/Arch_CompSetMaterial.md +++ b/wiki/translations/de/Arch_CompSetMaterial.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch CompSetMaterial/de + ## Beschreibung Mit den Materialwerkzeugen können Materialien zum aktiven Dokument hinzugefügt werden. @@ -15,10 +17,7 @@ Mit den Materialwerkzeugen können Materialien zum aktiven Dokument hinzugefügt ## Typen von - [Material](Arch_SetMaterial/de.md): Erstellt ein Material und ordnet es ausgewählten Objekten zu, falls vorhanden -- [Mehrfach-Material](Arch_MultiMaterial/de.md): Erstellt ein Mehrfach-Material und ordnet es ausgewählten Objekten zu, falls vorhanden (v0.17) - - +- [Mehrfach-Material](Arch_MultiMaterial/de.md): Erstellt ein Mehrfach-Material und ordnet es ausgewählten Objekten zu, falls vorhanden (v0.17) - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompSetMaterial/de diff --git a/wiki/translations/de/Arch_Component.md b/wiki/translations/de/Arch_Component.md index e2bf842760..28cc3c32e4 100644 --- a/wiki/translations/de/Arch_Component.md +++ b/wiki/translations/de/Arch_Component.md @@ -7,6 +7,8 @@ Shortcut:**C** **M‏‎** --- +# Arch Component/de + ## Beschreibung Erstellt eine nicht-parametrische [Arch](Arch_Workbench/de.md)-Komponente aus jedem [Part](Part_Workbench/de.md)-basierten Objekt. Dies gibt dem Part-basierten Objekt die gleichen Attribute und Eigenschaften wie anderen Arch-Objekten und erlaubt über das Setzen der **Rollen**-Eigenschaft festzulegen, wie sie nach IFC exportiert werden soll. @@ -47,11 +49,5 @@ Das Arch-Komponenten-Objekten ist auch eine Basis, die von allen anderen Arch-Ob - **Hi Res**: Arch-Komponenten können die Form eines anderen Objekts als eine höher auflösendere Version von sich selbst verwenden. Dafür müssen sowohl die Hi Res-Eigenschaft als auch der Hi Res-Anzeigemodus gesetzt sein. Dies erlaubt z.B. eine einfache Wand zu erstellen und dann jeden Backstein, aus dem die Wand besteht, zu modellieren, bspw. mit ** [Part Box](Part_Box/de.md)**. Dann kann man einen Verbund dieser Backsteine als eine höher auflösende Version der Wand benutzen. Die Form der Wand wird durch die Verwendung eines Hi Res-Objekts nicht verändert. Lediglich seine Darstellung in der 3D-Ansicht wird sich durch Übernahme der höher auflösenden Version verändern. - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Component/de diff --git a/wiki/translations/de/Arch_Concept.md b/wiki/translations/de/Arch_Concept.md index 263e79b77d..bb07b1136f 100644 --- a/wiki/translations/de/Arch_Concept.md +++ b/wiki/translations/de/Arch_Concept.md @@ -1,7 +1,4 @@ # Arch Concept/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -173,3 +170,6 @@ The following diagram illustrates the relationship between all objects described Objects for capturing building knowledge [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Concept/de diff --git a/wiki/translations/de/Arch_CurtainWall.md b/wiki/translations/de/Arch_CurtainWall.md index 6151c1f10c..d220129d18 100644 --- a/wiki/translations/de/Arch_CurtainWall.md +++ b/wiki/translations/de/Arch_CurtainWall.md @@ -9,6 +9,8 @@ SeeAlso:[Architektur Wand](Arch_Wall/de.md), [Architektur Gitter](Arch_Grid/de.md) --- +# Arch CurtainWall/de + ## Beschreibung Dieses Werkzeug erstellt eine [Vorhangfassade](https://de.wikipedia.org/wiki/Vorhangfassade), indem es eine Grundfläche in viereckige Flächen unterteilt, dann vertikale Pfosten an den vertikalen Kanten und horizontale Pfosten an den horizontalen Kanten erzeugt und die Zwischenräume zwischen den Pfosten mit Paneelen füllt. @@ -150,8 +152,5 @@ curtainWall.VerticalSections = 6 FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CurtainWall/de diff --git a/wiki/translations/de/Arch_CutLine.md b/wiki/translations/de/Arch_CutLine.md index 82b86f32f7..346a299537 100644 --- a/wiki/translations/de/Arch_CutLine.md +++ b/wiki/translations/de/Arch_CutLine.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch CutLine/de + ## Beschreibung Das [Arch SchneideLinie](Arch_CutLine/de.md) Werkzeug ermöglicht dir ein festes Arch Objekt wie eine [Arch Mauer](Arch_Wall/de.md) oder [Arch Struktur](Arch_Structure/de.md) unter Verwendung einer Linie, die das Objekt kreuzt zu schneiden. @@ -32,8 +34,5 @@ Das [Arch SchneideLinie](Arch_CutLine/de.md) Werkzeug ermöglicht dir ein festes [Arch API](Arch_API/de.md) und [FreeCAD Grundlagen Skripten](FreeCAD_Scripting_Basics/de.md). - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutLine/de diff --git a/wiki/translations/de/Arch_CutPlane.md b/wiki/translations/de/Arch_CutPlane.md index b5108ca543..fa5715b4ac 100644 --- a/wiki/translations/de/Arch_CutPlane.md +++ b/wiki/translations/de/Arch_CutPlane.md @@ -7,6 +7,8 @@ SeeAlso:[Arch SchneideLinie](Arch_CutLine/de.md), [Arch Entfernen](Arch_Remove/de.md) --- +# Arch CutPlane/de + ## Beschreibung Das Schnittebenen Werkzeug ermöglicht dir ein Arch Objekt entsprechend einer Ebene schneiden: @@ -93,8 +95,5 @@ cutObj2 = Arch.cutComponentwithPlane(main_object2, cut_face2, 1) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutPlane/de diff --git a/wiki/translations/de/Arch_DAE.md b/wiki/translations/de/Arch_DAE.md index d299aa473e..e3831096d7 100644 --- a/wiki/translations/de/Arch_DAE.md +++ b/wiki/translations/de/Arch_DAE.md @@ -1,6 +1,4 @@ # Arch DAE/de - - Das [Collada (DAE)](https://en.wikipedia.org/wiki/COLLADA)-Format ist ein Standarddateiformat für den Austausch von Netz-Daten. Der [Arch-Arbeitsbereich](Arch_Workbench/de.md) kann Netze aus .dae-Dateien importieren und Arch- und andere [Shape](Part_Workbench/de.md)-basierte Objekte ins .dae-Format exportieren. Beachte, dass importierte Objekte [Netz](Mesh_Workbench/de.md)-Objekte sein werden und für optimale Nutzung in [Formteile](Shape/de.md) oder Arch-Objekte umgewandelt werden müssen. Der [Arch-Arbeitsbereich](Arch_Workbench/de.md) hat verschiedene Werkzeuge, die Dir dabei helfen. @@ -18,3 +16,6 @@ Die Collada-Importfunktionalität im Arch-Arbeitsbereich hängt von [pycollada]( [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch DAE/de diff --git a/wiki/translations/de/Arch_Door.md b/wiki/translations/de/Arch_Door.md index 349d0a7a35..bfe0e27656 100644 --- a/wiki/translations/de/Arch_Door.md +++ b/wiki/translations/de/Arch_Door.md @@ -8,6 +8,8 @@ Icon:Arch_Window.svg --- +# Arch Door/de + ## Beschreibung [Türen](Arch_Door/de.md) werden mit dem [Türen](Arch_Window/de.md)-Werkzeug erstellt. @@ -23,5 +25,5 @@ Alle Eigenschaften werden im [Arch Fenster](Arch_Window/de.md)-Werkzeug beschrie Door *Tür aus einer [Skizze](Sketcher_Workbench/de.md) konstruiert* - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Door/de diff --git a/wiki/translations/de/Arch_Equipment.md b/wiki/translations/de/Arch_Equipment.md index 38b4f8e6d6..ead22766a7 100644 --- a/wiki/translations/de/Arch_Equipment.md +++ b/wiki/translations/de/Arch_Equipment.md @@ -8,6 +8,8 @@ SeeAlso:[Arch 3 Ansichten](Arch_3Views/de.md) --- +# Arch Equipment/de + ## Beschreibung Das Ausstattungwerkzeug bietet einen einfachen und bequemen Weg, nichttragende, einzelstehende Elemente wie Möbelstücke, Sanitärgegenstände oder elektrische Geräte zu Deinen Projekten hinzuzufügen. Ausstattungen basieren auf [Part Formen](Part_Workbench/de.md), die es erlauben, von der Solidität und den Möglichkeiten von BRep Geometrien zu profitieren und nette Ansichten von Drauf- und Schnittansichten zu erzeugen. @@ -66,11 +68,5 @@ Equip = Arch.makeEquipment(Box) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Equipment/de diff --git a/wiki/translations/de/Arch_Fence.md b/wiki/translations/de/Arch_Fence.md index 0da13d9ced..264979f572 100644 --- a/wiki/translations/de/Arch_Fence.md +++ b/wiki/translations/de/Arch_Fence.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Fence/de + ## Beschreibung Der [Arch Zaun](Arch_Fence/de.md) ist ein Objekt, das einen Zaun durch die Wiederholung eines einzelnen Zaunpfostens und eines Abschnitts entlang eines bestimmten Pfades bildet. @@ -95,8 +97,5 @@ post = FreeCAD.ActiveDocument.Post Fence = Arch.buildFence(fence_section, post, sketch) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Fence/de diff --git a/wiki/translations/de/Arch_Floor.md b/wiki/translations/de/Arch_Floor.md index 4776077808..4c193cda4e 100644 --- a/wiki/translations/de/Arch_Floor.md +++ b/wiki/translations/de/Arch_Floor.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Gebäude](Arch_Building/de.md), [Arch Gebäudeteil](Arch_BuildingPart/de.md), [Arch Grundstück](Arch_Site/de.md) --- +# Arch Floor/de + ## Beschreibung Eine [Arch Etage](Arch_Floor/de.md) ist ein spezielles FreeCAD Gruppenobjekt mit mehreren Zusatzeigenschaften, welche insbesondere zur Etagenkonstruktion geeignet sind. Insbesondere hält diese Gruppe eine Höhen-Eigenschaft, welche von allen Kindobjekten ([Wände](Arch_Wall/de.md) und [Bauelemente](Arch_Structure/de.md)) genutzt werden kann, um die Höhe automatisch anzupassen. Im Wesentlichen dient das Etagenobjekt der Organisation des Konstruktionsmodells. @@ -67,11 +69,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor/de diff --git a/wiki/translations/de/Arch_Frame.md b/wiki/translations/de/Arch_Frame.md index 367f470410..2b54a273eb 100644 --- a/wiki/translations/de/Arch_Frame.md +++ b/wiki/translations/de/Arch_Frame.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Wand](Arch_Wall/de.md), [Arch Struktur](Arch_Structure/de.md) --- +# Arch Frame/de + ## Beschreibung Das ** [Arch Rahmen](Arch_Frame/de.md)**-Werkzeug wird verwendet, um alle Arten von Rahmenobjekten basierend auf einem Profil und einem Layout zu erstellen. Das Profil wird entlang der Kanten des Layouts extrudiert, bei dem es sich um ein beliebiges 2D-Objekt handeln kann, z. B. ein [Skizze](Sketcher_Workbench/de.md) oder ein [Entwurfsobjekt](Draft_Workbench/de.md). Es ist besonders nützlich, um Geländer oder Rahmenwände zu erstellen. Rahmenobjekte können dann leicht in [Wände](Arch_Wall/de.md) oder [Struktur](Arch_Structure/de.md)-Objekte umgewandelt werden. @@ -71,11 +73,5 @@ Frame = Arch.makeFrame(baseobj, profile) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Frame/de diff --git a/wiki/translations/de/Arch_Git.md b/wiki/translations/de/Arch_Git.md index e5279c3e23..76e7671200 100644 --- a/wiki/translations/de/Arch_Git.md +++ b/wiki/translations/de/Arch_Git.md @@ -1,2 +1,5 @@ # Arch Git/de 1. REDIRECT [WebTools\_Git/de](WebTools_Git/de.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Git/de diff --git a/wiki/translations/de/Arch_Grid.md b/wiki/translations/de/Arch_Grid.md index 8e6a21143d..aaea167aa4 100644 --- a/wiki/translations/de/Arch_Grid.md +++ b/wiki/translations/de/Arch_Grid.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Achse](Arch_Axis/de.md), [Arch AchsenSystem](Arch_AxisSystem/de.md) --- +# Arch Grid/de + ## Beschreibung Das ** [Arch Gitter](Arch_Grid/de.md)** Werkzeug ermöglicht es dir, ein gitterartiges Objekt im Dokument zu platzieren. Dieses Objekt soll als Basis für die Erstellung von Arch Objekten dienen, die einen regelmäßigen, aber komplexen Rahmen benötigen, wie z.B. Fenster, Vorhangfassaden, Säulengitter, Geländer usw. Das Gitterobjekt ist wie eine Tabellenkalkulation bearbeitbar, in der du Spalten und Zeilen hinzufügst oder entfernst, ihre Größe definierst und Zellen zusammenführen kannst. @@ -88,8 +90,5 @@ Structure.Axis = Grid FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Grid/de diff --git a/wiki/translations/de/Arch_IFC.md b/wiki/translations/de/Arch_IFC.md index 4b5c99ef12..cec9a3b73b 100644 --- a/wiki/translations/de/Arch_IFC.md +++ b/wiki/translations/de/Arch_IFC.md @@ -1,7 +1,4 @@ # Arch IFC/de - - - {{TOCright}} ## Beschreibung @@ -75,3 +72,6 @@ Wenn die Form der exportierten Objekte auf einer Extrusion oder einer booleschen [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IFC/de diff --git a/wiki/translations/de/Arch_IfcExplorer.md b/wiki/translations/de/Arch_IfcExplorer.md index 3c48447e58..689b5823d8 100644 --- a/wiki/translations/de/Arch_IfcExplorer.md +++ b/wiki/translations/de/Arch_IfcExplorer.md @@ -8,6 +8,8 @@ SeeAlso:[Architektur IFC](Arch_IFC/de.md) --- +# Arch IfcExplorer/de + ## Beschreibung Der [IFC explorer](Arch_IfcExplorer/de.md) ist ein einfaches Hilfsmittel, um die Inhalte einer [IFC](Arch_IFC/de.md) Datei zu untersuchen. IFC Dateien sind Textdateien, die daher mit einem Texteditor lesbar sind, aber die Informationen sind verdichtet und schwer durchzublättern. Dieses Hilfsprogramm zeigt dem Anwender genau den gleichen Inhalt, aber angezeigt in einem geordneten und lesbaren Verfahren. Die *[IfcOpenShell](IfcOpenShell/de.md)* Softwarebibliothek muss installiert sein, damit dieses Dienstprogramm funktioniert. @@ -33,3 +35,6 @@ Der Zweck dieses Explorers besteht einfach darin, dir zu ermöglichen, zu überp [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcExplorer/de diff --git a/wiki/translations/de/Arch_IfcSpreadsheet.md b/wiki/translations/de/Arch_IfcSpreadsheet.md index 71bab72f53..8292fd1823 100644 --- a/wiki/translations/de/Arch_IfcSpreadsheet.md +++ b/wiki/translations/de/Arch_IfcSpreadsheet.md @@ -8,6 +8,8 @@ SeeAlso:[Arch IfcExplorer](Arch_IFC/de]],_[[Arch_IfcExplorer/de.md) --- +# Arch IfcSpreadsheet/de + ## Beschreibung Dieses Werkzeug erstellt eine Tabellenblatt, um [IFC](Arch_IFC/de.md) Eigenschaften eines Objekts zu speichern. @@ -45,8 +47,5 @@ FreeCAD.ActiveDocument.recompute() spreadsheet = Arch.makeIfcSpreadsheet(Wall) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcSpreadsheet/de diff --git a/wiki/translations/de/Arch_JSON.md b/wiki/translations/de/Arch_JSON.md index 1303415084..721ba8151f 100644 --- a/wiki/translations/de/Arch_JSON.md +++ b/wiki/translations/de/Arch_JSON.md @@ -1,9 +1,4 @@ # Arch JSON/de - - - - - Der Hauptzweck dieses Exportformat ist es, FreeCAD-Modelldaten mit anderen Programmiersprachen zu verarbeiten. Das [JSON](http://json.org/)-Format ist wie folgt: { @@ -31,3 +26,6 @@ Beachte, dass Facetten Dreiecke bilden und ihre Integer-Werte sich auf Punkte im [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch JSON/de diff --git a/wiki/translations/de/Arch_MakeIfcSpreadsheet.md b/wiki/translations/de/Arch_MakeIfcSpreadsheet.md index cc6b8a6c62..ae1421f2c5 100644 --- a/wiki/translations/de/Arch_MakeIfcSpreadsheet.md +++ b/wiki/translations/de/Arch_MakeIfcSpreadsheet.md @@ -1,2 +1,5 @@ # Arch MakeIfcSpreadsheet/de 1. REDIRECT [Arch\_IfcSpreadsheet/de](Arch_IfcSpreadsheet/de.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MakeIfcSpreadsheet/de diff --git a/wiki/translations/de/Arch_MergeWalls.md b/wiki/translations/de/Arch_MergeWalls.md index 7148c2e742..a15ab7c1d3 100644 --- a/wiki/translations/de/Arch_MergeWalls.md +++ b/wiki/translations/de/Arch_MergeWalls.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wand](Arch_Wall/de.md) --- +# Arch MergeWalls/de + ## Beschreibung Das [Wände zusammenführen](Arch_MergeWalls/de.md) Werkzeug verschmilzt zwei oder mehr ausgewählte **[Arch Wände](Arch_Wall/de.md)**. @@ -48,8 +50,5 @@ FreeCAD.ActiveDocument.recompute() base = Arch.joinWalls([Wall1, Wall2]) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MergeWalls/de diff --git a/wiki/translations/de/Arch_MeshToShape.md b/wiki/translations/de/Arch_MeshToShape.md index 9133b13e95..438473cfce 100644 --- a/wiki/translations/de/Arch_MeshToShape.md +++ b/wiki/translations/de/Arch_MeshToShape.md @@ -7,6 +7,8 @@ SeeAlso:[Arch NetzAufteilen](Arch_SplitMesh/de.md), [Arch EntferneForm](Arch_RemoveShape/de.md) --- +# Arch MeshToShape/de + ## Beschreibung [Arch NetzZuForm](Arch_MeshToShape/de.md) wandelt ein gewähltes [Polygonnetz](Mesh/de.md) ([Polygonnetz Formteil](Mesh_Feature/de.md)) Objekt in eine [Form](Shape/de.md) ([Part Formteil](Part_Feature/de.md)) Objekt. @@ -59,8 +61,5 @@ FreeCAD.ActiveDocument.recompute() new_obj = Arch.meshToShape(Box) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MeshToShape/de diff --git a/wiki/translations/de/Arch_Module.md b/wiki/translations/de/Arch_Module.md index ac5de8f5a0..3f42c00ef8 100644 --- a/wiki/translations/de/Arch_Module.md +++ b/wiki/translations/de/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/de 1. REDIRECT [Arch\_Workbench/de](Arch_Workbench/de.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/de diff --git a/wiki/translations/de/Arch_MultiMaterial.md b/wiki/translations/de/Arch_MultiMaterial.md index 7d86cedba2..029d07cd98 100644 --- a/wiki/translations/de/Arch_MultiMaterial.md +++ b/wiki/translations/de/Arch_MultiMaterial.md @@ -7,6 +7,8 @@ SeeAlso:[Arch SetMaterial](Arch_SetMaterial/de.md), [Arch CompSetMaterial](Arch_CompSetMaterial/de.md) --- +# Arch MultiMaterial/de + ## Beschreibung Das Multi-Material Werkzeug definiert eine Liste von [Materialien](Material/de.md) mit, für jedes Material, einen Namen und einem Dickenwert. Diese Multimaterialliste kann dann zu einem [Bogen](Arch_Workbench/de.md) Objekt anstelle eines einzelnen [Arch Material](Arch_SetMaterial/de.md) hinzugefügt werden. @@ -49,8 +51,5 @@ Dies entspricht in etwa einer Kombination aus [IfcMaterialLayerSet](https://stan ## Skripten - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MultiMaterial/de diff --git a/wiki/translations/de/Arch_Nest.md b/wiki/translations/de/Arch_Nest.md index 31020bf603..b5cbe7a3fe 100644 --- a/wiki/translations/de/Arch_Nest.md +++ b/wiki/translations/de/Arch_Nest.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Tafel](Arch_Panel/de.md), [Arch Tafelplatte](Arch_Panel_Sheet/de.md) --- +# Arch Nest/de + ## Beschreibung Das ** [Arch Verschachteln](Arch_Nest/de.md)** Werkzeug ermöglicht die Auswahl einer flachen Form als Behälter und einer Reihe anderer flacher Formen, die innerhalb des durch die Behälterform definierten Raums organisiert werden sollen. Dies ist in der Regel für CNC Bearbeitungen erforderlich, bei denen du eine Reihe von Teilen aus einer Grundplatte ausschneiden möchtest und diese Teile so kompakt wie möglich organisieren musst, damit sie weniger Platz auf der Platte einnehmen. @@ -39,8 +41,5 @@ Der Algorithmus hinter dem Verschachtelungswerkzeug befindet sich in ständiger - Im Moment ist der Rand/Abstand zwischen den Teilen noch nicht implementiert. - Die Berechnung kann bei vielen Objekten sehr viel Zeit in Anspruch nehmen. Das wird in Zukunft optimiert werden. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Nest/de diff --git a/wiki/translations/de/Arch_OBJ.md b/wiki/translations/de/Arch_OBJ.md index e7ffe550ea..1075d238b6 100644 --- a/wiki/translations/de/Arch_OBJ.md +++ b/wiki/translations/de/Arch_OBJ.md @@ -1,7 +1,4 @@ # Arch OBJ/de - - - {{docnav/de |[DAE](Arch_DAE/de.md) |[JSON](Arch_JSON/de.md) @@ -61,3 +58,6 @@ mesh.write(Filename="new_example.obj", Material=face_colors, Format="obj") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch OBJ/de diff --git a/wiki/translations/de/Arch_Panel.md b/wiki/translations/de/Arch_Panel.md index a05de60dae..65fadac99e 100644 --- a/wiki/translations/de/Arch_Panel.md +++ b/wiki/translations/de/Arch_Panel.md @@ -9,6 +9,8 @@ SeeAlso:[Arch Panel Cut](Arch_Panel_Cut/de.md), [Arch Panel Sheet](Arch_Panel_Sheet/de.md) --- +# Arch Panel/de + ## Beschreibung Mit diesem Werkzeug kannst du alle Arten von platten-artigen Elementen bauen, typischerweise für Plattenkonstruktionen wie das [WikiHouse](http://www.wikihouse.cc/) Projekt, aber auch für alle Arten von Objekten, die auf einem flachen Profil basieren. @@ -90,8 +92,5 @@ Panel = Arch.makePanel(Rect, thickness=36) - [Wikihouse Portierungs Tutorium](Wikihouse_porting_tutorial/de.md) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel/de diff --git a/wiki/translations/de/Arch_Panel_Cut.md b/wiki/translations/de/Arch_Panel_Cut.md index 5b1750f42e..5672e8b6f6 100644 --- a/wiki/translations/de/Arch_Panel_Cut.md +++ b/wiki/translations/de/Arch_Panel_Cut.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Platte](Arch_Panel/de.md), [Arch Tafelplatte](Arch_Panel_Sheet/de.md), [Arch Verschachteln](Arch_Nest/de.md) --- +# Arch Panel Cut/de + ## Beschreibung Dieses Werkzeug erstellt im 3D-Dokuemnt eine flache 2D-Ansicht einer [Arch Platte](Arch_Panel/de.md), die in eine [Arch Tafel Platte](Arch_Panel_Sheet/de.md) eingefügt oder direkt nach [DXF](Draft_DXF/de.md) exportiert wird. Die Tafelschnitt-Objekte werden auch durch den [Path-Arbeitsbereich](Path_Workbench/de.md) unterstützt. @@ -96,8 +98,5 @@ FreeCAD.ActiveDocument.recompute() - [Wikihouse Portierungs Tutorium](Wikihouse_porting_tutorial/de.md) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Cut/de diff --git a/wiki/translations/de/Arch_Panel_Sheet.md b/wiki/translations/de/Arch_Panel_Sheet.md index b0937e5613..27152246ae 100644 --- a/wiki/translations/de/Arch_Panel_Sheet.md +++ b/wiki/translations/de/Arch_Panel_Sheet.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Tafel](Arch_Panel/de.md), [Arch Tafelschnitt](Arch_Panel_Cut/de.md), [Arch Verschachteln](Arch_Nest/de.md) --- +# Arch Panel Sheet/de + ## Beschreibung Dieses Werkzeug ermöglicht eine 2D Zeichnung zu erstellen, einschließlich einer beliebigen Anzahl von [Arch Tafelschnitt](Arch_Panel_Cut/de.md) Objekten, oder jedes andere 2D Objekt, wie z.B. diejenigen, die mit [Entwurf Arbeitsbereich](Draft_Workbench/de.md) und [Skizzierer Arbeitsbereich](Sketcher_Workbench/de.md) erstellt wurden. Das Tafelblech wird in der Regel für Layout Schnitte erstellt, die von einer CNC Maschine ausgeführt werden sollen. Diese Blätter können dann in eine [DXF](Draft_DXF/de.md) Datei exportiert werden. @@ -149,8 +151,5 @@ Sheet = Arch.makePanelSheet([Cut1, Cut2, Cut3])
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Sheet/de diff --git a/wiki/translations/de/Arch_Pipe.md b/wiki/translations/de/Arch_Pipe.md index b93bcf9401..aa1341ca91 100644 --- a/wiki/translations/de/Arch_Pipe.md +++ b/wiki/translations/de/Arch_Pipe.md @@ -9,6 +9,8 @@ SeeAlso:[Arch RohrVerbinder](Arch_PipeConnector/de.md), [Arch Ausstattung](Arch_Equipment/de.md) --- +# Arch Pipe/de + ## Beschreibung Dieses Werkzeug ermöglicht es, Rohre von Grund auf oder aus ausgewählten Objekten zu erstellen. Die ausgewählten Objekte müssen Teilbasiert sein (Entwurf, Skizze, etc\...) und einen und nur einen offenen Draht enthalten. @@ -109,8 +111,5 @@ Pipe2 = Arch.makePipe(diameter=120, length=3000) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Pipe/de diff --git a/wiki/translations/de/Arch_PipeConnector.md b/wiki/translations/de/Arch_PipeConnector.md index fe6a57bf21..e5a6fae837 100644 --- a/wiki/translations/de/Arch_PipeConnector.md +++ b/wiki/translations/de/Arch_PipeConnector.md @@ -9,6 +9,8 @@ SeeAlso:[Arch Rohr](Arch_Pipe/de.md), [Arch Ausstattung](Arch_Equipment/de.md) --- +# Arch PipeConnector/de + ## Beschreibung Dieses Werkzeug ermöglicht eine Eck- oder T-Stück Verbindung zwischen zwei oder drei ausgewählten [Arch Rohre](Arch_Pipe/de.md) erstellen. @@ -74,11 +76,5 @@ Conn3 = Arch.makePipeConnector([Pipe4, Pipe5], radius=400) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch PipeConnector/de diff --git a/wiki/translations/de/Arch_Preferences.md b/wiki/translations/de/Arch_Preferences.md index 4dd184a8e1..f385c6a607 100644 --- a/wiki/translations/de/Arch_Preferences.md +++ b/wiki/translations/de/Arch_Preferences.md @@ -1,6 +1,4 @@ # Arch Preferences/de - - Die Einstellungen des [Arch Arbeitsbereichs](Arch_Workbench/de.md) befinden sich im [Einstellungseditor](Preferences_Editor/de.md), **Bearbeiten → Einstellungen → Arch**. Es gibt zwei Reiter: Allgemeine Einstellungen und Standardvorgaben. @@ -17,3 +15,6 @@ Es gibt zwei Reiter: Allgemeine Einstellungen und Standardvorgaben. [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Preferences/de diff --git a/wiki/translations/de/Arch_Profile.md b/wiki/translations/de/Arch_Profile.md index dc6213383f..df8a2322b9 100644 --- a/wiki/translations/de/Arch_Profile.md +++ b/wiki/translations/de/Arch_Profile.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Profile/de + ## Beschreibung Das Profil-Werkzeug erstellt ein parametrisches 2D-Profil-Objekt. Dieses Objekt kann dann als eine Basis in verschiedenen anderen Werkzeugen werden, die Extrusion durchführen, wie [Arch Rahmen](Arch_Frame/de.md), [Arch Vorhangfassade](Arch_CurtainWall/de.md) oder [Part Extrudieren](Part_Extrude/de.md). @@ -89,8 +91,5 @@ Arch.makeProfile([0,'REC','REC100x100','R',100,100]) wobei das erste Element der Liste eine Bestellnummer (order number) ist, die bisher nicht verwendet wird. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Profile/de diff --git a/wiki/translations/de/Arch_Project.md b/wiki/translations/de/Arch_Project.md index 5cd970fc0f..b9624d7cb9 100644 --- a/wiki/translations/de/Arch_Project.md +++ b/wiki/translations/de/Arch_Project.md @@ -8,6 +8,8 @@ SeeAlso:[Architektur Grundstück](Arch_Site/de.md), [Architektur Gebäude](Arch_Building/de.md) --- +# Arch Project/de + ## Beschreibung Das Arch Projekt ist ein spezielles Objekt, das geeignet ist, eine bessere Kompatibilität mit [IFC](Arch_IFC/de.md) Dateien hinzuzufügen. Jede IFC Datei muss eine [IfcProject](https://standards.buildingsmart.org/IFC/RELEASE/IFC4_1/FINAL/HTML/schema/ifckernel/lexical/ifcproject.htm) Einheit enthalten. Das IfcProjekt wird meist verwendet, um allgemeine Projekteinstellungen wie Projektionssysteme, für GIS Kompatibilität oder Einheitensysteme zu definieren. @@ -21,8 +23,5 @@ Beachte, dass zwar jedes andere BIM Objekt zu einem Projekt hinzugefügt werden 1. Drücke die ** [Arch Projekt](Arch_Project/de.md)** Taste oder drücke die Tasten**P** und dann **O**. 2. Füge deinem Projekt ein beliebiges Objekt hinzu, indem du es per Ziehen & Ablegen auf das Projekt in der [Baumansicht](Tree_view/de.md) ziehst. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Project/de diff --git a/wiki/translations/de/Arch_Rebar.md b/wiki/translations/de/Arch_Rebar.md index 035f94bf90..e28e5d2af6 100644 --- a/wiki/translations/de/Arch_Rebar.md +++ b/wiki/translations/de/Arch_Rebar.md @@ -8,6 +8,8 @@ SeeAlso:[Architektur Struktur](Arch_Structure/de.md), [Verstärkungserweiterung](Reinforcement_Workbench/de.md) --- +# Arch Rebar/de + ## Beschreibung Das [Architektur Bewehrung](Arch_Rebar/de.md) Werkzeug erlaubt es, [Bewehrungsstäbe](https://de.wikipedia.org/wiki/Bewehrungsstahl) in [Struktur](Arch_Structure/de.md) Objekten zu platzieren. @@ -120,3 +122,6 @@ FreeCAD.ActiveDocument.recompute() [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar/de diff --git a/wiki/translations/de/Arch_Rebar_BOM.md b/wiki/translations/de/Arch_Rebar_BOM.md index 24b5e51403..cf2f5f3128 100644 --- a/wiki/translations/de/Arch_Rebar_BOM.md +++ b/wiki/translations/de/Arch_Rebar_BOM.md @@ -8,6 +8,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench/de.md), [Bewehrungsstab Biegeplan](Reinforcement_Bar_Bending_Schedule/de.md), [Bewehrungszeichnungsbemessung](Arch_Rebar_Drawing_Dimensioning/de.md) --- +# Arch Rebar BOM/de + ## Beschreibung Das [Stücklisten](Arch_Rebar_BOM/de.md)-Werkzeug ermöglicht dem Benutzer eine Stückliste von Bewehrungsstäben zu erstellen. @@ -525,3 +527,6 @@ BillOfMaterial_SVG.makeBillOfMaterialSVG( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BOM/de diff --git a/wiki/translations/de/Arch_Rebar_BeamReinforcement.md b/wiki/translations/de/Arch_Rebar_BeamReinforcement.md index ca35249e8a..a4b7edb0d2 100644 --- a/wiki/translations/de/Arch_Rebar_BeamReinforcement.md +++ b/wiki/translations/de/Arch_Rebar_BeamReinforcement.md @@ -8,6 +8,8 @@ SeeAlso:[Reinforcement_Workbench/de](Reinforcement_Workbench/de.md), [Arch Rebar](Arch_Rebar/de.md), [SäulenVerstärkung ZweiBinderSechsStäbe](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/de.md), [Architektur Bewehrung](Arch_Rebar/de.md) --- +# Arch Rebar BeamReinforcement/de + ## Beschreibung Das [Balken Verstärkung](Arch_Rebar_BeamReinforcement/de.md) Werkzeug erlaubt dem Anwender Bewehrungsstäbe innerhalb eines Balken [Architektur Struktur](Arch_Structure/de.md) Objekts erzeugen. @@ -367,3 +369,6 @@ RebarGroup = TwoLeggedBeam.makeReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BeamReinforcement/de diff --git a/wiki/translations/de/Arch_Rebar_BentShape.md b/wiki/translations/de/Arch_Rebar_BentShape.md index b3e003eb6c..c03d0a7a2b 100644 --- a/wiki/translations/de/Arch_Rebar_BentShape.md +++ b/wiki/translations/de/Arch_Rebar_BentShape.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench/de.md), [Arch Bewehrung](Arch_Rebar/de.md), [bügelförmiger Bewehrungsstab](Arch_Rebar_Stirrup/de.md) --- +# Arch Rebar BentShape/de + ## Beschreibung Das [Abgewinkelter Bewehrungsstab](Arch_Rebar_BentShape/de.md)-Werkzeug erlaubt es dem Anwender, einen Satz von abgewinkelten Bewehrungsstäben in einem [Struktur](Arch_Structure/de.md)-Objekt zu erstellen. @@ -150,3 +152,6 @@ BentShapeRebar.editBentShapeRebar(Rebar2, 50, 35, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BentShape/de diff --git a/wiki/translations/de/Arch_Rebar_Circular_ColumnReinforcement.md b/wiki/translations/de/Arch_Rebar_Circular_ColumnReinforcement.md index 90b58d5019..4d12131cd2 100644 --- a/wiki/translations/de/Arch_Rebar_Circular_ColumnReinforcement.md +++ b/wiki/translations/de/Arch_Rebar_Circular_ColumnReinforcement.md @@ -8,6 +8,8 @@ SeeAlso:[SäulenVerstärkung ZweiBinderSechsStäbe](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/de.md), [Arch Bewehrung](Arch_Rebar/de.md) --- +# Arch Rebar Circular ColumnReinforcement/de + ## Beschreibung Das [Säulenverstärkung](Arch_Rebar_Circular_ColumnReinforcement/de.md) Werkzeug ermöglicht es dem Anwender, Bewehrungsstäbe innerhalb eines Stützen [Architektur Struktur](Arch_Structure/de.md) Objektes zu erzeugen. @@ -201,3 +203,6 @@ rebar_group = CircularColumn.editReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Circular ColumnReinforcement/de diff --git a/wiki/translations/de/Arch_Rebar_ColumnReinforcement.md b/wiki/translations/de/Arch_Rebar_ColumnReinforcement.md index 7be73f52c3..be1c3dae59 100644 --- a/wiki/translations/de/Arch_Rebar_ColumnReinforcement.md +++ b/wiki/translations/de/Arch_Rebar_ColumnReinforcement.md @@ -8,6 +8,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench/de.md), [Arch Bewehrung](Arch_Rebar/de.md), [Arch Bewehrungsstab spiralförmig](Arch_Rebar_Helical/de.md), [ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) --- +# Arch Rebar ColumnReinforcement/de + ## Beschreibung Das [StützenVerstärkung](Arch_Rebar_ColumnReinforcement/de.md)-Werkzeug ermöglicht es dem Anwender, Bewehrungsstäbe innerhalb eines Stützen [Architektur Struktur](Arch_Structure/de.md)-Objektes zu erzeugen. @@ -564,3 +566,6 @@ rebar_group = SingleTieMultipleRebars.editSingleTieMultipleRebars( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar ColumnReinforcement/de diff --git a/wiki/translations/de/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md b/wiki/translations/de/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md index 873a107289..4ce2483a0b 100644 --- a/wiki/translations/de/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md +++ b/wiki/translations/de/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar ColumnReinforcement TwoTiesSixRebars/de + ## Beschreibung The [Column Reinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) tool allows the user to create reinforcing bars (Two Ties Six Rebars) inside a Column [Arch Structure](Arch_Structure.md) object. @@ -337,3 +339,6 @@ rebar_group = TwoTiesSixRebars.editTwoTiesSixRebars( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar ColumnReinforcement TwoTiesSixRebars/de diff --git a/wiki/translations/de/Arch_Rebar_Dimensioning.md b/wiki/translations/de/Arch_Rebar_Dimensioning.md index 6ea2045b87..00cbeccea7 100644 --- a/wiki/translations/de/Arch_Rebar_Dimensioning.md +++ b/wiki/translations/de/Arch_Rebar_Dimensioning.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Rebar Dimensioning/de + Please Note: The below work is present in develop branch of Reinforcement workbench [here](https://github.com/amrit3701/FreeCAD-Reinforcement/tree/develop) ## Beschreibung @@ -352,3 +354,6 @@ for visible_rebar in visible_rebars: [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Dimensioning/de diff --git a/wiki/translations/de/Arch_Rebar_Drawing.md b/wiki/translations/de/Arch_Rebar_Drawing.md index bd71b182aa..c490ae9f0e 100644 --- a/wiki/translations/de/Arch_Rebar_Drawing.md +++ b/wiki/translations/de/Arch_Rebar_Drawing.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Rebar Drawing/de + Bitte beachte: Die folgende Arbeit ist im Entwicklungszweig des Arbeitsbereichs Bewehrung vorhanden [hier](https://github.com/amrit3701/FreeCAD-Reinforcement/tree/develop) ## Beschreibung @@ -385,3 +387,6 @@ for drawing_view in ("Front", "Rear", "Left", "Right", "Top", "Bottom"): [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Drawing/de diff --git a/wiki/translations/de/Arch_Rebar_Drawing_Dimensioning.md b/wiki/translations/de/Arch_Rebar_Drawing_Dimensioning.md index 5620e97e27..bc6f5a19dd 100644 --- a/wiki/translations/de/Arch_Rebar_Drawing_Dimensioning.md +++ b/wiki/translations/de/Arch_Rebar_Drawing_Dimensioning.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar Bill Of Material](Arch_Rebar_BOM.md), [Reinforcement Rebar Shape Cut List](Reinforcement_Bar_Shape_Cut_List.md) --- +# Arch Rebar Drawing Dimensioning/de + ## Beschreibung The [Reinforcement Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) tool allows the user to create drawing and dimensioning of reinforcing bars. @@ -1076,3 +1078,6 @@ for visible_rebar in visible_rebars: [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Drawing Dimensioning/de diff --git a/wiki/translations/de/Arch_Rebar_Helical.md b/wiki/translations/de/Arch_Rebar_Helical.md index be8a86e32c..e8c8572099 100644 --- a/wiki/translations/de/Arch_Rebar_Helical.md +++ b/wiki/translations/de/Arch_Rebar_Helical.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench/de.md), [Arch Bewehrung](Arch_Rebar/de.md), [bügelförmiger Bewehrungsstab](Arch_Rebar_Stirrup/de.md),[Arch Stützenverstärkung](Arch_Rebar_ColumnReinforcement/de.md) --- +# Arch Rebar Helical/de + ## Beschreibung Das [spiralförmiger Bewehrungsstab](Arch_Rebar_Helical/de.md)-Werkzeug erlaubt es dem Anwender, einen fortlaufenden spiralförmigen Bewehrungsstab in einem [Struktur](Arch_Structure/de.md)-Objekt zu erstellen. @@ -123,3 +125,6 @@ HelicalRebar.editHelicalRebar(Rebar, 20, 100, 20, 20, 100) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Helical/de diff --git a/wiki/translations/de/Arch_Rebar_LShape.md b/wiki/translations/de/Arch_Rebar_LShape.md index a5e2e530e8..cb44badcf0 100644 --- a/wiki/translations/de/Arch_Rebar_LShape.md +++ b/wiki/translations/de/Arch_Rebar_LShape.md @@ -7,6 +7,8 @@ SeeAlso:[Verstärkung](Reinforcement_Workbench/de.md), [Bewehrungsstab](Arch_Rebar/de.md), [abgewinkelter Bewehrungsstab](Arch_Rebar_BentShape/de.md) --- +# Arch Rebar LShape/de + ## Beschreibung Das [L-förmiger Bewehrungsstab](Arch_Rebar_LShape/de.md)-Werkzeug erlaubt es dem Anwender, einen Satz von L-förmigen Bewehrungsstäben in einem [Struktur](Arch_Structure/de.md)-Objekt zu erstellen. @@ -147,3 +149,6 @@ LShapeRebar.editLShapeRebar(Rebar2, 50, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar LShape/de diff --git a/wiki/translations/de/Arch_Rebar_Stirrup.md b/wiki/translations/de/Arch_Rebar_Stirrup.md index 84a43b6048..4ab21aa74f 100644 --- a/wiki/translations/de/Arch_Rebar_Stirrup.md +++ b/wiki/translations/de/Arch_Rebar_Stirrup.md @@ -7,6 +7,8 @@ SeeAlso:[Verstärkung](Reinforcement_Workbench/de.md), [Bewehrungsstab](Arch_Rebar/de.md), [Spiralförmiger Bewehrungsstab](Arch_Rebar_Helical/de.md) --- +# Arch Rebar Stirrup/de + ## Beschreibung Das [Bügelförmiger Bewehrungsstab](Arch_Rebar_Stirrup/de.md)-Werkzeug erlaubt es dem Anwender, einen Satz von bügelförmigen Bewehrungsstäben in einem [Struktur](Arch_Structure/de.md)-Objekt zu erstellen. @@ -139,3 +141,6 @@ Stirrup.editStirrup(Rebar, 20, 20, 20, 20, 50, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Stirrup/de diff --git a/wiki/translations/de/Arch_Rebar_Straight.md b/wiki/translations/de/Arch_Rebar_Straight.md index 46f01f203d..f9efa2f472 100644 --- a/wiki/translations/de/Arch_Rebar_Straight.md +++ b/wiki/translations/de/Arch_Rebar_Straight.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch Rebar Straight/de + ## Beschreibung Das [Arch Gerader Bewehrungsstab](Arch_Rebar_Straight/de.md)-Werkzeug erlaubt es dem Anwender, einen Satz von geraden Bewehrungsstäben in einem [Struktur](Arch_Structur/de.md)-Objekt zu erstellen. @@ -206,3 +208,6 @@ StraightRebar.editStraightRebar(Rebar4, 50, ("Right Side", 50), 100, 100, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Straight/de diff --git a/wiki/translations/de/Arch_Rebar_UShape.md b/wiki/translations/de/Arch_Rebar_UShape.md index d5ce359905..6d000f9030 100644 --- a/wiki/translations/de/Arch_Rebar_UShape.md +++ b/wiki/translations/de/Arch_Rebar_UShape.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch Rebar UShape/de + ## Beschreibung Das [U-förmiger Bewehrungsstab](Arch_Rebar_UShape/de.md)-Werkzeug erlaubt es dem Anwender, einen Satz von U-förmigen Bewehrungsstäben in einem [Struktur](Arch_Structur/de.md)-Objekt zu erstellen. @@ -144,3 +146,6 @@ UShapeRebar.editUShapeRebar(Rebar2, 70, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar UShape/de diff --git a/wiki/translations/de/Arch_Reference.md b/wiki/translations/de/Arch_Reference.md index c5b4a54232..9d3b31275d 100644 --- a/wiki/translations/de/Arch_Reference.md +++ b/wiki/translations/de/Arch_Reference.md @@ -8,6 +8,8 @@ SeeAlso:[Arch GebäudeTeil](Arch_BuildingPart/de.md) --- +# Arch Reference/de + ## Beschreibung @@ -63,5 +65,5 @@ Arch.makeReference("/path/to/some/file.FSCtd","myPart") |IconC=Workbench_Arch.svg }} - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Reference/de diff --git a/wiki/translations/de/Arch_Remove.md b/wiki/translations/de/Arch_Remove.md index db223011ec..29277c2008 100644 --- a/wiki/translations/de/Arch_Remove.md +++ b/wiki/translations/de/Arch_Remove.md @@ -7,6 +7,8 @@ SeeAlso:[Arch SchneideLinie](Arch_CutLine/de.md), [Arch SchneideEbene](Arch_CutPlane/de.md), [Arch Hinzufügen](Arch_Add/de.md) --- +# Arch Remove/de + ## Beschreibung Das Entfernen Werkzeug erlaubt dir zwei Arten von Operationen: @@ -64,10 +66,7 @@ Draft.move(Box, FreeCAD.Vector(1000, 700, 0)) Arch.removeComponents(Box, Wall) FreeCAD.ActiveDocument.recompute() -``` - - - - - +``` +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove/de diff --git a/wiki/translations/de/Arch_RemoveShape.md b/wiki/translations/de/Arch_RemoveShape.md index 33e4413a8b..c23db757c4 100644 --- a/wiki/translations/de/Arch_RemoveShape.md +++ b/wiki/translations/de/Arch_RemoveShape.md @@ -7,6 +7,8 @@ SeeAlso:[Arch NetzAufteilen](Arch_SplitMesh/de.md), [Arch NetzZuForm](Arch_MeshToShape/de.md) --- +# Arch RemoveShape/de + ## Beschreibung Dieses Werkzeug versucht, beim entfernen der inneren kubische Form eines ** [Arch Wand](Arch_Wall/de.md)** oder ** [Arch Struktur](Arch_Structure/de.md)**, und einstellen seiner Eigenschaften, es vollständig parametrisch zu machen. Dieses Werkzeug funktioniert nur, wenn die zugrunde liegende Form kubisch ist (genau 6 Flächen, alle Ecken haben nur rechte Winkel). @@ -53,8 +55,5 @@ Arch.removeShape(Structure) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch RemoveShape/de diff --git a/wiki/translations/de/Arch_Roof.md b/wiki/translations/de/Arch_Roof.md index cfb551008b..f70813c592 100644 --- a/wiki/translations/de/Arch_Roof.md +++ b/wiki/translations/de/Arch_Roof.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Struktur](Arch_Structure/de.md), [Arch Wand](Arch_Wall/de.md) --- +# Arch Roof/de + ## Beschreibung Das ** [Arch Dach](Arch_Roof.md)** Werkzeug erlaubt die Erstellung eines geneigten Daches aus einem ausgewählten Linienzug. Das erstellte Dach Objekt ist parametrisch und behält seine Verbindung zum Basisobjekt. Das Prinzip ist, dass jeder Kante ein Dachprofil (Neigung, Breite, Überhang, Dicke) zugewiesen wird. @@ -104,8 +106,5 @@ roof1 = Arch.makeRoof(wire) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Roof/de diff --git a/wiki/translations/de/Arch_Schedule.md b/wiki/translations/de/Arch_Schedule.md index 948a74ab99..4f34d21166 100644 --- a/wiki/translations/de/Arch_Schedule.md +++ b/wiki/translations/de/Arch_Schedule.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Ausstattung](Arch_Equipment/de.md) --- +# Arch Schedule/de + ## Beschreibung Das Ablaufplan Werkzeug erlaubt dir ein [Tabellenblatt](Spreadsheet_Workbench/de.md) zu erstellen und automatisch mit Inhalten aus dem Modell zu befüllen. @@ -97,8 +99,5 @@ Die Kalkulationstabelle kann dann ganz normal von der Arbeitsbereich Tabellenkal Es ist möglich, eigene Eigenschaften zu Objekten hinzuzufügen. Diese werden [Dynamische Eigenschaften](Property_editor/de#Maßnahmen.md) genannt. Falls sie mit der **Prefix group name**-Option ausgewählt wurden, beginnen ihre Namen tatsächlich mit dem Gruppennamen, aber dieser Präfix wird nicht im [Eigenschafteneditor](Property_editor/de.md) angezeigt. Ihre Namen haben die Form: `NameOfGroup_NameOfProperty`. Um sie in einem Zeitplan zu referenzieren muss dieser vollständige Name verwendet werden. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Schedule/de diff --git a/wiki/translations/de/Arch_SectionPlane.md b/wiki/translations/de/Arch_SectionPlane.md index 4c7ce39de6..57a5bc0590 100644 --- a/wiki/translations/de/Arch_SectionPlane.md +++ b/wiki/translations/de/Arch_SectionPlane.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurf Form2DAnsicht](Draft_Shape2DView/de.md), [TechDraw ArchAnsicht](TechDraw_ArchView/de.md) --- +# Arch SectionPlane/de + ## Beschreibung Dieses Werkzeug platziert im aktuellen Dokument eine Schnittebene \"Ding\", die eine Schnitt- oder Ansichtsebene definiert. Das \"Ding\" wird entsprechend der aktuellen [Entwurf Arbeitsebene](Draft_SelectPlane/de.md) platziert und kann durch Verschieben und Drehen verschoben und neu ausgerichtet werden, bis es die 2D Ansicht beschreibt, die du erhalten möchtest. Das Objekt Schnittebene berücksichtigt nur einen bestimmten Satz von Objekten. Objekte, die beim Erstellen einer Schnittebene ausgewählt werden, werden automatisch zu diesem Satz hinzugefügt. Andere Objekte können später mit den [Arch Komponente hinzufügen](Arch_Add/de.md) und [Arch Komponente entfernen](Arch_Remove/de.md) Werkzeugen hinzugefügt oder daraus entfernt werden oder durch Doppelklicken auf die Schnittebene in der Baumansicht. @@ -109,11 +111,5 @@ Section3 = Arch.makeSectionPlane([Site]) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane/de diff --git a/wiki/translations/de/Arch_SelectNonSolidMeshes.md b/wiki/translations/de/Arch_SelectNonSolidMeshes.md index b0d23075d1..8dfa08aa92 100644 --- a/wiki/translations/de/Arch_SelectNonSolidMeshes.md +++ b/wiki/translations/de/Arch_SelectNonSolidMeshes.md @@ -8,6 +8,8 @@ SeeAlso:[Arch NetzAufteilen](Arch_SplitMesh/de.md), [Arch NetzZuForm](Arch_MeshToShape/de.md) --- +# Arch SelectNonSolidMeshes/de + ## Beschreibung Dieses Werkzeug identifiziert und wählt die nicht-festen (nicht-[1](https://de.wikipedia.org/wiki/Mannigfaltigkeit)) Netze in einer ausgewählten Gruppe von ausgewählten Mesh Workbench [Netz](Mesh_Workbench/de.md) Objekten. @@ -17,8 +19,5 @@ Dieses Werkzeug identifiziert und wählt die nicht-festen (nicht-[1](https://de. 1. Wähle ein Netzobjekt 2. Drücke den **[Wähle nicht feste](Arch_SelectNonSolidMeshes/de.md)** Eintrag in {{MenuCommand/de|Arch → Dienstprogramme → Wähle nicht fest}}. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SelectNonSolidMeshes/de diff --git a/wiki/translations/de/Arch_SetMaterial.md b/wiki/translations/de/Arch_SetMaterial.md index 564325e085..d9f30f8fa0 100644 --- a/wiki/translations/de/Arch_SetMaterial.md +++ b/wiki/translations/de/Arch_SetMaterial.md @@ -8,6 +8,8 @@ SeeAlso:[Arch CompSetMaterial](Arch_CompSetMaterial/de.md), [Arch MultiMaterial](Arch_MultiMaterial/de.md) --- +# Arch SetMaterial/de + ## Beschreibung Die Material Werkzeuge erlauben dir [Materialien](Material/de.md) zum aktiven Dokument hinzuzufügen und ein Material einem [Arch](Arch_Workbench/de.md)-Objekt zuzuweisen. Materialien können alle Eigenschaften eines bestimmten Materials aufweisen und die Farbe des Objekts steuern, an das es angehängt wird. Materialien werden in einem **Materialien** Ordner im aktiven Dokument gespeichert. @@ -48,8 +50,5 @@ Die Material Werkzeuge erlauben dir [Materialien](Material/de.md) zum aktiven Do Dies entspricht in etwa [IfcMaterial](https://standards.buildingsmart.org/IFC/DEV/IFC4_2/FINAL/HTML/link/ifcmaterial.htm). - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SetMaterial/de diff --git a/wiki/translations/de/Arch_Site.md b/wiki/translations/de/Arch_Site.md index 0137a5f555..7548f317c4 100644 --- a/wiki/translations/de/Arch_Site.md +++ b/wiki/translations/de/Arch_Site.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Etage](Arch_Floor/de.md), [Arch Gebäude](Arch_Building/de.md) --- +# Arch Site/de + ## Beschreibung Der Arch Baustelle ist ein spezielles Objekt, das Eigenschaften eines Standard FreeCAD Gruppenobjekts und Arch Objekten kombiniert. Es ist besonders zur Repräsentation einer gesamten Projektfläche bzw. eines Terrains geeignet. In IFC-basierter architektonischer Arbeit dient es der Organisation deines CAD Modells und enthält [Gebäude](Arch_Building/de.md) Objekte. Die Baustelle wird auch verwendet, um vorhandenes Gelände zu verwalten und anzuzeigen und kann benutzt werden, um das Volumen von aufzufüllender oder abzutragender Erde zu berechnen. @@ -164,8 +166,5 @@ Node = Arch.makeSolarDiagram(-46.38, -23.33, scale=10000, complete=True) FreeCAD.Gui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Site/de diff --git a/wiki/translations/de/Arch_Space.md b/wiki/translations/de/Arch_Space.md index d25a2b48da..f73934a898 100644 --- a/wiki/translations/de/Arch_Space.md +++ b/wiki/translations/de/Arch_Space.md @@ -8,6 +8,8 @@ SeeAlso:[Wand](Arch_Wall/de.md), [Struktur](Arch_Structure/de.md) --- +# Arch Space/de + ## Beschreibung Mit dem Raum Werkzeug kannst du ein leeres Volumen festlegen, entweder indem du es auf einer festen Form basierst, oder indem du seine Grenzen oder eine Mischung aus beidem festlegst. Wenn es ausschließlich auf Begrenzungen basiert, wird das Volumen berechnet, indem von der Begrenzungsbox aller gegebenen Begrenzungen ausgegangen und die Räume hinter jeder Begrenzung subtrahiert werden. Das Raumobjekt definiert immer ein festes Volumen. Die Bodenfläche eines Raumobjekts, die berechnet wird, indem eine horizontale Ebene im Massenschwerpunkt des Raumvolumens geschnitten wird, kann ebenfalls angezeigt werden. @@ -148,5 +150,5 @@ Arch.removeSpaceBoundaries(Space, selection) |IconC=Workbench_Arch.svg }} - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Space/de diff --git a/wiki/translations/de/Arch_SplitMesh.md b/wiki/translations/de/Arch_SplitMesh.md index 8c8a3a001a..6ce34ff4a2 100644 --- a/wiki/translations/de/Arch_SplitMesh.md +++ b/wiki/translations/de/Arch_SplitMesh.md @@ -7,6 +7,8 @@ SeeAlso:[Arch SelectNonSolidMeshes](Arch_SelectNonSolidMeshes/de.md), [Arch NetzZuForm](Arch_MeshToShape/de.md) --- +# Arch SplitMesh/de + ## Beschreibung Diese Werkzeug teilt ein ausgewähltes [Mesh](Mesh_Workbench/de.md)-Objekt in seine einzelnen Bestandteile. @@ -56,11 +58,5 @@ mesh_obj.ViewObject.DisplayMode = "Flat Lines" new_list = Arch.splitMesh(mesh_obj) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SplitMesh/de diff --git a/wiki/translations/de/Arch_Stairs.md b/wiki/translations/de/Arch_Stairs.md index e388326ce2..e9db205f15 100644 --- a/wiki/translations/de/Arch_Stairs.md +++ b/wiki/translations/de/Arch_Stairs.md @@ -9,6 +9,8 @@ SeeAlso:[Arch Struktur](Arch_Structure/de.md), [Arch Ausstattung](Arch_Equipment/de.md) --- +# Arch Stairs/de + ## Beschreibung Das [Treppen](Arch_Stairs/de.md) Werkzeug ermöglicht dir automatisch verschiedene Treppentypen zu erstellen. Aktuell werden nur gerade Treppen (mit und ohne mittiges Treppenpodest) unterstützt. Treppen können von Grund auf neu gebaut werden, oder aus einer geraden [Linie](Draft_Line/de.md), in diesem Fall folgt die Treppe der Linie. Wenn die Linie nicht horizontal ist, sondern eine vertikale Neigung hat, folgt die Treppe ebenfalls ihrer Neigung. @@ -95,8 +97,5 @@ import Arch Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Stairs/de diff --git a/wiki/translations/de/Arch_Structure.md b/wiki/translations/de/Arch_Structure.md index 72d95a498a..6a2b945978 100644 --- a/wiki/translations/de/Arch_Structure.md +++ b/wiki/translations/de/Arch_Structure.md @@ -7,6 +7,8 @@ SeeAlso:[Wand](Arch_Wall/de.md), [Arch Rebar](Arch_Rebar/de.md) --- +# Arch Structure/de + ## Beschreibung Das [Arch Struktur](Arch_Structure/de.md)-Werkzeug ermöglicht die Konstruktion von Bauelementen wie Ständern oder Querträgern, indem Breite, Länge und Höhe angegeben werden, oder das Element aus einem 2D-Profil heraus erzeugt wird (Fläche, Kantenzug oder Skizze). @@ -121,10 +123,7 @@ FreeCAD.ActiveDocument.recompute() Structure2 = Arch.makeStructure(None, length=500, width=1000, height=3000) Draft.move(Structure2, FreeCAD.Vector(2000, 0, 0)) FreeCAD.ActiveDocument.recompute() -``` - - - - - +``` +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/de diff --git a/wiki/translations/de/Arch_Survey.md b/wiki/translations/de/Arch_Survey.md index f0cd209acd..423c00060a 100644 --- a/wiki/translations/de/Arch_Survey.md +++ b/wiki/translations/de/Arch_Survey.md @@ -7,6 +7,8 @@ SeeAlso:[FCInfo (Makro)](Macro_FCInfo/de.md), [Makro EinfacheEigenschaften (Makro)](Macro_SimpleProperties/de.md) --- +# Arch Survey/de + ## Beschreibung Das ** [Arch Survey](Arch_Survey/de.md)** Werkzeug verwendet einen speziellen Vermessungsmodus, der es dir ermöglicht, Maße und Informationen schnell aus einem Modell zu entnehmen und diese Informationen auf andere Anwendungen zu übertragen. Wenn du dich im Vermessungsmodus befindest und auf verschiedene Unterelemente von 3D-Objekten klickst, werden je nachdem, worauf du klickst, die folgenden Informationen erfasst: @@ -65,8 +67,5 @@ for obj in selection: print("Center of Mass: %f", element.CenterOfMass) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Survey/de diff --git a/wiki/translations/de/Arch_ToggleIfcBrepFlag.md b/wiki/translations/de/Arch_ToggleIfcBrepFlag.md index 0f6c48db9e..14d373bbac 100644 --- a/wiki/translations/de/Arch_ToggleIfcBrepFlag.md +++ b/wiki/translations/de/Arch_ToggleIfcBrepFlag.md @@ -7,6 +7,8 @@ SeeAlso:[Arch IfcExplorer](Arch_IfcExplorer/de.md), [Arch IFC](Arch_IFC/de.md) --- +# Arch ToggleIfcBrepFlag/de + ## Beschreibung Dieses Werkzeug schaltet die IfcBrep-Markierung eines ausgewählten [Arch](Arch_Workbench/de.md)-Objekts an/aus (die Voreinstellung ist immer aus). Wenn die Markierung an ist, wird das Objekt beim Export nach IFC als [IfcFacetedBrep](http://www.buildingsmart-tech.org/ifc/IFC4/final/html/schema/ifcgeometricmodelresource/lexical/ifcfacetedbrep.htm) Objekt exportiert, auch wenn eine übergeordnete Exportart wie IfcExtrudedAreaSolid oder IfcBooleanResult möglich ist. Obwohl IfcFacetedBrep-Objekte schwerer und weniger bearbeitbar sind (sie verlieren einige Geometrieinformationen wie z.B. die Modellierungshistorie), sind sie oft weniger fehleranfällig. Das Setzen dieser Markierung ermöglicht es, einige Fälle von Objekten zu lösen, die nicht korrekt exportiert werden, wenn die Markierung nicht gesetzt ist. @@ -16,11 +18,5 @@ Dieses Werkzeug schaltet die IfcBrep-Markierung eines ausgewählten [Arch](Arch_ 1. Wähle ein Arch Objekt aus. 2. Wähle die **** Schaltfläche oder **Arch** → **Utilities** → ** [Umschalten IfcBrepMarkierung](Arch_ToggleIfcBrepFlag.md)** aus dem oberen Menü. - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleIfcBrepFlag/de diff --git a/wiki/translations/de/Arch_ToggleSubs.md b/wiki/translations/de/Arch_ToggleSubs.md index 0517a5168f..e3e6305272 100644 --- a/wiki/translations/de/Arch_ToggleSubs.md +++ b/wiki/translations/de/Arch_ToggleSubs.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Komponente](Arch_Component/de.md) --- +# Arch ToggleSubs/de + ## Beschreibung Dieses Werkzeug schaltet die Sichtbarkeit aller Subtraktionen eines [Arch](Arch_Workbench/de.md) Objekts zwischen sichtbar und verborgen um. @@ -27,8 +29,5 @@ Die Farbe eines Subtraktionselements kann dem Stil der [Entwurfskonstruktion](Dr Der [Entwurfskonstruktion](Draft_ToggleConstructionMode/de.md) Stil kann in den [Entwurf Einstellungen](Draft_Preferences/de.md), im Menü {{MenuCommand/de|Einstellungen → Entwurf → Allgemeiner Entwurf}} eingestellt werden. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleSubs/de diff --git a/wiki/translations/de/Arch_Truss.md b/wiki/translations/de/Arch_Truss.md index 8de662c599..01b7bc9fd3 100644 --- a/wiki/translations/de/Arch_Truss.md +++ b/wiki/translations/de/Arch_Truss.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Truss/de + ## Beschreibung Das [Architektur Fachwerkswerkzeug](Arch_Truss/de.md) baut ein [Fachwerk](https://de.wikipedia.org/wiki/Fachwerk)sobjekt auf, entweder aus einem ausgewählten linearen Objekt (z.B. [Entwurf Linie](Draft_Line/de.md) oder [Skizze](Sketcher_NewSketch/de.md)), oder von Grund auf neu, wenn beim Aufruf des Befehls kein Objekt ausgewählt ist. @@ -90,8 +92,5 @@ truss.HeightEnd = 400 # adjust other needed properties ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Truss/de diff --git a/wiki/translations/de/Arch_Wall.md b/wiki/translations/de/Arch_Wall.md index cf582c2b00..6cf28231c2 100644 --- a/wiki/translations/de/Arch_Wall.md +++ b/wiki/translations/de/Arch_Wall.md @@ -7,6 +7,8 @@ SeeAlso:[Architektur Struktur](Arch_Structure/de.md) --- +# Arch Wall/de + ## Beschreibung Dieses Werkzeug erzeugt neue Wände oder baut Wände basierend auf einem anderen [Form](Part_Workbench/de.md)-basierten oder [Polygonnetz](Mesh_Workbench/de.md)-basierten Objekt. Eine Wand kann ohne ein Basisobjekt erstellt werden, wobei es sich dann wie ein räumliches Objekt verhält, mit Länge-, Breite- und Höhe-Eigenschaften. Wird auf einem existierenden Objekt aufgebaut, kann eine Wand aufgesetzt werden auf: @@ -138,11 +140,5 @@ Draft.move(Wall2, FreeCAD.Vector(0, -1000, 0)) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/de diff --git a/wiki/translations/de/Arch_Window.md b/wiki/translations/de/Arch_Window.md index 105e76502f..46f16ea74c 100644 --- a/wiki/translations/de/Arch_Window.md +++ b/wiki/translations/de/Arch_Window.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Wand](Arch_Wall/de.md), [Arch Hinzufügen](Arch_Add/de.md) --- +# Arch Window/de + ## Beschreibung Ein [Arch Fenster](Arch_Window/de.md) ist ein Basisobjekt für alle Arten von \"einbettbaren\" Objekten, wie z.B. Fenster und Türen. Es ist so konzipiert, dass es entweder unabhängig ist oder in einer anderen Komponente \"untergebracht\" wird, wie z.B. einem [Arch Wänden](Arch_Wall/de.md), [Arch Strukturen](Arch_Structure/de.md) oder [Arch Dächern](Arch_Roof/de.md). Es hat eine eigene Geometrie, die aus mehreren festen Komponenten bestehen kann (üblicherweise aus einem Rahmen und inneren Platten), und definiert auch ein Volumen, das von den aufnehmenden Objekten abgezogen wird, um eine Öffnung zu erzeugen. @@ -221,11 +223,5 @@ Door = Arch.makeWindowPreset("Simple door", placement=place) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Window/de diff --git a/wiki/translations/de/Arch_Workbench.md b/wiki/translations/de/Arch_Workbench.md index 3c94730898..0c3cc5da85 100644 --- a/wiki/translations/de/Arch_Workbench.md +++ b/wiki/translations/de/Arch_Workbench.md @@ -1,10 +1,4 @@ -# Arch Workbench/de - - - - - -Arch Arbeitsbereichssymbol +# Arch Arbeitsbereichssymbol Arch Workbench/de {{TOCright}} @@ -147,3 +141,6 @@ Der Arch-Arbeitsbereich kann mit den [Arch Python API](http://www.freecadweb.org [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/de diff --git a/wiki/translations/de/Arch_panel_tutorial.md b/wiki/translations/de/Arch_panel_tutorial.md index 8fea3d524e..5b68c7526d 100644 --- a/wiki/translations/de/Arch_panel_tutorial.md +++ b/wiki/translations/de/Arch_panel_tutorial.md @@ -1,7 +1,4 @@ # Arch panel tutorial/de - - - {{TutorialInfo/de |Topic= Modellierung eines Architektur Panels |Level= Anfänger @@ -198,4 +195,7 @@ Beide Draft-Move-and-Rotate-Werkzeuge nutzen das Draft-Einrast-System. Verschied {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch panel tutorial/de diff --git a/wiki/translations/de/Arch_templates.md b/wiki/translations/de/Arch_templates.md index 1c1c156802..77d8818302 100644 --- a/wiki/translations/de/Arch_templates.md +++ b/wiki/translations/de/Arch_templates.md @@ -1,5 +1,5 @@ # Arch templates/de - Dieses Seite zeigt die Vorlagen entsprechend dem American National Standards Institute [ANSI](https://de.wikipedia.org/wiki/American_National_Standards_Institute)-Standard +Dieses Seite zeigt die Vorlagen entsprechend dem American National Standards Institute [ANSI](https://de.wikipedia.org/wiki/American_National_Standards_Institute)-Standard ### Arch A @@ -92,3 +92,6 @@ Die Vorlagen wurden erstellt durch [Quick61](User:Quick61.md) und aufgelistet in [FreeCAD-Drawing-Templates](https://github.com/quick61/FreeCAD-Drawing-Templates). [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch templates/de diff --git a/wiki/translations/de/Arch_tutorial.md b/wiki/translations/de/Arch_tutorial.md index c052a2fbff..062934b874 100644 --- a/wiki/translations/de/Arch_tutorial.md +++ b/wiki/translations/de/Arch_tutorial.md @@ -1,7 +1,4 @@ # Arch tutorial/de - - - {{TutorialInfo/de |Topic=Modellierung |Level=Fortgeschrittener Anfänger @@ -476,4 +473,7 @@ Die in diesem Tutorial erzeugten Dateien finden Sie [hier](http://yorik.uncreate {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch tutorial/de diff --git a/wiki/translations/de/Artwork.md b/wiki/translations/de/Artwork.md index da804b7f0e..37c88c1b2c 100644 --- a/wiki/translations/de/Artwork.md +++ b/wiki/translations/de/Artwork.md @@ -1,5 +1,5 @@ # Artwork/de - Hier sind die für FreeCAD erstellte Grafiken. Du kannst sie gerne in anderen Anwendungen wiederverwenden. Wenn Du mit Symbolen beitragen möchtest, lies bitte die [Richtlinen Grafiken](Artwork_Guidelines.md). +Hier sind die für FreeCAD erstellte Grafiken. Du kannst sie gerne in anderen Anwendungen wiederverwenden. Wenn Du mit Symbolen beitragen möchtest, lies bitte die [Richtlinen Grafiken](Artwork_Guidelines.md). ## Verschiedene Symbole @@ -169,3 +169,6 @@ Siehe [Grafik Fehlerhaft](Artwork_Erroneous/de.md). }} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork/de diff --git a/wiki/translations/de/Artwork_Erroneous.md b/wiki/translations/de/Artwork_Erroneous.md index e2d58f7e9d..e97389fc00 100644 --- a/wiki/translations/de/Artwork_Erroneous.md +++ b/wiki/translations/de/Artwork_Erroneous.md @@ -1,6 +1,4 @@ # Artwork Erroneous/de - - Für alle Symbole im Quellbaum, siehe [Grafik](Artwork/de.md). @@ -26,3 +24,6 @@ Für alle Symbole im Quellbaum, siehe [Grafik](Artwork/de.md). }} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork Erroneous/de diff --git a/wiki/translations/de/Artwork_Gui.md b/wiki/translations/de/Artwork_Gui.md index 5dbaa36596..5f7fe2ae52 100644 --- a/wiki/translations/de/Artwork_Gui.md +++ b/wiki/translations/de/Artwork_Gui.md @@ -1,5 +1,5 @@ # Artwork Gui/de - Diese Symbole befinden sich im angegebenen Quellpfad. +Diese Symbole befinden sich im angegebenen Quellpfad. Für alle Symbole im Quellbaum siehe [Grafik](Artwork/de.md). @@ -22,4 +22,7 @@ Diese Bilder sind größer als Symbole. {{Artwork -}} +}} + +--- +[documentation index](../README.md) > Artwork Gui/de diff --git a/wiki/translations/de/Artwork_Guidelines.md b/wiki/translations/de/Artwork_Guidelines.md index 060c6f5621..f61f5eb67c 100644 --- a/wiki/translations/de/Artwork_Guidelines.md +++ b/wiki/translations/de/Artwork_Guidelines.md @@ -1,6 +1,4 @@ # Artwork Guidelines/de - - ## Einführung @@ -173,3 +171,6 @@ Ein Graustufenbild erlaubt dir Kontrastprobleme leichter zu erkennen, da nur ein {{Artwork/de}} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Artwork Guidelines/de diff --git a/wiki/translations/de/Artwork_Mesh.md b/wiki/translations/de/Artwork_Mesh.md index 67765597bf..459e61216c 100644 --- a/wiki/translations/de/Artwork_Mesh.md +++ b/wiki/translations/de/Artwork_Mesh.md @@ -1,6 +1,4 @@ # Artwork Mesh/de - - Diese Symbole befinden sich im angegebenen Quellpfad. Für alle Symbole im Quellbaum siehe [Illustration](Artwork/de.md). @@ -21,3 +19,6 @@ Für alle Symbole im Quellbaum siehe [Illustration](Artwork/de.md). }} [Category:Mesh](Category:Mesh.md) + +--- +[documentation index](../README.md) > [Mesh](Category:Mesh.md) > Artwork Mesh/de diff --git a/wiki/translations/de/Artwork_Part.md b/wiki/translations/de/Artwork_Part.md index 6a9ea9bd43..1baa00070d 100644 --- a/wiki/translations/de/Artwork_Part.md +++ b/wiki/translations/de/Artwork_Part.md @@ -1,6 +1,4 @@ # Artwork Part/de - - Diese Symbole befinden sich im angegebenen Quellpfad. Für alle Symbole im Quellbaum, siehe [Grafik](Artwork/de.md). @@ -34,4 +32,7 @@ Für alle Symbole im Quellbaum, siehe [Grafik](Artwork/de.md). {{Artwork -}} +}} + +--- +[documentation index](../README.md) > Artwork Part/de diff --git a/wiki/translations/de/Artwork_PartDesign.md b/wiki/translations/de/Artwork_PartDesign.md index 74049dd824..36e8e74989 100644 --- a/wiki/translations/de/Artwork_PartDesign.md +++ b/wiki/translations/de/Artwork_PartDesign.md @@ -1,6 +1,4 @@ # Artwork PartDesign/de - - Diese Symbole befinden sich im angegebenen Quellpfad. Für alle Symbole im Quellbaum, siehe [Grafik](Artwork/de.md). @@ -25,3 +23,6 @@ Für alle Symbole im Quellbaum, siehe [Grafik](Artwork/de.md). }} [Category:PartDesign](Category:PartDesign.md) + +--- +[documentation index](../README.md) > [PartDesign](Category:PartDesign.md) > Artwork PartDesign/de diff --git a/wiki/translations/de/Artwork_Reinforcement.md b/wiki/translations/de/Artwork_Reinforcement.md index ec77b4f8dc..db5527b2ea 100644 --- a/wiki/translations/de/Artwork_Reinforcement.md +++ b/wiki/translations/de/Artwork_Reinforcement.md @@ -1,6 +1,4 @@ # Artwork Reinforcement/de - - Diese Symbole befinden sich im angegebenen Quellpfad. Für alle Symbole im Quellbaum, siehe [Grafik](Artwork/de.md). @@ -14,3 +12,5 @@ Für alle Symbole im Quellbaum, siehe [Grafik](Artwork/de.md). {{Artwork/de}} +--- +[documentation index](../README.md) > Artwork Reinforcement/de diff --git a/wiki/translations/de/Artwork_Sketcher.md b/wiki/translations/de/Artwork_Sketcher.md index 3049979bf1..be65b94192 100644 --- a/wiki/translations/de/Artwork_Sketcher.md +++ b/wiki/translations/de/Artwork_Sketcher.md @@ -1,6 +1,4 @@ # Artwork Sketcher/de - - Diese Symbole befinden sich im angegebenen Quellpfad. Für alle Symbole im Quellbaum, siehe [Grafik](Artwork/de.md). @@ -53,3 +51,6 @@ In der Vergangenheit wurden die `.xpm`-Symbole als Überlagerungen bei der Anzei {{Artwork }} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Artwork Sketcher/de diff --git a/wiki/translations/de/Artwork_TechDraw.md b/wiki/translations/de/Artwork_TechDraw.md index f3b435bc24..d7a7232da2 100644 --- a/wiki/translations/de/Artwork_TechDraw.md +++ b/wiki/translations/de/Artwork_TechDraw.md @@ -1,6 +1,4 @@ # Artwork TechDraw/de - - Diese Symbole befinden sich im angegebenen Quellpfad. Für alle Symbole im Quellbaum, siehe [Grafik](Artwork/de.md). @@ -33,3 +31,6 @@ Der [TechDraw-Arbeitsbereich](TechDraw_Workbench/de.md) wird mit einer Reihe von }} [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [TechDraw](Category:TechDraw.md) > Artwork TechDraw/de diff --git a/wiki/translations/de/Artwork_Tux.md b/wiki/translations/de/Artwork_Tux.md index 10e411b17d..c127fed1cc 100644 --- a/wiki/translations/de/Artwork_Tux.md +++ b/wiki/translations/de/Artwork_Tux.md @@ -1,6 +1,4 @@ # Artwork Tux/de - - Diese Symbole befinden sich im angegebenen Quellpfad. Alle Symbole im Quellbaum findest Du unter [Artwork](Artwork/de.md). @@ -14,3 +12,5 @@ Alle Symbole im Quellbaum findest Du unter [Artwork](Artwork/de.md). {{Artwork/de}} +--- +[documentation index](../README.md) > Artwork Tux/de diff --git a/wiki/translations/de/Artwork_project.md b/wiki/translations/de/Artwork_project.md index fccabe6088..0aff31c8ad 100644 --- a/wiki/translations/de/Artwork_project.md +++ b/wiki/translations/de/Artwork_project.md @@ -1,7 +1,4 @@ # Artwork project/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -101,3 +98,6 @@ The current color palette is captured in google drive: [Roadmap](Category:Roadmap.md) > Artwork project/de diff --git a/wiki/translations/de/Assembly.md b/wiki/translations/de/Assembly.md index f3625c976a..d19807a42c 100644 --- a/wiki/translations/de/Assembly.md +++ b/wiki/translations/de/Assembly.md @@ -1,6 +1,4 @@ # Assembly/de - - ## Einführung @@ -53,3 +51,6 @@ Die Entwicklung der Zusammenbau Arbeitsbereiche geht weiter, und es wird erwarte }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Assembly/de diff --git a/wiki/translations/de/Assembly3_ConstraintAlignment.md b/wiki/translations/de/Assembly3_ConstraintAlignment.md index 80951e5330..24bb497ed8 100644 --- a/wiki/translations/de/Assembly3_ConstraintAlignment.md +++ b/wiki/translations/de/Assembly3_ConstraintAlignment.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintAlignment/de + ## Beschreibung Dieses Werkzeug verbindet zwei oder mehr Objekte eines Zusammenbaus und gleicht ihre Ausrichtungen an. Die gewählten Elemente der einzelnen Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein oder mehrere Objekte im Verhältnis zu einem anderen Objekt zu positionieren. @@ -20,8 +22,5 @@ Der Abstand ihrer Z-Achsen und die Winkel zwischen ihren X-Achsen (und genauso i 2. Je ein planeres Flächenelement pro Objekt auswählen. 3. Schaltfläche** [Ebenen ausrichten](Assembly3_ConstraintAlignment/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAlignment/de diff --git a/wiki/translations/de/Assembly3_ConstraintAngle.md b/wiki/translations/de/Assembly3_ConstraintAngle.md index 12dd24129b..a2791f2f31 100644 --- a/wiki/translations/de/Assembly3_ConstraintAngle.md +++ b/wiki/translations/de/Assembly3_ConstraintAngle.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintAngle/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her und fixiert den Abstand zwischen ihnen sowie ihre Ausrichtung zueinander. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein Objekt zum anderen zu positionieren. @@ -22,8 +24,5 @@ Diese Beziehung akzeptiert gerade Kanten und ebene Flächen. 2. Je ein ebenes Flächenelement oder eine gerade Kante pro Objekt auswählen. 3. Schaltfläche** [WinkelFestlegen](Assembly3_ConstraintAngle/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAngle/de diff --git a/wiki/translations/de/Assembly3_ConstraintAttachment.md b/wiki/translations/de/Assembly3_ConstraintAttachment.md index 03ec387f1f..0bcc47b8c5 100644 --- a/wiki/translations/de/Assembly3_ConstraintAttachment.md +++ b/wiki/translations/de/Assembly3_ConstraintAttachment.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintAttachment/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her und fixiert den Abstand zwischen ihnen sowie ihre Ausrichtung zueinander. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme werden genutzt, um ein Objekt zum anderen zu positionieren. @@ -18,8 +20,5 @@ Diese Verbindung lässt keinen Freiheitsgrad unbestimmt. 2. Je ein Element beider Objekte auswählen. 3. Schaltfläche ** [Befestigung](Assembly3_ConstraintAttachment/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAttachment/de diff --git a/wiki/translations/de/Assembly3_ConstraintAxial.md b/wiki/translations/de/Assembly3_ConstraintAxial.md index 2d634843e6..2ce9c44ef4 100644 --- a/wiki/translations/de/Assembly3_ConstraintAxial.md +++ b/wiki/translations/de/Assembly3_ConstraintAxial.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintAxial/de + ## Beschreibung Dieses Werkzeug verbindet zwei oder mehr Objekte eines Zusammenbaus und gleicht ihre Ausrichtungen an. Die gewählten Elemente der einzelnen Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein oder mehrere Objekte im Verhältnis zu einem anderen Objekt zu positionieren. @@ -28,8 +30,5 @@ Die unterschiedliche Geometriearten können gemischt werden. 2. Je ein Element pro Objekt auswählen. 3. Schaltfläche** [Axiale Ausrichtung](Assembly3_ConstraintAxial/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAxial/de diff --git a/wiki/translations/de/Assembly3_ConstraintCoincidence.md b/wiki/translations/de/Assembly3_ConstraintCoincidence.md index 95f27d224b..050e66f37c 100644 --- a/wiki/translations/de/Assembly3_ConstraintCoincidence.md +++ b/wiki/translations/de/Assembly3_ConstraintCoincidence.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintCoincidence/de + ## Beschreibung Dieses Werkzeug verbindet zwei oder mehr Objekte eines Zusammenbaus und gleicht ihre Ausrichtungen an. Die gewählten Elemente der einzelnen Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein oder mehrere Objekte im Verhältnis zu einem anderen Objekt zu positionieren. @@ -26,8 +28,5 @@ Die Drehung kann gestoppt werden, durch das setzen der Variablen Lock Angle im E 2. Je ein planeres Flächenelement pro Objekt auswählen. 3. Schaltfläche** [Deckungsgleiche Ebenen](Assembly3_ConstraintCoincidence/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintCoincidence/de diff --git a/wiki/translations/de/Assembly3_ConstraintColinear.md b/wiki/translations/de/Assembly3_ConstraintColinear.md index 97bfb51abd..0aabf7c0d5 100644 --- a/wiki/translations/de/Assembly3_ConstraintColinear.md +++ b/wiki/translations/de/Assembly3_ConstraintColinear.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintColinear/de + ## Beschreibung Der Befehl [Kollinear](Assembly3_ConstraintColinear/de.md) setzt zwei nicht unterteilte 2D-Linien, die in der Draft-Arbeitsumgebung in Zusammenhang mit einer Arbeitsebene erzeugt wurden, zueinander in Beziehung. @@ -30,8 +32,5 @@ Dieses Werkzeug akzeptiert auch 3D-Elemente wie z.B. Kanten oder Mittellinien. - 2D/3D or 3D/2D: Anstatt der Z-Achse des 3D-Elements wird die Projektion dieser Achse auf die Arbeitsebene der 2D-Linie genutzt, um die Linien zu Positionieren. - Beide 3D: Die Linie werden zueinander positioniert, aber ich kann nicht erkennen, wie\... - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintColinear/de diff --git a/wiki/translations/de/Assembly3_ConstraintDiameter.md b/wiki/translations/de/Assembly3_ConstraintDiameter.md index d01f7263c8..24d51a04b4 100644 --- a/wiki/translations/de/Assembly3_ConstraintDiameter.md +++ b/wiki/translations/de/Assembly3_ConstraintDiameter.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintDiameter/de + ## Beschreibung Der Befehl [Durchmesser](Assembly3_ConstraintDiameter/de.md) legt den Durchmesser eines 2D-Kreises oder Bogens fest, der mit Werkzeugen der [Draft](Draft_Workbench/de.md)-Arbeitsumgebung in Verbindung mit einer Arbeitsebene erstellt wurde. @@ -24,8 +26,5 @@ Zum Ändern des Durchmessers wird der Wert der Eigenschaft **Diameter** im Eigen : (Wenn ** [Automatische Berechnung](Assembly3_AutoRecompute/de.md)** und ** [Smarte Berechnung](Assembly3_SmartRecompute/de.md)** nicht aktiviert wurden). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintDiameter/de diff --git a/wiki/translations/de/Assembly3_ConstraintEqualAngle.md b/wiki/translations/de/Assembly3_ConstraintEqualAngle.md index cdf35a200e..7d32d74b15 100644 --- a/wiki/translations/de/Assembly3_ConstraintEqualAngle.md +++ b/wiki/translations/de/Assembly3_ConstraintEqualAngle.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintEqualAngle/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her und setzt einen Winkel zwischen ihnen, abhängig von dem Wert eines weiteren Winkels, fest. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein Objekt zum anderen zu positionieren. @@ -22,8 +24,5 @@ Die Richtung der Linien und auch die Flächennormalen werden durch die Z-Achse d : Zusätzlich kann es erforderlich sein die Funktion \"Element umdrehen\" zu nutzen, wenn die LKS nicht wie erwartet ausgerichtet sind. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualAngle/de diff --git a/wiki/translations/de/Assembly3_ConstraintEqualLength.md b/wiki/translations/de/Assembly3_ConstraintEqualLength.md index 822cf3ec9b..3cd3425222 100644 --- a/wiki/translations/de/Assembly3_ConstraintEqualLength.md +++ b/wiki/translations/de/Assembly3_ConstraintEqualLength.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintEqualLength/de + ## Beschreibung Dieses Werkzeug legt die Länge einer nicht unterteilten 2D-Linie fest, die in der Draft-Arbeitsumgebung in Zusammenhang mit einer Arbeitsebene erzeugt wurde. @@ -24,8 +26,5 @@ Der Längenwert der zuerst gewählten Linie ist gleich dem Längenwert der zweit : (wenn ** [Automatische Berechnung](Assembly3_AutoRecompute/de.md)** und ** [Smarte Berechnung](Assembly3_SmartRecompute/de.md)** nicht aktiviert wurden). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualLength/de diff --git a/wiki/translations/de/Assembly3_ConstraintEqualLineArcLength.md b/wiki/translations/de/Assembly3_ConstraintEqualLineArcLength.md index 1b274d1ea9..b57686b4b6 100644 --- a/wiki/translations/de/Assembly3_ConstraintEqualLineArcLength.md +++ b/wiki/translations/de/Assembly3_ConstraintEqualLineArcLength.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintEqualLineArcLength/de + ## Beschreibung Der Befehl [Linien- gleich Bogenlänge](Assembly3_ConstraintEqualLineArcLength/de.md) bestimmt die Länge einer 2D-Linie wie z.B. einer nicht unterteilten 2D-Linie, die mit Werkzeugen der [Draft](Draft_Workbench/de.md)-Arbeitsumgebung in Zusammenhang mit einer Arbeitsebene erstellt wurde. @@ -36,8 +38,5 @@ Constraint "EqualLineArcLength" requires the 1st element to be a linear Constraint "EqualLineArcLength" requires the 2nd element to be an arc edge Constraint "EqualLineArcLength" requires the 2nd element to be a circular edge - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualLineArcLength/de diff --git a/wiki/translations/de/Assembly3_ConstraintEqualPointLineDistance.md b/wiki/translations/de/Assembly3_ConstraintEqualPointLineDistance.md index d6acf3a3de..039da03e84 100644 --- a/wiki/translations/de/Assembly3_ConstraintEqualPointLineDistance.md +++ b/wiki/translations/de/Assembly3_ConstraintEqualPointLineDistance.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintEqualPointLineDistance/de + ## Beschreibung Der Befehl [Gleicher Punkt-Linie-Abstand ](Assembly3_ConstraintEqualPointLineDistance/de.md) legt für zwei Abstände, zwischen jeweils einem 2D-Punkt und einer 2D-Geraden, fest, dass sie denselben Wert haben. @@ -25,8 +27,5 @@ Der Befehl [Automatische Berechnung](Assembly3_AutoRecompute/de.md)** und ** [Smarte Berechnung](Assembly3_SmartRecompute/de.md)** nicht aktiviert wurden). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualPointLineDistance/de diff --git a/wiki/translations/de/Assembly3_ConstraintEqualRadius.md b/wiki/translations/de/Assembly3_ConstraintEqualRadius.md index c17a57066b..ccc52ae938 100644 --- a/wiki/translations/de/Assembly3_ConstraintEqualRadius.md +++ b/wiki/translations/de/Assembly3_ConstraintEqualRadius.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintEqualRadius/de + ## Beschreibung Der Befehl [Gleicher Radius](Assembly3_ConstraintEqualRadius/de.md) legt den Radius eines 2D-Kreises oder Bogens fest, der mit Werkzeugen der [Draft](Draft_Workbench/de.md)-Arbeitsumgebung in Verbindung mit einer Arbeitsebene erstellt wurde. @@ -26,8 +28,5 @@ Der Radius des ersten Kreises oder Bogens ist gleich dem Radius des zweiten Krei : (Wenn ** [Automatische Berechnung](Assembly3_AutoRecompute/de.md)** und ** [Smarte Berechnung](Assembly3_SmartRecompute/de.md)** nicht aktiviert wurden). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualRadius/de diff --git a/wiki/translations/de/Assembly3_ConstraintLengthDifference.md b/wiki/translations/de/Assembly3_ConstraintLengthDifference.md index dd64f8a0dc..30f68f86a9 100644 --- a/wiki/translations/de/Assembly3_ConstraintLengthDifference.md +++ b/wiki/translations/de/Assembly3_ConstraintLengthDifference.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintLengthDifference/de + ## Beschreibung Dieses Werkzeug legt die Länge einer nicht unterteilten 2D-Linie fest, die in der Draft-Arbeitsumgebung in Zusammenhang mit einer Arbeitsebene erzeugt wurde. @@ -27,8 +29,5 @@ Der Längenwert der zuerst gewählten Linie ist gleich dem Längenwert der zweit : (wenn ** [Automatische Berechnung](Assembly3_AutoRecompute/de.md)** und ** [Smarte Berechnung](Assembly3_SmartRecompute/de.md)** nicht aktiviert wurden). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLengthDifference/de diff --git a/wiki/translations/de/Assembly3_ConstraintLengthEqualPointLineDistance.md b/wiki/translations/de/Assembly3_ConstraintLengthEqualPointLineDistance.md index 277837a1b1..1e54179e09 100644 --- a/wiki/translations/de/Assembly3_ConstraintLengthEqualPointLineDistance.md +++ b/wiki/translations/de/Assembly3_ConstraintLengthEqualPointLineDistance.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLengthEqualPointLineDistance/de + ## Beschreibung Dieses Werkzeug legt die Länge einer nicht unterteilten 2D-Linie fest, die in der Draft-Arbeitsumgebung in Zusammenhang mit einer Arbeitsebene erzeugt wurde. @@ -26,8 +28,5 @@ Der Längenwert der zuerst gewählten Linie ist gleich dem kürzesten Abstand zw : (Wenn ** [Automatische Berechnung](Assembly3_AutoRecompute/de.md)** und ** [Smarte Berechnung](Assembly3_SmartRecompute/de.md)** nicht aktiviert wurden). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLengthEqualPointLineDistance/de diff --git a/wiki/translations/de/Assembly3_ConstraintLengthRatio.md b/wiki/translations/de/Assembly3_ConstraintLengthRatio.md index cdfb390841..1e8534743c 100644 --- a/wiki/translations/de/Assembly3_ConstraintLengthRatio.md +++ b/wiki/translations/de/Assembly3_ConstraintLengthRatio.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLengthRatio/de + ## Beschreibung Dieses Werkzeug legt die Länge einer nicht unterteilten 2D-Linie fest, die in der Draft-Arbeitsumgebung in Zusammenhang mit einer Arbeitsebene erzeugt wurde. @@ -27,8 +29,5 @@ Der Längenwert der zuerst gewählten Linie ist gleich dem Längenwert der zweit : (wenn ** [Automatische Berechnung](Assembly3_AutoRecompute/de.md)** und ** [Smarte Berechnung](Assembly3_SmartRecompute/de.md)** nicht aktiviert wurden). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLengthRatio/de diff --git a/wiki/translations/de/Assembly3_ConstraintLineHorizontal.md b/wiki/translations/de/Assembly3_ConstraintLineHorizontal.md index 3319250bc6..9e52aac162 100644 --- a/wiki/translations/de/Assembly3_ConstraintLineHorizontal.md +++ b/wiki/translations/de/Assembly3_ConstraintLineHorizontal.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintLineHorizontal/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein Objekt zum anderen zu positionieren. @@ -19,8 +21,5 @@ Bezüglich des LKS des planaren Elements werden Anfangs- und Endpunkt des Linien 3. Ein planares Flächenelement des anderen Objekts auswählen. 4. Schaltfläche ** [Horizontale Linie](Assembly3_ConstraintLineHorizontal/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLineHorizontal/de diff --git a/wiki/translations/de/Assembly3_ConstraintLineLength.md b/wiki/translations/de/Assembly3_ConstraintLineLength.md index 8d50d3ef76..2f68de5f60 100644 --- a/wiki/translations/de/Assembly3_ConstraintLineLength.md +++ b/wiki/translations/de/Assembly3_ConstraintLineLength.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintLineLength/de + ## Beschreibung Dieses Werkzeug legt die Länge einer 2D-Linie fest, die in der Draft-Arbeitsumgebung in Zusammenhang mit einer Arbeitsebene erzeugt wurde. @@ -19,8 +21,5 @@ Die Länge kann durch Änderung des **Length**-Parameters im Eigenschaftenfenste 3. **Length**-Parameter im Eigenschaftenfenster auf den gewünschten Wert setzen. 4. Schaltfläche ** [Beziehungen berechnen](Assembly3_ResolveConstraints/de.md)** oder ** [Schnelle Berechnung](Assembly3_QuickSolve/de.md)** drücken um neu zu berechnen. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLineLength/de diff --git a/wiki/translations/de/Assembly3_ConstraintLineVertical.md b/wiki/translations/de/Assembly3_ConstraintLineVertical.md index fad14cb564..af0ab10a48 100644 --- a/wiki/translations/de/Assembly3_ConstraintLineVertical.md +++ b/wiki/translations/de/Assembly3_ConstraintLineVertical.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLineVertical/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein Objekt zum anderen zu positionieren. @@ -19,8 +21,5 @@ Bezüglich des LKS des planaren Elements werden Anfangs- und Endpunkt des Linien 3. Ein planares Flächenelement des anderen Objekts auswählen. 4. Schaltfläche ** [Vertikale Linie](Assembly3_ConstraintLineVertical/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLineVertical/de diff --git a/wiki/translations/de/Assembly3_ConstraintLock.md b/wiki/translations/de/Assembly3_ConstraintLock.md index e443347830..292a4e5eca 100644 --- a/wiki/translations/de/Assembly3_ConstraintLock.md +++ b/wiki/translations/de/Assembly3_ConstraintLock.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLock/de + ## Beschreibung Dieses Werkzeug verbindet ein Objekt mit dem globalen Koordinatensystem (GKS) unter Verwendung des lokalen Koordinatensystems (LKS) eines ausgewählten Elements. @@ -27,8 +29,5 @@ Dies kann genutzt werden, um ein unbewegliches Set zu definieren, sowohl für ei 2. Ein Element des Objekts auswählen. 3. Den ** [Festsetzen](Assembly3_ConstraintLock.md)** Knopf drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLock/de diff --git a/wiki/translations/de/Assembly3_ConstraintMidPoint.md b/wiki/translations/de/Assembly3_ConstraintMidPoint.md index f8cb35a1a0..a17800ef2d 100644 --- a/wiki/translations/de/Assembly3_ConstraintMidPoint.md +++ b/wiki/translations/de/Assembly3_ConstraintMidPoint.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintMidPoint/de + ## Beschreibung Der Befehl [Mittelpunkt](Assembly3_ConstraintMidPoint/de.md) verknüpft die Position eines 2D-Punktes (wie z.B. eines Endpunktes einer Linie oder eines Bogens oder dem Mittelpunkt eines Kreises oder Bogens) mit dem Mittelpunkt einer geraden 2d-Linie. @@ -24,8 +26,5 @@ Die Linienelemente werden mit Werkzeugen der [Automatische Berechnung](Assembly3_AutoRecompute/de.md)** und ** [Smarte Berechnung](Assembly3_SmartRecompute/de.md)** nicht aktiviert wurden). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintMidPoint/de diff --git a/wiki/translations/de/Assembly3_ConstraintMore.md b/wiki/translations/de/Assembly3_ConstraintMore.md index abd40f2641..a08d95bdfd 100644 --- a/wiki/translations/de/Assembly3_ConstraintMore.md +++ b/wiki/translations/de/Assembly3_ConstraintMore.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintMore/de + ## Beschreibung Diese Werkzeug schaltet die Sichtbarkeit von zwei weitere Werkzeugleisten um. @@ -14,8 +16,5 @@ Diese Werkzeug schaltet die Sichtbarkeit von zwei weitere Werkzeugleisten um. 1. Drücke die Schaltfläche ** [Weitere](Assembly3_ConstraintMore/de.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintMore/de diff --git a/wiki/translations/de/Assembly3_ConstraintMultiParallel.md b/wiki/translations/de/Assembly3_ConstraintMultiParallel.md index a40e041043..4ffafaca57 100644 --- a/wiki/translations/de/Assembly3_ConstraintMultiParallel.md +++ b/wiki/translations/de/Assembly3_ConstraintMultiParallel.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintMultiParallel/de + ## Beschreibung Dieses Werkzeug verbindet zwei oder mehr Objekte eines Zusammenbaus und gleicht ihre Ausrichtungen an. Die gewählten Elemente der einzelnen Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein oder mehrere Objekte im Verhältnis zu einem anderen Objekt zu positionieren. @@ -22,8 +24,5 @@ Diese Beziehung akzeptiert gerade Kanten und ebene Flächen, die sich parallel a 2. Je ein ebenes Flächenelement pro Objekt auswählen. 3. Schaltfläche** [Mehrfach parallel](Assembly3_ConstraintMultiParallel/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintMultiParallel/de diff --git a/wiki/translations/de/Assembly3_ConstraintPerpendicular.md b/wiki/translations/de/Assembly3_ConstraintPerpendicular.md index 35e7aada42..425531cc2b 100644 --- a/wiki/translations/de/Assembly3_ConstraintPerpendicular.md +++ b/wiki/translations/de/Assembly3_ConstraintPerpendicular.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintPerpendicular/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her und fixiert den Abstand zwischen ihnen sowie ihre Ausrichtung zueinander. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein Objekt zum anderen zu positionieren. @@ -22,8 +24,5 @@ Diese Beziehung akzeptiert gerade Kanten und ebene Flächen. 2. Je eine gerade Kante oder ein ebenes Flächenelement pro Objekt auswählen. 3. Schaltfläche** [Rechtwinklig festlegen](Assembly3_ConstraintPerpendicular/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPerpendicular/de diff --git a/wiki/translations/de/Assembly3_ConstraintPointDistance.md b/wiki/translations/de/Assembly3_ConstraintPointDistance.md index 9bacf5ae2e..f66bd78df4 100644 --- a/wiki/translations/de/Assembly3_ConstraintPointDistance.md +++ b/wiki/translations/de/Assembly3_ConstraintPointDistance.md @@ -7,6 +7,8 @@ SeeAlso:[Points distance](Assembly3_ConstraintPointsDistance/de.md) --- +# Assembly3 ConstraintPointDistance/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her und legt den Abstand zwischen ihnen fest. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein Objekt zum anderen zu positionieren. @@ -19,8 +21,5 @@ Es arbeitet sowohl mit 3D-Punkt-Elementen als auch mit 2D-Punkt-Elementen auf ei 2. Je ein Punktelement pro Objekt auswählen. 3. Schaltfläche** [Abstand zweier Punkte](Assembly3_ConstraintPointDistance/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointDistance/de diff --git a/wiki/translations/de/Assembly3_ConstraintPointInPlane.md b/wiki/translations/de/Assembly3_ConstraintPointInPlane.md index c0f492b985..15d3cf2170 100644 --- a/wiki/translations/de/Assembly3_ConstraintPointInPlane.md +++ b/wiki/translations/de/Assembly3_ConstraintPointInPlane.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintPointInPlane/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her und fixiert den Abstand zwischen ihnen sowie ihre Ausrichtung zueinander. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein Objekt zum anderen zu positionieren. @@ -22,8 +24,5 @@ Im Bezug auf das Ebenenobjekt, kann sich das Punktobjekte noch entlang der X- un 2. Ein Punktelement des einen und ein ebenes Flächenelement des anderen Objekts auswählen. 3. Schaltfläche** [Punkt auf Ebene](Assembly3_ConstraintPointInPlane/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointInPlane/de diff --git a/wiki/translations/de/Assembly3_ConstraintPointLineDistance.md b/wiki/translations/de/Assembly3_ConstraintPointLineDistance.md index 66da8aa5fb..17ec7d4158 100644 --- a/wiki/translations/de/Assembly3_ConstraintPointLineDistance.md +++ b/wiki/translations/de/Assembly3_ConstraintPointLineDistance.md @@ -7,6 +7,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintPointLineDistance/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her und fixiert den Abstand zwischen ihnen sowie ihre Ausrichtung zueinander. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein Objekt zum anderen zu positionieren. @@ -17,8 +19,5 @@ Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus 2. Ein Punktelement des einen und ein gerades Kantenelement des anderen Objekts auswählen. 3. Schaltfläche ** [Punkt zu Linie Abstand](Assembly3_ConstraintPointLineDistance/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointLineDistance/de diff --git a/wiki/translations/de/Assembly3_ConstraintPointOnCircle.md b/wiki/translations/de/Assembly3_ConstraintPointOnCircle.md index ce296381b4..e6d045b0b5 100644 --- a/wiki/translations/de/Assembly3_ConstraintPointOnCircle.md +++ b/wiki/translations/de/Assembly3_ConstraintPointOnCircle.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointOnCircle/de + ## Beschreibung Dieses Werkzeug verbindet zwei oder mehr Objekte eines Zusammenbaus und gleicht ihre Ausrichtungen an. Die gewählten Elemente der einzelnen Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein oder mehrere Objekte im Verhältnis zu einem anderen Objekt zu positionieren. @@ -22,8 +24,5 @@ Die Position auf dem Kreisobjekt (Bogenlänge vom Startpunkt) ist nicht festgelg 2. Ein Punktelement des einen und ein kreisförmiges Flächen- oder Kantenelement des anderen Objekts auswählen. 3. Schaltfläche ** [Punkt auf Kreis](Assembly3_ConstraintPointOnCircle/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointOnCircle/de diff --git a/wiki/translations/de/Assembly3_ConstraintPointOnLine.md b/wiki/translations/de/Assembly3_ConstraintPointOnLine.md index 26988bdea7..b20b4257a0 100644 --- a/wiki/translations/de/Assembly3_ConstraintPointOnLine.md +++ b/wiki/translations/de/Assembly3_ConstraintPointOnLine.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintPointOnLine/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her und fixiert den Abstand zwischen ihnen sowie ihre Ausrichtung zueinander. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein Objekt zum anderen zu positionieren. @@ -22,8 +24,5 @@ Im Bezug auf das erste Element, kann sich das folgende Objekt noch entlang der Z 2. Ein Punktelement des einen und ein gerades Kantenelement des anderen Objekts auswählen. 3. Schaltfläche** [Punkt auf Line](Assembly3_ConstraintPointOnLine/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointOnLine/de diff --git a/wiki/translations/de/Assembly3_ConstraintPointPlaneDistance.md b/wiki/translations/de/Assembly3_ConstraintPointPlaneDistance.md index 660b4df367..e6b163cdf5 100644 --- a/wiki/translations/de/Assembly3_ConstraintPointPlaneDistance.md +++ b/wiki/translations/de/Assembly3_ConstraintPointPlaneDistance.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintPointPlaneDistance/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her und fixiert den Abstand zwischen ihnen sowie ihre Ausrichtung zueinander. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein Objekt zum anderen zu positionieren. @@ -16,8 +18,5 @@ Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus 2. Ein Punktelement des einen und ein ebenes Flächenelement des anderen Objekts auswählen. 3. Schaltfläche** [Punkt zu Ebene Abstand](Assembly3_ConstraintPointPlaneDistance/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointPlaneDistance/de diff --git a/wiki/translations/de/Assembly3_ConstraintPointsCoincident.md b/wiki/translations/de/Assembly3_ConstraintPointsCoincident.md index a9e6ae2119..5ce094e61a 100644 --- a/wiki/translations/de/Assembly3_ConstraintPointsCoincident.md +++ b/wiki/translations/de/Assembly3_ConstraintPointsCoincident.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintPointsCoincident/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her und fixiert den Abstand zwischen ihnen sowie ihre Ausrichtung zueinander. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein Objekt zum anderen zu positionieren. @@ -22,8 +24,5 @@ Im Bezug auf das erste Element, kann sich das weitere Objekte noch um den Urspru 2. Je ein Punktelement pro Objekt auswählen. 3. Schaltfläche** [Punkt auf Punkt](Assembly3_ConstraintPointsCoincident/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsCoincident/de diff --git a/wiki/translations/de/Assembly3_ConstraintPointsDistance.md b/wiki/translations/de/Assembly3_ConstraintPointsDistance.md index 1e1b509b29..cef50553a8 100644 --- a/wiki/translations/de/Assembly3_ConstraintPointsDistance.md +++ b/wiki/translations/de/Assembly3_ConstraintPointsDistance.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintPointsDistance/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her und fixiert den Abstand zwischen ihnen sowie ihre Ausrichtung zueinander. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein Objekt zum anderen zu positionieren. @@ -16,8 +18,5 @@ Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus 2. Je ein Punktelement pro Objekt auswählen. 3. Schaltfläche** [Punkt zu Punkt Abstand](Assembly3_ConstraintPointsDistance/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsDistance/de diff --git a/wiki/translations/de/Assembly3_ConstraintPointsHorizontal.md b/wiki/translations/de/Assembly3_ConstraintPointsHorizontal.md index ec3e10b239..ae849b5197 100644 --- a/wiki/translations/de/Assembly3_ConstraintPointsHorizontal.md +++ b/wiki/translations/de/Assembly3_ConstraintPointsHorizontal.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintPointsHorizontal/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei oder drei Objekten eines Zusammenbaus her. Die Gewählten Elemente der einzelnen Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um die Objekt zueinander zu positionieren. @@ -26,8 +28,5 @@ Oder 3. Ein planares Flächenelement des dritten Objekts auswählen. 4. Schaltfläche ** [Horizontale Punkte](Assembly3_ConstraintPointsHorizontal/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsHorizontal/de diff --git a/wiki/translations/de/Assembly3_ConstraintPointsProjectDistance.md b/wiki/translations/de/Assembly3_ConstraintPointsProjectDistance.md index 2cc13ac780..9ef7784812 100644 --- a/wiki/translations/de/Assembly3_ConstraintPointsProjectDistance.md +++ b/wiki/translations/de/Assembly3_ConstraintPointsProjectDistance.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintPointsProjectDistance/de + ## Beschreibung Der Befehl [Projizierter Punktabstand](Assembly3_ConstraintPointsProjectDistance/de.md) legt den Abstand zweier 2D-Punkte im Zusammenhang mit einer Geraden fest. @@ -24,8 +26,5 @@ Ausgehend von der Ausrichtung der Geraden (die Z-Achse ihres lokalen Koordinaten : (Wenn ** [Automatische Berechnung](Assembly3_AutoRecompute/de.md)** und ** [Smarte Berechnung](Assembly3_SmartRecompute/de.md)** nicht aktiviert wurden). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsProjectDistance/de diff --git a/wiki/translations/de/Assembly3_ConstraintPointsSymmetric.md b/wiki/translations/de/Assembly3_ConstraintPointsSymmetric.md index 6e5e6ac433..6d7983339c 100644 --- a/wiki/translations/de/Assembly3_ConstraintPointsSymmetric.md +++ b/wiki/translations/de/Assembly3_ConstraintPointsSymmetric.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintPointsSymmetric/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei oder drei Objekten eines Zusammenbaus her und positioniert zwei Punktelemente symmetrisch zu einem planaren Flächenelement oder einer Ebene. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um beide Objekt zueinander zu positionieren. @@ -26,8 +28,5 @@ Oder 3. Ein planeres Flächenelement des dritten Objekts auswählen. 4. Schaltfläche** [Symmetrische Punkte](Assembly3_ConstraintPointsSymmetric/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsSymmetric/de diff --git a/wiki/translations/de/Assembly3_ConstraintPointsVertical.md b/wiki/translations/de/Assembly3_ConstraintPointsVertical.md index 1ed33a9498..b8f7a4f4a8 100644 --- a/wiki/translations/de/Assembly3_ConstraintPointsVertical.md +++ b/wiki/translations/de/Assembly3_ConstraintPointsVertical.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintPointsVertical/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei oder drei Objekten eines Zusammenbaus her. Die Gewählten Elemente der einzelnen Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um die Objekt zueinander zu positionieren. @@ -26,8 +28,5 @@ Oder 3. Ein planares Flächenelement des dritten Objekts auswählen. 4. Schaltfläche ** [Vertikale Punkte](Assembly3_ConstraintPointsVertical/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsVertical/de diff --git a/wiki/translations/de/Assembly3_ConstraintSameOrientation.md b/wiki/translations/de/Assembly3_ConstraintSameOrientation.md index e13e7159d0..56520b840c 100644 --- a/wiki/translations/de/Assembly3_ConstraintSameOrientation.md +++ b/wiki/translations/de/Assembly3_ConstraintSameOrientation.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintSameOrientation/de + ## Beschreibung Dieses Werkzeug verbindet zwei oder mehr Objekte eines Zusammenbaus und gleicht ihre Ausrichtungen an. Die gewählten Elemente der einzelnen Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein oder mehrere Objekte im Verhältnis zu einem anderen Objekt zu positionieren. @@ -22,8 +24,5 @@ Diese Beziehung akzeptiert ebene Flächen. 2. Je ein ebenes Flächenelement pro Objekt auswählen. 3. Schaltfläche** [Richtungen angleichen](Assembly3_ConstraintSameOrientation/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSameOrientation/de diff --git a/wiki/translations/de/Assembly3_ConstraintSketchPlane.md b/wiki/translations/de/Assembly3_ConstraintSketchPlane.md index c519b62af3..51d208f2e2 100644 --- a/wiki/translations/de/Assembly3_ConstraintSketchPlane.md +++ b/wiki/translations/de/Assembly3_ConstraintSketchPlane.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintSketchPlane/de + ## Beschreibung Der Befehl ** [Skizzierebene](Assembly3_ConstraintSketchPlane/de.md)** erzeugt ein \"SketchPlane\"-Objekt als Behälter für Draft-Objekte. @@ -21,8 +23,5 @@ Er kann verwendet werden um ein Grundgerüst (\"Skelett-Skizze\") für eine 2D-K : Mit einer vorhandenen, nicht leeren, Baugruppe können die Schritte 1 und 2 ausgelassen werden und ein beliebiges ebenes Flächenelement kann als Arbeitsebene für die Skizzierebene verwendet werden. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSketchPlane/de diff --git a/wiki/translations/de/Assembly3_ConstraintSymmetric.md b/wiki/translations/de/Assembly3_ConstraintSymmetric.md index 5913c89dba..d6426f83c9 100644 --- a/wiki/translations/de/Assembly3_ConstraintSymmetric.md +++ b/wiki/translations/de/Assembly3_ConstraintSymmetric.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintSymmetric/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her und fixiert den Abstand zwischen ihnen sowie ihre Ausrichtung zueinander. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um ein Objekt zum anderen zu positionieren. @@ -16,8 +18,5 @@ Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus 2. Je ein Element beider Objekte auswählen. 3. Schaltfläche** [Symmetrie festlegen](Assembly3_ConstraintSymmetric/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetric/de diff --git a/wiki/translations/de/Assembly3_ConstraintSymmetricHorizontal.md b/wiki/translations/de/Assembly3_ConstraintSymmetricHorizontal.md index efe2344a90..7c618c0807 100644 --- a/wiki/translations/de/Assembly3_ConstraintSymmetricHorizontal.md +++ b/wiki/translations/de/Assembly3_ConstraintSymmetricHorizontal.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintSymmetricHorizontal/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um die Objekt zueinander zu positionieren. @@ -19,8 +21,5 @@ Bezüglich des LKS eines planaren Elements haben die Ursprünge der LKS von zwei 3. Ein ebenes Flächenelement des anderen Objekts auswählen 4. Schaltfläche** [Horizontale Symmetrie](Assembly3_ConstraintSymmetricHorizontal/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetricHorizontal/de diff --git a/wiki/translations/de/Assembly3_ConstraintSymmetricLine.md b/wiki/translations/de/Assembly3_ConstraintSymmetricLine.md index e4b852749d..04decf91e8 100644 --- a/wiki/translations/de/Assembly3_ConstraintSymmetricLine.md +++ b/wiki/translations/de/Assembly3_ConstraintSymmetricLine.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintSymmetricLine/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei oder drei Objekten eines Zusammenbaus her. Die Gewählten Elemente der einzelnen Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um die Objekte zueinander zu positionieren. @@ -26,8 +28,5 @@ Oder 3. Ein gerades Linienelement des dritten Objekts auswählen. 4. Schaltfläche ** [Achsensymmetrie](Assembly3_ConstraintSymmetricLine/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetricLine/de diff --git a/wiki/translations/de/Assembly3_ConstraintSymmetricVertical.md b/wiki/translations/de/Assembly3_ConstraintSymmetricVertical.md index ae68587bf9..dcdc4057ed 100644 --- a/wiki/translations/de/Assembly3_ConstraintSymmetricVertical.md +++ b/wiki/translations/de/Assembly3_ConstraintSymmetricVertical.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ConstraintSymmetricVertical/de + ## Beschreibung Dieses Werkzeug stellt eine Verbindung zwischen zwei Objekten eines Zusammenbaus her. Die Gewählten Elemente beider Objekte oder präziser ihre lokalen Koordinatensysteme (LKS) werden genutzt, um die Objekt zueinander zu positionieren. @@ -19,8 +21,5 @@ Bezüglich des LKS eines planaren Elements haben die Ursprünge der LKS von zwei 3. Ein ebenes Flächenelement des anderen Objekts auswählen 4. Schaltfläche ** [Vertikale Symmetrie](Assembly3_ConstraintSymmetricVertical/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetricVertical/de diff --git a/wiki/translations/de/Assembly3_CreateAssembly.md b/wiki/translations/de/Assembly3_CreateAssembly.md index f646854f4a..7d4f303b0d 100644 --- a/wiki/translations/de/Assembly3_CreateAssembly.md +++ b/wiki/translations/de/Assembly3_CreateAssembly.md @@ -7,6 +7,8 @@ Shortcut:**A** **N** --- +# Assembly3 CreateAssembly/de + ## Beschreibung Der Befehl **Assembly3 Baugruppe anlegen** fügt dem Konstruktionsbaum ein neues **Assembly**-Astobjekt hinzu. @@ -29,8 +31,5 @@ Das hinzugefügte **Assembly**-Objekt mit allen sichtbaren Containern sieht so a 1. Durch drücken der Schaltfläche ** [Baugruppe anlegen](Assembly3_CreateAssembly/de.md)** oder durch die Verwendung des Tastenkürzels **A** dann **N**, wird ein leerer Assembly-Container erzeugt - - - - - +--- +[documentation index](../README.md) > Assembly3 CreateAssembly/de diff --git a/wiki/translations/de/Assembly3_CreateElement.md b/wiki/translations/de/Assembly3_CreateElement.md index d03a9e3f12..e45b88ebae 100644 --- a/wiki/translations/de/Assembly3_CreateElement.md +++ b/wiki/translations/de/Assembly3_CreateElement.md @@ -7,6 +7,8 @@ Shortcut:**A** **E** --- +# Assembly3 CreateElement/de + ## Beschreibung Der Befehl [Element anlegen](Assembly3_CreateElement/de.md) legt neue Elemente von ausgewählten Objekten an. @@ -21,8 +23,5 @@ Er kann benutzt werden, um **Elemente** vorzubereiten, bevor Festlegungen angewe 2. Schaltfläche oder Tastenkürzel **A** dann **E** benutzen 3. (optional aber empfohlen) Umbenennen der Elemente durch editieren ihrer Eigenschaft **Label**. - - - - - +--- +[documentation index](../README.md) > Assembly3 CreateElement/de diff --git a/wiki/translations/de/Assembly3_GoToRelation.md b/wiki/translations/de/Assembly3_GoToRelation.md index 1f0cd16107..b2103c6651 100644 --- a/wiki/translations/de/Assembly3_GoToRelation.md +++ b/wiki/translations/de/Assembly3_GoToRelation.md @@ -8,6 +8,8 @@ Shortcut:**A** **R** --- +# Assembly3 GoToRelation/de + ## Beschreibung Der Befehl **Assembly3 Zur Beziehung gehen** kann dabei helfen Beziehungen im Baugruppenbaum zu finden. Ab der ersten Benutzung wird die Beziehungsgruppe (Relations group) sichtbar geschaltet. @@ -25,8 +27,5 @@ Das Ergebnis (hervorgehobene Objekte) hängt von den ausgewählten Objekten ab. 1. Ein Part-Objekt, ein Element oder eine Festlegung auswählen. 2. Die Schaltfläche ** [Zur Beziehung gehen](Assembly3_GoToRelation/de.md)** auswählen oder das Tastenkürzel **A** dann **R** benutzen. - - - - - +--- +[documentation index](../README.md) > Assembly3 GoToRelation/de diff --git a/wiki/translations/de/Assembly3_GroupObjects.md b/wiki/translations/de/Assembly3_GroupObjects.md index aa02e636d9..b45052dfd8 100644 --- a/wiki/translations/de/Assembly3_GroupObjects.md +++ b/wiki/translations/de/Assembly3_GroupObjects.md @@ -7,6 +7,8 @@ Shortcut:**A** **Z** --- +# Assembly3 GroupObjects/de + ## Beschreibung Der Befehl [Objekte gruppieren](Assembly3_GroupObjects/de.md) fügt einen neues (Unter-) **Gruppenordner**-Objekt zum Baugruppenzweig des Konstruktionsbaumes hinzu. @@ -20,8 +22,5 @@ Es kann genutzt werden, um entweder **Festlegungen**, **Elemente**, oder **Part- : Solange die Auswahl verschiedene Arten von Objekten enthält, ist die Schaltfläche ** [Objekte gruppieren](Assembly3_GroupObjects/de.md)** inaktiv. - - - - - +--- +[documentation index](../README.md) > Assembly3 GroupObjects/de diff --git a/wiki/translations/de/Assembly3_ImportFromSTEP.md b/wiki/translations/de/Assembly3_ImportFromSTEP.md index 4ab8793020..e44d03a9f8 100644 --- a/wiki/translations/de/Assembly3_ImportFromSTEP.md +++ b/wiki/translations/de/Assembly3_ImportFromSTEP.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ImportFromSTEP/de + ## Beschreibung Der Befehl [STEP-Dateien importieren](Assembly3_ImportFromSTEP/de.md) öffnet ein Browser-Fenster zum Suchen und Auswählen von STEP-Dateien. @@ -17,8 +19,5 @@ Der Befehl [STEP-Dateien importieren](Assembly3_ImportFromSTEP/de.md)** drücken, um ein Browser-Fenster zu öffnen 2. Eine STEP-Datei zum Importieren auswählen - - - - - +--- +[documentation index](../README.md) > Assembly3 ImportFromSTEP/de diff --git a/wiki/translations/de/Assembly3_ImportMultiDocument.md b/wiki/translations/de/Assembly3_ImportMultiDocument.md index 19d3f04a4e..bff2cc0338 100644 --- a/wiki/translations/de/Assembly3_ImportMultiDocument.md +++ b/wiki/translations/de/Assembly3_ImportMultiDocument.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 ImportMultiDocument/de + ## Beschreibung Der Befehl [Als Mehrfachdokument einfügen](Assembly3_ImportMultiDocument/de.md) öffnet ein Browser-Fenster zum Suchen und Auswählen von STEP-Dateien. @@ -17,8 +19,5 @@ STEP-Baugruppen werden als separate Dokumente eingefügt. 1. Schaltfläche ** [Als Mehrfachdokument einfügen](Assembly3_ImportMultiDocument/de.md)** drücken um ein Browser-Fenster zu öffnen 2. Eine STEP-Datei zum Einfügen auswählen - - - - - +--- +[documentation index](../README.md) > Assembly3 ImportMultiDocument/de diff --git a/wiki/translations/de/Assembly3_MeasureAngle.md b/wiki/translations/de/Assembly3_MeasureAngle.md index b96410961b..0e56e63dc4 100644 --- a/wiki/translations/de/Assembly3_MeasureAngle.md +++ b/wiki/translations/de/Assembly3_MeasureAngle.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 MeasureAngle/de + ## Beschreibung Dieses Werkzeug misst den Winkel zwischen zwei Objekten eines Zusammenbaus unter Benutzung gerader Kanten oder ebener Flächen. @@ -15,8 +17,5 @@ Dieses Werkzeug misst den Winkel zwischen zwei Objekten eines Zusammenbaus unter 1. Zwei gerade Kanten oder ebene Flächen auswählen (oder jeweils eine). 2. Schaltfläche ** [Winkel messen](Assembly3_MeasureAngle/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 MeasureAngle/de diff --git a/wiki/translations/de/Assembly3_MeasurePointLine.md b/wiki/translations/de/Assembly3_MeasurePointLine.md index c305409d60..eb68819bd3 100644 --- a/wiki/translations/de/Assembly3_MeasurePointLine.md +++ b/wiki/translations/de/Assembly3_MeasurePointLine.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 MeasurePointLine/de + ## Beschreibung Dieses Werkzeug misst den Abstand zwischen zwei Objekten eines Zusammenbaus unter Benutzung eines Punktes und einer geraden Kante. @@ -15,8 +17,5 @@ Dieses Werkzeug misst den Abstand zwischen zwei Objekten eines Zusammenbaus unte 1. Ein Punktelement und ein gerades Kantenelement auswählen 2. Schaltfläche ** [Punkt zu Linie messen](Assembly3_MeasurePointLine/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 MeasurePointLine/de diff --git a/wiki/translations/de/Assembly3_MeasurePointPlane.md b/wiki/translations/de/Assembly3_MeasurePointPlane.md index 612a4bf372..a89e0cd6da 100644 --- a/wiki/translations/de/Assembly3_MeasurePointPlane.md +++ b/wiki/translations/de/Assembly3_MeasurePointPlane.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 MeasurePointPlane/de + ## Beschreibung Dieses Werkzeug misst den Abstand zwischen zwei Objekten eines Zusammenbaus unter Benutzung eines Punktes und einer ebenen Fläche. @@ -15,8 +17,5 @@ Dieses Werkzeug misst den Abstand zwischen zwei Objekten eines Zusammenbaus unte 1. Ein Punktelement und ein ebenes Flächenelement auswählen. 2. Schaltfläche ** [Punkt zu Ebene messen](Assembly3_MeasurePointPlane/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 MeasurePointPlane/de diff --git a/wiki/translations/de/Assembly3_MeasurePoints.md b/wiki/translations/de/Assembly3_MeasurePoints.md index d1e456ec62..70384709f4 100644 --- a/wiki/translations/de/Assembly3_MeasurePoints.md +++ b/wiki/translations/de/Assembly3_MeasurePoints.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/de.md) --- +# Assembly3 MeasurePoints/de + ## Beschreibung Dieses Werkzeug misst den Abstand zwischen zwei Objekten eines Zusammenbaus unter Benutzung zweier Punkte. @@ -15,8 +17,5 @@ Dieses Werkzeug misst den Abstand zwischen zwei Objekten eines Zusammenbaus unte 1. Zwei Punktelemente auswählen 2. Schaltfläche ** [Punkt zu Punkt messen](Assembly3_MeasurePoints/de.md)** drücken. - - - - - +--- +[documentation index](../README.md) > Assembly3 MeasurePoints/de diff --git a/wiki/translations/de/Assembly3_Workbench.md b/wiki/translations/de/Assembly3_Workbench.md index 5024e82a53..585a6fa75b 100644 --- a/wiki/translations/de/Assembly3_Workbench.md +++ b/wiki/translations/de/Assembly3_Workbench.md @@ -1,7 +1,4 @@ -# Assembly3 Workbench/de - - -Assembly3 workbench icon +# Assembly3 workbench icon Assembly3 Workbench/de {{TOCright}} @@ -585,3 +582,6 @@ Ein Weg, dieses zu lösen ist, einfach alle ungültigen Beschränkungen und Elem [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Assembly3 Workbench/de diff --git a/wiki/translations/de/Assembly4_Workbench.md b/wiki/translations/de/Assembly4_Workbench.md index 05439d1c0f..80d4edbbf9 100644 --- a/wiki/translations/de/Assembly4_Workbench.md +++ b/wiki/translations/de/Assembly4_Workbench.md @@ -1,7 +1,4 @@ -# Assembly4 Workbench/de - - -External workbench icon +# External workbench icon Assembly4 Workbench/de ## Einleitung @@ -40,3 +37,6 @@ Assembly4 wurde angeregt durch @@ -21,3 +23,6 @@ Mit dem BIM Kasten Werkzeug kannst du eine Standard [Bauteilbox](Part_Box/de.md) 3. Klicke auf einen zweiten Punkt, um eine erste Kante des Kastens zu definieren, ausgehend vom ersten Punkt 4. Klicke auf einen dritten Punkt, um eine erste Fläche des Kastens zu definieren, die orthogonal zur ersten Kante liegt. 5. Klicke auf einen vierten Punkt, um den Extrusionsabstand der ersten Fläche zu definieren, die den endgültigen Kasten bildet. + +--- +[documentation index](../README.md) > BIM Box/de diff --git a/wiki/translations/de/BIM_Classification.md b/wiki/translations/de/BIM_Classification.md index ef9d5a1c48..41fc915144 100644 --- a/wiki/translations/de/BIM_Classification.md +++ b/wiki/translations/de/BIM_Classification.md @@ -6,6 +6,8 @@ MenuLocation:Verwalten → Klassifizierung --- +# BIM Classification/de + ## Beschreibung @@ -17,3 +19,6 @@ Der Klassifizierungsmanager ermöglicht es dir, einem BIM Objekt oder Material e - Installiere eine oder mehrere Klassifikations Standard XML oder IFC Dateien wie oben erklärt - Wenn du eine Klasse für ein Objekt hinzufügst oder bearbeiten möchtest, wähle dieses Objekt und drücke die Schaltfläche BIM Klassifikation - Wenn du eine Klasse für ein Material hinzufügst oder bearbeiten möchtest, wähle nichts aus und drücke die Schaltfläche BIM Klassifikation. Du kannst die Materialien direkt vom Fenster des Klassifizierungsmanagers aus durchsuchen. + +--- +[documentation index](../README.md) > BIM Classification/de diff --git a/wiki/translations/de/BIM_Clone.md b/wiki/translations/de/BIM_Clone.md index 4319f34267..b69a5fc82a 100644 --- a/wiki/translations/de/BIM_Clone.md +++ b/wiki/translations/de/BIM_Clone.md @@ -8,6 +8,11 @@ SeeAlso:[Entwurf Klonen](Draft_Clone/de.md) --- +# BIM Clone/de + ## Beschreibung Das BIM Klonen Werkzeug ist eine Abkürzung zum Standard [Entwurf Klonen](Draft_Clone/de.md) Werkzeug, startet aber direkt nach dem Klonen einen [Entwurf Verschieben](Draft_Move/de.md) Befehl, so dass du das geklonte Objekt in einem Rutsch klonen und an anderer Stelle im Modell platzieren kannst. + +--- +[documentation index](../README.md) > BIM Clone/de diff --git a/wiki/translations/de/BIM_Copy.md b/wiki/translations/de/BIM_Copy.md index 8d3d68898e..ce1f8141ab 100644 --- a/wiki/translations/de/BIM_Copy.md +++ b/wiki/translations/de/BIM_Copy.md @@ -8,6 +8,11 @@ SeeAlso:[Entwurf Bewegen](Draft_Move/de.md) --- +# BIM Copy/de + ## Beschreibung Das BIM Kopierwerkzeug ist eine Kurzbefehl zum Standardwerkzeug [Entwurf Verschieben](Draft_Move/de.md), jedoch angefangen bei aktivierter Kopieroption, die es ermöglicht, in einem Arbeitsgang eine Kopie eines Objekts zu erstellen und an einer bestimmten Stelle zu platzieren. + +--- +[documentation index](../README.md) > BIM Copy/de diff --git a/wiki/translations/de/BIM_IfcElements.md b/wiki/translations/de/BIM_IfcElements.md index b17e76b62a..6f137ff981 100644 --- a/wiki/translations/de/BIM_IfcElements.md +++ b/wiki/translations/de/BIM_IfcElements.md @@ -8,6 +8,8 @@ SeeAlso:[BIM IfcEigenschaften](BIM_IfcProperties/de.md),[BIM IfcGrößen](BIM_IfcQuantities/de.md) --- +# BIM IfcElements/de + ## Beschreibung @@ -20,3 +22,6 @@ Damit kannst du: - Umbenennen von Objekten durch Doppelklick auf ihren Namen - Ändern des IFC Typs durch Anklicken eines einzelnen Typs oder, wenn mehr als einer ausgewählt ist, über das Auswahlmenü \"Typ ändern in:\". - Ändern des Materials durch Anklicken eines einzelnen Materials oder, falls mehr als eines ausgewählt ist, über das Auswahlmenü \"Material ändern in:\". + +--- +[documentation index](../README.md) > BIM IfcElements/de diff --git a/wiki/translations/de/BIM_IfcProperties.md b/wiki/translations/de/BIM_IfcProperties.md index ba851aaaaa..d0b1606a3b 100644 --- a/wiki/translations/de/BIM_IfcProperties.md +++ b/wiki/translations/de/BIM_IfcProperties.md @@ -8,6 +8,8 @@ SeeAlso:[BIM IfcElemente](BIM_IfcElements/de.md),[BIM IfcGrößen](BIM_IfcQuantities/de.md) --- +# BIM IfcProperties/de + ## Beschreibung @@ -31,3 +33,6 @@ In der CSV Datei steht jede Zeile für einen anderen Eigenschaftssatz, beginnend Pset_FreeCAD;Name;IfcLabel;Version;IfcReal würde einen Eigenschaftssatz mit dem Namen \"FreeCAD\" definieren (das Präfix Pset\_ ist nicht obligatorisch, aber üblich), der zwei Eigenschaften enthält: eine namens \"Name\", die ein IfcLabel (ein Text) ist, und eine andere namens \"Version\", die ein IfcReal (ein numerischer Wert mit Dezimalstellen) ist + +--- +[documentation index](../README.md) > BIM IfcProperties/de diff --git a/wiki/translations/de/BIM_IfcQuantities.md b/wiki/translations/de/BIM_IfcQuantities.md index 81f4e22bf1..ebfeeb019c 100644 --- a/wiki/translations/de/BIM_IfcQuantities.md +++ b/wiki/translations/de/BIM_IfcQuantities.md @@ -8,6 +8,8 @@ SeeAlso:[BIM IfcElemente](BIM_IfcElements/de.md),[BIM IfcGrößen](BIM_IfcQuantities/de.md) --- +# BIM IfcQuantities/de + ## Beschreibung @@ -21,3 +23,6 @@ Die Idee hinter expliziten Größen ist, sie für Anwendungen verfügbar zu mach Beim Exportieren einer IFC Datei aus FreeCAD werden standardmäßig keine expliziten Größen exportiert. Mit dem IFC Größenverwalter kannst du markieren, welche Größen exportiert werden sollen, und deren Werte überprüfen. Neben Nullwerten werden Warnzeichen angezeigt, die dich auf mögliche Probleme hinweisen, die du vor dem Exportieren beheben solltest. Du kannst auch den Größenmanager verwenden, um die tatsächlichen **Höhe**, **Breite** und **Länge** Werte von Objekten zu ändern oder zu fixieren. Dies hat jedoch Auswirkungen auf die Objektgeometrie in FreeCAD. + +--- +[documentation index](../README.md) > BIM IfcQuantities/de diff --git a/wiki/translations/de/BIM_Layers.md b/wiki/translations/de/BIM_Layers.md index 2ada062a49..f07d423f3b 100644 --- a/wiki/translations/de/BIM_Layers.md +++ b/wiki/translations/de/BIM_Layers.md @@ -7,6 +7,8 @@ MenuLocation:Verwalten → Lagen --- +# BIM Layers/de + ## Beschreibung @@ -16,3 +18,6 @@ Mit dem Lagenverwalter kannst du [Lagen](Draft_Layer/de.md) verwalten. Lagen sin Lagen werden von/nach [IFC](Arch_IFC/de.md) und [DXF/DWG](Draft_DXF/de.md) importiert und exportiert. Mit dem Lagenverwalter kannst du deine Lagen verwalten, Lagen hinzufügen oder entfernen oder ihre visuellen Eigenschaften ändern. Um Objekte zu einer Lage hinzuzufügen, ziehe sie einfach in die Lage in der Strukturansicht. Um sie zu entfernen, ziehe sie aus der Lage und legen sie im Dokumentstamm ab. + +--- +[documentation index](../README.md) > BIM Layers/de diff --git a/wiki/translations/de/BIM_Library.md b/wiki/translations/de/BIM_Library.md index 30e5354ede..503d3aa9ce 100644 --- a/wiki/translations/de/BIM_Library.md +++ b/wiki/translations/de/BIM_Library.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Ausrüstung](Arch_Equipment/de.md) --- +# BIM Library/de + ## Beschreibung Mit dem BIM Bibliothek Werkzeug kannst du im aktuellen Modell ein Objekt aus der [FreeCAD Bauteilbibliothek](Parts_Library/de.md) platzieren, das über den [Erweiterungsverwalter](Addon_Manager/de.md) installiert werden muss, damit dieses Tool verfügbar ist. @@ -35,3 +37,6 @@ Mit dem BIM Bibliothek Werkzeug kannst du im aktuellen Modell ein Objekt aus der [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM Library/de diff --git a/wiki/translations/de/BIM_Project.md b/wiki/translations/de/BIM_Project.md index 68a33b62b9..ff0f81fefb 100644 --- a/wiki/translations/de/BIM_Project.md +++ b/wiki/translations/de/BIM_Project.md @@ -6,6 +6,8 @@ MenuLocation:Verwalten → Projekt verwalten... --- +# BIM Project/de + ## Beschreibung @@ -26,3 +28,6 @@ Der Projekteinstellungsdialog kann erstellt werden: Das Projektwerkzeug unterstützt zwei Arten von Vorlagen: Nachdem du die verschiedenen Optionen ausgefüllt hast, kann der Inhalt des BIM Projekteinstellungsassistenten als Vorlage **gespeichert** werden. Diese Vorlagen können **wiederhergestellt** und zu einem späteren Zeitpunkt angepasst werden. Die Projektvorlagen werden als einfache Textdateien in deinem FreeCAD Benutzerordner gespeichert. Alternativ kannst du auch den Inhalt des aktuellen Dokuments als Vorlage speichern. Dadurch wird das aktuell geöffnete Dokument als Standarddatei **.FCStd** gespeichert, enthält aber auch zusätzliche BIM Einstellungen wie die aktuelle Arbeitsebene oder die aktuellen Einheiten. Wenn du die Option **Wiederherstellen** jederzeit verwendest, wird der Inhalt dieser Vorlagendatei mit dem aktiven Dokument zusammengeführt und alle darin gefundenen Einstellungen werden angewendet. + +--- +[documentation index](../README.md) > BIM Project/de diff --git a/wiki/translations/de/BIM_Setup.md b/wiki/translations/de/BIM_Setup.md index ce6c993735..e4e8d8c941 100644 --- a/wiki/translations/de/BIM_Setup.md +++ b/wiki/translations/de/BIM_Setup.md @@ -6,6 +6,8 @@ MenuLocation:Verwalten → Einrichtung --- +# BIM Setup/de + ## Beschreibung @@ -13,3 +15,6 @@ Das Einstellungssystem von FreeCAD, das sich unter dem Menü **Bearbeiten -\> Einstellungen** befindet, ist sehr komplex. Der **BIM Einrichtungsdialog** bietet eine vereinfachte Version davon, indem er einige der für die BIM Arbeit am häufigsten verwendeten Einstellungen unter einem einfachen Bildschirm zusammenfasst. Die Änderung einer der dortigen Einstellungsoptionen hat den gleichen Effekt wie die Änderung der entsprechenden Einstellung unter Bearbeiten -\> Einstellungen. Durch Bewegen des Mauszeigers über jede Einstellung wird dir eine ttoltip Erläuterung angezeigt, wofür sie verwendet wird und wo die entsprechende Einstellung im allgemeinen FreeCAD Einstellungssystem zu finden ist. + +--- +[documentation index](../README.md) > BIM Setup/de diff --git a/wiki/translations/de/BIM_Views.md b/wiki/translations/de/BIM_Views.md index 1a89872b08..2be5570d79 100644 --- a/wiki/translations/de/BIM_Views.md +++ b/wiki/translations/de/BIM_Views.md @@ -6,6 +6,8 @@ MenuLocation:Verwalten → Ansichten --- +# BIM Views/de + ## Beschreibung Der BIM Ansichten und Ebenenmanager ist ein andockbares Fenster, das sich unterhalb der normalen Baumansicht öffnet und alle [GebäudeTeile](Arch_BuildingPart/de.md) und [Arbeitsebenen Proxies](Draft_WorkingPlaneProxy/de.md) deines Modells enthält. @@ -36,3 +38,6 @@ Der BIM Ansichtenverwalter zeigt alle Ebenen (Gebäudeteile) und Arbeitsebenen P }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > BIM Views/de diff --git a/wiki/translations/de/BIM_Windows.md b/wiki/translations/de/BIM_Windows.md index 944dfe061a..382324c810 100644 --- a/wiki/translations/de/BIM_Windows.md +++ b/wiki/translations/de/BIM_Windows.md @@ -7,6 +7,8 @@ MenuLocation:Verwalten → Fenster --- +# BIM Windows/de + ## Beschreibung Der BIM Fenstermanager Dialog ermöglicht es dir, alle [Fenster und Türen](Arch_Window/de.md) deines Projekts gemeinsam zu durchsuchen und zu bearbeiten. Dies ist oft bequemer, als sie einzeln zu bearbeiten, und ermöglicht es dir, sicherzustellen, dass sie alle die von dir benötigten Parameter korrekt eingestellt haben, wie z. B. Kennzeichnung, Abmessungen, Beschreibung oder Material. @@ -21,3 +23,6 @@ Der BIM Fenstermanager Dialog ermöglicht es dir, alle [Fenster und Türen](Arch }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > BIM Windows/de diff --git a/wiki/translations/de/BIM_Workbench.md b/wiki/translations/de/BIM_Workbench.md index c570772bf2..8ded279028 100644 --- a/wiki/translations/de/BIM_Workbench.md +++ b/wiki/translations/de/BIM_Workbench.md @@ -1,8 +1,4 @@ -# BIM Workbench/de - - - -BIM Externes Arbeitsbereichssymbol +# BIM Externes Arbeitsbereichssymbol BIM Workbench/de {{TOCright}} @@ -187,3 +183,6 @@ Neue Arbeitsbereiche sind in der Entwicklung, bleib\' dran! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > BIM Workbench/de diff --git a/wiki/translations/de/BIM_application_compatibility_table.md b/wiki/translations/de/BIM_application_compatibility_table.md index 8477fb08f0..4b03e2d1bd 100644 --- a/wiki/translations/de/BIM_application_compatibility_table.md +++ b/wiki/translations/de/BIM_application_compatibility_table.md @@ -1,6 +1,5 @@ # BIM application compatibility table/de - - Diese Seite gibt einen allgemeinen Überblick darüber, wie die verschiedenen Werkzeuge und Konzepte, die in anderen gängigen BIM Anwendungen zu finden sind, im Vergleich zu FreeCAD, speziell der [BIM Arbeitsbereich](BIM_Workbench/de.md), aussehen. +Diese Seite gibt einen allgemeinen Überblick darüber, wie die verschiedenen Werkzeuge und Konzepte, die in anderen gängigen BIM Anwendungen zu finden sind, im Vergleich zu FreeCAD, speziell der [BIM Arbeitsbereich](BIM_Workbench/de.md), aussehen. **ZUTUN:** Andere BIM Apps hinzufügen: Allplan, Tekla, Vectorworks, BricsCAD, was noch? @@ -16,3 +15,6 @@ **Standard BIM Elemente** Wände, Strukturen (Balken, Säulen und Decken), Fenster (Türen und Fenster), Dächer, Treppen, Rahmen (Geländer), Bauteile (Möbel, Geräte, etc.) Wände, Balken, Säulen, Böden, Decken, Fenster, Türen, Dächer, Treppen, Geländer, Bauteile (Möbel, Geräte, etc.) Wände, Balken, Säulen, Decken, Fenster, Türen, Dächer, Treppen, Geländer, Vorhangfassaden, Objekte (Möbel, Geräte, etc.) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM application compatibility table/de diff --git a/wiki/translations/de/BIM_ingame_tutorial.md b/wiki/translations/de/BIM_ingame_tutorial.md index 9ed81c3371..788123b47b 100644 --- a/wiki/translations/de/BIM_ingame_tutorial.md +++ b/wiki/translations/de/BIM_ingame_tutorial.md @@ -1,8 +1,4 @@ -# BIM ingame tutorial/de - - - - +# BIM ingame tutorial/de {{BIMTutorialAction|descr=Dies ist das Imspiel Tutorium des [BIM Arbeitsbereichs](BIM_Workbench/de.md). Es ist nicht dafür gedacht, hier im Wiki gelesen zu werden, sondern es wird aus FreeCAD heraus, im BIM Arbeitsbereich, unter dem Menü '''Hilfe -> BIM Tutorium''' gestartet. Es enthält eine Reihe von Schritten, die vom Benutzer auszuführen sind. Jeder Schritt wird durch eine Instanz der [{{BIMTutorialAction|descr|goal1|test1|goal2|test2}}](Template:BIMTutorialAction.md) Vorlage abgeschlossen, die über die Bedingung informiert, die erfüllt werden muss. Bilder sollten 300px breit sein. Auf dieser Seite sollten keine SVG Bilder verwendet werden, da sie vom QTextBrowser Widget nicht unterstützt werden}} @@ -509,3 +505,6 @@ FreeCAD ist eine freie Software, die von einer enthusiastischen Gemeinschaft von {{BIMTutorialAction|descr=Keine Aktion für diesen Schritt ausführen}} [Category:BIM](Category:BIM.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM ingame tutorial/de diff --git a/wiki/translations/de/Base_API.md b/wiki/translations/de/Base_API.md index fc6f003fa9..a12aab8d23 100644 --- a/wiki/translations/de/Base_API.md +++ b/wiki/translations/de/Base_API.md @@ -1,5 +1,5 @@ # Base API/de - **(Oktober 2019) Bearbeite diese Seiten nicht. Die Informationen sind unvollständig und veraltet. Die neueste API findest Du in der [https://www.freecadweb.org/api autogenerierten API-Dokumentation] oder generiere die Dokumentation selbst, siehe [Quelldokumentation](Source_documentation/de.md).** +**(Oktober 2019) Bearbeite diese Seiten nicht. Die Informationen sind unvollständig und veraltet. Die neueste API findest Du in der [https://www.freecadweb.org/api autogenerierten API-Dokumentation] oder generiere die Dokumentation selbst, siehe [Quelldokumentation](Source_documentation/de.md).** The Base module is contained inside the FreeCAD module and contains constructors for different types of objects heavily used in FreeCAD. @@ -30,3 +30,6 @@ A bounding box is an orthographic cube which is a way to describe outer boundari [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Base API/de diff --git a/wiki/translations/de/Basic_Part_Design_Tutorial.md b/wiki/translations/de/Basic_Part_Design_Tutorial.md index e0b186ffeb..525246e546 100644 --- a/wiki/translations/de/Basic_Part_Design_Tutorial.md +++ b/wiki/translations/de/Basic_Part_Design_Tutorial.md @@ -1,5 +1,5 @@ # Basic Part Design Tutorial/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic=Modellieren |Level=Einsteiger |Author=Mark Stephen ([Quick61](User:Quick61.md)) und HarryGeier ([HarryGeier](User:HarryGeier.md)) @@ -147,4 +147,7 @@ Dieses Tutorium und dein Modell sind vollständig. {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Part Design Tutorial/de diff --git a/wiki/translations/de/Basic_Part_Design_Tutorial_017.md b/wiki/translations/de/Basic_Part_Design_Tutorial_017.md index 38510da105..969b954f04 100644 --- a/wiki/translations/de/Basic_Part_Design_Tutorial_017.md +++ b/wiki/translations/de/Basic_Part_Design_Tutorial_017.md @@ -1,2 +1,5 @@ # Basic Part Design Tutorial 017/de 1. REDIRECT [Basic\_Part\_Design\_Tutorial/de](Basic_Part_Design_Tutorial/de.md) + +--- +[documentation index](../README.md) > Basic Part Design Tutorial 017/de diff --git a/wiki/translations/de/Basic_Sketcher_Tutorial.md b/wiki/translations/de/Basic_Sketcher_Tutorial.md index c64f671c1b..894dc212d3 100644 --- a/wiki/translations/de/Basic_Sketcher_Tutorial.md +++ b/wiki/translations/de/Basic_Sketcher_Tutorial.md @@ -1,7 +1,4 @@ # Basic Sketcher Tutorial/de - - - {{TutorialInfo/de |Topic= Skizzierer |Level= Anfänger @@ -292,4 +289,7 @@ Die Beschränkung einer Skizze kann auf viele verschiedene Arten erfolgen. Im Al {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Sketcher Tutorial/de diff --git a/wiki/translations/de/Basic_TechDraw_Tutorial.md b/wiki/translations/de/Basic_TechDraw_Tutorial.md index d3c44f794d..6dcac0bdc4 100644 --- a/wiki/translations/de/Basic_TechDraw_Tutorial.md +++ b/wiki/translations/de/Basic_TechDraw_Tutorial.md @@ -1,5 +1,5 @@ # Basic TechDraw Tutorial/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic=Modellierung |Level=Anfänger |Author=[WandererFan](User:WandererFan.md) @@ -151,4 +151,7 @@ Es gibt viel mehr Funktionalitäten in TechDraw zu erforschen - Section Views, D {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Basic TechDraw Tutorial/de diff --git a/wiki/translations/de/Basic_modeling_tutorial.md b/wiki/translations/de/Basic_modeling_tutorial.md index 48503fb8ce..6c1d5834c4 100644 --- a/wiki/translations/de/Basic_modeling_tutorial.md +++ b/wiki/translations/de/Basic_modeling_tutorial.md @@ -1,5 +1,5 @@ # Basic modeling tutorial/de - {{TutorialInfo/de +{{TutorialInfo/de |Thema= Einführung in die Modellierung |Level= Anfänger |Time= 15 Minuten @@ -129,4 +129,7 @@ Die obigen Anweisungen werden funktionieren, unabhängig von der Beschriftung De {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Basic modeling tutorial/de diff --git a/wiki/translations/de/Bitmap.md b/wiki/translations/de/Bitmap.md index bb36e9d2ec..781aa37a51 100644 --- a/wiki/translations/de/Bitmap.md +++ b/wiki/translations/de/Bitmap.md @@ -1,6 +1,4 @@ # Bitmap/de - - ## Beschreibung [Bitmap](https://de.wikipedia.org/wiki/Bitmap) oder [Rastergrafik](https://de.wikipedia.org/wiki/Rastergrafik) sind 2D-Bilder, die Sammlungen von Pixeln in verschiedenen Farbschattierungen enthalten. Zusammen präsentieren Tausende oder Millionen von Pixeln dem Betrachter eine Abbildung oder eine Farbaufnahme. @@ -17,3 +15,6 @@ FreeCAD kann über den [Image-Arbeitsbereich](Image_Workbench/de.md) Bitmap-Bild [Category:User Documentation](Category:User_Documentation.md) [Category:TechDraw](Category:TechDraw.md) [Category:Image](Category:Image.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Bitmap/de diff --git a/wiki/translations/de/Body.md b/wiki/translations/de/Body.md index cf4c7997c9..b5c4aeeed4 100644 --- a/wiki/translations/de/Body.md +++ b/wiki/translations/de/Body.md @@ -1,6 +1,4 @@ # Body/de - - ## Einleitung In FreeCAD wird das Wort \"[Körper](Body/de.md)\" normalerweise verwendet, um sich auf ein [PartDesign Körper](PartDesign_Body/de.md) Objekt (`PartDesign::Body` Klasse ) zu beziehen, das vom [PartDesign Arbeitsbereich](PartDesign_Workbench/de.md) definiert wird. Dies ist ein Behälterobjekt, das [2D Skizzen](Sketch/de.md) und [3D geometrische Formelemente](PartDesign_Feature/de.md) aufnehmen kann, um eine Volumenkörperform zu erstellen. @@ -29,3 +27,6 @@ Ein Körper ist nicht erforderlich, wenn der [Part Arbeitsbereich](Part_Workbenc }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Body/de diff --git a/wiki/translations/de/Branding.md b/wiki/translations/de/Branding.md index 1017076a58..122fc62b14 100644 --- a/wiki/translations/de/Branding.md +++ b/wiki/translations/de/Branding.md @@ -1,10 +1,4 @@ # Branding/de - - - - - - {{TOCright}} ## Übersicht @@ -103,3 +97,6 @@ Alle aufgeführten Tags sind optional. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Branding/de diff --git a/wiki/translations/de/Bug_Triage.md b/wiki/translations/de/Bug_Triage.md index d1b91bdbf7..d5cdac67f5 100644 --- a/wiki/translations/de/Bug_Triage.md +++ b/wiki/translations/de/Bug_Triage.md @@ -1,10 +1,4 @@ # Bug Triage/de - - - - - - {{TOCright}} ## Why @@ -155,3 +149,6 @@ An important methodology to track tickets by a certain subject/theme/category. I [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Bug Triage/de diff --git a/wiki/translations/de/Bugtracker.md b/wiki/translations/de/Bugtracker.md index 744a610535..14d3fdd698 100644 --- a/wiki/translations/de/Bugtracker.md +++ b/wiki/translations/de/Bugtracker.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Bugtracker/de diff --git a/wiki/translations/de/Builtin_modules.md b/wiki/translations/de/Builtin_modules.md index 136cc1efe3..2c90818e50 100644 --- a/wiki/translations/de/Builtin_modules.md +++ b/wiki/translations/de/Builtin_modules.md @@ -1,5 +1,5 @@ # Builtin modules/de - **(Oktober 2019) Bearbeite diese Seiten nicht. Die Informationen sind unvollständig und veraltet. Die neueste API findest Du in der [https://www.freecadweb.org/api autogenerierten API-Dokumentation] oder generiere die Dokumentation selbst, siehe [Quelldokumentation](Source_documentation/de.md).** +**(Oktober 2019) Bearbeite diese Seiten nicht. Die Informationen sind unvollständig und veraltet. Die neueste API findest Du in der [https://www.freecadweb.org/api autogenerierten API-Dokumentation] oder generiere die Dokumentation selbst, siehe [Quelldokumentation](Source_documentation/de.md).** Auf dieser Seite findest Du weiterführende Informationen über die eingebauten FreeCAD Module und welche Funktionen und Eigenschaften Dir zur Verfügung stehen. Diese Seite ist keine vollständige Liste aller Inhalte dieser Module, und aufgrund der schnellen Entwicklung von FreeCAD sind die hier vorgestellten Informationen vielleicht etwas veraltet, aber sie sollten Dir einen guten Überblick über die Möglichkeiten geben. Für eine vollständige Liste der Modulinhalte verwende die Funktion dir(module) im Interpreter. @@ -25,3 +25,6 @@ Auf dieser Seite findest Du weiterführende Informationen über die eingebauten }} [Category:API](Category:API.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Builtin modules/de diff --git a/wiki/translations/de/CAM_project.md b/wiki/translations/de/CAM_project.md index 9e2eb212fe..9ebd783428 100644 --- a/wiki/translations/de/CAM_project.md +++ b/wiki/translations/de/CAM_project.md @@ -1,7 +1,10 @@ # CAM project/de - Der CAM-Arbeitsbereich und das Projekt sind veraltet. Stattdessen siehe [Path-Arbeitsbereich](Path_Workbench/de.md) +Der CAM-Arbeitsbereich und das Projekt sind veraltet. Stattdessen siehe [Path-Arbeitsbereich](Path_Workbench/de.md) [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > CAM project/de diff --git a/wiki/translations/de/CadQuery_Workbench.md b/wiki/translations/de/CadQuery_Workbench.md index 478dd7a9a6..868a981284 100644 --- a/wiki/translations/de/CadQuery_Workbench.md +++ b/wiki/translations/de/CadQuery_Workbench.md @@ -1,5 +1,4 @@ -# CadQuery Workbench/de - CadAbfrage Arbeitsbereichssymbol +# CadAbfrage Arbeitsbereichssymbol CadQuery Workbench/de **(January 2021) @@ -58,3 +57,6 @@ Die neueste Version von CadAbfrage nutzt nicht mehr FreeCAD und ist nicht mit de [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > CadQuery Workbench/de diff --git a/wiki/translations/de/Category:3rd_Party.md b/wiki/translations/de/Category:3rd_Party.md index 0af12cd58a..9408b41479 100644 --- a/wiki/translations/de/Category:3rd_Party.md +++ b/wiki/translations/de/Category:3rd_Party.md @@ -4,3 +4,6 @@ The page should never have been created. The rule in other cases has been to del ### Contents: [3Dconnexion input devices/de](3Dconnexion_input_devices/de.md) , [Developing FreeCAD with GitKraken/de](Developing_FreeCAD_with_GitKraken/de.md) , [Doxygen/de](Doxygen/de.md) , [IfcOpenShell/de](IfcOpenShell/de.md) , [Import/Export IFC - compiling IfcOpenShell/de](Import/Export_IFC_-_compiling_IfcOpenShell/de.md) , [NumPy/de](NumPy/de.md) , [Std DependencyGraph/de](Std_DependencyGraph/de.md) + +--- +[documentation index](../README.md) > Category:3rd Party/de diff --git a/wiki/translations/de/Category:API.md b/wiki/translations/de/Category:API.md index 65ea6ba032..b30d9d1310 100644 --- a/wiki/translations/de/Category:API.md +++ b/wiki/translations/de/Category:API.md @@ -8,3 +8,6 @@ This category gathers article that list objects and methods available to the pyt [Arch API/de](Arch_API/de.md) , [Base API/de](Base_API/de.md) , [Builtin modules/de](Builtin_modules/de.md) , [Console API/de](Console_API/de.md) , [Draft API/de](Draft_API/de.md) , [FeaturePython Custom Properties/de](FeaturePython_Custom_Properties/de.md) , [FreeCAD API/de](FreeCAD_API/de.md) , [FreeCADGui API/de](FreeCADGui_API/de.md) , [Matrix API/de](Matrix_API/de.md) , [Mesh API/de](Mesh_API/de.md) , [Object API/de](Object_API/de.md) , [Part API/de](Part_API/de.md) , [Placement API/de](Placement_API/de.md) , [Reinforcement API/de](Reinforcement_API/de.md) , [Selection API/de](Selection_API/de.md) , [TechDraw API/de](TechDraw_API/de.md) , [TechDrawGui API/de](TechDrawGui_API/de.md) , [TopoShape API/de](TopoShape_API/de.md) , [Vector API/de](Vector_API/de.md) , [ViewObject API/de](ViewObject_API/de.md) [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:API/de diff --git a/wiki/translations/de/Category:API_Documentation.md b/wiki/translations/de/Category:API_Documentation.md index 303996430e..8305b586fe 100644 --- a/wiki/translations/de/Category:API_Documentation.md +++ b/wiki/translations/de/Category:API_Documentation.md @@ -6,3 +6,6 @@ This category gathers all articles documenting the python API of FreeCAD and its [Python/de](Python/de.md) [Category:Documentation/de](Category:Documentation/de.md) + +--- +[documentation index](../README.md) > Category:API Documentation/de diff --git a/wiki/translations/de/Category:Addons.md b/wiki/translations/de/Category:Addons.md index 8628a81b20..cc21a765ca 100644 --- a/wiki/translations/de/Category:Addons.md +++ b/wiki/translations/de/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/de - - Diese Seite listet externe Erweiterungsarbeitsbereiche auf, die eine Seite in diesem Wiki haben. Erweiterungen sind Module oder Arbeitsbereiche, die von der Gemeinschaft beigesteuert werden und nicht Teil des FreeCAD Standards sind. ### Contents: @@ -8,3 +6,6 @@ Diese Seite listet externe Erweiterungsarbeitsbereiche auf, die eine Seite in di [A2plus Workbench/de](A2plus_Workbench/de.md) , [Addon/de](Addon/de.md) , [Animation Workbench/de](Animation_Workbench/de.md) , [Assembly3 Workbench/de](Assembly3_Workbench/de.md) , [Assembly4 Workbench/de](Assembly4_Workbench/de.md) , [BIM Workbench/de](BIM_Workbench/de.md) , [CadQuery Workbench/de](CadQuery_Workbench/de.md) , [Civil Engineering Workbench/de](Civil_Engineering_Workbench/de.md) , [Curves Workbench/de](Curves_Workbench/de.md) , [Defeaturing Workbench/de](Defeaturing_Workbench/de.md) , [Defeaturing/de](Defeaturing/de.md) , [External workbenches/de](External_workbenches/de.md) , [Fasteners Workbench/de](Fasteners_Workbench/de.md) , [FCGear BevelGear/de](FCGear_BevelGear/de.md) , [FCGear CrownGear/de](FCGear_CrownGear/de.md) , [FCGear CycloideGear/de](FCGear_CycloideGear/de.md) , [FCGear InvoluteGear/de](FCGear_InvoluteGear/de.md) , [FCGear InvoluteRack/de](FCGear_InvoluteRack/de.md) , [FCGear LanternGear/de](FCGear_LanternGear/de.md) , [FCGear Workbench/de](FCGear_Workbench/de.md) , [FCGear WormGear/de](FCGear_WormGear/de.md) , [Flamingo Workbench/de](Flamingo_Workbench/de.md) , [How to install additional workbenches/de](How_to_install_additional_workbenches/de.md) , [KicadStepUp Workbench/de](KicadStepUp_Workbench/de.md) , [Lattice2 Workbench/de](Lattice2_Workbench/de.md) , [Macro WorkFeatures/de](Macro_WorkFeatures/de.md) , [ModernUI Workbench/de](ModernUI_Workbench/de.md) , [Parts Library Workbench/de](Parts_Library_Workbench/de.md) , [PCB Workbench/de](PCB_Workbench/de.md) , [Plot Axes/de](Plot_Axes/de.md) , [Plot Basic tutorial/de](Plot_Basic_tutorial/de.md) , [Plot Grid/de](Plot_Grid/de.md) , [Plot Labels/de](Plot_Labels/de.md) , [Plot Legend/de](Plot_Legend/de.md) , [Plot Module/de](Plot_Module/de.md) , [Plot MultiAxes tutorial/de](Plot_MultiAxes_tutorial/de.md) , [Plot Positions/de](Plot_Positions/de.md) , [Plot Save/de](Plot_Save/de.md) , [Plot Series/de](Plot_Series/de.md) , [Pyramids and polyhedrons Workbench/de](Pyramids_and_polyhedrons_Workbench/de.md) , [Render project/de](Render_project/de.md) , [SheetMetal AddBase/de](SheetMetal_AddBase/de.md) , [SheetMetal AddCornerRelief/de](SheetMetal_AddCornerRelief/de.md) , [SheetMetal AddFoldWall/de](SheetMetal_AddFoldWall/de.md) , [SheetMetal AddJunction/de](SheetMetal_AddJunction/de.md) , [SheetMetal AddRelief/de](SheetMetal_AddRelief/de.md) , [SheetMetal AddWall/de](SheetMetal_AddWall/de.md) , [SheetMetal Extrude/de](SheetMetal_Extrude/de.md) , [SheetMetal Forming/de](SheetMetal_Forming/de.md) , [SheetMetal SketchOnSheet/de](SheetMetal_SketchOnSheet/de.md) , [SheetMetal UnattendedUnfold/de](SheetMetal_UnattendedUnfold/de.md) , [SheetMetal Workbench/de](SheetMetal_Workbench/de.md) , [Ship Workbench/de](Ship_Workbench/de.md) , [Symbols Library Workbench/de](Symbols_Library_Workbench/de.md) , [ThreadProfile Workbench/de](ThreadProfile_Workbench/de.md) , [WebTools Workbench/de](WebTools_Workbench/de.md) , [Workfeature Workbench/de](Workfeature_Workbench/de.md) , , [Category:Categories](Category:Categories.md) [Category:External Workbenches/de](Category:External_Workbenches/de.md) [Category:FCGear/de](Category:FCGear/de.md) + +--- +[documentation index](../README.md) > Category:Addons/de diff --git a/wiki/translations/de/Category:Administration.md b/wiki/translations/de/Category:Administration.md index a7d18401b6..56b92db9f7 100644 --- a/wiki/translations/de/Category:Administration.md +++ b/wiki/translations/de/Category:Administration.md @@ -12,3 +12,6 @@ Den betreffenden Artikeln folgende Zeile anhängen: [Template:Arch Tools navi/de](Template:Arch_Tools_navi/de.md) , [Template:Artwork/de](Template:Artwork/de.md) , [Bug Triage/de](Bug_Triage/de.md) , [Changelog/de](Changelog/de.md) , [Crowdin Administration/de](Crowdin_Administration/de.md) , [Crowdin Scripts/de](Crowdin_Scripts/de.md) , [Template:Draft Tools navi/de](Template:Draft_Tools_navi/de.md) , [Template:Drawing Tools navi/de](Template:Drawing_Tools_navi/de.md) , [Template:FEM Tools navi/de](Template:FEM_Tools_navi/de.md) , [Template:Interface navi/de](Template:Interface_navi/de.md) , [Template:MenuCommand/de](Template:MenuCommand/de.md) , [Template:Mesh Tools navi/de](Template:Mesh_Tools_navi/de.md) , [Template:OpenSCAD Tools navi/de](Template:OpenSCAD_Tools_navi/de.md) , [Template:Part Tools navi/de](Template:Part_Tools_navi/de.md) , [Template:PartDesign Tools navi/de](Template:PartDesign_Tools_navi/de.md) , [Template:Path Tools navi/de](Template:Path_Tools_navi/de.md) , [Template:Plot Tools navi/de](Template:Plot_Tools_navi/de.md) , [Template:Powerdocnavi/de](Template:Powerdocnavi/de.md) , [Template:Properties Title/de](Template:Properties_Title/de.md) , [Template:PropertyData/de](Template:PropertyData/de.md) , [Template:PropertyView/de](Template:PropertyView/de.md) , [Python 3/de](Python_3/de.md) , [Template:Raytracing Tools navi/de](Template:Raytracing_Tools_navi/de.md) , [Template:Robot Tools navi/de](Template:Robot_Tools_navi/de.md) , [Template:Ship Tools navi/de](Template:Ship_Tools_navi/de.md) , [Template:Sketcher Tools navi/de](Template:Sketcher_Tools_navi/de.md) , [Template:Start Tools navi/de](Template:Start_Tools_navi/de.md) , [Template:Std Base/de](Template:Std_Base/de.md) , [Template:TechDraw Tools navi/de](Template:TechDraw_Tools_navi/de.md) , [Tracker/de](Tracker/de.md) , [Template:UnfinishedDocu/de](Template:UnfinishedDocu/de.md) , [WikiPages/de](WikiPages/de.md) , [WikiRobots/de](WikiRobots/de.md) , , [Category:Categories/de](Category:Categories/de.md) [Category:UnfinishedDocu/de](Category:UnfinishedDocu/de.md) [Category:Wiki/de](Category:Wiki/de.md) + +--- +[documentation index](../README.md) > Category:Administration/de diff --git a/wiki/translations/de/Category:Arch.md b/wiki/translations/de/Category:Arch.md index 16f2340fb6..4dd4312c7c 100644 --- a/wiki/translations/de/Category:Arch.md +++ b/wiki/translations/de/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Arch 3DS/de](Arch_3DS/de.md) , [Arch 3Views/de](Arch_3Views/de.md) , [Arch Add/de](Arch_Add/de.md) , [Arch API/de](Arch_API/de.md) , [Arch Axis/de](Arch_Axis/de.md) , [Arch AxisSystem/de](Arch_AxisSystem/de.md) , [Arch Building/de](Arch_Building/de.md) , [Arch BuildingPart/de](Arch_BuildingPart/de.md) , [Arch Check/de](Arch_Check/de.md) , [Arch CloneComponent/de](Arch_CloneComponent/de.md) , [Arch CloseHoles/de](Arch_CloseHoles/de.md) , [Arch CompAxis/de](Arch_CompAxis/de.md) , [Arch Component/de](Arch_Component/de.md) , [Arch CompPanel/de](Arch_CompPanel/de.md) , [Arch CompPipe/de](Arch_CompPipe/de.md) , [Arch CompRebarStraight/de](Arch_CompRebarStraight/de.md) , [Arch CompSetMaterial/de](Arch_CompSetMaterial/de.md) , [Arch CurtainWall/de](Arch_CurtainWall/de.md) , [Arch CutLine/de](Arch_CutLine/de.md) , [Arch CutPlane/de](Arch_CutPlane/de.md) , [Arch DAE/de](Arch_DAE/de.md) , [Arch Door/de](Arch_Door/de.md) , [Arch Equipment/de](Arch_Equipment/de.md) , [Arch Fence/de](Arch_Fence/de.md) , [Arch Floor/de](Arch_Floor/de.md) , [Arch Frame/de](Arch_Frame/de.md) , [Arch Grid/de](Arch_Grid/de.md) , [Arch IFC/de](Arch_IFC/de.md) , [Arch IfcExplorer/de](Arch_IfcExplorer/de.md) , [Arch IfcSpreadsheet/de](Arch_IfcSpreadsheet/de.md) , [Arch JSON/de](Arch_JSON/de.md) , [Arch MergeWalls/de](Arch_MergeWalls/de.md) , [Arch MeshToShape/de](Arch_MeshToShape/de.md) , [Arch MultiMaterial/de](Arch_MultiMaterial/de.md) , [Arch Nest/de](Arch_Nest/de.md) , [Arch OBJ/de](Arch_OBJ/de.md) , [Arch Panel Cut/de](Arch_Panel_Cut/de.md) , [Arch Panel Sheet/de](Arch_Panel_Sheet/de.md) , [Arch panel tutorial/de](Arch_panel_tutorial/de.md) , [Arch Panel/de](Arch_Panel/de.md) , [Arch Pipe/de](Arch_Pipe/de.md) , [Arch PipeConnector/de](Arch_PipeConnector/de.md) , [Arch Preferences/de](Arch_Preferences/de.md) , [Arch Profile/de](Arch_Profile/de.md) , [Arch Project/de](Arch_Project/de.md) , [Arch Rebar BeamReinforcement/de](Arch_Rebar_BeamReinforcement/de.md) , [Arch Rebar BentShape/de](Arch_Rebar_BentShape/de.md) , [Arch Rebar Circular ColumnReinforcement/de](Arch_Rebar_Circular_ColumnReinforcement/de.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/de](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/de.md) , [Arch Rebar ColumnReinforcement/de](Arch_Rebar_ColumnReinforcement/de.md) , [Arch Rebar Dimensioning/de](Arch_Rebar_Dimensioning/de.md) , [Arch Rebar Drawing Dimensioning/de](Arch_Rebar_Drawing_Dimensioning/de.md) , [Arch Rebar Drawing/de](Arch_Rebar_Drawing/de.md) , [Arch Rebar Helical/de](Arch_Rebar_Helical/de.md) , [Arch Rebar LShape/de](Arch_Rebar_LShape/de.md) , [Arch Rebar Stirrup/de](Arch_Rebar_Stirrup/de.md) , [Arch Rebar Straight/de](Arch_Rebar_Straight/de.md) , [Arch Rebar UShape/de](Arch_Rebar_UShape/de.md) , [Arch Rebar/de](Arch_Rebar/de.md) , [Arch Reference/de](Arch_Reference/de.md) , [Arch Remove/de](Arch_Remove/de.md) , [Arch RemoveShape/de](Arch_RemoveShape/de.md) , [Arch Roof/de](Arch_Roof/de.md) , [Arch Schedule/de](Arch_Schedule/de.md) , [Arch SectionPlane/de](Arch_SectionPlane/de.md) , [Arch SelectNonSolidMeshes/de](Arch_SelectNonSolidMeshes/de.md) , [Arch SetMaterial/de](Arch_SetMaterial/de.md) , [Arch Site/de](Arch_Site/de.md) , [Arch Space/de](Arch_Space/de.md) , [Arch SplitMesh/de](Arch_SplitMesh/de.md) , [Arch Stairs/de](Arch_Stairs/de.md) , [Arch Structure/de](Arch_Structure/de.md) , [Arch Survey/de](Arch_Survey/de.md) , [Arch ToggleIfcBrepFlag/de](Arch_ToggleIfcBrepFlag/de.md) , [Arch ToggleSubs/de](Arch_ToggleSubs/de.md) , [Template:Arch Tools navi/de](Template:Arch_Tools_navi/de.md) , [Arch Truss/de](Arch_Truss/de.md) , [Arch tutorial/de](Arch_tutorial/de.md) , [Arch Wall/de](Arch_Wall/de.md) , [Arch Window/de](Arch_Window/de.md) , [Arch Workbench/de](Arch_Workbench/de.md) , [BIM Library/de](BIM_Library/de.md) , [Custom Spacing/de](Custom_Spacing/de.md) , [IfcOpenShell/de](IfcOpenShell/de.md) , [Import/Export IFC - compiling IfcOpenShell/de](Import/Export_IFC_-_compiling_IfcOpenShell/de.md) , [Manual:BIM modeling/de](Manual:BIM_modeling/de.md) , [Material/de](Material/de.md) , [Reinforcement Addon/de](Reinforcement_Addon/de.md) , [Reinforcement API/de](Reinforcement_API/de.md) , [Tutorial custom placing of windows and doors/de](Tutorial_custom_placing_of_windows_and_doors/de.md) , [Tutorial for open windows/de](Tutorial_for_open_windows/de.md) , [Category:User Documentation/de](Category:User_Documentation/de.md) [Category:BIM/de](Category:BIM/de.md) [Category:Reinforcement/de](Category:Reinforcement/de.md) + +--- +[documentation index](../README.md) > Category:Arch/de diff --git a/wiki/translations/de/Category:Artwork.md b/wiki/translations/de/Category:Artwork.md index e96f618501..0cf8ee2383 100644 --- a/wiki/translations/de/Category:Artwork.md +++ b/wiki/translations/de/Category:Artwork.md @@ -6,3 +6,6 @@ This category collects pages related to artwork existing in the program, like ic [Artwork Erroneous/de](Artwork_Erroneous/de.md) , [Artwork Gui/de](Artwork_Gui/de.md) , [Artwork Guidelines/de](Artwork_Guidelines/de.md) , [Artwork Mesh/de](Artwork_Mesh/de.md) , [Artwork Part/de](Artwork_Part/de.md) , [Artwork PartDesign/de](Artwork_PartDesign/de.md) , [Artwork Reinforcement/de](Artwork_Reinforcement/de.md) , [Artwork Sketcher/de](Artwork_Sketcher/de.md) , [Artwork TechDraw/de](Artwork_TechDraw/de.md) , [Artwork Tux/de](Artwork_Tux/de.md) , [Artwork/de](Artwork/de.md) , [Template:Artwork/de](Template:Artwork/de.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > Category:Artwork/de diff --git a/wiki/translations/de/Category:BIM.md b/wiki/translations/de/Category:BIM.md index 0aebb8cc8b..f1cf438f66 100644 --- a/wiki/translations/de/Category:BIM.md +++ b/wiki/translations/de/Category:BIM.md @@ -6,3 +6,6 @@ This category is for pages related to building information management (BIM). [Arch IfcExplorer/de](Arch_IfcExplorer/de.md) , [BIM application compatibility table/de](BIM_application_compatibility_table/de.md) , [BIM ingame tutorial/de](BIM_ingame_tutorial/de.md) , [BIM Library/de](BIM_Library/de.md) , [BIM Workbench/de](BIM_Workbench/de.md) , [IfcOpenShell/de](IfcOpenShell/de.md) , [Import/Export IFC - compiling IfcOpenShell/de](Import/Export_IFC_-_compiling_IfcOpenShell/de.md) , [Manual:BIM modeling/de](Manual:BIM_modeling/de.md) , [Material/de](Material/de.md) , [Category:User Documentation/de](Category:User_Documentation/de.md) [Category:Arch/de](Category:Arch/de.md) + +--- +[documentation index](../README.md) > Category:BIM/de diff --git a/wiki/translations/de/Category:Base.md b/wiki/translations/de/Category:Base.md index d9057472db..e75ccc82cf 100644 --- a/wiki/translations/de/Category:Base.md +++ b/wiki/translations/de/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/de](Category:User_Documentation/de.md) + +--- +[documentation index](../README.md) > Category:Base/de diff --git a/wiki/translations/de/Category:Categories.md b/wiki/translations/de/Category:Categories.md index 8a77573baa..eb03be9be0 100644 --- a/wiki/translations/de/Category:Categories.md +++ b/wiki/translations/de/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , , , , , , , , , , , , , , , [Category:Categories/de](Category:Categories/de.md) [Category:Addons/de](Category:Addons/de.md) [Category:Administration/de](Category:Administration/de.md) [Category:API/de](Category:API/de.md) [Category:Categories/de](Category:Categories/de.md) [Category:Command Reference/de](Category:Command_Reference/de.md) [Category:Developer/de](Category:Developer/de.md) [Category:Documentation/de](Category:Documentation/de.md) [Category:Help/de](Category:Help/de.md) [Category:Hubs/de](Category:Hubs/de.md) [Category:Image/de](Category:Image/de.md) [Category:Macros/de](Category:Macros/de.md) [Category:News/de](Category:News/de.md) [Category:Pages to delete/de](Category:Pages_to_delete/de.md) [Category:Poweruser Documentation/de](Category:Poweruser_Documentation/de.md) [Category:Python Code/de](Category:Python_Code/de.md) [Category:Repository/de](Category:Repository/de.md) [Category:Roadmap/de](Category:Roadmap/de.md) [Category:Template/de](Category:Template/de.md) [Category:Tutorials/de](Category:Tutorials/de.md) [Category:UnfinishedDocu/de](Category:UnfinishedDocu/de.md) [Category:User Documentation/de](Category:User_Documentation/de.md) [Category:Wiki/de](Category:Wiki/de.md) + +--- +[documentation index](../README.md) > Category:Categories/de diff --git a/wiki/translations/de/Category:Command_Reference.md b/wiki/translations/de/Category:Command_Reference.md index c0a55ed3ed..46d86567a7 100644 --- a/wiki/translations/de/Category:Command_Reference.md +++ b/wiki/translations/de/Category:Command_Reference.md @@ -9,3 +9,6 @@ Diese Kategorie enthält die Hilfeseiten jedes FreeCAD-Befehls. [Arch 3Views/de](Arch_3Views/de.md) , [Arch Add/de](Arch_Add/de.md) , [Arch Axis/de](Arch_Axis/de.md) , [Arch AxisSystem/de](Arch_AxisSystem/de.md) , [Arch Building/de](Arch_Building/de.md) , [Arch BuildingPart/de](Arch_BuildingPart/de.md) , [Arch Check/de](Arch_Check/de.md) , [Arch CloneComponent/de](Arch_CloneComponent/de.md) , [Arch CloseHoles/de](Arch_CloseHoles/de.md) , [Arch CompAxis/de](Arch_CompAxis/de.md) , [Arch Component/de](Arch_Component/de.md) , [Arch CompPanel/de](Arch_CompPanel/de.md) , [Arch CompPipe/de](Arch_CompPipe/de.md) , [Arch CompRebarStraight/de](Arch_CompRebarStraight/de.md) , [Arch CompSetMaterial/de](Arch_CompSetMaterial/de.md) , [Arch CurtainWall/de](Arch_CurtainWall/de.md) , [Arch CutLine/de](Arch_CutLine/de.md) , [Arch CutPlane/de](Arch_CutPlane/de.md) , [Arch Door/de](Arch_Door/de.md) , [Arch Equipment/de](Arch_Equipment/de.md) , [Arch Fence/de](Arch_Fence/de.md) , [Arch Floor/de](Arch_Floor/de.md) , [Arch Frame/de](Arch_Frame/de.md) , [Arch Grid/de](Arch_Grid/de.md) , [Arch IfcExplorer/de](Arch_IfcExplorer/de.md) , [Arch IfcSpreadsheet/de](Arch_IfcSpreadsheet/de.md) , [Arch MergeWalls/de](Arch_MergeWalls/de.md) , [Arch MeshToShape/de](Arch_MeshToShape/de.md) , [Arch MultiMaterial/de](Arch_MultiMaterial/de.md) , [Arch Nest/de](Arch_Nest/de.md) , [Arch Panel Cut/de](Arch_Panel_Cut/de.md) , [Arch Panel Sheet/de](Arch_Panel_Sheet/de.md) , [Arch Panel/de](Arch_Panel/de.md) , [Arch Pipe/de](Arch_Pipe/de.md) , [Arch PipeConnector/de](Arch_PipeConnector/de.md) , [Arch Profile/de](Arch_Profile/de.md) , [Arch Project/de](Arch_Project/de.md) , [Arch Rebar BeamReinforcement/de](Arch_Rebar_BeamReinforcement/de.md) , [Arch Rebar BentShape/de](Arch_Rebar_BentShape/de.md) , [Arch Rebar Circular ColumnReinforcement/de](Arch_Rebar_Circular_ColumnReinforcement/de.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/de](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/de.md) , [Arch Rebar ColumnReinforcement/de](Arch_Rebar_ColumnReinforcement/de.md) , [Arch Rebar Dimensioning/de](Arch_Rebar_Dimensioning/de.md) , [Arch Rebar Drawing Dimensioning/de](Arch_Rebar_Drawing_Dimensioning/de.md) , [Arch Rebar Drawing/de](Arch_Rebar_Drawing/de.md) , [Arch Rebar Helical/de](Arch_Rebar_Helical/de.md) , [Arch Rebar LShape/de](Arch_Rebar_LShape/de.md) , [Arch Rebar Stirrup/de](Arch_Rebar_Stirrup/de.md) , [Arch Rebar Straight/de](Arch_Rebar_Straight/de.md) , [Arch Rebar UShape/de](Arch_Rebar_UShape/de.md) , [Arch Rebar/de](Arch_Rebar/de.md) , [Arch Reference/de](Arch_Reference/de.md) , [Arch Remove/de](Arch_Remove/de.md) , [Arch RemoveShape/de](Arch_RemoveShape/de.md) , [Arch Roof/de](Arch_Roof/de.md) , [Arch Schedule/de](Arch_Schedule/de.md) , [Arch SectionPlane/de](Arch_SectionPlane/de.md) , [Arch SelectNonSolidMeshes/de](Arch_SelectNonSolidMeshes/de.md) , [Arch SetMaterial/de](Arch_SetMaterial/de.md) , [Arch Site/de](Arch_Site/de.md) , [Arch Space/de](Arch_Space/de.md) , [Arch SplitMesh/de](Arch_SplitMesh/de.md) , [Arch Stairs/de](Arch_Stairs/de.md) , [Arch Structure/de](Arch_Structure/de.md) , [Arch Survey/de](Arch_Survey/de.md) , [Arch ToggleIfcBrepFlag/de](Arch_ToggleIfcBrepFlag/de.md) , [Arch ToggleSubs/de](Arch_ToggleSubs/de.md) , [Arch Truss/de](Arch_Truss/de.md) , [Arch Wall/de](Arch_Wall/de.md) , [Arch Window/de](Arch_Window/de.md) , [Assembly3 ConstraintAlignment/de](Assembly3_ConstraintAlignment/de.md) , [Assembly3 ConstraintAngle/de](Assembly3_ConstraintAngle/de.md) , [Assembly3 ConstraintAttachment/de](Assembly3_ConstraintAttachment/de.md) , [Assembly3 ConstraintAxial/de](Assembly3_ConstraintAxial/de.md) , [Assembly3 ConstraintCoincidence/de](Assembly3_ConstraintCoincidence/de.md) , [Assembly3 ConstraintColinear/de](Assembly3_ConstraintColinear/de.md) , [Assembly3 ConstraintDiameter/de](Assembly3_ConstraintDiameter/de.md) , [Assembly3 ConstraintEqualAngle/de](Assembly3_ConstraintEqualAngle/de.md) , [Assembly3 ConstraintEqualLength/de](Assembly3_ConstraintEqualLength/de.md) , [Assembly3 ConstraintEqualLineArcLength/de](Assembly3_ConstraintEqualLineArcLength/de.md) , [Assembly3 ConstraintEqualPointLineDistance/de](Assembly3_ConstraintEqualPointLineDistance/de.md) , [Assembly3 ConstraintEqualRadius/de](Assembly3_ConstraintEqualRadius/de.md) , [Assembly3 ConstraintLengthDifference/de](Assembly3_ConstraintLengthDifference/de.md) , [Assembly3 ConstraintLengthEqualPointLineDistance/de](Assembly3_ConstraintLengthEqualPointLineDistance/de.md) , [Assembly3 ConstraintLengthRatio/de](Assembly3_ConstraintLengthRatio/de.md) , [Assembly3 ConstraintLineHorizontal/de](Assembly3_ConstraintLineHorizontal/de.md) , [Assembly3 ConstraintLineLength/de](Assembly3_ConstraintLineLength/de.md) , [Assembly3 ConstraintLineVertical/de](Assembly3_ConstraintLineVertical/de.md) , [Assembly3 ConstraintLock/de](Assembly3_ConstraintLock/de.md) , [Assembly3 ConstraintMidPoint/de](Assembly3_ConstraintMidPoint/de.md) , [Assembly3 ConstraintMore/de](Assembly3_ConstraintMore/de.md) , [Assembly3 ConstraintMultiParallel/de](Assembly3_ConstraintMultiParallel/de.md) , [Assembly3 ConstraintPerpendicular/de](Assembly3_ConstraintPerpendicular/de.md) , [Assembly3 ConstraintPointDistance/de](Assembly3_ConstraintPointDistance/de.md) , [Assembly3 ConstraintPointInPlane/de](Assembly3_ConstraintPointInPlane/de.md) , [Assembly3 ConstraintPointLineDistance/de](Assembly3_ConstraintPointLineDistance/de.md) , [Assembly3 ConstraintPointOnCircle/de](Assembly3_ConstraintPointOnCircle/de.md) , [Assembly3 ConstraintPointOnLine/de](Assembly3_ConstraintPointOnLine/de.md) , [Assembly3 ConstraintPointPlaneDistance/de](Assembly3_ConstraintPointPlaneDistance/de.md) , [Assembly3 ConstraintPointsCoincident/de](Assembly3_ConstraintPointsCoincident/de.md) , [Assembly3 ConstraintPointsDistance/de](Assembly3_ConstraintPointsDistance/de.md) , [Assembly3 ConstraintPointsHorizontal/de](Assembly3_ConstraintPointsHorizontal/de.md) , [Assembly3 ConstraintPointsProjectDistance/de](Assembly3_ConstraintPointsProjectDistance/de.md) , [Assembly3 ConstraintPointsSymmetric/de](Assembly3_ConstraintPointsSymmetric/de.md) , [Assembly3 ConstraintPointsVertical/de](Assembly3_ConstraintPointsVertical/de.md) , [Assembly3 ConstraintSameOrientation/de](Assembly3_ConstraintSameOrientation/de.md) , [Assembly3 ConstraintSketchPlane/de](Assembly3_ConstraintSketchPlane/de.md) , [Assembly3 ConstraintSymmetric/de](Assembly3_ConstraintSymmetric/de.md) , [Assembly3 ConstraintSymmetricHorizontal/de](Assembly3_ConstraintSymmetricHorizontal/de.md) , [Assembly3 ConstraintSymmetricLine/de](Assembly3_ConstraintSymmetricLine/de.md) , [Assembly3 ConstraintSymmetricVertical/de](Assembly3_ConstraintSymmetricVertical/de.md) , [Assembly3 CreateAssembly/de](Assembly3_CreateAssembly/de.md) , [Assembly3 CreateElement/de](Assembly3_CreateElement/de.md) , [Assembly3 GoToRelation/de](Assembly3_GoToRelation/de.md) , [Assembly3 GroupObjects/de](Assembly3_GroupObjects/de.md) , [Assembly3 ImportFromSTEP/de](Assembly3_ImportFromSTEP/de.md) , [Assembly3 ImportMultiDocument/de](Assembly3_ImportMultiDocument/de.md) , [Assembly3 MeasureAngle/de](Assembly3_MeasureAngle/de.md) , [Assembly3 MeasurePointLine/de](Assembly3_MeasurePointLine/de.md) , [Assembly3 MeasurePointPlane/de](Assembly3_MeasurePointPlane/de.md) , [Assembly3 MeasurePoints/de](Assembly3_MeasurePoints/de.md) , [BIM Box/de](BIM_Box/de.md) , [BIM Classification/de](BIM_Classification/de.md) , [BIM Clone/de](BIM_Clone/de.md) , [BIM Copy/de](BIM_Copy/de.md) , [BIM IfcElements/de](BIM_IfcElements/de.md) , [BIM IfcProperties/de](BIM_IfcProperties/de.md) , [BIM IfcQuantities/de](BIM_IfcQuantities/de.md) , [BIM Layers/de](BIM_Layers/de.md) , [BIM Library/de](BIM_Library/de.md) , [BIM Project/de](BIM_Project/de.md) , [BIM Setup/de](BIM_Setup/de.md) , [BIM Views/de](BIM_Views/de.md) , [BIM Windows/de](BIM_Windows/de.md) , [Curves ExtendCurve/de](Curves_ExtendCurve/de.md) , [Curves JoinCurve/de](Curves_JoinCurve/de.md) , [Curves Line/de](Curves_Line/de.md) , [Curves PasteSVG/de](Curves_PasteSVG/de.md) , [Curves SplitCurve/de](Curves_SplitCurve/de.md) , [Curves ToConsole/de](Curves_ToConsole/de.md) , [Draft AddConstruction/de](Draft_AddConstruction/de.md) , [Draft AddToGroup/de](Draft_AddToGroup/de.md) , [Draft AnnotationStyleEditor/de](Draft_AnnotationStyleEditor/de.md) , [Draft ApplyStyle/de](Draft_ApplyStyle/de.md) , [Draft Arc 3Points/de](Draft_Arc_3Points/de.md) , [Draft Arc/de](Draft_Arc/de.md) , [Draft Array/de](Draft_Array/de.md) , [Draft AutoGroup/de](Draft_AutoGroup/de.md) , [Draft BezCurve/de](Draft_BezCurve/de.md) , [Draft BSpline/de](Draft_BSpline/de.md) , [Draft Circle/de](Draft_Circle/de.md) , [Draft CircularArray/de](Draft_CircularArray/de.md) , [Draft Clone/de](Draft_Clone/de.md) , [Draft CubicBezCurve/de](Draft_CubicBezCurve/de.md) , [Draft Dimension/de](Draft_Dimension/de.md) , [Draft Downgrade/de](Draft_Downgrade/de.md) , [Draft Draft2Sketch/de](Draft_Draft2Sketch/de.md) , [Draft Drawing/de](Draft_Drawing/de.md) , [Draft Edit/de](Draft_Edit/de.md) , [Draft Ellipse/de](Draft_Ellipse/de.md) , [Draft Facebinder/de](Draft_Facebinder/de.md) , [Draft Fillet/de](Draft_Fillet/de.md) , [Draft FlipDimension/de](Draft_FlipDimension/de.md) , [Draft Heal/de](Draft_Heal/de.md) , [Draft Join/de](Draft_Join/de.md) , [Draft Label/de](Draft_Label/de.md) , [Draft Layer/de](Draft_Layer/de.md) , [Draft Line/de](Draft_Line/de.md) , [Draft Mirror/de](Draft_Mirror/de.md) , [Draft Move/de](Draft_Move/de.md) , [Draft Offset/de](Draft_Offset/de.md) , [Draft OrthoArray/de](Draft_OrthoArray/de.md) , [Draft PathArray/de](Draft_PathArray/de.md) , [Draft PathLinkArray/de](Draft_PathLinkArray/de.md) , [Draft Point/de](Draft_Point/de.md) , [Draft PointArray/de](Draft_PointArray/de.md) , [Draft PointLinkArray/de](Draft_PointLinkArray/de.md) , [Draft PolarArray/de](Draft_PolarArray/de.md) , [Draft Polygon/de](Draft_Polygon/de.md) , [Draft Rectangle/de](Draft_Rectangle/de.md) , [Draft Rotate/de](Draft_Rotate/de.md) , [Draft Scale/de](Draft_Scale/de.md) , [Draft SelectGroup/de](Draft_SelectGroup/de.md) , [Draft SelectPlane/de](Draft_SelectPlane/de.md) , [Draft SetStyle/de](Draft_SetStyle/de.md) , [Draft Shape2DView/de](Draft_Shape2DView/de.md) , [Draft ShapeString/de](Draft_ShapeString/de.md) , [Draft ShowSnapBar/de](Draft_ShowSnapBar/de.md) , [Draft Slope/de](Draft_Slope/de.md) , [Draft Snap Angle/de](Draft_Snap_Angle/de.md) , [Draft Snap Center/de](Draft_Snap_Center/de.md) , [Draft Snap Dimensions/de](Draft_Snap_Dimensions/de.md) , [Draft Snap Endpoint/de](Draft_Snap_Endpoint/de.md) , [Draft Snap Extension/de](Draft_Snap_Extension/de.md) , [Draft Snap Grid/de](Draft_Snap_Grid/de.md) , [Draft Snap Intersection/de](Draft_Snap_Intersection/de.md) , [Draft Snap Lock/de](Draft_Snap_Lock/de.md) , [Draft Snap Midpoint/de](Draft_Snap_Midpoint/de.md) , [Draft Snap Near/de](Draft_Snap_Near/de.md) , [Draft Snap Ortho/de](Draft_Snap_Ortho/de.md) , [Draft Snap Parallel/de](Draft_Snap_Parallel/de.md) , [Draft Snap Perpendicular/de](Draft_Snap_Perpendicular/de.md) , [Draft Snap Special/de](Draft_Snap_Special/de.md) , [Draft Snap WorkingPlane/de](Draft_Snap_WorkingPlane/de.md) , [Draft Split/de](Draft_Split/de.md) , [Draft Stretch/de](Draft_Stretch/de.md) , [Draft SubelementHighlight/de](Draft_SubelementHighlight/de.md) , [Draft Text/de](Draft_Text/de.md) , [Draft ToggleConstructionMode/de](Draft_ToggleConstructionMode/de.md) , [Draft ToggleContinueMode/de](Draft_ToggleContinueMode/de.md) , [Draft ToggleDisplayMode/de](Draft_ToggleDisplayMode/de.md) , [Draft ToggleGrid/de](Draft_ToggleGrid/de.md) , [Draft Trimex/de](Draft_Trimex/de.md) , [Draft Upgrade/de](Draft_Upgrade/de.md) , [Draft Wire/de](Draft_Wire/de.md) , [Draft WireToBSpline/de](Draft_WireToBSpline/de.md) , [Draft WorkingPlaneProxy/de](Draft_WorkingPlaneProxy/de.md) , [Drawing Annotation/de](Drawing_Annotation/de.md) , [Drawing Clip/de](Drawing_Clip/de.md) , [Drawing Landscape A3/de](Drawing_Landscape_A3/de.md) , [Drawing Open SVG/de](Drawing_Open_SVG/de.md) , [Drawing Openbrowser/de](Drawing_Openbrowser/de.md) , [Drawing Orthoviews/de](Drawing_Orthoviews/de.md) , [Drawing ProjectShape/de](Drawing_ProjectShape/de.md) , [Drawing View/de](Drawing_View/de.md) , [FCGear BevelGear/de](FCGear_BevelGear/de.md) , [FCGear CrownGear/de](FCGear_CrownGear/de.md) , [FCGear CycloideGear/de](FCGear_CycloideGear/de.md) , [FCGear InvoluteGear/de](FCGear_InvoluteGear/de.md) , [FCGear InvoluteRack/de](FCGear_InvoluteRack/de.md) , [FCGear LanternGear/de](FCGear_LanternGear/de.md) , [FCGear WormGear/de](FCGear_WormGear/de.md) , [FEM Analysis/de](FEM_Analysis/de.md) , [FEM ConstraintBodyHeatSource/de](FEM_ConstraintBodyHeatSource/de.md) , [FEM ConstraintFixed/de](FEM_ConstraintFixed/de.md) , [FEM ConstraintForce/de](FEM_ConstraintForce/de.md) , [FEM ConstraintPressure/de](FEM_ConstraintPressure/de.md) , [FEM ConstraintTemperature/de](FEM_ConstraintTemperature/de.md) , [FEM ElementRotation1D/de](FEM_ElementRotation1D/de.md) , [FEM MaterialFluid/de](FEM_MaterialFluid/de.md) , [FEM MaterialMechanicalNonlinear/de](FEM_MaterialMechanicalNonlinear/de.md) , [FEM MaterialSolid/de](FEM_MaterialSolid/de.md) , [FEM MeshBoundaryLayer/de](FEM_MeshBoundaryLayer/de.md) , [FEM MeshGmshFromShape/de](FEM_MeshGmshFromShape/de.md) , [FEM MeshNetgenFromShape/de](FEM_MeshNetgenFromShape/de.md) , [FEM SolverCalculiX/de](FEM_SolverCalculiX/de.md) , [GuiCommand model/de](GuiCommand_model/de.md) , [Template:GuiCommand/de](Template:GuiCommand/de.md) , [Template:GuiCommandAddon/de](Template:GuiCommandAddon/de.md) , [Image CreateImagePlane/de](Image_CreateImagePlane/de.md) , [Image Open/de](Image_Open/de.md) , [Image Scaling/de](Image_Scaling/de.md) , [Mesh AddFacet/de](Mesh_AddFacet/de.md) , [Mesh BoundingBox/de](Mesh_BoundingBox/de.md) , [Mesh BuildRegularSolid/de](Mesh_BuildRegularSolid/de.md) , [Mesh CurvatureInfo/de](Mesh_CurvatureInfo/de.md) , [Mesh Difference/de](Mesh_Difference/de.md) , [Mesh EvaluateFacet/de](Mesh_EvaluateFacet/de.md) , [Mesh EvaluateSolid/de](Mesh_EvaluateSolid/de.md) , [Mesh Evaluation/de](Mesh_Evaluation/de.md) , [Mesh Export/de](Mesh_Export/de.md) , [Mesh FillInteractiveHole/de](Mesh_FillInteractiveHole/de.md) , [Mesh FlipNormals/de](Mesh_FlipNormals/de.md) , [Mesh FromPartShape/de](Mesh_FromPartShape/de.md) , [Mesh HarmonizeNormals/de](Mesh_HarmonizeNormals/de.md) , [Mesh Import/de](Mesh_Import/de.md) , [Mesh Intersection/de](Mesh_Intersection/de.md) , [Mesh Merge/de](Mesh_Merge/de.md) , [Mesh PolyCut/de](Mesh_PolyCut/de.md) , [Mesh RemeshGmsh/de](Mesh_RemeshGmsh/de.md) , [Mesh RemoveCompByHand/de](Mesh_RemoveCompByHand/de.md) , [Mesh RemoveComponents/de](Mesh_RemoveComponents/de.md) , [Mesh Scale/de](Mesh_Scale/de.md) , [Mesh Union/de](Mesh_Union/de.md) , [Mesh VertexCurvature/de](Mesh_VertexCurvature/de.md) , [OpenSCAD AddOpenSCADElement/de](OpenSCAD_AddOpenSCADElement/de.md) , [OpenSCAD ColorCodeShape/de](OpenSCAD_ColorCodeShape/de.md) , [OpenSCAD Edgestofaces/de](OpenSCAD_Edgestofaces/de.md) , [OpenSCAD ExpandPlacements/de](OpenSCAD_ExpandPlacements/de.md) , [OpenSCAD ExplodeGroup/de](OpenSCAD_ExplodeGroup/de.md) , [OpenSCAD Hull/de](OpenSCAD_Hull/de.md) , [OpenSCAD IncreaseToleranceFeature/de](OpenSCAD_IncreaseToleranceFeature/de.md) , [OpenSCAD MeshBoolean/de](OpenSCAD_MeshBoolean/de.md) , [OpenSCAD Minkowski/de](OpenSCAD_Minkowski/de.md) , [OpenSCAD MirrorMeshFeature/de](OpenSCAD_MirrorMeshFeature/de.md) , [OpenSCAD RefineShapeFeature/de](OpenSCAD_RefineShapeFeature/de.md) , [OpenSCAD RemoveSubtree/de](OpenSCAD_RemoveSubtree/de.md) , [OpenSCAD ReplaceObject/de](OpenSCAD_ReplaceObject/de.md) , [Part Boolean/de](Part_Boolean/de.md) , [Part BooleanFragments/de](Part_BooleanFragments/de.md) , [Part Box/de](Part_Box/de.md) , [Part BoxSelection/de](Part_BoxSelection/de.md) , [Part Builder/de](Part_Builder/de.md) , [Part Chamfer/de](Part_Chamfer/de.md) , [Part CheckGeometry/de](Part_CheckGeometry/de.md) , [Part Circle/de](Part_Circle/de.md) , [Part Common/de](Part_Common/de.md) , [Part CompCompoundTools/de](Part_CompCompoundTools/de.md) , [Part CompJoinFeatures/de](Part_CompJoinFeatures/de.md) , [Part CompOffsetTools/de](Part_CompOffsetTools/de.md) , [Part Compound/de](Part_Compound/de.md) , [Part CompoundFilter/de](Part_CompoundFilter/de.md) , [Part CompSplittingTools/de](Part_CompSplittingTools/de.md) , [Part Cone/de](Part_Cone/de.md) , [Part CrossSections/de](Part_CrossSections/de.md) , [Part Cut/de](Part_Cut/de.md) , [Part Cylinder/de](Part_Cylinder/de.md) , [Part Defeaturing/de](Part_Defeaturing/de.md) , [Part EditAttachment/de](Part_EditAttachment/de.md) , [Part ElementCopy/de](Part_ElementCopy/de.md) , [Part Ellipse/de](Part_Ellipse/de.md) , [Part Ellipsoid/de](Part_Ellipsoid/de.md) , [Part ExplodeCompound/de](Part_ExplodeCompound/de.md) , [Part Export/de](Part_Export/de.md) , [Part Extrude/de](Part_Extrude/de.md) , [Part FaceColors/de](Part_FaceColors/de.md) , [Part Fillet/de](Part_Fillet/de.md) , [Part Fuse/de](Part_Fuse/de.md) , [Part Helix/de](Part_Helix/de.md) , [Part Import/de](Part_Import/de.md) , [Part JoinConnect/de](Part_JoinConnect/de.md) , [Part JoinCutout/de](Part_JoinCutout/de.md) , [Part JoinEmbed/de](Part_JoinEmbed/de.md) , [Part Line/de](Part_Line/de.md) , [Part Loft/de](Part_Loft/de.md) , [Part MakeSolid/de](Part_MakeSolid/de.md) , [Part Measure Angular/de](Part_Measure_Angular/de.md) , [Part Measure Clear All/de](Part_Measure_Clear_All/de.md) , [Part Measure Linear/de](Part_Measure_Linear/de.md) , [Part Measure Menu/de](Part_Measure_Menu/de.md) , [Part Measure Refresh/de](Part_Measure_Refresh/de.md) , [Part Measure Toggle 3d/de](Part_Measure_Toggle_3d/de.md) , [Part Measure Toggle All/de](Part_Measure_Toggle_All/de.md) , [Part Measure Toggle Delta/de](Part_Measure_Toggle_Delta/de.md) , [Part Mirror/de](Part_Mirror/de.md) , [Part Offset/de](Part_Offset/de.md) , [Part Offset2D/de](Part_Offset2D/de.md) , [Part Plane/de](Part_Plane/de.md) , [Part Point/de](Part_Point/de.md) , [Part PointsFromMesh/de](Part_PointsFromMesh/de.md) , [Part Primitives/de](Part_Primitives/de.md) , [Part Prism/de](Part_Prism/de.md) , [Part ProjectionOnSurface/de](Part_ProjectionOnSurface/de.md) , [Part RefineShape/de](Part_RefineShape/de.md) , [Part RegularPolygon/de](Part_RegularPolygon/de.md) , [Part ReverseShapes/de](Part_ReverseShapes/de.md) , [Part Revolve/de](Part_Revolve/de.md) , [Part RuledSurface/de](Part_RuledSurface/de.md) , [Part Section/de](Part_Section/de.md) , [Part ShapeFromMesh/de](Part_ShapeFromMesh/de.md) , [Part SimpleCopy/de](Part_SimpleCopy/de.md) , [Part Slice/de](Part_Slice/de.md) , [Part SliceApart/de](Part_SliceApart/de.md) , [Part Sphere/de](Part_Sphere/de.md) , [Part Spiral/de](Part_Spiral/de.md) , [Part Sweep/de](Part_Sweep/de.md) , [Part Thickness/de](Part_Thickness/de.md) , [Part Torus/de](Part_Torus/de.md) , [Part TransformedCopy/de](Part_TransformedCopy/de.md) , [Part Tube/de](Part_Tube/de.md) , [Part Wedge/de](Part_Wedge/de.md) , [Part XOR/de](Part_XOR/de.md) , [PartDesign AdditiveBox/de](PartDesign_AdditiveBox/de.md) , [PartDesign AdditiveCone/de](PartDesign_AdditiveCone/de.md) , [PartDesign AdditiveCylinder/de](PartDesign_AdditiveCylinder/de.md) , [PartDesign AdditiveEllipsoid/de](PartDesign_AdditiveEllipsoid/de.md) , [PartDesign AdditiveHelix/de](PartDesign_AdditiveHelix/de.md) , [PartDesign AdditiveLoft/de](PartDesign_AdditiveLoft/de.md) , [PartDesign AdditivePipe/de](PartDesign_AdditivePipe/de.md) , [PartDesign AdditivePrism/de](PartDesign_AdditivePrism/de.md) , [PartDesign AdditiveSphere/de](PartDesign_AdditiveSphere/de.md) , [PartDesign AdditiveTorus/de](PartDesign_AdditiveTorus/de.md) , [PartDesign AdditiveWedge/de](PartDesign_AdditiveWedge/de.md) , [PartDesign Body/de](PartDesign_Body/de.md) , [PartDesign Boolean/de](PartDesign_Boolean/de.md) , [PartDesign Chamfer/de](PartDesign_Chamfer/de.md) , [PartDesign Clone/de](PartDesign_Clone/de.md) , [PartDesign CompPrimitiveAdditive/de](PartDesign_CompPrimitiveAdditive/de.md) , [PartDesign CompPrimitiveSubtractive/de](PartDesign_CompPrimitiveSubtractive/de.md) , [PartDesign CoordinateSystem/de](PartDesign_CoordinateSystem/de.md) , [PartDesign Draft/de](PartDesign_Draft/de.md) , [PartDesign Fillet/de](PartDesign_Fillet/de.md) , [PartDesign Groove/de](PartDesign_Groove/de.md) , [PartDesign Hole/de](PartDesign_Hole/de.md) , [PartDesign InvoluteGear/de](PartDesign_InvoluteGear/de.md) , [PartDesign Line/de](PartDesign_Line/de.md) , [PartDesign LinearPattern/de](PartDesign_LinearPattern/de.md) , [PartDesign Migrate/de](PartDesign_Migrate/de.md) , [PartDesign Mirrored/de](PartDesign_Mirrored/de.md) , [PartDesign MoveFeature/de](PartDesign_MoveFeature/de.md) , [PartDesign MoveFeatureInTree/de](PartDesign_MoveFeatureInTree/de.md) , [PartDesign MoveTip/de](PartDesign_MoveTip/de.md) , [PartDesign MultiTransform/de](PartDesign_MultiTransform/de.md) , [PartDesign NewSketch/de](PartDesign_NewSketch/de.md) , [PartDesign Pad/de](PartDesign_Pad/de.md) , [PartDesign Plane/de](PartDesign_Plane/de.md) , [PartDesign Pocket/de](PartDesign_Pocket/de.md) , [PartDesign Point/de](PartDesign_Point/de.md) , [PartDesign PolarPattern/de](PartDesign_PolarPattern/de.md) , [PartDesign Revolution/de](PartDesign_Revolution/de.md) , [PartDesign Scaled/de](PartDesign_Scaled/de.md) , [PartDesign ShapeBinder/de](PartDesign_ShapeBinder/de.md) , [PartDesign Sprocket/de](PartDesign_Sprocket/de.md) , [PartDesign SubShapeBinder/de](PartDesign_SubShapeBinder/de.md) , [PartDesign SubtractiveBox/de](PartDesign_SubtractiveBox/de.md) , [PartDesign SubtractiveCone/de](PartDesign_SubtractiveCone/de.md) , [PartDesign SubtractiveCylinder/de](PartDesign_SubtractiveCylinder/de.md) , [PartDesign SubtractiveEllipsoid/de](PartDesign_SubtractiveEllipsoid/de.md) , [PartDesign SubtractiveHelix/de](PartDesign_SubtractiveHelix/de.md) , [PartDesign SubtractiveLoft/de](PartDesign_SubtractiveLoft/de.md) , [PartDesign SubtractivePipe/de](PartDesign_SubtractivePipe/de.md) , [PartDesign SubtractivePrism/de](PartDesign_SubtractivePrism/de.md) , [PartDesign SubtractiveSphere/de](PartDesign_SubtractiveSphere/de.md) , [PartDesign SubtractiveTorus/de](PartDesign_SubtractiveTorus/de.md) , [PartDesign SubtractiveWedge/de](PartDesign_SubtractiveWedge/de.md) , [PartDesign Thickness/de](PartDesign_Thickness/de.md) , [PartDesign WizardShaft/de](PartDesign_WizardShaft/de.md) , [Path Adaptive/de](Path_Adaptive/de.md) , [Path Comment/de](Path_Comment/de.md) , [Path Drilling/de](Path_Drilling/de.md) , [Path Engrave/de](Path_Engrave/de.md) , [Path ExportTemplate/de](Path_ExportTemplate/de.md) , [Path Inspect/de](Path_Inspect/de.md) , [Path Job/de](Path_Job/de.md) , [Path MillFace/de](Path_MillFace/de.md) , [Path Pocket Shape/de](Path_Pocket_Shape/de.md) , [Path Post/de](Path_Post/de.md) , [Path Profile/de](Path_Profile/de.md) , [Path SelectLoop/de](Path_SelectLoop/de.md) , [Path Simulator/de](Path_Simulator/de.md) , [Path ToolLibraryEdit/de](Path_ToolLibraryEdit/de.md) , [Path Vcarve/de](Path_Vcarve/de.md) , [Plot Axes/de](Plot_Axes/de.md) , [Plot Grid/de](Plot_Grid/de.md) , [Plot Labels/de](Plot_Labels/de.md) , [Plot Legend/de](Plot_Legend/de.md) , [Plot Positions/de](Plot_Positions/de.md) , [Plot Save/de](Plot_Save/de.md) , [Plot Series/de](Plot_Series/de.md) , [Points Convert/de](Points_Convert/de.md) , [Points Export/de](Points_Export/de.md) , [Points Import/de](Points_Import/de.md) , [Points Merge/de](Points_Merge/de.md) , [Points PolyCut/de](Points_PolyCut/de.md) , [Points Structure/de](Points_Structure/de.md) , [Raytracing ExportProject/de](Raytracing_ExportProject/de.md) , [Raytracing InsertPart/de](Raytracing_InsertPart/de.md) , [Raytracing Lux/de](Raytracing_Lux/de.md) , [Raytracing New/de](Raytracing_New/de.md) , [Raytracing Render/de](Raytracing_Render/de.md) , [Raytracing ResetCamera/de](Raytracing_ResetCamera/de.md) , [Raytracing WriteCamera/de](Raytracing_WriteCamera/de.md) , [Raytracing WritePart/de](Raytracing_WritePart/de.md) , [Raytracing WriteView/de](Raytracing_WriteView/de.md) , [Reinforcement Bar Bending Schedule/de](Reinforcement_Bar_Bending_Schedule/de.md) , [Robot CreateRobot/de](Robot_CreateRobot/de.md) , [Robot CreateTrajectory/de](Robot_CreateTrajectory/de.md) , [Robot Export/de](Robot_Export/de.md) , [Robot InsertWaypoint/de](Robot_InsertWaypoint/de.md) , [Robot InsertWaypointPre/de](Robot_InsertWaypointPre/de.md) , [Robot RestoreHomePos/de](Robot_RestoreHomePos/de.md) , [Robot SetDefaultValues/de](Robot_SetDefaultValues/de.md) , [Robot SetHomePos/de](Robot_SetHomePos/de.md) , [Robot Simulate/de](Robot_Simulate/de.md) , [Robot TrajectoryCompound/de](Robot_TrajectoryCompound/de.md) , [Robot TrajectoryDressUp/de](Robot_TrajectoryDressUp/de.md) , [SheetMetal AddBase/de](SheetMetal_AddBase/de.md) , [SheetMetal AddCornerRelief/de](SheetMetal_AddCornerRelief/de.md) , [SheetMetal AddFoldWall/de](SheetMetal_AddFoldWall/de.md) , [SheetMetal AddJunction/de](SheetMetal_AddJunction/de.md) , [SheetMetal AddRelief/de](SheetMetal_AddRelief/de.md) , [SheetMetal AddWall/de](SheetMetal_AddWall/de.md) , [SheetMetal Extrude/de](SheetMetal_Extrude/de.md) , [SheetMetal Forming/de](SheetMetal_Forming/de.md) , [SheetMetal SketchOnSheet/de](SheetMetal_SketchOnSheet/de.md) , [SheetMetal UnattendedUnfold/de](SheetMetal_UnattendedUnfold/de.md) , [Ship Area/de](Ship_Area/de.md) , [Ship Geometries Examples/de](Ship_Geometries_Examples/de.md) , [Ship Hydrostatics/de](Ship_Hydrostatics/de.md) , [Ship Loading/de](Ship_Loading/de.md) , [Ship New/de](Ship_New/de.md) , [Ship Outline/de](Ship_Outline/de.md) , [Ship PlotGZ/de](Ship_PlotGZ/de.md) , [Ship TankCapacity/de](Ship_TankCapacity/de.md) , [Ship TankNew/de](Ship_TankNew/de.md) , [Ship Weight/de](Ship_Weight/de.md) , [Sketcher BSplineComb/de](Sketcher_BSplineComb/de.md) , [Sketcher BSplineDecreaseDegree/de](Sketcher_BSplineDecreaseDegree/de.md) , [Sketcher BSplineDecreaseKnotMultiplicity/de](Sketcher_BSplineDecreaseKnotMultiplicity/de.md) , [Sketcher BSplineDegree/de](Sketcher_BSplineDegree/de.md) , [Sketcher BSplineIncreaseDegree/de](Sketcher_BSplineIncreaseDegree/de.md) , [Sketcher BSplineIncreaseKnotMultiplicity/de](Sketcher_BSplineIncreaseKnotMultiplicity/de.md) , [Sketcher BSplineKnotMultiplicity/de](Sketcher_BSplineKnotMultiplicity/de.md) , [Sketcher BSplinePolygon/de](Sketcher_BSplinePolygon/de.md) , [Sketcher CarbonCopy/de](Sketcher_CarbonCopy/de.md) , [Sketcher Clone/de](Sketcher_Clone/de.md) , [Sketcher CloseShape/de](Sketcher_CloseShape/de.md) , [Sketcher CompConstrainRadDia/de](Sketcher_CompConstrainRadDia/de.md) , [Sketcher CompCopy/de](Sketcher_CompCopy/de.md) , [Sketcher CompCreateArc/de](Sketcher_CompCreateArc/de.md) [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:Command Reference/de diff --git a/wiki/translations/de/Category:Common_Questions.md b/wiki/translations/de/Category:Common_Questions.md index dbd076f6bd..2325852a7c 100644 --- a/wiki/translations/de/Category:Common_Questions.md +++ b/wiki/translations/de/Category:Common_Questions.md @@ -4,3 +4,6 @@ This category has links to common questions on how to do something in FC. This i ### Contents: [Constructive solid geometry/de](Constructive_solid_geometry/de.md) , [Feature editing/de](Feature_editing/de.md) , [FreeCAD and DWG Import/de](FreeCAD_and_DWG_Import/de.md) , [Help FreeCAD/de](Help_FreeCAD/de.md) , [Import Export Preferences/de](Import_Export_Preferences/de.md) , [Installing on Linux/de](Installing_on_Linux/de.md) , [Std About/de](Std_About/de.md) , [Topological naming problem/de](Topological_naming_problem/de.md) , [Video tutorials/de](Video_tutorials/de.md) + +--- +[documentation index](../README.md) > Category:Common Questions/de diff --git a/wiki/translations/de/Category:Developer.md b/wiki/translations/de/Category:Developer.md index 471bf4cef9..3982c84c2f 100644 --- a/wiki/translations/de/Category:Developer.md +++ b/wiki/translations/de/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Changelog/de](Changelog/de.md) , [Compile on Cygwin/de](Compile_on_Cygwin/de.md) , [Compile on Docker/de](Compile_on_Docker/de.md) , [Compile on Linux/de](Compile_on_Linux/de.md) , [Compile on MacOS/de](Compile_on_MacOS/de.md) , [Compile on Windows/de](Compile_on_Windows/de.md) , [Compiling (Speeding up)/de](Compiling_(Speeding_up)/de.md) , [Compiling/de](Compiling/de.md) , [Conda/de](Conda/de.md) , [Contributors/de](Contributors/de.md) , [Developing FreeCAD with GitKraken/de](Developing_FreeCAD_with_GitKraken/de.md) , [Doxygen/de](Doxygen/de.md) , [File Format FCStd/de](File_Format_FCStd/de.md) , [ImageConv/de](ImageConv/de.md) , [Land Survey Workbench Blueprint/de](Land_Survey_Workbench_Blueprint/de.md) , [LGTM/de](LGTM/de.md) , [Material/de](Material/de.md) , [Svg Namespace/de](Svg_Namespace/de.md) , [WikiRobots/de](WikiRobots/de.md) , [Wished tools/de](Wished_tools/de.md) [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:Developer/de diff --git a/wiki/translations/de/Category:Developer_Documentation.md b/wiki/translations/de/Category:Developer_Documentation.md index 6510520281..37cbcb23db 100644 --- a/wiki/translations/de/Category:Developer_Documentation.md +++ b/wiki/translations/de/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Add FEM equation tutorial/de](Add_FEM_equation_tutorial/de.md) , [ANSI templates/de](ANSI_templates/de.md) , [AppImage/de](AppImage/de.md) , [Arch templates/de](Arch_templates/de.md) , [Artwork Erroneous/de](Artwork_Erroneous/de.md) , [Artwork Guidelines/de](Artwork_Guidelines/de.md) , [Artwork/de](Artwork/de.md) , [Branding/de](Branding/de.md) , [Bug Triage/de](Bug_Triage/de.md) , [Code snippets/de](Code_snippets/de.md) , [Coin3d snippets/de](Coin3d_snippets/de.md) , [Command/de](Command/de.md) , [Compile on Cygwin/de](Compile_on_Cygwin/de.md) , [Compile on Docker/de](Compile_on_Docker/de.md) , [Compile on Linux/de](Compile_on_Linux/de.md) , [Compile on MacOS/de](Compile_on_MacOS/de.md) , [Compile on Windows/de](Compile_on_Windows/de.md) , [Compiling (Speeding up)/de](Compiling_(Speeding_up)/de.md) , [Compiling/de](Compiling/de.md) , [Conda/de](Conda/de.md) , [Continuous Integration/de](Continuous_Integration/de.md) , [Create a FeaturePython object part I/de](Create_a_FeaturePython_object_part_I/de.md) , [Create a FeaturePython object part II/de](Create_a_FeaturePython_object_part_II/de.md) , [Crowdin Scripts/de](Crowdin_Scripts/de.md) , [Debian development/de](Debian_development/de.md) , [Debian Unstable/de](Debian_Unstable/de.md) , [Debugging/de](Debugging/de.md) , [Developer hub/de](Developer_hub/de.md) , [Developing FreeCAD with GitKraken/de](Developing_FreeCAD_with_GitKraken/de.md) , [Dialog creation image and animated GIF/de](Dialog_creation_image_and_animated_GIF/de.md) , [Dialog creation reading and writing files/de](Dialog_creation_reading_and_writing_files/de.md) , [Dialog creation setting colors/de](Dialog_creation_setting_colors/de.md) , [Dialog creation with various widgets/de](Dialog_creation_with_various_widgets/de.md) , [Dialog creation/de](Dialog_creation/de.md) , [Doxygen/de](Doxygen/de.md) , [Drawing templates/de](Drawing_templates/de.md) , [Embedding FreeCAD/de](Embedding_FreeCAD/de.md) , [Embedding FreeCADGui/de](Embedding_FreeCADGui/de.md) , [Extra python modules/de](Extra_python_modules/de.md) , [FeaturePython Custom Properties/de](FeaturePython_Custom_Properties/de.md) , [FeaturePython methods/de](FeaturePython_methods/de.md) , [File Format FCStd/de](File_Format_FCStd/de.md) , [Fine-tuning/de](Fine-tuning/de.md) , [FreeCAD Build Tool/de](FreeCAD_Build_Tool/de.md) , [FreeCAD Scripting Basics/de](FreeCAD_Scripting_Basics/de.md) , [FreeCAD vector math library/de](FreeCAD_vector_math_library/de.md) , [Git buildpackage/de](Git_buildpackage/de.md) , [Help FreeCAD/de](Help_FreeCAD/de.md) , [How to install macros/de](How_to_install_macros/de.md) , [Installing more workbenches/de](Installing_more_workbenches/de.md) , [Installing on Linux/de](Installing_on_Linux/de.md) , [Interface creation/de](Interface_creation/de.md) , [Introduction to Python/de](Introduction_to_Python/de.md) , [LGTM/de](LGTM/de.md) , [Licence/de](Licence/de.md) , [Line drawing function/de](Line_drawing_function/de.md) , [Linux packaging/de](Linux_packaging/de.md) , [Localisation Sidebar/de](Localisation_Sidebar/de.md) , [Localisation/de](Localisation/de.md) , [Localization Older Methods/de](Localization_Older_Methods/de.md) , [Macro at Startup/de](Macro_at_Startup/de.md) , [Macros/de](Macros/de.md) , [Manual:A gentle introduction/de](Manual:A_gentle_introduction/de.md) , [Manual:Creating and manipulating geometry/de](Manual:Creating_and_manipulating_geometry/de.md) , [Manual:Creating interface tools/de](Manual:Creating_interface_tools/de.md) , [Manual:Creating parametric objects/de](Manual:Creating_parametric_objects/de.md) , [Material/de](Material/de.md) , [Mesh Scripting/de](Mesh_Scripting/de.md) , [Mesh to Part/de](Mesh_to_Part/de.md) , [Misc templates/de](Misc_templates/de.md) , [OpenCASCADE/de](OpenCASCADE/de.md) , [OpenSCAD CSG tested files/de](OpenSCAD_CSG_tested_files/de.md) , [Packaging/de](Packaging/de.md) , [Part scripting/de](Part_scripting/de.md) , [Path scripting/de](Path_scripting/de.md) , [Pivy/de](Pivy/de.md) , [Profiling/de](Profiling/de.md) , [Property/de](Property/de.md) , [PySide Advanced Examples/de](PySide_Advanced_Examples/de.md) , [PySide Beginner Examples/de](PySide_Beginner_Examples/de.md) , [PySide Intermediate Examples/de](PySide_Intermediate_Examples/de.md) , [PySide usage snippets/de](PySide_usage_snippets/de.md) , [PySide/de](PySide/de.md) , [Python scripting tutorial/de](Python_scripting_tutorial/de.md) , [Python/de](Python/de.md) , [PythonOCC/de](PythonOCC/de.md) , [Quantity/de](Quantity/de.md) , [Raytracing API example/de](Raytracing_API_example/de.md) , [Scenegraph/de](Scenegraph/de.md) , [Scripted objects migration/de](Scripted_objects_migration/de.md) , [Scripted objects saving attributes/de](Scripted_objects_saving_attributes/de.md) , [Scripted objects with attachment/de](Scripted_objects_with_attachment/de.md) , [Scripted objects/de](Scripted_objects/de.md) , [Scripted Parts: Ball Bearing - Part 1/de](Scripted_Parts:_Ball_Bearing_-_Part_1/de.md) , [Scripted Parts: Ball Bearing - Part 2/de](Scripted_Parts:_Ball_Bearing_-_Part_2/de.md) , [Scripting and macros/de](Scripting_and_macros/de.md) , [Scripts/de](Scripts/de.md) , [Source code management/de](Source_code_management/de.md) , [Source documentation/de](Source_documentation/de.md) , [Start up and Configuration/de](Start_up_and_Configuration/de.md) , [Testing/de](Testing/de.md) , [The FreeCAD source code/de](The_FreeCAD_source_code/de.md) , [Third Party Libraries/de](Third_Party_Libraries/de.md) , [Third Party Tools/de](Third_Party_Tools/de.md) , [Topological data scripting/de](Topological_data_scripting/de.md) , [Tracker/de](Tracker/de.md) , [Translating an external workbench/de](Translating_an_external_workbench/de.md) , [Windows packaging/de](Windows_packaging/de.md) , [Workbench creation/de](Workbench_creation/de.md) , , [Category:Documentation/de](Category:Documentation/de.md) [Category:Artwork/de](Category:Artwork/de.md) [Category:Packaging/de](Category:Packaging/de.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/de diff --git a/wiki/translations/de/Category:Documentation.md b/wiki/translations/de/Category:Documentation.md index e767847153..c0df7e277a 100644 --- a/wiki/translations/de/Category:Documentation.md +++ b/wiki/translations/de/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [3D input devices/de](3D_input_devices/de.md) , [ANSI templates/de](ANSI_templates/de.md) , [Arch templates/de](Arch_templates/de.md) , [Civil Engineering Workbench/de](Civil_Engineering_Workbench/de.md) , [Drawing templates/de](Drawing_templates/de.md) , [FreeCAD Community Portal/de](FreeCAD_Community_Portal/de.md) , [Frequently asked questions/de](Frequently_asked_questions/de.md) , [Help FreeCAD/de](Help_FreeCAD/de.md) , [Interesting links/de](Interesting_links/de.md) , [Main Page/de](Main_Page/de.md) , [Misc templates/de](Misc_templates/de.md) , [Online Help Toc/de](Online_Help_Toc/de.md) , [Part Measure Menu/de](Part_Measure_Menu/de.md) , [Release notes 0.11/de](Release_notes_0.11/de.md) , [Release notes 0.13/de](Release_notes_0.13/de.md) , [Release notes 0.14/de](Release_notes_0.14/de.md) , [Release notes 0.15/de](Release_notes_0.15/de.md) , [Release notes 0.16/de](Release_notes_0.16/de.md) , [Release notes 0.17/de](Release_notes_0.17/de.md) , [Release notes 0.18/de](Release_notes_0.18/de.md) , [Release notes 0.19/de](Release_notes_0.19/de.md) , [Release notes 0.20/de](Release_notes_0.20/de.md) , [Transportation Workbench/de](Transportation_Workbench/de.md) , [WikiPages/de](WikiPages/de.md) , , , , , , [Category:Categories/de](Category:Categories/de.md) [Category:API Documentation/de](Category:API_Documentation/de.md) [Category:Developer Documentation/de](Category:Developer_Documentation/de.md) [Category:Poweruser Documentation/de](Category:Poweruser_Documentation/de.md) [Category:Screenshots/de](Category:Screenshots/de.md) [Category:User Documentation/de](Category:User_Documentation/de.md) [Category:Wiki/de](Category:Wiki/de.md) + +--- +[documentation index](../README.md) > Category:Documentation/de diff --git a/wiki/translations/de/Category:Draft.md b/wiki/translations/de/Category:Draft.md index caf7067b63..e10a31d603 100644 --- a/wiki/translations/de/Category:Draft.md +++ b/wiki/translations/de/Category:Draft.md @@ -4,3 +4,6 @@ [Arch panel tutorial/de](Arch_panel_tutorial/de.md) , [Draft AddConstruction/de](Draft_AddConstruction/de.md) , [Draft AddToGroup/de](Draft_AddToGroup/de.md) , [Draft AnnotationStyleEditor/de](Draft_AnnotationStyleEditor/de.md) , [Draft API/de](Draft_API/de.md) , [Draft ApplyStyle/de](Draft_ApplyStyle/de.md) , [Draft Arc 3Points/de](Draft_Arc_3Points/de.md) , [Draft Arc/de](Draft_Arc/de.md) , [Draft Array/de](Draft_Array/de.md) , [Draft AutoGroup/de](Draft_AutoGroup/de.md) , [Draft BezCurve/de](Draft_BezCurve/de.md) , [Draft BSpline/de](Draft_BSpline/de.md) , [Draft Circle/de](Draft_Circle/de.md) , [Draft CircularArray/de](Draft_CircularArray/de.md) , [Draft Clone/de](Draft_Clone/de.md) , [Draft Constrain/de](Draft_Constrain/de.md) , [Draft CubicBezCurve/de](Draft_CubicBezCurve/de.md) , [Draft Dimension/de](Draft_Dimension/de.md) , [Draft Downgrade/de](Draft_Downgrade/de.md) , [Draft Draft2Sketch/de](Draft_Draft2Sketch/de.md) , [Draft Drawing/de](Draft_Drawing/de.md) , [Draft DXF/de](Draft_DXF/de.md) , [Draft Edit/de](Draft_Edit/de.md) , [Draft Ellipse/de](Draft_Ellipse/de.md) , [Draft Facebinder/de](Draft_Facebinder/de.md) , [Draft Fillet/de](Draft_Fillet/de.md) , [Draft FlipDimension/de](Draft_FlipDimension/de.md) , [Draft Heal/de](Draft_Heal/de.md) , [Draft Join/de](Draft_Join/de.md) , [Draft Label/de](Draft_Label/de.md) , [Draft Layer/de](Draft_Layer/de.md) , [Draft Line/de](Draft_Line/de.md) , [Draft Mirror/de](Draft_Mirror/de.md) , [Draft Move/de](Draft_Move/de.md) , [Draft OCA/de](Draft_OCA/de.md) , [Draft Offset/de](Draft_Offset/de.md) , [Draft OrthoArray/de](Draft_OrthoArray/de.md) , [Draft PathArray/de](Draft_PathArray/de.md) , [Draft PathLinkArray/de](Draft_PathLinkArray/de.md) , [Draft Pattern/de](Draft_Pattern/de.md) , [Draft Point/de](Draft_Point/de.md) , [Draft PointArray/de](Draft_PointArray/de.md) , [Draft PointLinkArray/de](Draft_PointLinkArray/de.md) , [Draft PolarArray/de](Draft_PolarArray/de.md) , [Draft Polygon/de](Draft_Polygon/de.md) , [Draft Preferences/de](Draft_Preferences/de.md) , [Draft Rectangle/de](Draft_Rectangle/de.md) , [Draft Rotate/de](Draft_Rotate/de.md) , [Draft Scale/de](Draft_Scale/de.md) , [Draft SelectGroup/de](Draft_SelectGroup/de.md) , [Draft SelectPlane/de](Draft_SelectPlane/de.md) , [Draft SetStyle/de](Draft_SetStyle/de.md) , [Draft Shape2DView/de](Draft_Shape2DView/de.md) , [Draft ShapeString/de](Draft_ShapeString/de.md) , [Draft ShowSnapBar/de](Draft_ShowSnapBar/de.md) , [Draft Slope/de](Draft_Slope/de.md) , [Draft Snap Angle/de](Draft_Snap_Angle/de.md) , [Draft Snap Center/de](Draft_Snap_Center/de.md) , [Draft Snap Dimensions/de](Draft_Snap_Dimensions/de.md) , [Draft Snap Endpoint/de](Draft_Snap_Endpoint/de.md) , [Draft Snap Extension/de](Draft_Snap_Extension/de.md) , [Draft Snap Grid/de](Draft_Snap_Grid/de.md) , [Draft Snap Intersection/de](Draft_Snap_Intersection/de.md) , [Draft Snap Lock/de](Draft_Snap_Lock/de.md) , [Draft Snap Midpoint/de](Draft_Snap_Midpoint/de.md) , [Draft Snap Near/de](Draft_Snap_Near/de.md) , [Draft Snap Ortho/de](Draft_Snap_Ortho/de.md) , [Draft Snap Parallel/de](Draft_Snap_Parallel/de.md) , [Draft Snap Perpendicular/de](Draft_Snap_Perpendicular/de.md) , [Draft Snap Special/de](Draft_Snap_Special/de.md) , [Draft Snap WorkingPlane/de](Draft_Snap_WorkingPlane/de.md) , [Draft Snap/de](Draft_Snap/de.md) , [Draft Split/de](Draft_Split/de.md) , [Draft Stretch/de](Draft_Stretch/de.md) , [Draft SubelementHighlight/de](Draft_SubelementHighlight/de.md) , [Draft SVG/de](Draft_SVG/de.md) , [Draft Text/de](Draft_Text/de.md) , [Draft ToggleConstructionMode/de](Draft_ToggleConstructionMode/de.md) , [Draft ToggleContinueMode/de](Draft_ToggleContinueMode/de.md) , [Draft ToggleDisplayMode/de](Draft_ToggleDisplayMode/de.md) , [Draft ToggleGrid/de](Draft_ToggleGrid/de.md) , [Template:Draft Tools navi/de](Template:Draft_Tools_navi/de.md) , [Draft Tray/de](Draft_Tray/de.md) , [Draft Trimex/de](Draft_Trimex/de.md) , [Draft tutorial/de](Draft_tutorial/de.md) , [Draft Upgrade/de](Draft_Upgrade/de.md) , [Draft Wire/de](Draft_Wire/de.md) , [Draft WireToBSpline/de](Draft_WireToBSpline/de.md) , [Draft Workbench/de](Draft_Workbench/de.md) , [Draft WorkingPlaneProxy/de](Draft_WorkingPlaneProxy/de.md) , [DXF/de](DXF/de.md) , [FreeCAD and DWG Import/de](FreeCAD_and_DWG_Import/de.md) , [Manual:Traditional 2D drafting/de](Manual:Traditional_2D_drafting/de.md) , [SVG/de](SVG/de.md) , [Tutorial custom placing of windows and doors/de](Tutorial_custom_placing_of_windows_and_doors/de.md) , [Tutorial for open windows/de](Tutorial_for_open_windows/de.md) [Category:User Documentation/de](Category:User_Documentation/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Draft/de diff --git a/wiki/translations/de/Category:Drawing.md b/wiki/translations/de/Category:Drawing.md index e03a21bc4f..abb34aebf9 100644 --- a/wiki/translations/de/Category:Drawing.md +++ b/wiki/translations/de/Category:Drawing.md @@ -6,3 +6,6 @@ Diese Kategorie zeigt eine Liste der Seiten, die zum [Drawing-Arbeitsbereich](Dr [ANSI templates/de](ANSI_templates/de.md) , [Arch templates/de](Arch_templates/de.md) , [Drawing Annotation/de](Drawing_Annotation/de.md) , [Drawing Clip/de](Drawing_Clip/de.md) , [Drawing Landscape A3/de](Drawing_Landscape_A3/de.md) , [Drawing Open SVG/de](Drawing_Open_SVG/de.md) , [Drawing Openbrowser/de](Drawing_Openbrowser/de.md) , [Drawing Orthoviews/de](Drawing_Orthoviews/de.md) , [Drawing ProjectShape/de](Drawing_ProjectShape/de.md) , [Drawing Template HowTo/de](Drawing_Template_HowTo/de.md) , [Drawing templates/de](Drawing_templates/de.md) , [Template:Drawing Tools navi/de](Template:Drawing_Tools_navi/de.md) , [Drawing tutorial/de](Drawing_tutorial/de.md) , [Drawing View/de](Drawing_View/de.md) , [Drawing Workbench/de](Drawing_Workbench/de.md) , [Misc templates/de](Misc_templates/de.md) , [Svg Namespace/de](Svg_Namespace/de.md) [Category:Obsolete Workbenches/de](Category:Obsolete_Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Drawing/de diff --git a/wiki/translations/de/Category:External_Workbenches.md b/wiki/translations/de/Category:External_Workbenches.md index 8e770275de..8870d5c384 100644 --- a/wiki/translations/de/Category:External_Workbenches.md +++ b/wiki/translations/de/Category:External_Workbenches.md @@ -4,3 +4,6 @@ [External workbenches/de](External_workbenches/de.md) , [A2plus Workbench/de](A2plus_Workbench/de.md) , [Animation Workbench/de](Animation_Workbench/de.md) , [Assembly3 Workbench/de](Assembly3_Workbench/de.md) , [Assembly4 Workbench/de](Assembly4_Workbench/de.md) , [BIM Workbench/de](BIM_Workbench/de.md) , [CadQuery Workbench/de](CadQuery_Workbench/de.md) , [Curves Workbench/de](Curves_Workbench/de.md) , [Defeaturing Workbench/de](Defeaturing_Workbench/de.md) , [Defeaturing/de](Defeaturing/de.md) , [Fasteners Workbench/de](Fasteners_Workbench/de.md) , [FCGear Workbench/de](FCGear_Workbench/de.md) , [Flamingo Workbench/de](Flamingo_Workbench/de.md) , [How to install additional workbenches/de](How_to_install_additional_workbenches/de.md) , [KicadStepUp Workbench/de](KicadStepUp_Workbench/de.md) , [Lattice2 Workbench/de](Lattice2_Workbench/de.md) , [ModernUI Workbench/de](ModernUI_Workbench/de.md) , [Parts Library Workbench/de](Parts_Library_Workbench/de.md) , [PCB Workbench/de](PCB_Workbench/de.md) , [Plot Axes/de](Plot_Axes/de.md) , [Plot Basic tutorial/de](Plot_Basic_tutorial/de.md) , [Plot Grid/de](Plot_Grid/de.md) , [Plot Labels/de](Plot_Labels/de.md) , [Plot Legend/de](Plot_Legend/de.md) , [Plot Module/de](Plot_Module/de.md) , [Plot MultiAxes tutorial/de](Plot_MultiAxes_tutorial/de.md) , [Plot Positions/de](Plot_Positions/de.md) , [Plot Save/de](Plot_Save/de.md) , [Plot Series/de](Plot_Series/de.md) , [Pyramids and polyhedrons Workbench/de](Pyramids_and_polyhedrons_Workbench/de.md) , [Render project/de](Render_project/de.md) , [Ship Workbench/de](Ship_Workbench/de.md) , [Symbols Library Workbench/de](Symbols_Library_Workbench/de.md) , [WebTools Workbench/de](WebTools_Workbench/de.md) , [Workfeature Workbench/de](Workfeature_Workbench/de.md) , , [Category:Workbenches/de](Category:Workbenches/de.md) [Category:Addons/de](Category:Addons/de.md) [Category:Fasteners/de](Category:Fasteners/de.md) [Category:FCGear/de](Category:FCGear/de.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/de diff --git a/wiki/translations/de/Category:FCGear.md b/wiki/translations/de/Category:FCGear.md index 061143e60b..e38d2e5309 100644 --- a/wiki/translations/de/Category:FCGear.md +++ b/wiki/translations/de/Category:FCGear.md @@ -6,3 +6,6 @@ All relevant pages to the [FCGear workbench](FCGear_Workbench.md) (an [external [FCGear BevelGear/de](FCGear_BevelGear/de.md) , [FCGear CrownGear/de](FCGear_CrownGear/de.md) , [FCGear CycloideGear/de](FCGear_CycloideGear/de.md) , [FCGear InvoluteGear/de](FCGear_InvoluteGear/de.md) , [FCGear InvoluteRack/de](FCGear_InvoluteRack/de.md) , [FCGear LanternGear/de](FCGear_LanternGear/de.md) , [FCGear Workbench/de](FCGear_Workbench/de.md) , [FCGear WormGear/de](FCGear_WormGear/de.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Category:FCGear/de diff --git a/wiki/translations/de/Category:FEM.md b/wiki/translations/de/Category:FEM.md index 3ebadfb236..55b7af0d45 100644 --- a/wiki/translations/de/Category:FEM.md +++ b/wiki/translations/de/Category:FEM.md @@ -6,3 +6,6 @@ Diese Kategorie zeigt eine Liste der Seiten, die zum [FEM-Arbeitbereich](FEM_Wor [Add FEM constraint tutorial/de](Add_FEM_constraint_tutorial/de.md) , [Add FEM equation tutorial/de](Add_FEM_equation_tutorial/de.md) , [Analysis of reinforced concrete with FEM/de](Analysis_of_reinforced_concrete_with_FEM/de.md) , [Extend FEM Module/de](Extend_FEM_Module/de.md) , [FEM Analysis/de](FEM_Analysis/de.md) , [FEM CalculiX Cantilever 3D/de](FEM_CalculiX_Cantilever_3D/de.md) , [FEM ConstraintBodyHeatSource/de](FEM_ConstraintBodyHeatSource/de.md) , [FEM ConstraintFixed/de](FEM_ConstraintFixed/de.md) , [FEM ConstraintForce/de](FEM_ConstraintForce/de.md) , [FEM ConstraintPressure/de](FEM_ConstraintPressure/de.md) , [FEM ConstraintTemperature/de](FEM_ConstraintTemperature/de.md) , [FEM ElementRotation1D/de](FEM_ElementRotation1D/de.md) , [FEM Install/de](FEM_Install/de.md) , [FEM MaterialFluid/de](FEM_MaterialFluid/de.md) , [FEM MaterialMechanicalNonlinear/de](FEM_MaterialMechanicalNonlinear/de.md) , [FEM MaterialSolid/de](FEM_MaterialSolid/de.md) , [FEM Mesh/de](FEM_Mesh/de.md) , [FEM MeshBoundaryLayer/de](FEM_MeshBoundaryLayer/de.md) , [FEM MeshGmshFromShape/de](FEM_MeshGmshFromShape/de.md) , [FEM MeshNetgenFromShape/de](FEM_MeshNetgenFromShape/de.md) , [FEM project/de](FEM_project/de.md) , [FEM Shear of a Composite Block/de](FEM_Shear_of_a_Composite_Block/de.md) , [FEM Solver/de](FEM_Solver/de.md) , [FEM SolverCalculiX/de](FEM_SolverCalculiX/de.md) , [Template:FEM Tools navi/de](Template:FEM_Tools_navi/de.md) , [FEM Tutorial Python/de](FEM_Tutorial_Python/de.md) , [FEM tutorial/de](FEM_tutorial/de.md) , [FEM Workbench/de](FEM_Workbench/de.md) , [IfcOpenShell/de](IfcOpenShell/de.md) , [Material/de](Material/de.md) , [Mesh/de](Mesh/de.md) , [Post-Processing of FEM Results with Paraview/de](Post-Processing_of_FEM_Results_with_Paraview/de.md) , [Transient FEM analysis/de](Transient_FEM_analysis/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:FEM/de diff --git a/wiki/translations/de/Category:Fasteners.md b/wiki/translations/de/Category:Fasteners.md index 73e38984b6..7e312ce0b8 100644 --- a/wiki/translations/de/Category:Fasteners.md +++ b/wiki/translations/de/Category:Fasteners.md @@ -6,3 +6,6 @@ This page collects the documentation pages for the [Fasteners Workbench](Fastene [Fasteners Workbench/de](Fasteners_Workbench/de.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Category:Fasteners/de diff --git a/wiki/translations/de/Category:File_Formats.md b/wiki/translations/de/Category:File_Formats.md index 4d426cb49a..a7a752228c 100644 --- a/wiki/translations/de/Category:File_Formats.md +++ b/wiki/translations/de/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [Arch 3DS/de](Arch_3DS/de.md) , [Arch DAE/de](Arch_DAE/de.md) , [Arch IFC/de](Arch_IFC/de.md) , [Arch JSON/de](Arch_JSON/de.md) , [Arch OBJ/de](Arch_OBJ/de.md) , [Draft DXF/de](Draft_DXF/de.md) , [Draft OCA/de](Draft_OCA/de.md) , [Draft SVG/de](Draft_SVG/de.md) , [DXF/de](DXF/de.md) , [Export to STL or OBJ/de](Export_to_STL_or_OBJ/de.md) , [File Format FCStd/de](File_Format_FCStd/de.md) , [FreeCAD and DWG Import/de](FreeCAD_and_DWG_Import/de.md) , [FreeCAD and DXF Import/de](FreeCAD_and_DXF_Import/de.md) , [FreeCAD and Mesh Import/de](FreeCAD_and_Mesh_Import/de.md) , [Import Export Preferences/de](Import_Export_Preferences/de.md) , [Import Export/de](Import_Export/de.md) , [Import from STL or OBJ/de](Import_from_STL_or_OBJ/de.md) , [Import/Export IFC - compiling IfcOpenShell/de](Import/Export_IFC_-_compiling_IfcOpenShell/de.md) , [Material/de](Material/de.md) , [OpenSCAD CSG tested files/de](OpenSCAD_CSG_tested_files/de.md) , [OpenSCAD CSG/de](OpenSCAD_CSG/de.md) , [PDF/de](PDF/de.md) , [Spreadsheet CSV/de](Spreadsheet_CSV/de.md) , [Std Export/de](Std_Export/de.md) , [Std Import/de](Std_Import/de.md) , [SVG/de](SVG/de.md) + +--- +[documentation index](../README.md) > Category:File Formats/de diff --git a/wiki/translations/de/Category:Glossary.md b/wiki/translations/de/Category:Glossary.md index 10275d7f7e..e3f6279a8e 100644 --- a/wiki/translations/de/Category:Glossary.md +++ b/wiki/translations/de/Category:Glossary.md @@ -4,3 +4,6 @@ This category tracks pages that explain definitions of words related to FreeCAD ### Contents: [Assembly/de](Assembly/de.md) , [Body/de](Body/de.md) , [Command/de](Command/de.md) , [Constraint/de](Constraint/de.md) , [Datum/de](Datum/de.md) , [Drawing/de](Drawing/de.md) , [Feature/de](Feature/de.md) , [Glossary/de](Glossary/de.md) , [Manipulator/de](Manipulator/de.md) , [Mesh Feature/de](Mesh_Feature/de.md) , [Mesh/de](Mesh/de.md) , [Model/de](Model/de.md) , [Part/de](Part/de.md) , [Python/de](Python/de.md) , [Shape/de](Shape/de.md) , [Sketch/de](Sketch/de.md) + +--- +[documentation index](../README.md) > Category:Glossary/de diff --git a/wiki/translations/de/Category:Help.md b/wiki/translations/de/Category:Help.md index f1c67d08b6..b3b90fb1bc 100644 --- a/wiki/translations/de/Category:Help.md +++ b/wiki/translations/de/Category:Help.md @@ -6,3 +6,6 @@ This category lists pages that contain helpfull information on MediaWiki and edi [Help/de](Help/de.md) [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:Help/de diff --git a/wiki/translations/de/Category:Hubs.md b/wiki/translations/de/Category:Hubs.md index a6ec9b6d55..d8a62b85d3 100644 --- a/wiki/translations/de/Category:Hubs.md +++ b/wiki/translations/de/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Developer hub/de](Developer_hub/de.md) , [Power users hub/de](Power_users_hub/de.md) , [Scientific literature/de](Scientific_literature/de.md) , [User hub/de](User_hub/de.md) , [Wished tools/de](Wished_tools/de.md) [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:Hubs/de diff --git a/wiki/translations/de/Category:Icon.md b/wiki/translations/de/Category:Icon.md index 33a56580c7..3d751eb449 100644 --- a/wiki/translations/de/Category:Icon.md +++ b/wiki/translations/de/Category:Icon.md @@ -6,3 +6,6 @@ This category contains **icon images**. [Artwork Erroneous/de](Artwork_Erroneous/de.md) , [Artwork/de](Artwork/de.md) [Category:Image/de](Category:Image/de.md) + +--- +[documentation index](../README.md) > Category:Icon/de diff --git a/wiki/translations/de/Category:Image.md b/wiki/translations/de/Category:Image.md index 1adb82e52b..316625fec5 100644 --- a/wiki/translations/de/Category:Image.md +++ b/wiki/translations/de/Category:Image.md @@ -6,3 +6,6 @@ This category is the top level category for **images**. It should not contain an [Bitmap/de](Bitmap/de.md) , [Image CreateImagePlane/de](Image_CreateImagePlane/de.md) , [Image Open/de](Image_Open/de.md) , [Image Scaling/de](Image_Scaling/de.md) , [Image Workbench/de](Image_Workbench/de.md) , [Category:Categories/de](Category:Categories/de.md) [Category:Icon/de](Category:Icon/de.md) + +--- +[documentation index](../README.md) > Category:Image/de diff --git a/wiki/translations/de/Category:Inspection.md b/wiki/translations/de/Category:Inspection.md index fe8eee727b..b3df4e5bf1 100644 --- a/wiki/translations/de/Category:Inspection.md +++ b/wiki/translations/de/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Inspection Workbench/de](Inspection_Workbench/de.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection/de diff --git a/wiki/translations/de/Category:Interface.md b/wiki/translations/de/Category:Interface.md index 41e632f93a..c5d142b603 100644 --- a/wiki/translations/de/Category:Interface.md +++ b/wiki/translations/de/Category:Interface.md @@ -4,3 +4,6 @@ This category lists pages that describe the FreeCAD interface. ### Contents: [3D view/de](3D_view/de.md) , [Combo view/de](Combo_view/de.md) , [DAG view/de](DAG_view/de.md) , [Interface Customization/de](Interface_Customization/de.md) , [Template:Interface navi/de](Template:Interface_navi/de.md) , [Interface/de](Interface/de.md) , [Main view area/de](Main_view_area/de.md) , [Property editor/de](Property_editor/de.md) , [Python console/de](Python_console/de.md) , [Report view/de](Report_view/de.md) , [Selection view/de](Selection_view/de.md) , [Standard Menu/de](Standard_Menu/de.md) , [Status bar/de](Status_bar/de.md) , [Std Workbench/de](Std_Workbench/de.md) , [Task panel/de](Task_panel/de.md) , [Tree view/de](Tree_view/de.md) + +--- +[documentation index](../README.md) > Category:Interface/de diff --git a/wiki/translations/de/Category:Macros.md b/wiki/translations/de/Category:Macros.md index 8ac352ab98..e2f23a604c 100644 --- a/wiki/translations/de/Category:Macros.md +++ b/wiki/translations/de/Category:Macros.md @@ -6,3 +6,6 @@ This category contains macros to extend your FreeCAD installation with new funct [Macro 3D Parametric Curve/de](Macro_3D_Parametric_Curve/de.md) , [Macro 3d Printer Slicer/de](Macro_3d_Printer_Slicer/de.md) , [Macro AeroFoil/de](Macro_AeroFoil/de.md) , [Macro Airfoil Import & Scale/de](Macro_Airfoil_Import_&_Scale/de.md) , [Macro Align Camera to Working Plane/de](Macro_Align_Camera_to_Working_Plane/de.md) , [Macro Align View to Face/de](Macro_Align_View_to_Face/de.md) , [Macro Animated Constrain/de](Macro_Animated_Constrain/de.md) , [Macro ArrayCopy/de](Macro_ArrayCopy/de.md) , [Macro at Startup/de](Macro_at_Startup/de.md) , [Macro Automatic drawing/de](Macro_Automatic_drawing/de.md) , [Macro BOLTS/de](Macro_BOLTS/de.md) , [Macro BoundingBox Tracing/de](Macro_BoundingBox_Tracing/de.md) , [Macro CartoucheFC 2/de](Macro_CartoucheFC_2/de.md) , [Macro CartoucheFC Full/de](Macro_CartoucheFC_Full/de.md) , [Macro CartoucheFC/de](Macro_CartoucheFC/de.md) , [Macro CenterFace/de](Macro_CenterFace/de.md) , [Macro CloneConvert/de](Macro_CloneConvert/de.md) , [Macro Corner shapes wizard/de](Macro_Corner_shapes_wizard/de.md) , [Macro crank simul/de](Macro_crank_simul/de.md) , [Macro cross section/de](Macro_cross_section/de.md) , [Macro Cut Circle/de](Macro_Cut_Circle/de.md) , [Macro Cut Line/de](Macro_Cut_Line/de.md) , [Macro Delta xyz/de](Macro_Delta_xyz/de.md) , [Macro documentation/de](Macro_documentation/de.md) , [Macro Draft Circle 3 Points 3D/de](Macro_Draft_Circle_3_Points_3D/de.md) , [Macro Draft Circle 3 Points/de](Macro_Draft_Circle_3_Points/de.md) , [Macro Draw 2D Function/de](Macro_Draw_2D_Function/de.md) , [Macro Draw Parametric 2D Function/de](Macro_Draw_Parametric_2D_Function/de.md) , [Macro DXF to Face and Sketch/de](Macro_DXF_to_Face_and_Sketch/de.md) , [Macro EdgesToArc/de](Macro_EdgesToArc/de.md) , [Macro Ellipse-Center+2Points/de](Macro_Ellipse-Center+2Points/de.md) , [Macro FaceToSketch/de](Macro_FaceToSketch/de.md) , [Macro FCInfo Alternate Linux/de](Macro_FCInfo_Alternate_Linux/de.md) , [Macro FCInfo/de](Macro_FCInfo/de.md) , [Macro findConfigFiles/de](Macro_findConfigFiles/de.md) , [Macro FlattenWire/de](Macro_FlattenWire/de.md) , [Macro ForceRecompute/de](Macro_ForceRecompute/de.md) , [Macro Half-Hull Model/de](Macro_Half-Hull_Model/de.md) , [Macro HealArcs/de](Macro_HealArcs/de.md) , [Macro HighlightDifference/de](Macro_HighlightDifference/de.md) , [Macro hinge/de](Macro_hinge/de.md) , [Macro JointWire/de](Macro_JointWire/de.md) , [Macro Line Length/de](Macro_Line_Length/de.md) , [Macro Loft/de](Macro_Loft/de.md) , [Macro MacroMenu/de](Macro_MacroMenu/de.md) , [Macro Make Circle 3 Points/de](Macro_Make_Circle_3_Points/de.md) , [Macro Make Cube/de](Macro_Make_Cube/de.md) , [Macro MeasureCircle/de](Macro_MeasureCircle/de.md) , [Macro MeshToPart/de](Macro_MeshToPart/de.md) , [Macro MessageBox/de](Macro_MessageBox/de.md) , [Macro ObjectInfo/de](Macro_ObjectInfo/de.md) , [Macro PartsLibrary/de](Macro_PartsLibrary/de.md) , [Macro PropertyMemo/de](Macro_PropertyMemo/de.md) , [Macro Rectellipse/de](Macro_Rectellipse/de.md) , [Macro Remove parametric history/de](Macro_Remove_parametric_history/de.md) , [Macro Rotate View/de](Macro_Rotate_View/de.md) , [Macro Screen Wiki/de](Macro_Screen_Wiki/de.md) , [Macro screw maker1 2/de](Macro_screw_maker1_2/de.md) , [Macro SelectVisible/de](Macro_SelectVisible/de.md) , [Macro SimpleProperties/de](Macro_SimpleProperties/de.md) , [Macro Site From Contours/de](Macro_Site_From_Contours/de.md) , [Macro Snip/de](Macro_Snip/de.md) , [Macro Solid Sweep/de](Macro_Solid_Sweep/de.md) , [Macro SuperWire/de](Macro_SuperWire/de.md) , [Macro Texture Objects/de](Macro_Texture_Objects/de.md) , [Macro Texture/de](Macro_Texture/de.md) , [Macro Unfold Box/de](Macro_Unfold_Box/de.md) , [Macro Unroll Ruled Surface/de](Macro_Unroll_Ruled_Surface/de.md) , [Macro View Rotation/de](Macro_View_Rotation/de.md) , [Macro WorkFeatures/de](Macro_WorkFeatures/de.md) , [Template:Macro/de](Template:Macro/de.md) , [Macros recipes/de](Macros_recipes/de.md) , [Macros/de](Macros/de.md) , [Qt Example/de](Qt_Example/de.md) , [Svg Namespace/de](Svg_Namespace/de.md) [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:Macros/de diff --git a/wiki/translations/de/Category:Manual.md b/wiki/translations/de/Category:Manual.md index 132b65a3fb..f4a7131552 100644 --- a/wiki/translations/de/Category:Manual.md +++ b/wiki/translations/de/Category:Manual.md @@ -4,3 +4,6 @@ This category contains all the page of the FreeCAD manual Diese Kategorie enthä ### Contents: [Manual:A gentle introduction/de](Manual:A_gentle_introduction/de.md) , [Manual:All workbenches at a glance/de](Manual:All_workbenches_at_a_glance/de.md) , [Manual:BIM modeling/de](Manual:BIM_modeling/de.md) , [Manual:Creating and manipulating geometry/de](Manual:Creating_and_manipulating_geometry/de.md) , [Manual:Creating FEM analyses/de](Manual:Creating_FEM_analyses/de.md) , [Manual:Creating interface tools/de](Manual:Creating_interface_tools/de.md) , [Manual:Creating parametric objects/de](Manual:Creating_parametric_objects/de.md) , [Manual:Creating renderings/de](Manual:Creating_renderings/de.md) , [Manual:Generating 2D drawings/de](Manual:Generating_2D_drawings/de.md) , [Manual:Import and export to other filetypes/de](Manual:Import_and_export_to_other_filetypes/de.md) , [Manual:Installing/de](Manual:Installing/de.md) , [Manual:Introduction/de](Manual:Introduction/de.md) , [Manual:Modeling for product design/de](Manual:Modeling_for_product_design/de.md) , [Manual:Navigating in the 3D view/de](Manual:Navigating_in_the_3D_view/de.md) , [Manual:Parametric objects/de](Manual:Parametric_objects/de.md) , [Manual:Preparing models for 3D printing/de](Manual:Preparing_models_for_3D_printing/de.md) , [Manual:Summary/de](Manual:Summary/de.md) , [Manual:The Community/de](Manual:The_Community/de.md) , [Manual:The FreeCAD document/de](Manual:The_FreeCAD_document/de.md) , [Manual:The FreeCAD Interface/de](Manual:The_FreeCAD_Interface/de.md) , [Template:Manual:TOC/de](Template:Manual:TOC/de.md) , [Manual:Traditional 2D drafting/de](Manual:Traditional_2D_drafting/de.md) , [Manual:Traditional modeling, the CSG way/de](Manual:Traditional_modeling,_the_CSG_way/de.md) , [Manual:Using spreadsheets/de](Manual:Using_spreadsheets/de.md) , [Manual:What is FreeCAD/de](Manual:What_is_FreeCAD/de.md) + +--- +[documentation index](../README.md) > Category:Manual/de diff --git a/wiki/translations/de/Category:Mesh.md b/wiki/translations/de/Category:Mesh.md index 0627d548c0..affc1a8ee3 100644 --- a/wiki/translations/de/Category:Mesh.md +++ b/wiki/translations/de/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/de](Mesh_Workbench/de. [Artwork Mesh/de](Artwork_Mesh/de.md) , [Manual:Preparing models for 3D printing/de](Manual:Preparing_models_for_3D_printing/de.md) , [Mesh AddFacet/de](Mesh_AddFacet/de.md) , [Mesh BoundingBox/de](Mesh_BoundingBox/de.md) , [Mesh BuildRegularSolid/de](Mesh_BuildRegularSolid/de.md) , [Mesh CurvatureInfo/de](Mesh_CurvatureInfo/de.md) , [Mesh Difference/de](Mesh_Difference/de.md) , [Mesh EvaluateFacet/de](Mesh_EvaluateFacet/de.md) , [Mesh EvaluateSolid/de](Mesh_EvaluateSolid/de.md) , [Mesh Evaluation/de](Mesh_Evaluation/de.md) , [Mesh Export/de](Mesh_Export/de.md) , [Mesh Feature/de](Mesh_Feature/de.md) , [Mesh FillInteractiveHole/de](Mesh_FillInteractiveHole/de.md) , [Mesh FlipNormals/de](Mesh_FlipNormals/de.md) , [Mesh FromPartShape/de](Mesh_FromPartShape/de.md) , [Mesh HarmonizeNormals/de](Mesh_HarmonizeNormals/de.md) , [Mesh Import/de](Mesh_Import/de.md) , [Mesh Intersection/de](Mesh_Intersection/de.md) , [Mesh Merge/de](Mesh_Merge/de.md) , [Mesh MeshObject/de](Mesh_MeshObject/de.md) , [Mesh PolyCut/de](Mesh_PolyCut/de.md) , [Mesh RemeshGmsh/de](Mesh_RemeshGmsh/de.md) , [Mesh RemoveCompByHand/de](Mesh_RemoveCompByHand/de.md) , [Mesh RemoveComponents/de](Mesh_RemoveComponents/de.md) , [Mesh Scale/de](Mesh_Scale/de.md) , [Mesh Scripting/de](Mesh_Scripting/de.md) , [Mesh to Part/de](Mesh_to_Part/de.md) , [Template:Mesh Tools navi/de](Template:Mesh_Tools_navi/de.md) , [Mesh Union/de](Mesh_Union/de.md) , [Mesh VertexCurvature/de](Mesh_VertexCurvature/de.md) , [Mesh Workbench/de](Mesh_Workbench/de.md) , [Mesh/de](Mesh/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Mesh/de diff --git a/wiki/translations/de/Category:News.md b/wiki/translations/de/Category:News.md index 27e240b24b..d8314decea 100644 --- a/wiki/translations/de/Category:News.md +++ b/wiki/translations/de/Category:News.md @@ -6,3 +6,6 @@ This category contains articles with news and messages about FreeCAD. [History/de](History/de.md) , [Release notes 0.11/de](Release_notes_0.11/de.md) , [Release notes 0.13/de](Release_notes_0.13/de.md) , [Release notes 0.14/de](Release_notes_0.14/de.md) , [Release notes 0.15/de](Release_notes_0.15/de.md) , [Release notes 0.16/de](Release_notes_0.16/de.md) , [Release notes 0.17/de](Release_notes_0.17/de.md) , [Release notes 0.18/de](Release_notes_0.18/de.md) , [Release notes 0.19/de](Release_notes_0.19/de.md) , [Release notes 0.20/de](Release_notes_0.20/de.md) [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:News/de diff --git a/wiki/translations/de/Category:Obsolete_Workbenches.md b/wiki/translations/de/Category:Obsolete_Workbenches.md index 4cea5571ab..8adb9296e8 100644 --- a/wiki/translations/de/Category:Obsolete_Workbenches.md +++ b/wiki/translations/de/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ Diese Kategorie zeigt eine Liste der veralteten Arbeitsbereiche, d.h. Arbeitsber [Complete Workbench/de](Complete_Workbench/de.md) , [Drawing Workbench/de](Drawing_Workbench/de.md) , [Category:Workbenches/de](Category:Workbenches/de.md) [Category:Drawing/de](Category:Drawing/de.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/de diff --git a/wiki/translations/de/Category:Obsolete_page.md b/wiki/translations/de/Category:Obsolete_page.md index d8596389a6..f34be155a6 100644 --- a/wiki/translations/de/Category:Obsolete_page.md +++ b/wiki/translations/de/Category:Obsolete_page.md @@ -1,6 +1,7 @@ # Category:Obsolete page/de - - Diese Kategorie führt Seiten auf, die in der aktuellen FreeCAD-Version obsolet sind. Sie werden möglicherweise nach einer Forumsdiskussion gelöscht. ### Contents: + +--- +[documentation index](../README.md) > Category:Obsolete page/de diff --git a/wiki/translations/de/Category:OpenSCAD.md b/wiki/translations/de/Category:OpenSCAD.md index 77da1527b1..326d10e628 100644 --- a/wiki/translations/de/Category:OpenSCAD.md +++ b/wiki/translations/de/Category:OpenSCAD.md @@ -6,3 +6,6 @@ Diese Kategorie zeigt eine Liste von Seiten, die zum [OpenSCAD-Arbeitsbereich](O [Import OpenSCAD code/de](Import_OpenSCAD_code/de.md) , [OpenSCAD AddOpenSCADElement/de](OpenSCAD_AddOpenSCADElement/de.md) , [OpenSCAD ColorCodeShape/de](OpenSCAD_ColorCodeShape/de.md) , [OpenSCAD CSG tested files/de](OpenSCAD_CSG_tested_files/de.md) , [OpenSCAD CSG/de](OpenSCAD_CSG/de.md) , [OpenSCAD Edgestofaces/de](OpenSCAD_Edgestofaces/de.md) , [OpenSCAD ExpandPlacements/de](OpenSCAD_ExpandPlacements/de.md) , [OpenSCAD ExplodeGroup/de](OpenSCAD_ExplodeGroup/de.md) , [OpenSCAD Hull/de](OpenSCAD_Hull/de.md) , [OpenSCAD IncreaseToleranceFeature/de](OpenSCAD_IncreaseToleranceFeature/de.md) , [OpenSCAD MeshBoolean/de](OpenSCAD_MeshBoolean/de.md) , [OpenSCAD Minkowski/de](OpenSCAD_Minkowski/de.md) , [OpenSCAD MirrorMeshFeature/de](OpenSCAD_MirrorMeshFeature/de.md) , [OpenSCAD Preferences/de](OpenSCAD_Preferences/de.md) , [OpenSCAD RefineShapeFeature/de](OpenSCAD_RefineShapeFeature/de.md) , [OpenSCAD RemoveSubtree/de](OpenSCAD_RemoveSubtree/de.md) , [OpenSCAD ReplaceObject/de](OpenSCAD_ReplaceObject/de.md) , [Template:OpenSCAD Tools navi/de](Template:OpenSCAD_Tools_navi/de.md) , [OpenSCAD Workbench/de](OpenSCAD_Workbench/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/de diff --git a/wiki/translations/de/Category:Packaging.md b/wiki/translations/de/Category:Packaging.md index 12076f4e1d..ffa1664107 100644 --- a/wiki/translations/de/Category:Packaging.md +++ b/wiki/translations/de/Category:Packaging.md @@ -6,3 +6,6 @@ This category collects pages related to packing FreeCAD for different platforms, [AppImage/de](AppImage/de.md) , [Debian development/de](Debian_development/de.md) , [Debian Unstable/de](Debian_Unstable/de.md) , [Git buildpackage/de](Git_buildpackage/de.md) , [Linux packaging/de](Linux_packaging/de.md) , [Packaging/de](Packaging/de.md) , [Windows packaging/de](Windows_packaging/de.md) [Category:Developer\_Documentation/de](Category:Developer_Documentation/de.md) + +--- +[documentation index](../README.md) > Category:Packaging/de diff --git a/wiki/translations/de/Category:Pages_to_delete.md b/wiki/translations/de/Category:Pages_to_delete.md index 05079dcf02..ed260e0c5c 100644 --- a/wiki/translations/de/Category:Pages_to_delete.md +++ b/wiki/translations/de/Category:Pages_to_delete.md @@ -2,3 +2,6 @@ ### Contents: [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:Pages to delete/de diff --git a/wiki/translations/de/Category:Part.md b/wiki/translations/de/Category:Part.md index 854bc5b000..0b2e3be240 100644 --- a/wiki/translations/de/Category:Part.md +++ b/wiki/translations/de/Category:Part.md @@ -6,3 +6,6 @@ Diese Kategorie zeigt eine Liste von Seiten, die zum [Part-Arbeitsbereich](Part_ [Aeroplane/de](Aeroplane/de.md) , [Artwork Part/de](Artwork_Part/de.md) , [Basic modeling tutorial/de](Basic_modeling_tutorial/de.md) , [Constructive solid geometry/de](Constructive_solid_geometry/de.md) , [Draft ShapeString tutorial/de](Draft_ShapeString_tutorial/de.md) , [Feature/de](Feature/de.md) , [Part and PartDesign/de](Part_and_PartDesign/de.md) , [Part Boolean/de](Part_Boolean/de.md) , [Part BooleanFragments/de](Part_BooleanFragments/de.md) , [Part Box/de](Part_Box/de.md) , [Part BoxSelection/de](Part_BoxSelection/de.md) , [Part Builder/de](Part_Builder/de.md) , [Part Chamfer/de](Part_Chamfer/de.md) , [Part CheckGeometry/de](Part_CheckGeometry/de.md) , [Part Circle/de](Part_Circle/de.md) , [Part Common/de](Part_Common/de.md) , [Part CompCompoundTools/de](Part_CompCompoundTools/de.md) , [Part CompJoinFeatures/de](Part_CompJoinFeatures/de.md) , [Part CompOffsetTools/de](Part_CompOffsetTools/de.md) , [Part Compound/de](Part_Compound/de.md) , [Part CompoundFilter/de](Part_CompoundFilter/de.md) , [Part CompSplittingTools/de](Part_CompSplittingTools/de.md) , [Part Cone/de](Part_Cone/de.md) , [Part CrossSections/de](Part_CrossSections/de.md) , [Part Cut/de](Part_Cut/de.md) , [Part Cylinder/de](Part_Cylinder/de.md) , [Part Defeaturing/de](Part_Defeaturing/de.md) , [Part EditAttachment/de](Part_EditAttachment/de.md) , [Part ElementCopy/de](Part_ElementCopy/de.md) , [Part Ellipse/de](Part_Ellipse/de.md) , [Part Ellipsoid/de](Part_Ellipsoid/de.md) , [Part ExplodeCompound/de](Part_ExplodeCompound/de.md) , [Part Export/de](Part_Export/de.md) , [Part Extrude/de](Part_Extrude/de.md) , [Part Feature/de](Part_Feature/de.md) , [Part Fillet/de](Part_Fillet/de.md) , [Part Fuse/de](Part_Fuse/de.md) , [Part Helix/de](Part_Helix/de.md) , [Part Import/de](Part_Import/de.md) , [Part JoinConnect/de](Part_JoinConnect/de.md) , [Part JoinCutout/de](Part_JoinCutout/de.md) , [Part JoinEmbed/de](Part_JoinEmbed/de.md) , [Part Line/de](Part_Line/de.md) , [Part Loft Technical Details/de](Part_Loft_Technical_Details/de.md) , [Part Loft/de](Part_Loft/de.md) , [Part MakeSolid/de](Part_MakeSolid/de.md) , [Part Measure Angular/de](Part_Measure_Angular/de.md) , [Part Measure Clear All/de](Part_Measure_Clear_All/de.md) , [Part Measure Linear/de](Part_Measure_Linear/de.md) , [Part Measure Menu/de](Part_Measure_Menu/de.md) , [Part Measure Refresh/de](Part_Measure_Refresh/de.md) , [Part Measure Toggle 3d/de](Part_Measure_Toggle_3d/de.md) , [Part Measure Toggle All/de](Part_Measure_Toggle_All/de.md) , [Part Measure Toggle Delta/de](Part_Measure_Toggle_Delta/de.md) , [Part Mirror/de](Part_Mirror/de.md) , [Part Module/de](Part_Module/de.md) , [Part Offset/de](Part_Offset/de.md) , [Part Offset2D/de](Part_Offset2D/de.md) , [Part Part2DObject/de](Part_Part2DObject/de.md) , [Part Plane/de](Part_Plane/de.md) , [Part Point/de](Part_Point/de.md) , [Part PointsFromMesh/de](Part_PointsFromMesh/de.md) , [Part Primitives/de](Part_Primitives/de.md) , [Part Prism/de](Part_Prism/de.md) , [Part ProjectionOnSurface/de](Part_ProjectionOnSurface/de.md) , [Part RefineShape/de](Part_RefineShape/de.md) , [Part RegularPolygon/de](Part_RegularPolygon/de.md) , [Part ReverseShapes/de](Part_ReverseShapes/de.md) , [Part Revolve/de](Part_Revolve/de.md) , [Part RuledSurface/de](Part_RuledSurface/de.md) , [Part scripting/de](Part_scripting/de.md) , [Part Section/de](Part_Section/de.md) , [Part ShapeFromMesh/de](Part_ShapeFromMesh/de.md) , [Part SimpleCopy/de](Part_SimpleCopy/de.md) , [Part Slice/de](Part_Slice/de.md) , [Part SliceApart/de](Part_SliceApart/de.md) , [Part Sphere/de](Part_Sphere/de.md) , [Part Spiral/de](Part_Spiral/de.md) , [Part Sweep/de](Part_Sweep/de.md) , [Part Thickness/de](Part_Thickness/de.md) , [Template:Part Tools navi/de](Template:Part_Tools_navi/de.md) , [Part TopoShape/de](Part_TopoShape/de.md) , [Part Torus/de](Part_Torus/de.md) , [Part TransformedCopy/de](Part_TransformedCopy/de.md) , [Part Tube/de](Part_Tube/de.md) , [Part Wedge/de](Part_Wedge/de.md) , [Part XOR/de](Part_XOR/de.md) , [Shape/de](Shape/de.md) , [Thread for Screw Tutorial/de](Thread_for_Screw_Tutorial/de.md) , [Topological naming problem/de](Topological_naming_problem/de.md) , [Whiffle Ball tutorial/de](Whiffle_Ball_tutorial/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Part/de diff --git a/wiki/translations/de/Category:PartDesign.md b/wiki/translations/de/Category:PartDesign.md index 98725495f7..f9e007e076 100644 --- a/wiki/translations/de/Category:PartDesign.md +++ b/wiki/translations/de/Category:PartDesign.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to PartDesign ### Contents: [Artwork PartDesign/de](Artwork_PartDesign/de.md) , [Basic Part Design Tutorial/de](Basic_Part_Design_Tutorial/de.md) , [Body/de](Body/de.md) , [Creating a simple part with PartDesign/de](Creating_a_simple_part_with_PartDesign/de.md) , [Datum/de](Datum/de.md) , [Draft ShapeString tutorial/de](Draft_ShapeString_tutorial/de.md) , [Feature editing/de](Feature_editing/de.md) , [Feature/de](Feature/de.md) , [Part and PartDesign/de](Part_and_PartDesign/de.md) , [PartDesign AdditiveBox/de](PartDesign_AdditiveBox/de.md) , [PartDesign AdditiveCone/de](PartDesign_AdditiveCone/de.md) , [PartDesign AdditiveCylinder/de](PartDesign_AdditiveCylinder/de.md) , [PartDesign AdditiveEllipsoid/de](PartDesign_AdditiveEllipsoid/de.md) , [PartDesign AdditiveHelix/de](PartDesign_AdditiveHelix/de.md) , [PartDesign AdditiveLoft/de](PartDesign_AdditiveLoft/de.md) , [PartDesign AdditivePipe/de](PartDesign_AdditivePipe/de.md) , [PartDesign AdditivePrism/de](PartDesign_AdditivePrism/de.md) , [PartDesign AdditiveSphere/de](PartDesign_AdditiveSphere/de.md) , [PartDesign AdditiveTorus/de](PartDesign_AdditiveTorus/de.md) , [PartDesign AdditiveWedge/de](PartDesign_AdditiveWedge/de.md) , [PartDesign Body/de](PartDesign_Body/de.md) , [PartDesign Boolean/de](PartDesign_Boolean/de.md) , [PartDesign Chamfer/de](PartDesign_Chamfer/de.md) , [PartDesign Clone/de](PartDesign_Clone/de.md) , [PartDesign CompPrimitiveAdditive/de](PartDesign_CompPrimitiveAdditive/de.md) , [PartDesign CompPrimitiveSubtractive/de](PartDesign_CompPrimitiveSubtractive/de.md) , [PartDesign CoordinateSystem/de](PartDesign_CoordinateSystem/de.md) , [PartDesign Draft/de](PartDesign_Draft/de.md) , [PartDesign Feature/de](PartDesign_Feature/de.md) , [PartDesign Fillet/de](PartDesign_Fillet/de.md) , [PartDesign Groove/de](PartDesign_Groove/de.md) , [PartDesign Hole/de](PartDesign_Hole/de.md) , [PartDesign InvoluteGear/de](PartDesign_InvoluteGear/de.md) , [PartDesign Line/de](PartDesign_Line/de.md) , [PartDesign LinearPattern/de](PartDesign_LinearPattern/de.md) , [PartDesign Migrate/de](PartDesign_Migrate/de.md) , [PartDesign Mirrored/de](PartDesign_Mirrored/de.md) , [PartDesign MoveFeature/de](PartDesign_MoveFeature/de.md) , [PartDesign MoveFeatureInTree/de](PartDesign_MoveFeatureInTree/de.md) , [PartDesign MoveTip/de](PartDesign_MoveTip/de.md) , [PartDesign MultiTransform/de](PartDesign_MultiTransform/de.md) , [PartDesign NewSketch/de](PartDesign_NewSketch/de.md) , [PartDesign Pad/de](PartDesign_Pad/de.md) , [PartDesign Plane/de](PartDesign_Plane/de.md) , [PartDesign Pocket/de](PartDesign_Pocket/de.md) , [PartDesign Point/de](PartDesign_Point/de.md) , [PartDesign PolarPattern/de](PartDesign_PolarPattern/de.md) , [PartDesign Preferences/de](PartDesign_Preferences/de.md) , [PartDesign Revolution/de](PartDesign_Revolution/de.md) , [PartDesign ShapeBinder/de](PartDesign_ShapeBinder/de.md) , [PartDesign Sprocket/de](PartDesign_Sprocket/de.md) , [PartDesign SubShapeBinder/de](PartDesign_SubShapeBinder/de.md) , [PartDesign SubtractiveBox/de](PartDesign_SubtractiveBox/de.md) , [PartDesign SubtractiveCone/de](PartDesign_SubtractiveCone/de.md) , [PartDesign SubtractiveCylinder/de](PartDesign_SubtractiveCylinder/de.md) , [PartDesign SubtractiveEllipsoid/de](PartDesign_SubtractiveEllipsoid/de.md) , [PartDesign SubtractiveHelix/de](PartDesign_SubtractiveHelix/de.md) , [PartDesign SubtractiveLoft/de](PartDesign_SubtractiveLoft/de.md) , [PartDesign SubtractivePipe/de](PartDesign_SubtractivePipe/de.md) , [PartDesign SubtractivePrism/de](PartDesign_SubtractivePrism/de.md) , [PartDesign SubtractiveSphere/de](PartDesign_SubtractiveSphere/de.md) , [PartDesign SubtractiveTorus/de](PartDesign_SubtractiveTorus/de.md) , [PartDesign SubtractiveWedge/de](PartDesign_SubtractiveWedge/de.md) , [PartDesign Thickness/de](PartDesign_Thickness/de.md) , [Template:PartDesign Tools navi/de](Template:PartDesign_Tools_navi/de.md) , [PartDesign WizardShaft/de](PartDesign_WizardShaft/de.md) , [PartDesign Workbench/de](PartDesign_Workbench/de.md) , [Thread for Screw Tutorial/de](Thread_for_Screw_Tutorial/de.md) , [Toothbrush Head Stand/de](Toothbrush_Head_Stand/de.md) , [Topological naming problem/de](Topological_naming_problem/de.md) + +--- +[documentation index](../README.md) > Category:PartDesign/de diff --git a/wiki/translations/de/Category:Path.md b/wiki/translations/de/Category:Path.md index 46a6010d10..b1af427071 100644 --- a/wiki/translations/de/Category:Path.md +++ b/wiki/translations/de/Category:Path.md @@ -6,3 +6,6 @@ Diese Kategorie zeigt eine Liste von Seiten, die zum [Part Design-Arbeitsbereich [Manual:Preparing models for 3D printing/de](Manual:Preparing_models_for_3D_printing/de.md) , [Path Adaptive/de](Path_Adaptive/de.md) , [Path Comment/de](Path_Comment/de.md) , [Path Development Roadmap/de](Path_Development_Roadmap/de.md) , [Path Drilling/de](Path_Drilling/de.md) , [Path Engrave/de](Path_Engrave/de.md) , [Path ExportTemplate/de](Path_ExportTemplate/de.md) , [Path FAQ/de](Path_FAQ/de.md) , [Path Inspect/de](Path_Inspect/de.md) , [Path Job/de](Path_Job/de.md) , [Path MillFace/de](Path_MillFace/de.md) , [Path Pocket Shape/de](Path_Pocket_Shape/de.md) , [Path Post/de](Path_Post/de.md) , [Path Postprocessor Customization/de](Path_Postprocessor_Customization/de.md) , [Path Preferences/de](Path_Preferences/de.md) , [Path Profile/de](Path_Profile/de.md) , [Path scripting/de](Path_scripting/de.md) , [Path SelectLoop/de](Path_SelectLoop/de.md) , [Path Simulator/de](Path_Simulator/de.md) , [Path ToolLibraryEdit/de](Path_ToolLibraryEdit/de.md) , [Template:Path Tools navi/de](Template:Path_Tools_navi/de.md) , [Path Vcarve/de](Path_Vcarve/de.md) , [Path Walkthrough for the Impatient/de](Path_Walkthrough_for_the_Impatient/de.md) , [Path Workbench/de](Path_Workbench/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Path/de diff --git a/wiki/translations/de/Category:Plot.md b/wiki/translations/de/Category:Plot.md index d33f30d20d..3a813db450 100644 --- a/wiki/translations/de/Category:Plot.md +++ b/wiki/translations/de/Category:Plot.md @@ -6,3 +6,6 @@ Diese Kategorie zeigt eine Liste von Seiten, die zum [Plot-Arbeitsbereich](Plot_ [Plot Axes/de](Plot_Axes/de.md) , [Plot Basic tutorial/de](Plot_Basic_tutorial/de.md) , [Plot Grid/de](Plot_Grid/de.md) , [Plot Labels/de](Plot_Labels/de.md) , [Plot Legend/de](Plot_Legend/de.md) , [Plot Module/de](Plot_Module/de.md) , [Plot MultiAxes tutorial/de](Plot_MultiAxes_tutorial/de.md) , [Plot Positions/de](Plot_Positions/de.md) , [Plot Save/de](Plot_Save/de.md) , [Plot Series/de](Plot_Series/de.md) , [Template:Plot Tools navi/de](Template:Plot_Tools_navi/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Plot/de diff --git a/wiki/translations/de/Category:Points.md b/wiki/translations/de/Category:Points.md index 1666a1a97a..9d6b6a6b7d 100644 --- a/wiki/translations/de/Category:Points.md +++ b/wiki/translations/de/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/de](Points_Workbench/ [Points Convert/de](Points_Convert/de.md) , [Points Export/de](Points_Export/de.md) , [Points Import/de](Points_Import/de.md) , [Points Merge/de](Points_Merge/de.md) , [Points PolyCut/de](Points_PolyCut/de.md) , [Points Structure/de](Points_Structure/de.md) , [Points Workbench/de](Points_Workbench/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Points/de diff --git a/wiki/translations/de/Category:Poweruser_Documentation.md b/wiki/translations/de/Category:Poweruser_Documentation.md index 5c77f4e013..822a1879af 100644 --- a/wiki/translations/de/Category:Poweruser_Documentation.md +++ b/wiki/translations/de/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Arch API/de](Arch_API/de.md) , [Base API/de](Base_API/de.md) , [Builtin modules/de](Builtin_modules/de.md) , [Code snippets/de](Code_snippets/de.md) , [Coin3d snippets/de](Coin3d_snippets/de.md) , [Command/de](Command/de.md) , [Console API/de](Console_API/de.md) , [Create a FeaturePython object part I/de](Create_a_FeaturePython_object_part_I/de.md) , [Create a FeaturePython object part II/de](Create_a_FeaturePython_object_part_II/de.md) , [Debugging/de](Debugging/de.md) , [Dialog creation image and animated GIF/de](Dialog_creation_image_and_animated_GIF/de.md) , [Dialog creation reading and writing files/de](Dialog_creation_reading_and_writing_files/de.md) , [Dialog creation setting colors/de](Dialog_creation_setting_colors/de.md) , [Dialog creation with various widgets/de](Dialog_creation_with_various_widgets/de.md) , [Dialog creation/de](Dialog_creation/de.md) , [Draft API/de](Draft_API/de.md) , [Embedding FreeCAD/de](Embedding_FreeCAD/de.md) , [Embedding FreeCADGui/de](Embedding_FreeCADGui/de.md) , [Expressions/de](Expressions/de.md) , [FeaturePython methods/de](FeaturePython_methods/de.md) , [FreeCAD API/de](FreeCAD_API/de.md) , [FreeCAD Scripting Basics/de](FreeCAD_Scripting_Basics/de.md) , [FreeCAD vector math library/de](FreeCAD_vector_math_library/de.md) , [FreeCADGui API/de](FreeCADGui_API/de.md) , [Gui Command/de](Gui_Command/de.md) , [How to install additional workbenches/de](How_to_install_additional_workbenches/de.md) , [How to install macros/de](How_to_install_macros/de.md) , [Installing more workbenches/de](Installing_more_workbenches/de.md) , [Interface creation/de](Interface_creation/de.md) , [Introduction to Python/de](Introduction_to_Python/de.md) , [Line drawing function/de](Line_drawing_function/de.md) , [Macro at Startup/de](Macro_at_Startup/de.md) , [Macros/de](Macros/de.md) , [Manual:A gentle introduction/de](Manual:A_gentle_introduction/de.md) , [Manual:Creating and manipulating geometry/de](Manual:Creating_and_manipulating_geometry/de.md) , [Manual:Creating interface tools/de](Manual:Creating_interface_tools/de.md) , [Manual:Creating parametric objects/de](Manual:Creating_parametric_objects/de.md) , [Manual:Import and export to other filetypes/de](Manual:Import_and_export_to_other_filetypes/de.md) , [Manual:Installing/de](Manual:Installing/de.md) , [Manual:Parametric objects/de](Manual:Parametric_objects/de.md) , [Matrix API/de](Matrix_API/de.md) , [Mesh API/de](Mesh_API/de.md) , [Mesh Scripting/de](Mesh_Scripting/de.md) , [Mesh to Part/de](Mesh_to_Part/de.md) , [Object API/de](Object_API/de.md) , [OpenCASCADE/de](OpenCASCADE/de.md) , [Part API/de](Part_API/de.md) , [Part scripting/de](Part_scripting/de.md) , [Path scripting/de](Path_scripting/de.md) , [Pivy/de](Pivy/de.md) , [Placement API/de](Placement_API/de.md) , [Power users hub/de](Power_users_hub/de.md) , [Profiling/de](Profiling/de.md) , [Property/de](Property/de.md) , [PySide Advanced Examples/de](PySide_Advanced_Examples/de.md) , [PySide Beginner Examples/de](PySide_Beginner_Examples/de.md) , [PySide Intermediate Examples/de](PySide_Intermediate_Examples/de.md) , [PySide usage snippets/de](PySide_usage_snippets/de.md) , [PySide/de](PySide/de.md) , [Python Development Environment/de](Python_Development_Environment/de.md) , [Python scripting tutorial/de](Python_scripting_tutorial/de.md) , [Python/de](Python/de.md) , [PythonOCC/de](PythonOCC/de.md) , [Qt Example/de](Qt_Example/de.md) , [Quantity/de](Quantity/de.md) , [Raytracing API example/de](Raytracing_API_example/de.md) , [Reinforcement API/de](Reinforcement_API/de.md) , [Scenegraph/de](Scenegraph/de.md) , [Scientific literature/de](Scientific_literature/de.md) , [Scripted objects migration/de](Scripted_objects_migration/de.md) , [Scripted objects saving attributes/de](Scripted_objects_saving_attributes/de.md) , [Scripted objects with attachment/de](Scripted_objects_with_attachment/de.md) , [Scripted objects/de](Scripted_objects/de.md) , [Scripted Parts: Ball Bearing - Part 1/de](Scripted_Parts:_Ball_Bearing_-_Part_1/de.md) , [Scripted Parts: Ball Bearing - Part 2/de](Scripted_Parts:_Ball_Bearing_-_Part_2/de.md) , [Scripting and macros/de](Scripting_and_macros/de.md) , [Scripts/de](Scripts/de.md) , [Selection API/de](Selection_API/de.md) , [Svg Namespace/de](Svg_Namespace/de.md) , [TechDraw API/de](TechDraw_API/de.md) , [TechDrawGui API/de](TechDrawGui_API/de.md) , [Topological data scripting/de](Topological_data_scripting/de.md) , [TopoShape API/de](TopoShape_API/de.md) , [Units/de](Units/de.md) , [Vector API/de](Vector_API/de.md) , [ViewObject API/de](ViewObject_API/de.md) , [Workbench creation/de](Workbench_creation/de.md) [Category:Documentation/de](Category:Documentation/de.md) [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/de diff --git a/wiki/translations/de/Category:Preferences.md b/wiki/translations/de/Category:Preferences.md index 566b5a44c9..6ed88bcf09 100644 --- a/wiki/translations/de/Category:Preferences.md +++ b/wiki/translations/de/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Arch Preferences/de](Arch_Preferences/de.md) , [Customize Toolbars/de](Customize_Toolbars/de.md) , [Draft Preferences/de](Draft_Preferences/de.md) , [Import Export Preferences/de](Import_Export_Preferences/de.md) , [OpenSCAD Preferences/de](OpenSCAD_Preferences/de.md) , [PartDesign Preferences/de](PartDesign_Preferences/de.md) , [Path Preferences/de](Path_Preferences/de.md) , [Preferences Editor/de](Preferences_Editor/de.md) , [Raytracing Preferences/de](Raytracing_Preferences/de.md) , [Sketcher Preferences/de](Sketcher_Preferences/de.md) , [Start Preferences/de](Start_Preferences/de.md) , [TechDraw Preferences/de](TechDraw_Preferences/de.md) + +--- +[documentation index](../README.md) > Category:Preferences/de diff --git a/wiki/translations/de/Category:Python_Code.md b/wiki/translations/de/Category:Python_Code.md index 87109413f2..6263f0385e 100644 --- a/wiki/translations/de/Category:Python_Code.md +++ b/wiki/translations/de/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Code snippets/de](Code_snippets/de.md) , [Command/de](Command/de.md) , [Create a FeaturePython object part I/de](Create_a_FeaturePython_object_part_I/de.md) , [Create a FeaturePython object part II/de](Create_a_FeaturePython_object_part_II/de.md) , [Debugging/de](Debugging/de.md) , [Dialog creation image and animated GIF/de](Dialog_creation_image_and_animated_GIF/de.md) , [Dialog creation reading and writing files/de](Dialog_creation_reading_and_writing_files/de.md) , [Dialog creation setting colors/de](Dialog_creation_setting_colors/de.md) , [Dialog creation with various widgets/de](Dialog_creation_with_various_widgets/de.md) , [Dialog creation/de](Dialog_creation/de.md) , [Embedding FreeCAD/de](Embedding_FreeCAD/de.md) , [Embedding FreeCADGui/de](Embedding_FreeCADGui/de.md) , [Extra python modules/de](Extra_python_modules/de.md) , [FeaturePython methods/de](FeaturePython_methods/de.md) , [FEM Tutorial Python/de](FEM_Tutorial_Python/de.md) , [FreeCAD Scripting Basics/de](FreeCAD_Scripting_Basics/de.md) , [FreeCAD vector math library/de](FreeCAD_vector_math_library/de.md) , [How to install macros/de](How_to_install_macros/de.md) , [Interface creation/de](Interface_creation/de.md) , [Introduction to Python/de](Introduction_to_Python/de.md) , [Line drawing function/de](Line_drawing_function/de.md) , [Macro at Startup/de](Macro_at_Startup/de.md) , [Macros recipes/de](Macros_recipes/de.md) , [Macros/de](Macros/de.md) , [Manual:A gentle introduction/de](Manual:A_gentle_introduction/de.md) , [Manual:Creating and manipulating geometry/de](Manual:Creating_and_manipulating_geometry/de.md) , [Manual:Creating interface tools/de](Manual:Creating_interface_tools/de.md) , [Manual:Creating parametric objects/de](Manual:Creating_parametric_objects/de.md) , [Mesh Scripting/de](Mesh_Scripting/de.md) , [Mesh to Part/de](Mesh_to_Part/de.md) , [Part scripting/de](Part_scripting/de.md) , [Path scripting/de](Path_scripting/de.md) , [Pivy/de](Pivy/de.md) , [Profiling/de](Profiling/de.md) , [Property/de](Property/de.md) , [PySide Advanced Examples/de](PySide_Advanced_Examples/de.md) , [PySide Beginner Examples/de](PySide_Beginner_Examples/de.md) , [PySide Intermediate Examples/de](PySide_Intermediate_Examples/de.md) , [PySide usage snippets/de](PySide_usage_snippets/de.md) , [PySide/de](PySide/de.md) , [Python Development Environment/de](Python_Development_Environment/de.md) , [Python scripting tutorial/de](Python_scripting_tutorial/de.md) , [Python/de](Python/de.md) , [PythonOCC/de](PythonOCC/de.md) , [Qt Example/de](Qt_Example/de.md) , [Quantity/de](Quantity/de.md) , [Raytracing API example/de](Raytracing_API_example/de.md) , [Scripted objects migration/de](Scripted_objects_migration/de.md) , [Scripted objects saving attributes/de](Scripted_objects_saving_attributes/de.md) , [Scripted objects with attachment/de](Scripted_objects_with_attachment/de.md) , [Scripted objects/de](Scripted_objects/de.md) , [Scripted Parts: Ball Bearing - Part 1/de](Scripted_Parts:_Ball_Bearing_-_Part_1/de.md) , [Scripted Parts: Ball Bearing - Part 2/de](Scripted_Parts:_Ball_Bearing_-_Part_2/de.md) , [Scripting and macros/de](Scripting_and_macros/de.md) , [Scripts/de](Scripts/de.md) , [Svg Namespace/de](Svg_Namespace/de.md) , [Topological data scripting/de](Topological_data_scripting/de.md) , [Workbench creation/de](Workbench_creation/de.md) [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:Python Code/de diff --git a/wiki/translations/de/Category:Raytracing.md b/wiki/translations/de/Category:Raytracing.md index 0fcdc1c274..fb0d41d954 100644 --- a/wiki/translations/de/Category:Raytracing.md +++ b/wiki/translations/de/Category:Raytracing.md @@ -6,3 +6,6 @@ Diese Kategorie zeigt eine Liste von Seiten, die zum [Robot-Arbeitsbereich](Robo [Manual:Creating renderings/de](Manual:Creating_renderings/de.md) , [Raytracing API example/de](Raytracing_API_example/de.md) , [Raytracing ExportProject/de](Raytracing_ExportProject/de.md) , [Raytracing InsertPart/de](Raytracing_InsertPart/de.md) , [Raytracing Lux/de](Raytracing_Lux/de.md) , [Raytracing New/de](Raytracing_New/de.md) , [Raytracing Preferences/de](Raytracing_Preferences/de.md) , [Raytracing Render/de](Raytracing_Render/de.md) , [Raytracing ResetCamera/de](Raytracing_ResetCamera/de.md) , [Raytracing templates/de](Raytracing_templates/de.md) , [Template:Raytracing Tools navi/de](Template:Raytracing_Tools_navi/de.md) , [Raytracing tutorial/de](Raytracing_tutorial/de.md) , [Raytracing Workbench/de](Raytracing_Workbench/de.md) , [Raytracing WriteCamera/de](Raytracing_WriteCamera/de.md) , [Raytracing WritePart/de](Raytracing_WritePart/de.md) , [Raytracing WriteView/de](Raytracing_WriteView/de.md) , [Tutorial FreeCAD POV ray/de](Tutorial_FreeCAD_POV_ray/de.md) , [Tutorial Render with Blender/de](Tutorial_Render_with_Blender/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Raytracing/de diff --git a/wiki/translations/de/Category:Reinforcement.md b/wiki/translations/de/Category:Reinforcement.md index 965df0c4ae..4a352d4155 100644 --- a/wiki/translations/de/Category:Reinforcement.md +++ b/wiki/translations/de/Category:Reinforcement.md @@ -4,3 +4,6 @@ [Arch Rebar BeamReinforcement/de](Arch_Rebar_BeamReinforcement/de.md) , [Arch Rebar BentShape/de](Arch_Rebar_BentShape/de.md) , [Arch Rebar BOM/de](Arch_Rebar_BOM/de.md) , [Arch Rebar Circular ColumnReinforcement/de](Arch_Rebar_Circular_ColumnReinforcement/de.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/de](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/de.md) , [Arch Rebar ColumnReinforcement/de](Arch_Rebar_ColumnReinforcement/de.md) , [Arch Rebar Dimensioning/de](Arch_Rebar_Dimensioning/de.md) , [Arch Rebar Drawing Dimensioning/de](Arch_Rebar_Drawing_Dimensioning/de.md) , [Arch Rebar Drawing/de](Arch_Rebar_Drawing/de.md) , [Arch Rebar Helical/de](Arch_Rebar_Helical/de.md) , [Arch Rebar LShape/de](Arch_Rebar_LShape/de.md) , [Arch Rebar Stirrup/de](Arch_Rebar_Stirrup/de.md) , [Arch Rebar Straight/de](Arch_Rebar_Straight/de.md) , [Arch Rebar UShape/de](Arch_Rebar_UShape/de.md) , [Arch Rebar/de](Arch_Rebar/de.md) , [Custom Spacing/de](Custom_Spacing/de.md) , [Reinforcement Addon/de](Reinforcement_Addon/de.md) , [Reinforcement API/de](Reinforcement_API/de.md) , [Reinforcement Bar Bending Schedule/de](Reinforcement_Bar_Bending_Schedule/de.md) [Category:Arch/de](Category:Arch/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Reinforcement/de diff --git a/wiki/translations/de/Category:Repository.md b/wiki/translations/de/Category:Repository.md index aa053d194a..033f227abd 100644 --- a/wiki/translations/de/Category:Repository.md +++ b/wiki/translations/de/Category:Repository.md @@ -4,3 +4,6 @@ This category gathers pages that act as a repository of resources for FreeCAD, s ### Contents: [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:Repository/de diff --git a/wiki/translations/de/Category:Roadmap.md b/wiki/translations/de/Category:Roadmap.md index 06921a1c32..7f0c6cd68b 100644 --- a/wiki/translations/de/Category:Roadmap.md +++ b/wiki/translations/de/Category:Roadmap.md @@ -6,3 +6,6 @@ Diese Kategorie sammelt alle Artikel, die dokumentieren, was in der Roadmap von [Arch Concept/de](Arch_Concept/de.md) , [Artwork project/de](Artwork_project/de.md) , [Assembly project/de](Assembly_project/de.md) , [CAM project/de](CAM_project/de.md) , [Development roadmap/de](Development_roadmap/de.md) , [FEM project/de](FEM_project/de.md) , [FreeCAD development model project/de](FreeCAD_development_model_project/de.md) , [HiDPI support/de](HiDPI_support/de.md) , [Land Survey Workbench Blueprint/de](Land_Survey_Workbench_Blueprint/de.md) , [Material data model/de](Material_data_model/de.md) , [Material/de](Material/de.md) , [Naming project/de](Naming_project/de.md) , [PartDesign project/de](PartDesign_project/de.md) , [Project template/de](Project_template/de.md) , [Quality project/de](Quality_project/de.md) , [Raytracing project/de](Raytracing_project/de.md) , [Resource framework project/de](Resource_framework_project/de.md) , [Robot project/de](Robot_project/de.md) , [Sketcher project/de](Sketcher_project/de.md) , [STEP project/de](STEP_project/de.md) , [Tolerancing/de](Tolerancing/de.md) , [Units project/de](Units_project/de.md) , [UTF Project/de](UTF_Project/de.md) , [Wished tools/de](Wished_tools/de.md) [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:Roadmap/de diff --git a/wiki/translations/de/Category:Robot.md b/wiki/translations/de/Category:Robot.md index 265edd4a79..325d392547 100644 --- a/wiki/translations/de/Category:Robot.md +++ b/wiki/translations/de/Category:Robot.md @@ -6,3 +6,6 @@ Diese Kategorie zeigt eine Liste von Seiten, die zum [Robot](Robot_Workbench/de. [Robot 6-Axis/de](Robot_6-Axis/de.md) , [Robot API example/de](Robot_API_example/de.md) , [Robot CreateRobot/de](Robot_CreateRobot/de.md) , [Robot CreateTrajectory/de](Robot_CreateTrajectory/de.md) , [Robot Export/de](Robot_Export/de.md) , [Robot InsertWaypoint/de](Robot_InsertWaypoint/de.md) , [Robot InsertWaypointPre/de](Robot_InsertWaypointPre/de.md) , [Robot RestoreHomePos/de](Robot_RestoreHomePos/de.md) , [Robot SetDefaultValues/de](Robot_SetDefaultValues/de.md) , [Robot SetHomePos/de](Robot_SetHomePos/de.md) , [Robot Simulate/de](Robot_Simulate/de.md) , [Template:Robot Tools navi/de](Template:Robot_Tools_navi/de.md) , [Robot TrajectoryCompound/de](Robot_TrajectoryCompound/de.md) , [Robot TrajectoryDressUp/de](Robot_TrajectoryDressUp/de.md) , [Robot tutorial/de](Robot_tutorial/de.md) , [Robot Workbench/de](Robot_Workbench/de.md) , [VRML Preparation for Robot Simulation/de](VRML_Preparation_for_Robot_Simulation/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Robot/de diff --git a/wiki/translations/de/Category:Screenshots.md b/wiki/translations/de/Category:Screenshots.md index 1f577ca3da..c447b6f486 100644 --- a/wiki/translations/de/Category:Screenshots.md +++ b/wiki/translations/de/Category:Screenshots.md @@ -6,3 +6,6 @@ This category lists pages with screenshots. [Screenshots/de](Screenshots/de.md) [Category:Documentation/de](Category:Documentation/de.md) + +--- +[documentation index](../README.md) > Category:Screenshots/de diff --git a/wiki/translations/de/Category:Ship.md b/wiki/translations/de/Category:Ship.md index a5739240b9..b596fa2615 100644 --- a/wiki/translations/de/Category:Ship.md +++ b/wiki/translations/de/Category:Ship.md @@ -6,3 +6,6 @@ Diese Kategorie zeigt eine Liste von Seiten, die zum [Ship-Arbeitsbereich](Ship_ [FreeCAD-Ship s60 tutorial (II)/de](FreeCAD-Ship_s60_tutorial_(II)/de.md) , [FreeCAD-Ship s60 tutorial/de](FreeCAD-Ship_s60_tutorial/de.md) , [Ship Area/de](Ship_Area/de.md) , [Ship Geometries Examples/de](Ship_Geometries_Examples/de.md) , [Ship Hydrostatics/de](Ship_Hydrostatics/de.md) , [Ship Loading/de](Ship_Loading/de.md) , [Ship New/de](Ship_New/de.md) , [Ship Outline/de](Ship_Outline/de.md) , [Ship PlotGZ/de](Ship_PlotGZ/de.md) , [Ship TankCapacity/de](Ship_TankCapacity/de.md) , [Ship TankNew/de](Ship_TankNew/de.md) , [Template:Ship Tools navi/de](Template:Ship_Tools_navi/de.md) , [Ship Weight/de](Ship_Weight/de.md) , [Ship Workbench/de](Ship_Workbench/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Ship/de diff --git a/wiki/translations/de/Category:Sketcher.md b/wiki/translations/de/Category:Sketcher.md index b37b2108bf..682f033bdb 100644 --- a/wiki/translations/de/Category:Sketcher.md +++ b/wiki/translations/de/Category:Sketcher.md @@ -6,3 +6,6 @@ Diese Kategorie listet Seiten auf, die sich auf den [Sketcher-Arbeitsbereich](Sk [Arch panel tutorial/de](Arch_panel_tutorial/de.md) , [Artwork Sketcher/de](Artwork_Sketcher/de.md) , [Basic Part Design Tutorial/de](Basic_Part_Design_Tutorial/de.md) , [Basic Sketcher Tutorial/de](Basic_Sketcher_Tutorial/de.md) , [Constraint/de](Constraint/de.md) , [Creating a simple part with PartDesign/de](Creating_a_simple_part_with_PartDesign/de.md) , [Draft ShapeString tutorial/de](Draft_ShapeString_tutorial/de.md) , [Part and PartDesign/de](Part_and_PartDesign/de.md) , [Sketch/de](Sketch/de.md) , [Sketcher BSplineComb/de](Sketcher_BSplineComb/de.md) , [Sketcher BSplineDecreaseDegree/de](Sketcher_BSplineDecreaseDegree/de.md) , [Sketcher BSplineDecreaseKnotMultiplicity/de](Sketcher_BSplineDecreaseKnotMultiplicity/de.md) , [Sketcher BSplineDegree/de](Sketcher_BSplineDegree/de.md) , [Sketcher BSplineIncreaseDegree/de](Sketcher_BSplineIncreaseDegree/de.md) , [Sketcher BSplineIncreaseKnotMultiplicity/de](Sketcher_BSplineIncreaseKnotMultiplicity/de.md) , [Sketcher BSplineKnotMultiplicity/de](Sketcher_BSplineKnotMultiplicity/de.md) , [Sketcher BSplinePolygon/de](Sketcher_BSplinePolygon/de.md) , [Sketcher CarbonCopy/de](Sketcher_CarbonCopy/de.md) , [Sketcher Clone/de](Sketcher_Clone/de.md) , [Sketcher CloseShape/de](Sketcher_CloseShape/de.md) , [Sketcher CompConstrainRadDia/de](Sketcher_CompConstrainRadDia/de.md) , [Sketcher CompCopy/de](Sketcher_CompCopy/de.md) , [Sketcher CompCreateArc/de](Sketcher_CompCreateArc/de.md) , [Sketcher CompCreateBSpline/de](Sketcher_CompCreateBSpline/de.md) , [Sketcher CompCreateCircle/de](Sketcher_CompCreateCircle/de.md) , [Sketcher CompCreateConic/de](Sketcher_CompCreateConic/de.md) , [Sketcher CompCreateRegularPolygon/de](Sketcher_CompCreateRegularPolygon/de.md) , [Sketcher ConnectLines/de](Sketcher_ConnectLines/de.md) , [Sketcher ConstrainAngle/de](Sketcher_ConstrainAngle/de.md) , [Sketcher ConstrainBlock/de](Sketcher_ConstrainBlock/de.md) , [Sketcher ConstrainCoincident/de](Sketcher_ConstrainCoincident/de.md) , [Sketcher ConstrainDiameter/de](Sketcher_ConstrainDiameter/de.md) , [Sketcher ConstrainDistance/de](Sketcher_ConstrainDistance/de.md) , [Sketcher ConstrainDistanceX/de](Sketcher_ConstrainDistanceX/de.md) , [Sketcher ConstrainDistanceY/de](Sketcher_ConstrainDistanceY/de.md) , [Sketcher ConstrainEqual/de](Sketcher_ConstrainEqual/de.md) , [Sketcher ConstrainHorizontal/de](Sketcher_ConstrainHorizontal/de.md) , [Sketcher ConstrainInternalAlignment/de](Sketcher_ConstrainInternalAlignment/de.md) , [Sketcher ConstrainLock/de](Sketcher_ConstrainLock/de.md) , [Sketcher ConstrainParallel/de](Sketcher_ConstrainParallel/de.md) , [Sketcher ConstrainPerpendicular/de](Sketcher_ConstrainPerpendicular/de.md) , [Sketcher ConstrainPointOnObject/de](Sketcher_ConstrainPointOnObject/de.md) , [Sketcher ConstrainRadiam/de](Sketcher_ConstrainRadiam/de.md) , [Sketcher ConstrainRadius/de](Sketcher_ConstrainRadius/de.md) , [Sketcher ConstrainSnellsLaw/de](Sketcher_ConstrainSnellsLaw/de.md) , [Sketcher ConstrainSymmetric/de](Sketcher_ConstrainSymmetric/de.md) , [Sketcher ConstrainTangent/de](Sketcher_ConstrainTangent/de.md) , [Sketcher ConstrainVertical/de](Sketcher_ConstrainVertical/de.md) , [Sketcher Copy/de](Sketcher_Copy/de.md) , [Sketcher Create3PointArc/de](Sketcher_Create3PointArc/de.md) , [Sketcher Create3PointCircle/de](Sketcher_Create3PointCircle/de.md) , [Sketcher CreateArc/de](Sketcher_CreateArc/de.md) , [Sketcher CreateArcOfEllipse/de](Sketcher_CreateArcOfEllipse/de.md) , [Sketcher CreateArcOfHyperbola/de](Sketcher_CreateArcOfHyperbola/de.md) , [Sketcher CreateArcOfParabola/de](Sketcher_CreateArcOfParabola/de.md) , [Sketcher CreateBSpline/de](Sketcher_CreateBSpline/de.md) , [Sketcher CreateCircle/de](Sketcher_CreateCircle/de.md) , [Sketcher CreateEllipseBy3Points/de](Sketcher_CreateEllipseBy3Points/de.md) , [Sketcher CreateEllipseByCenter/de](Sketcher_CreateEllipseByCenter/de.md) , [Sketcher CreateFillet/de](Sketcher_CreateFillet/de.md) , [Sketcher CreateHeptagon/de](Sketcher_CreateHeptagon/de.md) , [Sketcher CreateHexagon/de](Sketcher_CreateHexagon/de.md) , [Sketcher CreateLine/de](Sketcher_CreateLine/de.md) , [Sketcher CreateOctagon/de](Sketcher_CreateOctagon/de.md) , [Sketcher CreatePentagon/de](Sketcher_CreatePentagon/de.md) , [Sketcher CreatePeriodicBSpline/de](Sketcher_CreatePeriodicBSpline/de.md) , [Sketcher CreatePoint/de](Sketcher_CreatePoint/de.md) , [Sketcher CreatePolyline/de](Sketcher_CreatePolyline/de.md) , [Sketcher CreateRectangle/de](Sketcher_CreateRectangle/de.md) , [Sketcher CreateRegularPolygon/de](Sketcher_CreateRegularPolygon/de.md) , [Sketcher CreateSlot/de](Sketcher_CreateSlot/de.md) , [Sketcher CreateSquare/de](Sketcher_CreateSquare/de.md) , [Sketcher CreateTriangle/de](Sketcher_CreateTriangle/de.md) , [Sketcher DeleteAllConstraints/de](Sketcher_DeleteAllConstraints/de.md) , [Sketcher DeleteAllGeometry/de](Sketcher_DeleteAllGeometry/de.md) , [Sketcher Dialog/de](Sketcher_Dialog/de.md) , [Sketcher EditSketch/de](Sketcher_EditSketch/de.md) , [Sketcher Extend/de](Sketcher_Extend/de.md) , [Sketcher External/de](Sketcher_External/de.md) , [Sketcher helper constraint/de](Sketcher_helper_constraint/de.md) , [Sketcher LeaveSketch/de](Sketcher_LeaveSketch/de.md) , [Sketcher MapSketch/de](Sketcher_MapSketch/de.md) , [Sketcher MergeSketches/de](Sketcher_MergeSketches/de.md) , [Sketcher Micro Tutorial - Constraint Practices/de](Sketcher_Micro_Tutorial_-_Constraint_Practices/de.md) , [Sketcher MirrorSketch/de](Sketcher_MirrorSketch/de.md) , [Sketcher Move/de](Sketcher_Move/de.md) , [Sketcher NewSketch/de](Sketcher_NewSketch/de.md) , [Sketcher Preferences/de](Sketcher_Preferences/de.md) , [Sketcher project/de](Sketcher_project/de.md) , [Sketcher RectangularArray/de](Sketcher_RectangularArray/de.md) , [Sketcher reference/de](Sketcher_reference/de.md) , [Sketcher ReorientSketch/de](Sketcher_ReorientSketch/de.md) , [Sketcher requirement for a sketch/de](Sketcher_requirement_for_a_sketch/de.md) , [Sketcher RestoreInternalAlignmentGeometry/de](Sketcher_RestoreInternalAlignmentGeometry/de.md) , [Sketcher scripting/de](Sketcher_scripting/de.md) , [Sketcher SelectConflictingConstraints/de](Sketcher_SelectConflictingConstraints/de.md) , [Sketcher SelectConstraints/de](Sketcher_SelectConstraints/de.md) , [Sketcher SelectElementsAssociatedWithConstraints/de](Sketcher_SelectElementsAssociatedWithConstraints/de.md) , [Sketcher SelectElementsWithDoFs/de](Sketcher_SelectElementsWithDoFs/de.md) , [Sketcher SelectHorizontalAxis/de](Sketcher_SelectHorizontalAxis/de.md) , [Sketcher SelectOrigin/de](Sketcher_SelectOrigin/de.md) , [Sketcher SelectRedundantConstraints/de](Sketcher_SelectRedundantConstraints/de.md) , [Sketcher SelectVerticalAxis/de](Sketcher_SelectVerticalAxis/de.md) , [Sketcher Sketch/de](Sketcher_Sketch/de.md) , [Sketcher SketchObject/de](Sketcher_SketchObject/de.md) , [Sketcher Split/de](Sketcher_Split/de.md) , [Sketcher StopOperation/de](Sketcher_StopOperation/de.md) , [Sketcher SwitchVirtualSpace/de](Sketcher_SwitchVirtualSpace/de.md) , [Sketcher Symmetry/de](Sketcher_Symmetry/de.md) , [Sketcher ToggleActiveConstraint/de](Sketcher_ToggleActiveConstraint/de.md) , [Sketcher ToggleConstruction/de](Sketcher_ToggleConstruction/de.md) , [Sketcher ToggleDrivingConstraint/de](Sketcher_ToggleDrivingConstraint/de.md) , [Template:Sketcher Tools navi/de](Template:Sketcher_Tools_navi/de.md) , [Sketcher Trimming/de](Sketcher_Trimming/de.md) , [Sketcher Tutorial/de](Sketcher_Tutorial/de.md) , [Sketcher ValidateSketch/de](Sketcher_ValidateSketch/de.md) , [Sketcher ViewSection/de](Sketcher_ViewSection/de.md) , [Sketcher ViewSketch/de](Sketcher_ViewSketch/de.md) , [Sketcher Workbench/de](Sketcher_Workbench/de.md) , [Thread for Screw Tutorial/de](Thread_for_Screw_Tutorial/de.md) , [Toothbrush Head Stand/de](Toothbrush_Head_Stand/de.md) , [Tutorial custom placing of windows and doors/de](Tutorial_custom_placing_of_windows_and_doors/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Sketcher/de diff --git a/wiki/translations/de/Category:Start.md b/wiki/translations/de/Category:Start.md index abeb9aa84e..cb912beff0 100644 --- a/wiki/translations/de/Category:Start.md +++ b/wiki/translations/de/Category:Start.md @@ -6,3 +6,6 @@ This category lists pages related to the [Start Workbench/de](Start_Workbench/de [Start Preferences/de](Start_Preferences/de.md) , [Template:Start Tools navi/de](Template:Start_Tools_navi/de.md) , [Start Workbench/de](Start_Workbench/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Start/de diff --git a/wiki/translations/de/Category:Std_Base.md b/wiki/translations/de/Category:Std_Base.md index 8e903647f3..52b12040c6 100644 --- a/wiki/translations/de/Category:Std_Base.md +++ b/wiki/translations/de/Category:Std_Base.md @@ -6,3 +6,6 @@ Diese Kategorie listet Seiten zum Thema [Std Base](Std_Base/de.md), Dieser samme [Template:Std Base/de](Template:Std_Base/de.md) [Category:User\_Documentation/de](Category:User_Documentation/de.md) + +--- +[documentation index](../README.md) > Category:Std Base/de diff --git a/wiki/translations/de/Category:Surface.md b/wiki/translations/de/Category:Surface.md index afae471cb4..df49ab7701 100644 --- a/wiki/translations/de/Category:Surface.md +++ b/wiki/translations/de/Category:Surface.md @@ -6,3 +6,6 @@ Diese Kategorie zeigt eine Liste von Seiten, die zum [Surface-Arbeitsbereich](Su [Surface CurveOnMesh/de](Surface_CurveOnMesh/de.md) , [Surface ExtendFace/de](Surface_ExtendFace/de.md) , [Surface Filling/de](Surface_Filling/de.md) , [Surface GeomFillSurface/de](Surface_GeomFillSurface/de.md) , [Surface Sections/de](Surface_Sections/de.md) , [Surface Workbench/de](Surface_Workbench/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Surface/de diff --git a/wiki/translations/de/Category:TechDraw.md b/wiki/translations/de/Category:TechDraw.md index 54dba6ecef..5815136b86 100644 --- a/wiki/translations/de/Category:TechDraw.md +++ b/wiki/translations/de/Category:TechDraw.md @@ -6,3 +6,6 @@ Diese Kategorie zeigt eine Liste von Seiten, die zum [TechDraw](TechDraw_Workben [Advanced TechDraw Tutorial/de](Advanced_TechDraw_Tutorial/de.md) , [Artwork TechDraw/de](Artwork_TechDraw/de.md) , [Basic TechDraw Tutorial/de](Basic_TechDraw_Tutorial/de.md) , [Bitmap/de](Bitmap/de.md) , [Drawing/de](Drawing/de.md) , [DXF/de](DXF/de.md) , [Measurement Of Angles On Holes/de](Measurement_Of_Angles_On_Holes/de.md) , [SVG/de](SVG/de.md) , [TechDraw 2LineCenterLine/de](TechDraw_2LineCenterLine/de.md) , [TechDraw 2PointCenterLine/de](TechDraw_2PointCenterLine/de.md) , [TechDraw 2PointCosmeticLine/de](TechDraw_2PointCosmeticLine/de.md) , [TechDraw 3PtAngleDimension/de](TechDraw_3PtAngleDimension/de.md) , [TechDraw ActiveView/de](TechDraw_ActiveView/de.md) , [TechDraw AngleDimension/de](TechDraw_AngleDimension/de.md) , [TechDraw Annotation/de](TechDraw_Annotation/de.md) , [TechDraw API/de](TechDraw_API/de.md) , [TechDraw ArchView/de](TechDraw_ArchView/de.md) , [TechDraw Balloon/de](TechDraw_Balloon/de.md) , [TechDraw ClipGroup/de](TechDraw_ClipGroup/de.md) , [TechDraw ClipGroupAdd/de](TechDraw_ClipGroupAdd/de.md) , [TechDraw ClipGroupRemove/de](TechDraw_ClipGroupRemove/de.md) , [TechDraw CosmeticEraser/de](TechDraw_CosmeticEraser/de.md) , [TechDraw CosmeticVertex/de](TechDraw_CosmeticVertex/de.md) , [TechDraw DecorateLine/de](TechDraw_DecorateLine/de.md) , [TechDraw DetailView/de](TechDraw_DetailView/de.md) , [TechDraw DiameterDimension/de](TechDraw_DiameterDimension/de.md) , [TechDraw DraftView/de](TechDraw_DraftView/de.md) , [TechDraw ExportPageDXF/de](TechDraw_ExportPageDXF/de.md) , [TechDraw ExportPageSVG/de](TechDraw_ExportPageSVG/de.md) , [TechDraw FaceCenterLine/de](TechDraw_FaceCenterLine/de.md) , [TechDraw Geometric dimensioning and tolerancing/de](TechDraw_Geometric_dimensioning_and_tolerancing/de.md) , [TechDraw GeometricHatch/de](TechDraw_GeometricHatch/de.md) , [TechDraw Hatch/de](TechDraw_Hatch/de.md) , [TechDraw Hatching/de](TechDraw_Hatching/de.md) , [TechDraw HorizontalDimension/de](TechDraw_HorizontalDimension/de.md) , [TechDraw HorizontalExtentDimension/de](TechDraw_HorizontalExtentDimension/de.md) , [TechDraw HowTo Page/de](TechDraw_HowTo_Page/de.md) , [TechDraw Image/de](TechDraw_Image/de.md) , [TechDraw LandmarkDimension/de](TechDraw_LandmarkDimension/de.md) , [TechDraw LeaderLine/de](TechDraw_LeaderLine/de.md) , [TechDraw LengthDimension/de](TechDraw_LengthDimension/de.md) , [TechDraw LineGroup/de](TechDraw_LineGroup/de.md) , [TechDraw LinkDimension/de](TechDraw_LinkDimension/de.md) , [TechDraw Midpoints/de](TechDraw_Midpoints/de.md) , [TechDraw PageDefault/de](TechDraw_PageDefault/de.md) , [TechDraw PageTemplate/de](TechDraw_PageTemplate/de.md) , [TechDraw Preferences/de](TechDraw_Preferences/de.md) , [TechDraw ProjectionGroup/de](TechDraw_ProjectionGroup/de.md) , [TechDraw Quadrants/de](TechDraw_Quadrants/de.md) , [TechDraw RadiusDimension/de](TechDraw_RadiusDimension/de.md) , [TechDraw RedrawPage/de](TechDraw_RedrawPage/de.md) , [TechDraw RichTextAnnotation/de](TechDraw_RichTextAnnotation/de.md) , [TechDraw Roadmap/de](TechDraw_Roadmap/de.md) , [TechDraw SectionView/de](TechDraw_SectionView/de.md) , [TechDraw ShowAll/de](TechDraw_ShowAll/de.md) , [TechDraw SpreadsheetView/de](TechDraw_SpreadsheetView/de.md) , [TechDraw Symbol/de](TechDraw_Symbol/de.md) , [TechDraw TemplateHowTo/de](TechDraw_TemplateHowTo/de.md) , [TechDraw Templates/de](TechDraw_Templates/de.md) , [TechDraw ToggleFrame/de](TechDraw_ToggleFrame/de.md) , [Template:TechDraw Tools navi/de](Template:TechDraw_Tools_navi/de.md) , [TechDraw VerticalDimension/de](TechDraw_VerticalDimension/de.md) , [TechDraw VerticalExtentDimension/de](TechDraw_VerticalExtentDimension/de.md) , [TechDraw View/de](TechDraw_View/de.md) , [TechDraw WeldSymbol/de](TechDraw_WeldSymbol/de.md) , [TechDraw Workbench/de](TechDraw_Workbench/de.md) , [TechDrawGui API/de](TechDrawGui_API/de.md) , [Tolerancing/de](Tolerancing/de.md) , [Topological naming problem/de](Topological_naming_problem/de.md) , [Tutorial for open windows/de](Tutorial_for_open_windows/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:TechDraw/de diff --git a/wiki/translations/de/Category:Template.md b/wiki/translations/de/Category:Template.md index 5d8dca246b..c94cca4e65 100644 --- a/wiki/translations/de/Category:Template.md +++ b/wiki/translations/de/Category:Template.md @@ -12,3 +12,6 @@ Den betreffenden Artikeln folgende Zeile anhängen: [Template:De](Template:De.md) , [Template:GuiCommandAddon/de](Template:GuiCommandAddon/de.md) , [Template:Languages/de](Template:Languages/de.md) , [Template:PartDesign Tools/de](Template:PartDesign_Tools/de.md) , , , , [Category:Categories/de](Category:Categories/de.md) [Category:Template:Doc/de](Category:Template:Doc/de.md) [Category:Template:Navigation/de](Category:Template:Navigation/de.md) [Category:Template:Text Format/de](Category:Template:Text_Format/de.md) [Category:Template:Text/de](Category:Template:Text/de.md) + +--- +[documentation index](../README.md) > Category:Template/de diff --git a/wiki/translations/de/Category:Template:Doc.md b/wiki/translations/de/Category:Template:Doc.md index 4a28857e9e..5db2355a8a 100644 --- a/wiki/translations/de/Category:Template:Doc.md +++ b/wiki/translations/de/Category:Template:Doc.md @@ -6,3 +6,6 @@ This category lists templates that produce text boxes used for documenting comma [Template:GuiCommandAddon/de](Template:GuiCommandAddon/de.md) , [Template:Macro/de](Template:Macro/de.md) [Category:Template/de](Category:Template/de.md) + +--- +[documentation index](../README.md) > Category:Template:Doc/de diff --git a/wiki/translations/de/Category:Template:Navigation.md b/wiki/translations/de/Category:Template:Navigation.md index c46e384ae1..86e617cf67 100644 --- a/wiki/translations/de/Category:Template:Navigation.md +++ b/wiki/translations/de/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/de](Template:Arch_Tools_navi/de.md) , [Template:Artwork/de](Template:Artwork/de.md) , [Template:Draft Tools navi/de](Template:Draft_Tools_navi/de.md) , [Template:Drawing Tools navi/de](Template:Drawing_Tools_navi/de.md) , [Template:FEM Tools navi/de](Template:FEM_Tools_navi/de.md) , [Template:Interface navi/de](Template:Interface_navi/de.md) , [Template:Mesh Tools navi/de](Template:Mesh_Tools_navi/de.md) , [Template:OpenSCAD Tools navi/de](Template:OpenSCAD_Tools_navi/de.md) , [Template:Part Tools navi/de](Template:Part_Tools_navi/de.md) , [Template:PartDesign Tools navi/de](Template:PartDesign_Tools_navi/de.md) , [Template:Path Tools navi/de](Template:Path_Tools_navi/de.md) , [Template:Plot Tools navi/de](Template:Plot_Tools_navi/de.md) , [Template:Powerdocnavi/de](Template:Powerdocnavi/de.md) , [Template:Raytracing Tools navi/de](Template:Raytracing_Tools_navi/de.md) , [Template:Robot Tools navi/de](Template:Robot_Tools_navi/de.md) , [Template:Ship Tools navi/de](Template:Ship_Tools_navi/de.md) , [Template:Sketcher Tools navi/de](Template:Sketcher_Tools_navi/de.md) , [Template:Start Tools navi/de](Template:Start_Tools_navi/de.md) , [Template:Std Base/de](Template:Std_Base/de.md) , [Template:TechDraw Tools navi/de](Template:TechDraw_Tools_navi/de.md) [Category:Template/de](Category:Template/de.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/de diff --git a/wiki/translations/de/Category:Template:Text.md b/wiki/translations/de/Category:Template:Text.md index cd60959997..2c7aa254b9 100644 --- a/wiki/translations/de/Category:Template:Text.md +++ b/wiki/translations/de/Category:Template:Text.md @@ -10,3 +10,6 @@ Längere Textteile sollten auf der Seite selbst platziert werden, damit sie mit [Template:Obsolete/de](Template:Obsolete/de.md) , [Template:Version/de](Template:Version/de.md) , [Template:VersionMinus/de](Template:VersionMinus/de.md) , [Template:VersionPlus/de](Template:VersionPlus/de.md) [Category:Template/de](Category:Template/de.md) + +--- +[documentation index](../README.md) > Category:Template:Text/de diff --git a/wiki/translations/de/Category:Template:Text_Format.md b/wiki/translations/de/Category:Template:Text_Format.md index 9d4d5ddc6a..43c81615ca 100644 --- a/wiki/translations/de/Category:Template:Text_Format.md +++ b/wiki/translations/de/Category:Template:Text_Format.md @@ -6,3 +6,6 @@ In dieser Kategorie werden Vorlagen aufgelistet, die als Eingabe angegebenen Tex [Template:MenuCommand/de](Template:MenuCommand/de.md) , [Template:Properties Title/de](Template:Properties_Title/de.md) , [Template:PropertyData/de](Template:PropertyData/de.md) , [Template:PropertyView/de](Template:PropertyView/de.md) [Category:Template/de](Category:Template/de.md) + +--- +[documentation index](../README.md) > Category:Template:Text Format/de diff --git a/wiki/translations/de/Category:Test_Framework.md b/wiki/translations/de/Category:Test_Framework.md index 2e201d4630..30a5595b8c 100644 --- a/wiki/translations/de/Category:Test_Framework.md +++ b/wiki/translations/de/Category:Test_Framework.md @@ -6,3 +6,6 @@ This category lists pages related to the [Test Framework Workbench/de](Test_Fram [Testing/de](Testing/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) [Category:User\_Documentation/de](Category:User_Documentation/de.md) [Category:Testing/de](Category:Testing/de.md) + +--- +[documentation index](../README.md) > Category:Test Framework/de diff --git a/wiki/translations/de/Category:Testing.md b/wiki/translations/de/Category:Testing.md index b87ad1171b..e8d921cb52 100644 --- a/wiki/translations/de/Category:Testing.md +++ b/wiki/translations/de/Category:Testing.md @@ -6,3 +6,6 @@ Pages related to testing in regards to unit testing, continuous integration, qua [AppImage/de](AppImage/de.md) , [Continuous Integration/de](Continuous_Integration/de.md) , [LGTM/de](LGTM/de.md) , [Testing/de](Testing/de.md) , [Category:Test Framework/de](Category:Test_Framework/de.md) + +--- +[documentation index](../README.md) > Category:Testing/de diff --git a/wiki/translations/de/Category:Tutorials.md b/wiki/translations/de/Category:Tutorials.md index fbecf4dd39..1393a7ba52 100644 --- a/wiki/translations/de/Category:Tutorials.md +++ b/wiki/translations/de/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials](Offsite_tutorials/de.md) and [Video tutori [Add FEM constraint tutorial/de](Add_FEM_constraint_tutorial/de.md) , [Add FEM equation tutorial/de](Add_FEM_equation_tutorial/de.md) , [Advanced TechDraw Tutorial/de](Advanced_TechDraw_Tutorial/de.md) , [Aeroplane/de](Aeroplane/de.md) , [Analysis of reinforced concrete with FEM/de](Analysis_of_reinforced_concrete_with_FEM/de.md) , [Arch panel tutorial/de](Arch_panel_tutorial/de.md) , [Arch tutorial/de](Arch_tutorial/de.md) , [Basic modeling tutorial/de](Basic_modeling_tutorial/de.md) , [Basic Part Design Tutorial/de](Basic_Part_Design_Tutorial/de.md) , [Basic Sketcher Tutorial/de](Basic_Sketcher_Tutorial/de.md) , [Basic TechDraw Tutorial/de](Basic_TechDraw_Tutorial/de.md) , [BIM ingame tutorial/de](BIM_ingame_tutorial/de.md) , [Creating a simple part with PartDesign/de](Creating_a_simple_part_with_PartDesign/de.md) , [Customize Toolbars/de](Customize_Toolbars/de.md) , [Draft ShapeString tutorial/de](Draft_ShapeString_tutorial/de.md) , [Draft tutorial/de](Draft_tutorial/de.md) , [Drawing Template HowTo/de](Drawing_Template_HowTo/de.md) , [Drawing tutorial/de](Drawing_tutorial/de.md) , [Dxf Importer Install/de](Dxf_Importer_Install/de.md) , [Engine Block Tutorial/de](Engine_Block_Tutorial/de.md) , [Export to STL or OBJ/de](Export_to_STL_or_OBJ/de.md) , [Extend FEM Module/de](Extend_FEM_Module/de.md) , [FEM Beginner tutorial/de](FEM_Beginner_tutorial/de.md) , [FEM CalculiX Cantilever 3D/de](FEM_CalculiX_Cantilever_3D/de.md) , [FEM Shear of a Composite Block/de](FEM_Shear_of_a_Composite_Block/de.md) , [FEM Tutorial Python/de](FEM_Tutorial_Python/de.md) , [FEM tutorial/de](FEM_tutorial/de.md) , [FreeCAD-Ship s60 tutorial (II)/de](FreeCAD-Ship_s60_tutorial_(II)/de.md) , [FreeCAD-Ship s60 tutorial/de](FreeCAD-Ship_s60_tutorial/de.md) , [How to install additional workbenches/de](How_to_install_additional_workbenches/de.md) , [How to install macros/de](How_to_install_macros/de.md) , [Import from STL or OBJ/de](Import_from_STL_or_OBJ/de.md) , [Import OpenSCAD code/de](Import_OpenSCAD_code/de.md) , [Import text and geometry from Inkscape/de](Import_text_and_geometry_from_Inkscape/de.md) , [Import/Export IFC - compiling IfcOpenShell/de](Import/Export_IFC_-_compiling_IfcOpenShell/de.md) , [Manual:Creating renderings/de](Manual:Creating_renderings/de.md) , [Manual:Generating 2D drawings/de](Manual:Generating_2D_drawings/de.md) , [Manual:Import and export to other filetypes/de](Manual:Import_and_export_to_other_filetypes/de.md) , [Manual:Installing/de](Manual:Installing/de.md) , [Manual:Modeling for product design/de](Manual:Modeling_for_product_design/de.md) , [Manual:Parametric objects/de](Manual:Parametric_objects/de.md) , [Manual:Preparing models for 3D printing/de](Manual:Preparing_models_for_3D_printing/de.md) , [Manual:Traditional 2D drafting/de](Manual:Traditional_2D_drafting/de.md) , [Manual:Traditional modeling, the CSG way/de](Manual:Traditional_modeling,_the_CSG_way/de.md) , [Manual:Using spreadsheets/de](Manual:Using_spreadsheets/de.md) , [Measurement Of Angles On Holes/de](Measurement_Of_Angles_On_Holes/de.md) , [Part Loft Technical Details/de](Part_Loft_Technical_Details/de.md) , [PartDesign Bearingholder Tutorial I/de](PartDesign_Bearingholder_Tutorial_I/de.md) , [PartDesign Bearingholder Tutorial II/de](PartDesign_Bearingholder_Tutorial_II/de.md) , [PartDesign tutorial/de](PartDesign_tutorial/de.md) , [Path Walkthrough for the Impatient/de](Path_Walkthrough_for_the_Impatient/de.md) , [Plot Basic tutorial/de](Plot_Basic_tutorial/de.md) , [Plot MultiAxes tutorial/de](Plot_MultiAxes_tutorial/de.md) , [Post-Processing of FEM Results with Paraview/de](Post-Processing_of_FEM_Results_with_Paraview/de.md) , [Raytracing tutorial/de](Raytracing_tutorial/de.md) , [Robot 6-Axis/de](Robot_6-Axis/de.md) , [Robot tutorial/de](Robot_tutorial/de.md) , [Scripted Parts: Ball Bearing - Part 1/de](Scripted_Parts:_Ball_Bearing_-_Part_1/de.md) , [Scripted Parts: Ball Bearing - Part 2/de](Scripted_Parts:_Ball_Bearing_-_Part_2/de.md) , [Scripts/de](Scripts/de.md) , [Sketcher Micro Tutorial - Constraint Practices/de](Sketcher_Micro_Tutorial_-_Constraint_Practices/de.md) , [Sketcher requirement for a sketch/de](Sketcher_requirement_for_a_sketch/de.md) , [Sketcher Tutorial/de](Sketcher_Tutorial/de.md) , [TechDraw HowTo Page/de](TechDraw_HowTo_Page/de.md) , [TechDraw TemplateHowTo/de](TechDraw_TemplateHowTo/de.md) , [Thread for Screw Tutorial/de](Thread_for_Screw_Tutorial/de.md) , [Toothbrush Head Stand/de](Toothbrush_Head_Stand/de.md) , [Transient FEM analysis/de](Transient_FEM_analysis/de.md) , [Tutorial custom placing of windows and doors/de](Tutorial_custom_placing_of_windows_and_doors/de.md) , [Tutorial for open windows/de](Tutorial_for_open_windows/de.md) , [Tutorial FreeCAD POV ray/de](Tutorial_FreeCAD_POV_ray/de.md) , [Tutorial Render with Blender/de](Tutorial_Render_with_Blender/de.md) , [Template:TutorialInfo/de](Template:TutorialInfo/de.md) , [Tutorials/de](Tutorials/de.md) , [VRML Preparation for Robot Simulation/de](VRML_Preparation_for_Robot_Simulation/de.md) , [Whiffle Ball tutorial/de](Whiffle_Ball_tutorial/de.md) , [Wikihouse porting tutorial/de](Wikihouse_porting_tutorial/de.md) [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:Tutorials/de diff --git a/wiki/translations/de/Category:UnfinishedDocu.md b/wiki/translations/de/Category:UnfinishedDocu.md index 40a84a883c..bf57483221 100644 --- a/wiki/translations/de/Category:UnfinishedDocu.md +++ b/wiki/translations/de/Category:UnfinishedDocu.md @@ -4,3 +4,6 @@ This category contains all Unfinished Documents ### Contents: [Category:Administration/de](Category:Administration/de.md) [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:UnfinishedDocu/de diff --git a/wiki/translations/de/Category:User_Documentation.md b/wiki/translations/de/Category:User_Documentation.md index 731773442a..f1065fcad4 100644 --- a/wiki/translations/de/Category:User_Documentation.md +++ b/wiki/translations/de/Category:User_Documentation.md @@ -6,3 +6,6 @@ Diese Kategorie enthält Artikel über die Benutzung von FreeCAD. Es ist auch di [BIM Box/de](BIM_Box/de.md) , [BIM Clone/de](BIM_Clone/de.md) , [BIM Copy/de](BIM_Copy/de.md) , [BIM IfcElements/de](BIM_IfcElements/de.md) , [BIM IfcProperties/de](BIM_IfcProperties/de.md) , [BIM IfcQuantities/de](BIM_IfcQuantities/de.md) , [BIM Setup/de](BIM_Setup/de.md) , [BIM Views/de](BIM_Views/de.md) , [BIM Windows/de](BIM_Windows/de.md) , [Template:GuiCommandAddon/de](Template:GuiCommandAddon/de.md) , [3D view/de](3D_view/de.md) , [3Dconnexion input devices/de](3Dconnexion_input_devices/de.md) , [A2plus Workbench/de](A2plus_Workbench/de.md) , [About FreeCAD/de](About_FreeCAD/de.md) , [Add FEM constraint tutorial/de](Add_FEM_constraint_tutorial/de.md) , [Add FEM equation tutorial/de](Add_FEM_equation_tutorial/de.md) , [Addon/de](Addon/de.md) , [Advanced TechDraw Tutorial/de](Advanced_TechDraw_Tutorial/de.md) , [Aeroplane/de](Aeroplane/de.md) , [Analysis of reinforced concrete with FEM/de](Analysis_of_reinforced_concrete_with_FEM/de.md) , [Animation Workbench/de](Animation_Workbench/de.md) , [App DocumentObject/de](App_DocumentObject/de.md) , [App DocumentObjectGroup/de](App_DocumentObjectGroup/de.md) , [App FeaturePython/de](App_FeaturePython/de.md) , [App Link/de](App_Link/de.md) , [App Part/de](App_Part/de.md) , [AppImage/de](AppImage/de.md) , [Arch 3DS/de](Arch_3DS/de.md) , [Arch 3Views/de](Arch_3Views/de.md) , [Arch Add/de](Arch_Add/de.md) , [Arch API/de](Arch_API/de.md) , [Arch Axis/de](Arch_Axis/de.md) , [Arch AxisSystem/de](Arch_AxisSystem/de.md) , [Arch Building/de](Arch_Building/de.md) , [Arch BuildingPart/de](Arch_BuildingPart/de.md) , [Arch Check/de](Arch_Check/de.md) , [Arch CloneComponent/de](Arch_CloneComponent/de.md) , [Arch CloseHoles/de](Arch_CloseHoles/de.md) , [Arch CompAxis/de](Arch_CompAxis/de.md) , [Arch Component/de](Arch_Component/de.md) , [Arch CompPanel/de](Arch_CompPanel/de.md) , [Arch CompPipe/de](Arch_CompPipe/de.md) , [Arch CompRebarStraight/de](Arch_CompRebarStraight/de.md) , [Arch CompSetMaterial/de](Arch_CompSetMaterial/de.md) , [Arch CurtainWall/de](Arch_CurtainWall/de.md) , [Arch CutLine/de](Arch_CutLine/de.md) , [Arch CutPlane/de](Arch_CutPlane/de.md) , [Arch DAE/de](Arch_DAE/de.md) , [Arch Door/de](Arch_Door/de.md) , [Arch Equipment/de](Arch_Equipment/de.md) , [Arch Fence/de](Arch_Fence/de.md) , [Arch Floor/de](Arch_Floor/de.md) , [Arch Frame/de](Arch_Frame/de.md) , [Arch Grid/de](Arch_Grid/de.md) , [Arch IFC/de](Arch_IFC/de.md) , [Arch IfcExplorer/de](Arch_IfcExplorer/de.md) , [Arch IfcSpreadsheet/de](Arch_IfcSpreadsheet/de.md) , [Arch JSON/de](Arch_JSON/de.md) , [Arch MergeWalls/de](Arch_MergeWalls/de.md) , [Arch MeshToShape/de](Arch_MeshToShape/de.md) , [Arch MultiMaterial/de](Arch_MultiMaterial/de.md) , [Arch Nest/de](Arch_Nest/de.md) , [Arch OBJ/de](Arch_OBJ/de.md) , [Arch Panel Cut/de](Arch_Panel_Cut/de.md) , [Arch Panel Sheet/de](Arch_Panel_Sheet/de.md) , [Arch panel tutorial/de](Arch_panel_tutorial/de.md) , [Arch Panel/de](Arch_Panel/de.md) , [Arch Pipe/de](Arch_Pipe/de.md) , [Arch PipeConnector/de](Arch_PipeConnector/de.md) , [Arch Preferences/de](Arch_Preferences/de.md) , [Arch Profile/de](Arch_Profile/de.md) , [Arch Project/de](Arch_Project/de.md) , [Arch Rebar BeamReinforcement/de](Arch_Rebar_BeamReinforcement/de.md) , [Arch Rebar BentShape/de](Arch_Rebar_BentShape/de.md) , [Arch Rebar Circular ColumnReinforcement/de](Arch_Rebar_Circular_ColumnReinforcement/de.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/de](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/de.md) , [Arch Rebar ColumnReinforcement/de](Arch_Rebar_ColumnReinforcement/de.md) , [Arch Rebar Dimensioning/de](Arch_Rebar_Dimensioning/de.md) , [Arch Rebar Drawing Dimensioning/de](Arch_Rebar_Drawing_Dimensioning/de.md) , [Arch Rebar Drawing/de](Arch_Rebar_Drawing/de.md) , [Arch Rebar Helical/de](Arch_Rebar_Helical/de.md) , [Arch Rebar LShape/de](Arch_Rebar_LShape/de.md) , [Arch Rebar Stirrup/de](Arch_Rebar_Stirrup/de.md) , [Arch Rebar Straight/de](Arch_Rebar_Straight/de.md) , [Arch Rebar UShape/de](Arch_Rebar_UShape/de.md) , [Arch Rebar/de](Arch_Rebar/de.md) , [Arch Reference/de](Arch_Reference/de.md) , [Arch Remove/de](Arch_Remove/de.md) , [Arch RemoveShape/de](Arch_RemoveShape/de.md) , [Arch Roof/de](Arch_Roof/de.md) , [Arch Schedule/de](Arch_Schedule/de.md) , [Arch SectionPlane/de](Arch_SectionPlane/de.md) , [Arch SelectNonSolidMeshes/de](Arch_SelectNonSolidMeshes/de.md) , [Arch SetMaterial/de](Arch_SetMaterial/de.md) , [Arch Site/de](Arch_Site/de.md) , [Arch Space/de](Arch_Space/de.md) , [Arch SplitMesh/de](Arch_SplitMesh/de.md) , [Arch Stairs/de](Arch_Stairs/de.md) , [Arch Structure/de](Arch_Structure/de.md) , [Arch Survey/de](Arch_Survey/de.md) , [Arch ToggleIfcBrepFlag/de](Arch_ToggleIfcBrepFlag/de.md) , [Arch ToggleSubs/de](Arch_ToggleSubs/de.md) , [Arch Truss/de](Arch_Truss/de.md) , [Arch tutorial/de](Arch_tutorial/de.md) , [Arch Wall/de](Arch_Wall/de.md) , [Arch Window/de](Arch_Window/de.md) , [Arch Workbench/de](Arch_Workbench/de.md) , [Assembly/de](Assembly/de.md) , [Assembly3 ConstraintAlignment/de](Assembly3_ConstraintAlignment/de.md) , [Assembly3 ConstraintAngle/de](Assembly3_ConstraintAngle/de.md) , [Assembly3 ConstraintAttachment/de](Assembly3_ConstraintAttachment/de.md) , [Assembly3 ConstraintAxial/de](Assembly3_ConstraintAxial/de.md) , [Assembly3 ConstraintCoincidence/de](Assembly3_ConstraintCoincidence/de.md) , [Assembly3 ConstraintColinear/de](Assembly3_ConstraintColinear/de.md) , [Assembly3 ConstraintDiameter/de](Assembly3_ConstraintDiameter/de.md) , [Assembly3 ConstraintEqualAngle/de](Assembly3_ConstraintEqualAngle/de.md) , [Assembly3 ConstraintEqualLength/de](Assembly3_ConstraintEqualLength/de.md) , [Assembly3 ConstraintEqualLineArcLength/de](Assembly3_ConstraintEqualLineArcLength/de.md) , [Assembly3 ConstraintEqualPointLineDistance/de](Assembly3_ConstraintEqualPointLineDistance/de.md) , [Assembly3 ConstraintEqualRadius/de](Assembly3_ConstraintEqualRadius/de.md) , [Assembly3 ConstraintLengthDifference/de](Assembly3_ConstraintLengthDifference/de.md) , [Assembly3 ConstraintLengthEqualPointLineDistance/de](Assembly3_ConstraintLengthEqualPointLineDistance/de.md) , [Assembly3 ConstraintLengthRatio/de](Assembly3_ConstraintLengthRatio/de.md) , [Assembly3 ConstraintLineHorizontal/de](Assembly3_ConstraintLineHorizontal/de.md) , [Assembly3 ConstraintLineLength/de](Assembly3_ConstraintLineLength/de.md) , [Assembly3 ConstraintLineVertical/de](Assembly3_ConstraintLineVertical/de.md) , [Assembly3 ConstraintLock/de](Assembly3_ConstraintLock/de.md) , [Assembly3 ConstraintMidPoint/de](Assembly3_ConstraintMidPoint/de.md) , [Assembly3 ConstraintMore/de](Assembly3_ConstraintMore/de.md) , [Assembly3 ConstraintMultiParallel/de](Assembly3_ConstraintMultiParallel/de.md) , [Assembly3 ConstraintPerpendicular/de](Assembly3_ConstraintPerpendicular/de.md) , [Assembly3 ConstraintPointDistance/de](Assembly3_ConstraintPointDistance/de.md) , [Assembly3 ConstraintPointInPlane/de](Assembly3_ConstraintPointInPlane/de.md) , [Assembly3 ConstraintPointLineDistance/de](Assembly3_ConstraintPointLineDistance/de.md) , [Assembly3 ConstraintPointOnCircle/de](Assembly3_ConstraintPointOnCircle/de.md) , [Assembly3 ConstraintPointOnLine/de](Assembly3_ConstraintPointOnLine/de.md) , [Assembly3 ConstraintPointPlaneDistance/de](Assembly3_ConstraintPointPlaneDistance/de.md) , [Assembly3 ConstraintPointsCoincident/de](Assembly3_ConstraintPointsCoincident/de.md) , [Assembly3 ConstraintPointsDistance/de](Assembly3_ConstraintPointsDistance/de.md) , [Assembly3 ConstraintPointsHorizontal/de](Assembly3_ConstraintPointsHorizontal/de.md) , [Assembly3 ConstraintPointsProjectDistance/de](Assembly3_ConstraintPointsProjectDistance/de.md) , [Assembly3 ConstraintPointsSymmetric/de](Assembly3_ConstraintPointsSymmetric/de.md) , [Assembly3 ConstraintPointsVertical/de](Assembly3_ConstraintPointsVertical/de.md) , [Assembly3 ConstraintSameOrientation/de](Assembly3_ConstraintSameOrientation/de.md) , [Assembly3 ConstraintSketchPlane/de](Assembly3_ConstraintSketchPlane/de.md) , [Assembly3 ConstraintSymmetric/de](Assembly3_ConstraintSymmetric/de.md) , [Assembly3 ConstraintSymmetricHorizontal/de](Assembly3_ConstraintSymmetricHorizontal/de.md) , [Assembly3 ConstraintSymmetricLine/de](Assembly3_ConstraintSymmetricLine/de.md) , [Assembly3 ConstraintSymmetricVertical/de](Assembly3_ConstraintSymmetricVertical/de.md) , [Assembly3 CreateAssembly/de](Assembly3_CreateAssembly/de.md) , [Assembly3 CreateElement/de](Assembly3_CreateElement/de.md) , [Assembly3 GoToRelation/de](Assembly3_GoToRelation/de.md) , [Assembly3 GroupObjects/de](Assembly3_GroupObjects/de.md) , [Assembly3 ImportFromSTEP/de](Assembly3_ImportFromSTEP/de.md) , [Assembly3 ImportMultiDocument/de](Assembly3_ImportMultiDocument/de.md) , [Assembly3 MeasureAngle/de](Assembly3_MeasureAngle/de.md) , [Assembly3 MeasurePointLine/de](Assembly3_MeasurePointLine/de.md) , [Assembly3 MeasurePointPlane/de](Assembly3_MeasurePointPlane/de.md) , [Assembly3 MeasurePoints/de](Assembly3_MeasurePoints/de.md) , [Assembly3 Workbench/de](Assembly3_Workbench/de.md) , [Assembly4 Workbench/de](Assembly4_Workbench/de.md) , [Base API/de](Base_API/de.md) , [Basic modeling tutorial/de](Basic_modeling_tutorial/de.md) , [Basic Part Design Tutorial/de](Basic_Part_Design_Tutorial/de.md) , [Basic Sketcher Tutorial/de](Basic_Sketcher_Tutorial/de.md) , [Basic TechDraw Tutorial/de](Basic_TechDraw_Tutorial/de.md) , [BIM Classification/de](BIM_Classification/de.md) , [BIM Layers/de](BIM_Layers/de.md) , [BIM Library/de](BIM_Library/de.md) , [BIM Project/de](BIM_Project/de.md) , [BIM Workbench/de](BIM_Workbench/de.md) , [Bitmap/de](Bitmap/de.md) , [Body/de](Body/de.md) , [Branding/de](Branding/de.md) , [Bug Triage/de](Bug_Triage/de.md) , [CadQuery Workbench/de](CadQuery_Workbench/de.md) , [Civil Engineering Workbench/de](Civil_Engineering_Workbench/de.md) , [Combo view/de](Combo_view/de.md) , [Compile on Docker/de](Compile_on_Docker/de.md) , [Compile on Linux/de](Compile_on_Linux/de.md) , [Compile on MacOS/de](Compile_on_MacOS/de.md) , [Compile on Windows/de](Compile_on_Windows/de.md) , [Compiling (Speeding up)/de](Compiling_(Speeding_up)/de.md) , [Compiling/de](Compiling/de.md) , [Complete Workbench/de](Complete_Workbench/de.md) , [Console API/de](Console_API/de.md) , [Constraint/de](Constraint/de.md) , [Constructive solid geometry/de](Constructive_solid_geometry/de.md) , [Continuous Integration/de](Continuous_Integration/de.md) , [Contributors/de](Contributors/de.md) , [Copying Objects/de](Copying_Objects/de.md) , [Creating a simple part with PartDesign/de](Creating_a_simple_part_with_PartDesign/de.md) , [Crowdin Administration/de](Crowdin_Administration/de.md) , [Crowdin Scripts/de](Crowdin_Scripts/de.md) , [Curves ExtendCurve/de](Curves_ExtendCurve/de.md) , [Curves JoinCurve/de](Curves_JoinCurve/de.md) , [Curves Line/de](Curves_Line/de.md) , [Curves PasteSVG/de](Curves_PasteSVG/de.md) , [Curves SplitCurve/de](Curves_SplitCurve/de.md) , [Curves ToConsole/de](Curves_ToConsole/de.md) , [Curves Workbench/de](Curves_Workbench/de.md) , [Custom Spacing/de](Custom_Spacing/de.md) , [Customize Toolbars/de](Customize_Toolbars/de.md) , [DAG view/de](DAG_view/de.md) , [Datum/de](Datum/de.md) , [Debian development/de](Debian_development/de.md) , [Debian Unstable/de](Debian_Unstable/de.md) , [Defeaturing Workbench/de](Defeaturing_Workbench/de.md) , [Defeaturing/de](Defeaturing/de.md) , [Developer hub/de](Developer_hub/de.md) , [Developing FreeCAD with GitKraken/de](Developing_FreeCAD_with_GitKraken/de.md) , [Document structure/de](Document_structure/de.md) , [Donate/de](Donate/de.md) , [Download/de](Download/de.md) , [Draft AddConstruction/de](Draft_AddConstruction/de.md) , [Draft AddToGroup/de](Draft_AddToGroup/de.md) , [Draft AnnotationStyleEditor/de](Draft_AnnotationStyleEditor/de.md) , [Draft API/de](Draft_API/de.md) , [Draft ApplyStyle/de](Draft_ApplyStyle/de.md) , [Draft Arc 3Points/de](Draft_Arc_3Points/de.md) , [Draft Arc/de](Draft_Arc/de.md) , [Draft Array/de](Draft_Array/de.md) , [Draft AutoGroup/de](Draft_AutoGroup/de.md) , [Draft BezCurve/de](Draft_BezCurve/de.md) , [Draft BSpline/de](Draft_BSpline/de.md) , [Draft Circle/de](Draft_Circle/de.md) , [Draft CircularArray/de](Draft_CircularArray/de.md) , [Draft Clone/de](Draft_Clone/de.md) , [Draft Constrain/de](Draft_Constrain/de.md) , [Draft CubicBezCurve/de](Draft_CubicBezCurve/de.md) , [Draft Dimension/de](Draft_Dimension/de.md) , [Draft Downgrade/de](Draft_Downgrade/de.md) , [Draft Draft2Sketch/de](Draft_Draft2Sketch/de.md) , [Draft Drawing/de](Draft_Drawing/de.md) , [Draft DXF/de](Draft_DXF/de.md) , [Draft Edit/de](Draft_Edit/de.md) , [Draft Ellipse/de](Draft_Ellipse/de.md) , [Draft Facebinder/de](Draft_Facebinder/de.md) , [Draft Fillet/de](Draft_Fillet/de.md) , [Draft FlipDimension/de](Draft_FlipDimension/de.md) , [Draft Heal/de](Draft_Heal/de.md) , [Draft Join/de](Draft_Join/de.md) , [Draft Label/de](Draft_Label/de.md) , [Draft Layer/de](Draft_Layer/de.md) , [Draft Line/de](Draft_Line/de.md) , [Draft Mirror/de](Draft_Mirror/de.md) , [Draft Move/de](Draft_Move/de.md) , [Draft OCA/de](Draft_OCA/de.md) , [Draft Offset/de](Draft_Offset/de.md) , [Draft OrthoArray/de](Draft_OrthoArray/de.md) , [Draft PathArray/de](Draft_PathArray/de.md) , [Draft PathLinkArray/de](Draft_PathLinkArray/de.md) , [Draft Pattern/de](Draft_Pattern/de.md) , [Draft Point/de](Draft_Point/de.md) , [Draft PointArray/de](Draft_PointArray/de.md) , [Draft PointLinkArray/de](Draft_PointLinkArray/de.md) , [Draft PolarArray/de](Draft_PolarArray/de.md) , [Draft Polygon/de](Draft_Polygon/de.md) , [Draft Preferences/de](Draft_Preferences/de.md) , [Draft Rectangle/de](Draft_Rectangle/de.md) , [Draft Rotate/de](Draft_Rotate/de.md) , [Draft Scale/de](Draft_Scale/de.md) , [Draft SelectGroup/de](Draft_SelectGroup/de.md) , [Draft SelectPlane/de](Draft_SelectPlane/de.md) , [Draft SetStyle/de](Draft_SetStyle/de.md) , [Draft Shape2DView/de](Draft_Shape2DView/de.md) , [Draft ShapeString tutorial/de](Draft_ShapeString_tutorial/de.md) , [Draft ShapeString/de](Draft_ShapeString/de.md) , [Draft ShowSnapBar/de](Draft_ShowSnapBar/de.md) , [Draft Slope/de](Draft_Slope/de.md) , [Draft Snap Angle/de](Draft_Snap_Angle/de.md) , [Draft Snap Center/de](Draft_Snap_Center/de.md) , [Draft Snap Dimensions/de](Draft_Snap_Dimensions/de.md) , [Draft Snap Endpoint/de](Draft_Snap_Endpoint/de.md) , [Draft Snap Extension/de](Draft_Snap_Extension/de.md) , [Draft Snap Grid/de](Draft_Snap_Grid/de.md) , [Draft Snap Intersection/de](Draft_Snap_Intersection/de.md) , [Draft Snap Lock/de](Draft_Snap_Lock/de.md) , [Draft Snap Midpoint/de](Draft_Snap_Midpoint/de.md) , [Draft Snap Near/de](Draft_Snap_Near/de.md) , [Draft Snap Ortho/de](Draft_Snap_Ortho/de.md) , [Draft Snap Parallel/de](Draft_Snap_Parallel/de.md) , [Draft Snap Perpendicular/de](Draft_Snap_Perpendicular/de.md) , [Draft Snap Special/de](Draft_Snap_Special/de.md) , [Draft Snap WorkingPlane/de](Draft_Snap_WorkingPlane/de.md) , [Draft Snap/de](Draft_Snap/de.md) , [Draft Split/de](Draft_Split/de.md) , [Draft Stretch/de](Draft_Stretch/de.md) , [Draft SubelementHighlight/de](Draft_SubelementHighlight/de.md) , [Draft SVG/de](Draft_SVG/de.md) , [Draft Text/de](Draft_Text/de.md) , [Draft ToggleConstructionMode/de](Draft_ToggleConstructionMode/de.md) , [Draft ToggleContinueMode/de](Draft_ToggleContinueMode/de.md) , [Draft ToggleDisplayMode/de](Draft_ToggleDisplayMode/de.md) , [Draft ToggleGrid/de](Draft_ToggleGrid/de.md) , [Draft Tray/de](Draft_Tray/de.md) , [Draft Trimex/de](Draft_Trimex/de.md) , [Draft tutorial/de](Draft_tutorial/de.md) , [Draft Upgrade/de](Draft_Upgrade/de.md) , [Draft Wire/de](Draft_Wire/de.md) , [Draft WireToBSpline/de](Draft_WireToBSpline/de.md) , [Draft Workbench/de](Draft_Workbench/de.md) , [Draft WorkingPlaneProxy/de](Draft_WorkingPlaneProxy/de.md) , [Drawing Annotation/de](Drawing_Annotation/de.md) , [Drawing Clip/de](Drawing_Clip/de.md) , [Drawing Landscape A3/de](Drawing_Landscape_A3/de.md) , [Drawing Open SVG/de](Drawing_Open_SVG/de.md) , [Drawing Openbrowser/de](Drawing_Openbrowser/de.md) , [Drawing Orthoviews/de](Drawing_Orthoviews/de.md) , [Drawing ProjectShape/de](Drawing_ProjectShape/de.md) , [Drawing Template HowTo/de](Drawing_Template_HowTo/de.md) , [Drawing templates/de](Drawing_templates/de.md) , [Drawing tutorial/de](Drawing_tutorial/de.md) , [Drawing View/de](Drawing_View/de.md) , [Drawing Workbench/de](Drawing_Workbench/de.md) , [Drawing/de](Drawing/de.md) , [Dxf Importer Install/de](Dxf_Importer_Install/de.md) , [DXF/de](DXF/de.md) , [Engine Block Tutorial/de](Engine_Block_Tutorial/de.md) , [Export to STL or OBJ/de](Export_to_STL_or_OBJ/de.md) , [Extend FEM Module/de](Extend_FEM_Module/de.md) , [External workbenches/de](External_workbenches/de.md) , [Extra python modules/de](Extra_python_modules/de.md) , [Fasteners Workbench/de](Fasteners_Workbench/de.md) , [FCGear BevelGear/de](FCGear_BevelGear/de.md) , [FCGear CrownGear/de](FCGear_CrownGear/de.md) , [FCGear CycloideGear/de](FCGear_CycloideGear/de.md) , [FCGear InvoluteGear/de](FCGear_InvoluteGear/de.md) , [FCGear InvoluteRack/de](FCGear_InvoluteRack/de.md) , [FCGear LanternGear/de](FCGear_LanternGear/de.md) , [FCGear Workbench/de](FCGear_Workbench/de.md) , [FCGear WormGear/de](FCGear_WormGear/de.md) , [Feature editing/de](Feature_editing/de.md) , [Feature list/de](Feature_list/de.md) , [Feature/de](Feature/de.md) , [FeaturePython Custom Properties/de](FeaturePython_Custom_Properties/de.md) , [FEM Analysis/de](FEM_Analysis/de.md) , [FEM Beginner tutorial/de](FEM_Beginner_tutorial/de.md) , [FEM CalculiX Cantilever 3D/de](FEM_CalculiX_Cantilever_3D/de.md) , [FEM ConstraintBodyHeatSource/de](FEM_ConstraintBodyHeatSource/de.md) , [FEM ConstraintFixed/de](FEM_ConstraintFixed/de.md) , [FEM ConstraintForce/de](FEM_ConstraintForce/de.md) , [FEM ConstraintPressure/de](FEM_ConstraintPressure/de.md) , [FEM ConstraintTemperature/de](FEM_ConstraintTemperature/de.md) , [FEM ElementRotation1D/de](FEM_ElementRotation1D/de.md) , [FEM Install/de](FEM_Install/de.md) , [FEM MaterialFluid/de](FEM_MaterialFluid/de.md) , [FEM MaterialMechanicalNonlinear/de](FEM_MaterialMechanicalNonlinear/de.md) , [FEM MaterialSolid/de](FEM_MaterialSolid/de.md) , [FEM Mesh/de](FEM_Mesh/de.md) , [FEM MeshBoundaryLayer/de](FEM_MeshBoundaryLayer/de.md) , [FEM MeshGmshFromShape/de](FEM_MeshGmshFromShape/de.md) , [FEM MeshNetgenFromShape/de](FEM_MeshNetgenFromShape/de.md) , [FEM project/de](FEM_project/de.md) , [FEM Shear of a Composite Block/de](FEM_Shear_of_a_Composite_Block/de.md) , [FEM Solver/de](FEM_Solver/de.md) , [FEM SolverCalculiX/de](FEM_SolverCalculiX/de.md) , [FEM Tutorial Python/de](FEM_Tutorial_Python/de.md) , [FEM tutorial/de](FEM_tutorial/de.md) , [FEM Workbench/de](FEM_Workbench/de.md) , [File Format FCStd/de](File_Format_FCStd/de.md) , [Fine-tuning/de](Fine-tuning/de.md) , [Flamingo Workbench/de](Flamingo_Workbench/de.md) , [FreeCAD and DWG Import/de](FreeCAD_and_DWG_Import/de.md) , [FreeCAD and DXF Import/de](FreeCAD_and_DXF_Import/de.md) , [FreeCAD and Mesh Import/de](FreeCAD_and_Mesh_Import/de.md) , [FreeCAD API/de](FreeCAD_API/de.md) , [FreeCAD Build Tool/de](FreeCAD_Build_Tool/de.md) , [FreeCAD-Ship s60 tutorial (II)/de](FreeCAD-Ship_s60_tutorial_(II)/de.md) , [FreeCAD-Ship s60 tutorial/de](FreeCAD-Ship_s60_tutorial/de.md) , [FreeCADGui API/de](FreeCADGui_API/de.md) , [Frequently asked questions/de](Frequently_asked_questions/de.md) , [Getting started/de](Getting_started/de.md) , [Git buildpackage/de](Git_buildpackage/de.md) , [Glossary/de](Glossary/de.md) , [GuiCommand model/de](GuiCommand_model/de.md) , [Template:GuiCommand/de](Template:GuiCommand/de.md) , [Help FreeCAD/de](Help_FreeCAD/de.md) , [Help/de](Help/de.md) , [How to install additional workbenches/de](How_to_install_additional_workbenches/de.md) , [How to install macros/de](How_to_install_macros/de.md) , [IfcOpenShell/de](IfcOpenShell/de.md) , [Image CreateImagePlane/de](Image_CreateImagePlane/de.md) , [Image Open/de](Image_Open/de.md) , [Image Scaling/de](Image_Scaling/de.md) , [Image Workbench/de](Image_Workbench/de.md) , [Import Export Preferences/de](Import_Export_Preferences/de.md) , [Import Export/de](Import_Export/de.md) , [Import from STL or OBJ/de](Import_from_STL_or_OBJ/de.md) , [Import OpenSCAD code/de](Import_OpenSCAD_code/de.md) , [Import text and geometry from Inkscape/de](Import_text_and_geometry_from_Inkscape/de.md) , [Import/Export IFC - compiling IfcOpenShell/de](Import/Export_IFC_-_compiling_IfcOpenShell/de.md) , [Inspection Workbench/de](Inspection_Workbench/de.md) , [Installing additional components/de](Installing_additional_components/de.md) , [Installing Helpfile/de](Installing_Helpfile/de.md) , [Installing on Linux/de](Installing_on_Linux/de.md) , [Installing on Mac/de](Installing_on_Mac/de.md) , [Installing on Windows/de](Installing_on_Windows/de.md) , [Interface Customization/de](Interface_Customization/de.md) , [Interface/de](Interface/de.md) , [KicadStepUp Workbench/de](KicadStepUp_Workbench/de.md) , [Lattice2 Workbench/de](Lattice2_Workbench/de.md) , [Licence/de](Licence/de.md) , [Linux packaging/de](Linux_packaging/de.md) , [Localisation/de](Localisation/de.md) , [Localization Older Methods/de](Localization_Older_Methods/de.md) , [Macro 3D Parametric Curve/de](Macro_3D_Parametric_Curve/de.md) , [Macro 3d Printer Slicer/de](Macro_3d_Printer_Slicer/de.md) , [Macro AeroFoil/de](Macro_AeroFoil/de.md) , [Macro Airfoil Import & Scale/de](Macro_Airfoil_Import_&_Scale/de.md) , [Macro Align Camera to Working Plane/de](Macro_Align_Camera_to_Working_Plane/de.md) , [Macro Align View to Face/de](Macro_Align_View_to_Face/de.md) , [Macro Animated Constrain/de](Macro_Animated_Constrain/de.md) , [Macro ArrayCopy/de](Macro_ArrayCopy/de.md) , [Macro Automatic drawing/de](Macro_Automatic_drawing/de.md) , [Macro BOLTS/de](Macro_BOLTS/de.md) , [Macro BoundingBox Tracing/de](Macro_BoundingBox_Tracing/de.md) , [Macro CartoucheFC 2/de](Macro_CartoucheFC_2/de.md) , [Macro CartoucheFC Full/de](Macro_CartoucheFC_Full/de.md) , [Macro CartoucheFC/de](Macro_CartoucheFC/de.md) , [Macro CenterFace/de](Macro_CenterFace/de.md) , [Macro CloneConvert/de](Macro_CloneConvert/de.md) , [Macro Corner shapes wizard/de](Macro_Corner_shapes_wizard/de.md) , [Macro crank simul/de](Macro_crank_simul/de.md) , [Macro cross section/de](Macro_cross_section/de.md) , [Macro Cut Circle/de](Macro_Cut_Circle/de.md) , [Macro Cut Line/de](Macro_Cut_Line/de.md) , [Macro Delta xyz/de](Macro_Delta_xyz/de.md) , [Macro documentation/de](Macro_documentation/de.md) , [Macro Draft Circle 3 Points 3D/de](Macro_Draft_Circle_3_Points_3D/de.md) , [Macro Draft Circle 3 Points/de](Macro_Draft_Circle_3_Points/de.md) , [Macro Draw 2D Function/de](Macro_Draw_2D_Function/de.md) , [Macro Draw Parametric 2D Function/de](Macro_Draw_Parametric_2D_Function/de.md) , [Macro DXF to Face and Sketch/de](Macro_DXF_to_Face_and_Sketch/de.md) , [Macro EdgesToArc/de](Macro_EdgesToArc/de.md) , [Macro Ellipse-Center+2Points/de](Macro_Ellipse-Center+2Points/de.md) , [Macro FaceToSketch/de](Macro_FaceToSketch/de.md) , [Macro FCInfo Alternate Linux/de](Macro_FCInfo_Alternate_Linux/de.md) , [Macro FCInfo/de](Macro_FCInfo/de.md) , [Macro findConfigFiles/de](Macro_findConfigFiles/de.md) , [Macro FlattenWire/de](Macro_FlattenWire/de.md) , [Macro ForceRecompute/de](Macro_ForceRecompute/de.md) , [Macro Half-Hull Model/de](Macro_Half-Hull_Model/de.md) , [Macro HealArcs/de](Macro_HealArcs/de.md) , [Macro HighlightDifference/de](Macro_HighlightDifference/de.md) , [Macro hinge/de](Macro_hinge/de.md) , [Macro JointWire/de](Macro_JointWire/de.md) , [Macro Line Length/de](Macro_Line_Length/de.md) , [Macro Loft/de](Macro_Loft/de.md) , [Macro MacroMenu/de](Macro_MacroMenu/de.md) , [Macro Make Circle 3 Points/de](Macro_Make_Circle_3_Points/de.md) , [Macro Make Cube/de](Macro_Make_Cube/de.md) , [Macro MeasureCircle/de](Macro_MeasureCircle/de.md) , [Macro MeshToPart/de](Macro_MeshToPart/de.md) , [Macro MessageBox/de](Macro_MessageBox/de.md) , [Macro ObjectInfo/de](Macro_ObjectInfo/de.md) , [Macro PartsLibrary/de](Macro_PartsLibrary/de.md) , [Macro PropertyMemo/de](Macro_PropertyMemo/de.md) , [Macro Rectellipse/de](Macro_Rectellipse/de.md) , [Macro Remove parametric history/de](Macro_Remove_parametric_history/de.md) , [Macro Rotate View/de](Macro_Rotate_View/de.md) , [Macro Screen Wiki/de](Macro_Screen_Wiki/de.md) , [Macro screw maker1 2/de](Macro_screw_maker1_2/de.md) , [Macro SelectVisible/de](Macro_SelectVisible/de.md) , [Macro SimpleProperties/de](Macro_SimpleProperties/de.md) , [Macro Site From Contours/de](Macro_Site_From_Contours/de.md) , [Macro Snip/de](Macro_Snip/de.md) , [Macro Solid Sweep/de](Macro_Solid_Sweep/de.md) , [Macro SuperWire/de](Macro_SuperWire/de.md) , [Macro Texture Objects/de](Macro_Texture_Objects/de.md) , [Macro Texture/de](Macro_Texture/de.md) , [Macro Unfold Box/de](Macro_Unfold_Box/de.md) , [Macro Unroll Ruled Surface/de](Macro_Unroll_Ruled_Surface/de.md) , [Macro View Rotation/de](Macro_View_Rotation/de.md) , [Macro WorkFeatures/de](Macro_WorkFeatures/de.md) , [Template:Macro/de](Template:Macro/de.md) , [Main Page/de](Main_Page/de.md) , [Main view area/de](Main_view_area/de.md) , [Manipulator/de](Manipulator/de.md) , [Manual:Creating renderings/de](Manual:Creating_renderings/de.md) , [Material/de](Material/de.md) , [Matrix API/de](Matrix_API/de.md) , [Measurement Of Angles On Holes/de](Measurement_Of_Angles_On_Holes/de.md) , [Mesh AddFacet/de](Mesh_AddFacet/de.md) , [Mesh API/de](Mesh_API/de.md) , [Mesh BoundingBox/de](Mesh_BoundingBox/de.md) , [Mesh BuildRegularSolid/de](Mesh_BuildRegularSolid/de.md) , [Mesh CurvatureInfo/de](Mesh_CurvatureInfo/de.md) , [Mesh Difference/de](Mesh_Difference/de.md) , [Mesh EvaluateFacet/de](Mesh_EvaluateFacet/de.md) , [Mesh EvaluateSolid/de](Mesh_EvaluateSolid/de.md) , [Mesh Evaluation/de](Mesh_Evaluation/de.md) , [Mesh Export/de](Mesh_Export/de.md) , [Mesh Feature/de](Mesh_Feature/de.md) , [Mesh FillInteractiveHole/de](Mesh_FillInteractiveHole/de.md) , [Mesh FlipNormals/de](Mesh_FlipNormals/de.md) , [Mesh FromPartShape/de](Mesh_FromPartShape/de.md) , [Mesh HarmonizeNormals/de](Mesh_HarmonizeNormals/de.md) , [Mesh Import/de](Mesh_Import/de.md) , [Mesh Intersection/de](Mesh_Intersection/de.md) [Category:Documentation/de](Category:Documentation/de.md) [Category:Categories/de](Category:Categories/de.md) + +--- +[documentation index](../README.md) > Category:User Documentation/de diff --git a/wiki/translations/de/Category:Web.md b/wiki/translations/de/Category:Web.md index 81fe306cb0..85a0673938 100644 --- a/wiki/translations/de/Category:Web.md +++ b/wiki/translations/de/Category:Web.md @@ -6,3 +6,6 @@ This category lists pages that relate to the [Web Workbench/de](Web_Workbench/de [Web Workbench/de](Web_Workbench/de.md) [Category:Workbenches/de](Category:Workbenches/de.md) + +--- +[documentation index](../README.md) > Category:Web/de diff --git a/wiki/translations/de/Category:Wiki.md b/wiki/translations/de/Category:Wiki.md index 85721900ae..d051468d2e 100644 --- a/wiki/translations/de/Category:Wiki.md +++ b/wiki/translations/de/Category:Wiki.md @@ -6,3 +6,6 @@ Diese Kategorie zeigt eine Liste von Seiten, die zum [Wiki](Wiki/de.md) gehören [Glossary/de](Glossary/de.md) , [Localisation Sidebar/de](Localisation_Sidebar/de.md) , [Localisation/de](Localisation/de.md) , [WikiPages/de](WikiPages/de.md) [Category:Administration/de](Category:Administration/de.md) [Category:Categories/de](Category:Categories/de.md) [Category:Documentation/de](Category:Documentation/de.md) + +--- +[documentation index](../README.md) > Category:Wiki/de diff --git a/wiki/translations/de/Category:Workbenches.md b/wiki/translations/de/Category:Workbenches.md index 9f297aa4ac..55064b888a 100644 --- a/wiki/translations/de/Category:Workbenches.md +++ b/wiki/translations/de/Category:Workbenches.md @@ -6,3 +6,6 @@ In dieser Kategorie werden die in FreeCAD enthaltenen Workbenches aufgeführt. [Arch Workbench/de](Arch_Workbench/de.md) , [Draft Workbench/de](Draft_Workbench/de.md) , [FEM Workbench/de](FEM_Workbench/de.md) , [Image Workbench/de](Image_Workbench/de.md) , [Inspection Workbench/de](Inspection_Workbench/de.md) , [Mesh Workbench/de](Mesh_Workbench/de.md) , [OpenSCAD Workbench/de](OpenSCAD_Workbench/de.md) , [Part Module/de](Part_Module/de.md) , [PartDesign Workbench/de](PartDesign_Workbench/de.md) , [Path Workbench/de](Path_Workbench/de.md) , [Points Workbench/de](Points_Workbench/de.md) , [Raytracing Workbench/de](Raytracing_Workbench/de.md) , [Reverse Engineering Workbench/de](Reverse_Engineering_Workbench/de.md) , [Robot Workbench/de](Robot_Workbench/de.md) , [Sketcher Workbench/de](Sketcher_Workbench/de.md) , [Spreadsheet Workbench/de](Spreadsheet_Workbench/de.md) , [Start Workbench/de](Start_Workbench/de.md) , [Std Base/de](Std_Base/de.md) , [Std Edit Menu/de](Std_Edit_Menu/de.md) , [Std File Menu/de](Std_File_Menu/de.md) , [Std Help Menu/de](Std_Help_Menu/de.md) , [Std Macro Menu/de](Std_Macro_Menu/de.md) , [Std Tools Menu/de](Std_Tools_Menu/de.md) , [Std View Menu/de](Std_View_Menu/de.md) , [Std Windows Menu/de](Std_Windows_Menu/de.md) , [Surface Workbench/de](Surface_Workbench/de.md) , [TechDraw Workbench/de](TechDraw_Workbench/de.md) , [Testing/de](Testing/de.md) , [Web Workbench/de](Web_Workbench/de.md) , [Workbenches/de](Workbenches/de.md) , , , , , , , , , , , , , , , , , , , , , [Category:User Documentation/de](Category:User_Documentation/de.md) [Category:Draft/de](Category:Draft/de.md) [Category:External Workbenches/de](Category:External_Workbenches/de.md) [Category:FEM/de](Category:FEM/de.md) [Category:Inspection/de](Category:Inspection/de.md) [Category:Mesh/de](Category:Mesh/de.md) [Category:Obsolete Workbenches/de](Category:Obsolete_Workbenches/de.md) [Category:OpenSCAD/de](Category:OpenSCAD/de.md) [Category:Part/de](Category:Part/de.md) [Category:Path/de](Category:Path/de.md) [Category:Plot/de](Category:Plot/de.md) [Category:Points/de](Category:Points/de.md) [Category:Raytracing/de](Category:Raytracing/de.md) [Category:Reinforcement/de](Category:Reinforcement/de.md) [Category:Robot/de](Category:Robot/de.md) [Category:Ship/de](Category:Ship/de.md) [Category:Sketcher/de](Category:Sketcher/de.md) [Category:Start/de](Category:Start/de.md) [Category:Surface/de](Category:Surface/de.md) [Category:TechDraw/de](Category:TechDraw/de.md) [Category:Test Framework/de](Category:Test_Framework/de.md) [Category:Web/de](Category:Web/de.md) + +--- +[documentation index](../README.md) > Category:Workbenches/de diff --git a/wiki/translations/de/Changelog.md b/wiki/translations/de/Changelog.md index 455c7ee3ad..896ef84818 100644 --- a/wiki/translations/de/Changelog.md +++ b/wiki/translations/de/Changelog.md @@ -1,5 +1,5 @@ # Changelog/de - Die FreeCAD Änderungshistorie wird über den [Mantis Bug Tracker](http://de.wikipedia.org/wiki/Mantis_Bug_Tracker) gepflegt. +Die FreeCAD Änderungshistorie wird über den [Mantis Bug Tracker](http://de.wikipedia.org/wiki/Mantis_Bug_Tracker) gepflegt. @@ -7,3 +7,6 @@ [Category:Administration](Category:Administration.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Changelog/de diff --git a/wiki/translations/de/Civil_Engineering_Workbench.md b/wiki/translations/de/Civil_Engineering_Workbench.md index fa7c375672..fcff80c58b 100644 --- a/wiki/translations/de/Civil_Engineering_Workbench.md +++ b/wiki/translations/de/Civil_Engineering_Workbench.md @@ -1,6 +1,4 @@ # Civil Engineering Workbench/de - - ## Beschreibung Bauingenieurwesen ist eine breite Kategorie von Ingenieurwissenschaften und umfasst mehrere Fachgebiete, vor allem Umwelt (Abwasser), Geotechnik, Transport und Bauwesen. Gegenwärtig liegt der Schwerpunkt der Bestrebungen im Bauingenieurwesen in FreeCAD auf dem Verkehrswesen, genauer gesagt auf der 3D Gestaltung von Straßen. @@ -33,3 +31,6 @@ Die Bewehrungswerkzeuge sind derzeit Teil der [Arch Arbeitsbereichs](Arch_Workbe [Category:Documentation](Category:Documentation.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Civil Engineering Workbench/de diff --git a/wiki/translations/de/Code_snippets.md b/wiki/translations/de/Code_snippets.md index 02cd22ba09..c52300d179 100644 --- a/wiki/translations/de/Code_snippets.md +++ b/wiki/translations/de/Code_snippets.md @@ -1,7 +1,4 @@ # Code snippets/de - - - {{TOCright}} ## Einführung @@ -1773,3 +1770,6 @@ Siehe [Coin3d Schnippsel](Coin3d_snippets/de.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Code snippets/de diff --git a/wiki/translations/de/Coin3d_snippets.md b/wiki/translations/de/Coin3d_snippets.md index 575d60caa0..dfdf5dc84d 100644 --- a/wiki/translations/de/Coin3d_snippets.md +++ b/wiki/translations/de/Coin3d_snippets.md @@ -1,7 +1,4 @@ # Coin3d snippets/de - - - {{TOCright}} ## Beschreibung dieser Liste @@ -103,3 +100,6 @@ Es ist keine Installation erforderlich. Der Dank geht an den Autor des Programms }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Coin3d snippets/de diff --git a/wiki/translations/de/Combo_view.md b/wiki/translations/de/Combo_view.md index be179f02f9..e592dd8a52 100644 --- a/wiki/translations/de/Combo_view.md +++ b/wiki/translations/de/Combo_view.md @@ -1,5 +1,5 @@ # Combo view/de - {{TOCright}} +{{TOCright}} ## Einführung @@ -54,4 +54,7 @@ Aktiviere dann die Ansicht über das Menü {{MenuCommand/de|Ansicht → Paneele {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Combo view/de diff --git a/wiki/translations/de/Command.md b/wiki/translations/de/Command.md index bc528c2132..51daee8f8e 100644 --- a/wiki/translations/de/Command.md +++ b/wiki/translations/de/Command.md @@ -1,6 +1,4 @@ # Command/de - - ## Einführung @@ -101,3 +99,6 @@ Siehe [Linienzeichungsfunktion](Line_drawing_function/de.md). }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Command Reference/de|Liste aller Befehle]]-Seite erscheint. Befehle können über eine Werkzeugleisten-Schaltfläche, einen Menüpunkt, oder aus einem ](Category:Command Reference/de|Liste aller Befehle]]-Seite erscheint. Befehle können über eine Werkzeugleisten-Schaltfläche, einen Menüpunkt, oder aus einem .md) > Command/de diff --git a/wiki/translations/de/CompileOnCygwin.md b/wiki/translations/de/CompileOnCygwin.md index b08704b562..bf35778000 100644 --- a/wiki/translations/de/CompileOnCygwin.md +++ b/wiki/translations/de/CompileOnCygwin.md @@ -1,2 +1,5 @@ # CompileOnCygwin/de 1. REDIRECT [Compile on Cygwin/de](Compile_on_Cygwin/de.md) + +--- +[documentation index](../README.md) > CompileOnCygwin/de diff --git a/wiki/translations/de/CompileOnMac.md b/wiki/translations/de/CompileOnMac.md index 199554c4fe..3241886a46 100644 --- a/wiki/translations/de/CompileOnMac.md +++ b/wiki/translations/de/CompileOnMac.md @@ -1,2 +1,5 @@ # CompileOnMac/de 1. REDIRECT [Compile on MacOS/de](Compile_on_MacOS/de.md) + +--- +[documentation index](../README.md) > CompileOnMac/de diff --git a/wiki/translations/de/CompileOnUnix.md b/wiki/translations/de/CompileOnUnix.md index e89db76a76..7e28d6b1c8 100644 --- a/wiki/translations/de/CompileOnUnix.md +++ b/wiki/translations/de/CompileOnUnix.md @@ -1,2 +1,5 @@ # CompileOnUnix/de 1. REDIRECT [Compile\_on\_Linux/de](Compile_on_Linux/de.md) + +--- +[documentation index](../README.md) > CompileOnUnix/de diff --git a/wiki/translations/de/CompileOnWindows.md b/wiki/translations/de/CompileOnWindows.md index d3327b23c8..96a47bbcd7 100644 --- a/wiki/translations/de/CompileOnWindows.md +++ b/wiki/translations/de/CompileOnWindows.md @@ -1,2 +1,5 @@ # CompileOnWindows/de 1. REDIRECT [Compile on Windows/de](Compile_on_Windows/de.md) + +--- +[documentation index](../README.md) > CompileOnWindows/de diff --git a/wiki/translations/de/Compile_on_Cygwin.md b/wiki/translations/de/Compile_on_Cygwin.md index 717a7ff27e..b7c7acb859 100644 --- a/wiki/translations/de/Compile_on_Cygwin.md +++ b/wiki/translations/de/Compile_on_Cygwin.md @@ -1,5 +1,5 @@ # Compile on Cygwin/de - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** ## How to build and run FreeCAD under Cygwin @@ -74,3 +74,6 @@ Once you have built the sources successfully using \'make\' with \'make install\ [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Cygwin/de diff --git a/wiki/translations/de/Compile_on_Docker.md b/wiki/translations/de/Compile_on_Docker.md index f2b9004ab5..06002044c5 100644 --- a/wiki/translations/de/Compile_on_Docker.md +++ b/wiki/translations/de/Compile_on_Docker.md @@ -1,10 +1,4 @@ # Compile on Docker/de - - - - - - {{TOCright}} ## Überblick @@ -142,3 +136,6 @@ Du kannst die angehängten Verzeichnisse im `/mnt` Verzeichnis finden. [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Compile on Docker/de diff --git a/wiki/translations/de/Compile_on_Linux.md b/wiki/translations/de/Compile_on_Linux.md index e20c0641a1..cb38b4a1a6 100644 --- a/wiki/translations/de/Compile_on_Linux.md +++ b/wiki/translations/de/Compile_on_Linux.md @@ -1,10 +1,4 @@ # Compile on Linux/de - - - - - - **Es gibt einen experimentellen FreeCAD Docker Container, der für die FreeCAD Entwicklung getestet wird. Lies mehr darüber unter [Kompilieren auf Docker](Compile_on_Docker/de.md)** @@ -1219,3 +1213,6 @@ Um FreeCAD auf den neuesten Stand zu bringen, wiederhole einfach ab Schritt 3. A [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Linux/de diff --git a/wiki/translations/de/Compile_on_MacOS.md b/wiki/translations/de/Compile_on_MacOS.md index 4c39938363..d9cf8b2b7e 100644 --- a/wiki/translations/de/Compile_on_MacOS.md +++ b/wiki/translations/de/Compile_on_MacOS.md @@ -1,10 +1,4 @@ # Compile on MacOS/de - - - - - - **Es gibt einen experimentellen FreeCAD Docker Container, der für die FreeCAD Entwicklung getestet wird. Lies mehr darüber unter [[Compile on Docker/de| Kompilieren unter Docker]]** @@ -195,3 +189,6 @@ FreeCAD can be built against the latest git master hosted on github, and launche [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS/de diff --git a/wiki/translations/de/Compile_on_Windows.md b/wiki/translations/de/Compile_on_Windows.md index 4edcf784d9..5a66b0267d 100644 --- a/wiki/translations/de/Compile_on_Windows.md +++ b/wiki/translations/de/Compile_on_Windows.md @@ -1,10 +1,4 @@ # Compile on Windows/de - - - - - - {{TOCright}} Diese Seite erklärt Schritt für Schritt, **wie man FreeCAD 0.19 oder neuer unter Windows kompiliert**. Für andere Plattformen siehe [Compiling](Compiling.md). @@ -468,3 +462,6 @@ Siehe auch [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows/de diff --git a/wiki/translations/de/Compiling.md b/wiki/translations/de/Compiling.md index 5fa0237c75..9b53de931f 100644 --- a/wiki/translations/de/Compiling.md +++ b/wiki/translations/de/Compiling.md @@ -1,5 +1,5 @@ # Compiling/de - Jedes Betriebssystem hat seine eigene Seite für das Kompilieren von FreeCAD in der [Online Hilfe Dokumentation](Online_Help_Toc/de.md). +Jedes Betriebssystem hat seine eigene Seite für das Kompilieren von FreeCAD in der [Online Hilfe Dokumentation](Online_Help_Toc/de.md). --------------------------------------------------------------- ----------------------------------------------------------- ----------------------------------------------------------- ------------------------------------------------------------------------------ @@ -20,3 +20,6 @@ Zum Erlernen der Verwendung des Revisionskontrollsystems und des Beitragscodes s [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling/de diff --git a/wiki/translations/de/Compiling_(Speeding_up).md b/wiki/translations/de/Compiling_(Speeding_up).md index f21d9b7eaa..78353e888d 100644 --- a/wiki/translations/de/Compiling_(Speeding_up).md +++ b/wiki/translations/de/Compiling_(Speeding_up).md @@ -1,10 +1,4 @@ # Compiling (Speeding up)/de - - - - - - {{TOCright}} ## Übersicht @@ -64,3 +58,6 @@ Das Programm `distcc` kann verwendet werden, um eine verteilte Kompilierung von [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling (Speeding up)/de diff --git a/wiki/translations/de/Complete_Workbench.md b/wiki/translations/de/Complete_Workbench.md index a980f8b2b4..2650f20ede 100644 --- a/wiki/translations/de/Complete_Workbench.md +++ b/wiki/translations/de/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/de - - - **Der [[Complete Workbench/de]] ist veraltet.** @@ -14,3 +11,6 @@ Siehe [Anpassung der Benutzeroberfläche ](Interface_Customization/de.md), wenn [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/de diff --git a/wiki/translations/de/Conda.md b/wiki/translations/de/Conda.md index 19364846ac..2679285a22 100644 --- a/wiki/translations/de/Conda.md +++ b/wiki/translations/de/Conda.md @@ -1,6 +1,4 @@ # Conda/de - - ## Einführung @@ -95,3 +93,6 @@ conda create --name fcenv-dev --channel freecad/label/dev freecad - [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Conda/de diff --git a/wiki/translations/de/Console_API.md b/wiki/translations/de/Console_API.md index 075366444f..479c1d5770 100644 --- a/wiki/translations/de/Console_API.md +++ b/wiki/translations/de/Console_API.md @@ -1,5 +1,5 @@ # Console API/de - **(Oktober 2019) Bearbeite diese Seiten nicht. Die Informationen sind unvollständig und veraltet. Die neueste API findest Du in der [https://www.freecadweb.org/api autogenerierten API-Dokumentation] oder generiere die Dokumentation selbst, siehe [Quelldokumentation](Source_documentation/de.md).** +**(Oktober 2019) Bearbeite diese Seiten nicht. Die Informationen sind unvollständig und veraltet. Die neueste API findest Du in der [https://www.freecadweb.org/api autogenerierten API-Dokumentation] oder generiere die Dokumentation selbst, siehe [Quelldokumentation](Source_documentation/de.md).** Diese Modul ist im FreeCAD-Module integriert und enthält Methoden, um Text auf der FreeCAD-Ausgabe-Konsole und Statuszeile auszugeben. Die Ausgaben haben eine unterschiedliche Farbe, abhängig von Meldung, Warnung oder Fehler. @@ -31,3 +31,6 @@ FreeCAD.Console.PrintMessage("Hello World!\n") [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Console API/de diff --git a/wiki/translations/de/Constraint.md b/wiki/translations/de/Constraint.md index 6d695d77df..fe18d90f9d 100644 --- a/wiki/translations/de/Constraint.md +++ b/wiki/translations/de/Constraint.md @@ -1,6 +1,4 @@ # Constraint/de - - ## Einführung @@ -47,3 +45,6 @@ Siehe die Informationen in der [Glossary](Category:Glossary.md) > Constraint/de diff --git a/wiki/translations/de/Constructive_solid_geometry.md b/wiki/translations/de/Constructive_solid_geometry.md index 31a39b6bf6..3e1ecf1c17 100644 --- a/wiki/translations/de/Constructive_solid_geometry.md +++ b/wiki/translations/de/Constructive_solid_geometry.md @@ -1,5 +1,5 @@ # Constructive solid geometry/de - {{TOCright}} +{{TOCright}} ## Einführung @@ -37,3 +37,6 @@ Die [Tutorien](tutorials/de.md) Seite stellt einige Beispiele zur Erstellung von [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Constructive solid geometry/de diff --git a/wiki/translations/de/Continuous_Integration.md b/wiki/translations/de/Continuous_Integration.md index e1fcc98e31..1279a1040f 100644 --- a/wiki/translations/de/Continuous_Integration.md +++ b/wiki/translations/de/Continuous_Integration.md @@ -1,10 +1,4 @@ # Continuous Integration/de - - - - - - {{TOCright}} ## Kontinuierliche Integration @@ -34,3 +28,6 @@ Aktuell stößt das FreeCAD-Repository auf GitHub einen Build auf den beiden unt [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Continuous Integration/de diff --git a/wiki/translations/de/Contributors.md b/wiki/translations/de/Contributors.md index ab63b7a89a..881da44313 100644 --- a/wiki/translations/de/Contributors.md +++ b/wiki/translations/de/Contributors.md @@ -1,10 +1,4 @@ # Contributors/de - - - - - - {{TOCright}} @@ -253,3 +247,6 @@ Entwickler von FreeCAD-Addons (abgerufen von [Developer](Category:Developer.md) > Contributors/de diff --git a/wiki/translations/de/Contributors_hub.md b/wiki/translations/de/Contributors_hub.md index f7ee9cf7ad..882f4af47c 100644 --- a/wiki/translations/de/Contributors_hub.md +++ b/wiki/translations/de/Contributors_hub.md @@ -1,6 +1,4 @@ # Contributors hub/de - - ## Einführung Wenn Du etwas zu FreeCAD beitragen und Deine Energie einsetzen möchtest, um dieses Projekt voranzubringen, dann gibt es viele Wege zu helfen. Nachfolgend findest Du verschiedene Rollen, die Du einnehmen kannst. @@ -23,4 +21,7 @@ Außerdem kannst du anderen Benutzern auf der [FreeCAD Unterstützungsseite](htt ## FreeCAD Entwickler -## Web Entwickler oder Administrator +## Web Entwickler oder Administrator + +--- +[documentation index](../README.md) > Contributors hub/de diff --git a/wiki/translations/de/Copying_Objects.md b/wiki/translations/de/Copying_Objects.md index 837fef0e53..8b72d54262 100644 --- a/wiki/translations/de/Copying_Objects.md +++ b/wiki/translations/de/Copying_Objects.md @@ -1,5 +1,5 @@ # Copying Objects/de - {{TOCright}} +{{TOCright}} ## Übersicht @@ -39,5 +39,5 @@ Wie bei den meisten Dingen in FreeCAD gibt es viele Möglichkeiten, eine Kopie z - [Einfügen](Std_Paste/de.md) - [Auswahl duplizieren](Std_DuplicateSelection/de.md) - - +--- +[documentation index](../README.md) > Copying Objects/de diff --git a/wiki/translations/de/Create_a_FeaturePython_object_part_I.md b/wiki/translations/de/Create_a_FeaturePython_object_part_I.md index 78f73883ae..6ac57a7cec 100644 --- a/wiki/translations/de/Create_a_FeaturePython_object_part_I.md +++ b/wiki/translations/de/Create_a_FeaturePython_object_part_I.md @@ -1,10 +1,4 @@ # Create a FeaturePython object part I/de - - - - - - {{TOCright}} ## Einführung @@ -389,3 +383,6 @@ class box(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Create a FeaturePython object part I/de diff --git a/wiki/translations/de/Create_a_FeaturePython_object_part_II.md b/wiki/translations/de/Create_a_FeaturePython_object_part_II.md index 2d734dbd31..d8a18dd295 100644 --- a/wiki/translations/de/Create_a_FeaturePython_object_part_II.md +++ b/wiki/translations/de/Create_a_FeaturePython_object_part_II.md @@ -1,10 +1,4 @@ # Create a FeaturePython object part II/de - - - - - - {{TOCright}} ## Einführung @@ -402,3 +396,6 @@ class ViewProviderBox: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Create a FeaturePython object part II/de diff --git a/wiki/translations/de/Creating_a_FeaturePython_Box,_Part_II.md b/wiki/translations/de/Creating_a_FeaturePython_Box,_Part_II.md index c8a0a80f64..9c753e66f6 100644 --- a/wiki/translations/de/Creating_a_FeaturePython_Box,_Part_II.md +++ b/wiki/translations/de/Creating_a_FeaturePython_Box,_Part_II.md @@ -1,2 +1,5 @@ # Creating a FeaturePython Box, Part II/de 1. REDIRECT [Create\_a\_FeaturePython\_object\_part\_II/de](Create_a_FeaturePython_object_part_II/de.md) + +--- +[documentation index](../README.md) > Creating a FeaturePython Box, Part II/de diff --git a/wiki/translations/de/Creating_a_simple_part_with_PartDesign.md b/wiki/translations/de/Creating_a_simple_part_with_PartDesign.md index 1279af096f..84ddfffc2f 100644 --- a/wiki/translations/de/Creating_a_simple_part_with_PartDesign.md +++ b/wiki/translations/de/Creating_a_simple_part_with_PartDesign.md @@ -1,7 +1,4 @@ # Creating a simple part with PartDesign/de - - - {{TutorialInfo/de |Topic=Modellierung |Level=Anfänger @@ -266,4 +263,7 @@ Du kannst auch mit diesem anderen Tutorial eines etwas komplizierteren Teils for {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Creating a simple part with PartDesign/de diff --git a/wiki/translations/de/Crowdin_Administration.md b/wiki/translations/de/Crowdin_Administration.md index e5b4ec94a4..a5c2a51fa1 100644 --- a/wiki/translations/de/Crowdin_Administration.md +++ b/wiki/translations/de/Crowdin_Administration.md @@ -1,6 +1,4 @@ # Crowdin Administration/de - - ## Rollen - Übersetzer @@ -41,3 +39,6 @@ [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Crowdin Administration/de diff --git a/wiki/translations/de/Crowdin_Scripts.md b/wiki/translations/de/Crowdin_Scripts.md index a3d20abef5..7631056abc 100644 --- a/wiki/translations/de/Crowdin_Scripts.md +++ b/wiki/translations/de/Crowdin_Scripts.md @@ -1,5 +1,5 @@ # Crowdin Scripts/de - {{TOCright}} +{{TOCright}} ## Verwalten von Übersetzungen für FreeCAD @@ -91,3 +91,6 @@ Das updatefromcrowdin.py Skript schiebt Änderungen aus crowdin auf Dein lokales [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Crowdin Scripts/de diff --git a/wiki/translations/de/Curves_ExtendCurve.md b/wiki/translations/de/Curves_ExtendCurve.md index 2ba1a1c0c9..9bfd94caa3 100644 --- a/wiki/translations/de/Curves_ExtendCurve.md +++ b/wiki/translations/de/Curves_ExtendCurve.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Curves ExtendCurve/de +
@@ -53,4 +55,7 @@ Das [Kurven {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ExtendCurve/de diff --git a/wiki/translations/de/Curves_JoinCurve.md b/wiki/translations/de/Curves_JoinCurve.md index 232671347a..2d72d0cff1 100644 --- a/wiki/translations/de/Curves_JoinCurve.md +++ b/wiki/translations/de/Curves_JoinCurve.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Curves JoinCurve/de + @@ -58,4 +60,7 @@ Das [Kurven Ve {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves JoinCurve/de diff --git a/wiki/translations/de/Curves_Line.md b/wiki/translations/de/Curves_Line.md index 15cbb6328c..0006e8d3b7 100644 --- a/wiki/translations/de/Curves_Line.md +++ b/wiki/translations/de/Curves_Line.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Curves Line/de + @@ -48,4 +50,7 @@ Die [Kurven Linie]( {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves Line/de diff --git a/wiki/translations/de/Curves_PasteSVG.md b/wiki/translations/de/Curves_PasteSVG.md index cb2afe101e..e6e6c861c3 100644 --- a/wiki/translations/de/Curves_PasteSVG.md +++ b/wiki/translations/de/Curves_PasteSVG.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Curves PasteSVG/de + @@ -54,4 +56,7 @@ Das [Kurven Ein {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves PasteSVG/de diff --git a/wiki/translations/de/Curves_SplitCurve.md b/wiki/translations/de/Curves_SplitCurve.md index 8e2e31ce89..defd82121f 100644 --- a/wiki/translations/de/Curves_SplitCurve.md +++ b/wiki/translations/de/Curves_SplitCurve.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Curves SplitCurve/de + @@ -54,4 +56,7 @@ Das [Kurven T {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves SplitCurve/de diff --git a/wiki/translations/de/Curves_ToConsole.md b/wiki/translations/de/Curves_ToConsole.md index 4f3ea31e06..c55ee900d7 100644 --- a/wiki/translations/de/Curves_ToConsole.md +++ b/wiki/translations/de/Curves_ToConsole.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Curves ToConsole/de + @@ -54,4 +56,7 @@ Das [Kurven An {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ToConsole/de diff --git a/wiki/translations/de/Curves_Workbench.md b/wiki/translations/de/Curves_Workbench.md index e400e0e8bf..7049fd6c68 100644 --- a/wiki/translations/de/Curves_Workbench.md +++ b/wiki/translations/de/Curves_Workbench.md @@ -1,5 +1,5 @@ # Curves Workbench/de - } +} ## Einführung @@ -54,3 +54,6 @@ Lade den Arbeitsbereich Kurven über den Curves Workbench/de diff --git a/wiki/translations/de/Custom_Spacing.md b/wiki/translations/de/Custom_Spacing.md index 75ec7a40ea..06061b434c 100644 --- a/wiki/translations/de/Custom_Spacing.md +++ b/wiki/translations/de/Custom_Spacing.md @@ -1,6 +1,4 @@ # Custom Spacing/de - - ## Beschreibung Das Abstand-Werkzeug erlaubt eine benutzerdefinierte Abstandsverteilung der Bewehrungsstäbe im Bauelement. Es lassen sich drei Segmente für die Verteilung definieren. Für das erste und dritte Segment kann eine Anzahl von Bewehrungsstäben und Abständen zwischen ihnen definiert werden. Für das zweite Segment kann nur eine Anzahl von Bewehrungsstäben oder Abständen angegeben werden, denn ein Wert legt automatisch den anderen fest. @@ -19,3 +17,6 @@ Ausgabe produziert vom Bewehrungsstab-Abstandsdialog nach dem Drücken der Schal [Category:User Documentation](Category:User_Documentation.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Custom Spacing/de diff --git a/wiki/translations/de/Customize_Toolbars.md b/wiki/translations/de/Customize_Toolbars.md index 4df3bd3ad4..39f91bd6a5 100644 --- a/wiki/translations/de/Customize_Toolbars.md +++ b/wiki/translations/de/Customize_Toolbars.md @@ -1,5 +1,5 @@ # Customize Toolbars/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic=Beispielthema |Level=Anfänger |Time=5 Minuten @@ -122,3 +122,6 @@ Siehe auch [Anpassung der Oberfläche](Interface_Customization/de.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Customize Toolbars/de diff --git a/wiki/translations/de/DAG_view.md b/wiki/translations/de/DAG_view.md index 1500c011c7..52c0fd5d71 100644 --- a/wiki/translations/de/DAG_view.md +++ b/wiki/translations/de/DAG_view.md @@ -1,6 +1,4 @@ # DAG view/de - - ## Einleitung @@ -62,4 +60,7 @@ Im [Parametereditor](Std_DlgParameter/de.md) kannst du auch einige Eigenschaften {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > DAG view/de diff --git a/wiki/translations/de/DXF.md b/wiki/translations/de/DXF.md index 9e215ac092..ae84759475 100644 --- a/wiki/translations/de/DXF.md +++ b/wiki/translations/de/DXF.md @@ -1,5 +1,5 @@ # DXF/de - {{TOCright}} +{{TOCright}} ## Hintergrundgeschichte @@ -43,3 +43,6 @@ Zusätzlich zu den Optionen unter Bearbeiten → Voreinstellungen kann der [Tech [Category:User Documentation](Category:User_Documentation.md) [Category:Draft](Category:Draft.md) [Category:TechDraw](Category:TechDraw.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > DXF/de diff --git a/wiki/translations/de/Datum.md b/wiki/translations/de/Datum.md index 5865d299e4..f66a96393f 100644 --- a/wiki/translations/de/Datum.md +++ b/wiki/translations/de/Datum.md @@ -1,6 +1,4 @@ # Datum/de - - ## Einführung In FreeCAD wird das Wort \"[Bezugsebene](Datum/de.md)\" normalerweise verwendet, um sich auf Hilfsgeometrie im [PartDesign Arbeitsbereich](PartDesign_Workbench/de.md) zu beziehen. Diese geometrischen Elemente bilden kein Teil der endgültigen [Form](Shape/de.md) des [Körpers](Body/de.md), können aber als Referenzen und als Unterstützung für [Skizzen](Sketch/de.md) und andere Arten von [Formelementen](Feature/de.md) verwendet werden. @@ -46,3 +44,6 @@ Seit ihrem Erscheinen in v0.17 waren Bezugsobjekte für die Verwendung innerhalb }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Datum/de diff --git a/wiki/translations/de/Debian_Unstable.md b/wiki/translations/de/Debian_Unstable.md index 276895ca5e..3dfb2d8368 100644 --- a/wiki/translations/de/Debian_Unstable.md +++ b/wiki/translations/de/Debian_Unstable.md @@ -1,6 +1,4 @@ # Debian Unstable/de - - [Debian Unstable](https://wiki.debian.org/DebianUnstable) ist eine rollierende Distribution, die für [Debian Entwicklung](Debian_development/de.md) verwendet wird und für fortgeschrittene Benutzer in der FreeCAD Entwicklung und Paketierung empfohlen wird. Neue Pakete sind bereit, sobald sie hochgeladen und erstellt wurden, es sei denn, der Uploader hat sie für [Debian Experimental](https://wiki.debian.org/DebianExperimental) markiert, was eine explizite Installation (nach einigen Einstellungen, um die zusätzliche Verbreitung zu ermöglichen) über erfordert. Häufig sollten Leute, die Debian Testen verwenden, tatsächlich Debian Instabil verwenden; Debian Testen sollte nur als \"QA Versionshülle\" betrachtet werden, da es zwar stabiler zu sein scheint als Instabil, aber tatsächlich einen Nachteil hat. Neue Pakete werden zu Debian Instabil hochgeladen und nach einiger Zeit zu Testen migriert, so dass Sicherheitskorrekturen und wichtige Paketänderungen unangemessen verzögert werden können. @@ -27,3 +25,6 @@ deb [http://deb.debian.org/debian](http://deb.debian.org/debian) experimental [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian Unstable/de diff --git a/wiki/translations/de/Debian_development.md b/wiki/translations/de/Debian_development.md index 41ea040b66..b837a0d07c 100644 --- a/wiki/translations/de/Debian_development.md +++ b/wiki/translations/de/Debian_development.md @@ -1,6 +1,4 @@ # Debian development/de - - Debian ist die übergeordnete Distribution, von der viele andere Linux Distributionen abgeleitet sind, wie Ubuntu, Linux Mint und andere. Daher lohnt es sich, sich speziell auf die Debian Entwicklung zu konzentrieren, da Verbesserungen in Debian durch seine Abkömmlinge hindurch gefiltert werden. [Debian Instabil](Debian_Unstable/de.md) ist eine gute Zielversion für die FreeCAD Entwicklung unter Linux, da sie die aktuellsten Pakete als rollierende Distribution bereitstellt. Man kann sowohl zur FreeCAD Entwicklung auf Debian als auch zum Ökosystem der zugehörigen Pakete und Abhängigkeiten beitragen. @@ -9,3 +7,6 @@ Debian ist die übergeordnete Distribution, von der viele andere Linux Distribut [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian development/de diff --git a/wiki/translations/de/Debugging.md b/wiki/translations/de/Debugging.md index 79555e60d5..7d851450aa 100644 --- a/wiki/translations/de/Debugging.md +++ b/wiki/translations/de/Debugging.md @@ -1,10 +1,4 @@ # Debugging/de - - - - - - {{TOCright}} ## Erster Test @@ -335,3 +329,6 @@ Für Entwickler, die tiefer in den OpenCasCade Kernel einsteigen müssen, hat de }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/de diff --git a/wiki/translations/de/Defeaturing.md b/wiki/translations/de/Defeaturing.md index 0dc181d52a..e1d10647f0 100644 --- a/wiki/translations/de/Defeaturing.md +++ b/wiki/translations/de/Defeaturing.md @@ -1,6 +1,4 @@ # Defeaturing/de - - ## Einführung 3D Modell Vereinfachung wurde mit Open CASCADE 7.3 [1](https://dev.opencascade.org/index.php?q=node/1211) hinzugefügt und kann zur Bearbeitung von STEP Modellen verwendet werden, indem die Formelemente aus dem Modell entfernt werden. @@ -29,3 +27,6 @@ Part.show(box4) #show defeatured shape [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Defeaturing/de diff --git a/wiki/translations/de/Defeaturing_Workbench.md b/wiki/translations/de/Defeaturing_Workbench.md index 6982d56378..25cc228efd 100644 --- a/wiki/translations/de/Defeaturing_Workbench.md +++ b/wiki/translations/de/Defeaturing_Workbench.md @@ -1,5 +1,4 @@ -# Defeaturing Workbench/de - Defeaturing workbench icon +# Defeaturing workbench icon Defeaturing Workbench/de ## Einführung @@ -119,3 +118,6 @@ Neue Arbeitsbereiche sind in der Entwicklung, bleib\' dran! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Defeaturing Workbench/de diff --git a/wiki/translations/de/Developer_hub.md b/wiki/translations/de/Developer_hub.md index cb068f03c1..70a7be1e1c 100644 --- a/wiki/translations/de/Developer_hub.md +++ b/wiki/translations/de/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/de - - ![150](images/Crystal_Clear_app_tutorials.png ) Dies ist die Stelle, wenn Du zur Entwicklung der FreeCAD-Software beitragen möchtest. @@ -125,3 +123,6 @@ FreeCAD, obwohl in bestimmten Bereichen verwendbar, steht am Anfang eines langen [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/de diff --git a/wiki/translations/de/Development_roadmap.md b/wiki/translations/de/Development_roadmap.md index c280cbafa2..390e59cb43 100644 --- a/wiki/translations/de/Development_roadmap.md +++ b/wiki/translations/de/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/de - **Wichtig: Viele dieser Planungen sind nicht aktuell oder vielleicht eingestellt. Diese Seite und die Seiten, auf die sie verweist, enthalten sehr wahrscheinlich veraltete Informationen. Eine 'weiche' Planung ist unter [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] (engl.) zu finden, aber bisher gibt es keine 'harte' Planung. Viele Anstrengungen verlaufen simultan.** +**Wichtig: Viele dieser Planungen sind nicht aktuell oder vielleicht eingestellt. Diese Seite und die Seiten, auf die sie verweist, enthalten sehr wahrscheinlich veraltete Informationen. Eine 'weiche' Planung ist unter [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] (engl.) zu finden, aber bisher gibt es keine 'harte' Planung. Viele Anstrengungen verlaufen simultan.** FreeCAD - obwohl in vielen Anwendungen verwendbar - steht am Anfang eines langen Weges in den CAD Mainstream. Es bleibt noch viel zu tun, um einen Zustand zu erreichen, in dem wir mit kommerzieller Software konkurrieren können. @@ -44,3 +44,6 @@ Wie in den meisten [FLOSS](http://en.wikipedia.org/wiki/FLOSS) Projekten ist ein [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/de diff --git a/wiki/translations/de/Dialog_creation.md b/wiki/translations/de/Dialog_creation.md index 1073974031..c685c1af40 100644 --- a/wiki/translations/de/Dialog_creation.md +++ b/wiki/translations/de/Dialog_creation.md @@ -1,7 +1,4 @@ # Dialog creation/de - - - {{TOCright}} ## Einführung @@ -263,3 +260,6 @@ class plane(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation/de diff --git a/wiki/translations/de/Dialog_creation_image_and_animated_GIF.md b/wiki/translations/de/Dialog_creation_image_and_animated_GIF.md index fdfa978d03..2a805b85fd 100644 --- a/wiki/translations/de/Dialog_creation_image_and_animated_GIF.md +++ b/wiki/translations/de/Dialog_creation_image_and_animated_GIF.md @@ -1,6 +1,4 @@ # Dialog creation image and animated GIF/de - - ## Einführung Dies ist ein Beispiel für [Dialogerstellung](Dialog_creation/de.md) mit [PySide](PySide/de.md). @@ -51,3 +49,6 @@ patience.show() #show the image }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation image and animated GIF/de diff --git a/wiki/translations/de/Dialog_creation_reading_and_writing_files.md b/wiki/translations/de/Dialog_creation_reading_and_writing_files.md index b24b91a2dc..f1a90f1895 100644 --- a/wiki/translations/de/Dialog_creation_reading_and_writing_files.md +++ b/wiki/translations/de/Dialog_creation_reading_and_writing_files.md @@ -1,6 +1,4 @@ # Dialog creation reading and writing files/de - - ## Einführung Dies ist ein Beispiel für [Dialogerstellung](Dialog_creation/de.md) mit [PySide](PySide/de.md). @@ -96,3 +94,6 @@ else: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation reading and writing files/de diff --git a/wiki/translations/de/Dialog_creation_setting_colors.md b/wiki/translations/de/Dialog_creation_setting_colors.md index 6b9bdde488..6f02211bb5 100644 --- a/wiki/translations/de/Dialog_creation_setting_colors.md +++ b/wiki/translations/de/Dialog_creation_setting_colors.md @@ -1,6 +1,4 @@ # Dialog creation setting colors/de - - ## Einführung Dies ist ein Beispiel für [Dialogerstellung](Dialog_creation/de.md) mit [PySide](PySide/de.md). @@ -203,3 +201,6 @@ else: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation setting colors/de diff --git a/wiki/translations/de/Dialog_creation_with_various_widgets.md b/wiki/translations/de/Dialog_creation_with_various_widgets.md index 0e8082ac39..b6243163d6 100644 --- a/wiki/translations/de/Dialog_creation_with_various_widgets.md +++ b/wiki/translations/de/Dialog_creation_with_various_widgets.md @@ -1,6 +1,4 @@ # Dialog creation with various widgets/de - - ## Einführung Dies ist ein Beispiel für [Dialogerstellung](Dialog_creation/de.md) mit [PySide](PySide/de.md). @@ -401,3 +399,6 @@ Die Code-Seite und die Piktogramme [Qt\_Beispiel](Qt_Example/de.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation with various widgets/de diff --git a/wiki/translations/de/Document_structure.md b/wiki/translations/de/Document_structure.md index 2b011d14cb..0f0c4c9afd 100644 --- a/wiki/translations/de/Document_structure.md +++ b/wiki/translations/de/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/de - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) Ein FreeCAD Dokument enthält alle Objekte deiner Arbeitsumgebung. Es kann Gruppen und Objekte enthalten, die Sie mit den Arbeitsbereichen erstellt haben. Daher kannst du zwischen Arbeitsbereichen wechseln und immer noch im selben Dokument arbeiten. Es ist das Dokument, das gespeichert wird, wenn du deine Arbeit auf Datenträger speichern. Du kannst sowohl mehrere Dokumente gleichzeitig in FreeCAD öffnen, als auch mehrere Ansichten im selben Dokument. @@ -42,8 +36,5 @@ FreeCADGui.ActiveDocument.Blob FreeCADGui.ActiveDocument.ActiveView ``` Gibt die aktuelle Ansicht zurück - - - - - +--- +[documentation index](../README.md) > Document structure/de diff --git a/wiki/translations/de/Donate.md b/wiki/translations/de/Donate.md index d090f67184..3e4d1c8f08 100644 --- a/wiki/translations/de/Donate.md +++ b/wiki/translations/de/Donate.md @@ -1,7 +1,4 @@ # Donate/de - - - @@ -106,8 +108,5 @@ arc3 = Draft.make_circle(750, startangle=-30, endangle=-150) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc/de diff --git a/wiki/translations/de/Draft_Arc_3Points.md b/wiki/translations/de/Draft_Arc_3Points.md index 444325c590..5b7e1b22a9 100644 --- a/wiki/translations/de/Draft_Arc_3Points.md +++ b/wiki/translations/de/Draft_Arc_3Points.md @@ -9,6 +9,8 @@ SeeAlso:[Entwurf Bogen](Draft_Arc/de.md), [Entwurf Kreis](Draft_Circle/de.md), [Entwurf Ellipse](Draft_Ellipse/de.md) --- +# Draft Arc 3Points/de + @@ -130,5 +132,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc 3Points/de diff --git a/wiki/translations/de/Draft_Array.md b/wiki/translations/de/Draft_Array.md index b50f775fac..88a57c8e97 100644 --- a/wiki/translations/de/Draft_Array.md +++ b/wiki/translations/de/Draft_Array.md @@ -7,6 +7,8 @@ SeeAlso:[PfadDatenfeld](Draft_PathArray/de.md), [Draft PointArray](Draft_PointArray/de.md), [Draft Klonen](Draft_Clone/de.md) --- +# Draft Array/de + @@ -84,5 +86,5 @@ This command is now obsolete. Use the [Draft OrthoArray](Draft_OrthoArray.md), [ - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Array/de diff --git a/wiki/translations/de/Draft_AutoGroup.md b/wiki/translations/de/Draft_AutoGroup.md index 2f34f4129f..480e8ca1e2 100644 --- a/wiki/translations/de/Draft_AutoGroup.md +++ b/wiki/translations/de/Draft_AutoGroup.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Draft AutoGroup/de + @@ -105,5 +107,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AutoGroup/de diff --git a/wiki/translations/de/Draft_BSpline.md b/wiki/translations/de/Draft_BSpline.md index 3e3ef7c231..b877015331 100644 --- a/wiki/translations/de/Draft_BSpline.md +++ b/wiki/translations/de/Draft_BSpline.md @@ -9,6 +9,8 @@ SeeAlso:[Entwurf Polygonzug](Draft_Wire/de.md), [Entwurf Bézkurve](Draft_BezCurve/de.md) --- +# Draft BSpline/de + ## Beschreibung Der **Entwurf BSpline** Befehl erstellt eine [B-Spline Kurve](https://de.wikipedia.org/wiki/Spline#B-Splines) aus mehreren Punkten. @@ -135,8 +137,5 @@ spline3 = Draft.make_bspline([1.3*p3, p1, -1.7*p2], closed=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BSpline/de diff --git a/wiki/translations/de/Draft_BezCurve.md b/wiki/translations/de/Draft_BezCurve.md index 86b19b22de..534a8cfc51 100644 --- a/wiki/translations/de/Draft_BezCurve.md +++ b/wiki/translations/de/Draft_BezCurve.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurf KubischeBezKurve](Draft_CubicBezCurve/de.md), [Entwurf BSpline](Draft_BSpline/de.md) --- +# Draft BezCurve/de + ## Beschreibung Der **Entwurf BezKurve** Befehl erstellt eine [Bézierkurve](https://de.wikipedia.org/wiki/B%C3%A9zierkurve) aus einigen Punkten. @@ -140,8 +142,5 @@ bezcurve3 = Draft.make_bezcurve([1.7*p3, 1.5*p4, 2.1*p2, p1], closed=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BezCurve/de diff --git a/wiki/translations/de/Draft_Circle.md b/wiki/translations/de/Draft_Circle.md index 8c4b905f1d..434422c19c 100644 --- a/wiki/translations/de/Draft_Circle.md +++ b/wiki/translations/de/Draft_Circle.md @@ -9,6 +9,8 @@ SeeAlso:[Entwurf Bogen](Draft_Arc/de.md), [Entwurf Ellipse](Draft_Ellipse/de.md), [Makro KreisPlus](Macro_CirclePlus/de.md) --- +# Draft Circle/de + @@ -217,5 +219,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Circle/de diff --git a/wiki/translations/de/Draft_CircularArray.md b/wiki/translations/de/Draft_CircularArray.md index bff033146b..90d9e5882b 100644 --- a/wiki/translations/de/Draft_CircularArray.md +++ b/wiki/translations/de/Draft_CircularArray.md @@ -8,6 +8,8 @@ SeeAlso:[Anordnung](Draft_Array/de.md), [PolarAnordnung](Draft_PolarArray/de.md), [PfadAnordnung](Draft_PathArray/de.md), [Punkt Anordnung](Draft_PointArray/de.md), [Klonen](Draft_Clone/de.md) --- +# Draft CircularArray/de + @@ -138,5 +140,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CircularArray/de diff --git a/wiki/translations/de/Draft_Clone.md b/wiki/translations/de/Draft_Clone.md index 80ac381db0..f58140f5a6 100644 --- a/wiki/translations/de/Draft_Clone.md +++ b/wiki/translations/de/Draft_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurf Skalieren](Draft_Scale/de.md) --- +# Draft Clone/de + ## Beschreibung Das **Entwurf Klonen** Werkzeug erstellt verbundene Kopien, Klone von ausgewählten Objekten. Die Form eines Klons ist parametrisch, er wird aktualisiert, wenn sich sein Quellobjekt ändert. Aber ein Klon hat seine eigene Position, Rotation und Skalierung und seine eigenen [Ansichtseigenschaften](Property_editor/de.md). Für [Architektur](Arch_Workbench/de.md) Objekte erzeugt der Befehl einen speziellen Typ von Klon: einen Architektur Klon. @@ -83,8 +85,5 @@ cloned_object.Fuse = True doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Clone/de diff --git a/wiki/translations/de/Draft_CloseLine.md b/wiki/translations/de/Draft_CloseLine.md index 5dbdb2c539..f9a889433a 100644 --- a/wiki/translations/de/Draft_CloseLine.md +++ b/wiki/translations/de/Draft_CloseLine.md @@ -1,2 +1,5 @@ # Draft CloseLine/de 1. REDIRECT [Draft\_Wire/de](Draft_Wire/de.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CloseLine/de diff --git a/wiki/translations/de/Draft_Constrain.md b/wiki/translations/de/Draft_Constrain.md index 510dd6ade3..02fdd9af56 100644 --- a/wiki/translations/de/Draft_Constrain.md +++ b/wiki/translations/de/Draft_Constrain.md @@ -1,10 +1,4 @@ # Draft Constrain/de - - - - - - {{TOCright}} ## Beschreibung @@ -52,8 +46,5 @@ Siehe auch: [Einstellungseditor](Preferences_Editor/de.md) und [Entwurf Einstell - Die Standardtaste **Beschränken mod**, **Shift**, kann geändert werden: **Bearbeiten → Einstellungen... → Entwurf → Raster und Fang → Fangen → Beschränken mod**. - Die Tastaturkürzel **X**, **Y** und **Z** können geändert werden: **Bearbeiten → Einstellungen... → Entwurf → Benutzeroberflächeneinstellungen → Befehlsinterne Tastaturkürzel**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Constrain/de diff --git a/wiki/translations/de/Draft_CubicBezCurve.md b/wiki/translations/de/Draft_CubicBezCurve.md index 4af3438397..a4e7e23ab7 100644 --- a/wiki/translations/de/Draft_CubicBezCurve.md +++ b/wiki/translations/de/Draft_CubicBezCurve.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurf BézKurve](Draft_BezCurve/de.md), [Entwurf BSpline](Draft_BSpline/de.md), --- +# Draft CubicBezCurve/de + ## Beschreibung Der **Draft\_CubicBezCurve/de\|Entwurf KubischeBézKurve**-Befehl erstellt eine [Bézierkurve](https://de.wikipedia.org/wiki/B%C3%A9zierkurve) dritten Grades (vier Punkte erforderlich). @@ -150,8 +152,5 @@ B7.ViewObject.DrawStyle = "Dashed" doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CubicBezCurve/de diff --git a/wiki/translations/de/Draft_DXF.md b/wiki/translations/de/Draft_DXF.md index 6ecca951a8..47a1316516 100644 --- a/wiki/translations/de/Draft_DXF.md +++ b/wiki/translations/de/Draft_DXF.md @@ -1,7 +1,4 @@ # Draft DXF/de - - -
@@ -188,3 +185,6 @@ importDXF.export(objects, "/home/user/Pictures/myfile.dxf") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DXF/de diff --git a/wiki/translations/de/Draft_Dimension.md b/wiki/translations/de/Draft_Dimension.md index 344b387128..c560ab632a 100644 --- a/wiki/translations/de/Draft_Dimension.md +++ b/wiki/translations/de/Draft_Dimension.md @@ -9,6 +9,8 @@ Version:0.8 --- +# Draft Dimension/de +
@@ -387,5 +389,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Dimension/de diff --git a/wiki/translations/de/Draft_Downgrade.md b/wiki/translations/de/Draft_Downgrade.md index 8f00659bf2..d077342782 100644 --- a/wiki/translations/de/Draft_Downgrade.md +++ b/wiki/translations/de/Draft_Downgrade.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurf Hochstufen](Draft_Upgrade/de.md), [Part Schnitt](Part_Cut/de.md) --- +# Draft Downgrade/de + ## Beschreibung Der **Entwurf Herabstufen** Befehl stuft ausgewählte Objekte herab. Das Ergebnis ist abhängig von der Anzahl der ausgewählten Objekte und deren Typ. Der Befehl kann zum Beispiel einen 3D Körper in einzelne Flächen und einen Draht in einzelne Kanten zerlegen. Wenn zwei Flächen ausgewählt sind, wird daraus ein [Part Schnitt](Part_Cut/de.md) Objekt erzeugt. Beachte, dass nicht alle Objekte zerlegt werden können. Dieser Befehl ist das Gegenstück zum Befehl [Entwurf Hochstufen](Draft_Upgrade/de.md). @@ -73,8 +75,5 @@ add_list4, delete_list4 = Draft.downgrade(box, delete=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Downgrade/de diff --git a/wiki/translations/de/Draft_Draft2Sketch.md b/wiki/translations/de/Draft_Draft2Sketch.md index 483ef09ffc..f26d60649d 100644 --- a/wiki/translations/de/Draft_Draft2Sketch.md +++ b/wiki/translations/de/Draft_Draft2Sketch.md @@ -6,6 +6,8 @@ Workbenches:[Entwurf](Draft_Workbench/de.md), [Architektur](Arch_Workbench.md) --- +# Draft Draft2Sketch/de + ## Beschreibung @@ -99,8 +101,5 @@ draft_from_sketch = Draft.draftify(sketch_from_draft, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Draft2Sketch/de diff --git a/wiki/translations/de/Draft_Drawing.md b/wiki/translations/de/Draft_Drawing.md index 07f7ff2e26..fd96bd7544 100644 --- a/wiki/translations/de/Draft_Drawing.md +++ b/wiki/translations/de/Draft_Drawing.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw-Arbeitsbereich](TechDraw_Workbench/de.md), [Form in 2D Ansicht](Draft_Shape2DView/de.md) --- +# Draft Drawing/de + @@ -64,5 +66,5 @@ This command is now obsolete. Use the [TechDraw Workbench](TechDraw_Workbench.md - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Drawing/de diff --git a/wiki/translations/de/Draft_Edit.md b/wiki/translations/de/Draft_Edit.md index 4ae3d05f63..9951bde59d 100644 --- a/wiki/translations/de/Draft_Edit.md +++ b/wiki/translations/de/Draft_Edit.md @@ -8,6 +8,8 @@ SeeAlso:[Std Bearbeiten](Std_Edit/de.md) --- +# Draft Edit/de + @@ -185,8 +187,5 @@ Siehe auch: [Autogenerierte API Dokumentation](https://freecad.github.io/SourceD Es gibt keine Python Methode für Entwurf Editieren Objekte. Um die Ergebnisse des Befehls zu emulieren, müssen geometrische Eigenschaften von Objekten geändert werden. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Edit/de diff --git a/wiki/translations/de/Draft_Ellipse.md b/wiki/translations/de/Draft_Ellipse.md index 0e0b22eca1..6da9105421 100644 --- a/wiki/translations/de/Draft_Ellipse.md +++ b/wiki/translations/de/Draft_Ellipse.md @@ -9,6 +9,8 @@ SeeAlso:[Kreis](Draft_Circle/de.md), [Bogen](Draft_Arc/de.md) --- +# Draft Ellipse/de + ## Beschreibung @@ -165,7 +167,5 @@ The single character keyboard shortcuts available in the task panel can be chang
- - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Ellipse/de diff --git a/wiki/translations/de/Draft_Facebinder.md b/wiki/translations/de/Draft_Facebinder.md index 99d7344b50..49c2d4115a 100644 --- a/wiki/translations/de/Draft_Facebinder.md +++ b/wiki/translations/de/Draft_Facebinder.md @@ -8,6 +8,8 @@ Version:0.14 --- +# Draft Facebinder/de + ## Beschreibung Der **Flächenbinder** Befehl erstellt ein Oberflächenobjekt aus ausgewählten Flächen. Ein Entwurf Flächenbinder ist parametrisch, er wird aktualisiert, wenn Du seine(s) Quellobjekt(e) änderst. @@ -117,8 +119,5 @@ facebinder.ViewObject.ShapeColor = (0.99, 0.99, 0.4) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Facebinder/de diff --git a/wiki/translations/de/Draft_Fillet.md b/wiki/translations/de/Draft_Fillet.md index a728a60cfe..4b9c55a44d 100644 --- a/wiki/translations/de/Draft_Fillet.md +++ b/wiki/translations/de/Draft_Fillet.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurf Linie](Draft_Line/de.md), [Entwurf Draht](Draft_Wire/de.md) --- +# Draft Fillet/de + @@ -172,5 +174,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Fillet/de diff --git a/wiki/translations/de/Draft_FinishLine.md b/wiki/translations/de/Draft_FinishLine.md index 27489a8587..a898211f3e 100644 --- a/wiki/translations/de/Draft_FinishLine.md +++ b/wiki/translations/de/Draft_FinishLine.md @@ -1,2 +1,5 @@ # Draft FinishLine/de 1. REDIRECT [Draft\_Wire/de](Draft_Wire/de.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FinishLine/de diff --git a/wiki/translations/de/Draft_FlipDimension.md b/wiki/translations/de/Draft_FlipDimension.md index e26a10de07..d4cf692d17 100644 --- a/wiki/translations/de/Draft_FlipDimension.md +++ b/wiki/translations/de/Draft_FlipDimension.md @@ -7,6 +7,8 @@ SeeAlso:[Abmessung](Draft_Dimension/de.md) --- +# Draft FlipDimension/de + @@ -75,5 +77,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FlipDimension/de diff --git a/wiki/translations/de/Draft_Heal.md b/wiki/translations/de/Draft_Heal.md index 0893da816e..d506afa398 100644 --- a/wiki/translations/de/Draft_Heal.md +++ b/wiki/translations/de/Draft_Heal.md @@ -6,6 +6,8 @@ SeeAlso:[Hochstufen](Draft_Upgrade/de.md), [Herabstufen](Draft_Downgrade/de.md) --- +# Draft Heal/de + @@ -39,5 +41,5 @@ Dieser Befehl versucht, Objekte aus dem [Draft Arbeitsbereich](Draft_Workbench/d - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Heal/de diff --git a/wiki/translations/de/Draft_Join.md b/wiki/translations/de/Draft_Join.md index cb6fa73da0..3af380282f 100644 --- a/wiki/translations/de/Draft_Join.md +++ b/wiki/translations/de/Draft_Join.md @@ -9,6 +9,8 @@ SeeAlso:[Entwurf Teilen](Draft_Split/de.md) --- +# Draft Join/de + ## Beschreibung Der **Entwurf Verbinden** Befehl verbindet [Entwurf Linien](Draft_Line/de.md) und [Entwurf Drähte](Draft_Wire/de.md) zu einem einzigen Draht. Dieser Befehl ist das Gegenstück zum Befehl [Entwurf Teilen](Draft_Split/de.md). @@ -63,8 +65,5 @@ Draft.join_wires([wire1, wire3, wire2, wire4]) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Join/de diff --git a/wiki/translations/de/Draft_Label.md b/wiki/translations/de/Draft_Label.md index bd961a3f26..a1bc814398 100644 --- a/wiki/translations/de/Draft_Label.md +++ b/wiki/translations/de/Draft_Label.md @@ -9,6 +9,8 @@ Version:0.17 --- +# Draft Label/de + @@ -305,5 +307,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Label/de diff --git a/wiki/translations/de/Draft_Layer.md b/wiki/translations/de/Draft_Layer.md index 638354261c..e84e6a6d72 100644 --- a/wiki/translations/de/Draft_Layer.md +++ b/wiki/translations/de/Draft_Layer.md @@ -8,6 +8,8 @@ SeeAlso:[Draft VisGroup](Draft_VisGroup/de.md) (veraltet) --- +# Draft Layer/de + @@ -145,5 +147,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Layer/de diff --git a/wiki/translations/de/Draft_Line.md b/wiki/translations/de/Draft_Line.md index 7da484a5e6..9b5ebe0947 100644 --- a/wiki/translations/de/Draft_Line.md +++ b/wiki/translations/de/Draft_Line.md @@ -9,6 +9,8 @@ SeeAlso:[Entwurf Draht](Draft_Wire/de.md), [Entwurf Punkt](Draft_Point/de.md) --- +# Draft Line/de + @@ -165,5 +167,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Line/de diff --git a/wiki/translations/de/Draft_Linestyle.md b/wiki/translations/de/Draft_Linestyle.md index 8c05c9d99e..ca793b22ff 100644 --- a/wiki/translations/de/Draft_Linestyle.md +++ b/wiki/translations/de/Draft_Linestyle.md @@ -1,2 +1,5 @@ # Draft Linestyle/de 1. REDIRECT [Draft\_Tray/de](Draft_Tray/de.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Linestyle/de diff --git a/wiki/translations/de/Draft_LinkArray.md b/wiki/translations/de/Draft_LinkArray.md index 4870b9c1a0..4d7cbb3f22 100644 --- a/wiki/translations/de/Draft_LinkArray.md +++ b/wiki/translations/de/Draft_LinkArray.md @@ -1,2 +1,5 @@ # Draft LinkArray/de 1. REDIRECT [Draft\_OrthoArray/de](Draft_OrthoArray/de.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft LinkArray/de diff --git a/wiki/translations/de/Draft_Mirror.md b/wiki/translations/de/Draft_Mirror.md index 934275b107..61b28923bc 100644 --- a/wiki/translations/de/Draft_Mirror.md +++ b/wiki/translations/de/Draft_Mirror.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurf Klonen](Draft_Clone/de.md) --- +# Draft Mirror/de + @@ -139,5 +141,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Mirror/de diff --git a/wiki/translations/de/Draft_Module.md b/wiki/translations/de/Draft_Module.md index 7a05fbb3a5..7c6017e44a 100644 --- a/wiki/translations/de/Draft_Module.md +++ b/wiki/translations/de/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/de 1. REDIRECT [Draft\_Workbench/de](Draft_Workbench/de.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/de diff --git a/wiki/translations/de/Draft_Move.md b/wiki/translations/de/Draft_Move.md index 360ca5b928..cb68faa55c 100644 --- a/wiki/translations/de/Draft_Move.md +++ b/wiki/translations/de/Draft_Move.md @@ -8,6 +8,8 @@ Version:0.7 --- +# Draft Move/de + @@ -158,5 +160,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Move/de diff --git a/wiki/translations/de/Draft_OCA.md b/wiki/translations/de/Draft_OCA.md index 42adcbc27c..59c42fcf24 100644 --- a/wiki/translations/de/Draft_OCA.md +++ b/wiki/translations/de/Draft_OCA.md @@ -1,7 +1,4 @@ # Draft OCA/de - - -
@@ -113,3 +110,6 @@ importOCA.export(objects, "/home/user/Pictures/myfile.oca") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft OCA/de diff --git a/wiki/translations/de/Draft_Offset.md b/wiki/translations/de/Draft_Offset.md index 6ffbc2784f..cad6b3bd0c 100644 --- a/wiki/translations/de/Draft_Offset.md +++ b/wiki/translations/de/Draft_Offset.md @@ -7,6 +7,8 @@ SeeAlso:[Part 2D Versatz](Part_Offset2D/de.md) --- +# Draft Offset/de +
@@ -157,5 +159,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Offset/de diff --git a/wiki/translations/de/Draft_OrthoArray.md b/wiki/translations/de/Draft_OrthoArray.md index 97e26599e7..b630ce1bd3 100644 --- a/wiki/translations/de/Draft_OrthoArray.md +++ b/wiki/translations/de/Draft_OrthoArray.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurf PolaresFeld](Draft_PolarArray/de.md), [Entwurf KreisAnordnung](Draft_CircularArray/de.md), [Entwurf PfadAnordnung](Draft_PathArray/de.md), [Entwurf Punktefeld](Draft_PointArray/de.md), [Entwurf Klonen](Draft_Clone/de.md) --- +# Draft OrthoArray/de + @@ -396,5 +398,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft OrthoArray/de diff --git a/wiki/translations/de/Draft_PathArray.md b/wiki/translations/de/Draft_PathArray.md index 7d0f01980c..717b1a1673 100644 --- a/wiki/translations/de/Draft_PathArray.md +++ b/wiki/translations/de/Draft_PathArray.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurf OrthoAnordnung](Draft_OrthoArray/de.md), [Entwurf PolarArray](Draft_PolarArray/de.md), [Entwurf CircularArray](Draft_CircularArray/de.md), [Entwurf PfadVerknüpfeAnordnung](Draft_PathLinkArray/de.md), [Entwurf PunktAnordnung](Draft_PointArray/de.md), [Entwurf Klonen](Draft_Clone/de.md) --- +# Draft PathArray/de + @@ -316,5 +318,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathArray/de diff --git a/wiki/translations/de/Draft_PathLinkArray.md b/wiki/translations/de/Draft_PathLinkArray.md index 66609ffec8..c84fcade70 100644 --- a/wiki/translations/de/Draft_PathLinkArray.md +++ b/wiki/translations/de/Draft_PathLinkArray.md @@ -7,12 +7,11 @@ SeeAlso:[Draft OrthoArray](Draft_OrthoArray.md), [Draft PolarArray](Draft_PolarArray.md), [Draft CircularArray](Draft_CircularArray.md), [Draft PathArray](Draft_PathArray.md), [Draft PointArray](Draft_PointArray.md), [Draft PointLinkArray](Draft_PointLinkArray.md) --- +# Draft PathLinkArray/de + ## Beschreibung The **Draft PathLinkArray** command creates a [Link](App_Link.md) array from a selected object by placing copies along a path. Use the [Draft PathArray](Draft_PathArray.md) command to create a less efficient regular array instead. Except for the type of array that is created, [Link](App_Link.md) array or regular array, this command is identical to the [Draft PathArray](Draft_PathArray.md) command. See there for more information. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathLinkArray/de diff --git a/wiki/translations/de/Draft_Pattern.md b/wiki/translations/de/Draft_Pattern.md index 7077b0ba75..ec8871b0bb 100644 --- a/wiki/translations/de/Draft_Pattern.md +++ b/wiki/translations/de/Draft_Pattern.md @@ -1,10 +1,4 @@ # Draft Pattern/de - - - - - - {{TOCright}} ## Beschreibung @@ -43,8 +37,5 @@ Siehe auch: [Einstellungseditor](Preferences_Editor/de.md) und [Entwurf Einstell - Der **Bearbeiten → Voreinstellungen... → Entwurf → Sichtbare Einstellungen → Schraffurmuster Auflösung** wird nicht verwendet. - um die **Mustergröße**, die für neue Objekte verwendet wird zu ändern: **Bearbeiten → Einstellungen... → Entwurf → Sichtbare Einstellungen → Schraffurmuster Standardgröße**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Pattern/de diff --git a/wiki/translations/de/Draft_Point.md b/wiki/translations/de/Draft_Point.md index d896016cbe..229c63a82a 100644 --- a/wiki/translations/de/Draft_Point.md +++ b/wiki/translations/de/Draft_Point.md @@ -7,6 +7,8 @@ Version:0.7 --- +# Draft Point/de + ## Beschreibung Der **Entwurf Punkt** Befehl erzeugt einen einfachen Punkt. Entwurf Punkte kann als eine Referenz für die Platzierung von Linien, Drähten oder anderen Objekten nützlich sein. @@ -141,8 +143,5 @@ for i in range(N): doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Point/de diff --git a/wiki/translations/de/Draft_PointArray.md b/wiki/translations/de/Draft_PointArray.md index 8e1cf28e6d..c338caa7a4 100644 --- a/wiki/translations/de/Draft_PointArray.md +++ b/wiki/translations/de/Draft_PointArray.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurf OrthoAnordnung](Draft_OrthoArray/de.md), [Entwurf PolarAnordnung](Draft_PolarArray/de.md), [Entwurf KreisAnordnung](Draft_CircularArray/de.md), [Entwurf PfadAnordnung](Draft_PathArray/de.md), [Entwurf PfadVerweisAnordnung](Draft_PathLinkArray/de.md), [Entwurf PunktVerweisAnordnung](Draft_PointLinkArray/de.md) --- +# Draft PointArray/de + @@ -232,5 +234,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PointArray/de diff --git a/wiki/translations/de/Draft_PointLinkArray.md b/wiki/translations/de/Draft_PointLinkArray.md index df0f4ad91d..6b8974744c 100644 --- a/wiki/translations/de/Draft_PointLinkArray.md +++ b/wiki/translations/de/Draft_PointLinkArray.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Draft PointLinkArray/de + @@ -30,5 +32,5 @@ Das ** - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PointLinkArray/de diff --git a/wiki/translations/de/Draft_PolarArray.md b/wiki/translations/de/Draft_PolarArray.md index 9be728f3b2..9c00c42059 100644 --- a/wiki/translations/de/Draft_PolarArray.md +++ b/wiki/translations/de/Draft_PolarArray.md @@ -7,6 +7,8 @@ SeeAlso:[Anordnung](Draft_Array/de.md), [KreisAnordnung](Draft_CircularArray/de.md), [PfadAnordnung](Draft_PathArray/de.md), [Punkt Anordnung](Draft_PointArray/de.md), [Klonen](Draft_Clone/de.md) --- +# Draft PolarArray/de + @@ -209,5 +211,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PolarArray/de diff --git a/wiki/translations/de/Draft_Polygon.md b/wiki/translations/de/Draft_Polygon.md index 88b61e29e6..f9b7e2837c 100644 --- a/wiki/translations/de/Draft_Polygon.md +++ b/wiki/translations/de/Draft_Polygon.md @@ -9,6 +9,8 @@ SeeAlso:[Entwurf Kreis](Draft_Circle/de.md), [Entwurf Muster](Draft_Pattern/de.md) --- +# Draft Polygon/de + @@ -175,5 +177,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Polygon/de diff --git a/wiki/translations/de/Draft_Polyline.md b/wiki/translations/de/Draft_Polyline.md index 2eecbfa4f5..1aa708a4f5 100644 --- a/wiki/translations/de/Draft_Polyline.md +++ b/wiki/translations/de/Draft_Polyline.md @@ -1,2 +1,5 @@ # Draft Polyline/de 1. REDIRECT [Draft\_Wire/de](Draft_Wire/de.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Polyline/de diff --git a/wiki/translations/de/Draft_Preferences.md b/wiki/translations/de/Draft_Preferences.md index e6ab15ea58..e8b27dc9e1 100644 --- a/wiki/translations/de/Draft_Preferences.md +++ b/wiki/translations/de/Draft_Preferences.md @@ -1,7 +1,4 @@ # Draft Preferences/de - - -
@@ -502,3 +499,6 @@ On the *Texts and dimensions* tab you can specify the following: [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Preferences/de diff --git a/wiki/translations/de/Draft_Rectangle.md b/wiki/translations/de/Draft_Rectangle.md index d5884c5308..6721fa79c8 100644 --- a/wiki/translations/de/Draft_Rectangle.md +++ b/wiki/translations/de/Draft_Rectangle.md @@ -7,6 +7,8 @@ SeeAlso:[Part Box](Part_Box/de.md) --- +# Draft Rectangle/de +
@@ -155,5 +157,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rectangle/de diff --git a/wiki/translations/de/Draft_Rotate.md b/wiki/translations/de/Draft_Rotate.md index ae5b6c3388..8d11277cb5 100644 --- a/wiki/translations/de/Draft_Rotate.md +++ b/wiki/translations/de/Draft_Rotate.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Verschieben](Draft_Move/de.md), [Draft Anordnung](Draft_Array/de.md) --- +# Draft Rotate/de + @@ -189,5 +191,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rotate/de diff --git a/wiki/translations/de/Draft_SVG.md b/wiki/translations/de/Draft_SVG.md index a22ae62ed8..8d7b74a13f 100644 --- a/wiki/translations/de/Draft_SVG.md +++ b/wiki/translations/de/Draft_SVG.md @@ -1,7 +1,4 @@ # Draft SVG/de - - -
@@ -139,3 +136,6 @@ importSVG.export(objects, "/home/user/Pictures/myfile.svg") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SVG/de diff --git a/wiki/translations/de/Draft_Scale.md b/wiki/translations/de/Draft_Scale.md index dd16fcb850..31186ab43a 100644 --- a/wiki/translations/de/Draft_Scale.md +++ b/wiki/translations/de/Draft_Scale.md @@ -7,6 +7,8 @@ SeeAlso:[Klonen](Draft_Clone/de.md), [Versetzen](Draft_Offset/de.md) --- +# Draft Scale/de +
@@ -121,8 +123,5 @@ wires = Draft.scale([wire1, wire2], scale2, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Scale/de diff --git a/wiki/translations/de/Draft_SelectGroup.md b/wiki/translations/de/Draft_SelectGroup.md index 0d7787da64..dbea39d4ac 100644 --- a/wiki/translations/de/Draft_SelectGroup.md +++ b/wiki/translations/de/Draft_SelectGroup.md @@ -7,6 +7,8 @@ SeeAlso:[Std Gruppe](Std_Group/de.md), [Draft Zur Gruppe hinzufügen...](Draft_AddToGroup/de.md), [Draft zur Konstruktionsgruppe hinzufügen](Draft_AddConstruction/de.md), [Draft Autogruppe](Draft_AutoGroup/de.md) --- +# Draft SelectGroup/de + ## Beschreibung Der **Draft Wähle Gruppe**-Befehl selektiert den Inhalt von [Entwurf Schicht](Draft_Layer/de.md), [Std Gruppe](Std_Group/de.md) oder gruppenähnlichen [Arch](Arch_Workbench/de.md)-Objekten. @@ -30,8 +32,5 @@ Der Befehl arbeitet momentan nicht gut mit Ebenen und kann verwirrende Ergebniss - Mehr Informationen über das Organisieren deines Modells findest du in [Documentstruktur](Document_structure/de.md) und [Arch Tutorium](Arch_tutorial/de#Ihr_Modell_organisieren.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectGroup/de diff --git a/wiki/translations/de/Draft_SelectPlane.md b/wiki/translations/de/Draft_SelectPlane.md index 6941855128..5bad663610 100644 --- a/wiki/translations/de/Draft_SelectPlane.md +++ b/wiki/translations/de/Draft_SelectPlane.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurf ArbeitsEbeneProxy](Draft_WorkingPlaneProxy/de.md),[Entwurf GitterUmschalten](Draft_ToggleGrid/de.md) --- +# Draft SelectPlane/de + @@ -184,5 +186,5 @@ print(projection) - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectPlane/de diff --git a/wiki/translations/de/Draft_SetStyle.md b/wiki/translations/de/Draft_SetStyle.md index 9e18f80eab..22ad05f2bc 100644 --- a/wiki/translations/de/Draft_SetStyle.md +++ b/wiki/translations/de/Draft_SetStyle.md @@ -8,6 +8,8 @@ SeeAlso:[Draft AnmerkungsStilEditor](Draft_AnnotationStyleEditor/de.md), [Draft AktuellenStilAnwenden](Draft_ApplyStyle/de.md) --- +# Draft SetStyle/de + ## Beschreibung Der **Draft StilFestlegen**-Befehl legt die Standardstilvorgaben für neue Objekte fest. @@ -139,8 +141,5 @@ Die folgenden Einstellungen sind betroffen: - Einheit anzeigen: **Bearbeiten → Einstellungen... → Draft → Texte und Bemaßungen → Bemaßungseinstellungen → Zeige Maße mit Maßeinheiten an**. - Einheit überschreiben: **Bearbeiten → Einstellungen... → Draft → Texte und Bemaßungen → Bemaßungseinstellungen → Einheit überschreiben**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SetStyle/de diff --git a/wiki/translations/de/Draft_SetWorkingPlaneProxy.md b/wiki/translations/de/Draft_SetWorkingPlaneProxy.md index 7ae868eda2..d3cfb78fcb 100644 --- a/wiki/translations/de/Draft_SetWorkingPlaneProxy.md +++ b/wiki/translations/de/Draft_SetWorkingPlaneProxy.md @@ -1,2 +1,5 @@ # Draft SetWorkingPlaneProxy/de 1. REDIRECT [Draft\_WorkingPlaneProxy/de](Draft_WorkingPlaneProxy/de.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SetWorkingPlaneProxy/de diff --git a/wiki/translations/de/Draft_Shape2DView.md b/wiki/translations/de/Draft_Shape2DView.md index 9d0725b394..898e065adc 100644 --- a/wiki/translations/de/Draft_Shape2DView.md +++ b/wiki/translations/de/Draft_Shape2DView.md @@ -6,6 +6,8 @@ SeeAlso:[Part-Arbeitsbereich](Part_Workbench/de.md), [TechDraw-Arbeitsbereich](TechDraw_Workbench/de.md) --- +# Draft Shape2DView/de + @@ -145,8 +147,5 @@ shape3.ProjectionMode = "Individual Faces" doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Shape2DView/de diff --git a/wiki/translations/de/Draft_ShapeString.md b/wiki/translations/de/Draft_ShapeString.md index c37f0e16d0..12ad6b50f2 100644 --- a/wiki/translations/de/Draft_ShapeString.md +++ b/wiki/translations/de/Draft_ShapeString.md @@ -10,6 +10,8 @@ [Makro Schriftarten Win10 PYMP](Macro_Fonts_Win10_PYMP/de.md) --- +# Draft ShapeString/de + @@ -212,5 +214,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString/de diff --git a/wiki/translations/de/Draft_ShapeString_tutorial.md b/wiki/translations/de/Draft_ShapeString_tutorial.md index d95c13e63e..1d825f5d34 100644 --- a/wiki/translations/de/Draft_ShapeString_tutorial.md +++ b/wiki/translations/de/Draft_ShapeString_tutorial.md @@ -1,5 +1,5 @@ # Draft ShapeString tutorial/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic=Produktgestaltung |Level=Anfänger |Time=30 Minuten @@ -195,4 +195,7 @@ Siehe den Forumsbeitrag, [Wie man FormZeichenfolgen in PartDesign verwendet](htt {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString tutorial/de diff --git a/wiki/translations/de/Draft_ShowSnapBar.md b/wiki/translations/de/Draft_ShowSnapBar.md index bbebdb3367..a8ca255ec4 100644 --- a/wiki/translations/de/Draft_ShowSnapBar.md +++ b/wiki/translations/de/Draft_ShowSnapBar.md @@ -7,6 +7,8 @@ SeeAlso:[Entwurf Fang](Draft_Snap/de.md), [Entwurf UmschaltenFang](Draft_ToggleSnap/de.md) --- +# Draft ShowSnapBar/de + @@ -47,5 +49,5 @@ Dieser Befehl zeigt die [Entwurf Fang](Draft_Snap/de.md) Werkzeugleiste, die die - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShowSnapBar/de diff --git a/wiki/translations/de/Draft_Slope.md b/wiki/translations/de/Draft_Slope.md index b268b347c0..f09b035e6a 100644 --- a/wiki/translations/de/Draft_Slope.md +++ b/wiki/translations/de/Draft_Slope.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Draft Slope/de + @@ -48,5 +50,5 @@ Es gibt keine Python Methode zur Neigung von Objekten. Um die Ergebnisse des Ent - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Slope/de diff --git a/wiki/translations/de/Draft_Snap.md b/wiki/translations/de/Draft_Snap.md index 7b9165c01f..c1fd8a7866 100644 --- a/wiki/translations/de/Draft_Snap.md +++ b/wiki/translations/de/Draft_Snap.md @@ -1,7 +1,4 @@ # Draft Snap/de - - -
@@ -155,5 +152,5 @@ Diese Einstellung wird gespeichert: **|Werkzeuge → Parameter bearbeiten... →
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap/de diff --git a/wiki/translations/de/Draft_Snap_Angle.md b/wiki/translations/de/Draft_Snap_Angle.md index ffa1dc1b02..4a2545ee0a 100644 --- a/wiki/translations/de/Draft_Snap_Angle.md +++ b/wiki/translations/de/Draft_Snap_Angle.md @@ -7,6 +7,8 @@ SeeAlso:[Objektfang](Draft_Snap/de.md), [Objektfang umschalten](Draft_ToggleSnap/de.md) --- +# Draft Snap Angle/de + @@ -75,5 +77,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Angle/de diff --git a/wiki/translations/de/Draft_Snap_Center.md b/wiki/translations/de/Draft_Snap_Center.md index f8c3ce47c2..f6f0a4451c 100644 --- a/wiki/translations/de/Draft_Snap_Center.md +++ b/wiki/translations/de/Draft_Snap_Center.md @@ -7,6 +7,8 @@ SeeAlso:[Objektfang](Draft_Snap/de.md), [Objektfang umschalten](Draft_ToggleSnap/de.md) --- +# Draft Snap Center/de + @@ -57,8 +59,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Center/de diff --git a/wiki/translations/de/Draft_Snap_Dimensions.md b/wiki/translations/de/Draft_Snap_Dimensions.md index a914d70357..58736ba5a7 100644 --- a/wiki/translations/de/Draft_Snap_Dimensions.md +++ b/wiki/translations/de/Draft_Snap_Dimensions.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/de.md), [Arch](Arch_Workbench/de.md) --- +# Draft Snap Dimensions/de + @@ -58,5 +60,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Dimensions/de diff --git a/wiki/translations/de/Draft_Snap_Endpoint.md b/wiki/translations/de/Draft_Snap_Endpoint.md index 7a88429c21..499ad4880e 100644 --- a/wiki/translations/de/Draft_Snap_Endpoint.md +++ b/wiki/translations/de/Draft_Snap_Endpoint.md @@ -7,6 +7,8 @@ SeeAlso:[Objektfang](Draft_Snap/de.md), [Objektfang umschalten](Draft_ToggleSnap/de.md) --- +# Draft Snap Endpoint/de + @@ -55,5 +57,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Endpoint/de diff --git a/wiki/translations/de/Draft_Snap_Extension.md b/wiki/translations/de/Draft_Snap_Extension.md index 66e8f1e0b2..aa6ac074d5 100644 --- a/wiki/translations/de/Draft_Snap_Extension.md +++ b/wiki/translations/de/Draft_Snap_Extension.md @@ -7,6 +7,8 @@ SeeAlso:[Entwurf Fang](Draft_Snap/de.md), [Entwurf UmschaltenFang](Draft_Snap_Lock/de.md) --- +# Draft Snap Extension/de + @@ -62,5 +64,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Extension/de diff --git a/wiki/translations/de/Draft_Snap_Grid.md b/wiki/translations/de/Draft_Snap_Grid.md index 0d0911b856..2f5683166a 100644 --- a/wiki/translations/de/Draft_Snap_Grid.md +++ b/wiki/translations/de/Draft_Snap_Grid.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurfsraster ein-/ausschalten](Draft_ToggleGrid/de.md), [Fangen](Draft_Snap/de.md) --- +# Draft Snap Grid/de + @@ -57,5 +59,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Grid/de diff --git a/wiki/translations/de/Draft_Snap_Intersection.md b/wiki/translations/de/Draft_Snap_Intersection.md index ba46e4d34e..f5f135e595 100644 --- a/wiki/translations/de/Draft_Snap_Intersection.md +++ b/wiki/translations/de/Draft_Snap_Intersection.md @@ -7,6 +7,8 @@ SeeAlso:[Entwurf Fang](Draft_Snap/de.md), [Entwurf UmschaltenFang](Draft_ToggleSnap/de.md) --- +# Draft Snap Intersection/de + @@ -60,5 +62,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Intersection/de diff --git a/wiki/translations/de/Draft_Snap_Lock.md b/wiki/translations/de/Draft_Snap_Lock.md index b80e18337b..41d8fcc94c 100644 --- a/wiki/translations/de/Draft_Snap_Lock.md +++ b/wiki/translations/de/Draft_Snap_Lock.md @@ -7,6 +7,8 @@ SeeAlso:[Entwurf Fang](Draft_Snap/de.md), [Entwurf Umschalten Gitter](Draft_ToggleGrid/de.md) --- +# Draft Snap Lock/de + @@ -44,5 +46,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Lock/de diff --git a/wiki/translations/de/Draft_Snap_Midpoint.md b/wiki/translations/de/Draft_Snap_Midpoint.md index f08379e104..035aac9ad4 100644 --- a/wiki/translations/de/Draft_Snap_Midpoint.md +++ b/wiki/translations/de/Draft_Snap_Midpoint.md @@ -7,6 +7,8 @@ SeeAlso:[Fangen](Draft_Snap/de.md), [Entwurf UmschaltenGitter](Draft_ToggleGrid/de.md) --- +# Draft Snap Midpoint/de + @@ -65,5 +67,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Midpoint/de diff --git a/wiki/translations/de/Draft_Snap_Near.md b/wiki/translations/de/Draft_Snap_Near.md index bc53c9f651..2f0cd51580 100644 --- a/wiki/translations/de/Draft_Snap_Near.md +++ b/wiki/translations/de/Draft_Snap_Near.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Fang](Draft_Snap/de.md), [Draft Fang Schloss](Draft_Snap_Lock.md) --- +# Draft Snap Near/de + @@ -59,5 +61,5 @@ Siehe [Draft Fang Einstellungen](Draft_Snap/de#Einstellungen.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Near/de diff --git a/wiki/translations/de/Draft_Snap_Ortho.md b/wiki/translations/de/Draft_Snap_Ortho.md index a4aa87f0c2..3a5c746c27 100644 --- a/wiki/translations/de/Draft_Snap_Ortho.md +++ b/wiki/translations/de/Draft_Snap_Ortho.md @@ -7,6 +7,8 @@ SeeAlso:[Entwurf Fang](Draft_Snap/de.md), [Entwurf UmschaltenFang](Draft_ToggleSnap/de.md) --- +# Draft Snap Ortho/de + @@ -60,5 +62,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Ortho/de diff --git a/wiki/translations/de/Draft_Snap_Parallel.md b/wiki/translations/de/Draft_Snap_Parallel.md index 0b37e5907e..74b7c8bdea 100644 --- a/wiki/translations/de/Draft_Snap_Parallel.md +++ b/wiki/translations/de/Draft_Snap_Parallel.md @@ -8,6 +8,8 @@ SeeAlso:[Fangen](Draft_Snap/de.md), [Fangen ein/aus](Draft_ToggleSnap/de.md) --- +# Draft Snap Parallel/de + @@ -70,5 +72,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Parallel/de diff --git a/wiki/translations/de/Draft_Snap_Perpendicular.md b/wiki/translations/de/Draft_Snap_Perpendicular.md index d8cb401562..beaaabb57c 100644 --- a/wiki/translations/de/Draft_Snap_Perpendicular.md +++ b/wiki/translations/de/Draft_Snap_Perpendicular.md @@ -7,6 +7,8 @@ SeeAlso:[Fangen](Draft_Snap/de.md), [Fangen ein/aus](Draft_ToggleSnap/de.md) --- +# Draft Snap Perpendicular/de + @@ -62,5 +64,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Perpendicular/de diff --git a/wiki/translations/de/Draft_Snap_Special.md b/wiki/translations/de/Draft_Snap_Special.md index df27ab94b5..0813f27d92 100644 --- a/wiki/translations/de/Draft_Snap_Special.md +++ b/wiki/translations/de/Draft_Snap_Special.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Draft Snap Special/de + @@ -67,5 +69,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Special/de diff --git a/wiki/translations/de/Draft_Snap_WorkingPlane.md b/wiki/translations/de/Draft_Snap_WorkingPlane.md index 79b5fc4849..0f6fb30284 100644 --- a/wiki/translations/de/Draft_Snap_WorkingPlane.md +++ b/wiki/translations/de/Draft_Snap_WorkingPlane.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Objektfang](Draft_Snap/de.md), [Draft Ebene markieren](Draft_SelectPlane/de.md) --- +# Draft Snap WorkingPlane/de + @@ -53,8 +55,5 @@ Diese Methode platziert immer einen neuen Punkt auf der aktuellen [Arbeitsebene] See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap WorkingPlane/de diff --git a/wiki/translations/de/Draft_Split.md b/wiki/translations/de/Draft_Split.md index d3de04c723..6cfa65eb6e 100644 --- a/wiki/translations/de/Draft_Split.md +++ b/wiki/translations/de/Draft_Split.md @@ -9,6 +9,8 @@ SeeAlso:[Entwurf Verbinden](Draft_Join/de.md) --- +# Draft Split/de + ## Beschreibung Der **Entwurf Teilen** Befehl teilt eine [Entwurf Linie](Draft_Line/de.md) oder [Entwurf Draht](Draft_Wire/de.md) an einem bestimmten Punkt oder einer Kante. Dieser Befehl ist das Gegenstück zum Befehl [Entwurf Verbinden](Draft_Join/de.md). @@ -74,8 +76,5 @@ Draft.split(wire, p3, 1) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Split/de diff --git a/wiki/translations/de/Draft_Stretch.md b/wiki/translations/de/Draft_Stretch.md index b7ff4068a1..450ae0e6d9 100644 --- a/wiki/translations/de/Draft_Stretch.md +++ b/wiki/translations/de/Draft_Stretch.md @@ -9,6 +9,8 @@ Version:0.17 --- +# Draft Stretch/de + @@ -83,5 +85,5 @@ There is no Python method to stretch objects. To emulate the results of the Draf - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Stretch/de diff --git a/wiki/translations/de/Draft_SubelementHighlight.md b/wiki/translations/de/Draft_SubelementHighlight.md index 8c21ae11ff..5f14c5751d 100644 --- a/wiki/translations/de/Draft_SubelementHighlight.md +++ b/wiki/translations/de/Draft_SubelementHighlight.md @@ -9,6 +9,8 @@ SeeAlso:[Entwurf Bewegen](Draft_Move/de.md), [Entwurf Drehen](Draft_Rotate/de.md), [Entwurf Skalieren](Draft_Scale/de.md) --- +# Draft SubelementHighlight/de + @@ -49,5 +51,5 @@ Der * - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SubelementHighlight/de diff --git a/wiki/translations/de/Draft_Text.md b/wiki/translations/de/Draft_Text.md index 31649ea30b..a2631bd427 100644 --- a/wiki/translations/de/Draft_Text.md +++ b/wiki/translations/de/Draft_Text.md @@ -9,6 +9,8 @@ Version:0.7 --- +# Draft Text/de + @@ -242,5 +244,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Text/de diff --git a/wiki/translations/de/Draft_ToggleConstructionMode.md b/wiki/translations/de/Draft_ToggleConstructionMode.md index 959c05bcd5..64a929aae1 100644 --- a/wiki/translations/de/Draft_ToggleConstructionMode.md +++ b/wiki/translations/de/Draft_ToggleConstructionMode.md @@ -7,6 +7,8 @@ SeeAlso:[Draft ZurKonstruktionsgruppeHinzufügen](Draft_AddConstruction/de.md) --- +# Draft ToggleConstructionMode/de + ## Beschreibung Der **Draft UmschaltenKonstruktionsmodus**-Befehl schaltet den Draft Konstruktionsmodus ein oder aus. Fall der Konstruktionsmodus eingeschaltet ist, werden neue [Draft](Draft_Workbench/de.md)-Objekte, außer [Draft Punkten](Draft_Point/de.md) in einer dedizierten Gruppe zugeordnet und erhalten eine vordefinierte Farbe. Diese Möglichkeit ist für - oftmals temporäre - Konstruktionsgeometrie gedacht, um für die Erzeugung weiterer Objekte neue [Einrastpunkte](Draft_Snap/de.md) bereitzustellen. Wenn die Konstruktionsgeometrie nicht länger benötigt wird, kann die Konstruktionsgruppe einfach [versteckt](Std_HideSelection/de.md) oder [gelöscht](Std_Delete/de.md) werden. @@ -35,8 +37,5 @@ In FreeCAD Version 0.19 benutzen dieser und der [Draft ZurKonstruktionsgruppeHin - Zur Änderung der Bezeichnung ({{Version/de|0.20}}) der Konstruktionsgruppe: **Bearbeiten → Einstellungen... → Draft → Allgemeine Einstellungen → Konstruktionsgeometrie → Konstruktionsgruppenname**. - Zur Änderung der zu verwendenden Farbe: **Bearbeiten → Einstellungen... → Draft → Allgemeine Einstellungen → Konstruktionsgeometrie → Hilfsgeometriefarbe**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleConstructionMode/de diff --git a/wiki/translations/de/Draft_ToggleContinueMode.md b/wiki/translations/de/Draft_ToggleContinueMode.md index 216b5bf42a..8a1b9c62cc 100644 --- a/wiki/translations/de/Draft_ToggleContinueMode.md +++ b/wiki/translations/de/Draft_ToggleContinueMode.md @@ -6,6 +6,8 @@ MenuLocation:Enwurf → Dienstprogramme → In den Fortsetzungsmodus umschalten --- +# Draft ToggleContinueMode/de + @@ -35,8 +37,5 @@ Einige Werkzeuge der Draft- und Arch-Arbeitsbereiche bieten ein Nächstes-Ankreu - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleContinueMode/de diff --git a/wiki/translations/de/Draft_ToggleDisplayMode.md b/wiki/translations/de/Draft_ToggleDisplayMode.md index d13674d15b..4cd0d389f9 100644 --- a/wiki/translations/de/Draft_ToggleDisplayMode.md +++ b/wiki/translations/de/Draft_ToggleDisplayMode.md @@ -7,6 +7,8 @@ Shortcut:**Shift**+**Space** --- +# Draft ToggleDisplayMode/de + @@ -26,8 +28,5 @@ The **D - Select the **Utilities → Toggle normal/wireframe display** option from the [Tree view](Tree_view.md) or [3D view](3D_view.md) context menu. - Use the keyboard shortcut: **Shift**+**Space**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleDisplayMode/de diff --git a/wiki/translations/de/Draft_ToggleGrid.md b/wiki/translations/de/Draft_ToggleGrid.md index bbce7578b7..7d96cff52d 100644 --- a/wiki/translations/de/Draft_ToggleGrid.md +++ b/wiki/translations/de/Draft_ToggleGrid.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurf Fang](Draft_Snap/de.md), [Entwurf UmschaltenFang](Draft_ToggleSnap/de.md) --- +# Draft ToggleGrid/de + @@ -60,5 +62,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleGrid/de diff --git a/wiki/translations/de/Draft_Tray.md b/wiki/translations/de/Draft_Tray.md index 0657e2c06d..e631847aa0 100644 --- a/wiki/translations/de/Draft_Tray.md +++ b/wiki/translations/de/Draft_Tray.md @@ -1,10 +1,4 @@ # Draft Tray/de - - - - - - {{TOCright}} ## Description @@ -31,8 +25,5 @@ Die [Entwurf Ablage](Entwurf_Ablage.md) erlaubt dir, die visuellen Eigenschaften - ![](images/Draft_tray_button_layer.png ) [AutoGroup](Draft_AutoGroup.md): changes the active [Draft Layer](Draft_Layer.md) or, optionally, the active [Std Group](Std_Group.md) or group-like [Arch](Arch_Workbench.md) object. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Tray/de diff --git a/wiki/translations/de/Draft_Trimex.md b/wiki/translations/de/Draft_Trimex.md index ec1781ef37..797c52221c 100644 --- a/wiki/translations/de/Draft_Trimex.md +++ b/wiki/translations/de/Draft_Trimex.md @@ -7,6 +7,8 @@ SeeAlso:[Part Extrudieren](Part_Extrude/de.md) --- +# Draft Trimex/de + @@ -160,5 +162,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Trimex/de diff --git a/wiki/translations/de/Draft_UndoLine.md b/wiki/translations/de/Draft_UndoLine.md index 9a5dec1563..7e59d3f2af 100644 --- a/wiki/translations/de/Draft_UndoLine.md +++ b/wiki/translations/de/Draft_UndoLine.md @@ -1,2 +1,5 @@ # Draft UndoLine/de 1. REDIRECT [Draft\_Wire/de](Draft_Wire/de.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft UndoLine/de diff --git a/wiki/translations/de/Draft_Upgrade.md b/wiki/translations/de/Draft_Upgrade.md index 143f6d57e9..125e58fe0c 100644 --- a/wiki/translations/de/Draft_Upgrade.md +++ b/wiki/translations/de/Draft_Upgrade.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurf Herabstufen](Draft_Downgrade/de.md) --- +# Draft Upgrade/de + ## Beschreibung @@ -86,8 +88,5 @@ add_list5, delete_list5 = Draft.upgrade(face, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Upgrade/de diff --git a/wiki/translations/de/Draft_Wire.md b/wiki/translations/de/Draft_Wire.md index 88040f1191..b025634a0e 100644 --- a/wiki/translations/de/Draft_Wire.md +++ b/wiki/translations/de/Draft_Wire.md @@ -9,6 +9,8 @@ SeeAlso:[Entwurf Linie](Draft_Line/de.md), [Entwurf BSpline](Draft_BSpline/de.md) --- +# Draft Wire/de + @@ -215,5 +217,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Wire/de diff --git a/wiki/translations/de/Draft_WireToBSpline.md b/wiki/translations/de/Draft_WireToBSpline.md index 98907d6525..65fff6671d 100644 --- a/wiki/translations/de/Draft_WireToBSpline.md +++ b/wiki/translations/de/Draft_WireToBSpline.md @@ -7,6 +7,8 @@ SeeAlso:[Entwurf Draht](Draft_Wire/de.md), [Entwurf BSpline](Draft_BSpline/de.md) --- +# Draft WireToBSpline/de + ## Beschreibung Der **Entwurf DrahtZuBSpline** Befehl konvertiert [Entwurf Drähte](Draft_Wire/de.md) in [Entwurf BSplines](Draft_BSpline/de.md) und umgekehrt. @@ -58,8 +60,5 @@ wire_from_spline = Draft.make_wire(points2) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WireToBSpline/de diff --git a/wiki/translations/de/Draft_Workbench.md b/wiki/translations/de/Draft_Workbench.md index cecce6a1f3..ed0e54db54 100644 --- a/wiki/translations/de/Draft_Workbench.md +++ b/wiki/translations/de/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/de - - - - - -Entwurf Arbeitsbereich Symbol +# Entwurf Arbeitsbereich Symbol Draft Workbench/de {{TOCright}} @@ -438,3 +432,6 @@ Der Einblick in den Code dieses Moduls ist nützlich, um zu verstehen, wie die P [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/de diff --git a/wiki/translations/de/Draft_WorkingPlaneProxy.md b/wiki/translations/de/Draft_WorkingPlaneProxy.md index 9af3c774e7..254ecb6dfe 100644 --- a/wiki/translations/de/Draft_WorkingPlaneProxy.md +++ b/wiki/translations/de/Draft_WorkingPlaneProxy.md @@ -7,6 +7,8 @@ SeeAlso:[Entwurf WähleEbene](Draft_SelectPlane/de.md) --- +# Draft WorkingPlaneProxy/de + @@ -168,5 +170,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WorkingPlaneProxy/de diff --git a/wiki/translations/de/Draft_tutorial.md b/wiki/translations/de/Draft_tutorial.md index f30b30f763..230a26b32e 100644 --- a/wiki/translations/de/Draft_tutorial.md +++ b/wiki/translations/de/Draft_tutorial.md @@ -1,7 +1,4 @@ # Draft tutorial/de - - - {{TutorialInfo/de |Topic= Technisches Zeichnen |Level= Anfänger @@ -229,4 +226,7 @@ Der [Entwurf Arbeitsbereich](Draft_Workbench/de.md) ähnelt in vielerlei Hinsich {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft tutorial/de diff --git a/wiki/translations/de/Drawing.md b/wiki/translations/de/Drawing.md index f4538d76d0..12e0ca6422 100644 --- a/wiki/translations/de/Drawing.md +++ b/wiki/translations/de/Drawing.md @@ -1,6 +1,4 @@ # Drawing/de - - ## Einführung In FreeCAD wird das Wort \"[Zeichnung](Drawing/de.md)\" normalerweise verwendet, um sich auf eine 2D Projektion eines [3D Modells](model/de.md) zu beziehen. Diese wird normalerweise mit dem [TechDraw Arbeitsbereich](TechDraw_Workbench/de.md) erstellt. @@ -31,3 +29,6 @@ Wenn jedoch mehr Präzision erforderlich ist, muss eine Unterscheidung getroffen }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Drawing/de diff --git a/wiki/translations/de/Drawing_Annotation.md b/wiki/translations/de/Drawing_Annotation.md index 0be6aa6aa2..8c9e043f63 100644 --- a/wiki/translations/de/Drawing_Annotation.md +++ b/wiki/translations/de/Drawing_Annotation.md @@ -5,6 +5,8 @@ MenuLocation:Drawing → Bemerkung Shortcut:none --- +# Drawing Annotation/de + **Die Entwicklung des Drawing-Moduls wurde gestoppt und ein neuer in v0.17 eingeführter [TechDraw-Arbeitsbereich](TechDraw_Workbench/de.md) zielt darauf, es zu setzen. Beide Module stehen in v0.17 zur Verfügung, aber das Drawing-Modul könnte in zukünftigen Ausgaben entfernt werden.** @@ -32,4 +34,7 @@ Dieser Befehl erlaubt, einen Textblock auf einer [Zeichnungsseite](Drawing_Lands {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Annotation/de diff --git a/wiki/translations/de/Drawing_Clip.md b/wiki/translations/de/Drawing_Clip.md index 48d6b73b0d..bb7e535d47 100644 --- a/wiki/translations/de/Drawing_Clip.md +++ b/wiki/translations/de/Drawing_Clip.md @@ -1,3 +1,4 @@ +# Drawing Clip/de --- - GuiCommand:/de Name/de:Drawing Ausschnitt Workbenches:[[Drawing Workbench/de Drawing]], Complete|MenuLocation:Drawing → Ausschnitt Shortcut:- SeeAlso:---- @@ -37,4 +38,7 @@ Dieser Befehl erlaubt, ein beschneidendes Rechteck auf einer [Zeichnungsseite](D {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Clip/de diff --git a/wiki/translations/de/Drawing_Landscape_A3.md b/wiki/translations/de/Drawing_Landscape_A3.md index 7ffc9e3500..0d27ead68f 100644 --- a/wiki/translations/de/Drawing_Landscape_A3.md +++ b/wiki/translations/de/Drawing_Landscape_A3.md @@ -7,6 +7,8 @@ Shortcut:none --- +# Drawing Landscape A3/de + **Die Entwicklung des Drawing-Arbeitsbereich wurde gestoppt und ein neuer in v0.17 eingeführter [TechDraw-Arbeitsbereich](TechDraw_Workbench/de.md) zielt darauf, es zu setzen. Beide Module stehen in v0.17 zur Verfügung, aber das Drawing-Arbeitsbereich könnte in zukünftigen Ausgaben entfernt werden.** @@ -37,4 +39,7 @@ Wenn die Seite nicht angezeigt wird, klicke auf das [Drawing](Drawing_Workbench.md) > Drawing Landscape A3/de diff --git a/wiki/translations/de/Drawing_Module.md b/wiki/translations/de/Drawing_Module.md index 45abd9f98d..c592cd4873 100644 --- a/wiki/translations/de/Drawing_Module.md +++ b/wiki/translations/de/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/de 1. REDIRECT [Drawing\_Workbench/de](Drawing_Workbench/de.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/de diff --git a/wiki/translations/de/Drawing_Open_SVG.md b/wiki/translations/de/Drawing_Open_SVG.md index 8e43a8faf0..adf7c02eef 100644 --- a/wiki/translations/de/Drawing_Open_SVG.md +++ b/wiki/translations/de/Drawing_Open_SVG.md @@ -1,3 +1,4 @@ +# Drawing Open SVG/de --- - GuiCommand:/de Name:Drawing Open SVG @@ -18,4 +19,7 @@ Dieses Werkzeug öffnet ein Zeichenblatt, das als SVG- (scalable vector graphics {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Open SVG/de diff --git a/wiki/translations/de/Drawing_Openbrowser.md b/wiki/translations/de/Drawing_Openbrowser.md index 1bbbf9ba87..90d5778590 100644 --- a/wiki/translations/de/Drawing_Openbrowser.md +++ b/wiki/translations/de/Drawing_Openbrowser.md @@ -7,6 +7,8 @@ Shortcut:none --- +# Drawing Openbrowser/de + ## Beschreibung Mit diesem Befehl kannst Du eine ausgewählte [Drawing page](Drawing_Landscape_A3.md) mit dem internen Webbrowser von FreeCAD anzeigen. Der normale Drawing Page Betrachter von FreeCAD basiert auf [Qt\'s eingebautem SVG Rendering Modul](http://qt-project.org/doc/qt-5.0/qtsvg/svgrendering.html), das nur eine winzige Teilmenge der vollständigen SVG Spezifikation unterstützt. Daher werden einige fortgeschrittenere SVG Funktionen wie Muster Füllen oder mehrzeilige Texte von diesem Betrachter nicht unterstützt. Der FreeCAD interne Webbrowser basiert jedoch auf [webkit](http://en.wikipedia.org/wiki/WebKit), einem der besten SVG Renderer auf dem Markt, der deine Seite mit all ihren Funktionen korrekt darstellt. @@ -35,4 +37,7 @@ Mit diesem Befehl kannst Du eine ausgewählte [Drawing page](Drawing_Landscape_A {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Openbrowser/de diff --git a/wiki/translations/de/Drawing_Orthoviews.md b/wiki/translations/de/Drawing_Orthoviews.md index f10f9bf1e5..2768570c33 100644 --- a/wiki/translations/de/Drawing_Orthoviews.md +++ b/wiki/translations/de/Drawing_Orthoviews.md @@ -1,3 +1,4 @@ +# Drawing Orthoviews/de --- - GuiCommand: Name:Drawing Orthoviews Workbenches:[MenuLocation:Drawing → Insert orthographic views Shortcut:none SeeAlso:[[Drawing Landscape A3|Drawing Landscape A3](Drawing_Workbench___Drawing]],_Complete.md)--- @@ -56,4 +57,7 @@ To be added {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Orthoviews/de diff --git a/wiki/translations/de/Drawing_ProjectShape.md b/wiki/translations/de/Drawing_ProjectShape.md index a76621405c..b752218737 100644 --- a/wiki/translations/de/Drawing_ProjectShape.md +++ b/wiki/translations/de/Drawing_ProjectShape.md @@ -7,6 +7,8 @@ MenuLocation:Drawing → Project shape --- +# Drawing ProjectShape/de + ## Description This tool creates a projection of the selected object (Source) in the 3D view. @@ -106,4 +108,7 @@ This tool creates a projection of the selected object (Source) in the 3D view. {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing ProjectShape/de diff --git a/wiki/translations/de/Drawing_Template_HowTo.md b/wiki/translations/de/Drawing_Template_HowTo.md index 265f78471c..1de245625f 100644 --- a/wiki/translations/de/Drawing_Template_HowTo.md +++ b/wiki/translations/de/Drawing_Template_HowTo.md @@ -1,7 +1,4 @@ # Drawing Template HowTo/de - - - **The [Drawing Workbench](Drawing_Workbench.md) became obsolete in v0.17. Consider using the [TechDraw Workbench](TechDraw_Workbench.md) instead.** @@ -219,4 +216,7 @@ The two tools used in this tutorial were Inkscape and Kate. They can be found by {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Template HowTo/de diff --git a/wiki/translations/de/Drawing_View.md b/wiki/translations/de/Drawing_View.md index 2c31bcaedb..aaeb5c24ab 100644 --- a/wiki/translations/de/Drawing_View.md +++ b/wiki/translations/de/Drawing_View.md @@ -1,3 +1,4 @@ +# Drawing View/de --- - GuiCommand:/de Name:Drawing View @@ -58,4 +59,7 @@ Falls Du nach der Umschaltung in perspektivisch-orthogonal in der 3D-Ansicht suc {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing View/de diff --git a/wiki/translations/de/Drawing_Workbench.md b/wiki/translations/de/Drawing_Workbench.md index 72069b9924..1e4611f448 100644 --- a/wiki/translations/de/Drawing_Workbench.md +++ b/wiki/translations/de/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/de - - - **Entwicklung des [Zeichnung Arbeitsbereich](Drawing_Workbench/de.md) wurde in FreeCAD v0.16 gestoppt und der neue in v0.17 eingeführte [TechDraw Arbeitsbereich](TechDraw_Workbench/de.md) zielt darauf, ihn zu ersetzen. Beide Arbeitsbereiche werden in v0.17 bereitgestellt, aber der Zeichnung Arbeitsbereich könnte in zukünftigen Ausgaben entfernt werden.** Drawing workbench icon @@ -84,3 +81,6 @@ Einige Hinweise auf der Programmierseite des Zeichenmoduls werden auf der Seite }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/de diff --git a/wiki/translations/de/Drawing_templates.md b/wiki/translations/de/Drawing_templates.md index 64a826c583..a6230c8d5f 100644 --- a/wiki/translations/de/Drawing_templates.md +++ b/wiki/translations/de/Drawing_templates.md @@ -1,7 +1,4 @@ # Drawing templates/de - - - **The [Drawing Workbench](Drawing_Workbench.md) became obsolete in v0.17. Consider using the [TechDraw Workbench](TechDraw_Workbench.md) instead.** @@ -268,3 +265,6 @@ The two lines that FreeCAD will be looking for are \"\$blocks\" and \"\$entities }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing templates/de diff --git a/wiki/translations/de/Drawing_tutorial.md b/wiki/translations/de/Drawing_tutorial.md index bc99bb3dd5..8cf0d6e601 100644 --- a/wiki/translations/de/Drawing_tutorial.md +++ b/wiki/translations/de/Drawing_tutorial.md @@ -1,5 +1,5 @@ # Drawing tutorial/de - **Entwicklung des [Drawing Arbeitsbereich](Drawing_Workbench/de.md) wurde in FreeCAD v0.16 gestoppt und der neue in v0.17 eingeführte [TechDraw-Arbeitsbereich](TechDraw_Workbench/de.md) zielt darauf, ihn zu ersetzen. Beide Arbeitsbereiche werden in v0.17 bereitgestellt, aber der Drawing-Arbeitsbereich könnte in zukünftigen Ausgaben entfernt werden.** +**Entwicklung des [Drawing Arbeitsbereich](Drawing_Workbench/de.md) wurde in FreeCAD v0.16 gestoppt und der neue in v0.17 eingeführte [TechDraw-Arbeitsbereich](TechDraw_Workbench/de.md) zielt darauf, ihn zu ersetzen. Beide Arbeitsbereiche werden in v0.17 bereitgestellt, aber der Drawing-Arbeitsbereich könnte in zukünftigen Ausgaben entfernt werden.** {{TutorialInfo/de @@ -111,4 +111,7 @@ Wir sind nun fertig mit dem grundlegenden Arbeitsablauf für den [Drawing-Arbeit {{Tutorials navi -}} {{Drawing Tools navi}} +}} {{Drawing Tools navi}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing tutorial/de diff --git a/wiki/translations/de/Dxf_Importer_Install.md b/wiki/translations/de/Dxf_Importer_Install.md index 4266a403a4..4ea5834c39 100644 --- a/wiki/translations/de/Dxf_Importer_Install.md +++ b/wiki/translations/de/Dxf_Importer_Install.md @@ -1,7 +1,4 @@ # Dxf Importer Install/de - - - {{TutorialInfo/de |Topic=Musterklasse |Level=Durchschnittlicher Anwender @@ -185,3 +182,6 @@ Teigha verwenden. Teigha ist ein vollwertiges Programm und Du kannst es auch ohn ### Verweise Video Anleitung [FreeCAD Tutorial 24 - DXF/DWG Import](https://www.youtube.com/watch?v=wHxTWuDhc3M) + +--- +[documentation index](../README.md) > Dxf Importer Install/de diff --git a/wiki/translations/de/Embedding_FreeCAD.md b/wiki/translations/de/Embedding_FreeCAD.md index 6c2fc4583e..0a018553e6 100644 --- a/wiki/translations/de/Embedding_FreeCAD.md +++ b/wiki/translations/de/Embedding_FreeCAD.md @@ -1,7 +1,4 @@ # Embedding FreeCAD/de - - - {{TOCright}} ## Einführung @@ -134,3 +131,6 @@ Weil das FreeCAD-Python-Modul aus C++ kompiliert wurde (anstatt ein reines Pytho }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCAD/de diff --git a/wiki/translations/de/Embedding_FreeCADGui.md b/wiki/translations/de/Embedding_FreeCADGui.md index 8c68be3198..74049ecd39 100644 --- a/wiki/translations/de/Embedding_FreeCADGui.md +++ b/wiki/translations/de/Embedding_FreeCADGui.md @@ -1,6 +1,4 @@ # Embedding FreeCADGui/de - - ## Introduction It is possible to [import the FreeCAD module](Embedding_FreeCAD.md) into a [Python](Python.md) application, and use all its tools from the host application, but the graphical user interface (GUI) can be imported as a Python module as well. Normally you can only import the complete interface as a whole, not pieces of it; this is because the FreeCAD interface system is not only made of independent widgets and toolbars, but is a complex construction where several invisible components (such as the selection system, etc) are needed for the main [3D view](3D_view.md) to be able to function. @@ -488,3 +486,6 @@ In the source code there are examples of embedding FreeCAD with various graphica }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCADGui/de diff --git a/wiki/translations/de/Engine_Block_Tutorial.md b/wiki/translations/de/Engine_Block_Tutorial.md index 7dae147324..874faac7a9 100644 --- a/wiki/translations/de/Engine_Block_Tutorial.md +++ b/wiki/translations/de/Engine_Block_Tutorial.md @@ -1,5 +1,5 @@ # Engine Block Tutorial/de - } {{TutorialInfo/de +} {{TutorialInfo/de |Topic=Part Arbeitsbereich |Level=Anfänger |Time=1 Stunde @@ -170,6 +170,5 @@ Jetzt, wo wir 3D Objekte für die Bohrungsöffnungen und die äußere Form haben Dein endgültiges Objekt sollte wie auf dem Bild rechts aussehen. - - - +--- +[documentation index](../README.md) > Engine Block Tutorial/de diff --git a/wiki/translations/de/Export_to_STL_or_OBJ.md b/wiki/translations/de/Export_to_STL_or_OBJ.md index e5537fdd67..931d3c9e06 100644 --- a/wiki/translations/de/Export_to_STL_or_OBJ.md +++ b/wiki/translations/de/Export_to_STL_or_OBJ.md @@ -1,7 +1,4 @@ # Export to STL or OBJ/de - - - {{TutorialInfo/de |Topic= Export nach STL oder OBJ |Level=Anfänger @@ -60,3 +57,6 @@ Methode 2 ist zu bevorzugen: Wenn Du mehr als einen Body zu konvertieren hast, k [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Export to STL or OBJ/de diff --git a/wiki/translations/de/Expressions.md b/wiki/translations/de/Expressions.md index 702207bd7d..403bd25da5 100644 --- a/wiki/translations/de/Expressions.md +++ b/wiki/translations/de/Expressions.md @@ -1,5 +1,5 @@ # Expressions/de - {{TOCright}} +{{TOCright}} ## Übersicht @@ -536,3 +536,6 @@ Natürlich liegt es bei dir, die zugehörigen Dokumente später zu laden, wenn d }} [Category:Spreadsheet](Category:Spreadsheet.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Category:Spreadsheet.md) > Expressions/de diff --git a/wiki/translations/de/Extend_FEM_Module.md b/wiki/translations/de/Extend_FEM_Module.md index 749f3afc56..f79440e14d 100644 --- a/wiki/translations/de/Extend_FEM_Module.md +++ b/wiki/translations/de/Extend_FEM_Module.md @@ -1,7 +1,4 @@ # Extend FEM Module/de - - -
@@ -140,3 +137,6 @@ Constraints define boundary conditions for the problem that shall be solved. In Adding new constraints is quite straight forward. For newcomers there is a tutorial: [Add FEM constraint tutorial](Add_FEM_constraint_tutorial.md). [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Extend FEM Module/de diff --git a/wiki/translations/de/External_workbench_list.md b/wiki/translations/de/External_workbench_list.md index 3147aed2bd..baf79a8420 100644 --- a/wiki/translations/de/External_workbench_list.md +++ b/wiki/translations/de/External_workbench_list.md @@ -1,2 +1,5 @@ # External workbench list/de 1. REDIRECT [External\_workbenches/de](External_workbenches/de.md) + +--- +[documentation index](../README.md) > External workbench list/de diff --git a/wiki/translations/de/External_workbenches.md b/wiki/translations/de/External_workbenches.md index ef375e302e..0dd1eafdd4 100644 --- a/wiki/translations/de/External_workbenches.md +++ b/wiki/translations/de/External_workbenches.md @@ -1,10 +1,4 @@ # External workbenches/de - - - - - - {{TOCright}} ## Einführung @@ -246,3 +240,6 @@ Weitere Informationen findest du auf der Wiki Seite [Übersetzen eines externen [Category:Addons](Category:Addons.md) [\*](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > External workbenches/de diff --git a/wiki/translations/de/Extra_python_modules.md b/wiki/translations/de/Extra_python_modules.md index 3de87de087..0d08103fef 100644 --- a/wiki/translations/de/Extra_python_modules.md +++ b/wiki/translations/de/Extra_python_modules.md @@ -1,10 +1,4 @@ # Extra python modules/de - - - - - - {{TOCright}} ## Überblick @@ -719,3 +713,6 @@ utils = LazyLoader('PathScripts', globals(), 'PathScripts.PathUtils') [Category:Python Code](Category:Python_Code.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > Extra python modules/de diff --git a/wiki/translations/de/FAQ.md b/wiki/translations/de/FAQ.md index 02d76a57e6..8e300d4228 100644 --- a/wiki/translations/de/FAQ.md +++ b/wiki/translations/de/FAQ.md @@ -1,2 +1,5 @@ # FAQ/de 1. REDIRECT [Frequently\_asked\_questions/de](Frequently_asked_questions/de.md) + +--- +[documentation index](../README.md) > FAQ/de diff --git a/wiki/translations/de/FCGear_BevelGear.md b/wiki/translations/de/FCGear_BevelGear.md index 776a53ad76..378dcdb81c 100644 --- a/wiki/translations/de/FCGear_BevelGear.md +++ b/wiki/translations/de/FCGear_BevelGear.md @@ -7,6 +7,8 @@ Version:v0.16 --- +# FCGear BevelGear/de + ## Beschreibung Unter anderem wegen der Geräuschentwicklung werden Kegelzahnräder nicht so häufig eingesetzt wie andere Getriebearten. Sie werden aber immer noch in bestimmten Bereichen eingesetzt, z. B. bei Nahrungsmittelverpackung und Lebensmittelkonserven, Grünflächen- und Gartengeräten, Maschinen wie Bohrmaschinen und Fräsen, Verdichtersysteme für den Gas- und Ölmarkt und Durchflußregelventilen. @@ -106,3 +108,6 @@ Substantiv Referenz Kegelwinkel \[TECH.\] [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear BevelGear/de diff --git a/wiki/translations/de/FCGear_CrownGear.md b/wiki/translations/de/FCGear_CrownGear.md index 708837980d..eece2d9c71 100644 --- a/wiki/translations/de/FCGear_CrownGear.md +++ b/wiki/translations/de/FCGear_CrownGear.md @@ -8,6 +8,8 @@ SeeAlso:[[FCGear InvoluteGear]] --- +# FCGear CrownGear/de + ## Beschreibung The crown wheel resembles a ring-shaped curved rack. The pressure angle decreases continuously from the outer to the inner diameter. Thus, the variable peripheral speed at the crown wheel is compensated against the constant peripheral speed of the pinion. The pointed outer teeth and the steep tooth flanks on the inner diameter limit the usable tooth width. Crown gears achieve similar efficiencies as spur gears. One crown gear can drive several pinions. @@ -118,3 +120,6 @@ No limitations are known. [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear CrownGear/de diff --git a/wiki/translations/de/FCGear_CycloideGear.md b/wiki/translations/de/FCGear_CycloideGear.md index 0a37aca553..e7cd380acf 100644 --- a/wiki/translations/de/FCGear_CycloideGear.md +++ b/wiki/translations/de/FCGear_CycloideGear.md @@ -8,6 +8,8 @@ SeeAlso:[[FCGear InvoluteGear]] --- +# FCGear CycloideGear/de + ## Beschreibung Cycloidal gears are very sensitive to an inaccurate adjustment of the centre distance, which then leads to a change in the transmission ratio. For these reasons, cycloidal gears are hardly found in mechanical engineering but are only used in special cases such as in the watch industry, for roots type blowers or for the drive of gear racks. @@ -94,3 +96,6 @@ For more information see [Create an Involute rack](FCGear_InvoluteRack.md)). @@ -237,3 +239,6 @@ Gui.SendMsgToActiveView("ViewFit") ``` [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear InvoluteGear/de diff --git a/wiki/translations/de/FCGear_InvoluteRack.md b/wiki/translations/de/FCGear_InvoluteRack.md index e789511677..f19c7be4e9 100644 --- a/wiki/translations/de/FCGear_InvoluteRack.md +++ b/wiki/translations/de/FCGear_InvoluteRack.md @@ -8,6 +8,8 @@ SeeAlso:[[FCGear InvoluteGear]] --- +# FCGear InvoluteRack/de + ## Beschreibung Gear racks are used to convert a rotary motion into a linear motion or vice versa. The following examples show the different applications: @@ -118,3 +120,6 @@ Gui.SendMsgToActiveView("ViewFit") ``` [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear InvoluteRack/de diff --git a/wiki/translations/de/FCGear_LanternGear.md b/wiki/translations/de/FCGear_LanternGear.md index e7218f3cda..926edc9ce0 100644 --- a/wiki/translations/de/FCGear_LanternGear.md +++ b/wiki/translations/de/FCGear_LanternGear.md @@ -9,6 +9,8 @@ SeeAlso: --- +# FCGear LanternGear/de + ## Beschreibung Die Triebstockverzahnung ist eine Sonderform der Zykloidenverzahnung, bei der Wälzkreis und Teilkreis gleich groß sind. Außerdem werden die Zähne des größeren Rades in einem Getriebe durch Zylinder ersetzt. Das kleine Rad erhält eine Zykloidenverzahnung. Daraus ergibt sich eine einseitige Punktverzahnung. Triebstockverzahnungen können nur gerade verzahnt sein. @@ -81,3 +83,6 @@ Begrenzungen sind noch nicht bekannt. [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear LanternGear/de diff --git a/wiki/translations/de/FCGear_Workbench.md b/wiki/translations/de/FCGear_Workbench.md index 7c0055c2af..2c8ac9a505 100644 --- a/wiki/translations/de/FCGear_Workbench.md +++ b/wiki/translations/de/FCGear_Workbench.md @@ -1,5 +1,4 @@ -# FCGear Workbench/de - Symbol Externer Arbeitsbereich FCZahnrad +# Symbol Externer Arbeitsbereich FCZahnrad FCGear Workbench/de ## Einführung @@ -164,3 +163,6 @@ Siehe Anweisungen für Linux oben [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) + +--- +[documentation index](../README.md) > FCGear Workbench/de diff --git a/wiki/translations/de/FCGear_WormGear.md b/wiki/translations/de/FCGear_WormGear.md index e5b7a82324..615f5e4fc0 100644 --- a/wiki/translations/de/FCGear_WormGear.md +++ b/wiki/translations/de/FCGear_WormGear.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign InvoluteGear](PartDesign_InvoluteGear.md) --- +# FCGear WormGear/de + ## Beschreibung The worm can be considered a special case of a helical gear. Imagine that there is only one tooth on a spur gear. Now increase the helix angle so much that the tooth winds around the spur gear several times before it emerges on the opposite side. The result would be a single thread worm. @@ -107,3 +109,6 @@ The worm wheel must be designed manually. For this purpose **FCGear InvoluteGear [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear WormGear/de diff --git a/wiki/translations/de/FEM_Analysis.md b/wiki/translations/de/FEM_Analysis.md index 098fda957b..beababe182 100644 --- a/wiki/translations/de/FEM_Analysis.md +++ b/wiki/translations/de/FEM_Analysis.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Tutorium](FEM_tutorial/de.md) --- +# FEM Analysis/de +
@@ -99,4 +101,7 @@ App.ActiveDocument.MechanicalAnalysis.Member = member {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Analysis/de diff --git a/wiki/translations/de/FEM_Beginner_tutorial.md b/wiki/translations/de/FEM_Beginner_tutorial.md index 4f11f28cc3..6fbf9f9e13 100644 --- a/wiki/translations/de/FEM_Beginner_tutorial.md +++ b/wiki/translations/de/FEM_Beginner_tutorial.md @@ -1,5 +1,5 @@ # FEM Beginner tutorial/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic= FEM Anfänger Tutorium |Level= Anfänger |Time= @@ -40,7 +40,5 @@ ZuTun ZuTun - - - - +--- +[documentation index](../README.md) > FEM Beginner tutorial/de diff --git a/wiki/translations/de/FEM_CalculiX_Cantilever_3D.md b/wiki/translations/de/FEM_CalculiX_Cantilever_3D.md index 42855536a5..c93a8d3329 100644 --- a/wiki/translations/de/FEM_CalculiX_Cantilever_3D.md +++ b/wiki/translations/de/FEM_CalculiX_Cantilever_3D.md @@ -1,7 +1,4 @@ # FEM CalculiX Cantilever 3D/de - - -
@@ -135,4 +132,7 @@ This example is meant to show how a simple Finite Element Analysis (**FEA**) in {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM CalculiX Cantilever 3D/de diff --git a/wiki/translations/de/FEM_ConstraintBodyHeatSource.md b/wiki/translations/de/FEM_ConstraintBodyHeatSource.md index 0a723a4755..d06c6f506d 100644 --- a/wiki/translations/de/FEM_ConstraintBodyHeatSource.md +++ b/wiki/translations/de/FEM_ConstraintBodyHeatSource.md @@ -9,6 +9,8 @@ SeeAlso:[FEM Tutorium](FEM_tutorial/de.md) --- +# FEM ConstraintBodyHeatSource/de +
@@ -47,4 +49,7 @@ Definiert eine intern erzeugte Körperwärme, angegeben in W/kg (nicht J/m³). S {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintBodyHeatSource/de diff --git a/wiki/translations/de/FEM_ConstraintFixed.md b/wiki/translations/de/FEM_ConstraintFixed.md index 099e12807e..ce32d3a971 100644 --- a/wiki/translations/de/FEM_ConstraintFixed.md +++ b/wiki/translations/de/FEM_ConstraintFixed.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Tutorium](FEM_tutorial/de.md) --- +# FEM ConstraintFixed/de + @@ -46,4 +48,7 @@ Du kannst nicht Objekttypen innerhalb derselben Beschränkung mischen. Verwende {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintFixed/de diff --git a/wiki/translations/de/FEM_ConstraintForce.md b/wiki/translations/de/FEM_ConstraintForce.md index 4527b5b306..fa502f32e2 100644 --- a/wiki/translations/de/FEM_ConstraintForce.md +++ b/wiki/translations/de/FEM_ConstraintForce.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Tutorium](FEM_tutorial/de.md) --- +# FEM ConstraintForce/de + @@ -66,4 +68,7 @@ Dieser Befehl wendet eine Kraft mit dem gegebenen Wert \[N\] auf die ausgewählt {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintForce/de diff --git a/wiki/translations/de/FEM_ConstraintPressure.md b/wiki/translations/de/FEM_ConstraintPressure.md index cbc4dc0c54..df0920e526 100644 --- a/wiki/translations/de/FEM_ConstraintPressure.md +++ b/wiki/translations/de/FEM_ConstraintPressure.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Tutorium](FEM_tutorial/de.md) --- +# FEM ConstraintPressure/de + @@ -51,4 +53,7 @@ Die Verteilung des Drucks auf die Fläche ist immer gleichmäßig und immer senk {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintPressure/de diff --git a/wiki/translations/de/FEM_ConstraintTemperature.md b/wiki/translations/de/FEM_ConstraintTemperature.md index 4f54e17e84..6b7e12d969 100644 --- a/wiki/translations/de/FEM_ConstraintTemperature.md +++ b/wiki/translations/de/FEM_ConstraintTemperature.md @@ -8,6 +8,8 @@ SeeAlso:[FEM Tutorium](FEM_tutorial/de.md) --- +# FEM ConstraintTemperature/de + @@ -39,4 +41,7 @@ Creates a FEM constraint for a temperature boundary condition. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintTemperature/de diff --git a/wiki/translations/de/FEM_ElementRotation1D.md b/wiki/translations/de/FEM_ElementRotation1D.md index 86d8424098..fe501b56dc 100644 --- a/wiki/translations/de/FEM_ElementRotation1D.md +++ b/wiki/translations/de/FEM_ElementRotation1D.md @@ -6,6 +6,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM ElementRotation1D/de + ## Beschreibung ElementRotation1D is used to rotate the beam profile around the axis of beam elements. @@ -35,4 +37,7 @@ ElementRotation1D is used to rotate the beam profile around the axis of beam ele {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementRotation1D/de diff --git a/wiki/translations/de/FEM_Install.md b/wiki/translations/de/FEM_Install.md index 3f452e0e73..3ae4715a1c 100644 --- a/wiki/translations/de/FEM_Install.md +++ b/wiki/translations/de/FEM_Install.md @@ -1,7 +1,4 @@ # FEM Install/de - - - {{TOCright}} ## Einführung @@ -248,4 +245,7 @@ Wenn du Probleme bei der Installation von Netgen, Gmsh oder CalculiX oder einem {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Install/de diff --git a/wiki/translations/de/FEM_MaterialFluid.md b/wiki/translations/de/FEM_MaterialFluid.md index 12f1cbc95d..0ab928c572 100644 --- a/wiki/translations/de/FEM_MaterialFluid.md +++ b/wiki/translations/de/FEM_MaterialFluid.md @@ -6,6 +6,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM MaterialFluid/de + ## Description @@ -40,4 +42,7 @@ Fügt einem Teil Flüssigkeitseigenschaften hinzu. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialFluid/de diff --git a/wiki/translations/de/FEM_MaterialMechanicalNonlinear.md b/wiki/translations/de/FEM_MaterialMechanicalNonlinear.md index cb230c374a..2f493fece5 100644 --- a/wiki/translations/de/FEM_MaterialMechanicalNonlinear.md +++ b/wiki/translations/de/FEM_MaterialMechanicalNonlinear.md @@ -6,6 +6,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM MaterialMechanicalNonlinear/de + ## Beschreibung Adds nonlinear mechanical material model. Currently only plasticity with simple hardening is available. @@ -26,4 +28,7 @@ Adds nonlinear mechanical material model. Currently only plasticity with simple {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialMechanicalNonlinear/de diff --git a/wiki/translations/de/FEM_MaterialSolid.md b/wiki/translations/de/FEM_MaterialSolid.md index edc9ce9c68..5867f36eeb 100644 --- a/wiki/translations/de/FEM_MaterialSolid.md +++ b/wiki/translations/de/FEM_MaterialSolid.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Tutorium](FEM_tutorial/de.md) --- +# FEM MaterialSolid/de + @@ -58,4 +60,7 @@ Fügt Materialeigenschaften einem Teil hinzu. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialSolid/de diff --git a/wiki/translations/de/FEM_Mesh.md b/wiki/translations/de/FEM_Mesh.md index 8c9a546a45..9313b70e0b 100644 --- a/wiki/translations/de/FEM_Mesh.md +++ b/wiki/translations/de/FEM_Mesh.md @@ -1,5 +1,5 @@ # FEM Mesh/de - {{TOCright}} +{{TOCright}} ## Erstellen eines FE Netzes @@ -727,4 +727,7 @@ See for example FEM Mesh/de diff --git a/wiki/translations/de/FEM_MeshBoundaryLayer.md b/wiki/translations/de/FEM_MeshBoundaryLayer.md index d9df6f6916..2ceecb7a84 100644 --- a/wiki/translations/de/FEM_MeshBoundaryLayer.md +++ b/wiki/translations/de/FEM_MeshBoundaryLayer.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM MeshBoundaryLayer/de + @@ -63,4 +65,7 @@ You can create as many different mesh boundary layers as needed. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshBoundaryLayer/de diff --git a/wiki/translations/de/FEM_MeshGmshFromShape.md b/wiki/translations/de/FEM_MeshGmshFromShape.md index 85208b7614..67b7ca3103 100644 --- a/wiki/translations/de/FEM_MeshGmshFromShape.md +++ b/wiki/translations/de/FEM_MeshGmshFromShape.md @@ -8,6 +8,8 @@ SeeAlso:[FEM Tutorium](FEM_tutorial/de.md) --- +# FEM MeshGmshFromShape/de + @@ -138,4 +140,7 @@ The *Simple* recombination algorithm will leave some triangles in the mesh in ca {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshGmshFromShape/de diff --git a/wiki/translations/de/FEM_MeshNetgenFromShape.md b/wiki/translations/de/FEM_MeshNetgenFromShape.md index 3c5ed91ac2..8ee99d6736 100644 --- a/wiki/translations/de/FEM_MeshNetgenFromShape.md +++ b/wiki/translations/de/FEM_MeshNetgenFromShape.md @@ -8,6 +8,8 @@ SeeAlso:[FEM Tutorium](FEM_tutorial/de.md) --- +# FEM MeshNetgenFromShape/de + @@ -29,4 +31,7 @@ Zu erledigen {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshNetgenFromShape/de diff --git a/wiki/translations/de/FEM_Module.md b/wiki/translations/de/FEM_Module.md index 9e981446b0..059271889c 100644 --- a/wiki/translations/de/FEM_Module.md +++ b/wiki/translations/de/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/de 1. REDIRECT [FEM\_Workbench/de](FEM_Workbench/de.md) + +--- +[documentation index](../README.md) > FEM Module/de diff --git a/wiki/translations/de/FEM_Shear_of_a_Composite_Block.md b/wiki/translations/de/FEM_Shear_of_a_Composite_Block.md index a33f8ad721..dd3b1382f3 100644 --- a/wiki/translations/de/FEM_Shear_of_a_Composite_Block.md +++ b/wiki/translations/de/FEM_Shear_of_a_Composite_Block.md @@ -1,7 +1,4 @@ # FEM Shear of a Composite Block/de - - -
@@ -109,4 +106,7 @@ The FC file for this tutorial is attached below as a starting point. -Have fun ! {{Tutorials navi}} {{FEM Tools navi}} +Have fun ! {{Tutorials navi}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM Shear of a Composite Block/de diff --git a/wiki/translations/de/FEM_Solver.md b/wiki/translations/de/FEM_Solver.md index 5162c15f79..e1375b5495 100644 --- a/wiki/translations/de/FEM_Solver.md +++ b/wiki/translations/de/FEM_Solver.md @@ -1,6 +1,4 @@ # FEM Solver/de - - ## Vorwort @@ -251,4 +249,7 @@ Technog was successfully used in FreeCAD as a substitute of CalculiX, although t {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Solver/de diff --git a/wiki/translations/de/FEM_SolverCalculiX.md b/wiki/translations/de/FEM_SolverCalculiX.md index 30254633b3..0d7889c76e 100644 --- a/wiki/translations/de/FEM_SolverCalculiX.md +++ b/wiki/translations/de/FEM_SolverCalculiX.md @@ -9,6 +9,8 @@ SeeAlso:[FEM Tutorium](FEM_tutorial/de.md) --- +# FEM SolverCalculiX/de +
@@ -34,4 +36,7 @@ Zu erledigen {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverCalculiX/de diff --git a/wiki/translations/de/FEM_Tutorial_Python.md b/wiki/translations/de/FEM_Tutorial_Python.md index ff8de2ce4f..2e5b2dc1f6 100644 --- a/wiki/translations/de/FEM_Tutorial_Python.md +++ b/wiki/translations/de/FEM_Tutorial_Python.md @@ -1,7 +1,4 @@ # FEM Tutorial Python/de - - - {{TutorialInfo/de |Topic= Finite Element Analyse |Level= Fortgeschrittene @@ -611,3 +608,6 @@ Have Fun! Also if you have feedback or any refinements, feel free to participate }} {{FEM Tools navi}} [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > FEM Tutorial Python/de diff --git a/wiki/translations/de/FEM_Workbench.md b/wiki/translations/de/FEM_Workbench.md index 90c3cf7b26..93aaa3cf1b 100644 --- a/wiki/translations/de/FEM_Workbench.md +++ b/wiki/translations/de/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/de - - - - - -FEM Arbeitsbereichssymbol +# FEM Arbeitsbereichssymbol FEM Workbench/de {{TOCright}} @@ -279,3 +273,6 @@ Ein Entwicklerhandbuch wurde geschrieben, um Power-Usern zu helfen, die komplexe }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/de diff --git a/wiki/translations/de/FEM_project.md b/wiki/translations/de/FEM_project.md index c98d3b4608..7d0b584069 100644 --- a/wiki/translations/de/FEM_project.md +++ b/wiki/translations/de/FEM_project.md @@ -1,7 +1,4 @@ # FEM project/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -54,3 +51,6 @@ Siehe [FEM Löser](FEM_Solver/de.md) }} [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > FEM project/de diff --git a/wiki/translations/de/FEM_tutorial.md b/wiki/translations/de/FEM_tutorial.md index 42aa9ad5c6..b956157ae5 100644 --- a/wiki/translations/de/FEM_tutorial.md +++ b/wiki/translations/de/FEM_tutorial.md @@ -1,7 +1,4 @@ # FEM tutorial/de - - -
@@ -219,4 +216,7 @@ Wir sind nun mit dem grundlegenden Arbeitsablauf für das [FEM Modul](FEM_Workbe {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM tutorial/de diff --git a/wiki/translations/de/Fasteners_Workbench.md b/wiki/translations/de/Fasteners_Workbench.md index 4b2cf74db2..9580b7cc1f 100644 --- a/wiki/translations/de/Fasteners_Workbench.md +++ b/wiki/translations/de/Fasteners_Workbench.md @@ -1,7 +1,4 @@ -# Fasteners Workbench/de - - -Arbeitsbereichssymbol Verbindungselemente +# Arbeitsbereichssymbol Verbindungselemente Fasteners Workbench/de {{TOCright}} @@ -257,3 +254,6 @@ Für eine detaillierte Beschreibung siehe [1](http://theseger.com/projects/2015/ [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Fasteners](Category:Fasteners.md) + +--- +[documentation index](../README.md) > Fasteners Workbench/de diff --git a/wiki/translations/de/Feature.md b/wiki/translations/de/Feature.md index d8bf319a99..e8f0f436b0 100644 --- a/wiki/translations/de/Feature.md +++ b/wiki/translations/de/Feature.md @@ -1,6 +1,4 @@ # Feature/de - - ## Einleitung In FreeCAD wird das Wort \"[Formelement](Feature/de.md)\" normalerweise verwendet, um sich auf eine [PartDesign Formelement](PartDesign_Feature/de.md) Objekt (`PartDesign::Feature` Klasse) zu beziehen, die von der [PartDesign Arbeitsbereich](PartDesign_Workbench/de.md) definiert wird. Dies ist eine Operation oder ein Modellierungsschritt ausgeführt zum Erstellen oder Ändern eines Volumenkörpers [Form](Shape/de.md) nach dem [Formelementbearbeitungs](feature_editing/de.md) Paradigma. @@ -32,3 +30,6 @@ In einem genaueren Verständnis ist ein \"Formelement\" ein Modellierungsschritt }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Feature/de diff --git a/wiki/translations/de/FeaturePython_Custom_Properties.md b/wiki/translations/de/FeaturePython_Custom_Properties.md index 52e1e0e288..a54dcc9431 100644 --- a/wiki/translations/de/FeaturePython_Custom_Properties.md +++ b/wiki/translations/de/FeaturePython_Custom_Properties.md @@ -1,5 +1,5 @@ # FeaturePython Custom Properties/de - {{TOCright}} +{{TOCright}} ## Einführung @@ -1247,3 +1247,6 @@ obj.ThePropertyName // returns {{TODO}}"example value for getter" [Category:Developer Documentation/de](Category:Developer_Documentation/de.md) [Category:API](Category:API.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FeaturePython Custom Properties/de diff --git a/wiki/translations/de/FeaturePython_Objects.md b/wiki/translations/de/FeaturePython_Objects.md index 9f0b516731..d2f52177e3 100644 --- a/wiki/translations/de/FeaturePython_Objects.md +++ b/wiki/translations/de/FeaturePython_Objects.md @@ -1,2 +1,5 @@ # FeaturePython Objects/de 1. REDIRECT [Create\_a\_FeaturePython\_object\_part\_I/de](Create_a_FeaturePython_object_part_I/de.md) + +--- +[documentation index](../README.md) > FeaturePython Objects/de diff --git a/wiki/translations/de/FeaturePython_methods.md b/wiki/translations/de/FeaturePython_methods.md index a554b79617..3d436af5a5 100644 --- a/wiki/translations/de/FeaturePython_methods.md +++ b/wiki/translations/de/FeaturePython_methods.md @@ -1,7 +1,4 @@ # FeaturePython methods/de - - - {{TOCright}} ## Einführung @@ -85,3 +82,6 @@ Note, getPyObject() and init() are special-cases and don\'t follow the above heu }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FeaturePython methods/de diff --git a/wiki/translations/de/Feature_editing.md b/wiki/translations/de/Feature_editing.md index 05e3d890f7..5b5f3e87ce 100644 --- a/wiki/translations/de/Feature_editing.md +++ b/wiki/translations/de/Feature_editing.md @@ -1,5 +1,5 @@ # Feature editing/de - {{TOCright}} +{{TOCright}} ## Einführung @@ -190,3 +190,6 @@ Die [Tutorien](Tutorials/de.md) Seite bietet einige Beispiele für die Verwendun }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Feature editing/de diff --git a/wiki/translations/de/Feature_list.md b/wiki/translations/de/Feature_list.md index 2bbbb3f81f..b411f76cc8 100644 --- a/wiki/translations/de/Feature_list.md +++ b/wiki/translations/de/Feature_list.md @@ -1,6 +1,4 @@ # Feature list/de - - Dies ist eine umfangreiche, aber nicht vollständige Liste von Funktionen, die FreeCAD einführt. Wenn du einen Blick in die Zukunft werfen willst, schau dir den [Entwicklungsfahrplan](Development_roadmap/de.md) an, um einen schnellen Überblick über das zu bekommen, was als nächstes kommt. Auch die [Bildschirmfotos](Screenshots/de.md) sind eine nette Anlaufstelle. @@ -100,3 +98,6 @@ Erfahrene Nutzer haben verschiedene [externe Arbeitsbereiche](external_workbench [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/de diff --git a/wiki/translations/de/File_Format_FCStd.md b/wiki/translations/de/File_Format_FCStd.md index 67054ec7b5..463fa88574 100644 --- a/wiki/translations/de/File_Format_FCStd.md +++ b/wiki/translations/de/File_Format_FCStd.md @@ -1,5 +1,5 @@ # File Format FCStd/de - {{TOCright}} +{{TOCright}} ## Übersicht @@ -167,3 +167,6 @@ Siehe den Forumsbeitrag, [PDF innerhalb des Projekts](https://forum.freecadweb.o [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > File Format FCStd/de diff --git a/wiki/translations/de/Fine-tuning.md b/wiki/translations/de/Fine-tuning.md index 7d71974f15..7a77309731 100644 --- a/wiki/translations/de/Fine-tuning.md +++ b/wiki/translations/de/Fine-tuning.md @@ -1,7 +1,4 @@ # Fine-tuning/de - - - {{TOCright}} Diese Seite enthält verschiedene Einstellungen und Parameter, die du zur Feinabstimmung deiner FreeCAD Installation oder zur Behebung von Problemen verwenden kannst. @@ -81,3 +78,6 @@ Any other characters are treated literally. If the resulting filename is illegal [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Fine-tuning/de diff --git a/wiki/translations/de/Flamingo_Workbench.md b/wiki/translations/de/Flamingo_Workbench.md index bbc67fed72..b204d66abf 100644 --- a/wiki/translations/de/Flamingo_Workbench.md +++ b/wiki/translations/de/Flamingo_Workbench.md @@ -1,7 +1,4 @@ # Flamingo Workbench/de - - -
@@ -534,3 +531,6 @@ Neue Arbeitsbereiche sind in Entwicklung, bleib dran! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Flamingo Workbench/de diff --git a/wiki/translations/de/FreeCAD-Ship_s60_tutorial.md b/wiki/translations/de/FreeCAD-Ship_s60_tutorial.md index fd05c383d7..2ad437f90e 100644 --- a/wiki/translations/de/FreeCAD-Ship_s60_tutorial.md +++ b/wiki/translations/de/FreeCAD-Ship_s60_tutorial.md @@ -1,7 +1,4 @@ # FreeCAD-Ship s60 tutorial/de - - - {{TutorialInfo/de |Topic=Schiff Arbeitsbereich |Level=Anfänger @@ -309,3 +306,6 @@ Das [FreeCAD Schiff s60 Tutorium (II)](FreeCAD-Ship_s60_tutorial_(II)/de.md) ist {{Ship Tools navi }} + +--- +[documentation index](../README.md) > FreeCAD-Ship s60 tutorial/de diff --git a/wiki/translations/de/FreeCAD-Ship_s60_tutorial_(II).md b/wiki/translations/de/FreeCAD-Ship_s60_tutorial_(II).md index 83fac1cbdc..7f96317e23 100644 --- a/wiki/translations/de/FreeCAD-Ship_s60_tutorial_(II).md +++ b/wiki/translations/de/FreeCAD-Ship_s60_tutorial_(II).md @@ -1,7 +1,4 @@ # FreeCAD-Ship s60 tutorial (II)/de - - - {{TutorialInfo/de |Topic=Schiff Arbeitsbereich |Level=Anfänger @@ -200,3 +197,6 @@ Natürlich ist dieses Beispiel nicht real (erstens können die Treibstofftanks n {{Ship Tools navi }} + +--- +[documentation index](../README.md) > FreeCAD-Ship s60 tutorial (II)/de diff --git a/wiki/translations/de/FreeCADGui_API.md b/wiki/translations/de/FreeCADGui_API.md index dafa8a5fdb..862db62eaa 100644 --- a/wiki/translations/de/FreeCADGui_API.md +++ b/wiki/translations/de/FreeCADGui_API.md @@ -1,7 +1,4 @@ # FreeCADGui API/de - - -
@@ -79,3 +76,6 @@ gui_doc.activateWorkbench("myWorkbench") [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FreeCADGui API/de diff --git a/wiki/translations/de/FreeCADShip_Workbench.md b/wiki/translations/de/FreeCADShip_Workbench.md index 6e57b8cc38..76ab1b4fe7 100644 --- a/wiki/translations/de/FreeCADShip_Workbench.md +++ b/wiki/translations/de/FreeCADShip_Workbench.md @@ -1,2 +1,5 @@ # FreeCADShip Workbench/de 1. REDIRECT [Ship\_Workbench/de](Ship_Workbench/de.md) + +--- +[documentation index](../README.md) > FreeCADShip Workbench/de diff --git a/wiki/translations/de/FreeCAD_API.md b/wiki/translations/de/FreeCAD_API.md index ada4ce7d1a..41a9543051 100644 --- a/wiki/translations/de/FreeCAD_API.md +++ b/wiki/translations/de/FreeCAD_API.md @@ -1,5 +1,5 @@ # FreeCAD API/de - **(October 2019) Diese Seite nicht bearbeiten. Die Informationen sind unvollständig und veraltet. Die neueste API findest du in der [https://www.freecadweb.org/api autogenerated API documentation], oder du generierst die Dokumentation selbst, siehe [Quelldokumentation](Source_documentation/de.md).** +**(October 2019) Diese Seite nicht bearbeiten. Die Informationen sind unvollständig und veraltet. Die neueste API findest du in der [https://www.freecadweb.org/api autogenerated API documentation], oder du generierst die Dokumentation selbst, siehe [Quelldokumentation](Source_documentation/de.md).** Dies ist das Hauptmodul (root) von FreeCAD. Es kann auch mit \"App\" aus dem FreeCAD Interpreter aufgerufen werden. Es enthält alles, was zur Manipulation von Dokumenten und deren Inhalt (Objekte) benötigt wird. @@ -62,3 +62,6 @@ mydoc = FreeCAD.activeDocument() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FreeCAD API/de diff --git a/wiki/translations/de/FreeCAD_Build_Tool.md b/wiki/translations/de/FreeCAD_Build_Tool.md index 6d1f344c64..95c25b51c1 100644 --- a/wiki/translations/de/FreeCAD_Build_Tool.md +++ b/wiki/translations/de/FreeCAD_Build_Tool.md @@ -1,10 +1,4 @@ # FreeCAD Build Tool/de - - - - - - {{TOCright}} ## Übersicht @@ -72,3 +66,6 @@ Der \"CM\" Befehl [erzeugt ein neues Anwendungsmodul (Arbeitsbereich)](Workbench [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Build Tool/de diff --git a/wiki/translations/de/FreeCAD_Community_Portal.md b/wiki/translations/de/FreeCAD_Community_Portal.md index 69a171bbd0..ed2a065643 100644 --- a/wiki/translations/de/FreeCAD_Community_Portal.md +++ b/wiki/translations/de/FreeCAD_Community_Portal.md @@ -1,6 +1,4 @@ # FreeCAD Community Portal/de - - Dies ist der Ort, an dem du alle Arten von FreeCAD-bezogenen Sachen ablegen kannst! Wenn Du an etwas arbeitest, das mit FreeCAD zu tun hat, füge es bitte hier ein! ## Orte, an denen FreeCAD im Netz erscheint @@ -87,3 +85,6 @@ Dies sind von der FreeCAD Gemeinschaft entwickelte Arbeitsbereiche, Skripte, Mak [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > FreeCAD Community Portal/de diff --git a/wiki/translations/de/FreeCAD_Docker_CLI_mode.md b/wiki/translations/de/FreeCAD_Docker_CLI_mode.md index 6f3fcc22ad..27dfd1b03a 100644 --- a/wiki/translations/de/FreeCAD_Docker_CLI_mode.md +++ b/wiki/translations/de/FreeCAD_Docker_CLI_mode.md @@ -1,10 +1,4 @@ # FreeCAD Docker CLI mode/de - - - - - - {{TOCright}} ## Übersicht @@ -78,6 +72,5 @@ Um FreeCAD im Docker Abbild zu starten, führe einfach den Befehl FreeCADCmd aus FreeCAD Forumsbeitrag: - - - +--- +[documentation index](../README.md) > FreeCAD Docker CLI mode/de diff --git a/wiki/translations/de/FreeCAD_Scripting_Basics.md b/wiki/translations/de/FreeCAD_Scripting_Basics.md index d3156e5b2b..994b1c1955 100644 --- a/wiki/translations/de/FreeCAD_Scripting_Basics.md +++ b/wiki/translations/de/FreeCAD_Scripting_Basics.md @@ -1,7 +1,4 @@ # FreeCAD Scripting Basics/de - - - {{TOCright}} ## Python skripten in FreeCAD @@ -211,3 +208,6 @@ Jetzt kannst du wirklich anfangen, mit FreeCAD zu spielen! Eine vollständige Li }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Scripting Basics/de diff --git a/wiki/translations/de/FreeCAD_and_DWG_Import.md b/wiki/translations/de/FreeCAD_and_DWG_Import.md index f46b0b5761..4a48ecf8f0 100644 --- a/wiki/translations/de/FreeCAD_and_DWG_Import.md +++ b/wiki/translations/de/FreeCAD_and_DWG_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DWG Import/de - {{TOCright}} +{{TOCright}} {{Fake heading|sub=4|< Back to [[FreeCAD Howto Import Export]]}} @@ -128,3 +128,6 @@ In der Entwicklungsversion kannst du, wie oben erwähnt, vom proprietären ODA K [Category:File\_Formats](Category:File_Formats.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > FreeCAD and DWG Import/de diff --git a/wiki/translations/de/FreeCAD_and_DXF_Import.md b/wiki/translations/de/FreeCAD_and_DXF_Import.md index 66a2e748d0..a62ee7bcfe 100644 --- a/wiki/translations/de/FreeCAD_and_DXF_Import.md +++ b/wiki/translations/de/FreeCAD_and_DXF_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DXF Import/de - {{TOCright}} +{{TOCright}} ## Hintergrund @@ -52,3 +52,6 @@ Du kannst auch versuchen: Für eine Übersicht über alle DXF bezogenen Voreinstellungen siehe [Import Export Einstellungen](Import_Export_Preferences/de#DXF.md). [Category:User\_Documentation](Category:User_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > FreeCAD and DXF Import/de diff --git a/wiki/translations/de/FreeCAD_and_Mesh_Import.md b/wiki/translations/de/FreeCAD_and_Mesh_Import.md index 173c6ff050..f2d685ad71 100644 --- a/wiki/translations/de/FreeCAD_and_Mesh_Import.md +++ b/wiki/translations/de/FreeCAD_and_Mesh_Import.md @@ -1,7 +1,4 @@ # FreeCAD and Mesh Import/de - - - {{TOCright}} ## Post-Import @@ -88,3 +85,6 @@ Nun, deine Schale scheint Fehler zu haben, vielleicht ist sie nicht geschlossen - [FreeCAD Howto Import Export](FreeCAD_Howto_Import_Export.md) [Category:User\_Documentation](Category:User_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > FreeCAD and Mesh Import/de diff --git a/wiki/translations/de/FreeCAD_development_model_project.md b/wiki/translations/de/FreeCAD_development_model_project.md index 9dabc9b0b2..95ed84c189 100644 --- a/wiki/translations/de/FreeCAD_development_model_project.md +++ b/wiki/translations/de/FreeCAD_development_model_project.md @@ -1,7 +1,4 @@ # FreeCAD development model project/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -68,3 +65,6 @@ Die beschlossenen Regeln und Informationen gehen an das [FreeCAD Entwicklungsmod [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > FreeCAD development model project/de diff --git a/wiki/translations/de/FreeCAD_vector_math_library.md b/wiki/translations/de/FreeCAD_vector_math_library.md index ffd92e8809..fd4f0bb9fa 100644 --- a/wiki/translations/de/FreeCAD_vector_math_library.md +++ b/wiki/translations/de/FreeCAD_vector_math_library.md @@ -1,6 +1,4 @@ # FreeCAD vector math library/de - - ## Einführung Dies ist eine [Python](Python/de.md)-Modul mit einigen nützlichen Funktionen zur Manipulation von Vektoren. Diese Bibliothek ist im [Draft-Arbeitsbereich](Draft_Workbench/de.md) enthalten und kann so vom Python-Interpreter aus aufgerufen werden: @@ -87,3 +85,6 @@ def project(first, other): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD vector math library/de diff --git a/wiki/translations/de/Frequently_asked_questions.md b/wiki/translations/de/Frequently_asked_questions.md index 831fc87110..5a66c677e8 100644 --- a/wiki/translations/de/Frequently_asked_questions.md +++ b/wiki/translations/de/Frequently_asked_questions.md @@ -1,9 +1,4 @@ # Frequently asked questions/de - - - - - Diese Seite versucht, die häufigsten Fragen zu beantworten, die in den FreeCAD Foren gestellt werden. Wenn Du ein Problem oder eine Frage zu FreeCAD hast, schau zuerst unten nach. Wenn Du dann keine Antwort auf deine spezielle Frage findest, gehe zum [FreeCAD Forum](http://forum.freecadweb.org/viewforum.php?f=3)! ## Einrichtung @@ -279,3 +274,6 @@ Ja, du kannst die Kernteile von FreeCAD in anderen Anwendungen verwenden, solang [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Frequently asked questions/de diff --git a/wiki/translations/de/Getting_started.md b/wiki/translations/de/Getting_started.md index aedd54c659..6796b190ec 100644 --- a/wiki/translations/de/Getting_started.md +++ b/wiki/translations/de/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/de - - - - - - {{TOCright}} ## Vorwort @@ -195,3 +189,6 @@ Und schließlich ist eine der leistungsfähigsten Funktionen von FreeCAD die [sc {{Userdocnavi/de}} [Category:User Documentation/de](Category:User_Documentation/de.md) + +--- +[documentation index](../README.md) > Getting started/de diff --git a/wiki/translations/de/Git_buildpackage.md b/wiki/translations/de/Git_buildpackage.md index a86e3b8d04..e561a498aa 100644 --- a/wiki/translations/de/Git_buildpackage.md +++ b/wiki/translations/de/Git_buildpackage.md @@ -1,6 +1,4 @@ # Git buildpackage/de - - Moderne Debian Entwicklungs Arbeitsabläufe beinhalten [Paketerstellung mit Git](https://wiki.debian.org/PackagingWithGit) und das primäre Werkzeug dafür ist [git-buildpackage](http://honk.sigxcpu.org/projects/git-buildpackage/manual-html/gbp.html). git-buildpackage bietet einen Befehl gbp mit mehreren Optionen ähnlich dem Befehl git selbst. Viele dieser Befehle sind selbst nur ein Hülle von untergeordneten Debian Werkzeugen, so dass die Komplexität beim Erlernen von Paketerstellung ziemlich hoch sein kann. Um das zu umgehen, hier sind die kurzen und einfachen Schritte, um mit dem git-buildpackage zu beginnen. Dies sollte auf fast jeder Debian basierten Distribution funktionieren, aber ich empfehle, in einer sauberen und separaten Umgebung eine [Debian Instabil](Debian_Unstable/de.md) virtuelle Maschine zu betreiben. @@ -36,3 +34,6 @@ Location: ~/.pbuilderrc [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Git buildpackage/de diff --git a/wiki/translations/de/Glossary.md b/wiki/translations/de/Glossary.md index 81b5916351..aaaa1c01bb 100644 --- a/wiki/translations/de/Glossary.md +++ b/wiki/translations/de/Glossary.md @@ -1,9 +1,4 @@ # Glossary/de - - - - - Diese Seite ist ein Glossar mit allgemeinen FreeCAD Begriffen und Definitionen. Springe zu Buchstaben: {{CompactTOC|center=yes}} @@ -610,3 +605,6 @@ Springe zu Buchstaben: {{CompactTOC|center=yes}} [Category:Wiki](Category:Wiki.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Wiki](Category:Wiki.md) > Glossary/de diff --git a/wiki/translations/de/GuiCommand_model.md b/wiki/translations/de/GuiCommand_model.md index e5c6e13427..9e636ed538 100644 --- a/wiki/translations/de/GuiCommand_model.md +++ b/wiki/translations/de/GuiCommand_model.md @@ -9,6 +9,8 @@ SeeAlso: --- +# GuiCommand model/de +
@@ -278,3 +280,6 @@ Optional. }} [Category:Wiki:Example](Category:Wiki:Example.md) + +--- +[documentation index](../README.md) > [API]] and ](Category:API]] and .md) > GuiCommand model/de diff --git a/wiki/translations/de/Gui_Command.md b/wiki/translations/de/Gui_Command.md index c7f8c88e9d..032b4a31cc 100644 --- a/wiki/translations/de/Gui_Command.md +++ b/wiki/translations/de/Gui_Command.md @@ -1,5 +1,5 @@ # Gui Command/de - Der Gui Befehl ist eine der wichtigsten Funktionen von FreeCAD. im Hauptinteraktionspunkt des Benutzers. Jedes Mal, wenn der Benutzer einen Menüpunkt auswählt oder eine Schaltfläche in der Werkzeugleiste drückt , die einen Gui Befehl aktiviert. Einige der Attribute eines Gui Befehls sind: +Der Gui Befehl ist eine der wichtigsten Funktionen von FreeCAD. im Hauptinteraktionspunkt des Benutzers. Jedes Mal, wenn der Benutzer einen Menüpunkt auswählt oder eine Schaltfläche in der Werkzeugleiste drückt , die einen Gui Befehl aktiviert. Einige der Attribute eines Gui Befehls sind: - Definiert einen Namen - Enthält ein Symbol @@ -60,4 +60,7 @@ Hoffentlich wird dies für alle Gui Befehle in der [List of Commands](List_of_Co {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Gui Command/de diff --git a/wiki/translations/de/Help.md b/wiki/translations/de/Help.md index 55bd10a0bf..0831378cc8 100644 --- a/wiki/translations/de/Help.md +++ b/wiki/translations/de/Help.md @@ -1,6 +1,4 @@ # Help/de - - ## Forum Der erste Ort, an dem du um Hilfe bitten kannst, ist das [FreeCAD Forum](https://forum.freecadweb.org/viewforum.php?f=3) (Bitte lese [diesen Beitrag](https://forum.freecadweb.org/viewtopic.php?f=3&t=2264), bevor Du Fragen stellst). Denke daran, dass [wichtige Informationen](Important_information/de.md) über dein System notwendig sind, wenn du um Hilfe bittest. @@ -39,3 +37,6 @@ Wir haben einen [offizieller FreeCAD Discord Server](https://discord.gg/NpMefpXW [Category:Help](Category:Help.md) + +--- +[documentation index](../README.md) > [Help](Category:Help.md) > Help/de diff --git a/wiki/translations/de/Help_FreeCAD.md b/wiki/translations/de/Help_FreeCAD.md index a6511f602d..90d8a89693 100644 --- a/wiki/translations/de/Help_FreeCAD.md +++ b/wiki/translations/de/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/de - - ## Einführung @@ -87,3 +85,6 @@ Das Schreiben von Code für FreeCAD ist nicht schwer, und Du brauchst keine Erla [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command_Reference]] Seite listet und dokumentiert alle FreeCAD ](Category:Command_Reference]] Seite listet und dokumentiert alle FreeCAD .md) > Help FreeCAD/de diff --git a/wiki/translations/de/HiDPI_support.md b/wiki/translations/de/HiDPI_support.md index f59ef46004..a3dd1dc7c6 100644 --- a/wiki/translations/de/HiDPI_support.md +++ b/wiki/translations/de/HiDPI_support.md @@ -1,7 +1,4 @@ # HiDPI support/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -254,3 +251,6 @@ Qt bietet nicht die Funktionalität, um diesen Wert abzurufen. Also müssen wir [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > HiDPI support/de diff --git a/wiki/translations/de/History.md b/wiki/translations/de/History.md index 6f8963bbc2..5a61f43656 100644 --- a/wiki/translations/de/History.md +++ b/wiki/translations/de/History.md @@ -1,5 +1,5 @@ # History/de - \_\_FORCETOC\_\_ +\_\_FORCETOC\_\_ ## Geschichte @@ -140,3 +140,6 @@ Im April 2019 wurde das Team der Kernentwickler erweitert: Zu Jürgen, Werner un - [Ankündigung des FreeCAD Projekts](http://www.opencascade.org/org/forum/thread_6572/?forum=11) im OpenCascade Forum [Category:News](Category:News.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > History/de diff --git a/wiki/translations/de/How_to_install_additional_workbenches.md b/wiki/translations/de/How_to_install_additional_workbenches.md index b2ad6515c2..9cd5924de6 100644 --- a/wiki/translations/de/How_to_install_additional_workbenches.md +++ b/wiki/translations/de/How_to_install_additional_workbenches.md @@ -1,5 +1,5 @@ # How to install additional workbenches/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic=Programmierung |Level=Mittelmäßiger Programmierer |Time=15 Minuten @@ -170,3 +170,6 @@ Der Einfachheit halber für dieses Beispiel, sage du hast die [Arbeitsbereich Ku {{Powerdocnavi}} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External Workbenches](Category:External Workbenches.md) > How to install additional workbenches/de diff --git a/wiki/translations/de/How_to_install_macros.md b/wiki/translations/de/How_to_install_macros.md index 7f6c5bfc13..b91c4f0b92 100644 --- a/wiki/translations/de/How_to_install_macros.md +++ b/wiki/translations/de/How_to_install_macros.md @@ -1,5 +1,5 @@ # How to install macros/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic=Programmierung |Level=durchschnittliche Programmierer |Zeit=15 Minuten @@ -472,3 +472,6 @@ und drücke dann die **OK** Schaltfläche. }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > How to install macros/de diff --git a/wiki/translations/de/IfcOpenShell.md b/wiki/translations/de/IfcOpenShell.md index 501950b45b..54b32dec54 100644 --- a/wiki/translations/de/IfcOpenShell.md +++ b/wiki/translations/de/IfcOpenShell.md @@ -1,6 +1,4 @@ # IfcOpenShell/de - - ## Beschreibung @@ -457,3 +455,6 @@ Das IfcOpenShell Projekt hat auch \"IFC Pipeline\" entwickelt, ein selbstgehoste {{FEM Tools navi}} [Category:BIM](Category:BIM.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > IfcOpenShell/de diff --git a/wiki/translations/de/ImageConv.md b/wiki/translations/de/ImageConv.md index 2248f0f870..aa5d973e9d 100644 --- a/wiki/translations/de/ImageConv.md +++ b/wiki/translations/de/ImageConv.md @@ -1,6 +1,4 @@ # ImageConv/de - - *BildKonv*\' ist ein Programm zur Umwandlung von Bildern aus verschiedenen Formaten in das XPM-Format, das in FreeCAD kompiliert werden kann. ## Bau @@ -17,3 +15,6 @@ Das Bauen ist einfach mit dem *Makefile* oder dem VisualStudio-Projekt. BildKonv ist ein Befehlszeilenwerkzeug. [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > ImageConv/de diff --git a/wiki/translations/de/Image_CreateImagePlane.md b/wiki/translations/de/Image_CreateImagePlane.md index e8fb030c41..1df8ef850e 100644 --- a/wiki/translations/de/Image_CreateImagePlane.md +++ b/wiki/translations/de/Image_CreateImagePlane.md @@ -7,6 +7,8 @@ SeeAlso:[Bild Öffnen](Image_Open/de.md), [Bild Skalierung](Image_Scaling/de.md) --- +# Image CreateImagePlane/de + ## Beschreibung Das [ErstelleBildEbene](Image_CreateImagePlane/de.md) Werkzeug importiert ein [Bitmap](bitmap/de.md) Bild und platziert es auf einer der XY, YZ oder XZ Ebenen. @@ -49,4 +51,7 @@ Wenn dem Bild anfänglich kein Versatz gegeben wird, kann seine Position immer n {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image CreateImagePlane/de diff --git a/wiki/translations/de/Image_Module.md b/wiki/translations/de/Image_Module.md index a6cf641892..b2c2ef36da 100644 --- a/wiki/translations/de/Image_Module.md +++ b/wiki/translations/de/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/de 1. REDIRECT [Image\_Workbench/de](Image_Workbench/de.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/de diff --git a/wiki/translations/de/Image_Open.md b/wiki/translations/de/Image_Open.md index fceef228ad..5dff08616b 100644 --- a/wiki/translations/de/Image_Open.md +++ b/wiki/translations/de/Image_Open.md @@ -7,6 +7,8 @@ SeeAlso:[Bild Ebene](Image_CreateImagePlane/de.md), [Bild Skalieren](Image_Scaling/de.md) --- +# Image Open/de + ## Beschreibung Das [Bild Öffnen](Image_Open/de.md)-Werkzeug öffnet einfach ein Bild aus deinem System in einem neuen Reiter im Ansichtsfenster. @@ -24,4 +26,7 @@ Das Bild wird in einem neuen Ansichtsfenster platziert, nicht in der 3D Ansicht. {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Open/de diff --git a/wiki/translations/de/Image_Scaling.md b/wiki/translations/de/Image_Scaling.md index c7adcd1aed..1874a247e2 100644 --- a/wiki/translations/de/Image_Scaling.md +++ b/wiki/translations/de/Image_Scaling.md @@ -8,6 +8,8 @@ SeeAlso:[Bild Öffnen](Image_Open/de.md), [Bild Ebene](Image_CreateImagePlane/de.md) --- +# Image Scaling/de + ## Beschreibung Das [Bild Skalierung](Image_Scaling/de.md)-Werkzeug skaliert ein Bild, das mit dem Werkzeug [Bildebene](Image_CreateImagePlane/de.md) importiert wurde. @@ -26,4 +28,7 @@ Das [Bild Skalierung](Image_Scaling/de.md)-Werkzeug skaliert ein Bild, das mit d {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Scaling/de diff --git a/wiki/translations/de/Image_Workbench.md b/wiki/translations/de/Image_Workbench.md index d8524a82f1..194c953a29 100644 --- a/wiki/translations/de/Image_Workbench.md +++ b/wiki/translations/de/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/de - - -Bild Arbeitsbereichssymbol +# Bild Arbeitsbereichssymbol Image Workbench/de ## Einführung @@ -39,3 +36,6 @@ Der Versatz des Bildes kann beim Import eingestellt oder später über seine Eig }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/de diff --git a/wiki/translations/de/Import.md b/wiki/translations/de/Import.md index 118ab72285..ea1fe35b0b 100644 --- a/wiki/translations/de/Import.md +++ b/wiki/translations/de/Import.md @@ -1,5 +1,5 @@ # Import/Export IFC - compiling IfcOpenShell/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic=Architektur Arbeitsbereich |Level=Fortgeschritten |Time=120 Minuten @@ -137,3 +137,6 @@ Tschüss [Category:BIM](Category:BIM.md) [Category:Arch](Category:Arch.md) [Category:3rd Party](Category:3rd_Party.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Import/Export IFC - compiling IfcOpenShell/de diff --git a/wiki/translations/de/Import_Export.md b/wiki/translations/de/Import_Export.md index 249c83f583..5899ea53ed 100644 --- a/wiki/translations/de/Import_Export.md +++ b/wiki/translations/de/Import_Export.md @@ -1,9 +1,4 @@ # Import Export/de - - - - - ## Einführung Diese Seite listet die verschiedenen Dateiformate auf, die FreeCAD importieren und exportieren kann. Der Vollständigkeit halber ist das FreeCAD Eigenformat in der Liste enthalten. Einige Formate haben eine zugehörige Wiki Seite, die durch Klicken auf die Erweiterung in der ersten Spalte erreicht werden kann. @@ -144,3 +139,6 @@ Siehe die folgenden Seiten fürzusätzliche Information: [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export/de diff --git a/wiki/translations/de/Import_Export_Preference.md b/wiki/translations/de/Import_Export_Preference.md index 7e5ec641c1..a0f0184fb0 100644 --- a/wiki/translations/de/Import_Export_Preference.md +++ b/wiki/translations/de/Import_Export_Preference.md @@ -1,2 +1,5 @@ # Import Export Preference/de 1. REDIRECT [Import Export Preferences/de](Import_Export_Preferences/de.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preference/de diff --git a/wiki/translations/de/Import_Export_Preferences.md b/wiki/translations/de/Import_Export_Preferences.md index 11972c5514..495b4fce71 100644 --- a/wiki/translations/de/Import_Export_Preferences.md +++ b/wiki/translations/de/Import_Export_Preferences.md @@ -1,10 +1,4 @@ # Import Export Preferences/de - - - - - - {{TOCright}} ## Einführung @@ -623,3 +617,6 @@ Für das VTK Format kannst du folgendes festlegen: [Category:Common Questions](Category:Common_Questions.md) [Category:Preferences](Category:Preferences.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preferences/de diff --git a/wiki/translations/de/Import_OpenSCAD_code.md b/wiki/translations/de/Import_OpenSCAD_code.md index 57170decb6..6c4ef0eb4a 100644 --- a/wiki/translations/de/Import_OpenSCAD_code.md +++ b/wiki/translations/de/Import_OpenSCAD_code.md @@ -1,7 +1,4 @@ # Import OpenSCAD code/de - - - {{TutorialInfo/de |Topic=OpenSCAD Code importieren |Level=Anfänger @@ -55,3 +52,6 @@ Hier verwenden wir die example005.scad Datei aus den (alten) OpenSCAD Beispielen - [Import Export Einstellungen](Import_Export_Preferences/de.md) [Category:OpenSCAD](Category:OpenSCAD.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import OpenSCAD code/de diff --git a/wiki/translations/de/Import_from_STL_or_OBJ.md b/wiki/translations/de/Import_from_STL_or_OBJ.md index a805fe3317..0af6a643e7 100644 --- a/wiki/translations/de/Import_from_STL_or_OBJ.md +++ b/wiki/translations/de/Import_from_STL_or_OBJ.md @@ -1,5 +1,5 @@ # Import from STL or OBJ/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic= Import von STL oder OBJ |Level= Anfänger |Time= 30 Minuten @@ -98,3 +98,6 @@ Da der erzeugte Festkörper keine Historie und keine bearbeitbaren Formelemente [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import from STL or OBJ/de diff --git a/wiki/translations/de/Import_text_and_geometry_from_Inkscape.md b/wiki/translations/de/Import_text_and_geometry_from_Inkscape.md index 238add1a75..406ef6951f 100644 --- a/wiki/translations/de/Import_text_and_geometry_from_Inkscape.md +++ b/wiki/translations/de/Import_text_and_geometry_from_Inkscape.md @@ -1,5 +1,5 @@ # Import text and geometry from Inkscape/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic= Import von Text und Geometrie aus Inkscape |Level= Anfänger |Time= 30 Minuten @@ -48,6 +48,5 @@ Da inkscape und FreeCAD unterschiedliche Ansätze zur Anwendung von Bemaßungen Dank an die Benutzer \"freecad-heini-1\" und \"herbk\" für die Tests und die wertvolle Rückmeldung. - - - +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import text and geometry from Inkscape/de diff --git a/wiki/translations/de/Inspection_Workbench.md b/wiki/translations/de/Inspection_Workbench.md index f2fab7f31e..ddbf499227 100644 --- a/wiki/translations/de/Inspection_Workbench.md +++ b/wiki/translations/de/Inspection_Workbench.md @@ -1,7 +1,4 @@ -# Inspection Workbench/de - - -Inspektion Arbeitsbereichssymbol +# Inspektion Arbeitsbereichssymbol Inspection Workbench/de ## Einführung @@ -27,3 +24,6 @@ Verwende alternativ das Makro Inspection Workbench/de diff --git a/wiki/translations/de/Install_on_Linux.md b/wiki/translations/de/Install_on_Linux.md index ec7a595797..764d0316af 100644 --- a/wiki/translations/de/Install_on_Linux.md +++ b/wiki/translations/de/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/de 1. REDIRECT [Installing\_on\_Linux/de](Installing_on_Linux/de.md) + +--- +[documentation index](../README.md) > Install on Linux/de diff --git a/wiki/translations/de/Install_on_Mac.md b/wiki/translations/de/Install_on_Mac.md index 1b1d814700..5c0d445d8a 100644 --- a/wiki/translations/de/Install_on_Mac.md +++ b/wiki/translations/de/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/de 1. REDIRECT [Installing\_on\_Mac/de](Installing_on_Mac/de.md) + +--- +[documentation index](../README.md) > Install on Mac/de diff --git a/wiki/translations/de/Install_on_Unix.md b/wiki/translations/de/Install_on_Unix.md index a0ae86f182..d8da38dd51 100644 --- a/wiki/translations/de/Install_on_Unix.md +++ b/wiki/translations/de/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/de 1. REDIRECT [Installing\_on\_Linux/de](Installing_on_Linux/de.md) + +--- +[documentation index](../README.md) > Install on Unix/de diff --git a/wiki/translations/de/Install_on_Windows.md b/wiki/translations/de/Install_on_Windows.md index d794f288a9..b1f8132ddb 100644 --- a/wiki/translations/de/Install_on_Windows.md +++ b/wiki/translations/de/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/de 1. REDIRECT [Installing\_on\_Windows/de](Installing_on_Windows/de.md) + +--- +[documentation index](../README.md) > Install on Windows/de diff --git a/wiki/translations/de/Installing.md b/wiki/translations/de/Installing.md index a73e9e46c2..ab967aeaf9 100644 --- a/wiki/translations/de/Installing.md +++ b/wiki/translations/de/Installing.md @@ -1,2 +1,5 @@ # Installing/de 1. REDIRECT [Installing\_additional\_components/de](Installing_additional_components/de.md) + +--- +[documentation index](../README.md) > Installing/de diff --git a/wiki/translations/de/Installing_Helpfile.md b/wiki/translations/de/Installing_Helpfile.md index 3dbc068caf..ab6de61ce0 100644 --- a/wiki/translations/de/Installing_Helpfile.md +++ b/wiki/translations/de/Installing_Helpfile.md @@ -1,6 +1,4 @@ # Installing Helpfile/de - - ## FreeCAD Hilfedateien Die FreeCAD Offline Dokumentation wird aus dem FreeCAD Wiki durch die Verwendung von Skripten erstellt. Sie ist auf eine Dateigröße von über 220 MB angewachsen. Diese großen Dateien sind nicht Teil der Installationsprogramme und ausführbaren Dateien von FreeCAD, können aber, wie hier dokumentiert, separat installiert werden. @@ -45,5 +43,5 @@ Beim Versuch, die Dokumentationspakete unter Ubuntu zu installieren (z.B. `freec - Alternativ kannst du stattdessen die Entwicklungsversionen der Hilfedateien {{FileName|freecad.qhc}} und {{FileName|freecad.qch}} von [GitHub](https://github.com/FreeCAD/FreeCAD/tree/master/src/Doc) erhalten. Du musst die .part Dateien zusammen [verketten](http://man7.org/linux/man-pages/man1/cat.1.html): `cat freecad.qch.part00 freecad.qch.part01 freecad.qch.part02 freecad.qch.part03 > freecad.qch`. - Mit administrativen Rechten (z. B. `sudo`) kopierst oder verschiebst du {{FileName|freecad.qhc}} und {{FileName|freecad.qch}} nach {{FileName|/usr/share/doc/freecad-doc/}}. Wenn du `freecad-daily` verwendest, wird dies stattdessen {{FileName|/usr/share/doc/freecad-daily-doc/}} sein. - - +--- +[documentation index](../README.md) > Installing Helpfile/de diff --git a/wiki/translations/de/Installing_additional_components.md b/wiki/translations/de/Installing_additional_components.md index 6c20562ecc..94f8a1c910 100644 --- a/wiki/translations/de/Installing_additional_components.md +++ b/wiki/translations/de/Installing_additional_components.md @@ -1,10 +1,4 @@ # Installing additional components/de - - - - - - {{TOCright}} # Einführung @@ -123,3 +117,6 @@ Der [ODA Dateikonverter](https://www.opendesign.com/guestfiles/oda_file_converte [Category:User Documentation/de](Category:User_Documentation/de.md) + +--- +[documentation index](../README.md) > Installing additional components/de diff --git a/wiki/translations/de/Installing_more_workbenches.md b/wiki/translations/de/Installing_more_workbenches.md index 213dc30a0f..b30420c883 100644 --- a/wiki/translations/de/Installing_more_workbenches.md +++ b/wiki/translations/de/Installing_more_workbenches.md @@ -1,6 +1,4 @@ # Installing more workbenches/de - - ## Einführung Seit v0.17 ist es einfach, [externe Arbeitsbereiche](external_workbenches/de.md) mit Hilfe des [Erweiterungsverwalters](Std_AddonMgr/de.md) hinzuzufügen. Ein normaler Benutzer muss nicht mehr tun, als dieses Werkzeug zu benutzen. @@ -48,3 +46,6 @@ Siehe auch eine detaillierte Beschreibung auf der Seite [Wie man zusätzliche Ar }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Installing more workbenches/de diff --git a/wiki/translations/de/Installing_on_Linux.md b/wiki/translations/de/Installing_on_Linux.md index c02186a837..208a854dc1 100644 --- a/wiki/translations/de/Installing_on_Linux.md +++ b/wiki/translations/de/Installing_on_Linux.md @@ -1,9 +1,4 @@ # Installing on Linux/de - - - - - ## Übersicht @@ -377,3 +372,6 @@ Wenn Du FreeCAD installiert hast, ist es Zeit für die [ersten Schritte](Getting [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/de diff --git a/wiki/translations/de/Installing_on_Mac.md b/wiki/translations/de/Installing_on_Mac.md index c267dd5d7e..784400dec7 100644 --- a/wiki/translations/de/Installing_on_Mac.md +++ b/wiki/translations/de/Installing_on_Mac.md @@ -1,9 +1,4 @@ # Installing on Mac/de - - - - - FreeCAD kann unter macOS aus einem .dmg-Paket installiert werden, das du per Drag & Drop in deinen Programme Ordner ziehen kannst: @@ -50,8 +45,5 @@ Derzeit gibt es kein Deinstallationsprogramm für FreeCAD. Um FreeCAD und alle i Wenn du FreeCAD mit Homebrew installiert hast, verwende einfach den Befehl `brew uninstall freecad`. Das war\'s. - - - - - +--- +[documentation index](../README.md) > Installing on Mac/de diff --git a/wiki/translations/de/Installing_on_Windows.md b/wiki/translations/de/Installing_on_Windows.md index 4b7d7a1b22..f2493a1743 100644 --- a/wiki/translations/de/Installing_on_Windows.md +++ b/wiki/translations/de/Installing_on_Windows.md @@ -1,7 +1,4 @@ # Installing on Windows/de - - - {{docnav/de |[Funktionalitäten](Feature_list/de.md) |[ Installieren auf Linux](Install_on_Linux/de.md) @@ -193,5 +190,5 @@ FreeCAD läuft, aber es wurde berichtet, dass die OpenGL Anzeige nicht funktioni |[ Installieren auf Linux](Install_on_Linux/de.md) }} - - +--- +[documentation index](../README.md) > Installing on Windows/de diff --git a/wiki/translations/de/Interesting_links.md b/wiki/translations/de/Interesting_links.md index d578490754..e5764881dc 100644 --- a/wiki/translations/de/Interesting_links.md +++ b/wiki/translations/de/Interesting_links.md @@ -1,7 +1,4 @@ # Interesting links/de - - - {{TOCright}} Diese Seite enthält Verweise zu FreeCAD und anderen FLOSS Projekten. @@ -61,3 +58,6 @@ Diese Seite enthält Verweise zu FreeCAD und anderen FLOSS Projekten. [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Interesting links/de diff --git a/wiki/translations/de/Interface.md b/wiki/translations/de/Interface.md index 10ca44552b..5ed622fb66 100644 --- a/wiki/translations/de/Interface.md +++ b/wiki/translations/de/Interface.md @@ -1,5 +1,5 @@ # Interface/de - {{TOCright}} +{{TOCright}} ## Einleitung @@ -83,4 +83,7 @@ Diese Optionen befinden sich im Menü, {{MenuCommand/de|Werkzeuge → Benutzerde {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Interface/de diff --git a/wiki/translations/de/Interface_Customization.md b/wiki/translations/de/Interface_Customization.md index 89f42c7906..d2870bff3f 100644 --- a/wiki/translations/de/Interface_Customization.md +++ b/wiki/translations/de/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/de - - - - - - {{TOCright}} ## Einführung @@ -286,4 +280,7 @@ Erweiterungen bieten eine weitere Möglichkeit, die Benutzeroberfläche anzupass {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/de diff --git a/wiki/translations/de/Interface_creation.md b/wiki/translations/de/Interface_creation.md index 23ddce16c1..72c3523190 100644 --- a/wiki/translations/de/Interface_creation.md +++ b/wiki/translations/de/Interface_creation.md @@ -1,6 +1,4 @@ # Interface creation/de - - ## Einführung Intensivnutzer haben die Möglichkeit, [Oberflächen erstellen](Interface_creation/de.md) um sie bei der Erstellung komplexer Werkzeuge für ihre benutzerdefinierten [Erweiterungen](Addon/de.md) zu unterstützen, wie z.B. [Makros](Macros/de.md) oder vollständige [Arbeitsbereiche](Workbenches/de.md). @@ -43,3 +41,6 @@ Beispiele für diese Methode findest Du unter [Dialogerstellung](Dialog_creation }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Interface creation/de diff --git a/wiki/translations/de/Introduction_to_Python.md b/wiki/translations/de/Introduction_to_Python.md index bf3b3490fe..d30b951701 100644 --- a/wiki/translations/de/Introduction_to_Python.md +++ b/wiki/translations/de/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/de - - - {{TOCright}} ## Einführung @@ -501,3 +498,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/de diff --git a/wiki/translations/de/KicadStepUp_Workbench.md b/wiki/translations/de/KicadStepUp_Workbench.md index 6b6fd02311..47d7d7e181 100644 --- a/wiki/translations/de/KicadStepUp_Workbench.md +++ b/wiki/translations/de/KicadStepUp_Workbench.md @@ -1,7 +1,4 @@ # KicadStepUp Workbench/de - - -
Symbol Externer Arbeitsbereich KicadStepUp @@ -166,3 +163,6 @@ Neue Arbeitsbereiche sind in der Entwicklung, bleib dran! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > KicadStepUp Workbench/de diff --git a/wiki/translations/de/LGTM.md b/wiki/translations/de/LGTM.md index 504a7a6d0a..1d970a2e50 100644 --- a/wiki/translations/de/LGTM.md +++ b/wiki/translations/de/LGTM.md @@ -1,6 +1,4 @@ # LGTM/de - - ## Übersicht @@ -63,3 +61,6 @@ Also, some classifications (like \'template\' and \'test\') are used by LGTM for - freecad.trails .lgtm.yml on [Github](https://github.com/joelgraff/freecad.trails/blob/dev/.lgtm.yml) [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > LGTM/de diff --git a/wiki/translations/de/Land_Survey_Workbench_Blueprint.md b/wiki/translations/de/Land_Survey_Workbench_Blueprint.md index f6ebbe28b4..a3d9d43ae2 100644 --- a/wiki/translations/de/Land_Survey_Workbench_Blueprint.md +++ b/wiki/translations/de/Land_Survey_Workbench_Blueprint.md @@ -1,7 +1,4 @@ # Land Survey Workbench Blueprint/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -63,3 +60,6 @@ Note: the information in this page is based on a shallow understanding of FreeCA [Category:Roadmap](Category:Roadmap.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > Land Survey Workbench Blueprint/de diff --git a/wiki/translations/de/Lattice2_Workbench.md b/wiki/translations/de/Lattice2_Workbench.md index 4c2345dbf4..6db1517ce6 100644 --- a/wiki/translations/de/Lattice2_Workbench.md +++ b/wiki/translations/de/Lattice2_Workbench.md @@ -1,5 +1,5 @@ # Lattice2 Workbench/de - } +} *align=center|Das FreeCAD Lattice2 Externer Arbeitsbereichssymbol* ## Einführung @@ -155,3 +155,6 @@ After you install the workbench, it should appear at the bottom of list of workb [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Lattice2 Workbench/de diff --git a/wiki/translations/de/Licence.md b/wiki/translations/de/Licence.md index 41edb55da4..de095dc330 100644 --- a/wiki/translations/de/Licence.md +++ b/wiki/translations/de/Licence.md @@ -1,10 +1,4 @@ # Licence/de - - - - - - {{TOCright}} ## In FreeCAD benutzte Lizenzen @@ -61,3 +55,6 @@ Gleichwohl betrifft diese Entscheidung lediglich das Core-System von FreeCAD. Je [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Licence/de diff --git a/wiki/translations/de/Line_drawing_function.md b/wiki/translations/de/Line_drawing_function.md index 91fddde59f..dc132cd060 100644 --- a/wiki/translations/de/Line_drawing_function.md +++ b/wiki/translations/de/Line_drawing_function.md @@ -1,7 +1,4 @@ # Line drawing function/de - - - {{TOCright}} ## Einführung @@ -269,3 +266,6 @@ Wenn Dir diese Übung gefallen hat, warum versuchst Du nicht, dieses kleine Werk Zögere nicht, deine Fragen oder Ideen im [Forum](http://forum.freecadweb.org/) zu teilen! {{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Line drawing function/de diff --git a/wiki/translations/de/Linux_packaging.md b/wiki/translations/de/Linux_packaging.md index db4b5136c0..21cb01fe7d 100644 --- a/wiki/translations/de/Linux_packaging.md +++ b/wiki/translations/de/Linux_packaging.md @@ -1,6 +1,4 @@ # Linux packaging/de - - Linux ermöglicht die Paketerstellung auf unterschiedliche Weise, abhängig von der verwendeten spezifischen Distribution. Beliebte Formate sind Debian Pakete `.deb`, openSuse und Fedora Pakete `.rpm`, und das quasi universelle `.AppImage` Format. @@ -17,3 +15,6 @@ für Windows und MacOS, siehe [Paketerstellung](Packaging/de.md). [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Linux packaging/de diff --git a/wiki/translations/de/List_of_Commands.md b/wiki/translations/de/List_of_Commands.md index 15017ef4e8..84ccd9990b 100644 --- a/wiki/translations/de/List_of_Commands.md +++ b/wiki/translations/de/List_of_Commands.md @@ -1,2 +1,5 @@ # List of Commands/de 1. REDIRECT [:Category:Command Reference/de](:Category:Command_Reference/de.md) + +--- +[documentation index](../README.md) > List of Commands/de diff --git a/wiki/translations/de/Localisation.md b/wiki/translations/de/Localisation.md index 83ba29feb9..871a1da500 100644 --- a/wiki/translations/de/Localisation.md +++ b/wiki/translations/de/Localisation.md @@ -1,10 +1,4 @@ # Localisation/de - - - - - - {{TOCright}} ## Überblick @@ -238,3 +232,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/de diff --git a/wiki/translations/de/Localisation_Sidebar.md b/wiki/translations/de/Localisation_Sidebar.md index e69b3778df..74c18ab732 100644 --- a/wiki/translations/de/Localisation_Sidebar.md +++ b/wiki/translations/de/Localisation_Sidebar.md @@ -1,5 +1,5 @@ # Localisation Sidebar/de - [Lokalisierung](Localisation/de.md) ist der Prozess der Bereitstellung von Software mit einer mehrsprachigen Benutzeroberfläche. Das Dokumentations-Wiki kann auch lokalisiert werden, wie im Abschnitt [Übersetze das FreeCAD Wiki](Localisation#Translate_the_FreeCAD_wiki/de.md) beschrieben. +[Lokalisierung](Localisation/de.md) ist der Prozess der Bereitstellung von Software mit einer mehrsprachigen Benutzeroberfläche. Das Dokumentations-Wiki kann auch lokalisiert werden, wie im Abschnitt [Übersetze das FreeCAD Wiki](Localisation#Translate_the_FreeCAD_wiki/de.md) beschrieben. Die Seitenleiste ist ein wichtiges Navigationswerkzeug in der Wiki Welt, siehe [1](https://www.mediawiki.org/wiki/Manual:Interface/Sidebar/de) für weitere Informationen. @@ -32,3 +32,6 @@ NICHT \"/de\" (/fr, /es, \...) mit einfügen, wenn die Übersetzungseite in der [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation Sidebar/de diff --git a/wiki/translations/de/Localization_Older_Methods.md b/wiki/translations/de/Localization_Older_Methods.md index 5f3a9ebaa7..c5fdebd60b 100644 --- a/wiki/translations/de/Localization_Older_Methods.md +++ b/wiki/translations/de/Localization_Older_Methods.md @@ -1,7 +1,4 @@ # Localization Older Methods/de - - - {{docnav/de |[Markenbindung](Branding/de.md) |[Zusätzliche Python Module](Extra_python_modules/de.md) @@ -156,3 +153,6 @@ and running pyrcc4 Draft.qrc -o qrc\_Draft.py creates a big Python containing al [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localization Older Methods/de diff --git a/wiki/translations/de/MIBA.md b/wiki/translations/de/MIBA.md index 6c379f1dc9..3a407223f2 100644 --- a/wiki/translations/de/MIBA.md +++ b/wiki/translations/de/MIBA.md @@ -1,6 +1,4 @@ # MIBA/de - - ## Einführung Miba ist ein Weg, in ein 2D-Bild Informationen über den 3D-Raum einzubetten. Dies erlaubt es oft, das Bild in einem 3D-Betrachter zu verwenden. Durch die Miba-Informationen ist es möglich, die Position eines 3D-Ortes im 2D-Bild zu berechnen. Das erlaubt dir, das Bild später mit beliebigen 3D-Informationen zu versehen. Du kannst das Bild in einem frühen Stadium aufnehmen (Entwurf) und es später benutzen (z.B. Produktion). Du musst nicht die Art der 3D-Daten oder die Position, wo das das Foto aufgenommen wird. So ist das Bild völlig getrennt von den 3D-Daten. @@ -39,3 +37,6 @@ App.closeDocument(App.ActiveDocument.Name) ``` [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > MIBA/de diff --git a/wiki/translations/de/Macro_3D_Parametric_Curve.md b/wiki/translations/de/Macro_3D_Parametric_Curve.md index 5eade7daf5..8688d64d3f 100644 --- a/wiki/translations/de/Macro_3D_Parametric_Curve.md +++ b/wiki/translations/de/Macro_3D_Parametric_Curve.md @@ -1,5 +1,5 @@ # Macro 3D Parametric Curve/de - {{Macro/de +{{Macro/de |Name=Macro 3D Parametric Curve |Translate=Macro 3D Parametric Curve |Icon=Macro_3D_Parametric_Curve.png @@ -211,6 +211,5 @@ ParamCurv() }} - - - +--- +[documentation index](../README.md) > Macro 3D Parametric Curve/de diff --git a/wiki/translations/de/Macro_3d_Printer_Slicer.md b/wiki/translations/de/Macro_3d_Printer_Slicer.md index ee8d115566..b913bbd83e 100644 --- a/wiki/translations/de/Macro_3d_Printer_Slicer.md +++ b/wiki/translations/de/Macro_3d_Printer_Slicer.md @@ -1,5 +1,5 @@ # Macro 3d Printer Slicer/de - {{Macro/de +{{Macro/de |Name=Macro_3d_Printer_Slicer |Icon=Macro_3d_Printer_Slicer.png |Translate=Macro_3d_Printer_Slicer @@ -85,4 +85,7 @@ subprocess.Popen([SLICER + "KISSlicer", stlFile]) ## Credits Dank an [Wmayer](http://forum.freecadweb.org/viewtopic.php?f=10&t=4686) für seine Hilfe beim Schreiben dieses Skripts. -Ursprüngliches Forumsthema: +Ursprüngliches Forumsthema: + +--- +[documentation index](../README.md) > Macro 3d Printer Slicer/de diff --git a/wiki/translations/de/Macro_AeroFoil.md b/wiki/translations/de/Macro_AeroFoil.md index 323a94b23f..07e50045f0 100644 --- a/wiki/translations/de/Macro_AeroFoil.md +++ b/wiki/translations/de/Macro_AeroFoil.md @@ -1,5 +1,5 @@ # Macro AeroFoil/de - {{Macro/de +{{Macro/de |Name=Makro Tragflächenprofil |Icon=AeroFoil.png |Description=Tragflächenprofil erstellt Tragflächenprofilkurven und -flächen mit vordefinierten Modellen, algebraischen Funktionen und DAT oder CSV Dateien. @@ -230,3 +230,6 @@ __Files__ = "AeroFoil_UI_Files/AeroFoil_Initial_Dialog.ui, "\ \[3\] [FreeCAD Forum Diskussionsseite - AeroFoil](https://forum.freecadweb.org/viewtopic.php?f=22&t=56162) \[4\] [Tragflächenprofil Werkzeuge](http://airfoiltools.com/) enthält etwa 1.638 verschiedene Tragflächenprofile. \[5\] [UIUC Tragflächenprofil Koordinaten Datenbank](https://m-selig.ae.illinois.edu/ads/coord_database.html) enthält fast 1.600 verschiedene Tragflächenprofile. + +--- +[documentation index](../README.md) > Macro AeroFoil/de diff --git a/wiki/translations/de/Macro_Airfoil_Import_&_Scale.md b/wiki/translations/de/Macro_Airfoil_Import_&_Scale.md index ef329fbbd3..b2d23a967a 100644 --- a/wiki/translations/de/Macro_Airfoil_Import_&_Scale.md +++ b/wiki/translations/de/Macro_Airfoil_Import_&_Scale.md @@ -1,5 +1,5 @@ # Macro Airfoil Import & Scale/de - {{Macro/de +{{Macro/de |Name=Macro Airfoil Import & Scale |Translate=Macro Airfoil Import & Scale |Icon=Macro_Airfoil_Import_&_Scale.png @@ -539,3 +539,6 @@ p() Diskussion über [Forum](http://forum.freecadweb.org/viewtopic.php?f=22&t=5554&p=45137&hilit=Airfoil#p45137) [UIUC Applied Aerodynamics Group Departement of Aerospace Engineering](http://aerospace.illinois.edu/m-selig/ads/coord_database.html#N) + +--- +[documentation index](../README.md) > Macro Airfoil Import & Scale/de diff --git a/wiki/translations/de/Macro_Align_Camera_to_Working_Plane.md b/wiki/translations/de/Macro_Align_Camera_to_Working_Plane.md index 6c6f9d5eda..79cf4e5d0c 100644 --- a/wiki/translations/de/Macro_Align_Camera_to_Working_Plane.md +++ b/wiki/translations/de/Macro_Align_Camera_to_Working_Plane.md @@ -1,7 +1,4 @@ # Macro Align Camera to Working Plane/de - - - {{Macro |Name=Macro Align Camera to Working Plane |Icon=Macro_Align_Camera_to_Working_Plane.png @@ -53,6 +50,5 @@ r = FreeCAD.DraftWorkingPlane.getRotation().Rotation.Q c.orientation.setValue(r) ``` - - - +--- +[documentation index](../README.md) > Macro Align Camera to Working Plane/de diff --git a/wiki/translations/de/Macro_Align_View_to_Face.md b/wiki/translations/de/Macro_Align_View_to_Face.md index 111c43df23..763d86fe21 100644 --- a/wiki/translations/de/Macro_Align_View_to_Face.md +++ b/wiki/translations/de/Macro_Align_View_to_Face.md @@ -1,5 +1,5 @@ # Macro Align View to Face/de - {{Macro/de +{{Macro/de |Name=Macro Align View to Face |Icone=Macro_Align_View_to_Face.png |Translate=Macro Align View to Face @@ -71,3 +71,6 @@ cam.orientation.setValue(rot.Q) Gui.SendMsgToActiveView("ViewSelection") }} + +--- +[documentation index](../README.md) > Macro Align View to Face/de diff --git a/wiki/translations/de/Macro_Animated_Constrain.md b/wiki/translations/de/Macro_Animated_Constrain.md index aacb4ca8d9..53b2535440 100644 --- a/wiki/translations/de/Macro_Animated_Constrain.md +++ b/wiki/translations/de/Macro_Animated_Constrain.md @@ -1,5 +1,5 @@ # Macro Animated Constrain/de - {{Macro/de +{{Macro/de |Name=Animated Constrain |Name/de=Animierte Beschränkung |Icon=Macro_Animated_Constrain.png @@ -147,6 +147,5 @@ The page discussion [Macro Animated Constrain](http://forum.freecadweb.org/viewt [Siehe die Animation auf YouTube.](https://www.youtube.com/watch?v=kmqDcomLnk0) - - - +--- +[documentation index](../README.md) > Macro Animated Constrain/de diff --git a/wiki/translations/de/Macro_ArrayCopy.md b/wiki/translations/de/Macro_ArrayCopy.md index 2b53bf189c..676e4ad213 100644 --- a/wiki/translations/de/Macro_ArrayCopy.md +++ b/wiki/translations/de/Macro_ArrayCopy.md @@ -1,5 +1,5 @@ # Macro ArrayCopy/de - {{Macro/de +{{Macro/de |Name=ArrayCopy |Icon=Macro_ArrayCopy.png |Description=Dieses Makro kopiert das ausgewählte Objekt mehrmals in ein Array-Raster @@ -83,3 +83,5 @@ dialog.show() }} +--- +[documentation index](../README.md) > Macro ArrayCopy/de diff --git a/wiki/translations/de/Macro_Automatic_drawing.md b/wiki/translations/de/Macro_Automatic_drawing.md index c56df24d17..0e4af499f0 100644 --- a/wiki/translations/de/Macro_Automatic_drawing.md +++ b/wiki/translations/de/Macro_Automatic_drawing.md @@ -1,5 +1,5 @@ # Macro Automatic drawing/de - {{Macro/de +{{Macro/de |Name=Automatic drawing |Translate=Automatic drawing |Icon=Macro_Automatic_drawing.png @@ -111,3 +111,6 @@ App.activeDocument().AutoDrawing.addObject(App.activeDocument().IsoView) ## Links Das Forum [Automatic drawing](https://forum.freecadweb.org/viewtopic.php?f=8&t=3361) + +--- +[documentation index](../README.md) > Macro Automatic drawing/de diff --git a/wiki/translations/de/Macro_BOLTS.md b/wiki/translations/de/Macro_BOLTS.md index a2e314aa5b..aa7f0f8a21 100644 --- a/wiki/translations/de/Macro_BOLTS.md +++ b/wiki/translations/de/Macro_BOLTS.md @@ -1,5 +1,5 @@ # Macro BOLTS/de - {{Macro/de +{{Macro/de |Name=BOLTS |Icon=Macro_BOLTS.png |Description=BOLTS versucht eine Bibliothek von häufig verwendeten Standardteilen bereitzustellen @@ -34,3 +34,6 @@ Detaillierte Informationen zur Verwendung von BOLTS gibt es in der [Documentatio ## Mitmachen Eine Teilebibliothek, die für ein breites Spektrum von Anwendungsfällen nützlich ist, kann nur von vielen verschiedenen Menschen gemeinsam verwirklicht werden. Es gibt viele Möglichkeiten, zu BOLTS auf einer Reihe von verschiedenen Wegen [beizutragen](https://www.boltsparts.github.io/en/contribute.html). + +--- +[documentation index](../README.md) > Macro BOLTS/de diff --git a/wiki/translations/de/Macro_BoundingBox_Tracing.md b/wiki/translations/de/Macro_BoundingBox_Tracing.md index bf4891556c..8f5284506e 100644 --- a/wiki/translations/de/Macro_BoundingBox_Tracing.md +++ b/wiki/translations/de/Macro_BoundingBox_Tracing.md @@ -1,5 +1,5 @@ # Macro BoundingBox Tracing/de - {{Macro/de +{{Macro/de |Name=Macro BoundingBox Tracing |Translate=Macro BoundingBox Tracing |Icon=BoundBoxTracing.png @@ -454,3 +454,6 @@ ver 0.6 le 08/08/2017: Textinformationsdimension hinzufügen, Container für Rec ver 0.5 le 08/05/2017 : nimm jetzt das \"mesh\" und \"points\" danke wmayer [Makro Bounding-Box für STL importierte Teile und für Punktewolken](http://forum.freecadweb.org/viewtopic.php?f=13&t=22331) ver 0.4 le 04/06/2016 : test if value = 0 then not create boundbox (ex: object Draft) + +--- +[documentation index](../README.md) > Macro BoundingBox Tracing/de diff --git a/wiki/translations/de/Macro_CartoucheFC.md b/wiki/translations/de/Macro_CartoucheFC.md index c45a19423b..ebe38bfdfe 100644 --- a/wiki/translations/de/Macro_CartoucheFC.md +++ b/wiki/translations/de/Macro_CartoucheFC.md @@ -1,5 +1,5 @@ # Macro CartoucheFC/de - {{Macro/de +{{Macro/de |Name=Macro CartoucheFC |Icon=Macro_CartoucheFC.png |Translate=Macro CartoucheFC @@ -945,6 +945,5 @@ Dieses Modul funktioniert mit dem in FreeCAD enthaltenen Zeichnungsblatt. Dieses ver 0.3 02/07/2014 converted to PyQt4 and PySide - - - +--- +[documentation index](../README.md) > Macro CartoucheFC/de diff --git a/wiki/translations/de/Macro_CartoucheFC_2.md b/wiki/translations/de/Macro_CartoucheFC_2.md index 29a20b2f92..46a05678fe 100644 --- a/wiki/translations/de/Macro_CartoucheFC_2.md +++ b/wiki/translations/de/Macro_CartoucheFC_2.md @@ -1,5 +1,5 @@ # Macro CartoucheFC 2/de - {{Macro/de +{{Macro/de |Name=Macro CartoucheFC 2 |Translate=Macro CartoucheFC 2 |Icon=Macro_CartoucheFC_2.png @@ -706,3 +706,6 @@ MainWindow.show() ## Ausführung 5.0 : 08/08/2014 + +--- +[documentation index](../README.md) > Macro CartoucheFC 2/de diff --git a/wiki/translations/de/Macro_CartoucheFC_Full.md b/wiki/translations/de/Macro_CartoucheFC_Full.md index 9b99543018..5f5cd31122 100644 --- a/wiki/translations/de/Macro_CartoucheFC_Full.md +++ b/wiki/translations/de/Macro_CartoucheFC_Full.md @@ -1,5 +1,5 @@ # Macro CartoucheFC Full/de - {{Macro/de +{{Macro/de |Name=Macro_CartoucheFC_Full |Translate=Macro_CartoucheFC_Full |Icon=Macro_CartoucheFC_Full.png @@ -1179,6 +1179,5 @@ ver 00.06 : 13/10/2016 : selection format page and position for the symbol conve ver 5 : 08/08/2014 PyQt4 and PySide - - - +--- +[documentation index](../README.md) > Macro CartoucheFC Full/de diff --git a/wiki/translations/de/Macro_CenterFace.md b/wiki/translations/de/Macro_CenterFace.md index d2a00fc3e7..721fd2db39 100644 --- a/wiki/translations/de/Macro_CenterFace.md +++ b/wiki/translations/de/Macro_CenterFace.md @@ -1,5 +1,5 @@ # Macro CenterFace/de - {{Macro/de +{{Macro/de |Name=Macro CenterFace |Translate=Macro CenterFace |Description=Dieses Makrotrace (bearbeitbar) zeichnet die mittlere Fläche (Masse) mit 1 Punkt und druckt die Koordinaten. @@ -142,6 +142,5 @@ ver 0.2 07/10/2018 : upgrade for FC 017 \"getGlobalPlacement\" ver 0.1 29/04/2014 - - - +--- +[documentation index](../README.md) > Macro CenterFace/de diff --git a/wiki/translations/de/Macro_CloneConvert.md b/wiki/translations/de/Macro_CloneConvert.md index ec75e01156..884d7d61ab 100644 --- a/wiki/translations/de/Macro_CloneConvert.md +++ b/wiki/translations/de/Macro_CloneConvert.md @@ -1,5 +1,5 @@ # Macro CloneConvert/de - {{Macro/de +{{Macro/de |Name=Macro CloneConvert |Translate=Macro CloneConvert |Icon=Macro_CloneConvert.png @@ -137,3 +137,6 @@ Laden Sie das Makro in herunter Gist [Macro\_CloneConvert.FCMacro](https://gist. 02/07/2014 ver. 0.3 = modified to operate PyQt4 and PySide 09/05/2014 ver. 0.2 = adding function \"Copy\" + +--- +[documentation index](../README.md) > Macro CloneConvert/de diff --git a/wiki/translations/de/Macro_Corner_shapes_wizard.md b/wiki/translations/de/Macro_Corner_shapes_wizard.md index ff85fbace6..bd365cc530 100644 --- a/wiki/translations/de/Macro_Corner_shapes_wizard.md +++ b/wiki/translations/de/Macro_Corner_shapes_wizard.md @@ -1,5 +1,5 @@ # Macro Corner shapes wizard/de - {{Macro/de +{{Macro/de |Name=Corner shapes wizard |Translate=Corner shapes wizard |Icon=Macro_Corner_shapes_wizard.png @@ -196,6 +196,5 @@ ToolBar Icon ![](images/Macro_Corner_shapes_wizard.png ) QtCore.QMetaObject.connectSlotsByName(dialog) dialog.show() - - - +--- +[documentation index](../README.md) > Macro Corner shapes wizard/de diff --git a/wiki/translations/de/Macro_Cut_Circle.md b/wiki/translations/de/Macro_Cut_Circle.md index f5ede10c36..6c205dbb58 100644 --- a/wiki/translations/de/Macro_Cut_Circle.md +++ b/wiki/translations/de/Macro_Cut_Circle.md @@ -1,5 +1,5 @@ # Macro Cut Circle/de - {{Macro/de +{{Macro/de |Name=Macro Cut Circle |Name/de=Makro Cut Circle |Icon=Macro_Cut_Circle.png @@ -118,3 +118,6 @@ ver 00.03 02/07/2019 : \"App.ActiveDocument.recompute()\" hinzugefügt ver 00.02 09/03/2015 : Hinzufügen von Bögen erzeugen, die abwechselnd rot-weiß-rot-weiß gefärbt sind \.... oder nicht ver 00.01 24/02/2015 : + +--- +[documentation index](../README.md) > Macro Cut Circle/de diff --git a/wiki/translations/de/Macro_Cut_Line.md b/wiki/translations/de/Macro_Cut_Line.md index c32d669e31..fafc6b3e90 100644 --- a/wiki/translations/de/Macro_Cut_Line.md +++ b/wiki/translations/de/Macro_Cut_Line.md @@ -1,5 +1,5 @@ # Macro Cut Line/de - {{Macro/de +{{Macro/de |Name=Macro Cut Line |Name/de=Makro Linie Schneiden |Icon=Macro_Cut_Line.png @@ -124,3 +124,6 @@ cutLine(4, createLine = 1, biColor = 1, createPoint = 0) ## Verweise diese Funktion verwendet die Funktion discretize [the original code](http://forum.freecadweb.org/viewtopic.php?f=3&t=4217&hilit=discretize) + +--- +[documentation index](../README.md) > Macro Cut Line/de diff --git a/wiki/translations/de/Macro_DXF_to_Face_and_Sketch.md b/wiki/translations/de/Macro_DXF_to_Face_and_Sketch.md index cdbe0def89..c082472fc6 100644 --- a/wiki/translations/de/Macro_DXF_to_Face_and_Sketch.md +++ b/wiki/translations/de/Macro_DXF_to_Face_and_Sketch.md @@ -1,5 +1,5 @@ # Macro DXF to Face and Sketch/de - {{Macro/de +{{Macro/de |Name=DXF to Face and Sketch |Name/de=DXF zu Fläche und Skizze |Icon=Macro_DXF_to_Face_and_Sketch.png @@ -255,6 +255,5 @@ else: - Makros\_Rezepte [Makro Flächen aus einer DXF Datei erzeugen](http://www.freecadweb.org/wiki/index.php?title=Macros_recipes) - Previous version [Makro Flächen aus einer DXF Datei erzeugen](Macro_Creating_faces_from_a_DXF_file/de.md) - - - +--- +[documentation index](../README.md) > Macro DXF to Face and Sketch/de diff --git a/wiki/translations/de/Macro_Delta_xyz.md b/wiki/translations/de/Macro_Delta_xyz.md index 698e72bca0..a523c21d18 100644 --- a/wiki/translations/de/Macro_Delta_xyz.md +++ b/wiki/translations/de/Macro_Delta_xyz.md @@ -1,5 +1,5 @@ # Macro Delta xyz/de - {{Macro/de +{{Macro/de |Name=Macro Delta xyz |Icon=Macro_Delta_xyz.png |Translate=Macro Delta xyz @@ -275,3 +275,6 @@ Version 0.2 2020-10-23: Hinzufügen Drücken Sie die Taste **SHIFT**, klicken Si Hinzufügen von Optionen, die in der bevorzugten FC konfiguriert werden können Version 0.1 2013-11-29 : [view toolbar : measure distance tool](https://forum.freecadweb.org/viewtopic.php?f=3&t=5036) + +--- +[documentation index](../README.md) > Macro Delta xyz/de diff --git a/wiki/translations/de/Macro_Draft_Circle_3_Points.md b/wiki/translations/de/Macro_Draft_Circle_3_Points.md index 9e3fc0438a..97a9cecd71 100644 --- a/wiki/translations/de/Macro_Draft_Circle_3_Points.md +++ b/wiki/translations/de/Macro_Draft_Circle_3_Points.md @@ -1,5 +1,5 @@ # Macro Draft Circle 3 Points/de - {{Macro/de +{{Macro/de |Name=Macro Draft Circle 3 Points |Icon=Macro_Make_Circle_3_Points.png |Name/de=Macro Draft Circle 3 Points @@ -283,3 +283,6 @@ Schauen Sie abwechselnd mit dem linken und dem rechten Auge, um die Ansichten se The genesis of the macro **Draft Circle 3 Points** [on the forum (PYTHON) coordonnées d\'un point](http://forum.freecadweb.org/viewtopic.php?f=12&t=3696&sid=17886f953113e162dc9a4a843e1fce94) helped flachyjoe thanks. The formula comes from [cercle\_3pts.pdf](http://www-obs.univ-lyon1.fr/labo/fc/Ateliers_archives/ateliers_2005-06/cercle_3pts.pdf) and used with the kind permission of its author. + +--- +[documentation index](../README.md) > Macro Draft Circle 3 Points/de diff --git a/wiki/translations/de/Macro_Draft_Circle_3_Points_3D.md b/wiki/translations/de/Macro_Draft_Circle_3_Points_3D.md index f61bd34edd..ca8c26affd 100644 --- a/wiki/translations/de/Macro_Draft_Circle_3_Points_3D.md +++ b/wiki/translations/de/Macro_Draft_Circle_3_Points_3D.md @@ -1,5 +1,5 @@ # Macro Draft Circle 3 Points 3D/de - {{Macro/de +{{Macro/de |Name=Macro Draft Circle 3 Points 3D |Translate=Macro Draft Circle 3 Points 3D |Icon=Macro_Draft_Circle_3_Points.png @@ -132,3 +132,5 @@ else: }} +--- +[documentation index](../README.md) > Macro Draft Circle 3 Points 3D/de diff --git a/wiki/translations/de/Macro_Draw_2D_Function.md b/wiki/translations/de/Macro_Draw_2D_Function.md index 9bed78dee2..b6481f6773 100644 --- a/wiki/translations/de/Macro_Draw_2D_Function.md +++ b/wiki/translations/de/Macro_Draw_2D_Function.md @@ -1,5 +1,5 @@ # Macro Draw 2D Function/de - {{Macro/de +{{Macro/de |Name=Draw 2D Function |Translate=Draw 2D Function |Icon=Macro_Draw_2D_Function.png @@ -61,3 +61,5 @@ Part.show(WWire) }} +--- +[documentation index](../README.md) > Macro Draw 2D Function/de diff --git a/wiki/translations/de/Macro_Draw_Parametric_2D_Function.md b/wiki/translations/de/Macro_Draw_Parametric_2D_Function.md index 16d4429a2c..ace7600390 100644 --- a/wiki/translations/de/Macro_Draw_Parametric_2D_Function.md +++ b/wiki/translations/de/Macro_Draw_Parametric_2D_Function.md @@ -1,5 +1,5 @@ # Macro Draw Parametric 2D Function/de - {{Macro/de +{{Macro/de |Name=Macro Draw Parametric 2D Function |Icon=Macro_Draw_Parametric_2D_Function.png |Translate=Macro Draw Parametric 2D Function @@ -77,3 +77,5 @@ draw2Dfunction(xFunction="0.5*n", yFunction="-0.75*n", n=0, nd=-math.pi, step=50 }} +--- +[documentation index](../README.md) > Macro Draw Parametric 2D Function/de diff --git a/wiki/translations/de/Macro_EdgesToArc.md b/wiki/translations/de/Macro_EdgesToArc.md index 73283df134..ba0d66bbd9 100644 --- a/wiki/translations/de/Macro_EdgesToArc.md +++ b/wiki/translations/de/Macro_EdgesToArc.md @@ -1,5 +1,5 @@ # Macro EdgesToArc/de - {{Macro/de +{{Macro/de |Name=EdgesToArc |Translate=EdgesToArc |Icon=Macro_EdgesToArc.png @@ -96,6 +96,5 @@ if circular: FreeCAD.ActiveDocument.removeObject(shape.Name) }} - - - +--- +[documentation index](../README.md) > Macro EdgesToArc/de diff --git a/wiki/translations/de/Macro_Ellipse-Center+2Points.md b/wiki/translations/de/Macro_Ellipse-Center+2Points.md index 3d7a8de95d..bf3bf490ef 100644 --- a/wiki/translations/de/Macro_Ellipse-Center+2Points.md +++ b/wiki/translations/de/Macro_Ellipse-Center+2Points.md @@ -1,5 +1,5 @@ # Macro Ellipse-Center+2Points/de - {{Macro/de +{{Macro/de |Name=Macro Ellipse-Center+2Points |Name/de=Macro Ellipse-Center+2Points |Icon=Macro_Ellipse-Center%2B2Points.png @@ -67,6 +67,5 @@ except: }} - - - +--- +[documentation index](../README.md) > Macro Ellipse-Center+2Points/de diff --git a/wiki/translations/de/Macro_FCInfo.md b/wiki/translations/de/Macro_FCInfo.md index bd1bcf1f94..3c068aa791 100644 --- a/wiki/translations/de/Macro_FCInfo.md +++ b/wiki/translations/de/Macro_FCInfo.md @@ -1,5 +1,5 @@ # Macro FCInfo/de - {{Macro/de +{{Macro/de |Name=Macro FCInfo |Translate=Macro FCInfo |Icon=FCInfo.png @@ -329,6 +329,5 @@ Siehe auch [Arch Überblick](Arch_Survey/de.md) Arch Überblick Macro FCInfo/de diff --git a/wiki/translations/de/Macro_FCInfo_Alternate_Linux.md b/wiki/translations/de/Macro_FCInfo_Alternate_Linux.md index 5f6b75a6b8..794746e0af 100644 --- a/wiki/translations/de/Macro_FCInfo_Alternate_Linux.md +++ b/wiki/translations/de/Macro_FCInfo_Alternate_Linux.md @@ -1,5 +1,5 @@ # Macro FCInfo Alternate Linux/de - {{Macro/de +{{Macro/de |Name=Macro FCInfo Alternate Linux |Translate=Macro FCInfo Alternate Linux |Icon=FCInfo.png @@ -45,6 +45,5 @@ Mit diesem Makro gespeicherte Dateien sind nicht kompatibel mit den Dateien der Beide Versionen können unabhängig vom verwendeten Betriebssystem ausgeführt werden. - - - +--- +[documentation index](../README.md) > Macro FCInfo Alternate Linux/de diff --git a/wiki/translations/de/Macro_FaceToSketch.md b/wiki/translations/de/Macro_FaceToSketch.md index 655fa24029..f55e68ff91 100644 --- a/wiki/translations/de/Macro_FaceToSketch.md +++ b/wiki/translations/de/Macro_FaceToSketch.md @@ -1,5 +1,5 @@ # Macro FaceToSketch/de - {{Macro/de +{{Macro/de |Name=FaceToSketch |Name/de=FlächeZuSkizze |Icon=Macro_FaceToSketch.png @@ -36,6 +36,5 @@ for wire in wires: FreeCAD.ActiveDocument.removeObject(wire.Name) }} - - - +--- +[documentation index](../README.md) > Macro FaceToSketch/de diff --git a/wiki/translations/de/Macro_FlattenWire.md b/wiki/translations/de/Macro_FlattenWire.md index 8492748e67..05b1e6c5d0 100644 --- a/wiki/translations/de/Macro_FlattenWire.md +++ b/wiki/translations/de/Macro_FlattenWire.md @@ -1,5 +1,5 @@ # Macro FlattenWire/de - {{Macro/de +{{Macro/de |Name=FlattenWire |Icon=Macro_FlattenWire.png |Description=Dieses Makro glättet Zugdrähte, die nicht auf ihre mittlere Z-Koordinate ausgerichtet sind @@ -34,6 +34,5 @@ obj.Points = newppoints }} - - - +--- +[documentation index](../README.md) > Macro FlattenWire/de diff --git a/wiki/translations/de/Macro_ForceRecompute.md b/wiki/translations/de/Macro_ForceRecompute.md index 91a296f967..31396ac475 100644 --- a/wiki/translations/de/Macro_ForceRecompute.md +++ b/wiki/translations/de/Macro_ForceRecompute.md @@ -1,5 +1,5 @@ # Macro ForceRecompute/de - {{Macro/de +{{Macro/de |Name=Macro Force Recompute |Icon=Force_Recompute.png |Description=Dieses kleine Makro erzwingt eine manuelle Neuberechnung des Modells. @@ -42,6 +42,5 @@ FreeCAD.ActiveDocument.recompute() }} - - - +--- +[documentation index](../README.md) > Macro ForceRecompute/de diff --git a/wiki/translations/de/Macro_Half-Hull_Model.md b/wiki/translations/de/Macro_Half-Hull_Model.md index 36ee72d705..fc2af7d748 100644 --- a/wiki/translations/de/Macro_Half-Hull_Model.md +++ b/wiki/translations/de/Macro_Half-Hull_Model.md @@ -1,5 +1,5 @@ # Macro Half-Hull Model/de - {{Macro/de +{{Macro/de |Name=Macro Half-Hull Model |Name/de=Makro Halb-Rumpf Modell |Icon=Macro_Half_Hull_Model.png @@ -932,6 +932,5 @@ This script is running bug free. But due to the large range of possible inputs i The script is too long for the Wiki to display so it must be copied or downloaded from [unabbreviated script on pastebin.com](http://pastebin.com/raw.php?i=tZMpUi6F) - - - +--- +[documentation index](../README.md) > Macro Half-Hull Model/de diff --git a/wiki/translations/de/Macro_HealArcs.md b/wiki/translations/de/Macro_HealArcs.md index 59bff56f2e..79a85c7fa5 100644 --- a/wiki/translations/de/Macro_HealArcs.md +++ b/wiki/translations/de/Macro_HealArcs.md @@ -1,5 +1,5 @@ # Macro HealArcs/de - {{Macro/de +{{Macro/de |Name=HealArcs |Translate=HealArcs |Icon=Macro_HealArcs.png @@ -45,6 +45,5 @@ else: FreeCAD.ActiveDocument.removeObject(n) }} - - - +--- +[documentation index](../README.md) > Macro HealArcs/de diff --git a/wiki/translations/de/Macro_HighlightDifference.md b/wiki/translations/de/Macro_HighlightDifference.md index deb259ad18..28053d8720 100644 --- a/wiki/translations/de/Macro_HighlightDifference.md +++ b/wiki/translations/de/Macro_HighlightDifference.md @@ -1,5 +1,5 @@ # Macro HighlightDifference/de - {{Macro/de +{{Macro/de |Name=HighlightDifference |Name/de=UnterschiedHervorheben |Description=Berechne den Unterschied zwischen zwei Formen. Hinzufügungen sind rot markiert, Entnahmen sind grün markiert. Beide Originalteile werden halb transparent sein. Das Volumen der Hinzufügungen und Entnahmen wird in der Konsole ausgedruckt. @@ -39,3 +39,6 @@ Image:Macro HighlightDifference 00.png\|Originalobjekte Image:Macro HighlightDif - Siehe für das ergänzende Makro [Macro\_GemeinsamHervorheben](Macro_HighlightCommon/de.md) - Die Diskussion im Forum [\"Kollisionserkennung\", überlappend](http://forum.freecadweb.org/viewtopic.php?f=22&t=12426) + +--- +[documentation index](../README.md) > Macro HighlightDifference/de diff --git a/wiki/translations/de/Macro_JointWire.md b/wiki/translations/de/Macro_JointWire.md index 7a64732f1b..7ce7134dc1 100644 --- a/wiki/translations/de/Macro_JointWire.md +++ b/wiki/translations/de/Macro_JointWire.md @@ -1,5 +1,5 @@ # Macro JointWire/de - **!!! Dieses Makro muss korrigiert werden. !!!** +**!!! Dieses Makro muss korrigiert werden. !!!** {{Macro/de @@ -90,6 +90,5 @@ Werkzeugleistensymbol ![](images/Macro_JointWire.png ) }} - - - +--- +[documentation index](../README.md) > Macro JointWire/de diff --git a/wiki/translations/de/Macro_Line_Length.md b/wiki/translations/de/Macro_Line_Length.md index 29a3ea9a41..582d61a19a 100644 --- a/wiki/translations/de/Macro_Line_Length.md +++ b/wiki/translations/de/Macro_Line_Length.md @@ -1,5 +1,5 @@ # Macro Line Length/de - {{Macro/de +{{Macro/de |Name=Macro Line Length |Translate=Macro Line Length |Icon=Macro_Line_Length.png @@ -74,3 +74,5 @@ oder Wahl >>> line_length(length = 50, angle = 45) ``` +--- +[documentation index](../README.md) > Macro Line Length/de diff --git a/wiki/translations/de/Macro_Loft.md b/wiki/translations/de/Macro_Loft.md index b7dc55f36a..81c6b93d49 100644 --- a/wiki/translations/de/Macro_Loft.md +++ b/wiki/translations/de/Macro_Loft.md @@ -1,5 +1,5 @@ # Macro Loft/de - {{Macro/de +{{Macro/de |Name=Macro Loft |Icon=FCCreaLoft.png |Description=Erzeugt ein Loft mit ausgewählten Drähten. @@ -64,3 +64,6 @@ ver 00.02 : 09/02/2016 : Add button \"Select all\" and little option displayed i ver 00.03 : 09/02/2016 : minor (display on button) ver 00.04 : 03/07/2019 : adapt to Python 3 + +--- +[documentation index](../README.md) > Macro Loft/de diff --git a/wiki/translations/de/Macro_MacroMenu.md b/wiki/translations/de/Macro_MacroMenu.md index 955ca25df3..dbc8bb8590 100644 --- a/wiki/translations/de/Macro_MacroMenu.md +++ b/wiki/translations/de/Macro_MacroMenu.md @@ -1,5 +1,5 @@ # Macro MacroMenu/de - {{Macro/de +{{Macro/de |Name=Macro MacroMenu |Translate=Macro MacroMenu |Icon=Macro_MacroMenu.png @@ -55,6 +55,5 @@ if macroPath and os.path.isdir(macroPath): }} - - - +--- +[documentation index](../README.md) > Macro MacroMenu/de diff --git a/wiki/translations/de/Macro_Make_Circle_3_Points.md b/wiki/translations/de/Macro_Make_Circle_3_Points.md index c272949ea4..2b66f057f1 100644 --- a/wiki/translations/de/Macro_Make_Circle_3_Points.md +++ b/wiki/translations/de/Macro_Make_Circle_3_Points.md @@ -1,5 +1,5 @@ # Macro Make Circle 3 Points/de - {{Macro/de +{{Macro/de |Name=Macro Make Circle 3 Points |Icon=Macro_Make_Circle_3_Points.png |Translate=Macro Make Circle 3 Points @@ -633,3 +633,6 @@ The formula adapted by \" galou\_breizh \" circle in 3D space comes from [Circum Separate programs are located here, [Macro Draft Circle 3 Points](Macro_Draft_Circle_3_Points.md) [Macro Draft Circle 3 Points 3D](Macro_Draft_Circle_3_Points_3D.md) + +--- +[documentation index](../README.md) > Macro Make Circle 3 Points/de diff --git a/wiki/translations/de/Macro_Make_Cube.md b/wiki/translations/de/Macro_Make_Cube.md index ee66ac07c4..8c66672b5e 100644 --- a/wiki/translations/de/Macro_Make_Cube.md +++ b/wiki/translations/de/Macro_Make_Cube.md @@ -1,7 +1,4 @@ # Macro Make Cube/de - - - {{Macro/de |Name=Make Cube |Name/de=Make Cube @@ -154,3 +151,5 @@ class myCommand(draftTools.Creator): myCommand() ``` +--- +[documentation index](../README.md) > Macro Make Cube/de diff --git a/wiki/translations/de/Macro_MeasureCircle.md b/wiki/translations/de/Macro_MeasureCircle.md index d6a112529e..fb4e526435 100644 --- a/wiki/translations/de/Macro_MeasureCircle.md +++ b/wiki/translations/de/Macro_MeasureCircle.md @@ -1,5 +1,5 @@ # Macro MeasureCircle/de - {{Macro/de +{{Macro/de |Name=Macro MeasureCircle|Name/de=Makro Kreis messen |Icon=Macro_MeasureCircle.png |Description=Compute the radius of a circle by 3 points or a circular edge @@ -33,6 +33,5 @@ ToolBar Icon ![](images/Macro_MeasureCircle.png ) **Macro\_MeasureCircle.FCMacro** - - - +--- +[documentation index](../README.md) > Macro MeasureCircle/de diff --git a/wiki/translations/de/Macro_MeshToPart.md b/wiki/translations/de/Macro_MeshToPart.md index f00509845c..1b393877f1 100644 --- a/wiki/translations/de/Macro_MeshToPart.md +++ b/wiki/translations/de/Macro_MeshToPart.md @@ -1,5 +1,5 @@ # Macro MeshToPart/de - {{Macro/de +{{Macro/de |Name=MeshToPart |Icon=Macro_MeshToPart.png |Translate=MeshToPart @@ -65,3 +65,6 @@ for obj in FreeCADGui.Selection.getSelection(): ## Verknüpfung Die Diskussion im Forum [Convert mesh to solid?](http://forum.freecadweb.org/viewtopic.php?f=3&t=253&hilit=getPlanarSegments) + +--- +[documentation index](../README.md) > Macro MeshToPart/de diff --git a/wiki/translations/de/Macro_MessageBox.md b/wiki/translations/de/Macro_MessageBox.md index 9d8c6c7f3b..d82117b859 100644 --- a/wiki/translations/de/Macro_MessageBox.md +++ b/wiki/translations/de/Macro_MessageBox.md @@ -1,5 +1,5 @@ # Macro MessageBox/de - {{Macro/de +{{Macro/de |Name=MessageBox |Translate=MessageBox |Icon=Macro MessageBox.png @@ -66,6 +66,5 @@ Beispiel: "+str(z)+"\nRayon\t : "+str(r)) }} - - - +--- +[documentation index](../README.md) > Macro MessageBox/de diff --git a/wiki/translations/de/Macro_ObjectInfo.md b/wiki/translations/de/Macro_ObjectInfo.md index 0e955655cc..183acfbbfc 100644 --- a/wiki/translations/de/Macro_ObjectInfo.md +++ b/wiki/translations/de/Macro_ObjectInfo.md @@ -1,5 +1,5 @@ # Macro ObjectInfo/de - {{Macro/de +{{Macro/de |Name=Macro ObjectInfo |Translate=Macro ObjectInfo |Description=Liefert Informationen zum ausgewählten Objekt. @@ -48,6 +48,5 @@ Ein FreeCAD-Benutzer hat ein benutzerfreundliches \"Info\" Modul erstellt, das S Vom Forum [Info Workbench - Help with icons please.](http://forum.freecadweb.org/viewtopic.php?f=10&t=3185) - - - +--- +[documentation index](../README.md) > Macro ObjectInfo/de diff --git a/wiki/translations/de/Macro_PartsLibrary.md b/wiki/translations/de/Macro_PartsLibrary.md index fab8b0f389..44e195add4 100644 --- a/wiki/translations/de/Macro_PartsLibrary.md +++ b/wiki/translations/de/Macro_PartsLibrary.md @@ -1,5 +1,5 @@ # Macro PartsLibrary/de - {{Macro/de +{{Macro/de |Name=Parts Library |Icon=FreeCAD Doc.png |Translate=Parts Library @@ -28,3 +28,6 @@ Dieses Makro, das ebenfalls in der Bibliothek enthalten ist, zeigt ein Browser-F ToolBar Icon ![](images/FreeCAD_Doc.png ) [PartsLibrary.FCMacro](http://github.com/yorikvanhavre/FreeCAD-library/blob/master/PartsLibrary.FCMacro) + +--- +[documentation index](../README.md) > Macro PartsLibrary/de diff --git a/wiki/translations/de/Macro_PropertyMemo.md b/wiki/translations/de/Macro_PropertyMemo.md index 6121e7829a..2d48cae48c 100644 --- a/wiki/translations/de/Macro_PropertyMemo.md +++ b/wiki/translations/de/Macro_PropertyMemo.md @@ -1,7 +1,4 @@ # Macro PropertyMemo/de - - -
@@ -413,3 +410,6 @@ Meine Makros auf gist [mario52a](https://gist.github.com/mario52a) - ver 00.03 2020/05/17 : grid layout for 0.19 - ver 00.02 19/10/2015 : add checkBox for choice memo String or memo List + +--- +[documentation index](../README.md) > Macro PropertyMemo/de diff --git a/wiki/translations/de/Macro_Rectellipse.md b/wiki/translations/de/Macro_Rectellipse.md index 615e815a18..14c1e21fad 100644 --- a/wiki/translations/de/Macro_Rectellipse.md +++ b/wiki/translations/de/Macro_Rectellipse.md @@ -1,5 +1,5 @@ # Macro Rectellipse/de - {{Macro/de +{{Macro/de |Name=Rectellipse Macro |Icon=Macro_Rectellipse.png |Translate=Rectellipse Macro @@ -90,3 +90,6 @@ if __name__ == "__main__": ## Link [Den Code von Github erhalten Sie hier](https://github.com/FreeCAD/FreeCAD-macros/blob/master/ParametricObjectCreation/Rectellipse.FCMacro) + +--- +[documentation index](../README.md) > Macro Rectellipse/de diff --git a/wiki/translations/de/Macro_Remove_parametric_history.md b/wiki/translations/de/Macro_Remove_parametric_history.md index d9a3c1c557..45980cb95d 100644 --- a/wiki/translations/de/Macro_Remove_parametric_history.md +++ b/wiki/translations/de/Macro_Remove_parametric_history.md @@ -1,5 +1,5 @@ # Macro Remove parametric history/de - {{Macro/de +{{Macro/de |Name=Remove parametric history |Icon=Macro_Remove_parametric_history.png |Description=Dadurch wird die gesamte parametrische Assoziativität eines Objekts entfernt und bleibt als "dumme" Form erhalten @@ -38,6 +38,5 @@ newObject.Shape = newShape }} - - - +--- +[documentation index](../README.md) > Macro Remove parametric history/de diff --git a/wiki/translations/de/Macro_Rotate_View.md b/wiki/translations/de/Macro_Rotate_View.md index bcbb257480..9c9354e3ce 100644 --- a/wiki/translations/de/Macro_Rotate_View.md +++ b/wiki/translations/de/Macro_Rotate_View.md @@ -1,5 +1,5 @@ # Macro Rotate View/de - {{Macro/de +{{Macro/de |Name=Rotate View by 90° |Icon=Macro Rotate View view 90 Degrees.png |Translate=Rotate View by 90° @@ -37,6 +37,5 @@ nrot = cam.orientation.getValue() * rot cam.orientation = nrot }} - - - +--- +[documentation index](../README.md) > Macro Rotate View/de diff --git a/wiki/translations/de/Macro_Screen_Wiki.md b/wiki/translations/de/Macro_Screen_Wiki.md index fa6354deb3..37f1f55cbe 100644 --- a/wiki/translations/de/Macro_Screen_Wiki.md +++ b/wiki/translations/de/Macro_Screen_Wiki.md @@ -1,7 +1,4 @@ # Macro Screen Wiki/de - - - {{Macro |Name=Macro Screen Wiki |Icon=Macro_Screen_Wiki.png @@ -277,3 +274,6 @@ Version=0.03: 2020/10/30 : create a tool bar for the image and new button for un Version=0.02: 2020/05/04 : correct bug color button (self.PB\_01\_Color obsolete) Version=0.01: 2020/03/21 + +--- +[documentation index](../README.md) > Macro Screen Wiki/de diff --git a/wiki/translations/de/Macro_SelectVisible.md b/wiki/translations/de/Macro_SelectVisible.md index 18e893f3d2..5afa7b713a 100644 --- a/wiki/translations/de/Macro_SelectVisible.md +++ b/wiki/translations/de/Macro_SelectVisible.md @@ -1,5 +1,5 @@ # Macro SelectVisible/de - {{Macro/de +{{Macro/de |Name=Macro SelectVisible |Translate=Macro SelectVisible |Icon=SelectVisible.png @@ -54,4 +54,7 @@ else: for o in doc.Objects: if o.ViewObject.Visibility: Gui.Selection.addSelection(o) -}} +}} + +--- +[documentation index](../README.md) > Macro SelectVisible/de diff --git a/wiki/translations/de/Macro_SimpleProperties.md b/wiki/translations/de/Macro_SimpleProperties.md index d6e74476d7..de5605e4ec 100644 --- a/wiki/translations/de/Macro_SimpleProperties.md +++ b/wiki/translations/de/Macro_SimpleProperties.md @@ -1,5 +1,5 @@ # Macro SimpleProperties/de - {{Macro +{{Macro |Name=SimplProperties |Name/de=EinfacheEigenschaften |Icon=Macro_SimpleProperties.png @@ -128,3 +128,5 @@ else: }} +--- +[documentation index](../README.md) > Macro SimpleProperties/de diff --git a/wiki/translations/de/Macro_Site_From_Contours.md b/wiki/translations/de/Macro_Site_From_Contours.md index 8851bbab00..f440f1a8af 100644 --- a/wiki/translations/de/Macro_Site_From_Contours.md +++ b/wiki/translations/de/Macro_Site_From_Contours.md @@ -1,7 +1,4 @@ # Macro Site From Contours/de - - - {{Macro |Name=Macro Site From Contours |Icon=Macro_Site_From_Contours.png @@ -102,3 +99,6 @@ FreeCAD.ActiveDocument.recompute() ## Verweis Das Diskussionsforum [Create Toposurface from DXF](https://forum.freecadweb.org/viewtopic.php?f=3&t=30569) + +--- +[documentation index](../README.md) > Macro Site From Contours/de diff --git a/wiki/translations/de/Macro_Snip.md b/wiki/translations/de/Macro_Snip.md index f3e05d2ec1..d51973f99e 100644 --- a/wiki/translations/de/Macro_Snip.md +++ b/wiki/translations/de/Macro_Snip.md @@ -1,5 +1,5 @@ # Macro Snip/de - {{Macro/de +{{Macro/de |Name=Schnitt |Icon=Snip.png |Description=Verwende dieses Makro, um Bildschirmfotos im FreeCAD-Forum zu veröffentlichen.
Am besten füge dieses Makro zu deiner globalen benutzerdefinierten Makro-Werkzeugleiste hinzu, damit du schnell und einfach darauf zugreifen kannst.
Wenn du im FreeCAD-Forum veröffentlichst, ist es oft nützlich, Bildschirmfotos einbinden zu können. Das Problem ist, dass dies eine etwas mühsame Aufgabe ist. Dieses Makro soll diese Aufgabe etwas erleichtern.
Das Makro kann Bildschirmfotos machen oder es kann vorhandene Bildschirmfotos verwenden, die bereits in die Zwischenablage des Systems kopiert wurden. Um das bereits in der Zwischenablage befindliche Bild zu umgehen, drücke die Umschalttaste, während du das Makro aufrufst. Um das Makro zur Aufnahme des Bildschirmfotos zu verwenden, passe die Größe und Platzierung des eingeblendeten Dialogfelds an, und klicke dann auf OK. Wenn du auf OK klickst, versucht das Makro, ein Bildschirmfoto des vom Dialogfeld abgedeckten Bildschirmbereichs zu erstellen. Das Dialogfeld selbst ist halbtransparent, so dass du den Inhalt darunter sehen kannst. @@ -325,3 +325,6 @@ if not userCanceled: ## Verweis Die Forumsdiskussion [Schnitt Makro](https://forum.freecadweb.org/viewtopic.php?f=9&t=38328&sid=385bf3174dcae7fb8bdf529f4e76dfed) + +--- +[documentation index](../README.md) > Macro Snip/de diff --git a/wiki/translations/de/Macro_Solid_Sweep.md b/wiki/translations/de/Macro_Solid_Sweep.md index 1b526de0ed..7b8718b66a 100644 --- a/wiki/translations/de/Macro_Solid_Sweep.md +++ b/wiki/translations/de/Macro_Solid_Sweep.md @@ -1,5 +1,5 @@ # Macro Solid Sweep/de - {{Macro/de +{{Macro/de |Name=Solid Sweep |Translate=Solid Sweep |Icon=Macro_Solid_Sweep.png @@ -87,3 +87,6 @@ myObject.Shape = Sweep Vielen Dank an [Wmayer](User:_Wmayer.md) für seine Hilfe beim Schreiben dieses Skripts. Zwei Anwendungsbeispiele finden Sie in [this forum topic](http://forum.freecadweb.org/viewtopic.php?f=8&t=1222&start=50#p11120), zusammen mit Download-Links zu den FCStd-Dateien. Bei Verwendung einer Helix als Flugbahn kann ein fester Durchlauf zum Erstellen eines Schraubengewindes verwendet werden. + +--- +[documentation index](../README.md) > Macro Solid Sweep/de diff --git a/wiki/translations/de/Macro_SuperWire.md b/wiki/translations/de/Macro_SuperWire.md index 3abee5106d..3e6977cbc7 100644 --- a/wiki/translations/de/Macro_SuperWire.md +++ b/wiki/translations/de/Macro_SuperWire.md @@ -1,7 +1,4 @@ # Macro SuperWire/de - - - {{Macro/de |Name=SuperWire |Icon=Macro_SuperWire.png @@ -51,6 +48,5 @@ else: ``` - - - +--- +[documentation index](../README.md) > Macro SuperWire/de diff --git a/wiki/translations/de/Macro_Texture.md b/wiki/translations/de/Macro_Texture.md index 19429eeb53..81ea39067d 100644 --- a/wiki/translations/de/Macro_Texture.md +++ b/wiki/translations/de/Macro_Texture.md @@ -1,7 +1,4 @@ # Macro Texture/de - - -
@@ -377,3 +374,6 @@ Das Makro FCCreaLoft - ver 0.3 : 28/03/2014 :comment out the line \"**\# self.checkBox\_5.setAccessibleName(\_fromUtf8(\"\"))**\" that causes an error with the version FreeCAD : Version: 0.14.3343 (Git), Python version: 2.7.6, Qt version: 4.8.5 + +--- +[documentation index](../README.md) > Macro Texture/de diff --git a/wiki/translations/de/Macro_Texture_Objects.md b/wiki/translations/de/Macro_Texture_Objects.md index da90e214d5..5db15d7bdf 100644 --- a/wiki/translations/de/Macro_Texture_Objects.md +++ b/wiki/translations/de/Macro_Texture_Objects.md @@ -1,5 +1,5 @@ # Macro Texture Objects/de - {{Macro/de +{{Macro/de |Name=Texture Objects |Translate=Texture Objects |Icon=Macro_Texture_Objects.png @@ -46,6 +46,5 @@ for obj in FreeCADGui.Selection.getSelection(): [Script to map texture with environement checked](https://forum.freecadweb.org/viewtopic.php?f=3&t=28795) - - - +--- +[documentation index](../README.md) > Macro Texture Objects/de diff --git a/wiki/translations/de/Macro_Unfold_Box.md b/wiki/translations/de/Macro_Unfold_Box.md index 22e98e1dd9..d6a2595962 100644 --- a/wiki/translations/de/Macro_Unfold_Box.md +++ b/wiki/translations/de/Macro_Unfold_Box.md @@ -1,5 +1,5 @@ # Macro Unfold Box/de - {{Macro/de +{{Macro/de |Name=Macro Unfold Box |Icon=Macro_Unfold_Box.png |Translate=Makro-Aufklappbox @@ -601,3 +601,5 @@ DialogBox.show() }} +--- +[documentation index](../README.md) > Macro Unfold Box/de diff --git a/wiki/translations/de/Macro_Unroll_Ruled_Surface.md b/wiki/translations/de/Macro_Unroll_Ruled_Surface.md index 3ef12b0f6c..00a4880c33 100644 --- a/wiki/translations/de/Macro_Unroll_Ruled_Surface.md +++ b/wiki/translations/de/Macro_Unroll_Ruled_Surface.md @@ -1,5 +1,5 @@ # Macro Unroll Ruled Surface/de - {{Macro/de +{{Macro/de |Name=Macro Unroll Ruled Surface |Translate=Makro Abwickeln Regelfläche |Description=Das Makro ermöglicht das Abrollen von Regelflächen und das Zeichnen auf einer Seite. @@ -746,6 +746,5 @@ DialogBox.show() }} - - - +--- +[documentation index](../README.md) > Macro Unroll Ruled Surface/de diff --git a/wiki/translations/de/Macro_View_Rotation.md b/wiki/translations/de/Macro_View_Rotation.md index a645ef7b89..5893e60045 100644 --- a/wiki/translations/de/Macro_View_Rotation.md +++ b/wiki/translations/de/Macro_View_Rotation.md @@ -1,5 +1,5 @@ # Macro View Rotation/de - {{Macro/de +{{Macro/de |Name=View Rotation |Icon=Macro_View_Rotation.png |Translate=View Rotation @@ -288,3 +288,6 @@ am Ende der Funktion \'initUI\'. Die ersten beiden Argumente (rechts-300, 0) (Ze ## Diskussionsseite [View+Rotation](http://forum.freecadweb.org/viewtopic.php?f=3&t=1784&hilit=View+Rotation#p12012) + +--- +[documentation index](../README.md) > Macro View Rotation/de diff --git a/wiki/translations/de/Macro_at_Startup.md b/wiki/translations/de/Macro_at_Startup.md index ea945bd6c9..e52443ff06 100644 --- a/wiki/translations/de/Macro_at_Startup.md +++ b/wiki/translations/de/Macro_at_Startup.md @@ -1,6 +1,4 @@ # Macro at Startup/de - - ## Einführung @@ -149,3 +147,6 @@ Beachte, dass, wenn das Originalmakro über den Erweiterungsverwalter herunterge }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macro at Startup/de diff --git a/wiki/translations/de/Macro_crank_simul.md b/wiki/translations/de/Macro_crank_simul.md index 3f793f21d7..fe9680b336 100644 --- a/wiki/translations/de/Macro_crank_simul.md +++ b/wiki/translations/de/Macro_crank_simul.md @@ -1,5 +1,5 @@ # Macro crank simul/de - {{Macro/de +{{Macro/de |Name=Crank Simul |Name/de=Kurbel Simulation |Icon=Macro_crank_simul.png @@ -81,6 +81,5 @@ Die Forum Diskussion [Animation eines Reihenvierzylindermotors](http://forum.fre Der Blog [freecad-tutorial.blogspot](http://freecad-tutorial.blogspot.be/) - - - +--- +[documentation index](../README.md) > Macro crank simul/de diff --git a/wiki/translations/de/Macro_cross_section.md b/wiki/translations/de/Macro_cross_section.md index 1dc48488c6..a8ff944823 100644 --- a/wiki/translations/de/Macro_cross_section.md +++ b/wiki/translations/de/Macro_cross_section.md @@ -1,5 +1,5 @@ # Macro cross section/de - {{Macro/de +{{Macro/de |Name=Cross_section |Icon=Macro_cross_section.png |Translate=Cross_section @@ -673,3 +673,6 @@ ver 00.07 17/09/2017 : Aktualisieren Sie mehrere Objekte mit verschiedenen Farbe ver 00.06 06/09/2017 : Upgrade von Gift siehe [Optischer Schnitt durch Baugruppe, z.B. für Ventilgehäuse](https://www.forum.freecadweb.org/viewtopic.php?f=13&t=24130) Akzeptieren Sie mehrere Objekte mit unterschiedlichen Farben ver 00.05 17/08/2017 : upgrade for 0.17 FreeCAD version by Sam see [Sezione Dinamica](https://forum.freecadweb.org/viewtopic.php?f=28&t=15084&start=10#p187030) + +--- +[documentation index](../README.md) > Macro cross section/de diff --git a/wiki/translations/de/Macro_documentation.md b/wiki/translations/de/Macro_documentation.md index 8323b920e6..55d8cd3010 100644 --- a/wiki/translations/de/Macro_documentation.md +++ b/wiki/translations/de/Macro_documentation.md @@ -1,6 +1,4 @@ # Macro documentation/de - - ## Beschreibung Alle Makros sollten ordnungsgemäß dokumentiert werden, und zwar auf die gleiche Weise wie [Gui Befehle](Gui_Command/de.md) dokumentiert werden. Sie sollten eine eigene Wiki Seite haben und in einer der Kategorien unter [Makro Rezepte](Macros_recipes/de.md) aufgeführt sein. @@ -200,3 +198,6 @@ Um ein Makro aus dem [Erweiterungsverwalter](Addon_Manager/de.md) installierbar Um das Makro dort aufzunehmen, muss es zunächst von der FreeCAD Gemeinschaft im [Python scripting and macros](https://forum.freecadweb.org/viewforum.php?f=22) Unterforum überprüft werden. Sobald dies geschehen ist, sollte das FreeCAD-Makro Repositorium abgezweigt werden, das neue Makro sollte in einen Zweig aufgenommen werden, und dann sollte der Zweig gepusht und in das Upstream- Repositorium zusammengeführt werden. [Category:Macros](Category:Macros.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [Macros](Category:Macros.md) > Macro documentation/de diff --git a/wiki/translations/de/Macro_findConfigFiles.md b/wiki/translations/de/Macro_findConfigFiles.md index 0ba0a4a180..8d5b76117e 100644 --- a/wiki/translations/de/Macro_findConfigFiles.md +++ b/wiki/translations/de/Macro_findConfigFiles.md @@ -1,5 +1,5 @@ # Macro findConfigFiles/de - {{Macro +{{Macro |Name=findConfigFiles |Icon=Macro_findConfigFiles.png |Description=Use this macro to find your user setting configuration files, that is,
'''system.cfg'''
'''user.cfg'''
These files can be renamed in order to reset FreeCAD's settings back to their original defaults. This can sometimes fix problems you are having with FreeCAD.
You should exit FreeCAD before renaming the files, and then open FreeCAD again afterwards. If renaming the files did not solve the issue you were having you can delete the new files FreeCAD created and rename the original files back to their original names in order to restore your previous settings. You can also safely delete the renamed files once you are certain you no longer need or want them, but it is recommended to rename them instead of deleting until you are certain they are no longer needed.
Note: The macro does not rename the files or make any changes to your settings. It merely finds the location of these files, copies that location to the clipboard, and (attempts to) open the folder containing these files on your computer using the default file browser. @@ -106,3 +106,6 @@ if ok == QtGui.QMessageBox.Ok or ok==0: ## Link [findConfigFiles macro](https://forum.freecadweb.org/viewtopic.php?f=22&t=29888) + +--- +[documentation index](../README.md) > Macro findConfigFiles/de diff --git a/wiki/translations/de/Macro_hinge.md b/wiki/translations/de/Macro_hinge.md index 89f806e675..af0738f554 100644 --- a/wiki/translations/de/Macro_hinge.md +++ b/wiki/translations/de/Macro_hinge.md @@ -1,5 +1,5 @@ # Macro hinge/de - {{Macro/de +{{Macro/de |Name=Simuliert Scharnierbewegung |Icon=Macro hinge.png |Description=Scharnier Simulation. @@ -59,4 +59,7 @@ for ii2 in range(180): ## Verweis -Die Diskussionsseite [Probleme mit LinearMustern (wiederholt)](http://forum.freecadweb.org/viewtopic.php?f=3&t=7606&p=62086#p62086) +Die Diskussionsseite [Probleme mit LinearMustern (wiederholt)](http://forum.freecadweb.org/viewtopic.php?f=3&t=7606&p=62086#p62086) + +--- +[documentation index](../README.md) > Macro hinge/de diff --git a/wiki/translations/de/Macro_screw_maker1_2.md b/wiki/translations/de/Macro_screw_maker1_2.md index 69f1ecee41..a06c5ea288 100644 --- a/wiki/translations/de/Macro_screw_maker1_2.md +++ b/wiki/translations/de/Macro_screw_maker1_2.md @@ -1,5 +1,5 @@ # Macro screw maker1 2/de - {{Macro/de +{{Macro/de |Name=Macro_screw_maker1_2 |Translate=Macro_screw_maker1_2 |Icon=Macro_screw_maker1_2.png @@ -4982,3 +4982,6 @@ if __name__ == '__main__': ## Link Das Forum [Screw Maker](https://forum.freecadweb.org/viewtopic.php?f=22&t=6558&start=30#p95929) + +--- +[documentation index](../README.md) > Macro screw maker1 2/de diff --git a/wiki/translations/de/Macros.md b/wiki/translations/de/Macros.md index 36a5266c25..a879c19de1 100644 --- a/wiki/translations/de/Macros.md +++ b/wiki/translations/de/Macros.md @@ -1,7 +1,4 @@ # Macros/de - - - {{TOCright}} ## Einführung @@ -68,3 +65,6 @@ Du kannst Erweiterungen manuell installieren, es ist jedoch viel einfacher, einf }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/de diff --git a/wiki/translations/de/Main_Page.md b/wiki/translations/de/Main_Page.md index c4940fde43..f039c87b6e 100644 --- a/wiki/translations/de/Main_Page.md +++ b/wiki/translations/de/Main_Page.md @@ -1,6 +1,4 @@ # Main Page/de - - ## Einführung Dies ist das Dokumentations Wiki von [FreeCAD](http://www.freecadweb.org). Es gibt mehrere Möglichkeiten, diese Dokumentation zu nutzen: durch das Erforschen der Zentren, durch das Befolgen des Handbuchs oder durch das Benutzen der Hilfe Menüeinträge innerhalb von FreeCAD. Diese Dokumentation wird von der Gemeinschaft der Benutzer und Entwickler von FreeCAD geschrieben und befindet sich in Bearbeitung. Wenn du Informationen findest, die falsch sind oder fehlen, bitte [Hilf FreeCAD](Special:MyLanguage/help_FreeCAD.md)! @@ -67,3 +65,6 @@ Prüfe den [Entwicklungsfahrplan](Development_roadmap/de.md) für Neuigkeiten ü [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/de diff --git a/wiki/translations/de/Main_view_area.md b/wiki/translations/de/Main_view_area.md index 3b87ecfd85..acc61b0801 100644 --- a/wiki/translations/de/Main_view_area.md +++ b/wiki/translations/de/Main_view_area.md @@ -1,6 +1,4 @@ # Main view area/de - - ## Einleitung Der [Hauptansichtsbereich](main_view_area/de.md) ist das Haupt widget das Unterfenster in der [Oberfläche](interface/de.md) hält. Es ist eine Instanz des Qt [QMdiBereichs](https://doc.qt.io/qt-5/qmdiarea.html). @@ -19,4 +17,7 @@ Die Fenster im Hauptansichtsbereich können mit Befehlen im Menü [Windows Menü {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Main view area/de diff --git a/wiki/translations/de/Manipulator.md b/wiki/translations/de/Manipulator.md index 60ea7e3490..d9115cb2fb 100644 --- a/wiki/translations/de/Manipulator.md +++ b/wiki/translations/de/Manipulator.md @@ -1,5 +1,5 @@ # Manipulator/de - } +} ## Beschreibung @@ -17,3 +17,6 @@ Ein **Manipulator** kann benutzt werden, um Aussehen, die Form oder andere Param [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Manipulator/de diff --git a/wiki/translations/de/Manual.md b/wiki/translations/de/Manual.md index 36f3de74f5..8c353a107b 100644 --- a/wiki/translations/de/Manual.md +++ b/wiki/translations/de/Manual.md @@ -1,2 +1,5 @@ # Manual/de 1. Redirect:[Handbuch:Einführung](Manual:Introduction/de.md) + +--- +[documentation index](../README.md) > Manual/de diff --git a/wiki/translations/de/Manual:A_gentle_introduction.md b/wiki/translations/de/Manual:A_gentle_introduction.md index 99cbd8f712..750cef3a0d 100644 --- a/wiki/translations/de/Manual:A_gentle_introduction.md +++ b/wiki/translations/de/Manual:A_gentle_introduction.md @@ -1,10 +1,4 @@ # Manual:A gentle introduction/de - - - - - - {{Manual:TOC/de}} [Python](https://en.wikipedia.org/wiki/Python_%28programming_language%29) ist eine populäre, quelloffene Programmiersprache, die sehr oft als Skriptsprache in Anwendungen eingebettet ist, wie es bei FreeCAD der Fall ist. Sie hat eine Reihe von Eigenschaften, die sie für uns FreeCAD Anwender geeignet machen: Es ist sehr leicht zu erlernen, besonders für Leute, die noch nie programmiert haben, und es ist in viele andere Anwendungen eingebettet. Das macht es zu einem wertvollen Lernwerkzeug, da Sie es in anderen Programmen wie [Blender](http://www.blender.org), [Inkscape](http://www.inkscape.org) oder [GRASS](http://grass.osgeo.org/) verwenden können. @@ -116,3 +110,6 @@ box.Placement = otherpla }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:A gentle introduction/de diff --git a/wiki/translations/de/Manual:All_workbenches_at_a_glance.md b/wiki/translations/de/Manual:All_workbenches_at_a_glance.md index ba7b6eaac6..70371b8a2e 100644 --- a/wiki/translations/de/Manual:All_workbenches_at_a_glance.md +++ b/wiki/translations/de/Manual:All_workbenches_at_a_glance.md @@ -1,10 +1,4 @@ # Manual:All workbenches at a glance/de - - - - - - {{Manual:TOC/de}} Eine der größten Schwierigkeiten für neue Benutzer von FreeCAD, ist zu wissen, in welchem Arbeitsbereich ein bestimmtes Werkzeug zu finden ist. Die folgende Tabelle gibt einen Überblick über die wichtigsten Arbeitsbereiche und deren Werkzeuge. Eine vollständigere Liste findest du auf jeder Seite [Arbeitsbereich](Workbenches/de.md) in der FreeCAD Dokumentation. @@ -158,6 +152,5 @@ Es gibt auch eine Reihe anderer sehr nützlicher Arbeitsbereiche, die von Mitgli - [Der FEM Arbeitsbereich](FEM_Workbench/de.md) - [Die FreeCAD-Erweiterungen Repositorien](https://github.com/FreeCAD/FreeCAD-addons) - - - +--- +[documentation index](../README.md) > Manual:All workbenches at a glance/de diff --git a/wiki/translations/de/Manual:BIM_modeling.md b/wiki/translations/de/Manual:BIM_modeling.md index c0577619ad..44d915a7ae 100644 --- a/wiki/translations/de/Manual:BIM_modeling.md +++ b/wiki/translations/de/Manual:BIM_modeling.md @@ -1,5 +1,5 @@ # Manual:BIM modeling/de - } +} @@ -243,3 +243,6 @@ Unsere Seite ist nun fertig und wir können sie im SVG- oder DXF-Format ausgeben }} [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Manual:BIM modeling/de diff --git a/wiki/translations/de/Manual:Creating_FEM_analyses.md b/wiki/translations/de/Manual:Creating_FEM_analyses.md index fa60bd8c85..bbf8c6b8a8 100644 --- a/wiki/translations/de/Manual:Creating_FEM_analyses.md +++ b/wiki/translations/de/Manual:Creating_FEM_analyses.md @@ -1,10 +1,4 @@ # Manual:Creating FEM analyses/de - - - - - - {{Manual:TOC/de}} FEM stands for [Finite Element Method](https://en.wikipedia.org/wiki/Finite_element_method). It is a vast mathematical subject, but in FreeCAD we can think of it as a way to calculate propagations inside a 3D object, by cutting it into small pieces, and analyzing the impact of each small piece on its neighbours. This has several uses in the engineering and electromagnetism fields, but we will focus on one use that is already well developed in FreeCAD, which is simulating deformations in objects which are submitted to forces and weights. @@ -93,3 +87,6 @@ The results displayed by the FEM workbench are of course currently not enough to {{Tutorials navi }} + +--- +[documentation index](../README.md) > Manual:Creating FEM analyses/de diff --git a/wiki/translations/de/Manual:Creating_and_manipulating_geometry.md b/wiki/translations/de/Manual:Creating_and_manipulating_geometry.md index 12de4e0ae4..35ec23c164 100644 --- a/wiki/translations/de/Manual:Creating_and_manipulating_geometry.md +++ b/wiki/translations/de/Manual:Creating_and_manipulating_geometry.md @@ -1,7 +1,4 @@ # Manual:Creating and manipulating geometry/de - - - {{Manual:TOC/de}} In den vorangegangenen Kapiteln haben wir die verschiedenen Arbeitsbereiche von FreeCAD kennengelernt, und wie jede von ihnen ihre eigenen Werkzeuge und Geometrietypen implementiert. Das gleiche Konzept gilt für die Arbeit mit Python Code. @@ -231,3 +228,6 @@ All dies und noch viel mehr wird auf der Seite [Teil Skripten](Topological_data_ }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating and manipulating geometry/de diff --git a/wiki/translations/de/Manual:Creating_interface_tools.md b/wiki/translations/de/Manual:Creating_interface_tools.md index dd48cc56e0..c4947bb282 100644 --- a/wiki/translations/de/Manual:Creating_interface_tools.md +++ b/wiki/translations/de/Manual:Creating_interface_tools.md @@ -1,7 +1,4 @@ # Manual:Creating interface tools/de - - - {{Manual:TOC/de}} In den letzten beiden Kapiteln haben wir gesehen, wie man [Teilgeometrie erstellt](Manual:Creating_and_manipulating_geometry/de.md) und [parametrische Objekte erstellt](Manual:Creating_parametric_objects/de.md). Ein letztes Teil fehlt noch, um die volle Kontrolle über FreeCAD zu erhalten: Erstellen von Werkzeugen, die mit dem Benutzer interagieren. @@ -132,3 +129,6 @@ Schliesslich vergiss nicht, dass es im FreeCAD Wiki im Abschnitt [Python Skripte }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating interface tools/de diff --git a/wiki/translations/de/Manual:Creating_parametric_objects.md b/wiki/translations/de/Manual:Creating_parametric_objects.md index 4559bed4ff..4f6c3f565d 100644 --- a/wiki/translations/de/Manual:Creating_parametric_objects.md +++ b/wiki/translations/de/Manual:Creating_parametric_objects.md @@ -1,7 +1,4 @@ # Manual:Creating parametric objects/de - - - {{Manual:TOC/de}} In the [previous chapter](Manual:Creating_and_manipulating_geometry.md), we saw how to create Part geometry, and how to display it on screen, by attaching it to a \"dumb\" (non-parametric) document object. This is tedious when we want to change the shape of that object. We would need to create a new shape, then attribute it again to our object. @@ -126,3 +123,6 @@ Remember, if you want to distribute files created with this new tool to other pe }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating parametric objects/de diff --git a/wiki/translations/de/Manual:Creating_renderings.md b/wiki/translations/de/Manual:Creating_renderings.md index 0ae981af8f..b0ab634529 100644 --- a/wiki/translations/de/Manual:Creating_renderings.md +++ b/wiki/translations/de/Manual:Creating_renderings.md @@ -1,7 +1,4 @@ # Manual:Creating renderings/de - - - {{Manual:TOC/de}} In der Computersprache wird das Wort [Bildsynthese](https://de.wikipedia.org/wiki/Bildsynthese) (engl.: rendering) verwendet, um ein schönes Bild zu beschreiben, das aus einem 3D Modell erzeugt wurde. Natürlich könnten wir sagen, dass das, was wir in der FreeCAD 3D Ansicht sehen, bereits schön ist. Jeder, der kürzlich einen Hollywoodfilm gesehen hat, weiß jedoch, dass es möglich ist, mit einem Computer Bilder zu erzeugen, die von einem Foto fast nicht zu unterscheiden sind. @@ -86,3 +83,6 @@ You can greatly extend the rendering possibilities of FreeCAD by creating new te {{Raytracing Tools navi}} [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials](Category:Tutorials.md) > Manual:Creating renderings/de diff --git a/wiki/translations/de/Manual:Generating_2D_drawings.md b/wiki/translations/de/Manual:Generating_2D_drawings.md index 8b60005b36..d3fba24d52 100644 --- a/wiki/translations/de/Manual:Generating_2D_drawings.md +++ b/wiki/translations/de/Manual:Generating_2D_drawings.md @@ -1,10 +1,4 @@ # Manual:Generating 2D drawings/de - - - - - - {{Manual:TOC/de}} Wenn dein Modell nicht direkt von einer Maschine gedruckt oder gefräst werden kann, z. B. ist es zu groß (ein Gebäude) oder es erfordert manuellen zusammenbau, nachdem die Teile fertig sind, musst du normalerweise einer anderen Person erklären, wie man das macht. In technischen Bereichen (Ingenieurwesen, Architektur usw.) geschieht dies meist anhand von Zeichnungen. Die Zeichnungen werden der Person ausgehändigt, die für den Zusammenbau des Endprodukts verantwortlich ist, und erklären, wie man das macht. @@ -120,3 +114,6 @@ Unsere Seite kann nun ins SVG für eine weitere Verarbeitung in grafischen Anwen [Category:Tutorials/de](Category:Tutorials/de.md) + +--- +[documentation index](../README.md) > Manual:Generating 2D drawings/de diff --git a/wiki/translations/de/Manual:Import_and_export_to_other_filetypes.md b/wiki/translations/de/Manual:Import_and_export_to_other_filetypes.md index 28a2877d00..07bb7c0a96 100644 --- a/wiki/translations/de/Manual:Import_and_export_to_other_filetypes.md +++ b/wiki/translations/de/Manual:Import_and_export_to_other_filetypes.md @@ -1,7 +1,4 @@ # Manual:Import and export to other filetypes/de - - - {{Manual:TOC/de}} FreeCAD kann in viele Dateitypen importieren und exportieren. Hier ist eine Liste der wichtigsten mit einer kurzen Beschreibung der verfügbaren Funktionen: @@ -43,3 +40,6 @@ Einige dieser Dateiformate haben Optionen. Diese können über das Menü **Bearb [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Import and export to other filetypes/de diff --git a/wiki/translations/de/Manual:Installing.md b/wiki/translations/de/Manual:Installing.md index 56877cae58..477abde66e 100644 --- a/wiki/translations/de/Manual:Installing.md +++ b/wiki/translations/de/Manual:Installing.md @@ -1,10 +1,4 @@ # Manual:Installing/de - - - - - - {{Manual:TOC/de}} FreeCAD verwendet die [LGPL](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License) Lizenz; Du darfst FreeCAD herunterladen, installieren, weitergeben und verwenden, wie du willst, unabhängig von der Art der Arbeit, die du damit machst (kommerziell oder nicht kommerziell). Du bist an keine Klausel oder Einschränkungen gebunden, und die Dateien, die du damit erstellst, gehören dir vollständig. Das einzige, was die Lizenz wirklich verbietet, ist zu behaupten, dass Sie FreeCAD selbst programmiert haben! @@ -101,3 +95,6 @@ Wenn du das Ubuntu Betriebssystem benutzt, sind einige der oben genannten Addons [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Installing/de diff --git a/wiki/translations/de/Manual:Introduction.md b/wiki/translations/de/Manual:Introduction.md index e9473f66b7..40d06fe391 100644 --- a/wiki/translations/de/Manual:Introduction.md +++ b/wiki/translations/de/Manual:Introduction.md @@ -1,10 +1,4 @@ # Manual:Introduction/de - - - - - - {{Manual:TOC/de}} ![150\|center](images/Crystal_Clear_manual.png ) @@ -25,6 +19,5 @@ Anmerkungen: ![150](images/Crystal_Clear_manual.png ) Der Inhalt dieses Handbuchs wird unter der [Creative Commons 4.0](http://creativecommons.org/licenses/by/4.0/)-Lizenz veröffentlich und kann frei/gratis (freely) verwendet, heruntergeladen kopiert und verändert werden. Die Quelldateien für dieses Handbuch werden auf diesem [Wiki](Main_Page.md) und unter dem original [github](https://github.com/yorikvanhavre/FreeCAD-manual)-Account bereitgestellt, das für die erste Version dieses Buchs verwendet wurde. Einfacher zu lesende HTML-, PDF-, MOBI- und EPUB-Versionen sind auf [GitBook](https://www.gitbook.com/book/yorikvanhavre/a-freecad-manual/details) verfügbar. Eine gedruckte Version ist in Vorbereitung. - - - +--- +[documentation index](../README.md) > Manual:Introduction/de diff --git a/wiki/translations/de/Manual:Modeling_for_product_design.md b/wiki/translations/de/Manual:Modeling_for_product_design.md index b363da61aa..64805606d1 100644 --- a/wiki/translations/de/Manual:Modeling_for_product_design.md +++ b/wiki/translations/de/Manual:Modeling_for_product_design.md @@ -1,7 +1,4 @@ # Manual:Modeling for product design/de - - - {{Manual:TOC/de}} [Produktdesign](https://de.wikipedia.org/wiki/Produktdesign) ist ursprünglich ein kommerzieller Begriff, aber in der 3D-Welt bedeutet er oft, etwas zu modellieren mit der Idee, es per [3D-Druck](https://de.wikipedia.org/wiki/3D-Druck), oder allgemeiner, maschinell herzustellen, z.B. mit einem 3D-Drucker oder einer [CNC-Maschine](https://de.wikipedia.org/wiki/CNC-Maschine). @@ -159,3 +156,6 @@ Aber das Beste aus beiden Welten existiert ebenfalls, das ist die [Assembly2 Wor [Category:Tutorials/de](Category:Tutorials/de.md) + +--- +[documentation index](../README.md) > Manual:Modeling for product design/de diff --git a/wiki/translations/de/Manual:Navigating_in_the_3D_view.md b/wiki/translations/de/Manual:Navigating_in_the_3D_view.md index 3386c28ab3..dfff7635f3 100644 --- a/wiki/translations/de/Manual:Navigating_in_the_3D_view.md +++ b/wiki/translations/de/Manual:Navigating_in_the_3D_view.md @@ -1,10 +1,4 @@ # Manual:Navigating in the 3D view/de - - - - - - {{Manual:TOC/de}} ### Ein Wort zum 3D Raum @@ -109,6 +103,5 @@ Du kannst auch die Auswahlansicht verwenden, um Objekte durch die Suche nach ein - [Die FreeCAD Navigationsmodi](Mouse_navigation/de.md) - [Navigationscluster](Navigation_Cube/de.md) - - - +--- +[documentation index](../README.md) > Manual:Navigating in the 3D view/de diff --git a/wiki/translations/de/Manual:Parametric_objects.md b/wiki/translations/de/Manual:Parametric_objects.md index 28330ee3b4..5ee39b40ea 100644 --- a/wiki/translations/de/Manual:Parametric_objects.md +++ b/wiki/translations/de/Manual:Parametric_objects.md @@ -1,10 +1,4 @@ # Manual:Parametric objects/de - - - - - - {{Manual:TOC/de}} FreeCAD ist für die parametrische Modellierung konzipiert. Das bedeutet, dass die Geometrie, die du erstellst, nicht frei modellierbar ist, sondern durch Regeln und Parameter erzeugt wird. Zum Beispiel kann ein Zylinder aus einem Radius und einer Höhe erzeugt werden. Mit diesen beiden Parametern hat das Programm genügend Informationen, um den Zylinder zu bauen. @@ -41,3 +35,6 @@ Schließlich ist es erwähnenswert, dass benutzerdefinierte parametrische Objekt [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Parametric objects/de diff --git a/wiki/translations/de/Manual:Preparing_models_for_3D_printing.md b/wiki/translations/de/Manual:Preparing_models_for_3D_printing.md index 6afd497f4c..0567494730 100644 --- a/wiki/translations/de/Manual:Preparing_models_for_3D_printing.md +++ b/wiki/translations/de/Manual:Preparing_models_for_3D_printing.md @@ -1,10 +1,4 @@ # Manual:Preparing models for 3D printing/de - - - - - - {{Manual:TOC/de}} Einer der Haupteinsatzbereiche von FreeCAD ist die Herstellung von Objekten aus der realen Welt. Diese können in FreeCAD entworfen und dann auf verschiedene Weise realisiert werden, z.B. indem sie anderen Personen mitgeteilt werden, die sie dann bauen, oder, immer häufiger, direkt an einen [3D Drucker](https://en.wikipedia.org/wiki/3D_printing) oder eine [CNC Fräse](https://en.wikipedia.org/wiki/Milling_%28machining%29) geschickt werden. Dieses Kapitel zeigt dir, wie du deine Modelle für den Versand an diese Maschinen vorbereiten kannst. @@ -139,3 +133,6 @@ Es gibt viele Anwendungen, um das reale Schneiden zu simulieren, eine davon, die [Category:Path](Category:Path.md) [Category:Mesh](Category:Mesh.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Path](Category:Path.md) > Manual:Preparing models for 3D printing/de diff --git a/wiki/translations/de/Manual:Summary.md b/wiki/translations/de/Manual:Summary.md index fa3de63b9d..b23d88a76c 100644 --- a/wiki/translations/de/Manual:Summary.md +++ b/wiki/translations/de/Manual:Summary.md @@ -57,3 +57,6 @@ Es gibt ein weiteres Inhaltsverzeichnis für das [FreeCAD **Online Hilfe** Syste [Category:Manual](Category:Manual.md) + +--- +[documentation index](../README.md) > [Manual](Category:Manual.md) > Manual:Summary/de diff --git a/wiki/translations/de/Manual:The_Community.md b/wiki/translations/de/Manual:The_Community.md index bf61ee0c6c..49b090f45c 100644 --- a/wiki/translations/de/Manual:The_Community.md +++ b/wiki/translations/de/Manual:The_Community.md @@ -1,7 +1,4 @@ # Manual:The Community/de - - - {{Manual:TOC/de}} Kein Handbuch, das sich mit freier und quelloffener Software beschäftigt, wäre vollständig ohne ein Kapitel über die Gemeinschaft. Wie die überwiegende Mehrheit der freien und Open Source Softwareprojekte wird FreeCAD von einer Gemeinschaft erstellt und von dieser Gemeinschaft gepflegt. Anstelle der undurchsichtigen, unbekannten, unpersönlichen und unzugänglichen Firma, die mehr als oft hinter kommerzieller Software zu finden ist, sind Free- und Open Source Software Gemeinschaften offene Räume, in denen du als Benutzer willkommen bist und in denen du sehr schnell Antworten erhälst und sogar bei der Entwicklung der Software selbst mitreden kannst. Auch du bist herzlich eingeladen, mitzuhelfen, es gibt Aufgaben für jeden. @@ -38,6 +35,5 @@ Hoffentlich ist es uns gelungen, dir in diesem Handbuch einen guten Vorgeschmack - [FreeCAD auf Crowdin übersetzen](https://crowdin.com/project/freecad) - [Der FreeCAD Fehlernachverfolger](http://www.freecadweb.org/tracker) - - - +--- +[documentation index](../README.md) > Manual:The Community/de diff --git a/wiki/translations/de/Manual:The_FreeCAD_Interface.md b/wiki/translations/de/Manual:The_FreeCAD_Interface.md index e2361a3b2b..1bd0fe72e6 100644 --- a/wiki/translations/de/Manual:The_FreeCAD_Interface.md +++ b/wiki/translations/de/Manual:The_FreeCAD_Interface.md @@ -1,10 +1,4 @@ # Manual:The FreeCAD Interface/de - - - - - - {{Manual:TOC/de}} FreeCAD benutzt das [Qt Rahmenwerk](https://de.wikipedia.org/wiki/Qt_(Bibliothek)) um seine Oberfläche zu holen und zu verwalten. Dieses Rahmenwerk wird in einer Vielzahl von Anwendungen verwendet, so dass die FreeCAD Oberfläche sehr klassisch ist und keine besondere Schwierigkeit darstellt, sie zu verstehen. Die meisten Schaltflächen sind Standard und werden dort angezeigt, wo du sie erwartest **Datei → Öffnen, Bearbeiten → Einfügen, usw**. Hier ist das Aussehen von FreeCAD, wenn du es zum ersten Mal öffnest, gleich nach der Installation, und zeigt dir das Startzentrum: @@ -73,6 +67,5 @@ Diese erweiterten Anpassungsoptionen sind über das Menü {{MenuCommand/de|Werkz - [Arbeitsbereiche](Workbenches/de.md) - [Mehr über Python](https://www.python.org) - - - +--- +[documentation index](../README.md) > Manual:The FreeCAD Interface/de diff --git a/wiki/translations/de/Manual:The_FreeCAD_document.md b/wiki/translations/de/Manual:The_FreeCAD_document.md index 20f54b5365..3afc9182f7 100644 --- a/wiki/translations/de/Manual:The_FreeCAD_document.md +++ b/wiki/translations/de/Manual:The_FreeCAD_document.md @@ -1,10 +1,4 @@ # Manual:The FreeCAD document/de - - - - - - {{Manual:TOC/de}} Ein FreeCAD Dokument enthält alle Objekte deiner Szene. Es kann Gruppen und Objekte enthalten, die mit einem beliebigen Arbeitsbereich erstellt wurden. Du kannst daher zwischen den Arbeitsbereichen wechseln und trotzdem am gleichen Dokument und/oder den Objekten innerhalb dieses Dokuments arbeiten. Das Dokument ist das, was auf der Festplatte gespeichert wird, wenn Du deine Arbeit speicherst. Du kannst auch mehrere Dokumente gleichzeitig in FreeCAD öffnen und mehrere Ansichten desselben Dokuments öffnen. @@ -26,6 +20,5 @@ FreeCAD Dokumente werden mit der Erweiterung .FcStd gespeichert, was ein auf zip - [Das FreeCAD Dokument](Document_structure/de.md) - [Dateiformat FCStd](File_Format_FCStd/de.md) - - - +--- +[documentation index](../README.md) > Manual:The FreeCAD document/de diff --git a/wiki/translations/de/Manual:Traditional_2D_drafting.md b/wiki/translations/de/Manual:Traditional_2D_drafting.md index 073be32b82..d4ec38d254 100644 --- a/wiki/translations/de/Manual:Traditional_2D_drafting.md +++ b/wiki/translations/de/Manual:Traditional_2D_drafting.md @@ -1,7 +1,4 @@ # Manual:Traditional 2D drafting/de - - - {{Manual:TOC/de}} Möglicherweise bist du an FreeCAD interessiert, weil du bereits einige Erfahrung beim technischen Zeichnen hast, zum Beispiel mit Software wie [AutoCAD](https://de.wikipedia.org/wiki/AutoCAD). Oder du weist schon etwas über Design oder ziehst es vor, Dinge zu zeichnen, bevor du diese baust. In jedem Fall bietet FreeCAD einen eher herkömmlichen Arbeitsbereich, mit Werkzeugen, die in den meisten 2D CAD Anwendungen zu finden sind: Der [Entwurf Arbeitsbereich](Draft_Workbench/de.md). @@ -114,3 +111,6 @@ Im Wesentlichen bietet der Entwurf Arbeitsbereich grafische Möglichkeiten, um e [Category:Tutorials](Category:Tutorials.md) [Category:Draft](Category:Draft.md) + +--- +[documentation index](../README.md) > [Tutorials](Category:Tutorials.md) > Manual:Traditional 2D drafting/de diff --git a/wiki/translations/de/Manual:Traditional_modeling,_the_CSG_way.md b/wiki/translations/de/Manual:Traditional_modeling,_the_CSG_way.md index 522856322d..d7b337e0b6 100644 --- a/wiki/translations/de/Manual:Traditional_modeling,_the_CSG_way.md +++ b/wiki/translations/de/Manual:Traditional_modeling,_the_CSG_way.md @@ -1,7 +1,4 @@ # Manual:Traditional modeling, the CSG way/de - - - {{Manual:TOC/de}} CSG steht für [Konstruktive Festkörpergeometrie](https://de.wikipedia.org/wiki/Constructive_Solid_Geometry) (engl.: Constructive Solid Geometry) und beschreibt den grundlegendsten Weg, mit 3D Volumenkörpergeometrie zu arbeiten, nämlich die Erstellung komplexer Objekte durch Hinzufügen und Entfernen von Teilen zu/von Volumenkörpern mit Hilfe boolescher Operationen wie Vereinigung, Subtraktion oder Schnittmenge. @@ -131,3 +128,6 @@ Du könntest den Tisch ansehen und denken, dass das Design nicht gut ist. Die Ve [Category:Tutorials/de](Category:Tutorials/de.md) + +--- +[documentation index](../README.md) > Manual:Traditional modeling, the CSG way/de diff --git a/wiki/translations/de/Manual:Using_spreadsheets.md b/wiki/translations/de/Manual:Using_spreadsheets.md index e67e5167c0..034d8837b0 100644 --- a/wiki/translations/de/Manual:Using_spreadsheets.md +++ b/wiki/translations/de/Manual:Using_spreadsheets.md @@ -1,7 +1,4 @@ # Manual:Using spreadsheets/de - - - {{Manual:TOC/de}} FreeCAD features another interesting workbench to explore: the [Spreadsheet Workbench](Spreadsheet_Workbench.md). This workbench allows you to create [spreadsheets](https://en.wikipedia.org/wiki/Spreadsheet) such as those made with [Excel](https://en.wikipedia.org/wiki/Microsoft_Excel) or [LibreOffice](https://en.wikipedia.org/wiki/OpenOffice.org_Calc) directly in FreeCAD. These spreadsheets can then be populated with data extracted from your model, and can also perform a series of calculations between values. Spreadsheets can be exported as CSV files, which can be imported in any other spreadsheet application. @@ -93,3 +90,6 @@ You can also give aliases to dimensional constraints (horizontal, vertical or di [Category:Tutorials/de](Category:Tutorials/de.md) + +--- +[documentation index](../README.md) > Manual:Using spreadsheets/de diff --git a/wiki/translations/de/Manual:What_is_FreeCAD.md b/wiki/translations/de/Manual:What_is_FreeCAD.md index ee88acc5a2..92736c2211 100644 --- a/wiki/translations/de/Manual:What_is_FreeCAD.md +++ b/wiki/translations/de/Manual:What_is_FreeCAD.md @@ -1,7 +1,4 @@ # Manual:What is FreeCAD/de - - - {{Manual:TOC/de}} ![](images/Freecad016_screenshot1.jpg ) @@ -22,6 +19,5 @@ Die offizielle FreeCAD-Website ist [](http://www.free - [Funktionsübersicht](Feature_list/de.md) - [Screenshots and user cases](http://forum.freecadweb.org/viewforum.php?f=24) - - - +--- +[documentation index](../README.md) > Manual:What is FreeCAD/de diff --git a/wiki/translations/de/Material.md b/wiki/translations/de/Material.md index b6bc6218fd..02ed3e973a 100644 --- a/wiki/translations/de/Material.md +++ b/wiki/translations/de/Material.md @@ -1,5 +1,5 @@ # Material/de - } +} ## Überblick @@ -179,3 +179,6 @@ Dieser Abschnitt definiert Materialeigenschaften, die die visuelle Erscheinung d {{FEM Tools navi}} [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Roadmap](Category:Roadmap.md) [Category:BIM](Category:BIM.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Material/de diff --git a/wiki/translations/de/Material_data_model.md b/wiki/translations/de/Material_data_model.md index 0bb76b863e..2809db161f 100644 --- a/wiki/translations/de/Material_data_model.md +++ b/wiki/translations/de/Material_data_model.md @@ -1,7 +1,4 @@ # Material data model/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -237,3 +234,6 @@ CSI/MasterFormat code (as there are several systems used in the industry which g [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Material](Material_Workbench.md) > Material data model/de diff --git a/wiki/translations/de/Matrix_API.md b/wiki/translations/de/Matrix_API.md index 20029a4d5a..85e766534f 100644 --- a/wiki/translations/de/Matrix_API.md +++ b/wiki/translations/de/Matrix_API.md @@ -1,5 +1,5 @@ # Matrix API/de - **(Oktober 2019) Diese Seite nicht ändern. Diese Information ist unvollständig und veraltet. Für die letzte API siehe die (engl.) [https://www.freecadweb.org/api autogenerierte API-Dokumentation] oder generiere die Dokumentation selbst, siehe [Quellendokumentation](Source_documentation/de.md).** +**(Oktober 2019) Diese Seite nicht ändern. Diese Information ist unvollständig und veraltet. Für die letzte API siehe die (engl.) [https://www.freecadweb.org/api autogenerierte API-Dokumentation] oder generiere die Dokumentation selbst, siehe [Quellendokumentation](Source_documentation/de.md).** 4x4-Matrizen werden überall in FreeCAD verwendet und können auf eine der folgenden Weisen erstellt werden: ```python @@ -96,3 +96,6 @@ print m.A21() # print m[1][0] [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Matrix API/de diff --git a/wiki/translations/de/Measurement_Of_Angles_On_Holes.md b/wiki/translations/de/Measurement_Of_Angles_On_Holes.md index 5044bc5d34..2c9f71d1b8 100644 --- a/wiki/translations/de/Measurement_Of_Angles_On_Holes.md +++ b/wiki/translations/de/Measurement_Of_Angles_On_Holes.md @@ -1,7 +1,4 @@ # Measurement Of Angles On Holes/de - - - {{TutorialInfo/de |Topic=TechDraw |Level=Basis @@ -41,4 +38,7 @@ Die erzeugte Mittellinie kann sich ändern. Wähle die Mittellinie aus, und drü Quadrantenpunkte wähle mit aus der Werkzeugleiste. Wähle als nächstes die Punkte wie unten gezeigt und verwende aus der Werkzeugleiste, um den Winkel zu erstellen. Andere Reihenfolgen erzeugen andere Winkel. Gibt es keinen Fangpunkt auf der Mittellinie, ändere die \"ISO Zahl\" in den Eigenschaften. -*Oben: Reihenfolge der Auswahl|center* {{TechDraw Tools navi}} {{Tutorials navi}} +*Oben: Reihenfolge der Auswahl|center* {{TechDraw Tools navi}} {{Tutorials navi}} + +--- +[documentation index](../README.md) > Measurement Of Angles On Holes/de diff --git a/wiki/translations/de/Mesh.md b/wiki/translations/de/Mesh.md index 4842ca0f00..a2112c67ff 100644 --- a/wiki/translations/de/Mesh.md +++ b/wiki/translations/de/Mesh.md @@ -1,6 +1,4 @@ # Mesh/de - - ## Einleitung In FreeCAD wird das Wort \"[Polygonnetz](Mesh/de.md)\" normalerweise verwendet, um sich auf ein [Polygonnetz PolygonnetzObjekt](Mesh_MeshObject/de.md) (`Mesh::MeshObject` Klasse) zu beziehen, ein Objekttyp, der 3D Daten definiert, aber kein Volumenkörper \"[Form](Shape/de.md)\" ist. @@ -42,3 +40,6 @@ Für weitere Informationen siehe [FEM Arbeitsbereich](FEM_Workbench/de.md) und [ }} {{FEM Tools navi}} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Mesh/de diff --git a/wiki/translations/de/Mesh_API.md b/wiki/translations/de/Mesh_API.md index 4a09775a40..fd9b4d3319 100644 --- a/wiki/translations/de/Mesh_API.md +++ b/wiki/translations/de/Mesh_API.md @@ -1,7 +1,4 @@ # Mesh API/de - - - **(November 2018) Diese Information kann unvollständig und veraltet sein. Für die letzte API siehe die (engl.) [https://www.freecadweb.org/api autogenerierte API-Dokumentation].** The Mesh objects can be manipulated by adding new facets, deleting facets, importing from an STL file, transforming the mesh and much more. For a complete overview of what can be done see also the [Mesh Workbench](Mesh_Workbench.md) documentation. A mesh object cannot be added to an existing document directly. Therefore the document must create an object with a property class that supports meshes. Example: @@ -236,3 +233,6 @@ d.recompute() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh API/de diff --git a/wiki/translations/de/Mesh_AddFacet.md b/wiki/translations/de/Mesh_AddFacet.md index bc828c2562..8b1b7300fa 100644 --- a/wiki/translations/de/Mesh_AddFacet.md +++ b/wiki/translations/de/Mesh_AddFacet.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh FillupHoles](Mesh_FillupHoles.md), [Mesh FillInteractiveHole](Mesh_FillInteractiveHole.md) --- +# Mesh AddFacet/de + ## Beschreibung The **Mesh AddFacet** command adds faces along a boundary of an open mesh object. It can be used to fill holes. @@ -47,4 +49,7 @@ The **Mesh AddFacet** command adds faces along a boundary of an open mesh object {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh AddFacet/de diff --git a/wiki/translations/de/Mesh_BoundingBox.md b/wiki/translations/de/Mesh_BoundingBox.md index 7fb0c5c67b..028099c482 100644 --- a/wiki/translations/de/Mesh_BoundingBox.md +++ b/wiki/translations/de/Mesh_BoundingBox.md @@ -6,6 +6,8 @@ Workbenches:[Netze](Mesh_Workbench/de.md) --- +# Mesh BoundingBox/de + ## Beschreibung Der **Netz BegrenzungsRahmen** Befehl zeigt die Begrenzungsrahmen Koordinaten eines Netzobjekts an. @@ -26,4 +28,7 @@ Der **Netz BegrenzungsRahmen** Befehl zeigt die Begrenzungsrahmen Koordinaten ei {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh BoundingBox/de diff --git a/wiki/translations/de/Mesh_BuildRegularSolid.md b/wiki/translations/de/Mesh_BuildRegularSolid.md index f741d076ed..e3edec75ee 100644 --- a/wiki/translations/de/Mesh_BuildRegularSolid.md +++ b/wiki/translations/de/Mesh_BuildRegularSolid.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Mesh BuildRegularSolid/de + ## Description @@ -147,4 +149,7 @@ Mesh objects created with this command inherit all [Mesh Feature](Mesh_Feature.m {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh BuildRegularSolid/de diff --git a/wiki/translations/de/Mesh_Cone.md b/wiki/translations/de/Mesh_Cone.md index 6deabc8f84..6d4f89e128 100644 --- a/wiki/translations/de/Mesh_Cone.md +++ b/wiki/translations/de/Mesh_Cone.md @@ -1,2 +1,5 @@ # Mesh Cone/de 1. REDIRECT [Mesh\_BuildRegularSolid/de](Mesh_BuildRegularSolid/de.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cone/de diff --git a/wiki/translations/de/Mesh_Cube.md b/wiki/translations/de/Mesh_Cube.md index 275dc8e43a..8f83f8f5c2 100644 --- a/wiki/translations/de/Mesh_Cube.md +++ b/wiki/translations/de/Mesh_Cube.md @@ -1,2 +1,5 @@ # Mesh Cube/de 1. REDIRECT [Mesh\_BuildRegularSolid/de](Mesh_BuildRegularSolid/de.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cube/de diff --git a/wiki/translations/de/Mesh_CurvatureInfo.md b/wiki/translations/de/Mesh_CurvatureInfo.md index 4c1ca071e0..7f0705eebf 100644 --- a/wiki/translations/de/Mesh_CurvatureInfo.md +++ b/wiki/translations/de/Mesh_CurvatureInfo.md @@ -7,6 +7,8 @@ SeeAlso:[Netz KnotenKrümmung](Mesh_VertexCurvature/de.md) --- +# Mesh CurvatureInfo/de + ## Beschreibung Der **Netz KrümmungsInfo** Befehl zeigt die absolute Krümmung von [Krümmungsobjekten](Mesh_VertexCurvature/de.md) an ausgewählten Punkten an. @@ -30,4 +32,7 @@ Der **Netz KrümmungsInfo** Befehl zeigt die absolute Krümmung von [Krümmungso {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CurvatureInfo/de diff --git a/wiki/translations/de/Mesh_CurvaturePlot.md b/wiki/translations/de/Mesh_CurvaturePlot.md index b225718afa..f981458fc9 100644 --- a/wiki/translations/de/Mesh_CurvaturePlot.md +++ b/wiki/translations/de/Mesh_CurvaturePlot.md @@ -1,2 +1,5 @@ # Mesh CurvaturePlot/de 1. REDIRECT [Mesh\_VertexCurvature/de](Mesh_VertexCurvature/de.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CurvaturePlot/de diff --git a/wiki/translations/de/Mesh_Cylinder.md b/wiki/translations/de/Mesh_Cylinder.md index 2f80869a1c..be64ae9d3c 100644 --- a/wiki/translations/de/Mesh_Cylinder.md +++ b/wiki/translations/de/Mesh_Cylinder.md @@ -1,2 +1,5 @@ # Mesh Cylinder/de 1. REDIRECT [Mesh\_BuildRegularSolid/de](Mesh_BuildRegularSolid/de.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cylinder/de diff --git a/wiki/translations/de/Mesh_Difference.md b/wiki/translations/de/Mesh_Difference.md index 718a1a8eb8..4cc6796b03 100644 --- a/wiki/translations/de/Mesh_Difference.md +++ b/wiki/translations/de/Mesh_Difference.md @@ -6,6 +6,8 @@ SeeAlso: --- +# Mesh Difference/de +
@@ -68,4 +70,7 @@ See: [Mesh Feature](Mesh_Feature.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Difference/de diff --git a/wiki/translations/de/Mesh_Ellipsoid.md b/wiki/translations/de/Mesh_Ellipsoid.md index 835bbeb6f8..8d45883e69 100644 --- a/wiki/translations/de/Mesh_Ellipsoid.md +++ b/wiki/translations/de/Mesh_Ellipsoid.md @@ -1,2 +1,5 @@ # Mesh Ellipsoid/de 1. REDIRECT [Mesh\_BuildRegularSolid/de](Mesh_BuildRegularSolid/de.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Ellipsoid/de diff --git a/wiki/translations/de/Mesh_EvaluateCurvature.md b/wiki/translations/de/Mesh_EvaluateCurvature.md index 3507047551..b348662af3 100644 --- a/wiki/translations/de/Mesh_EvaluateCurvature.md +++ b/wiki/translations/de/Mesh_EvaluateCurvature.md @@ -1,2 +1,5 @@ # Mesh EvaluateCurvature/de 1. REDIRECT [Mesh\_CurvatureInfo/de](Mesh_CurvatureInfo/de.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateCurvature/de diff --git a/wiki/translations/de/Mesh_EvaluateFacet.md b/wiki/translations/de/Mesh_EvaluateFacet.md index f0cb55c500..5b3bd9b790 100644 --- a/wiki/translations/de/Mesh_EvaluateFacet.md +++ b/wiki/translations/de/Mesh_EvaluateFacet.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Mesh EvaluateFacet/de +
@@ -55,4 +57,7 @@ Triangle: <[1.964574, 0.047063, 0.748046], [1.937166, 0.062461, 0.992797], {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateFacet/de diff --git a/wiki/translations/de/Mesh_EvaluateRepair.md b/wiki/translations/de/Mesh_EvaluateRepair.md index d42c7b17a2..1e5fe8d71d 100644 --- a/wiki/translations/de/Mesh_EvaluateRepair.md +++ b/wiki/translations/de/Mesh_EvaluateRepair.md @@ -1,2 +1,5 @@ # Mesh EvaluateRepair/de 1. REDIRECT [Mesh\_Evaluation/de](Mesh_Evaluation/de.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateRepair/de diff --git a/wiki/translations/de/Mesh_EvaluateSolid.md b/wiki/translations/de/Mesh_EvaluateSolid.md index 57746e5572..1a1064c2db 100644 --- a/wiki/translations/de/Mesh_EvaluateSolid.md +++ b/wiki/translations/de/Mesh_EvaluateSolid.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SelectNonSolidMeshes](Arch_SelectNonSolidMeshes.md) --- +# Mesh EvaluateSolid/de + ## Description The **Mesh EvaluateSolid** command checks if a mesh object is solid. A solid mesh object does not have any holes. @@ -25,4 +27,7 @@ The **Mesh EvaluateSolid** command checks if a mesh object is solid. A solid mes {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateSolid/de diff --git a/wiki/translations/de/Mesh_Evaluation.md b/wiki/translations/de/Mesh_Evaluation.md index 57112b4c70..d69c7f0e11 100644 --- a/wiki/translations/de/Mesh_Evaluation.md +++ b/wiki/translations/de/Mesh_Evaluation.md @@ -6,6 +6,8 @@ Workbenches:[Netz](Mesh_Workbench/de.md) --- +# Mesh Evaluation/de + ## Beschreibung The **Mesh Evaluation** command evaluates and repairs a mesh object. @@ -66,4 +68,7 @@ The **Mesh Evaluation** command evaluates and repairs a mesh object. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Evaluation/de diff --git a/wiki/translations/de/Mesh_Export.md b/wiki/translations/de/Mesh_Export.md index 9962a347aa..766cb1695f 100644 --- a/wiki/translations/de/Mesh_Export.md +++ b/wiki/translations/de/Mesh_Export.md @@ -7,6 +7,8 @@ SeeAlso:[Std Export](Std_Export/de.md), [Import Export](Import_Export/de.md) --- +# Mesh Export/de + ## Beschreibung Der Befehl **Polygonnetz Exportieren** exportiert ein Polygonnetzobjekt in ein Polygonnetzdateiformat. Es werden mehrere Dateiformate unterstützt. @@ -52,4 +54,7 @@ Mesh.export([doc.Cone, doc.Cylinder], 'D:/testfiles/mymodel.stl') {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Export/de diff --git a/wiki/translations/de/Mesh_Feature.md b/wiki/translations/de/Mesh_Feature.md index d863a6fb12..395cf1ec39 100644 --- a/wiki/translations/de/Mesh_Feature.md +++ b/wiki/translations/de/Mesh_Feature.md @@ -1,6 +1,4 @@ # Mesh Feature/de - - ## Einleitung @@ -161,3 +159,6 @@ obj.Label = "Custom label" }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Feature/de diff --git a/wiki/translations/de/Mesh_FillInteractiveHole.md b/wiki/translations/de/Mesh_FillInteractiveHole.md index 9143f684fe..45338cd302 100644 --- a/wiki/translations/de/Mesh_FillInteractiveHole.md +++ b/wiki/translations/de/Mesh_FillInteractiveHole.md @@ -6,6 +6,8 @@ SeeAlso:[Netz Löcher auffüllen](Mesh_FillupHoles/de.md), [Netz FacetteHinzufügen ](Mesh_AddFacet/de.md) --- +# Mesh FillInteractiveHole/de + ## Beschreibung Der Befehl **Polygonnetz FülleLochInteraktiv** füllt ausgewählte Löcher in Polygonnetzobjekten. @@ -33,4 +35,7 @@ Der Befehl **Polygonnetz FülleLochInteraktiv** füllt ausgewählte Löcher in P {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FillInteractiveHole/de diff --git a/wiki/translations/de/Mesh_FlipNormals.md b/wiki/translations/de/Mesh_FlipNormals.md index 57efe1ffd2..e64923152c 100644 --- a/wiki/translations/de/Mesh_FlipNormals.md +++ b/wiki/translations/de/Mesh_FlipNormals.md @@ -1,3 +1,4 @@ +# Mesh FlipNormals/de --- - GuiCommand:/de Name:Mesh FlipNormals‏‎ MenuLocation:Meshes → Flip Normals Workbenches:[[Mesh Workbench/de Mesh]]|Shortcut: SeeAlso:--- @@ -58,4 +59,7 @@ Dreht (invertiert die Richtung) der Normalen ein oder mehrerer ausgewählter Net {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FlipNormals/de diff --git a/wiki/translations/de/Mesh_FromPartShape.md b/wiki/translations/de/Mesh_FromPartShape.md index 92052b678f..d4029869c4 100644 --- a/wiki/translations/de/Mesh_FromPartShape.md +++ b/wiki/translations/de/Mesh_FromPartShape.md @@ -6,6 +6,8 @@ Workbenches:[Polygonnetz](Mesh_Workbench/de.md) --- +# Mesh FromPartShape/de + ## Beschreibung Der Befehl **Netz\_AusTeilForm** erzeugt nicht-parametrische [Polygonnetz](Mesh/de.md) Objekte ([Polygonnetz Formelemente](Mesh_Feature/de.md)) aus [Form](shape/de.md) Objekten ([Part Formelemente](Part_Feature/de.md)). @@ -166,4 +168,7 @@ msh.ViewObject.DisplayMode = "Flat Lines" {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FromPartShape/de diff --git a/wiki/translations/de/Mesh_HarmonizeNormals.md b/wiki/translations/de/Mesh_HarmonizeNormals.md index 4a380b73b7..9a428fa402 100644 --- a/wiki/translations/de/Mesh_HarmonizeNormals.md +++ b/wiki/translations/de/Mesh_HarmonizeNormals.md @@ -1,3 +1,4 @@ +# Mesh HarmonizeNormals/de --- - GuiCommand:/de Name:Mesh HarmonizeNormals‏‎ MenuLocation:Meshes → Harmonize normals Workbenches:[[Mesh Workbench/de Mesh]]|Shortcut: SeeAlso:--- @@ -52,4 +53,7 @@ Richte die Normalen eines oder mehrerer Netze aus. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh HarmonizeNormals/de diff --git a/wiki/translations/de/Mesh_Import.md b/wiki/translations/de/Mesh_Import.md index a645b631ee..9ce6070201 100644 --- a/wiki/translations/de/Mesh_Import.md +++ b/wiki/translations/de/Mesh_Import.md @@ -7,6 +7,8 @@ SeeAlso:[Std Import](Std_Import/de.md),[Std Öffnen](Std_Open/de.md), [Import Export](Import_Export/de.md) --- +# Mesh Import/de + ## Beschreibung Der Befehl **Polygonnetz Import** importiert Geometrie aus einem Netzdateiformat in das aktive Dokument. Mehrere Dateiformate werden unterstützt. Der Befehl erzeugt ein nicht-parametrisches Polygonnetzobjekt, ein [Polygonnetz Formelement](Mesh_Feature/de.md). @@ -51,4 +53,7 @@ Mesh.insert('D:/testfiles/cylinder.stl') {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Import/de diff --git a/wiki/translations/de/Mesh_Intersection.md b/wiki/translations/de/Mesh_Intersection.md index 3d2a62b14c..2332f651a3 100644 --- a/wiki/translations/de/Mesh_Intersection.md +++ b/wiki/translations/de/Mesh_Intersection.md @@ -1,3 +1,4 @@ +# Mesh Intersection/de --- - GuiCommand:/de Name:Mesh Intersection‏‎ MenuLocation:Meshes → Boolean → Intersection Workbenches:[[Mesh Workbench Mesh]]|Shortcut: SeeAlso:--- @@ -57,4 +58,7 @@ See: [Mesh Feature](Mesh_Feature.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Intersection/de diff --git a/wiki/translations/de/Mesh_Merge.md b/wiki/translations/de/Mesh_Merge.md index 505aefb0de..793d1069d3 100644 --- a/wiki/translations/de/Mesh_Merge.md +++ b/wiki/translations/de/Mesh_Merge.md @@ -1,3 +1,4 @@ +# Mesh Merge/de --- - GuiCommand:/de Name:Mesh Merge Name/de:Netze zusammenführen @@ -44,4 +45,7 @@ See: [Mesh Feature](Mesh_Feature.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Merge/de diff --git a/wiki/translations/de/Mesh_MeshObject.md b/wiki/translations/de/Mesh_MeshObject.md index a04ea7daf8..5ad6068ca7 100644 --- a/wiki/translations/de/Mesh_MeshObject.md +++ b/wiki/translations/de/Mesh_MeshObject.md @@ -1,6 +1,4 @@ # Mesh MeshObject/de - - ## Beschreibung Ein [Polygonnetz PolygonnetzObjekt](Mesh_MeshObject/de.md), oder formal ein `Mesh::MeshObject`, ist eine Klasse, die eine Polygonnetz Datenstruktur in der Software definiert. Dies ist ähnlich wie [Part TopoForm](Part_TopoShape/de.md), aber für [Polygonnetze](Mesh/de.md). @@ -58,4 +56,7 @@ obj.Mesh.write("my_file.stl") {{Mesh Tools navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh MeshObject/de diff --git a/wiki/translations/de/Mesh_Module.md b/wiki/translations/de/Mesh_Module.md index 8691a58512..b144aa593d 100644 --- a/wiki/translations/de/Mesh_Module.md +++ b/wiki/translations/de/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/de 1. REDIRECT [Mesh Workbench/de](Mesh_Workbench/de.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/de diff --git a/wiki/translations/de/Mesh_PolyCut.md b/wiki/translations/de/Mesh_PolyCut.md index 0d7d2d4c80..b546a56e47 100644 --- a/wiki/translations/de/Mesh_PolyCut.md +++ b/wiki/translations/de/Mesh_PolyCut.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Mesh PolyCut/de +
@@ -67,4 +69,7 @@ The **Mesh PolyCut** command cuts whole faces from mesh objects. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh PolyCut/de diff --git a/wiki/translations/de/Mesh_RemeshGmsh.md b/wiki/translations/de/Mesh_RemeshGmsh.md index 22ff770722..fbc2883725 100644 --- a/wiki/translations/de/Mesh_RemeshGmsh.md +++ b/wiki/translations/de/Mesh_RemeshGmsh.md @@ -8,6 +8,8 @@ SeeAlso:[Netz AusTeilForm](Mesh_FromPartShape/de.md) --- +# Mesh RemeshGmsh/de + ## Beschreibung Der **Netz WiedervernetzenGmsh** Befehl wiedervernetzt ein Netzobjekt unter Verwendung des [Gmsh](https://gmsh.info/) Vernetzers. Das neue Netz kann feiner oder gröber sein. @@ -44,4 +46,7 @@ See: [Mesh Feature](Mesh_Feature.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemeshGmsh/de diff --git a/wiki/translations/de/Mesh_RemoveCompByHand.md b/wiki/translations/de/Mesh_RemoveCompByHand.md index 16a163f8b3..df120f53ec 100644 --- a/wiki/translations/de/Mesh_RemoveCompByHand.md +++ b/wiki/translations/de/Mesh_RemoveCompByHand.md @@ -1,3 +1,4 @@ +# Mesh RemoveCompByHand/de --- - GuiCommand:/de Name:Mesh RemoveCompByHand Name/de:Netze Komponente von Hand entfernen‏‎ @@ -46,4 +47,7 @@ Rechtsklick in der 3D-Ansicht bietet die Möglichkeit zum {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemoveCompByHand/de diff --git a/wiki/translations/de/Mesh_RemoveComponents.md b/wiki/translations/de/Mesh_RemoveComponents.md index db5c01b1a6..67f1ac3df7 100644 --- a/wiki/translations/de/Mesh_RemoveComponents.md +++ b/wiki/translations/de/Mesh_RemoveComponents.md @@ -5,6 +5,8 @@ Workbenches:[Netze](Mesh_Workbench/de.md) --- +# Mesh RemoveComponents/de +
@@ -57,4 +59,7 @@ Entfernt Komponenten aus Netzen. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemoveComponents/de diff --git a/wiki/translations/de/Mesh_Scale.md b/wiki/translations/de/Mesh_Scale.md index 95a739840b..e03b32b5e5 100644 --- a/wiki/translations/de/Mesh_Scale.md +++ b/wiki/translations/de/Mesh_Scale.md @@ -1,3 +1,4 @@ +# Mesh Scale/de --- - GuiCommand:/de Name:Mesh Scale/de Workbenches:[[Mesh Workbench/de Polygonnetz]]|MenuLocation: Shortcut: SeeAlso:--- @@ -42,4 +43,7 @@ The **Mesh Scale** command scales mesh objects. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scale/de diff --git a/wiki/translations/de/Mesh_Scripting.md b/wiki/translations/de/Mesh_Scripting.md index 946a826200..1b74d4bc35 100644 --- a/wiki/translations/de/Mesh_Scripting.md +++ b/wiki/translations/de/Mesh_Scripting.md @@ -1,7 +1,4 @@ # Mesh Scripting/de - - - {{TOCright}} ## Einführung @@ -99,3 +96,6 @@ Eine umfangreiche, wenn auch schwer zu bedienende Quelle für auf Mesh bezogenes Siehe auch: [Mesh API](Mesh_API/de.md) {{Top}} {{Powerdocnavi}} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scripting/de diff --git a/wiki/translations/de/Mesh_Sphere.md b/wiki/translations/de/Mesh_Sphere.md index b7f2ded763..8ef59e7c2e 100644 --- a/wiki/translations/de/Mesh_Sphere.md +++ b/wiki/translations/de/Mesh_Sphere.md @@ -1,2 +1,5 @@ # Mesh Sphere/de 1. REDIRECT [Mesh\_BuildRegularSolid/de](Mesh_BuildRegularSolid/de.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Sphere/de diff --git a/wiki/translations/de/Mesh_Torus.md b/wiki/translations/de/Mesh_Torus.md index 9bb1eb2199..1682756abf 100644 --- a/wiki/translations/de/Mesh_Torus.md +++ b/wiki/translations/de/Mesh_Torus.md @@ -1,2 +1,5 @@ # Mesh Torus/de 1. REDIRECT [Mesh\_BuildRegularSolid/de](Mesh_BuildRegularSolid/de.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Torus/de diff --git a/wiki/translations/de/Mesh_Union.md b/wiki/translations/de/Mesh_Union.md index 7af17bff09..1b8d7fc5aa 100644 --- a/wiki/translations/de/Mesh_Union.md +++ b/wiki/translations/de/Mesh_Union.md @@ -1,3 +1,4 @@ +# Mesh Union/de --- - GuiCommand:/de Name:Mesh Union‏‎ MenuLocation:Netze → Boolsche Verknüpfung → Vereinigung Workbenches:[Shortcut: SeeAlso:[[Mesh_Merge|Merge](Mesh_Workbench/de___Netz]].md)--- @@ -63,4 +64,7 @@ See: [Mesh Feature](Mesh_Feature.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Union/de diff --git a/wiki/translations/de/Mesh_VertexCurvature.md b/wiki/translations/de/Mesh_VertexCurvature.md index a7f04eed4e..2233f5cab0 100644 --- a/wiki/translations/de/Mesh_VertexCurvature.md +++ b/wiki/translations/de/Mesh_VertexCurvature.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh CurvatureInfo](Mesh_CurvatureInfo.md) --- +# Mesh VertexCurvature/de + ## Beschreibung The **Mesh VertexCurvature** command creates Mesh Curvature objects for mesh objects. A curvature object displays the curvature of a mesh using different colors for the convex, flat and concave parts. @@ -80,4 +82,7 @@ For a Mesh Curvature object the following properties are available in the [Prope {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh VertexCurvature/de diff --git a/wiki/translations/de/Mesh_Workbench.md b/wiki/translations/de/Mesh_Workbench.md index 3e683ba184..bf7c657bca 100644 --- a/wiki/translations/de/Mesh_Workbench.md +++ b/wiki/translations/de/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/de - - - - - -Polygonnetz Arbeitsbereichssymbol +# Polygonnetz Arbeitsbereichssymbol Mesh Workbench/de {{TOCright}} @@ -111,3 +105,6 @@ Netz Arbeitsbereichseinstellungen können in den folgenden Kategorien des [Prefe }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/de diff --git a/wiki/translations/de/Mesh_to_Part.md b/wiki/translations/de/Mesh_to_Part.md index 84d105aa57..dcbf275bf1 100644 --- a/wiki/translations/de/Mesh_to_Part.md +++ b/wiki/translations/de/Mesh_to_Part.md @@ -1,7 +1,4 @@ # Mesh to Part/de - - - {{TOCright}} ## Umwandeln von Teilobjekten in Polygonnetze @@ -110,3 +107,6 @@ Part.show(solid) }} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh to Part/de diff --git a/wiki/translations/de/Migrating_to_FreeCAD_from_Fusion360.md b/wiki/translations/de/Migrating_to_FreeCAD_from_Fusion360.md index 44a3e062a7..8954cb925b 100644 --- a/wiki/translations/de/Migrating_to_FreeCAD_from_Fusion360.md +++ b/wiki/translations/de/Migrating_to_FreeCAD_from_Fusion360.md @@ -1,5 +1,5 @@ # Migrating to FreeCAD from Fusion360/de - {{TOCright}} +{{TOCright}} ## Hintergrund @@ -59,5 +59,5 @@ Fehlt auf dieser Wiki-Seite etwas. Bitte stelle eine Anfrage für [Wiki Berechti - [Umstieg auf FreeCAD von OnShape](Migrating_to_FreeCAD_from_OnShape/de.md) - - +--- +[documentation index](../README.md) > Migrating to FreeCAD from Fusion360/de diff --git a/wiki/translations/de/Migrating_to_FreeCAD_from_OnShape.md b/wiki/translations/de/Migrating_to_FreeCAD_from_OnShape.md index 761470cc38..dc5f211852 100644 --- a/wiki/translations/de/Migrating_to_FreeCAD_from_OnShape.md +++ b/wiki/translations/de/Migrating_to_FreeCAD_from_OnShape.md @@ -1,5 +1,5 @@ # Migrating to FreeCAD from OnShape/de - {{TOCright}} +{{TOCright}} ## Hintergrund @@ -11,5 +11,5 @@ Diese Seite ist für Anwender gedacht, die sich für die Arbeit mit FreeCAD inte - [Umstieg auf FreeCAD von Fusion360](Migrating_to_FreeCAD_from_Fusion360/de.md) - Joko Engineering [video](https://youtu.be/oH8GOR8Jx88) Seite-für-Seite Vergleich von FreeCAD mit OnShape - - +--- +[documentation index](../README.md) > Migrating to FreeCAD from OnShape/de diff --git a/wiki/translations/de/Misc_templates.md b/wiki/translations/de/Misc_templates.md index 54620646ca..bf50f79be9 100644 --- a/wiki/translations/de/Misc_templates.md +++ b/wiki/translations/de/Misc_templates.md @@ -1,6 +1,4 @@ # Misc templates/de - - This page lists some mixed templates. All models are in SVG format directly downloadable and usable with or without modification. All the templates and cartridges are equipped with editable texts in FreeCAD. @@ -86,3 +84,6 @@ CompassRose\_3D [CompassRose\_3D.FCStd](http://forum.freecadweb.org/download/fil [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Misc templates/de diff --git a/wiki/translations/de/Model.md b/wiki/translations/de/Model.md index 720a9c51a5..9802659e10 100644 --- a/wiki/translations/de/Model.md +++ b/wiki/translations/de/Model.md @@ -1,6 +1,4 @@ # Model/de - - ## Einleitung In FreeCAD wird das Wort \"[Modell](Model.md)\" im Bezug auf ein 3D-Objekt oder mehrere Objekte verwendet, die in der [3D Ansicht](3D_view/de.md) erstellt wurden. @@ -21,3 +19,6 @@ Allgemein gesprochen, kann das Wort \"[Zeichnung](Drawing.md)\" das gleiche bede }} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Model/de diff --git a/wiki/translations/de/ModernUI_Workbench.md b/wiki/translations/de/ModernUI_Workbench.md index 0e8bb2d269..e2ad7a8743 100644 --- a/wiki/translations/de/ModernUI_Workbench.md +++ b/wiki/translations/de/ModernUI_Workbench.md @@ -1,5 +1,5 @@ # ModernUI Workbench/de - } +} Modern UI workbench icon @@ -85,3 +85,6 @@ The uninstall sequence is as follows: [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > ModernUI Workbench/de diff --git a/wiki/translations/de/Module_Creation.md b/wiki/translations/de/Module_Creation.md index 976354061c..1005a82cbe 100644 --- a/wiki/translations/de/Module_Creation.md +++ b/wiki/translations/de/Module_Creation.md @@ -1,2 +1,5 @@ # Module Creation/de 1. REDIRECT [Workbench\_creation/de](Workbench_creation/de.md) + +--- +[documentation index](../README.md) > Module Creation/de diff --git a/wiki/translations/de/Mouse_Model.md b/wiki/translations/de/Mouse_Model.md index 90ee1e2ed0..d692474f6a 100644 --- a/wiki/translations/de/Mouse_Model.md +++ b/wiki/translations/de/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/de 1. REDIRECT [Mouse\_navigation/de](Mouse_navigation/de.md) + +--- +[documentation index](../README.md) > Mouse Model/de diff --git a/wiki/translations/de/Mouse_navigation.md b/wiki/translations/de/Mouse_navigation.md index 2fa0232bc0..a61f6a2c42 100644 --- a/wiki/translations/de/Mouse_navigation.md +++ b/wiki/translations/de/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/de - - - - - - {{TOCright}} ## Overview @@ -334,8 +328,5 @@ Vor kurzem erhielten wir Berichte von Mac Anwendern [im Forum](http://forum.free The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mouse_navigation_option_to_FreeCAD.md) orients developers who want to develop a custom mouse navigation option. Familiarity with the C++ syntax is required. - - - - - +--- +[documentation index](../README.md) > Mouse navigation/de diff --git a/wiki/translations/de/Naming_project.md b/wiki/translations/de/Naming_project.md index cb93a8f784..b52d47b40d 100644 --- a/wiki/translations/de/Naming_project.md +++ b/wiki/translations/de/Naming_project.md @@ -1,7 +1,4 @@ # Naming project/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -109,3 +106,6 @@ Siehe [hier](https://github.com/ezzieyguywuf/freecadTopoTesting/blob/master/TNam [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Naming project/de diff --git a/wiki/translations/de/Navigation_Cube.md b/wiki/translations/de/Navigation_Cube.md index fbb42378e1..147419d424 100644 --- a/wiki/translations/de/Navigation_Cube.md +++ b/wiki/translations/de/Navigation_Cube.md @@ -1,10 +1,4 @@ # Navigation Cube/de - - - - - - {{TOCright}} Die Navigationswürfelsteuerung, oder **Navigationswürfel**, ist eine grafische Hilfe der Benutzeroberfläche zur Neuausrichtung der 3D Ansicht. Standardmäßig ist es sichtbar und befindet sich in der oberen rechten Ecke der 3D Anzeige. Wenn Du dir die Standard 3D Ansicht ansiehst, sieht es wie folgt aus: @@ -80,3 +74,6 @@ Für eine erweiterte Konfiguration beziehe dich auf das [WürfelMenü](Interface [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Navigation Cube/de diff --git a/wiki/translations/de/NumPy.md b/wiki/translations/de/NumPy.md index 7250c5d562..fbd84da590 100644 --- a/wiki/translations/de/NumPy.md +++ b/wiki/translations/de/NumPy.md @@ -1,6 +1,4 @@ # NumPy/de - - ## Einführung Diese Seite zielt darauf, die Nutzung von [NumPy](https://numpy.org/) mit FreeCAD zu dokumentieren. @@ -19,3 +17,6 @@ numpy wird als Abhängigkeit von FreeCAD installiert, daher kannst du import num [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > NumPy/de diff --git a/wiki/translations/de/Object_API.md b/wiki/translations/de/Object_API.md index 6daf340339..1dc5a432ad 100644 --- a/wiki/translations/de/Object_API.md +++ b/wiki/translations/de/Object_API.md @@ -1,5 +1,5 @@ # Object API/de - **(Oktober 2019) Bearbeite diese Seiten nicht. Die Informationen sind unvollständig und veraltet. Die neueste API findest Du in der [https://www.freecadweb.org/api autogenerierten API-Dokumentation] oder generiere die Dokumentation selbst, siehe [Quelldokumentation](Source_documentation/de.md).** +**(Oktober 2019) Bearbeite diese Seiten nicht. Die Informationen sind unvollständig und veraltet. Die neueste API findest Du in der [https://www.freecadweb.org/api autogenerierten API-Dokumentation] oder generiere die Dokumentation selbst, siehe [Quelldokumentation](Source_documentation/de.md).** Being parametric, document objects in FreeCAD can have a lot of additional properties, but these are the basic ones, present in every FreeCAD Document Object. Objects can be retrieved simply by their name. Example: ```python @@ -59,3 +59,6 @@ print myObj.PropertiesList [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Object API/de diff --git a/wiki/translations/de/Object_name.md b/wiki/translations/de/Object_name.md index 23bc8fe6af..532befe5e9 100644 --- a/wiki/translations/de/Object_name.md +++ b/wiki/translations/de/Object_name.md @@ -1,6 +1,4 @@ # Object name/de - - ## Einleitung @@ -118,5 +116,5 @@ obj3 = App.ActiveDocument.getObjectsByLabel("Some special name for this cube__00 Given that the `Label` is in general not unique, the `getObjectsByLabel` method returns a list with all objects found with that `Label`. However, if the `Label` is unique in the document then the first element in that list should be the desired object. - - +--- +[documentation index](../README.md) > Object name/de diff --git a/wiki/translations/de/Offsite_tutorials.md b/wiki/translations/de/Offsite_tutorials.md index 6cd696b3a2..fb34caa424 100644 --- a/wiki/translations/de/Offsite_tutorials.md +++ b/wiki/translations/de/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/de - **Bitte beachte die im Tutorial verwendete Version von FreeCAD. Wenn ein Tutorial eine ältere Version des Programms verwendet, kann der allgemeine Modellierungsprozess noch funktionieren, aber einige Werkzeuge können sich in neueren Versionen geändert haben. Füge keine Tutorials hinzu, die mit Version 0.16 oder älter erstellt wurden, da diese Versionen als veraltet gelten.** +**Bitte beachte die im Tutorial verwendete Version von FreeCAD. Wenn ein Tutorial eine ältere Version des Programms verwendet, kann der allgemeine Modellierungsprozess noch funktionieren, aber einige Werkzeuge können sich in neueren Versionen geändert haben. Füge keine Tutorials hinzu, die mit Version 0.16 oder älter erstellt wurden, da diese Versionen als veraltet gelten.** Diese Seite führt FreeCAD Tutorien auf, die auf anderen Seiten im Netz zu finden sind. @@ -18,4 +18,7 @@ Diese Seite führt FreeCAD Tutorien auf, die auf anderen Seiten im Netz zu finde {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/de diff --git a/wiki/translations/de/Online_Help_Startpage.md b/wiki/translations/de/Online_Help_Startpage.md index 866a04f7a8..f7e470fff4 100644 --- a/wiki/translations/de/Online_Help_Startpage.md +++ b/wiki/translations/de/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/de - - ![150](images/Crystal_Clear_app_tutorials.png ) ## Willkommen zur FreeCAD Online Hilfe @@ -22,3 +20,6 @@ Wie Sie vielleicht mitbekommen haben, sind Programmierer schlechte Autoren für [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/de diff --git a/wiki/translations/de/Online_Help_Toc.md b/wiki/translations/de/Online_Help_Toc.md index 8ce59b24b7..fbf2a59a0f 100644 --- a/wiki/translations/de/Online_Help_Toc.md +++ b/wiki/translations/de/Online_Help_Toc.md @@ -1,6 +1,4 @@ # Online Help Toc/de - - Dies ist das Inhaltsverzeichnis, das für den automatischen Aufbau des Systems **Online Hilfe** in FreeCAD verwendet wird. Eine druckbare Version dieses Handbuchs ist auch auf der Seite [Veröffentlichungsseite](https://github.com/FreeCAD/FreeCAD/releases) (z.Zt. nur in Englisch) verfügbar. Wenn Du Fragen hast oder Hilfe zu FreeCAD benötigst, besuch bitte die **[Hilfeseite](Help/de.md)** einschließlich der Foren und Chatgruppen. Es gibt ein weiteres Inhaltsverzeichnis für das [FreeCAD HANDBUCH](Manual:Introduction/de.md). @@ -117,3 +115,6 @@ Es gibt ein weiteres Inhaltsverzeichnis für das [FreeCAD HANDBUCH](Manual:Intro [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/de diff --git a/wiki/translations/de/OpenCASCADE.md b/wiki/translations/de/OpenCASCADE.md index 9b9236d30e..73bb8ec07c 100644 --- a/wiki/translations/de/OpenCASCADE.md +++ b/wiki/translations/de/OpenCASCADE.md @@ -1,7 +1,4 @@ # OpenCASCADE/de - - - {{TOCright}} ## Beschreibung @@ -88,3 +85,6 @@ So kannst du aus Formen sehr komplexe Teile bauen oder umgekehrt alle Unterforme }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > OpenCASCADE/de diff --git a/wiki/translations/de/OpenSCAD_AddOpenSCADElement.md b/wiki/translations/de/OpenSCAD_AddOpenSCADElement.md index fff9973f4c..9318171853 100644 --- a/wiki/translations/de/OpenSCAD_AddOpenSCADElement.md +++ b/wiki/translations/de/OpenSCAD_AddOpenSCADElement.md @@ -7,6 +7,8 @@ Workbenches:[OpenSCAD](OpenSCAD_Workbench/de.md) --- +# OpenSCAD AddOpenSCADElement/de + ## Beschreibung Füge ein OpenSCAD Element hinzu, indem du OpenSCAD Code in das Aufgabenfeld eingibst und die OpenSCAD Binärdatei ausführst (erfordert OpenSCAD). @@ -47,4 +49,7 @@ Beginnend mit (v0.14) sucht FreeCAD nach der OpenSCAD ausführba {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD AddOpenSCADElement/de diff --git a/wiki/translations/de/OpenSCAD_CSG.md b/wiki/translations/de/OpenSCAD_CSG.md index 7139af8c35..79bf3c4da1 100644 --- a/wiki/translations/de/OpenSCAD_CSG.md +++ b/wiki/translations/de/OpenSCAD_CSG.md @@ -1,5 +1,5 @@ # OpenSCAD CSG/de - {{TOCright}} +{{TOCright}} ## Importieren @@ -40,3 +40,6 @@ Jedes von Part::Feature abgeleitete Objekt, das (noch) nicht unterstützt wird, {{OpenSCAD Tools navi}} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD CSG/de diff --git a/wiki/translations/de/OpenSCAD_CSG_tested_files.md b/wiki/translations/de/OpenSCAD_CSG_tested_files.md index 8759b5631c..e60b5e248e 100644 --- a/wiki/translations/de/OpenSCAD_CSG_tested_files.md +++ b/wiki/translations/de/OpenSCAD_CSG_tested_files.md @@ -1,6 +1,4 @@ # OpenSCAD CSG tested files/de - - ## Dies ist eine Liste von OpenSCAD-Dateien, die nicht in FreeCAD geöffnet werden können ------------------- ------------------------------------------ ----------------------------------------------------------------- -------------------------------------------------------------------- ------------------------------------------ @@ -28,3 +26,6 @@ {{OpenSCAD Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD CSG tested files/de diff --git a/wiki/translations/de/OpenSCAD_ColorCodeShape.md b/wiki/translations/de/OpenSCAD_ColorCodeShape.md index a675101289..edc4c7f8a1 100644 --- a/wiki/translations/de/OpenSCAD_ColorCodeShape.md +++ b/wiki/translations/de/OpenSCAD_ColorCodeShape.md @@ -7,6 +7,8 @@ Workbenches:[OpenSCAD](OpenSCAD_Workbench/de.md) --- +# OpenSCAD ColorCodeShape/de + ## Beschreibung ## Anwendung @@ -21,4 +23,7 @@ {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ColorCodeShape/de diff --git a/wiki/translations/de/OpenSCAD_Edgestofaces.md b/wiki/translations/de/OpenSCAD_Edgestofaces.md index d32fa98e13..c6ee64dfa4 100644 --- a/wiki/translations/de/OpenSCAD_Edgestofaces.md +++ b/wiki/translations/de/OpenSCAD_Edgestofaces.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Hochstufen](Draft_Upgrade/de.md) --- +# OpenSCAD Edgestofaces/de + ## Beschreibung Wandelt Kanten in Flächen um. Nützlich, um importierte DXF-Geometrien für die Extrusion vorzubereiten. @@ -27,4 +29,7 @@ Lies auch Draft\_Upgrade +# OpenSCAD Arbeitsbereichssymbol OpenSCAD Workbench/de ## Einführung @@ -95,3 +89,6 @@ Wenn FreeCAD beim Import von CSG abstürzt, wird dringend empfohlen, \"Modell au }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/de diff --git a/wiki/translations/de/PCB_Workbench.md b/wiki/translations/de/PCB_Workbench.md index d2ced36d75..8e3fdf287b 100644 --- a/wiki/translations/de/PCB_Workbench.md +++ b/wiki/translations/de/PCB_Workbench.md @@ -1,6 +1,4 @@ # PCB Workbench/de - - ## Einführung @@ -111,3 +109,6 @@ Sicherheit → Bearbeiten → Benutzer und markiere alle Kontrollkästchen unter [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > PCB Workbench/de diff --git a/wiki/translations/de/PDF.md b/wiki/translations/de/PDF.md index bb15b649a9..50ca1ffd56 100644 --- a/wiki/translations/de/PDF.md +++ b/wiki/translations/de/PDF.md @@ -1,7 +1,4 @@ # PDF/de - - - {{TOCright}} ## Beschreibung @@ -30,3 +27,6 @@ Die Option, nach PDF zu exportieren, ist im Menü unter **Datei → [PDF exporti [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > PDF/de diff --git a/wiki/translations/de/Packaging.md b/wiki/translations/de/Packaging.md index be4e097fe1..2b6855c140 100644 --- a/wiki/translations/de/Packaging.md +++ b/wiki/translations/de/Packaging.md @@ -1,6 +1,4 @@ # Packaging/de - - Diese Seite sammelt die Informationen über die Paketerstellung von FreeCAD auf verschiedenen Plattformen. - [Linux Paketerstellung](Linux_packaging/de.md). Information zu AppImages, Debian Paketen, instabile und tägliche, und andere. @@ -11,3 +9,6 @@ Diese Seite sammelt die Informationen über die Paketerstellung von FreeCAD auf [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Packaging/de diff --git a/wiki/translations/de/Part.md b/wiki/translations/de/Part.md index b5dbb6aa20..c9af588122 100644 --- a/wiki/translations/de/Part.md +++ b/wiki/translations/de/Part.md @@ -1,6 +1,4 @@ # Part/de - - ## Einleitung @@ -34,3 +32,6 @@ Wenn jedoch mehr Präzision erforderlich ist, muss die Unterscheidung vorgenomme }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Part/de diff --git a/wiki/translations/de/PartDesign_AdditiveBox.md b/wiki/translations/de/PartDesign_AdditiveBox.md index ab137addc4..3d27f0cb08 100644 --- a/wiki/translations/de/PartDesign_AdditiveBox.md +++ b/wiki/translations/de/PartDesign_AdditiveBox.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Additives Grundelement](PartDesign_CompPrimitiveAdditive/de.md) --- +# PartDesign AdditiveBox/de + ## Beschreibung Fügt einen einfachen Quader in den aktiven Körper (body) als Basisformelement ein oder vereinigt ihn mit den bereits bestehenden Formelementen. @@ -46,4 +48,7 @@ Der Quader kann auf zwei verschiedene Weisen bearbeitet werden: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveBox/de diff --git a/wiki/translations/de/PartDesign_AdditiveCone.md b/wiki/translations/de/PartDesign_AdditiveCone.md index 1798f0274d..51dab3db97 100644 --- a/wiki/translations/de/PartDesign_AdditiveCone.md +++ b/wiki/translations/de/PartDesign_AdditiveCone.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign CompAdditivesGrundelement](PartDesign_CompPrimitiveAdditive/de.md) --- +# PartDesign AdditiveCone/de +
@@ -57,4 +59,7 @@ Der Kegel kann auf zwei verschiedene Wege bearbeitet werden: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCone/de diff --git a/wiki/translations/de/PartDesign_AdditiveCylinder.md b/wiki/translations/de/PartDesign_AdditiveCylinder.md index 04c4742b14..bfb6a21d18 100644 --- a/wiki/translations/de/PartDesign_AdditiveCylinder.md +++ b/wiki/translations/de/PartDesign_AdditiveCylinder.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign AufbauGrundelementAdditiv](PartDesign_CompPrimitiveAdditive/de.md) --- +# PartDesign AdditiveCylinder/de +
@@ -64,4 +66,7 @@ Der Zylinder kann auf zwei verschieden Wege bearbeitet werden: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCylinder/de diff --git a/wiki/translations/de/PartDesign_AdditiveEllipsoid.md b/wiki/translations/de/PartDesign_AdditiveEllipsoid.md index dfaa2da79d..71983bbed5 100644 --- a/wiki/translations/de/PartDesign_AdditiveEllipsoid.md +++ b/wiki/translations/de/PartDesign_AdditiveEllipsoid.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign CompAdditivesGrundelement](PartDesign_CompPrimitiveAdditive/de.md) --- +# PartDesign AdditiveEllipsoid/de + ## Beschreibung Fügt den Grundkörper Ellipsoid in den aktiven Körper (Body) als Basisformelement ein oder vereinigt ihn mit den bereits bestehenden Formelementen. @@ -64,4 +66,7 @@ Das Ellipsoid kann auf zwei verschieden Wege bearbeitet werden: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveEllipsoid/de diff --git a/wiki/translations/de/PartDesign_AdditiveHelix.md b/wiki/translations/de/PartDesign_AdditiveHelix.md index 4273edfd20..27d4e16171 100644 --- a/wiki/translations/de/PartDesign_AdditiveHelix.md +++ b/wiki/translations/de/PartDesign_AdditiveHelix.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Subtraktive Helix](PartDesign_SubtractiveHelix.md) --- +# PartDesign AdditiveHelix/de + ## Beschreibung Das Werkzeug **AdditiveHelix** erstellt einen Körper durch das Führen einer Skizze entlang eines Helix-Pfades. @@ -127,4 +129,7 @@ Eine additive Helix, die sich nicht selbst überschneidet ist sichtbar, wenn **T {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveHelix/de diff --git a/wiki/translations/de/PartDesign_AdditiveLoft.md b/wiki/translations/de/PartDesign_AdditiveLoft.md index de06f46ec1..3794fd777f 100644 --- a/wiki/translations/de/PartDesign_AdditiveLoft.md +++ b/wiki/translations/de/PartDesign_AdditiveLoft.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign AdditivesRohr](PartDesign_AdditivePipe/de.md), [PartDesign SubtraktiveAusformung](PartDesign_SubtractiveLoft/de.md) --- +# PartDesign AdditiveLoft/de +
@@ -123,4 +125,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveLoft/de diff --git a/wiki/translations/de/PartDesign_AdditivePipe.md b/wiki/translations/de/PartDesign_AdditivePipe.md index 403d0310f8..3708c8dac8 100644 --- a/wiki/translations/de/PartDesign_AdditivePipe.md +++ b/wiki/translations/de/PartDesign_AdditivePipe.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Additives Rohr](PartDesign_AdditivePipe/de.md), [PartDesign Subtraktive Ausformung](PartDesign_SubtractiveLoft/de.md) --- +# PartDesign AdditivePipe/de + @@ -132,4 +134,7 @@ Um mehr als einen Querschnitt zu verwenden, beginne mit der ersten Querschnittss {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePipe/de diff --git a/wiki/translations/de/PartDesign_AdditivePrism.md b/wiki/translations/de/PartDesign_AdditivePrism.md index f2379b9bb0..4008123a3b 100644 --- a/wiki/translations/de/PartDesign_AdditivePrism.md +++ b/wiki/translations/de/PartDesign_AdditivePrism.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Erzeugen eines additiven Grundelements](PartDesign_CompPrimitiveAdditive/de.md), [PartDesign Subtraktives Prisma](PartDesign_SubtractivePrism/de.md) --- +# PartDesign AdditivePrism/de + ## Beschreibung Fügt ein Prisma in den aktiven Körper (Body) als Basisformelement ein oder vereinigt ihn mit den bereits bestehenden Formelementen. @@ -64,4 +66,7 @@ Das Prisma kann nach seiner Erstellung auf zwei Arten bearbeitet werden: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePrism/de diff --git a/wiki/translations/de/PartDesign_AdditiveSphere.md b/wiki/translations/de/PartDesign_AdditiveSphere.md index a104e0fe14..0aaa45aa72 100644 --- a/wiki/translations/de/PartDesign_AdditiveSphere.md +++ b/wiki/translations/de/PartDesign_AdditiveSphere.md @@ -1,3 +1,4 @@ +# PartDesign AdditiveSphere/de --- - GuiCommand:/de Name:PartDesign AdditiveSphere @@ -60,4 +61,7 @@ Die Kugel kann auf zwei verschieden Wege bearbeitet werden: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveSphere/de diff --git a/wiki/translations/de/PartDesign_AdditiveTorus.md b/wiki/translations/de/PartDesign_AdditiveTorus.md index 1e72fd9c2f..8e5cb248bc 100644 --- a/wiki/translations/de/PartDesign_AdditiveTorus.md +++ b/wiki/translations/de/PartDesign_AdditiveTorus.md @@ -8,6 +8,8 @@ Siehe auch:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive/de.md) --- +# PartDesign AdditiveTorus/de + ## Beschreibung Fügt den Grundkörper Torus in den aktiven Körper (Body) als Basisformelement ein oder vereinigt ihn mit den bereits bestehenden Formelementen. @@ -65,4 +67,7 @@ Der Torus kann auf zwei verschiedene Weisen bearbeitet werden: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveTorus/de diff --git a/wiki/translations/de/PartDesign_AdditiveWedge.md b/wiki/translations/de/PartDesign_AdditiveWedge.md index 23968f294f..c5653acb46 100644 --- a/wiki/translations/de/PartDesign_AdditiveWedge.md +++ b/wiki/translations/de/PartDesign_AdditiveWedge.md @@ -1,3 +1,4 @@ +# PartDesign AdditiveWedge/de --- - GuiCommand:/de Name:PartDesign AdditiveWedge @@ -60,4 +61,7 @@ Wedges can be used to create pyramids by setting **X2 min/max** and **Z2 min/max {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveWedge/de diff --git a/wiki/translations/de/PartDesign_Bearingholder_Tutorial_I.md b/wiki/translations/de/PartDesign_Bearingholder_Tutorial_I.md index 5c068ab358..b7a7c16492 100644 --- a/wiki/translations/de/PartDesign_Bearingholder_Tutorial_I.md +++ b/wiki/translations/de/PartDesign_Bearingholder_Tutorial_I.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial I/de - - - - {{TutorialInfo/de |Topic=Modellierung |Level=Erfahrene Anwender @@ -114,3 +110,6 @@ Wir haben die Oberseite des Lagergehäuses mit den Abmessungen modelliert, die e [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial I/de diff --git a/wiki/translations/de/PartDesign_Bearingholder_Tutorial_II.md b/wiki/translations/de/PartDesign_Bearingholder_Tutorial_II.md index 12d66f3dbb..4fe236a186 100644 --- a/wiki/translations/de/PartDesign_Bearingholder_Tutorial_II.md +++ b/wiki/translations/de/PartDesign_Bearingholder_Tutorial_II.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial II/de - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -95,3 +91,6 @@ Für den Rest der soaneneden Bearbeitung erzeuge einen neuen Körper. Der Boden [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial II/de diff --git a/wiki/translations/de/PartDesign_Body.md b/wiki/translations/de/PartDesign_Body.md index 84a2a85297..c45a52e71e 100644 --- a/wiki/translations/de/PartDesign_Body.md +++ b/wiki/translations/de/PartDesign_Body.md @@ -7,6 +7,8 @@ SeeAlso:[Std Part](Std_Part/de.md), [Funktion bearbeiten](Feature_editing/de.md) --- +# PartDesign Body/de + ## Beschreibung Ein [PartDesign Körper](PartDesign_Body/de.md) ist das Basiselement, um mit dem [PartDesign Arbeitsbereich](PartDesign_Workbench/de.md) Festkörper zu erzeugen. Es kann [Skizzen](Sketch/de.md), [Bezugsobjekte](Datum.md) und [PartDesign Formelementen](PartDesign_Feature/de.md) enthalten, die bei der Erstellung eines [Einfach zusammenhängender Festkörper](PartDesign_Body/de#Einfach_zusammenhängender_Festkörper/de.md) helfen. @@ -317,4 +319,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Body/de diff --git a/wiki/translations/de/PartDesign_Boolean.md b/wiki/translations/de/PartDesign_Boolean.md index fe0ee687de..02056d6ec6 100644 --- a/wiki/translations/de/PartDesign_Boolean.md +++ b/wiki/translations/de/PartDesign_Boolean.md @@ -7,6 +7,8 @@ Version:0.17 --- +# PartDesign Boolean/de + ## Beschreibung **PartDesign Boolesche Operation** importiert einen oder mehrere [PartDesign Körper (Body)](PartDesign_Body/de.md) oder [PartDesign Klone](PartDesign_Clone/de.md) (vorgesehen als \"Werkzeugkörper\") in den aktiven PartDesign Körper und führt eine Boolesche Operation aus: Vereinigung, Differenz oder Schnitt (nur gemeinsame Volumenelemente bleiben erhalten). @@ -62,4 +64,7 @@ Alternativ können ein oder mehrere Körper vor dem Klicken der Booleschen Schal {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Boolean/de diff --git a/wiki/translations/de/PartDesign_Chamfer.md b/wiki/translations/de/PartDesign_Chamfer.md index 36e2ab7a30..08589fd7f6 100644 --- a/wiki/translations/de/PartDesign_Chamfer.md +++ b/wiki/translations/de/PartDesign_Chamfer.md @@ -7,6 +7,8 @@ SeeAlso:[Verrundung](PartDesign_Fillet/de.md), [Part Fase](Part_Chamfer/de.md) --- +# PartDesign Chamfer/de + @@ -53,4 +55,7 @@ Dieses Werkzeug erzeugt Fasen an den ausgewählten Kanten eines Objekts. Im Proj {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Chamfer/de diff --git a/wiki/translations/de/PartDesign_Clone.md b/wiki/translations/de/PartDesign_Clone.md index 208cb8fb3e..371ad5db59 100644 --- a/wiki/translations/de/PartDesign_Clone.md +++ b/wiki/translations/de/PartDesign_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Entwurf Klon](Draft_Clone/de.md) --- +# PartDesign Clone/de + ## Beschreibung **PartDesign Clone** erzeugt eine verknüpfte Kopie eines gewählten Objekts, das allen zukünftigen Bearbeitungen des Originalobjekts (außer der Positionierung) folgt. Ein Anwendungsfall ist z.B., wenn du [PartDesign boolsche Opeartion](PartDesign_Boolean/de.md) für ein in einem anderen Arbeitsbereich erstelltes Objekt ausführen möchtest. Die meisten Objekttypen werden akzeptiert, solange es sich um einzelne Volumenkörper handelt. Wenn du mehrere Objekte (d.h. Körper) oder einen [Part Behälter](Std_Part/de.md) klonen musst, könntest du [Entwurf Arbeitsbereich Klon](Draft_Clone/de.md) verwenden. Ein Vorbehalt ist, dass der Klon des Part Design Arbeitsbereich die aktuelle Positionierung des Klons auf Null setzt (sowohl die kartesische Übersetzung als auch die räumliche Orientierung). Während der Klon des Entwurfs Arbeitsbereich berechnet und setzt die numerischen Werte der aktuellen Positionierung und Orientierung der geklonten Objekte in Bezug auf den geklonten Objektbehälter. @@ -44,4 +46,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Clone/de diff --git a/wiki/translations/de/PartDesign_CompPrimitiveAdditive.md b/wiki/translations/de/PartDesign_CompPrimitiveAdditive.md index cb566d0c49..1b84fee79a 100644 --- a/wiki/translations/de/PartDesign_CompPrimitiveAdditive.md +++ b/wiki/translations/de/PartDesign_CompPrimitiveAdditive.md @@ -10,6 +10,8 @@ SeeAlso:[PartDesign Abzuziehender Grundkörper](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign CompPrimitiveAdditive/de + ## Beschreibung Erzeugt ein additives Grundelement im aktiven Körper als erstes Formelement oder verschmilzt es mit dem/den vorhandenen Formelement(en). Wenn kein Körper im Dokument gefunden wird, wird automatisch einer erzeugt. @@ -31,4 +33,7 @@ Erzeugt ein additives Grundelement im aktiven Körper als erstes Formelement ode {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveAdditive/de diff --git a/wiki/translations/de/PartDesign_CompPrimitiveSubtractive.md b/wiki/translations/de/PartDesign_CompPrimitiveSubtractive.md index eef910c29d..012078994d 100644 --- a/wiki/translations/de/PartDesign_CompPrimitiveSubtractive.md +++ b/wiki/translations/de/PartDesign_CompPrimitiveSubtractive.md @@ -9,6 +9,8 @@ Version:0.17 --- +# PartDesign CompPrimitiveSubtractive/de + ## Beschreibung Erzeugt durch Herausschneiden einen subtraktiven Grundkörper im aktiven Körper. @@ -30,4 +32,7 @@ Erzeugt durch Herausschneiden einen subtraktiven Grundkörper im aktiven Körper {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveSubtractive/de diff --git a/wiki/translations/de/PartDesign_CoordinateSystem.md b/wiki/translations/de/PartDesign_CoordinateSystem.md index 12330cf7c2..931afd8392 100644 --- a/wiki/translations/de/PartDesign_CoordinateSystem.md +++ b/wiki/translations/de/PartDesign_CoordinateSystem.md @@ -8,6 +8,8 @@ SeeAlso:[Datum point](PartDesign_Point.md), [PartDesign Datum line](PartDesign_Line.md), [Datum plane](PartDesign_Plane.md) --- +# PartDesign CoordinateSystem/de + ## Beschreibung Erzeugt ein **lokales Koordinatensystem**, welches als Referenz für andere Bezugsgeometrie verwendet werden kann. Es hilft auch, die Orientierung der referenzierten Bezugsgeometrie im 3D Raum zu ermitteln. ![](images/PartDesign_LocalCoordinateSystem_Example.png ) {{Caption | Lokales Koordinatensystem, das aus dem Ursprung einer Bezugsebene entspring.}} @@ -59,4 +61,7 @@ lcs = App.activeDocument().addObject( 'PartDesign::CoordinateSystem', 'LCS' ) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CoordinateSystem/de diff --git a/wiki/translations/de/PartDesign_Draft.md b/wiki/translations/de/PartDesign_Draft.md index a7193c29a4..7c8887d10b 100644 --- a/wiki/translations/de/PartDesign_Draft.md +++ b/wiki/translations/de/PartDesign_Draft.md @@ -8,6 +8,8 @@ SeeAlso:Keine --- +# PartDesign Draft/de + @@ -100,4 +102,7 @@ Dieses Werkzeug erzeugt einen Winkelentwurf auf den ausgewählten Flächen eines {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Draft/de diff --git a/wiki/translations/de/PartDesign_Feature.md b/wiki/translations/de/PartDesign_Feature.md index 2af8bdab90..89ec19f76e 100644 --- a/wiki/translations/de/PartDesign_Feature.md +++ b/wiki/translations/de/PartDesign_Feature.md @@ -1,6 +1,4 @@ # PartDesign Feature/de - - ## Einleitung Ein [PartDesign Formelement](PartDesign_Feature/de.md) verweist auf einen \"Schritt\" im Modellierungsprozess, der innerhalb eines [PartDesign Body](PartDesign_Body.md) stattfindet. Zum Beispiel jedes Mal, wenn du einen Festkörperquader mit [PartDesign Quader hinzufügen](PartDesign_AdditiveBox/de.md), fügst Du ein Formelement hinzu; wenn Du eine Fase zu einer Kante mit [PartDesign Fase](PartDesign_Chamfer/de.md) hinzufügst, fügst Du ein weiteres Formelement hinzu; wenn Du ein Loch mit [Skizze](Sketch/de.md) und [PartDesign Tasche](PartDesign_Pocket/de.md) schneidest, fügst Du ein weiteres Formelement hinzu. @@ -72,4 +70,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Feature/de diff --git a/wiki/translations/de/PartDesign_Fillet.md b/wiki/translations/de/PartDesign_Fillet.md index 3f40f389ff..287985c6db 100644 --- a/wiki/translations/de/PartDesign_Fillet.md +++ b/wiki/translations/de/PartDesign_Fillet.md @@ -7,6 +7,8 @@ SeeAlso:[Fase](PartDesign_Chamfer.md), [Part Verrundung](Part_Fillet/de.md) --- +# PartDesign Fillet/de + @@ -122,4 +124,7 @@ Part.show(Box) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Fillet/de diff --git a/wiki/translations/de/PartDesign_Groove.md b/wiki/translations/de/PartDesign_Groove.md index 297e8fa9c5..a5c3e4a381 100644 --- a/wiki/translations/de/PartDesign_Groove.md +++ b/wiki/translations/de/PartDesign_Groove.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign Arbeitsbereich](PartDesign_Workbench/de.md) --- +# PartDesign Groove/de + @@ -86,4 +88,7 @@ Nachfolgend findest Du Eigenschaften, die nach der Erstellung des Merkmals defin {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Groove/de diff --git a/wiki/translations/de/PartDesign_Hole.md b/wiki/translations/de/PartDesign_Hole.md index e01db1445c..ffd8843247 100644 --- a/wiki/translations/de/PartDesign_Hole.md +++ b/wiki/translations/de/PartDesign_Hole.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Tasche](PartDesign_Pocket/de.md) --- +# PartDesign Hole/de + ## Beschreibung @@ -137,4 +139,7 @@ Beispiel: {{Code|lang=json|code= {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Hole/de diff --git a/wiki/translations/de/PartDesign_InvoluteGear.md b/wiki/translations/de/PartDesign_InvoluteGear.md index 05389072c6..a89862b75c 100644 --- a/wiki/translations/de/PartDesign_InvoluteGear.md +++ b/wiki/translations/de/PartDesign_InvoluteGear.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/de.md) --- +# PartDesign InvoluteGear/de + ## Beschreibung Dieses Werkzeug erlaubt dir ein 2D Profil eines Evolventenzahnrades zu erstellen. Dieses 2D Profil ist vollständig parametrisch und kann mit dem Grundelement [PartDesign Polster](PartDesign_Pad/de.md) aufgefüllt werden. @@ -42,4 +44,7 @@ Für ausführlichere Informationen siehe die Wikipedia Einträge zu: [Zahnrad](h {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign InvoluteGear/de diff --git a/wiki/translations/de/PartDesign_Legacy.md b/wiki/translations/de/PartDesign_Legacy.md index 1322c32c34..1a112388ec 100644 --- a/wiki/translations/de/PartDesign_Legacy.md +++ b/wiki/translations/de/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/de 1. REDIRECT [PartDesign\_Workbench/de](PartDesign_Workbench/de.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/de diff --git a/wiki/translations/de/PartDesign_Line.md b/wiki/translations/de/PartDesign_Line.md index 4230362fb5..850d95dc48 100644 --- a/wiki/translations/de/PartDesign_Line.md +++ b/wiki/translations/de/PartDesign_Line.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Bezugspunkt](PartDesign_Point/de.md), [PartDesign Bezugsebene](PartDesign_Plane/de.md) --- +# PartDesign Line/de + @@ -52,4 +54,7 @@ Mittels Doppelklick auf den Eintrag DatumLine in der Baumstruktur oder einen Rec {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Line/de diff --git a/wiki/translations/de/PartDesign_LinearPattern.md b/wiki/translations/de/PartDesign_LinearPattern.md index eb75c1317b..95b5837170 100644 --- a/wiki/translations/de/PartDesign_LinearPattern.md +++ b/wiki/translations/de/PartDesign_LinearPattern.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/de.md) --- +# PartDesign LinearPattern/de + ## Beschreibung Das ** '''LinearesMuster'''** Werkzeug erzeugt gleichmäßig verteilte Kopien eines Formelements in einer linearen Richtung. Ab {{VersionPlus/de|0.17}} kann das Linear Muster Werkzeug mehrere Formelemente mustern. @@ -93,4 +95,7 @@ Wähle eine der Standardachsen des Körperursprungs (X, Y oder Z) als Richtung. {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign LinearPattern/de diff --git a/wiki/translations/de/PartDesign_Migrate.md b/wiki/translations/de/PartDesign_Migrate.md index 9300ed97f1..b7112b6d8c 100644 --- a/wiki/translations/de/PartDesign_Migrate.md +++ b/wiki/translations/de/PartDesign_Migrate.md @@ -7,6 +7,8 @@ Version:0.17 --- +# PartDesign Migrate/de + ## Beschreibung Der PartDesign Arbeitsbereich in FreeCAD v0.17 enthält neue Werkzeuge und Elemente, die von älteren FreeCAD-Versionen (0.16 und älter) nicht erkannt werden. FreeCAD Dokumente, die in älteren Versionen erstellt wurden, können weiterhin geöffnet und bearbeitet werden. Um von den neuen Funktionen zu profitieren, müssen sie über das Menü PartDesign → Migrieren migriert werden. @@ -39,4 +41,7 @@ Der PartDesign Arbeitsbereich in FreeCAD v0.17 enthält neue Werkzeuge und Eleme {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Migrate/de diff --git a/wiki/translations/de/PartDesign_Mirrored.md b/wiki/translations/de/PartDesign_Mirrored.md index c4530e2a23..bdf3ce336e 100644 --- a/wiki/translations/de/PartDesign_Mirrored.md +++ b/wiki/translations/de/PartDesign_Mirrored.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/de.md) --- +# PartDesign Mirrored/de + ## Beschreibung Das **Gespiegelt** Werkzeug spiegelt Formelemente auf einer Ebene. @@ -83,4 +85,7 @@ Das Spiegelungsergebnis kann in Echtzeit in der Vorschau angezeigt werden, bevor {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Mirrored/de diff --git a/wiki/translations/de/PartDesign_MoveFeature.md b/wiki/translations/de/PartDesign_MoveFeature.md index 11c206a7ee..04922903ac 100644 --- a/wiki/translations/de/PartDesign_MoveFeature.md +++ b/wiki/translations/de/PartDesign_MoveFeature.md @@ -9,6 +9,8 @@ SeeAlso:[Spitze festlegen](PartDesign_MoveTip/de.md), [Verschiebe Objekt hinter anderes Objekt](PartDesign_MoveFeatureInTree/de.md) --- +# PartDesign MoveFeature/de + @@ -47,4 +49,7 @@ Hiermit wird ein Objekt aus einem Body in einen anderen Body verschoben. Das ver {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeature/de diff --git a/wiki/translations/de/PartDesign_MoveFeatureInTree.md b/wiki/translations/de/PartDesign_MoveFeatureInTree.md index 7bbd3614f0..f14508f96a 100644 --- a/wiki/translations/de/PartDesign_MoveFeatureInTree.md +++ b/wiki/translations/de/PartDesign_MoveFeatureInTree.md @@ -9,6 +9,8 @@ SeeAlso:[Spitze festlegen](PartDesign_MoveTip/de.md), [Verschiebe Objekt in anderen Körper](PartDesign_MoveFeature/de.md) --- +# PartDesign MoveFeatureInTree/de + @@ -53,4 +55,7 @@ Die folgenden drei Bilder zeigen dasselbe Modell mit einer auf einer Skizze defi {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeatureInTree/de diff --git a/wiki/translations/de/PartDesign_MoveTip.md b/wiki/translations/de/PartDesign_MoveTip.md index ce6b938956..c400b30f6f 100644 --- a/wiki/translations/de/PartDesign_MoveTip.md +++ b/wiki/translations/de/PartDesign_MoveTip.md @@ -1,3 +1,4 @@ +# PartDesign MoveTip/de --- - GuiCommand:/de Name:PartDesign MoveTip @@ -56,4 +57,7 @@ Die Spitze wird im Modellbaum durch einen kleinen weißen Abwärtspfeil in einem {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveTip/de diff --git a/wiki/translations/de/PartDesign_MultiTransform.md b/wiki/translations/de/PartDesign_MultiTransform.md index ed0addd915..599d1f8678 100644 --- a/wiki/translations/de/PartDesign_MultiTransform.md +++ b/wiki/translations/de/PartDesign_MultiTransform.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/de.md) --- +# PartDesign MultiTransform/de + ## Beschreibung \'Ein Muster aus Kombinationen von Umwandlungen herstellen\' - Die **![](images/)_[Mehrfach-Transformation](PartDesign_MultiTransform.md)** nimmt eine (oder einen Satz von) Part \'Formelementen\' als seine Eingabe und ermöglicht es dem Anwender, mehrfache Transformationen auf dieses Formelement (oder diesen Satz von Formelementen) zunehmend, der Reihe nach - eine gemeinsame oder zusammengesetzte Transformation zu erzeugen. @@ -251,4 +253,7 @@ Allows changing the order of transformations in the list \|} {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MultiTransform/de diff --git a/wiki/translations/de/PartDesign_NewSketch.md b/wiki/translations/de/PartDesign_NewSketch.md index cf55a2f782..4832aef43a 100644 --- a/wiki/translations/de/PartDesign_NewSketch.md +++ b/wiki/translations/de/PartDesign_NewSketch.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer NeueSkizze](Sketcher_NewSketch/de.md) --- +# PartDesign NewSketch/de + @@ -83,4 +85,7 @@ Um beliebige Elemente im [Arbeitsbereich Skizzierer](Sketcher_Workbench/de.md) z {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign NewSketch/de diff --git a/wiki/translations/de/PartDesign_Pad.md b/wiki/translations/de/PartDesign_Pad.md index 96364171cf..4f5abf2589 100644 --- a/wiki/translations/de/PartDesign_Pad.md +++ b/wiki/translations/de/PartDesign_Pad.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Tasche](PartDesign_Pocket/de.md) --- +# PartDesign Pad/de + ## Beschreibung Das ** [PartDesign Aufpolsterung](PartDesign_Pad/de.md)** Werkzeug extrudiert eine Skizze zu einem Festkörper senkrecht zur Ebene der Skizzenfläche. Ab {{VersionPlus/de|0.17}} können auch Flächen auf dem Festkörper verwendet werden. @@ -128,4 +130,7 @@ Du kannst dies manuell in der Datei [PartDesign](PartDesign_Workbench.md) > PartDesign Pad/de diff --git a/wiki/translations/de/PartDesign_Plane.md b/wiki/translations/de/PartDesign_Plane.md index 5c9884fc96..74073900be 100644 --- a/wiki/translations/de/PartDesign_Plane.md +++ b/wiki/translations/de/PartDesign_Plane.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Bezugspunkt](PartDesign_Point/de.md), [PartDesign Bezugslinie](PartDesign_Line/de.md) --- +# PartDesign Plane/de + @@ -60,4 +62,7 @@ Mit einem Doppelklick auf die Beschriftung der Bezugsebene in der Baumstruktur o {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Plane/de diff --git a/wiki/translations/de/PartDesign_Pocket.md b/wiki/translations/de/PartDesign_Pocket.md index 3870c5d9ea..96fdf5948c 100644 --- a/wiki/translations/de/PartDesign_Pocket.md +++ b/wiki/translations/de/PartDesign_Pocket.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Polster](PartDesign_Pad/de.md) --- +# PartDesign Pocket/de + ## Beschreibung Das **Tasche**nwerkzeug schneidet einen Festkörper aus, indem es eine Skizze (oder eine Fläche des Festkörpers) auf einem geraden Pfad extrudiert und vom Festkörper subtrahiert. @@ -63,4 +65,7 @@ Ein [Beispiel](http://forum.freecadweb.org/viewtopic.php?f=3&t=3733&start=10) mi {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pocket/de diff --git a/wiki/translations/de/PartDesign_Point.md b/wiki/translations/de/PartDesign_Point.md index 3dafb3b095..6abce6e25d 100644 --- a/wiki/translations/de/PartDesign_Point.md +++ b/wiki/translations/de/PartDesign_Point.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Bezugslinie](PartDesign_Line/de.md), [PartDesign Bezugsebene](PartDesign_Plane/de.md) --- +# PartDesign Point/de + @@ -54,4 +56,7 @@ Doppel-Klicke das Referenzpunkt Label im Modellbaum oder klicke dies einfach und {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Point/de diff --git a/wiki/translations/de/PartDesign_PolarPattern.md b/wiki/translations/de/PartDesign_PolarPattern.md index 95f97abf88..5798648296 100644 --- a/wiki/translations/de/PartDesign_PolarPattern.md +++ b/wiki/translations/de/PartDesign_PolarPattern.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/de.md) --- +# PartDesign PolarPattern/de + ## Beschreibung Das **Polarmuster** Werkzeug nimmt ein ausgewähltes Formelement und erstellt eine Reihe von Kopien, die um eine ausgewählte Achse gedreht sind. Ab Version 0.17 kann es mehrere Formelemente mustern. @@ -128,4 +130,7 @@ Gibt den Winkel an, der vom Muster abgedeckt werden soll, sowie die Gesamtzahl d {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign PolarPattern/de diff --git a/wiki/translations/de/PartDesign_Preferences.md b/wiki/translations/de/PartDesign_Preferences.md index 8b569012e3..08891ddac8 100644 --- a/wiki/translations/de/PartDesign_Preferences.md +++ b/wiki/translations/de/PartDesign_Preferences.md @@ -1,7 +1,4 @@ # PartDesign Preferences/de - - -
@@ -196,3 +193,6 @@ Rechtsklick auf **Netzabweichung** und wähle im Kontextmenü **Wert ändern**. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Preferences/de diff --git a/wiki/translations/de/PartDesign_Revolution.md b/wiki/translations/de/PartDesign_Revolution.md index 77d6f2bd67..eb8faec5bd 100644 --- a/wiki/translations/de/PartDesign_Revolution.md +++ b/wiki/translations/de/PartDesign_Revolution.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/de.md) --- +# PartDesign Revolution/de +
@@ -146,4 +148,7 @@ Ein [ausführliches Anwendungsbeispiel](http://forum.freecadweb.org/viewtopic.ph {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Revolution/de diff --git a/wiki/translations/de/PartDesign_Scaled.md b/wiki/translations/de/PartDesign_Scaled.md index 91723ee3fc..6ce9952114 100644 --- a/wiki/translations/de/PartDesign_Scaled.md +++ b/wiki/translations/de/PartDesign_Scaled.md @@ -1,5 +1,5 @@ # PartDesign Scaled/de - {{GuiCommand/de +{{GuiCommand/de |Name=PartDesign Scaled |Name/de=PartDesign Skalieren |Workbenches=[PartDesign](PartDesign_Workbench/de.md), Complete @@ -41,4 +41,7 @@ Seit FreeCAD 0.15 ist diese Funktion nicht mehr direkt verfügbar, aber als Komp ![c\|center\|800px](images/mt_example2.png ) The smallest pad was first patterned three times in X direction and then scaled to factor two (so the three occurrences have scaling factor 1.0, 1.5 and 2.0). Then a polar pattern was applied with 8 occurrences. -Since the scaling is done with respect to the center of gravity, in the case of a pad, it is necessary that the pad penetrate also in the main body, otherwise the scaled objects are floating, detached from the body. To have a pad that intersects the main body can be used \"two dimensions\" type or \"simmetric to plane\" option. +Since the scaling is done with respect to the center of gravity, in the case of a pad, it is necessary that the pad penetrate also in the main body, otherwise the scaled objects are floating, detached from the body. To have a pad that intersects the main body can be used \"two dimensions\" type or \"simmetric to plane\" option. + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Scaled/de diff --git a/wiki/translations/de/PartDesign_ShapeBinder.md b/wiki/translations/de/PartDesign_ShapeBinder.md index beed564ba9..870038fe8c 100644 --- a/wiki/translations/de/PartDesign_ShapeBinder.md +++ b/wiki/translations/de/PartDesign_ShapeBinder.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign UnterFormBinder](PartDesign_SubShapeBinder/de.md),[PartDesign Klon](PartDesign_Clone/de.md) --- +# PartDesign ShapeBinder/de + ## Beschreibung @@ -133,4 +135,7 @@ Es gibt eine Übergangslösung für die Mehrfachauswahl: Wenn du alle Elemente a {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign ShapeBinder/de diff --git a/wiki/translations/de/PartDesign_Sprocket.md b/wiki/translations/de/PartDesign_Sprocket.md index 2a62205f7a..8ca47b8f75 100644 --- a/wiki/translations/de/PartDesign_Sprocket.md +++ b/wiki/translations/de/PartDesign_Sprocket.md @@ -7,6 +7,8 @@ Version:0.19 --- +# PartDesign Sprocket/de + ## Description @@ -52,4 +54,7 @@ Mit diesem Werkzeug kannst du ein 2D Profil eines Kettenrads erstellen. Es kann {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Sprocket/de diff --git a/wiki/translations/de/PartDesign_SubShapeBinder.md b/wiki/translations/de/PartDesign_SubShapeBinder.md index 5149c5caa4..d8e7a2cefa 100644 --- a/wiki/translations/de/PartDesign_SubShapeBinder.md +++ b/wiki/translations/de/PartDesign_SubShapeBinder.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign FormBinder](PartDesign_ShapeBinder/de.md), [PartDesign Klon](PartDesign_Clone/de.md) --- +# PartDesign SubShapeBinder/de + ## Beschreibung Ein [PartDesign UnterFormBinder](PartDesign_SubShapeBinder/de.md) importiert ein Element aus einem anderen Körper in den aktiven [Körper](PartDesign_Body/de.md). Es kann die [Form](Shape/de.md) eines anderen Objekts übernehmen oder an ein oder mehrere Objekte oder Unterelemente (Kanten oder Flächen) eines anderen Objekts \"gebunden\" werden. @@ -86,4 +88,7 @@ Siehe [Part Formelement](Part_Feature/de.md). {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubShapeBinder/de diff --git a/wiki/translations/de/PartDesign_SubtractiveBox.md b/wiki/translations/de/PartDesign_SubtractiveBox.md index 192b84cab6..4c1beb68d8 100644 --- a/wiki/translations/de/PartDesign_SubtractiveBox.md +++ b/wiki/translations/de/PartDesign_SubtractiveBox.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Erzeuge einen abzuziehenden Grundkörper](PartDesign_CompPrimitiveSubtractive/de.md) --- +# PartDesign SubtractiveBox/de + ## Beschreibung Fügt einen abzuziehenden Quader in den aktiven Körper (Body) ein. Die Form wird von dem existierenden Volumenkörper abgezogen. @@ -57,4 +59,7 @@ Der Quader kann auf zwei verschieden Wege bearbeitet werden: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveBox/de diff --git a/wiki/translations/de/PartDesign_SubtractiveCone.md b/wiki/translations/de/PartDesign_SubtractiveCone.md index 8252f9fcc6..d34ecba2e2 100644 --- a/wiki/translations/de/PartDesign_SubtractiveCone.md +++ b/wiki/translations/de/PartDesign_SubtractiveCone.md @@ -8,6 +8,8 @@ SeeAlso:[Erzeuge einen abzuziehenden Grundkörper](PartDesign_CompPrimitiveSubtractive/de.md) --- +# PartDesign SubtractiveCone/de + @@ -65,4 +67,7 @@ Der Kegel kann auf zwei verschiedene Wege bearbeitet werden: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCone/de diff --git a/wiki/translations/de/PartDesign_SubtractiveCylinder.md b/wiki/translations/de/PartDesign_SubtractiveCylinder.md index e1b4e87605..ea8c28b6c9 100644 --- a/wiki/translations/de/PartDesign_SubtractiveCylinder.md +++ b/wiki/translations/de/PartDesign_SubtractiveCylinder.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign CompSubtraktiverGrundkörper](PartDesign_CompPrimitiveSubtractive/de.md) --- +# PartDesign SubtractiveCylinder/de + @@ -65,4 +67,7 @@ Der Zylinder kann auf zwei verschieden Wege bearbeitet werden: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCylinder/de diff --git a/wiki/translations/de/PartDesign_SubtractiveEllipsoid.md b/wiki/translations/de/PartDesign_SubtractiveEllipsoid.md index 2ec25c926f..802a8a1e36 100644 --- a/wiki/translations/de/PartDesign_SubtractiveEllipsoid.md +++ b/wiki/translations/de/PartDesign_SubtractiveEllipsoid.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveEllipsoid/de --- - GuiCommand:/de Name:PartDesign SubtractiveEllipsoid @@ -67,4 +68,7 @@ Das Ellipsoid kann auf zwei verschieden Wege bearbeitet werden: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveEllipsoid/de diff --git a/wiki/translations/de/PartDesign_SubtractiveHelix.md b/wiki/translations/de/PartDesign_SubtractiveHelix.md index cb0cb167c3..9bcdf92a8f 100644 --- a/wiki/translations/de/PartDesign_SubtractiveHelix.md +++ b/wiki/translations/de/PartDesign_SubtractiveHelix.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Additive Helix](PartDesign_AdditiveHelix/de.md) --- +# PartDesign SubtractiveHelix/de + ## Beschreibung Das Werkzeug **Subtractive helix** erstellt einen Körper,der durch Führen einer Skizze oder eines 2D-Objekts entlang eines Helix-Pfades Material entfernt. @@ -124,4 +126,7 @@ Eine subtraktive Helix, die sich nicht selbst überschneidet ist sichtbar, wenn {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveHelix/de diff --git a/wiki/translations/de/PartDesign_SubtractiveLoft.md b/wiki/translations/de/PartDesign_SubtractiveLoft.md index b745e2ac23..530281d394 100644 --- a/wiki/translations/de/PartDesign_SubtractiveLoft.md +++ b/wiki/translations/de/PartDesign_SubtractiveLoft.md @@ -8,6 +8,8 @@ SeeAlso:[Additive Ausformung](PartDesign_AdditiveLoft/de.md), [Abziehbares Rohr](PartDesign_SubtractivePipe/de.md) --- +# PartDesign SubtractiveLoft/de + @@ -81,4 +83,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveLoft/de diff --git a/wiki/translations/de/PartDesign_SubtractivePipe.md b/wiki/translations/de/PartDesign_SubtractivePipe.md index 2ddcd3d414..2ca7c9dfbe 100644 --- a/wiki/translations/de/PartDesign_SubtractivePipe.md +++ b/wiki/translations/de/PartDesign_SubtractivePipe.md @@ -8,6 +8,8 @@ SeeAlso:[Additives Rohr](PartDesign_AdditivePipe/de.md), [Subtraktive Ausformung](PartDesign_SubtractiveLoft/de.md) --- +# PartDesign SubtractivePipe/de + @@ -96,4 +98,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePipe/de diff --git a/wiki/translations/de/PartDesign_SubtractivePrism.md b/wiki/translations/de/PartDesign_SubtractivePrism.md index d0804f91e6..5d508f93e5 100644 --- a/wiki/translations/de/PartDesign_SubtractivePrism.md +++ b/wiki/translations/de/PartDesign_SubtractivePrism.md @@ -1,3 +1,4 @@ +# PartDesign SubtractivePrism/de --- - GuiCommand:/de| Name=PartDesign SubtractivePrism| @@ -64,4 +65,7 @@ Das Prisma kann auf zwei verschieden Wege bearbeitet werden: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePrism/de diff --git a/wiki/translations/de/PartDesign_SubtractiveSphere.md b/wiki/translations/de/PartDesign_SubtractiveSphere.md index 1b60974d08..fa9038a09d 100644 --- a/wiki/translations/de/PartDesign_SubtractiveSphere.md +++ b/wiki/translations/de/PartDesign_SubtractiveSphere.md @@ -8,6 +8,8 @@ SeeAlso:[Erzeuge einen abzuziehenden Grundkörper](PartDesign_CompPrimitiveSubtractive/de.md) --- +# PartDesign SubtractiveSphere/de + ## Beschreibung Fügt eine abzuziehende Kugel in den aktiven Körper (Body) ein. Die Form wird von dem existierenden Volumenkörper abgezogen. @@ -60,4 +62,7 @@ Die Kugel kann auf zwei verschieden Wege bearbeitet werden: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveSphere/de diff --git a/wiki/translations/de/PartDesign_SubtractiveTorus.md b/wiki/translations/de/PartDesign_SubtractiveTorus.md index 006847f679..1fcef0bf7b 100644 --- a/wiki/translations/de/PartDesign_SubtractiveTorus.md +++ b/wiki/translations/de/PartDesign_SubtractiveTorus.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveTorus/de --- - GuiCommand:/de Name:PartDesign SubtractiveTorus @@ -61,4 +62,7 @@ Der Torus kann auf zwei verschieden Wege bearbeitet werden: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveTorus/de diff --git a/wiki/translations/de/PartDesign_SubtractiveWedge.md b/wiki/translations/de/PartDesign_SubtractiveWedge.md index 4f3e9d5013..7695816f8b 100644 --- a/wiki/translations/de/PartDesign_SubtractiveWedge.md +++ b/wiki/translations/de/PartDesign_SubtractiveWedge.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveWedge/de --- - GuiCommand:/de Name:PartDesign SubtractiveWedge @@ -60,4 +61,7 @@ Wedges can be used to create pyramids by setting **X2 min/max** and **Z2 min/max {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveWedge/de diff --git a/wiki/translations/de/PartDesign_Thickness.md b/wiki/translations/de/PartDesign_Thickness.md index 4164e81a76..280dd3c39d 100644 --- a/wiki/translations/de/PartDesign_Thickness.md +++ b/wiki/translations/de/PartDesign_Thickness.md @@ -8,6 +8,8 @@ SeeAlso:[Part Dicke](Part_Thickness/de.md) --- +# PartDesign Thickness/de + @@ -88,4 +90,7 @@ Resultat: ![](images/Brga-spessore.png ) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Thickness/de diff --git a/wiki/translations/de/PartDesign_WizardShaft.md b/wiki/translations/de/PartDesign_WizardShaft.md index c283d67879..42265c1504 100644 --- a/wiki/translations/de/PartDesign_WizardShaft.md +++ b/wiki/translations/de/PartDesign_WizardShaft.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/de.md) --- +# PartDesign WizardShaft/de + ## Beschreibung Dieses Werkzeug ermöglicht es dir, eine Welle aus einer Wertetabelle zu erstellen und Kräfte und Momente zu analysieren. Du kannst den Assistenten über das Menü Part Design starten **Part Design → Wellenauslegungs-Assistent...**. @@ -65,4 +67,7 @@ Um ein neues Wellensegment hinzuzufügen, klicken Sie mit der rechten Maustaste {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign WizardShaft/de diff --git a/wiki/translations/de/PartDesign_Workbench.md b/wiki/translations/de/PartDesign_Workbench.md index 111a09da39..cb46fb2cc0 100644 --- a/wiki/translations/de/PartDesign_Workbench.md +++ b/wiki/translations/de/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/de - - -PartDesign Arbeitsbereichsymbol +# PartDesign Arbeitsbereichsymbol PartDesign Workbench/de {{TOCright}} @@ -208,3 +205,6 @@ Einige zusätzliche Funktionen befinden sich im Menü Part Design: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/de diff --git a/wiki/translations/de/PartDesign_project.md b/wiki/translations/de/PartDesign_project.md index 06376f1f4d..6a0ba89085 100644 --- a/wiki/translations/de/PartDesign_project.md +++ b/wiki/translations/de/PartDesign_project.md @@ -1,7 +1,4 @@ # PartDesign project/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -243,3 +240,6 @@ Drehe eine Skizze entlang einer ihrer Achsen und um einen bestimmten Winkel. **E [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign project/de diff --git a/wiki/translations/de/PartDesign_tutorial.md b/wiki/translations/de/PartDesign_tutorial.md index 2ddce21407..985602982f 100644 --- a/wiki/translations/de/PartDesign_tutorial.md +++ b/wiki/translations/de/PartDesign_tutorial.md @@ -1,5 +1,5 @@ # PartDesign tutorial/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic= Skizzieren |Level= Anfänger |Time= 15 Minuten @@ -105,3 +105,6 @@ Nach Abschluss dieser Aufgabe solltest du das folgende Ergebnis haben. Wenn nicht, bearbeite den MehrfachUmwandlungs Vorgang erneut, indem du in der Baumansicht darauf doppelklickst. Überprüfe beide Muster Formelemente, um notwendige Modifikationen zu erkennen, wie z.B. die **Achse** und ob die **Richtung** umgekehrt werden muss. Wir sind jetzt mit dem grundlegenden Workflow für den [PartDesign Arbeitsbereich](PartDesign_Workbench/de.md) fertig. + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign tutorial/de diff --git a/wiki/translations/de/Part_API.md b/wiki/translations/de/Part_API.md index 458b4a1d51..b9cd861d8d 100644 --- a/wiki/translations/de/Part_API.md +++ b/wiki/translations/de/Part_API.md @@ -1,5 +1,5 @@ # Part API/de - **(November 2018) Diese Information kann unvollständig und veraltet sein. Für die letzte API siehe die (engl.) [https://www.freecadweb.org/api autogenerierte API-Dokumentation].** +**(November 2018) Diese Information kann unvollständig und veraltet sein. Für die letzte API siehe die (engl.) [https://www.freecadweb.org/api autogenerierte API-Dokumentation].** Das Part-Modul ist die direkte Verbindung zwischen FreeCAD und dem OpenCasCade-Kern. Es bietet im Wesentlichen \[TopoShape\_API/de\|TopoShapes\], welches der von OpenCasCade hauptsächlich verwendete Objekttyp ist. Das Part-Modul enthält außerdem verschiedene nützliche Funktionen zur Erzeugung und Behandlung von topoShapes. Beispiel: ```python @@ -93,3 +93,6 @@ Part.show(mycube) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part API/de diff --git a/wiki/translations/de/Part_Attachment.md b/wiki/translations/de/Part_Attachment.md index a8deba159a..6c9cabf968 100644 --- a/wiki/translations/de/Part_Attachment.md +++ b/wiki/translations/de/Part_Attachment.md @@ -1,2 +1,5 @@ # Part Attachment/de 1. REDIRECT [Part\_EditAttachment/de](Part_EditAttachment/de.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Attachment/de diff --git a/wiki/translations/de/Part_Boolean.md b/wiki/translations/de/Part_Boolean.md index cf7c96f0aa..7e90fe5667 100644 --- a/wiki/translations/de/Part_Boolean.md +++ b/wiki/translations/de/Part_Boolean.md @@ -7,6 +7,8 @@ SeeAlso:[Part Schneiden](Part_Cut/de.md), [Part Verschmelzen](Part_Fuse/de.md), [Part Schnittmenge](Part_Common/de.md), und [Part Abschnitt](Part_Section/de.md) --- +# Part Boolean/de + ## Beschreibung @@ -63,8 +65,5 @@ In Fällen von Koplanarität können, selbst wenn die erste boolesche Operation *Links: Formen, die eine gemeinsame Fläche haben, eine boolesche Vereinigung kann zu falschen Ergebnissen führen. Rechts: Formen, die sich deutlich überschneiden, wird die boolesche Vereinigung in den meisten Fällen erfolgreich sein.* - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Boolean/de diff --git a/wiki/translations/de/Part_BooleanFragments.md b/wiki/translations/de/Part_BooleanFragments.md index 674d08d801..178ba4575c 100644 --- a/wiki/translations/de/Part_BooleanFragments.md +++ b/wiki/translations/de/Part_BooleanFragments.md @@ -7,6 +7,8 @@ SeeAlso:[Part Scheibe](Part_Slice/de.md), [Part XOR](Part_XOR/de.md), [Part Fügefunktionen](Part_CompJoin_Features/de.md), [Part Boolesche](Part_Boolean/de.md) --- +# Part BooleanFragments/de + ## Beschreibung Werkzeug zum Berechnen aller Fragmente, die sich aus der Anwendung boolescher Operationen zwischen Eingabeformen ergeben können. So werden beispielsweise für zwei sich schneidende Kugeln drei nicht überlappende, aber berührende Festkörper erzeugt. @@ -87,8 +89,5 @@ Das Werkzeug selbst ist in Python implementiert, siehe /Mod/Part/BOPTools/SplitF Das Werkzeug wurde in FreeCAD v0.17.8053 eingeführt. FreeCAD muss mit OCC 6.9.0 oder höher kompiliert werden, da das Werkzeug sonst nicht verfügbar ist. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part BooleanFragments/de diff --git a/wiki/translations/de/Part_Box.md b/wiki/translations/de/Part_Box.md index 4d55262d9e..33620288aa 100644 --- a/wiki/translations/de/Part_Box.md +++ b/wiki/translations/de/Part_Box.md @@ -6,6 +6,8 @@ SeeAlso:[Part Grundkörper](Part_Primitives/de.md) --- +# Part Box/de + ## Beschreibung Der Würfel-Befehl aus dem [Part-Arbeitsbereich](Part_Workbench/de.md) fügt einen parametrischen [Quader](https://de.wikipedia.org/wiki/Quader)förmigen geometrischen Grundkörper in das aktive Dokument ein. Als Standardvorgabe wird der Würfel-Befehl einen 10x10x10mm-Würfel am Ursprung mit der Bezeichnung \"Cube\" einfügen. Diese Parameter können nach dem Hinzufügen verändert werden. @@ -65,8 +67,5 @@ Du kannst die Position wählen mit: FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6, 3), FreeCAD.Rotation(30, 45, 10)) ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Box/de diff --git a/wiki/translations/de/Part_BoxSelection.md b/wiki/translations/de/Part_BoxSelection.md index 9893584193..11e55ad0d5 100644 --- a/wiki/translations/de/Part_BoxSelection.md +++ b/wiki/translations/de/Part_BoxSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std BoxSelection](Std_BoxSelection/de.md), [Std BoxElementSelection](Std_BoxElementSelection/de.md), [Std SelectAll](Std_SelectAll/de.md) --- +# Part BoxSelection/de + ## Beschreibung Das ** [Part RechteckAuswahl](Part_BoxSelection/de.md)** Werkzeug ermöglicht es dir, die Flächen der Objekte auf dem Bildschirm auszuwählen, die von der rechteckigen Auswahl berührt werden. @@ -26,8 +28,5 @@ Das ** [Part RechteckAuswahl] ## Skripten - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part BoxSelection/de diff --git a/wiki/translations/de/Part_Builder.md b/wiki/translations/de/Part_Builder.md index f6e58b4808..1116cc46fb 100644 --- a/wiki/translations/de/Part_Builder.md +++ b/wiki/translations/de/Part_Builder.md @@ -7,6 +7,8 @@ SeeAlso:[Part Grundkörper](Part_Primitives/de.md) --- +# Part Builder/de + ## Beschreibung Ein Werkzeug zur Erstellung von komplexeren Formen aus verschiedenen parametrischen geometrischen Grundkörpern. @@ -70,8 +72,5 @@ Ein möglicher Arbeitsablauf könnte sein: - Erzeuge eine \"Hülle aus Flächen\" - Erzeuge einen \"Festkörper aus Hülle\" - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Builder/de diff --git a/wiki/translations/de/Part_Chamfer.md b/wiki/translations/de/Part_Chamfer.md index 49e619fdc9..9837c1a91d 100644 --- a/wiki/translations/de/Part_Chamfer.md +++ b/wiki/translations/de/Part_Chamfer.md @@ -7,6 +7,8 @@ SeeAlso:[Part Verrundung](Part_Fillet/de.md) --- +# Part Chamfer/de + ## Beschreibung Anfasen der gewählten Kante(n) eines Objekts. Ein Dialog erlaubt die Auswahl, welche Kante(n) betroffen sind, sowie die Anpassung verschiedener Anfasungsparameter. @@ -166,5 +168,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Chamfer/de diff --git a/wiki/translations/de/Part_CheckGeometry.md b/wiki/translations/de/Part_CheckGeometry.md index 1129521d70..837b693233 100644 --- a/wiki/translations/de/Part_CheckGeometry.md +++ b/wiki/translations/de/Part_CheckGeometry.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/de.md) --- +# Part CheckGeometry/de + ## Beschreibung @@ -70,5 +72,5 @@ If ticked, any errors found are also logged in the [report view](Report_view.md) - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CheckGeometry/de diff --git a/wiki/translations/de/Part_Circle.md b/wiki/translations/de/Part_Circle.md index ea38bd98b1..4b9dc9c50d 100644 --- a/wiki/translations/de/Part_Circle.md +++ b/wiki/translations/de/Part_Circle.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part Circle/de + ## Beschreibung Dieser Befehl erzeugt eine zirkulär gebogene Kante. Mit den Standardvorgaben wird diese Kante geschlossen und dadurch ein Kreis sein. Wenn die Eigenschaften Angle 0 oder Angle 1 andere Werte als die Vorgaben (0 und 360) haben, ist die Kante eine offene Kurve, also ein Kreisbogen. @@ -30,8 +32,5 @@ Ein Kreis geometrischer Grundkörper ist über den Grundkörper erstellen Dialog - **Winkel 1**: Endwinkel der gebogenen Kante (in Grad, gegen Uhrzeigersinn), Standardwert ist 360 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Circle/de diff --git a/wiki/translations/de/Part_Common.md b/wiki/translations/de/Part_Common.md index 808f099414..1670220606 100644 --- a/wiki/translations/de/Part_Common.md +++ b/wiki/translations/de/Part_Common.md @@ -7,6 +7,8 @@ SeeAlso:[Part Bool'sche Operationen](Part_Boolean/de.md), [Part Schneiden](Part_Cut/de.md), [Part Verschmelzung](Part_Fuse/de.md) --- +# Part Common/de + ## Beschreibung Extrahiert den gemeinsamen Teil (Schnittmenge) zwischen ausgewählten Teilobjekten. Diese Operation ist voll parametrisch und die Komponenten können modifiziert und das Ergebnis neu berechnet werden. @@ -20,8 +22,5 @@ Extrahiert den gemeinsamen Teil (Schnittmenge) zwischen ausgewählten Teilobjekt Eingabeobjekte müssen [OpenCascade ](OpenCascade/de.md) Formen sein. Beispiele: Dinge, die mit den Arbeitsbereichen Part, PartDesign, Skizzierer erstellt wurde. Keine Polygonnetze (es sei denn, diese wurden in Formen konvertiert) - für Polygonnetze gibt es gesonderte boolesche Werkzeuge im Netzkonstruktionsarbeitsbereich. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Common/de diff --git a/wiki/translations/de/Part_CompCompoundTools.md b/wiki/translations/de/Part_CompCompoundTools.md index 872080a9c6..b809e6d4cf 100644 --- a/wiki/translations/de/Part_CompCompoundTools.md +++ b/wiki/translations/de/Part_CompCompoundTools.md @@ -6,6 +6,8 @@ SeeAlso: --- +# Part CompCompoundTools/de + @@ -28,5 +30,5 @@ Ein Satz verschiedener Verbundwerkzeuge. - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompCompoundTools/de diff --git a/wiki/translations/de/Part_CompJoinFeatures.md b/wiki/translations/de/Part_CompJoinFeatures.md index d6309af849..fd1a7a894d 100644 --- a/wiki/translations/de/Part_CompJoinFeatures.md +++ b/wiki/translations/de/Part_CompJoinFeatures.md @@ -6,6 +6,8 @@ SeeAlso:[Verbinden](Part_JoinConnect/de.md), [Einbetten](Part_JoinEmbed/de.md), [Ausschnitt](Part_JoinCutout/de/de.md), [Part Boolesche](Part_Booleans.md), [Part Dicke](Part_Thickness/de.md) --- +# Part CompJoinFeatures/de + @@ -33,5 +35,5 @@ Dieser Befehl ist eine Auswahlwerkzeugleistenschaltfläche, die alle Fügewerkze - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompJoinFeatures/de diff --git a/wiki/translations/de/Part_CompOffsetTools.md b/wiki/translations/de/Part_CompOffsetTools.md index de2feda9eb..aff0ba729d 100644 --- a/wiki/translations/de/Part_CompOffsetTools.md +++ b/wiki/translations/de/Part_CompOffsetTools.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part CompOffsetTools/de + @@ -28,5 +30,5 @@ Ein Satz Versatzwerkzeuge - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompOffsetTools/de diff --git a/wiki/translations/de/Part_CompSplittingTools.md b/wiki/translations/de/Part_CompSplittingTools.md index a7d686a7bc..6e43c803af 100644 --- a/wiki/translations/de/Part_CompSplittingTools.md +++ b/wiki/translations/de/Part_CompSplittingTools.md @@ -6,6 +6,8 @@ SeeAlso: --- +# Part CompSplittingTools/de + @@ -35,5 +37,5 @@ Eine Sammlung von Aufteilungswerkzeugen. - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompSplittingTools/de diff --git a/wiki/translations/de/Part_Compound.md b/wiki/translations/de/Part_Compound.md index 0272a492e0..cb1405fad8 100644 --- a/wiki/translations/de/Part_Compound.md +++ b/wiki/translations/de/Part_Compound.md @@ -8,6 +8,8 @@ SeeAlso:[Part Verschmelzung](Part_Fuse/de.md), [Part VerbundFilter](Part_CompoundFilter/de.md), [Part SprengeVerbund](Part_ExplodeCompound/de.md) --- +# Part Compound/de + @@ -40,5 +42,5 @@ Um diese Prüfung einzuschalten, gehe zu {{MenuCommand/de|Werkzeuge → Paramete - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Compound/de diff --git a/wiki/translations/de/Part_CompoundFilter.md b/wiki/translations/de/Part_CompoundFilter.md index 42a43ff4f3..5088b3292d 100644 --- a/wiki/translations/de/Part_CompoundFilter.md +++ b/wiki/translations/de/Part_CompoundFilter.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Part CompoundFilter/de + @@ -81,8 +83,5 @@ Wenn im Ergebnis nur ein Kind vorhanden ist, ist die Ausgabe das Kind. Wenn es m - {{PropertyData/de|Elemente}}: Liste oder Bereich von Elementen, die ausgewählt werden sollen, wenn Filtertyp \"bestimmte Elemente\" ist. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompoundFilter/de diff --git a/wiki/translations/de/Part_Cone.md b/wiki/translations/de/Part_Cone.md index 309cfabb07..3f5e27dd2e 100644 --- a/wiki/translations/de/Part_Cone.md +++ b/wiki/translations/de/Part_Cone.md @@ -7,6 +7,8 @@ SeeAlso:[Part Grundkörper](Part_Primitives/de.md) --- +# Part Cone/de + ## Beschreibung Ein parametrischer abgeschnittener Part Kegelgrundkörper ist im Part Arbeitsbereich über die Part Werkzeugleiste, das Part Menü (Untermenü Grundkörper) und das Grundkörper erstellen Dialogfeld verfügbar. @@ -35,8 +37,5 @@ Die Kegeleigenschaften können später geändert werden, entweder im [Eigenschaf - **Winkel**: die Anzahl der Grad des Bogens oder der Kreise, die die obere und untere Fläche des Kegelstumpfes definieren. Der Standardwert 360 erzeugt kreisförmige Flächen, ein niedrigerer Wert erzeugt einen Teil eines Kegels, der durch obere und untere Flächen definiert ist, deren Kanten jeweils durch einen Bogen mit der Anzahl der Grad und zwei Radien definiert sind. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cone/de diff --git a/wiki/translations/de/Part_CreatePrimitives.md b/wiki/translations/de/Part_CreatePrimitives.md index 5dc5a4febe..e64090b65d 100644 --- a/wiki/translations/de/Part_CreatePrimitives.md +++ b/wiki/translations/de/Part_CreatePrimitives.md @@ -1,2 +1,5 @@ # Part CreatePrimitives/de 1. REDIRECT [Part\_Primitives/de](Part_Primitives/de.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CreatePrimitives/de diff --git a/wiki/translations/de/Part_CrossSections.md b/wiki/translations/de/Part_CrossSections.md index bfa66a8d82..de88464aae 100644 --- a/wiki/translations/de/Part_CrossSections.md +++ b/wiki/translations/de/Part_CrossSections.md @@ -7,6 +7,8 @@ SeeAlso:[Part Section](Part_Section/de.md) --- +# Part CrossSections/de + @@ -47,5 +49,5 @@ Das Dienstprogramm \"Querschnitte\" erstellt einen oder mehrere Querschnitte dur - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CrossSections/de diff --git a/wiki/translations/de/Part_Cut.md b/wiki/translations/de/Part_Cut.md index 730b3d691c..cd0fb9a7a5 100644 --- a/wiki/translations/de/Part_Cut.md +++ b/wiki/translations/de/Part_Cut.md @@ -7,6 +7,8 @@ SeeAlso:[Part Boolsche Operation](Part_Boolean/de.md), [Part Verschmelzung](Part_Fuse/de.md), [Part Schnittmenge](Part_Common/de.md) --- +# Part Cut/de + ## Beschreibung Schneidet (subtrahiert) ausgewählte Teileobjekte, wobei das letzte vom ersten subtrahiert wird. Diese Operation ist voll parametrisch und die Komponenten können modifiziert und das Ergebnis neu berechnet werden. @@ -26,8 +28,5 @@ Schneidet (subtrahiert) ausgewählte Teileobjekte, wobei das letzte vom ersten s Eingabeobjekte müssen [OpenCascade ](OpenCascade/de.md) Formen sein. Beispiele: Sachen, die mit den Arbeitsbereichen Part, PartDesign, Skizzierer erstellt wurden. Keine Polygonnetze (es sei denn, diese wurden in Formen umgewandelt) - für Polygonnetze gibt es spezielle boolesche Werkzeuge im Arbeitsbereich Netzkonstruktion. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cut/de diff --git a/wiki/translations/de/Part_Cylinder.md b/wiki/translations/de/Part_Cylinder.md index f237b3e917..32d5918ee6 100644 --- a/wiki/translations/de/Part_Cylinder.md +++ b/wiki/translations/de/Part_Cylinder.md @@ -6,6 +6,8 @@ SeeAlso:[Part Grundkörper](Part_Primitives/de.md) --- +# Part Cylinder/de + ## Beschreibung Erstellt einen einfachen parametrischen Zylinder mit den Parametern Position, Winkel, Radius und Höhe. @@ -45,10 +47,7 @@ The cylinder properties can later be edited, either in the [Property editor](Pro - **First Angle**: Angle in first direction. (v0.20) -- **Second Angle**: Angle in second direction. (v0.20) - - +- **Second Angle**: Angle in second direction. (v0.20) - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cylinder/de diff --git a/wiki/translations/de/Part_Defeaturing.md b/wiki/translations/de/Part_Defeaturing.md index f215c7fec1..d648da31ba 100644 --- a/wiki/translations/de/Part_Defeaturing.md +++ b/wiki/translations/de/Part_Defeaturing.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Part Defeaturing/de + @@ -59,5 +61,5 @@ Um verfügbar zu sein, muss FreeCAD auf Open Cascade 7.3.0 oder höher basieren. - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Defeaturing/de diff --git a/wiki/translations/de/Part_EditAttachment.md b/wiki/translations/de/Part_EditAttachment.md index 5694305776..d8970c76d7 100644 --- a/wiki/translations/de/Part_EditAttachment.md +++ b/wiki/translations/de/Part_EditAttachment.md @@ -9,6 +9,8 @@ [Basic Attachment Tutorial](Basic_Attachment_Tutorial/de.md) [Part Teil2DObject](Part_Part2DObject/de.md) --- +# Part EditAttachment/de + @@ -314,4 +316,7 @@ Attachment Versatz wird verwendet, um einen linearen oder rotatorischen Versatz {{Part_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part EditAttachment/de diff --git a/wiki/translations/de/Part_ElementCopy.md b/wiki/translations/de/Part_ElementCopy.md index d30ab5a0bf..583504d474 100644 --- a/wiki/translations/de/Part_ElementCopy.md +++ b/wiki/translations/de/Part_ElementCopy.md @@ -7,6 +7,8 @@ SeeAlso:[EinfacheKopie](Part_SimpleCopy/de.md), [TransformierteKopie](Part_TransformedCopy/de.md), [FormVerfeinern](Part_RefineShape/de.md) --- +# Part ElementCopy/de + @@ -61,8 +63,5 @@ Die Kopie hat einfache Ansichtseigenschaften wie jede andere [Teilfunktion](Part - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ElementCopy/de diff --git a/wiki/translations/de/Part_Ellipse.md b/wiki/translations/de/Part_Ellipse.md index fbe62c070d..e10566d5ef 100644 --- a/wiki/translations/de/Part_Ellipse.md +++ b/wiki/translations/de/Part_Ellipse.md @@ -6,6 +6,8 @@ SeeAlso:[Part Grundkörper](Part_Primitives/de.md) --- +# Part Ellipse/de + ## Beschreibung Dieser Befehl erzeugt eine elliptisch gekrümmte Kante. Mit den Standardwerten wird die elliptisch gekrümmte Kante geschlossen sein und somit eine Ellipse darstellen. Wenn die Eigenschaften Winkel 1 oder Winkel 2 gegenüber ihren Standardwerten (0 und 360) geändert werden, wird die Kante eine offene Kurve sein. @@ -21,8 +23,5 @@ Der Grundkörper erstellen Dialog kann über das [Grundkörper](Part_Primitives/ - **Winkel 1:** Start der Kante der Ellipse oder elliptisch gekrümmten Kante, (Grad entgegen dem Uhrzeigersinn), der Vorgabewert ist 0 - **Winkel 2:** Ende der Kante der Ellipse oder elliptisch gekrümmten Kante, (Grad entgegen dem Uhrzeigersinn), der Vorgabewert ist 360 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipse/de diff --git a/wiki/translations/de/Part_Ellipsoid.md b/wiki/translations/de/Part_Ellipsoid.md index 12a66ebdcc..ee0e60734b 100644 --- a/wiki/translations/de/Part_Ellipsoid.md +++ b/wiki/translations/de/Part_Ellipsoid.md @@ -6,6 +6,8 @@ SeeAlso:[Part Grundkörper Erstellen](Part_Primitives/de.md) --- +# Part Ellipsoid/de + ## Beschreibung Der [Part Ellipsoid](Part_Ellipsoid/de.md) Befehl erzeugt einen parametrischen Ellipsoid Festkörper. @@ -41,8 +43,5 @@ Ein parametrischer Ellipsoid Festkörper ist über den Grundkörper erstellen Di ![](images/Part_Ellipsoid_screenshot.jpg ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipsoid/de diff --git a/wiki/translations/de/Part_ExplodeCompound.md b/wiki/translations/de/Part_ExplodeCompound.md index 9a9fe933a5..b92d962f69 100644 --- a/wiki/translations/de/Part_ExplodeCompound.md +++ b/wiki/translations/de/Part_ExplodeCompound.md @@ -8,6 +8,8 @@ SeeAlso:[Part Verbund](Part_Compound/de.md), [Entwurf Herabstufen](Draft_Downgrade/de.md) --- +# Part ExplodeCompound/de + @@ -43,5 +45,5 @@ Das Werkzeug wird auch nicht verbundene Formen in ihre untergeordneten Bestandte - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ExplodeCompound/de diff --git a/wiki/translations/de/Part_Export.md b/wiki/translations/de/Part_Export.md index 0d2921df72..b5c7bd9cd7 100644 --- a/wiki/translations/de/Part_Export.md +++ b/wiki/translations/de/Part_Export.md @@ -6,6 +6,8 @@ SeeAlso:[Part Import](Part_Import/de.md), [Std Export](Std_Export/de.md), [Import Export](Import_Export/de.md) --- +# Part Export/de + ## Beschreibung Das ** [Part Export](Part_Export/de.md)** Werkzeug öffnet ein Dialogfeld, das dir erlaubt Objekte im Dokument in die folgenden CAD Dateiformate zu exportieren: [IGES](http://en.wikipedia.org/wiki/IGES), [STEP](http://en.wikipedia.org/wiki/Step_file) und [BREP](http://en.wikipedia.org/wiki/BREP). @@ -17,14 +19,5 @@ Das ** [Part Export](Part_Export/de 3. Gehe zum Menü {{MenuCommand/de|Part → CAD exportieren}}. 4. Wähle das Dateiformat und den Ausgabepfad. - - - - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Export/de diff --git a/wiki/translations/de/Part_Extrude.md b/wiki/translations/de/Part_Extrude.md index c9146105fb..43ad1d0c74 100644 --- a/wiki/translations/de/Part_Extrude.md +++ b/wiki/translations/de/Part_Extrude.md @@ -6,6 +6,8 @@ SeeAlso:[Trimex](Draft_Trimex/de.md) --- +# Part Extrude/de + @@ -170,5 +172,5 @@ Part Extrudieren kann jedes Objekt mit Part Geometrie (OCC Form) extrudieren, au - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Extrude/de diff --git a/wiki/translations/de/Part_FaceColors.md b/wiki/translations/de/Part_FaceColors.md index 8ae612d496..2f9275fc98 100644 --- a/wiki/translations/de/Part_FaceColors.md +++ b/wiki/translations/de/Part_FaceColors.md @@ -8,6 +8,8 @@ SeeAlso:[Std Erscheinungsbild](Std_SetAppearance/de.md) --- +# Part FaceColors/de + @@ -52,3 +54,6 @@ Um alle Flächenfarben zurückzusetzen: [Category:User Documentation](Category:User_Documentation.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part FaceColors/de diff --git a/wiki/translations/de/Part_Feature.md b/wiki/translations/de/Part_Feature.md index e33fa18efc..b7469862c4 100644 --- a/wiki/translations/de/Part_Feature.md +++ b/wiki/translations/de/Part_Feature.md @@ -1,6 +1,4 @@ # Part Feature/de - - ## Einführung @@ -208,4 +206,7 @@ If desired, the `Label` attribute can be changed to a more meaningful text. - By default the `Label` is unique, just like the `Name`. However, this behavior can be changed in the [preferences editor](Preferences_Editor.md), **Edit → Preferences → General → Document → Allow duplicate object labels in one document**. This means that in general the `Label` may be repeated in the same document; when testing for a specific element the user should rely on the `Name` rather than on the `Label`. - {{Document objects navi}} + {{Document objects navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Feature/de diff --git a/wiki/translations/de/Part_Fillet.md b/wiki/translations/de/Part_Fillet.md index 12e80eef8b..516608cb28 100644 --- a/wiki/translations/de/Part_Fillet.md +++ b/wiki/translations/de/Part_Fillet.md @@ -7,6 +7,8 @@ SeeAlso:[Part Fase](Part_Chamfer/de.md) --- +# Part Fillet/de + ## Beschreibung Dieses Werkzeug erzeugt eine Verrundung auf den ausgewählten Kanten eines Objekts. Die Auswahl des Objekts und der Kanten, die verrundet werden sollen, erfolgt in einem Dialog. @@ -39,8 +41,5 @@ Das Verrundungswerkzeug schlägt manchmal fehl, wenn versucht wird, komplexe Obj Beachte auch, dass die Funktion Verrundung des Teils von dem Problem topologische Benennung betroffen ist, wenn die Änderung an einem Modellierungsschritt vorgenommen wird, der früher in der Prozesskette liegt und die Anzahl der Facetten oder Eckpunkte beeinflusst. Dies kann zu unvorhersehbaren Ergebnissen führen. Bis dies gelöst ist (möglicherweise mit V0.19), wird empfohlen, die Operationen Fase und [Verrundung](Part_Fillet/de.md) auf den letzten Schritten in der Kette anzuwenden. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fillet/de diff --git a/wiki/translations/de/Part_Fuse.md b/wiki/translations/de/Part_Fuse.md index 907d32e899..4856a06168 100644 --- a/wiki/translations/de/Part_Fuse.md +++ b/wiki/translations/de/Part_Fuse.md @@ -7,6 +7,8 @@ SeeAlso:[Part Boolsche Operationen](Part_Boolean/de.md), [Part Schneiden](Part_Cut/de.md), [Part Gemeinsam](Part_Common/de.md), --- +# Part Fuse/de + ## Beschreibung Das **![](images/)_[Part_verschmelzen](Part_Fuse/de.md)** Werkzeug verschmilzt (vereint) ausgewählte Part Objekte zu einem. Diese Operation ist voll parametrisch und die Komponenten können geändert und das Ergebnis erneut berechnet werden. @@ -38,8 +40,5 @@ Elemente können der Verschmelzung hinzugefügt und entfernt werden, indem sie m Nachdem dieser Vorgang abgeschlossen ist, kann es notwendig sein, die Form mit [FormVerfeinern](Part_RefineShape/de.md) zu säubern. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fuse/de diff --git a/wiki/translations/de/Part_Helix.md b/wiki/translations/de/Part_Helix.md index ebea94d30d..b36bbc80f1 100644 --- a/wiki/translations/de/Part_Helix.md +++ b/wiki/translations/de/Part_Helix.md @@ -1,3 +1,4 @@ +# Part Helix/de --- - GuiCommand:/de Name:Part Helix Name/de:Part Helix MenuLocation:Formteil → [Workbenches:[[Part_Workbench/de|Part](Part_CreatePrimitives/de___Grundkörper_erstellen...]] → Helix.md), [OpenSCAD](OpenSCAD_Workbench/de.md)--- @@ -136,8 +137,5 @@ Sobald die Helix erstellt ist, lassen sich die Parameter ändern. | | | +----------------------------------------------------------+-------------------------------------------------------------------------------------------+ - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Helix/de diff --git a/wiki/translations/de/Part_Import.md b/wiki/translations/de/Part_Import.md index dfef9325fc..cf2e05ba0c 100644 --- a/wiki/translations/de/Part_Import.md +++ b/wiki/translations/de/Part_Import.md @@ -7,6 +7,8 @@ SeeAlso:[Part Export](Part_Export/de.md), [Std Import](Std_Import/de.md), [Import Export](Import_Export/de.md) --- +# Part Import/de + ## Beschreibung Das ** [Part Import](Part_Import/de.md)** Werkzeug öffnet einen Dialog, mit dem du die folgenden CAD Dateiformate: [IGES](http://en.wikipedia.org/wiki/IGES), [STEP](http://en.wikipedia.org/wiki/Step_file) und [BREP](http://en.wikipedia.org/wiki/BREP) in das aktuelle Dokument importieren kannst. @@ -17,8 +19,5 @@ Das ** [Part Import](Part_Import/de 2. Gehe in das Menü **Part → CAD importieren**. 3. Wähle die zu importierende Datei - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Import/de diff --git a/wiki/translations/de/Part_JoinConnect.md b/wiki/translations/de/Part_JoinConnect.md index e45623a7af..0446360e6a 100644 --- a/wiki/translations/de/Part_JoinConnect.md +++ b/wiki/translations/de/Part_JoinConnect.md @@ -7,6 +7,8 @@ SeeAlso:[Part FügeEinbetten](Part_JoinEmbed/de.md), [Part FügeAusschnitt](Part_JoinCutout.md), [Part Bool'sche Operationen](Part_Boolean/de.md), [Part Dicke](Part_Thickness/de.md) --- +# Part JoinConnect/de + ## Beschreibung Das Verbinden Werkzeug verbindet die Innenbereiche von zwei Hohlobjekten (z.B. Rohre). Es kann auch Schalen und Drähte verbinden. @@ -89,8 +91,5 @@ Das Werkzeug wurde in FreeCAD v0.16.5069 eingeführt. Das Werkzeug wurde neu implementiert, um über generalFuse in FreeCAD v0.17.8053 zu arbeiten. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinConnect/de diff --git a/wiki/translations/de/Part_JoinCutout.md b/wiki/translations/de/Part_JoinCutout.md index 348c1eda88..fe782f5c4b 100644 --- a/wiki/translations/de/Part_JoinCutout.md +++ b/wiki/translations/de/Part_JoinCutout.md @@ -7,6 +7,8 @@ SeeAlso:[Part Objekt verbinden](Part_JoinConnect/de.md), [Part Objekt einbinden](Part_JoinEmbed/de.md), [Part Bool'sche Operationen](Part_Boolean/de.md), [Part Dicke](Part_Thickness/de.md) --- +# Part JoinCutout/de + @@ -95,5 +97,5 @@ Das Werkzeug selbst ist in Python implementiert, siehe {{FileName|/Mod/Part/Join - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinCutout/de diff --git a/wiki/translations/de/Part_JoinEmbed.md b/wiki/translations/de/Part_JoinEmbed.md index 7943f40909..03cda08978 100644 --- a/wiki/translations/de/Part_JoinEmbed.md +++ b/wiki/translations/de/Part_JoinEmbed.md @@ -7,6 +7,8 @@ SeeAlso:[Part VerbindeEinbetten](Part_JoinEmbed/de.md), [Part FügeAusschnitt](Part_JoinCutout.md), [Part Bool'sche Operationen](Part_Boolean/de.md), [Part Dicke](Part_Thickness/de.md) --- +# Part JoinEmbed/de + @@ -124,5 +126,5 @@ Das Werkzeug selbst ist in Python implementiert, siehe {{FileName|/Mod/Part/Join - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinEmbed/de diff --git a/wiki/translations/de/Part_Line.md b/wiki/translations/de/Part_Line.md index 60dd53ba0c..020d96e3ce 100644 --- a/wiki/translations/de/Part_Line.md +++ b/wiki/translations/de/Part_Line.md @@ -7,6 +7,8 @@ SeeAlso:[Part Grundelemente](Part_Primitives/de.md) --- +# Part Line/de + ## Beschreibung ## Anwendung @@ -84,11 +86,5 @@ | | : | +--------------------------------------------------------+-------------------------------------------------+ - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Line/de diff --git a/wiki/translations/de/Part_Loft.md b/wiki/translations/de/Part_Loft.md index b47cf83cd8..79c39bfa71 100644 --- a/wiki/translations/de/Part_Loft.md +++ b/wiki/translations/de/Part_Loft.md @@ -7,6 +7,8 @@ SeeAlso:[Part Austragung](Part_Sweep/de.md) --- +# Part Loft/de + @@ -162,5 +164,5 @@ Die Reihenfolge der Abschnitte hängt von der Reihenfolge der Klicks in der List - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Loft/de diff --git a/wiki/translations/de/Part_Loft_Technical_Details.md b/wiki/translations/de/Part_Loft_Technical_Details.md index 1eb51d0bf3..c778b67c23 100644 --- a/wiki/translations/de/Part_Loft_Technical_Details.md +++ b/wiki/translations/de/Part_Loft_Technical_Details.md @@ -1,5 +1,5 @@ # Part Loft Technical Details/de - Diese Seite erklärt die Details, wie die [Ausformungsoberfläche](Part_Loft/de.md) des Werkzeugs erzeugt wird. Dies ist ebenfalls relevant für [Part Austragung](Part_Sweep.md), die entlang eines geraden Pfades erfolgen, auch wenn es Unterschiede gibt. +Diese Seite erklärt die Details, wie die [Ausformungsoberfläche](Part_Loft/de.md) des Werkzeugs erzeugt wird. Dies ist ebenfalls relevant für [Part Austragung](Part_Sweep.md), die entlang eines geraden Pfades erfolgen, auch wenn es Unterschiede gibt. Die angegebenen Informationen sind implementierungsspezifisch und können sich ändern. Der aktuelle Stand ist relevant für FreeCAD 0.15.4119, OCC Version: 6.7.0. @@ -73,3 +73,6 @@ Beachte, dass Ausformung eine \"Ruled\"-Eigenschaft hat. Wenn sie auf \"true\" g [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Loft Technical Details/de diff --git a/wiki/translations/de/Part_MakeCompound.md b/wiki/translations/de/Part_MakeCompound.md index a602ed2f2d..00b47f6d08 100644 --- a/wiki/translations/de/Part_MakeCompound.md +++ b/wiki/translations/de/Part_MakeCompound.md @@ -1,2 +1,5 @@ # Part MakeCompound/de 1. REDIRECT [Part Compound/de](Part_Compound/de.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeCompound/de diff --git a/wiki/translations/de/Part_MakeSolid.md b/wiki/translations/de/Part_MakeSolid.md index 84a59be3c4..8fc0277ff9 100644 --- a/wiki/translations/de/Part_MakeSolid.md +++ b/wiki/translations/de/Part_MakeSolid.md @@ -6,6 +6,8 @@ Workbenches:[Part Arbeitsbereich](Part_Workbench/de.md) --- +# Part MakeSolid/de + ## Beschreibung Dieser Befehl erstellt einen Festkörper aus einem Formobjekt. @@ -21,8 +23,5 @@ Dieser Befehl erstellt einen Festkörper aus einem Formobjekt. - Eine Analyse oder Validierung des Formobjekts findet nicht statt. - Es wird empfohlen, [Part Form verfeinern](Part_RefineShape/de.md) vor der Konvertierung in einen Festkörper zu verwenden. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeSolid/de diff --git a/wiki/translations/de/Part_Measure_Angular.md b/wiki/translations/de/Part_Measure_Angular.md index f7c86c0054..014241623e 100644 --- a/wiki/translations/de/Part_Measure_Angular.md +++ b/wiki/translations/de/Part_Measure_Angular.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/de.md) --- +# Part Measure Angular/de + ## Beschreibung Dieses Werkzeug misst den Winkel zwischen zwei geraden Kanten, zwei ebenen Flächen oder einer geraden Kante und einer ebenen Fläche und zeigt die Messung in der [3D-Ansicht](3D_view/de.md). @@ -21,11 +23,5 @@ Dieses Werkzeug misst den Winkel zwischen zwei geraden Kanten, zwei ebenen Fläc 3. Alternativ kann der Befehl ohne vorherige Auswahl gestartet werden. Dann öffnet sich ein Auswahldialog im [Aufgaben-Reiter](Task_panel/de.md). Ein Kontroll-Widget bietet ebenfalls Schaltflächen zum Zurücksetzen der Auswahl, zum Umschalten der Messungsanzeige in der [3D Ansicht](3D_view/de.md) und zum Löschen aller Messungen. 4. Messungen werden automatisch beim Schließen des Dokuments verworfen. - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Angular/de diff --git a/wiki/translations/de/Part_Measure_Clear_All.md b/wiki/translations/de/Part_Measure_Clear_All.md index 7aa350ae82..ec3dfdd2cd 100644 --- a/wiki/translations/de/Part_Measure_Clear_All.md +++ b/wiki/translations/de/Part_Measure_Clear_All.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/de.md) --- +# Part Measure Clear All/de + ## Beschreibung Dieses Werkzeug löscht alle Messungen in der 3D Ansicht. @@ -16,11 +18,5 @@ Dieses Werkzeug löscht alle Messungen in der 3D Ansicht. - Drücke die ** [Alles löschen](Part_Measure_Clear_All.md)**-Schaltfläche. - Verwende den **Messen → Alles löschen** - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Clear All/de diff --git a/wiki/translations/de/Part_Measure_Linear.md b/wiki/translations/de/Part_Measure_Linear.md index dfe94eb927..f9d735c8ae 100644 --- a/wiki/translations/de/Part_Measure_Linear.md +++ b/wiki/translations/de/Part_Measure_Linear.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/de.md) --- +# Part Measure Linear/de + ## Beschreibung Dieses Werkzeug misst den Abstand zwischen zwei topologischen Elementen (Eckpunkt, Kante, Fläche) und zeigt die Messung in der [3D Ansicht](3D_view/de.md). Der kürzeste Abstand zwischen den beiden Elementen wird in rot dargestellt und Delta-Messungen (Abstände parallel zu den Standard X-,Y-, Z-Achsen werden in grün angezeigt). @@ -21,8 +23,5 @@ Dieses Werkzeug misst den Abstand zwischen zwei topologischen Elementen (Eckpunk 4. Alternativ kann der Befehl ohne vorherige Auswahl gestartet werden. Dann öffnet sich ein Auswahldialog im [Aufgabenpaneel ](Task_panel/de.md). Ein Steuerungswidget bietet ebenfalls Schaltflächen zum Zurücksetzen der Auswahl, zum Umschalten der Messungen Anzeige in der [3D-Ansicht](3D_view/de.md) und zum Löschen aller Messungen. 5. Messungen werden automatisch beim Schließen des Dokuments verworfen. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Linear/de diff --git a/wiki/translations/de/Part_Measure_Menu.md b/wiki/translations/de/Part_Measure_Menu.md index 0ab8a9dde3..a46f80a913 100644 --- a/wiki/translations/de/Part_Measure_Menu.md +++ b/wiki/translations/de/Part_Measure_Menu.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part Measure Menu/de + @@ -48,3 +50,6 @@ [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Menu/de diff --git a/wiki/translations/de/Part_Measure_Refresh.md b/wiki/translations/de/Part_Measure_Refresh.md index 3f00ed7347..19977cd438 100644 --- a/wiki/translations/de/Part_Measure_Refresh.md +++ b/wiki/translations/de/Part_Measure_Refresh.md @@ -7,6 +7,8 @@ SeeAlso:[Messen Linear](Part_Measure_Linear/de.md), [Messen Winkel](Part_Measure_Angular/de.md) --- +# Part Measure Refresh/de + @@ -41,5 +43,5 @@ - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Refresh/de diff --git a/wiki/translations/de/Part_Measure_Toggle_3d.md b/wiki/translations/de/Part_Measure_Toggle_3d.md index ad54e9842c..d77f116b7b 100644 --- a/wiki/translations/de/Part_Measure_Toggle_3d.md +++ b/wiki/translations/de/Part_Measure_Toggle_3d.md @@ -7,6 +7,8 @@ SeeAlso:[Part Messen umschalten Delta](Part_Measure_Toggle_Delta/de.md) --- +# Part Measure Toggle 3d/de + @@ -45,5 +47,5 @@ Dieses Werkzeug schaltet die Sichtbarkeit von linearen (rot) und Winkel (blau) M - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle 3d/de diff --git a/wiki/translations/de/Part_Measure_Toggle_All.md b/wiki/translations/de/Part_Measure_Toggle_All.md index 7c8674c034..1a88369aba 100644 --- a/wiki/translations/de/Part_Measure_Toggle_All.md +++ b/wiki/translations/de/Part_Measure_Toggle_All.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/de.md) --- +# Part Measure Toggle All/de + @@ -42,8 +44,5 @@ Dieses Werkzeug schaltet die Sichtbarkeit aller Messungen in der [3D Ansicht](3D - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle All/de diff --git a/wiki/translations/de/Part_Measure_Toggle_Delta.md b/wiki/translations/de/Part_Measure_Toggle_Delta.md index 7a43b8d984..4c37a6fbbb 100644 --- a/wiki/translations/de/Part_Measure_Toggle_Delta.md +++ b/wiki/translations/de/Part_Measure_Toggle_Delta.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/de.md) --- +# Part Measure Toggle Delta/de + @@ -44,5 +46,5 @@ Dieses Werkzeug schaltet die Sichtbarkeit von Delta (grün) Messungen um. - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle Delta/de diff --git a/wiki/translations/de/Part_Mirror.md b/wiki/translations/de/Part_Mirror.md index 21c36032d8..2ade409d3a 100644 --- a/wiki/translations/de/Part_Mirror.md +++ b/wiki/translations/de/Part_Mirror.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/de.md) --- +# Part Mirror/de + ## Beschreibung \'Objekt spiegeln\' - Dieses Werkzeug erzeugt ein neues Objekt (Bild), das eine Spiegelung des ursprünglichen Objekts (Quelle) ist. Das Bildobjekt wird hinter einer Spiegelebene erzeugt. Die Spiegelebene kann eine Standardebene (**XY**, **YZ** oder **XZ**) oder eine beliebige Ebene parallel zu einer Standardebene sein. @@ -44,8 +46,5 @@ Die **Basispunkt** Felder können verwendet werden, um die Spiegelebene parallel - Beliebige Spiegelebenen (d.h. nicht parallel zu einer Standardebene) werden nicht unterstützt - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Mirror/de diff --git a/wiki/translations/de/Part_Module.md b/wiki/translations/de/Part_Module.md index 75b8b5952c..f007449444 100644 --- a/wiki/translations/de/Part_Module.md +++ b/wiki/translations/de/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/de - - - - - -Part Arbeitsbereichsymbol +# Part Arbeitsbereichsymbol Part Module/de {{TOCright}} @@ -204,3 +198,6 @@ Siehe [Part Skripten](Part_scripting/de.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/de diff --git a/wiki/translations/de/Part_Offset.md b/wiki/translations/de/Part_Offset.md index afaae0b00a..918558c63d 100644 --- a/wiki/translations/de/Part_Offset.md +++ b/wiki/translations/de/Part_Offset.md @@ -6,6 +6,8 @@ SeeAlso:[Dicke](Part_Thickness/de.md), [Part 2D-Versatz](Part_Offset2D/de.md) --- +# Part Offset/de + ## Beschreibung Das Werkzeug Teil 3D Versatz erzeugt parallele Kopien einer ausgewählten Form in einem bestimmten Abstand von der Grundform, wodurch ein neues Objekt entsteht. @@ -54,10 +56,7 @@ dieselbe Form mit einem 3D Versatz als SKIN und *gefülltem* Versatz *gefüllter* Versatz mit 2 Zylindern, die boolesche Schnitte erzeugen. Zylinder A geht durch die FÜLLUNG, während Zylinder B nur durch die FÜLLUNG geht und NICHT durch die 2D Ausgangsform. - - - + - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset/de diff --git a/wiki/translations/de/Part_Offset2D.md b/wiki/translations/de/Part_Offset2D.md index 7bcc079611..a700e6464e 100644 --- a/wiki/translations/de/Part_Offset2D.md +++ b/wiki/translations/de/Part_Offset2D.md @@ -7,6 +7,8 @@ SeeAlso:[Part 3D Versatz](Part_Offset/de.md), [Part Thickness](Part_Thickness/de.md), [Entwurf Versatz](Draft_Offset/de.md) --- +# Part Offset2D/de + ## Beschreibung Teil 2D Versatz konstruiert einen Draht, parallel zum ursprünglichen Draht, in einem bestimmten Abstand von diesem. Oder vergrößert/schrumpft gleichzeitig eine ebene Fläche. @@ -114,8 +116,5 @@ Part.show(enlarged_circle) # structure follows that of source shape. }} - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset2D/de diff --git a/wiki/translations/de/Part_Part2DObject.md b/wiki/translations/de/Part_Part2DObject.md index 827c0e4678..e5cb5287d5 100644 --- a/wiki/translations/de/Part_Part2DObject.md +++ b/wiki/translations/de/Part_Part2DObject.md @@ -1,6 +1,4 @@ # Part Part2DObject/de - - ## Einführung @@ -118,5 +116,5 @@ obj.Label = "Custom label" Beispielsweise, die meisten Werkzeuge aus dem [Entwurf Arbeitsbereich](Draft_Workbench/de.md), wie [Entwurf Linie](Draft_Line/de.md), [Entwurf Rechteck](Draft_Rectangle/de.md), [Entwurf Polygon](Draft_Polygon/de.md), usw., sind `Part::Part2DObjectPython` Objekte mit einem benutzerdefinierten Symbol und zusätzliche Eigenschaften. - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Part2DObject/de diff --git a/wiki/translations/de/Part_Plane.md b/wiki/translations/de/Part_Plane.md index 175ae4a135..4ec43b5c07 100644 --- a/wiki/translations/de/Part_Plane.md +++ b/wiki/translations/de/Part_Plane.md @@ -6,6 +6,8 @@ SeeAlso:[Part Grundkörper](Part_Primitives/de.md) --- +# Part Plane/de + @@ -63,8 +65,5 @@ Die Eigenschaften können später in **Combo Ansicht → Daten** nach der Auswah You have the standard properties view. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Plane/de diff --git a/wiki/translations/de/Part_Point.md b/wiki/translations/de/Part_Point.md index 22ef55168c..32dbc28f1f 100644 --- a/wiki/translations/de/Part_Point.md +++ b/wiki/translations/de/Part_Point.md @@ -6,6 +6,8 @@ SeeAlso:[Part Grundkörper](Part_Primitives/de.md) --- +# Part Point/de + @@ -103,4 +105,7 @@ Ein Punkt (Knoten) geometrischer Grundkörper. {{Part_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Point/de diff --git a/wiki/translations/de/Part_PointsFromMesh.md b/wiki/translations/de/Part_PointsFromMesh.md index f25167c662..5acbc9486b 100644 --- a/wiki/translations/de/Part_PointsFromMesh.md +++ b/wiki/translations/de/Part_PointsFromMesh.md @@ -8,6 +8,8 @@ SeeAlso:[Part FormausNetz](Part_ShapeFromMesh/de.md), [Part KonvertiereZuFestkörper](Part_MakeSolid/de.md), [Part FormVerfeinern](Part_RefineShape/de.md) --- +# Part PointsFromMesh/de + ## Beschreibung Das ** @@ -32,8 +34,5 @@ Es wird keine Analyse oder Validierung des Netzobjekts durchgeführt. Die Analys ## Skripten - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part PointsFromMesh/de diff --git a/wiki/translations/de/Part_Primitives.md b/wiki/translations/de/Part_Primitives.md index a101cc7316..87d4e6e03d 100644 --- a/wiki/translations/de/Part_Primitives.md +++ b/wiki/translations/de/Part_Primitives.md @@ -6,6 +6,8 @@ SeeAlso:[Part Formgenerator](Part_Builder/de.md) --- +# Part Primitives/de + ## Beschreibung [Part Grundelemente](Part_Primitives/de.md) öffnet ein Dialogfeld zum Erstellen irgendeines der parametrischen geometrischen Grundelemente, die im [Part Arbeitsbereich](Part_Workbench/de.md) definiert sind. @@ -88,8 +90,5 @@ Es kann auch als Eingabe in das Programm verwendet werden. freecad $INSTALL_DIR/Mod/Part/parttests/part_test_objects.py ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Primitives/de diff --git a/wiki/translations/de/Part_Prism.md b/wiki/translations/de/Part_Prism.md index 27dea87f10..54b83fcef6 100644 --- a/wiki/translations/de/Part_Prism.md +++ b/wiki/translations/de/Part_Prism.md @@ -7,6 +7,8 @@ SeeAlso:Formteil → Primitives → [Box](Part_Box/de.md) --- +# Part Prism/de + @@ -54,10 +56,7 @@ The prism properties can later be edited, either in the [Property editor](Proper - **First Angle**: Angle in first direction. (v0.19) -- **Second Angle**: Angle in second direction. (v0.19) - - +- **Second Angle**: Angle in second direction. (v0.19) - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Prism/de diff --git a/wiki/translations/de/Part_ProjectionOnSurface.md b/wiki/translations/de/Part_ProjectionOnSurface.md index 8dc033eca5..fdb17c1ab0 100644 --- a/wiki/translations/de/Part_ProjectionOnSurface.md +++ b/wiki/translations/de/Part_ProjectionOnSurface.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Part ProjectionOnSurface/de + ## Beschreibung @@ -101,5 +103,5 @@ Wenn dies geschieht: - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ProjectionOnSurface/de diff --git a/wiki/translations/de/Part_RefineShape.md b/wiki/translations/de/Part_RefineShape.md index 596c70ae42..f32ec6a5d7 100644 --- a/wiki/translations/de/Part_RefineShape.md +++ b/wiki/translations/de/Part_RefineShape.md @@ -7,6 +7,8 @@ SeeAlso:[Einfache Kopie](Part_SimpleCopy/de.md), [Part UmgewandelteKopie](Part_TransformedCopy/de.md), [Part ElementKopie](Part_ElementCopy/de.md), [OpenSCAD VerfeinereFormFunktion](OpenSCAD_RefineShapeFeature/de.md) --- +# Part RefineShape/de + @@ -104,5 +106,5 @@ shape.removeSplitter() - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RefineShape/de diff --git a/wiki/translations/de/Part_RegularPolygon.md b/wiki/translations/de/Part_RegularPolygon.md index 252c53303c..cfc716ca6e 100644 --- a/wiki/translations/de/Part_RegularPolygon.md +++ b/wiki/translations/de/Part_RegularPolygon.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part RegularPolygon/de + @@ -50,8 +52,5 @@ The RegularPolygon is available from the Create Primitives dialogue in the Part - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RegularPolygon/de diff --git a/wiki/translations/de/Part_ReverseShapes.md b/wiki/translations/de/Part_ReverseShapes.md index c44b50ee5c..3274caee3f 100644 --- a/wiki/translations/de/Part_ReverseShapes.md +++ b/wiki/translations/de/Part_ReverseShapes.md @@ -6,6 +6,8 @@ Workbenches:[Part Arbeitsbereich](Part_Workbench/de.md) --- +# Part ReverseShapes/de + @@ -55,5 +57,5 @@ Du kannst dies überprüfen, indem du - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ReverseShapes/de diff --git a/wiki/translations/de/Part_Revolve.md b/wiki/translations/de/Part_Revolve.md index b4e6aa2ab0..3d6cce6492 100644 --- a/wiki/translations/de/Part_Revolve.md +++ b/wiki/translations/de/Part_Revolve.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part Revolve/de + @@ -68,5 +70,5 @@ Wenn Du eine benutzerdefinierte Achse wählst, definieren die Zahlen die Richtun - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Revolve/de diff --git a/wiki/translations/de/Part_RuledSurface.md b/wiki/translations/de/Part_RuledSurface.md index 211170b996..e655f7ad94 100644 --- a/wiki/translations/de/Part_RuledSurface.md +++ b/wiki/translations/de/Part_RuledSurface.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part RuledSurface/de + @@ -31,5 +33,5 @@ Erstelle Geregelte Oberfläche - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RuledSurface/de diff --git a/wiki/translations/de/Part_Section.md b/wiki/translations/de/Part_Section.md index e55299c3ae..cad81ba6ba 100644 --- a/wiki/translations/de/Part_Section.md +++ b/wiki/translations/de/Part_Section.md @@ -7,6 +7,8 @@ SeeAlso:[Part Querschnitte](Part_CrossSections/de.md) --- +# Part Section/de + @@ -43,5 +45,5 @@ Zum Erzeugen von Abschnitten mit einer Schnittebene siehe - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Section/de diff --git a/wiki/translations/de/Part_SectionCross.md b/wiki/translations/de/Part_SectionCross.md index 7c35cffadf..74853070fd 100644 --- a/wiki/translations/de/Part_SectionCross.md +++ b/wiki/translations/de/Part_SectionCross.md @@ -1,2 +1,5 @@ # Part SectionCross/de 1. REDIRECT [Part\_CrossSections/de](Part_CrossSections/de.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SectionCross/de diff --git a/wiki/translations/de/Part_ShapeFromMesh.md b/wiki/translations/de/Part_ShapeFromMesh.md index fd17333d4a..e4ad7b28b3 100644 --- a/wiki/translations/de/Part_ShapeFromMesh.md +++ b/wiki/translations/de/Part_ShapeFromMesh.md @@ -7,6 +7,8 @@ SeeAlso:[Part UmwandelnInFestkörper](Part_MakeSolid/de.md), [Part FormVerfeinern](Part_RefineShape/de.md), [Part PunkteAusNetz](Part_PointsFromMesh/de.md) --- +# Part ShapeFromMesh/de + ## Einführung Der ** [Part FormAusNetz](Part_ShapeFromMesh/de.md)** Befehl erzeugt eine Form aus einem [Netzobjekt](Mesh/de.md). Netzobjekte haben in FreeCAD nur begrenzte Bearbeitungsmöglichkeiten, ihre Konvertierung in [Formen](Shape/de.md) ermöglicht ihre Verwendung mit vielen weiteren Booleschen und Modifikationswerkzeugen. @@ -53,8 +55,5 @@ solid.purgeTouched() doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ShapeFromMesh/de diff --git a/wiki/translations/de/Part_Shapebuilder.md b/wiki/translations/de/Part_Shapebuilder.md index 09609cc698..c88917ddb4 100644 --- a/wiki/translations/de/Part_Shapebuilder.md +++ b/wiki/translations/de/Part_Shapebuilder.md @@ -1,2 +1,5 @@ # Part Shapebuilder/de 1. REDIRECT [Part\_Builder/de](Part_Builder/de.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Shapebuilder/de diff --git a/wiki/translations/de/Part_SimpleCopy.md b/wiki/translations/de/Part_SimpleCopy.md index 5b8621ba43..cff1ab745d 100644 --- a/wiki/translations/de/Part_SimpleCopy.md +++ b/wiki/translations/de/Part_SimpleCopy.md @@ -7,6 +7,8 @@ SeeAlso:[Kopie](Std_Copy/de.md), [Dupliziere Auswahl](Std_DuplicateSelection/de.md), [UmgewandelteKopie](Part_TransformedCopy/de.md), [ElementKopie](Part_ElementCopy/de.md), [FormVerfeinern](Part_RefineShape/de.md) --- +# Part SimpleCopy/de + @@ -43,5 +45,5 @@ Die Kopie hat einfache Ansichtseigenschaften wie jede andere [Teilfunktion](Part - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SimpleCopy/de diff --git a/wiki/translations/de/Part_Slice.md b/wiki/translations/de/Part_Slice.md index 2b7ed60025..63169d19fe 100644 --- a/wiki/translations/de/Part_Slice.md +++ b/wiki/translations/de/Part_Slice.md @@ -8,6 +8,8 @@ SeeAlso:[Part Boolesche Bruchstücke](Part_BooleanFragments/de.md), [Part XOR](Part_XOR/de.md), [Part Grundelemente verbinden](Part_CompJoinFeatures/de.md), [Part Boolesche](Part_Boolean/de.md) --- +# Part Slice/de + @@ -194,5 +196,5 @@ Das Werkzeug selbst ist in Python implementiert, siehe {{FileName|/Mod/Part/BOPT - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Slice/de diff --git a/wiki/translations/de/Part_SliceApart.md b/wiki/translations/de/Part_SliceApart.md index faabd69684..061cb34ba6 100644 --- a/wiki/translations/de/Part_SliceApart.md +++ b/wiki/translations/de/Part_SliceApart.md @@ -8,6 +8,8 @@ SeeAlso:[Part Kappen zu Verbund](Part_Slice/de.md), [Part Verbund Sprengen](Part_ExplodeCompound/de.md) --- +# Part SliceApart/de + @@ -78,5 +80,5 @@ Auseinander Schneiden wurde in FreeCAD v0.18.15506 eingeführt. FreeCAD muss mit - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SliceApart/de diff --git a/wiki/translations/de/Part_Sphere.md b/wiki/translations/de/Part_Sphere.md index 43ebc5036a..f90ad57686 100644 --- a/wiki/translations/de/Part_Sphere.md +++ b/wiki/translations/de/Part_Sphere.md @@ -7,6 +7,8 @@ SeeAlso:[Part Grundkörper](Part_Primitives/de.md) --- +# Part Sphere/de + @@ -74,5 +76,5 @@ Da es recht schwierig ist, die Bedeutung der Parameter Winkel 1, Winkel 2, Winke - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sphere/de diff --git a/wiki/translations/de/Part_Spiral.md b/wiki/translations/de/Part_Spiral.md index 8711b068ae..30cd5e2a36 100644 --- a/wiki/translations/de/Part_Spiral.md +++ b/wiki/translations/de/Part_Spiral.md @@ -7,6 +7,8 @@ SeeAlso:[Grundkörper erstellen](Part_CreatePrimitives/de.md) --- +# Part Spiral/de + @@ -28,8 +30,5 @@ Translations:Part Spiral/3/de ![](images/SpiralDefault_it.png ) ![](images/Spiral_y45_it.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Spiral/de diff --git a/wiki/translations/de/Part_Sweep.md b/wiki/translations/de/Part_Sweep.md index dd312f4d97..23c10df290 100644 --- a/wiki/translations/de/Part_Sweep.md +++ b/wiki/translations/de/Part_Sweep.md @@ -7,6 +7,8 @@ SeeAlso:[Part Ausformung](Part_Loft/de.md) --- +# Part Sweep/de + @@ -144,5 +146,5 @@ Wenn \"Frenet\" \"wahr\" ist, wird die Ausrichtung des Profils basierend auf lok - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sweep/de diff --git a/wiki/translations/de/Part_Thickness.md b/wiki/translations/de/Part_Thickness.md index c1c120a70f..74e008d021 100644 --- a/wiki/translations/de/Part_Thickness.md +++ b/wiki/translations/de/Part_Thickness.md @@ -7,6 +7,8 @@ SeeAlso:[Part Versatz](Part_Offset/de.md) --- +# Part Thickness/de + @@ -122,5 +124,5 @@ Notes: - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Thickness/de diff --git a/wiki/translations/de/Part_TopoShape.md b/wiki/translations/de/Part_TopoShape.md index 1ef34ca3e9..51490391fa 100644 --- a/wiki/translations/de/Part_TopoShape.md +++ b/wiki/translations/de/Part_TopoShape.md @@ -1,5 +1,5 @@ # Part TopoShape/de - {{TOCright}} +{{TOCright}} ## Einführung @@ -70,4 +70,7 @@ help(obj.Shape) ``` - {{Document objects navi}} + {{Document objects navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part TopoShape/de diff --git a/wiki/translations/de/Part_Torus.md b/wiki/translations/de/Part_Torus.md index 1036ae8e3a..0ed43146fe 100644 --- a/wiki/translations/de/Part_Torus.md +++ b/wiki/translations/de/Part_Torus.md @@ -7,6 +7,8 @@ |Part CreatePrimitives]] --- +# Part Torus/de + @@ -76,5 +78,5 @@ Die Erst-Werte der beiden Winkel Angle2 und Angle3 ergeben in Summe 360°, was d - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Torus/de diff --git a/wiki/translations/de/Part_TransformedCopy.md b/wiki/translations/de/Part_TransformedCopy.md index d6e20f6b42..b22bf8f616 100644 --- a/wiki/translations/de/Part_TransformedCopy.md +++ b/wiki/translations/de/Part_TransformedCopy.md @@ -7,6 +7,8 @@ SeeAlso:[SimpleCopy](Part_SimpleCopy.md), [ElementKopie](Part_ElementCopy/de.md), [Form Verfeinern](Part_RefineShape/de.md) --- +# Part TransformedCopy/de + @@ -43,8 +45,5 @@ Die Kopie hat eine einfache {{PropertyData/de|Positionierung}} Eigenschaft wie j Die Kopie hat einfache Ansichtseigenschaften wie jede andere [Teilfunktion](Part_Feature/de.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part TransformedCopy/de diff --git a/wiki/translations/de/Part_Tube.md b/wiki/translations/de/Part_Tube.md index 17bc2b397b..ea6edbeacf 100644 --- a/wiki/translations/de/Part_Tube.md +++ b/wiki/translations/de/Part_Tube.md @@ -8,6 +8,8 @@ SeeAlso:[Part ErstelleGrundkörper](Part_CreatePrimitives/de.md) --- +# Part Tube/de + ## Beschreibung Der Befehl Rohr fügt ein Rohr in das aktive Dokument ein. Das Rohr wird geometrisch als ein Schnitt eines kleineren Zylinders in einen größeren behandelt. Standardmäßig fügt der Befehl ein 10 mm hohes Rohr mit einem Außenradius von 5 mm und einem Innenradius von 2 mm ein. Diese Parameter können geändert werden, nachdem das Objekt hinzugefügt wurde. @@ -37,8 +39,5 @@ Um das Rohr zu bearbeiten - **Platzierung:** Legt die Ausrichtung und Position der Box im 3D Raum fest. Siehe [ Platzierung](Placement/de.md). Der Bezugspunkt ist die linke vordere untere Ecke des Kastens. - **Beschriftung:** Die Beschriftung ist der Name, der der Operation gegeben wird. Dieser Name kann nach Belieben geändert werden. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Tube/de diff --git a/wiki/translations/de/Part_Union.md b/wiki/translations/de/Part_Union.md index b1af94083e..e80938dfea 100644 --- a/wiki/translations/de/Part_Union.md +++ b/wiki/translations/de/Part_Union.md @@ -1,2 +1,5 @@ # Part Union/de 1. REDIRECT [Part\_Fuse/de](Part_Fuse/de.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Union/de diff --git a/wiki/translations/de/Part_Wedge.md b/wiki/translations/de/Part_Wedge.md index ceaa31945f..37e91b9a38 100644 --- a/wiki/translations/de/Part_Wedge.md +++ b/wiki/translations/de/Part_Wedge.md @@ -6,6 +6,8 @@ SeeAlso:[Part CreatePrimitives](Part_CreatePrimitives/de.md) --- +# Part Wedge/de + @@ -70,8 +72,5 @@ Erstellt ein parametrisches Keil-Objekt. Der Keil hat standardmäßig eine groß ![](images/Wedge_examples.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Wedge/de diff --git a/wiki/translations/de/Part_Workbench.md b/wiki/translations/de/Part_Workbench.md index cf06362057..958541719e 100644 --- a/wiki/translations/de/Part_Workbench.md +++ b/wiki/translations/de/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/de 1. REDIRECT [Part\_Module/de](Part_Module/de.md) + +--- +[documentation index](../README.md) > Part Workbench/de diff --git a/wiki/translations/de/Part_XOR.md b/wiki/translations/de/Part_XOR.md index ad99abd38f..f7ae73c76e 100644 --- a/wiki/translations/de/Part_XOR.md +++ b/wiki/translations/de/Part_XOR.md @@ -1,3 +1,4 @@ +# Part XOR/de --- - GuiCommand:/de Name:Part_XOR @@ -33,5 +34,5 @@ - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part XOR/de diff --git a/wiki/translations/de/Part_and_PartDesign.md b/wiki/translations/de/Part_and_PartDesign.md index fdc28e1d96..07d3158dbf 100644 --- a/wiki/translations/de/Part_and_PartDesign.md +++ b/wiki/translations/de/Part_and_PartDesign.md @@ -1,5 +1,5 @@ # Part and PartDesign/de - {{TOCright}} +{{TOCright}} ## Übersicht @@ -172,4 +172,7 @@ Die Arbeitsbereiche Part und PartDesign können mit etwas Vorsicht zusammen verw {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part and PartDesign/de diff --git a/wiki/translations/de/Part_scripting.md b/wiki/translations/de/Part_scripting.md index a6be051867..27b7dfeac9 100644 --- a/wiki/translations/de/Part_scripting.md +++ b/wiki/translations/de/Part_scripting.md @@ -1,7 +1,4 @@ # Part scripting/de - - - {{TOCright}} ## Einführung @@ -156,3 +153,6 @@ Gehe auf die Seite [Topologisches Datenskripting](Topological_data_scripting/de. }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part scripting/de diff --git a/wiki/translations/de/Parts_Library.md b/wiki/translations/de/Parts_Library.md index 4fcd1d48fa..20d05d29cf 100644 --- a/wiki/translations/de/Parts_Library.md +++ b/wiki/translations/de/Parts_Library.md @@ -1,2 +1,5 @@ # Parts Library/de 1. REDIRECT [Parts\_Library\_Workbench/de](Parts_Library_Workbench/de.md) + +--- +[documentation index](../README.md) > Parts Library/de diff --git a/wiki/translations/de/Parts_Library_Workbench.md b/wiki/translations/de/Parts_Library_Workbench.md index 1293ca6581..449402c18f 100644 --- a/wiki/translations/de/Parts_Library_Workbench.md +++ b/wiki/translations/de/Parts_Library_Workbench.md @@ -1,6 +1,4 @@ # Parts Library Workbench/de - - ## Einführung @@ -57,3 +55,6 @@ Die Bibliothek ist ein einfacher Behälter für FreeCAD (.fcstd) und STEP (.stp) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Parts Library Workbench/de diff --git a/wiki/translations/de/Path_Adaptive.md b/wiki/translations/de/Path_Adaptive.md index 1a914ca19c..5b4ef0eaa9 100644 --- a/wiki/translations/de/Path_Adaptive.md +++ b/wiki/translations/de/Path_Adaptive.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Adaptive/de + ## Beschreibung The [Adaptive](Path_Adaptive.md) tool uses an adaptive algorithm to create clearing and profiling paths that manage cutter engagement so that engagement and material removal never exceed a maximum value. @@ -221,4 +223,7 @@ Note: It is suggested that you do not edit the Placement property of path operat {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Adaptive/de diff --git a/wiki/translations/de/Path_Comment.md b/wiki/translations/de/Path_Comment.md index 423a8abc30..1d98618851 100644 --- a/wiki/translations/de/Path_Comment.md +++ b/wiki/translations/de/Path_Comment.md @@ -1,3 +1,4 @@ +# Path Comment/de --- - GuiCommand:/de Name:Path Comment Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Partial Commands → Comment Shortcut:P,C SeeAlso:--- @@ -37,4 +38,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Comment/de diff --git a/wiki/translations/de/Path_Contour.md b/wiki/translations/de/Path_Contour.md index c97a0ed156..b8bf46bdf8 100644 --- a/wiki/translations/de/Path_Contour.md +++ b/wiki/translations/de/Path_Contour.md @@ -1,2 +1,5 @@ # Path Contour/de 1. REDIRECT [Path\_Profile](Path_Profile.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Contour/de diff --git a/wiki/translations/de/Path_Development_Roadmap.md b/wiki/translations/de/Path_Development_Roadmap.md index d0a493fd54..60d5cc03bd 100644 --- a/wiki/translations/de/Path_Development_Roadmap.md +++ b/wiki/translations/de/Path_Development_Roadmap.md @@ -1,10 +1,4 @@ # Path Development Roadmap/de - - - - - - {{TOCright}} ## Zweck @@ -169,4 +163,7 @@ The following list is not individual bugs but shows how Path is inconsistent in {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Development Roadmap/de diff --git a/wiki/translations/de/Path_Drilling.md b/wiki/translations/de/Path_Drilling.md index 8b6ff3210a..f9420b984e 100644 --- a/wiki/translations/de/Path_Drilling.md +++ b/wiki/translations/de/Path_Drilling.md @@ -1,3 +1,4 @@ +# Path Drilling/de --- - GuiCommand:/de Name:Path Drilling Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Drilling Shortcut:P,D SeeAlso:--- @@ -227,4 +228,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Drilling/de diff --git a/wiki/translations/de/Path_Engrave.md b/wiki/translations/de/Path_Engrave.md index 7f6b251ab1..8a2fa1e92b 100644 --- a/wiki/translations/de/Path_Engrave.md +++ b/wiki/translations/de/Path_Engrave.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Engrave/de + @@ -111,4 +113,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Engrave/de diff --git a/wiki/translations/de/Path_ExportTemplate.md b/wiki/translations/de/Path_ExportTemplate.md index cf76c07881..a892ce6015 100644 --- a/wiki/translations/de/Path_ExportTemplate.md +++ b/wiki/translations/de/Path_ExportTemplate.md @@ -7,6 +7,8 @@ SeeAlso:[Pfad EinrichtungsBlatt](Path_SetupSheet.md) --- +# Path ExportTemplate/de + ## Beschreibung Der Export von Auftragsvorlagen bietet einen bequemen Mechanismus zum Speichern häufig verwendeter Auftragsdefinitionen aus einem bestehenden Auftrag heraus. Dies erleichtert die Einrichtung zukünftiger Aufträge, die weitgehend ähnlich sind, indem der Import von Auftrag Vorlagen während des Auftragserstellungsprozesses ermöglicht wird. @@ -56,4 +58,7 @@ Der **Bearbeiten → Voreinstellungen... → Pfad → Auftragsvorgaben Reiter, {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ExportTemplate/de diff --git a/wiki/translations/de/Path_FAQ.md b/wiki/translations/de/Path_FAQ.md index 3fc09894ad..8b05f13653 100644 --- a/wiki/translations/de/Path_FAQ.md +++ b/wiki/translations/de/Path_FAQ.md @@ -1,6 +1,4 @@ # Path FAQ/de - - ## Häufig gestellte Fragen Pfad Arbeitsbereich ## Wie viele Achsen kann der Pfad Arbeitsbereich handhaben? @@ -230,4 +228,7 @@ Dabei geht es nur um die Anzeige des Pfades. Du kannst dies in den Einstellungen {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FAQ/de diff --git a/wiki/translations/de/Path_Inspect.md b/wiki/translations/de/Path_Inspect.md index 41b51a4e05..e03eae6ab2 100644 --- a/wiki/translations/de/Path_Inspect.md +++ b/wiki/translations/de/Path_Inspect.md @@ -6,6 +6,8 @@ Shortcut:**P** **I** --- +# Path Inspect/de + ## Beschreibung Dieses Werkzeug ermöglicht die Untersuchung des internen FreeCAD G-Code Dialektinhalts eines Pfad Arbeitsgangsobjekts. @@ -31,4 +33,7 @@ Dieses Werkzeug ermöglicht die Untersuchung des internen FreeCAD G-Code Dialekt {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Inspect/de diff --git a/wiki/translations/de/Path_Job.md b/wiki/translations/de/Path_Job.md index 5f7360aeb8..dee5c6c67e 100644 --- a/wiki/translations/de/Path_Job.md +++ b/wiki/translations/de/Path_Job.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Job/de + @@ -97,4 +99,7 @@ Wenn du eine Aufgabe hast, die mehr als eine Pfadoperation umfasst, kannst du fe {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Job/de diff --git a/wiki/translations/de/Path_MillFace.md b/wiki/translations/de/Path_MillFace.md index 801df7bbf9..3a20702dcf 100644 --- a/wiki/translations/de/Path_MillFace.md +++ b/wiki/translations/de/Path_MillFace.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path MillFace/de + @@ -221,4 +223,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path MillFace/de diff --git a/wiki/translations/de/Path_Pocket_Shape.md b/wiki/translations/de/Path_Pocket_Shape.md index 87e4176d36..0b8150030c 100644 --- a/wiki/translations/de/Path_Pocket_Shape.md +++ b/wiki/translations/de/Path_Pocket_Shape.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Pocket Shape/de + ## Beschreibung @@ -235,4 +237,7 @@ Note: It is suggested that you do not edit the Placement property of path operat {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Pocket Shape/de diff --git a/wiki/translations/de/Path_Post.md b/wiki/translations/de/Path_Post.md index 06a47a6247..ca6f304cc1 100644 --- a/wiki/translations/de/Path_Post.md +++ b/wiki/translations/de/Path_Post.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Post/de + @@ -161,4 +163,7 @@ Enthaltene Postprozessoren werden standardmäßig in der **FreeCAD.Mod.Path.Path {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Post/de diff --git a/wiki/translations/de/Path_Postprocessor_Customization.md b/wiki/translations/de/Path_Postprocessor_Customization.md index 1bee025076..114ff427aa 100644 --- a/wiki/translations/de/Path_Postprocessor_Customization.md +++ b/wiki/translations/de/Path_Postprocessor_Customization.md @@ -1,10 +1,4 @@ # Path Postprocessor Customization/de - - - - - - {{TOCright}} ## Einführung @@ -115,4 +109,7 @@ Du wirst sehen, dass beide Funktionen auch die Funktion \"Zeilennummer()\" aufru {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Postprocessor Customization/de diff --git a/wiki/translations/de/Path_Preferences.md b/wiki/translations/de/Path_Preferences.md index eabe295a2c..543d51d759 100644 --- a/wiki/translations/de/Path_Preferences.md +++ b/wiki/translations/de/Path_Preferences.md @@ -1,10 +1,4 @@ # Path Preferences/de - - - - - - {{TOCright}} ## Übersicht @@ -46,3 +40,6 @@ Es gibt drei Abschnitte: Allgemein, Nachbearbeiter und Einrichtung. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Preferences/de diff --git a/wiki/translations/de/Path_Profile.md b/wiki/translations/de/Path_Profile.md index 593abd0c5a..dfdeb93282 100644 --- a/wiki/translations/de/Path_Profile.md +++ b/wiki/translations/de/Path_Profile.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Path Profile/de + ## Beschreibung The ** [Profile](Path_Profile.md)** tool creates a contour operation based on selected features of the model. The tool was introduced in version 0.19. It offers three operations that were handled by separate tools in previous versions. @@ -290,4 +292,7 @@ Beispiel: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Profile/de diff --git a/wiki/translations/de/Path_ProfileEdges.md b/wiki/translations/de/Path_ProfileEdges.md index 2f5bfaf43f..e4f51c80d3 100644 --- a/wiki/translations/de/Path_ProfileEdges.md +++ b/wiki/translations/de/Path_ProfileEdges.md @@ -1,2 +1,5 @@ # Path ProfileEdges/de 1. REDIRECT [Path\_Profile](Path_Profile.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ProfileEdges/de diff --git a/wiki/translations/de/Path_ProfileFace.md b/wiki/translations/de/Path_ProfileFace.md index c63147da0c..7dfe93c04a 100644 --- a/wiki/translations/de/Path_ProfileFace.md +++ b/wiki/translations/de/Path_ProfileFace.md @@ -1,2 +1,5 @@ # Path ProfileFace/de 1. REDIRECT [Path\_Profile](Path_Profile.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ProfileFace/de diff --git a/wiki/translations/de/Path_SelectLoop.md b/wiki/translations/de/Path_SelectLoop.md index 14e8037c80..ecfac523b3 100644 --- a/wiki/translations/de/Path_SelectLoop.md +++ b/wiki/translations/de/Path_SelectLoop.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Path SelectLoop/de + ## Description @@ -38,4 +40,7 @@ Der Befehl WähleSchleife vervollständigt eine Auswahl von Kanten, die eine Sch {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SelectLoop/de diff --git a/wiki/translations/de/Path_Simulator.md b/wiki/translations/de/Path_Simulator.md index c14858c291..62e6c1cd6b 100644 --- a/wiki/translations/de/Path_Simulator.md +++ b/wiki/translations/de/Path_Simulator.md @@ -7,6 +7,8 @@ SeeAlso:[Path Inspect](Path_Inspect.md) --- +# Path Simulator/de + ## Beschreibung This tool allows Simulation of the Path Job by sweeping 3D Models of the Tools used in each Operation, along the G-Code paths, subtracting material from the Stock, where the stock and tool overlap, providing visualization of the Job. This allows detection and isolation of errors prior to running the Job on a mill. @@ -46,4 +48,7 @@ This tool allows Simulation of the Path Job by sweeping 3D Models of the Tools u {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Simulator/de diff --git a/wiki/translations/de/Path_ToolLibraryEdit.md b/wiki/translations/de/Path_ToolLibraryEdit.md index fdc99d34f6..c8fe790ae8 100644 --- a/wiki/translations/de/Path_ToolLibraryEdit.md +++ b/wiki/translations/de/Path_ToolLibraryEdit.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Path ToolLibraryEdit/de + ## Beschreibung @@ -55,4 +57,7 @@ The handling is straight forward: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolLibraryEdit/de diff --git a/wiki/translations/de/Path_Vcarve.md b/wiki/translations/de/Path_Vcarve.md index fd493e031c..dca57b0ad3 100644 --- a/wiki/translations/de/Path_Vcarve.md +++ b/wiki/translations/de/Path_Vcarve.md @@ -9,6 +9,8 @@ SeeAlso: --- +# Path Vcarve/de + @@ -168,4 +170,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Vcarve/de diff --git a/wiki/translations/de/Path_Walkthrough_for_the_Impatient.md b/wiki/translations/de/Path_Walkthrough_for_the_Impatient.md index 5c36e727c0..ea81e74947 100644 --- a/wiki/translations/de/Path_Walkthrough_for_the_Impatient.md +++ b/wiki/translations/de/Path_Walkthrough_for_the_Impatient.md @@ -1,7 +1,4 @@ # Path Walkthrough for the Impatient/de - - - {{TutorialInfo/de |Topic=Pfad Arbeitsbereich |Level=Anfänger/Mittelmäßig @@ -297,4 +294,7 @@ Der letzte Schritt zur Erzeugung von G-Code für die Zielfräse ist die Nachbear {{Tutorials navi -}} {{Path Tools navi}} +}} {{Path Tools navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Walkthrough for the Impatient/de diff --git a/wiki/translations/de/Path_Workbench.md b/wiki/translations/de/Path_Workbench.md index 5f2fe63e77..6d952f9250 100644 --- a/wiki/translations/de/Path_Workbench.md +++ b/wiki/translations/de/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/de - - - - - -Pfad Arbeitsbereichssymbol +# Pfad Arbeitsbereichssymbol Path Workbench/de {{TOCright}} @@ -441,3 +435,6 @@ Siehe [Path scripting/de](Path_scripting/de.md) Seite. }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench/de diff --git a/wiki/translations/de/Path_scripting.md b/wiki/translations/de/Path_scripting.md index 1ec4e4dd2f..231afa0ff6 100644 --- a/wiki/translations/de/Path_scripting.md +++ b/wiki/translations/de/Path_scripting.md @@ -1,10 +1,4 @@ # Path scripting/de - - - - - - {{TOCright}} ## Einführung @@ -459,3 +453,6 @@ doc.recompute() }} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path scripting/de diff --git a/wiki/translations/de/Pivy.md b/wiki/translations/de/Pivy.md index 392fecb3c0..44cb55a970 100644 --- a/wiki/translations/de/Pivy.md +++ b/wiki/translations/de/Pivy.md @@ -1,7 +1,4 @@ # Pivy/de - - - {{TOCright}} ## Einführung @@ -180,3 +177,6 @@ These links provide reference documentation for Coin v3.x. The differences with }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Pivy/de diff --git a/wiki/translations/de/Placement.md b/wiki/translations/de/Placement.md index 481148bb86..ae31ea2ef9 100644 --- a/wiki/translations/de/Placement.md +++ b/wiki/translations/de/Placement.md @@ -1,6 +1,4 @@ # Placement/de - - ## Übersicht **Positionierung** ist wie FreeCAD den Standort und die Lage (Orientierung) eines Objekts im Raum angibt. Die Platzierung kann in verschiedenen Formen angegeben und über [Skripten](Python_scripting_tutorial/de#Vektoren_und_Positierungen.md), den [Eigenschaftseditor](Property_editor/de.md) oder durch Auswahl von **Bearbeiten → Positionierung...** zum Öffnen des [Positionierung Aufgabenpaneel](Std_Placement/de.md) verändert werden. @@ -255,5 +253,5 @@ Um die Positionierung von \"Sketch\" mit der von \"Cylinder\" gleichzusetzen, w - Dieses Tutorium: [Flugzeug](Aeroplane/de.md) deckt die Mechanik der Änderung der Positionierung eines Objekts ausführlich ab. - - +--- +[documentation index](../README.md) > Placement/de diff --git a/wiki/translations/de/Placement_API.md b/wiki/translations/de/Placement_API.md index d2d027c7ac..5b6cc9c279 100644 --- a/wiki/translations/de/Placement_API.md +++ b/wiki/translations/de/Placement_API.md @@ -1,7 +1,4 @@ # Placement API/de - - -
@@ -48,3 +45,6 @@ myObj.Placement = pl [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Placement API/de diff --git a/wiki/translations/de/Plot_Axes.md b/wiki/translations/de/Plot_Axes.md index 47045b10ae..cfdc62186f 100644 --- a/wiki/translations/de/Plot_Axes.md +++ b/wiki/translations/de/Plot_Axes.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Axes/de + ## Beschreibung The standard plot module already provides a basic tool to control the plot axes . But that tool is clearly insufficient when multi-axes plots have to be handled, as is the case in the [Multi-axes plot tutorial](Plot_MultiAxes_tutorial.md). To overcome that limitation you can install the [Plot Workbench](Plot_Workbench.md) using the [Add-on manager](Std_AddonMgr.md), so a more complete tool to edit the plot axes will be available. @@ -46,3 +48,6 @@ Finally you can set the minimum and maximum values considered for each set of ax }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Axes/de diff --git a/wiki/translations/de/Plot_Basic_tutorial.md b/wiki/translations/de/Plot_Basic_tutorial.md index c9f7abed84..f23f4352e3 100644 --- a/wiki/translations/de/Plot_Basic_tutorial.md +++ b/wiki/translations/de/Plot_Basic_tutorial.md @@ -1,7 +1,4 @@ # Plot Basic tutorial/de - - -
@@ -161,3 +158,6 @@ Set the output image size in inches, for example use 11.7x8.3 to get a **DIN A4* }} {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Basic tutorial/de diff --git a/wiki/translations/de/Plot_Grid.md b/wiki/translations/de/Plot_Grid.md index 9d08231764..9a4df8a75b 100644 --- a/wiki/translations/de/Plot_Grid.md +++ b/wiki/translations/de/Plot_Grid.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Grid/de + ## Beschreibung This tool allows the user to enable/disable the grid lines on a specific plot. @@ -26,3 +28,6 @@ This tool acts on the active set of axis. In case of multi-axes plots you can se }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Grid/de diff --git a/wiki/translations/de/Plot_Labels.md b/wiki/translations/de/Plot_Labels.md index e8dcc25808..c16fb71bcd 100644 --- a/wiki/translations/de/Plot_Labels.md +++ b/wiki/translations/de/Plot_Labels.md @@ -6,6 +6,8 @@ Workbenches:[Plot](Plot_Module/de.md) --- +# Plot Labels/de + ## Beschreibung This tool allows the user to edit the title and axes labels, as well as their font sizes. @@ -36,3 +38,6 @@ Select the plot tab that you want to edit, and run this tool. In case of multi-a }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Labels/de diff --git a/wiki/translations/de/Plot_Legend.md b/wiki/translations/de/Plot_Legend.md index 4e5b7cac18..7dcc55189e 100644 --- a/wiki/translations/de/Plot_Legend.md +++ b/wiki/translations/de/Plot_Legend.md @@ -1,3 +1,4 @@ +# Plot Legend/de --- - GuiCommand:/de Name:Plot Legend MenuLocation:Plot → Legend‏‎ |Workbenches:[[Plot Module Plot]]|Shortcut: SeeAlso:--- @@ -25,3 +26,6 @@ Remember that the styles and labels of the data series can be edited with the [d }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Legend/de diff --git a/wiki/translations/de/Plot_Module.md b/wiki/translations/de/Plot_Module.md index 61133c7309..c1fc1fc72b 100644 --- a/wiki/translations/de/Plot_Module.md +++ b/wiki/translations/de/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/de - - -Druck Arbeitsbereichsymbol +# Druck Arbeitsbereichsymbol Plot Module/de {{TOCright}} @@ -80,3 +77,6 @@ Da der Plot Arbeitsbereich eine Schicht über der `matplotlib` ist, kannst du je }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/de diff --git a/wiki/translations/de/Plot_MultiAxes_tutorial.md b/wiki/translations/de/Plot_MultiAxes_tutorial.md index abddc65659..62bc7d169b 100644 --- a/wiki/translations/de/Plot_MultiAxes_tutorial.md +++ b/wiki/translations/de/Plot_MultiAxes_tutorial.md @@ -1,7 +1,4 @@ # Plot MultiAxes tutorial/de - - -
@@ -136,3 +133,6 @@ Now you can save your work. See the [previous tutorial](Plot_Basic_tutorial.md) }} {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot MultiAxes tutorial/de diff --git a/wiki/translations/de/Plot_Positions.md b/wiki/translations/de/Plot_Positions.md index fecc7553e3..a2b0aa1849 100644 --- a/wiki/translations/de/Plot_Positions.md +++ b/wiki/translations/de/Plot_Positions.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Positions/de + ## Description This tool allows the user to edit the position of some items like titles, axes labels and legend. @@ -31,3 +33,6 @@ Select the plot tab that you want to edit, and run this tool. Then you can selec }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Positions/de diff --git a/wiki/translations/de/Plot_Save.md b/wiki/translations/de/Plot_Save.md index 95e6e42abb..9e84f64ae4 100644 --- a/wiki/translations/de/Plot_Save.md +++ b/wiki/translations/de/Plot_Save.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Save/de + ## Beschreibung The standard plot module already provides a minimum tool to save plots . If you install the [Plot Workbench](Plot_Workbench.md) using the [Add-on manager](Std_AddonMgr.md), a more complete tool to save the active plot will be available. With this tool you can also select the size and resolution of the output image. @@ -32,3 +34,6 @@ Select the plot tab that you want to save, and run this tool. Use the path selec }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Save/de diff --git a/wiki/translations/de/Plot_Series.md b/wiki/translations/de/Plot_Series.md index 0198ae3dee..9688e79e2a 100644 --- a/wiki/translations/de/Plot_Series.md +++ b/wiki/translations/de/Plot_Series.md @@ -5,6 +5,8 @@ ‏‎ Workbenches:[Plot](Plot_Module.md) --- +# Plot Series/de + ## Beschreibung The standard plot module already provides a tool to edit the plot series style . But if you install the [Plot Workbench](Plot_Workbench.md) using the [Add-on manager](Std_AddonMgr.md), a more complete and straigthforward tool will be available. @@ -36,3 +38,6 @@ Select the plot tab that you want to edit, and run this tool. Then select the se }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Series/de diff --git a/wiki/translations/de/Plot_Workbench.md b/wiki/translations/de/Plot_Workbench.md index c4749631c0..c13ef317ca 100644 --- a/wiki/translations/de/Plot_Workbench.md +++ b/wiki/translations/de/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/de 1. REDIRECT [Plot\_Module/de](Plot_Module/de.md) + +--- +[documentation index](../README.md) > Plot Workbench/de diff --git a/wiki/translations/de/Plugin_Loader.md b/wiki/translations/de/Plugin_Loader.md index f8a9947b1e..f06ddf4154 100644 --- a/wiki/translations/de/Plugin_Loader.md +++ b/wiki/translations/de/Plugin_Loader.md @@ -1,2 +1,5 @@ # Plugin Loader/de 1. REDIRECT [Std\_AddonMgr/de](Std_AddonMgr/de.md) + +--- +[documentation index](../README.md) > Plugin Loader/de diff --git a/wiki/translations/de/Points_Convert.md b/wiki/translations/de/Points_Convert.md index c1ef3d83d0..2c2739c374 100644 --- a/wiki/translations/de/Points_Convert.md +++ b/wiki/translations/de/Points_Convert.md @@ -6,6 +6,8 @@ Workbenches:[Punkte](Points_Workbench/de.md) --- +# Points Convert/de + ## Beschreibung Der **Punkte umwandeln** Befehl erzeugt Punktwolken aus Formobjekten oder Netzobjekten. @@ -55,4 +57,7 @@ Punktwolkenobjekte sind [App GeoFeature](App_GeoFeature/de.md) Objekte mit den f {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Convert/de diff --git a/wiki/translations/de/Points_Export.md b/wiki/translations/de/Points_Export.md index e66b2c46de..1317351f2c 100644 --- a/wiki/translations/de/Points_Export.md +++ b/wiki/translations/de/Points_Export.md @@ -6,6 +6,8 @@ SeeAlso:[Import Export](Import_Export/de.md) --- +# Points Export/de + ## Beschreibung Der **Punkte Export** Befehl exportiert eine Punktwolke in eine Datei. @@ -25,4 +27,7 @@ Der **Punkte Export** Befehl exportiert eine Punktwolke in eine Datei. {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Export/de diff --git a/wiki/translations/de/Points_Import.md b/wiki/translations/de/Points_Import.md index 72b836d2a0..11a22bd64e 100644 --- a/wiki/translations/de/Points_Import.md +++ b/wiki/translations/de/Points_Import.md @@ -7,6 +7,8 @@ SeeAlso:[Punkte Exportieren](Points_Export/de.md) --- +# Points Import/de + ## Beschreibung Der **Punkte Importieren** Befehl importiert eine Punktwolke aus einer Datei. @@ -50,4 +52,7 @@ Zum Testen kannst du diese [diese Datei](https://github.com/FREECAD/Examples/blo {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Import/de diff --git a/wiki/translations/de/Points_Merge.md b/wiki/translations/de/Points_Merge.md index fc68acf09a..7a82bc1d64 100644 --- a/wiki/translations/de/Points_Merge.md +++ b/wiki/translations/de/Points_Merge.md @@ -5,6 +5,8 @@ Workbenches:[Punkte](Points_Workbench/de.md) --- +# Points Merge/de + ## Beschreibung Der Befehl **Punkte zusammenführen** erzeugt eine Punktwolke, indem er die Punkte von zwei oder mehr Punktwolken kombiniert. @@ -24,4 +26,7 @@ Siehe [Punkte Umwandeln](Points_Convert/de.md). {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Merge/de diff --git a/wiki/translations/de/Points_Module.md b/wiki/translations/de/Points_Module.md index bced39895c..3a9534da54 100644 --- a/wiki/translations/de/Points_Module.md +++ b/wiki/translations/de/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/de 1. REDIRECT [Points\_Workbench/de](Points_Workbench/de.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/de diff --git a/wiki/translations/de/Points_PolyCut.md b/wiki/translations/de/Points_PolyCut.md index aa6803c594..524dda7f85 100644 --- a/wiki/translations/de/Points_PolyCut.md +++ b/wiki/translations/de/Points_PolyCut.md @@ -5,6 +5,8 @@ Workbenches:[Punkte](Points_Workbench/de.md) --- +# Points PolyCut/de + ## Beschreibung Der **Punkte PolySchnitt** Befehl schneidet Punkte aus Punktwolken aus. @@ -39,4 +41,7 @@ Der **Punkte PolySchnitt** Befehl schneidet Punkte aus Punktwolken aus. {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points PolyCut/de diff --git a/wiki/translations/de/Points_Structure.md b/wiki/translations/de/Points_Structure.md index d586534929..9c932c22ef 100644 --- a/wiki/translations/de/Points_Structure.md +++ b/wiki/translations/de/Points_Structure.md @@ -5,6 +5,8 @@ Workbenches:[Punkte](Points_Workbench/de.md) --- +# Points Structure/de + ## Beschreibung Der Befehl **Punkte strukturieren** erzeugt eine strukturierte Punktwolke aus den Punkten einer vorhandenen verstreuten Punktwolke. Eine strukturierte Punktwolke hat den Vorteil, dass die Tesselierung wesentlich einfacher ist. @@ -27,4 +29,7 @@ Siehe [Punkte konvertieren](Points_Convert/de.md). {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Structure/de diff --git a/wiki/translations/de/Points_Workbench.md b/wiki/translations/de/Points_Workbench.md index e9ddd6e44e..fa9e1c8fcd 100644 --- a/wiki/translations/de/Points_Workbench.md +++ b/wiki/translations/de/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/de - - - - - -Punkte Arbeitsbereichssymbol +# Punkte Arbeitsbereichssymbol Points Workbench/de ## Einführung @@ -51,3 +45,6 @@ Alle Werkzeuge des Punkte Arbeitsbereichs sind aus dem **Punkte** Menü erreichb }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/de diff --git a/wiki/translations/de/Post-Processing_of_FEM_Results_with_Paraview.md b/wiki/translations/de/Post-Processing_of_FEM_Results_with_Paraview.md index 5ddf7d77d1..7c030a90fc 100644 --- a/wiki/translations/de/Post-Processing_of_FEM_Results_with_Paraview.md +++ b/wiki/translations/de/Post-Processing_of_FEM_Results_with_Paraview.md @@ -1,5 +1,5 @@ # Post-Processing of FEM Results with Paraview/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic= PNachbearbeitung von FEM Ergebnissen mit ParaView |Level= Aufsteiger |Time= 120 Minuten @@ -351,4 +351,7 @@ The final result shows the major and minor principal stress vectors superimposed ## Export grafischer Ergebnisse -To export a RenderView window highlight the window and use menu option **File > Save Screenshot** {{Tutorials navi}} {{FEM Tools navi}} +To export a RenderView window highlight the window and use menu option **File > Save Screenshot** {{Tutorials navi}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Post-Processing of FEM Results with Paraview/de diff --git a/wiki/translations/de/Power_users_hub.md b/wiki/translations/de/Power_users_hub.md index 13ab61ee47..668813d7f2 100644 --- a/wiki/translations/de/Power_users_hub.md +++ b/wiki/translations/de/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/de - +# Power users hub/de ------------------------------------------------------------------------ @@ -135,3 +134,6 @@ Auf dem [Gemeinschaftsportal](FreeCAD_Community_Portal/de.md), findet man weiter }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/de diff --git a/wiki/translations/de/Profiling.md b/wiki/translations/de/Profiling.md index 77ed888d2a..29c30c8ad7 100644 --- a/wiki/translations/de/Profiling.md +++ b/wiki/translations/de/Profiling.md @@ -1,6 +1,4 @@ # Profiling/de - - ## Beschreibung Die Profilerstellung im Code von FreeCAD hilft, Flaschenhälse in den Algorithmen zu finden, die zur Erstellung oder Manipulation von Objekten verwendet werden. @@ -41,3 +39,6 @@ kcachegrind /tmp/callgrind.out }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Profiling/de diff --git a/wiki/translations/de/Project.md b/wiki/translations/de/Project.md index d5776e738a..c47e83fa0b 100644 --- a/wiki/translations/de/Project.md +++ b/wiki/translations/de/Project.md @@ -1,2 +1,5 @@ # Project/de 1. REDIRECT [Development\_roadmap/de](Development_roadmap/de.md) + +--- +[documentation index](../README.md) > Project/de diff --git a/wiki/translations/de/Project_template.md b/wiki/translations/de/Project_template.md index 67c83b3323..db9e071906 100644 --- a/wiki/translations/de/Project_template.md +++ b/wiki/translations/de/Project_template.md @@ -1,5 +1,5 @@ # Project template/de - Diese Vorlage ist der Leitfaden für ein FreeCAD Entwicklungsprojekt. Sie folgt den Regeln des [Getting Things Done (GTD)](http://en.wikipedia.org/wiki/Getting_Things_Done#Methodology) Prozesses. Die Projekte werden im [ Entwicklungsfahrplan](Development_roadmap/de.md) gesammelt. +Diese Vorlage ist der Leitfaden für ein FreeCAD Entwicklungsprojekt. Sie folgt den Regeln des [Getting Things Done (GTD)](http://en.wikipedia.org/wiki/Getting_Things_Done#Methodology) Prozesses. Die Projekte werden im [ Entwicklungsfahrplan](Development_roadmap/de.md) gesammelt. *Beginnen wir mit der Betrachtung des natürlichen Planungsmodells. Das Natürliche Planungsmodell ist wirklich nichts Neues. Es ist nicht irgendein fantastisches neues Modell, das David Allen entwickelt hat, um uns bei der Planung und Verwaltung unserer Projekte zu unterstützen. Es ist jedoch das Planungsmodell, das David in seinem Buch Getting Things Done empfiehlt. Das natürliche Planungsmodell basiert auf der Planung, die wir täglich allein mit unserem Verstand durchführen. Denke zum Beispiel daran, wie viele Aufgaben wir Tag für Tag planen, die wir nicht einmal aufschreiben, da diese normalerweise als alltägliche Aufgaben eingestuft werden. Zum Beispiel das Anziehen oder die Fahrt zur Arbeit. All dies kann man sich als Aufgaben vorstellen, aber wir machen einfach weiter und planen sie, ohne auch nur einen Gedanken daran zu verschwenden. Wir machen uns die Planungsaspekte unseres Gehirns zunutze, die für diese natürliche Art der Planung konditioniert sind*. @@ -28,3 +28,6 @@ Der zweite Schritt ist die \"Ergebnisvisionierung\". Wenn du einen Zweck und das [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Project template/de diff --git a/wiki/translations/de/Property.md b/wiki/translations/de/Property.md index 037acf24c7..0e4a18c205 100644 --- a/wiki/translations/de/Property.md +++ b/wiki/translations/de/Property.md @@ -1,6 +1,4 @@ # Property/de - - ## Introduction @@ -135,3 +133,6 @@ They are imported and initialized in `[https://github.com/FreeCAD/FreeCAD/blob/9 }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/de diff --git a/wiki/translations/de/Property_editor.md b/wiki/translations/de/Property_editor.md index e76ff0b54e..59c2f11d9b 100644 --- a/wiki/translations/de/Property_editor.md +++ b/wiki/translations/de/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/de - - - - - - {{TOCright}} ## Einführung @@ -245,4 +239,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/de diff --git a/wiki/translations/de/PySide.md b/wiki/translations/de/PySide.md index e390802896..fb4c4e9c27 100644 --- a/wiki/translations/de/PySide.md +++ b/wiki/translations/de/PySide.md @@ -1,7 +1,4 @@ # PySide/de - - - {{TOCright}} ## Einführung @@ -75,3 +72,6 @@ Die PySide Dokumentation bezieht sich auf die Klassen im Python Stil; da Qt jedo }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide/de diff --git a/wiki/translations/de/PySide_Advanced_Examples.md b/wiki/translations/de/PySide_Advanced_Examples.md index abfbe583ea..d76ce7594f 100644 --- a/wiki/translations/de/PySide_Advanced_Examples.md +++ b/wiki/translations/de/PySide_Advanced_Examples.md @@ -1,7 +1,4 @@ # PySide Advanced Examples/de - - - {{TOCright}} ## Einführung @@ -120,3 +117,6 @@ self.dialog = FreeCADGui.PySideUic.loadUi(os.path.join(os.path.dirname(__file__) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Advanced Examples/de diff --git a/wiki/translations/de/PySide_Beginner_Examples.md b/wiki/translations/de/PySide_Beginner_Examples.md index 99012b179b..27b750d4f8 100644 --- a/wiki/translations/de/PySide_Beginner_Examples.md +++ b/wiki/translations/de/PySide_Beginner_Examples.md @@ -1,6 +1,4 @@ # PySide Beginner Examples/de - - ## Einführung Der Zweck dieser Seite ist es, Beispiele auf Anfängerniveau für die [PySide](PySide/de.md) GUI Verwalter (es gibt begleitende Seiten [Zwischen PySide Beispiele](PySide_Intermediate_Examples/de.md) und [Fortgeschrittene PySide Beispiele](PySide_Advanced_Examples/de.md)). @@ -167,3 +165,6 @@ buttonBox = QtGui.QDialogButtonBox(QtCore.Qt.Vertical) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Beginner Examples/de diff --git a/wiki/translations/de/PySide_Intermediate_Examples.md b/wiki/translations/de/PySide_Intermediate_Examples.md index e680b912c8..6cb7b6af81 100644 --- a/wiki/translations/de/PySide_Intermediate_Examples.md +++ b/wiki/translations/de/PySide_Intermediate_Examples.md @@ -1,6 +1,4 @@ # PySide Intermediate Examples/de - - ## Einführung @@ -760,3 +758,6 @@ These same commands can be executed on a user generated window, the syntax does }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Intermediate Examples/de diff --git a/wiki/translations/de/PySide_usage_snippets.md b/wiki/translations/de/PySide_usage_snippets.md index 788aed7a7e..0e69dd22e4 100644 --- a/wiki/translations/de/PySide_usage_snippets.md +++ b/wiki/translations/de/PySide_usage_snippets.md @@ -1,6 +1,4 @@ # PySide usage snippets/de - - ## Einführung Dies sind Codeschnipsel, die bei [Erstellen von Oberflächen](Dialog_creation/de.md) mit [PySide](PySide/de.md) nützlich sind. @@ -132,3 +130,6 @@ print(unicode(uniteSs, 'iso8859')) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide usage snippets/de diff --git a/wiki/translations/de/Pyramids_and_polyhedrons_Workbench.md b/wiki/translations/de/Pyramids_and_polyhedrons_Workbench.md index df16980d19..b82a55afab 100644 --- a/wiki/translations/de/Pyramids_and_polyhedrons_Workbench.md +++ b/wiki/translations/de/Pyramids_and_polyhedrons_Workbench.md @@ -1,6 +1,4 @@ # Pyramids and polyhedrons Workbench/de - - ## Beschreibung The Pyramids-and-Polyhedrons External Workbench Icon @@ -59,3 +57,6 @@ Bitte richte deine Rückmeldung, Ideen und Gedanken zu diesem Arbeitsbereich an [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Pyramids and polyhedrons Workbench/de diff --git a/wiki/translations/de/Python.md b/wiki/translations/de/Python.md index 5da7585f57..582f3205c7 100644 --- a/wiki/translations/de/Python.md +++ b/wiki/translations/de/Python.md @@ -1,5 +1,5 @@ # Python/de - **FreeCAD wurde ursprünglich für die Arbeit mit Python 2.x entwickelt. Diese Reihe endete mit der Ausgabe 2.7.18 vom 20. April 2020 und wird gefolgt von Python 3. Die zukünftige Entwicklung von FreeCAD ausschließlich mit Python 3 durchgeführt, und die Abwärtskompatibilität wird nicht unterstützt.** +**FreeCAD wurde ursprünglich für die Arbeit mit Python 2.x entwickelt. Diese Reihe endete mit der Ausgabe 2.7.18 vom 20. April 2020 und wird gefolgt von Python 3. Die zukünftige Entwicklung von FreeCAD ausschließlich mit Python 3 durchgeführt, und die Abwärtskompatibilität wird nicht unterstützt.** ## Beschreibung @@ -127,3 +127,6 @@ Structure = Arch.make_structure(Wire, name="Big pillar") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:API Documentation](Category:API_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python/de diff --git a/wiki/translations/de/PythonOCC.md b/wiki/translations/de/PythonOCC.md index cf3e70ec77..255d0405bb 100644 --- a/wiki/translations/de/PythonOCC.md +++ b/wiki/translations/de/PythonOCC.md @@ -1,6 +1,4 @@ # PythonOCC/de - - ## Beschreibung @@ -57,3 +55,6 @@ You can also self compile pythonOCC (see [instructions](https://github.com/tpavi }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PythonOCC/de diff --git a/wiki/translations/de/Python_3.md b/wiki/translations/de/Python_3.md index a6819337cd..6d2373d2f2 100644 --- a/wiki/translations/de/Python_3.md +++ b/wiki/translations/de/Python_3.md @@ -1,7 +1,4 @@ # Python 3/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -154,3 +151,6 @@ conda build . --python=3.6 --dirty [Category:User Documentation](Category:User_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Python 3/de diff --git a/wiki/translations/de/Python_Development_Environment.md b/wiki/translations/de/Python_Development_Environment.md index 1c1ca2f2cb..8a5120787f 100644 --- a/wiki/translations/de/Python_Development_Environment.md +++ b/wiki/translations/de/Python_Development_Environment.md @@ -1,5 +1,5 @@ # Python Development Environment/de - {{TOCright}} +{{TOCright}} ## Eine vereinfachte Entwicklungsumgebung für Python in FreeCAD @@ -552,3 +552,6 @@ Einige andere Verknüpfungen über IDEs für Python, die von Interesse sein kön [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Python Development Environment/de diff --git a/wiki/translations/de/Python_console.md b/wiki/translations/de/Python_console.md index 1150a0e990..3566d0a4f5 100644 --- a/wiki/translations/de/Python_console.md +++ b/wiki/translations/de/Python_console.md @@ -1,5 +1,5 @@ # Python console/de - **(Januar 2020) FreeCAD wurde ursprünglich für die Arbeit mit Python 2 entwickelt. Da Python 2 im Jahr 2020 das Ende seiner Lebensdauer erreicht hat, wird die zukünftige Entwicklung von FreeCAD ausschließlich mit Python 3 erfolgen und die Abwärtskompatibilität wird nicht unterstützt.** +**(Januar 2020) FreeCAD wurde ursprünglich für die Arbeit mit Python 2 entwickelt. Da Python 2 im Jahr 2020 das Ende seiner Lebensdauer erreicht hat, wird die zukünftige Entwicklung von FreeCAD ausschließlich mit Python 3 erfolgen und die Abwärtskompatibilität wird nicht unterstützt.** ## Einleitung @@ -86,4 +86,7 @@ Ein Rechtsklick auf die Python Konsole zeigt einige Befehle an: {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Python console/de diff --git a/wiki/translations/de/Python_scripting_tutorial.md b/wiki/translations/de/Python_scripting_tutorial.md index 6445624b7b..e421c80e48 100644 --- a/wiki/translations/de/Python_scripting_tutorial.md +++ b/wiki/translations/de/Python_scripting_tutorial.md @@ -1,7 +1,4 @@ # Python scripting tutorial/de - - - {{TOCright}} ## Einführung @@ -293,3 +290,6 @@ Jetzt bist Du bereit für eine vertieftere FreeCAD Skripterstellung. Gehe weiter }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python scripting tutorial/de diff --git a/wiki/translations/de/Qt_Example.md b/wiki/translations/de/Qt_Example.md index 6c5ed46f4d..5ce1ca4b8c 100644 --- a/wiki/translations/de/Qt_Example.md +++ b/wiki/translations/de/Qt_Example.md @@ -1,5 +1,5 @@ # Qt Example/de - {{Macro/de +{{Macro/de |Name=Makro Qt Beispiel |Icon=MEPlan.png |Description=Es beschreibt Qt Befehle. @@ -798,3 +798,6 @@ MainWindow.show() Viel Spaß [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Qt Example/de diff --git a/wiki/translations/de/Quality_project.md b/wiki/translations/de/Quality_project.md index 608c79c4fd..8b6d425b02 100644 --- a/wiki/translations/de/Quality_project.md +++ b/wiki/translations/de/Quality_project.md @@ -1,7 +1,4 @@ # Quality project/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -44,3 +41,6 @@ Arbeite alle unvollendeten Befehle durch und erstelle eine Dokumentation: [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Quality project/de diff --git a/wiki/translations/de/Quantity.md b/wiki/translations/de/Quantity.md index 22ac62522f..cd801f06d3 100644 --- a/wiki/translations/de/Quantity.md +++ b/wiki/translations/de/Quantity.md @@ -1,5 +1,5 @@ # Quantity/de - Die Größe ist eine Kombination einer Fließkommazahl und einer Einheit. Sie wird überall in FreeCAD benutzt, um Parameter und alle Arten von Ein- und Ausgaben zu behandeln. +Die Größe ist eine Kombination einer Fließkommazahl und einer Einheit. Sie wird überall in FreeCAD benutzt, um Parameter und alle Arten von Ein- und Ausgaben zu behandeln. ## Allgemein @@ -303,3 +303,6 @@ from FreeCAD import Units }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Quantity/de diff --git a/wiki/translations/de/Ray_Tracing_Workbench.md b/wiki/translations/de/Ray_Tracing_Workbench.md index 5918663d35..a2f4b13336 100644 --- a/wiki/translations/de/Ray_Tracing_Workbench.md +++ b/wiki/translations/de/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/de 1. REDIRECT [Raytracing\_Workbench/de](Raytracing_Workbench/de.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/de diff --git a/wiki/translations/de/Raytracing_API_example.md b/wiki/translations/de/Raytracing_API_example.md index 5e67febd89..5e42eb9f18 100644 --- a/wiki/translations/de/Raytracing_API_example.md +++ b/wiki/translations/de/Raytracing_API_example.md @@ -1,6 +1,4 @@ # Raytracing API example/de - - ## Einleitung Die `Raytracing` und `RaytracingGui` Module bieten mehrere Methoden, um Szeneinhalte als Povray- oder Luxrender Daten zu schreiben. @@ -53,3 +51,6 @@ myCustomRenderObject.Result = "// Hello from python!" }} {{Raytracing Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing API example/de diff --git a/wiki/translations/de/Raytracing_ExportProject.md b/wiki/translations/de/Raytracing_ExportProject.md index 9a6baebd80..12bd76ce36 100644 --- a/wiki/translations/de/Raytracing_ExportProject.md +++ b/wiki/translations/de/Raytracing_ExportProject.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing ExportProject/de +
@@ -54,4 +56,7 @@ Exportiert das ausgewählte Raytracing Projekt in eine Datei. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing ExportProject/de diff --git a/wiki/translations/de/Raytracing_InsertPart.md b/wiki/translations/de/Raytracing_InsertPart.md index 3c04670339..7e72151de6 100644 --- a/wiki/translations/de/Raytracing_InsertPart.md +++ b/wiki/translations/de/Raytracing_InsertPart.md @@ -9,6 +9,8 @@ SeeAlso: --- +# Raytracing InsertPart/de +
@@ -57,4 +59,7 @@ Einfügen einer Ansicht eines Teils in ein Raytracing Projekt. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing InsertPart/de diff --git a/wiki/translations/de/Raytracing_Lux.md b/wiki/translations/de/Raytracing_Lux.md index f755b2b569..73a687f4ff 100644 --- a/wiki/translations/de/Raytracing_Lux.md +++ b/wiki/translations/de/Raytracing_Lux.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing Lux/de +
@@ -61,4 +63,7 @@ Zusätzliche Projektkonfigurationen würden die Definition von zusätzlichen Vor {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Lux/de diff --git a/wiki/translations/de/Raytracing_Module.md b/wiki/translations/de/Raytracing_Module.md index 290d334f3a..c9375b250f 100644 --- a/wiki/translations/de/Raytracing_Module.md +++ b/wiki/translations/de/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/de 1. REDIRECT [Raytracing\_Workbench/de](Raytracing_Workbench/de.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/de diff --git a/wiki/translations/de/Raytracing_New.md b/wiki/translations/de/Raytracing_New.md index 93e3f80fa1..0348fadf94 100644 --- a/wiki/translations/de/Raytracing_New.md +++ b/wiki/translations/de/Raytracing_New.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing New/de + @@ -69,4 +71,7 @@ Zusätzliche Projektkonfigurationen würden die Definition von zusätzlichen Vor {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing New/de diff --git a/wiki/translations/de/Raytracing_Preferences.md b/wiki/translations/de/Raytracing_Preferences.md index 280eab47a3..fba559639f 100644 --- a/wiki/translations/de/Raytracing_Preferences.md +++ b/wiki/translations/de/Raytracing_Preferences.md @@ -1,5 +1,5 @@ # Raytracing Preferences/de - The preferences screen of the [Raytracing Workbench](Raytracing_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → Raytracing**. +The preferences screen of the [Raytracing Workbench](Raytracing_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → Raytracing**. There is only one tab: Raytracing. @@ -13,3 +13,6 @@ There is only one tab: Raytracing. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Preferences/de diff --git a/wiki/translations/de/Raytracing_Render.md b/wiki/translations/de/Raytracing_Render.md index 0e24909cff..1cd0a5ec0e 100644 --- a/wiki/translations/de/Raytracing_Render.md +++ b/wiki/translations/de/Raytracing_Render.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing Render/de + @@ -50,4 +52,7 @@ Momentan werden nur POV-Ray und Luxrender unterstützt. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Render/de diff --git a/wiki/translations/de/Raytracing_ResetCamera.md b/wiki/translations/de/Raytracing_ResetCamera.md index a937b88cb6..1d167f53a2 100644 --- a/wiki/translations/de/Raytracing_ResetCamera.md +++ b/wiki/translations/de/Raytracing_ResetCamera.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Raytracing ResetCamera/de + @@ -67,4 +69,7 @@ Setzt die Kamera des ausgewählten Raytracingprojekts auf die aktuelle Ansicht. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing ResetCamera/de diff --git a/wiki/translations/de/Raytracing_Workbench.md b/wiki/translations/de/Raytracing_Workbench.md index 619a73841c..1704039e14 100644 --- a/wiki/translations/de/Raytracing_Workbench.md +++ b/wiki/translations/de/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/de - - - **Der Arbeitsbereich Strahlverfolgung ist im Wesentlichen veraltet. Eine Neuentwicklung findet in der [https://github.com/FreeCAD/FreeCAD-render Arbeitsbereich Rendern] statt, die als ihr Ersatz gedacht ist. Dieser Arbeitsbereich ist vollständig in Python programmiert, so dass sie viel einfacher zu erweitern ist. Nichtsdestotrotz sind die Informationen auf dieser Seite im Allgemeinen für den neuen Arbeitsbereich nützlich, da beide Module grundsätzlich gleich funktionieren. @@ -155,3 +152,6 @@ Diese Seiten beziehen sich auf einen in C++ programmierten Ersatzarbeitsbereich, }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/de diff --git a/wiki/translations/de/Raytracing_WriteCamera.md b/wiki/translations/de/Raytracing_WriteCamera.md index 7d631a377d..139628ee67 100644 --- a/wiki/translations/de/Raytracing_WriteCamera.md +++ b/wiki/translations/de/Raytracing_WriteCamera.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing WriteCamera/de + @@ -44,4 +46,7 @@ Exportiert die aktuellen Kameraeigenschaften in eine pov-Datei zur Verwendung in {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteCamera/de diff --git a/wiki/translations/de/Raytracing_WritePart.md b/wiki/translations/de/Raytracing_WritePart.md index fe6d2489f3..89678271c0 100644 --- a/wiki/translations/de/Raytracing_WritePart.md +++ b/wiki/translations/de/Raytracing_WritePart.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Raytracing WritePart/de + @@ -41,4 +43,7 @@ Exportiert das ausgewählte Teil in eine pov-Datei zur Verwendung in einem POV-R {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WritePart/de diff --git a/wiki/translations/de/Raytracing_WriteView.md b/wiki/translations/de/Raytracing_WriteView.md index 2e0f53948b..b4882b7bf2 100644 --- a/wiki/translations/de/Raytracing_WriteView.md +++ b/wiki/translations/de/Raytracing_WriteView.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Raytracing WriteView/de + @@ -43,4 +45,7 @@ Exportiert die aktuellen Ansicht Eigenschaften in eine pov-Datei für die Verwen {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteView/de diff --git a/wiki/translations/de/Raytracing_project.md b/wiki/translations/de/Raytracing_project.md index 7d4ff1fa28..81fcba3a92 100644 --- a/wiki/translations/de/Raytracing_project.md +++ b/wiki/translations/de/Raytracing_project.md @@ -1,7 +1,4 @@ # Raytracing project/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -82,3 +79,6 @@ Featured is a part that was creating using PartDesign/Sketcher then rendered usi [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing project/de diff --git a/wiki/translations/de/Raytracing_templates.md b/wiki/translations/de/Raytracing_templates.md index 8350a094a4..d2c142a690 100644 --- a/wiki/translations/de/Raytracing_templates.md +++ b/wiki/translations/de/Raytracing_templates.md @@ -1,6 +1,4 @@ # Raytracing templates/de - - ## Einführung Die [Arbeitsbereich Strahlverfolgung](Raytracing_Workbench/de.md) kommt mit einigen Vorlagen für Povray und Luxrender, aber du kannst leicht deine eigenen erstellen. Alles, was du tun musst, ist, eine Szenendatei für den gegebenen Renderer zu erstellen und sie dann manuell mit einem Texteditor zu bearbeiten, um spezielle Tags einzufügen, die FreeCAD erkennt und wo der Inhalt (Kamera- und Objektdaten) eingefügt wird. @@ -60,3 +58,5 @@ Note that in luxrender, the objects stored in a scene file can define transforma {{Userdocnavi/de}} +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing templates/de diff --git a/wiki/translations/de/Raytracing_tutorial.md b/wiki/translations/de/Raytracing_tutorial.md index 0e3776f52e..f65e3beb8c 100644 --- a/wiki/translations/de/Raytracing_tutorial.md +++ b/wiki/translations/de/Raytracing_tutorial.md @@ -1,6 +1,4 @@ # Raytracing tutorial/de - - ## Raytracing Workbench @@ -133,4 +131,7 @@ Wir sind nun fertig mit der grundlegenden Vorgehensweise mit dem Arbeitsbereich {{Tutorials navi -}} {{Raytracing Tools navi}} +}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing tutorial/de diff --git a/wiki/translations/de/Reinforcement_API.md b/wiki/translations/de/Reinforcement_API.md index 962df0ba03..ab139ca635 100644 --- a/wiki/translations/de/Reinforcement_API.md +++ b/wiki/translations/de/Reinforcement_API.md @@ -1,5 +1,5 @@ # Reinforcement API/de - **(November 2018) Die [Bewehrung Erweiterung](Reinforcement_Addon/de.md) wird getrennt vom [Arch Arbeitsbereich](Arch_Workbench/de.md) entwickelt. Sein Code und seine API werden im [https://github.com/amrit3701/FreeCAD-Reinforcement FreeCAD Bewehrung ] Repositorium bereitgestellt, das vom Haupt-Repositorium von FreeCAD getrennt ist.** +**(November 2018) Die [Bewehrung Erweiterung](Reinforcement_Addon/de.md) wird getrennt vom [Arch Arbeitsbereich](Arch_Workbench/de.md) entwickelt. Sein Code und seine API werden im [https://github.com/amrit3701/FreeCAD-Reinforcement FreeCAD Bewehrung ] Repositorium bereitgestellt, das vom Haupt-Repositorium von FreeCAD getrennt ist.** Siehe auch die [Arch API](Arch_API/de.md) für die Haupt [Arch Arbeitsbereichsfunktionen](Arch_Workbench/de.md). @@ -17,3 +17,6 @@ import HelicalRebar [Category:API](Category:API.md) [Category:Reinforcement](Category:Reinforcement.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Reinforcement API/de diff --git a/wiki/translations/de/Reinforcement_Addon.md b/wiki/translations/de/Reinforcement_Addon.md index 16d914250d..b746cd0dc5 100644 --- a/wiki/translations/de/Reinforcement_Addon.md +++ b/wiki/translations/de/Reinforcement_Addon.md @@ -1,6 +1,4 @@ # Reinforcement Addon/de - - ## Einleitung Das [Armierung Erweiterung](Reinforcement_Addon/de.md) ergänzt die [Arch Arbeitsbereich](Arch_Workbench/de.md) durch neue Schnittstellen und Voreinstellungen für die Erstellung gängiger Bewehrungsarten zur Verwendung mit [Arch Strukturen](Arch_Structure/de.md). @@ -43,3 +41,6 @@ Neue Arbeitsbereiche sind in Entwicklung, bleib dran! [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Reinforcement](Category:Reinforcement.md) > Reinforcement Addon/de diff --git a/wiki/translations/de/Reinforcement_Bar_Bending_Schedule.md b/wiki/translations/de/Reinforcement_Bar_Bending_Schedule.md index 0e6180b5f2..2c7a3ab2c8 100644 --- a/wiki/translations/de/Reinforcement_Bar_Bending_Schedule.md +++ b/wiki/translations/de/Reinforcement_Bar_Bending_Schedule.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar BOM](Arch_Rebar_BOM.md), [Arch Rebar Reinforcement Drawing](Arch_Rebar_Drawing_Dimensioning.md) --- +# Reinforcement Bar Bending Schedule/de + ## Beschreibung The [Bar Bending Schedule](Reinforcement_Bar_Bending_Schedule.md) tool allows the user to create the bar bending schedule of reinforcing bars. @@ -356,3 +358,6 @@ BBSfunc.getBarBendingSchedule( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Reinforcement Bar Bending Schedule/de diff --git a/wiki/translations/de/Release_notes_0.11.md b/wiki/translations/de/Release_notes_0.11.md index 5fc7ec3668..c62ddfb74e 100644 --- a/wiki/translations/de/Release_notes_0.11.md +++ b/wiki/translations/de/Release_notes_0.11.md @@ -65,3 +65,6 @@ Ein Bildschirmfoto der Version 0.11 {{languages/de | {{en|Release_notes_0.11}} {{es|Release_notes_0.11/es}} {{fr|Release_notes_0.11/fr}} {{it|Release_notes_0.11/it}} {{pl|Release_notes_0.11/pl}} {{ru|Release_notes_0.11/ru}} }} [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.11/de diff --git a/wiki/translations/de/Release_notes_0.13.md b/wiki/translations/de/Release_notes_0.13.md index 9342b0de86..6e7e3ab549 100644 --- a/wiki/translations/de/Release_notes_0.13.md +++ b/wiki/translations/de/Release_notes_0.13.md @@ -1,5 +1,5 @@ # Release notes 0.13/de - Dieses ist die Übersicht über die interessantesten Neuerungen bzw. Änderungen in FreeCAD seit der letzten Version. Siehe [hier](http://www.freecadweb.org/tracker/changelog_page.php) für die vollständige Liste der Änderungen. +Dieses ist die Übersicht über die interessantesten Neuerungen bzw. Änderungen in FreeCAD seit der letzten Version. Siehe [hier](http://www.freecadweb.org/tracker/changelog_page.php) für die vollständige Liste der Änderungen. Ältere Versionen: [0.12](Release_notes_0.12/de.md) - [0.11](Release_notes_0.11/de.md) @@ -184,3 +184,6 @@ dieses Werkzeug ist in der Lage, einen komplexen Satz von Oberflächen oder Fest - Dieser brandneue (experimentelle) Arbeitsbereich verschafft FreeCAD die Fähigkeit, OpenSCAD-Dateien zu importieren. Dieses Datei-Format ist sehr beliebt in der RepRap-Community und bei der digital designs sharing site (Webseite mit öffentlich verfügbaren 3D-Entwürfen) Thingiverse. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.13/de diff --git a/wiki/translations/de/Release_notes_0.14.md b/wiki/translations/de/Release_notes_0.14.md index a36c55112e..255a55ebb8 100644 --- a/wiki/translations/de/Release_notes_0.14.md +++ b/wiki/translations/de/Release_notes_0.14.md @@ -1,6 +1,4 @@ # Release notes 0.14/de - - FreeCAD 0.14 wurde am 1. Juli 2014 veröffentlicht. Diese Release notes sind eine Zusammenfassung der wichtigsten Entwicklungen in FreeCAD seit der letzten Version 0.13. Für eine vollständige Liste aller Änderungen siehe [den Mantis Changelog](http://www.freecadweb.org/tracker/changelog_page.php). Alte Versionen: [0.13](Release_notes_0.13/de.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11/de.md) @@ -232,3 +230,6 @@ Viel Zeit wurde in die Arbeit an FreeCAD und der Arbeit an [IfcOpenShell](http:/ Die vollständige Liste aller Bugfixes und Neuen Funtionen kann [hier](http://freecadweb.org/tracker/changelog_page.php) nachgelesen werden. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.14/de diff --git a/wiki/translations/de/Release_notes_0.15.md b/wiki/translations/de/Release_notes_0.15.md index 12d99c51fc..49afce42a6 100644 --- a/wiki/translations/de/Release_notes_0.15.md +++ b/wiki/translations/de/Release_notes_0.15.md @@ -1,5 +1,5 @@ # Release notes 0.15/de - FreeCAD 0.15 wurde am 8. April 2015 veröffentlicht. Dies ist eine Zusammenfassung der interessantesten Entwicklungen. Eine komplette Liste der Änderungen kann unter [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php) gefunden werden. Ältere Versionen finden sich unter: [0.14](Release_notes_0.14/de.md) - [0.13](Release_notes_0.13/de.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11/de.md) +FreeCAD 0.15 wurde am 8. April 2015 veröffentlicht. Dies ist eine Zusammenfassung der interessantesten Entwicklungen. Eine komplette Liste der Änderungen kann unter [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php) gefunden werden. Ältere Versionen finden sich unter: [0.14](Release_notes_0.14/de.md) - [0.13](Release_notes_0.13/de.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11/de.md) @@ -152,3 +152,6 @@ Das [WorkFeature Macro](https://github.com/Rentlau/WorkFeature) fügt ein breite [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.15/de diff --git a/wiki/translations/de/Release_notes_0.16.md b/wiki/translations/de/Release_notes_0.16.md index d3212b8e8b..f4d23db684 100644 --- a/wiki/translations/de/Release_notes_0.16.md +++ b/wiki/translations/de/Release_notes_0.16.md @@ -1,5 +1,5 @@ # Release notes 0.16/de - FreeCAD 0.16 wurde am 18. April 2016 veröffentlicht, man kann es von der [Github](https://github.com/FreeCAD/FreeCAD/releases)-Seite herunterladen. Dies ist eine Zusammenfassung der interessantesten Änderungen. Die komplette Liste der Änderungen kann man im [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php) finden. Ältere Versionen: [0.15](Release_notes_0.15/de.md) - [0.14](Release_notes_0.14/de.md) - [0.13](Release_notes_0.13/de.md) - [0.12](Release_notes_0.12/de.md) - [0.11](Release_notes_0.11/de.md) +FreeCAD 0.16 wurde am 18. April 2016 veröffentlicht, man kann es von der [Github](https://github.com/FreeCAD/FreeCAD/releases)-Seite herunterladen. Dies ist eine Zusammenfassung der interessantesten Änderungen. Die komplette Liste der Änderungen kann man im [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php) finden. Ältere Versionen: [0.15](Release_notes_0.15/de.md) - [0.14](Release_notes_0.14/de.md) - [0.13](Release_notes_0.13/de.md) - [0.12](Release_notes_0.12/de.md) - [0.11](Release_notes_0.11/de.md) @@ -121,3 +121,6 @@ Eine Reihe neuer [addons workbenches](https://github.com/FreeCAD/FreeCAD-addons) ![](images/Macro_installer_02.jpg ) [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.16/de diff --git a/wiki/translations/de/Release_notes_0.17.md b/wiki/translations/de/Release_notes_0.17.md index fd618daf0d..d037d4920a 100644 --- a/wiki/translations/de/Release_notes_0.17.md +++ b/wiki/translations/de/Release_notes_0.17.md @@ -1,7 +1,4 @@ # Release notes 0.17/de - - -
*Diese Version von FreeCAD ist unserem Freund Roland Frank gewidmet, [der uns im Jahr 2017 verlassen hat](https://forum.freecadweb.org/viewtopic.php?f=8&t=25673). Er war ein aktives und sehr geschätztes Mitglied des FreeCAD-Forums und seine Video-Tutorien auf den Youtube-Kanälen [Learn FreeCAD](https://www.youtube.com/watch?v=_HEvhclR4-o&list=PL6fZ68Cq3L8k0JhxnIVjZQN26cn9idJrj) und [BPLFRE](https://www.youtube.com/watch?v=m49z0weonog&list=PLsrwVwvqYb8G4Ri0iz1JIebsOXkgoytAY) haben vielen Menschen geholfen sich in FreeCAD zurechtzufinden.* @@ -320,3 +317,6 @@ Einige der neuen Module, die von der FreeCAD-Gemeinschaft geschaffen wurden. - [Kicad StepUp Workbench](https://www.freecadweb.org/wiki/KicadStepUp_Workbench) is aimed to help KiCad and FreeCAD users in ECAD and MCAD collaboration. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.17/de diff --git a/wiki/translations/de/Release_notes_0.18.md b/wiki/translations/de/Release_notes_0.18.md index 29135088db..fae5e68db3 100644 --- a/wiki/translations/de/Release_notes_0.18.md +++ b/wiki/translations/de/Release_notes_0.18.md @@ -1,6 +1,4 @@ # Release notes 0.18/de - - FreeCAD 0.18 wurde am 12. März 2019 veröffentlicht, hole es von der [Download](Download/de.md) Seite. Dies ist eine Zusammenfassung der interessantesten Änderungen. Die vollständige Liste der Änderungen findest du im [MantisBT bugtracker FC 0.18 changelog](https://www.freecadweb.org/tracker/changelog_page.php?version_id=78). Ältere FreeCAD Versionshinweise findest du unter [Liste der Funktionen](Feature_list#Release_notes/de.md). @@ -218,3 +216,6 @@ Einige der neuen Gemeinschaftsmodule, die während des Entwicklungszyklus von 0. - [Arbeitsbereich Defeaturing](Defeaturing_Workbench/de.md) ist bestimmt für die Bearbeitung importierter STEP Modelle, das Entfernen der ausgewählten Funktionen aus dem Modell [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.18/de diff --git a/wiki/translations/de/Release_notes_0.19.md b/wiki/translations/de/Release_notes_0.19.md index 3531be6df2..e769756690 100644 --- a/wiki/translations/de/Release_notes_0.19.md +++ b/wiki/translations/de/Release_notes_0.19.md @@ -1,5 +1,5 @@ # Release notes 0.19/de - {{TOCright}} +{{TOCright}} **FreeCAD 0.19** wurde veröffentlicht am **20.März 2021**, hole es von der [Download-Seite](Download/de.md). Dies ist eine Zusammenfassung der interessantesten Änderungen. Die vollständige Liste der Änderungen kann im [MantisBT bugtracker FC 0.19 Änderungsprotokoll](https://www.freecadweb.org/tracker/changelog_page.php?version_id=78) eingesehen werden. @@ -789,3 +789,6 @@ Dies sind die neuen Arbeitsbereiche, die in diesem Entwicklungszyklus erstellt w +-------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.19/de diff --git a/wiki/translations/de/Release_notes_0.20.md b/wiki/translations/de/Release_notes_0.20.md index e323d48b18..608f98ecde 100644 --- a/wiki/translations/de/Release_notes_0.20.md +++ b/wiki/translations/de/Release_notes_0.20.md @@ -1,7 +1,4 @@ # Release notes 0.20/de - - - **Diese Seite verfolgt neue Funktionen, die der Entwicklungsversion von FreeCAD, die derzeit 0.20 ist, hinzugefügt werden. Wenn das Einfrieren der Funktionen von 0.20 eintritt, lösche diese Meldungen und füge keine weiteren Funktionen zu dieser Seite hinzu. FreeCAD 0.20 wird voraussichtlich im Jahr 202x veröffentlicht werden.** @@ -243,3 +240,6 @@ There is also a text box for feedback of OpenSCAD errors. ### Wege, PyTrails, Abbiege, pivy\_trackers, und Geomatik [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.20/de diff --git a/wiki/translations/de/Release_notes_011.md b/wiki/translations/de/Release_notes_011.md index 2fee614900..9fb0bf497f 100644 --- a/wiki/translations/de/Release_notes_011.md +++ b/wiki/translations/de/Release_notes_011.md @@ -1,2 +1,5 @@ # Release notes 011/de 1. REDIRECT [Release notes 0.11/de](Release_notes_0.11/de.md) + +--- +[documentation index](../README.md) > Release notes 011/de diff --git a/wiki/translations/de/Release_notes_013.md b/wiki/translations/de/Release_notes_013.md index 7c22f1eb5c..c184ac4995 100644 --- a/wiki/translations/de/Release_notes_013.md +++ b/wiki/translations/de/Release_notes_013.md @@ -1,2 +1,5 @@ # Release notes 013/de 1. REDIRECT [Release\_notes\_0.13/de](Release_notes_0.13/de.md) + +--- +[documentation index](../README.md) > Release notes 013/de diff --git a/wiki/translations/de/Render_project.md b/wiki/translations/de/Render_project.md index bb4af251a8..523eb71b8f 100644 --- a/wiki/translations/de/Render_project.md +++ b/wiki/translations/de/Render_project.md @@ -1,5 +1,5 @@ # Render project/de - **(2020) DDiese Seite bezieht sich auf einen Versuch, die [Arbeitsbereich Strahlenverfolgung](Raytracing_Workbench/de.md) zu aktualisieren, der um 2012 vorgeschlagen wurde. Der ursprüngliche Autor hat die Implementierung nie abgeschlossen, daher sind diese Informationen veraltet und sollten nicht als aktuell betrachtet werden. +**(2020) DDiese Seite bezieht sich auf einen Versuch, die [Arbeitsbereich Strahlenverfolgung](Raytracing_Workbench/de.md) zu aktualisieren, der um 2012 vorgeschlagen wurde. Der ursprüngliche Autor hat die Implementierung nie abgeschlossen, daher sind diese Informationen veraltet und sollten nicht als aktuell betrachtet werden. Neue Entwicklungen finden in der [https://github.com/FreeCAD/FreeCAD-render Render Arbeitsbereich] statt, einem vollständigen Python Ersatz für die [Arbeitsbereich Strahlenverfolgung](Raytracing_Workbench/de.md). @@ -121,3 +121,6 @@ See also [Raytracing tutorial](Raytracing_tutorial/de.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Render](Category:Render.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Render project/de diff --git a/wiki/translations/de/Report_view.md b/wiki/translations/de/Report_view.md index 20926cd3f2..e8e6e8a804 100644 --- a/wiki/translations/de/Report_view.md +++ b/wiki/translations/de/Report_view.md @@ -1,6 +1,4 @@ # Report view/de - - ## Einleitung Die [Berichtsansicht](Report_view/de.md) ist eine Konsole, die Textnachrichten von FreeCAD Prozessen und Werkzeugen anzeigt. Sie ist im Menü **{{StdMenu|[Ansicht](Std_View_Menu/de.md)** verfügbar. → Konsole → Berichtsansicht}}. @@ -53,4 +51,7 @@ Rechtsklick auf die Berichtsansicht zeigt einige Befehle: {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Report view/de diff --git a/wiki/translations/de/Resource_framework_project.md b/wiki/translations/de/Resource_framework_project.md index ed928429ac..64747f77ad 100644 --- a/wiki/translations/de/Resource_framework_project.md +++ b/wiki/translations/de/Resource_framework_project.md @@ -1,7 +1,4 @@ # Resource framework project/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -123,3 +120,6 @@ A class design for the Resource framwork. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Resource framework project/de diff --git a/wiki/translations/de/Reverse_Engineering_Workbench.md b/wiki/translations/de/Reverse_Engineering_Workbench.md index b239c0f97f..9e3c42fccf 100644 --- a/wiki/translations/de/Reverse_Engineering_Workbench.md +++ b/wiki/translations/de/Reverse_Engineering_Workbench.md @@ -1,10 +1,4 @@ -# Reverse Engineering Workbench/de - - - - - -Arbeitsbereichssymbol Rekonstruktionsingenieurwissenschaften +# Arbeitsbereichssymbol Rekonstruktionsingenieurwissenschaften Reverse Engineering Workbench/de ## Introduction @@ -37,3 +31,6 @@ Mit geeigneten Themen im Forum, die diesen Arbeitsbereich behandeln, verknüpfen [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench/de diff --git a/wiki/translations/de/Robot_API_example.md b/wiki/translations/de/Robot_API_example.md index 6731f6717f..b2fc69ab78 100644 --- a/wiki/translations/de/Robot_API_example.md +++ b/wiki/translations/de/Robot_API_example.md @@ -1,6 +1,4 @@ # Robot API example/de - - ## Einleitung Dieses Beispiel basiert auf dem [RobotExample.py](https://github.com/FreeCAD/FreeCAD_sf_master/blob/master/src/Mod/Robot/RobotExample.py) Beispiel. @@ -169,3 +167,6 @@ for w in App.activeDocument().Trajectory.Trajectory.Waypoints: {{Userdocnavi/de}} [Category:Robot API](Category:Robot_API.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot API example/de diff --git a/wiki/translations/de/Robot_CreateRobot.md b/wiki/translations/de/Robot_CreateRobot.md index cf8eddb432..3c77bd1ee8 100644 --- a/wiki/translations/de/Robot_CreateRobot.md +++ b/wiki/translations/de/Robot_CreateRobot.md @@ -1,3 +1,4 @@ +# Robot CreateRobot/de --- - GuiCommand:/de Name:Robot CreateRobot Workbenches:[[Robot_Workbench Robot]]|MenuLocation:Roboter → Roboter einfügen--- @@ -62,4 +63,7 @@ Die vordefinierten Roboter sind {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateRobot/de diff --git a/wiki/translations/de/Robot_CreateTrajectory.md b/wiki/translations/de/Robot_CreateTrajectory.md index 4907e35e05..70734e32a6 100644 --- a/wiki/translations/de/Robot_CreateTrajectory.md +++ b/wiki/translations/de/Robot_CreateTrajectory.md @@ -1,3 +1,4 @@ +# Robot CreateTrajectory/de --- - GuiCommand:/de Name:Robot CreateTrajectory Workbenches:[[Robot_Workbench/de Robot]]|MenuLocation:Roboter → Erstelle Bwegungsbahn--- @@ -38,4 +39,7 @@ Klicken Sie [Robot](Robot_Workbench.md) > Robot tutorial/de diff --git a/wiki/translations/de/STEP_project.md b/wiki/translations/de/STEP_project.md index c26485b186..28f32bd1a7 100644 --- a/wiki/translations/de/STEP_project.md +++ b/wiki/translations/de/STEP_project.md @@ -1,7 +1,4 @@ # STEP project/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -100,3 +97,6 @@ Hier einige Verweise mit Informationen: [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > STEP project/de diff --git a/wiki/translations/de/SVG.md b/wiki/translations/de/SVG.md index f4f1a97014..a3021894c2 100644 --- a/wiki/translations/de/SVG.md +++ b/wiki/translations/de/SVG.md @@ -1,5 +1,5 @@ # SVG/de - {{TOCright}} +{{TOCright}} ## Beschreibung @@ -24,3 +24,6 @@ FreeCAD ist primär eine 3D Modellierungsanwendung und besitzt daher nicht viele [Category:Draft](Category:Draft.md) [Category:TechDraw](Category:TechDraw.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Category:Draft.md) > SVG/de diff --git a/wiki/translations/de/Sandbox:TestWikiPage.md b/wiki/translations/de/Sandbox:TestWikiPage.md index 2664879c29..c9351471e8 100644 --- a/wiki/translations/de/Sandbox:TestWikiPage.md +++ b/wiki/translations/de/Sandbox:TestWikiPage.md @@ -1,6 +1,4 @@ # Sandbox:TestWikiPage/de - - ### Überblick = Diese Seite kann verwendet werden, um die Wiki Markierung vor der Bearbeitung einer echten Seite auszuprobieren. Fühle dich frei, hier zu tun, was immer du willst! @@ -86,3 +84,6 @@ [Category:Documentation](Category:Documentation.md) [Category:Wiki](Category:Wiki.md) [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:TestWikiPage/de diff --git a/wiki/translations/de/Scenegraph.md b/wiki/translations/de/Scenegraph.md index 7cee95ec36..fa606c34f3 100644 --- a/wiki/translations/de/Scenegraph.md +++ b/wiki/translations/de/Scenegraph.md @@ -1,7 +1,4 @@ # Scenegraph/de - - - {{TOCright}} ## Einführung @@ -82,3 +79,6 @@ See [Coin3d snippets](Coin3d_snippets.md) courtesy of MariwanJ\'s research for t }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scenegraph/de diff --git a/wiki/translations/de/Scientific_literature.md b/wiki/translations/de/Scientific_literature.md index d8a3cca6d3..fd950414ed 100644 --- a/wiki/translations/de/Scientific_literature.md +++ b/wiki/translations/de/Scientific_literature.md @@ -1,6 +1,4 @@ # Scientific literature/de - - ## Beschreibung Diese Seite sammelt einige veröffentlichte Artikel, die sich auf das FreeCAD-System beziehen oder dieses verwenden. @@ -17,3 +15,6 @@ Die meisten dieser Artikel sind frei zugänglich. }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Scientific literature/de diff --git a/wiki/translations/de/Screenshots.md b/wiki/translations/de/Screenshots.md index c03391685e..7554beb033 100644 --- a/wiki/translations/de/Screenshots.md +++ b/wiki/translations/de/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/de - {{TOCright}} +{{TOCright}} Hier gibt es einige Bildschirmfotos, die verschiedene Teile von FreeCAD zeigen. Sie sind nicht in einer bestimmten Reihenfolge angeordnet, so dass die Bilder von Ihrer tatsächlichen Version abweichen können. Siehe weitere von FreeCAD Anwendern eingereichte Bildschirmfotos auf dem [Bildschirmfoto Forumsbeitrag](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) und auf dem [\"Zeige dein Projekt hier!\" Anwender Vorzeigeprojekt Part Forum](http://forum.freecadweb.org/viewforum.php?f=24) @@ -202,3 +202,6 @@ FreeCAD läuft im Konsolenmodus (ohne GUI) Dialog zum Speichern eines Bildes in beliebigen Größen. [Category:User Documentation/de](Category:User_Documentation/de.md) [Category:Screenshots/de](Category:Screenshots/de.md) + +--- +[documentation index](../README.md) > Screenshots/de diff --git a/wiki/translations/de/Scripted_Parts:_Ball_Bearing_-_Part_1.md b/wiki/translations/de/Scripted_Parts:_Ball_Bearing_-_Part_1.md index 20f60f204e..135af3593c 100644 --- a/wiki/translations/de/Scripted_Parts:_Ball_Bearing_-_Part_1.md +++ b/wiki/translations/de/Scripted_Parts:_Ball_Bearing_-_Part_1.md @@ -1,5 +1,5 @@ # Scripted Parts: Ball Bearing - Part 1/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic= Part Scripting - Ball Bearing #1 |Level= Beginner |Time= 30 min @@ -142,3 +142,6 @@ Gui.SendMsgToActiveView("ViewFit") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted Parts: Ball Bearing - Part 1/de diff --git a/wiki/translations/de/Scripted_Parts:_Ball_Bearing_-_Part_2.md b/wiki/translations/de/Scripted_Parts:_Ball_Bearing_-_Part_2.md index b154ce8313..2d6fbf0969 100644 --- a/wiki/translations/de/Scripted_Parts:_Ball_Bearing_-_Part_2.md +++ b/wiki/translations/de/Scripted_Parts:_Ball_Bearing_-_Part_2.md @@ -1,5 +1,5 @@ # Scripted Parts: Ball Bearing - Part 2/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic= Part Scripting - Ball Bearing #2 |Level= Beginner |Time= 30 min @@ -177,3 +177,6 @@ Gui.SendMsgToActiveView("ViewFit") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted Parts: Ball Bearing - Part 2/de diff --git a/wiki/translations/de/Scripted_objects.md b/wiki/translations/de/Scripted_objects.md index cd15c37694..b783ad8929 100644 --- a/wiki/translations/de/Scripted_objects.md +++ b/wiki/translations/de/Scripted_objects.md @@ -1,7 +1,4 @@ # Scripted objects/de - - - {{TOCright}} ## Einführung @@ -908,3 +905,6 @@ Zusätzlich zu den hier vorgestellten Beispielen solltedz du einen Blick in den }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects/de diff --git a/wiki/translations/de/Scripted_objects_migration.md b/wiki/translations/de/Scripted_objects_migration.md index 31712ad250..b1b7b82f21 100644 --- a/wiki/translations/de/Scripted_objects_migration.md +++ b/wiki/translations/de/Scripted_objects_migration.md @@ -1,6 +1,4 @@ # Scripted objects migration/de - - ## Einführung [Geskriptete Objekte](Scripted_objects/de.md) werden jedes Mal neu aufgebaut, wenn ein [FCStd Dokument](File_Format_FCStd/de.md) geöffnet wird. Zu diesem Zweck behält das Dokument eine Referenz auf das Modul und die Python Klasse, die zur Erstellung des Objekts verwendet wurden, zusammen mit seinen Eigenschaften. @@ -555,3 +553,6 @@ Vermeide vorzugsweise Folgendes: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects migration/de diff --git a/wiki/translations/de/Scripted_objects_saving_attributes.md b/wiki/translations/de/Scripted_objects_saving_attributes.md index 50c8168741..baffb1bf82 100644 --- a/wiki/translations/de/Scripted_objects_saving_attributes.md +++ b/wiki/translations/de/Scripted_objects_saving_attributes.md @@ -1,7 +1,4 @@ # Scripted objects saving attributes/de - - - {{TOCright}} ## Einführung @@ -191,3 +188,6 @@ class CustomObject: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects saving attributes/de diff --git a/wiki/translations/de/Scripted_objects_with_attachment.md b/wiki/translations/de/Scripted_objects_with_attachment.md index 7c7e742828..9929f824fb 100644 --- a/wiki/translations/de/Scripted_objects_with_attachment.md +++ b/wiki/translations/de/Scripted_objects_with_attachment.md @@ -1,5 +1,5 @@ # Scripted objects with attachment/de - {{TOCright}} +{{TOCright}} ## Einführung @@ -161,3 +161,6 @@ Note: For FreeCAD 0.19 this tutorial needs a minor update: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects with attachment/de diff --git a/wiki/translations/de/Scripting.md b/wiki/translations/de/Scripting.md index 325a36d994..b889fcf0c8 100644 --- a/wiki/translations/de/Scripting.md +++ b/wiki/translations/de/Scripting.md @@ -1,2 +1,5 @@ # Scripting/de 1. REDIRECT [Power users hub/de](Power_users_hub/de.md) + +--- +[documentation index](../README.md) > Scripting/de diff --git a/wiki/translations/de/Scripting_and_macros.md b/wiki/translations/de/Scripting_and_macros.md index 23466cf0e6..72e89ce018 100644 --- a/wiki/translations/de/Scripting_and_macros.md +++ b/wiki/translations/de/Scripting_and_macros.md @@ -1,9 +1,4 @@ # Scripting and macros/de - - - - - ## Übersicht über Python Skriptseiten - Python bezogene Seiten im Handbuch: @@ -96,3 +91,6 @@ }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripting and macros/de diff --git a/wiki/translations/de/Scripting_examples.md b/wiki/translations/de/Scripting_examples.md index 537e4ae337..92fd5ac2c9 100644 --- a/wiki/translations/de/Scripting_examples.md +++ b/wiki/translations/de/Scripting_examples.md @@ -1,2 +1,5 @@ # Scripting examples/de 1. REDIRECT [Scripting\_and\_macros/de](Scripting_and_macros/de.md) + +--- +[documentation index](../README.md) > Scripting examples/de diff --git a/wiki/translations/de/Scripts.md b/wiki/translations/de/Scripts.md index ae398672cd..0373e28be5 100644 --- a/wiki/translations/de/Scripts.md +++ b/wiki/translations/de/Scripts.md @@ -1,5 +1,5 @@ # Scripts/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic=Skripten |Level=Basis |Time= @@ -312,3 +312,6 @@ Dies ist die Bedeutung des Wortes \"umständlich\", das ich zur Definition der ` }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripts/de diff --git a/wiki/translations/de/Selection_API.md b/wiki/translations/de/Selection_API.md index 40f118ad1e..39274633cf 100644 --- a/wiki/translations/de/Selection_API.md +++ b/wiki/translations/de/Selection_API.md @@ -1,7 +1,4 @@ # Selection API/de - - -
@@ -38,3 +35,6 @@ sel = FreeCADGui.Selection.getSelection() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Selection API/de diff --git a/wiki/translations/de/Selection_methods.md b/wiki/translations/de/Selection_methods.md index 82691f747b..7ae308c62c 100644 --- a/wiki/translations/de/Selection_methods.md +++ b/wiki/translations/de/Selection_methods.md @@ -1,10 +1,4 @@ # Selection methods/de - - - - - - {{TOCright}} ## Überblick @@ -92,8 +86,5 @@ Gui.Selection.addSelectionGate("SELECT Part::Feature SUBELEMENT Edge") See the [Source documentation](Source_documentation.md) and [Std PythonHelp](Std_PythonHelp.md) for more help on using these tools. - - - - - +--- +[documentation index](../README.md) > Selection methods/de diff --git a/wiki/translations/de/Selection_view.md b/wiki/translations/de/Selection_view.md index c570d486ae..c2236123c8 100644 --- a/wiki/translations/de/Selection_view.md +++ b/wiki/translations/de/Selection_view.md @@ -1,6 +1,4 @@ # Selection view/de - - ## Einleitung @@ -79,4 +77,7 @@ Starting from v0.19, the **picked object list** checkbox is available. If this i {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Selection view/de diff --git a/wiki/translations/de/Shape.md b/wiki/translations/de/Shape.md index 5b3e553403..91746a9793 100644 --- a/wiki/translations/de/Shape.md +++ b/wiki/translations/de/Shape.md @@ -1,6 +1,4 @@ # Shape/de - - ## Einleitung In FreeCAD wird das Wort \"[Form](Shape/de.md)\" normalerweise verwendet, um sich auf eine [Part TopoForm](Part_TopoShape/de.md) (`Part::TopoShape` Klasse) zu beziehen , ein Objekttyp, der einem Element seine 3D geometrische und parametrische Darstellung gibt (Würfel, Pyramide, Kugel, Zylinder, Vereinigung usw.). @@ -36,3 +34,6 @@ Wenn jedoch mehr Präzision erforderlich ist, muss eine Unterscheidung getroffen {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Shape/de diff --git a/wiki/translations/de/SheetMetal_AddBase.md b/wiki/translations/de/SheetMetal_AddBase.md index aa30b46e73..5470eeb483 100644 --- a/wiki/translations/de/SheetMetal_AddBase.md +++ b/wiki/translations/de/SheetMetal_AddBase.md @@ -7,6 +7,8 @@ Shortcut:**C** **B** --- +# SheetMetal AddBase/de + ## Beschreibung Der Befehl [Basisprofil erstellen](SheetMetal_AddBase/de.md) erzeugt ein Blechprofil aus einer Skizze. @@ -58,3 +60,6 @@ Ein SheetMetal-BaseBend-Objekt wird von einem [Part-Formelement](Part_Feature/de [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddBase/de diff --git a/wiki/translations/de/SheetMetal_AddCornerRelief.md b/wiki/translations/de/SheetMetal_AddCornerRelief.md index 4447fbacd4..10312b55b0 100644 --- a/wiki/translations/de/SheetMetal_AddCornerRelief.md +++ b/wiki/translations/de/SheetMetal_AddCornerRelief.md @@ -7,6 +7,8 @@ Shortcut:**C** **R** --- +# SheetMetal AddCornerRelief/de + ## Beschreibung Der Befehl [Eckentlastung hinzufügen](SheetMetal_AddCornerRelief/de.md) fügt einer Ecke einen Ausschnitt zur Eckentlastung hinzu. @@ -56,3 +58,6 @@ Ein SheetMetal-CornerRelief-Objekt wird von einem [Part-Formelement](Part_Featur [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddCornerRelief/de diff --git a/wiki/translations/de/SheetMetal_AddFoldWall.md b/wiki/translations/de/SheetMetal_AddFoldWall.md index 79e8848ba0..a0f9190826 100644 --- a/wiki/translations/de/SheetMetal_AddFoldWall.md +++ b/wiki/translations/de/SheetMetal_AddFoldWall.md @@ -7,6 +7,8 @@ Shortcut:**C** **F** --- +# SheetMetal AddFoldWall/de + ## Beschreibung Der Befehl [Abkanten](SheetMetal_AddFoldWall/de.md) kantet eine Fläche entlang einer gewählten Linie mit einem vorgegebenen Radius ab. @@ -148,3 +150,6 @@ Achtung!: Im wirklichen Leben muss die Kantung nach oben vor der Kantung nach un [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddFoldWall/de diff --git a/wiki/translations/de/SheetMetal_AddJunction.md b/wiki/translations/de/SheetMetal_AddJunction.md index 48ccf22be4..ad97eea88c 100644 --- a/wiki/translations/de/SheetMetal_AddJunction.md +++ b/wiki/translations/de/SheetMetal_AddJunction.md @@ -7,6 +7,8 @@ Shortcut:**S** **J** --- +# SheetMetal AddJunction/de + ## Beschreibung Der Befehl **Stoß hinzufügen**\... @@ -80,3 +82,6 @@ Ein SheetMetal-Junction-Objekt wird von einem [Part-Formelement](Part_Feature/de [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddJunction/de diff --git a/wiki/translations/de/SheetMetal_AddRelief.md b/wiki/translations/de/SheetMetal_AddRelief.md index dd18fcdd4d..a01be93411 100644 --- a/wiki/translations/de/SheetMetal_AddRelief.md +++ b/wiki/translations/de/SheetMetal_AddRelief.md @@ -7,6 +7,8 @@ Shortcut:**S** **R** --- +# SheetMetal AddRelief/de + ## Beschreibung Der Befehl **Entlastungsausschnitt hinzufügen**\... @@ -78,3 +80,6 @@ Ein SheetMetal-Relief-Objekt wird von einem [Part-Formelement](Part_Feature/de.m [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddRelief/de diff --git a/wiki/translations/de/SheetMetal_AddWall.md b/wiki/translations/de/SheetMetal_AddWall.md index f85acce017..cd374863bf 100644 --- a/wiki/translations/de/SheetMetal_AddWall.md +++ b/wiki/translations/de/SheetMetal_AddWall.md @@ -7,6 +7,8 @@ Shortcut:**W** --- +# SheetMetal AddWall/de + ## Beschreibung Der Befehl [Kante ansetzen](SheetMetal_AddWall/de.md) erzeugt am gewählten Flächenrand eine Kante (Umbug). @@ -186,3 +188,6 @@ Fertig! [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddWall/de diff --git a/wiki/translations/de/SheetMetal_Extrude.md b/wiki/translations/de/SheetMetal_Extrude.md index 6b36f7ea90..a0fcaf264b 100644 --- a/wiki/translations/de/SheetMetal_Extrude.md +++ b/wiki/translations/de/SheetMetal_Extrude.md @@ -7,6 +7,8 @@ Shortcut:**E** --- +# SheetMetal Extrude/de + ## Beschreibung Der Befehl **Kante verlängern** erweitert eine Blechfläche. @@ -92,3 +94,6 @@ Ein SheetMetal-Extend-Objekt wird von einem [Part-Formelement](Part_Feature/de.m [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal Extrude/de diff --git a/wiki/translations/de/SheetMetal_Forming.md b/wiki/translations/de/SheetMetal_Forming.md index 7937b0260f..3bff66fe8e 100644 --- a/wiki/translations/de/SheetMetal_Forming.md +++ b/wiki/translations/de/SheetMetal_Forming.md @@ -7,6 +7,8 @@ Shortcut:**M** **F** --- +# SheetMetal Forming/de + ## Beschreibung DerBefehl **Prägen** erstellt ein geprägtes Formelement in einer Blechfläche und verwendet dafür ein separates Festkörperobjekt . @@ -166,3 +168,6 @@ Es ist hier nicht nötig mit komplanaren Skizzen zu arbeiten. [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal Forming/de diff --git a/wiki/translations/de/SheetMetal_SketchOnSheet.md b/wiki/translations/de/SheetMetal_SketchOnSheet.md index e34fb1b221..64d8edb2bc 100644 --- a/wiki/translations/de/SheetMetal_SketchOnSheet.md +++ b/wiki/translations/de/SheetMetal_SketchOnSheet.md @@ -7,6 +7,8 @@ Shortcut:**M** **S** --- +# SheetMetal SketchOnSheet/de + ## Beschreibung Der Befehl [Skizze auf Blech](SheetMetal_SketchOnSheet/de.md) erzeugt Ausschnitte entlang der abgekanteten Wände eines Blechobjektes. Für das Lochbild wird eine [Skizze](Sketcher_Workbench/de.md) verwendet. @@ -126,3 +128,6 @@ Dieses Dingens besteht aus einem Blechprofil mit hinzugefügten Löchern. Es m [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal SketchOnSheet/de diff --git a/wiki/translations/de/SheetMetal_UnattendedUnfold.md b/wiki/translations/de/SheetMetal_UnattendedUnfold.md index fa155e3527..f6d8da4b73 100644 --- a/wiki/translations/de/SheetMetal_UnattendedUnfold.md +++ b/wiki/translations/de/SheetMetal_UnattendedUnfold.md @@ -8,6 +8,8 @@ SeeAlso: [SheetMetal Abwickeln](SheetMetal_Unfold/de.md) --- +# SheetMetal UnattendedUnfold/de +
@@ -60,3 +62,6 @@ Siehe [Abwick [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal UnattendedUnfold/de diff --git a/wiki/translations/de/SheetMetal_Workbench.md b/wiki/translations/de/SheetMetal_Workbench.md index 4780c071d3..bc80708a35 100644 --- a/wiki/translations/de/SheetMetal_Workbench.md +++ b/wiki/translations/de/SheetMetal_Workbench.md @@ -1,8 +1,4 @@ -# SheetMetal Workbench/de - - - -Symbol des externen Arbeitsbereichs Blech +# Symbol des externen Arbeitsbereichs Blech SheetMetal Workbench/de {{TOCright}} @@ -382,3 +378,6 @@ Was macht man ? - Quellcode auf github: [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > SheetMetal Workbench/de diff --git a/wiki/translations/de/Ship_Area.md b/wiki/translations/de/Ship_Area.md index aa92b2dbf8..02f70e32f3 100644 --- a/wiki/translations/de/Ship_Area.md +++ b/wiki/translations/de/Ship_Area.md @@ -9,6 +9,8 @@ SeeAlso: --- +# Ship Area/de + ## Beschreibung Plotten der transversalen Bereichskurve @@ -29,4 +31,7 @@ Plotten der transversalen Bereichskurve {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Area/de diff --git a/wiki/translations/de/Ship_Geometries_Examples.md b/wiki/translations/de/Ship_Geometries_Examples.md index 14b40b365c..4fb0a5de8d 100644 --- a/wiki/translations/de/Ship_Geometries_Examples.md +++ b/wiki/translations/de/Ship_Geometries_Examples.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Ship Geometries Examples/de + ## Beschreibung Schiff arbeitet über **Schiffseinheiten**, die auf der bereitgestellten Geometrie erstellt werden müssen. Die Geometrie muss ein Festkörper oder ein Satz von Festkörpern sein, wobei folgende Kriterien berücksichtigt werden müssen: @@ -48,4 +50,7 @@ Um neuen Anwendern zu helfen, enthält Schiff ein Ladeprogramm für Geometriebei {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Geometries Examples/de diff --git a/wiki/translations/de/Ship_Hydrostatics.md b/wiki/translations/de/Ship_Hydrostatics.md index c9ab61fe12..95d72fd642 100644 --- a/wiki/translations/de/Ship_Hydrostatics.md +++ b/wiki/translations/de/Ship_Hydrostatics.md @@ -8,6 +8,8 @@ SeeAlso= --- +# Ship Hydrostatics/de +
@@ -41,4 +43,7 @@ When the Hydrostatics tool is executed, a task dialog is shown. Usually Hydrosta {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Hydrostatics/de diff --git a/wiki/translations/de/Ship_Loading.md b/wiki/translations/de/Ship_Loading.md index 89f97dfef1..58291ae735 100644 --- a/wiki/translations/de/Ship_Loading.md +++ b/wiki/translations/de/Ship_Loading.md @@ -9,6 +9,8 @@ SeeAlso: --- +# Ship Loading/de + ## Einführung ZUTUN @@ -27,6 +29,5 @@ ZUTUN {{Userdocnavi/de}} - - - +--- +[documentation index](../README.md) > Ship Loading/de diff --git a/wiki/translations/de/Ship_New.md b/wiki/translations/de/Ship_New.md index a11a85913d..11e71f1098 100644 --- a/wiki/translations/de/Ship_New.md +++ b/wiki/translations/de/Ship_New.md @@ -9,6 +9,8 @@ Shortcut= SeeAlso: --- +# Ship New/de +
@@ -97,4 +99,7 @@ Hinweis: Von hier an musst du **Schiff** ausgewählt haben, bevor du ein Schiffs {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship New/de diff --git a/wiki/translations/de/Ship_Outline.md b/wiki/translations/de/Ship_Outline.md index dcbeafbb91..cb20f95b54 100644 --- a/wiki/translations/de/Ship_Outline.md +++ b/wiki/translations/de/Ship_Outline.md @@ -9,6 +9,8 @@ SeeAlso: --- +# Ship Outline/de + ## Beschreibung Plottet die Konturzeichnung des Schiffsrumpfes @@ -107,4 +109,7 @@ Umrisszeichnungsplot. {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Outline/de diff --git a/wiki/translations/de/Ship_PlotGZ.md b/wiki/translations/de/Ship_PlotGZ.md index d850b83e29..e42060556a 100644 --- a/wiki/translations/de/Ship_PlotGZ.md +++ b/wiki/translations/de/Ship_PlotGZ.md @@ -9,6 +9,8 @@ SeeAlso: --- +# Ship PlotGZ/de + ## Einführung ZUTUN @@ -27,6 +29,5 @@ ZUTUN {{Userdocnavi/de}} - - - +--- +[documentation index](../README.md) > Ship PlotGZ/de diff --git a/wiki/translations/de/Ship_TankCapacity.md b/wiki/translations/de/Ship_TankCapacity.md index 57c2c17df4..28bb5bf47f 100644 --- a/wiki/translations/de/Ship_TankCapacity.md +++ b/wiki/translations/de/Ship_TankCapacity.md @@ -8,6 +8,8 @@ Shortcut: SeeAlso: --- +# Ship TankCapacity/de + ## Einführung ZUTUN @@ -26,6 +28,5 @@ ZUTUN {{Userdocnavi/de}} - - - +--- +[documentation index](../README.md) > Ship TankCapacity/de diff --git a/wiki/translations/de/Ship_TankNew.md b/wiki/translations/de/Ship_TankNew.md index 864c313084..c767c6fc9c 100644 --- a/wiki/translations/de/Ship_TankNew.md +++ b/wiki/translations/de/Ship_TankNew.md @@ -9,6 +9,8 @@ SeeAlso: --- +# Ship TankNew/de + ## Einleitung ZUTUN @@ -27,6 +29,5 @@ ZUTUN {{Userdocnavi/de}} - - - +--- +[documentation index](../README.md) > Ship TankNew/de diff --git a/wiki/translations/de/Ship_Weight.md b/wiki/translations/de/Ship_Weight.md index a7bd0ecd9c..525796805f 100644 --- a/wiki/translations/de/Ship_Weight.md +++ b/wiki/translations/de/Ship_Weight.md @@ -9,6 +9,8 @@ SeeAlso: --- +# Ship Weight/de + ## Einleitung in Arbeit @@ -27,6 +29,5 @@ in Arbeit {{Userdocnavi/de}} - - - +--- +[documentation index](../README.md) > Ship Weight/de diff --git a/wiki/translations/de/Ship_Workbench.md b/wiki/translations/de/Ship_Workbench.md index 732719496c..150b3cd791 100644 --- a/wiki/translations/de/Ship_Workbench.md +++ b/wiki/translations/de/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/de - - -Schiff Arbeitsbereichssymbol +# Schiff Arbeitsbereichssymbol Ship Workbench/de {{TOCright}} @@ -67,3 +64,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/de diff --git a/wiki/translations/de/Sketch.md b/wiki/translations/de/Sketch.md index 7191712249..6286b4be05 100644 --- a/wiki/translations/de/Sketch.md +++ b/wiki/translations/de/Sketch.md @@ -1,6 +1,4 @@ # Sketch/de - - ## Einleitung @@ -39,3 +37,6 @@ Dennoch kann eine Skizze immer für jeden anderen Zweck durch sich selbst erstel }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Sketch/de diff --git a/wiki/translations/de/Sketcher_BSplineComb.md b/wiki/translations/de/Sketcher_BSplineComb.md index 8056e0a84e..f950315f0b 100644 --- a/wiki/translations/de/Sketcher_BSplineComb.md +++ b/wiki/translations/de/Sketcher_BSplineComb.md @@ -8,6 +8,8 @@ SeeAlso:[Erstelle B-spline](Sketcher_CompCreateBSpline/de.md) --- +# Sketcher BSplineComb/de +
@@ -49,4 +51,7 @@ The curvature comb indicates the curvature (value of the second-order derivative {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineComb/de diff --git a/wiki/translations/de/Sketcher_BSplineConvertToNURB.md b/wiki/translations/de/Sketcher_BSplineConvertToNURB.md index acb29e732b..b816137028 100644 --- a/wiki/translations/de/Sketcher_BSplineConvertToNURB.md +++ b/wiki/translations/de/Sketcher_BSplineConvertToNURB.md @@ -1,2 +1,5 @@ # Sketcher BSplineConvertToNURB/de 1. REDIRECT [Sketcher\_BSplineApproximate](Sketcher_BSplineApproximate.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineConvertToNURB/de diff --git a/wiki/translations/de/Sketcher_BSplineDecreaseDegree.md b/wiki/translations/de/Sketcher_BSplineDecreaseDegree.md index b0f121fb84..e46bb99e14 100644 --- a/wiki/translations/de/Sketcher_BSplineDecreaseDegree.md +++ b/wiki/translations/de/Sketcher_BSplineDecreaseDegree.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer B-Spline-Grad ein-/ausblenden](Sketcher_BSplineDegree/de.md), [Skizzierer B-Spline Grad erhöhen](Sketcher_BSplineIncreaseDegree/de.md) --- +# Sketcher BSplineDecreaseDegree/de + @@ -45,4 +47,7 @@ If you take this result and increase the degree, you cannot get the initial stat {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineDecreaseDegree/de diff --git a/wiki/translations/de/Sketcher_BSplineDecreaseKnotMultiplicity.md b/wiki/translations/de/Sketcher_BSplineDecreaseKnotMultiplicity.md index dd173683f5..19e259ad2a 100644 --- a/wiki/translations/de/Sketcher_BSplineDecreaseKnotMultiplicity.md +++ b/wiki/translations/de/Sketcher_BSplineDecreaseKnotMultiplicity.md @@ -8,6 +8,8 @@ SeeAlso:[Erstelle B-spline](Sketcher_CompCreateBSpline/de.md) --- +# Sketcher BSplineDecreaseKnotMultiplicity/de + @@ -76,4 +78,7 @@ One can see that the spline with knot multiplicity 1 is completely changed while {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineDecreaseKnotMultiplicity/de diff --git a/wiki/translations/de/Sketcher_BSplineDegree.md b/wiki/translations/de/Sketcher_BSplineDegree.md index 15cf704503..297c99f825 100644 --- a/wiki/translations/de/Sketcher_BSplineDegree.md +++ b/wiki/translations/de/Sketcher_BSplineDegree.md @@ -8,6 +8,8 @@ SeeAlso:[Create B-spline](Sketcher_CompCreateBSpline.md) --- +# Sketcher BSplineDegree/de + @@ -45,4 +47,7 @@ Zeigt oder blendet die Anzeige des Grades einer B-Spline-Kurve ein oder aus (sie {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineDegree/de diff --git a/wiki/translations/de/Sketcher_BSplineIncreaseDegree.md b/wiki/translations/de/Sketcher_BSplineIncreaseDegree.md index e7eab8ccc2..e64e8043a7 100644 --- a/wiki/translations/de/Sketcher_BSplineIncreaseDegree.md +++ b/wiki/translations/de/Sketcher_BSplineIncreaseDegree.md @@ -8,6 +8,8 @@ SeeAlso:[Erstelle B-spline](Sketcher_CompCreateBSpline/de.md) --- +# Sketcher BSplineIncreaseDegree/de + @@ -65,4 +67,7 @@ You can see that now each segment has 2 control points and the knots are coincid {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineIncreaseDegree/de diff --git a/wiki/translations/de/Sketcher_BSplineIncreaseKnotMultiplicity.md b/wiki/translations/de/Sketcher_BSplineIncreaseKnotMultiplicity.md index cb2066ea02..503dc05f3f 100644 --- a/wiki/translations/de/Sketcher_BSplineIncreaseKnotMultiplicity.md +++ b/wiki/translations/de/Sketcher_BSplineIncreaseKnotMultiplicity.md @@ -8,6 +8,8 @@ SeeAlso:[Erstelle B-spline](Sketcher_CompCreateBSpline/de.md) --- +# Sketcher BSplineIncreaseKnotMultiplicity/de + @@ -64,4 +66,7 @@ One can see that the spline with knot multiplicity 1 is completely changed while {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineIncreaseKnotMultiplicity/de diff --git a/wiki/translations/de/Sketcher_BSplineKnotMultiplicity.md b/wiki/translations/de/Sketcher_BSplineKnotMultiplicity.md index c55947402c..634a0add9e 100644 --- a/wiki/translations/de/Sketcher_BSplineKnotMultiplicity.md +++ b/wiki/translations/de/Sketcher_BSplineKnotMultiplicity.md @@ -8,6 +8,8 @@ SeeAlso:[Erstelle B-spline](Sketcher_CompCreateBSpline/de.md) --- +# Sketcher BSplineKnotMultiplicity/de + @@ -28,4 +30,7 @@ Zeigt oder verbirgt die Anzeige der Knotenvielfalt einer B-Spline. Siehe [diese {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineKnotMultiplicity/de diff --git a/wiki/translations/de/Sketcher_BSplinePolygon.md b/wiki/translations/de/Sketcher_BSplinePolygon.md index c0a7c67437..bbae99df8d 100644 --- a/wiki/translations/de/Sketcher_BSplinePolygon.md +++ b/wiki/translations/de/Sketcher_BSplinePolygon.md @@ -8,6 +8,8 @@ SeeAlso:[B-Spline erzeugen](Sketcher_CompCreateBSpline/de.md) --- +# Sketcher BSplinePolygon/de + @@ -45,4 +47,7 @@ Zeigt oder Blendet die Anzeige des definierten Polygons einer B-Spline Kurve aus {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplinePolygon/de diff --git a/wiki/translations/de/Sketcher_CarbonCopy.md b/wiki/translations/de/Sketcher_CarbonCopy.md index 4e577b339f..5e4a311a0b 100644 --- a/wiki/translations/de/Sketcher_CarbonCopy.md +++ b/wiki/translations/de/Sketcher_CarbonCopy.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Sketcher CarbonCopy/de + ## Beschreibung Das ** [Skizzierer Kopie](Sketcher_CarbonCopy/de.md)** Werkzeug kopiert alle Geometrien und Beschränkungen aus einer anderen Skizze in die aktive Skizze. @@ -38,4 +40,7 @@ Maßbeschränkungen, die vor der Kopierfunktion bestehen, bleiben über [ Ausdr {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CarbonCopy/de diff --git a/wiki/translations/de/Sketcher_Clone.md b/wiki/translations/de/Sketcher_Clone.md index 59c5181fc0..54b543c8eb 100644 --- a/wiki/translations/de/Sketcher_Clone.md +++ b/wiki/translations/de/Sketcher_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Kopieren](Sketcher_Copy/de.md), [Skizzierer Verschieben](Sketcher_Move/de.md) --- +# Sketcher Clone/de + ## Beschreibung Klont die ausgewählten Skizzenelemente von einem Punkt an einen anderen, wobei der zuletzt gewählte Punkt als Referenzpunkt dient. Wenn die Quellelemente Beschränkungen enthalten, werden die neuen Beschränkungen mit den Quellbeschränkungen verbunden; wenn Beschränkungen in der Quelle verändert werden, ändern sich auch die Beschränkungen im Ziel. Um diese Verknüpfung zu vermeiden, siehe **[Skizzierer Kopieren](Sketcher_Copy/de.md)**. @@ -28,4 +30,7 @@ Es werden keine zusätzlichen Beschränkungen für das Klonverhalten hinzugefüg {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Clone/de diff --git a/wiki/translations/de/Sketcher_CloseShape.md b/wiki/translations/de/Sketcher_CloseShape.md index 6406e8a0d6..d645ebd30f 100644 --- a/wiki/translations/de/Sketcher_CloseShape.md +++ b/wiki/translations/de/Sketcher_CloseShape.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher CloseShape/de + ## Beschreibung Dieses Werkzeug kann verwendet werden, um im Skizzen Arbeitsbereich eine gewählte Kontur zu schließen, indem der Endpunkt eines Skizzenelements zur Überdeckung mit dem Endpunkt des nächsten gewählten Skizzenelements gebracht wird. @@ -30,4 +32,7 @@ Das Werkzeug wird die Elemente in der Reihenfolge ihrer Auswahl verbinden, so da {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CloseShape/de diff --git a/wiki/translations/de/Sketcher_CompConstrainRadDia.md b/wiki/translations/de/Sketcher_CompConstrainRadDia.md index 2fd62a91de..6194e5c6c0 100644 --- a/wiki/translations/de/Sketcher_CompConstrainRadDia.md +++ b/wiki/translations/de/Sketcher_CompConstrainRadDia.md @@ -1,5 +1,5 @@ # Sketcher CompConstrainRadDia/de - {{GuiCommand/de +{{GuiCommand/de |Name=Sketcher constrain an arc or a circle |Name/de=Sketcher beschränke einen Bogen oder einen Kreis |Workbenches=[Skizzierer](Sketcher_Workbench/de.md) @@ -18,4 +18,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompConstrainRadDia/de diff --git a/wiki/translations/de/Sketcher_CompCopy.md b/wiki/translations/de/Sketcher_CompCopy.md index 249e44e25e..26b9a0a5ba 100644 --- a/wiki/translations/de/Sketcher_CompCopy.md +++ b/wiki/translations/de/Sketcher_CompCopy.md @@ -1,5 +1,5 @@ # Sketcher CompCopy/de - {{GuiCommand/de +{{GuiCommand/de |Name=Clone, copy or move a geometrie |Name/de=Klonen, kopieren oder bewegen einer Geometrie |MenuLocation=Keine (nur Werkzeugleiste) @@ -19,4 +19,7 @@ Klont, kopiert oder bewegt eine Geometrie. Klicke auf den Pfeil rechts neben dem {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCopy/de diff --git a/wiki/translations/de/Sketcher_CompCreateArc.md b/wiki/translations/de/Sketcher_CompCreateArc.md index 83cc1bdcdf..d2d0c1b38d 100644 --- a/wiki/translations/de/Sketcher_CompCreateArc.md +++ b/wiki/translations/de/Sketcher_CompCreateArc.md @@ -7,6 +7,8 @@ Workbenches:[Skizzierer](Sketcher_Workbench/de.md) --- +# Sketcher CompCreateArc/de + ## Beschreibung **Einen Bogen erstellen** ist eine Symbolschaltfläche in der Skizzierer Geometrie Werkzeugleiste, die Werkzeuge zum Erstellen eines Bogens durch Auswahl von drei Punkten gruppiert. Klicke auf den Abwärtspfeil auf seiner rechten Seite, um die Symbole darunter aufzuklappen und ein Werkzeug auszuwählen. @@ -22,4 +24,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateArc/de diff --git a/wiki/translations/de/Sketcher_CompCreateBSpline.md b/wiki/translations/de/Sketcher_CompCreateBSpline.md index 9efdf39c08..1e3702732e 100644 --- a/wiki/translations/de/Sketcher_CompCreateBSpline.md +++ b/wiki/translations/de/Sketcher_CompCreateBSpline.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Sketcher CompCreateBSpline/de + @@ -26,4 +28,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateBSpline/de diff --git a/wiki/translations/de/Sketcher_CompCreateCircle.md b/wiki/translations/de/Sketcher_CompCreateCircle.md index cb4e4e2ebb..39f89c9943 100644 --- a/wiki/translations/de/Sketcher_CompCreateCircle.md +++ b/wiki/translations/de/Sketcher_CompCreateCircle.md @@ -7,6 +7,8 @@ Workbenches:[Skizzierer](Sketcher_Workbench/de.md) --- +# Sketcher CompCreateCircle/de + ## Beschreibung **Einen Kreis erstellen** ist eine Symbolschaltfläche in der Skizzierer Geometrien Symbolleiste, die Werkzeuge zum Erstellen eines Kreises gruppiert. Klicke auf den Abwärtspfeil auf seiner rechten Seite, um die Symbole darunter zu erweitern und ein Werkzeug auszuwählen. @@ -22,4 +24,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateCircle/de diff --git a/wiki/translations/de/Sketcher_CompCreateConic.md b/wiki/translations/de/Sketcher_CompCreateConic.md index 33a54dc499..ac4c8a6d91 100644 --- a/wiki/translations/de/Sketcher_CompCreateConic.md +++ b/wiki/translations/de/Sketcher_CompCreateConic.md @@ -7,6 +7,8 @@ MenuLocation:Keine (Nur Werkzeugleiste) --- +# Sketcher CompCreateConic/de + ## Beschreibung **Kegel erstellen** ist eine Symbolschaltfläche in der Skizzen Geometrie Werkzeugleiste, die Werkzeuge gruppiert um auf Grundlage von Kegelschnitten Kurven zu erzeugen. Klick auf den Abwärtspfeil zur rechten um die Symbole unterhalb aufzuklappen und ein Werkzeug auszuwählen. @@ -31,4 +33,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateConic/de diff --git a/wiki/translations/de/Sketcher_CompCreateRegularPolygon.md b/wiki/translations/de/Sketcher_CompCreateRegularPolygon.md index a1ea262485..d09974ffb9 100644 --- a/wiki/translations/de/Sketcher_CompCreateRegularPolygon.md +++ b/wiki/translations/de/Sketcher_CompCreateRegularPolygon.md @@ -7,6 +7,8 @@ Workbenches:[Skizzierer](Sketcher_Workbench/de.md) --- +# Sketcher CompCreateRegularPolygon/de + ## Beschreibung **Erzeugt ein regelmäßiges Polygon** ist eine Symbolschaltfläche in der Skizzengeometrien Werkzeugleiste , die Werkzeuge zur Erstellung eines regelmäßigen Polygons gruppiert. Klicke auf den Pfeil nach unten rechts, um die darunter liegenden Symbole aufzuklappen und ein Werkzeug auszuwählen. @@ -33,4 +35,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateRegularPolygon/de diff --git a/wiki/translations/de/Sketcher_ConnectLines.md b/wiki/translations/de/Sketcher_ConnectLines.md index 75054c7751..26abfc8c3a 100644 --- a/wiki/translations/de/Sketcher_ConnectLines.md +++ b/wiki/translations/de/Sketcher_ConnectLines.md @@ -9,6 +9,8 @@ SeeAlso:[Skizzierer BeschränkeDeckungsgleich](Sketcher_ConstrainCoincident/de.md) --- +# Sketcher ConnectLines/de + ## Beschreibung Wendet [Deckungsgleiche Beschränkung](Sketcher_ConstrainCoincident/de.md) auf Endpunkte mit den gleichen Koordinaten der ausgewählten Elemente an. @@ -31,4 +33,7 @@ Vor Verwendung dieses Befehls ist sicherzustellen, dass offensichtliche Beschrä {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConnectLines/de diff --git a/wiki/translations/de/Sketcher_ConstrainAngle.md b/wiki/translations/de/Sketcher_ConstrainAngle.md index ff3c9a7790..fbe3c40ebd 100644 --- a/wiki/translations/de/Sketcher_ConstrainAngle.md +++ b/wiki/translations/de/Sketcher_ConstrainAngle.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Beschränke Abstand](Sketcher_ConstrainDistance/de.md), [Skizzierer Beschränkung Senkrecht](Sketcher_ConstrainPerpendicular/de.md) --- +# Sketcher ConstrainAngle/de + ## Beschreibung Die Winkelbeschränkung ist eine [Bezugsbeschränkung](Sketcher_Workbench/de#Skizzierer_Beschränkungen.md), die dazu dient, Winkel in der Skizze festzulegen. Sie ist in der Lage, die Neigungen einzelner Linien, Winkel zwischen den Linien, Winkel der Schnittpunkte von Kurven und Winkelbereiche von Kreisbögen festzulegen. @@ -105,4 +107,7 @@ Die [Skizzierer Skripten](Sketcher_scripting/de.md)-Seite erklärt die Werte, di {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainAngle/de diff --git a/wiki/translations/de/Sketcher_ConstrainBlock.md b/wiki/translations/de/Sketcher_ConstrainBlock.md index 4f79914e79..0345f64cda 100644 --- a/wiki/translations/de/Sketcher_ConstrainBlock.md +++ b/wiki/translations/de/Sketcher_ConstrainBlock.md @@ -9,6 +9,8 @@ Beschränkung Schloss]] --- +# Sketcher ConstrainBlock/de + ## Beschreibung **Beschränke Block** blockiert ein geometrisches Element an Ort und Stelle mit einer einzigen Beschränkung. @@ -35,4 +37,7 @@ Die [Skizzierer Skripten](Sketcher_scripting/de.md)-Seite erklärt die Werte, di {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainBlock/de diff --git a/wiki/translations/de/Sketcher_ConstrainCoincident.md b/wiki/translations/de/Sketcher_ConstrainCoincident.md index 0798ca415a..f1b3f5aca8 100644 --- a/wiki/translations/de/Sketcher_ConstrainCoincident.md +++ b/wiki/translations/de/Sketcher_ConstrainCoincident.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Beschränke Schloss](Sketcher_ConstrainLock/de.md), [Skizzierer Beschränke Punkt auf Objekt](Sketcher_ConstrainPointOnObject/de.md) --- +# Sketcher ConstrainCoincident/de + ## Beschreibung Erstelle eine deckungsgleichen Beschränkung für das ausgewählte Element @@ -81,4 +83,7 @@ Die [Skizzierer Skripten](Sketcher_scripting/de.md) Seite erklärt die Werte, di {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainCoincident/de diff --git a/wiki/translations/de/Sketcher_ConstrainDiameter.md b/wiki/translations/de/Sketcher_ConstrainDiameter.md index b126be6641..9f44960c96 100644 --- a/wiki/translations/de/Sketcher_ConstrainDiameter.md +++ b/wiki/translations/de/Sketcher_ConstrainDiameter.md @@ -8,6 +8,8 @@ Version:0.18 --- +# Sketcher ConstrainDiameter/de + ## Beschreibung Diese Beschränkung beschränkt den Wert des Radius eines Kreises oder Bogens um einen bestimmten Wert zu haben. Wenn vor dem Start des Befehls mehr als ein Kreis oder Bogen ausgewählt wurde: @@ -45,4 +47,7 @@ Die [Skizzierer Skripten](Sketcher_scripting.md)-Seite erklärt die Werte, die f {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDiameter/de diff --git a/wiki/translations/de/Sketcher_ConstrainDistance.md b/wiki/translations/de/Sketcher_ConstrainDistance.md index b45fef2978..1af58fcc63 100644 --- a/wiki/translations/de/Sketcher_ConstrainDistance.md +++ b/wiki/translations/de/Sketcher_ConstrainDistance.md @@ -8,6 +8,8 @@ SeeAlso:[Horizontalen Abstand beschränken](Sketcher_ConstrainDistanceX/de.md), [Vertikalen Abstand beschränken](Sketcher_ConstrainDistanceY/de.md) --- +# Sketcher ConstrainDistance/de + ## Description @@ -73,4 +75,7 @@ Die [Skizzierer Skripten](Sketcher_scripting.md)-Seite erklärt die Werte, die f {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistance/de diff --git a/wiki/translations/de/Sketcher_ConstrainDistanceX.md b/wiki/translations/de/Sketcher_ConstrainDistanceX.md index 7ffe00ff32..4606f0ec41 100644 --- a/wiki/translations/de/Sketcher_ConstrainDistanceX.md +++ b/wiki/translations/de/Sketcher_ConstrainDistanceX.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Beschränke Länge](Sketcher_ConstrainDistanceY/de.md), [Skizzierer Beschränke Vertikalen Abstand](Sketcher_ConstrainDistanceY/de.md) --- +# Sketcher ConstrainDistanceX/de + ## Beschreibung Fixiert den horizontalen Abstand zwischen zwei Punkten oder Linienenden. Falls nur ein Objekt ausgewählt ist, wird der (horizontale) Abstand zum Ursprung (0,0) festgelegt. @@ -50,4 +52,7 @@ Die [Skizzierer Skripten](Sketcher_scripting.md)-Seite erklärt die Werte, die f {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceX/de diff --git a/wiki/translations/de/Sketcher_ConstrainDistanceY.md b/wiki/translations/de/Sketcher_ConstrainDistanceY.md index cfc6e93fce..00ae32bce1 100644 --- a/wiki/translations/de/Sketcher_ConstrainDistanceY.md +++ b/wiki/translations/de/Sketcher_ConstrainDistanceY.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Beschränke Horizontaler Abstand](Sketcher_ConstrainDistanceX/de.md), [Skizzierer Beschränke Länge](Sketcher_ConstrainDistance/de.md) --- +# Sketcher ConstrainDistanceY/de + ## Beschreibung Fixiert den vertikalen Abstand zwischen zwei Punkten oder Linienenden. Falls nur ein Objekt ausgewählt ist, wird der (vertikale) Abstand zum Ursprung (0,0) festgelegt. @@ -50,4 +52,7 @@ Die [Skizzierer Skripten](Sketcher_scripting.md)-Seite erklärt die Werte, die f {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceY/de diff --git a/wiki/translations/de/Sketcher_ConstrainEqual.md b/wiki/translations/de/Sketcher_ConstrainEqual.md index 1b54ee157e..84caa96b28 100644 --- a/wiki/translations/de/Sketcher_ConstrainEqual.md +++ b/wiki/translations/de/Sketcher_ConstrainEqual.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Beschränke Radius](Sketcher_ConstrainRadius/de.md) --- +# Sketcher ConstrainEqual/de + ## Beschreibung Die Beschränkung Gleich erzwingt, dass zwei oder mehr Liniensegmente in einer Linie, einer Polylinie oder einem Rechteck die gleiche Länge haben. Wenn sie auf Bögen oder Kreise angewendet wird, werden die Radien auf Gleichheit beschränkt. Sie kann nicht auf Geometrie Grundelemente angewendet werden, die nicht vom gleichen Typ sind (z. B. Liniensegmente und Bögen). @@ -63,4 +65,7 @@ Die [Skizzierer Skripten](Sketcher_scripting/de.md)-Seite erklärt die Werte, di {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainEqual/de diff --git a/wiki/translations/de/Sketcher_ConstrainHorizontal.md b/wiki/translations/de/Sketcher_ConstrainHorizontal.md index 74b3a79369..2b3f4d471d 100644 --- a/wiki/translations/de/Sketcher_ConstrainHorizontal.md +++ b/wiki/translations/de/Sketcher_ConstrainHorizontal.md @@ -8,6 +8,8 @@ SeeAlso:[Beschränkung Vertikal](Sketcher_ConstrainVertical/de.md) --- +# Sketcher ConstrainHorizontal/de + ## Beschreibung Die Einschränkung \'Horizontal\' sorgt dafür, dass eine oder mehrere gewählte Linien parallel zur horizontalen Achse der Skizze sind. @@ -42,4 +44,7 @@ Die [Skizzierer Skripten](Sketcher_scripting.md)-Seite erklärt die Werte, die f {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainHorizontal/de diff --git a/wiki/translations/de/Sketcher_ConstrainInternalAlignment.md b/wiki/translations/de/Sketcher_ConstrainInternalAlignment.md index b692da3804..d7c833fffb 100644 --- a/wiki/translations/de/Sketcher_ConstrainInternalAlignment.md +++ b/wiki/translations/de/Sketcher_ConstrainInternalAlignment.md @@ -9,6 +9,8 @@ SeeAlso:[Skizzierer Anzeigen/Ausblenden Innere Geometrie](Sketcher_RestoreInternalAlignmentGeometry/de.md), [Skizzierer Ellipse durch Mittelpunkt](Sketcher_CreateEllipseByCenter/de.md) --- +# Sketcher ConstrainInternalAlignment/de + ## Beschreibung Die Beschränkung InnereAusrichtung richtet Linien und Punkte an bestimmten Stellen eines komplexen Sketcher Elements aus (es gibt bisher nur ein \"komplexes\" Element, die [Ellipse](Sketcher_CreateEllipseByCenter/de.md)). @@ -58,4 +60,7 @@ Die [Skizzierer Skripten](Sketcher_scripting/de.md)-Seite erklärt die Werte, di {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainInternalAlignment/de diff --git a/wiki/translations/de/Sketcher_ConstrainLock.md b/wiki/translations/de/Sketcher_ConstrainLock.md index 6e1ffc74a6..5ff6f04124 100644 --- a/wiki/translations/de/Sketcher_ConstrainLock.md +++ b/wiki/translations/de/Sketcher_ConstrainLock.md @@ -7,6 +7,8 @@ SeeAlso:[Beschränke Block](Sketcher_ConstrainBlock/de.md) --- +# Sketcher ConstrainLock/de + ## Beschreibung **Beschränkung Schloss** wendet ** [Vertikaler Abstand](Sketcher_ConstrainDistanceY/de.md)** Beschränkungen auf ausgewählte Knoten (Punkte) in der Skizze an. Wenn ein einzelner Knoten ausgewählt ist, beziehen sich die horizontalen und vertikalen Abstandsbeschränkungen auf den Skizzenursprungspunkt. Wenn zwei oder mehr Punkte ausgewählt sind, werden die horizontalen und vertikalen Abstandsbeschränkungen für jedes Punktpaar hinzugefügt. Es gibt keine automatische Aufforderung, die Werte der Beschränkungen zu bearbeiten, sie müssen manuell bearbeitet werden. @@ -29,4 +31,7 @@ Die [Sch {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainLock/de diff --git a/wiki/translations/de/Sketcher_ConstrainParallel.md b/wiki/translations/de/Sketcher_ConstrainParallel.md index 53a2bc6ffc..2c75d8825f 100644 --- a/wiki/translations/de/Sketcher_ConstrainParallel.md +++ b/wiki/translations/de/Sketcher_ConstrainParallel.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Beschränkung Vertikal](Sketcher_ConstrainVertical/de.md), [Skizzierer Beschränkung Horizontal](Sketcher_ConstrainHorizontal/de.md) --- +# Sketcher ConstrainParallel/de + ## Beschreibung Die Beschränke Parallel Beschränkung zwingt zwei gewählte gerade Linien oder Ecken zur Parallelität zueinander. @@ -47,4 +49,7 @@ Die [Skizzierer Skripten](Sketcher_scripting/de.md)-Seite erklärt die Werte, di {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainParallel/de diff --git a/wiki/translations/de/Sketcher_ConstrainPerpendicular.md b/wiki/translations/de/Sketcher_ConstrainPerpendicular.md index b6a029da2f..b24f02c6f3 100644 --- a/wiki/translations/de/Sketcher_ConstrainPerpendicular.md +++ b/wiki/translations/de/Sketcher_ConstrainPerpendicular.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Beschränke Winkel](Sketcher_ConstrainAngle/de.md) --- +# Sketcher ConstrainPerpendicular/de + ## Beschreibung Die Senkrechtbeschränkung bewirkt, dass zwei Linien senkrecht zueinander stehen (d. h. orthogonal) oder dass zwei Kurven an ihrem Schnittpunkt senkrecht zueinander stehen. Linien werden als unendlich behandelt, und Bögen werden als Vollkreise/Ellipsen behandelt. Die Beschränkung ist auch in der Lage, zwei Kurven zu verbinden und sie an der Verbindungsstelle senkrecht zu zwingen, ähnlich wie die ** @@ -113,4 +115,7 @@ Die [Skizzierer Skripten](Sketcher_scripting/de.md) Seite erklärt die Werte, di {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPerpendicular/de diff --git a/wiki/translations/de/Sketcher_ConstrainPointOnObject.md b/wiki/translations/de/Sketcher_ConstrainPointOnObject.md index fa91f076f5..cbf4b874fe 100644 --- a/wiki/translations/de/Sketcher_ConstrainPointOnObject.md +++ b/wiki/translations/de/Sketcher_ConstrainPointOnObject.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Beschränke Deckungsgleich](Sketcher_ConstrainCoincident/de.md) --- +# Sketcher ConstrainPointOnObject/de + ## Beschreibung Bringt einen Punkt auf einem anderen Objekt an, z.B. einer Linien-, Bogen- oder Skizzenachse. @@ -46,4 +48,7 @@ Die [Skizzierer Skripten](Sketcher_scripting/de.md) Seite erklärt, wie man die {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPointOnObject/de diff --git a/wiki/translations/de/Sketcher_ConstrainRadiam.md b/wiki/translations/de/Sketcher_ConstrainRadiam.md index 8138c0375d..92c4f31488 100644 --- a/wiki/translations/de/Sketcher_ConstrainRadiam.md +++ b/wiki/translations/de/Sketcher_ConstrainRadiam.md @@ -8,6 +8,8 @@ Version:0.20 --- +# Sketcher ConstrainRadiam/de + ## Beschreibung Diese Beschränkung beschränkt den Wert des Radius eines Kreises oder Bogens um einen bestimmten Wert zu haben. Wenn vor dem Start des Befehls mehr als ein Kreis oder Bogen ausgewählt wurde: @@ -42,4 +44,7 @@ Es gilt kein spezielles Skripten. Siehe die Seite [Skizzierer Skripten](Sketcher {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadiam/de diff --git a/wiki/translations/de/Sketcher_ConstrainRadius.md b/wiki/translations/de/Sketcher_ConstrainRadius.md index c975b5547a..eed196b4dc 100644 --- a/wiki/translations/de/Sketcher_ConstrainRadius.md +++ b/wiki/translations/de/Sketcher_ConstrainRadius.md @@ -7,6 +7,8 @@ SeeAlso:[Beschränkung Abstand](Sketcher_ConstrainDistance/de.md), [Skizzierer Beschränke Horizontalen Abstand](Sketcher_ConstrainDistanceX/de.md), [Skizzierer Beschränke Vertikalen Abstand](Sketcher_ConstrainDistanceY/de.md) --- +# Sketcher ConstrainRadius/de + ## Beschreibung Diese Beschränkung beschränkt den Wert des Radius eines Kreises oder Bogens um einen bestimmten Wert zu haben. Wenn vor dem Start des Befehls mehr als ein Kreis oder Bogen ausgewählt wurde: @@ -46,4 +48,7 @@ Die [Skizzierer Skripten](Sketcher_scripting.md)-Seite erklärt die Werte, die f {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadius/de diff --git a/wiki/translations/de/Sketcher_ConstrainSnellsLaw.md b/wiki/translations/de/Sketcher_ConstrainSnellsLaw.md index 73067d9c5e..9b36a508b3 100644 --- a/wiki/translations/de/Sketcher_ConstrainSnellsLaw.md +++ b/wiki/translations/de/Sketcher_ConstrainSnellsLaw.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher ConstrainSnellsLaw/de + @@ -102,4 +104,7 @@ App.ActiveDocument.recompute() {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSnellsLaw/de diff --git a/wiki/translations/de/Sketcher_ConstrainSymmetric.md b/wiki/translations/de/Sketcher_ConstrainSymmetric.md index 2a1dbc9999..d88be4f621 100644 --- a/wiki/translations/de/Sketcher_ConstrainSymmetric.md +++ b/wiki/translations/de/Sketcher_ConstrainSymmetric.md @@ -8,6 +8,8 @@ SeeAlso:[Beschränkung Parallel](Sketcher_ConstrainParallel/de.md) --- +# Sketcher ConstrainSymmetric/de + ## Beschreibung Die **symmetrische Beschränkung** zwingt zwei ausgewählte Punkte dazu, symmetrisch um eine gegebene Linie herum zu sein, d.h. beide ausgewählten Punkte müssen auf einer Normalen zu der durch beide Punkte verlaufenden Linie liegen und müssen gleich weit von der Linie entfernt sein. Alternativ können zwei Punkte so eingeschränkt werden, dass sie in Bezug auf einen dritten Punkt symmetrisch sind. @@ -62,4 +64,7 @@ Die [Skizzierer Skripten](Sketcher_scripting.md) Seite erklärt die Werte, die f {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSymmetric/de diff --git a/wiki/translations/de/Sketcher_ConstrainTangent.md b/wiki/translations/de/Sketcher_ConstrainTangent.md index 3a67ef8548..fe2350bcd3 100644 --- a/wiki/translations/de/Sketcher_ConstrainTangent.md +++ b/wiki/translations/de/Sketcher_ConstrainTangent.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Beschränkung Punkt auf Objekt](Sketcher_ConstrainPointOnObject/de.md) --- +# Sketcher ConstrainTangent/de + ## Beschreibung Die Tangentenbeschränkung bewirkt, dass sich zwei Kurven berühren (sind tangential). Linien werden unendlich behandelt, und Bögen werden als Vollkreise/Ellipsen behandelt. Die Beschränkung ist auch in der Lage, zwei Kurven miteinander zu verbinden, so dass sie an der Verbindung tangential aneinanderstoßen, wodurch die Verbindung glatt wird. @@ -123,4 +125,7 @@ Die [Skizzierer Skripten](Sketcher_scripting/de.md) Seite erklärt die Werte, di {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainTangent/de diff --git a/wiki/translations/de/Sketcher_ConstrainVertical.md b/wiki/translations/de/Sketcher_ConstrainVertical.md index 6bf1acf597..42836557ab 100644 --- a/wiki/translations/de/Sketcher_ConstrainVertical.md +++ b/wiki/translations/de/Sketcher_ConstrainVertical.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Horizontale Beschränkung](Sketcher_ConstrainHorizontal/de.md) --- +# Sketcher ConstrainVertical/de + ## Beschreibung Erstellt eine vertikale Beschränkung für die gewählten Linien oder Polylinienelemente. Ab {(v0.17) } kann sie auch Knoten vertikal beschränken. Es kann mehr als ein Objekt ausgewählt werden. @@ -35,4 +37,7 @@ Die [Skizzierer Skripten](Sketcher_scripting.md) Seite erklärt die Werte, die f {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainVertical/de diff --git a/wiki/translations/de/Sketcher_ConvertToNURB.md b/wiki/translations/de/Sketcher_ConvertToNURB.md index c89b65285a..e139102d58 100644 --- a/wiki/translations/de/Sketcher_ConvertToNURB.md +++ b/wiki/translations/de/Sketcher_ConvertToNURB.md @@ -1,2 +1,5 @@ # Sketcher ConvertToNURB/de 1. REDIRECT [Sketcher\_BSplineApproximate](Sketcher_BSplineApproximate.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConvertToNURB/de diff --git a/wiki/translations/de/Sketcher_Copy.md b/wiki/translations/de/Sketcher_Copy.md index d67dc84f2a..7d4241e6df 100644 --- a/wiki/translations/de/Sketcher_Copy.md +++ b/wiki/translations/de/Sketcher_Copy.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Klonen](Sketcher_Clone/de.md), [Skizzierer Verschieben](Sketcher_Move/de.md) --- +# Sketcher Copy/de + ## Beschreibung Kopiert die ausgewählten Skizzenelemente von einem Punkt zu einem anderen mit dem letzten gewählten Punkt als Referenz. Wenn eine Kopie erstellt wird, wird keine Verbindung zwischen der Kopie und dem Original erstellt, siehe ** [Skizzierer Klonen](Sketcher_Clone/de.md)**. @@ -26,4 +28,7 @@ Keine zusätzlichen Beschränkungen werden hinzugefügt. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Copy/de diff --git a/wiki/translations/de/Sketcher_Create3PointArc.md b/wiki/translations/de/Sketcher_Create3PointArc.md index d88f2ddf22..2bdca6f3e5 100644 --- a/wiki/translations/de/Sketcher_Create3PointArc.md +++ b/wiki/translations/de/Sketcher_Create3PointArc.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Sketcher Create3PointArc/de + ## Beschreibung Dieses Werkzeug zeichnet einen Kreisbogen durch setzen von drei Punkten: Den Startpunkt, den Endpunkt und einen Punkt auf dem Kreisbogen. @@ -25,4 +27,7 @@ Beim Start des Werkzeugs ändert sich der Mauszeiger in ein weißes Kreuz mit ei {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Create3PointArc/de diff --git a/wiki/translations/de/Sketcher_Create3PointCircle.md b/wiki/translations/de/Sketcher_Create3PointCircle.md index 5c87362491..3a11a07687 100644 --- a/wiki/translations/de/Sketcher_Create3PointCircle.md +++ b/wiki/translations/de/Sketcher_Create3PointCircle.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Sketcher Create3PointCircle/de + ## Beschreibung Dieses Werkzeug zeichnet einen Kreis durch Anwahl dreier Punkte auf der Kreisumfangslinie. Wenn das Werkzeug gestartet wird, verwandelt sich der Mauszeiger in ein weisses Kreuz mit einem roten Kreissymbol. Die Koordinaten werden neben dem Kreuz in blau in Echtzeit angezeigt. @@ -23,4 +25,7 @@ Dieses Werkzeug \_\_TOC\_\_ @@ -219,4 +213,7 @@ Du kannst die folgenden Optionen einstellen: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Dialog/de diff --git a/wiki/translations/de/Sketcher_EditSketch.md b/wiki/translations/de/Sketcher_EditSketch.md index b7473a3926..2622b68ffd 100644 --- a/wiki/translations/de/Sketcher_EditSketch.md +++ b/wiki/translations/de/Sketcher_EditSketch.md @@ -6,6 +6,8 @@ SeeAlso:[ Skizzierer SkizzeVerlassen](Sketcher_LeaveSketch/de.md) --- +# Sketcher EditSketch/de + @@ -56,4 +58,7 @@ Es gibt verschiedene Wege den Befehl Skizze bearbeiten aufzurufen: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher EditSketch/de diff --git a/wiki/translations/de/Sketcher_Extend.md b/wiki/translations/de/Sketcher_Extend.md index c0a5cf0960..0eb9d6f4c0 100644 --- a/wiki/translations/de/Sketcher_Extend.md +++ b/wiki/translations/de/Sketcher_Extend.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Kante stutzen](Sketcher_Trimming/de.md) --- +# Sketcher Extend/de + ## Beschreibung Das Werkzeug \"Kante verlängern\" verlängert eine Kante an eine beliebige Stelle in der Skizze oder an eine andere Kante. @@ -34,4 +36,7 @@ Das Werkzeug \"Kante verlängern\" verlängert eine Kante an eine beliebige Stel {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Extend/de diff --git a/wiki/translations/de/Sketcher_External.md b/wiki/translations/de/Sketcher_External.md index 42ef62dd61..5e841e8287 100644 --- a/wiki/translations/de/Sketcher_External.md +++ b/wiki/translations/de/Sketcher_External.md @@ -8,6 +8,8 @@ SeeAlso:[KonstructionsModus](Sketcher_ToggleConstruction/de.md) --- +# Sketcher External/de + ## Beschreibung Verwende das ** [Externe Geometrie](Sketcher_External/de.md)** Werkzeug wenn Du eine Beschränkung zwischen der Skizzengeometrie und etwas außerhalb der Skizze anwenden möchtest. Es funktioniert, indem eine verknüpfte Konstruktionsgeometrie in die Skizze eingefügt wird. Die Standardfarbe der extern verbundenen Kanten ist Magenta. Wie bei der standardmäßigen unverknüpften Konstruktionsgeometrie (blau) ist die extern verknüpfte Geometrie nur sichtbar, wenn sich die Skizze im Bearbeitungsmodus befindet und nicht direkt im späteren Ergebnis aus der Verwendung der Skizze in einem anderen Werkzeug verwendet wird. Beide Arten von Konstruktionsgeometrien können als Referenz für Beschränkungen innerhalb der Skizze verwendet werden. @@ -77,4 +79,7 @@ Wenn der Skizzenbearbeitungsmodus geschlossen ist, sind externe Geometrielinien {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher External/de diff --git a/wiki/translations/de/Sketcher_LeaveSketch.md b/wiki/translations/de/Sketcher_LeaveSketch.md index d78b92dfbd..cdcf785a92 100644 --- a/wiki/translations/de/Sketcher_LeaveSketch.md +++ b/wiki/translations/de/Sketcher_LeaveSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Skizzierer SkizzeBearbeiten](Sketcher_EditSketch.md) --- +# Sketcher LeaveSketch/de + @@ -44,4 +46,7 @@ Der **Skizze verlassen** Befehl verlässt den Skizzenbearbeitungsmodus und gibt {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher LeaveSketch/de diff --git a/wiki/translations/de/Sketcher_MapSketch.md b/wiki/translations/de/Sketcher_MapSketch.md index 3ba7e71f80..09c5115f8c 100644 --- a/wiki/translations/de/Sketcher_MapSketch.md +++ b/wiki/translations/de/Sketcher_MapSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Skizzierer Neue Skizze](Sketcher_NewSketch/de.md) --- +# Sketcher MapSketch/de + ## Description @@ -62,4 +64,7 @@ Nun wird die obere Fläche von Pad ausgewählt und das Werkzeug \"Skizze einer F {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MapSketch/de diff --git a/wiki/translations/de/Sketcher_MergeSketches.md b/wiki/translations/de/Sketcher_MergeSketches.md index 792adc09bf..06198c9ccd 100644 --- a/wiki/translations/de/Sketcher_MergeSketches.md +++ b/wiki/translations/de/Sketcher_MergeSketches.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher MergeSketches/de + ## Beschreibung Eine oder mehrere Skizzen in einer Skizze zusammenführen. @@ -23,4 +25,7 @@ Eine oder mehrere Skizzen in einer Skizze zusammenführen. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MergeSketches/de diff --git a/wiki/translations/de/Sketcher_Micro_Tutorial_-_Constraint_Practices.md b/wiki/translations/de/Sketcher_Micro_Tutorial_-_Constraint_Practices.md index 71c19c28e3..be1f8a827c 100644 --- a/wiki/translations/de/Sketcher_Micro_Tutorial_-_Constraint_Practices.md +++ b/wiki/translations/de/Sketcher_Micro_Tutorial_-_Constraint_Practices.md @@ -1,7 +1,4 @@ # Sketcher Micro Tutorial - Constraint Practices/de - - - {{TutorialInfo/de |Topic=Skizzierer |Level=Anfänger @@ -126,4 +123,7 @@ Dies ist der beste Weg, diese Skizze zu beschränken, da wir nur eine Bezugs- (B {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Micro Tutorial - Constraint Practices/de diff --git a/wiki/translations/de/Sketcher_MirrorSketch.md b/wiki/translations/de/Sketcher_MirrorSketch.md index aa586563ed..e93717b767 100644 --- a/wiki/translations/de/Sketcher_MirrorSketch.md +++ b/wiki/translations/de/Sketcher_MirrorSketch.md @@ -7,6 +7,8 @@ Version:0.16 --- +# Sketcher MirrorSketch/de + ## Beschreibung Spiegelt eine Skizze entlang der X Achse, der Y Achse oder dem Ursprung. Dieser Befehl wird aufgerufen, während eine Skizze *nicht* bearbeitet wird. Er erzeugt eine neue Skizze, die die gespiegelte Geometrie enthält. @@ -27,4 +29,7 @@ Hinweise: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MirrorSketch/de diff --git a/wiki/translations/de/Sketcher_Module.md b/wiki/translations/de/Sketcher_Module.md index ef789dfcdf..3a32659dc5 100644 --- a/wiki/translations/de/Sketcher_Module.md +++ b/wiki/translations/de/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/de 1. Redirect [Sketcher\_Workbench/de](Sketcher_Workbench/de.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/de diff --git a/wiki/translations/de/Sketcher_Move.md b/wiki/translations/de/Sketcher_Move.md index 77c0cd93fa..b4ae5fdf16 100644 --- a/wiki/translations/de/Sketcher_Move.md +++ b/wiki/translations/de/Sketcher_Move.md @@ -9,6 +9,8 @@ SeeAlso:[Klonen](Sketcher_Clone/de.md), [Kopieren](Sketcher_Copy/de.md) --- +# Sketcher Move/de + ## Beschreibung Verschiebt die ausgewählten Skizzenelemente von einem Punkt zum anderen, wobei der zuletzt ausgewählte Punkt als Referenz verwendet wird. @@ -31,4 +33,7 @@ Verschiebt die ausgewählten Skizzenelemente von einem Punkt zum anderen, wobei {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Move/de diff --git a/wiki/translations/de/Sketcher_NewSketch.md b/wiki/translations/de/Sketcher_NewSketch.md index 7d9db2c6f2..1f58767d55 100644 --- a/wiki/translations/de/Sketcher_NewSketch.md +++ b/wiki/translations/de/Sketcher_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Skizze erstellen](PartDesign_NewSketch/de.md),[Skizze einer Fläche zuordnen...](Sketcher_MapSketch/de.md), [Skizze neu ausrichten...](Sketcher_ReorientSketch/de.md) --- +# Sketcher NewSketch/de + ## Beschreibung Dies erzeugt eine neue [Skizze](Sketcher_Workbench/de.md). @@ -37,4 +39,7 @@ Die Fläche kann in der [3D-Ansicht](3D_view/de.md) mittels [Positionierung](Pla {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher NewSketch/de diff --git a/wiki/translations/de/Sketcher_Polyline.md b/wiki/translations/de/Sketcher_Polyline.md index 676671f4ba..7a8588ee69 100644 --- a/wiki/translations/de/Sketcher_Polyline.md +++ b/wiki/translations/de/Sketcher_Polyline.md @@ -1,2 +1,5 @@ # Sketcher Polyline/de 1. REDIRECT [Sketcher\_CreatePolyline/de](Sketcher_CreatePolyline/de.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Polyline/de diff --git a/wiki/translations/de/Sketcher_Preferences.md b/wiki/translations/de/Sketcher_Preferences.md index c259e8688a..56d8b9a387 100644 --- a/wiki/translations/de/Sketcher_Preferences.md +++ b/wiki/translations/de/Sketcher_Preferences.md @@ -1,7 +1,4 @@ # Sketcher Preferences/de - - - {{TOCright}} @@ -252,3 +249,6 @@ In the *Colors* tab you can specify the following: }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Preferences/de diff --git a/wiki/translations/de/Sketcher_RectangularArray.md b/wiki/translations/de/Sketcher_RectangularArray.md index 211a26db30..2bf25b1db8 100644 --- a/wiki/translations/de/Sketcher_RectangularArray.md +++ b/wiki/translations/de/Sketcher_RectangularArray.md @@ -7,6 +7,8 @@ Version:0.16 --- +# Sketcher RectangularArray/de + @@ -48,4 +50,7 @@ aus dem oberen Menü. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RectangularArray/de diff --git a/wiki/translations/de/Sketcher_Reorient.md b/wiki/translations/de/Sketcher_Reorient.md index 6f735d9385..a9243877fb 100644 --- a/wiki/translations/de/Sketcher_Reorient.md +++ b/wiki/translations/de/Sketcher_Reorient.md @@ -1,2 +1,5 @@ # Sketcher Reorient/de 1. REDIRECT [Sketcher\_ReorientSketch/de](Sketcher_ReorientSketch/de.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Reorient/de diff --git a/wiki/translations/de/Sketcher_ReorientSketch.md b/wiki/translations/de/Sketcher_ReorientSketch.md index 60313631a5..9ecbfbe0a9 100644 --- a/wiki/translations/de/Sketcher_ReorientSketch.md +++ b/wiki/translations/de/Sketcher_ReorientSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Skizzierer Skizze zuordnen](Sketcher_MapSketch/de.md), [Skizzierer Neue Skizze](Sketcher_NewSketch/de.md) --- +# Sketcher ReorientSketch/de + ## Beschreibung Ermöglicht es dir, eine Skizze von einer Fläche zu lösen und sie an einer der Hauptebenen (mit einem Versatz) anzuheften. @@ -31,4 +33,7 @@ Ermöglicht es dir, eine Skizze von einer Fläche zu lösen und sie an einer der {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ReorientSketch/de diff --git a/wiki/translations/de/Sketcher_RestoreInternalAlignmentGeometry.md b/wiki/translations/de/Sketcher_RestoreInternalAlignmentGeometry.md index 518261ad89..2acc04051c 100644 --- a/wiki/translations/de/Sketcher_RestoreInternalAlignmentGeometry.md +++ b/wiki/translations/de/Sketcher_RestoreInternalAlignmentGeometry.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Ellipse](Sketcher_CreateEllipseByCenter.md), [Sketcher Internal Alignment Constraint](Sketcher_ConstrainInternalAlignment.md) --- +# Sketcher RestoreInternalAlignmentGeometry/de + ## Beschreibung Der Befehl löscht unbenutzte Elemente, die an der Innengeometrie ausgerichtet sind, oder erstellt die fehlenden Elemente neu. @@ -46,4 +48,7 @@ Erstelle eine neue Ellipse. Neue Ellipsen sind immer vollgepackt. Du siehst eine {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RestoreInternalAlignmentGeometry/de diff --git a/wiki/translations/de/Sketcher_SelectConflictingConstraints.md b/wiki/translations/de/Sketcher_SelectConflictingConstraints.md index bbc6586900..ad7e8f6859 100644 --- a/wiki/translations/de/Sketcher_SelectConflictingConstraints.md +++ b/wiki/translations/de/Sketcher_SelectConflictingConstraints.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectConflictingConstraints/de + @@ -27,4 +29,7 @@ Wählt die widersprüchlichen Beschränkungen einer Skizze aus. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConflictingConstraints/de diff --git a/wiki/translations/de/Sketcher_SelectConstraints.md b/wiki/translations/de/Sketcher_SelectConstraints.md index 70bc374df7..f2d5ca3486 100644 --- a/wiki/translations/de/Sketcher_SelectConstraints.md +++ b/wiki/translations/de/Sketcher_SelectConstraints.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectConstraints/de + ## Beschreibung Wählt die Beschränkungen eines Skizzierer Elements aus. @@ -40,4 +42,7 @@ Schaltfläche. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConstraints/de diff --git a/wiki/translations/de/Sketcher_SelectElementsAssociatedWithConstraints.md b/wiki/translations/de/Sketcher_SelectElementsAssociatedWithConstraints.md index 6fa2f1ada9..915fef01e4 100644 --- a/wiki/translations/de/Sketcher_SelectElementsAssociatedWithConstraints.md +++ b/wiki/translations/de/Sketcher_SelectElementsAssociatedWithConstraints.md @@ -1,3 +1,4 @@ +# Sketcher SelectElementsAssociatedWithConstraints/de --- - GuiCommand:/de Name:Sketcher SelectElementsAssociatedWithConstraints Name/de:Sketcher SelectElementsAssociatedWithConstraints Workbenches:[[Sketcher Workbench Sketcher]]|MenuLocation:Sketch → Sketcher tools → Select Elements Associated with constraints Shortcut:Shift+Ctrl+E SeeAlso: Version:0.15--- @@ -26,4 +27,7 @@ Wählt Sketcher-Elemente aus, die mit Beschränkungen versehen sind. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsAssociatedWithConstraints/de diff --git a/wiki/translations/de/Sketcher_SelectElementsWithDoFs.md b/wiki/translations/de/Sketcher_SelectElementsWithDoFs.md index 1d991bc76b..7a8d77d51b 100644 --- a/wiki/translations/de/Sketcher_SelectElementsWithDoFs.md +++ b/wiki/translations/de/Sketcher_SelectElementsWithDoFs.md @@ -8,6 +8,8 @@ Löser Freiheitsgrade Version:0.18 --- +# Sketcher SelectElementsWithDoFs/de + ## Beschreibung Dieses Werkzeug soll dabei helfen, eine Skizze vollständig zu beschränken, indem es die Skizzenelemente mit den verbleibenden Freiheitsgraden (engl.: Degrees of Freedom)(DoF) in grün hervorhebt. @@ -35,4 +37,7 @@ wobei \"X\" für die Anzahl der in der Skizze verbleibenden Freiheitsgrade steht {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsWithDoFs/de diff --git a/wiki/translations/de/Sketcher_SelectHorizontalAxis.md b/wiki/translations/de/Sketcher_SelectHorizontalAxis.md index 57bb9862da..60b8ae25b4 100644 --- a/wiki/translations/de/Sketcher_SelectHorizontalAxis.md +++ b/wiki/translations/de/Sketcher_SelectHorizontalAxis.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectHorizontalAxis/de + @@ -27,4 +29,7 @@ Wählt die horizontale Achse einer Skizze aus. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectHorizontalAxis/de diff --git a/wiki/translations/de/Sketcher_SelectOrigin.md b/wiki/translations/de/Sketcher_SelectOrigin.md index 1c751dd061..32bf79b290 100644 --- a/wiki/translations/de/Sketcher_SelectOrigin.md +++ b/wiki/translations/de/Sketcher_SelectOrigin.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectOrigin/de + ## Beschreibung Wählt den Ursprung einer Skizze aus. @@ -24,4 +26,7 @@ Wählt den Ursprung einer Skizze aus. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectOrigin/de diff --git a/wiki/translations/de/Sketcher_SelectRedundantConstraints.md b/wiki/translations/de/Sketcher_SelectRedundantConstraints.md index 8f62b1ff7f..dcb39ba967 100644 --- a/wiki/translations/de/Sketcher_SelectRedundantConstraints.md +++ b/wiki/translations/de/Sketcher_SelectRedundantConstraints.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectRedundantConstraints/de + @@ -35,4 +37,7 @@ Wählt die redundanten Beschränkungen einer Skizze aus. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectRedundantConstraints/de diff --git a/wiki/translations/de/Sketcher_SelectVerticalAxis.md b/wiki/translations/de/Sketcher_SelectVerticalAxis.md index 35f5ebebfd..c057cbd3f0 100644 --- a/wiki/translations/de/Sketcher_SelectVerticalAxis.md +++ b/wiki/translations/de/Sketcher_SelectVerticalAxis.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectVerticalAxis/de + ## Beschreibung Wählt die vertikale Achse einer Skizze aus. @@ -24,4 +26,7 @@ Wählt die vertikale Achse einer Skizze aus. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectVerticalAxis/de diff --git a/wiki/translations/de/Sketcher_Sketch.md b/wiki/translations/de/Sketcher_Sketch.md index 3714673450..bd6b66e662 100644 --- a/wiki/translations/de/Sketcher_Sketch.md +++ b/wiki/translations/de/Sketcher_Sketch.md @@ -1,6 +1,4 @@ # Sketcher Sketch/de - - This should hold the description of the Sketch tool that is part of the [Sketcher Workbench](Sketcher_Workbench.md) and the [PartDesign Workbench](PartDesign_Workbench.md). This is a work in progress. Meanwhile, consult: @@ -11,4 +9,7 @@ This is a work in progress. Meanwhile, consult: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Sketch/de diff --git a/wiki/translations/de/Sketcher_SketchObject.md b/wiki/translations/de/Sketcher_SketchObject.md index 343bdaa1a8..643131a2bc 100644 --- a/wiki/translations/de/Sketcher_SketchObject.md +++ b/wiki/translations/de/Sketcher_SketchObject.md @@ -1,6 +1,4 @@ # Sketcher SketchObject/de - - ## Einleitung @@ -138,4 +136,7 @@ obj.Label = "Custom label" {{Sketcher Tools navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SketchObject/de diff --git a/wiki/translations/de/Sketcher_Split.md b/wiki/translations/de/Sketcher_Split.md index 9dc409978d..3c1f119480 100644 --- a/wiki/translations/de/Sketcher_Split.md +++ b/wiki/translations/de/Sketcher_Split.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Stutzen](Sketcher_Trimming/de.md) --- +# Sketcher Split/de + ## Beschreibung Dieses Werkzeug erlaubt eine Kante in zwei identische Teile zu teilen, wobei die meisten Beschränkungen dupliziert werden, so dass beide Teile bis auf die Teilungspunktlage beschränkt bleiben. Im speziellen Fall eines Kreises wird dieser in einen Bogen mit losen Enden umgewandelt, wobei die bestehenden Kreisbeschränkungen auf den neuen Bogen übertragen werden. @@ -45,4 +47,7 @@ Dieses Werkzeug erlaubt eine Kante in zwei identische Teile zu teilen, wobei die {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Split/de diff --git a/wiki/translations/de/Sketcher_StopOperation.md b/wiki/translations/de/Sketcher_StopOperation.md index 3b84313032..48709351d8 100644 --- a/wiki/translations/de/Sketcher_StopOperation.md +++ b/wiki/translations/de/Sketcher_StopOperation.md @@ -6,6 +6,8 @@ MenuLocation:Skizze → Vorgang Beenden --- +# Sketcher StopOperation/de + ## Beschreibung @@ -28,4 +30,7 @@ Dies ist ähnlich wie das Drücken der **Esc** Taste. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher StopOperation/de diff --git a/wiki/translations/de/Sketcher_SwitchVirtualSpace.md b/wiki/translations/de/Sketcher_SwitchVirtualSpace.md index 4072db82cc..026ed639ad 100644 --- a/wiki/translations/de/Sketcher_SwitchVirtualSpace.md +++ b/wiki/translations/de/Sketcher_SwitchVirtualSpace.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Sketcher SwitchVirtualSpace/de + ## Beschreibung Der FreeCAD Skizzierer verfügt über zwei virtuelle Räume, in denen Beschränkungen festgelegt werden können. Gewöhnlich werden alle Beschränkungen auf den virtuellen Raum eins gesetzt. Du kannst einige Beschränkungen in den virtuellen Raum zwei verschieben. Dies kann helfen, nur einige wenige Beschränkungen gleichzeitig zu untersuchen. @@ -34,4 +36,7 @@ Wenn du dich entscheidest, Beschränkungen für den zweiten virtuellen Raum fest {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SwitchVirtualSpace/de diff --git a/wiki/translations/de/Sketcher_Symmetry.md b/wiki/translations/de/Sketcher_Symmetry.md index b186d4b835..7b4ca5926f 100644 --- a/wiki/translations/de/Sketcher_Symmetry.md +++ b/wiki/translations/de/Sketcher_Symmetry.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher SkizzeSpiegeln](Sketcher_MirrorSketch/de.md) --- +# Sketcher Symmetry/de + ## Beschreibung Spiegelt eine Skizzen Geometrie in Bezug zu einer ausgewählten Linie oder Skizzenachse. @@ -26,4 +28,7 @@ Beachte, dass keine zusätzliche Symmetriebeschränkung hinzugefügt wird. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Symmetry/de diff --git a/wiki/translations/de/Sketcher_ToggleActiveConstraint.md b/wiki/translations/de/Sketcher_ToggleActiveConstraint.md index 2c6c7fb3a5..6a60a0a2ef 100644 --- a/wiki/translations/de/Sketcher_ToggleActiveConstraint.md +++ b/wiki/translations/de/Sketcher_ToggleActiveConstraint.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Sketcher ToggleActiveConstraint/de + ## Beschreibung @@ -61,4 +63,7 @@ sketch.toggleActive(3) {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleActiveConstraint/de diff --git a/wiki/translations/de/Sketcher_ToggleConstruction.md b/wiki/translations/de/Sketcher_ToggleConstruction.md index e31896c50e..eb593b30fa 100644 --- a/wiki/translations/de/Sketcher_ToggleConstruction.md +++ b/wiki/translations/de/Sketcher_ToggleConstruction.md @@ -6,6 +6,8 @@ Workbenches:[Skizzierer](Sketcher_Workbench/de.md) --- +# Sketcher ToggleConstruction/de + ## Beschreibung Dieses Werkzeug schaltet die Skizzengeometrie vom/zum Konstruktionsmodus um. Es kann auf jeder Art von Geometrie angewendet werden: Linie, Bogen oder Kreis. @@ -47,4 +49,7 @@ und sobald Du ** [de {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleConstruction/de diff --git a/wiki/translations/de/Sketcher_ToggleDrivingConstraint.md b/wiki/translations/de/Sketcher_ToggleDrivingConstraint.md index f4eb1df341..730ff4128b 100644 --- a/wiki/translations/de/Sketcher_ToggleDrivingConstraint.md +++ b/wiki/translations/de/Sketcher_ToggleDrivingConstraint.md @@ -8,6 +8,8 @@ SeeAlso:[Umschalten Konstruktion](Sketcher_ToggleConstruction/de.md) --- +# Sketcher ToggleDrivingConstraint/de + ## Beschreibung Das ** [ Umschalten treibende Beschränkung](Sketcher_ToggleDrivingConstraint/de.md)** Werkzeug wandelt Maßbeschränkungen (Schloss, Horizontaler/Vertikaler Abstand, Länge, Radius und Winkel) in den Referenzmodus und zurück. Die Symbole in der Werkzeugleiste färben sich blau, und anstelle von Maßbeschränkungen werden Referenzbemaßungen erstellt. Referenzbemaßungen beschränken die Skizze nicht. Es kann nützlich sein, in einer Skizze Referenzbemaßungen zu erstellen, um die Bemaßungen zu überprüfen; wenn ein Name angegeben wird, können sie auch dazu verwendet werden, die Beschränkungen in einer anderen Skizze durch [Ausdrücke](Expressions/de.md) zu steuern. @@ -29,4 +31,7 @@ Das ** [ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleDrivingConstraint/de diff --git a/wiki/translations/de/Sketcher_Trimming.md b/wiki/translations/de/Sketcher_Trimming.md index 786df748b6..0d6f2faa46 100644 --- a/wiki/translations/de/Sketcher_Trimming.md +++ b/wiki/translations/de/Sketcher_Trimming.md @@ -8,6 +8,8 @@ SeeAlso:[Skizzierer Kante verlängern](Sketcher_Extend/de.md) --- +# Sketcher Trimming/de + ## Beschreibung Dieses Werkzeug stutzt eine Kante bis zur nächsten überlappenden Kante. @@ -31,4 +33,7 @@ Dieses Werkzeug stutzt eine Kante bis zur nächsten überlappenden Kante. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Trimming/de diff --git a/wiki/translations/de/Sketcher_ValidateSketch.md b/wiki/translations/de/Sketcher_ValidateSketch.md index 93d454d2b9..73f8dcb736 100644 --- a/wiki/translations/de/Sketcher_ValidateSketch.md +++ b/wiki/translations/de/Sketcher_ValidateSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Skizzierer BeschränkeDeckungsgleich](Sketcher_ConstrainCoincident/de.md), [Topologisches Benennungsproblem](Topological_naming_problem/de.md) --- +# Sketcher ValidateSketch/de + ## Beschreibung Das Dienstprogramm **Skizze validieren** kann verwendet werden, um eine Skizze zu analysieren und zu reparieren, die nicht mehr bearbeitbar ist oder ungültige Beschränkungen enthält, oder um fehlende [Deckungsgleiche Beschränkungen](Sketcher_ConstrainCoincident/de.md) zu einer Skizze hinzuzufügen, die aus importierter Geometrie wie DXF Dateien erstellt wurde. Es kann auch nützlich sein, eine fehlende Deckungsgleichheit in einer ursprünglichen Skizze zu finden, die beim Versuch, eine PartDesign Funktion anzuwenden, die Fehlermeldung \"kann gebrochene Fläche nicht validieren\" erzeugt. @@ -85,4 +87,7 @@ Der Sperrmechanismus funktioniert in der Regel gut und dieses Werkzeug sollte ni {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ValidateSketch/de diff --git a/wiki/translations/de/Sketcher_ViewSection.md b/wiki/translations/de/Sketcher_ViewSection.md index 0475709253..64d8b9bf5b 100644 --- a/wiki/translations/de/Sketcher_ViewSection.md +++ b/wiki/translations/de/Sketcher_ViewSection.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Sketcher ViewSection/de + ## Beschreibung Das **Schnittansicht** Werkzeug erzeugt eine Schnittebene, die vorübergehend jegliche Elemente vor der Skizzierebene verdeckt. @@ -27,4 +29,7 @@ Es gibt mehrere Wege, diesen Befehl aufzurufen: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSection/de diff --git a/wiki/translations/de/Sketcher_ViewSketch.md b/wiki/translations/de/Sketcher_ViewSketch.md index b4e4c144a8..7d608821c9 100644 --- a/wiki/translations/de/Sketcher_ViewSketch.md +++ b/wiki/translations/de/Sketcher_ViewSketch.md @@ -6,6 +6,8 @@ Workbenches:[Skizzierer Arbeitsbereich](Sketcher_Workbench/de.md), [PartDesign Arbeitsbereich](PartDesign_Workbench/de.md) --- +# Sketcher ViewSketch/de + ## Beschreibung Dieses Werkzeug setzt das Modell lotrecht zur Skizzenebene. Das ist sinnvoll, wenn der Benutzer die Ansicht auf das Modell geändert hat, um einen anderen Aspekt des Modells zu untersuchen und zu einer normalen Ansicht der Skizze zurückkehren will. @@ -23,4 +25,7 @@ Wenn im Skizzenbearbeitungsmodus, entweder {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSketch/de diff --git a/wiki/translations/de/Sketcher_Workbench.md b/wiki/translations/de/Sketcher_Workbench.md index be6b83a6ca..01f37453e7 100644 --- a/wiki/translations/de/Sketcher_Workbench.md +++ b/wiki/translations/de/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/de - - - - - -Skizzierer Arbeitsbereichssymbol +# Skizzierer Arbeitsbereichssymbol Sketcher Workbench/de {{TOCright}} @@ -505,3 +499,6 @@ Die [Skizzierer Skripten](Sketcher_scripting/de.md) Seite enthält Beispiele fü }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/de diff --git a/wiki/translations/de/Sketcher_helper_constraint.md b/wiki/translations/de/Sketcher_helper_constraint.md index 0bb2e1aa63..9f06e04acc 100644 --- a/wiki/translations/de/Sketcher_helper_constraint.md +++ b/wiki/translations/de/Sketcher_helper_constraint.md @@ -1,6 +1,4 @@ # Sketcher helper constraint/de - - ## Überblick Beispiel einer Hilfsbeschränkung (Beschränkung5 - Punkt auf Kreis) für eine Tangentialbeschränkung (Beschränkung6; im Tangens über Punkt Modus). In diesem Fall wird nur eine Hilfsbeschränkung verwendet, da der Tangentenpunkt der Endpunkt des Ellipsenhauptdurchmessers ist, der von Natur aus auf der Ellipse liegt. @@ -39,4 +37,7 @@ Hilfsbeschränkungen wurden in v0.15.4387 eingeführt. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher helper constraint/de diff --git a/wiki/translations/de/Sketcher_project.md b/wiki/translations/de/Sketcher_project.md index 5edce8b36f..8d087e513f 100644 --- a/wiki/translations/de/Sketcher_project.md +++ b/wiki/translations/de/Sketcher_project.md @@ -1,7 +1,4 @@ # Sketcher project/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -120,3 +117,6 @@ For 0.12: }} [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher project/de diff --git a/wiki/translations/de/Sketcher_reference.md b/wiki/translations/de/Sketcher_reference.md index 25ec711e9c..9a4ae2d3d4 100644 --- a/wiki/translations/de/Sketcher_reference.md +++ b/wiki/translations/de/Sketcher_reference.md @@ -1,6 +1,4 @@ # Sketcher reference/de - - ## Einführung Der Anwender **chrisb** hat ein umfangreiches 70-seitiges Referenzhandbuch für den [Skizzierer Arbeitsbereich](Sketcher_Workbench/de.md) geschrieben, das viele Themen der Benutzung dieses Arbeitsbereichs behandelt. Für unerfahrene Benutzer ist es eine sanfte Einführung, die die grundlegende Verwendung des Skizzierers behandelt und dann in viele Details der Erstellung von geometrischen Elementen und der Verwendung jeder Art von Beschränkungen einführt. @@ -65,4 +63,7 @@ Die allgemeine Struktur des Dokuments ist {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher reference/de diff --git a/wiki/translations/de/Sketcher_requirement_for_a_sketch.md b/wiki/translations/de/Sketcher_requirement_for_a_sketch.md index bab134eac6..1b2374f0bd 100644 --- a/wiki/translations/de/Sketcher_requirement_for_a_sketch.md +++ b/wiki/translations/de/Sketcher_requirement_for_a_sketch.md @@ -1,7 +1,4 @@ # Sketcher requirement for a sketch/de - - - {{TutorialInfo/de |Topic=Skizze |Level=Anfänger @@ -44,4 +41,7 @@ Stellt man versehentlich eine *Überregelung* her, erscheint eine Warnung in der {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher requirement for a sketch/de diff --git a/wiki/translations/de/Sketcher_scripting.md b/wiki/translations/de/Sketcher_scripting.md index 09fbf5970b..0f52f2137a 100644 --- a/wiki/translations/de/Sketcher_scripting.md +++ b/wiki/translations/de/Sketcher_scripting.md @@ -1,5 +1,5 @@ # Sketcher scripting/de - {{TOCright}} +{{TOCright}} ## Erstellen einer Beschränkung mit Python @@ -200,4 +200,7 @@ Der Befehl `Sketch.addConstraint(Sketcher.Constraint('Coincident',0,2,2,2))` erg {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher scripting/de diff --git a/wiki/translations/de/Sketcher_tutorial.md b/wiki/translations/de/Sketcher_tutorial.md index 8b0941b099..a9c90bc55d 100644 --- a/wiki/translations/de/Sketcher_tutorial.md +++ b/wiki/translations/de/Sketcher_tutorial.md @@ -1,2 +1,5 @@ # Sketcher tutorial/de 1. REDIRECT [Basic\_Sketcher\_Tutorial/de](Basic_Sketcher_Tutorial/de.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher tutorial/de diff --git a/wiki/translations/de/Source_Code_Management.md b/wiki/translations/de/Source_Code_Management.md index 6971d28fd1..cd28364559 100644 --- a/wiki/translations/de/Source_Code_Management.md +++ b/wiki/translations/de/Source_Code_Management.md @@ -1,2 +1,5 @@ # Source Code Management/de 1. REDIRECT [Source\_code\_management/de](Source_code_management/de.md) + +--- +[documentation index](../README.md) > Source Code Management/de diff --git a/wiki/translations/de/Source_code_management.md b/wiki/translations/de/Source_code_management.md index 1448160433..3cffd21f50 100644 --- a/wiki/translations/de/Source_code_management.md +++ b/wiki/translations/de/Source_code_management.md @@ -1,5 +1,5 @@ # Source code management/de - {{TOCright}} +{{TOCright}} ## Einführung @@ -974,3 +974,6 @@ Besuche die Entwicklungsabteilung des [FreeCAD Forum](https://forum.freecadweb.o [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source code management/de diff --git a/wiki/translations/de/Source_documentation.md b/wiki/translations/de/Source_documentation.md index 19c12e3acd..7ecbbd6e67 100644 --- a/wiki/translations/de/Source_documentation.md +++ b/wiki/translations/de/Source_documentation.md @@ -1,7 +1,4 @@ # Source documentation/de - - -
@@ -151,3 +148,6 @@ void removeTaskWatcher(void); [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source documentation/de diff --git a/wiki/translations/de/Spinning.md b/wiki/translations/de/Spinning.md index 6f1576039b..dde5d27ee5 100644 --- a/wiki/translations/de/Spinning.md +++ b/wiki/translations/de/Spinning.md @@ -1,2 +1,5 @@ # Spinning/de 1. REDIRECT [Std\_DemoMode/de](Std_DemoMode/de.md) + +--- +[documentation index](../README.md) > Spinning/de diff --git a/wiki/translations/de/Splash_screen.md b/wiki/translations/de/Splash_screen.md index 4e2bb4fdd5..0286244315 100644 --- a/wiki/translations/de/Splash_screen.md +++ b/wiki/translations/de/Splash_screen.md @@ -1,4 +1,7 @@ # Splash screen/de - Der **Begrüßungsbildschirm** ist ein Bild, das während des Starts von FreeCAD erscheint. Du kannst den Begrüßungsbildschirm im Einstellungsmenü von FreeCAD deaktivieren, indem du die Option \"Begrüßungsbildschirm beim Start aktivieren\" entfernst. +Der **Begrüßungsbildschirm** ist ein Bild, das während des Starts von FreeCAD erscheint. Du kannst den Begrüßungsbildschirm im Einstellungsmenü von FreeCAD deaktivieren, indem du die Option \"Begrüßungsbildschirm beim Start aktivieren\" entfernst. [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Splash screen/de diff --git a/wiki/translations/de/Spreadsheet.md b/wiki/translations/de/Spreadsheet.md index 0a00ed68db..3c8144413f 100644 --- a/wiki/translations/de/Spreadsheet.md +++ b/wiki/translations/de/Spreadsheet.md @@ -1,6 +1,4 @@ # Spreadsheet/de - - ## Beschreibung Eine [Kalkulationstabelle](spreadsheet/de.md) ist eine Seite, die Zeilen und Spalten enthält, die es dir ermöglicht, beliebigen Text in Zellen zu speichern. Noch wichtiger ist, dass du die Zellen mit [Ausdrücke](Expressions/de.md) verwenden kannst, um Werte zu berechnen, die von zuvor eingegebenen Werten abhängen; dies können Längen, Winkel, Flächen, Volumen und andere Typen sein. @@ -12,5 +10,5 @@ Eine [Kalkulationstabelle](spreadsheet/de.md) ist eine Seite, die Zeilen und Spa 3. Den Inhalt der Zellen bearbeiten. 4. Schließe den Tabellenblattreiter, wenn du fertig bist. Die Werte werden automatisch gespeichert, wenn du sie eingibst. - - +--- +[documentation index](../README.md) > Spreadsheet/de diff --git a/wiki/translations/de/Spreadsheet_AlignBottom.md b/wiki/translations/de/Spreadsheet_AlignBottom.md index 370d6834f6..7fe4a8dc60 100644 --- a/wiki/translations/de/Spreadsheet_AlignBottom.md +++ b/wiki/translations/de/Spreadsheet_AlignBottom.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignBottom/de + ## Beschreibung Das ** [Kalkulationstabelle UntenAusrichten](Spreadsheet_AlignBottom/de.md)** Werkzeug bewirkt, dass der Text innerhalb der Zelle nach unten ausgerichtet wird. @@ -23,4 +25,7 @@ Das ** [Kalkulati {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignBottom/de diff --git a/wiki/translations/de/Spreadsheet_AlignCenter.md b/wiki/translations/de/Spreadsheet_AlignCenter.md index 46a17873d3..8143a6ecf3 100644 --- a/wiki/translations/de/Spreadsheet_AlignCenter.md +++ b/wiki/translations/de/Spreadsheet_AlignCenter.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignCenter/de + ## Beschreibung Das ** [Kalkulationstabelle MittigAusrichten](Spreadsheet_AlignCenter/de.md)** Werkzeug bewirkt, dass der Text innerhalb der Zelle mittig ausgerichtet wird. @@ -23,4 +25,7 @@ Das ** [Kalkulati {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignCenter/de diff --git a/wiki/translations/de/Spreadsheet_AlignLeft.md b/wiki/translations/de/Spreadsheet_AlignLeft.md index d352ee8b81..5fad5d8801 100644 --- a/wiki/translations/de/Spreadsheet_AlignLeft.md +++ b/wiki/translations/de/Spreadsheet_AlignLeft.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignLeft/de + ## Beschreibung Das ** [Kalkulationstabelle LinksAusrichten](Spreadsheet_AlignLeft/de.md)** bewirkt, dass der Text innerhalb der Zelle nach links ausgerichtet wird. @@ -23,4 +25,7 @@ Das ** [Kalkulation {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignLeft/de diff --git a/wiki/translations/de/Spreadsheet_AlignRight.md b/wiki/translations/de/Spreadsheet_AlignRight.md index 8b644b9969..b7494aa64a 100644 --- a/wiki/translations/de/Spreadsheet_AlignRight.md +++ b/wiki/translations/de/Spreadsheet_AlignRight.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignRight/de + ## Beschreibung Das ** [Kalkulationstabelle RechtsAusrichten](Spreadsheet_AlignRight/de.md)** bewirkt, dass der Text innerhalb der Zelle nach rechts ausgerichtet wird. @@ -23,4 +25,7 @@ Das ** [Kalkulatio {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignRight/de diff --git a/wiki/translations/de/Spreadsheet_AlignTop.md b/wiki/translations/de/Spreadsheet_AlignTop.md index bf8c579a37..1189dde0aa 100644 --- a/wiki/translations/de/Spreadsheet_AlignTop.md +++ b/wiki/translations/de/Spreadsheet_AlignTop.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignTop/de + ## Beschreibung Das ** [Kalkulationstabelle ObenAusrichten](Spreadsheet_AlignTop/de.md)** Werkzeug bewirkt, dass der Text innerhalb der Zelle nach oben ausgerichtet wird. @@ -23,4 +25,7 @@ Das ** [Kalkulations {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignTop/de diff --git a/wiki/translations/de/Spreadsheet_AlignVCenter.md b/wiki/translations/de/Spreadsheet_AlignVCenter.md index b0ae572e2a..61296da1ce 100644 --- a/wiki/translations/de/Spreadsheet_AlignVCenter.md +++ b/wiki/translations/de/Spreadsheet_AlignVCenter.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignVCenter/de + ## Beschreibung Das ** [Kalkulationstabelle AusrichtenVMittig](Spreadsheet_AlignVCenter/de.md)** Werkzeug bewirkt, dass der Text innerhalb der Zelle vertikal zur Mitte der Zelle ausgerichtet wird. @@ -23,4 +25,7 @@ Das ** [Kalkulat {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignVCenter/de diff --git a/wiki/translations/de/Spreadsheet_CSV.md b/wiki/translations/de/Spreadsheet_CSV.md index e37d046e11..aaf505f2ba 100644 --- a/wiki/translations/de/Spreadsheet_CSV.md +++ b/wiki/translations/de/Spreadsheet_CSV.md @@ -1,5 +1,5 @@ # Spreadsheet CSV/de - Das [CSV-Format](https://de.wikipedia.org/wiki/CSV_(Dateiformat)) (Komma-separierte Werte) ist ein Klartext-Format zum Austausch von Tabellenkalkulationsdaten. Es kann normalerweise von jeder Tabellenkalkulation wie LibreOffice oder Microsoft Excel importiert oder exportiert werden. Das Lesen und Schreiben im CSV-Format wird vom eingebauten Python-[CSV-Modul](http://docs.python.org/2/library/csv.html) erledigt. +Das [CSV-Format](https://de.wikipedia.org/wiki/CSV_(Dateiformat)) (Komma-separierte Werte) ist ein Klartext-Format zum Austausch von Tabellenkalkulationsdaten. Es kann normalerweise von jeder Tabellenkalkulation wie LibreOffice oder Microsoft Excel importiert oder exportiert werden. Das Lesen und Schreiben im CSV-Format wird vom eingebauten Python-[CSV-Modul](http://docs.python.org/2/library/csv.html) erledigt. ## Importieren @@ -13,3 +13,6 @@ Das Exportieren eines [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet CSV/de diff --git a/wiki/translations/de/Spreadsheet_CreateSheet.md b/wiki/translations/de/Spreadsheet_CreateSheet.md index e8a8fc06e7..1f9105bebf 100644 --- a/wiki/translations/de/Spreadsheet_CreateSheet.md +++ b/wiki/translations/de/Spreadsheet_CreateSheet.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet CreateSheet/de + ## Beschreibung Das ** [Kalkulationstabelle ErstelleArbeitsblatt](Spreadsheet_CreateSheet/de.md)** Werkzeug fügt dem aktiven Dokument ein neues Kalkulationstabellenobjekt hinzu, das in einem neuen Reiter im [Hauptansichtsbereich](main_view_area/de.md). @@ -23,4 +25,7 @@ Das ** [Kalkulati {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet CreateSheet/de diff --git a/wiki/translations/de/Spreadsheet_Export.md b/wiki/translations/de/Spreadsheet_Export.md index d3dc9774f8..1620362e0d 100644 --- a/wiki/translations/de/Spreadsheet_Export.md +++ b/wiki/translations/de/Spreadsheet_Export.md @@ -8,6 +8,8 @@ SeeAlso:[Kalkulationstabelle Importieren](Spreadsheet_Import/de.md) --- +# Spreadsheet Export/de + ## Beschreibung Das ** [Kalkulationstabelle Export](Spreadsheet_Export/de.md)** Werkzeug ermöglcht dir eine Kalkulationstabelle als Komma-getrennte Werte Datei (frei als CSV bezeichnet) (engl.: Comma Separated Values) in eine Kalkulationstabelle zu exportieren, die anschließend geöffnet und in anderen Anwendungen verwendet werden kann. @@ -23,4 +25,7 @@ Das ** [Kalkulationsta {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Export/de diff --git a/wiki/translations/de/Spreadsheet_Import.md b/wiki/translations/de/Spreadsheet_Import.md index 4c4d4242af..8c77951ea7 100644 --- a/wiki/translations/de/Spreadsheet_Import.md +++ b/wiki/translations/de/Spreadsheet_Import.md @@ -8,6 +8,8 @@ SeeAlso:[Kalkulationstabelle Exportieren](Spreadsheet_Export/de.md) --- +# Spreadsheet Import/de + ## Beschreibung Das ** [Kalkulationstabelle Import](Spreadsheet_Import/de.md)** Werkzeug ermöglcht dir eine Komma-getrennte Werte Datei (frei als CSV bezeichnet) (engl.: Comma Separated Values) in eine Kalkulationstabelle zu importieren, so dass sie geändert und mit [Ausdrücken](expressions/de.md) verwendet werden kann. @@ -27,4 +29,7 @@ Das ** [Kalkulationsta {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Import/de diff --git a/wiki/translations/de/Spreadsheet_MergeCells.md b/wiki/translations/de/Spreadsheet_MergeCells.md index b1399f35bd..1920659c2b 100644 --- a/wiki/translations/de/Spreadsheet_MergeCells.md +++ b/wiki/translations/de/Spreadsheet_MergeCells.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet MergeCells/de + ## Beschreibung Das ** [Kalkulationstabelle ZellenZusammenführen](Spreadsheet_MergeCells/de.md)** Werkzeug führt mindestens zwei ausgewählte Zellen in einer bestehenden Kalkulationstabelle im aktiven Dokument zusammen. @@ -23,4 +25,7 @@ Das ** [Kalkulatio {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet MergeCells/de diff --git a/wiki/translations/de/Spreadsheet_Module.md b/wiki/translations/de/Spreadsheet_Module.md index 6338cd7fba..170ff37790 100644 --- a/wiki/translations/de/Spreadsheet_Module.md +++ b/wiki/translations/de/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module/de 1. REDIRECT [Spreadsheet Workbench/de](Spreadsheet_Workbench/de.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module/de diff --git a/wiki/translations/de/Spreadsheet_SetAlias.md b/wiki/translations/de/Spreadsheet_SetAlias.md index 900599e1a8..b8686b4b48 100644 --- a/wiki/translations/de/Spreadsheet_SetAlias.md +++ b/wiki/translations/de/Spreadsheet_SetAlias.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet SetAlias/de + ## Beschreibung Das ** [Kalkulationstabelle SetzeAlias](Spreadsheet_SetAlias/de.md)** Werkzeug öffnet ein Dialogfeld zum Einrichten eines Alias für eine Zelle. Anstelle des exakten Zellnamens wie A2, B3 oder C4 kann auch ein benutzerdefinierter Name verwendet werden. @@ -24,4 +26,7 @@ Das ** [Kalkulations {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet SetAlias/de diff --git a/wiki/translations/de/Spreadsheet_SplitCell.md b/wiki/translations/de/Spreadsheet_SplitCell.md index e917f379c9..cd4e0059b3 100644 --- a/wiki/translations/de/Spreadsheet_SplitCell.md +++ b/wiki/translations/de/Spreadsheet_SplitCell.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet SplitCell/de + ## Beschreibung Das ** [Kalkulationstabelle ZelleTeilen](Spreadsheet_SplitCell/de.md)** Werkzeug teilt eine Zelle auseinander, die in einer bestehenden Tabelle im aktiven Dokument zu einer Zelle zusammengeführt wurde. @@ -23,4 +25,7 @@ Das ** [Kalkulation {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet SplitCell/de diff --git a/wiki/translations/de/Spreadsheet_StyleBold.md b/wiki/translations/de/Spreadsheet_StyleBold.md index aa51d7e2db..6b2704eeb7 100644 --- a/wiki/translations/de/Spreadsheet_StyleBold.md +++ b/wiki/translations/de/Spreadsheet_StyleBold.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet StyleBold/de + ## Beschreibung Das ** [Kalkulationstabelle StilFett](Spreadsheet_StyleBold/de.md)** Werkzeug bewirkt, dass der Text innerhalb der Zelle den Stil **fett** erhält. @@ -23,4 +25,7 @@ Das ** [Kalkulation {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleBold/de diff --git a/wiki/translations/de/Spreadsheet_StyleItalic.md b/wiki/translations/de/Spreadsheet_StyleItalic.md index a0afa0c043..ba529dab59 100644 --- a/wiki/translations/de/Spreadsheet_StyleItalic.md +++ b/wiki/translations/de/Spreadsheet_StyleItalic.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet StyleItalic/de + ## Beschreibung Das ** [Kalkulationstabelle StilKursiv](Spreadsheet_StyleItalic/de.md)** Werkzeug bewirkt, dass der Text innerhalb der Zelle den Stil **kursiv** erhält. @@ -23,4 +25,7 @@ Das ** [Kalkulati {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleItalic/de diff --git a/wiki/translations/de/Spreadsheet_StyleUnderline.md b/wiki/translations/de/Spreadsheet_StyleUnderline.md index 790299c33e..cb692e3d4a 100644 --- a/wiki/translations/de/Spreadsheet_StyleUnderline.md +++ b/wiki/translations/de/Spreadsheet_StyleUnderline.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet StyleUnderline/de + ## Beschreibung Das unterstrichen erhält. @@ -23,4 +25,7 @@ Das unterstrichen erhält. {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleUnderline/de diff --git a/wiki/translations/de/Spreadsheet_Workbench.md b/wiki/translations/de/Spreadsheet_Workbench.md index ef95b9f063..09646f41ed 100644 --- a/wiki/translations/de/Spreadsheet_Workbench.md +++ b/wiki/translations/de/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/de - {{Page_in_progress}} @@ -249,3 +248,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/de diff --git a/wiki/translations/de/Spreadsheet_legacy.md b/wiki/translations/de/Spreadsheet_legacy.md index 53d5961ec5..5f953983df 100644 --- a/wiki/translations/de/Spreadsheet_legacy.md +++ b/wiki/translations/de/Spreadsheet_legacy.md @@ -1,2 +1,5 @@ # Spreadsheet legacy/de 1. REDIRECT [Spreadsheet\_Workbench/de](Spreadsheet_Workbench/de.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet legacy/de diff --git a/wiki/translations/de/Standard_Menu.md b/wiki/translations/de/Standard_Menu.md index ebe31c7f8a..845f32878c 100644 --- a/wiki/translations/de/Standard_Menu.md +++ b/wiki/translations/de/Standard_Menu.md @@ -1,5 +1,5 @@ # Standard Menu/de - {{TOCright}} +{{TOCright}} ## Einführung @@ -47,4 +47,7 @@ Das Standardmenü besteht aus 7 Untermenüs: {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Standard Menu/de diff --git a/wiki/translations/de/Start_Preferences.md b/wiki/translations/de/Start_Preferences.md index cc2ab6bf4d..23c85c85fd 100644 --- a/wiki/translations/de/Start_Preferences.md +++ b/wiki/translations/de/Start_Preferences.md @@ -1,6 +1,4 @@ # Start Preferences/de - - Der Einstellungsbildschirm der [Start Arbeitsbereich](Start_Workbench/de.md) befindet sich im [Einstellungseditor](Preferences_Editor/de.md), {{MenuCommand/de|Bearbeiten → Einstellungen → Start}}. Es gibt nur eine Registerkarte: Startseite. @@ -114,3 +112,6 @@ Auf der Registerkarte \'\'Startseite \'\' kannst du folgendes festlegen: }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start Preferences/de diff --git a/wiki/translations/de/Start_Workbench.md b/wiki/translations/de/Start_Workbench.md index e606eb6d7c..a9920d0cbe 100644 --- a/wiki/translations/de/Start_Workbench.md +++ b/wiki/translations/de/Start_Workbench.md @@ -1,10 +1,4 @@ -# Start Workbench/de - - - - - -Start Arbeitsbereichssymbol +# Start Arbeitsbereichssymbol Start Workbench/de Der [Start Arbeitsbereich](Start_Workbench/de.md) ist kein richtiger Arbeitsbereich, es ist nur die Seite, die angezeigt wird, wenn FreeCAD ohne geladenes Dokument geöffnet wird. @@ -23,3 +17,6 @@ Von dieser Oberfläche aus kannst Du nützliche Informationen einsehen und zu de [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench/de diff --git a/wiki/translations/de/Start_up_and_Configuration.md b/wiki/translations/de/Start_up_and_Configuration.md index dd067a71b3..3f3f3582f5 100644 --- a/wiki/translations/de/Start_up_and_Configuration.md +++ b/wiki/translations/de/Start_up_and_Configuration.md @@ -1,10 +1,4 @@ # Start up and Configuration/de - - - - - - {{TOCright}} ## Überblick @@ -419,3 +413,6 @@ Doppelklicke nun auf die Stapelverarbeitungsdatei, um FreeCAD zu starten. ([sieh [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start up and Configuration/de diff --git a/wiki/translations/de/Status_bar.md b/wiki/translations/de/Status_bar.md index 1391048d77..5f7a208ca5 100644 --- a/wiki/translations/de/Status_bar.md +++ b/wiki/translations/de/Status_bar.md @@ -1,6 +1,4 @@ # Status bar/de - - ## Einleitung Die [Statusleiste](status_bar/de.md) ist eine einfache Multifunktionsleiste, die am unteren Rand der FreeCAD-[Schnittstelle](interface/de.md) erscheint. @@ -20,4 +18,7 @@ Die Statusleiste zeigt auch das zuletzt vorgewählte Objekt (jedes Objekt unter {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Status bar/de diff --git a/wiki/translations/de/Std_About.md b/wiki/translations/de/Std_About.md index 1462f603b5..e36e6ab1f9 100644 --- a/wiki/translations/de/Std_About.md +++ b/wiki/translations/de/Std_About.md @@ -7,6 +7,8 @@ SeeAlso:[Standardmenü](Standard_Menu/de.md) --- +# Std About/de + ## Beschreibung Der Befehl **Std Über** öffnet ein Dialogfenster, das Informationen über das FreeCAD Programm anzeigt. @@ -70,3 +72,6 @@ Der Bibliotheken Reiter zeigt eine Liste der externen Bibliotheken, die vom Prog {{Std Base navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Std About/de diff --git a/wiki/translations/de/Std_ActivateNextWindow.md b/wiki/translations/de/Std_ActivateNextWindow.md index 58b98a4884..9f346f1cc1 100644 --- a/wiki/translations/de/Std_ActivateNextWindow.md +++ b/wiki/translations/de/Std_ActivateNextWindow.md @@ -7,6 +7,8 @@ SeeAlso:[Std VorherigesFensterAktivieren](Std_ActivatePrevWindow/de.md), [Std Fenster](Std_Windows/de.md) --- +# Std ActivateNextWindow/de + ## Beschreibung Der **Std NächstesFensterAktivieren**-Befehl aktiviert das nächste Fenster im [Hauptansichtsbereich](Main_view_area/de.md). Das nächste Fenster wird durch die Reihenfolge festgelegt, in der die Fenster im Hauptansichtsbereich das letzte Mal aktiviert wurden. @@ -28,4 +30,7 @@ Fenster im Hauptansichtsbereich sind auch im **Fenster**-Menü aufgeführt und k {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ActivateNextWindow/de diff --git a/wiki/translations/de/Std_ActivatePrevWindow.md b/wiki/translations/de/Std_ActivatePrevWindow.md index db63716c64..e5c23b2dd2 100644 --- a/wiki/translations/de/Std_ActivatePrevWindow.md +++ b/wiki/translations/de/Std_ActivatePrevWindow.md @@ -7,6 +7,8 @@ SeeAlso:[Std NächstesFensterAktivieren](Std_ActivateNextWindow/de.md), [Std Fenster](Std_Windows/de.md) --- +# Std ActivatePrevWindow/de + ## Beschreibung Der **Std VorherigesFenster**-Befehl funktioniert nicht korrekt [1](https://forum.freecadweb.org/viewtopic.php?f=3&t=45157). @@ -28,4 +30,7 @@ Fenster im Hauptansichtsbereich sind auch im **Fenster**-Menü aufgeführt und k {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ActivatePrevWindow/de diff --git a/wiki/translations/de/Std_AddonMgr.md b/wiki/translations/de/Std_AddonMgr.md index d4fbd8ba4f..baff0fdd81 100644 --- a/wiki/translations/de/Std_AddonMgr.md +++ b/wiki/translations/de/Std_AddonMgr.md @@ -8,6 +8,8 @@ SeeAlso:[Externe Arbeitsbereiche](External_workbenches/de.md), [Makros](Macros/de.md) --- +# Std AddonMgr/de + ## Beschreibung Der **Std ErweiterungVerw** Befehl öffnet den Erweiterungsverwalter. Mit dem Erweiterungsverwalter kannst du [externe Arbeitsbereiche](external_workbenches/de.md) und [Makros](macros/de.md), die von der FreeCAD Gemeinschaft bereitgestellt werden, installieren und verwalten. Die verfügbaren Arbeitsbereiche und Makros stammen aus zwei Repositorien, [FreeCAD-addons](https://github.com/FreeCAD/FreeCAD-addons/) und [FreeCAD-macros](https://github.com/FreeCAD/FreeCAD-macros/), sowie von der [Makrosrezepte](Macros_recipes/de.md) Seite. @@ -78,4 +80,7 @@ Wenn du einen Arbeitsbereich in C++ entwickelst, kann er nicht direkt durch Benu {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std AddonMgr/de diff --git a/wiki/translations/de/Std_Alignment.md b/wiki/translations/de/Std_Alignment.md index d7f827a627..37b2c137aa 100644 --- a/wiki/translations/de/Std_Alignment.md +++ b/wiki/translations/de/Std_Alignment.md @@ -7,6 +7,8 @@ SeeAlso:[Std Positionierung](Std_Placement/de.md) --- +# Std Alignment/de + ## Beschreibung Der **Std Ausrichtung** Befehl richtet ein Objekt in Bezug auf ein festes Referenzobjekt unter Nutzung eines oder mehrerer Punktepaare aus. @@ -37,4 +39,7 @@ Die folgenden zusätzlichen Möglichkeiten können im Kontextmenü gewählt werd {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Alignment/de diff --git a/wiki/translations/de/Std_ArrangeIcons.md b/wiki/translations/de/Std_ArrangeIcons.md index ae30e16b66..374d185902 100644 --- a/wiki/translations/de/Std_ArrangeIcons.md +++ b/wiki/translations/de/Std_ArrangeIcons.md @@ -7,6 +7,8 @@ SeeAlso:[Std Anordnen](Std_TileWindows/de.md) --- +# Std ArrangeIcons/de + ## Beschreibung Der **Std SymboleAnordnen**-Befehl funktioniert nicht richtig. Er hat den gleichen Effekt wird der [Std Anordnen](Std_TileWindows/de.md)-Befehl. Siehe dort. @@ -17,4 +19,7 @@ Der **Std SymboleAnordnen**-Befehl funktioniert nicht richtig. Er hat den gleich {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ArrangeIcons/de diff --git a/wiki/translations/de/Std_AxisCross.md b/wiki/translations/de/Std_AxisCross.md index b53c9f42fe..3324a568f6 100644 --- a/wiki/translations/de/Std_AxisCross.md +++ b/wiki/translations/de/Std_AxisCross.md @@ -7,6 +7,8 @@ Shortcut:**A** **C** --- +# Std AxisCross/de + ## Beschreibung Der **Std AxisCross**-Befehl schaltet das Achsenkreuz in der aktiven [3D-Ansicht](3D_view/de.md) ein/aus. @@ -53,4 +55,7 @@ FreeCADGui.ActiveDocument.ActiveView.hasAxisCross() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std AxisCross/de diff --git a/wiki/translations/de/Std_Base.md b/wiki/translations/de/Std_Base.md index 163386dcd8..3a86c9090c 100644 --- a/wiki/translations/de/Std_Base.md +++ b/wiki/translations/de/Std_Base.md @@ -1,10 +1,4 @@ -# Std Base/de - - - - - -Symbol Std Basis +# Symbol Std Basis Std Base/de {{TOCright}} @@ -67,3 +61,6 @@ Das Standardmenü setzt sich aus 7 Untermenüs zusammen. Jedes Untermenü hat ei }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Base/de diff --git a/wiki/translations/de/Std_BoxElementSelection.md b/wiki/translations/de/Std_BoxElementSelection.md index 3d06621671..6d3f25b677 100644 --- a/wiki/translations/de/Std_BoxElementSelection.md +++ b/wiki/translations/de/Std_BoxElementSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std BoxSelection](Std_BoxSelection/de.md), [Std SelectAll](Std_SelectAll/de.md) --- +# Std BoxElementSelection/de + ## Beschreibung Der **Std BoxElementAuswahl**-Befehl ermöglicht es, in der 3D-Ansicht Flächen aus einem benutzerdefinierten rechteckigen Bereich, einem Quader, auszuwählen. @@ -30,4 +32,7 @@ Der **Std BoxElementAuswahl**-Befehl ermöglicht es, in der 3D-Ansicht Flächen {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std BoxElementSelection/de diff --git a/wiki/translations/de/Std_BoxSelection.md b/wiki/translations/de/Std_BoxSelection.md index 4e8162516d..86668fcaa8 100644 --- a/wiki/translations/de/Std_BoxSelection.md +++ b/wiki/translations/de/Std_BoxSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std RechteckElementAuswahl](Std_BoxElementSelection/de.md), [Std AllesAuswählen](Std_SelectAll/de.md) --- +# Std BoxSelection/de + ## Beschreibung Der **Std Rechteckauswahl**-Befehl ermöglicht es, in der 3D-Ansicht Flächen aus einem benutzerdefinierten rechteckigen Bereich auszuwählen. @@ -35,4 +37,7 @@ Der **Std Rechteckauswahl**-Befehl ermöglicht es, in der 3D-Ansicht Flächen au {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std BoxSelection/de diff --git a/wiki/translations/de/Std_CascadeWindows.md b/wiki/translations/de/Std_CascadeWindows.md index 615da85fac..af1bd3ddcf 100644 --- a/wiki/translations/de/Std_CascadeWindows.md +++ b/wiki/translations/de/Std_CascadeWindows.md @@ -6,6 +6,8 @@ SeeAlso:[Std FensterAnordnen](Std_TileWindows/de.md) --- +# Std CascadeWindows/de + ## Beschreibung Der **Std FensterÜberlappendAnordnen**-Befehl ordnet die Fenster im [Hauptansichtsbereich](Main_view_area/de.md) so an, dass sie alle sichtbar sind, aber überlappen. Das Ergebnis wird durch die Reihenfolge festgelegt, in der die Fenster das letzte Mal aktiviert wurden. @@ -24,4 +26,7 @@ Der **Std FensterÜberlappendAnordnen**-Befehl ordnet die Fenster im [Hauptansic {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CascadeWindows/de diff --git a/wiki/translations/de/Std_CloseActiveWindow.md b/wiki/translations/de/Std_CloseActiveWindow.md index 6415bd9347..9116d38153 100644 --- a/wiki/translations/de/Std_CloseActiveWindow.md +++ b/wiki/translations/de/Std_CloseActiveWindow.md @@ -8,6 +8,8 @@ SeeAlso:[Alles schließen](Std_CloseAllWindows/de.md) --- +# Std CloseActiveWindow/de + Schließt das aktuelle Dokument Der **Std Schließen**-Befehl schließt das aktive Fenster. Um ein Dokument zu schließen, müssen alle seine Fenster geschlossen werden. @@ -50,4 +52,7 @@ Um ein Dokument zu schließen, benutze die `closeDocument`-Methode der FreeCAD-A {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CloseActiveWindow/de diff --git a/wiki/translations/de/Std_CloseAllWindows.md b/wiki/translations/de/Std_CloseAllWindows.md index f2117227b1..115a8c560b 100644 --- a/wiki/translations/de/Std_CloseAllWindows.md +++ b/wiki/translations/de/Std_CloseAllWindows.md @@ -7,6 +7,8 @@ SeeAlso:[Schließen](Std_CloseActiceWindow/de.md) --- +# Std CloseAllWindows/de + ## Beschreibung Schließt alle geöffneten Dokumente. @@ -50,4 +52,7 @@ Um ein Dokument zu schließen, benutze die `closeDocument`-Methode der FreeCAD-A {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CloseAllWindows/de diff --git a/wiki/translations/de/Std_Copy.md b/wiki/translations/de/Std_Copy.md index 861a2395a0..8c5d2f55ec 100644 --- a/wiki/translations/de/Std_Copy.md +++ b/wiki/translations/de/Std_Copy.md @@ -1,3 +1,4 @@ +# Std Copy/de --- - GuiCommand:/de Name:Std Copy @@ -33,4 +34,7 @@ Der **Std Kopieren**-Befehl kopiert Objekte in die Zwischenablage. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Copy/de diff --git a/wiki/translations/de/Std_Cut.md b/wiki/translations/de/Std_Cut.md index 91de9fa781..6e414581c5 100644 --- a/wiki/translations/de/Std_Cut.md +++ b/wiki/translations/de/Std_Cut.md @@ -1,3 +1,4 @@ +# Std Cut/de --- - GuiCommand:/de Name:Std Cut @@ -30,4 +31,7 @@ Um andere Objekte auszuschneiden, kannst du den [Std Kopieren](Std_Copy/de.md)-B {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Cut/de diff --git a/wiki/translations/de/Std_Delete.md b/wiki/translations/de/Std_Delete.md index b8db629e81..34f26382b6 100644 --- a/wiki/translations/de/Std_Delete.md +++ b/wiki/translations/de/Std_Delete.md @@ -6,6 +6,8 @@ Shortcut:**Del** --- +# Std Delete/de + ## Beschreibung Der **Std Löschen** Befehl löscht die ausgewählten Objekte. @@ -43,4 +45,7 @@ FreeCAD.ActiveDocument.removeObject("myObjectName") {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Delete/de diff --git a/wiki/translations/de/Std_DemoMode.md b/wiki/translations/de/Std_DemoMode.md index 7a4d0e61eb..08431e305f 100644 --- a/wiki/translations/de/Std_DemoMode.md +++ b/wiki/translations/de/Std_DemoMode.md @@ -6,6 +6,8 @@ Workbenches:Alle --- +# Std DemoMode/de + ## Beschreibung Der **Std DemoModus**-Befehl dreht die Kamera kontinuierlich in einer [3D-Ansicht](3D_view/de.md). @@ -36,4 +38,7 @@ Der **Std DemoModus**-Befehl dreht die Kamera kontinuierlich in einer [3D-Ansich {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DemoMode/de diff --git a/wiki/translations/de/Std_DependencyGraph.md b/wiki/translations/de/Std_DependencyGraph.md index 98c2f3edda..2bfabc70df 100644 --- a/wiki/translations/de/Std_DependencyGraph.md +++ b/wiki/translations/de/Std_DependencyGraph.md @@ -5,6 +5,8 @@ Workbenches:Alle --- +# Std DependencyGraph/de + ## Beschreibung Der **Std AbhängigkeitsDiagramm** Befehl zeigt die Abhängigkeiten zwischen Objekten im aktiven Dokument in einem \'Abhängigkeitsdiagramm\' an. Im Gegensatz zur [Baumansicht](Tree_view/de.md) werden die Objekte in umgekehrter chronologischer Reihenfolge aufgelistet, wobei das erste erstellte Objekt unten steht. @@ -95,3 +97,6 @@ Du kannst ein Abhängigkeitsdiagramm speichern: }} [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > Std DependencyGraph/de diff --git a/wiki/translations/de/Std_DlgCustomize.md b/wiki/translations/de/Std_DlgCustomize.md index 0d86fc3984..5342ce8809 100644 --- a/wiki/translations/de/Std_DlgCustomize.md +++ b/wiki/translations/de/Std_DlgCustomize.md @@ -7,6 +7,8 @@ SeeAlso:[Oberflächenanpassung](Interface_Customization/de.md) --- +# Std DlgCustomize/de + ## Beschreibung Der **Std DlgAnpassen** Befehl öffnet das Dialogfeld Anpassen, das Zugriff auf mehrere Anpassungsoptionen bietet. @@ -32,4 +34,7 @@ Der **Std DlgAnpassen** Befehl öffnet das Dialogfeld Anpassen, das Zugriff auf {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgCustomize/de diff --git a/wiki/translations/de/Std_DlgMacroExecute.md b/wiki/translations/de/Std_DlgMacroExecute.md index df17136a76..21ac169b37 100644 --- a/wiki/translations/de/Std_DlgMacroExecute.md +++ b/wiki/translations/de/Std_DlgMacroExecute.md @@ -7,6 +7,8 @@ SeeAlso:[Direkt ausführen](Std_DlgMacroExecuteDirect/de.md) --- +# Std DlgMacroExecute/de +
@@ -132,4 +134,7 @@ Wenn Du in {{MenuCommand/de| Std DlgMacroExecute/de diff --git a/wiki/translations/de/Std_DlgMacroExecuteDirect.md b/wiki/translations/de/Std_DlgMacroExecuteDirect.md index 36caf94016..2d4c0ae517 100644 --- a/wiki/translations/de/Std_DlgMacroExecuteDirect.md +++ b/wiki/translations/de/Std_DlgMacroExecuteDirect.md @@ -7,6 +7,8 @@ SeeAlso:[Std DlgMacroExecute](Std_DlgMacroExecute.md) --- +# Std DlgMacroExecuteDirect/de + ## Description The **Std DlgMacroExecuteDirect** command executes the macro in the current Macro editor window. @@ -31,4 +33,7 @@ The **Std DlgMacroExecuteDirect** command executes the macro in the current Macr {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgMacroExecuteDirect/de diff --git a/wiki/translations/de/Std_DlgMacroRecord.md b/wiki/translations/de/Std_DlgMacroRecord.md index 3329dd1c32..aacf2490cc 100644 --- a/wiki/translations/de/Std_DlgMacroRecord.md +++ b/wiki/translations/de/Std_DlgMacroRecord.md @@ -7,6 +7,8 @@ Siehe auch:[Std MakroStopAufzeichnung](Std_DlgMacroExecuteDirect/de.md) --- +# Std DlgMacroRecord/de + ## Beschreibung Der **Std DlgMacroRecord** Befehl startet eine [Makro](Macros/de.md) Aufnahmesitzung, während der Benutzeraktionen in einem FreeCAD Makro, einer Datei mit der {{FileName|.FCMacro}} Erweiterung gespeichert werden. Ein Makro kann später wiedergegeben und ausgeführt werden, um die aufgezeichneten Aktionen zu wiederholen. @@ -50,4 +52,7 @@ Der **Std DlgMacroRecord** Befehl startet eine [Makro](Macros/de.md) Aufnahmesit {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgMacroRecord/de diff --git a/wiki/translations/de/Std_DlgParameter.md b/wiki/translations/de/Std_DlgParameter.md index 7683f08c3e..e6775c8d35 100644 --- a/wiki/translations/de/Std_DlgParameter.md +++ b/wiki/translations/de/Std_DlgParameter.md @@ -6,6 +6,8 @@ Icon:Std DlgParameter.svg --- +# Std DlgParameter/de + @@ -185,4 +187,7 @@ It is likely a bad idea to modify the preferences of other parts of FreeCAD unle {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgParameter/de diff --git a/wiki/translations/de/Std_DlgPreferences.md b/wiki/translations/de/Std_DlgPreferences.md index 3ffacfacf5..b1bbd56265 100644 --- a/wiki/translations/de/Std_DlgPreferences.md +++ b/wiki/translations/de/Std_DlgPreferences.md @@ -7,6 +7,8 @@ SeeAlso:[Voreinstellungseditor](Preferences_Editor/de.md) --- +# Std DlgPreferences/de + ## Beschreibung Der **Std DlgEinstellungen**-Befehl öffnet den [Voreinstellungseditor](Preferences_Editor/de.md). @@ -26,4 +28,7 @@ Der **Std DlgEinstellungen**-Befehl öffnet den [Voreinstellungseditor](Preferen {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgPreferences/de diff --git a/wiki/translations/de/Std_DrawStyle.md b/wiki/translations/de/Std_DrawStyle.md index 71401d888e..6fed3391eb 100644 --- a/wiki/translations/de/Std_DrawStyle.md +++ b/wiki/translations/de/Std_DrawStyle.md @@ -6,6 +6,8 @@ SeeAlso:[WahlBegrenzungRahmen](Std_SelBoundingBox/de.md) --- +# Std DrawStyle/de + @@ -107,4 +109,7 @@ The **Flat lines** style overrides the **Display Mode** of objects. This style m {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DrawStyle/de diff --git a/wiki/translations/de/Std_DuplicateSelection.md b/wiki/translations/de/Std_DuplicateSelection.md index f3d4bc1eb8..d38535e8f1 100644 --- a/wiki/translations/de/Std_DuplicateSelection.md +++ b/wiki/translations/de/Std_DuplicateSelection.md @@ -1,3 +1,4 @@ +# Std DuplicateSelection/de --- - GuiCommand:/de Name:Std DuplicateSelection Name/de:Std Auswahl duplizieren MenuLocation:Bearbeiten → Auswahl duplizieren Shortcut: Workbenches:Alle SeeAlso:[Kopieren](Std_Copy/de.md), [Einfügen](Std_Paste/de.md)--- @@ -51,4 +52,7 @@ Mehr Einzelheiten zum Replizieren von Objekten gibt es auf der [Objekte kopieren {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DuplicateSelection/de diff --git a/wiki/translations/de/Std_Edit.md b/wiki/translations/de/Std_Edit.md index ceaf433c53..a7fe716407 100644 --- a/wiki/translations/de/Std_Edit.md +++ b/wiki/translations/de/Std_Edit.md @@ -6,6 +6,8 @@ Workbenches:Alle --- +# Std Edit/de + ## Beschreibung Der **Std Bearbeiten**-Befehl aktiviert oder deaktiviert den Bearbeitungsmodus eines Objekts. @@ -61,4 +63,7 @@ FreeCADGui.ActiveDocument.resetEdit() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Edit/de diff --git a/wiki/translations/de/Std_Edit_Menu.md b/wiki/translations/de/Std_Edit_Menu.md index 8ed8dc4ff6..752bd7e11d 100644 --- a/wiki/translations/de/Std_Edit_Menu.md +++ b/wiki/translations/de/Std_Edit_Menu.md @@ -1,10 +1,4 @@ -# Std Edit Menu/de - - - - - -Std Basis Symbol +# Std Basis Symbol Std Edit Menu/de {{TOCright}} @@ -80,3 +74,6 @@ Die folgenden Werkzeuge sind in diesem Menü verfügbar: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Edit Menu/de diff --git a/wiki/translations/de/Std_Exit.md b/wiki/translations/de/Std_Exit.md index e5e264a1f7..0910860caf 100644 --- a/wiki/translations/de/Std_Exit.md +++ b/wiki/translations/de/Std_Exit.md @@ -1,2 +1,5 @@ # Std Exit/de 1. REDIRECT [Std Quit/de](Std_Quit/de.md) + +--- +[documentation index](../README.md) > Std Exit/de diff --git a/wiki/translations/de/Std_Export.md b/wiki/translations/de/Std_Export.md index e8ecb17d3b..06f0c28bff 100644 --- a/wiki/translations/de/Std_Export.md +++ b/wiki/translations/de/Std_Export.md @@ -1,3 +1,4 @@ +# Std Export/de --- - GuiCommand:/de Name:Std Export @@ -50,3 +51,6 @@ Der **Std Export**-Befehl exportiert ausgewählte Objekte in ein anderes Dateifo }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Export/de diff --git a/wiki/translations/de/Std_ExportGraphviz.md b/wiki/translations/de/Std_ExportGraphviz.md index 07621c19f5..f145e726b3 100644 --- a/wiki/translations/de/Std_ExportGraphviz.md +++ b/wiki/translations/de/Std_ExportGraphviz.md @@ -1,2 +1,5 @@ # Std ExportGraphviz/de 1. REDIRECT [Std\_DependencyGraph/de](Std_DependencyGraph/de.md) + +--- +[documentation index](../README.md) > Std ExportGraphviz/de diff --git a/wiki/translations/de/Std_File_Menu.md b/wiki/translations/de/Std_File_Menu.md index 82953c44fa..d10ae93894 100644 --- a/wiki/translations/de/Std_File_Menu.md +++ b/wiki/translations/de/Std_File_Menu.md @@ -1,10 +1,4 @@ -# Std File Menu/de - - - - - -Std Basis Symbol +# Std Basis Symbol Std File Menu/de {{TOCright}} @@ -82,3 +76,6 @@ Die folgenden Werkzeuge sind in diesem Menü verfügbar: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std File Menu/de diff --git a/wiki/translations/de/Std_FreeCADUserHub.md b/wiki/translations/de/Std_FreeCADUserHub.md index e2d4bd9dc2..7b1e7b9919 100644 --- a/wiki/translations/de/Std_FreeCADUserHub.md +++ b/wiki/translations/de/Std_FreeCADUserHub.md @@ -6,6 +6,8 @@ SeeAlso:[Hilfe](Std_OnlineHelp/de.md) --- +# Std FreeCADUserHub/de + @@ -41,4 +43,7 @@ Currently the command points to [](htt {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADUserHub/de diff --git a/wiki/translations/de/Std_FreeCADWebsite.md b/wiki/translations/de/Std_FreeCADWebsite.md index 779173a63b..f939a0548d 100644 --- a/wiki/translations/de/Std_FreeCADWebsite.md +++ b/wiki/translations/de/Std_FreeCADWebsite.md @@ -5,6 +5,8 @@ ‎ Workbenches:Alle --- +# Std FreeCADWebsite/de + @@ -40,4 +42,7 @@ Currently the command points to [](https://www.freec {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADWebsite/de diff --git a/wiki/translations/de/Std_FreezeViews.md b/wiki/translations/de/Std_FreezeViews.md index 672aeb8855..4ab0c1d9fe 100644 --- a/wiki/translations/de/Std_FreezeViews.md +++ b/wiki/translations/de/Std_FreezeViews.md @@ -8,6 +8,8 @@ SeeAlso:[Std ViewIvIssueCamPos](Std_ViewIvIssueCamPos/de.md) --- +# Std FreezeViews/de + ## Einführung FreeCAD can store camera settings in up to 50 \'frozen views\'. The menu options that deal with frozen views can be found in the **View → Freeze display** submenu. Frozen views are not stored in the document and, if not saved with the **[Save views\...](#Save_views.md)** menu option, will be lost when the FreeCAD application closes. @@ -100,4 +102,7 @@ For each frozen view a **Restore view** option is added with which it can be res {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreezeViews/de diff --git a/wiki/translations/de/Std_Group.md b/wiki/translations/de/Std_Group.md index c4891c8004..17f7cea273 100644 --- a/wiki/translations/de/Std_Group.md +++ b/wiki/translations/de/Std_Group.md @@ -1,3 +1,4 @@ +# Std Group/de --- - GuiCommand:/de Name:Std Group @@ -124,4 +125,7 @@ Zum Beispiel ist ein [FEM Analyse](FEM_Analysis/de.md) ein `App::DocumentObjectG {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Group/de diff --git a/wiki/translations/de/Std_Help.md b/wiki/translations/de/Std_Help.md index 6269e9a7c2..e34664c167 100644 --- a/wiki/translations/de/Std_Help.md +++ b/wiki/translations/de/Std_Help.md @@ -1,2 +1,5 @@ # Std Help/de 1. REDIRECT [Std\_Help\_Menu/de](Std_Help_Menu/de.md) + +--- +[documentation index](../README.md) > Std Help/de diff --git a/wiki/translations/de/Std_Help_Menu.md b/wiki/translations/de/Std_Help_Menu.md index 0dd4e58173..300a1e4b9b 100644 --- a/wiki/translations/de/Std_Help_Menu.md +++ b/wiki/translations/de/Std_Help_Menu.md @@ -1,10 +1,4 @@ -# Std Help Menu/de - - - - - -Std Base icon +# Std Base icon Std Help Menu/de {{TOCright}} @@ -118,3 +112,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Help Menu/de diff --git a/wiki/translations/de/Std_Import.md b/wiki/translations/de/Std_Import.md index 31de98b9a5..12b58f2312 100644 --- a/wiki/translations/de/Std_Import.md +++ b/wiki/translations/de/Std_Import.md @@ -8,6 +8,8 @@ SeeAlso:[Std Öffnen](Std_Open/de.md), [Import Export](Import_Export/de.md), [Import Export Einstellungen](Import_Export_Preferences/de.md) --- +# Std Import/de + ## Beschreibung Der Befehl **Std Import** importiert Geometrie aus einem anderen Dateiformat in das aktive Dokument. Es werden viele Dateiformate unterstützt und für einige Formate gibt es mehrere Importoptionen. Siehe [Import Export](Import_Export/de.md) für weitere Informationen. @@ -46,3 +48,6 @@ Der Befehl **Std Import** importiert Geometrie aus einem anderen Dateiformat in }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Import/de diff --git a/wiki/translations/de/Std_InterfaceCustomization.md b/wiki/translations/de/Std_InterfaceCustomization.md index d6fa648031..98b1742564 100644 --- a/wiki/translations/de/Std_InterfaceCustomization.md +++ b/wiki/translations/de/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/de 1. REDIRECT [Interface\_Customization/de](Interface_Customization/de.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/de diff --git a/wiki/translations/de/Std_LinkMake.md b/wiki/translations/de/Std_LinkMake.md index 1628ec71df..7063a05a15 100644 --- a/wiki/translations/de/Std_LinkMake.md +++ b/wiki/translations/de/Std_LinkMake.md @@ -8,6 +8,8 @@ SeeAlso:[Std Part](Std_Part/de.md), [Std Group](Std_Group/de.md), [PartDesign Body](PartDesign_Body/de.md) --- +# Std LinkMake/de + ## Beschreibung @@ -405,4 +407,7 @@ Other miscellaneous \"links\" about Link include: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkMake/de diff --git a/wiki/translations/de/Std_LinkMakeRelative.md b/wiki/translations/de/Std_LinkMakeRelative.md index ce922a1ef5..bd001cbd07 100644 --- a/wiki/translations/de/Std_LinkMakeRelative.md +++ b/wiki/translations/de/Std_LinkMakeRelative.md @@ -8,6 +8,8 @@ SeeAlso:[Std Part](Std_Part/de.md), [Std Gruppe](Std_Group/de.md), [Std VerweisHerstellen](Std_LinkMake/de.md) --- +# Std LinkMakeRelative/de + ## Beschreibung @@ -64,4 +66,7 @@ App.ActiveDocument.recompute() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkMakeRelative/de diff --git a/wiki/translations/de/Std_MacroAttachDebugger.md b/wiki/translations/de/Std_MacroAttachDebugger.md index 34c6474ff5..2cf7c70cd3 100644 --- a/wiki/translations/de/Std_MacroAttachDebugger.md +++ b/wiki/translations/de/Std_MacroAttachDebugger.md @@ -6,6 +6,8 @@ Workbenches:Alle --- +# Std MacroAttachDebugger/de + ## Beschreibung ZuTun. @@ -20,4 +22,7 @@ ZuTun. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MacroAttachDebugger/de diff --git a/wiki/translations/de/Std_MacroStartDebug.md b/wiki/translations/de/Std_MacroStartDebug.md index 7169768c80..b2b15ad527 100644 --- a/wiki/translations/de/Std_MacroStartDebug.md +++ b/wiki/translations/de/Std_MacroStartDebug.md @@ -7,6 +7,8 @@ SeeAlso:[Std MakroFehlersucheAnhalten](Std_MacroStopDebug/de.md) --- +# Std MacroStartDebug/de + ## Beschreibung Dieser Befehl funktioniert zur Zeit nicht. @@ -17,4 +19,7 @@ Dieser Befehl funktioniert zur Zeit nicht. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MacroStartDebug/de diff --git a/wiki/translations/de/Std_MacroStopDebug.md b/wiki/translations/de/Std_MacroStopDebug.md index 4d996d88fb..8b8d99282a 100644 --- a/wiki/translations/de/Std_MacroStopDebug.md +++ b/wiki/translations/de/Std_MacroStopDebug.md @@ -7,6 +7,8 @@ SeeAlso:[Std MakroStarteFehlersuche](Std_MacroStartDebug/de.md) --- +# Std MacroStopDebug/de + ## Beschreibung Dieser Befehl funktioniert zur Zeit nicht. @@ -17,4 +19,7 @@ Dieser Befehl funktioniert zur Zeit nicht. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MacroStopDebug/de diff --git a/wiki/translations/de/Std_MacroStopRecord.md b/wiki/translations/de/Std_MacroStopRecord.md index b987b4e467..06bb2b18ee 100644 --- a/wiki/translations/de/Std_MacroStopRecord.md +++ b/wiki/translations/de/Std_MacroStopRecord.md @@ -7,6 +7,8 @@ SeeAlso:... --- +# Std MacroStopRecord/de + @@ -52,4 +54,7 @@ Wenn du einen ** Std MacroStopRecord/de diff --git a/wiki/translations/de/Std_Macro_Menu.md b/wiki/translations/de/Std_Macro_Menu.md index 0c96f0182c..3c6fd1883e 100644 --- a/wiki/translations/de/Std_Macro_Menu.md +++ b/wiki/translations/de/Std_Macro_Menu.md @@ -1,10 +1,4 @@ -# Std Macro Menu/de - - - - - -Std Basis Symbol +# Std Basis Symbol Std Macro Menu/de {{TOCright}} @@ -70,3 +64,6 @@ Führt das Makro aus, das sich derzeit im Python Editor befindet. }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Macro Menu/de diff --git a/wiki/translations/de/Std_MainFullscreen.md b/wiki/translations/de/Std_MainFullscreen.md index f5988058b2..1518523562 100644 --- a/wiki/translations/de/Std_MainFullscreen.md +++ b/wiki/translations/de/Std_MainFullscreen.md @@ -8,6 +8,8 @@ SeeAlso:[Std ganzerBildschirm](Std_ViewFullscreen/de.md) --- +# Std MainFullscreen/de + ## Beschreibung Der **Std ganzerHauptbildschirm** Befehl schaltet die FreeCAD Hauptansicht zu einen Gesamtbildschirm und zurück um. @@ -24,4 +26,7 @@ Der **Std ganzerHauptbildschirm** Befehl schaltet die FreeCAD Hauptansicht zu ei {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MainFullscreen/de diff --git a/wiki/translations/de/Std_MeasureDistance.md b/wiki/translations/de/Std_MeasureDistance.md index ff9bc6e1e3..b4febc7fb2 100644 --- a/wiki/translations/de/Std_MeasureDistance.md +++ b/wiki/translations/de/Std_MeasureDistance.md @@ -1,3 +1,4 @@ +# Std MeasureDistance/de --- - GuiCommand:/de Name:Std MeasureDistance Name/de:Std MeasureDistance MenuLocation:[[Std Tools Menu/de Werkzeuge]] → Abstand messen‏‎||Workbenches:Alle Shortcut:- SeeAlso:--- @@ -91,4 +92,7 @@ Weitere Möglichkeiten bzgl. Messung/Bemaßung sind {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MeasureDistance/de diff --git a/wiki/translations/de/Std_MergeProject.md b/wiki/translations/de/Std_MergeProject.md index 3d0b3d6afc..87f99793ff 100644 --- a/wiki/translations/de/Std_MergeProject.md +++ b/wiki/translations/de/Std_MergeProject.md @@ -1,2 +1,5 @@ # Std MergeProject/de 1. REDIRECT [Std\_MergeProjects/de](Std_MergeProjects/de.md) + +--- +[documentation index](../README.md) > Std MergeProject/de diff --git a/wiki/translations/de/Std_MergeProjects.md b/wiki/translations/de/Std_MergeProjects.md index 68e488c8ac..8a396292db 100644 --- a/wiki/translations/de/Std_MergeProjects.md +++ b/wiki/translations/de/Std_MergeProjects.md @@ -1,3 +1,4 @@ +# Std MergeProjects/de --- - GuiCommand:/de Name:Std MergeProject Name/de:Std Projekt zusammenführen Workbenches:Alle MenuLocation:[[Std File Menu/de Datei]] → Projekt zusammenführen|Shortcut:- SeeAlso:--- @@ -45,4 +46,7 @@ The **Std MergeProjects** command adds the contents of a FreeCAD file into the a {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MergeProjects/de diff --git a/wiki/translations/de/Std_New.md b/wiki/translations/de/Std_New.md index 620cc65b1d..434a371b03 100644 --- a/wiki/translations/de/Std_New.md +++ b/wiki/translations/de/Std_New.md @@ -8,6 +8,8 @@ SeeAlso:[Öffnen](Std_Open/de.md), [Import](Std_Import/de.md) --- +# Std New/de + ## Beschreibung Der Befehl **Std Neu** erzeugt ein neues leeres Dokument und macht es zum aktiven Dokument. @@ -96,4 +98,7 @@ FreeCAD.closeDocument(doc.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std New/de diff --git a/wiki/translations/de/Std_OnlineHelp.md b/wiki/translations/de/Std_OnlineHelp.md index f03a826b20..a240797530 100644 --- a/wiki/translations/de/Std_OnlineHelp.md +++ b/wiki/translations/de/Std_OnlineHelp.md @@ -8,6 +8,8 @@ SeeAlso:[Anwenderdokumentation](Std_FreeCADUserHub/de.md) --- +# Std OnlineHelp/de + @@ -50,4 +52,7 @@ The **Std OnlineHelp** command opens the help documentation. To open the documen {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std OnlineHelp/de diff --git a/wiki/translations/de/Std_Open.md b/wiki/translations/de/Std_Open.md index 5a369d3188..9574ac035c 100644 --- a/wiki/translations/de/Std_Open.md +++ b/wiki/translations/de/Std_Open.md @@ -6,6 +6,8 @@ SeeAlso:[Speichern](Std_Save/de.md), [Importieren...](Std_Import/de.md) --- +# Std Open/de + @@ -56,4 +58,7 @@ For a scripting example see [Std New](Std_New#Scripting.md). {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Open/de diff --git a/wiki/translations/de/Std_OrthographicCamera.md b/wiki/translations/de/Std_OrthographicCamera.md index 0e3d1d9c29..99a31b2fad 100644 --- a/wiki/translations/de/Std_OrthographicCamera.md +++ b/wiki/translations/de/Std_OrthographicCamera.md @@ -8,6 +8,8 @@ SeeAlso:[Std PerspektivAnsicht](Std_PerspectiveCamera/de.md) --- +# Std OrthographicCamera/de + ## Beschreibung Der Befehl **Std OrthogonaleKamera** schaltet die Kamera in der aktiven [3D Ansicht](3D_view/de.md) in den orthogonalen Ansichtsmodus. In diesem Modus erscheinen Objekte, die weiter von der Kamera entfernt sind, nicht kleiner als solche, die näher sind. @@ -51,4 +53,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std OrthographicCamera/de diff --git a/wiki/translations/de/Std_Part.md b/wiki/translations/de/Std_Part.md index 5525a498da..0eeee632bd 100644 --- a/wiki/translations/de/Std_Part.md +++ b/wiki/translations/de/Std_Part.md @@ -8,6 +8,8 @@ SeeAlso:[Std Group](Std_Group/de.md), [PartDesign Body](PartDesign_Body/de.md) --- +# Std Part/de + ## Beschreibung @@ -271,4 +273,7 @@ App.ActiveDocument.addObject('Part::FeaturePython', 'Group', group.MyGroup(), gr {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Part/de diff --git a/wiki/translations/de/Std_Paste.md b/wiki/translations/de/Std_Paste.md index a1c35ef221..d9452e6223 100644 --- a/wiki/translations/de/Std_Paste.md +++ b/wiki/translations/de/Std_Paste.md @@ -1,3 +1,4 @@ +# Std Paste/de --- - GuiCommand:/de Name/de:Std_Paste MenuLocation:Bearbeiten → Einfügen Shortcut:**Strg**+**V** Workbenches:Alle SeeAlso:[Kopieren](Std_Copy/de.md), [Auswahl duplizieren](Std_DuplicateSelection/de.md)--- @@ -50,4 +51,7 @@ The **Std Paste** command pastes objects from the Clipboard into the active docu {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Paste/de diff --git a/wiki/translations/de/Std_PerspectiveCamera.md b/wiki/translations/de/Std_PerspectiveCamera.md index 253538a0d7..33bd88fe2a 100644 --- a/wiki/translations/de/Std_PerspectiveCamera.md +++ b/wiki/translations/de/Std_PerspectiveCamera.md @@ -8,6 +8,8 @@ SeeAlso:[Std OrthogonalKamera](Std_OrthographicCamera/de.md) --- +# Std PerspectiveCamera/de + ## Beschreibung Der Befehl **Std PerspectivKamera** schaltet die Kamera in der aktiven [3D Ansicht](3D_view/de.md) in den perspektivischen Ansichtsmodus. In diesem Modus erscheinen Objekte, die weiter von der Kamera entfernt sind, kleiner als solche, die näher sind. @@ -51,4 +53,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PerspectiveCamera/de diff --git a/wiki/translations/de/Std_Placement.md b/wiki/translations/de/Std_Placement.md index 5192c78f38..76f40d1f1a 100644 --- a/wiki/translations/de/Std_Placement.md +++ b/wiki/translations/de/Std_Placement.md @@ -7,6 +7,8 @@ SeeAlso:[Std Ausrichtung](Std_Alignment/de.md), [Platzierung](Placement/de.md) --- +# Std Placement/de + ## Beschreibung Der **Std Platzierung** Befehl zeigt die Platzierung [ Aufgabenkonsole](Task_panel/de.md) für ein ausgewähltes Objekt an. @@ -84,4 +86,7 @@ print(obj.Placement.Matrix) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Placement/de diff --git a/wiki/translations/de/Std_Print.md b/wiki/translations/de/Std_Print.md index bb207960bc..36df503abd 100644 --- a/wiki/translations/de/Std_Print.md +++ b/wiki/translations/de/Std_Print.md @@ -8,6 +8,8 @@ SeeAlso:[Std DruckVorschau](Std_PrintPreview/de.md) [Std DruckenPdf](Std_PrintPdf/de.md), [Std Export](Std_Export/de.md), [Std Ansicht BildschirmFoto](Std_ViewScreenShot/de.md) --- +# Std Print/de + ## Beschreibung Der **Std Print**-Befehl ist in erster Linie zum Drucken von [TechDraw Arbeitsbereich](TechDraw_Workbench/de.md) Seiten gedacht, kann aber auch verwendet werden, um zu drucken, was gerade in der [3D Ansicht](3D_View/de.md) sichtbar ist. @@ -31,4 +33,7 @@ Der **Std Print**-Befehl ist in erster Linie zum Drucken von [TechDraw Arbeitsbe {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Print/de diff --git a/wiki/translations/de/Std_PrintPdf.md b/wiki/translations/de/Std_PrintPdf.md index ae3ad8c7c9..374dc086e1 100644 --- a/wiki/translations/de/Std_PrintPdf.md +++ b/wiki/translations/de/Std_PrintPdf.md @@ -1,3 +1,4 @@ +# Std PrintPdf/de --- - GuiCommand:/de Name/de:Std PrintPdf Workbenches:Alle MenuLocation:[Shortcut:- SeeAlso:Datei [[Std_Export/de|Export](Std_File_Menu/de___Datei]]_→_PrintPdf_.md)--- @@ -34,4 +35,7 @@ The **Std PrintPdf** command is primarily intended to create [PDF](PDF.md) files {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PrintPdf/de diff --git a/wiki/translations/de/Std_PrintPreview.md b/wiki/translations/de/Std_PrintPreview.md index 6c6f8004ce..3a4119cf5c 100644 --- a/wiki/translations/de/Std_PrintPreview.md +++ b/wiki/translations/de/Std_PrintPreview.md @@ -1,3 +1,4 @@ +# Std PrintPreview/de --- - GuiCommand:/de Name/de:Std PrintPreview Workbenches:Alle MenuLocation:[Shortcut:Strg+P SeeAlso:[[Std Print/de|Drucken](Std_File_Menu/de___Datei]]_→_Druckvorschau_.md), [PDF exportieren](Std_PrintPdf/de.md)--- @@ -31,4 +32,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PrintPreview/de diff --git a/wiki/translations/de/Std_ProjectInfo.md b/wiki/translations/de/Std_ProjectInfo.md index fbecf25b84..1bbbc4c096 100644 --- a/wiki/translations/de/Std_ProjectInfo.md +++ b/wiki/translations/de/Std_ProjectInfo.md @@ -1,3 +1,4 @@ +# Std ProjectInfo/de --- - GuiCommand:/de Name:Std ProjectInfo Name/de:Std Projektinformationen MenuLocation:[[Std File Menu/de Datei]] → Projektinformationen...||Workbenches:Alle Shortcut:- SeeAlso:--- @@ -68,4 +69,7 @@ Dann können folgende Informationen in einem Fenster eingegeben werden: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ProjectInfo/de diff --git a/wiki/translations/de/Std_ProjectUtil.md b/wiki/translations/de/Std_ProjectUtil.md index b9b1b260bd..81ba08854b 100644 --- a/wiki/translations/de/Std_ProjectUtil.md +++ b/wiki/translations/de/Std_ProjectUtil.md @@ -6,6 +6,8 @@ Workbenches:Alle --- +# Std ProjectUtil/de + ## Beschreibung Mit dem **Std ProjectUtil** Befehl kannst du Dateien aus einer FreeCAD Projektdatei ({{FileName|*.FCStd}}), die eigentlich eine [ZIP](https://en.wikipedia.org/wiki/Zip_(file_format)) Datei ist, extrahieren und nach manueller Bearbeitung daraus eine neue Projektdatei erstellen. @@ -53,4 +55,7 @@ Es ist wichtig zu erkennen, dass die Dateien innerhalb einer FreeCAD-Projektdate {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ProjectUtil/de diff --git a/wiki/translations/de/Std_PythonHelp.md b/wiki/translations/de/Std_PythonHelp.md index 6bcd6b513d..0305908d37 100644 --- a/wiki/translations/de/Std_PythonHelp.md +++ b/wiki/translations/de/Std_PythonHelp.md @@ -7,6 +7,8 @@ SeeAlso:[Std FreeCADHauptAnwenderZentrum](Std_FreeCADPowerUserHub/de.md) --- +# Std PythonHelp/de + ## Beschreibung Der Befehl **Std PythonHilfe** startet einen Webserver, der über einen lokalen Sockel mit dem Standard Internetbrowser des Systems kommuniziert. Der Webserver zeigt Informationen über die verfügbaren [Python](Python/de.md) Module, Klassen und Funktionen von FreeCAD an. Die benötigten Seiten werden automatisch generiert. @@ -24,4 +26,7 @@ Der Webserver basiert auf dem Python Modul [pydoc](https://docs.python.org/3.8/l {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PythonHelp/de diff --git a/wiki/translations/de/Std_Quit.md b/wiki/translations/de/Std_Quit.md index 166902f3df..2d2e4e573b 100644 --- a/wiki/translations/de/Std_Quit.md +++ b/wiki/translations/de/Std_Quit.md @@ -1,3 +1,4 @@ +# Std Quit/de --- - GuiCommand:/de Name:Std Quit Name/de:Std Beenden MenuLocation:[Workbenches:Alle Shortcut:**Alt**+**F4** SeeAlso:[[Std Open/de|Std Open](Std_File_Menu/de___Datei]]_→_Beenden.md),[Std Import](Std_Import/de.md)--- @@ -32,4 +33,7 @@ The **Std Quit** command closes the FreeCAD application and optionally saves uns {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Quit/de diff --git a/wiki/translations/de/Std_RandomColor.md b/wiki/translations/de/Std_RandomColor.md index 764057d060..accfe45738 100644 --- a/wiki/translations/de/Std_RandomColor.md +++ b/wiki/translations/de/Std_RandomColor.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std RandomColor/de + ## Beschreibung The **Std RandomColor** command applies a random **Shape Color** to selected objects. @@ -26,4 +28,7 @@ The **Std RandomColor** command applies a random **Shape Color** to selected obj {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std RandomColor/de diff --git a/wiki/translations/de/Std_RecentFiles.md b/wiki/translations/de/Std_RecentFiles.md index 736f8beeaa..5d543ee4c1 100644 --- a/wiki/translations/de/Std_RecentFiles.md +++ b/wiki/translations/de/Std_RecentFiles.md @@ -1,3 +1,4 @@ +# Std RecentFiles/de --- - GuiCommand:/de Name:Std RecentFiles Name/de:Std Letzte Dateien MenuLocation:[|Workbenches:Alle Shortcut:- SeeAlso:[[Std Open/de|Öffnen](Std_File_Menu/de___Datei]]_→_Letzte_Dateien_.md), [Import](Std_Import/de.md)--- @@ -50,4 +51,7 @@ Die Anzahl der in der Liste anzuzeigenden Einträge kann im Menü **Bearbeiten** {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std RecentFiles/de diff --git a/wiki/translations/de/Std_Redo.md b/wiki/translations/de/Std_Redo.md index 59fdf67232..a572537c8c 100644 --- a/wiki/translations/de/Std_Redo.md +++ b/wiki/translations/de/Std_Redo.md @@ -8,6 +8,8 @@ SeeAlso:[Rückgängig](Std_Undo/de.md) --- +# Std Redo/de + ## Beschreibung Der **Std Rückgängig**-Befehl nimmt die Aktion des [Wiederherstellen](Std_Undo/de.md)-Befehl zurück. @@ -50,4 +52,7 @@ FreeCAD.ActiveDocument.redo() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Redo/de diff --git a/wiki/translations/de/Std_Refresh.md b/wiki/translations/de/Std_Refresh.md index 7baee1eb05..ce75c23136 100644 --- a/wiki/translations/de/Std_Refresh.md +++ b/wiki/translations/de/Std_Refresh.md @@ -6,6 +6,8 @@ Shortcut:**F5** or **Ctrl+R** --- +# Std Refresh/de + @@ -93,4 +95,7 @@ doc.recompute() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Refresh/de diff --git a/wiki/translations/de/Std_Revert.md b/wiki/translations/de/Std_Revert.md index 6ba55bdb9b..f272294ac7 100644 --- a/wiki/translations/de/Std_Revert.md +++ b/wiki/translations/de/Std_Revert.md @@ -1,3 +1,4 @@ +# Std Revert/de --- - GuiCommand:/de Name/de:Std Revert MenuLocation:[[Std_File_Menu/de Datei]] → Rückgängig|Workbenches:Alle Shortcut:- SeeAlso:--- @@ -23,4 +24,7 @@ The **Std Revert** command closes the active document and reopens the last saved {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Revert/de diff --git a/wiki/translations/de/Std_Save.md b/wiki/translations/de/Std_Save.md index da92eefad0..49ea691c20 100644 --- a/wiki/translations/de/Std_Save.md +++ b/wiki/translations/de/Std_Save.md @@ -1,3 +1,4 @@ +# Std Save/de --- - GuiCommand:/de Name/de:Std Save MenuLocation:[Workbenches:Alle Shortcut:**Strg**+**S** SeeAlso:[[Std_SaveAs/de|Speichern unter...](Std_File_Menu/de___Datei]]_→_Speichern.md)--- @@ -43,4 +44,7 @@ To save a document use the `save` method of the document object. A new document {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Save/de diff --git a/wiki/translations/de/Std_SaveAll.md b/wiki/translations/de/Std_SaveAll.md index 82c1c9d169..960ad5a6b1 100644 --- a/wiki/translations/de/Std_SaveAll.md +++ b/wiki/translations/de/Std_SaveAll.md @@ -7,6 +7,8 @@ SeeAlso:[Std Speichern](Std_Save/de.md) --- +# Std SaveAll/de + ## Beschreibung Der **Std AllesSpeichern**-Befehl speichert alle offenen Dokumente. @@ -39,4 +41,7 @@ Um ein Dokument zu speichern, benutze die `save`-Methode des Dokument-Objekts. E {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveAll/de diff --git a/wiki/translations/de/Std_SaveAs.md b/wiki/translations/de/Std_SaveAs.md index 8b0ab47263..811f8512c2 100644 --- a/wiki/translations/de/Std_SaveAs.md +++ b/wiki/translations/de/Std_SaveAs.md @@ -1,3 +1,4 @@ +# Std SaveAs/de --- - GuiCommand:/de Name:Std SaveAs Name/de:Std Speichern als MenuLocation:[Workbenches:Alle Shortcut:**Shift**+**Strg**+**S** SeeAlso:[[Std_Save/de|Speichern](Std_File_Menu/de___Datei]]_→_Speichern_als....md)--- @@ -58,4 +59,7 @@ To save a document under a new name use the `saveAs` method of the document obje {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveAs/de diff --git a/wiki/translations/de/Std_SaveCopy.md b/wiki/translations/de/Std_SaveCopy.md index 82680806eb..93ad579194 100644 --- a/wiki/translations/de/Std_SaveCopy.md +++ b/wiki/translations/de/Std_SaveCopy.md @@ -1,3 +1,4 @@ +# Std SaveCopy/de --- - GuiCommand:/de Name:Std SaveaCopy Name/de:Std SaveaCopy MenuLocation:[Workbenches:Alle Shortcut:**C** SeeAlso:[[Std_Save/de|Speichern](Std_File_Menu___Datei]]_→_Speichern_einer_Kopie....md), [Speichern unter...](Std_SaveAs/de.md) --- @@ -57,4 +58,7 @@ doc.saveCopy(fnm) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveCopy/de diff --git a/wiki/translations/de/Std_SceneInspector.md b/wiki/translations/de/Std_SceneInspector.md index b40f6b3231..e8ff77a168 100644 --- a/wiki/translations/de/Std_SceneInspector.md +++ b/wiki/translations/de/Std_SceneInspector.md @@ -5,6 +5,8 @@ Workbenches:Alle --- +# Std SceneInspector/de + ## Beschreibung Der Befehl **Std SceneInspector** öffnet ein Dialogfeld, das eine Übersicht über alle Knoten im [scenegraph](Scenegraph.md) der aktiven [3D Ansicht](3D_view/de.md) anzeigt. Es ist eher ein Hilfsmittel für Programmierer als für normale Benutzer. Es kann verwendet werden, um herauszufinden, warum das Rendern langsam ist oder warum etwas nicht richtig gerendert wird. @@ -23,4 +25,7 @@ Der Befehl **Std SceneInspector** öffnet ein Dialogfeld, das eine Übersicht ü {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SceneInspector/de diff --git a/wiki/translations/de/Std_SelBoundingBox.md b/wiki/translations/de/Std_SelBoundingBox.md index fdc43740f2..6a77ff6a7d 100644 --- a/wiki/translations/de/Std_SelBoundingBox.md +++ b/wiki/translations/de/Std_SelBoundingBox.md @@ -7,6 +7,8 @@ SeeAlso:[Std ZeichenStil](Std_DrawStyle/de.md) --- +# Std SelBoundingBox/de + ## Beschreibung Der **Std WahlBegrenzungRahmen** Befehl schaltet den Modus der globalen Begrenzungsrahmenhervorhebung ein und aus. Wenn dieser Modus eingeschaltet ist, werden ausgewählte Objekte in einer [3D Ansicht](3D_view/de.md) mit einem hervorgehobenen Begrenzungsrahmen markiert, auch wenn ihr {{PropertyView/de|Auswahlstil}} auf \'Form\' eingestellt ist. @@ -49,4 +51,7 @@ FreeCADGui.updateCommands() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelBoundingBox/de diff --git a/wiki/translations/de/Std_SelectAll.md b/wiki/translations/de/Std_SelectAll.md index d3b11cf302..b50d7583f4 100644 --- a/wiki/translations/de/Std_SelectAll.md +++ b/wiki/translations/de/Std_SelectAll.md @@ -7,6 +7,8 @@ SeeAlso:[Std RechteckAuswahl](Std_BoxSelection/de.md), [Std RechteckElementAuswahl](Std_BoxElementSelection/de.md), [Std RechteckElementAuswahl](Part_BoxSelection/de.md) --- +# Std SelectAll/de + ## Beschreibung Der **Std AllesAuswählen** Befehl wählt alle Objekte in der [Baumansicht](Tree_view/de.md) aus. @@ -25,4 +27,7 @@ Der **Std AllesAuswählen** Befehl wählt alle Objekte in der [Baumansicht](Tree {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelectAll/de diff --git a/wiki/translations/de/Std_SendToPythonConsole.md b/wiki/translations/de/Std_SendToPythonConsole.md index d82cf6fbf2..86ad19421a 100644 --- a/wiki/translations/de/Std_SendToPythonConsole.md +++ b/wiki/translations/de/Std_SendToPythonConsole.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Std SendToPythonConsole/de + ## Beschreibung Der **Std SendeAnPythonKonsole** Befehl erstellt eine Variable in der [Python Konsole](Python_console/de.md), die auf ein ausgewähltes Objekt verweist. Wenn eine Unterform des Objekts ausgewählt wird, werden zwei zusätzliche Variablen erstellt, von denen eine auf die Form des Objekts und die andere auf die Unterform selbst verweist. Die Variablen und der damit verbundene Code können zur Entwicklung von Python Code verwendet werden. @@ -34,4 +36,7 @@ Der **Std SendeAnPythonKonsole** Befehl erstellt eine Variable in der [Python Ko {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SendToPythonConsole/de diff --git a/wiki/translations/de/Std_SetAppearance.md b/wiki/translations/de/Std_SetAppearance.md index d12f52d0ae..bb607c1094 100644 --- a/wiki/translations/de/Std_SetAppearance.md +++ b/wiki/translations/de/Std_SetAppearance.md @@ -8,6 +8,8 @@ SeeAlso:[Setze Farben](Std_SetColors/de.md) --- +# Std SetAppearance/de + @@ -94,4 +96,7 @@ Legt den Zeichenstil fest. Das Aufklappmenü bietet 4 Wahlmöglichkeiten: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SetAppearance/de diff --git a/wiki/translations/de/Std_SetColors.md b/wiki/translations/de/Std_SetColors.md index f6d889046d..9d602ba745 100644 --- a/wiki/translations/de/Std_SetColors.md +++ b/wiki/translations/de/Std_SetColors.md @@ -1,2 +1,5 @@ # Std SetColors/de 1. REDIRECT [Part\_FaceColors/de](Part_FaceColors/de.md) + +--- +[documentation index](../README.md) > Std SetColors/de diff --git a/wiki/translations/de/Std_TextDocument.md b/wiki/translations/de/Std_TextDocument.md index bd7214be6b..a8b6f99025 100644 --- a/wiki/translations/de/Std_TextDocument.md +++ b/wiki/translations/de/Std_TextDocument.md @@ -7,6 +7,8 @@ SeeAlso:[Draft ShapeString](Draft_ShapeString.md), [Draft Text](Draft_Text.md) --- +# Std TextDocument/de +
@@ -100,4 +102,7 @@ App.ActiveDocument.recompute() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TextDocument/de diff --git a/wiki/translations/de/Std_TileWindows.md b/wiki/translations/de/Std_TileWindows.md index e760b6d4d7..8460c0adce 100644 --- a/wiki/translations/de/Std_TileWindows.md +++ b/wiki/translations/de/Std_TileWindows.md @@ -6,6 +6,8 @@ SeeAlso:[Std FensterÜberlappendAnordnen](Std_CascadeWindows/de.md) --- +# Std TileWindows/de + ## Beschreibung Der **Std FensterAnordnen**-Befehl ordnet die Fenster im [Hauptansichtsbereich](Main_view_area/de.md) so an, dass sie alle sichtbar sind und nicht überlappen. Das Ergebnis wird durch die Reihenfolge festgelegt, in der die Fenster das letzte Mal aktiviert wurden. @@ -24,4 +26,7 @@ Der **Std FensterAnordnen**-Befehl ordnet die Fenster im [Hauptansichtsbereich]( {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TileWindows/de diff --git a/wiki/translations/de/Std_ToggleBreakpoint.md b/wiki/translations/de/Std_ToggleBreakpoint.md index 784080b920..9b94b2102a 100644 --- a/wiki/translations/de/Std_ToggleBreakpoint.md +++ b/wiki/translations/de/Std_ToggleBreakpoint.md @@ -8,6 +8,8 @@ SeeAlso:[Std MakroSchrittWeiter](Std_MacroStepOver/de.md), [Std MakroSchrittVorwärts](Std_MacroStepInto/de.md) --- +# Std ToggleBreakpoint/de + ## Beschreibung Dieser Befehl funktioniert zur Zeit nicht. @@ -18,4 +20,7 @@ Dieser Befehl funktioniert zur Zeit nicht. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleBreakpoint/de diff --git a/wiki/translations/de/Std_ToggleClipPlane.md b/wiki/translations/de/Std_ToggleClipPlane.md index 273e1ba65f..fd5ee41ae5 100644 --- a/wiki/translations/de/Std_ToggleClipPlane.md +++ b/wiki/translations/de/Std_ToggleClipPlane.md @@ -1,3 +1,4 @@ +# Std ToggleClipPlane/de --- - GuiCommand:/de Name:Std ClippingPlane Name/de:Std ClippingPlane MenuLocation:[[Std View Menu/de Ansicht]] → Schnittebene‏‎||Workbenches:Alle Shortcut:- SeeAlso:--- @@ -44,4 +45,7 @@ Eine **Schnittebene** ist eine Ebene, die den Objektraum in zwei Halbräume teil {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleClipPlane/de diff --git a/wiki/translations/de/Std_ToggleVisibility.md b/wiki/translations/de/Std_ToggleVisibility.md index 02e71d518e..734eb2e644 100644 --- a/wiki/translations/de/Std_ToggleVisibility.md +++ b/wiki/translations/de/Std_ToggleVisibility.md @@ -9,6 +9,8 @@ SeeAlso: --- +# Std ToggleVisibility/de +
@@ -73,4 +75,7 @@ else: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleVisibility/de diff --git a/wiki/translations/de/Std_Tools_Menu.md b/wiki/translations/de/Std_Tools_Menu.md index cfecdd44e9..0c97cbfdea 100644 --- a/wiki/translations/de/Std_Tools_Menu.md +++ b/wiki/translations/de/Std_Tools_Menu.md @@ -1,10 +1,4 @@ -# Std Tools Menu/de - - - - - -Std Basis Symbol +# Std Basis Symbol Std Tools Menu/de {{TOCright}} @@ -74,3 +68,6 @@ Speichert ein Bildschirmfoto der aktiven [3D Ansicht](3D_view/de.md). }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Tools Menu/de diff --git a/wiki/translations/de/Std_Transform.md b/wiki/translations/de/Std_Transform.md index d9e4cbfa8f..fdb78e0f72 100644 --- a/wiki/translations/de/Std_Transform.md +++ b/wiki/translations/de/Std_Transform.md @@ -1,2 +1,5 @@ # Std Transform/de 1. REDIRECT [Std\_TransformManip/de](Std_TransformManip/de.md) + +--- +[documentation index](../README.md) > Std Transform/de diff --git a/wiki/translations/de/Std_TransformManip.md b/wiki/translations/de/Std_TransformManip.md index f5a458b6d5..ae00c013f8 100644 --- a/wiki/translations/de/Std_TransformManip.md +++ b/wiki/translations/de/Std_TransformManip.md @@ -7,6 +7,8 @@ SeeAlso:[Std Base](Std_Base.md) --- +# Std TransformManip/de + @@ -46,4 +48,7 @@ Sobald das Objekt in der 3D-Ansicht verschoben/gedreht wird, werden diese Änder {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TransformManip/de diff --git a/wiki/translations/de/Std_TreeSelection.md b/wiki/translations/de/Std_TreeSelection.md index cdb01bc85a..160e1faa42 100644 --- a/wiki/translations/de/Std_TreeSelection.md +++ b/wiki/translations/de/Std_TreeSelection.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Std TreeSelection/de + ## Beschreibung Der **Std BaumAnsichtSelektion**-Befehl verschiebt die [Baumansicht](Tree_view/de.md) auf das erste erstellte Objekt in einer [3D-Ansicht](3D_view/de.md)-Auswahl. @@ -29,4 +31,7 @@ Falls der Baumansicht [Sync-Auswahl](Std_TreeSyncSelection/de.md)-Modus ausgesch {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSelection/de diff --git a/wiki/translations/de/Std_Undo.md b/wiki/translations/de/Std_Undo.md index bd7c124c4e..fed88e9d9c 100644 --- a/wiki/translations/de/Std_Undo.md +++ b/wiki/translations/de/Std_Undo.md @@ -8,6 +8,8 @@ SeeAlso:[Wiederherstellen](Std_Redo/de.md) --- +# Std Undo/de + ## Beschreibung Der **Std Rückgängig**-Befehl macht die letzte Aktion rückgängig. @@ -50,4 +52,7 @@ FreeCAD.ActiveDocument.undo() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Undo/de diff --git a/wiki/translations/de/Std_UnitsCalculator.md b/wiki/translations/de/Std_UnitsCalculator.md index 7297fe4f84..6cd63a15c6 100644 --- a/wiki/translations/de/Std_UnitsCalculator.md +++ b/wiki/translations/de/Std_UnitsCalculator.md @@ -6,6 +6,8 @@ Workbenches:Alle --- +# Std UnitsCalculator/de + ## Beschreibung Der **Std Einheitenrechner**-Befehl öffnet die Einheitenrechner-Dialogbox. Der Einheitenrechner kann genutzt werden, um Werte von einem Einheitensystem in ein anderes zu konvertieren. @@ -58,4 +60,7 @@ Der **Std Einheitenrechner**-Befehl öffnet die Einheitenrechner-Dialogbox. Der {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std UnitsCalculator/de diff --git a/wiki/translations/de/Std_ViewBottom.md b/wiki/translations/de/Std_ViewBottom.md index f747019210..5bebca5974 100644 --- a/wiki/translations/de/Std_ViewBottom.md +++ b/wiki/translations/de/Std_ViewBottom.md @@ -8,6 +8,8 @@ SeeAlso:[Rückansicht](Std_ViewRear/de.md), [Ansicht von links](Std_ViewLeft/de.md) --- +# Std ViewBottom/de + ## Beschreibung Der Befehl **Std Bodenansicht** wendet die Kamerasicht der aktiven [3D Ansicht](3D_view/de.md) in die Richtung der positiven Z Achse. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewBottom/de diff --git a/wiki/translations/de/Std_ViewBoxZoom.md b/wiki/translations/de/Std_ViewBoxZoom.md index 1ebea35b7e..971dd50e01 100644 --- a/wiki/translations/de/Std_ViewBoxZoom.md +++ b/wiki/translations/de/Std_ViewBoxZoom.md @@ -7,6 +7,8 @@ SeeAlso:[Vergrößern](Std_ViewZoomIn/de.md), [Verkleinern](Std_ViewZoomOut/de.md) --- +# Std ViewBoxZoom/de + ## Beschreibung @@ -38,4 +40,7 @@ Die Größe des zu vergrößernden Bereichs werden mit einem Rechteck in der 3D- {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewBoxZoom/de diff --git a/wiki/translations/de/Std_ViewCreate.md b/wiki/translations/de/Std_ViewCreate.md index 06c63987f2..3c6586bb41 100644 --- a/wiki/translations/de/Std_ViewCreate.md +++ b/wiki/translations/de/Std_ViewCreate.md @@ -7,6 +7,8 @@ SeeAlso:[[Std ViewDockUndockFullscreen/de]] --- +# Std ViewCreate/de + ## Beschreibung Der Befehl **Std Neue Ansicht** erstellt eine neue [3D-Ansicht für](3D_view/de.md) das aktive Dokument. Mit 3D-Ansichten kann man auch sein Modell aus verschiedenen Blickrichtungen oder mit unterschiedlicher Ansichtsgröße (zoom) ansehen. @@ -27,4 +29,7 @@ Der Befehl **Std Neue Ansicht** erstellt eine neue [3D-Ansicht für](3D_view/de. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewCreate/de diff --git a/wiki/translations/de/Std_ViewDimetric.md b/wiki/translations/de/Std_ViewDimetric.md index 7e531591f3..270d3a4f17 100644 --- a/wiki/translations/de/Std_ViewDimetric.md +++ b/wiki/translations/de/Std_ViewDimetric.md @@ -6,6 +6,8 @@ SeeAlso:[Std AnsichtIsometrisch](Std_ViewIsometric/de.md), [Std AnsichtTrimetrisch](Std_ViewTrimetric/de.md) --- +# Std ViewDimetric/de + ## Beschreibung Der **Std AnsichtDimetrisch**-Befehl richtet die Kamera in der aktiven [3D-Ansicht](3D_view/de.md) neu aus, um eine [dimetrisch](https://de.wikipedia.org/wiki/Axonometrie#Bildachsen_und_Verzerrungen)e Ansicht ([dimetric](https://en.wikipedia.org/wiki/Axonometric_projection#Three_types) view) zu erreichen. Für eine wahrlich (truly) trimetrische Ansicht muss die 3D-Ansicht im [orthographischen Modus](Std_OrthographicCamera/de.md) sein, aber der Befehl funktioniert auch, wenn die Ansicht im [perspektivischen Modus](Std_PerspectiveCamera/de.md) ist. @@ -39,4 +41,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewDimetric/de diff --git a/wiki/translations/de/Std_ViewDockUndockFullscreen.md b/wiki/translations/de/Std_ViewDockUndockFullscreen.md index 6789441e99..89acd1dec5 100644 --- a/wiki/translations/de/Std_ViewDockUndockFullscreen.md +++ b/wiki/translations/de/Std_ViewDockUndockFullscreen.md @@ -8,6 +8,8 @@ SeeAlso:[Erstelle neue Ansicht‏‎](Std_ViewCreate/de.md), [Bild speichern...](Std_ViewScreenShot/de.md), [Bildschirm einfrieren‏‎](Std_FreezeViews/de.md), [Fenster](Std_Windows_Menu/de.md) --- +# Std ViewDockUndockFullscreen/de + ## Einleitung [3D Ansichten](3D_view/de.md) kann abgekoppelt werden von der Haupt [FreeCAD Oberfläche](Interface/de.md) und auf eine anderen Bildschirm verschoben werden, zum Beispiel. @@ -53,4 +55,7 @@ Die **Abgekoppelt** Menüoption koppelt die aktive [3D Ansicht](3D_view/de.md) i {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewDockUndockFullscreen/de diff --git a/wiki/translations/de/Std_ViewFitAll.md b/wiki/translations/de/Std_ViewFitAll.md index 8c4c149d00..3ad87ed2df 100644 --- a/wiki/translations/de/Std_ViewFitAll.md +++ b/wiki/translations/de/Std_ViewFitAll.md @@ -7,6 +7,8 @@ SeeAlso:[Std AnsichtEinpassenAuswahl](Std_ViewFitSelection/de.md) --- +# Std ViewFitAll/de + ## Beschreibung Der **Std AnsichtEinpassenAlles**-Befehl zoomt und schwenkt, bis alle sichtbaren Objekte in die aktive [3D Ansicht](3D_view/de.md) passen. @@ -56,4 +58,7 @@ FreeCADGui.SendMsgToActiveView('ViewFit') {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFitAll/de diff --git a/wiki/translations/de/Std_ViewFitSelection.md b/wiki/translations/de/Std_ViewFitSelection.md index 695c4b1e42..271d227204 100644 --- a/wiki/translations/de/Std_ViewFitSelection.md +++ b/wiki/translations/de/Std_ViewFitSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std AnsichtAlleseinpassen](Std_ViewFitAll/de.md) --- +# Std ViewFitSelection/de + ## Beschreibung Der **Std AnsichtEinpassenAuswahl**-Befehl zoomt und schwenkt, so dass alle ausgewählten Objekte in die aktive [3D-Ansicht](3D_view/de.md) passen. @@ -42,4 +44,7 @@ FreeCADGui.SendMsgToActiveView('ViewSelection') {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFitSelection/de diff --git a/wiki/translations/de/Std_ViewFront.md b/wiki/translations/de/Std_ViewFront.md index a27c997625..10638feecc 100644 --- a/wiki/translations/de/Std_ViewFront.md +++ b/wiki/translations/de/Std_ViewFront.md @@ -8,6 +8,8 @@ SeeAlso:[Std Draufsicht](Std_ViewTop/de.md), [Std Ansicht von rechts](Std_ViewRight/de.md) --- +# Std ViewFront/de + ## Beschreibung Der Befehl **Std Vorderansicht** wendet die Kamerasicht der aktiven [3D-Ansicht](3D_view/de.md) in die Richtung der positiven Y-Achse. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFront/de diff --git a/wiki/translations/de/Std_ViewFullscreen.md b/wiki/translations/de/Std_ViewFullscreen.md index 3a78cc4f8f..b8dd85885a 100644 --- a/wiki/translations/de/Std_ViewFullscreen.md +++ b/wiki/translations/de/Std_ViewFullscreen.md @@ -7,6 +7,8 @@ SeeAlso:[Std AnsichtAnkoppelnAbkoppelnVollbild](Std_ViewDockUndockFullscreen/de.md), [Std HauptVollbild](Std_MainFullscreen.md) --- +# Std ViewFullscreen/de + ## Beschreibung Der **Std AnsichtVollbild** Befehl schaltet [3D Ansichten](3D_view/de.md) in den und aus dem Vollbildmodus. 3D Ansichten werden automatisch [abgekoppelt](Std_ViewDockUndockFullscreen/de.md) für den Vollbildmodus umgeschaltet. @@ -30,4 +32,7 @@ Der **Std AnsichtVollbild** Befehl schaltet [3D Ansichten](3D_view/de.md) in den {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFullscreen/de diff --git a/wiki/translations/de/Std_ViewHome.md b/wiki/translations/de/Std_ViewHome.md index 28d7874166..d3ecc4d485 100644 --- a/wiki/translations/de/Std_ViewHome.md +++ b/wiki/translations/de/Std_ViewHome.md @@ -9,6 +9,8 @@ SeeAlso:[Std AnsichtEinpassenAlles](Std_ViewFitAll/de.md) --- +# Std ViewHome/de + ## Beschreibung Der **Std ViewHome**-Befehl ändert die Kamera in der aktiven [3D-Ansicht](3D_view/de.md) zur Standardkameraausrichtung. Dann zoomt und schenkt die Kamera, so dass alle sichtbaren Objeke in die Ansicht passen. @@ -30,4 +32,7 @@ Der **Std ViewHome**-Befehl ändert die Kamera in der aktiven [3D-Ansicht](3D_vi {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewHome/de diff --git a/wiki/translations/de/Std_ViewIsometric.md b/wiki/translations/de/Std_ViewIsometric.md index 17ccaa7d7e..02e4bf77cb 100644 --- a/wiki/translations/de/Std_ViewIsometric.md +++ b/wiki/translations/de/Std_ViewIsometric.md @@ -7,6 +7,8 @@ SeeAlso:[Std AnsichtDimetrisch](Std_ViewDimetric/de.md), [Std AnsichtTrimetrisch](Std_ViewTrimetric/de.md) --- +# Std ViewIsometric/de + ## Beschreibung Der **Std AnsichtIsometrisch**-Befehl richtet die Kamera in der aktiven [3D-Ansicht](3D_view/de.md) neu aus, um eine [isometrisch](https://de.wikipedia.org/wiki/Axonometrie#Isometrische_Axonometrie)e Ansicht zu erreichen. Für eine wahrlich (truly) trimetrische Ansicht muss die 3D-Ansicht im [orthographischen Modus](Std_OrthographicCamera/de.md) sein, aber der Befehl funktioniert auch, wenn die Ansicht im [perspektivischen Modus](Std_PerspectiveCamera/de.md) ist. @@ -48,4 +50,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIsometric/de diff --git a/wiki/translations/de/Std_ViewIvStereoInterleavedRows.md b/wiki/translations/de/Std_ViewIvStereoInterleavedRows.md index 33aa002743..29b52c6d1c 100644 --- a/wiki/translations/de/Std_ViewIvStereoInterleavedRows.md +++ b/wiki/translations/de/Std_ViewIvStereoInterleavedRows.md @@ -6,6 +6,8 @@ SeeAlso:[Std ViewIvStereoRedGreen](Std_ViewIvStereoRedGreen.md), [Std ViewIvStereoQuadBuff](Std_ViewIvStereoQuadBuff.md), [Std ViewIvStereoInterleavedColumns](Std_ViewIvStereoInterleavedColumns.md), [Std ViewIvStereoOff](Std_ViewIvStereoOff.md) --- +# Std ViewIvStereoInterleavedRows/de + ## Beschreibung The **Std ViewIvStereoInterleavedRows** command changes the active [3D view](3D_view.md) to interleaved rows stereo view mode. To use this stereo mode a special graphics card, a special display and [glasses with polarized lenses](https://en.wikipedia.org/wiki/Polarized_3D_system) are requires. @@ -41,4 +43,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoInterleavedRows/de diff --git a/wiki/translations/de/Std_ViewIvStereoQuadBuff.md b/wiki/translations/de/Std_ViewIvStereoQuadBuff.md index 30a9e2de5c..aba5c06d66 100644 --- a/wiki/translations/de/Std_ViewIvStereoQuadBuff.md +++ b/wiki/translations/de/Std_ViewIvStereoQuadBuff.md @@ -6,6 +6,8 @@ SeeAlso:[Std AnsichtIvStereoRotGrün](Std_ViewIvStereoRedGreen/de.md), [Std AnsichtIvStereoÜberlappteZeilen](Std_ViewIvStereoInterleavedRows/de.md), [Std AnsichtIvStereoÜberlappteSpalten](Std_ViewIvStereoInterleavedColumns/de.md), [Std AnsichtIvStereoAus](Std_ViewIvStereoOff/de.md) --- +# Std ViewIvStereoQuadBuff/de + ## Beschreibung Der **Std AnsichtIvStereoVierfachPuffer** Befehl ändert den aktiven [3D Ansicht](3D_view/de.md) in den Vierfachpuffer Stereoansichtsmodus. Zur Verwendung dieses Stereomodus sind eine spezielle Grafikkarte, ein spezieller Bildschirm und [Shutter Brille](https://en.wikipedia.org/wiki/Active_shutter_3D_system) erforderlich. @@ -41,4 +43,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoQuadBuff/de diff --git a/wiki/translations/de/Std_ViewIvStereoRedGreen.md b/wiki/translations/de/Std_ViewIvStereoRedGreen.md index 4fd44592fa..654cfd8a77 100644 --- a/wiki/translations/de/Std_ViewIvStereoRedGreen.md +++ b/wiki/translations/de/Std_ViewIvStereoRedGreen.md @@ -6,6 +6,8 @@ SeeAlso:[Std AnsichtIvStereoVierfachPuffer](Std_ViewIvStereoQuadBuff/de.md), [Std AnsichtIvStereoÜberlappteZeilen](Std_ViewIvStereoInterleavedRows/de.md), [Std AnsichtIvStereoÜberlappteSpalten](Std_ViewIvStereoInterleavedColumns/de.md), [Std AnsichtIvStereoAus](Std_ViewIvStereoOff/de.md) --- +# Std ViewIvStereoRedGreen/de + ## Beschreibung Der **Std AnsichtIvStereoRotGrün** Befehl ändert die aktive [3D Ansicht](3D_view/de.md) in rot/cyan, [anaglyph](https://en.wikipedia.org/wiki/Anaglyph_3D), Stereoansichtsmodus. Zur Verwendung dieses Stereomodus ist eine Brille mit farbigen Gläsern erforderlich. @@ -41,4 +43,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoRedGreen/de diff --git a/wiki/translations/de/Std_ViewLeft.md b/wiki/translations/de/Std_ViewLeft.md index 8999682731..d52756e8ac 100644 --- a/wiki/translations/de/Std_ViewLeft.md +++ b/wiki/translations/de/Std_ViewLeft.md @@ -8,6 +8,8 @@ SeeAlso:[Rückansicht](Std_ViewRear/de.md), [Bodenansicht](Std_ViewBottom/de.md) --- +# Std ViewLeft/de + ## Beschreibung Der Befehl **Std Ansicht von links** wendet die Kamerasicht der aktiven [3D Ansicht](3D_view/de.md) in die Richtung der positiven X-Achse. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewLeft/de diff --git a/wiki/translations/de/Std_ViewRear.md b/wiki/translations/de/Std_ViewRear.md index 936098843a..723c8a5919 100644 --- a/wiki/translations/de/Std_ViewRear.md +++ b/wiki/translations/de/Std_ViewRear.md @@ -8,6 +8,8 @@ SeeAlso:[Std Bodenansicht](Std_ViewBottom/de.md), [Std Ansicht von links](Std_ViewLeft.md) --- +# Std ViewRear/de + ## Beschreibung Der Befehl **Std Rückansicht** wendet die Kamerasicht der aktiven [3D-Ansicht](3D_view/de.md) in die Richtung der negativen Y-Achse. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRear/de diff --git a/wiki/translations/de/Std_ViewRight.md b/wiki/translations/de/Std_ViewRight.md index 157d713fca..c9696c3dc4 100644 --- a/wiki/translations/de/Std_ViewRight.md +++ b/wiki/translations/de/Std_ViewRight.md @@ -8,6 +8,8 @@ SeeAlso:[Std Vorderansicht](Std_ViewFront/de.md), [Std Draufsicht](Std_ViewTop/de.md) --- +# Std ViewRight/de + ## Beschreibung Der Befehl **Std Ansicht von rechts** wendet die Kamerasicht der aktiven [3D-Ansicht](3D_view/de.md) in die Richtung der negativen X-Achse. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRight/de diff --git a/wiki/translations/de/Std_ViewRotateLeft.md b/wiki/translations/de/Std_ViewRotateLeft.md index 9247e23b29..f277e7eba3 100644 --- a/wiki/translations/de/Std_ViewRotateLeft.md +++ b/wiki/translations/de/Std_ViewRotateLeft.md @@ -8,6 +8,8 @@ SeeAlso:[Std AnsichtRechtsDrehen](Std_ViewRotateRight/de.md) --- +# Std ViewRotateLeft/de + ## Beschreibung Der Befehl **Std AnsichtLinksDrehen** dreht die Kamera in der aktiven [3D Ansicht](3D_view/de.md) um die Blickrichtung in 90-Grad Schritten nach links (entgegen dem Uhrzeigersinn). @@ -43,4 +45,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRotateLeft/de diff --git a/wiki/translations/de/Std_ViewRotateRight.md b/wiki/translations/de/Std_ViewRotateRight.md index 8eeb814b21..95dabb4b1a 100644 --- a/wiki/translations/de/Std_ViewRotateRight.md +++ b/wiki/translations/de/Std_ViewRotateRight.md @@ -8,6 +8,8 @@ SeeAlso:[Std AnsichtLinksDrehen](Std_ViewRotateLeft/de.md) --- +# Std ViewRotateRight/de + ## Beschreibung Der **Std AnsichtRechtsDrehen** Befehl dreht die Kamera in die aktive [3D Ansicht](3D_view.md) um die Ansichtsrichtung in 90-Grad Schritten nach rechts (im Uhrzeigersinn). @@ -43,4 +45,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRotateRight/de diff --git a/wiki/translations/de/Std_ViewScreenShot.md b/wiki/translations/de/Std_ViewScreenShot.md index ebac0627e5..a62df796fd 100644 --- a/wiki/translations/de/Std_ViewScreenShot.md +++ b/wiki/translations/de/Std_ViewScreenShot.md @@ -7,6 +7,8 @@ SeeAlso:[Std Druck](Std_Print/de.md), [Std DruckePdf](Std_PrintPdf/de.md) --- +# Std ViewScreenShot/de + ## Beschreibung Der **Std AnsichtBildschirmFoto** Befehl öffnet ein Dialogfeld, um eine Bilddatei, einen Bildschirmfoto, von der aktiven [3D Ansicht](3D_view/de.md) zu erstellen. @@ -116,4 +118,7 @@ App.closeDocument(App.ActiveDocument.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewScreenShot/de diff --git a/wiki/translations/de/Std_ViewStatusBar.md b/wiki/translations/de/Std_ViewStatusBar.md index 271ccab717..1e0fccfc2a 100644 --- a/wiki/translations/de/Std_ViewStatusBar.md +++ b/wiki/translations/de/Std_ViewStatusBar.md @@ -7,6 +7,8 @@ Workbenches:Alle --- +# Std ViewStatusBar/de + ## Beschreibung - Der **Std AnzeigeStatusleiste**-Befehl schaltet die Anzeige der [Statusleiste](Status_bar/de.md) ein/aus. @@ -21,4 +23,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewStatusBar/de diff --git a/wiki/translations/de/Std_ViewTop.md b/wiki/translations/de/Std_ViewTop.md index 8f9589c7bc..8202e7b2ab 100644 --- a/wiki/translations/de/Std_ViewTop.md +++ b/wiki/translations/de/Std_ViewTop.md @@ -8,6 +8,8 @@ SeeAlso:[Std Vorderansicht](Std_ViewFront/de.md), [Std Ansicht von rechts](Std_ViewRight.md) --- +# Std ViewTop/de + ## Beschreibung Der Befehl **Std Draufsicht** wendet die Kamerasicht der aktiven [3D-Ansicht](3D_view/de.md) in die Richtung der negativen Z-Achse. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewTop/de diff --git a/wiki/translations/de/Std_ViewTrimetric.md b/wiki/translations/de/Std_ViewTrimetric.md index c1d3bffd94..1a35a367d1 100644 --- a/wiki/translations/de/Std_ViewTrimetric.md +++ b/wiki/translations/de/Std_ViewTrimetric.md @@ -6,6 +6,8 @@ SeeAlso:[Std AnsichtIsometrisch](Std_Isometric/de.md), [Std AnsichtDimetrisch](Std_ViewDimetric/de.md) --- +# Std ViewTrimetric/de + ## Beschreibung Der **Std AnsichtTrimetrisch**-Befehl richtet die Kamera in der aktiven [3D-Ansicht](3D_view/de.md) neu aus, um eine [trimetrisch](https://de.wikipedia.org/wiki/Axonometrie#Bildachsen_und_Verzerrungen)e Ansicht ([trimetric](https://en.wikipedia.org/wiki/Axonometric_projection#Three_types) view) zu erreichen. Für eine wahrlich (truly) trimetrische Ansicht muss die 3D-Ansicht im [orthographischen Modus](Std_OrthographicCamera/de.md) sein, aber der Befehl funktioniert auch, wenn die Ansicht im [perspektivischen Modus](Std_PerspectiveCamera/de.md) ist. @@ -39,4 +41,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewTrimetric/de diff --git a/wiki/translations/de/Std_ViewZoomIn.md b/wiki/translations/de/Std_ViewZoomIn.md index c9f6e46b94..b51eccce04 100644 --- a/wiki/translations/de/Std_ViewZoomIn.md +++ b/wiki/translations/de/Std_ViewZoomIn.md @@ -7,6 +7,8 @@ SeeAlso:[Szd Verkleinern](Std_ViewZoomOut/de.md), [Zoomen mit Rechteck](Std_ViewBoxZoom/de.md) --- +# Std ViewZoomIn/de + ## Beschreibung Der **Std Vergrößern**-Befehl vergrößert die Objekte in der aktiven [3D-Ansicht](3D_view.md). @@ -47,4 +49,7 @@ FreeCADGui.ActiveDocument.ActiveView.zoomIn() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewZoomIn/de diff --git a/wiki/translations/de/Std_ViewZoomOut.md b/wiki/translations/de/Std_ViewZoomOut.md index 163ba1999e..36582af6dd 100644 --- a/wiki/translations/de/Std_ViewZoomOut.md +++ b/wiki/translations/de/Std_ViewZoomOut.md @@ -8,6 +8,8 @@ SeeAlso:[Vergrößern](Std_ViewZoomIn/de.md), [Zoomen mit Rechteck](Std_ViewBoxZoom/de.md) --- +# Std ViewZoomOut/de + ## Beschreibung Der **Std Verkleinern**-Befehl verkleinert die Objekte in der aktiven [3D-Ansicht](3D_view.md). @@ -48,4 +50,7 @@ FreeCADGui.ActiveDocument.ActiveView.zoomOut() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewZoomOut/de diff --git a/wiki/translations/de/Std_View_Menu.md b/wiki/translations/de/Std_View_Menu.md index dbcf7fe04b..bc5e8a2093 100644 --- a/wiki/translations/de/Std_View_Menu.md +++ b/wiki/translations/de/Std_View_Menu.md @@ -1,10 +1,4 @@ -# Std View Menu/de - - - - - -Std Basis Symbol +# Std Basis Symbol Std View Menu/de {{TOCright}} @@ -165,3 +159,6 @@ Die folgenden Werkzeuge sind in diesem Menü verfügbar: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std View Menu/de diff --git a/wiki/translations/de/Std_WhatsThis.md b/wiki/translations/de/Std_WhatsThis.md index 99c3cc3668..7de8f763f2 100644 --- a/wiki/translations/de/Std_WhatsThis.md +++ b/wiki/translations/de/Std_WhatsThis.md @@ -7,6 +7,8 @@ SeeAlso:[Hilfe](Std_OnlineHelp/de.md) --- +# Std WhatsThis/de + ## Beschreibung Der **Std Direkthilfe**-Befehl öffnet die Hilfedokumentation für einen angegebenen Befehl. @@ -36,4 +38,7 @@ Lies diesen Beitrag, um zu verstehen, wie die Befehle im Code benannt werden mü {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std WhatsThis/de diff --git a/wiki/translations/de/Std_Windows.md b/wiki/translations/de/Std_Windows.md index e35efc29b2..2bd51b1862 100644 --- a/wiki/translations/de/Std_Windows.md +++ b/wiki/translations/de/Std_Windows.md @@ -6,6 +6,8 @@ SeeAlso:[Std NächstesFensterAktivieren](Std_ActivateNextWindow/de.md), [Std VorherigesFensterAktivieren](Std_ActivatePrevWindow/de.md) --- +# Std Windows/de + ## Beschreibung Der **Std Fenster**-Befehl öffnet eine Dialog-Box mit einer Liste der Fenster des [Hauptansichtsbereichs](Main_view_area/de.md). Aus dieser Liste kann ein ausgewähltes Fenster aktiviert werden. @@ -36,4 +38,7 @@ Fenster im Hauptansichtsbereich sind auch im **Fenster**-Menü aufgeführt und k {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Windows/de diff --git a/wiki/translations/de/Std_Windows_Menu.md b/wiki/translations/de/Std_Windows_Menu.md index 0d3a1fa8a6..b60a1aa344 100644 --- a/wiki/translations/de/Std_Windows_Menu.md +++ b/wiki/translations/de/Std_Windows_Menu.md @@ -1,10 +1,4 @@ -# Std Windows Menu/de - - - - - -Std Basis Symbol +# Std Basis Symbol Std Windows Menu/de {{TOCright}} @@ -58,3 +52,6 @@ Die folgenden Werkzeuge sind in diesem Menü verfügbar: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Windows Menu/de diff --git a/wiki/translations/de/Std_Workbench.md b/wiki/translations/de/Std_Workbench.md index 3990168b02..87690e7ceb 100644 --- a/wiki/translations/de/Std_Workbench.md +++ b/wiki/translations/de/Std_Workbench.md @@ -7,6 +7,8 @@ SeeAlso:[Arbeitsbereiche](Workbenches/de.md) --- +# Std Workbench/de + ## Beschreibung Der **Std Arbeitsbereich** aktiviert einen ausgewählten [Arbetsbereich](Workbenches/de.md) einschließlich ihrer grafischen Benutzeroberfläche (GUI). @@ -50,4 +52,7 @@ FreeCADGui.activateWorkbench("PartDesignWorkbench") {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Std Workbench/de diff --git a/wiki/translations/de/Surface_CurveOnMesh.md b/wiki/translations/de/Surface_CurveOnMesh.md index 8bea5d0bf7..9f11943be4 100644 --- a/wiki/translations/de/Surface_CurveOnMesh.md +++ b/wiki/translations/de/Surface_CurveOnMesh.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Surface CurveOnMesh/de + ## Beschreibung @@ -89,4 +91,7 @@ In addition to the properties described in [Part Feature](Part_Feature.md), the {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface CurveOnMesh/de diff --git a/wiki/translations/de/Surface_ExtendFace.md b/wiki/translations/de/Surface_ExtendFace.md index 4142962223..746b3116cd 100644 --- a/wiki/translations/de/Surface_ExtendFace.md +++ b/wiki/translations/de/Surface_ExtendFace.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Surface ExtendFace/de + ## Beschreibung @@ -126,4 +128,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface ExtendFace/de diff --git a/wiki/translations/de/Surface_Filling.md b/wiki/translations/de/Surface_Filling.md index 37a3c5af93..b773ccc899 100644 --- a/wiki/translations/de/Surface_Filling.md +++ b/wiki/translations/de/Surface_Filling.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Surface Filling/de + ## Beschreibung @@ -199,4 +201,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Filling/de diff --git a/wiki/translations/de/Surface_GeomFillSurface.md b/wiki/translations/de/Surface_GeomFillSurface.md index 4ae24f225f..951eab43e6 100644 --- a/wiki/translations/de/Surface_GeomFillSurface.md +++ b/wiki/translations/de/Surface_GeomFillSurface.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Surface GeomFillSurface/de + ## Beschreibung @@ -145,4 +147,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface GeomFillSurface/de diff --git a/wiki/translations/de/Surface_Module.md b/wiki/translations/de/Surface_Module.md index 82174dba73..0a8cfcb4df 100644 --- a/wiki/translations/de/Surface_Module.md +++ b/wiki/translations/de/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/de 1. REDIRECT [Surface\_Workbench/de](Surface_Workbench/de.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/de diff --git a/wiki/translations/de/Surface_Sections.md b/wiki/translations/de/Surface_Sections.md index 675ed2b393..fc287b2ae7 100644 --- a/wiki/translations/de/Surface_Sections.md +++ b/wiki/translations/de/Surface_Sections.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Surface Sections/de + ## Beschreibung @@ -115,4 +117,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Sections/de diff --git a/wiki/translations/de/Surface_Workbench.md b/wiki/translations/de/Surface_Workbench.md index cb17d7a123..7d78768078 100644 --- a/wiki/translations/de/Surface_Workbench.md +++ b/wiki/translations/de/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/de - - - - - -Oberfläche Arbeitsbereichssymbol +# Oberfläche Arbeitsbereichssymbol Surface Workbench/de {{TOCright}} @@ -57,3 +51,6 @@ Die generierte Oberfläche kann nicht mehr innerhalb eines ** Surface Workbench/de diff --git a/wiki/translations/de/Svg_Namespace.md b/wiki/translations/de/Svg_Namespace.md index 80c7eab209..cad1b6e493 100644 --- a/wiki/translations/de/Svg_Namespace.md +++ b/wiki/translations/de/Svg_Namespace.md @@ -1,7 +1,4 @@ # Svg Namespace/de - - - **Entwicklung des [Zeichnung Arbeitsbereich](Drawing_Workbench/de.md) wurde in FreeCAD v0.16 gestoppt und der neue in v0.17 eingeführte [TechDraw Arbeitsbereich](TechDraw_Workbench/de.md) zielt darauf, ihn zu ersetzen. Beide Arbeitsbereiche werden in v0.17 bereitgestellt, aber der Zeichnung Arbeitsbereich könnte in zukünftigen Ausgaben entfernt werden.** @@ -233,3 +230,6 @@ Siehe [Drawing\_templates/de](Drawing_templates/de.md) }} [Category:Poweruser\_Documentation](Category:Poweruser_Documentation.md) [Category:Developer](Category:Developer.md) [Category:Python\_Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Poweruser_Documentation](Category:Poweruser_Documentation.md) > Svg Namespace/de diff --git a/wiki/translations/de/Symbols_Library_Workbench.md b/wiki/translations/de/Symbols_Library_Workbench.md index a01ad04927..61b5cfa082 100644 --- a/wiki/translations/de/Symbols_Library_Workbench.md +++ b/wiki/translations/de/Symbols_Library_Workbench.md @@ -1,6 +1,4 @@ # Symbols Library Workbench/de - - ## Einführung @@ -51,3 +49,6 @@ Die Bibliothek ist ein einfacher Behälter für SVG Dateien. Du kannst sie über [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Symbols Library Workbench/de diff --git a/wiki/translations/de/Task_Panel.md b/wiki/translations/de/Task_Panel.md index 6c6ea519f6..e5fcefd9d8 100644 --- a/wiki/translations/de/Task_Panel.md +++ b/wiki/translations/de/Task_Panel.md @@ -1,2 +1,5 @@ # Task Panel/de 1. REDIRECT [Task\_panel/de](Task_panel/de.md) + +--- +[documentation index](../README.md) > Task Panel/de diff --git a/wiki/translations/de/Task_panel.md b/wiki/translations/de/Task_panel.md index 606a7a9ef1..c7f3241328 100644 --- a/wiki/translations/de/Task_panel.md +++ b/wiki/translations/de/Task_panel.md @@ -1,5 +1,5 @@ # Task panel/de - {{TOCright}} +{{TOCright}} ## Einführung @@ -54,4 +54,7 @@ Gui::Control().closeDialog(); {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Task panel/de diff --git a/wiki/translations/de/Tasks_Placement.md b/wiki/translations/de/Tasks_Placement.md index c6b332354c..5ee41e751c 100644 --- a/wiki/translations/de/Tasks_Placement.md +++ b/wiki/translations/de/Tasks_Placement.md @@ -1,6 +1,4 @@ # Tasks Placement/de - - ## Beschreibung Command for modifying **Placement**. These options relate only to the position and orientation of the object in space, they do not affect other attributes of the shape. The placement is stored internally as a position, and a rotation (rotation axis and angle transformed into a quaternion [1](https://en.wikipedia.org/wiki/Quaternions_and_spatial_rotation)). While there are several methods to specify a rotation, for instance with a rotation center, this is only used to affect the rotation computation and is not stored for later operations. Similarly, if a rotation axis of (1,1,1) is specified, it may be normalized when stored in the quaternion and appear as (0.58, 0.58, 0.58) when browsing the object later. @@ -121,3 +119,6 @@ Other explanation on [Placement](Placement/de.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Command_Reference](Category:Command_Reference.md) > Tasks Placement/de diff --git a/wiki/translations/de/TechDrawGui_API.md b/wiki/translations/de/TechDrawGui_API.md index 7bd0ec9ff5..7522d9520e 100644 --- a/wiki/translations/de/TechDrawGui_API.md +++ b/wiki/translations/de/TechDrawGui_API.md @@ -1,5 +1,5 @@ # TechDrawGui API/de - **(November 2018) Diese Information kann unvollständig und veraltet sein. Für die letzte API siehe die (engl.) [https://www.freecadweb.org/api autogenerierte API-Dokumentation].** Diese Funktionen sind Teil des [TechDraw-Arbeitsbereichs](TechDraw_Workbench/de.md) und können in [Makros](macros/de.md) oder mit dem [Python](Python/de.md)-Interpreter verwendet werden, sobald das TechDrawGui importiert wurde. +**(November 2018) Diese Information kann unvollständig und veraltet sein. Für die letzte API siehe die (engl.) [https://www.freecadweb.org/api autogenerierte API-Dokumentation].** Diese Funktionen sind Teil des [TechDraw-Arbeitsbereichs](TechDraw_Workbench/de.md) und können in [Makros](macros/de.md) oder mit dem [Python](Python/de.md)-Interpreter verwendet werden, sobald das TechDrawGui importiert wurde. Siehe die [TechDraw API](TechDraw_API/de.md) für weitere Funktionen. @@ -44,3 +44,6 @@ Optionen: }} [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > TechDrawGui API/de diff --git a/wiki/translations/de/TechDraw_2LineCenterLine.md b/wiki/translations/de/TechDraw_2LineCenterLine.md index 94be241b4e..58666b814b 100644 --- a/wiki/translations/de/TechDraw_2LineCenterLine.md +++ b/wiki/translations/de/TechDraw_2LineCenterLine.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Mittellinie zu Fläche(n)](TechDraw_FaceCenterLine/de.md), [TechDraw Mittellinie zwischen 2 Punkten](TechDraw_2PointCenterLine/de.md) --- +# TechDraw 2LineCenterLine/de + ## Beschreibung Das 2LinienMittelLinie Werkzeug fügt eine Mittellinie zwischen zwei Kanten hinzu. @@ -71,4 +73,7 @@ Mittellinien sind zur Zeit noch nicht zugänglich über [Makros](Macros/de.md) u {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2LineCenterLine/de diff --git a/wiki/translations/de/TechDraw_2PointCenterLine.md b/wiki/translations/de/TechDraw_2PointCenterLine.md index 3696b428b7..320a055a4d 100644 --- a/wiki/translations/de/TechDraw_2PointCenterLine.md +++ b/wiki/translations/de/TechDraw_2PointCenterLine.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Mittellinie zu Fläche(n)](TechDraw_FaceCenterLine/de.md), [TechDraw Mittellinie zwischen 2 Linien](TechDraw_2LineCenterLine/de.md) --- +# TechDraw 2PointCenterLine/de + ## Beschreibung Das Werkzeug fügt eine Mittellinie hinzu, die zwischen zwei Punkten verlaufen soll. @@ -66,4 +68,7 @@ Mittellinien sind zur Zeit noch nicht zugänglich über [Makros](Macros/de.md) u {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2PointCenterLine/de diff --git a/wiki/translations/de/TechDraw_2PointCosmeticLine.md b/wiki/translations/de/TechDraw_2PointCosmeticLine.md index d46c174c33..d9abe6d7e5 100644 --- a/wiki/translations/de/TechDraw_2PointCosmeticLine.md +++ b/wiki/translations/de/TechDraw_2PointCosmeticLine.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Mittellinie zu Fläche(n)](TechDraw_FaceCenterLine/de.md), [TechDraw Mittellinie zwischen 2 Linien](TechDraw_2LineCenterLine/de.md) --- +# TechDraw 2PointCosmeticLine/de + @@ -60,4 +62,7 @@ Kosmetiklinien können mit den Methoden makeCosmeticLine(v1, v2) oder makeCosmet {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2PointCosmeticLine/de diff --git a/wiki/translations/de/TechDraw_3PtAngleDimension.md b/wiki/translations/de/TechDraw_3PtAngleDimension.md index 3f1fa409de..fd784ef354 100644 --- a/wiki/translations/de/TechDraw_3PtAngleDimension.md +++ b/wiki/translations/de/TechDraw_3PtAngleDimension.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Bemaßung Winkel](TechDraw_Dimension_Angle/de.md) --- +# TechDraw 3PtAngleDimension/de + @@ -99,4 +101,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 3PtAngleDimension/de diff --git a/wiki/translations/de/TechDraw_API.md b/wiki/translations/de/TechDraw_API.md index b4dfada587..1c247acdbe 100644 --- a/wiki/translations/de/TechDraw_API.md +++ b/wiki/translations/de/TechDraw_API.md @@ -1,5 +1,5 @@ # TechDraw API/de - **(November 2018) Diese Information kann unvollständig und veraltet sein. Für die letzte API siehe die [https://www.freecadweb.org/api autogenerierte API Dokumentation].** Diese Funktionen sind Teil des [TechDraw Arbeitsbereich](TechDraw_Workbench/de.md) und können in [Makros](macros/de.md) und von der [Python](Python/de.md) Konsole aus verwendet werden, sobald das `TechDraw` Modul importiert wurde. +**(November 2018) Diese Information kann unvollständig und veraltet sein. Für die letzte API siehe die [https://www.freecadweb.org/api autogenerierte API Dokumentation].** Diese Funktionen sind Teil des [TechDraw Arbeitsbereich](TechDraw_Workbench/de.md) und können in [Makros](macros/de.md) und von der [Python](Python/de.md) Konsole aus verwendet werden, sobald das `TechDraw` Modul importiert wurde. Gute Beispiele für grundlegendes TechDraw Skripten findest Du in den [unit test scripts](https://github.com/FreeCAD/FreeCAD/tree/master/src/Mod/TechDraw/TDTest). @@ -353,3 +353,6 @@ dvp.requestPaint() Redraw the graphic for this View. }} [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw API/de diff --git a/wiki/translations/de/TechDraw_ActiveView.md b/wiki/translations/de/TechDraw_ActiveView.md index e803feaccf..b519b67f8c 100644 --- a/wiki/translations/de/TechDraw_ActiveView.md +++ b/wiki/translations/de/TechDraw_ActiveView.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Symbol](TechDraw_Symbol/de.md) --- +# TechDraw ActiveView/de + ## Beschreibung Das Werkzeug AktiveAnsicht fügt eine Kopie eines 3D Fensters in eine Zeichnungsseite ein. @@ -79,4 +81,7 @@ TechDrawGui.copyActiveViewToSvgFile(Gui.ActiveDocument.ActiveView,"myFile.svg") {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ActiveView/de diff --git a/wiki/translations/de/TechDraw_AngleDimension.md b/wiki/translations/de/TechDraw_AngleDimension.md index d8e910b5e5..3aa4f29354 100644 --- a/wiki/translations/de/TechDraw_AngleDimension.md +++ b/wiki/translations/de/TechDraw_AngleDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Bemaßung Winkel3Punkte](TechDraw_Dimension_Angle3Pt/de.md) --- +# TechDraw AngleDimension/de + @@ -99,4 +101,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw AngleDimension/de diff --git a/wiki/translations/de/TechDraw_Annotation.md b/wiki/translations/de/TechDraw_Annotation.md index 9c04cfc9f8..f1c2f5a7ff 100644 --- a/wiki/translations/de/TechDraw_Annotation.md +++ b/wiki/translations/de/TechDraw_Annotation.md @@ -7,6 +7,8 @@ SeeAlso:[Entwurf Text](Draft_Text/de.md), [Draft FormZeichenkette](Draft_ShapeString/de.md) --- +# TechDraw Annotation/de + ## Beschreibung Das Anmerkungswerkzeug fügt einen Textblock zu einem Zeichnungsblatt hinzu. @@ -71,4 +73,7 @@ rc = page.addView(anno) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Annotation/de diff --git a/wiki/translations/de/TechDraw_ArchView.md b/wiki/translations/de/TechDraw_ArchView.md index a179f2f704..33260055a4 100644 --- a/wiki/translations/de/TechDraw_ArchView.md +++ b/wiki/translations/de/TechDraw_ArchView.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Schnittebene](Arch_SectionPlane/de.md) --- +# TechDraw ArchView/de + ## Beschreibung Das ArchAnsicht Werkzeug fügt eine Ansicht einer ** [Arch SchnittEbene](Arch_SectionPlane/de.md)** auf einer [TechDraw StandardSeite](TechDraw_PageDefault/de.md) ein. @@ -76,4 +78,7 @@ rc = page.addView(dv) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ArchView/de diff --git a/wiki/translations/de/TechDraw_Balloon.md b/wiki/translations/de/TechDraw_Balloon.md index eece7747a7..b34a30a6a0 100644 --- a/wiki/translations/de/TechDraw_Balloon.md +++ b/wiki/translations/de/TechDraw_Balloon.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Anmerkung](TechDraw_Annotation/de.md) --- +# TechDraw Balloon/de + ## Beschreibung Das Werkzeug Stücklistensymbol kann Stücklistensymbole mit Führungslinie einer Zeichnung hinzufügen. @@ -98,4 +100,7 @@ rc = page.addView(bal1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Balloon/de diff --git a/wiki/translations/de/TechDraw_Clip.md b/wiki/translations/de/TechDraw_Clip.md index dfb1b5e404..8a5aa7af75 100644 --- a/wiki/translations/de/TechDraw_Clip.md +++ b/wiki/translations/de/TechDraw_Clip.md @@ -1,2 +1,5 @@ # TechDraw Clip/de 1. REDIRECT [TechDraw\_ClipGroup/de](TechDraw_ClipGroup/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Clip/de diff --git a/wiki/translations/de/TechDraw_ClipGroup.md b/wiki/translations/de/TechDraw_ClipGroup.md index a7ae49214a..72aa9fe02c 100644 --- a/wiki/translations/de/TechDraw_ClipGroup.md +++ b/wiki/translations/de/TechDraw_ClipGroup.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Ausschnittgruppe hinzufügen](TechDraw_ClipGroupAdd/de.md), [TechDraw Entferne Ansicht aus Ausschnittgruppe](TechDraw_ClipGroupRemove/de.md) --- +# TechDraw ClipGroup/de + ## Beschreibung @@ -41,4 +43,7 @@ Dieses Werkzeug erstellt ein Ausschnittfenster, das eine oder mehrere Ansichten {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroup/de diff --git a/wiki/translations/de/TechDraw_ClipGroupAdd.md b/wiki/translations/de/TechDraw_ClipGroupAdd.md index 1003648835..1bb3639adc 100644 --- a/wiki/translations/de/TechDraw_ClipGroupAdd.md +++ b/wiki/translations/de/TechDraw_ClipGroupAdd.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Einfügen Ausschnittgruppe](TechDraw_ClipGroupAdd/de.md), [TechDraw Entferne Ansicht aus Ausschnittgruppe](TechDraw_ClipGroupRemove/de.md) --- +# TechDraw ClipGroupAdd/de + ## Beschreibung Dieses Werkzeug fügt eine Ansicht zu einem vorhandenen Ausschnitt hinzu. @@ -22,4 +24,7 @@ Dieses Werkzeug fügt eine Ansicht zu einem vorhandenen Ausschnitt hinzu. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroupAdd/de diff --git a/wiki/translations/de/TechDraw_ClipGroupRemove.md b/wiki/translations/de/TechDraw_ClipGroupRemove.md index c441ef8556..088a2f9d19 100644 --- a/wiki/translations/de/TechDraw_ClipGroupRemove.md +++ b/wiki/translations/de/TechDraw_ClipGroupRemove.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw einfügen Ausschnitt Gruppe](TechDraw_ClipGroup/de.md), [TechDraw Ansicht hinzufügen zu Ausschnittgruppe](TechDraw_ClipGroupAdd/de.md) --- +# TechDraw ClipGroupRemove/de + ## Beschreibung Dieses Werkzeug entfernt eine Ansicht aus einem vorhandenen Ausschnitt und gibt es in den Seitenbereich zurück. @@ -28,4 +30,7 @@ Dieses Werkzeug entfernt eine Ansicht aus einem vorhandenen Ausschnitt und gibt {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroupRemove/de diff --git a/wiki/translations/de/TechDraw_ClipMinus.md b/wiki/translations/de/TechDraw_ClipMinus.md index c1a21e4e67..500a81346b 100644 --- a/wiki/translations/de/TechDraw_ClipMinus.md +++ b/wiki/translations/de/TechDraw_ClipMinus.md @@ -1,2 +1,5 @@ # TechDraw ClipMinus/de 1. REDIRECT [TechDraw\_ClipGroupRemove/de](TechDraw_ClipGroupRemove/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipMinus/de diff --git a/wiki/translations/de/TechDraw_ClipPlus.md b/wiki/translations/de/TechDraw_ClipPlus.md index 6941056a87..eda6c91275 100644 --- a/wiki/translations/de/TechDraw_ClipPlus.md +++ b/wiki/translations/de/TechDraw_ClipPlus.md @@ -1,2 +1,5 @@ # TechDraw ClipPlus/de 1. REDIRECT [TechDraw\_ClipGroupAdd/de](TechDraw_ClipGroupAdd/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipPlus/de diff --git a/wiki/translations/de/TechDraw_CosmeticEraser.md b/wiki/translations/de/TechDraw_CosmeticEraser.md index 7ce9ca1f2e..319b91e218 100644 --- a/wiki/translations/de/TechDraw_CosmeticEraser.md +++ b/wiki/translations/de/TechDraw_CosmeticEraser.md @@ -7,6 +7,8 @@ Version:0.19 --- +# TechDraw CosmeticEraser/de + ## Beschreibung Das KosmetikRadierer Werkzeug entfernt Kosmetikobjekte von der Seite. Kosmetikobjekte sind @@ -43,4 +45,7 @@ Der KosmetikRadierer ist zur Zeit noch nicht zugänglich über [Makros](Macros/d {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw CosmeticEraser/de diff --git a/wiki/translations/de/TechDraw_CosmeticVertex.md b/wiki/translations/de/TechDraw_CosmeticVertex.md index 3ff25f8910..2aaceed58c 100644 --- a/wiki/translations/de/TechDraw_CosmeticVertex.md +++ b/wiki/translations/de/TechDraw_CosmeticVertex.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Mittenpunkt](TechDraw_Midpoints/de.md), [TechDraw Quadrant](TechDraw_Quadrants/de.md) --- +# TechDraw CosmeticVertex/de + ## Beschreibung Das Kosmetikknoten Werkzeug fügt einer Ansicht einen [Knoten](Glossary/de#V.md) hinzu, der nicht Teil der Quellgeometrie ist. Dieser Knoten verhält sich wie jeder andere Knoten und kann für die Bemaßung verwendet werden. @@ -60,4 +62,7 @@ dvp.makeCosmeticLine(start,end,style, weight, pyGreen) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw CosmeticVertex/de diff --git a/wiki/translations/de/TechDraw_DecorateLine.md b/wiki/translations/de/TechDraw_DecorateLine.md index 31b5fb5a03..752890b54a 100644 --- a/wiki/translations/de/TechDraw_DecorateLine.md +++ b/wiki/translations/de/TechDraw_DecorateLine.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Mittelinie zu Fläche(n)](TechDraw_FaceCenterLine/de.md), [TechDraw Kosmetik Radierer](TechDraw_CosmeticEraser/de.md) --- +# TechDraw DecorateLine/de + ## Beschreibung Das Werkzeug AusgestaltenLinie ändert die Darstellung von Kanten. @@ -48,4 +50,7 @@ AusgestaltenLinie ist zur Zeit noch nicht zugänglich aus [Makros](Macros/de.md) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DecorateLine/de diff --git a/wiki/translations/de/TechDraw_DetailView.md b/wiki/translations/de/TechDraw_DetailView.md index c6e4630ed7..345eaeba11 100644 --- a/wiki/translations/de/TechDraw_DetailView.md +++ b/wiki/translations/de/TechDraw_DetailView.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Ansicht](TechDraw_View/de.md), [TechDraw Projektionsgruppe](TechDraw_ProjectionGroup/de.md) --- +# TechDraw DetailView/de + ## Beschreibung Das Detailwerkzeug erstellt eine vergrößerte Ansicht eines kleinen Bereichs einer vorhandenen Ansicht. @@ -86,4 +88,7 @@ Dies wird erreicht, indem die Detailansicht in eine [Klipgruppe](TechDraw_ClipGr {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DetailView/de diff --git a/wiki/translations/de/TechDraw_DiameterDimension.md b/wiki/translations/de/TechDraw_DiameterDimension.md index a9ffa222ff..6537196223 100644 --- a/wiki/translations/de/TechDraw_DiameterDimension.md +++ b/wiki/translations/de/TechDraw_DiameterDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Radiusbemaßung](TechDraw_Dimension_Radius/de.md) --- +# TechDraw DiameterDimension/de + @@ -99,4 +101,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DiameterDimension/de diff --git a/wiki/translations/de/TechDraw_Dimension_Angle.md b/wiki/translations/de/TechDraw_Dimension_Angle.md index 2dbb8f7005..fa00e40b70 100644 --- a/wiki/translations/de/TechDraw_Dimension_Angle.md +++ b/wiki/translations/de/TechDraw_Dimension_Angle.md @@ -1,2 +1,5 @@ # TechDraw Dimension Angle/de 1. REDIRECT [TechDraw\_AngleDimension/de](TechDraw_AngleDimension/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Angle/de diff --git a/wiki/translations/de/TechDraw_Dimension_Angle3Pt.md b/wiki/translations/de/TechDraw_Dimension_Angle3Pt.md index 86fcd9db70..081f73fe01 100644 --- a/wiki/translations/de/TechDraw_Dimension_Angle3Pt.md +++ b/wiki/translations/de/TechDraw_Dimension_Angle3Pt.md @@ -1,2 +1,5 @@ # TechDraw Dimension Angle3Pt/de 1. REDIRECT [TechDraw\_3PtAngleDimension/de](TechDraw_3PtAngleDimension/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Angle3Pt/de diff --git a/wiki/translations/de/TechDraw_Dimension_Diameter.md b/wiki/translations/de/TechDraw_Dimension_Diameter.md index 238b9c358f..73f4baf61a 100644 --- a/wiki/translations/de/TechDraw_Dimension_Diameter.md +++ b/wiki/translations/de/TechDraw_Dimension_Diameter.md @@ -1,2 +1,5 @@ # TechDraw Dimension Diameter/de 1. REDIRECT [TechDraw\_DiameterDimension/de](TechDraw_DiameterDimension/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Diameter/de diff --git a/wiki/translations/de/TechDraw_Dimension_Horizontal.md b/wiki/translations/de/TechDraw_Dimension_Horizontal.md index b146c6e271..1975d6208e 100644 --- a/wiki/translations/de/TechDraw_Dimension_Horizontal.md +++ b/wiki/translations/de/TechDraw_Dimension_Horizontal.md @@ -1,2 +1,5 @@ # TechDraw Dimension Horizontal/de 1. REDIRECT [TechDraw\_HorizontalDimension/de](TechDraw_HorizontalDimension/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Horizontal/de diff --git a/wiki/translations/de/TechDraw_Dimension_Horizontal_Extent.md b/wiki/translations/de/TechDraw_Dimension_Horizontal_Extent.md index 37f41c2d85..86d60dd117 100644 --- a/wiki/translations/de/TechDraw_Dimension_Horizontal_Extent.md +++ b/wiki/translations/de/TechDraw_Dimension_Horizontal_Extent.md @@ -1,2 +1,5 @@ # TechDraw Dimension Horizontal Extent/de 1. REDIRECT [TechDraw\_HorizontalExtentDimension/de](TechDraw_HorizontalExtentDimension/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Horizontal Extent/de diff --git a/wiki/translations/de/TechDraw_Dimension_Landmark.md b/wiki/translations/de/TechDraw_Dimension_Landmark.md index 7a6088d882..b9edcf3b63 100644 --- a/wiki/translations/de/TechDraw_Dimension_Landmark.md +++ b/wiki/translations/de/TechDraw_Dimension_Landmark.md @@ -1,2 +1,5 @@ # TechDraw Dimension Landmark/de 1. REDIRECT [TechDraw\_LandmarkDimension/de](TechDraw_LandmarkDimension/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Landmark/de diff --git a/wiki/translations/de/TechDraw_Dimension_Length.md b/wiki/translations/de/TechDraw_Dimension_Length.md index bee6226e56..67bc440965 100644 --- a/wiki/translations/de/TechDraw_Dimension_Length.md +++ b/wiki/translations/de/TechDraw_Dimension_Length.md @@ -1,2 +1,5 @@ # TechDraw Dimension Length/de 1. REDIRECT [TechDraw\_LengthDimension/de](TechDraw_LengthDimension/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Length/de diff --git a/wiki/translations/de/TechDraw_Dimension_Link.md b/wiki/translations/de/TechDraw_Dimension_Link.md index cb308a8291..4c1663425e 100644 --- a/wiki/translations/de/TechDraw_Dimension_Link.md +++ b/wiki/translations/de/TechDraw_Dimension_Link.md @@ -1,2 +1,5 @@ # TechDraw Dimension Link/de 1. REDIRECT [TechDraw\_LinkDimension/de](TechDraw_LinkDimension/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Link/de diff --git a/wiki/translations/de/TechDraw_Dimension_Radius.md b/wiki/translations/de/TechDraw_Dimension_Radius.md index 04392670f2..74ce808aa5 100644 --- a/wiki/translations/de/TechDraw_Dimension_Radius.md +++ b/wiki/translations/de/TechDraw_Dimension_Radius.md @@ -1,2 +1,5 @@ # TechDraw Dimension Radius/de 1. REDIRECT [TechDraw\_RadiusDimension/de](TechDraw_RadiusDimension/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Radius/de diff --git a/wiki/translations/de/TechDraw_Dimension_Vertical.md b/wiki/translations/de/TechDraw_Dimension_Vertical.md index 4b9568f843..a122d7b350 100644 --- a/wiki/translations/de/TechDraw_Dimension_Vertical.md +++ b/wiki/translations/de/TechDraw_Dimension_Vertical.md @@ -1,2 +1,5 @@ # TechDraw Dimension Vertical/de 1. REDIRECT [TechDraw\_VerticalDimension/de](TechDraw_VerticalDimension/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Vertical/de diff --git a/wiki/translations/de/TechDraw_Dimension_Vertical_Extent.md b/wiki/translations/de/TechDraw_Dimension_Vertical_Extent.md index 5f3c418e03..9dad41b44c 100644 --- a/wiki/translations/de/TechDraw_Dimension_Vertical_Extent.md +++ b/wiki/translations/de/TechDraw_Dimension_Vertical_Extent.md @@ -1,2 +1,5 @@ # TechDraw Dimension Vertical Extent/de 1. REDIRECT [TechDraw\_VerticalExtentDimension/de](TechDraw_VerticalExtentDimension/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Vertical Extent/de diff --git a/wiki/translations/de/TechDraw_DraftView.md b/wiki/translations/de/TechDraw_DraftView.md index e0d05a4cd3..5b25d4ba8a 100644 --- a/wiki/translations/de/TechDraw_DraftView.md +++ b/wiki/translations/de/TechDraw_DraftView.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw ArchAnsicht](TechDraw_ArchView/de.md) --- +# TechDraw DraftView/de + ## Beschreibung Das [EntwurfAnsicht](TechDraw_DraftView/de.md) Werkzeug fügt eine Ansicht eines ausgewählten [Part](Part_Workbench/de.md)-basierten oder Gruppenobjekts in ein Zeichenblatt ein. Im Gegensatz zum Standard [Ansicht](TechDraw_View/de.md) Werkzeug, werden die mit diesem Werkzeug erstellten Ansichten mit dem [Entwurf Arbeitsbereich](Draft_Workbench/de.md) bearbeitet und speziell für die Darstellung von 2D-Objekten entwickelt. Siehe Anmerkungen. @@ -72,4 +74,7 @@ rc = page.addView(dv) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DraftView/de diff --git a/wiki/translations/de/TechDraw_ExportPageDXF.md b/wiki/translations/de/TechDraw_ExportPageDXF.md index 48f2811573..0f3e6b2f4d 100644 --- a/wiki/translations/de/TechDraw_ExportPageDXF.md +++ b/wiki/translations/de/TechDraw_ExportPageDXF.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Exportiere Seite als SVG](TechDraw_ExportPageSVG/de.md), [Entwurf DXF](Draft_DXF/de.md) --- +# TechDraw ExportPageDXF/de + ## Beschreibung Das ExportSeiteDXF Werkzeug speichert eine Zeichnungsseite als [DXF](DXF/de.md) Datei. @@ -68,4 +70,7 @@ TechDraw.writeDXFPage(page,filename) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ExportPageDXF/de diff --git a/wiki/translations/de/TechDraw_ExportPageSVG.md b/wiki/translations/de/TechDraw_ExportPageSVG.md index 0835a47db4..d6e2b44984 100644 --- a/wiki/translations/de/TechDraw_ExportPageSVG.md +++ b/wiki/translations/de/TechDraw_ExportPageSVG.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Vorlagen](TechDraw_Templates/de.md), [Entwurf SVG](Draft_SVG/de.md) --- +# TechDraw ExportPageSVG/de + ## Beschreibung Das ExportSeiteSVG Werkzeug speichert das aktuelle Zeichnungsseite als [SVG](SVG/de.md) Datei. @@ -49,4 +51,7 @@ Beachte, dass das FreeCADGui Modul aktiv sein muss, um diese Funktion nutzen zu {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ExportPageSVG/de diff --git a/wiki/translations/de/TechDraw_FaceCenterLine.md b/wiki/translations/de/TechDraw_FaceCenterLine.md index 5666cc28bb..535a8cc6ff 100644 --- a/wiki/translations/de/TechDraw_FaceCenterLine.md +++ b/wiki/translations/de/TechDraw_FaceCenterLine.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Kosmetikknoten](TechDraw_CosmeticVertex/de.md), [TechDraw Mittellinie zwischen 2 Linien](TechDraw_2LineCenterLine/de.md), [TechDraw Mittellinie zwischen 2 Punkten](TechDraw_2PointCenterLine/de.md), [TechDraw Kosmetikradierer](TechDraw_CosmeticEraser/de.md) --- +# TechDraw FaceCenterLine/de + ## Beschreibung Das Werkzeug fügt einer Fläche eine Mittellinie durch ihren Mittelpunkt zu. @@ -77,4 +79,7 @@ Mittellinien sind zur Zeit noch nicht zugänglich über [Makros](Macros/de.md) u {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw FaceCenterLine/de diff --git a/wiki/translations/de/TechDraw_GeomHatch.md b/wiki/translations/de/TechDraw_GeomHatch.md index 5ce7c07d77..48c0d0f981 100644 --- a/wiki/translations/de/TechDraw_GeomHatch.md +++ b/wiki/translations/de/TechDraw_GeomHatch.md @@ -1,2 +1,5 @@ # TechDraw GeomHatch/de 1. REDIRECT [TechDraw\_GeometricHatch/de](TechDraw_GeometricHatch/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw GeomHatch/de diff --git a/wiki/translations/de/TechDraw_GeometricHatch.md b/wiki/translations/de/TechDraw_GeometricHatch.md index f01783babd..64cf1b7329 100644 --- a/wiki/translations/de/TechDraw_GeometricHatch.md +++ b/wiki/translations/de/TechDraw_GeometricHatch.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Schraffur](TechDraw_Hatch/de.md), [TechDraw Schraffieren](TechDraw_Hatching/de.md) --- +# TechDraw GeometricHatch/de + ## Beschreibung Das GeometrischeSchraffur Werkzeug füllt einen geschlossenen Bereich in einer Ansicht mit einem Muster, das auf einer AutoDesk PAT Schraffur Spezifikation basiert. *Alternativ* verwendet das [Schraffur](TechDraw_Hatch/de.md) Werkzeug eine [SVG](SVG/de.md) oder [Bitmap](bitmap/de.md) Datei als Schraffurmuster, siehe [Schraffierung](TechDraw_Hatching/de.md) für Einzelheiten. @@ -98,4 +100,7 @@ Part.show(hatch) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw GeometricHatch/de diff --git a/wiki/translations/de/TechDraw_Geometric_dimensioning_and_tolerancing.md b/wiki/translations/de/TechDraw_Geometric_dimensioning_and_tolerancing.md index 1e301324c8..77f3d6daf5 100644 --- a/wiki/translations/de/TechDraw_Geometric_dimensioning_and_tolerancing.md +++ b/wiki/translations/de/TechDraw_Geometric_dimensioning_and_tolerancing.md @@ -1,10 +1,4 @@ # TechDraw Geometric dimensioning and tolerancing/de - - - - - - {{TOCright}} ## Konzept @@ -341,4 +335,7 @@ As reference, here are lists of characters to be used for geometric tolerancing: {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Geometric dimensioning and tolerancing/de diff --git a/wiki/translations/de/TechDraw_Hatch.md b/wiki/translations/de/TechDraw_Hatch.md index 9e9bb21c22..5ebf0faa3e 100644 --- a/wiki/translations/de/TechDraw_Hatch.md +++ b/wiki/translations/de/TechDraw_Hatch.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Geometrische Schraffur](TechDraw_GeometricHatch/de.md), [TechDraw Schraffieren](TechDraw_Hatching/de.md) --- +# TechDraw Hatch/de + ## Beschreibung Das Schraffur Werkzeug füllt einen geschlossenen Bereich in einer Ansicht mit einem Schraffurmuster, das [SVG](SVG/de.md) oder [bitmap](bitmap/de.md) Dateien sein können. Im Gegenteil, das [Geometrische Schraffur](TechDraw_GeometricHatch/de.md) Werkzeug verwendet eine bestimmte PAT Musterdatei, siehe [Schraffur](TechDraw_Hatching/de.md) für Einzelheiten. @@ -70,4 +72,7 @@ rc = page.addView(hatch) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Hatch/de diff --git a/wiki/translations/de/TechDraw_Hatching.md b/wiki/translations/de/TechDraw_Hatching.md index ca66f991db..f7bb8dfffd 100644 --- a/wiki/translations/de/TechDraw_Hatching.md +++ b/wiki/translations/de/TechDraw_Hatching.md @@ -1,10 +1,4 @@ # TechDraw Hatching/de - - - - - - {{TOCright}} ## Beschreibung @@ -86,4 +80,7 @@ Die Datei `FCPAT.pat` befindet sich im folgenden Verzeichnis: {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Hatching/de diff --git a/wiki/translations/de/TechDraw_HorizontalDimension.md b/wiki/translations/de/TechDraw_HorizontalDimension.md index 847c4c8599..769f68a71c 100644 --- a/wiki/translations/de/TechDraw_HorizontalDimension.md +++ b/wiki/translations/de/TechDraw_HorizontalDimension.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Längenbemaßung](TechDraw_Dimension_Length/de.md), [TechDraw Vertikale Bemaßung](TechDraw_Dimension_Vertical/de.md) --- +# TechDraw HorizontalDimension/de + @@ -100,4 +102,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HorizontalDimension/de diff --git a/wiki/translations/de/TechDraw_HorizontalExtentDimension.md b/wiki/translations/de/TechDraw_HorizontalExtentDimension.md index 83c5f733a4..b73179a16e 100644 --- a/wiki/translations/de/TechDraw_HorizontalExtentDimension.md +++ b/wiki/translations/de/TechDraw_HorizontalExtentDimension.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Abmessung Länge](TechDraw_Dimension_Length/de.md), [TechDraw Abmessung Vertikale Ausdehnung](TechDraw_Dimension_Vertical_Extent/de.md) --- +# TechDraw HorizontalExtentDimension/de + @@ -94,4 +96,7 @@ rc = page.addView(hExtentDim) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HorizontalExtentDimension/de diff --git a/wiki/translations/de/TechDraw_HowTo_Page.md b/wiki/translations/de/TechDraw_HowTo_Page.md index 2b110c965d..1844daa0c5 100644 --- a/wiki/translations/de/TechDraw_HowTo_Page.md +++ b/wiki/translations/de/TechDraw_HowTo_Page.md @@ -1,5 +1,5 @@ # TechDraw HowTo Page/de - Zurück zu [TechDraw Tutorien](TechDraw_Workbench/de#Tutorien.md) +Zurück zu [TechDraw Tutorien](TechDraw_Workbench/de#Tutorien.md) {{TutorialInfo/de @@ -50,4 +50,7 @@ Siehe auch [Messung von Winkeln an Bohrungen](Measurement_Of_Angles_On_Holes/de. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HowTo Page/de diff --git a/wiki/translations/de/TechDraw_Image.md b/wiki/translations/de/TechDraw_Image.md index 9489b655af..4b72df1a4d 100644 --- a/wiki/translations/de/TechDraw_Image.md +++ b/wiki/translations/de/TechDraw_Image.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw SVG Symbol](TechDraw_Symbol/de.md) --- +# TechDraw Image/de + ## Beschreibung Das Bild Werkzeug fügt ein [Bitmap](bitmap/de.md) Bild (PNG, JPEG, JPG, BMP usw.) aus einer Datei als Ansicht in die Seite ein. @@ -47,4 +49,7 @@ dvi.Width = 200 {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Image/de diff --git a/wiki/translations/de/TechDraw_LandmarkDimension.md b/wiki/translations/de/TechDraw_LandmarkDimension.md index 73fee537c2..5c630404e6 100644 --- a/wiki/translations/de/TechDraw_LandmarkDimension.md +++ b/wiki/translations/de/TechDraw_LandmarkDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Horizontalbemaßung](TechDraw_Dimension_Horizontal/de.md), [TechDraw Vertikalbemaßung](TechDraw_Dimension_Vertical/de.md) --- +# TechDraw LandmarkDimension/de + @@ -90,4 +92,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LandmarkDimension/de diff --git a/wiki/translations/de/TechDraw_LeaderLine.md b/wiki/translations/de/TechDraw_LeaderLine.md index 4f4f09775e..596d5bcb04 100644 --- a/wiki/translations/de/TechDraw_LeaderLine.md +++ b/wiki/translations/de/TechDraw_LeaderLine.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Formatierte Text Anmerkung](TechDraw_RichTextAnnotation/de.md), [TechDraw Schweißsymbol](TechDraw_WeldSymbol/de.md), [TechDraw Liniengruppe](TechDraw_LineGroup/de.md) --- +# TechDraw LeaderLine/de + ## Beschreibung Das FührungsLinien Werkzeug fügt einer Ansicht eine Führungslinie hinzu. Andere Anmerkungsobjekte (wie z.B. [Formatierte Text Anmerkungen](TechDraw_RichTextAnnotation/de.md)) können mit der Führungslinie verbunden werden, um komplexe Anmerkungen zu bilden. @@ -92,4 +94,7 @@ leaderObj.Y = 5 {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LeaderLine/de diff --git a/wiki/translations/de/TechDraw_LengthDimension.md b/wiki/translations/de/TechDraw_LengthDimension.md index e55684e2bc..de2689f8a0 100644 --- a/wiki/translations/de/TechDraw_LengthDimension.md +++ b/wiki/translations/de/TechDraw_LengthDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Bemaßung Horizontal](TechDraw_Dimension_Horizontal/de.md), [TechDraw Bemaßung Vertikal](TechDraw_Dimension_Vertical/de.md) --- +# TechDraw LengthDimension/de + @@ -293,4 +295,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LengthDimension/de diff --git a/wiki/translations/de/TechDraw_LineGroup.md b/wiki/translations/de/TechDraw_LineGroup.md index 8b2425f18a..3623353cfe 100644 --- a/wiki/translations/de/TechDraw_LineGroup.md +++ b/wiki/translations/de/TechDraw_LineGroup.md @@ -1,10 +1,4 @@ # TechDraw LineGroup/de - - - - - - {{TOCright}} ## Übersicht @@ -79,4 +73,7 @@ Hinweis: Eine neue Einstellung wurde hinzugefügt, die es dir erlaubt, deine eig {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LineGroup/de diff --git a/wiki/translations/de/TechDraw_LinkDimension.md b/wiki/translations/de/TechDraw_LinkDimension.md index edb5471ea9..04930e7787 100644 --- a/wiki/translations/de/TechDraw_LinkDimension.md +++ b/wiki/translations/de/TechDraw_LinkDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Ansicht](TechDraw_View/de.md), [TechDraw ProjektionsGruppe](TechDraw_ProjectionGroup/de.md) --- +# TechDraw LinkDimension/de + @@ -104,4 +106,7 @@ to be defined {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LinkDimension/de diff --git a/wiki/translations/de/TechDraw_Midpoints.md b/wiki/translations/de/TechDraw_Midpoints.md index 2488968c30..99656078b1 100644 --- a/wiki/translations/de/TechDraw_Midpoints.md +++ b/wiki/translations/de/TechDraw_Midpoints.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Kosmetik Knoten](TechDraw_CosmeticVertex/de.md), [TechDraw Quadrantenknoten](TechDraw_Quadrants/de.md) --- +# TechDraw Midpoints/de + ## Beschreibung Das Mittenpunkte Werkzeug fügt kosmetische [Knoten (=Vertices)](Glossary/de#V.md) an den Mittenpunkten einer oder mehrerer Kanten hinzu. @@ -49,4 +51,7 @@ Kosmetikknoten sind zur Zeit nicht über [Makros](Macros/de.md) oder die [Python {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Midpoints/de diff --git a/wiki/translations/de/TechDraw_Module.md b/wiki/translations/de/TechDraw_Module.md index 6852c504fc..9fa2553396 100644 --- a/wiki/translations/de/TechDraw_Module.md +++ b/wiki/translations/de/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/de 1. REDIRECT [TechDraw\_Workbench/de](TechDraw_Workbench/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/de diff --git a/wiki/translations/de/TechDraw_NewAnnotation.md b/wiki/translations/de/TechDraw_NewAnnotation.md index 7a8f5b8f1a..84d72e6729 100644 --- a/wiki/translations/de/TechDraw_NewAnnotation.md +++ b/wiki/translations/de/TechDraw_NewAnnotation.md @@ -1,2 +1,5 @@ # TechDraw NewAnnotation/de 1. REDIRECT [TechDraw\_Annotation/de](TechDraw_Annotation/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewAnnotation/de diff --git a/wiki/translations/de/TechDraw_NewArch.md b/wiki/translations/de/TechDraw_NewArch.md index df8360638a..2eae49ef00 100644 --- a/wiki/translations/de/TechDraw_NewArch.md +++ b/wiki/translations/de/TechDraw_NewArch.md @@ -1,2 +1,5 @@ # TechDraw NewArch/de 1. REDIRECT [TechDraw\_ArchView/de](TechDraw_ArchView/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewArch/de diff --git a/wiki/translations/de/TechDraw_NewDetail.md b/wiki/translations/de/TechDraw_NewDetail.md index ae50f3f4ef..0bc3b79642 100644 --- a/wiki/translations/de/TechDraw_NewDetail.md +++ b/wiki/translations/de/TechDraw_NewDetail.md @@ -1,2 +1,5 @@ # TechDraw NewDetail/de 1. REDIRECT [TechDraw\_DetailView/de](TechDraw_DetailView/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewDetail/de diff --git a/wiki/translations/de/TechDraw_NewDraft.md b/wiki/translations/de/TechDraw_NewDraft.md index 443c1bdc33..4187cef74d 100644 --- a/wiki/translations/de/TechDraw_NewDraft.md +++ b/wiki/translations/de/TechDraw_NewDraft.md @@ -1,2 +1,5 @@ # TechDraw NewDraft/de 1. REDIRECT [TechDraw\_DraftView/de](TechDraw_DraftView/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewDraft/de diff --git a/wiki/translations/de/TechDraw_NewMulti.md b/wiki/translations/de/TechDraw_NewMulti.md index d049eec45b..7dc4099941 100644 --- a/wiki/translations/de/TechDraw_NewMulti.md +++ b/wiki/translations/de/TechDraw_NewMulti.md @@ -1,2 +1,5 @@ # TechDraw NewMulti/de 1. REDIRECT [TechDraw\_ProjectionGroup/de](TechDraw_ProjectionGroup/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewMulti/de diff --git a/wiki/translations/de/TechDraw_NewProjGroup.md b/wiki/translations/de/TechDraw_NewProjGroup.md index 1446d9fc96..1f482f113f 100644 --- a/wiki/translations/de/TechDraw_NewProjGroup.md +++ b/wiki/translations/de/TechDraw_NewProjGroup.md @@ -1,2 +1,5 @@ # TechDraw NewProjGroup/de 1. REDIRECT [TechDraw\_ProjectionGroup/de](TechDraw_ProjectionGroup/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewProjGroup/de diff --git a/wiki/translations/de/TechDraw_NewSection.md b/wiki/translations/de/TechDraw_NewSection.md index 47b82db29e..210fd4050c 100644 --- a/wiki/translations/de/TechDraw_NewSection.md +++ b/wiki/translations/de/TechDraw_NewSection.md @@ -1,2 +1,5 @@ # TechDraw NewSection/de 1. REDIRECT [TechDraw\_SectionView/de](TechDraw_SectionView/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewSection/de diff --git a/wiki/translations/de/TechDraw_New_Default.md b/wiki/translations/de/TechDraw_New_Default.md index 619cb3606c..69b2bb7676 100644 --- a/wiki/translations/de/TechDraw_New_Default.md +++ b/wiki/translations/de/TechDraw_New_Default.md @@ -1,2 +1,5 @@ # TechDraw New Default/de 1. REDIRECT [TechDraw\_PageDefault/de](TechDraw_PageDefault/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw New Default/de diff --git a/wiki/translations/de/TechDraw_New_Pick.md b/wiki/translations/de/TechDraw_New_Pick.md index 97edc8c912..cb5709302b 100644 --- a/wiki/translations/de/TechDraw_New_Pick.md +++ b/wiki/translations/de/TechDraw_New_Pick.md @@ -1,2 +1,5 @@ # TechDraw New Pick/de 1. REDIRECT [TechDraw\_PageTemplate/de](TechDraw_PageTemplate/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw New Pick/de diff --git a/wiki/translations/de/TechDraw_PageDefault.md b/wiki/translations/de/TechDraw_PageDefault.md index 991852c176..6e637ffae4 100644 --- a/wiki/translations/de/TechDraw_PageDefault.md +++ b/wiki/translations/de/TechDraw_PageDefault.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw SeitenVorlage einfügen](TechDraw_PageTemplate/de.md), [TechDraw Vorlagen](TechDraw_Templates/de.md) --- +# TechDraw PageDefault/de + ## Beschreibung Das Neue Standard Werkzeug erstellt ein neues Seitenobjekt unter Verwendung der Vorlagendatei, die in den [TechDraw Einstellungen](TechDraw_Preferences/de.md) festgelegt ist. @@ -88,4 +90,7 @@ page.Template.EditableTexts = texts {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw PageDefault/de diff --git a/wiki/translations/de/TechDraw_PageTemplate.md b/wiki/translations/de/TechDraw_PageTemplate.md index 671075ee06..5deba1f743 100644 --- a/wiki/translations/de/TechDraw_PageTemplate.md +++ b/wiki/translations/de/TechDraw_PageTemplate.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Standardseite](TechDraw_PageDefault/de.md), [TechDraw Vorlagen](TechDraw_Templates/de.md) --- +# TechDraw PageTemplate/de + ## Beschreibung Das Neue Auswahl Werkzeug erstellt ein neues Seitenobjekt unter Verwendung der in einem Dialogfeld ausgewählten Vorlagendatei. @@ -64,4 +66,7 @@ Siehe die Informationen in [Standardseite einfügen](TechDraw_PageDefault/de.md) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw PageTemplate/de diff --git a/wiki/translations/de/TechDraw_Preferences.md b/wiki/translations/de/TechDraw_Preferences.md index 252bc65c7b..655ca4df78 100644 --- a/wiki/translations/de/TechDraw_Preferences.md +++ b/wiki/translations/de/TechDraw_Preferences.md @@ -1,10 +1,4 @@ # TechDraw Preferences/de - - - - - - {{TOCright}} ## Einführung @@ -213,3 +207,6 @@ Einige Einrichtungseinstellungen sind nur über den [Parametereditor](Std_DlgPar }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Preferences/de diff --git a/wiki/translations/de/TechDraw_ProjectionGroup.md b/wiki/translations/de/TechDraw_ProjectionGroup.md index dc3fd73ea8..eabc30b71e 100644 --- a/wiki/translations/de/TechDraw_ProjectionGroup.md +++ b/wiki/translations/de/TechDraw_ProjectionGroup.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Ansicht einfügen](TechDraw_View/de.md), [TechDraw Schnitt Ansicht einfügen](TechDraw_SectionView/de.md) --- +# TechDraw ProjectionGroup/de + ## Beschreibung Das [ProjektionsGruppe](TechDraw_ProjectionGroup/de.md) Werkzeug erstellt eine [Mehrfachansichtsprojektion](https://en.wikipedia.org/wiki/Multiview_projection) einer oder mehrerer 3D Objekte. Die isometrischen Ansichten der vier Frontecken können ebenfalls eingeschlossen werden. @@ -96,4 +98,7 @@ Programmierhinweis: Die Projektionsgruppe sollte immer zur Seite hinzugefügt we {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ProjectionGroup/de diff --git a/wiki/translations/de/TechDraw_Quadrants.md b/wiki/translations/de/TechDraw_Quadrants.md index 1814f6b5fc..55396929f2 100644 --- a/wiki/translations/de/TechDraw_Quadrants.md +++ b/wiki/translations/de/TechDraw_Quadrants.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Kosmetikknoten](TechDraw_CosmeticVertex/de.md), [TechDraw Mittenpunkt](TechDraw_Midpoints/de.md) --- +# TechDraw Quadrants/de + ## Beschreibung Das Quadranten Werkzeug fügt [kosmetische Knoten](TechDraw_CosmeticVertex/de.md) an den 90/180/270° Punkten einer Kreiskante hinzu. Der 0° Knoten sollte bereits als geometrischer Knoten vorhanden sein. @@ -51,4 +53,7 @@ Kosmetische Knoten sind zur Zeit nicht über [Makros](Macros/de.md) oder die [Py {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Quadrants/de diff --git a/wiki/translations/de/TechDraw_RadiusDimension.md b/wiki/translations/de/TechDraw_RadiusDimension.md index 5d87815d3a..5fda16325a 100644 --- a/wiki/translations/de/TechDraw_RadiusDimension.md +++ b/wiki/translations/de/TechDraw_RadiusDimension.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Durchmesserbemaßung](TechDraw_Dimension_Diameter/de.md) --- +# TechDraw RadiusDimension/de + @@ -98,4 +100,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RadiusDimension/de diff --git a/wiki/translations/de/TechDraw_Redraw.md b/wiki/translations/de/TechDraw_Redraw.md index c114ab3449..2e23763d47 100644 --- a/wiki/translations/de/TechDraw_Redraw.md +++ b/wiki/translations/de/TechDraw_Redraw.md @@ -1,2 +1,5 @@ # TechDraw Redraw/de 1. REDIRECT [TechDraw\_RedrawPage/de](TechDraw_RedrawPage/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Redraw/de diff --git a/wiki/translations/de/TechDraw_RedrawPage.md b/wiki/translations/de/TechDraw_RedrawPage.md index 76842e282a..26d6a62e27 100644 --- a/wiki/translations/de/TechDraw_RedrawPage.md +++ b/wiki/translations/de/TechDraw_RedrawPage.md @@ -7,6 +7,8 @@ Version:0.19 --- +# TechDraw RedrawPage/de + ## Beschreibung Das Werkzeug »Zeichnung aktualisieren« erzwingt eine Zeichnungsaktualisierung trotz (ggf.) gegenteiliger Einstellungen von KeepUpdated (Zeichnungs-Eigenschaft), Änderungen an 3D-Bauteilen (Parameter) oder führt eine reine Zeichnungsüberschreibung (Parameter) aus. @@ -40,4 +42,7 @@ Der Neuzeichnen Befehl ist nicht direkt in Skripten verfügbar. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RedrawPage/de diff --git a/wiki/translations/de/TechDraw_RichTextAnnotation.md b/wiki/translations/de/TechDraw_RichTextAnnotation.md index 405b575373..c5f451c3f7 100644 --- a/wiki/translations/de/TechDraw_RichTextAnnotation.md +++ b/wiki/translations/de/TechDraw_RichTextAnnotation.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Vorlagen](TechDraw_Templates/de.md), [Entwurf SVG](Draft_SVG/de.md), [TechDraw Führungslinie](TechDraw_LeaderLine/de.md) --- +# TechDraw RichTextAnnotation/de + ## Beschreibung Das FormatierterTextBlock Werkzeug fügt einen formatierten Anmerkungsblock zu einer [Führunglinie](TechDraw_LeaderLine/de.md) oder einer Ansicht hinzu. @@ -61,4 +63,7 @@ blockObj.AnnoText = myHTMLText {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RichTextAnnotation/de diff --git a/wiki/translations/de/TechDraw_Roadmap.md b/wiki/translations/de/TechDraw_Roadmap.md index f834fd76ae..bf4d0fba81 100644 --- a/wiki/translations/de/TechDraw_Roadmap.md +++ b/wiki/translations/de/TechDraw_Roadmap.md @@ -1,5 +1,4 @@ -# TechDraw Roadmap/de - +# TechDraw Roadmap/de Die [TechDraw Arbeitsbereich](TechDraw_Workbench/de.md) wurde offiziell als Teil von FreeCAD in der Version 0.17 eingeführt. Sie ist relativ neu und hat noch nicht die Jahre der Entwicklung hinter sich, von denen einige andere Arbeitsbereich profitiert haben. Dennoch erfüllt TechDraw nun sein ursprüngliches Konstruktionsziel und kann nun \"grundlegende technische Zeichnungen auf der Grundlage des 3D Modells erstellen\". @@ -81,3 +80,6 @@ Siehe Bugtracker für aktuelle Informationen. }} [Category:User Documentation](Category:User_Documentation.md) [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Roadmap/de diff --git a/wiki/translations/de/TechDraw_SaveDXF.md b/wiki/translations/de/TechDraw_SaveDXF.md index a30e8f5e94..1df665cc76 100644 --- a/wiki/translations/de/TechDraw_SaveDXF.md +++ b/wiki/translations/de/TechDraw_SaveDXF.md @@ -1,2 +1,5 @@ # TechDraw SaveDXF/de 1. REDIRECT [TechDraw\_ExportPageDXF/de](TechDraw_ExportPageDXF/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SaveDXF/de diff --git a/wiki/translations/de/TechDraw_SaveSVG.md b/wiki/translations/de/TechDraw_SaveSVG.md index a991d55b55..1d849610c0 100644 --- a/wiki/translations/de/TechDraw_SaveSVG.md +++ b/wiki/translations/de/TechDraw_SaveSVG.md @@ -1,2 +1,5 @@ # TechDraw SaveSVG/de 1. REDIRECT [TechDraw\_ExportPageSVG/de](TechDraw_ExportPageSVG/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SaveSVG/de diff --git a/wiki/translations/de/TechDraw_SectionView.md b/wiki/translations/de/TechDraw_SectionView.md index 0c781aa9b4..9b2a6e0478 100644 --- a/wiki/translations/de/TechDraw_SectionView.md +++ b/wiki/translations/de/TechDraw_SectionView.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Ansicht einfügen](TechDraw_View/de.md),[TechDraw Projektionsgruppe einfügen](TechDraw_ProjectionGroup/de.md) --- +# TechDraw SectionView/de + ## Beschreibung Das Abschnitt Werkzeug erstellt eine Querschnittdarstellung aus einer bereits bestehenden Teilansicht. @@ -116,4 +118,7 @@ section.SectionOrigin = (5.0,5.0,5.0) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SectionView/de diff --git a/wiki/translations/de/TechDraw_ShowAll.md b/wiki/translations/de/TechDraw_ShowAll.md index b19fc08235..956e7de814 100644 --- a/wiki/translations/de/TechDraw_ShowAll.md +++ b/wiki/translations/de/TechDraw_ShowAll.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Ändert Darstellung von Linie(n)](TechDraw_DecorateLine/de.md) --- +# TechDraw ShowAll/de + ## Beschreibung Das ShowAll Werkzeug zeigt oder verbirgt unsichtbare Linien in einer Ansicht. Beachte, dass \"unsichtbar\" ein kosmetischer Zustand ist, nicht zu verwechseln mit ausgeblendeten Linien, die geometrische Konstrukte sind. @@ -43,4 +45,7 @@ Die Wirkung des AllesAnzeigen Werkzeugs kann in [Makros](Macros/de.md) oder der {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ShowAll/de diff --git a/wiki/translations/de/TechDraw_Spreadsheet.md b/wiki/translations/de/TechDraw_Spreadsheet.md index fdd43d6e83..30bdde9bac 100644 --- a/wiki/translations/de/TechDraw_Spreadsheet.md +++ b/wiki/translations/de/TechDraw_Spreadsheet.md @@ -1,2 +1,5 @@ # TechDraw Spreadsheet/de 1. REDIRECT [TechDraw\_SpreadsheetView/de](TechDraw_SpreadsheetView/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Spreadsheet/de diff --git a/wiki/translations/de/TechDraw_SpreadsheetView.md b/wiki/translations/de/TechDraw_SpreadsheetView.md index a71b23c3b5..fc49537043 100644 --- a/wiki/translations/de/TechDraw_SpreadsheetView.md +++ b/wiki/translations/de/TechDraw_SpreadsheetView.md @@ -6,6 +6,8 @@ Workbenches:[TechDraw](TechDraw_Workbench/de.md), [Kalkulationstabelle Arbeitsbereich](Spreadsheet_Workbench/de.md) --- +# TechDraw SpreadsheetView/de + ## Beschreibung Dieses Werkzeug ermöglicht dir eine [Kalkulationstabellen](Spreadsheet_Workbench/de.md) Ansicht auf einer gewählten [Seite](TechDraw_Workbench/de.md) zu platzieren. @@ -39,4 +41,7 @@ Dieses Werkzeug ermöglicht dir eine [Kalkulationstabellen](Spreadsheet_Workbenc {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SpreadsheetView/de diff --git a/wiki/translations/de/TechDraw_Symbol.md b/wiki/translations/de/TechDraw_Symbol.md index 8435fa07ab..3ae9fed3ff 100644 --- a/wiki/translations/de/TechDraw_Symbol.md +++ b/wiki/translations/de/TechDraw_Symbol.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Vorlagen](TechDraw_Templates/de.md), [Entwurf SVG](Draft_SVG/de.md) --- +# TechDraw Symbol/de + ## Beschreibung Das Symbolwerkzeug fügt eine [SVG](SVG/de.md)-Datei als Ansicht in die Zeichnungsseite ein. Dieses Symbol kann alles sein, was als Notiz zur Zeichnung beiträgt und nicht weiter verändert werden muss. @@ -52,4 +54,7 @@ rc = page.addView(sym) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Symbol/de diff --git a/wiki/translations/de/TechDraw_TemplateHowTo.md b/wiki/translations/de/TechDraw_TemplateHowTo.md index 3e68fb58a2..9d508d0a74 100644 --- a/wiki/translations/de/TechDraw_TemplateHowTo.md +++ b/wiki/translations/de/TechDraw_TemplateHowTo.md @@ -1,7 +1,4 @@ # TechDraw TemplateHowTo/de - - - {{TutorialInfo/de |Topic=Entwerfen |Level=Zwischenstufe @@ -120,4 +117,7 @@ Wenn du die grünen Kästchen für deine bearbeitbaren Texte nicht siehst, ist m {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw TemplateHowTo/de diff --git a/wiki/translations/de/TechDraw_Templates.md b/wiki/translations/de/TechDraw_Templates.md index 4435fe5cc2..b3ed5acdaa 100644 --- a/wiki/translations/de/TechDraw_Templates.md +++ b/wiki/translations/de/TechDraw_Templates.md @@ -1,10 +1,4 @@ # TechDraw Templates/de - - - - - - {{TOCright}} ## Überblick @@ -78,4 +72,7 @@ Siehe auch [So wird eine benutzerdefinierte TechDraw Vorlage erstellt](TechDraw_ {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Templates/de diff --git a/wiki/translations/de/TechDraw_TextLeader.md b/wiki/translations/de/TechDraw_TextLeader.md index a8a6019771..e51618faa3 100644 --- a/wiki/translations/de/TechDraw_TextLeader.md +++ b/wiki/translations/de/TechDraw_TextLeader.md @@ -1,2 +1,5 @@ # TechDraw TextLeader/de 1. REDIRECT [TechDraw\_RichTextAnnotation/de](TechDraw_RichTextAnnotation/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw TextLeader/de diff --git a/wiki/translations/de/TechDraw_Toggle.md b/wiki/translations/de/TechDraw_Toggle.md index 98b491c216..f6e6d9bc48 100644 --- a/wiki/translations/de/TechDraw_Toggle.md +++ b/wiki/translations/de/TechDraw_Toggle.md @@ -1,2 +1,5 @@ # TechDraw Toggle/de 1. REDIRECT [TechDraw\_ToggleFrame/de](TechDraw_ToggleFrame/de.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Toggle/de diff --git a/wiki/translations/de/TechDraw_ToggleFrame.md b/wiki/translations/de/TechDraw_ToggleFrame.md index dc8b0772af..8748267f25 100644 --- a/wiki/translations/de/TechDraw_ToggleFrame.md +++ b/wiki/translations/de/TechDraw_ToggleFrame.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Ansicht](TechDraw_View/de.md), [TechDraw Projektionsgruppe](TechDraw_ProjectionGroup/de.md) --- +# TechDraw ToggleFrame/de + ## Beschreibung Das Werkzeug schaltet die Umrandungen in den Ansichten und Anmerkungen, sowie die Anzeige der Fangpunkte usw. ein oder aus. @@ -44,4 +46,7 @@ Das Umschaltwerkzeug verfügt derzeit nicht über eine Programmierschnittstelle. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ToggleFrame/de diff --git a/wiki/translations/de/TechDraw_VerticalDimension.md b/wiki/translations/de/TechDraw_VerticalDimension.md index d4c74bd60c..0a68660842 100644 --- a/wiki/translations/de/TechDraw_VerticalDimension.md +++ b/wiki/translations/de/TechDraw_VerticalDimension.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Längenbemaßung](TechDraw_Dimension_Length/de.md), [TechDraw Horizontale Bemaßung](TechDraw_Dimension_Horizontal/de.md) --- +# TechDraw VerticalDimension/de + @@ -100,4 +102,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw VerticalDimension/de diff --git a/wiki/translations/de/TechDraw_VerticalExtentDimension.md b/wiki/translations/de/TechDraw_VerticalExtentDimension.md index 7c07097fbc..46d4a86025 100644 --- a/wiki/translations/de/TechDraw_VerticalExtentDimension.md +++ b/wiki/translations/de/TechDraw_VerticalExtentDimension.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Bemaßung Länge](TechDraw_Dimension_Length/de.md), [TechDraw Bemaßung Horizontale Ausdehnung](TechDraw_Dimension_Horizontal_Extent/de.md) --- +# TechDraw VerticalExtentDimension/de + @@ -94,4 +96,7 @@ rc = page.addView(hExtentDim) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw VerticalExtentDimension/de diff --git a/wiki/translations/de/TechDraw_View.md b/wiki/translations/de/TechDraw_View.md index b6e875ffe5..4cec482b78 100644 --- a/wiki/translations/de/TechDraw_View.md +++ b/wiki/translations/de/TechDraw_View.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Projektionsgruppe einfügen](TechDraw_ProjectionGroup/de.md), [TechDraw Abschnittssansicht einfügen](TechDraw_SectionView/de.md) --- +# TechDraw View/de + ## Beschreibung Das Werkzeug Ansicht fügt eine Darstellung eines oder mehrerer Objekte einer Zeichnungsseite hinzu. Dies ist der Grundbaustein des TechDraw-Arbeitsbereichs. Die meisten anderen Ansichten sind in irgendeiner Weise von NeueAnsicht abgeleitet. @@ -131,4 +133,7 @@ FreeCAD.ActiveDocument.View.Direction = (0.0,0.0,1.0) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw View/de diff --git a/wiki/translations/de/TechDraw_WeldSymbol.md b/wiki/translations/de/TechDraw_WeldSymbol.md index 825d3c2935..2bb0c208e1 100644 --- a/wiki/translations/de/TechDraw_WeldSymbol.md +++ b/wiki/translations/de/TechDraw_WeldSymbol.md @@ -9,6 +9,8 @@ SeeAlso:[TechDraw Führungslinie](TechDraw_LeaderLine/de.md) --- +# TechDraw WeldSymbol/de + ## Beschreibung Das SchweißSymbol Werkzeug fügt Schweißspezifikationen einer bestehenden Führungslinie hinzu. @@ -126,4 +128,7 @@ App.activeDocument().DrawTileWeld001.CenterText = "center text" {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw WeldSymbol/de diff --git a/wiki/translations/de/TechDraw_Workbench.md b/wiki/translations/de/TechDraw_Workbench.md index d3b16cb4f0..7dbda2f2a5 100644 --- a/wiki/translations/de/TechDraw_Workbench.md +++ b/wiki/translations/de/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/de - - - - - -TechDraw Arbeitsbereich Symbol +# TechDraw Arbeitsbereich Symbol TechDraw Workbench/de ## Einführung @@ -324,3 +318,6 @@ Video Tutorien von sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/de diff --git a/wiki/translations/de/Test_Framework_Workbench.md b/wiki/translations/de/Test_Framework_Workbench.md index 5f68ce4f93..aa8ccc2872 100644 --- a/wiki/translations/de/Test_Framework_Workbench.md +++ b/wiki/translations/de/Test_Framework_Workbench.md @@ -1,2 +1,5 @@ # Test Framework Workbench/de 1. REDIRECT [Testing/de](Testing/de.md) + +--- +[documentation index](../README.md) > Test Framework Workbench/de diff --git a/wiki/translations/de/Testing.md b/wiki/translations/de/Testing.md index bcf59f7fe1..426ddab412 100644 --- a/wiki/translations/de/Testing.md +++ b/wiki/translations/de/Testing.md @@ -1,10 +1,4 @@ -# Testing/de - - - - - -Erprobung Arbeitsbereichssymbol +# Erprobung Arbeitsbereichssymbol Testing/de {{TOCright}} @@ -163,3 +157,6 @@ r.run(suite) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Test Framework](Category:Test_Framework.md) [Category:Workbenches](Category:Workbenches.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Testing/de diff --git a/wiki/translations/de/The_FreeCAD_source_code.md b/wiki/translations/de/The_FreeCAD_source_code.md index 97fb96f96c..1efb2d963a 100644 --- a/wiki/translations/de/The_FreeCAD_source_code.md +++ b/wiki/translations/de/The_FreeCAD_source_code.md @@ -1,5 +1,5 @@ # The FreeCAD source code/de - Der [FreeCAD Quellcode](https://github.com/FreeCAD/FreeCAD) wird mit git verwaltet, und ist öffentlich, offen und unter der [LGPL Lizenz](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License) verfügbar. Er kann von jedem kopiert, heruntergeladen, gelesen, analysiert, weiterverbreitet und modifiziert werden. Wenn du planst, Änderungen vorzunehmen, die du im offiziellen Code selbst sehen möchtest, denke daran, dass deine Änderungen von den FreeCAD Entwicklern genehmigt werden müssen. Daher ist es ratsam, deine Absichten und Ideen zuerst im [Forum](http://forum.freecadweb.org) zu diskutieren, um das Risiko zu vermeiden, dass deine Änderungen aus einem nicht vorhersehbaren Grund abgelehnt werden. +Der [FreeCAD Quellcode](https://github.com/FreeCAD/FreeCAD) wird mit git verwaltet, und ist öffentlich, offen und unter der [LGPL Lizenz](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License) verfügbar. Er kann von jedem kopiert, heruntergeladen, gelesen, analysiert, weiterverbreitet und modifiziert werden. Wenn du planst, Änderungen vorzunehmen, die du im offiziellen Code selbst sehen möchtest, denke daran, dass deine Änderungen von den FreeCAD Entwicklern genehmigt werden müssen. Daher ist es ratsam, deine Absichten und Ideen zuerst im [Forum](http://forum.freecadweb.org) zu diskutieren, um das Risiko zu vermeiden, dass deine Änderungen aus einem nicht vorhersehbaren Grund abgelehnt werden. Im Folgenden findest Du einige Hinweise und nützliche Informationen, um Dich auf den richtigen Weg zu bringen, wenn Du daran interessiert bist, den FreeCAD Code zu erforschen. @@ -35,3 +35,6 @@ Abk. GUI von englisch graphical user interface Diese Trennung spiegelt sich übe - [FCStd](File_Format_FCStd.md) - Das FreeCAD-Dateiformat [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > The FreeCAD source code/de diff --git a/wiki/translations/de/Third_Party_Libraries.md b/wiki/translations/de/Third_Party_Libraries.md index d69ea78437..50c4a3d5fc 100644 --- a/wiki/translations/de/Third_Party_Libraries.md +++ b/wiki/translations/de/Third_Party_Libraries.md @@ -1,10 +1,4 @@ # Third Party Libraries/de - - - - - - {{TOCright}} ## Übersicht @@ -280,3 +274,6 @@ Siehe die Ankündigung im Forum: [Neue Libpacks für Windows mit Qt5.12, OCC7.3 [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Libraries/de diff --git a/wiki/translations/de/Third_Party_Tools.md b/wiki/translations/de/Third_Party_Tools.md index 7035074a17..6480410b36 100644 --- a/wiki/translations/de/Third_Party_Tools.md +++ b/wiki/translations/de/Third_Party_Tools.md @@ -1,10 +1,4 @@ # Third Party Tools/de - - - - - - {{TOCright}} ## Werkzeug-Seite @@ -77,3 +71,6 @@ ZU TUN [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Tools/de diff --git a/wiki/translations/de/ThreadProfile_Workbench.md b/wiki/translations/de/ThreadProfile_Workbench.md index 64ea268893..b6aacf90eb 100644 --- a/wiki/translations/de/ThreadProfile_Workbench.md +++ b/wiki/translations/de/ThreadProfile_Workbench.md @@ -1,8 +1,9 @@ # ThreadProfile Workbench/de - - GewindeProfil Arbeitsbereich ist ein Arbeitsbereich zur Erstellung eines Gewindeprofils, das entlang einer Helix ausgetragen werden kann, um ein Gewinde zu erzeugen. Dieser Arbeitsbereich befindet sich derzeit in der Entwicklung. Die vollständige Dokumentation ist auf Github zu finden: [GewindeProfil Arbeitsbereich auf Github](https://github.com/mwganson/ThreadProfile) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > ThreadProfile Workbench/de diff --git a/wiki/translations/de/Thread_for_Screw_Tutorial.md b/wiki/translations/de/Thread_for_Screw_Tutorial.md index f33fc0157f..267e7230aa 100644 --- a/wiki/translations/de/Thread_for_Screw_Tutorial.md +++ b/wiki/translations/de/Thread_for_Screw_Tutorial.md @@ -1,7 +1,4 @@ # Thread for Screw Tutorial/de - - - {{TutorialInfo/de |Topic= Produktgestaltung |Level= Fortgeschrittene @@ -248,4 +245,7 @@ ISO- und andere Gewinde haben reduzierte, d.h. flache, innere und äußere Kante ![761PX](images/Threadform.PNG ) -Diese Methode erzeugt zuverlässige Festkörper, die korrekt boolesch sind. Obwohl sie keine \"parametrischen\" Schraubengewinde in Standardgrößen im Sinne eines einfachen Zugriffs auf die Form durch die Größe des Befestigungselements erzeugt, ist es eine einfache Möglichkeit, eine genaue Bibliothek zur Wiederverwendung zu erstellen, und Modelle von Spezialformen wie ACME oder archimedische Schrauben sind auch als Einzelstücke unkompliziert. {{Tutorials navi}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +Diese Methode erzeugt zuverlässige Festkörper, die korrekt boolesch sind. Obwohl sie keine \"parametrischen\" Schraubengewinde in Standardgrößen im Sinne eines einfachen Zugriffs auf die Form durch die Größe des Befestigungselements erzeugt, ist es eine einfache Möglichkeit, eine genaue Bibliothek zur Wiederverwendung zu erstellen, und Modelle von Spezialformen wie ACME oder archimedische Schrauben sind auch als Einzelstücke unkompliziert. {{Tutorials navi}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Thread for Screw Tutorial/de diff --git a/wiki/translations/de/Tolerancing.md b/wiki/translations/de/Tolerancing.md index b42e73d923..aba8c9ffc7 100644 --- a/wiki/translations/de/Tolerancing.md +++ b/wiki/translations/de/Tolerancing.md @@ -1,7 +1,4 @@ # Tolerancing/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -83,3 +80,6 @@ Es gibt zwei Ansätze zur Angabe von Produkt- und Herstellungsinformationen (PMI - [Straight To The Point Engineering (Video tutorials)](https://www.youtube.com/c/StraightToThePointEngineering/videos?view=0&sort=da&flow=grid) [Category:Roadmap](Category:Roadmap.md) [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Tolerancing/de diff --git a/wiki/translations/de/Toothbrush_Head_Stand.md b/wiki/translations/de/Toothbrush_Head_Stand.md index e2b9f69e0b..a5b5964f71 100644 --- a/wiki/translations/de/Toothbrush_Head_Stand.md +++ b/wiki/translations/de/Toothbrush_Head_Stand.md @@ -1,5 +1,5 @@ # Toothbrush Head Stand/de - {{TutorialInfo/de|Topic=Modellierung|Level=Anfänger|Author=[EmmanuelG](User:EmmanuelG.md)|Time=1 Stunde|FCVersion=0.16 oder höher|Files=[https://www.thingiverse.com/thing:2403310 Thingiverse 2403310]}} +{{TutorialInfo/de|Topic=Modellierung|Level=Anfänger|Author=[EmmanuelG](User:EmmanuelG.md)|Time=1 Stunde|FCVersion=0.16 oder höher|Files=[https://www.thingiverse.com/thing:2403310 Thingiverse 2403310]}} ## Ein alltägliches Problem @@ -421,4 +421,7 @@ Perfekt! {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Toothbrush Head Stand/de diff --git a/wiki/translations/de/TopoShape_API.md b/wiki/translations/de/TopoShape_API.md index d66177b20a..2542d04b94 100644 --- a/wiki/translations/de/TopoShape_API.md +++ b/wiki/translations/de/TopoShape_API.md @@ -1,5 +1,5 @@ # TopoShape API/de - **(November 2018) Diese Information kann unvollständig und veraltet sein. Für die letzte API siehe die (engl.) [https://www.freecadweb.org/api autogenerierte API-Dokumentation].** +**(November 2018) Diese Information kann unvollständig und veraltet sein. Für die letzte API siehe die (engl.) [https://www.freecadweb.org/api autogenerierte API-Dokumentation].** The TopoShape is the mother object of the Part Module. All shape types (wire, face, solid, etc\...) of the Part module are TopoShapes, and share the following attributes and methods. Example: ```python @@ -229,3 +229,6 @@ Some attributes and methods apply only to certain TopoShapes. These items apply [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > TopoShape API/de diff --git a/wiki/translations/de/Topological_Naming_Project.md b/wiki/translations/de/Topological_Naming_Project.md index 0ce1b66138..66a777a590 100644 --- a/wiki/translations/de/Topological_Naming_Project.md +++ b/wiki/translations/de/Topological_Naming_Project.md @@ -1,6 +1,4 @@ # Topological Naming Project/de - - Diese Seite ist der Beschreibung der Idee des Google Summer of Code-Projekts bezüglich der topologischen Benennung gewidmet. Für das Thema an sich siehe [Benennungsprojekt](Naming_project/de.md). Die verlinkte Wiki-Seite kann auch als Ausgangspunkt dienen, um in das Benennungsproblem einzusteigen. ## Überblick @@ -42,3 +40,6 @@ Hart ### Zusätzliche Informationen [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > Topological Naming Project/de diff --git a/wiki/translations/de/Topological_data_scripting.md b/wiki/translations/de/Topological_data_scripting.md index 86e221085e..170e5e7047 100644 --- a/wiki/translations/de/Topological_data_scripting.md +++ b/wiki/translations/de/Topological_data_scripting.md @@ -1,7 +1,4 @@ # Topological data scripting/de - - - {{TOCright}} ## Einführung @@ -940,3 +937,6 @@ s.read("test.stp") ```{{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting/de diff --git a/wiki/translations/de/Topological_naming_problem.md b/wiki/translations/de/Topological_naming_problem.md index b3c4244074..70274e56eb 100644 --- a/wiki/translations/de/Topological_naming_problem.md +++ b/wiki/translations/de/Topological_naming_problem.md @@ -1,6 +1,4 @@ # Topological naming problem/de - - ## Einleitung @@ -135,3 +133,6 @@ Bezugsobjekte, [Punkte](PartDesign_Point/de.md), [Linien](PartDesign_Line/de.md) {{TechDraw Tools navi}} {{PartDesign Tools navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Topological naming problem/de diff --git a/wiki/translations/de/Tracker.md b/wiki/translations/de/Tracker.md index 247f96837d..160925b30d 100644 --- a/wiki/translations/de/Tracker.md +++ b/wiki/translations/de/Tracker.md @@ -1,10 +1,4 @@ # Tracker/de - - - - - - {{TOCright}} ![](images/Mantis_logo_262x90.png ) @@ -187,3 +181,6 @@ Für die Neugierigen hier ist die regex, die MantisBT für diese Operation verwe [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Tracker/de diff --git a/wiki/translations/de/Transient_FEM_analysis.md b/wiki/translations/de/Transient_FEM_analysis.md index a4ec074d75..f06d5d441e 100644 --- a/wiki/translations/de/Transient_FEM_analysis.md +++ b/wiki/translations/de/Transient_FEM_analysis.md @@ -1,5 +1,5 @@ # Transient FEM analysis/de - } +} {{TutorialInfo/de @@ -95,4 +95,7 @@ setup() {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Transient FEM analysis/de diff --git a/wiki/translations/de/Translating_an_external_workbench.md b/wiki/translations/de/Translating_an_external_workbench.md index d329c91f81..c102185956 100644 --- a/wiki/translations/de/Translating_an_external_workbench.md +++ b/wiki/translations/de/Translating_an_external_workbench.md @@ -1,6 +1,4 @@ # Translating an external workbench/de - - In den folgenden Hinweisen sollte `"context"` der Name Deiner Erweiterung oder Deines Arbeitsbereichs sein, z.B. `"MySuperAddon"` oder `"DraftPlus"`, oder was auch immer. Dieser Kontext macht es so, dass die gesamte Übersetzung deines Codes unter dem gleichen Namen zusammengefasst wird, um von den Übersetzern leichter identifiziert werden zu können. Das heißt, sie wissen genau, zu welcher Erweiterung oder welchem Arbeitsbereich eine bestimmte Zeichenkette gehört. **Hinweis**: Hier ist ein Multifunktionsskript, das den kompletten unten beschriebenen Ablauf automatisiert (es wird angeraten, dass du trotzdem die Beschreibung liest, um zu wissen, was das Skrikt sollte): @@ -218,3 +216,6 @@ Yorik maintains a convenience script for the BIM workbench, that can gather, upl [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Translating an external workbench/de diff --git a/wiki/translations/de/Transportation_Workbench.md b/wiki/translations/de/Transportation_Workbench.md index cadaa064e2..aba44f5759 100644 --- a/wiki/translations/de/Transportation_Workbench.md +++ b/wiki/translations/de/Transportation_Workbench.md @@ -1,6 +1,4 @@ # Transportation Workbench/de - - ## Beschreibung Eine Untergruppe der [Bauingenieurwesen Arbeitsbereich](Civil_Engineering_Workbench/de.md) @@ -19,3 +17,6 @@ Eine Untergruppe der [Bauingenieurwesen Arbeitsbereich](Civil_Engineering_Workbe [Category:Documentation](Category:Documentation.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Transportation Workbench/de diff --git a/wiki/translations/de/Tree_view.md b/wiki/translations/de/Tree_view.md index caf6b0912e..6d3abc6fb1 100644 --- a/wiki/translations/de/Tree_view.md +++ b/wiki/translations/de/Tree_view.md @@ -1,5 +1,5 @@ # Tree view/de - {{TOCright}} +{{TOCright}} ## Einführung @@ -147,4 +147,7 @@ Dies zeigt an, dass das Objekt einen Fehler hat, der behoben werden muss. Nach d {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Tree view/de diff --git a/wiki/translations/de/Tutorial_FreeCAD_POV_ray.md b/wiki/translations/de/Tutorial_FreeCAD_POV_ray.md index 762f22b652..3cc0fb228c 100644 --- a/wiki/translations/de/Tutorial_FreeCAD_POV_ray.md +++ b/wiki/translations/de/Tutorial_FreeCAD_POV_ray.md @@ -1,7 +1,4 @@ # Tutorial FreeCAD POV ray/de - - - **Der [Strahlverfolgungsarbeitsbereich](Ray_Tracing_Workbench/de.md) wird abgelöst durch den neuen [https://github.com/FreeCAD/FreeCAD-render Render-Arbeitsbereich], der als Ersatz geplant ist. Dies darf nicht verwechselt werden mit dem gestoppten und veralteten [Render-Projekt](Render_project/de.md). Der Render-Arbeitsbereich kann mit dem [Erweiterungsverwalter](AddonManager/de.md) installiert werden. Diese Information wird bereitgestellt, weil FreeCAD als Standardeinstellung (mit Stand 0.19-24276) weiterhin mit dem Raytracing-Arbeitsbereich ausgeliefert wird und der neue Arbeitsbereich generell in der gleichen Weise arbeiten sollte** @@ -863,4 +860,7 @@ Dem Benutzer wird empfohlen, die POV-Ray Dokumentation und weitere Tutorials ode {{Tutorials navi -}} {{Raytracing Tools navi}} +}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > Tutorial FreeCAD POV ray/de diff --git a/wiki/translations/de/Tutorial_Render_with_Blender.md b/wiki/translations/de/Tutorial_Render_with_Blender.md index 3c6cbd5efa..8196950a80 100644 --- a/wiki/translations/de/Tutorial_Render_with_Blender.md +++ b/wiki/translations/de/Tutorial_Render_with_Blender.md @@ -1,7 +1,4 @@ # Tutorial Render with Blender/de - - - {{TutorialInfo/de |Topic=Rendering |Level=Intermediate @@ -337,4 +334,7 @@ On the other hand, Cycles is a true raytracing renderer which means it is more a Both renderers can be used to leverage the advantages of each. In many cases the scene can be quickly prepared and tested with EEVEE to obtain preliminary renderings; then the same scene can be used with minor changes with Cycles in order to produce a higher quality, final rendering. In particular, when a scene that was setup with EEVEE will be used with Cycles, the lights may need to be adjusted in value and position as both renderers treat light in different ways. -Obtaining good results is highly dependent on the rendering options, the materials, and the lighting. The `Principled BSDF` material shader is a generic solution that works well for many cases, however, to produce truly photorealistic results, the use of texture maps and normal maps, along with careful lighting of the scene is still very important. {{Tutorials navi}} {{Raytracing Tools navi}} +Obtaining good results is highly dependent on the rendering options, the materials, and the lighting. The `Principled BSDF` material shader is a generic solution that works well for many cases, however, to produce truly photorealistic results, the use of texture maps and normal maps, along with careful lighting of the scene is still very important. {{Tutorials navi}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > Tutorial Render with Blender/de diff --git a/wiki/translations/de/Tutorial_custom_placing_of_windows_and_doors.md b/wiki/translations/de/Tutorial_custom_placing_of_windows_and_doors.md index 9fa0a4b11d..394e7a4e4b 100644 --- a/wiki/translations/de/Tutorial_custom_placing_of_windows_and_doors.md +++ b/wiki/translations/de/Tutorial_custom_placing_of_windows_and_doors.md @@ -1,5 +1,5 @@ # Tutorial custom placing of windows and doors/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic=Architektur |Level=fortgeschrittener Anfänger |Time=60 Minuten @@ -328,4 +328,7 @@ abs(N) = 1 = sqrt(sin^2(angle) + cos^2(angle) + z^2) {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Tutorial custom placing of windows and doors/de diff --git a/wiki/translations/de/Tutorial_for_open_windows.md b/wiki/translations/de/Tutorial_for_open_windows.md index 6f4d5a82d9..362dd0a587 100644 --- a/wiki/translations/de/Tutorial_for_open_windows.md +++ b/wiki/translations/de/Tutorial_for_open_windows.md @@ -1,7 +1,4 @@ # Tutorial for open windows/de - - - {{TutorialInfo/de |Topic=Architektur |Level=Anfänger @@ -246,4 +243,7 @@ Für zukünftige FreeCAD-Versionen ist eine engere Interaktion zwischen beiden A {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Tutorial for open windows/de diff --git a/wiki/translations/de/Tutorials.md b/wiki/translations/de/Tutorials.md index f177a57788..dd8fbd6e4e 100644 --- a/wiki/translations/de/Tutorials.md +++ b/wiki/translations/de/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/de - - - - - - {{TOCright}} Diese Seite präsentiert eine Auswahl von qualitativ hochwertigen schriftlichen Tutorien. Eine vollständige, unsortierte Liste der Tutorien findest du in [:Category:Tutorials](:Category:Tutorials.md), eine vollständige und sortierbare Liste findest du unter [Tabelle unten](Tutorials/de#Tutorien_-_Umfassende_Liste.md). @@ -321,3 +315,6 @@ Hier sind alle Tutorien aufgelistet, die nicht im Handbuch enthalten sind **unab [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials]], eine vollständige und sortierbare Liste findest du unter ](Category:Tutorials]], eine vollständige und sortierbare Liste findest du unter .md) > Tutorials/de diff --git a/wiki/translations/de/UTF_Project.md b/wiki/translations/de/UTF_Project.md index 8cdf435cac..930be2b1d2 100644 --- a/wiki/translations/de/UTF_Project.md +++ b/wiki/translations/de/UTF_Project.md @@ -1,7 +1,4 @@ # UTF Project/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -38,3 +35,6 @@ Ungeachtet dessen, dass Coin3D nun auf eine offenere Entwicklungsplattform umzie [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > UTF Project/de diff --git a/wiki/translations/de/Ubuntu_Snap.md b/wiki/translations/de/Ubuntu_Snap.md index 16b26cec56..472faae9b9 100644 --- a/wiki/translations/de/Ubuntu_Snap.md +++ b/wiki/translations/de/Ubuntu_Snap.md @@ -1,6 +1,4 @@ # Ubuntu Snap/de - - ## Einführung Ein [Ubuntu Snap](Ubuntu_Snap/de.md) Paket oder einfach nur [Snap](Ubuntu_Snap/de.md) ist ein Distributionsformat, das dem [AppImage](AppImage/de.md) insofern ähnelt, als es als \"universell installierbares Paket\" für die Bereitstellung von Software in Linux Systemen gedacht ist. Snaps wurden von Ubuntu eingeführt, aber sie sollen in allen Linux Distributionen laufen, solange der Snap Daemon, oder `snapd`, im Zielsystem verfügbar ist. @@ -37,5 +35,5 @@ Weitere Informationen über die aktuellen Bemühungen, mit Snaps umzugehen. - [0.19 Snap Vorschau benötigt \"Tester\"](https://forum.freecadweb.org/viewtopic.php?f=4&t=46044), ältere Snap von **vejmarie** - [Diskussion: Zustand des Snap (Snap Pakete)](https://forum.freecadweb.org/viewtopic.php?f=42&t=46853), neuere Version des Snap von **ppd** - - +--- +[documentation index](../README.md) > Ubuntu Snap/de diff --git a/wiki/translations/de/Units.md b/wiki/translations/de/Units.md index 68539b5085..1168bcc0e7 100644 --- a/wiki/translations/de/Units.md +++ b/wiki/translations/de/Units.md @@ -1,6 +1,4 @@ # Units/de - - Einige Artikel zu Einheiten: - [Metrologie](https://de.wikipedia.org/wiki/Metrologie) (Meßwesen) @@ -302,4 +300,7 @@ So wird es sehr einfach, mit wenigen Zeilen Python eine beliebige Anzahl von Obj {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Units/de diff --git a/wiki/translations/de/Units_project.md b/wiki/translations/de/Units_project.md index 5c68152426..0787bd2916 100644 --- a/wiki/translations/de/Units_project.md +++ b/wiki/translations/de/Units_project.md @@ -1,7 +1,4 @@ # Units project/de - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -53,3 +50,6 @@ Eventually a property editor for the PropertyUntit. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Units project/de diff --git a/wiki/translations/de/User_hub.md b/wiki/translations/de/User_hub.md index dbac3a2a71..38cede33eb 100644 --- a/wiki/translations/de/User_hub.md +++ b/wiki/translations/de/User_hub.md @@ -1,5 +1,4 @@ -# User hub/de - +# User hub/de ------------------------------------------------------------------------ @@ -123,3 +122,6 @@ Dies ist die offizielle FreeCAD Online Hilfe. Bitte beachte, dass das gesamte On [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/de diff --git a/wiki/translations/de/VRML_Preparation_for_Robot_Simulation.md b/wiki/translations/de/VRML_Preparation_for_Robot_Simulation.md index 4b33fcdd3d..e36cc35cf6 100644 --- a/wiki/translations/de/VRML_Preparation_for_Robot_Simulation.md +++ b/wiki/translations/de/VRML_Preparation_for_Robot_Simulation.md @@ -1,5 +1,5 @@ # VRML Preparation for Robot Simulation/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic=Roboter Arbeitsbereich |Level=Mittelschwer |Time= @@ -382,3 +382,6 @@ Group { [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > VRML Preparation for Robot Simulation/de diff --git a/wiki/translations/de/Vector_API.md b/wiki/translations/de/Vector_API.md index c69385df07..a922771264 100644 --- a/wiki/translations/de/Vector_API.md +++ b/wiki/translations/de/Vector_API.md @@ -1,5 +1,5 @@ # Vector API/de - **(Oktober 2019) Bearbeite diese Seiten nicht. Die Informationen sind unvollständig und veraltet. Die neueste API findest Du in der [https://www.freecadweb.org/api autogenerierten API-Dokumentation] oder generiere die Dokumentation selbst, siehe [Quelldokumentation](Source_documentation/de.md).** +**(Oktober 2019) Bearbeite diese Seiten nicht. Die Informationen sind unvollständig und veraltet. Die neueste API findest Du in der [https://www.freecadweb.org/api autogenerierten API-Dokumentation] oder generiere die Dokumentation selbst, siehe [Quelldokumentation](Source_documentation/de.md).** Vektoren werden überall in FreeCAD benutzt. @@ -68,3 +68,6 @@ print v3.Length [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Vector API/de diff --git a/wiki/translations/de/Video_tutorials.md b/wiki/translations/de/Video_tutorials.md index 010a62b97a..6c24d12bfc 100644 --- a/wiki/translations/de/Video_tutorials.md +++ b/wiki/translations/de/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials/de - - - **Bitte beachte die im Tutorial verwendete Version von FreeCAD. Wenn ein Tutorial eine ältere Version des Programms verwendet, kann der allgemeine Modellierungsprozess noch funktionieren, aber einige Werkzeuge können sich in neueren Versionen geändert haben. Füge keine Videos hinzu, die mit Version 0.16 oder älter erstellt wurden, da diese Versionen als veraltet gelten.** Diese Seite präsentiert eine Auswahl von Video Tutorien, die von FreeCAD Anwendern und -Entwicklern erstellt wurden. Besuche das Unterforum [Tutorials und Videos](https://forum.freecadweb.org/viewforum.php?f=36) für weitere Verweise. Eine nützliche Quelle für Video Tutorien ist [YouTube](https://YouTube.com). @@ -96,3 +93,6 @@ Für weitere Informationen siehe [Videotutorien veraltet](Video_tutorials_obsole }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Video tutorials/de diff --git a/wiki/translations/de/Video_tutorials_for_architectural_design.md b/wiki/translations/de/Video_tutorials_for_architectural_design.md index cb50e9f5b6..1814b65d70 100644 --- a/wiki/translations/de/Video_tutorials_for_architectural_design.md +++ b/wiki/translations/de/Video_tutorials_for_architectural_design.md @@ -1,5 +1,5 @@ # Video tutorials for architectural design/de - **Bitte beachte die im Tutorial verwendete Version von FreeCAD. Wenn ein Tutorial eine ältere Version des Programms verwendet, kann der allgemeine Modellierungsprozess noch funktionieren, aber einige Werkzeuge können sich in neueren Versionen geändert haben. Füge keine Videos hinzu, die mit Version 0.16 oder älter erstellt wurden, da diese Versionen als veraltet gelten.** +**Bitte beachte die im Tutorial verwendete Version von FreeCAD. Wenn ein Tutorial eine ältere Version des Programms verwendet, kann der allgemeine Modellierungsprozess noch funktionieren, aber einige Werkzeuge können sich in neueren Versionen geändert haben. Füge keine Videos hinzu, die mit Version 0.16 oder älter erstellt wurden, da diese Versionen als veraltet gelten.** ## Einführung @@ -47,4 +47,7 @@ Videos, die die Modellierung von Räumen, Häusern, Bürogebäuden und ähnliche {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Video tutorials for architectural design/de diff --git a/wiki/translations/de/Video_tutorials_for_product_design.md b/wiki/translations/de/Video_tutorials_for_product_design.md index d85f93423b..35e2721881 100644 --- a/wiki/translations/de/Video_tutorials_for_product_design.md +++ b/wiki/translations/de/Video_tutorials_for_product_design.md @@ -1,5 +1,5 @@ # Video tutorials for product design/de - **Bitte beachte die im Tutorial verwendete Version von FreeCAD. Wenn ein Tutorial eine ältere Version des Programms verwendet, kann der allgemeine Modellierungsprozess noch funktionieren, aber einige Werkzeuge können sich in neueren Versionen geändert haben. Füge keine Videos hinzu, die mit Version 0.16 oder älter erstellt wurden, da diese Versionen als veraltet betrachtet werden.** +**Bitte beachte die im Tutorial verwendete Version von FreeCAD. Wenn ein Tutorial eine ältere Version des Programms verwendet, kann der allgemeine Modellierungsprozess noch funktionieren, aber einige Werkzeuge können sich in neueren Versionen geändert haben. Füge keine Videos hinzu, die mit Version 0.16 oder älter erstellt wurden, da diese Versionen als veraltet betrachtet werden.** ## Einführung @@ -78,4 +78,7 @@ Obwohl sich diese Liste auf deutsche Inhalte konzentriert, haben viele dieser Ka {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Video tutorials for product design/de diff --git a/wiki/translations/de/Video_tutorials_obsolete.md b/wiki/translations/de/Video_tutorials_obsolete.md index c306116a96..9efec34498 100644 --- a/wiki/translations/de/Video_tutorials_obsolete.md +++ b/wiki/translations/de/Video_tutorials_obsolete.md @@ -1,5 +1,5 @@ # Video tutorials obsolete/de - **In FreeCAD 0.17 hat der [PartDesign Arbeitsbereich](PartDesign_Workbench/de.md) wichtige Aktualisierungen erhalten, die die Art und Weise der Erstellung von Volumenkörpern im Vergleich zu früheren Versionen ändern. Neue Anwender sollten sich Videos für die Versionen 0.17 und höher ansehen, um das Konzept der Arbeit mit einem [PartDesign Körper](PartDesign_Body/de.md) und Bezugsobjekten zu verstehen.** **Diese Videos gelten als veraltet, da sie v0.16 oder frühere Versionen des Programms verwenden.** +**In FreeCAD 0.17 hat der [PartDesign Arbeitsbereich](PartDesign_Workbench/de.md) wichtige Aktualisierungen erhalten, die die Art und Weise der Erstellung von Volumenkörpern im Vergleich zu früheren Versionen ändern. Neue Anwender sollten sich Videos für die Versionen 0.17 und höher ansehen, um das Konzept der Arbeit mit einem [PartDesign Körper](PartDesign_Body/de.md) und Bezugsobjekten zu verstehen.** **Diese Videos gelten als veraltet, da sie v0.16 oder frühere Versionen des Programms verwenden.** ## Einführung @@ -56,4 +56,7 @@ Für aktuelle Videos zu unterschiedlichen Themen, siehe die [Video Tutorien](vid {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Video tutorials obsolete/de diff --git a/wiki/translations/de/ViewObject_API.md b/wiki/translations/de/ViewObject_API.md index 0933226d3f..5afd31cead 100644 --- a/wiki/translations/de/ViewObject_API.md +++ b/wiki/translations/de/ViewObject_API.md @@ -1,5 +1,5 @@ # ViewObject API/de - **(Oktober 2019) Bearbeite diese Seiten nicht. Die Informationen sind unvollständig und veraltet. Die neueste API findest Du in der [https://www.freecadweb.org/api autogenerierten API-Dokumentation] oder generiere die Dokumentation selbst, siehe [Quelldokumentation](Source_documentation/de.md).** +**(Oktober 2019) Bearbeite diese Seiten nicht. Die Informationen sind unvollständig und veraltet. Die neueste API findest Du in der [https://www.freecadweb.org/api autogenerierten API-Dokumentation] oder generiere die Dokumentation selbst, siehe [Quelldokumentation](Source_documentation/de.md).** Wenn die GUI aktiv ist, hat jedes Objekt im FreeCAD-Dokument ein zugeordnetes ViewObject, das sich im FreeCADGui-Dokument-Gegenstück befindet. Ein Ansicht-Objekt kann auf zwei Arten abgefragt werden. Beispiel: ```python @@ -84,3 +84,6 @@ print myViewObj.IV [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > ViewObject API/de diff --git a/wiki/translations/de/WebTools_BimServer.md b/wiki/translations/de/WebTools_BimServer.md index 2dce68d9e9..8f5b11ec54 100644 --- a/wiki/translations/de/WebTools_BimServer.md +++ b/wiki/translations/de/WebTools_BimServer.md @@ -6,6 +6,8 @@ Workbenches:[Arbeitsbereich WebWerkzeuge](WebTools_Workbench/de.md) --- +# WebTools BimServer/de + **Beginnend mit FreeCAD v0.17 wurde dieses Werkzeug aus dem Architektur Arbeitsbereich entfernt und ist nun Teil des externen [WebWerkzeuge Arbeitsbereich](WebTools_Workbench/de.md)s, den du über das Menü Werkzeuge → [Erweiterungsverwalter](Addon_manager/de.md) installieren kannst. ** @@ -49,3 +51,6 @@ Um diesen Befehl zu verwenden, müssen die folgenden Bedingungen erfüllt sein: - Wähle das **Wurzelobjekt**, das du hochladen möchtest. Es muss entweder ein [Arch Site](Arch_Site/de.md) oder ein [Arch Building](Arch_Building/de.md) sein. Nur Objekte, die zu diesem Stammobjekt gehören, werden hochgeladen. - Schreibe einen **Kommentar**, der die Beschreibung (Name) der Überarbeitung sein wird. - Drücke die Schaltfläche **Hochladen**. Es öffnet sich ein Dialogfeld, das dir erlaubt die erstellte IFC Datei an einem Ort deiner Wahl speichern zu können, bevor du sie hochlädst. Wenn du auf **Abbrechen** drückst, wird die Datei stattdessen unter einem temporären Namen im temporären Verzeichnis des Systems gespeichert. + +--- +[documentation index](../README.md) > WebTools BimServer/de diff --git a/wiki/translations/de/WebTools_Git.md b/wiki/translations/de/WebTools_Git.md index 09f10ce662..61d7c2ebb0 100644 --- a/wiki/translations/de/WebTools_Git.md +++ b/wiki/translations/de/WebTools_Git.md @@ -7,6 +7,8 @@ Version:0.17 --- +# WebTools Git/de + **Beginnend mit FreeCAD v0.17 wurde dieses Werkzeug aus dem Architektur Arbeitsbereich entfernt und ist nun Teil des externen [WebWerkzeuge Arbeitsbereich](WebTools_Workbench/de.md)s, der über das Menü Werkzeuge → [Erweiterungsverwalter](Addon_manager/de.md) installiert werden kann. ** @@ -112,3 +114,6 @@ Zur Aktivierung der Nutzung von fcinfo (nur Linux und Mac - ToDo: Windows Anweis  *.FCStd diff=fcinfo Füge die folgenden Zeilen zur .gitconfig-Datei in deinem home Verzeichnis hinzu: \[diff \"fcinfo\"\] textconv = /Pfad/zu/fcinfo Alternativ kannst du fcinfo mit Argumenten ausführen (z.B. --gui), benutze diesen Herangehensweise \[ argument-gitconfig-diff-textconv\]: \[diff \"fcinfo\"\] textconv = sh -c \'/path/to/fcinfo \--gui \"\$0\"\' + +--- +[documentation index](../README.md) > WebTools Git/de diff --git a/wiki/translations/de/WebTools_Sketchfab.md b/wiki/translations/de/WebTools_Sketchfab.md index b709b3eeea..71ab9b2581 100644 --- a/wiki/translations/de/WebTools_Sketchfab.md +++ b/wiki/translations/de/WebTools_Sketchfab.md @@ -6,6 +6,8 @@ Workbenches:[Arbeitsbereich WebWerkzeuge](WebTools_Workbench/de.md) --- +# WebTools Sketchfab/de + ## Beschreibung Dieses Werkzeug erlaubt dir Objekte zu exportieren und auf dein [SketchFab](http://www.sketchfab.com) Konto hochzuladen. {{Version/de|0.17}} @@ -28,3 +30,6 @@ Dieses Werkzeug erlaubt dir Objekte zu exportieren und auf dein [SketchFab](http - Sobald dein Modell hochgeladen ist, bietet Sketchfab eine ziemlich fortschrittliche Oberfläche, auf der du Materialien, Beleuchtung und Umgebung weiter konfigurieren kannst. - Wenn du die Schaltfläche \"Hochladen\" drückst, verwandelt sich die Schaltfläche nach Abschluss des Hochladens in eine Schaltfläche \"Modell online ansehen\", die du direkt zur Modellseite auf Sketchfab führt, wenn du darauf klickst. - Einige Formate, wie OBJ, werden von Sketchfab und FreeCAD unterschiedlich interpretiert. FreeCAD geht davon aus, dass die Z Achse nach oben zeigt, während Sketchfab davon ausgeht, dass sie in Richtung der Person hinter dem Bildschirm zeigt. Um dieses Problem zu beheben, verwendet der Exporteur nach dem Hochladen die Sketchfab API, um das Modell in die richtige Position zu drehen. Wenn dieser Vorgang fehlschlägt, wirst du gewarnt, aber dein Modell wird trotzdem korrekt hochgeladen. Du kannst das Modell in der Sketchfab Oberfläche manuell drehen, durch drücken des rechten Pfeils neben der \"X\" Achse im \"Modellausrichtung\"sreiter. + +--- +[documentation index](../README.md) > WebTools Sketchfab/de diff --git a/wiki/translations/de/WebTools_Workbench.md b/wiki/translations/de/WebTools_Workbench.md index 76f06452b7..cd9f6c86e1 100644 --- a/wiki/translations/de/WebTools_Workbench.md +++ b/wiki/translations/de/WebTools_Workbench.md @@ -1,5 +1,4 @@ -# WebTools Workbench/de - Arbeitsbereichssymbol WebWerkzeuge +# Arbeitsbereichssymbol WebWerkzeuge WebTools Workbench/de ## Übersicht @@ -23,3 +22,6 @@ Dieser Arbeitsbereich kann mit dem [Erweiterungsverwalter](Std_AddonMgr/de.md) i [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > WebTools Workbench/de diff --git a/wiki/translations/de/Web_Workbench.md b/wiki/translations/de/Web_Workbench.md index 2039ff9950..69105081aa 100644 --- a/wiki/translations/de/Web_Workbench.md +++ b/wiki/translations/de/Web_Workbench.md @@ -1,10 +1,4 @@ -# Web Workbench/de - - - - - -Netz Arbeitsbereichssymbol +# Netz Arbeitsbereichssymbol Web Workbench/de ## Einführung @@ -19,3 +13,6 @@ Von hier aus kannst Du im Web navigieren, auf Verweise (Links) klicken, die Onli [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/de diff --git a/wiki/translations/de/Whiffle_Ball_tutorial.md b/wiki/translations/de/Whiffle_Ball_tutorial.md index dda0eaaced..f8042939ef 100644 --- a/wiki/translations/de/Whiffle_Ball_tutorial.md +++ b/wiki/translations/de/Whiffle_Ball_tutorial.md @@ -1,5 +1,5 @@ # Whiffle Ball tutorial/de - {{TutorialInfo/de +{{TutorialInfo/de |Topic=Produktgestaltung |Level=Anfänger |Time=30 min @@ -254,4 +254,7 @@ Wenn alles gut lief, sollte das Modell wie folgt aussehen: {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Whiffle Ball tutorial/de diff --git a/wiki/translations/de/WikiPages.md b/wiki/translations/de/WikiPages.md index 2548f7436d..f70f7dbd0f 100644 --- a/wiki/translations/de/WikiPages.md +++ b/wiki/translations/de/WikiPages.md @@ -1,5 +1,5 @@ # WikiPages/de - {{TOCright}} +{{TOCright}} Diese Seite ist eine Erweiterung der [Hilfe:Editieren](Help:Editing.md) Seite und gibt allgemeine Richtlinien für das Schreiben und Aktualisieren der FreeCAD Wiki Dokumentation. Es fasst mehrere Diskussionen und Ideenfindungssitzungen zusammen @@ -531,3 +531,6 @@ Siehe [Glossar](Glossary/de.md) - [Deutsch](German_Translation.md) [Category:Documentation](Category:Documentation.md) [Category:Wiki](Category:Wiki.md) [Category:Wiki Documentation](Category:Wiki_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > WikiPages/de diff --git a/wiki/translations/de/WikiRobots.md b/wiki/translations/de/WikiRobots.md index e0150a7bf3..6615a31a1d 100644 --- a/wiki/translations/de/WikiRobots.md +++ b/wiki/translations/de/WikiRobots.md @@ -1,5 +1,5 @@ # WikiRobots/de - **Roboter sind von Natur aus gefährlich, da sie automatisch viel Schaden anrichten können. Verwende sie mit äußerster Vorsicht!** +**Roboter sind von Natur aus gefährlich, da sie automatisch viel Schaden anrichten können. Verwende sie mit äußerster Vorsicht!** ## Übersicht @@ -154,3 +154,6 @@ Ersetze eine Zeichenfolge in allen Seiten, die in der Kategorie Arch aufgeführt {{SystemInput|python3 pwb.py replace.py -cat:Arch}} [Category:Arch](Category:Arch.md) [Category:Administration](Category:Administration.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > WikiRobots/de diff --git a/wiki/translations/de/Wikihouse_porting_tutorial.md b/wiki/translations/de/Wikihouse_porting_tutorial.md index f601a6f55b..0a7c1d2878 100644 --- a/wiki/translations/de/Wikihouse_porting_tutorial.md +++ b/wiki/translations/de/Wikihouse_porting_tutorial.md @@ -1,7 +1,4 @@ # Wikihouse porting tutorial/de - - - {{TutorialInfo/de |Topic= Wikihouse Migration Tutorium |Level= Zwischenstufe/Fortgeschritten @@ -135,3 +132,6 @@ The last step is simply to select all the sheets, then export them to DXF from m ![](images/Arch_Wikihouse_04.jpg ) These files are ready to send to the shops that will do the actual cut. It would be possible to generate the G-Code to be sent to the CNC machine directly from FreeCAD too, but that is matter for another tutorial. + +--- +[documentation index](../README.md) > Wikihouse porting tutorial/de diff --git a/wiki/translations/de/Windows_packaging.md b/wiki/translations/de/Windows_packaging.md index 21ea33c214..afa96ec836 100644 --- a/wiki/translations/de/Windows_packaging.md +++ b/wiki/translations/de/Windows_packaging.md @@ -1,4 +1,5 @@ # Windows packaging/de - - [Category:Packaging/de](Category:Packaging/de.md) [Category:Developer Documentation/de](Category:Developer_Documentation/de.md) + +--- +[documentation index](../README.md) > Windows packaging/de diff --git a/wiki/translations/de/Wished_tools.md b/wiki/translations/de/Wished_tools.md index 8e4937483e..71ec55043e 100644 --- a/wiki/translations/de/Wished_tools.md +++ b/wiki/translations/de/Wished_tools.md @@ -1,5 +1,5 @@ # Wished tools/de - Ich beginne diese Seite als Versuch, Endanwenderwünsche zu bestimmten Werkzeugen zu sammeln, die sie in FreeCAD finden möchten. Mehrere cad Benutzer haben sich bereits mit mir über cad Werkzeuge unterhalten, darüber, was sie am meisten benutzen, was sie sich in FreeCAD wünschen, worauf sie nicht verzichten können, usw\..... Obwohl FreeCAD nicht dazu gedacht ist, spezifisch ein Ersatz für jede andere berühmte CAD Software zu werden (besonders für die, die mit Auto beginnt und mit CAD endet), denke ich, dass dies eine gute Referenz werden kann, um die Erwartungen der Endbenutzer zu kennen und vielleicht die Dinge über andere in der Entwicklung zu stellen. +Ich beginne diese Seite als Versuch, Endanwenderwünsche zu bestimmten Werkzeugen zu sammeln, die sie in FreeCAD finden möchten. Mehrere cad Benutzer haben sich bereits mit mir über cad Werkzeuge unterhalten, darüber, was sie am meisten benutzen, was sie sich in FreeCAD wünschen, worauf sie nicht verzichten können, usw\..... Obwohl FreeCAD nicht dazu gedacht ist, spezifisch ein Ersatz für jede andere berühmte CAD Software zu werden (besonders für die, die mit Auto beginnt und mit CAD endet), denke ich, dass dies eine gute Referenz werden kann, um die Erwartungen der Endbenutzer zu kennen und vielleicht die Dinge über andere in der Entwicklung zu stellen. Wenn Du ein CAD Anwender bist und hier etwas hinzufügen möchtest, kannst Du gerne editieren, wir würden uns freuen, Deine Meinung hier zu haben. @@ -81,3 +81,6 @@ Wenn Du ein CAD Anwender bist und hier etwas hinzufügen möchtest, kannst Du ge - Baugruppen\*. [Category:Hubs](Category:Hubs.md) [Category:Roadmap](Category:Roadmap.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Wished tools/de diff --git a/wiki/translations/de/Workbench_Concept.md b/wiki/translations/de/Workbench_Concept.md index a16a841e82..f5a6bed23e 100644 --- a/wiki/translations/de/Workbench_Concept.md +++ b/wiki/translations/de/Workbench_Concept.md @@ -1,2 +1,5 @@ # Workbench Concept/de 1. REDIRECT [Workbenches/de](Workbenches/de.md) + +--- +[documentation index](../README.md) > Workbench Concept/de diff --git a/wiki/translations/de/Workbench_Selector.md b/wiki/translations/de/Workbench_Selector.md index 9e812e0e8b..0f75bbd4c9 100644 --- a/wiki/translations/de/Workbench_Selector.md +++ b/wiki/translations/de/Workbench_Selector.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Workbench Selector/de diff --git a/wiki/translations/de/Workbench_creation.md b/wiki/translations/de/Workbench_creation.md index 02b5cc929d..5c5144b696 100644 --- a/wiki/translations/de/Workbench_creation.md +++ b/wiki/translations/de/Workbench_creation.md @@ -1,10 +1,4 @@ # Workbench creation/de - - - - - - {{TOCright}} ## Einführung @@ -351,3 +345,6 @@ os.remove(qrc_filename) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > Workbench creation/de diff --git a/wiki/translations/de/Workbenches.md b/wiki/translations/de/Workbenches.md index 541c3bf1ee..25db24f20b 100644 --- a/wiki/translations/de/Workbenches.md +++ b/wiki/translations/de/Workbenches.md @@ -1,9 +1,4 @@ # Workbenches/de - - - - - FreeCAD basiert, wie viele moderne Konstruktionsanwendungen wie [Revit](wikipedia:Revit.md) oder [CATIA](wikipedia:CATIA.md) auf dem Konzept von [Workbench](wikipedia:Workbench.md). Ein Arbeitsbereich kann als ein Satz von Werkzeugen betrachtet werden, die speziell für eine bestimmte Aufgabe gruppiert sind. In einer traditionellen Möbelwerkstatt hättest du einen Arbeitstisch für die Person, die mit Holz arbeitet, einen anderen für die Person, die mit Metallteilen arbeitet, und vielleicht einen dritten für den Mann, der alle Teile zusammen montiert. In FreeCAD wird das gleiche Konzept angewendet. Werkzeuge werden entsprechend den Aufgaben, mit denen sie verbunden sind, in Arbeitsbereichen zusammengefasst. @@ -83,3 +78,6 @@ Neue Arbeitsbereiche sind immer in der Entwicklung, bleib\' dran! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/de diff --git a/wiki/translations/de/Workfeature_Workbench.md b/wiki/translations/de/Workfeature_Workbench.md index 58a8140116..8bd5b6f9ac 100644 --- a/wiki/translations/de/Workfeature_Workbench.md +++ b/wiki/translations/de/Workfeature_Workbench.md @@ -1,7 +1,4 @@ -# Workfeature Workbench/de - - -Workfeature-Arbeitsbereich-Symbol +# Workfeature-Arbeitsbereich-Symbol Workfeature Workbench/de {{Note|Hinweis|Zusammenführen mit [Makro Workfeature](Macro_WorkFeatures/de.md)??}} @@ -79,3 +76,6 @@ Dieser Arbeitsbereich kann über den [Erweiterungsverwalter](Std_AddonMgr/de.md) - [Externe Arbeitsbereiche](External_workbenches/de.md) [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Workfeature Workbench/de diff --git a/wiki/translations/en/3D_input_devices.md b/wiki/translations/en/3D_input_devices.md index 266f69949a..e33a9d0f35 100644 --- a/wiki/translations/en/3D_input_devices.md +++ b/wiki/translations/en/3D_input_devices.md @@ -1,5 +1,5 @@ # 3D input devices/en - FreeCAD supports some specialized input devices, such as 3D mice. These enables the user to rotate, translate and zoom objects in three dimensions. +FreeCAD supports some specialized input devices, such as 3D mice. These enables the user to rotate, translate and zoom objects in three dimensions. ## Supported hardware @@ -7,3 +7,6 @@ - Installation instructions: [3D connexion input devices](3Dconnexion_input_devices.md) [category:Documentation](category:Documentation.md) + +--- +[documentation index](../README.md) > 3D input devices/en diff --git a/wiki/translations/en/3D_view.md b/wiki/translations/en/3D_view.md index 61b61d74d7..674632d041 100644 --- a/wiki/translations/en/3D_view.md +++ b/wiki/translations/en/3D_view.md @@ -1,6 +1,4 @@ # 3D view/en - - ## Introduction @@ -87,4 +85,7 @@ For more information see the power user documentation: {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > 3D view/en diff --git a/wiki/translations/en/3Dconnexion_input_devices.md b/wiki/translations/en/3Dconnexion_input_devices.md index 9ec62c9cb5..09f8eb38ad 100644 --- a/wiki/translations/en/3Dconnexion_input_devices.md +++ b/wiki/translations/en/3Dconnexion_input_devices.md @@ -1,5 +1,4 @@ -# 3Dconnexion input devices/en - 3Dconnexion SpaceNavigator {{TOCright}} +# 3Dconnexion SpaceNavigator {{TOCright}} 3Dconnexion input devices/en ## Driver installation @@ -276,3 +275,6 @@ To connect certain command with a button, select button on the left side, and it - Forum thread [Space navigator axis confusion](https://forum.freecadweb.org/viewtopic.php?f=8&t=57188) [Category:User Documentation](Category:User_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > 3Dconnexion input devices/en diff --git a/wiki/translations/en/A2plus_Workbench.md b/wiki/translations/en/A2plus_Workbench.md index 22215c0792..a51191c05f 100644 --- a/wiki/translations/en/A2plus_Workbench.md +++ b/wiki/translations/en/A2plus_Workbench.md @@ -1,5 +1,4 @@ -# A2plus Workbench/en - A2plus workbench icon +# A2plus workbench icon A2plus Workbench/en ## Introduction @@ -614,3 +613,6 @@ This is an A2plus-specific command. It solves the assembly constraints of the as [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > A2plus Workbench/en diff --git a/wiki/translations/en/ANSI_templates.md b/wiki/translations/en/ANSI_templates.md index 476c1d2bb6..6915c3ce6c 100644 --- a/wiki/translations/en/ANSI_templates.md +++ b/wiki/translations/en/ANSI_templates.md @@ -1,5 +1,5 @@ # ANSI templates/en - This page lists the templates according to American National Standards Institute [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) standard +This page lists the templates according to American National Standards Institute [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) standard ### ANSI A @@ -62,3 +62,6 @@ The templates are drawn by [Quick61](User:Quick61.md) and listed [FreeCAD-Drawing-Templates](https://github.com/quick61/FreeCAD-Drawing-Templates). [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > ANSI templates/en diff --git a/wiki/translations/en/About_FreeCAD.md b/wiki/translations/en/About_FreeCAD.md index 1bdfd5141e..fa6bb51ce9 100644 --- a/wiki/translations/en/About_FreeCAD.md +++ b/wiki/translations/en/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/en - - - +# About FreeCAD/en **FreeCAD** is a general purpose parametric 3D [**CAD**](http://en.wikipedia.org/wiki/CAD) modeler, whose development is completely [open source](http://en.wikipedia.org/wiki/Open_source) ([LGPL License](https://www.gnu.org/licenses/lgpl-3.0.en.html)). FreeCAD is aimed directly at [mechanical engineering](http://en.wikipedia.org/wiki/Mechanical_engineering) and [product design](http://en.wikipedia.org/wiki/Product_design) but also fits in a wider range of uses around engineering, such as architecture, finite element analysis, 3D printing, and other tasks. @@ -28,3 +25,6 @@ FreeCAD is maintained and developed by a community of enthusiastic developers an [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/en diff --git a/wiki/translations/en/Add_FEM_Constraint_Tutorial.md b/wiki/translations/en/Add_FEM_Constraint_Tutorial.md index 0b657df175..002a0171fa 100644 --- a/wiki/translations/en/Add_FEM_Constraint_Tutorial.md +++ b/wiki/translations/en/Add_FEM_Constraint_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Constraint Tutorial/en 1. REDIRECT [Add\_FEM\_constraint\_tutorial/en](Add_FEM_constraint_tutorial/en.md) + +--- +[documentation index](../README.md) > Add FEM Constraint Tutorial/en diff --git a/wiki/translations/en/Add_FEM_Equation_Tutorial.md b/wiki/translations/en/Add_FEM_Equation_Tutorial.md index d9e62d7491..f953ddb8d1 100644 --- a/wiki/translations/en/Add_FEM_Equation_Tutorial.md +++ b/wiki/translations/en/Add_FEM_Equation_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Equation Tutorial/en 1. REDIRECT [Add\_FEM\_equation\_tutorial/en](Add_FEM_equation_tutorial/en.md) + +--- +[documentation index](../README.md) > Add FEM Equation Tutorial/en diff --git a/wiki/translations/en/Add_FEM_constraint_tutorial.md b/wiki/translations/en/Add_FEM_constraint_tutorial.md index 25d84537d9..69c959b3cd 100644 --- a/wiki/translations/en/Add_FEM_constraint_tutorial.md +++ b/wiki/translations/en/Add_FEM_constraint_tutorial.md @@ -1,7 +1,4 @@ # Add FEM constraint tutorial/en - - - {{TutorialInfo |Topic= Add FEM Constraint |Level= @@ -312,3 +309,6 @@ def _handleFlowBndConditions(self): ``` [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM constraint tutorial/en diff --git a/wiki/translations/en/Add_FEM_equation_tutorial.md b/wiki/translations/en/Add_FEM_equation_tutorial.md index 156903423d..534e3065b7 100644 --- a/wiki/translations/en/Add_FEM_equation_tutorial.md +++ b/wiki/translations/en/Add_FEM_equation_tutorial.md @@ -1,7 +1,4 @@ # Add FEM equation tutorial/en - - - {{TutorialInfo |Topic=Add FEM Equation |Level=Advanced @@ -185,3 +182,6 @@ We now finished the function part of the new equation. Next we\'ll connect the n We have just created a new equation class. To access it from the FEM GUI, we need to create a button and link it to the new equation class. Here is a tutorial: [Add button to FEM toolbar tutorial](Add_button_to_FEM_toolbar_tutorial.md). [Category:FEM](Category:FEM.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM equation tutorial/en diff --git a/wiki/translations/en/Addon.md b/wiki/translations/en/Addon.md index 9d22d462d1..ff38fc18ba 100644 --- a/wiki/translations/en/Addon.md +++ b/wiki/translations/en/Addon.md @@ -1,6 +1,4 @@ # Addon/en - - ## Introduction In FreeCAD and in this documentation, an [addon](addon.md) is any component that is not part of the base installation, but that can be added to the system by certain methods. @@ -37,3 +35,6 @@ However, manual installation is still possible. [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Addon/en diff --git a/wiki/translations/en/Advanced_TechDraw_Tutorial.md b/wiki/translations/en/Advanced_TechDraw_Tutorial.md index d82e25edb2..a0d3ecff6c 100644 --- a/wiki/translations/en/Advanced_TechDraw_Tutorial.md +++ b/wiki/translations/en/Advanced_TechDraw_Tutorial.md @@ -1,10 +1,4 @@ # Advanced TechDraw Tutorial/en - - - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -92,4 +86,7 @@ However, the described path could represent the starting point (or the idea) to {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Advanced TechDraw Tutorial/en diff --git a/wiki/translations/en/Aeroplane.md b/wiki/translations/en/Aeroplane.md index 1bd6b5d9e2..de802e6609 100644 --- a/wiki/translations/en/Aeroplane.md +++ b/wiki/translations/en/Aeroplane.md @@ -1,5 +1,5 @@ # Aeroplane/en - {{TutorialInfo +{{TutorialInfo |Topic=Part Workbench |Level=Beginner |Time=10 minutes @@ -99,4 +99,7 @@ I hope this little tutorial has helped you to get a feel for rotations. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Aeroplane/en diff --git a/wiki/translations/en/Analysis_of_reinforced_concrete_with_FEM.md b/wiki/translations/en/Analysis_of_reinforced_concrete_with_FEM.md index 982e2df200..326b40c6ca 100644 --- a/wiki/translations/en/Analysis_of_reinforced_concrete_with_FEM.md +++ b/wiki/translations/en/Analysis_of_reinforced_concrete_with_FEM.md @@ -1,5 +1,5 @@ # Analysis of reinforced concrete with FEM/en - {{TutorialInfo +{{TutorialInfo |Topic= Reinforced concrete with FEM |Level= Intermediate |Time= 60 minutes @@ -183,4 +183,7 @@ The tensile stress pattern suggests an alternative design concept using pre-stre {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Analysis of reinforced concrete with FEM/en diff --git a/wiki/translations/en/Animation_Workbench.md b/wiki/translations/en/Animation_Workbench.md index 209b2c09cd..286481f1e2 100644 --- a/wiki/translations/en/Animation_Workbench.md +++ b/wiki/translations/en/Animation_Workbench.md @@ -1,5 +1,4 @@ # Animation Workbench/en - {{Template:UnfinishedDocu }} @@ -101,3 +100,6 @@ Other - [External workbenches](External_workbenches.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Animation Workbench/en diff --git a/wiki/translations/en/AppImage.md b/wiki/translations/en/AppImage.md index f010f743d9..e47b76c446 100644 --- a/wiki/translations/en/AppImage.md +++ b/wiki/translations/en/AppImage.md @@ -1,5 +1,5 @@ # AppImage/en - **As of 7 July 2019, the FreeCAD community has been observing that downloading AppImages from Github seems to timeout before completion. We aren't sure why this is occurring. If this happens to you please try downloading again. It make take a few tries. A recommended practice is to use the AppImage [https://www.freecadweb.org/wiki/Appimage#Automatic_updating auto-updating feature], which will restore the download from the place it failed.** +**As of 7 July 2019, the FreeCAD community has been observing that downloading AppImages from Github seems to timeout before completion. We aren't sure why this is occurring. If this happens to you please try downloading again. It make take a few tries. A recommended practice is to use the AppImage [https://www.freecadweb.org/wiki/Appimage#Automatic_updating auto-updating feature], which will restore the download from the place it failed.** {{TOCright}} @@ -170,3 +170,6 @@ The repository for these scripts is at [realthunder/FreeCADMakeImage](https://gi [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > AppImage/en diff --git a/wiki/translations/en/App_DocumentObject.md b/wiki/translations/en/App_DocumentObject.md index b6910ab86e..cc9c84d99c 100644 --- a/wiki/translations/en/App_DocumentObject.md +++ b/wiki/translations/en/App_DocumentObject.md @@ -1,5 +1,5 @@ # App DocumentObject/en - {{TOCright}} +{{TOCright}} ## Introduction @@ -69,4 +69,7 @@ obj.Label = "Custom label" {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App DocumentObject/en diff --git a/wiki/translations/en/App_DocumentObjectGroup.md b/wiki/translations/en/App_DocumentObjectGroup.md index 3ae070aa7e..c515e78225 100644 --- a/wiki/translations/en/App_DocumentObjectGroup.md +++ b/wiki/translations/en/App_DocumentObjectGroup.md @@ -1,6 +1,4 @@ # App DocumentObjectGroup/en - - ## Introduction @@ -31,4 +29,7 @@ See the properties in the [Std Group](Std_Group.md) page. {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App DocumentObjectGroup/en diff --git a/wiki/translations/en/App_FeaturePython.md b/wiki/translations/en/App_FeaturePython.md index 105a49566d..ab7d555e12 100644 --- a/wiki/translations/en/App_FeaturePython.md +++ b/wiki/translations/en/App_FeaturePython.md @@ -1,6 +1,4 @@ # App FeaturePython/en - - ## Introduction An [App FeaturePython](App_FeaturePython.md) object, or formally an `App::FeaturePython`, is a simple instance of the [App DocumentObject](App_DocumentObject.md) in [Python](Python.md). @@ -95,4 +93,7 @@ If the desired object should have a placement, a shape, an attachment, or other {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App FeaturePython/en diff --git a/wiki/translations/en/App_GeoFeature.md b/wiki/translations/en/App_GeoFeature.md index c0d0ebf301..d078c57937 100644 --- a/wiki/translations/en/App_GeoFeature.md +++ b/wiki/translations/en/App_GeoFeature.md @@ -1,6 +1,4 @@ # App GeoFeature/en - - ## Introduction @@ -144,4 +142,7 @@ For example, the [Arch BuildingPart](Arch_BuildingPart.md) element of the [Arch {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App GeoFeature/en diff --git a/wiki/translations/en/App_Link.md b/wiki/translations/en/App_Link.md index 900360c53b..89e2238789 100644 --- a/wiki/translations/en/App_Link.md +++ b/wiki/translations/en/App_Link.md @@ -1,5 +1,5 @@ # App Link/en - {{TOCright}} +{{TOCright}} ## Introduction @@ -28,4 +28,7 @@ See the full list of properties in the [Std LinkMake](Std_LinkMake.md) page. {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Link/en diff --git a/wiki/translations/en/App_Part.md b/wiki/translations/en/App_Part.md index 61df133888..eee4681d53 100644 --- a/wiki/translations/en/App_Part.md +++ b/wiki/translations/en/App_Part.md @@ -1,6 +1,4 @@ # App Part/en - - ## Introduction @@ -31,4 +29,7 @@ See the full list of properties in the [Std Part](Std_Part.md) page. {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Part/en diff --git a/wiki/translations/en/Arch_3DS.md b/wiki/translations/en/Arch_3DS.md index a7616055a6..784d222f88 100644 --- a/wiki/translations/en/Arch_3DS.md +++ b/wiki/translations/en/Arch_3DS.md @@ -1,9 +1,4 @@ # Arch 3DS/en - - - - - The Arch Workbench supports importing [3DS](https://en.wikipedia.org/wiki/.3ds) files. The 3DS format is ancient but still widely used on the internet. It can contain mesh data and material information. At the moment, it will import mesh objects contained in the file as FreeCAD mesh objects, and has no support for materials yet. @@ -13,3 +8,6 @@ The Arch Workbench supports importing [3DS](https://en.wikipedia.org/wiki/.3ds) [Category:User Documentation](Category:User_Documentation.md) [Category:Arch](Category:Arch.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3DS/en diff --git a/wiki/translations/en/Arch_3Views.md b/wiki/translations/en/Arch_3Views.md index 584a4d9de4..81524948f1 100644 --- a/wiki/translations/en/Arch_3Views.md +++ b/wiki/translations/en/Arch_3Views.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch 3Views/en + ## Description @@ -68,11 +70,5 @@ Wall.ViewObject.Visibility = False mesh_obj.ViewObject.Visibility = False ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3Views/en diff --git a/wiki/translations/en/Arch_API.md b/wiki/translations/en/Arch_API.md index 48156f60cd..3ec6ba67db 100644 --- a/wiki/translations/en/Arch_API.md +++ b/wiki/translations/en/Arch_API.md @@ -1,5 +1,5 @@ # Arch API/en - **(November 2018) The Arch API is listed in the [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) The Arch API is listed in the [https://www.freecadweb.org/api autogenerated API documentation].** The functions of the API are part of the [Arch Workbench](Arch_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `Arch` module has been imported. The [Reinforcement Addon](Reinforcement_Addon.md) has its own [Reinforcement API](Reinforcement_API.md). @@ -18,3 +18,6 @@ Arch.makeWall(baseline, length=None, width=200, height=2000) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch API/en diff --git a/wiki/translations/en/Arch_Add.md b/wiki/translations/en/Arch_Add.md index 019113f963..6f771d5aed 100644 --- a/wiki/translations/en/Arch_Add.md +++ b/wiki/translations/en/Arch_Add.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Remove](Arch_Remove.md) --- +# Arch Add/en + ## Description The Add tool allows you to do 4 kinds of operations: @@ -74,11 +76,5 @@ Arch.addComponents(Wall2, Wall) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Add/en diff --git a/wiki/translations/en/Arch_Axis.md b/wiki/translations/en/Arch_Axis.md index c12b1410f0..00d64ffbe6 100644 --- a/wiki/translations/en/Arch_Axis.md +++ b/wiki/translations/en/Arch_Axis.md @@ -7,6 +7,8 @@ SeeAlso:[Axis System](Arch_AxisSystem.md), [Arch Grid](Arch_Grid.md) --- +# Arch Axis/en + ## Description The ** [Arch Axis](Arch_Axis.md)** tool allows you to places a series of axes in the current document. The distance and the angle between axes is customizable, as well as the numbering style. The axes serve mainly as references to snap objects onto, but can also be used together with ** [Arch AxesSystems](Arch_AxisSystem.md)** , and can also be referenced by other Arch objects to create parametric arrays, for example of beams or columns. ** [Arch Grids](Arch_Grid.md)** can also be used in places of axes. @@ -89,8 +91,5 @@ Draft.move(Axes2, FreeCAD.Vector(-1000, 2500, 0)) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Axis/en diff --git a/wiki/translations/en/Arch_AxisSystem.md b/wiki/translations/en/Arch_AxisSystem.md index c5a6d770b4..857a26114f 100644 --- a/wiki/translations/en/Arch_AxisSystem.md +++ b/wiki/translations/en/Arch_AxisSystem.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Axis](Arch_Axis.md), [Arch Grid](Arch_Grid.md) --- +# Arch AxisSystem/en + ## Description The [AxisSystem](Arch_AxisSystem.md) tool allows you to combine two or three [Arch Axis](Arch_Axis.md) objects. @@ -73,8 +75,5 @@ Structure.Axis = AxisSystem FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch AxisSystem/en diff --git a/wiki/translations/en/Arch_BimServer.md b/wiki/translations/en/Arch_BimServer.md index 386a9e7b38..193ff48964 100644 --- a/wiki/translations/en/Arch_BimServer.md +++ b/wiki/translations/en/Arch_BimServer.md @@ -1,2 +1,5 @@ # Arch BimServer/en 1. REDIRECT [WebTools\_BimServer/en](WebTools_BimServer/en.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BimServer/en diff --git a/wiki/translations/en/Arch_Building.md b/wiki/translations/en/Arch_Building.md index 438cab38b7..2ec1b31ebb 100644 --- a/wiki/translations/en/Arch_Building.md +++ b/wiki/translations/en/Arch_Building.md @@ -7,6 +7,8 @@ SeeAlso:[Arch BuildingPart](Arch_BuildingPart.md), [Arch Site](Arch_Site.md) --- +# Arch Building/en + ## Description The Arch Building is a special type of FreeCAD group object particularly suited for representing a whole building unit. They are mostly used to organize your model, by containing [floor](Arch_Floor.md) objects. @@ -61,8 +63,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Building/en diff --git a/wiki/translations/en/Arch_BuildingPart.md b/wiki/translations/en/Arch_BuildingPart.md index bc0d153d22..361c895dcc 100644 --- a/wiki/translations/en/Arch_BuildingPart.md +++ b/wiki/translations/en/Arch_BuildingPart.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Building](Arch_Building.md), [Arch Site](Arch_Site.md) --- +# Arch BuildingPart/en + ## Description The BuildingPart replaces the old [Arch Floor](Arch_Floor.md) and [Arch Building](Arch_Building.md) with a more capable version that can be used not only to create Floor/Storey/Levels but also all kinds of situations where different Arch/BIM objects need to be grouped and that group might need to be handled as one object or replicated. @@ -126,8 +128,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BuildingPart/en diff --git a/wiki/translations/en/Arch_Check.md b/wiki/translations/en/Arch_Check.md index 25a33fb804..991ee0dc13 100644 --- a/wiki/translations/en/Arch_Check.md +++ b/wiki/translations/en/Arch_Check.md @@ -6,6 +6,8 @@ SeeAlso:[Arch CloseHoles](Arch_CloseHoles.md) --- +# Arch Check/en + ## Description This tool checks the current document or the selected objects for non-solid ** [Part](Part_Workbench.md)** or ** [Arch](Arch_Workbench.md)** objects, that might give problems, since most operations of the Arch Workbench require solid objects. @@ -53,11 +55,5 @@ list_bad = Arch.check([Wall1, Wall2, Circle, Wire], includehidden=True) print(list_bad) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Check/en diff --git a/wiki/translations/en/Arch_CloneComponent.md b/wiki/translations/en/Arch_CloneComponent.md index fc59b1d822..7313a1f6a2 100644 --- a/wiki/translations/en/Arch_CloneComponent.md +++ b/wiki/translations/en/Arch_CloneComponent.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Clone](Draft_Clone.md), [Arch Component](Arch_Component.md) --- +# Arch CloneComponent/en + ## Description The ** [Arch Clone Component](Arch_CloneComponent.md)** produces ** [Arch Components](Arch_Component.md)** that are clones of selected Arch objects. @@ -21,8 +23,5 @@ The clone component will simply have its **CloneOf** property set to the selecte ## Scripting - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloneComponent/en diff --git a/wiki/translations/en/Arch_CloseHoles.md b/wiki/translations/en/Arch_CloseHoles.md index 0e0697477a..bb36ec744d 100644 --- a/wiki/translations/en/Arch_CloseHoles.md +++ b/wiki/translations/en/Arch_CloseHoles.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Check](Arch_Check.md) --- +# Arch CloseHoles/en + ## Description This tool identifies holes (circular sequence of open edges) in a [Shape](Part_Workbench.md) object and attempts to close it by adding it a new face made from that edges sequence. You must still verify yourself that the result is a solid, though. @@ -51,11 +53,5 @@ FreeCAD.ActiveDocument.recompute() solid = Arch.closeHole(Wall.Shape) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloseHoles/en diff --git a/wiki/translations/en/Arch_CompAxis.md b/wiki/translations/en/Arch_CompAxis.md index e9c208d90c..e9c8400547 100644 --- a/wiki/translations/en/Arch_CompAxis.md +++ b/wiki/translations/en/Arch_CompAxis.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Axis](Arch_Axis.md), [Arch Axes system](Arch_AxisSystem.md), [Arch Grid](Arch_Grid.md) --- +# Arch CompAxis/en + ## Description Create axis. @@ -17,8 +19,5 @@ Create axis. - [Axes system](Arch_AxisSystem.md): Adds an axes system composed of several axes to the document - [Grid](Arch_Grid.md): Adds a grid-like object to the document - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompAxis/en diff --git a/wiki/translations/en/Arch_CompPanel.md b/wiki/translations/en/Arch_CompPanel.md index 79996f85cd..6ff067a49d 100644 --- a/wiki/translations/en/Arch_CompPanel.md +++ b/wiki/translations/en/Arch_CompPanel.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Arch CompPanel/en + ## Description Grouping of several Panel related tools. @@ -16,10 +18,7 @@ Grouping of several Panel related tools. - [Panel](Arch_Panel.md): Creates a panel object from a selected 2D object (v0.15) - [Panel Cut](Arch_Panel_Cut.md): Creates a 2D cut view from an [Arch Panel](Arch_Panel.md) (v0.17) - [Panel Sheet](Arch_Panel_Sheet.md): Creates a 2D cut sheet including [panel cuts](Arch_Panel_Cut.md) or other 2D objects (v0.17) -- [Nest](Arch_Nest.md): Allow to nest several flat objects inside a container shape (v0.17) - - +- [Nest](Arch_Nest.md): Allow to nest several flat objects inside a container shape (v0.17) - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompPanel/en diff --git a/wiki/translations/en/Arch_CompPipe.md b/wiki/translations/en/Arch_CompPipe.md index 868e6968c1..3654ff1a10 100644 --- a/wiki/translations/en/Arch_CompPipe.md +++ b/wiki/translations/en/Arch_CompPipe.md @@ -7,15 +7,14 @@ SeeAlso: --- +# Arch CompPipe/en + ## Description ## Types of - [Pipe](Arch_Pipe.md): Creates a pipe (v0.17) -- [Pipe Connector](Arch_PipeConnector.md): Creates a corner or tee connection between 2 or 3 selected pipes (v0.17) - - +- [Pipe Connector](Arch_PipeConnector.md): Creates a corner or tee connection between 2 or 3 selected pipes (v0.17) - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompPipe/en diff --git a/wiki/translations/en/Arch_CompRebarStraight.md b/wiki/translations/en/Arch_CompRebarStraight.md index 244b9b3eab..a32fc0ac75 100644 --- a/wiki/translations/en/Arch_CompRebarStraight.md +++ b/wiki/translations/en/Arch_CompRebarStraight.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Arch CompRebarStraight/en + ## Description The Reinforcement Addon augments the [Arch Workbench](Arch_Workbench.md) by providing new interfaces and presets for the creation of common rebar types for use with [Arch Structures](Arch_Structure.md). It is also integrated into the external workbench [BIM](BIM_Workbench.md). @@ -38,8 +40,5 @@ Back to [Workbenches](Workbenches#External_workbenches.md) / [External Workbench - [Rebar](Arch_Rebar.md): Creates a custom reinforcement bar in a selected structural element using a sketch - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompRebarStraight/en diff --git a/wiki/translations/en/Arch_CompSetMaterial.md b/wiki/translations/en/Arch_CompSetMaterial.md index bd49ef26aa..addaafc53c 100644 --- a/wiki/translations/en/Arch_CompSetMaterial.md +++ b/wiki/translations/en/Arch_CompSetMaterial.md @@ -7,6 +7,8 @@ SeeAlso:[Arch SetMaterial](Arch_SetMaterial.md), [Arch MultiMaterial](Arch_MultiMaterial.md) --- +# Arch CompSetMaterial/en + ## Description The Material tools allows to add materials to the active document. @@ -14,10 +16,7 @@ The Material tools allows to add materials to the active document. ## Types of - [Material](Arch_SetMaterial.md): Creates a material and attributes it to selected objects, if any -- [Multi-Material](Arch_MultiMaterial.md): Creates a multi-material and attributes it to selected objects, if any (v0.17) - - +- [Multi-Material](Arch_MultiMaterial.md): Creates a multi-material and attributes it to selected objects, if any (v0.17) - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompSetMaterial/en diff --git a/wiki/translations/en/Arch_Component.md b/wiki/translations/en/Arch_Component.md index 91f907ab1e..d66aa540be 100644 --- a/wiki/translations/en/Arch_Component.md +++ b/wiki/translations/en/Arch_Component.md @@ -6,6 +6,8 @@ Shortcut:**C** **M** --- +# Arch Component/en + ## Description Creates a non-parametric [Arch](Arch_Workbench.md) component from any [Part](Part_Workbench.md)-based object. This gives the Part-based object the same attributes and properties as other Arch objects, and allows to specify how it should be exported to IFC by setting its **Role** property. @@ -46,11 +48,5 @@ The Arch component object is also a base shared by all other Arch objects (** [Part Box](Part_Box.md)**. Then, use a compound of those bricks as a high-resolution version of the wall. The shape of the wall is not modified by adding a Hi-Res object. Only its representation in the 3D view will change by adopting the representation of the high-resolution version instead of its own. - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Component/en diff --git a/wiki/translations/en/Arch_Concept.md b/wiki/translations/en/Arch_Concept.md index 8ded721bdc..389e8e7c88 100644 --- a/wiki/translations/en/Arch_Concept.md +++ b/wiki/translations/en/Arch_Concept.md @@ -1,7 +1,4 @@ # Arch Concept/en - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -171,3 +168,6 @@ The following diagram illustrates the relationship between all objects described Objects for capturing building knowledge [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Concept/en diff --git a/wiki/translations/en/Arch_CurtainWall.md b/wiki/translations/en/Arch_CurtainWall.md index 85e5786215..c0a70ef167 100644 --- a/wiki/translations/en/Arch_CurtainWall.md +++ b/wiki/translations/en/Arch_CurtainWall.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Grid](Arch_Grid.md) --- +# Arch CurtainWall/en + ## Description This tool creates a [curtain wall](https://en.wikipedia.org/wiki/Curtain_wall_(architecture)) by subdividing a base face into quadrangular faces, then creating vertical mullion on the vertical edges, horizontal mullions on the horizontal edges, and filling the spaces between mullions with panels. @@ -148,8 +150,5 @@ curtainWall.VerticalSections = 6 FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CurtainWall/en diff --git a/wiki/translations/en/Arch_CutLine.md b/wiki/translations/en/Arch_CutLine.md index e8aeef407f..c702c938d4 100644 --- a/wiki/translations/en/Arch_CutLine.md +++ b/wiki/translations/en/Arch_CutLine.md @@ -7,6 +7,8 @@ SeeAlso:[Arch CutPlane](Arch_CutPlane.md) --- +# Arch CutLine/en + ## Description The [Arch CutLine](Arch_CutLine.md) tool allows you to cut a solid Arch object like an [Arch Wall](Arch_Wall.md) or [Arch Structure](Arch_Structure.md) using a line that is crossing the object. @@ -31,8 +33,5 @@ The [Arch CutLine](Arch_CutLine.md) tool allows you to cut a solid Arch object l [Arch API](Arch_API.md) and [FreeCAD Scripting Basics](FreeCAD_Scripting_Basics.md). - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutLine/en diff --git a/wiki/translations/en/Arch_CutPlane.md b/wiki/translations/en/Arch_CutPlane.md index 95b36f3377..5a712556ac 100644 --- a/wiki/translations/en/Arch_CutPlane.md +++ b/wiki/translations/en/Arch_CutPlane.md @@ -6,6 +6,8 @@ SeeAlso:[Arch CutLine](Arch_CutLine.md), [Arch Remove](Arch_Remove.md) --- +# Arch CutPlane/en + ## Description The Cut Plane tool allows you to cut an Arch object according to a plane: @@ -92,8 +94,5 @@ cutObj2 = Arch.cutComponentwithPlane(main_object2, cut_face2, 1) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutPlane/en diff --git a/wiki/translations/en/Arch_DAE.md b/wiki/translations/en/Arch_DAE.md index ef2e5eb11e..b33401da05 100644 --- a/wiki/translations/en/Arch_DAE.md +++ b/wiki/translations/en/Arch_DAE.md @@ -1,6 +1,4 @@ # Arch DAE/en - - The [Collada (DAE)](https://en.wikipedia.org/wiki/COLLADA) format is a standard file format for exchange of Mesh data. The [Arch Workbench](Arch_Workbench.md) can import meshes from .dae files, and export Arch and other [Shape](Part_Workbench.md)-based objects to the .dae format. Note that imported objects will be [Mesh](Mesh_Workbench.md) objects, and will need to be turned into [Shapes](Shape.md) or Arch objects for optimal use. The [Arch Workbench](Arch_Workbench.md) has several tools to help you in performing that operation. @@ -18,3 +16,6 @@ The Collada import functionality in the Arch workbench depends on [pycollada](ht [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch DAE/en diff --git a/wiki/translations/en/Arch_Door.md b/wiki/translations/en/Arch_Door.md index f2d7abe13f..9a18cc1d88 100644 --- a/wiki/translations/en/Arch_Door.md +++ b/wiki/translations/en/Arch_Door.md @@ -8,6 +8,8 @@ Icon:Arch_Window.svg --- +# Arch Door/en + ## Description [Arch Doors](Arch_Door.md) are created with the [Arch Window](Arch_Window.md) tool. @@ -23,5 +25,5 @@ All properties are described in the [Arch Window](Arch_Window.md) tool. Door *Door being constructed from a [Sketch](Sketcher_Workbench.md)* - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Door/en diff --git a/wiki/translations/en/Arch_Equipment.md b/wiki/translations/en/Arch_Equipment.md index 87eb3d8a22..880ea3ac0c 100644 --- a/wiki/translations/en/Arch_Equipment.md +++ b/wiki/translations/en/Arch_Equipment.md @@ -7,6 +7,8 @@ SeeAlso:[Arch 3 views](Arch_3Views.md) --- +# Arch Equipment/en + ## Description The Equipment tool offers you a simple and convenient way to insert non-structural, standalone elements such as pieces of furniture, hidro-sanitary equipments or electrical appliances to your projects. Equipments are based on [Part shapes](Part_Workbench.md), which allow them to benefit from the solidity and possibilities of BRep geometry, and generate nice views when rendered to plan and section views. @@ -65,11 +67,5 @@ Equip = Arch.makeEquipment(Box) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Equipment/en diff --git a/wiki/translations/en/Arch_Fence.md b/wiki/translations/en/Arch_Fence.md index d38133f34e..d2dbb7e6be 100644 --- a/wiki/translations/en/Arch_Fence.md +++ b/wiki/translations/en/Arch_Fence.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Arch Fence/en + ## Description The [Arch Fence](Arch_Fence.md) is a object that builds a fence by repeating a single fence post and section along a given path. @@ -94,8 +96,5 @@ post = FreeCAD.ActiveDocument.Post Fence = Arch.buildFence(fence_section, post, sketch) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Fence/en diff --git a/wiki/translations/en/Arch_Floor.md b/wiki/translations/en/Arch_Floor.md index 1940fec45b..06c5fda0e1 100644 --- a/wiki/translations/en/Arch_Floor.md +++ b/wiki/translations/en/Arch_Floor.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Building](Arch_Building.md), [Arch BuildingPart](Arch_BuildingPart.md), [Arch Site](Arch_Site.md) --- +# Arch Floor/en + ## Description The [Arch Floor](Arch_Floor.md) is a special type of FreeCAD group object that has a couple of additional properties particularly suited for building floors. Particularly, they have a height property, that its children objects ([walls](Arch_Wall.md) and [structures](Arch_Structure.md)) can use to set their own height automatically. They are mostly used to organize your model. @@ -66,11 +68,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor/en diff --git a/wiki/translations/en/Arch_Frame.md b/wiki/translations/en/Arch_Frame.md index e2aeabafc6..2e8a700db9 100644 --- a/wiki/translations/en/Arch_Frame.md +++ b/wiki/translations/en/Arch_Frame.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Structure](Arch_Structure.md) --- +# Arch Frame/en + ## Description The ** [Arch Frame](Arch_Frame.md)** tool is used to build all kinds of frame objects based on a profile and a layout. The profile is extruded along the edges of the layout, which can be any 2D object such as a [sketch](Sketcher_Workbench.md), or a [Draft object](Draft_Workbench.md). It is especially useful to create railings, or frame walls. Frame objects can then easily be turned into [wall](Arch_Wall.md) or [structure](Arch_Structure.md) objects. @@ -73,11 +75,5 @@ Frame = Arch.makeFrame(baseobj, profile) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Frame/en diff --git a/wiki/translations/en/Arch_Git.md b/wiki/translations/en/Arch_Git.md index 407b514c23..c4cbe769c3 100644 --- a/wiki/translations/en/Arch_Git.md +++ b/wiki/translations/en/Arch_Git.md @@ -1,2 +1,5 @@ # Arch Git/en 1. REDIRECT [WebTools\_Git/en](WebTools_Git/en.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Git/en diff --git a/wiki/translations/en/Arch_Grid.md b/wiki/translations/en/Arch_Grid.md index 25863c2ee9..1db4488647 100644 --- a/wiki/translations/en/Arch_Grid.md +++ b/wiki/translations/en/Arch_Grid.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Axis](Arch_Axis.md), [Arch AxisSystem](Arch_AxisSystem.md) --- +# Arch Grid/en + ## Description The ** [Arch Grid](Arch_Grid.md)** tool allows you to place a grid-like object in the document. This object is meant to serve as a base to build Arch objects that need a regular but complex frame, such as windows, curtain walls, column grids, railings, etc. The Grid object is editable like a spreadsheet, where you can add or remove columns and rows, define their size, and merge cells. @@ -87,8 +89,5 @@ Structure.Axis = Grid FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Grid/en diff --git a/wiki/translations/en/Arch_IFC.md b/wiki/translations/en/Arch_IFC.md index 8e21225345..bc491fade0 100644 --- a/wiki/translations/en/Arch_IFC.md +++ b/wiki/translations/en/Arch_IFC.md @@ -1,7 +1,4 @@ # Arch IFC/en - - - {{TOCright}} ## Description @@ -75,3 +72,6 @@ If the shape of exported objects is based on an extrusion or a boolean operation [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IFC/en diff --git a/wiki/translations/en/Arch_IfcExplorer.md b/wiki/translations/en/Arch_IfcExplorer.md index 15d330d119..253a4ef755 100644 --- a/wiki/translations/en/Arch_IfcExplorer.md +++ b/wiki/translations/en/Arch_IfcExplorer.md @@ -6,6 +6,8 @@ SeeAlso:[Arch IFC](Arch_IFC.md) --- +# Arch IfcExplorer/en + ## Description The [IFC explorer](Arch_IfcExplorer.md) is a simple utility to explore the contents of an [IFC](Arch_IFC.md) file. IFC files are text files, and are therefore readable in a text editor, but the information is condensed, unformatted, and difficult to browse. This utility presents to the user the exact same content, but displayed in an organized and readable method. The \"[IfcOpenShell](IfcOpenShell.md)\" software library must be installed for this utility to work. @@ -31,3 +33,6 @@ The purpose of this explorer is simply to allow you to check what is really writ [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcExplorer/en diff --git a/wiki/translations/en/Arch_IfcSpreadsheet.md b/wiki/translations/en/Arch_IfcSpreadsheet.md index ef258f299a..8e01f4ef5e 100644 --- a/wiki/translations/en/Arch_IfcSpreadsheet.md +++ b/wiki/translations/en/Arch_IfcSpreadsheet.md @@ -7,6 +7,8 @@ SeeAlso:[Arch IFC](Arch_IFC.md), [Arch IfcExplorer](Arch_IfcExplorer.md) --- +# Arch IfcSpreadsheet/en + ## Description This tool creates a spreadsheet to store [IFC](Arch_IFC.md) properties of an object. @@ -44,8 +46,5 @@ FreeCAD.ActiveDocument.recompute() spreadsheet = Arch.makeIfcSpreadsheet(Wall) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcSpreadsheet/en diff --git a/wiki/translations/en/Arch_JSON.md b/wiki/translations/en/Arch_JSON.md index df7d4a35c5..3deb19da22 100644 --- a/wiki/translations/en/Arch_JSON.md +++ b/wiki/translations/en/Arch_JSON.md @@ -1,9 +1,4 @@ # Arch JSON/en - - - - - The main purpose of this export format is to make it easier to process FreeCAD model data from programming languages. The [JSON](http://json.org/) format is as follows: { @@ -31,3 +26,6 @@ Note that facets form triangles and their integer values reference points in the [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch JSON/en diff --git a/wiki/translations/en/Arch_MakeIfcSpreadsheet.md b/wiki/translations/en/Arch_MakeIfcSpreadsheet.md index e0c71cf041..9684695e1a 100644 --- a/wiki/translations/en/Arch_MakeIfcSpreadsheet.md +++ b/wiki/translations/en/Arch_MakeIfcSpreadsheet.md @@ -1,2 +1,5 @@ # Arch MakeIfcSpreadsheet/en 1. REDIRECT [Arch\_IfcSpreadsheet/en](Arch_IfcSpreadsheet/en.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MakeIfcSpreadsheet/en diff --git a/wiki/translations/en/Arch_MergeWalls.md b/wiki/translations/en/Arch_MergeWalls.md index d0cd94a0d2..8a7180e23c 100644 --- a/wiki/translations/en/Arch_MergeWalls.md +++ b/wiki/translations/en/Arch_MergeWalls.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md) --- +# Arch MergeWalls/en + ## Description The [MergeWalls](Arch_MergeWalls.md) tool fuses two or more selected ** [Arch Walls](Arch_Wall.md)**. @@ -47,8 +49,5 @@ FreeCAD.ActiveDocument.recompute() base = Arch.joinWalls([Wall1, Wall2]) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MergeWalls/en diff --git a/wiki/translations/en/Arch_MeshToShape.md b/wiki/translations/en/Arch_MeshToShape.md index 847ea3a562..93e58f36a5 100644 --- a/wiki/translations/en/Arch_MeshToShape.md +++ b/wiki/translations/en/Arch_MeshToShape.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch RemoveShape](Arch_RemoveShape.md) --- +# Arch MeshToShape/en + ## Description [Arch MeshToShape](Arch_MeshToShape.md) converts a selected [Mesh](Mesh.md) ([Mesh Feature](Mesh_Feature.md)) object into a [Shape](Shape.md) ([Part Feature](Part_Feature.md)) object. @@ -58,8 +60,5 @@ FreeCAD.ActiveDocument.recompute() new_obj = Arch.meshToShape(Box) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MeshToShape/en diff --git a/wiki/translations/en/Arch_Module.md b/wiki/translations/en/Arch_Module.md index 2e19bffb03..0f2012932f 100644 --- a/wiki/translations/en/Arch_Module.md +++ b/wiki/translations/en/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/en 1. REDIRECT [Arch\_Workbench/en](Arch_Workbench/en.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/en diff --git a/wiki/translations/en/Arch_MultiMaterial.md b/wiki/translations/en/Arch_MultiMaterial.md index 424676136e..293456a71d 100644 --- a/wiki/translations/en/Arch_MultiMaterial.md +++ b/wiki/translations/en/Arch_MultiMaterial.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SetMaterial](Arch_SetMaterial.md), [Arch CompSetMaterial](Arch_CompSetMaterial.md) --- +# Arch MultiMaterial/en + ## Description The Multi-Material tool defines a list of [materials](Material.md) with, for each material, a name and a thickness value. This multi-materials list can then be added to an [Arch](Arch_Workbench.md) object instead of a single [Arch Material](Arch_SetMaterial.md) . @@ -48,8 +50,5 @@ This roughly corresponds to a combination of [IfcMaterialLayerSet](https://stand ## Scripting - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MultiMaterial/en diff --git a/wiki/translations/en/Arch_Nest.md b/wiki/translations/en/Arch_Nest.md index 87f781329d..0412756944 100644 --- a/wiki/translations/en/Arch_Nest.md +++ b/wiki/translations/en/Arch_Nest.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Panel](Arch_Panel.md), [Arch Panel Sheet](Arch_Panel_Sheet.md) --- +# Arch Nest/en + ## Description The ** [Arch Nest](Arch_Nest.md)** tool allows to select a flat shape to be a container, and a series of other flat shapes to be organized inside the space defined by the container shape. This is typically needed for CNC operations, where you want to cut a series of pieces out of a base panel, and need to organize those pieces in the best possible compact way so they occupy less space on the panel. @@ -38,8 +40,5 @@ The algorithm behind the Nest tool is in constant evolution, and is currently no - At the moment, margin / spacing between the pieces is not implemented yet - The calculation can take a lot of time with many objects. That will be optimized in the future - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Nest/en diff --git a/wiki/translations/en/Arch_OBJ.md b/wiki/translations/en/Arch_OBJ.md index 1af414553f..26a23454ae 100644 --- a/wiki/translations/en/Arch_OBJ.md +++ b/wiki/translations/en/Arch_OBJ.md @@ -1,9 +1,4 @@ # Arch OBJ/en - - - - - ## Description Additionally to the standard FreeCAD [OBJ](http://en.wikipedia.org/wiki/Wavefront_.obj_file) exporter, the [Arch Workbench](Arch_Workbench.md) features an alternative exporter that exports coplanar faces as whole OBJ faces, instead of triangulating [Shape](Shape.md)-based objects, like the standard exporter does. @@ -53,3 +48,6 @@ mesh.write(Filename="new_example.obj", Material=face_colors, Format="obj") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch OBJ/en diff --git a/wiki/translations/en/Arch_Panel.md b/wiki/translations/en/Arch_Panel.md index 44041bca17..28ed2341a2 100644 --- a/wiki/translations/en/Arch_Panel.md +++ b/wiki/translations/en/Arch_Panel.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Panel Cut](Arch_Panel_Cut.md), [Arch Panel Sheet](Arch_Panel_Sheet.md) --- +# Arch Panel/en + ## Description This tool allows you to build all kinds of panel-like elements, typically for panel constructions like the [WikiHouse](http://www.wikihouse.cc/) project, but also for all kinds of objects that are based on a flat profile. @@ -89,8 +91,5 @@ Panel = Arch.makePanel(Rect, thickness=36) - [Wikihouse porting tutorial](Wikihouse_porting_tutorial.md) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel/en diff --git a/wiki/translations/en/Arch_Panel_Cut.md b/wiki/translations/en/Arch_Panel_Cut.md index 77a1435559..aa883b1c2d 100644 --- a/wiki/translations/en/Arch_Panel_Cut.md +++ b/wiki/translations/en/Arch_Panel_Cut.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Panel](Arch_Panel.md), [Arch Panel Sheet](Arch_Panel_Sheet.md), [Arch Nest](Arch_Nest.md) --- +# Arch Panel Cut/en + ## Description This tool creates, in the 3D document, a flat, 2D view of an [Arch Panel](Arch_Panel.md), to be included in an [Arch Panel Sheet](Arch_Panel_Sheet.md) or directly exported to [DXF](Draft_DXF.md). The Panel Cut objects are also supported by the [Path Workbench](Path_Workbench.md). @@ -95,8 +97,5 @@ FreeCAD.ActiveDocument.recompute() - [Wikihouse porting tutorial](Wikihouse_porting_tutorial.md) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Cut/en diff --git a/wiki/translations/en/Arch_Panel_Sheet.md b/wiki/translations/en/Arch_Panel_Sheet.md index 26101b65cf..dee5a9b2d7 100644 --- a/wiki/translations/en/Arch_Panel_Sheet.md +++ b/wiki/translations/en/Arch_Panel_Sheet.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Panel](Arch_Panel.md), [Arch Panel Cut](Arch_Panel_Cut.md), [Arch Nest](Arch_Nest.md) --- +# Arch Panel Sheet/en + ## Description This tool allows to build a 2D sheet, including any number of [Arch Panel Cut](Arch_Panel_Cut.md) objects, or any other 2D object such as those made by the [Draft Workbench](Draft_Workbench.md) and [Sketcher Workbench](Sketcher_Workbench.md). The Panel Sheet is typically made to layout cuts to be made by a CNC machine. These sheets can then be exported to a [DXF](Draft_DXF.md) file. @@ -113,8 +115,5 @@ Sheet = Arch.makePanelSheet([Cut1, Cut2, Cut3]) - [Wikihouse porting tutorial](Wikihouse_porting_tutorial.md) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Sheet/en diff --git a/wiki/translations/en/Arch_Pipe.md b/wiki/translations/en/Arch_Pipe.md index 0fe4fbc660..a09471e267 100644 --- a/wiki/translations/en/Arch_Pipe.md +++ b/wiki/translations/en/Arch_Pipe.md @@ -8,6 +8,8 @@ SeeAlso:[Arch PipeConnector](Arch_PipeConnector.md), [Arch Equipment](Arch_Equipment.md) --- +# Arch Pipe/en + ## Description This tool allows to create pipes from scratch, or from selected objects. The selected objects must be Part-based (Draft, Sketch, etc..) and contain one and only one open Wire. @@ -108,8 +110,5 @@ Pipe2 = Arch.makePipe(diameter=120, length=3000) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Pipe/en diff --git a/wiki/translations/en/Arch_PipeConnector.md b/wiki/translations/en/Arch_PipeConnector.md index 43192dbbce..4958e9a54f 100644 --- a/wiki/translations/en/Arch_PipeConnector.md +++ b/wiki/translations/en/Arch_PipeConnector.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Pipe](Arch_Pipe.md), [Arch Equipment](Arch_Equipment.md) --- +# Arch PipeConnector/en + ## Description This tool allows to create corner or tee connection between two or three selected [Arch Pipes](Arch_Pipe.md). @@ -73,11 +75,5 @@ Conn3 = Arch.makePipeConnector([Pipe4, Pipe5], radius=400) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch PipeConnector/en diff --git a/wiki/translations/en/Arch_Preferences.md b/wiki/translations/en/Arch_Preferences.md index f76eb0dbd5..25f6ea5148 100644 --- a/wiki/translations/en/Arch_Preferences.md +++ b/wiki/translations/en/Arch_Preferences.md @@ -1,6 +1,4 @@ # Arch Preferences/en - - The preferences for the [Arch Workbench](Arch_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), in the menu **Edit → Preferences → Arch**. There are two tabs: General settings, and Defaults. @@ -17,3 +15,6 @@ There are two tabs: General settings, and Defaults. [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Preferences/en diff --git a/wiki/translations/en/Arch_Profile.md b/wiki/translations/en/Arch_Profile.md index 11bd89accf..b89ce2b23f 100644 --- a/wiki/translations/en/Arch_Profile.md +++ b/wiki/translations/en/Arch_Profile.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Arch Profile/en + ## Description The Profile tool builds a parametric 2D profile object. This object can then be used as a base in different other tools that perform extrusions, such as [Arch Frame](Arch_Frame.md), [Arch CurtainWall](Arch_CurtainWall.md) or [Part Extrude](Part_Extrude.md). @@ -88,8 +90,5 @@ Arch.makeProfile([0,'REC','REC100x100','R',100,100]) Where the first element of the list is an order number that is not used yet. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Profile/en diff --git a/wiki/translations/en/Arch_Project.md b/wiki/translations/en/Arch_Project.md index d66080aefb..2a11fb8aa3 100644 --- a/wiki/translations/en/Arch_Project.md +++ b/wiki/translations/en/Arch_Project.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Site](Arch_Site.md), [Arch Building](Arch_Building.md) --- +# Arch Project/en + ## Description The Arch Project is a special object suitable to add better compatibility with [IFC](Arch_IFC.md) files. Every IFC file is required to contain an [IfcProject](https://standards.buildingsmart.org/IFC/RELEASE/IFC4_1/FINAL/HTML/schema/ifckernel/lexical/ifcproject.htm) entity. The IfcProject is mostly used to define general project settings such as projection systems, for GIS compatibility, or units systems. @@ -20,8 +22,5 @@ Note that, although any other BIM object can be added to a Project, which the IF 1. Press the ** [Arch Project](Arch_Project.md)** button, or press the **P** then **O** keys. 2. Add any object to your project by drag-and-dropping them onto the Project in the [Tree view](Tree_view.md). - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Project/en diff --git a/wiki/translations/en/Arch_Rebar.md b/wiki/translations/en/Arch_Rebar.md index 28a0e74a3b..c691cf0e89 100644 --- a/wiki/translations/en/Arch_Rebar.md +++ b/wiki/translations/en/Arch_Rebar.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md), [Reinforcement](Reinforcement_Workbench.md) --- +# Arch Rebar/en + ## Description The [Arch Rebar](Arch_Rebar.md) tool allows you to place [reinforcing bars](http://en.wikipedia.org/wiki/Rebar) inside [Arch Structure](Arch_Structure.md) objects. @@ -120,3 +122,6 @@ FreeCAD.ActiveDocument.recompute() [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar/en diff --git a/wiki/translations/en/Arch_Rebar_BOM.md b/wiki/translations/en/Arch_Rebar_BOM.md index f8e3b02011..76bf91786e 100644 --- a/wiki/translations/en/Arch_Rebar_BOM.md +++ b/wiki/translations/en/Arch_Rebar_BOM.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Reinforcement Bar Bending Schedule](Reinforcement_Bar_Bending_Schedule.md), [Arch Rebar Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) --- +# Arch Rebar BOM/en + ## Description The [Bill Of Material](Arch_Rebar_BOM.md) tool allows the user to create a bill of material of reinforcing bars. @@ -524,3 +526,6 @@ BillOfMaterial_SVG.makeBillOfMaterialSVG( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BOM/en diff --git a/wiki/translations/en/Arch_Rebar_BeamReinforcement.md b/wiki/translations/en/Arch_Rebar_BeamReinforcement.md index fc8ef095e9..e7c8d5592e 100644 --- a/wiki/translations/en/Arch_Rebar_BeamReinforcement.md +++ b/wiki/translations/en/Arch_Rebar_BeamReinforcement.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) --- +# Arch Rebar BeamReinforcement/en + ## Description The [Beam Reinforcement](Arch_Rebar_BeamReinforcement.md) tool allows the user to create reinforcing bars inside a Beam [Arch Structure](Arch_Structure.md) object. @@ -366,3 +368,6 @@ RebarGroup = TwoLeggedBeam.makeReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BeamReinforcement/en diff --git a/wiki/translations/en/Arch_Rebar_BentShape.md b/wiki/translations/en/Arch_Rebar_BentShape.md index a7146d87e8..3759d573c9 100644 --- a/wiki/translations/en/Arch_Rebar_BentShape.md +++ b/wiki/translations/en/Arch_Rebar_BentShape.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Stirrup](Arch_Rebar_Stirrup.md) --- +# Arch Rebar BentShape/en + ## Description The [BentShape Rebar](Arch_Rebar_BentShape.md) tool allows the user to create a set of bent reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -152,3 +154,6 @@ BentShapeRebar.editBentShapeRebar(Rebar2, 50, 35, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BentShape/en diff --git a/wiki/translations/en/Arch_Rebar_Circular_ColumnReinforcement.md b/wiki/translations/en/Arch_Rebar_Circular_ColumnReinforcement.md index 3e9e8d05b6..a6c437192b 100644 --- a/wiki/translations/en/Arch_Rebar_Circular_ColumnReinforcement.md +++ b/wiki/translations/en/Arch_Rebar_Circular_ColumnReinforcement.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md), [Arch Rebar](Arch_Rebar.md) --- +# Arch Rebar Circular ColumnReinforcement/en + ## Description The [Column Reinforcement](Arch_Rebar_Circular_ColumnReinforcement.md) tool allows the user to create reinforcing bars inside a Column [Arch Structure](Arch_Structure.md) object. @@ -201,3 +203,6 @@ rebar_group = CircularColumn.editReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Circular ColumnReinforcement/en diff --git a/wiki/translations/en/Arch_Rebar_ColumnReinforcement.md b/wiki/translations/en/Arch_Rebar_ColumnReinforcement.md index 3746d28410..6b5a502490 100644 --- a/wiki/translations/en/Arch_Rebar_ColumnReinforcement.md +++ b/wiki/translations/en/Arch_Rebar_ColumnReinforcement.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Helical Rebar](Arch_Rebar_Helical.md), [Arch ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) --- +# Arch Rebar ColumnReinforcement/en + ## Description The [Column Reinforcement](Arch_Rebar_ColumnReinforcement.md) tool allows the user to create reinforcing bars inside a Column [Arch Structure](Arch_Structure.md) object. @@ -563,3 +565,6 @@ rebar_group = SingleTieMultipleRebars.editSingleTieMultipleRebars( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar ColumnReinforcement/en diff --git a/wiki/translations/en/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md b/wiki/translations/en/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md index 896fe43964..4e94ca8c85 100644 --- a/wiki/translations/en/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md +++ b/wiki/translations/en/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Rebar ColumnReinforcement TwoTiesSixRebars/en + ## Description The [Column Reinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) tool allows the user to create reinforcing bars (Two Ties Six Rebars) inside a Column [Arch Structure](Arch_Structure.md) object. @@ -336,3 +338,6 @@ rebar_group = TwoTiesSixRebars.editTwoTiesSixRebars( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar ColumnReinforcement TwoTiesSixRebars/en diff --git a/wiki/translations/en/Arch_Rebar_Dimensioning.md b/wiki/translations/en/Arch_Rebar_Dimensioning.md index e1b66dcccb..1736022857 100644 --- a/wiki/translations/en/Arch_Rebar_Dimensioning.md +++ b/wiki/translations/en/Arch_Rebar_Dimensioning.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Rebar Dimensioning/en + Please Note: The below work is present in develop branch of Reinforcement workbench [here](https://github.com/amrit3701/FreeCAD-Reinforcement/tree/develop) ## Description @@ -352,3 +354,6 @@ for visible_rebar in visible_rebars: [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Dimensioning/en diff --git a/wiki/translations/en/Arch_Rebar_Drawing.md b/wiki/translations/en/Arch_Rebar_Drawing.md index 68d935d89b..e6eff5592d 100644 --- a/wiki/translations/en/Arch_Rebar_Drawing.md +++ b/wiki/translations/en/Arch_Rebar_Drawing.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Rebar Drawing/en + Please Note: The below work is present in develop branch of Reinforcement workbench [here](https://github.com/amrit3701/FreeCAD-Reinforcement/tree/develop) ## Description @@ -385,3 +387,6 @@ for drawing_view in ("Front", "Rear", "Left", "Right", "Top", "Bottom"): [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Drawing/en diff --git a/wiki/translations/en/Arch_Rebar_Drawing_Dimensioning.md b/wiki/translations/en/Arch_Rebar_Drawing_Dimensioning.md index f8a92aa49d..cf3a93fc18 100644 --- a/wiki/translations/en/Arch_Rebar_Drawing_Dimensioning.md +++ b/wiki/translations/en/Arch_Rebar_Drawing_Dimensioning.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar Bill Of Material](Arch_Rebar_BOM.md), [Reinforcement Rebar Shape Cut List](Reinforcement_Bar_Shape_Cut_List.md) --- +# Arch Rebar Drawing Dimensioning/en + ## Description The [Reinforcement Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) tool allows the user to create drawing and dimensioning of reinforcing bars. @@ -1076,3 +1078,6 @@ for visible_rebar in visible_rebars: [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Drawing Dimensioning/en diff --git a/wiki/translations/en/Arch_Rebar_Helical.md b/wiki/translations/en/Arch_Rebar_Helical.md index f58b185989..cc54983173 100644 --- a/wiki/translations/en/Arch_Rebar_Helical.md +++ b/wiki/translations/en/Arch_Rebar_Helical.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Stirrup](Arch_Rebar_Stirrup.md), [Arch Rebar Column Reinforcement](Arch_Rebar_ColumnReinforcement.md) --- +# Arch Rebar Helical/en + ## Description The [Helical Rebar](Arch_Rebar_Helical.md) tool allows the user to create a continuous helical reinforcing bar inside an [Arch Structure](Arch_Structure.md) object. @@ -125,3 +127,6 @@ HelicalRebar.editHelicalRebar(Rebar, 20, 100, 20, 20, 100) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Helical/en diff --git a/wiki/translations/en/Arch_Rebar_LShape.md b/wiki/translations/en/Arch_Rebar_LShape.md index 1d8a2496a4..206c6a8568 100644 --- a/wiki/translations/en/Arch_Rebar_LShape.md +++ b/wiki/translations/en/Arch_Rebar_LShape.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Bent](Arch_Rebar_BentShape.md) --- +# Arch Rebar LShape/en + ## Description The [LShape Rebar](Arch_Rebar_LShape.md) tool allows the user to create a set of L-shaped reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -149,3 +151,6 @@ LShapeRebar.editLShapeRebar(Rebar2, 50, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar LShape/en diff --git a/wiki/translations/en/Arch_Rebar_Slab_Reinforcement.md b/wiki/translations/en/Arch_Rebar_Slab_Reinforcement.md index 5861171cb8..20fff0023c 100644 --- a/wiki/translations/en/Arch_Rebar_Slab_Reinforcement.md +++ b/wiki/translations/en/Arch_Rebar_Slab_Reinforcement.md @@ -6,6 +6,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Helical Rebar](Arch_Rebar_Helical.md) --- +# Arch Rebar Slab Reinforcement/en + ## Description The [Slab Reinforcement](Arch_Rebar_Slab_Reinforcement.md) tool allows the user to create reinforcing bars inside a Slab [Arch Structure](Arch_Structure.md) object. @@ -317,3 +319,6 @@ slabReinforcementGroup = editSlabReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Slab Reinforcement/en diff --git a/wiki/translations/en/Arch_Rebar_Stirrup.md b/wiki/translations/en/Arch_Rebar_Stirrup.md index 0bd4a5d9fc..e371e8df3c 100644 --- a/wiki/translations/en/Arch_Rebar_Stirrup.md +++ b/wiki/translations/en/Arch_Rebar_Stirrup.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Helical](Arch_Rebar_Helical.md) --- +# Arch Rebar Stirrup/en + ## Description The [Stirrup Rebar](Arch_Rebar_Stirrup.md) tool allows the user to create a set of stirrup reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -142,3 +144,6 @@ Stirrup.editStirrup(Rebar, 20, 20, 20, 20, 50, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Stirrup/en diff --git a/wiki/translations/en/Arch_Rebar_Straight.md b/wiki/translations/en/Arch_Rebar_Straight.md index b1af00aef4..f4adb2ab91 100644 --- a/wiki/translations/en/Arch_Rebar_Straight.md +++ b/wiki/translations/en/Arch_Rebar_Straight.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch Rebar Straight/en + ## Description The [Arch Straight Rebar](Arch_Rebar_Straight.md) tool allows the user to create a set of straight reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -205,3 +207,6 @@ StraightRebar.editStraightRebar(Rebar4, 50, ("Right Side", 50), 100, 100, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Straight/en diff --git a/wiki/translations/en/Arch_Rebar_UShape.md b/wiki/translations/en/Arch_Rebar_UShape.md index 48f6ccff36..ec9c51236b 100644 --- a/wiki/translations/en/Arch_Rebar_UShape.md +++ b/wiki/translations/en/Arch_Rebar_UShape.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch Rebar UShape/en + ## Description The ** [UShape Rebar](Arch_Rebar_UShape.md)** tool allows the user to create a set of U-shaped reinforcing bars inside an ** [Arch Structure](Arch_Structure.md)** object. @@ -146,3 +148,6 @@ UShapeRebar.editUShapeRebar(Rebar2, 70, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar UShape/en diff --git a/wiki/translations/en/Arch_Reference.md b/wiki/translations/en/Arch_Reference.md index 83d4c0d660..5b96be804c 100644 --- a/wiki/translations/en/Arch_Reference.md +++ b/wiki/translations/en/Arch_Reference.md @@ -6,6 +6,8 @@ SeeAlso:[Arch BuildingPart](Arch_BuildingPart.md) --- +# Arch Reference/en + ## Description @@ -50,8 +52,5 @@ import Arch Arch.makeReference("/path/to/some/file.FSCtd","myPart") ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Reference/en diff --git a/wiki/translations/en/Arch_Remove.md b/wiki/translations/en/Arch_Remove.md index 97ef7fbfe1..ae7512ce8e 100644 --- a/wiki/translations/en/Arch_Remove.md +++ b/wiki/translations/en/Arch_Remove.md @@ -6,6 +6,8 @@ SeeAlso:[Arch CutLine](Arch_CutLine.md), [Arch CutPlane](Arch_CutPlane.md), [Arch Add](Arch_Add.md) --- +# Arch Remove/en + ## Description The Remove tools allows you to do 2 kinds of operations: @@ -62,10 +64,7 @@ Draft.move(Box, FreeCAD.Vector(1000, 700, 0)) Arch.removeComponents(Box, Wall) FreeCAD.ActiveDocument.recompute() -``` - - - - - +``` +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove/en diff --git a/wiki/translations/en/Arch_RemoveShape.md b/wiki/translations/en/Arch_RemoveShape.md index 16bac15cd6..5c4d0deae9 100644 --- a/wiki/translations/en/Arch_RemoveShape.md +++ b/wiki/translations/en/Arch_RemoveShape.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch RemoveShape/en + ## Description This tool attempts at removing the inner cubic shape of an ** [Arch Wall](Arch_Wall.md)** or ** [Arch Structure](Arch_Structure.md)**, and adjusting its properties, making it totally parametric. This tool will only work if the underlying shape is cubic (exactly 6 faces, all corners have only right angles). @@ -52,8 +54,5 @@ Arch.removeShape(Structure) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch RemoveShape/en diff --git a/wiki/translations/en/Arch_Roof.md b/wiki/translations/en/Arch_Roof.md index 0c300804f4..41352f7024 100644 --- a/wiki/translations/en/Arch_Roof.md +++ b/wiki/translations/en/Arch_Roof.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md), [Arch Wall](Arch_Wall.md) --- +# Arch Roof/en + ## Description The ** [Arch Roof](Arch_Roof.md)** tool allows for the creation of a sloped roof from a selected wire. The created roof object is parametric, keeping its relationship with the base object. The principle is that each edge is seen allotting a profile of roof (slope, width, overhang, thickness). @@ -106,8 +108,5 @@ roof1 = Arch.makeRoof(wire) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Roof/en diff --git a/wiki/translations/en/Arch_SHP.md b/wiki/translations/en/Arch_SHP.md index be260c1ddf..a7c01ed458 100644 --- a/wiki/translations/en/Arch_SHP.md +++ b/wiki/translations/en/Arch_SHP.md @@ -1,5 +1,5 @@ # Arch SHP/en - FreeCAD is able to import [shapefiles](https://en.wikipedia.org/wiki/Shapefile) +FreeCAD is able to import [shapefiles](https://en.wikipedia.org/wiki/Shapefile) The importer uses the shapefile.py library from , it is not found on your system on first run, the importer will propose to download and install it for you. @@ -21,3 +21,6 @@ Note that all the question of georeferenced units, with hundreds of projection s [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SHP/en diff --git a/wiki/translations/en/Arch_Schedule.md b/wiki/translations/en/Arch_Schedule.md index 5d5fa38ff2..1f28b1850f 100644 --- a/wiki/translations/en/Arch_Schedule.md +++ b/wiki/translations/en/Arch_Schedule.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Equipment](Arch_Equipment.md) --- +# Arch Schedule/en + ## Description The Schedule tool allows you to create and automatically populate a [spreadsheet](Spreadsheet_Workbench.md) with contents gathered from the model. @@ -96,8 +98,5 @@ The spreadsheet can then be exported to csv normally, from the Spreadsheet workb It is possible to add your own properties to objects. These are called [Dynamic properties](Property_editor#Actions.md). If they have been added with the **Prefix group name** option selected, their names will indeed start with the group name, but this prefix is not displayed in the [Property editor](Property_editor.md). Their names have this form: `NameOfGroup_NameOfProperty`. To reference them in a schedule this full name must be used. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Schedule/en diff --git a/wiki/translations/en/Arch_SectionPlane.md b/wiki/translations/en/Arch_SectionPlane.md index e93496365e..5b019de342 100644 --- a/wiki/translations/en/Arch_SectionPlane.md +++ b/wiki/translations/en/Arch_SectionPlane.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Shape2DView](Draft_Shape2DView.md), [TechDraw ArchView](TechDraw_ArchView.md) --- +# Arch SectionPlane/en + ## Description This tool places in the current document a section plane \"thing\", which defines a section or view plane. The \"thing\" takes its placement according to the current [Draft Working Plane](Draft_SelectPlane.md) and can be relocated and reoriented by moving and rotating it, until it describes the 2D view you want to obtain. The Section plane object will only consider a certain set of objects. Objects that are selected when you create a Section Plane will be added to that set automatically. Other objects can later be added or removed from a SectionPlane object with the [Arch Add component](Arch_Add.md) and [Arch Remove component](Arch_Remove.md) tools, or by double-clicking the Section Plane in the tree view. @@ -108,11 +110,5 @@ Section3 = Arch.makeSectionPlane([Site]) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane/en diff --git a/wiki/translations/en/Arch_SelectNonSolidMeshes.md b/wiki/translations/en/Arch_SelectNonSolidMeshes.md index f813b40a17..c12d0f083d 100644 --- a/wiki/translations/en/Arch_SelectNonSolidMeshes.md +++ b/wiki/translations/en/Arch_SelectNonSolidMeshes.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch SelectNonSolidMeshes/en + ## Description This tool identifies and selects the non-solid (non-[manifold](http://en.wikipedia.org/wiki/Manifold)) meshes in a selected group of selected Mesh Workbench [Mesh](Mesh_Workbench.md) objects. @@ -15,8 +17,5 @@ This tool identifies and selects the non-solid (non-[manifold](http://en.wikiped 1. Select a mesh object. 2. Press the ** [Select non solid](Arch_SelectNonSolidMeshes.md)** entry in **Arch → Utilities → Select non solid**. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SelectNonSolidMeshes/en diff --git a/wiki/translations/en/Arch_SetMaterial.md b/wiki/translations/en/Arch_SetMaterial.md index 2d505e8905..672e2fd18f 100644 --- a/wiki/translations/en/Arch_SetMaterial.md +++ b/wiki/translations/en/Arch_SetMaterial.md @@ -7,6 +7,8 @@ SeeAlso:[Arch CompSetMaterial](Arch_CompSetMaterial.md), [Arch MultiMaterial](Arch_MultiMaterial.md) --- +# Arch SetMaterial/en + ## Description The Material tools allows to add [materials](Material.md) to the active document, and attribute a material to an [Arch](Arch_Workbench.md) object. Materials can all the properties of a certain material, and control the color of the object to which it is attached. Materials are stored into a **Materials** folder in the active document. @@ -44,8 +46,5 @@ The Material tools allows to add [materials](Material.md) to the active document This roughly corresponds to [IfcMaterial](https://standards.buildingsmart.org/IFC/DEV/IFC4_2/FINAL/HTML/link/ifcmaterial.htm). - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SetMaterial/en diff --git a/wiki/translations/en/Arch_Site.md b/wiki/translations/en/Arch_Site.md index d50b19526f..e69df513ea 100644 --- a/wiki/translations/en/Arch_Site.md +++ b/wiki/translations/en/Arch_Site.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Floor](Arch_Floor.md), [Arch Building](Arch_Building.md) --- +# Arch Site/en + ## Description The Arch Site is a special object that combines properties of a standard FreeCAD group object and Arch objects. It is particularly suited for representing a whole project site, or terrain. In IFC-based architectural work, it is mostly used to organize your model, by containing [building](Arch_Building.md) objects. The site is also used to manage and display a physical terrain, and can computes volumes of earth to be added or removed. @@ -163,8 +165,5 @@ Node = Arch.makeSolarDiagram(-46.38, -23.33, scale=10000, complete=True) FreeCAD.Gui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Site/en diff --git a/wiki/translations/en/Arch_Space.md b/wiki/translations/en/Arch_Space.md index feff9fb2f3..232b99652e 100644 --- a/wiki/translations/en/Arch_Space.md +++ b/wiki/translations/en/Arch_Space.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Structure](Arch_Structure.md) --- +# Arch Space/en + ## Description The Space tool allows you to define an empty volume, either by basing it on a solid shape, or by defining its boundaries, or a mix of both. If it is based solely on boundaries, the volume is calculated by starting from the bounding box of all the given boundaries, and subtracting the spaces behind each boundary. The space object always defines a solid volume. The floor area of a space object, calculated by intersecting a horizontal plane at the center of mass of the space volume, can also be displayed. @@ -136,8 +138,5 @@ selection = FreeCADGui.Selection.getSelectionEx() Arch.removeSpaceBoundaries(Space, selection) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Space/en diff --git a/wiki/translations/en/Arch_SplitMesh.md b/wiki/translations/en/Arch_SplitMesh.md index 73e32bcb00..e6d4903ee2 100644 --- a/wiki/translations/en/Arch_SplitMesh.md +++ b/wiki/translations/en/Arch_SplitMesh.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SelectNonSolidMeshes](Arch_SelectNonSolidMeshes.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch SplitMesh/en + ## Description This tool splits a selected [Mesh](Mesh_Workbench.md) object into its separate components @@ -55,11 +57,5 @@ mesh_obj.ViewObject.DisplayMode = "Flat Lines" new_list = Arch.splitMesh(mesh_obj) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SplitMesh/en diff --git a/wiki/translations/en/Arch_Stairs.md b/wiki/translations/en/Arch_Stairs.md index bfb942b656..a6dfd4d16c 100644 --- a/wiki/translations/en/Arch_Stairs.md +++ b/wiki/translations/en/Arch_Stairs.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md), [Arch Equipment](Arch_Equipment.md) --- +# Arch Stairs/en + ## Description The [Arch Stairs](Arch_Stairs.md) tool allows you to build automatically several types of stairs. At the moment, only straight stairs (with or without a central landing) are supported. Stairs can be built from scratch, or from a straight [line](Draft_Line.md), in which case the stairs follow the line. If the line is not horizontal but has a vertical inclination, the stairs will also follow its slope. @@ -94,8 +96,5 @@ import Arch Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Stairs/en diff --git a/wiki/translations/en/Arch_Structure.md b/wiki/translations/en/Arch_Structure.md index c42e92d01b..0a885a59b1 100644 --- a/wiki/translations/en/Arch_Structure.md +++ b/wiki/translations/en/Arch_Structure.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Rebar](Arch_Rebar.md) --- +# Arch Structure/en + ## Description The [Arch Structure](Arch_Structure.md) tool allows you to build structural elements such as columns or beams, by specifying their width, length and height, or by basing them on a 2D profile (face, wire or sketch). @@ -114,10 +116,7 @@ FreeCAD.ActiveDocument.recompute() Structure2 = Arch.makeStructure(None, length=500, width=1000, height=3000) Draft.move(Structure2, FreeCAD.Vector(2000, 0, 0)) FreeCAD.ActiveDocument.recompute() -``` - - - - - +``` +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/en diff --git a/wiki/translations/en/Arch_Survey.md b/wiki/translations/en/Arch_Survey.md index 02ae62e5b3..6942f6a6bc 100644 --- a/wiki/translations/en/Arch_Survey.md +++ b/wiki/translations/en/Arch_Survey.md @@ -6,6 +6,8 @@ SeeAlso:[Macro FCInfo](Macro_FCInfo.md), [Macro SimpleProperties](Macro_SimpleProperties.md) --- +# Arch Survey/en + ## Description The ** [Arch Survey](Arch_Survey.md)** tool enters a special surveying mode, which allows you to quickly grab measurements and information from a model, and transfer that information to other applications. Once you are in Survey mode, clicking on different subelements of 3D objects gathers the following information (depending on what you click): @@ -64,8 +66,5 @@ for obj in selection: print("Center of Mass: %f", element.CenterOfMass) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Survey/en diff --git a/wiki/translations/en/Arch_ToggleIfcBrepFlag.md b/wiki/translations/en/Arch_ToggleIfcBrepFlag.md index 396a9b22ee..29f095c631 100644 --- a/wiki/translations/en/Arch_ToggleIfcBrepFlag.md +++ b/wiki/translations/en/Arch_ToggleIfcBrepFlag.md @@ -6,6 +6,8 @@ SeeAlso:[Arch IfcExplorer](Arch_IfcExplorer.md), [Arch IFC](Arch_IFC.md) --- +# Arch ToggleIfcBrepFlag/en + ## Description This tool turns the IfcBrep flag of a selected [Arch](Arch_Workbench.md) object on/off (the default is always off). If the flag in on, when exported to IFC, the object will be exported as an [IfcFacetedBrep](http://www.buildingsmart-tech.org/ifc/IFC4/final/html/schema/ifcgeometricmodelresource/lexical/ifcfacetedbrep.htm) object, even if a higher-level kind of export such as IfcExtrudedAreaSolid or IfcBooleanResult is possible. Although IfcFacetedBrep objects are heavier and less editable (they loose some geometry information such as the modeling history), they are often less error-prone. Setting this flag allows to solve some cases of objects that are not exported correctly when the flag is not set. @@ -15,11 +17,5 @@ This tool turns the IfcBrep flag of a selected [Arch](Arch_Workbench.md) object 1. Select an Arch object. 2. Select the **** button, or **Arch** → **Utilities** → ** [Toggle IfcBrepFlag](Arch_ToggleIfcBrepFlag.md)** from the top menu. - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleIfcBrepFlag/en diff --git a/wiki/translations/en/Arch_ToggleSubs.md b/wiki/translations/en/Arch_ToggleSubs.md index 24b1e48080..35bb5cbf29 100644 --- a/wiki/translations/en/Arch_ToggleSubs.md +++ b/wiki/translations/en/Arch_ToggleSubs.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Component](Arch_Component.md) --- +# Arch ToggleSubs/en + ## Description This tools toggles the visibility of all the subtractions of an [Arch](Arch_Workbench.md) object between visible and hidden. @@ -26,8 +28,5 @@ The color of a subtraction element can follow the style of [Draft construction]( The [Draft construction](Draft_ToggleConstructionMode.md) style can be set in the [Draft Preferences](Draft_Preferences.md), in the menu **Preferences → Draft → General Draft**. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleSubs/en diff --git a/wiki/translations/en/Arch_Truss.md b/wiki/translations/en/Arch_Truss.md index de3473d24c..e8484ed12d 100644 --- a/wiki/translations/en/Arch_Truss.md +++ b/wiki/translations/en/Arch_Truss.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Arch Truss/en + ## Description The [Arch Truss](Arch_Truss.md) tool builds a [truss](https://en.wikipedia.org/wiki/Truss) object, either from a selected linear object (lie a [Draft Line](Draft_Line.md) or [Sketch](Sketcher_NewSketch.md)), or from scratch, if no object is selected when launching the command. @@ -89,8 +91,5 @@ truss.HeightEnd = 400 # adjust other needed properties ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Truss/en diff --git a/wiki/translations/en/Arch_Wall.md b/wiki/translations/en/Arch_Wall.md index de42c95159..22fb1f8fd1 100644 --- a/wiki/translations/en/Arch_Wall.md +++ b/wiki/translations/en/Arch_Wall.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md) --- +# Arch Wall/en + ## Description This tool builds a Wall object from scratch or on top of any other [shape](Part_Workbench.md)-based or [mesh](Mesh_Workbench.md)-based object. A wall can be built without any base object, in which case it behaves as a cubic volume, using length, width and height properties. When built on top of an existing shape, a wall can be based on: @@ -137,11 +139,5 @@ Draft.move(Wall2, FreeCAD.Vector(0, -1000, 0)) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/en diff --git a/wiki/translations/en/Arch_Window.md b/wiki/translations/en/Arch_Window.md index 191d03c250..49341aa43c 100644 --- a/wiki/translations/en/Arch_Window.md +++ b/wiki/translations/en/Arch_Window.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Add](Arch_Add.md) --- +# Arch Window/en + ## Description An [Arch Window](Arch_Window.md) is a base object for all kinds of \"embeddable\" objects, such as windows and doors. It is designed to be either independent, or \"hosted\" inside another component such as an [Arch Wall](Arch_Wall.md), [Arch Structure](Arch_Structure.md), or [Arch Roof](Arch_Roof.md). It has its own geometry, that can be made of several solid components (commonly a frame and inner panels), and also defines a volume to be subtracted from the host objects, in order to create an opening. @@ -220,11 +222,5 @@ Door = Arch.makeWindowPreset("Simple door", placement=place) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Window/en diff --git a/wiki/translations/en/Arch_Workbench.md b/wiki/translations/en/Arch_Workbench.md index 7272ffa31e..6348f240bc 100644 --- a/wiki/translations/en/Arch_Workbench.md +++ b/wiki/translations/en/Arch_Workbench.md @@ -1,10 +1,4 @@ -# Arch Workbench/en - - - - - -Arch workbench icon +# Arch workbench icon Arch Workbench/en {{TOCright}} @@ -144,3 +138,6 @@ The Arch module can be used in [Python](Python.md) scripts and [macros](macros.m [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/en diff --git a/wiki/translations/en/Arch_panel_tutorial.md b/wiki/translations/en/Arch_panel_tutorial.md index ffa2ecd212..56ca9d2d0c 100644 --- a/wiki/translations/en/Arch_panel_tutorial.md +++ b/wiki/translations/en/Arch_panel_tutorial.md @@ -1,7 +1,4 @@ # Arch panel tutorial/en - - - {{TutorialInfo |Topic= Modeling an architectural panel |Level= Beginner @@ -198,4 +195,7 @@ Both Draft Rotate and Move tools make use of the Draft Snapping system. Differen {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch panel tutorial/en diff --git a/wiki/translations/en/Arch_templates.md b/wiki/translations/en/Arch_templates.md index 574c696eed..e7ab78f568 100644 --- a/wiki/translations/en/Arch_templates.md +++ b/wiki/translations/en/Arch_templates.md @@ -1,5 +1,5 @@ # Arch templates/en - This page lists the templates according to American National Standards Institute [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) standard +This page lists the templates according to American National Standards Institute [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) standard ### Arch A @@ -92,3 +92,6 @@ The templates are drawn by [Quick61](User:Quick61.md) and listed [FreeCAD-Drawing-Templates](https://github.com/quick61/FreeCAD-Drawing-Templates). [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch templates/en diff --git a/wiki/translations/en/Arch_tutorial.md b/wiki/translations/en/Arch_tutorial.md index 81a1009680..94ac16c86a 100644 --- a/wiki/translations/en/Arch_tutorial.md +++ b/wiki/translations/en/Arch_tutorial.md @@ -1,7 +1,4 @@ # Arch tutorial/en - - - {{TutorialInfo |Topic=Modeling |Level=Intermediate @@ -475,4 +472,7 @@ The file created during this tutorial can be found [here](http://yorik.uncreated {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch tutorial/en diff --git a/wiki/translations/en/Artwork.md b/wiki/translations/en/Artwork.md index ffd62fab69..83132167c6 100644 --- a/wiki/translations/en/Artwork.md +++ b/wiki/translations/en/Artwork.md @@ -1,5 +1,5 @@ # Artwork/en - Here is the artwork that has been created for FreeCAD. Feel free to reuse in other applications. If you would like to contribute with icons, please read the [artwork guidelines](Artwork_Guidelines.md). +Here is the artwork that has been created for FreeCAD. Feel free to reuse in other applications. If you would like to contribute with icons, please read the [artwork guidelines](Artwork_Guidelines.md). ## Miscellaneous icons @@ -157,3 +157,6 @@ See [Artwork Erroneous](Artwork_Erroneous.md). }} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork/en diff --git a/wiki/translations/en/Artwork_Arch.md b/wiki/translations/en/Artwork_Arch.md index 0e2cc20d5b..ccd1e5df5b 100644 --- a/wiki/translations/en/Artwork_Arch.md +++ b/wiki/translations/en/Artwork_Arch.md @@ -1,5 +1,5 @@ # Artwork Arch/en - These icons are in the indicated source path. +These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -19,3 +19,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Arch](Category:Arch.md) + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Artwork Arch/en diff --git a/wiki/translations/en/Artwork_Assembly.md b/wiki/translations/en/Artwork_Assembly.md index 4594ae225d..bf01689b26 100644 --- a/wiki/translations/en/Artwork_Assembly.md +++ b/wiki/translations/en/Artwork_Assembly.md @@ -1,6 +1,4 @@ # Artwork Assembly/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -25,3 +23,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Assembly](Category:Assembly.md) + +--- +[documentation index](../README.md) > [Assembly](Category:Assembly.md) > Artwork Assembly/en diff --git a/wiki/translations/en/Artwork_Assembly3.md b/wiki/translations/en/Artwork_Assembly3.md index 79348b2851..d58845efb0 100644 --- a/wiki/translations/en/Artwork_Assembly3.md +++ b/wiki/translations/en/Artwork_Assembly3.md @@ -1,6 +1,4 @@ # Artwork Assembly3/en - - These icons are in the indicated source path of Realthunder\'s Link Branch: ## \.../Mod/asm3 @@ -35,3 +33,6 @@ These icons are in the indicated source path of Realthunder\'s Link Branch: }} [Category:Assembly](Category:Assembly.md) + +--- +[documentation index](../README.md) > [Assembly](Category:Assembly.md) > Artwork Assembly3/en diff --git a/wiki/translations/en/Artwork_Complete.md b/wiki/translations/en/Artwork_Complete.md index 56d8e9036a..218729ab07 100644 --- a/wiki/translations/en/Artwork_Complete.md +++ b/wiki/translations/en/Artwork_Complete.md @@ -1,6 +1,4 @@ # Artwork Complete/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,5 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork}} +--- +[documentation index](../README.md) > Artwork Complete/en diff --git a/wiki/translations/en/Artwork_Draft.md b/wiki/translations/en/Artwork_Draft.md index 1819deb4ad..b99afe827f 100644 --- a/wiki/translations/en/Artwork_Draft.md +++ b/wiki/translations/en/Artwork_Draft.md @@ -1,6 +1,4 @@ # Artwork Draft/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -21,3 +19,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Draft](Category:Draft.md) + +--- +[documentation index](../README.md) > [Draft](Category:Draft.md) > Artwork Draft/en diff --git a/wiki/translations/en/Artwork_Drawing.md b/wiki/translations/en/Artwork_Drawing.md index 962e420aef..b9bfe5b7e7 100644 --- a/wiki/translations/en/Artwork_Drawing.md +++ b/wiki/translations/en/Artwork_Drawing.md @@ -1,6 +1,4 @@ # Artwork Drawing/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -46,3 +44,5 @@ The following image is \"A4\_Simple.svg\". It is an empty page. {{Artwork}} +--- +[documentation index](../README.md) > Artwork Drawing/en diff --git a/wiki/translations/en/Artwork_Erroneous.md b/wiki/translations/en/Artwork_Erroneous.md index 3b30d77b39..5450a81f1f 100644 --- a/wiki/translations/en/Artwork_Erroneous.md +++ b/wiki/translations/en/Artwork_Erroneous.md @@ -1,6 +1,4 @@ # Artwork Erroneous/en - - For all icons in the source tree, see [Artwork](Artwork.md). @@ -26,3 +24,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork Erroneous/en diff --git a/wiki/translations/en/Artwork_Fem.md b/wiki/translations/en/Artwork_Fem.md index d72091dd0a..e8a178c20b 100644 --- a/wiki/translations/en/Artwork_Fem.md +++ b/wiki/translations/en/Artwork_Fem.md @@ -1,6 +1,4 @@ # Artwork Fem/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Artwork Fem/en diff --git a/wiki/translations/en/Artwork_Gui.md b/wiki/translations/en/Artwork_Gui.md index d55ac0e820..cb5fe3795d 100644 --- a/wiki/translations/en/Artwork_Gui.md +++ b/wiki/translations/en/Artwork_Gui.md @@ -1,5 +1,5 @@ # Artwork Gui/en - These icons are in the indicated source path. +These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -22,4 +22,7 @@ These images are larger than icons. {{Artwork -}} +}} + +--- +[documentation index](../README.md) > Artwork Gui/en diff --git a/wiki/translations/en/Artwork_Guidelines.md b/wiki/translations/en/Artwork_Guidelines.md index 574fac1d10..4dedf2c31e 100644 --- a/wiki/translations/en/Artwork_Guidelines.md +++ b/wiki/translations/en/Artwork_Guidelines.md @@ -1,6 +1,4 @@ # Artwork Guidelines/en - - ## Introduction @@ -173,3 +171,6 @@ A grayscale image allows you to more easily identify problems in contrast, as on {{Artwork}} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Artwork Guidelines/en diff --git a/wiki/translations/en/Artwork_Image.md b/wiki/translations/en/Artwork_Image.md index 713c9b1313..84dcd2d068 100644 --- a/wiki/translations/en/Artwork_Image.md +++ b/wiki/translations/en/Artwork_Image.md @@ -1,6 +1,4 @@ # Artwork Image/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Image](Category:Image.md) + +--- +[documentation index](../README.md) > [Image](Category:Image.md) > Artwork Image/en diff --git a/wiki/translations/en/Artwork_Inspection.md b/wiki/translations/en/Artwork_Inspection.md index 24a6b62ff9..be03a14b5b 100644 --- a/wiki/translations/en/Artwork_Inspection.md +++ b/wiki/translations/en/Artwork_Inspection.md @@ -1,6 +1,4 @@ # Artwork Inspection/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Inspection](Category:Inspection.md) + +--- +[documentation index](../README.md) > [Inspection](Category:Inspection.md) > Artwork Inspection/en diff --git a/wiki/translations/en/Artwork_Material.md b/wiki/translations/en/Artwork_Material.md index d61346eb60..463de4e538 100644 --- a/wiki/translations/en/Artwork_Material.md +++ b/wiki/translations/en/Artwork_Material.md @@ -1,6 +1,4 @@ # Artwork Material/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -15,3 +13,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork }} + +--- +[documentation index](../README.md) > Artwork Material/en diff --git a/wiki/translations/en/Artwork_Mesh.md b/wiki/translations/en/Artwork_Mesh.md index c27f9f74c2..6d84ba982e 100644 --- a/wiki/translations/en/Artwork_Mesh.md +++ b/wiki/translations/en/Artwork_Mesh.md @@ -1,6 +1,4 @@ # Artwork Mesh/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -21,3 +19,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Mesh](Category:Mesh.md) + +--- +[documentation index](../README.md) > [Mesh](Category:Mesh.md) > Artwork Mesh/en diff --git a/wiki/translations/en/Artwork_MeshPart.md b/wiki/translations/en/Artwork_MeshPart.md index e19ed8810c..f8536ecbd8 100644 --- a/wiki/translations/en/Artwork_MeshPart.md +++ b/wiki/translations/en/Artwork_MeshPart.md @@ -1,6 +1,4 @@ # Artwork MeshPart/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -19,3 +17,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork }} {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > Artwork MeshPart/en diff --git a/wiki/translations/en/Artwork_OpenSCAD.md b/wiki/translations/en/Artwork_OpenSCAD.md index 558a538bfb..aba81199a7 100644 --- a/wiki/translations/en/Artwork_OpenSCAD.md +++ b/wiki/translations/en/Artwork_OpenSCAD.md @@ -1,6 +1,4 @@ # Artwork OpenSCAD/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:OpenSCAD](Category:OpenSCAD.md) + +--- +[documentation index](../README.md) > [OpenSCAD](Category:OpenSCAD.md) > Artwork OpenSCAD/en diff --git a/wiki/translations/en/Artwork_Part.md b/wiki/translations/en/Artwork_Part.md index 553606caec..13a80e9ef4 100644 --- a/wiki/translations/en/Artwork_Part.md +++ b/wiki/translations/en/Artwork_Part.md @@ -1,6 +1,4 @@ # Artwork Part/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -34,4 +32,7 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork -}} +}} + +--- +[documentation index](../README.md) > Artwork Part/en diff --git a/wiki/translations/en/Artwork_PartDesign.md b/wiki/translations/en/Artwork_PartDesign.md index 924dc217d3..3317ae9996 100644 --- a/wiki/translations/en/Artwork_PartDesign.md +++ b/wiki/translations/en/Artwork_PartDesign.md @@ -1,6 +1,4 @@ # Artwork PartDesign/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -25,3 +23,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:PartDesign](Category:PartDesign.md) + +--- +[documentation index](../README.md) > [PartDesign](Category:PartDesign.md) > Artwork PartDesign/en diff --git a/wiki/translations/en/Artwork_Path.md b/wiki/translations/en/Artwork_Path.md index d445549bd8..62bf994598 100644 --- a/wiki/translations/en/Artwork_Path.md +++ b/wiki/translations/en/Artwork_Path.md @@ -1,6 +1,4 @@ # Artwork Path/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Path](Category:Path.md) + +--- +[documentation index](../README.md) > [Path](Category:Path.md) > Artwork Path/en diff --git a/wiki/translations/en/Artwork_Plot.md b/wiki/translations/en/Artwork_Plot.md index 473c43472f..2805efd997 100644 --- a/wiki/translations/en/Artwork_Plot.md +++ b/wiki/translations/en/Artwork_Plot.md @@ -1,6 +1,4 @@ # Artwork Plot/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Plot](Category:Plot.md) + +--- +[documentation index](../README.md) > [Plot](Category:Plot.md) > Artwork Plot/en diff --git a/wiki/translations/en/Artwork_Points.md b/wiki/translations/en/Artwork_Points.md index bbd2fdf01e..05f1a00fd2 100644 --- a/wiki/translations/en/Artwork_Points.md +++ b/wiki/translations/en/Artwork_Points.md @@ -1,6 +1,4 @@ # Artwork Points/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Points](Category:Points.md) + +--- +[documentation index](../README.md) > [Points](Category:Points.md) > Artwork Points/en diff --git a/wiki/translations/en/Artwork_Raytracing.md b/wiki/translations/en/Artwork_Raytracing.md index 3571b96eac..af67c69e3d 100644 --- a/wiki/translations/en/Artwork_Raytracing.md +++ b/wiki/translations/en/Artwork_Raytracing.md @@ -1,6 +1,4 @@ # Artwork Raytracing/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Raytracing](Category:Raytracing.md) + +--- +[documentation index](../README.md) > [Raytracing](Category:Raytracing.md) > Artwork Raytracing/en diff --git a/wiki/translations/en/Artwork_Reinforcement.md b/wiki/translations/en/Artwork_Reinforcement.md index cc4fb58b5d..ffd4a0b22d 100644 --- a/wiki/translations/en/Artwork_Reinforcement.md +++ b/wiki/translations/en/Artwork_Reinforcement.md @@ -1,6 +1,4 @@ # Artwork Reinforcement/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,5 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork}} +--- +[documentation index](../README.md) > Artwork Reinforcement/en diff --git a/wiki/translations/en/Artwork_ReverseEngineering.md b/wiki/translations/en/Artwork_ReverseEngineering.md index 662b8fe19c..b9ea13fe81 100644 --- a/wiki/translations/en/Artwork_ReverseEngineering.md +++ b/wiki/translations/en/Artwork_ReverseEngineering.md @@ -1,6 +1,4 @@ # Artwork ReverseEngineering/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -21,3 +19,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Reverse Engineering](Category:Reverse_Engineering.md) + +--- +[documentation index](../README.md) > [Reverse Engineering](Category:Reverse Engineering.md) > Artwork ReverseEngineering/en diff --git a/wiki/translations/en/Artwork_Robot.md b/wiki/translations/en/Artwork_Robot.md index a0a31cfd2f..c5ca7f164d 100644 --- a/wiki/translations/en/Artwork_Robot.md +++ b/wiki/translations/en/Artwork_Robot.md @@ -1,6 +1,4 @@ # Artwork Robot/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > Artwork Robot/en diff --git a/wiki/translations/en/Artwork_Ship.md b/wiki/translations/en/Artwork_Ship.md index ad4b5bd2b9..c001d765cd 100644 --- a/wiki/translations/en/Artwork_Ship.md +++ b/wiki/translations/en/Artwork_Ship.md @@ -1,6 +1,4 @@ # Artwork Ship/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Ship](Category:Ship.md) + +--- +[documentation index](../README.md) > [Ship](Category:Ship.md) > Artwork Ship/en diff --git a/wiki/translations/en/Artwork_Sketcher.md b/wiki/translations/en/Artwork_Sketcher.md index 47fbb69388..5a6fbd488b 100644 --- a/wiki/translations/en/Artwork_Sketcher.md +++ b/wiki/translations/en/Artwork_Sketcher.md @@ -1,6 +1,4 @@ # Artwork Sketcher/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -53,3 +51,6 @@ In the past, the `.xpm` icons were used as overlays when displaying constraints {{Artwork }} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Artwork Sketcher/en diff --git a/wiki/translations/en/Artwork_Splash_screen.md b/wiki/translations/en/Artwork_Splash_screen.md index 3dd46c555a..591729e78a 100644 --- a/wiki/translations/en/Artwork_Splash_screen.md +++ b/wiki/translations/en/Artwork_Splash_screen.md @@ -1,6 +1,4 @@ # Artwork Splash screen/en - - These are the splash screens that have been used for each version of the program. ![](images/Splashscreen09.png ) @@ -27,3 +25,6 @@ These are the splash screens that have been used for each version of the program {{Artwork }} + +--- +[documentation index](../README.md) > Artwork Splash screen/en diff --git a/wiki/translations/en/Artwork_Spreadsheet.md b/wiki/translations/en/Artwork_Spreadsheet.md index 110e941abc..7cfc11be7f 100644 --- a/wiki/translations/en/Artwork_Spreadsheet.md +++ b/wiki/translations/en/Artwork_Spreadsheet.md @@ -1,6 +1,4 @@ # Artwork Spreadsheet/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Spreadsheet](Category:Spreadsheet.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Category:Spreadsheet.md) > Artwork Spreadsheet/en diff --git a/wiki/translations/en/Artwork_Start.md b/wiki/translations/en/Artwork_Start.md index e6a5df3db1..84f16a3e54 100644 --- a/wiki/translations/en/Artwork_Start.md +++ b/wiki/translations/en/Artwork_Start.md @@ -1,6 +1,4 @@ # Artwork Start/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -35,3 +33,6 @@ The following image has been re-sized to a display width of 480 pixels: }} [Category:Start](Category:Start.md) + +--- +[documentation index](../README.md) > [Start](Category:Start.md) > Artwork Start/en diff --git a/wiki/translations/en/Artwork_Surface.md b/wiki/translations/en/Artwork_Surface.md index b4b057b8fb..05e76d65ae 100644 --- a/wiki/translations/en/Artwork_Surface.md +++ b/wiki/translations/en/Artwork_Surface.md @@ -1,6 +1,4 @@ # Artwork Surface/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -15,3 +13,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Surface Tools navi }} {{Artwork}} + +--- +[documentation index](../README.md) > Artwork Surface/en diff --git a/wiki/translations/en/Artwork_TechDraw.md b/wiki/translations/en/Artwork_TechDraw.md index 0cb0825ae5..00a169997b 100644 --- a/wiki/translations/en/Artwork_TechDraw.md +++ b/wiki/translations/en/Artwork_TechDraw.md @@ -1,6 +1,4 @@ # Artwork TechDraw/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -33,3 +31,6 @@ The [TechDraw Workbench](TechDraw_Workbench.md) comes with a number of default t }} [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [TechDraw](Category:TechDraw.md) > Artwork TechDraw/en diff --git a/wiki/translations/en/Artwork_Test.md b/wiki/translations/en/Artwork_Test.md index 177e14e765..486a6395cc 100644 --- a/wiki/translations/en/Artwork_Test.md +++ b/wiki/translations/en/Artwork_Test.md @@ -1,6 +1,4 @@ # Artwork Test/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,5 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork}} +--- +[documentation index](../README.md) > Artwork Test/en diff --git a/wiki/translations/en/Artwork_Tux.md b/wiki/translations/en/Artwork_Tux.md index 56d755b4ed..5ed6b7862a 100644 --- a/wiki/translations/en/Artwork_Tux.md +++ b/wiki/translations/en/Artwork_Tux.md @@ -1,6 +1,4 @@ # Artwork Tux/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,5 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork}} +--- +[documentation index](../README.md) > Artwork Tux/en diff --git a/wiki/translations/en/Artwork_Web.md b/wiki/translations/en/Artwork_Web.md index a397048a36..6b72398d84 100644 --- a/wiki/translations/en/Artwork_Web.md +++ b/wiki/translations/en/Artwork_Web.md @@ -1,6 +1,4 @@ # Artwork Web/en - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -21,3 +19,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Web](Category:Web.md) + +--- +[documentation index](../README.md) > [Web](Category:Web.md) > Artwork Web/en diff --git a/wiki/translations/en/Artwork_project.md b/wiki/translations/en/Artwork_project.md index 4bc18fe39c..e903d6812a 100644 --- a/wiki/translations/en/Artwork_project.md +++ b/wiki/translations/en/Artwork_project.md @@ -1,7 +1,4 @@ # Artwork project/en - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -101,3 +98,6 @@ The current color palette is captured in google drive: [Roadmap](Category:Roadmap.md) > Artwork project/en diff --git a/wiki/translations/en/Assembly.md b/wiki/translations/en/Assembly.md index f15c04ec92..39033e165e 100644 --- a/wiki/translations/en/Assembly.md +++ b/wiki/translations/en/Assembly.md @@ -1,6 +1,4 @@ # Assembly/en - - ## Introduction @@ -53,3 +51,6 @@ The assembly workbenches continue development, and it is expected that at some p }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Assembly/en diff --git a/wiki/translations/en/Assembly2_Workbench.md b/wiki/translations/en/Assembly2_Workbench.md index 8251b89537..2e563f3afb 100644 --- a/wiki/translations/en/Assembly2_Workbench.md +++ b/wiki/translations/en/Assembly2_Workbench.md @@ -1,7 +1,4 @@ # Assembly2 Workbench/en - - - **The Assembly2 workbench is obsolete. Its author no longer maintains it, so it may not work with FreeCAD versions 0.17 and above. The information in this page is not maintained; it is just kept for historical purposes.** @@ -146,3 +143,6 @@ To update to the latest version, delete the assembly2 folder and redownload the [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Assembly2 Workbench/en diff --git a/wiki/translations/en/Assembly3_ConstraintAlignment.md b/wiki/translations/en/Assembly3_ConstraintAlignment.md index 6cc253c5fc..eae725c969 100644 --- a/wiki/translations/en/Assembly3_ConstraintAlignment.md +++ b/wiki/translations/en/Assembly3_ConstraintAlignment.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintAlignment/en + ## Description This tool links two or more objects of an assembly and matches their orientations. The selected elements of each object or more precisely their implicit coordinate systems (ICSs) are used to position one object in relation to another. @@ -19,8 +21,5 @@ The offset of their z-axes and the angle between their x-axes (and y-axes as wel 2. Select one planar face element of each object. 3. Press the ** [Alignment](Assembly3_ConstraintAlignment.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAlignment/en diff --git a/wiki/translations/en/Assembly3_ConstraintAngle.md b/wiki/translations/en/Assembly3_ConstraintAngle.md index 19d14a6893..d664d548cd 100644 --- a/wiki/translations/en/Assembly3_ConstraintAngle.md +++ b/wiki/translations/en/Assembly3_ConstraintAngle.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintAngle/en + ## Description This tool builds a link between two objects of an assembly and matches their orientation. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,8 +23,5 @@ The constraint accepts straight edges and planar faces. 2. Select one straight edge element or one planar face element of each object. 3. Press the ** [Angle](Assembly3_ConstraintAngle.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAngle/en diff --git a/wiki/translations/en/Assembly3_ConstraintAttachment.md b/wiki/translations/en/Assembly3_ConstraintAttachment.md index a844812bb9..2cf8702467 100644 --- a/wiki/translations/en/Assembly3_ConstraintAttachment.md +++ b/wiki/translations/en/Assembly3_ConstraintAttachment.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintAttachment/en + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precise their implicit coordinate systems (ICS) are used to position one object to another. @@ -17,8 +19,5 @@ This link leaves no degree of freedom (DOF) unconstrained. 2. Select one element of each object. 3. Press the ** [Attachment](Assembly3_ConstraintAttachment.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAttachment/en diff --git a/wiki/translations/en/Assembly3_ConstraintAxial.md b/wiki/translations/en/Assembly3_ConstraintAxial.md index bb0b9f3aed..5a995eabec 100644 --- a/wiki/translations/en/Assembly3_ConstraintAxial.md +++ b/wiki/translations/en/Assembly3_ConstraintAxial.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintAxial/en + ## Description This tool builds a link between two or more objects of an assembly and matches their orientation. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -27,8 +29,5 @@ Different types of geometry elements can be mixed. 2. Select one element of each object. 3. Press the ** [Axial Alignment](Assembly3_ConstraintAxial.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAxial/en diff --git a/wiki/translations/en/Assembly3_ConstraintCoincidence.md b/wiki/translations/en/Assembly3_ConstraintCoincidence.md index 8c9701cf46..99ee93fed5 100644 --- a/wiki/translations/en/Assembly3_ConstraintCoincidence.md +++ b/wiki/translations/en/Assembly3_ConstraintCoincidence.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintCoincidence/en + ## Description This tool links two or more objects of an assembly and matches their orientations. The selected elements of each object or more precise their implicit coordinate systems (ICSs) are used to position one object in relation to another. @@ -26,8 +28,5 @@ The rotation can be stopped by switching Lock Angle to true in the properties pa 2. Select one planar face element of each object. 3. Press the ** [Plane Coincidence](Assembly3_ConstraintCoincidence.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintCoincidence/en diff --git a/wiki/translations/en/Assembly3_ConstraintColinear.md b/wiki/translations/en/Assembly3_ConstraintColinear.md index eeb6e79b5f..a107fd123e 100644 --- a/wiki/translations/en/Assembly3_ConstraintColinear.md +++ b/wiki/translations/en/Assembly3_ConstraintColinear.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintColinear/en + ## Description The [Colinear](Assembly3_ConstraintColinear.md) command constrains two 2D lines such as non-subdivided wires made with the Draft workbench in relation with a work plane. @@ -33,8 +35,5 @@ This tool accepts a 3D elements as well e.g. edges or center lines. - 2D/3D or 3D/2D: Instead of the 3D elements z axis the projection of that axis onto the 2D line\'s workplane is used to position the lines. - Both 3D: The lines are positioned to one another but I can\'t figure out how\... - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintColinear/en diff --git a/wiki/translations/en/Assembly3_ConstraintDiameter.md b/wiki/translations/en/Assembly3_ConstraintDiameter.md index 3b1b627691..82bbb89067 100644 --- a/wiki/translations/en/Assembly3_ConstraintDiameter.md +++ b/wiki/translations/en/Assembly3_ConstraintDiameter.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintDiameter/en + ## Description The [Diameter](Assembly3_ConstraintDiameter.md) command constrains the diameter of a 2D circle or arc which is made with [Draft Workbench](Draft_Workbench.md) tools in relation with a workplane. @@ -27,8 +29,5 @@ To set the diameter edit the Diameter parameter in the properties panel. : (if ** [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintDiameter/en diff --git a/wiki/translations/en/Assembly3_ConstraintEqualAngle.md b/wiki/translations/en/Assembly3_ConstraintEqualAngle.md index a6632c43d4..7f8f3c9be7 100644 --- a/wiki/translations/en/Assembly3_ConstraintEqualAngle.md +++ b/wiki/translations/en/Assembly3_ConstraintEqualAngle.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintEqualAngle/en + ## Description This tool builds a link between two objects of an assembly and fixes one angle between them in relation to another angle\'s value. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -22,8 +24,5 @@ The line directions as well as the face normals are represented by each ICS\'s z : In addition the \"Flip element\" function of the elements properties panel may be needed if ICSs are not orientated as expected. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualAngle/en diff --git a/wiki/translations/en/Assembly3_ConstraintEqualLength.md b/wiki/translations/en/Assembly3_ConstraintEqualLength.md index ad047e1b0a..02658056bf 100644 --- a/wiki/translations/en/Assembly3_ConstraintEqualLength.md +++ b/wiki/translations/en/Assembly3_ConstraintEqualLength.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintEqualLength/en + ## Description This tool constrains the length of a 2D line like a non-subdivided wire made with the Draft workbench in relation with a work plane. @@ -23,8 +25,5 @@ The length value of the first selected line equals the length value of the secon : (if ** [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualLength/en diff --git a/wiki/translations/en/Assembly3_ConstraintEqualLineArcLength.md b/wiki/translations/en/Assembly3_ConstraintEqualLineArcLength.md index 0d28e7e4ae..07f5648e36 100644 --- a/wiki/translations/en/Assembly3_ConstraintEqualLineArcLength.md +++ b/wiki/translations/en/Assembly3_ConstraintEqualLineArcLength.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintEqualLineArcLength/en + ## Description The [Equal Line Arc Length](Assembly3_ConstraintEqualLineArcLength.md) command constrains the length of a 2D line like a non-subdivided wire which is made with [Draft Workbench](Draft_Workbench.md) tools in relation with a workplane. @@ -39,8 +41,5 @@ Constraint "EqualLineArcLength" requires the 1st element to be a linear Constraint "EqualLineArcLength" requires the 2nd element to be an arc edge Constraint "EqualLineArcLength" requires the 2nd element to be a circular edge - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualLineArcLength/en diff --git a/wiki/translations/en/Assembly3_ConstraintEqualPointLineDistance.md b/wiki/translations/en/Assembly3_ConstraintEqualPointLineDistance.md index 7e5385c5aa..7f02893975 100644 --- a/wiki/translations/en/Assembly3_ConstraintEqualPointLineDistance.md +++ b/wiki/translations/en/Assembly3_ConstraintEqualPointLineDistance.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintEqualPointLineDistance/en + ## Description The [Equal point line distance](Assembly3_ConstraintEqualPointLineDistance.md) command constrains two distances, each between a 2D point and a straight 2D line, to have the same value. @@ -28,8 +30,5 @@ The [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualPointLineDistance/en diff --git a/wiki/translations/en/Assembly3_ConstraintEqualRadius.md b/wiki/translations/en/Assembly3_ConstraintEqualRadius.md index 4d9cf5f12e..865897d2ed 100644 --- a/wiki/translations/en/Assembly3_ConstraintEqualRadius.md +++ b/wiki/translations/en/Assembly3_ConstraintEqualRadius.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintEqualRadius/en + ## Description The [Equal radius](Assembly3_ConstraintEqualRadius.md) command constrains the radius of a 2D circle or arc made with [Draft Workbench](Draft_Workbench.md) tools in relation with a workplane. @@ -29,8 +31,5 @@ The radius value of the first selected circle or arc equals the radius value of : (if ** [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualRadius/en diff --git a/wiki/translations/en/Assembly3_ConstraintLengthDifference.md b/wiki/translations/en/Assembly3_ConstraintLengthDifference.md index 3716d0bb51..0cb20f0f1d 100644 --- a/wiki/translations/en/Assembly3_ConstraintLengthDifference.md +++ b/wiki/translations/en/Assembly3_ConstraintLengthDifference.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLengthDifference/en + ## Description This tool constrains the length of a 2D line like a non-subdivided wire made with the Draft workbench in relation with a work plane. @@ -26,8 +28,5 @@ The length value of the first selected line equals the length value of the secon : (if ** [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLengthDifference/en diff --git a/wiki/translations/en/Assembly3_ConstraintLengthEqualPointLineDistance.md b/wiki/translations/en/Assembly3_ConstraintLengthEqualPointLineDistance.md index 6de5edad99..c8324f250f 100644 --- a/wiki/translations/en/Assembly3_ConstraintLengthEqualPointLineDistance.md +++ b/wiki/translations/en/Assembly3_ConstraintLengthEqualPointLineDistance.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLengthEqualPointLineDistance/en + ## Description This tool constrains the length of a 2D line like a non-subdivided wire made with the Draft workbench in relation with a work plane. @@ -25,8 +27,5 @@ The length value of the first selected line equals the shortest distance between : (if ** [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLengthEqualPointLineDistance/en diff --git a/wiki/translations/en/Assembly3_ConstraintLengthRatio.md b/wiki/translations/en/Assembly3_ConstraintLengthRatio.md index 948fd6e444..ef985f4df4 100644 --- a/wiki/translations/en/Assembly3_ConstraintLengthRatio.md +++ b/wiki/translations/en/Assembly3_ConstraintLengthRatio.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLengthRatio/en + ## Description This tool constrains the length of a 2D line like a non-subdivided wire made with the Draft workbench in relation with a work plane. @@ -26,8 +28,5 @@ The length value of the first selected line equals the length value of the secon : (if ** [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLengthRatio/en diff --git a/wiki/translations/en/Assembly3_ConstraintLineHorizontal.md b/wiki/translations/en/Assembly3_ConstraintLineHorizontal.md index 0bfe680564..783db92a5f 100644 --- a/wiki/translations/en/Assembly3_ConstraintLineHorizontal.md +++ b/wiki/translations/en/Assembly3_ConstraintLineHorizontal.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLineHorizontal/en + ## Description This tool builds a link between two objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -18,8 +20,5 @@ Based on one planar element\'s ICS the line element\'s start and end point are p 3. Select a planar face element of the second object 4. Press the ** [Line horizontal](Assembly3_ConstraintLineHorizontal.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLineHorizontal/en diff --git a/wiki/translations/en/Assembly3_ConstraintLineLength.md b/wiki/translations/en/Assembly3_ConstraintLineLength.md index b511dfb62b..e937757361 100644 --- a/wiki/translations/en/Assembly3_ConstraintLineLength.md +++ b/wiki/translations/en/Assembly3_ConstraintLineLength.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLineLength/en + ## Description This tool constrains the length of a 2D line like a non-subdivided wire made with the Draft workbench in relation with a work plane. @@ -18,8 +20,5 @@ The length is set to a certain value by editing the length parameter in the prop 3. Set the **Length** value in the properties panel. 4. Press the ** [Solve constraints](Assembly3_ResolveConstraints.md)** or the ** [Quick solve](Assembly3_QuickSolve.md)** button to recompute. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLineLength/en diff --git a/wiki/translations/en/Assembly3_ConstraintLineVertical.md b/wiki/translations/en/Assembly3_ConstraintLineVertical.md index 9a0d5a2ae3..f2029e3e04 100644 --- a/wiki/translations/en/Assembly3_ConstraintLineVertical.md +++ b/wiki/translations/en/Assembly3_ConstraintLineVertical.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLineVertical/en + ## Description This tool builds a link between two objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -18,8 +20,5 @@ Based on one planar element\'s ICS the line element\'s start and end point are p 3. Select a planar face element of the second object 4. Press the ** [Line vertical](Assembly3_ConstraintLineVertical.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLineVertical/en diff --git a/wiki/translations/en/Assembly3_ConstraintLock.md b/wiki/translations/en/Assembly3_ConstraintLock.md index c61d6c6ee6..02f874e8f2 100644 --- a/wiki/translations/en/Assembly3_ConstraintLock.md +++ b/wiki/translations/en/Assembly3_ConstraintLock.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintLock/en + ## Description This tool links an object to the global coordinate system (GCS) of the assembly using the implicit coordinate system (ICS) of a selected element. @@ -27,8 +29,5 @@ This can be used to define the fixed set in a static assembly as well as in a ki 2. Select one element of the object. 3. Press the ** [Locked](Assembly3_ConstraintLock.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLock/en diff --git a/wiki/translations/en/Assembly3_ConstraintMidPoint.md b/wiki/translations/en/Assembly3_ConstraintMidPoint.md index e09c6fa966..fe86903e67 100644 --- a/wiki/translations/en/Assembly3_ConstraintMidPoint.md +++ b/wiki/translations/en/Assembly3_ConstraintMidPoint.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintMidPoint/en + ## Description The [Mid point](Assembly3_ConstraintMidPoint.md) command constrains the position of a 2D point (such as an end point of a line or an arc, or the center point of a circle or an arc) to the mid point of a straight 2D line. @@ -27,8 +29,5 @@ Line elements are made with [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintMidPoint/en diff --git a/wiki/translations/en/Assembly3_ConstraintMore.md b/wiki/translations/en/Assembly3_ConstraintMore.md index 1d4f88da66..0d20519820 100644 --- a/wiki/translations/en/Assembly3_ConstraintMore.md +++ b/wiki/translations/en/Assembly3_ConstraintMore.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintMore/en + ## Description This tool only toggles the visibility of two more constraint panels. @@ -13,8 +15,5 @@ This tool only toggles the visibility of two more constraint panels. 1. Press the ** [More](Assembly3_ConstraintMore.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintMore/en diff --git a/wiki/translations/en/Assembly3_ConstraintMultiParallel.md b/wiki/translations/en/Assembly3_ConstraintMultiParallel.md index c3391d853c..50c65bd6df 100644 --- a/wiki/translations/en/Assembly3_ConstraintMultiParallel.md +++ b/wiki/translations/en/Assembly3_ConstraintMultiParallel.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintMultiParallel/en + ## Description This tool builds a link between two or more objects of an assembly and matches their orientation. The selected elements of each object or more precise their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,8 +23,5 @@ The constraint accepts straight edges and planar faces, which become parallel. 2. Select one straight edge element or one planar face element of each object. 3. Press the ** [Multi parallel](Assembly3_ConstraintMultiParallel.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintMultiParallel/en diff --git a/wiki/translations/en/Assembly3_ConstraintPerpendicular.md b/wiki/translations/en/Assembly3_ConstraintPerpendicular.md index e5ade68e6a..19bdc219f3 100644 --- a/wiki/translations/en/Assembly3_ConstraintPerpendicular.md +++ b/wiki/translations/en/Assembly3_ConstraintPerpendicular.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPerpendicular/en + ## Description This tool builds a link between two objects of an assembly and matches their orientation. The selected elements of each object or more precise their implicit coordinate systems (ICS) are used to position one object to another. @@ -22,8 +24,5 @@ The constraint accepts straight edges and planar faces. 2. Select one straight edge element or one planar face element of each object. 3. Press the ** [Perpendicular](Assembly3_ConstraintPerpendicular.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPerpendicular/en diff --git a/wiki/translations/en/Assembly3_ConstraintPointDistance.md b/wiki/translations/en/Assembly3_ConstraintPointDistance.md index cc452be734..4c9f7d8b7e 100644 --- a/wiki/translations/en/Assembly3_ConstraintPointDistance.md +++ b/wiki/translations/en/Assembly3_ConstraintPointDistance.md @@ -6,6 +6,8 @@ SeeAlso:[Assembly3 Constraint Points distance](Assembly3_ConstraintPointsDistance.md) --- +# Assembly3 ConstraintPointDistance/en + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -18,8 +20,5 @@ It can handle 3D point elements as well as 2D point elements within a work plane 2. Select one point element of each object 3. Press the ** [Point distance](Assembly3_ConstraintPointDistance.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointDistance/en diff --git a/wiki/translations/en/Assembly3_ConstraintPointInPlane.md b/wiki/translations/en/Assembly3_ConstraintPointInPlane.md index c4dad69d4f..7c661f162e 100644 --- a/wiki/translations/en/Assembly3_ConstraintPointInPlane.md +++ b/wiki/translations/en/Assembly3_ConstraintPointInPlane.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointInPlane/en + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,8 +23,5 @@ Related to the first object the following object can still move along the x- and 2. Select one point element of one object and one planar face element of the other object. 3. Press the ** [Point on plane](Assembly3_ConstraintPointInPlane.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointInPlane/en diff --git a/wiki/translations/en/Assembly3_ConstraintPointLineDistance.md b/wiki/translations/en/Assembly3_ConstraintPointLineDistance.md index bdd9ea9224..6fc82554ab 100644 --- a/wiki/translations/en/Assembly3_ConstraintPointLineDistance.md +++ b/wiki/translations/en/Assembly3_ConstraintPointLineDistance.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointLineDistance/en + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -16,8 +18,5 @@ This tool builds a link between two objects of an assembly and fixes the distanc 2. Select one point element of one object and one linear edge element of the other object. 3. Press the ** [Point line distance](Assembly3_ConstraintPointLineDistance.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointLineDistance/en diff --git a/wiki/translations/en/Assembly3_ConstraintPointOnCircle.md b/wiki/translations/en/Assembly3_ConstraintPointOnCircle.md index 57b0395ed9..71330f8cf9 100644 --- a/wiki/translations/en/Assembly3_ConstraintPointOnCircle.md +++ b/wiki/translations/en/Assembly3_ConstraintPointOnCircle.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointOnCircle/en + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,8 +23,5 @@ The position on the circular element (arc length from the start point) is not de 2. Select one point element of one object and one circular face or edge element of the other object. 3. Press the ** [Point on circle](Assembly3_ConstraintPointOnCircle.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointOnCircle/en diff --git a/wiki/translations/en/Assembly3_ConstraintPointOnLine.md b/wiki/translations/en/Assembly3_ConstraintPointOnLine.md index 4fd71edb1d..1b9b71f7eb 100644 --- a/wiki/translations/en/Assembly3_ConstraintPointOnLine.md +++ b/wiki/translations/en/Assembly3_ConstraintPointOnLine.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointOnLine/en + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,8 +23,5 @@ Related to the first object the following object can still move along the z-axis 2. Select one point element of one object and one straight edge element of the other object. 3. Press the ** [Point on line](Assembly3_ConstraintPointOnLine.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointOnLine/en diff --git a/wiki/translations/en/Assembly3_ConstraintPointPlaneDistance.md b/wiki/translations/en/Assembly3_ConstraintPointPlaneDistance.md index 05f12e3fb4..210c7d5939 100644 --- a/wiki/translations/en/Assembly3_ConstraintPointPlaneDistance.md +++ b/wiki/translations/en/Assembly3_ConstraintPointPlaneDistance.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointPlaneDistance/en + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -15,8 +17,5 @@ This tool builds a link between two objects of an assembly and fixes the distanc 2. Select one point element of one object and one planar face element of the other object. 3. Press the ** [Point plane distance](Assembly3_ConstraintPointPlaneDistance.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointPlaneDistance/en diff --git a/wiki/translations/en/Assembly3_ConstraintPointsCoincident.md b/wiki/translations/en/Assembly3_ConstraintPointsCoincident.md index 52eb578ce2..50d8106514 100644 --- a/wiki/translations/en/Assembly3_ConstraintPointsCoincident.md +++ b/wiki/translations/en/Assembly3_ConstraintPointsCoincident.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointsCoincident/en + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precise their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,8 +23,5 @@ Related to the first object the following object can still spin around the origi 2. Select one point element of each object 3. Press the ** [Points coincident](Assembly3_ConstraintPointsCoincident.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsCoincident/en diff --git a/wiki/translations/en/Assembly3_ConstraintPointsDistance.md b/wiki/translations/en/Assembly3_ConstraintPointsDistance.md index f04d47e975..75b051dad2 100644 --- a/wiki/translations/en/Assembly3_ConstraintPointsDistance.md +++ b/wiki/translations/en/Assembly3_ConstraintPointsDistance.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointsDistance/en + ## Description This tool builds a link between two objects of an assembly and fixes the distance between them and the orientation to each other. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -15,8 +17,5 @@ This tool builds a link between two objects of an assembly and fixes the distanc 2. Select one point element of each object 3. Press the ** [Points distance](Assembly3_ConstraintPointsDistance.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsDistance/en diff --git a/wiki/translations/en/Assembly3_ConstraintPointsHorizontal.md b/wiki/translations/en/Assembly3_ConstraintPointsHorizontal.md index dc8079de6a..9165a42a8a 100644 --- a/wiki/translations/en/Assembly3_ConstraintPointsHorizontal.md +++ b/wiki/translations/en/Assembly3_ConstraintPointsHorizontal.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointsHorizontal/en + ## Description This tool builds a link between two or three objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -25,8 +27,5 @@ Or 3. Select a planar face element of the third object 4. Press the ** [Points horizontal](Assembly3_ConstraintPointsHorizontal.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsHorizontal/en diff --git a/wiki/translations/en/Assembly3_ConstraintPointsProjectDistance.md b/wiki/translations/en/Assembly3_ConstraintPointsProjectDistance.md index f2a0058f3c..9a937825e1 100644 --- a/wiki/translations/en/Assembly3_ConstraintPointsProjectDistance.md +++ b/wiki/translations/en/Assembly3_ConstraintPointsProjectDistance.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointsProjectDistance/en + ## Description The [Points project distance](Assembly3_ConstraintPointsProjectDistance.md) command constrains the distance of two 2D points in relation to a Straight line. @@ -27,8 +29,5 @@ Based on the line\'s direction (the z axis of its implicit coordinate system (IC : (if ** [Auto recompute](Assembly3_AutoRecompute.md)** and ** [Smart recompute](Assembly3_SmartRecompute.md)** are disabled). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsProjectDistance/en diff --git a/wiki/translations/en/Assembly3_ConstraintPointsSymmetric.md b/wiki/translations/en/Assembly3_ConstraintPointsSymmetric.md index 9589be2292..357d7cf7e2 100644 --- a/wiki/translations/en/Assembly3_ConstraintPointsSymmetric.md +++ b/wiki/translations/en/Assembly3_ConstraintPointsSymmetric.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointsSymmetric/en + ## Description This tool builds a link between two or three objects of an assembly and positions two point elements symmetrically to a planar face element or a plane . The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position the objects to each other. @@ -25,8 +27,5 @@ Or 3. Select a planar element of the third object 4. Press the ** [Points symmetric](Assembly3_ConstraintPointsSymmetric.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsSymmetric/en diff --git a/wiki/translations/en/Assembly3_ConstraintPointsVertical.md b/wiki/translations/en/Assembly3_ConstraintPointsVertical.md index 03e7681d9e..7fd01713f5 100644 --- a/wiki/translations/en/Assembly3_ConstraintPointsVertical.md +++ b/wiki/translations/en/Assembly3_ConstraintPointsVertical.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintPointsVertical/en + ## Description This tool builds a link between two or three objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -25,8 +27,5 @@ Or 3. Select a planar face element of the third object 4. Press the ** [Points vertical](Assembly3_ConstraintPointsVertical.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsVertical/en diff --git a/wiki/translations/en/Assembly3_ConstraintSameOrientation.md b/wiki/translations/en/Assembly3_ConstraintSameOrientation.md index 6e7af61c1e..b7b4307a8c 100644 --- a/wiki/translations/en/Assembly3_ConstraintSameOrientation.md +++ b/wiki/translations/en/Assembly3_ConstraintSameOrientation.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintSameOrientation/en + ## Description This tool builds a link between two or more objects of an assembly and matches their orientation. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -21,8 +23,5 @@ The constraint accepts planar faces. 2. Select one planar face element of each object 3. Press the ** [Same orientation](Assembly3_ConstraintSameOrientation.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSameOrientation/en diff --git a/wiki/translations/en/Assembly3_ConstraintSketchPlane.md b/wiki/translations/en/Assembly3_ConstraintSketchPlane.md index 665b8149ed..ae67aea954 100644 --- a/wiki/translations/en/Assembly3_ConstraintSketchPlane.md +++ b/wiki/translations/en/Assembly3_ConstraintSketchPlane.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintSketchPlane/en + ## Description The ** [Sketch plane](Assembly3_ConstraintSketchPlane.md)** command creates a \"Sketch plane\" as a container for draft objects. @@ -22,8 +24,5 @@ It can be used to create a skeleton sketch for 2D kinematics. : With an existing non-empty assembly steps 1 and 2 can be skipped and any planar face element can be used as a work plane for the sketch plane. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSketchPlane/en diff --git a/wiki/translations/en/Assembly3_ConstraintSymmetric.md b/wiki/translations/en/Assembly3_ConstraintSymmetric.md index 13b4cabdac..9764221ebf 100644 --- a/wiki/translations/en/Assembly3_ConstraintSymmetric.md +++ b/wiki/translations/en/Assembly3_ConstraintSymmetric.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintSymmetric/en + ## Description This tool builds a link between two objects of an assembly and matches their orientation. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position one object to another. @@ -15,8 +17,5 @@ This tool builds a link between two objects of an assembly and matches their ori 2. Select one element of each object and a mirroring plane. 3. Press the ** [Symmetric](Assembly3_ConstraintSymmetric.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetric/en diff --git a/wiki/translations/en/Assembly3_ConstraintSymmetricHorizontal.md b/wiki/translations/en/Assembly3_ConstraintSymmetricHorizontal.md index 38f946833f..ac3ea5c1b1 100644 --- a/wiki/translations/en/Assembly3_ConstraintSymmetricHorizontal.md +++ b/wiki/translations/en/Assembly3_ConstraintSymmetricHorizontal.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintSymmetricHorizontal/en + ## Description This tool builds a link between two objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position the objects to each other. @@ -18,8 +20,5 @@ Based on one planar element\'s ICS both other elements\' ICSs\' origins are posi 3. Select a planar element of the other object 4. Press the ** [Symmetric horizontal](Assembly3_ConstraintSymmetricHorizontal.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetricHorizontal/en diff --git a/wiki/translations/en/Assembly3_ConstraintSymmetricLine.md b/wiki/translations/en/Assembly3_ConstraintSymmetricLine.md index 521baae04b..214cd7cb74 100644 --- a/wiki/translations/en/Assembly3_ConstraintSymmetricLine.md +++ b/wiki/translations/en/Assembly3_ConstraintSymmetricLine.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintSymmetricLine/en + ## Description This tool builds a link between two or three objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position the objects to each other. @@ -25,8 +27,5 @@ Or 3. Select a straight line element of the third object 4. Press the ** [Symmetric line](Assembly3_ConstraintSymmetricLine.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetricLine/en diff --git a/wiki/translations/en/Assembly3_ConstraintSymmetricVertical.md b/wiki/translations/en/Assembly3_ConstraintSymmetricVertical.md index 6a78df2069..774ce59082 100644 --- a/wiki/translations/en/Assembly3_ConstraintSymmetricVertical.md +++ b/wiki/translations/en/Assembly3_ConstraintSymmetricVertical.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ConstraintSymmetricVertical/en + ## Description This tool builds a link between two objects of an assembly. The selected elements of each object or more precisely their implicit coordinate systems (ICS) are used to position the objects to each other. @@ -18,8 +20,5 @@ Based on one planar element\'s ICS both other elements\' ICSs\' origins are posi 3. Select a planar element of the other object 4. Press the ** [Symmetric vertical](Assembly3_ConstraintSymmetricVertical.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetricVertical/en diff --git a/wiki/translations/en/Assembly3_CreateAssembly.md b/wiki/translations/en/Assembly3_CreateAssembly.md index 7019a9997a..8d9c1a2180 100644 --- a/wiki/translations/en/Assembly3_CreateAssembly.md +++ b/wiki/translations/en/Assembly3_CreateAssembly.md @@ -6,6 +6,8 @@ Shortcut:**A** **N** --- +# Assembly3 CreateAssembly/en + ## Description The **Assembly3 CreateAssembly** command adds a new **Assembly** branch object to the design tree. @@ -29,8 +31,5 @@ The added **Assembly** object with all visible containers looks like this (0.20. ** or use the keyboard shortcut: **A** then **N** - - - - - +--- +[documentation index](../README.md) > Assembly3 CreateAssembly/en diff --git a/wiki/translations/en/Assembly3_CreateElement.md b/wiki/translations/en/Assembly3_CreateElement.md index 21fdf85155..3199e7bffe 100644 --- a/wiki/translations/en/Assembly3_CreateElement.md +++ b/wiki/translations/en/Assembly3_CreateElement.md @@ -6,6 +6,8 @@ Shortcut:**A** **E** --- +# Assembly3 CreateElement/en + ## Description The [Create element](Assembly3_CreateElement.md) command creates new elements from selected objects. @@ -20,8 +22,5 @@ It can be used to prepare **elements** before the use of constraints. This coul 2. Press or use the keyboard shortcut: **A** then **E** 3. (optional but recommended) Rename the elements by editing their **Label** properties. - - - - - +--- +[documentation index](../README.md) > Assembly3 CreateElement/en diff --git a/wiki/translations/en/Assembly3_GoToRelation.md b/wiki/translations/en/Assembly3_GoToRelation.md index 26a52046fc..3cd28e01ba 100644 --- a/wiki/translations/en/Assembly3_GoToRelation.md +++ b/wiki/translations/en/Assembly3_GoToRelation.md @@ -7,6 +7,8 @@ Shortcut:**A** **R** --- +# Assembly3 GoToRelation/en + ## Description The **Assembly3 GoToRelation** command can help to find relations in the assembly tree. It reveals the Relations group on first use. @@ -24,8 +26,5 @@ The result (highlighted objects) depends on the selected object. 1. Select a part, an element or a constraint. 2. Press the ** [Go to relation](Assembly3_GoToRelation.md)** button or use the keyboard shortcut: **A** then **R**. - - - - - +--- +[documentation index](../README.md) > Assembly3 GoToRelation/en diff --git a/wiki/translations/en/Assembly3_GroupObjects.md b/wiki/translations/en/Assembly3_GroupObjects.md index 35a251b4c6..74435ff03d 100644 --- a/wiki/translations/en/Assembly3_GroupObjects.md +++ b/wiki/translations/en/Assembly3_GroupObjects.md @@ -6,6 +6,8 @@ Shortcut:**A** **Z** --- +# Assembly3 GroupObjects/en + ## Description The [Group objects](Assembly3_GroupObjects.md) command adds a new (sub-) **Group** folder object to the Assembly branch of the design tree. @@ -19,8 +21,5 @@ It can be used to either group **Constraints**, **Elements**, or **Parts** and w : If the selection contains different types of objects the ** [Group objects](Assembly3_GroupObjects.md)** button will be inactive. - - - - - +--- +[documentation index](../README.md) > Assembly3 GroupObjects/en diff --git a/wiki/translations/en/Assembly3_ImportFromSTEP.md b/wiki/translations/en/Assembly3_ImportFromSTEP.md index a18857fbfd..4b52dd72b0 100644 --- a/wiki/translations/en/Assembly3_ImportFromSTEP.md +++ b/wiki/translations/en/Assembly3_ImportFromSTEP.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ImportFromSTEP/en + ## Description The [Import from STEP](Assembly3_ImportFromSTEP.md) command opens a file browser window to search and select STEP files. @@ -16,8 +18,5 @@ The [Impo 1. Press ** [Import from STEP](Assembly3_ImportFromSTEP.md)** to open a file browser window 2. Select the STEP file to import - - - - - +--- +[documentation index](../README.md) > Assembly3 ImportFromSTEP/en diff --git a/wiki/translations/en/Assembly3_ImportMultiDocument.md b/wiki/translations/en/Assembly3_ImportMultiDocument.md index dc4aed6f5b..794bf33d64 100644 --- a/wiki/translations/en/Assembly3_ImportMultiDocument.md +++ b/wiki/translations/en/Assembly3_ImportMultiDocument.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 ImportMultiDocument/en + ## Description The [Import as multi-document](Assembly3_ImportMultiDocument.md) command opens a file browser window to search and select STEP files. @@ -16,8 +18,5 @@ STEP assemblies are imported into separate documents. 1. Press ** [Import as multi-document](Assembly3_ImportMultiDocument.md)** to open a file browser window 2. Select the STEP file to import - - - - - +--- +[documentation index](../README.md) > Assembly3 ImportMultiDocument/en diff --git a/wiki/translations/en/Assembly3_MeasureAngle.md b/wiki/translations/en/Assembly3_MeasureAngle.md index dc0894b769..126de437a1 100644 --- a/wiki/translations/en/Assembly3_MeasureAngle.md +++ b/wiki/translations/en/Assembly3_MeasureAngle.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 MeasureAngle/en + ## Description This tool measures the angle between two objects of an assembly using straight edges or planar faces. @@ -14,8 +16,5 @@ This tool measures the angle between two objects of an assembly using straight e 1. Select two straight edges or planar faces (or one of each). 2. Press the ** [Measure angle](Assembly3_MeasureAngle.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 MeasureAngle/en diff --git a/wiki/translations/en/Assembly3_MeasurePointLine.md b/wiki/translations/en/Assembly3_MeasurePointLine.md index d9ec8fa4e6..4464f9c36a 100644 --- a/wiki/translations/en/Assembly3_MeasurePointLine.md +++ b/wiki/translations/en/Assembly3_MeasurePointLine.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 MeasurePointLine/en + ## Description This tool measures the distance between two objects of an assembly using a point and a straight edge. @@ -14,8 +16,5 @@ This tool measures the distance between two objects of an assembly using a point 1. Select a point and a straight edge. 2. Press the ** [Measure point to line](Assembly3_MeasurePointLine.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 MeasurePointLine/en diff --git a/wiki/translations/en/Assembly3_MeasurePointPlane.md b/wiki/translations/en/Assembly3_MeasurePointPlane.md index 22c01b538e..987bd33cca 100644 --- a/wiki/translations/en/Assembly3_MeasurePointPlane.md +++ b/wiki/translations/en/Assembly3_MeasurePointPlane.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 MeasurePointPlane/en + ## Description This tool measures the distance between two objects of an assembly using a point and a planar face. @@ -14,8 +16,5 @@ This tool measures the distance between two objects of an assembly using a point 1. Select a point and a planar face. 2. Press the ** [Measure point to plane](Assembly3_MeasurePointPlane.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 MeasurePointPlane/en diff --git a/wiki/translations/en/Assembly3_MeasurePoints.md b/wiki/translations/en/Assembly3_MeasurePoints.md index c18f9b4050..dd30f0ba86 100644 --- a/wiki/translations/en/Assembly3_MeasurePoints.md +++ b/wiki/translations/en/Assembly3_MeasurePoints.md @@ -5,6 +5,8 @@ Workbenches:[Assembly3](Assembly3_Workbench.md) --- +# Assembly3 MeasurePoints/en + ## Description This tool measures the distance between two objects of an assembly using two points. @@ -14,8 +16,5 @@ This tool measures the distance between two objects of an assembly using two poi 1. Select two points. 2. Press the ** [Measure point to point](Assembly3_MeasurePoints.md)** button. - - - - - +--- +[documentation index](../README.md) > Assembly3 MeasurePoints/en diff --git a/wiki/translations/en/Assembly3_Workbench.md b/wiki/translations/en/Assembly3_Workbench.md index 61cb54e359..9fd1e6672a 100644 --- a/wiki/translations/en/Assembly3_Workbench.md +++ b/wiki/translations/en/Assembly3_Workbench.md @@ -1,7 +1,4 @@ -# Assembly3 Workbench/en - - -Assembly3 workbench icon +# Assembly3 workbench icon Assembly3 Workbench/en {{TOCright}} @@ -594,3 +591,6 @@ One way to solve this is to just delete all invalid constraints and elements, im [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Assembly3 Workbench/en diff --git a/wiki/translations/en/Assembly4_Workbench.md b/wiki/translations/en/Assembly4_Workbench.md index 4f303e842c..c1358ffafc 100644 --- a/wiki/translations/en/Assembly4_Workbench.md +++ b/wiki/translations/en/Assembly4_Workbench.md @@ -1,7 +1,4 @@ -# Assembly4 Workbench/en - - -External workbench icon +# External workbench icon Assembly4 Workbench/en ## Introduction @@ -40,3 +37,6 @@ Assembly4 was inspired by So we have also spatial areas in which the intensity of reflected light is different. To avoid this, we need at the geometrical point of transition also a continuity of the second order derivative and thus a cubic B-spline. + +--- +[documentation index](../README.md) > B-Splines/en diff --git a/wiki/translations/en/BIM_Box.md b/wiki/translations/en/BIM_Box.md index 7684ef9945..aa6dd4d5c9 100644 --- a/wiki/translations/en/BIM_Box.md +++ b/wiki/translations/en/BIM_Box.md @@ -7,6 +7,8 @@ SeeAlso:[Part Box](Part_Box.md) --- +# BIM Box/en + ## Description @@ -20,3 +22,6 @@ The BIM Box tool allows you to create a standard [Part Box](Part_Box.md), but in 3. Click a second point to define a first edge of the box, starting from the first point 4. Click a third point to define a first face of the box, orthogonal to the first edge 5. Click a fourth point to define the extrusion distance of the first face, forming the final box + +--- +[documentation index](../README.md) > BIM Box/en diff --git a/wiki/translations/en/BIM_Classification.md b/wiki/translations/en/BIM_Classification.md index 195372ddf7..77f8dee4c9 100644 --- a/wiki/translations/en/BIM_Classification.md +++ b/wiki/translations/en/BIM_Classification.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Classification --- +# BIM Classification/en + ## Description @@ -17,3 +19,6 @@ The classifications manager allows you to attribute a standard class to a BIM ob - Install one or more classification standard XML or IFC files as explained above - If you wish to add or edit a class for an object, select that object and press the BIM Classification button - If you wish to add or edit a class for a material, don\'t select anything and press the BIM Classification button. You will be able to browse the materials directly from the classification manager window + +--- +[documentation index](../README.md) > BIM Classification/en diff --git a/wiki/translations/en/BIM_Clone.md b/wiki/translations/en/BIM_Clone.md index 75354d5d56..04321d171c 100644 --- a/wiki/translations/en/BIM_Clone.md +++ b/wiki/translations/en/BIM_Clone.md @@ -7,6 +7,11 @@ SeeAlso:[[Draft Clone]] --- +# BIM Clone/en + ## Description The BIM Clone tool is a shortcut to the standard [Draft Clone](Draft_Clone.md) tool, but launches a [Draft Move](Draft_Move.md) command just after cloning, thus allowing you to clone and place the cloned object somewhere else in the model in one go. + +--- +[documentation index](../README.md) > BIM Clone/en diff --git a/wiki/translations/en/BIM_Copy.md b/wiki/translations/en/BIM_Copy.md index a5ae5bacca..428990d369 100644 --- a/wiki/translations/en/BIM_Copy.md +++ b/wiki/translations/en/BIM_Copy.md @@ -7,6 +7,11 @@ SeeAlso:[Draft Move](Draft_Move.md) --- +# BIM Copy/en + ## Description The BIM Copy tool is a shortcut to the standard [Draft Move](Draft_Move.md) tool, but starting with its **Copy** option turned on, therefore allowing to create a copy of an object and place it at a given location, in one go. + +--- +[documentation index](../README.md) > BIM Copy/en diff --git a/wiki/translations/en/BIM_IfcElements.md b/wiki/translations/en/BIM_IfcElements.md index 54b22005e8..65953e9646 100644 --- a/wiki/translations/en/BIM_IfcElements.md +++ b/wiki/translations/en/BIM_IfcElements.md @@ -7,6 +7,8 @@ SeeAlso:[[BIM IfcProperties]],[[BIM IfcQuantities]] --- +# BIM IfcElements/en + ## Description @@ -19,3 +21,6 @@ With it, you can: - Rename objects by double-clicking their name - Change their IFC type either by clicking an individual type or, if more than one is selected, using the \"change type to:\" drop-down menu - Change their material either by clicking an individual material or, if more than one is selected, using the \"change material to:\" drop-down menu + +--- +[documentation index](../README.md) > BIM IfcElements/en diff --git a/wiki/translations/en/BIM_IfcProperties.md b/wiki/translations/en/BIM_IfcProperties.md index 88205b5168..d7b3fa2f24 100644 --- a/wiki/translations/en/BIM_IfcProperties.md +++ b/wiki/translations/en/BIM_IfcProperties.md @@ -7,6 +7,8 @@ SeeAlso:[[BIM IfcElements]],[[BIM IfcQuantities]] --- +# BIM IfcProperties/en + ## Description @@ -30,3 +32,6 @@ Inside the CSV file, each line represents a different property set, beginning wi Pset_FreeCAD;Name;IfcLabel;Version;IfcReal would define a property set named \"FreeCAD\" (the Pset\_ prefix is not mandatory but is a common practice) that contains two properties: one called \"Name\" which is an IfcLabel (a piece of text), and another called \"Version\" which is an IfcReal (a numeric value with decimals) + +--- +[documentation index](../README.md) > BIM IfcProperties/en diff --git a/wiki/translations/en/BIM_IfcQuantities.md b/wiki/translations/en/BIM_IfcQuantities.md index 22cc31c7fe..15f0e00847 100644 --- a/wiki/translations/en/BIM_IfcQuantities.md +++ b/wiki/translations/en/BIM_IfcQuantities.md @@ -7,6 +7,8 @@ SeeAlso:[[BIM IfcElements]],[[BIM IfcProperties]] --- +# BIM IfcQuantities/en + ## Description @@ -20,3 +22,6 @@ The idea behind explicit quantities is to make them available to applications th By default, when exporting an IFC file from FreeCAD, no explicit quantities are exported. With the IFC quantities manager, you are able to mark which quantities should be exported, and check their values. Warning signs will be displayed next to zero values, notifying you of possible problems you might want to fix before exporting. You can also use the quantities manager to change or fix the actual **Height**, **Width** and **Length** values of objects. But this will affect the object geometry in FreeCAD. + +--- +[documentation index](../README.md) > BIM IfcQuantities/en diff --git a/wiki/translations/en/BIM_Layers.md b/wiki/translations/en/BIM_Layers.md index 9fbc2ed2a7..a73354e33a 100644 --- a/wiki/translations/en/BIM_Layers.md +++ b/wiki/translations/en/BIM_Layers.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Layers --- +# BIM Layers/en + ## Description @@ -15,3 +17,6 @@ The layers manager allows you to manage [layers](Draft_Layer.md). Layers are a s Layers are imported and exported from/to [IFC](Arch_IFC.md) and [DXF/DWG](Draft_DXF.md). The layers manager allow you to manage your layers, add or remove layers, or change their visual properties. To add objects to a layer, simply drag them into the layer in the tree view. To remove them, drag them from the layer and drop them into the document root. + +--- +[documentation index](../README.md) > BIM Layers/en diff --git a/wiki/translations/en/BIM_Levels.md b/wiki/translations/en/BIM_Levels.md index ec61ceb40a..fae9332791 100644 --- a/wiki/translations/en/BIM_Levels.md +++ b/wiki/translations/en/BIM_Levels.md @@ -1,2 +1,5 @@ # BIM Levels/en 1. REDIRECT [BIM\_Views/en](BIM_Views/en.md) + +--- +[documentation index](../README.md) > BIM Levels/en diff --git a/wiki/translations/en/BIM_Library.md b/wiki/translations/en/BIM_Library.md index d78b09b993..6435d8816e 100644 --- a/wiki/translations/en/BIM_Library.md +++ b/wiki/translations/en/BIM_Library.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Equipment]] --- +# BIM Library/en + ## Description The BIM Library tool allows you to place, in the current model, an object from the [FreeCAD Parts Library](Parts_Library.md), which must be installed via the [Addon Manager](Addon_Manager.md) for this tool to be available. @@ -34,3 +36,6 @@ The BIM Library tool allows you to place, in the current model, an object from t [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM Library/en diff --git a/wiki/translations/en/BIM_Preflight.md b/wiki/translations/en/BIM_Preflight.md index 2294c2cfa0..e5f29590aa 100644 --- a/wiki/translations/en/BIM_Preflight.md +++ b/wiki/translations/en/BIM_Preflight.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Preflight check --- +# BIM Preflight/en + ## Description @@ -85,3 +87,6 @@ def myCustomTest():    # text if the test failed. The string or text will be displayed    # to the user when they press the "Failed" button.    return result + +--- +[documentation index](../README.md) > BIM Preflight/en diff --git a/wiki/translations/en/BIM_Project.md b/wiki/translations/en/BIM_Project.md index 8cb1e46f7b..199a025a58 100644 --- a/wiki/translations/en/BIM_Project.md +++ b/wiki/translations/en/BIM_Project.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Manage project... --- +# BIM Project/en + ## Description @@ -26,3 +28,6 @@ The project setup dialog can create: The Project tool supports two kinds of templates: Once you have filled the different options, the contents of the BIM project setup wizard can be **saved** as a template. These templates can be **restored** and adapted at a later time. Project templates are stored as plain text files in your FreeCAD user folder. Alternatively, you can also save the contents of the current document as a template. This will save the currently opened document as a standard **.FCStd** file, but also include additional BIM settings like the current working plane, or current units. By using the **restore** option anytime, the contents of that template file will be merged into the active document and all settings found in it applied. + +--- +[documentation index](../README.md) > BIM Project/en diff --git a/wiki/translations/en/BIM_Setup.md b/wiki/translations/en/BIM_Setup.md index 994b613cd6..e385627674 100644 --- a/wiki/translations/en/BIM_Setup.md +++ b/wiki/translations/en/BIM_Setup.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Setup --- +# BIM Setup/en + ## Description @@ -13,3 +15,6 @@ The preferences system of FreeCAD, located under menu **Edit -\> Preferences**, is very complex. The **BIM setup dialog** offers a simplified version of it, by gathering some of the preferences settings most commonly used for BIM work under one simple screen. Changing any of the preference options there has the same effect as changing the corresponding setting under Edit -\> Preferences. By hovering the mouse over each setting, you will be shown a ttoltip explaining what it is used for, and the location of the corresponding setting in the general FreeCAD preferences system. + +--- +[documentation index](../README.md) > BIM Setup/en diff --git a/wiki/translations/en/BIM_Views.md b/wiki/translations/en/BIM_Views.md index 98df2b769f..1825b52e06 100644 --- a/wiki/translations/en/BIM_Views.md +++ b/wiki/translations/en/BIM_Views.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Views --- +# BIM Views/en + ## Description The BIM views and levels manager is a dockable window that opens below the normal tree view, that contains all the [BuildingParts](Arch_BuildingPart.md) and [Working Plane Proxies](Draft_WorkingPlaneProxy.md) of your model. @@ -36,3 +38,6 @@ The BIM views manager will show all the levels (building parts) and working plan }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > BIM Views/en diff --git a/wiki/translations/en/BIM_Windows.md b/wiki/translations/en/BIM_Windows.md index 8319e2e333..e427759c85 100644 --- a/wiki/translations/en/BIM_Windows.md +++ b/wiki/translations/en/BIM_Windows.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Windows --- +# BIM Windows/en + ## Description The BIM windows manager dialog allows you to browse and modify all the [windows and doors](Arch_Window.md) of your project together. This is often more convenient than editing them one by one, and allows you to make sure that they all have the parameters you require correctly set, such as tag, dimensions, description or material. @@ -20,3 +22,6 @@ The BIM windows manager dialog allows you to browse and modify all the [windows }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > BIM Windows/en diff --git a/wiki/translations/en/BIM_Workbench.md b/wiki/translations/en/BIM_Workbench.md index a53233e857..8b8b60425a 100644 --- a/wiki/translations/en/BIM_Workbench.md +++ b/wiki/translations/en/BIM_Workbench.md @@ -1,8 +1,4 @@ -# BIM Workbench/en - - - -BIM External Workbench icon +# BIM External Workbench icon BIM Workbench/en {{TOCright}} @@ -187,3 +183,6 @@ New workbenches are in development, stay tuned! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > BIM Workbench/en diff --git a/wiki/translations/en/BIM_application_compatibility_table.md b/wiki/translations/en/BIM_application_compatibility_table.md index d17b1da641..684dcac39e 100644 --- a/wiki/translations/en/BIM_application_compatibility_table.md +++ b/wiki/translations/en/BIM_application_compatibility_table.md @@ -1,6 +1,5 @@ # BIM application compatibility table/en - - This page gives a general overview of how the different tools and concepts found in other mainstream BIM applications compare to FreeCAD, specifically its [BIM Workbench](BIM_Workbench.md). +This page gives a general overview of how the different tools and concepts found in other mainstream BIM applications compare to FreeCAD, specifically its [BIM Workbench](BIM_Workbench.md). **TODO:** Add other BIM apps: Allplan, Tekla, Vectorworks, BricsCAD, what else? @@ -16,3 +15,6 @@ **Standard BIM elements** Walls, structures (beams, columns and slabs), windows (doors and windows), roofs, stairs, frames (railings), equipment (furniture, appliances, etc) Walls, beams, columns, floors, ceilings, windows, doors, roofs, stairs, railings, components (furniture, appliances, etc) Walls, beams, columns, slabs, windows, doors, roofs, stairs, railings, curtain walls, objects (furniture, appliances, etc) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM application compatibility table/en diff --git a/wiki/translations/en/BIM_ingame_tutorial.md b/wiki/translations/en/BIM_ingame_tutorial.md index e600fae486..d3e5aa49eb 100644 --- a/wiki/translations/en/BIM_ingame_tutorial.md +++ b/wiki/translations/en/BIM_ingame_tutorial.md @@ -1,8 +1,4 @@ -# BIM ingame tutorial/en - - - - +# BIM ingame tutorial/en {{BIMTutorialAction|descr=This is the in-game tutorial of the [BIM Workbench](BIM_Workbench.md). It is not meant to be read here on the wiki, but rather to be started from inside FreeCAD, in the BIM workbench, under menu '''Help -> BIM tutorial'''. It includes a series of steps to be completed by the user. Each step is terminated by an instance of the [{{BIMTutorialAction|descr|goal1|test1|goal2|test2}}](Template:BIMTutorialAction.md) template, which informs of the condition that need to be met. Images should be 300px wide. No SVG images should be used on this page, as they are not supported by the QTextBrowser widget}} @@ -509,3 +505,6 @@ FreeCAD is free software, developed by an enthusiast community of users, some of {{BIMTutorialAction|descr=No action to perform for this step}} [Category:BIM](Category:BIM.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM ingame tutorial/en diff --git a/wiki/translations/en/BOLTSFC_Workbench.md b/wiki/translations/en/BOLTSFC_Workbench.md index c716433d0b..a28c21dad3 100644 --- a/wiki/translations/en/BOLTSFC_Workbench.md +++ b/wiki/translations/en/BOLTSFC_Workbench.md @@ -1,5 +1,5 @@ # BOLTSFC Workbench/en - } The FreeCAD BOLTS External Workbench Icon +} The FreeCAD BOLTS External Workbench Icon ## Introduction @@ -72,3 +72,6 @@ is required. [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > BOLTSFC Workbench/en diff --git a/wiki/translations/en/Base_API.md b/wiki/translations/en/Base_API.md index 30a1d10490..29f253e50a 100644 --- a/wiki/translations/en/Base_API.md +++ b/wiki/translations/en/Base_API.md @@ -1,5 +1,5 @@ # Base API/en - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** The Base module is contained inside the FreeCAD module and contains constructors for different types of objects heavily used in FreeCAD. @@ -30,3 +30,6 @@ A bounding box is an orthographic cube which is a way to describe outer boundari [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Base API/en diff --git a/wiki/translations/en/Basic_Attachment_Tutorial.md b/wiki/translations/en/Basic_Attachment_Tutorial.md index 7bce094c88..c6278f566f 100644 --- a/wiki/translations/en/Basic_Attachment_Tutorial.md +++ b/wiki/translations/en/Basic_Attachment_Tutorial.md @@ -1,7 +1,4 @@ # Basic Attachment Tutorial/en - - - {{TutorialInfo |Topic=Attachment |Level=Beginner/Intermediate @@ -301,3 +298,6 @@ Happy Attaching! }} {{PartDesign_Tools_navi}} {{Sketcher_Tools_navi}} [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > Basic Attachment Tutorial/en diff --git a/wiki/translations/en/Basic_Part_Design_Tutorial.md b/wiki/translations/en/Basic_Part_Design_Tutorial.md index 1f43a440f8..2bbb8f520a 100644 --- a/wiki/translations/en/Basic_Part_Design_Tutorial.md +++ b/wiki/translations/en/Basic_Part_Design_Tutorial.md @@ -1,5 +1,5 @@ # Basic Part Design Tutorial/en - {{TutorialInfo +{{TutorialInfo |Topic=Modeling |Level=Beginner |Author=Mark Stephen ([Quick61](User:Quick61.md)) and HarryGeier ([HarryGeier](User:HarryGeier.md)) @@ -148,4 +148,7 @@ This tutorial and your model are complete. {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Part Design Tutorial/en diff --git a/wiki/translations/en/Basic_Part_Design_Tutorial_017.md b/wiki/translations/en/Basic_Part_Design_Tutorial_017.md index 03f0185e0f..ba1fbbbdcc 100644 --- a/wiki/translations/en/Basic_Part_Design_Tutorial_017.md +++ b/wiki/translations/en/Basic_Part_Design_Tutorial_017.md @@ -1,2 +1,5 @@ # Basic Part Design Tutorial 017/en 1. REDIRECT [Basic\_Part\_Design\_Tutorial/en](Basic_Part_Design_Tutorial/en.md) + +--- +[documentation index](../README.md) > Basic Part Design Tutorial 017/en diff --git a/wiki/translations/en/Basic_Sketcher_Tutorial.md b/wiki/translations/en/Basic_Sketcher_Tutorial.md index 6751421977..fad33035df 100644 --- a/wiki/translations/en/Basic_Sketcher_Tutorial.md +++ b/wiki/translations/en/Basic_Sketcher_Tutorial.md @@ -1,7 +1,4 @@ # Basic Sketcher Tutorial/en - - - {{TutorialInfo |Topic=Sketcher |Level=Beginner @@ -292,4 +289,7 @@ Constraining a sketch can be done in many different ways. In general, it is reco {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Sketcher Tutorial/en diff --git a/wiki/translations/en/Basic_TechDraw_Tutorial.md b/wiki/translations/en/Basic_TechDraw_Tutorial.md index 1572b18d97..e6bb73add4 100644 --- a/wiki/translations/en/Basic_TechDraw_Tutorial.md +++ b/wiki/translations/en/Basic_TechDraw_Tutorial.md @@ -1,5 +1,5 @@ # Basic TechDraw Tutorial/en - {{TutorialInfo +{{TutorialInfo |Topic=Modeling |Level=Beginner |Author=[WandererFan](User:WandererFan.md) @@ -132,4 +132,7 @@ There is much more functionality in TechDraw for you to explore - Section Views, {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Basic TechDraw Tutorial/en diff --git a/wiki/translations/en/Basic_modeling_tutorial.md b/wiki/translations/en/Basic_modeling_tutorial.md index cb1778f98c..593b0198e7 100644 --- a/wiki/translations/en/Basic_modeling_tutorial.md +++ b/wiki/translations/en/Basic_modeling_tutorial.md @@ -1,5 +1,5 @@ # Basic modeling tutorial/en - {{TutorialInfo +{{TutorialInfo |Topic= Introduction to modelling |Level= Beginner |Time= 15 minutes @@ -131,4 +131,7 @@ The above instructions will work, no matter what label your button has. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Basic modeling tutorial/en diff --git a/wiki/translations/en/Bitmap.md b/wiki/translations/en/Bitmap.md index 2fc0a847f8..3ac12a5b1e 100644 --- a/wiki/translations/en/Bitmap.md +++ b/wiki/translations/en/Bitmap.md @@ -1,6 +1,4 @@ # Bitmap/en - - ## Description [Bitmaps](https://en.wikipedia.org/wiki/Bitmap) or [raster graphics](http://en.wikipedia.org/wiki/Raster_graphics) are 2D images that are collections of pixels painted of different color shades. Together, thousands or millions of these pixels are able to represent an image or color picture to the human eye. @@ -17,3 +15,6 @@ FreeCAD can import bitmap images using the [Image Workbench](Image_Workbench.md) [Category:User Documentation](Category:User_Documentation.md) [Category:TechDraw](Category:TechDraw.md) [Category:Image](Category:Image.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Bitmap/en diff --git a/wiki/translations/en/Body.md b/wiki/translations/en/Body.md index cfb8d0fc07..b0560c7dda 100644 --- a/wiki/translations/en/Body.md +++ b/wiki/translations/en/Body.md @@ -1,6 +1,4 @@ # Body/en - - ## Introduction In FreeCAD the word \"[Body](Body.md)\" is normally used to refer to a [PartDesign Body](PartDesign_Body.md) object (`PartDesign::Body` class) that is defined by the [PartDesign Workbench](PartDesign_Workbench.md). This is a container object that can hold [2D sketches](Sketch.md) and [3D geometrical features](PartDesign_Feature.md) to build a solid shape. @@ -29,3 +27,6 @@ A Body is not required when using the [Part Workbench](Part_Workbench.md), as th }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Body/en diff --git a/wiki/translations/en/Branding.md b/wiki/translations/en/Branding.md index be9abe0bac..32763905b6 100644 --- a/wiki/translations/en/Branding.md +++ b/wiki/translations/en/Branding.md @@ -1,10 +1,4 @@ # Branding/en - - - - - - {{TOCright}} ## Overview @@ -100,3 +94,6 @@ All listed tags are optional. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Branding/en diff --git a/wiki/translations/en/Bug_Triage.md b/wiki/translations/en/Bug_Triage.md index e92d10a8db..b2f74aca92 100644 --- a/wiki/translations/en/Bug_Triage.md +++ b/wiki/translations/en/Bug_Triage.md @@ -1,10 +1,4 @@ # Bug Triage/en - - - - - - {{TOCright}} ## Why @@ -155,3 +149,6 @@ An important methodology to track tickets by a certain subject/theme/category. I [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Bug Triage/en diff --git a/wiki/translations/en/Builtin_modules.md b/wiki/translations/en/Builtin_modules.md index 97d3ec084b..741d76d051 100644 --- a/wiki/translations/en/Builtin_modules.md +++ b/wiki/translations/en/Builtin_modules.md @@ -1,5 +1,5 @@ # Builtin modules/en - **(October 2019) Do not edit these pages. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself by following [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit these pages. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself by following [Source documentation](Source_documentation.md).** This page presents more in-depth information over the built-in FreeCAD modules, and what are the functions and properties availible to you. This page is not a complete list of all the contents of these modules, and, because of the fast evolution of FreeCAD, the information presented here might be slightly outdated, but it should give you a good overview of the possibilities. For complete list of the modules content, use the dir(module) function in the interpreter. @@ -25,3 +25,6 @@ This page presents more in-depth information over the built-in FreeCAD modules, }} [Category:API](Category:API.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Builtin modules/en diff --git a/wiki/translations/en/CAM_project.md b/wiki/translations/en/CAM_project.md index 34a943ae40..863d759bf3 100644 --- a/wiki/translations/en/CAM_project.md +++ b/wiki/translations/en/CAM_project.md @@ -1,7 +1,10 @@ # CAM project/en - The CAM workbench and project is deprecated. See instead [Path Workbench](Path_Workbench.md) +The CAM workbench and project is deprecated. See instead [Path Workbench](Path_Workbench.md) [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > CAM project/en diff --git a/wiki/translations/en/CadQuery_Workbench.md b/wiki/translations/en/CadQuery_Workbench.md index 4a150f51ee..224192f4fd 100644 --- a/wiki/translations/en/CadQuery_Workbench.md +++ b/wiki/translations/en/CadQuery_Workbench.md @@ -1,5 +1,4 @@ -# CadQuery Workbench/en - CadQuery workbench icon +# CadQuery workbench icon CadQuery Workbench/en **(January 2021) @@ -58,3 +57,6 @@ The latest version of CadQuery is no longer using FreeCAD and is not compatible [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > CadQuery Workbench/en diff --git a/wiki/translations/en/Category:3rd_Party.md b/wiki/translations/en/Category:3rd_Party.md index e0a1a38bcf..f883763049 100644 --- a/wiki/translations/en/Category:3rd_Party.md +++ b/wiki/translations/en/Category:3rd_Party.md @@ -4,3 +4,6 @@ External aka 3rd-Party applications/libraries that FreeCAD depends on or are of ### Contents: [3Dconnexion input devices/en](3Dconnexion_input_devices/en.md) , [Developing FreeCAD with GitKraken/en](Developing_FreeCAD_with_GitKraken/en.md) , [Developing FreeCAD with KDevelop/en](Developing_FreeCAD_with_KDevelop/en.md) , [Doxygen/en](Doxygen/en.md) , [IfcOpenShell/en](IfcOpenShell/en.md) , [Import/Export IFC - compiling IfcOpenShell/en](Import/Export_IFC_-_compiling_IfcOpenShell/en.md) , [NumPy/en](NumPy/en.md) , [OpenCamLib/en](OpenCamLib/en.md) , [OpenCascade/en](OpenCascade/en.md) , [Std DependencyGraph/en](Std_DependencyGraph/en.md) , [SweetHome3D/en](SweetHome3D/en.md) + +--- +[documentation index](../README.md) > Category:3rd Party/en diff --git a/wiki/translations/en/Category:API.md b/wiki/translations/en/Category:API.md index 50e9189f5a..f3955f4144 100644 --- a/wiki/translations/en/Category:API.md +++ b/wiki/translations/en/Category:API.md @@ -1,5 +1,4 @@ # Category:API/en - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** This category gathers articles that list objects and methods available for [Python](Python.md) programming. @@ -9,3 +8,6 @@ This category gathers articles that list objects and methods available for [Pyth [Arch API/en](Arch_API/en.md) , [Base API/en](Base_API/en.md) , [Builtin modules/en](Builtin_modules/en.md) , [Console API/en](Console_API/en.md) , [Draft API/en](Draft_API/en.md) , [FeaturePython Custom Properties/en](FeaturePython_Custom_Properties/en.md) , [FreeCAD API/en](FreeCAD_API/en.md) , [FreeCADGui API/en](FreeCADGui_API/en.md) , [Matrix API/en](Matrix_API/en.md) , [Mesh API/en](Mesh_API/en.md) , [Object API/en](Object_API/en.md) , [Part API/en](Part_API/en.md) , [Placement API/en](Placement_API/en.md) , [Reinforcement API/en](Reinforcement_API/en.md) , [Selection API/en](Selection_API/en.md) , [TechDraw API/en](TechDraw_API/en.md) , [TechDrawGui API/en](TechDrawGui_API/en.md) , [TopoShape API/en](TopoShape_API/en.md) , [Vector API/en](Vector_API/en.md) , [ViewObject API/en](ViewObject_API/en.md) , [Category:Categories/en](Category:Categories/en.md) [Category:Robot API/en](Category:Robot_API/en.md) + +--- +[documentation index](../README.md) > Category:API/en diff --git a/wiki/translations/en/Category:API_Documentation.md b/wiki/translations/en/Category:API_Documentation.md index 5758324e33..7f7e1d1653 100644 --- a/wiki/translations/en/Category:API_Documentation.md +++ b/wiki/translations/en/Category:API_Documentation.md @@ -6,3 +6,6 @@ This category gathers all articles documenting the python API of FreeCAD and its [Python/en](Python/en.md) [Category:Documentation/en](Category:Documentation/en.md) + +--- +[documentation index](../README.md) > Category:API Documentation/en diff --git a/wiki/translations/en/Category:Addons.md b/wiki/translations/en/Category:Addons.md index 339665559e..6f632293f7 100644 --- a/wiki/translations/en/Category:Addons.md +++ b/wiki/translations/en/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/en - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [A2plus Workbench/en](A2plus_Workbench/en.md) , [Addon/en](Addon/en.md) , [Animation Workbench/en](Animation_Workbench/en.md) , [Assembly2 Workbench/en](Assembly2_Workbench/en.md) , [Assembly3 Workbench/en](Assembly3_Workbench/en.md) , [Assembly4 Workbench/en](Assembly4_Workbench/en.md) , [BIM Workbench/en](BIM_Workbench/en.md) , [BOLTSFC Workbench/en](BOLTSFC_Workbench/en.md) , [CadQuery Workbench/en](CadQuery_Workbench/en.md) , [Cfd Workbench/en](Cfd_Workbench/en.md) , [Civil Engineering Workbench/en](Civil_Engineering_Workbench/en.md) , [CurvedShapes Workbench/en](CurvedShapes_Workbench/en.md) , [Curves Workbench/en](Curves_Workbench/en.md) , [Defeaturing Workbench/en](Defeaturing_Workbench/en.md) , [Defeaturing/en](Defeaturing/en.md) , [Drawing Dimensioning Addon/en](Drawing_Dimensioning_Addon/en.md) , [DynamicData Workbench/en](DynamicData_Workbench/en.md) , [ExplodedAssembly Workbench/en](ExplodedAssembly_Workbench/en.md) , [External workbenches/en](External_workbenches/en.md) , [Fasteners Workbench/en](Fasteners_Workbench/en.md) , [FCGear BevelGear/en](FCGear_BevelGear/en.md) , [FCGear CrownGear/en](FCGear_CrownGear/en.md) , [FCGear CycloideGear/en](FCGear_CycloideGear/en.md) , [FCGear InvoluteGear/en](FCGear_InvoluteGear/en.md) , [FCGear InvoluteRack/en](FCGear_InvoluteRack/en.md) , [FCGear LanternGear/en](FCGear_LanternGear/en.md) , [FCGear TimingGear/en](FCGear_TimingGear/en.md) , [FCGear Workbench/en](FCGear_Workbench/en.md) , [FCGear WormGear/en](FCGear_WormGear/en.md) , [FEM FrontISTR Workbench/en](FEM_FrontISTR_Workbench/en.md) , [Flamingo Workbench/en](Flamingo_Workbench/en.md) , [How to install additional workbenches/en](How_to_install_additional_workbenches/en.md) , [KicadStepUp Workbench/en](KicadStepUp_Workbench/en.md) , [Lattice2 Workbench/en](Lattice2_Workbench/en.md) , [Macro Kerkythea/en](Macro_Kerkythea/en.md) , [Macro WorkFeatures/en](Macro_WorkFeatures/en.md) , [Manipulator Workbench/en](Manipulator_Workbench/en.md) , [ModernUI Workbench/en](ModernUI_Workbench/en.md) , [MOOC Workbench/en](MOOC_Workbench/en.md) , [OSE 3D Printer Workbench/en](OSE_3D_Printer_Workbench/en.md) , [OSE Piping Workbench/en](OSE_Piping_Workbench/en.md) , [Parts Library Workbench/en](Parts_Library_Workbench/en.md) , [PCB Workbench/en](PCB_Workbench/en.md) , [Plot Axes/en](Plot_Axes/en.md) , [Plot Basic tutorial/en](Plot_Basic_tutorial/en.md) , [Plot Grid/en](Plot_Grid/en.md) , [Plot Labels/en](Plot_Labels/en.md) , [Plot Legend/en](Plot_Legend/en.md) , [Plot Module/en](Plot_Module/en.md) , [Plot MultiAxes tutorial/en](Plot_MultiAxes_tutorial/en.md) , [Plot Positions/en](Plot_Positions/en.md) , [Plot Save/en](Plot_Save/en.md) , [Plot Series/en](Plot_Series/en.md) , [POV-Ray-Rendering Workbench/en](POV-Ray-Rendering_Workbench/en.md) , [Pyramids and polyhedrons Workbench/en](Pyramids_and_polyhedrons_Workbench/en.md) , [Pyrate Workbench/en](Pyrate_Workbench/en.md) , [Reinforcement Workbench/en](Reinforcement_Workbench/en.md) , [Render project/en](Render_project/en.md) , [Rocket BodyTube/en](Rocket_BodyTube/en.md) , [Rocket Bulkhead/en](Rocket_Bulkhead/en.md) , [Rocket CenteringRing/en](Rocket_CenteringRing/en.md) , [Rocket Ejection Charge Calculator/en](Rocket_Ejection_Charge_Calculator/en.md) , [Rocket Fin/en](Rocket_Fin/en.md) , [Rocket NoseCone/en](Rocket_NoseCone/en.md) , [Rocket Parachute Size Calculator/en](Rocket_Parachute_Size_Calculator/en.md) , [Rocket Thrust To Weight Calculator/en](Rocket_Thrust_To_Weight_Calculator/en.md) , [Rocket Transition/en](Rocket_Transition/en.md) , [Rocket Vent Hole Size Calculator/en](Rocket_Vent_Hole_Size_Calculator/en.md) , [Rocket Workbench/en](Rocket_Workbench/en.md) , [SheetMetal AddBase/en](SheetMetal_AddBase/en.md) , [SheetMetal AddBend/en](SheetMetal_AddBend/en.md) , [SheetMetal AddCornerRelief/en](SheetMetal_AddCornerRelief/en.md) , [SheetMetal AddFoldWall/en](SheetMetal_AddFoldWall/en.md) , [SheetMetal AddJunction/en](SheetMetal_AddJunction/en.md) , [SheetMetal AddRelief/en](SheetMetal_AddRelief/en.md) , [SheetMetal AddWall/en](SheetMetal_AddWall/en.md) , [SheetMetal Examples/en](SheetMetal_Examples/en.md) , [SheetMetal Extrude/en](SheetMetal_Extrude/en.md) , [SheetMetal Forming/en](SheetMetal_Forming/en.md) , [SheetMetal SketchOnSheet/en](SheetMetal_SketchOnSheet/en.md) , [SheetMetal UnattendedUnfold/en](SheetMetal_UnattendedUnfold/en.md) , [SheetMetal Unfold/en](SheetMetal_Unfold/en.md) , [SheetMetal Workbench/en](SheetMetal_Workbench/en.md) , [Ship Workbench/en](Ship_Workbench/en.md) , [Silk Workbench/en](Silk_Workbench/en.md) , [Stemfie Workbench/en](Stemfie_Workbench/en.md) , [Symbols Library Workbench/en](Symbols_Library_Workbench/en.md) , [ThreadProfile Workbench/en](ThreadProfile_Workbench/en.md) , [Timber Workbench/en](Timber_Workbench/en.md) , [WebTools Workbench/en](WebTools_Workbench/en.md) , [Wood Frame Workbench/en](Wood_Frame_Workbench/en.md) , [Workfeature Workbench/en](Workfeature_Workbench/en.md) , , , [Category:Categories](Category:Categories.md) [Category:External Workbenches/en](Category:External_Workbenches/en.md) [Category:FCGear/en](Category:FCGear/en.md) [Category:Macros/en](Category:Macros/en.md) + +--- +[documentation index](../README.md) > Category:Addons/en diff --git a/wiki/translations/en/Category:Administration.md b/wiki/translations/en/Category:Administration.md index 005fb3b3a0..fa246c4ff3 100644 --- a/wiki/translations/en/Category:Administration.md +++ b/wiki/translations/en/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/en](Template:Arch_Tools_navi/en.md) , [Template:Artwork/en](Template:Artwork/en.md) , [Bug Triage/en](Bug_Triage/en.md) , [Changelog/en](Changelog/en.md) , [Crowdin Administration/en](Crowdin_Administration/en.md) , [Crowdin Scripts/en](Crowdin_Scripts/en.md) , [Organization chart/en](Organization_chart/en.md) , [Template:Powerdocnavi/en](Template:Powerdocnavi/en.md) , [Python 3/en](Python_3/en.md) , [Template:Robot Tools navi/en](Template:Robot_Tools_navi/en.md) , [Template:Std Base navi/en](Template:Std_Base_navi/en.md) , [Tracker/en](Tracker/en.md) , [Template:UnfinishedDocu/en](Template:UnfinishedDocu/en.md) , [WikiPages/en](WikiPages/en.md) , [WikiRobots/en](WikiRobots/en.md) , , [Category:Categories/en](Category:Categories/en.md) [Category:UnfinishedDocu/en](Category:UnfinishedDocu/en.md) [Category:Wiki/en](Category:Wiki/en.md) + +--- +[documentation index](../README.md) > Category:Administration/en diff --git a/wiki/translations/en/Category:Arch.md b/wiki/translations/en/Category:Arch.md index 2531f73cab..68750eb096 100644 --- a/wiki/translations/en/Category:Arch.md +++ b/wiki/translations/en/Category:Arch.md @@ -6,3 +6,6 @@ This category list pages related to the [Arch Workbench](Arch_Workbench.md), the [Arch 3DS/en](Arch_3DS/en.md) , [Arch 3Views/en](Arch_3Views/en.md) , [Arch Add/en](Arch_Add/en.md) , [Arch API/en](Arch_API/en.md) , [Arch Axis/en](Arch_Axis/en.md) , [Arch AxisSystem/en](Arch_AxisSystem/en.md) , [Arch Building/en](Arch_Building/en.md) , [Arch BuildingPart/en](Arch_BuildingPart/en.md) , [Arch Check/en](Arch_Check/en.md) , [Arch CloneComponent/en](Arch_CloneComponent/en.md) , [Arch CloseHoles/en](Arch_CloseHoles/en.md) , [Arch CompAxis/en](Arch_CompAxis/en.md) , [Arch Component/en](Arch_Component/en.md) , [Arch CompPanel/en](Arch_CompPanel/en.md) , [Arch CompPipe/en](Arch_CompPipe/en.md) , [Arch CompRebarStraight/en](Arch_CompRebarStraight/en.md) , [Arch CompSetMaterial/en](Arch_CompSetMaterial/en.md) , [Arch CurtainWall/en](Arch_CurtainWall/en.md) , [Arch CutLine/en](Arch_CutLine/en.md) , [Arch CutPlane/en](Arch_CutPlane/en.md) , [Arch DAE/en](Arch_DAE/en.md) , [Arch Door/en](Arch_Door/en.md) , [Arch Equipment/en](Arch_Equipment/en.md) , [Arch Fence/en](Arch_Fence/en.md) , [Arch Floor/en](Arch_Floor/en.md) , [Arch Frame/en](Arch_Frame/en.md) , [Arch Grid/en](Arch_Grid/en.md) , [Arch IFC/en](Arch_IFC/en.md) , [Arch IfcExplorer/en](Arch_IfcExplorer/en.md) , [Arch IfcSpreadsheet/en](Arch_IfcSpreadsheet/en.md) , [Arch JSON/en](Arch_JSON/en.md) , [Arch MergeWalls/en](Arch_MergeWalls/en.md) , [Arch MeshToShape/en](Arch_MeshToShape/en.md) , [Arch MultiMaterial/en](Arch_MultiMaterial/en.md) , [Arch Nest/en](Arch_Nest/en.md) , [Arch OBJ/en](Arch_OBJ/en.md) , [Arch Panel Cut/en](Arch_Panel_Cut/en.md) , [Arch Panel Sheet/en](Arch_Panel_Sheet/en.md) , [Arch panel tutorial/en](Arch_panel_tutorial/en.md) , [Arch Panel/en](Arch_Panel/en.md) , [Arch Pipe/en](Arch_Pipe/en.md) , [Arch PipeConnector/en](Arch_PipeConnector/en.md) , [Arch Preferences/en](Arch_Preferences/en.md) , [Arch Profile/en](Arch_Profile/en.md) , [Arch Project/en](Arch_Project/en.md) , [Arch Rebar BeamReinforcement/en](Arch_Rebar_BeamReinforcement/en.md) , [Arch Rebar BentShape/en](Arch_Rebar_BentShape/en.md) , [Arch Rebar Circular ColumnReinforcement/en](Arch_Rebar_Circular_ColumnReinforcement/en.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/en](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/en.md) , [Arch Rebar ColumnReinforcement/en](Arch_Rebar_ColumnReinforcement/en.md) , [Arch Rebar Dimensioning/en](Arch_Rebar_Dimensioning/en.md) , [Arch Rebar Drawing Dimensioning/en](Arch_Rebar_Drawing_Dimensioning/en.md) , [Arch Rebar Drawing/en](Arch_Rebar_Drawing/en.md) , [Arch Rebar Helical/en](Arch_Rebar_Helical/en.md) , [Arch Rebar LShape/en](Arch_Rebar_LShape/en.md) , [Arch Rebar Slab Reinforcement/en](Arch_Rebar_Slab_Reinforcement/en.md) , [Arch Rebar Stirrup/en](Arch_Rebar_Stirrup/en.md) , [Arch Rebar Straight/en](Arch_Rebar_Straight/en.md) , [Arch Rebar UShape/en](Arch_Rebar_UShape/en.md) , [Arch Rebar/en](Arch_Rebar/en.md) , [Arch Reference/en](Arch_Reference/en.md) , [Arch Remove/en](Arch_Remove/en.md) , [Arch RemoveShape/en](Arch_RemoveShape/en.md) , [Arch Roof/en](Arch_Roof/en.md) , [Arch Schedule/en](Arch_Schedule/en.md) , [Arch SectionPlane/en](Arch_SectionPlane/en.md) , [Arch SelectNonSolidMeshes/en](Arch_SelectNonSolidMeshes/en.md) , [Arch SetMaterial/en](Arch_SetMaterial/en.md) , [Arch SHP/en](Arch_SHP/en.md) , [Arch Site/en](Arch_Site/en.md) , [Arch Space/en](Arch_Space/en.md) , [Arch SplitMesh/en](Arch_SplitMesh/en.md) , [Arch Stairs/en](Arch_Stairs/en.md) , [Arch Structure/en](Arch_Structure/en.md) , [Arch Survey/en](Arch_Survey/en.md) , [Arch ToggleIfcBrepFlag/en](Arch_ToggleIfcBrepFlag/en.md) , [Arch ToggleSubs/en](Arch_ToggleSubs/en.md) , [Template:Arch Tools navi/en](Template:Arch_Tools_navi/en.md) , [Arch Truss/en](Arch_Truss/en.md) , [Arch tutorial/en](Arch_tutorial/en.md) , [Arch Wall/en](Arch_Wall/en.md) , [Arch Window/en](Arch_Window/en.md) , [Arch Workbench/en](Arch_Workbench/en.md) , [Artwork Arch/en](Artwork_Arch/en.md) , [BIM Library/en](BIM_Library/en.md) , [Custom Spacing/en](Custom_Spacing/en.md) , [IfcOpenShell/en](IfcOpenShell/en.md) , [IfcPlusPlus/en](IfcPlusPlus/en.md) , [Import/Export IFC - compiling IfcOpenShell/en](Import/Export_IFC_-_compiling_IfcOpenShell/en.md) , [Manual:BIM modeling/en](Manual:BIM_modeling/en.md) , [Material editor/en](Material_editor/en.md) , [Material/en](Material/en.md) , [Reinforcement Addon/en](Reinforcement_Addon/en.md) , [Reinforcement API/en](Reinforcement_API/en.md) , [SweetHome3D/en](SweetHome3D/en.md) , [Tutorial custom placing of windows and doors/en](Tutorial_custom_placing_of_windows_and_doors/en.md) , [Tutorial for open windows/en](Tutorial_for_open_windows/en.md) [Category:BIM/en](Category:BIM/en.md) [Category:Workbenches/en](Category:Workbenches/en.md) [Category:User Documentation/en](Category:User_Documentation/en.md) + +--- +[documentation index](../README.md) > Category:Arch/en diff --git a/wiki/translations/en/Category:Artwork.md b/wiki/translations/en/Category:Artwork.md index 6487e04acd..74cec825a1 100644 --- a/wiki/translations/en/Category:Artwork.md +++ b/wiki/translations/en/Category:Artwork.md @@ -6,3 +6,6 @@ This category collects pages related to artwork existing in the program, like ic [Artwork Arch/en](Artwork_Arch/en.md) , [Artwork Assembly/en](Artwork_Assembly/en.md) , [Artwork Assembly3/en](Artwork_Assembly3/en.md) , [Artwork Erroneous/en](Artwork_Erroneous/en.md) , [Artwork Fem/en](Artwork_Fem/en.md) , [Artwork Gui/en](Artwork_Gui/en.md) , [Artwork Image/en](Artwork_Image/en.md) , [Artwork Inspection/en](Artwork_Inspection/en.md) , [Artwork Material/en](Artwork_Material/en.md) , [Artwork Mesh/en](Artwork_Mesh/en.md) , [Artwork MeshPart/en](Artwork_MeshPart/en.md) , [Artwork OpenSCAD/en](Artwork_OpenSCAD/en.md) , [Artwork Part/en](Artwork_Part/en.md) , [Artwork PartDesign/en](Artwork_PartDesign/en.md) , [Artwork Path/en](Artwork_Path/en.md) , [Artwork Plot/en](Artwork_Plot/en.md) , [Artwork Points/en](Artwork_Points/en.md) , [Artwork Raytracing/en](Artwork_Raytracing/en.md) , [Artwork ReverseEngineering/en](Artwork_ReverseEngineering/en.md) , [Artwork Robot/en](Artwork_Robot/en.md) , [Artwork Ship/en](Artwork_Ship/en.md) , [Artwork Sketcher/en](Artwork_Sketcher/en.md) , [Artwork Splash screen/en](Artwork_Splash_screen/en.md) , [Artwork Spreadsheet/en](Artwork_Spreadsheet/en.md) , [Artwork Start/en](Artwork_Start/en.md) , [Artwork Surface/en](Artwork_Surface/en.md) , [Artwork TechDraw/en](Artwork_TechDraw/en.md) , [Artwork Web/en](Artwork_Web/en.md) , [Artwork/en](Artwork/en.md) , [Template:Artwork/en](Template:Artwork/en.md) [Category:Developer Documentation/en](Category:Developer_Documentation/en.md) + +--- +[documentation index](../README.md) > Category:Artwork/en diff --git a/wiki/translations/en/Category:BIM.md b/wiki/translations/en/Category:BIM.md index 004f34a619..4b04e27b56 100644 --- a/wiki/translations/en/Category:BIM.md +++ b/wiki/translations/en/Category:BIM.md @@ -6,3 +6,6 @@ This category is for pages related to Building Information Management (BIM). The [Arch IfcExplorer/en](Arch_IfcExplorer/en.md) , [BIM application compatibility table/en](BIM_application_compatibility_table/en.md) , [BIM ingame tutorial/en](BIM_ingame_tutorial/en.md) , [BIM Library/en](BIM_Library/en.md) , [BIM Workbench/en](BIM_Workbench/en.md) , [IfcOpenShell/en](IfcOpenShell/en.md) , [Import/Export IFC - compiling IfcOpenShell/en](Import/Export_IFC_-_compiling_IfcOpenShell/en.md) , [Manual:BIM modeling/en](Manual:BIM_modeling/en.md) , [Material/en](Material/en.md) , [Category:User Documentation/en](Category:User_Documentation/en.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Arch/en](Category:Arch/en.md) + +--- +[documentation index](../README.md) > Category:BIM/en diff --git a/wiki/translations/en/Category:Categories.md b/wiki/translations/en/Category:Categories.md index 8239de31a2..9687b65f54 100644 --- a/wiki/translations/en/Category:Categories.md +++ b/wiki/translations/en/Category:Categories.md @@ -6,3 +6,6 @@ This page lists all categories with the en language tag. , , , , , , , , , , , , , , , , , , [Category:Categories/en](Category:Categories/en.md) [Category:Addons/en](Category:Addons/en.md) [Category:Administration/en](Category:Administration/en.md) [Category:API/en](Category:API/en.md) [Category:Categories/en](Category:Categories/en.md) [Category:Command Reference/en](Category:Command_Reference/en.md) [Category:Developer/en](Category:Developer/en.md) [Category:Documentation/en](Category:Documentation/en.md) [Category:Help/en](Category:Help/en.md) [Category:Hubs/en](Category:Hubs/en.md) [Category:Image/en](Category:Image/en.md) [Category:Macros/en](Category:Macros/en.md) [Category:News/en](Category:News/en.md) [Category:Python Code/en](Category:Python_Code/en.md) [Category:Repository/en](Category:Repository/en.md) [Category:Roadmap/en](Category:Roadmap/en.md) [Category:Template/en](Category:Template/en.md) [Category:Tutorials/en](Category:Tutorials/en.md) [Category:UnfinishedDocu/en](Category:UnfinishedDocu/en.md) [Category:Wiki/en](Category:Wiki/en.md) + +--- +[documentation index](../README.md) > Category:Categories/en diff --git a/wiki/translations/en/Category:Command_Reference.md b/wiki/translations/en/Category:Command_Reference.md index e822afe6d7..02ac106f96 100644 --- a/wiki/translations/en/Category:Command_Reference.md +++ b/wiki/translations/en/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD [command/en](command/en [Arch 3Views/en](Arch_3Views/en.md) , [Arch Add/en](Arch_Add/en.md) , [Arch Axis/en](Arch_Axis/en.md) , [Arch AxisSystem/en](Arch_AxisSystem/en.md) , [Arch Building/en](Arch_Building/en.md) , [Arch BuildingPart/en](Arch_BuildingPart/en.md) , [Arch Check/en](Arch_Check/en.md) , [Arch CloneComponent/en](Arch_CloneComponent/en.md) , [Arch CloseHoles/en](Arch_CloseHoles/en.md) , [Arch CompAxis/en](Arch_CompAxis/en.md) , [Arch Component/en](Arch_Component/en.md) , [Arch CompPanel/en](Arch_CompPanel/en.md) , [Arch CompPipe/en](Arch_CompPipe/en.md) , [Arch CompRebarStraight/en](Arch_CompRebarStraight/en.md) , [Arch CompSetMaterial/en](Arch_CompSetMaterial/en.md) , [Arch CurtainWall/en](Arch_CurtainWall/en.md) , [Arch CutLine/en](Arch_CutLine/en.md) , [Arch CutPlane/en](Arch_CutPlane/en.md) , [Arch Door/en](Arch_Door/en.md) , [Arch Equipment/en](Arch_Equipment/en.md) , [Arch Fence/en](Arch_Fence/en.md) , [Arch Floor/en](Arch_Floor/en.md) , [Arch Frame/en](Arch_Frame/en.md) , [Arch Grid/en](Arch_Grid/en.md) , [Arch IfcExplorer/en](Arch_IfcExplorer/en.md) , [Arch IfcSpreadsheet/en](Arch_IfcSpreadsheet/en.md) , [Arch MergeWalls/en](Arch_MergeWalls/en.md) , [Arch MeshToShape/en](Arch_MeshToShape/en.md) , [Arch MultiMaterial/en](Arch_MultiMaterial/en.md) , [Arch Nest/en](Arch_Nest/en.md) , [Arch Panel Cut/en](Arch_Panel_Cut/en.md) , [Arch Panel Sheet/en](Arch_Panel_Sheet/en.md) , [Arch Panel/en](Arch_Panel/en.md) , [Arch Pipe/en](Arch_Pipe/en.md) , [Arch PipeConnector/en](Arch_PipeConnector/en.md) , [Arch Profile/en](Arch_Profile/en.md) , [Arch Project/en](Arch_Project/en.md) , [Arch Rebar BeamReinforcement/en](Arch_Rebar_BeamReinforcement/en.md) , [Arch Rebar BentShape/en](Arch_Rebar_BentShape/en.md) , [Arch Rebar BOM/en](Arch_Rebar_BOM/en.md) , [Arch Rebar Circular ColumnReinforcement/en](Arch_Rebar_Circular_ColumnReinforcement/en.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/en](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/en.md) , [Arch Rebar ColumnReinforcement/en](Arch_Rebar_ColumnReinforcement/en.md) , [Arch Rebar Dimensioning/en](Arch_Rebar_Dimensioning/en.md) , [Arch Rebar Drawing Dimensioning/en](Arch_Rebar_Drawing_Dimensioning/en.md) , [Arch Rebar Drawing/en](Arch_Rebar_Drawing/en.md) , [Arch Rebar Helical/en](Arch_Rebar_Helical/en.md) , [Arch Rebar LShape/en](Arch_Rebar_LShape/en.md) , [Arch Rebar Slab Reinforcement/en](Arch_Rebar_Slab_Reinforcement/en.md) , [Arch Rebar Stirrup/en](Arch_Rebar_Stirrup/en.md) , [Arch Rebar Straight/en](Arch_Rebar_Straight/en.md) , [Arch Rebar UShape/en](Arch_Rebar_UShape/en.md) , [Arch Rebar/en](Arch_Rebar/en.md) , [Arch Reference/en](Arch_Reference/en.md) , [Arch Remove/en](Arch_Remove/en.md) , [Arch RemoveShape/en](Arch_RemoveShape/en.md) , [Arch Roof/en](Arch_Roof/en.md) , [Arch Schedule/en](Arch_Schedule/en.md) , [Arch SectionPlane/en](Arch_SectionPlane/en.md) , [Arch SelectNonSolidMeshes/en](Arch_SelectNonSolidMeshes/en.md) , [Arch SetMaterial/en](Arch_SetMaterial/en.md) , [Arch Site/en](Arch_Site/en.md) , [Arch Space/en](Arch_Space/en.md) , [Arch SplitMesh/en](Arch_SplitMesh/en.md) , [Arch Stairs/en](Arch_Stairs/en.md) , [Arch Structure/en](Arch_Structure/en.md) , [Arch Survey/en](Arch_Survey/en.md) , [Arch ToggleIfcBrepFlag/en](Arch_ToggleIfcBrepFlag/en.md) , [Arch ToggleSubs/en](Arch_ToggleSubs/en.md) , [Arch Truss/en](Arch_Truss/en.md) , [Arch Wall/en](Arch_Wall/en.md) , [Arch Window/en](Arch_Window/en.md) , [Assembly3 ConstraintAlignment/en](Assembly3_ConstraintAlignment/en.md) , [Assembly3 ConstraintAngle/en](Assembly3_ConstraintAngle/en.md) , [Assembly3 ConstraintAttachment/en](Assembly3_ConstraintAttachment/en.md) , [Assembly3 ConstraintAxial/en](Assembly3_ConstraintAxial/en.md) , [Assembly3 ConstraintCoincidence/en](Assembly3_ConstraintCoincidence/en.md) , [Assembly3 ConstraintColinear/en](Assembly3_ConstraintColinear/en.md) , [Assembly3 ConstraintDiameter/en](Assembly3_ConstraintDiameter/en.md) , [Assembly3 ConstraintEqualAngle/en](Assembly3_ConstraintEqualAngle/en.md) , [Assembly3 ConstraintEqualLength/en](Assembly3_ConstraintEqualLength/en.md) , [Assembly3 ConstraintEqualLineArcLength/en](Assembly3_ConstraintEqualLineArcLength/en.md) , [Assembly3 ConstraintEqualPointLineDistance/en](Assembly3_ConstraintEqualPointLineDistance/en.md) , [Assembly3 ConstraintEqualRadius/en](Assembly3_ConstraintEqualRadius/en.md) , [Assembly3 ConstraintLengthDifference/en](Assembly3_ConstraintLengthDifference/en.md) , [Assembly3 ConstraintLengthEqualPointLineDistance/en](Assembly3_ConstraintLengthEqualPointLineDistance/en.md) , [Assembly3 ConstraintLengthRatio/en](Assembly3_ConstraintLengthRatio/en.md) , [Assembly3 ConstraintLineHorizontal/en](Assembly3_ConstraintLineHorizontal/en.md) , [Assembly3 ConstraintLineLength/en](Assembly3_ConstraintLineLength/en.md) , [Assembly3 ConstraintLineVertical/en](Assembly3_ConstraintLineVertical/en.md) , [Assembly3 ConstraintLock/en](Assembly3_ConstraintLock/en.md) , [Assembly3 ConstraintMidPoint/en](Assembly3_ConstraintMidPoint/en.md) , [Assembly3 ConstraintMore/en](Assembly3_ConstraintMore/en.md) , [Assembly3 ConstraintMultiParallel/en](Assembly3_ConstraintMultiParallel/en.md) , [Assembly3 ConstraintPerpendicular/en](Assembly3_ConstraintPerpendicular/en.md) , [Assembly3 ConstraintPointDistance/en](Assembly3_ConstraintPointDistance/en.md) , [Assembly3 ConstraintPointInPlane/en](Assembly3_ConstraintPointInPlane/en.md) , [Assembly3 ConstraintPointLineDistance/en](Assembly3_ConstraintPointLineDistance/en.md) , [Assembly3 ConstraintPointOnCircle/en](Assembly3_ConstraintPointOnCircle/en.md) , [Assembly3 ConstraintPointOnLine/en](Assembly3_ConstraintPointOnLine/en.md) , [Assembly3 ConstraintPointPlaneDistance/en](Assembly3_ConstraintPointPlaneDistance/en.md) , [Assembly3 ConstraintPointsCoincident/en](Assembly3_ConstraintPointsCoincident/en.md) , [Assembly3 ConstraintPointsDistance/en](Assembly3_ConstraintPointsDistance/en.md) , [Assembly3 ConstraintPointsHorizontal/en](Assembly3_ConstraintPointsHorizontal/en.md) , [Assembly3 ConstraintPointsProjectDistance/en](Assembly3_ConstraintPointsProjectDistance/en.md) , [Assembly3 ConstraintPointsSymmetric/en](Assembly3_ConstraintPointsSymmetric/en.md) , [Assembly3 ConstraintPointsVertical/en](Assembly3_ConstraintPointsVertical/en.md) , [Assembly3 ConstraintSameOrientation/en](Assembly3_ConstraintSameOrientation/en.md) , [Assembly3 ConstraintSketchPlane/en](Assembly3_ConstraintSketchPlane/en.md) , [Assembly3 ConstraintSymmetric/en](Assembly3_ConstraintSymmetric/en.md) , [Assembly3 ConstraintSymmetricHorizontal/en](Assembly3_ConstraintSymmetricHorizontal/en.md) , [Assembly3 ConstraintSymmetricLine/en](Assembly3_ConstraintSymmetricLine/en.md) , [Assembly3 ConstraintSymmetricVertical/en](Assembly3_ConstraintSymmetricVertical/en.md) , [Assembly3 CreateAssembly/en](Assembly3_CreateAssembly/en.md) , [Assembly3 CreateElement/en](Assembly3_CreateElement/en.md) , [Assembly3 GoToRelation/en](Assembly3_GoToRelation/en.md) , [Assembly3 GroupObjects/en](Assembly3_GroupObjects/en.md) , [Assembly3 ImportFromSTEP/en](Assembly3_ImportFromSTEP/en.md) , [Assembly3 ImportMultiDocument/en](Assembly3_ImportMultiDocument/en.md) , [Assembly3 MeasureAngle/en](Assembly3_MeasureAngle/en.md) , [Assembly3 MeasurePointLine/en](Assembly3_MeasurePointLine/en.md) , [Assembly3 MeasurePointPlane/en](Assembly3_MeasurePointPlane/en.md) , [Assembly3 MeasurePoints/en](Assembly3_MeasurePoints/en.md) , [BIM Box/en](BIM_Box/en.md) , [BIM Classification/en](BIM_Classification/en.md) , [BIM Clone/en](BIM_Clone/en.md) , [BIM Copy/en](BIM_Copy/en.md) , [BIM IfcElements/en](BIM_IfcElements/en.md) , [BIM IfcProperties/en](BIM_IfcProperties/en.md) , [BIM IfcQuantities/en](BIM_IfcQuantities/en.md) , [BIM Layers/en](BIM_Layers/en.md) , [BIM Library/en](BIM_Library/en.md) , [BIM Preflight/en](BIM_Preflight/en.md) , [BIM Project/en](BIM_Project/en.md) , [BIM Setup/en](BIM_Setup/en.md) , [BIM Views/en](BIM_Views/en.md) , [BIM Windows/en](BIM_Windows/en.md) , [CurvedShapes CurvedArray/en](CurvedShapes_CurvedArray/en.md) , [Curves CompressionSpring/en](Curves_CompressionSpring/en.md) , [Curves Discretize/en](Curves_Discretize/en.md) , [Curves EditableSpline/en](Curves_EditableSpline/en.md) , [Curves ExtendCurve/en](Curves_ExtendCurve/en.md) , [Curves GordonSurface/en](Curves_GordonSurface/en.md) , [Curves Interpolate/en](Curves_Interpolate/en.md) , [Curves IsoCurve/en](Curves_IsoCurve/en.md) , [Curves JoinCurve/en](Curves_JoinCurve/en.md) , [Curves Line/en](Curves_Line/en.md) , [Curves MultiLoft/en](Curves_MultiLoft/en.md) , [Curves ParametricComb/en](Curves_ParametricComb/en.md) , [Curves ParametricSolid/en](Curves_ParametricSolid/en.md) , [Curves PasteSVG/en](Curves_PasteSVG/en.md) , [Curves Pipeshell/en](Curves_Pipeshell/en.md) , [Curves PipeshellProfile/en](Curves_PipeshellProfile/en.md) , [Curves ProfileSupport/en](Curves_ProfileSupport/en.md) , [Curves ReflectLines/en](Curves_ReflectLines/en.md) , [Curves SegmentSurface/en](Curves_SegmentSurface/en.md) , [Curves SketchOnSurface/en](Curves_SketchOnSurface/en.md) , [Curves SplitCurve/en](Curves_SplitCurve/en.md) , [Curves ToConsole/en](Curves_ToConsole/en.md) , [Curves ZebraTool/en](Curves_ZebraTool/en.md) , [Draft AddConstruction/en](Draft_AddConstruction/en.md) , [Draft AddToGroup/en](Draft_AddToGroup/en.md) , [Draft AnnotationStyleEditor/en](Draft_AnnotationStyleEditor/en.md) , [Draft ApplyStyle/en](Draft_ApplyStyle/en.md) , [Draft Arc 3Points/en](Draft_Arc_3Points/en.md) , [Draft Arc/en](Draft_Arc/en.md) , [Draft Array/en](Draft_Array/en.md) , [Draft AutoGroup/en](Draft_AutoGroup/en.md) , [Draft BezCurve/en](Draft_BezCurve/en.md) , [Draft BSpline/en](Draft_BSpline/en.md) , [Draft Circle/en](Draft_Circle/en.md) , [Draft CircularArray/en](Draft_CircularArray/en.md) , [Draft Clone/en](Draft_Clone/en.md) , [Draft CubicBezCurve/en](Draft_CubicBezCurve/en.md) , [Draft Dimension/en](Draft_Dimension/en.md) , [Draft Downgrade/en](Draft_Downgrade/en.md) , [Draft Draft2Sketch/en](Draft_Draft2Sketch/en.md) , [Draft Drawing/en](Draft_Drawing/en.md) , [Draft Edit/en](Draft_Edit/en.md) , [Draft Ellipse/en](Draft_Ellipse/en.md) , [Draft Facebinder/en](Draft_Facebinder/en.md) , [Draft Fillet/en](Draft_Fillet/en.md) , [Draft FlipDimension/en](Draft_FlipDimension/en.md) , [Draft Heal/en](Draft_Heal/en.md) , [Draft Join/en](Draft_Join/en.md) , [Draft Label/en](Draft_Label/en.md) , [Draft Layer/en](Draft_Layer/en.md) , [Draft Line/en](Draft_Line/en.md) , [Draft Mirror/en](Draft_Mirror/en.md) , [Draft Move/en](Draft_Move/en.md) , [Draft Offset/en](Draft_Offset/en.md) , [Draft OrthoArray/en](Draft_OrthoArray/en.md) , [Draft PathArray/en](Draft_PathArray/en.md) , [Draft PathLinkArray/en](Draft_PathLinkArray/en.md) , [Draft Point/en](Draft_Point/en.md) , [Draft PointArray/en](Draft_PointArray/en.md) , [Draft PointLinkArray/en](Draft_PointLinkArray/en.md) , [Draft PolarArray/en](Draft_PolarArray/en.md) , [Draft Polygon/en](Draft_Polygon/en.md) , [Draft Rectangle/en](Draft_Rectangle/en.md) , [Draft Rotate/en](Draft_Rotate/en.md) , [Draft Scale/en](Draft_Scale/en.md) , [Draft SelectGroup/en](Draft_SelectGroup/en.md) , [Draft SelectPlane/en](Draft_SelectPlane/en.md) , [Draft SetStyle/en](Draft_SetStyle/en.md) , [Draft Shape2DView/en](Draft_Shape2DView/en.md) , [Draft ShapeString/en](Draft_ShapeString/en.md) , [Draft ShowSnapBar/en](Draft_ShowSnapBar/en.md) , [Draft Slope/en](Draft_Slope/en.md) , [Draft Snap Angle/en](Draft_Snap_Angle/en.md) , [Draft Snap Center/en](Draft_Snap_Center/en.md) , [Draft Snap Dimensions/en](Draft_Snap_Dimensions/en.md) , [Draft Snap Endpoint/en](Draft_Snap_Endpoint/en.md) , [Draft Snap Extension/en](Draft_Snap_Extension/en.md) , [Draft Snap Grid/en](Draft_Snap_Grid/en.md) , [Draft Snap Intersection/en](Draft_Snap_Intersection/en.md) , [Draft Snap Lock/en](Draft_Snap_Lock/en.md) , [Draft Snap Midpoint/en](Draft_Snap_Midpoint/en.md) , [Draft Snap Near/en](Draft_Snap_Near/en.md) , [Draft Snap Ortho/en](Draft_Snap_Ortho/en.md) , [Draft Snap Parallel/en](Draft_Snap_Parallel/en.md) , [Draft Snap Perpendicular/en](Draft_Snap_Perpendicular/en.md) , [Draft Snap Special/en](Draft_Snap_Special/en.md) , [Draft Snap WorkingPlane/en](Draft_Snap_WorkingPlane/en.md) , [Draft Split/en](Draft_Split/en.md) , [Draft Stretch/en](Draft_Stretch/en.md) , [Draft SubelementHighlight/en](Draft_SubelementHighlight/en.md) , [Draft Text/en](Draft_Text/en.md) , [Draft ToggleConstructionMode/en](Draft_ToggleConstructionMode/en.md) , [Draft ToggleContinueMode/en](Draft_ToggleContinueMode/en.md) , [Draft ToggleDisplayMode/en](Draft_ToggleDisplayMode/en.md) , [Draft ToggleGrid/en](Draft_ToggleGrid/en.md) , [Draft Trimex/en](Draft_Trimex/en.md) , [Draft Upgrade/en](Draft_Upgrade/en.md) , [Draft Wire/en](Draft_Wire/en.md) , [Draft WireToBSpline/en](Draft_WireToBSpline/en.md) , [Draft WorkingPlaneProxy/en](Draft_WorkingPlaneProxy/en.md) , [Drawing Annotation/en](Drawing_Annotation/en.md) , [Drawing Clip/en](Drawing_Clip/en.md) , [Drawing Landscape A3/en](Drawing_Landscape_A3/en.md) , [Drawing Open SVG/en](Drawing_Open_SVG/en.md) , [Drawing Openbrowser/en](Drawing_Openbrowser/en.md) , [Drawing Orthoviews/en](Drawing_Orthoviews/en.md) , [Drawing ProjectShape/en](Drawing_ProjectShape/en.md) , [Drawing Save/en](Drawing_Save/en.md) , [Drawing SpreadsheetView/en](Drawing_SpreadsheetView/en.md) , [Drawing Symbol/en](Drawing_Symbol/en.md) , [Drawing View/en](Drawing_View/en.md) , [EM FHEquiv/en](EM_FHEquiv/en.md) , [EM FHInputFile/en](EM_FHInputFile/en.md) , [EM FHNode/en](EM_FHNode/en.md) , [EM FHPath/en](EM_FHPath/en.md) , [EM FHPlane/en](EM_FHPlane/en.md) , [EM FHPlaneAddRemoveNodeHole/en](EM_FHPlaneAddRemoveNodeHole/en.md) , [EM FHPlaneHole/en](EM_FHPlaneHole/en.md) , [EM FHPort/en](EM_FHPort/en.md) , [EM FHSegment/en](EM_FHSegment/en.md) , [EM FHSolver/en](EM_FHSolver/en.md) , [Fasteners BOM/en](Fasteners_BOM/en.md) , [FCGear BevelGear/en](FCGear_BevelGear/en.md) , [FCGear CrownGear/en](FCGear_CrownGear/en.md) , [FCGear CycloideGear/en](FCGear_CycloideGear/en.md) , [FCGear InvoluteGear/en](FCGear_InvoluteGear/en.md) , [FCGear InvoluteRack/en](FCGear_InvoluteRack/en.md) , [FCGear LanternGear/en](FCGear_LanternGear/en.md) , [FCGear TimingGear/en](FCGear_TimingGear/en.md) , [FCGear WormGear/en](FCGear_WormGear/en.md) , [FEM Analysis/en](FEM_Analysis/en.md) , [FEM ClippingPlaneAdd/en](FEM_ClippingPlaneAdd/en.md) , [FEM ClippingPlaneRemoveAll/en](FEM_ClippingPlaneRemoveAll/en.md) , [FEM ConstantVacuumPermittivity/en](FEM_ConstantVacuumPermittivity/en.md) , [FEM ConstraintBearing/en](FEM_ConstraintBearing/en.md) , [FEM ConstraintBodyHeatSource/en](FEM_ConstraintBodyHeatSource/en.md) , [FEM ConstraintContact/en](FEM_ConstraintContact/en.md) , [FEM ConstraintDisplacement/en](FEM_ConstraintDisplacement/en.md) , [FEM ConstraintElectrostaticPotential/en](FEM_ConstraintElectrostaticPotential/en.md) , [FEM ConstraintFixed/en](FEM_ConstraintFixed/en.md) , [FEM ConstraintFlowVelocity/en](FEM_ConstraintFlowVelocity/en.md) , [FEM ConstraintFluidBoundary/en](FEM_ConstraintFluidBoundary/en.md) , [FEM ConstraintForce/en](FEM_ConstraintForce/en.md) , [FEM ConstraintGear/en](FEM_ConstraintGear/en.md) , [FEM ConstraintHeatflux/en](FEM_ConstraintHeatflux/en.md) , [FEM ConstraintInitialFlowVelocity/en](FEM_ConstraintInitialFlowVelocity/en.md) , [FEM ConstraintInitialTemperature/en](FEM_ConstraintInitialTemperature/en.md) , [FEM ConstraintPlaneRotation/en](FEM_ConstraintPlaneRotation/en.md) , [FEM ConstraintPressure/en](FEM_ConstraintPressure/en.md) , [FEM ConstraintPulley/en](FEM_ConstraintPulley/en.md) , [FEM ConstraintSectionPrint/en](FEM_ConstraintSectionPrint/en.md) , [FEM ConstraintSelfWeight/en](FEM_ConstraintSelfWeight/en.md) , [FEM ConstraintTemperature/en](FEM_ConstraintTemperature/en.md) , [FEM ConstraintTie/en](FEM_ConstraintTie/en.md) , [FEM ConstraintTransform/en](FEM_ConstraintTransform/en.md) , [FEM CreateNodesSet/en](FEM_CreateNodesSet/en.md) , [FEM ElementFluid1D/en](FEM_ElementFluid1D/en.md) , [FEM ElementGeometry1D/en](FEM_ElementGeometry1D/en.md) , [FEM ElementGeometry2D/en](FEM_ElementGeometry2D/en.md) , [FEM ElementRotation1D/en](FEM_ElementRotation1D/en.md) , [FEM EquationElasticity/en](FEM_EquationElasticity/en.md) , [FEM EquationElectricforce/en](FEM_EquationElectricforce/en.md) , [FEM EquationElectrostatic/en](FEM_EquationElectrostatic/en.md) , [FEM EquationFlow/en](FEM_EquationFlow/en.md) , [FEM EquationFlux/en](FEM_EquationFlux/en.md) , [FEM EquationHeat/en](FEM_EquationHeat/en.md) , [FEM Examples/en](FEM_Examples/en.md) , [FEM FemMesh2Mesh/en](FEM_FemMesh2Mesh/en.md) , [FEM MaterialFluid/en](FEM_MaterialFluid/en.md) , [FEM MaterialMechanicalNonlinear/en](FEM_MaterialMechanicalNonlinear/en.md) , [FEM MaterialReinforced/en](FEM_MaterialReinforced/en.md) , [FEM MaterialSolid/en](FEM_MaterialSolid/en.md) , [FEM MeshBoundaryLayer/en](FEM_MeshBoundaryLayer/en.md) , [FEM MeshClear/en](FEM_MeshClear/en.md) , [FEM MeshDisplayInfo/en](FEM_MeshDisplayInfo/en.md) , [FEM MeshGmshFromShape/en](FEM_MeshGmshFromShape/en.md) , [FEM MeshGroup/en](FEM_MeshGroup/en.md) , [FEM MeshNetgenFromShape/en](FEM_MeshNetgenFromShape/en.md) , [FEM MeshRegion/en](FEM_MeshRegion/en.md) , [FEM PostApplyChanges/en](FEM_PostApplyChanges/en.md) , [FEM PostCreateFunctions/en](FEM_PostCreateFunctions/en.md) , [FEM PostFilterClipRegion/en](FEM_PostFilterClipRegion/en.md) , [FEM PostFilterClipScalar/en](FEM_PostFilterClipScalar/en.md) , [FEM PostFilterCutFunction/en](FEM_PostFilterCutFunction/en.md) , [FEM PostFilterDataAlongLine/en](FEM_PostFilterDataAlongLine/en.md) , [FEM PostFilterDataAtPoint/en](FEM_PostFilterDataAtPoint/en.md) , [FEM PostFilterLinearizedStresses/en](FEM_PostFilterLinearizedStresses/en.md) , [FEM PostFilterWarp/en](FEM_PostFilterWarp/en.md) , [FEM PostPipelineFromResult/en](FEM_PostPipelineFromResult/en.md) , [FEM ResultShow/en](FEM_ResultShow/en.md) , [FEM ResultsPurge/en](FEM_ResultsPurge/en.md) , [FEM SolverCalculiX/en](FEM_SolverCalculiX/en.md) , [FEM SolverCalculixCxxtools/en](FEM_SolverCalculixCxxtools/en.md) , [FEM SolverControl/en](FEM_SolverControl/en.md) , [FEM SolverElmer/en](FEM_SolverElmer/en.md) , [FEM SolverRun/en](FEM_SolverRun/en.md) , [FEM SolverZ88/en](FEM_SolverZ88/en.md) , [GuiCommand model/en](GuiCommand_model/en.md) , [Template:GuiCommand/en](Template:GuiCommand/en.md) , [Image CreateImagePlane/en](Image_CreateImagePlane/en.md) , [Image Open/en](Image_Open/en.md) , [Image Scaling/en](Image_Scaling/en.md) , [Lattice2 AttachablePlacement/en](Lattice2_AttachablePlacement/en.md) , [Material editor/en](Material_editor/en.md) , [Mesh AddFacet/en](Mesh_AddFacet/en.md) , [Mesh BoundingBox/en](Mesh_BoundingBox/en.md) , [Mesh BuildRegularSolid/en](Mesh_BuildRegularSolid/en.md) , [Mesh CrossSections/en](Mesh_CrossSections/en.md) , [Mesh CurvatureInfo/en](Mesh_CurvatureInfo/en.md) , [Mesh Decimating/en](Mesh_Decimating/en.md) , [Mesh Difference/en](Mesh_Difference/en.md) , [Mesh EvaluateFacet/en](Mesh_EvaluateFacet/en.md) , [Mesh EvaluateSolid/en](Mesh_EvaluateSolid/en.md) , [Mesh Evaluation/en](Mesh_Evaluation/en.md) , [Mesh Export/en](Mesh_Export/en.md) , [Mesh FillInteractiveHole/en](Mesh_FillInteractiveHole/en.md) , [Mesh FillupHoles/en](Mesh_FillupHoles/en.md) , [Mesh FlipNormals/en](Mesh_FlipNormals/en.md) , [Mesh FromPartShape/en](Mesh_FromPartShape/en.md) , [Mesh HarmonizeNormals/en](Mesh_HarmonizeNormals/en.md) , [Mesh Import/en](Mesh_Import/en.md) , [Mesh Intersection/en](Mesh_Intersection/en.md) , [Mesh Merge/en](Mesh_Merge/en.md) , [Mesh PolyCut/en](Mesh_PolyCut/en.md) , [Mesh PolyTrim/en](Mesh_PolyTrim/en.md) , [Mesh RemeshGmsh/en](Mesh_RemeshGmsh/en.md) , [Mesh RemoveCompByHand/en](Mesh_RemoveCompByHand/en.md) , [Mesh RemoveComponents/en](Mesh_RemoveComponents/en.md) , [Mesh Scale/en](Mesh_Scale/en.md) , [Mesh SectionByPlane/en](Mesh_SectionByPlane/en.md) , [Mesh Segmentation/en](Mesh_Segmentation/en.md) , [Mesh SegmentationBestFit/en](Mesh_SegmentationBestFit/en.md) , [Mesh Smoothing/en](Mesh_Smoothing/en.md) , [Mesh SplitComponents/en](Mesh_SplitComponents/en.md) , [Mesh TrimByPlane/en](Mesh_TrimByPlane/en.md) , [Mesh Union/en](Mesh_Union/en.md) , [Mesh VertexCurvature/en](Mesh_VertexCurvature/en.md) , [MeshPart CreateFlatFace/en](MeshPart_CreateFlatFace/en.md) , [MeshPart CreateFlatMesh/en](MeshPart_CreateFlatMesh/en.md) , [OpenSCAD AddOpenSCADElement/en](OpenSCAD_AddOpenSCADElement/en.md) , [OpenSCAD ColorCodeShape/en](OpenSCAD_ColorCodeShape/en.md) , [OpenSCAD Edgestofaces/en](OpenSCAD_Edgestofaces/en.md) , [OpenSCAD ExpandPlacements/en](OpenSCAD_ExpandPlacements/en.md) , [OpenSCAD ExplodeGroup/en](OpenSCAD_ExplodeGroup/en.md) , [OpenSCAD Hull/en](OpenSCAD_Hull/en.md) , [OpenSCAD IncreaseToleranceFeature/en](OpenSCAD_IncreaseToleranceFeature/en.md) , [OpenSCAD MeshBoolean/en](OpenSCAD_MeshBoolean/en.md) , [OpenSCAD Minkowski/en](OpenSCAD_Minkowski/en.md) , [OpenSCAD MirrorMeshFeature/en](OpenSCAD_MirrorMeshFeature/en.md) , [OpenSCAD RefineShapeFeature/en](OpenSCAD_RefineShapeFeature/en.md) , [OpenSCAD RemoveSubtree/en](OpenSCAD_RemoveSubtree/en.md) , [OpenSCAD ReplaceObject/en](OpenSCAD_ReplaceObject/en.md) , [OpenSCAD ResizeMeshFeature/en](OpenSCAD_ResizeMeshFeature/en.md) , [OpenSCAD ScaleMeshFeature/en](OpenSCAD_ScaleMeshFeature/en.md) , [Part Boolean/en](Part_Boolean/en.md) , [Part BooleanFragments/en](Part_BooleanFragments/en.md) , [Part Box/en](Part_Box/en.md) , [Part BoxSelection/en](Part_BoxSelection/en.md) , [Part Builder/en](Part_Builder/en.md) , [Part Chamfer/en](Part_Chamfer/en.md) , [Part CheckGeometry/en](Part_CheckGeometry/en.md) , [Part Circle/en](Part_Circle/en.md) , [Part Common/en](Part_Common/en.md) , [Part CompCompoundTools/en](Part_CompCompoundTools/en.md) , [Part CompJoinFeatures/en](Part_CompJoinFeatures/en.md) , [Part CompOffsetTools/en](Part_CompOffsetTools/en.md) , [Part Compound/en](Part_Compound/en.md) , [Part CompoundFilter/en](Part_CompoundFilter/en.md) , [Part CompSplittingTools/en](Part_CompSplittingTools/en.md) , [Part Cone/en](Part_Cone/en.md) , [Part CrossSections/en](Part_CrossSections/en.md) , [Part Cut/en](Part_Cut/en.md) , [Part Cylinder/en](Part_Cylinder/en.md) , [Part Defeaturing/en](Part_Defeaturing/en.md) , [Part EditAttachment/en](Part_EditAttachment/en.md) , [Part ElementCopy/en](Part_ElementCopy/en.md) , [Part Ellipse/en](Part_Ellipse/en.md) , [Part Ellipsoid/en](Part_Ellipsoid/en.md) , [Part ExplodeCompound/en](Part_ExplodeCompound/en.md) , [Part Export/en](Part_Export/en.md) , [Part Extrude/en](Part_Extrude/en.md) , [Part FaceColors/en](Part_FaceColors/en.md) , [Part Fillet/en](Part_Fillet/en.md) , [Part Fuse/en](Part_Fuse/en.md) , [Part Helix/en](Part_Helix/en.md) , [Part Import/en](Part_Import/en.md) , [Part JoinConnect/en](Part_JoinConnect/en.md) , [Part JoinCutout/en](Part_JoinCutout/en.md) , [Part JoinEmbed/en](Part_JoinEmbed/en.md) , [Part Line/en](Part_Line/en.md) , [Part Loft/en](Part_Loft/en.md) , [Part MakeFace/en](Part_MakeFace/en.md) , [Part MakeSolid/en](Part_MakeSolid/en.md) , [Part Measure Angular/en](Part_Measure_Angular/en.md) , [Part Measure Clear All/en](Part_Measure_Clear_All/en.md) , [Part Measure Linear/en](Part_Measure_Linear/en.md) , [Part Measure Menu/en](Part_Measure_Menu/en.md) , [Part Measure Refresh/en](Part_Measure_Refresh/en.md) , [Part Measure Toggle 3d/en](Part_Measure_Toggle_3d/en.md) , [Part Measure Toggle All/en](Part_Measure_Toggle_All/en.md) , [Part Measure Toggle Delta/en](Part_Measure_Toggle_Delta/en.md) , [Part Mirror/en](Part_Mirror/en.md) , [Part Offset/en](Part_Offset/en.md) , [Part Offset2D/en](Part_Offset2D/en.md) , [Part Plane/en](Part_Plane/en.md) , [Part Point/en](Part_Point/en.md) , [Part PointsFromMesh/en](Part_PointsFromMesh/en.md) , [Part Primitives/en](Part_Primitives/en.md) , [Part Prism/en](Part_Prism/en.md) , [Part ProjectionOnSurface/en](Part_ProjectionOnSurface/en.md) , [Part RefineShape/en](Part_RefineShape/en.md) , [Part RegularPolygon/en](Part_RegularPolygon/en.md) , [Part ReverseShapes/en](Part_ReverseShapes/en.md) , [Part Revolve/en](Part_Revolve/en.md) , [Part RuledSurface/en](Part_RuledSurface/en.md) , [Part Section/en](Part_Section/en.md) , [Part ShapeFromMesh/en](Part_ShapeFromMesh/en.md) , [Part SimpleCopy/en](Part_SimpleCopy/en.md) , [Part Slice/en](Part_Slice/en.md) , [Part SliceApart/en](Part_SliceApart/en.md) , [Part Sphere/en](Part_Sphere/en.md) , [Part Spiral/en](Part_Spiral/en.md) , [Part Sweep/en](Part_Sweep/en.md) , [Part Thickness/en](Part_Thickness/en.md) , [Part Torus/en](Part_Torus/en.md) , [Part TransformedCopy/en](Part_TransformedCopy/en.md) , [Part Tube/en](Part_Tube/en.md) , [Part Wedge/en](Part_Wedge/en.md) , [Part XOR/en](Part_XOR/en.md) , [PartDesign AdditiveBox/en](PartDesign_AdditiveBox/en.md) , [PartDesign AdditiveCone/en](PartDesign_AdditiveCone/en.md) , [PartDesign AdditiveCylinder/en](PartDesign_AdditiveCylinder/en.md) , [PartDesign AdditiveEllipsoid/en](PartDesign_AdditiveEllipsoid/en.md) , [PartDesign AdditiveHelix/en](PartDesign_AdditiveHelix/en.md) , [PartDesign AdditiveLoft/en](PartDesign_AdditiveLoft/en.md) , [PartDesign AdditivePipe/en](PartDesign_AdditivePipe/en.md) , [PartDesign AdditivePrism/en](PartDesign_AdditivePrism/en.md) , [PartDesign AdditiveSphere/en](PartDesign_AdditiveSphere/en.md) , [PartDesign AdditiveTorus/en](PartDesign_AdditiveTorus/en.md) , [PartDesign AdditiveWedge/en](PartDesign_AdditiveWedge/en.md) , [PartDesign Body/en](PartDesign_Body/en.md) , [PartDesign Boolean/en](PartDesign_Boolean/en.md) , [PartDesign Chamfer/en](PartDesign_Chamfer/en.md) , [PartDesign Clone/en](PartDesign_Clone/en.md) , [PartDesign CompPrimitiveAdditive/en](PartDesign_CompPrimitiveAdditive/en.md) , [PartDesign CompPrimitiveSubtractive/en](PartDesign_CompPrimitiveSubtractive/en.md) , [PartDesign CoordinateSystem/en](PartDesign_CoordinateSystem/en.md) , [PartDesign Draft/en](PartDesign_Draft/en.md) , [PartDesign Fillet/en](PartDesign_Fillet/en.md) , [PartDesign Groove/en](PartDesign_Groove/en.md) , [PartDesign Hole/en](PartDesign_Hole/en.md) , [PartDesign InvoluteGear/en](PartDesign_InvoluteGear/en.md) , [PartDesign Line/en](PartDesign_Line/en.md) , [PartDesign LinearPattern/en](PartDesign_LinearPattern/en.md) , [PartDesign Migrate/en](PartDesign_Migrate/en.md) , [PartDesign Mirrored/en](PartDesign_Mirrored/en.md) , [PartDesign MoveFeature/en](PartDesign_MoveFeature/en.md) , [PartDesign MoveFeatureInTree/en](PartDesign_MoveFeatureInTree/en.md) , [PartDesign MoveTip/en](PartDesign_MoveTip/en.md) , [PartDesign MultiTransform/en](PartDesign_MultiTransform/en.md) , [PartDesign NewSketch/en](PartDesign_NewSketch/en.md) , [PartDesign Pad/en](PartDesign_Pad/en.md) , [PartDesign Plane/en](PartDesign_Plane/en.md) [Category:Categories/en](Category:Categories/en.md) + +--- +[documentation index](../README.md) > Category:Command Reference/en diff --git a/wiki/translations/en/Category:Common_Questions.md b/wiki/translations/en/Category:Common_Questions.md index a2bc0aa847..c902d02fcf 100644 --- a/wiki/translations/en/Category:Common_Questions.md +++ b/wiki/translations/en/Category:Common_Questions.md @@ -4,3 +4,6 @@ This category has links to common questions on how to do something in FC. This i ### Contents: [Constructive solid geometry/en](Constructive_solid_geometry/en.md) , [Feature editing/en](Feature_editing/en.md) , [FreeCAD and DWG Import/en](FreeCAD_and_DWG_Import/en.md) , [FreeCAD Managing Expectations/en](FreeCAD_Managing_Expectations/en.md) , [FreeCAD used in production/en](FreeCAD_used_in_production/en.md) , [Help FreeCAD/en](Help_FreeCAD/en.md) , [Import Export Preferences/en](Import_Export_Preferences/en.md) , [Importing From Sketchup/en](Importing_From_Sketchup/en.md) , [Installing on Linux/en](Installing_on_Linux/en.md) , [Std About/en](Std_About/en.md) , [Topological naming problem/en](Topological_naming_problem/en.md) , [Video tutorials/en](Video_tutorials/en.md) + +--- +[documentation index](../README.md) > Category:Common Questions/en diff --git a/wiki/translations/en/Category:Developer.md b/wiki/translations/en/Category:Developer.md index abed2ccef3..ec512e20c7 100644 --- a/wiki/translations/en/Category:Developer.md +++ b/wiki/translations/en/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Changelog/en](Changelog/en.md) , [Compile on Cygwin/en](Compile_on_Cygwin/en.md) , [Compile on Docker/en](Compile_on_Docker/en.md) , [Compile on Linux/en](Compile_on_Linux/en.md) , [Compile on MacOS/en](Compile_on_MacOS/en.md) , [Compile on MinGW/en](Compile_on_MinGW/en.md) , [Compile on Windows with VS2013/en](Compile_on_Windows_with_VS2013/en.md) , [Compile on Windows/en](Compile_on_Windows/en.md) , [Compiling (Speeding up)/en](Compiling_(Speeding_up)/en.md) , [Compiling/en](Compiling/en.md) , [Conda/en](Conda/en.md) , [Contributors/en](Contributors/en.md) , [Developing FreeCAD with GitKraken/en](Developing_FreeCAD_with_GitKraken/en.md) , [Doxygen/en](Doxygen/en.md) , [FEM CalculiX/en](FEM_CalculiX/en.md) , [FEM Element Types/en](FEM_Element_Types/en.md) , [FEM Mesh CalculiX/en](FEM_Mesh_CalculiX/en.md) , [File Format FCStd/en](File_Format_FCStd/en.md) , [ImageConv/en](ImageConv/en.md) , [InputField/en](InputField/en.md) , [Land Survey Workbench Blueprint/en](Land_Survey_Workbench_Blueprint/en.md) , [LGTM/en](LGTM/en.md) , [Material/en](Material/en.md) , [Organization chart/en](Organization_chart/en.md) , [Svg Namespace/en](Svg_Namespace/en.md) , [WikiRobots/en](WikiRobots/en.md) , [Wished tools/en](Wished_tools/en.md) , [Wrapping a Cplusplus class in Python/en](Wrapping_a_Cplusplus_class_in_Python/en.md) [Category:Developer Documentation/en](Category:Developer_Documentation/en.md) [Category:Categories/en](Category:Categories/en.md) + +--- +[documentation index](../README.md) > Category:Developer/en diff --git a/wiki/translations/en/Category:Developer_Documentation.md b/wiki/translations/en/Category:Developer_Documentation.md index 7fce732461..62b2fcfdc0 100644 --- a/wiki/translations/en/Category:Developer_Documentation.md +++ b/wiki/translations/en/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Add FEM equation tutorial/en](Add_FEM_equation_tutorial/en.md) , [ANSI templates/en](ANSI_templates/en.md) , [AppImage/en](AppImage/en.md) , [Arch templates/en](Arch_templates/en.md) , [Artwork Erroneous/en](Artwork_Erroneous/en.md) , [Artwork Guidelines/en](Artwork_Guidelines/en.md) , [Artwork/en](Artwork/en.md) , [Branding/en](Branding/en.md) , [Bug Triage/en](Bug_Triage/en.md) , [Code snippets/en](Code_snippets/en.md) , [Coin3d snippets/en](Coin3d_snippets/en.md) , [Command/en](Command/en.md) , [Compile on Cygwin/en](Compile_on_Cygwin/en.md) , [Compile on Docker/en](Compile_on_Docker/en.md) , [Compile on Linux/en](Compile_on_Linux/en.md) , [Compile on MacOS/en](Compile_on_MacOS/en.md) , [Compile on MinGW/en](Compile_on_MinGW/en.md) , [Compile on Windows with VS2013/en](Compile_on_Windows_with_VS2013/en.md) , [Compile on Windows/en](Compile_on_Windows/en.md) , [CompileOnWindows - Reducing Disk Footprint/en](CompileOnWindows_-_Reducing_Disk_Footprint/en.md) , [Compiling (Speeding up)/en](Compiling_(Speeding_up)/en.md) , [Compiling/en](Compiling/en.md) , [Conda/en](Conda/en.md) , [Continuous Integration/en](Continuous_Integration/en.md) , [Create a FeaturePython object part I/en](Create_a_FeaturePython_object_part_I/en.md) , [Create a FeaturePython object part II/en](Create_a_FeaturePython_object_part_II/en.md) , [Crowdin Scripts/en](Crowdin_Scripts/en.md) , [Custom icon in tree view/en](Custom_icon_in_tree_view/en.md) , [Debian development/en](Debian_development/en.md) , [Debian Unstable/en](Debian_Unstable/en.md) , [Debugging/en](Debugging/en.md) , [Developer hub/en](Developer_hub/en.md) , [Developing FreeCAD with GitKraken/en](Developing_FreeCAD_with_GitKraken/en.md) , [Developing FreeCAD with KDevelop/en](Developing_FreeCAD_with_KDevelop/en.md) , [Dialog creation image and animated GIF/en](Dialog_creation_image_and_animated_GIF/en.md) , [Dialog creation reading and writing files/en](Dialog_creation_reading_and_writing_files/en.md) , [Dialog creation setting colors/en](Dialog_creation_setting_colors/en.md) , [Dialog creation with various widgets/en](Dialog_creation_with_various_widgets/en.md) , [Dialog creation/en](Dialog_creation/en.md) , [Doxygen/en](Doxygen/en.md) , [Drawing API example/en](Drawing_API_example/en.md) , [Drawing Documentation/en](Drawing_Documentation/en.md) , [Drawing templates/en](Drawing_templates/en.md) , [Embedding FreeCAD/en](Embedding_FreeCAD/en.md) , [Embedding FreeCADGui/en](Embedding_FreeCADGui/en.md) , [Extra python modules/en](Extra_python_modules/en.md) , [FeaturePython Custom Properties/en](FeaturePython_Custom_Properties/en.md) , [FeaturePython methods/en](FeaturePython_methods/en.md) , [File Format FCStd/en](File_Format_FCStd/en.md) , [Fine-tuning/en](Fine-tuning/en.md) , [FreeCAD Build Tool/en](FreeCAD_Build_Tool/en.md) , [FreeCAD Scripting Basics/en](FreeCAD_Scripting_Basics/en.md) , [FreeCAD vector math library/en](FreeCAD_vector_math_library/en.md) , [Git buildpackage/en](Git_buildpackage/en.md) , [Help FreeCAD/en](Help_FreeCAD/en.md) , [How to install macros/en](How_to_install_macros/en.md) , [Installing more workbenches/en](Installing_more_workbenches/en.md) , [Installing on Linux/en](Installing_on_Linux/en.md) , [Interface creation/en](Interface_creation/en.md) , [Introduction to Python/en](Introduction_to_Python/en.md) , [Key ASCII/en](Key_ASCII/en.md) , [LGTM/en](LGTM/en.md) , [Licence/en](Licence/en.md) , [Line drawing function/en](Line_drawing_function/en.md) , [Linux packaging/en](Linux_packaging/en.md) , [Localisation Sidebar/en](Localisation_Sidebar/en.md) , [Localisation/en](Localisation/en.md) , [Localization Older Methods/en](Localization_Older_Methods/en.md) , [MacOS packaging/en](MacOS_packaging/en.md) , [Macro at Startup/en](Macro_at_Startup/en.md) , [Macros/en](Macros/en.md) , [Manual:A gentle introduction/en](Manual:A_gentle_introduction/en.md) , [Manual:Creating and manipulating geometry/en](Manual:Creating_and_manipulating_geometry/en.md) , [Manual:Creating interface tools/en](Manual:Creating_interface_tools/en.md) , [Manual:Creating parametric objects/en](Manual:Creating_parametric_objects/en.md) , [Material/en](Material/en.md) , [Mesh Scripting/en](Mesh_Scripting/en.md) , [Mesh to Part/en](Mesh_to_Part/en.md) , [Misc templates/en](Misc_templates/en.md) , [Multithreading/en](Multithreading/en.md) , [OpenCASCADE/en](OpenCASCADE/en.md) , [OpenSCAD CSG tested files/en](OpenSCAD_CSG_tested_files/en.md) , [Packaging/en](Packaging/en.md) , [Part scripting/en](Part_scripting/en.md) , [Path scripting/en](Path_scripting/en.md) , [Pivy/en](Pivy/en.md) , [Profiling/en](Profiling/en.md) , [Property/en](Property/en.md) , [PySide Advanced Examples/en](PySide_Advanced_Examples/en.md) , [PySide Beginner Examples/en](PySide_Beginner_Examples/en.md) , [PySide Intermediate Examples/en](PySide_Intermediate_Examples/en.md) , [PySide usage snippets/en](PySide_usage_snippets/en.md) , [PySide/en](PySide/en.md) , [Python scripting tutorial/en](Python_scripting_tutorial/en.md) , [Python/en](Python/en.md) , [PythonOCC/en](PythonOCC/en.md) , [Quantity/en](Quantity/en.md) , [Raytracing API example/en](Raytracing_API_example/en.md) , [Scenegraph/en](Scenegraph/en.md) , [Scripted objects migration/en](Scripted_objects_migration/en.md) , [Scripted objects saving attributes/en](Scripted_objects_saving_attributes/en.md) , [Scripted objects with attachment/en](Scripted_objects_with_attachment/en.md) , [Scripted objects/en](Scripted_objects/en.md) , [Scripted Parts: Ball Bearing - Part 1/en](Scripted_Parts:_Ball_Bearing_-_Part_1/en.md) , [Scripted Parts: Ball Bearing - Part 2/en](Scripted_Parts:_Ball_Bearing_-_Part_2/en.md) , [Scripting and macros/en](Scripting_and_macros/en.md) , [Scripts/en](Scripts/en.md) , [Source code management/en](Source_code_management/en.md) , [Source documentation/en](Source_documentation/en.md) , [Sphinx/en](Sphinx/en.md) , [Start up and Configuration/en](Start_up_and_Configuration/en.md) , [Testing/en](Testing/en.md) , [The FreeCAD source code/en](The_FreeCAD_source_code/en.md) , [Third Party Libraries/en](Third_Party_Libraries/en.md) , [Third Party Tools/en](Third_Party_Tools/en.md) , [Topological data scripting/en](Topological_data_scripting/en.md) , [Tracker/en](Tracker/en.md) , [Translating an external workbench/en](Translating_an_external_workbench/en.md) , [Viewprovider/en](Viewprovider/en.md) , [Workbench creation/en](Workbench_creation/en.md) , [Wrapping a Cplusplus class in Python/en](Wrapping_a_Cplusplus_class_in_Python/en.md) , , , [Category:Documentation/en](Category:Documentation/en.md) [Category:Artwork/en](Category:Artwork/en.md) [Category:Developer/en](Category:Developer/en.md) [Category:Packaging/en](Category:Packaging/en.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/en diff --git a/wiki/translations/en/Category:Documentation.md b/wiki/translations/en/Category:Documentation.md index 562c998352..b39a8b3846 100644 --- a/wiki/translations/en/Category:Documentation.md +++ b/wiki/translations/en/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation. [3D input devices/en](3D_input_devices/en.md) , [ANSI templates/en](ANSI_templates/en.md) , [Arch templates/en](Arch_templates/en.md) , [Civil Engineering Workbench/en](Civil_Engineering_Workbench/en.md) , [Drawing templates/en](Drawing_templates/en.md) , [FreeCAD Community Portal/en](FreeCAD_Community_Portal/en.md) , [Frequently asked questions/en](Frequently_asked_questions/en.md) , [Help FreeCAD/en](Help_FreeCAD/en.md) , [Interesting links/en](Interesting_links/en.md) , [Main Page/en](Main_Page/en.md) , [Misc templates/en](Misc_templates/en.md) , [Online Help Toc/en](Online_Help_Toc/en.md) , [Part Measure Menu/en](Part_Measure_Menu/en.md) , [Release notes 0.13/en](Release_notes_0.13/en.md) , [Release notes 0.14/en](Release_notes_0.14/en.md) , [Release notes 0.15/en](Release_notes_0.15/en.md) , [Release notes 0.16/en](Release_notes_0.16/en.md) , [Release notes 0.17/en](Release_notes_0.17/en.md) , [Release notes 0.18/en](Release_notes_0.18/en.md) , [Release notes 0.19/en](Release_notes_0.19/en.md) , [Release notes 0.20/en](Release_notes_0.20/en.md) , [Transportation Workbench/en](Transportation_Workbench/en.md) , [WikiPages/en](WikiPages/en.md) , , , , , [Category:Categories/en](Category:Categories/en.md) [Category:API Documentation/en](Category:API_Documentation/en.md) [Category:Developer Documentation/en](Category:Developer_Documentation/en.md) [Category:Poweruser Documentation/en](Category:Poweruser_Documentation/en.md) [Category:User Documentation/en](Category:User_Documentation/en.md) [Category:Wiki/en](Category:Wiki/en.md) + +--- +[documentation index](../README.md) > Category:Documentation/en diff --git a/wiki/translations/en/Category:Draft.md b/wiki/translations/en/Category:Draft.md index 2ecb894394..79dd789624 100644 --- a/wiki/translations/en/Category:Draft.md +++ b/wiki/translations/en/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the [Draft Workbench](Draft_Workbench.md). [Artwork Draft/en](Artwork_Draft/en.md) , [DXF/en](DXF/en.md) , [Manual:Traditional 2D drafting/en](Manual:Traditional_2D_drafting/en.md) , [SVG/en](SVG/en.md) [Category:User Documentation/en](Category:User_Documentation/en.md) [Category:Workbenches/en](Category:Workbenches/en.md) + +--- +[documentation index](../README.md) > Category:Draft/en diff --git a/wiki/translations/en/Category:Drawing.md b/wiki/translations/en/Category:Drawing.md index 0b0972c623..a02e9f652f 100644 --- a/wiki/translations/en/Category:Drawing.md +++ b/wiki/translations/en/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench](Drawing_Workbench.m [ANSI templates/en](ANSI_templates/en.md) , [Arch templates/en](Arch_templates/en.md) , [Drawing Dimensioning Addon/en](Drawing_Dimensioning_Addon/en.md) , [Misc templates/en](Misc_templates/en.md) [Category:Obsolete Workbenches/en](Category:Obsolete_Workbenches/en.md) + +--- +[documentation index](../README.md) > Category:Drawing/en diff --git a/wiki/translations/en/Category:External_Command_Reference.md b/wiki/translations/en/Category:External_Command_Reference.md index b2ca07d3eb..4c0120dbf4 100644 --- a/wiki/translations/en/Category:External_Command_Reference.md +++ b/wiki/translations/en/Category:External_Command_Reference.md @@ -4,3 +4,6 @@ This categorizes all **external** workbench commands separate from the internal ### Contents: [Arch Rebar BOM/en](Arch_Rebar_BOM/en.md) , [Arch Rebar Dimensioning/en](Arch_Rebar_Dimensioning/en.md) , [Arch Rebar Drawing Dimensioning/en](Arch_Rebar_Drawing_Dimensioning/en.md) , [Arch Rebar Drawing/en](Arch_Rebar_Drawing/en.md) , [Arch Rebar/en](Arch_Rebar/en.md) , [BIM Views/en](BIM_Views/en.md) , [BIM Windows/en](BIM_Windows/en.md) , [CurvedShapes CurvedArray/en](CurvedShapes_CurvedArray/en.md) , [Curves ParametricComb/en](Curves_ParametricComb/en.md) , [Curves ParametricSolid/en](Curves_ParametricSolid/en.md) , [Fasteners BOM/en](Fasteners_BOM/en.md) , [Fasteners Workbench/en](Fasteners_Workbench/en.md) , [FCGear BevelGear/en](FCGear_BevelGear/en.md) , [FCGear CrownGear/en](FCGear_CrownGear/en.md) , [FCGear CycloideGear/en](FCGear_CycloideGear/en.md) , [FCGear InvoluteGear/en](FCGear_InvoluteGear/en.md) , [FCGear InvoluteRack/en](FCGear_InvoluteRack/en.md) , [FCGear LanternGear/en](FCGear_LanternGear/en.md) , [FCGear TimingGear/en](FCGear_TimingGear/en.md) , [FCGear WormGear/en](FCGear_WormGear/en.md) , [Lattice2 AttachablePlacement/en](Lattice2_AttachablePlacement/en.md) , [Reinforcement Bar Bending Schedule/en](Reinforcement_Bar_Bending_Schedule/en.md) , [Reinforcement Bar Shape Cut List/en](Reinforcement_Bar_Shape_Cut_List/en.md) , [SheetMetal AddBase/en](SheetMetal_AddBase/en.md) , [SheetMetal AddBend/en](SheetMetal_AddBend/en.md) , [SheetMetal AddCornerRelief/en](SheetMetal_AddCornerRelief/en.md) , [SheetMetal AddFoldWall/en](SheetMetal_AddFoldWall/en.md) , [SheetMetal AddJunction/en](SheetMetal_AddJunction/en.md) , [SheetMetal AddRelief/en](SheetMetal_AddRelief/en.md) , [SheetMetal AddWall/en](SheetMetal_AddWall/en.md) , [SheetMetal Examples/en](SheetMetal_Examples/en.md) , [SheetMetal Extrude/en](SheetMetal_Extrude/en.md) , [SheetMetal Forming/en](SheetMetal_Forming/en.md) , [SheetMetal SketchOnSheet/en](SheetMetal_SketchOnSheet/en.md) , [SheetMetal UnattendedUnfold/en](SheetMetal_UnattendedUnfold/en.md) , [SheetMetal Unfold/en](SheetMetal_Unfold/en.md) , [SheetMetal Workbench/en](SheetMetal_Workbench/en.md) + +--- +[documentation index](../README.md) > Category:External Command Reference/en diff --git a/wiki/translations/en/Category:External_Workbenches.md b/wiki/translations/en/Category:External_Workbenches.md index 69343b0e01..5b22e66d7e 100644 --- a/wiki/translations/en/Category:External_Workbenches.md +++ b/wiki/translations/en/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [External workbenches/en](External_workbenches/en.md) , [Stemfie Workbench/en](Stemfie_Workbench/en.md) , [A2plus Workbench/en](A2plus_Workbench/en.md) , [Animation Workbench/en](Animation_Workbench/en.md) , [Assembly2 Workbench/en](Assembly2_Workbench/en.md) , [Assembly3 Workbench/en](Assembly3_Workbench/en.md) , [Assembly4 Workbench/en](Assembly4_Workbench/en.md) , [BIM Workbench/en](BIM_Workbench/en.md) , [BOLTSFC Workbench/en](BOLTSFC_Workbench/en.md) , [CadQuery Workbench/en](CadQuery_Workbench/en.md) , [Cfd Workbench/en](Cfd_Workbench/en.md) , [CurvedShapes Workbench/en](CurvedShapes_Workbench/en.md) , [Curves Workbench/en](Curves_Workbench/en.md) , [Defeaturing Workbench/en](Defeaturing_Workbench/en.md) , [Defeaturing/en](Defeaturing/en.md) , [DynamicData Workbench/en](DynamicData_Workbench/en.md) , [EM Workbench/en](EM_Workbench/en.md) , [ExplodedAssembly Workbench/en](ExplodedAssembly_Workbench/en.md) , [Fasteners Workbench/en](Fasteners_Workbench/en.md) , [FCGear Workbench/en](FCGear_Workbench/en.md) , [FEM FrontISTR Workbench/en](FEM_FrontISTR_Workbench/en.md) , [Flamingo Workbench/en](Flamingo_Workbench/en.md) , [How to install additional workbenches/en](How_to_install_additional_workbenches/en.md) , [KicadStepUp Workbench/en](KicadStepUp_Workbench/en.md) , [Lattice2 Workbench/en](Lattice2_Workbench/en.md) , [Macro Kerkythea/en](Macro_Kerkythea/en.md) , [Manipulator Workbench/en](Manipulator_Workbench/en.md) , [ModernUI Workbench/en](ModernUI_Workbench/en.md) , [MOOC Workbench/en](MOOC_Workbench/en.md) , [OSE 3D Printer Workbench/en](OSE_3D_Printer_Workbench/en.md) , [OSE Piping Workbench/en](OSE_Piping_Workbench/en.md) , [Parts Library Workbench/en](Parts_Library_Workbench/en.md) , [PCB Workbench/en](PCB_Workbench/en.md) , [Plot Axes/en](Plot_Axes/en.md) , [Plot Basic tutorial/en](Plot_Basic_tutorial/en.md) , [Plot Grid/en](Plot_Grid/en.md) , [Plot Labels/en](Plot_Labels/en.md) , [Plot Legend/en](Plot_Legend/en.md) , [Plot Module/en](Plot_Module/en.md) , [Plot MultiAxes tutorial/en](Plot_MultiAxes_tutorial/en.md) , [Plot Positions/en](Plot_Positions/en.md) , [Plot Save/en](Plot_Save/en.md) , [Plot Series/en](Plot_Series/en.md) , [POV-Ray-Rendering Workbench/en](POV-Ray-Rendering_Workbench/en.md) , [Pyramids and polyhedrons Workbench/en](Pyramids_and_polyhedrons_Workbench/en.md) , [Pyrate Workbench/en](Pyrate_Workbench/en.md) , [Reinforcement Workbench/en](Reinforcement_Workbench/en.md) , [Render project/en](Render_project/en.md) , [Rocket BodyTube/en](Rocket_BodyTube/en.md) , [Rocket Bulkhead/en](Rocket_Bulkhead/en.md) , [Rocket CenteringRing/en](Rocket_CenteringRing/en.md) , [Rocket Ejection Charge Calculator/en](Rocket_Ejection_Charge_Calculator/en.md) , [Rocket Fin/en](Rocket_Fin/en.md) , [Rocket NoseCone/en](Rocket_NoseCone/en.md) , [Rocket Parachute Size Calculator/en](Rocket_Parachute_Size_Calculator/en.md) , [Rocket Thrust To Weight Calculator/en](Rocket_Thrust_To_Weight_Calculator/en.md) , [Rocket Transition/en](Rocket_Transition/en.md) , [Rocket Vent Hole Size Calculator/en](Rocket_Vent_Hole_Size_Calculator/en.md) , [Rocket Workbench/en](Rocket_Workbench/en.md) , [Ship Workbench/en](Ship_Workbench/en.md) , [Silk Workbench/en](Silk_Workbench/en.md) , [Symbols Library Workbench/en](Symbols_Library_Workbench/en.md) , [Timber Workbench/en](Timber_Workbench/en.md) , [WebTools Workbench/en](WebTools_Workbench/en.md) , [Wood Frame Workbench/en](Wood_Frame_Workbench/en.md) , [Workfeature Workbench/en](Workfeature_Workbench/en.md) , , , [Category:Workbenches/en](Category:Workbenches/en.md) [Category:Addons/en](Category:Addons/en.md) [Category:BIM/en](Category:BIM/en.md) [Category:Fasteners/en](Category:Fasteners/en.md) [Category:FCGear/en](Category:FCGear/en.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/en diff --git a/wiki/translations/en/Category:FCGear.md b/wiki/translations/en/Category:FCGear.md index 12409f4890..4442ff33e9 100644 --- a/wiki/translations/en/Category:FCGear.md +++ b/wiki/translations/en/Category:FCGear.md @@ -6,3 +6,6 @@ All relevant pages to the [FCGear workbench](FCGear_Workbench.md) (an [external [FCGear BevelGear/en](FCGear_BevelGear/en.md) , [FCGear CrownGear/en](FCGear_CrownGear/en.md) , [FCGear CycloideGear/en](FCGear_CycloideGear/en.md) , [FCGear InvoluteGear/en](FCGear_InvoluteGear/en.md) , [FCGear InvoluteRack/en](FCGear_InvoluteRack/en.md) , [FCGear LanternGear/en](FCGear_LanternGear/en.md) , [FCGear TimingGear/en](FCGear_TimingGear/en.md) , [FCGear Workbench/en](FCGear_Workbench/en.md) , [FCGear WormGear/en](FCGear_WormGear/en.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Category:FCGear/en diff --git a/wiki/translations/en/Category:FEM.md b/wiki/translations/en/Category:FEM.md index 296eb7a893..e3bfeddf3b 100644 --- a/wiki/translations/en/Category:FEM.md +++ b/wiki/translations/en/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench](FEM_Workbench.md) and F [Add FEM constraint tutorial/en](Add_FEM_constraint_tutorial/en.md) , [Add FEM equation tutorial/en](Add_FEM_equation_tutorial/en.md) , [Artwork Fem/en](Artwork_Fem/en.md) , [Extend FEM Module/en](Extend_FEM_Module/en.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:FEM/en diff --git a/wiki/translations/en/Category:Fasteners.md b/wiki/translations/en/Category:Fasteners.md index 73b85445a8..b9327b18d1 100644 --- a/wiki/translations/en/Category:Fasteners.md +++ b/wiki/translations/en/Category:Fasteners.md @@ -6,3 +6,6 @@ This page collects the documentation pages for the [Fasteners Workbench](Fastene [Fasteners Workbench/en](Fasteners_Workbench/en.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Category:Fasteners/en diff --git a/wiki/translations/en/Category:File_Formats.md b/wiki/translations/en/Category:File_Formats.md index 1a9a50da64..1a81b373bb 100644 --- a/wiki/translations/en/Category:File_Formats.md +++ b/wiki/translations/en/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [Arch 3DS/en](Arch_3DS/en.md) , [Arch DAE/en](Arch_DAE/en.md) , [Arch IFC/en](Arch_IFC/en.md) , [Arch JSON/en](Arch_JSON/en.md) , [Arch OBJ/en](Arch_OBJ/en.md) , [Arch SHP/en](Arch_SHP/en.md) , [Asymptote/en](Asymptote/en.md) , [Draft DAT/en](Draft_DAT/en.md) , [Draft DXF/en](Draft_DXF/en.md) , [Draft OCA/en](Draft_OCA/en.md) , [Draft SVG/en](Draft_SVG/en.md) , [DXF/en](DXF/en.md) , [Export to STL or OBJ/en](Export_to_STL_or_OBJ/en.md) , [File Format FCStd/en](File_Format_FCStd/en.md) , [FreeCAD and DWG Import/en](FreeCAD_and_DWG_Import/en.md) , [FreeCAD and DXF Import/en](FreeCAD_and_DXF_Import/en.md) , [FreeCAD and Mesh Import/en](FreeCAD_and_Mesh_Import/en.md) , [GlTF/en](GlTF/en.md) , [Import Export Preferences/en](Import_Export_Preferences/en.md) , [Import Export/en](Import_Export/en.md) , [Import from STL or OBJ/en](Import_from_STL_or_OBJ/en.md) , [Import/Export IFC - compiling IfcOpenShell/en](Import/Export_IFC_-_compiling_IfcOpenShell/en.md) , [Importing From Sketchup/en](Importing_From_Sketchup/en.md) , [Material/en](Material/en.md) , [OpenSCAD CSG tested files/en](OpenSCAD_CSG_tested_files/en.md) , [OpenSCAD CSG/en](OpenSCAD_CSG/en.md) , [PDF/en](PDF/en.md) , [Spreadsheet CSV/en](Spreadsheet_CSV/en.md) , [Std Export/en](Std_Export/en.md) , [Std Import/en](Std_Import/en.md) , [SVG/en](SVG/en.md) + +--- +[documentation index](../README.md) > Category:File Formats/en diff --git a/wiki/translations/en/Category:Glossary.md b/wiki/translations/en/Category:Glossary.md index ddadc6a50e..3dcf8a2f0e 100644 --- a/wiki/translations/en/Category:Glossary.md +++ b/wiki/translations/en/Category:Glossary.md @@ -4,3 +4,6 @@ This category tracks pages that explain definitions of words related to FreeCAD ### Contents: [Assembly/en](Assembly/en.md) , [Body/en](Body/en.md) , [Command/en](Command/en.md) , [Constraint/en](Constraint/en.md) , [Datum/en](Datum/en.md) , [Drawing/en](Drawing/en.md) , [Feature/en](Feature/en.md) , [Glossary/en](Glossary/en.md) , [Manipulator/en](Manipulator/en.md) , [Mesh Feature/en](Mesh_Feature/en.md) , [Mesh/en](Mesh/en.md) , [Model/en](Model/en.md) , [Part/en](Part/en.md) , [Python/en](Python/en.md) , [Shape/en](Shape/en.md) , [Sketch/en](Sketch/en.md) + +--- +[documentation index](../README.md) > Category:Glossary/en diff --git a/wiki/translations/en/Category:Help.md b/wiki/translations/en/Category:Help.md index c67246a715..85553a2f4f 100644 --- a/wiki/translations/en/Category:Help.md +++ b/wiki/translations/en/Category:Help.md @@ -6,3 +6,6 @@ This category lists pages that contain helpfull information on MediaWiki and edi [Help/en](Help/en.md) , [Key ASCII/en](Key_ASCII/en.md) [Category:Categories/en](Category:Categories/en.md) + +--- +[documentation index](../README.md) > Category:Help/en diff --git a/wiki/translations/en/Category:Hubs.md b/wiki/translations/en/Category:Hubs.md index 468b4092d3..8783936dd4 100644 --- a/wiki/translations/en/Category:Hubs.md +++ b/wiki/translations/en/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Developer hub/en](Developer_hub/en.md) , [Power users hub/en](Power_users_hub/en.md) , [Scientific literature/en](Scientific_literature/en.md) , [User hub/en](User_hub/en.md) , [Wished tools/en](Wished_tools/en.md) [Category:Categories/en](Category:Categories/en.md) + +--- +[documentation index](../README.md) > Category:Hubs/en diff --git a/wiki/translations/en/Category:Icon.md b/wiki/translations/en/Category:Icon.md index d038d2f722..dccd780050 100644 --- a/wiki/translations/en/Category:Icon.md +++ b/wiki/translations/en/Category:Icon.md @@ -6,3 +6,6 @@ This category contains **icon images**. [Artwork Erroneous/en](Artwork_Erroneous/en.md) , [Artwork/en](Artwork/en.md) , [Key ASCII/en](Key_ASCII/en.md) [Category:Image/en](Category:Image/en.md) + +--- +[documentation index](../README.md) > Category:Icon/en diff --git a/wiki/translations/en/Category:Image.md b/wiki/translations/en/Category:Image.md index 5c6a8c4757..b75d3b4c9f 100644 --- a/wiki/translations/en/Category:Image.md +++ b/wiki/translations/en/Category:Image.md @@ -6,3 +6,6 @@ This category is the top level category for **images**. It should not contain an [Artwork Image/en](Artwork_Image/en.md) , [Bitmap/en](Bitmap/en.md) , [Category:Categories/en](Category:Categories/en.md) [Category:Icon/en](Category:Icon/en.md) + +--- +[documentation index](../README.md) > Category:Image/en diff --git a/wiki/translations/en/Category:Inspection.md b/wiki/translations/en/Category:Inspection.md index 250c90417c..2609151693 100644 --- a/wiki/translations/en/Category:Inspection.md +++ b/wiki/translations/en/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Artwork Inspection/en](Artwork_Inspection/en.md) , [Inspection Workbench/en](Inspection_Workbench/en.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection/en diff --git a/wiki/translations/en/Category:Macros.md b/wiki/translations/en/Category:Macros.md index 17a048f148..b4a3ab337e 100644 --- a/wiki/translations/en/Category:Macros.md +++ b/wiki/translations/en/Category:Macros.md @@ -6,3 +6,6 @@ This category contains macros to extend your FreeCAD installation with new funct [Macro 3D Parametric Curve/en](Macro_3D_Parametric_Curve/en.md) , [Macro 3d Printer Slicer Individual Parts/en](Macro_3d_Printer_Slicer_Individual_Parts/en.md) , [Macro 3d Printer Slicer/en](Macro_3d_Printer_Slicer/en.md) , [Macro AeroFoil/en](Macro_AeroFoil/en.md) , [Macro Airfoil Import & Scale/en](Macro_Airfoil_Import_&_Scale/en.md) , [Macro Alias Manager/en](Macro_Alias_Manager/en.md) , [Macro Align Camera to Working Plane/en](Macro_Align_Camera_to_Working_Plane/en.md) , [Macro Align Face Object to View/en](Macro_Align_Face_Object_to_View/en.md) , [Macro Align Object to View/en](Macro_Align_Object_to_View/en.md) , [Macro Align View to Face/en](Macro_Align_View_to_Face/en.md) , [Macro Align Working Plane to Camera/en](Macro_Align_Working_Plane_to_Camera/en.md) , [Macro Animated Constrain/en](Macro_Animated_Constrain/en.md) , [Macro Apothem Based Prism GUI/en](Macro_Apothem_Based_Prism_GUI/en.md) , [Macro Arch Axis System Repartition/en](Macro_Arch_Axis_System_Repartition/en.md) , [Macro ArrayCopy/en](Macro_ArrayCopy/en.md) , [Macro Assemblage Imprimante 3D/en](Macro_Assemblage_Imprimante_3D/en.md) , [Macro Assembly/en](Macro_Assembly/en.md) , [Macro at Startup/en](Macro_at_Startup/en.md) , [Macro Automatic drawing/en](Macro_Automatic_drawing/en.md) , [Macro BOLTS/en](Macro_BOLTS/en.md) , [Macro BoundingBox Tracing/en](Macro_BoundingBox_Tracing/en.md) , [Macro Build Utility/en](Macro_Build_Utility/en.md) , [Macro Cabinets32/en](Macro_Cabinets32/en.md) , [Macro CartoucheFC 2/en](Macro_CartoucheFC_2/en.md) , [Macro CartoucheFC Full/en](Macro_CartoucheFC_Full/en.md) , [Macro CartoucheFC/en](Macro_CartoucheFC/en.md) , [Macro Center Align Objects with Faces or Edges/en](Macro_Center_Align_Objects_with_Faces_or_Edges/en.md) , [Macro CenterFace/en](Macro_CenterFace/en.md) , [Macro CenterOfMass/en](Macro_CenterOfMass/en.md) , [Macro Circle/en](Macro_Circle/en.md) , [Macro CirclePlus/en](Macro_CirclePlus/en.md) , [Macro CloneConvert/en](Macro_CloneConvert/en.md) , [Macro Compound Plus/en](Macro_Compound_Plus/en.md) , [Macro Connect And Sweep/en](Macro_Connect_And_Sweep/en.md) , [Macro Constraint Draft/en](Macro_Constraint_Draft/en.md) , [Macro Copy3DViewToClipboard/en](Macro_Copy3DViewToClipboard/en.md) , [Macro Corner shapes wizard/en](Macro_Corner_shapes_wizard/en.md) , [Macro Corner shapes wizard/update/en](Macro_Corner_shapes_wizard/update/en.md) , [Macro crank simul/en](Macro_crank_simul/en.md) , [Macro Creating faces from a DXF file/en](Macro_Creating_faces_from_a_DXF_file/en.md) , [Macro cross section/en](Macro_cross_section/en.md) , [Macro Cut Circle/en](Macro_Cut_Circle/en.md) , [Macro Cut Line/en](Macro_Cut_Line/en.md) , [Macro DeepCopy/en](Macro_DeepCopy/en.md) , [Macro Delta xyz/en](Macro_Delta_xyz/en.md) , [Macro documentation/en](Macro_documentation/en.md) , [Macro Draft Circle 3 Points 3D/en](Macro_Draft_Circle_3_Points_3D/en.md) , [Macro Draft Circle 3 Points/en](Macro_Draft_Circle_3_Points/en.md) , [Macro Draw 2D Function/en](Macro_Draw_2D_Function/en.md) , [Macro Draw Parametric 2D Function/en](Macro_Draw_Parametric_2D_Function/en.md) , [Macro Dump Objects/en](Macro_Dump_Objects/en.md) , [Macro Duplicate Selection/en](Macro_Duplicate_Selection/en.md) , [Macro DXF to Face and Sketch/en](Macro_DXF_to_Face_and_Sketch/en.md) , [Macro Easy cutouts for Enclosure Design/en](Macro_Easy_cutouts_for_Enclosure_Design/en.md) , [Macro EdgesToArc/en](Macro_EdgesToArc/en.md) , [Macro Ellipse-Center+2Points/en](Macro_Ellipse-Center+2Points/en.md) , [Macro ExpandTreeItem/en](Macro_ExpandTreeItem/en.md) , [Macro export transient FEM results/en](Macro_export_transient_FEM_results/en.md) , [Macro Extract Wires from Mesh/en](Macro_Extract_Wires_from_Mesh/en.md) , [Macro FaceToSketch/en](Macro_FaceToSketch/en.md) , [Macro FC Convert Lines/en](Macro_FC_Convert_Lines/en.md) , [Macro FC element selector/en](Macro_FC_element_selector/en.md) , [Macro FCCamera/en](Macro_FCCamera/en.md) , [Macro FCCamGroover/en](Macro_FCCamGroover/en.md) , [Macro FCCircularText/en](Macro_FCCircularText/en.md) , [Macro FCGear/en](Macro_FCGear/en.md) , [Macro FCHoneycombMaker/en](Macro_FCHoneycombMaker/en.md) , [Macro FCInfo Alternate Linux/en](Macro_FCInfo_Alternate_Linux/en.md) , [Macro FCInfo/en](Macro_FCInfo/en.md) , [Macro FCInfoGlass/en](Macro_FCInfoGlass/en.md) , [Macro FCInfoToMouse/en](Macro_FCInfoToMouse/en.md) , [Macro FCSpreadSheet Extract/en](Macro_FCSpreadSheet_Extract/en.md) , [Macro FCSpring Helix Variable/en](Macro_FCSpring_Helix_Variable/en.md) , [Macro FCSpring On Surface/en](Macro_FCSpring_On_Surface/en.md) , [Macro FCTreeView/en](Macro_FCTreeView/en.md) , [Macro FCWire To Volume/en](Macro_FCWire_To_Volume/en.md) , [Macro findConfigFiles/en](Macro_findConfigFiles/en.md) , [Macro FlattenWire/en](Macro_FlattenWire/en.md) , [Macro FlattenWire3Points/en](Macro_FlattenWire3Points/en.md) , [Macro Fonts Win10 PYMP/en](Macro_Fonts_Win10_PYMP/en.md) , [Macro ForceRecompute/en](Macro_ForceRecompute/en.md) , [Macro FreeCAD to Kerkythea/en](Macro_FreeCAD_to_Kerkythea/en.md) , [Macro Geneva Wheel GUI/en](Macro_Geneva_Wheel_GUI/en.md) , [Macro Geneva Wheel/en](Macro_Geneva_Wheel/en.md) , [Macro Geodesic Dome/en](Macro_Geodesic_Dome/en.md) , [Macro Global Variable Watcher/en](Macro_Global_Variable_Watcher/en.md) , [Macro GMSH/en](Macro_GMSH/en.md) , [Macro GuiResetToolbars/en](Macro_GuiResetToolbars/en.md) , [Macro Guitar fretboard/en](Macro_Guitar_fretboard/en.md) , [Macro Guitar Nut/en](Macro_Guitar_Nut/en.md) , [Macro Half turn stairs/en](Macro_Half_turn_stairs/en.md) , [Macro Half-Hull Model/en](Macro_Half-Hull_Model/en.md) , [Macro HealArcs/en](Macro_HealArcs/en.md) , [Macro HiddenAlls/en](Macro_HiddenAlls/en.md) , [Macro HighlightCommon/en](Macro_HighlightCommon/en.md) , [Macro HighlightDifference/en](Macro_HighlightDifference/en.md) , [Macro HilbertCurve/en](Macro_HilbertCurve/en.md) , [Macro hinge/en](Macro_hinge/en.md) , [Macro If Selected Stay If Not Then Delete/en](Macro_If_Selected_Stay_If_Not_Then_Delete/en.md) , [Macro Image Scaling/en](Macro_Image_Scaling/en.md) , [Macro ImperialScales/en](Macro_ImperialScales/en.md) , [Macro JointWire/en](Macro_JointWire/en.md) , [Macro Kerkythea/en](Macro_Kerkythea/en.md) , [Macro Line Length/en](Macro_Line_Length/en.md) , [Macro Loft/en](Macro_Loft/en.md) , [Macro MacroMenu/en](Macro_MacroMenu/en.md) , [Macro Make Arc 3 Points/en](Macro_Make_Arc_3_Points/en.md) , [Macro Make Circle 3 Points/en](Macro_Make_Circle_3_Points/en.md) , [Macro Make Cube/en](Macro_Make_Cube/en.md) , [Macro Manage Navigational Style/en](Macro_Manage_Navigational_Style/en.md) , [Macro Manage Navigational Style2/en](Macro_Manage_Navigational_Style2/en.md) , [Macro MatrixTransform/en](Macro_MatrixTransform/en.md) , [Macro MeasureCircle/en](Macro_MeasureCircle/en.md) , [Macro Megaminx/en](Macro_Megaminx/en.md) , [Macro merge duplicate materials/en](Macro_merge_duplicate_materials/en.md) , [Macro MeshToPart/en](Macro_MeshToPart/en.md) , [Macro MessageBox/en](Macro_MessageBox/en.md) , [Macro Mouse Cross/en](Macro_Mouse_Cross/en.md) , [Macro Mouse over cb/en](Macro_Mouse_over_cb/en.md) , [Macro MoveToOrigin/en](Macro_MoveToOrigin/en.md) , [Macro MultiCopy/en](Macro_MultiCopy/en.md) , [Macro Normal Vector/en](Macro_Normal_Vector/en.md) , [Macro ObjectInfo/en](Macro_ObjectInfo/en.md) , [Macro Overlap/en](Macro_Overlap/en.md) , [Macro Parametric Curve FP/en](Macro_Parametric_Curve_FP/en.md) , [Macro PartsLibrary/en](Macro_PartsLibrary/en.md) , [Macro PartToVRML/en](Macro_PartToVRML/en.md) , [Macro Perpendicular To Wire/en](Macro_Perpendicular_To_Wire/en.md) , [Macro PlacementAbsolufy/en](Macro_PlacementAbsolufy/en.md) , [Macro Polyhedrons/en](Macro_Polyhedrons/en.md) , [Macro Print SceneGraph/en](Macro_Print_SceneGraph/en.md) , [Macro PropertyMemo/en](Macro_PropertyMemo/en.md) , [Macro Pyramid/en](Macro_Pyramid/en.md) , [Macro Python Assistant Window/en](Macro_Python_Assistant_Window/en.md) , [Macro Recompute Profiler/en](Macro_Recompute_Profiler/en.md) , [Macro Rectellipse/en](Macro_Rectellipse/en.md) , [Macro Remove parametric history/en](Macro_Remove_parametric_history/en.md) , [Macro Replace Part in Assembly/en](Macro_Replace_Part_in_Assembly/en.md) , [Macro Repro Wire/en](Macro_Repro_Wire/en.md) , [Macro Rotate To Point/en](Macro_Rotate_To_Point/en.md) , [Macro Rotate View Free/en](Macro_Rotate_View_Free/en.md) , [Macro Rotate View/en](Macro_Rotate_View/en.md) , [Macro Rotate ViewAxonometric/en](Macro_Rotate_ViewAxonometric/en.md) , [Macro Rubik Cube/en](Macro_Rubik_Cube/en.md) , [Macro Screen Wiki/en](Macro_Screen_Wiki/en.md) , [Macro screw maker1 2/en](Macro_screw_maker1_2/en.md) , [Macro Section/en](Macro_Section/en.md) , [Macro Select Hovering/en](Macro_Select_Hovering/en.md) , [Macro SelectVisible/en](Macro_SelectVisible/en.md) , [Macro Shake Sketch/en](Macro_Shake_Sketch/en.md) , [Macro Sheet Metal Unfolder/en](Macro_Sheet_Metal_Unfolder/en.md) , [Macro SimpleProperties/en](Macro_SimpleProperties/en.md) , [Macro Site From Contours/en](Macro_Site_From_Contours/en.md) , [Macro SketchUnmap/en](Macro_SketchUnmap/en.md) , [Macro Snip/en](Macro_Snip/en.md) , [Macro Solid Sweep/en](Macro_Solid_Sweep/en.md) , [Macro SplitPropEditor/en](Macro_SplitPropEditor/en.md) , [Macro Spreadsheet2html/en](Macro_Spreadsheet2html/en.md) , [Macro SpreadsheetTools/en](Macro_SpreadsheetTools/en.md) , [Macro Spring/en](Macro_Spring/en.md) , [Macro Stairs/en](Macro_Stairs/en.md) , [Macro StraightenObject/en](Macro_StraightenObject/en.md) , [Macro SuperWire/en](Macro_SuperWire/en.md) , [Macro Texture Objects/en](Macro_Texture_Objects/en.md) , [Macro Texture/en](Macro_Texture/en.md) , [Macro Toggle Drawstyle Optimized/en](Macro_Toggle_Drawstyle_Optimized/en.md) , [Macro Toggle Drawstyle/en](Macro_Toggle_Drawstyle/en.md) , [Macro Toggle Panels Visibility/en](Macro_Toggle_Panels_Visibility/en.md) , [Macro Toggle Visibility/en](Macro_Toggle_Visibility/en.md) , [Macro Toggle Visibility2 1-2/en](Macro_Toggle_Visibility2_1-2/en.md) , [Macro Toggle Visibility2 2-2/en](Macro_Toggle_Visibility2_2-2/en.md) , [Macro TreeToAscii/en](Macro_TreeToAscii/en.md) , [Macro Triangle AH/en](Macro_Triangle_AH/en.md) , [Macro Unbind Numpad Shortcuts/en](Macro_Unbind_Numpad_Shortcuts/en.md) , [Macro Unfold Box/en](Macro_Unfold_Box/en.md) , [Macro Unroll Ruled Surface/en](Macro_Unroll_Ruled_Surface/en.md) , [Macro View Rotation/en](Macro_View_Rotation/en.md) , [Macro Visibility Manager/en](Macro_Visibility_Manager/en.md) , [Macro VisibleAlls/en](Macro_VisibleAlls/en.md) , [Macro Wiki Object Properties List Generator Basic Version/en](Macro_Wiki_Object_Properties_List_Generator_Basic_Version/en.md) , [Macro Wiki Object Properties List Generator/en](Macro_Wiki_Object_Properties_List_Generator/en.md) , [Macro WireXYZ/en](Macro_WireXYZ/en.md) , [Macro Wiring And Hoses/en](Macro_Wiring_And_Hoses/en.md) , [Macro WorkFeatures/en](Macro_WorkFeatures/en.md) , [Macros recipes/en](Macros_recipes/en.md) , [Macros/en](Macros/en.md) , [Misc templates Full/en](Misc_templates_Full/en.md) , [Qt Example/en](Qt_Example/en.md) , [Svg Namespace/en](Svg_Namespace/en.md) [Category:Addons/en](Category:Addons/en.md) [Category:User Documentation/en](Category:User_Documentation/en.md) [Category:Categories/en](Category:Categories/en.md) + +--- +[documentation index](../README.md) > Category:Macros/en diff --git a/wiki/translations/en/Category:Manual.md b/wiki/translations/en/Category:Manual.md index d07008ec5d..4017d7e0ee 100644 --- a/wiki/translations/en/Category:Manual.md +++ b/wiki/translations/en/Category:Manual.md @@ -4,3 +4,6 @@ This category contains all the page of the FreeCAD manual (Manual/en) ### Contents: [Manual:A gentle introduction/en](Manual:A_gentle_introduction/en.md) , [Manual:All workbenches at a glance/en](Manual:All_workbenches_at_a_glance/en.md) , [Manual:BIM modeling/en](Manual:BIM_modeling/en.md) , [Manual:Creating and manipulating geometry/en](Manual:Creating_and_manipulating_geometry/en.md) , [Manual:Creating FEM analyses/en](Manual:Creating_FEM_analyses/en.md) , [Manual:Creating interface tools/en](Manual:Creating_interface_tools/en.md) , [Manual:Creating parametric objects/en](Manual:Creating_parametric_objects/en.md) , [Manual:Creating renderings/en](Manual:Creating_renderings/en.md) , [Manual:Generating 2D drawings/en](Manual:Generating_2D_drawings/en.md) , [Manual:Import and export to other filetypes/en](Manual:Import_and_export_to_other_filetypes/en.md) , [Manual:Installing/en](Manual:Installing/en.md) , [Manual:Introduction/en](Manual:Introduction/en.md) , [Manual:Modeling for product design/en](Manual:Modeling_for_product_design/en.md) , [Manual:Navigating in the 3D view/en](Manual:Navigating_in_the_3D_view/en.md) , [Manual:Parametric objects/en](Manual:Parametric_objects/en.md) , [Manual:Preparing models for 3D printing/en](Manual:Preparing_models_for_3D_printing/en.md) , [Manual:Summary/en](Manual:Summary/en.md) , [Manual:The Community/en](Manual:The_Community/en.md) , [Manual:The FreeCAD document/en](Manual:The_FreeCAD_document/en.md) , [Manual:The FreeCAD Interface/en](Manual:The_FreeCAD_Interface/en.md) , [Template:Manual:TOC/en](Template:Manual:TOC/en.md) , [Manual:Traditional 2D drafting/en](Manual:Traditional_2D_drafting/en.md) , [Manual:Traditional modeling, the CSG way/en](Manual:Traditional_modeling,_the_CSG_way/en.md) , [Manual:Using spreadsheets/en](Manual:Using_spreadsheets/en.md) , [Manual:What is FreeCAD/en](Manual:What_is_FreeCAD/en.md) + +--- +[documentation index](../README.md) > Category:Manual/en diff --git a/wiki/translations/en/Category:Mesh.md b/wiki/translations/en/Category:Mesh.md index cdf3739e29..3f0808114b 100644 --- a/wiki/translations/en/Category:Mesh.md +++ b/wiki/translations/en/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh Workbench](Mesh_Workbench.md). [Artwork Mesh/en](Artwork_Mesh/en.md) , [Manual:Preparing models for 3D printing/en](Manual:Preparing_models_for_3D_printing/en.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Mesh/en diff --git a/wiki/translations/en/Category:News.md b/wiki/translations/en/Category:News.md index ddf2a68e46..a801303d40 100644 --- a/wiki/translations/en/Category:News.md +++ b/wiki/translations/en/Category:News.md @@ -6,3 +6,6 @@ This category contains articles with news and messages about FreeCAD. [History/en](History/en.md) , [Release notes 0.13/en](Release_notes_0.13/en.md) , [Release notes 0.14/en](Release_notes_0.14/en.md) , [Release notes 0.15/en](Release_notes_0.15/en.md) , [Release notes 0.16/en](Release_notes_0.16/en.md) , [Release notes 0.17/en](Release_notes_0.17/en.md) , [Release notes 0.18/en](Release_notes_0.18/en.md) , [Release notes 0.19/en](Release_notes_0.19/en.md) , [Release notes 0.20/en](Release_notes_0.20/en.md) [Category:Categories/en](Category:Categories/en.md) + +--- +[documentation index](../README.md) > Category:News/en diff --git a/wiki/translations/en/Category:Obsolete_Workbenches.md b/wiki/translations/en/Category:Obsolete_Workbenches.md index f050640efd..61dbd6e536 100644 --- a/wiki/translations/en/Category:Obsolete_Workbenches.md +++ b/wiki/translations/en/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists obsolete workbenches, that is, workbenches that are old and [Complete Workbench/en](Complete_Workbench/en.md) , [Drawing Workbench/en](Drawing_Workbench/en.md) , [Category:Workbenches](Category:Workbenches.md) [Category:Drawing/en](Category:Drawing/en.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/en diff --git a/wiki/translations/en/Category:Obsolete_page.md b/wiki/translations/en/Category:Obsolete_page.md index 0399d5f593..351c679f47 100644 --- a/wiki/translations/en/Category:Obsolete_page.md +++ b/wiki/translations/en/Category:Obsolete_page.md @@ -1,6 +1,7 @@ # Category:Obsolete page/en - - This category lists pages that are obsolete in regard to the current FreeCAD version. They are candidate for deletion, after discussion on the FreeCAD forum\... ### Contents: + +--- +[documentation index](../README.md) > Category:Obsolete page/en diff --git a/wiki/translations/en/Category:OpenSCAD.md b/wiki/translations/en/Category:OpenSCAD.md index c5f1b47967..95d3c7a470 100644 --- a/wiki/translations/en/Category:OpenSCAD.md +++ b/wiki/translations/en/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD Workbench](OpenSCAD_Workbench [Artwork OpenSCAD/en](Artwork_OpenSCAD/en.md) , [Import OpenSCAD code/en](Import_OpenSCAD_code/en.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/en diff --git a/wiki/translations/en/Category:Packaging.md b/wiki/translations/en/Category:Packaging.md index 435f8c24b8..2045cccd97 100644 --- a/wiki/translations/en/Category:Packaging.md +++ b/wiki/translations/en/Category:Packaging.md @@ -6,3 +6,6 @@ This category collects pages related to packing FreeCAD for different platforms, [AppImage/en](AppImage/en.md) , [Debian development/en](Debian_development/en.md) , [Debian Unstable/en](Debian_Unstable/en.md) , [Git buildpackage/en](Git_buildpackage/en.md) , [Linux packaging/en](Linux_packaging/en.md) , [MacOS packaging/en](MacOS_packaging/en.md) , [Packaging/en](Packaging/en.md) [Category:Developer\_Documentation/en](Category:Developer_Documentation/en.md) + +--- +[documentation index](../README.md) > Category:Packaging/en diff --git a/wiki/translations/en/Category:Part.md b/wiki/translations/en/Category:Part.md index 973abb9906..11a85d4523 100644 --- a/wiki/translations/en/Category:Part.md +++ b/wiki/translations/en/Category:Part.md @@ -4,3 +4,6 @@ This category lists pages related to the [Part Workbench](Part_Workbench.md). ### Contents: [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Part/en diff --git a/wiki/translations/en/Category:PartDesign.md b/wiki/translations/en/Category:PartDesign.md index a9b13e5311..5e435f7ecf 100644 --- a/wiki/translations/en/Category:PartDesign.md +++ b/wiki/translations/en/Category:PartDesign.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench](PartDesign_Workb [Artwork PartDesign/en](Artwork_PartDesign/en.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:PartDesign/en diff --git a/wiki/translations/en/Category:Path.md b/wiki/translations/en/Category:Path.md index 41ab1c788e..7c89fb816d 100644 --- a/wiki/translations/en/Category:Path.md +++ b/wiki/translations/en/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [Path Workbench](Path_Workbench.md). [Artwork Path/en](Artwork_Path/en.md) , [Manual:Preparing models for 3D printing/en](Manual:Preparing_models_for_3D_printing/en.md) [Category:User\_Documentation](Category:User_Documentation.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Category:Path/en diff --git a/wiki/translations/en/Category:Plot.md b/wiki/translations/en/Category:Plot.md index 823e4c7dd6..8555e03356 100644 --- a/wiki/translations/en/Category:Plot.md +++ b/wiki/translations/en/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench](Plot_Workbench.md). [Artwork Plot/en](Artwork_Plot/en.md) [Category:User\_Documentation](Category:User_Documentation.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Category:Plot/en diff --git a/wiki/translations/en/Category:Points.md b/wiki/translations/en/Category:Points.md index 70131f53ca..63c1ce3994 100644 --- a/wiki/translations/en/Category:Points.md +++ b/wiki/translations/en/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench](Points_Workbench.md) [Artwork Points/en](Artwork_Points/en.md) [Category:Workbenches/en](Category:Workbenches/en.md) [Category:User\_Documentation/en](Category:User_Documentation/en.md) + +--- +[documentation index](../README.md) > Category:Points/en diff --git a/wiki/translations/en/Category:Poweruser_Documentation.md b/wiki/translations/en/Category:Poweruser_Documentation.md index 332653eb8c..85b33c201b 100644 --- a/wiki/translations/en/Category:Poweruser_Documentation.md +++ b/wiki/translations/en/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Arch API/en](Arch_API/en.md) , [Base API/en](Base_API/en.md) , [Builtin modules/en](Builtin_modules/en.md) , [Code snippets/en](Code_snippets/en.md) , [Coin3d snippets/en](Coin3d_snippets/en.md) , [Command/en](Command/en.md) , [Console API/en](Console_API/en.md) , [Create a FeaturePython object part I/en](Create_a_FeaturePython_object_part_I/en.md) , [Create a FeaturePython object part II/en](Create_a_FeaturePython_object_part_II/en.md) , [Custom icon in tree view/en](Custom_icon_in_tree_view/en.md) , [Debugging/en](Debugging/en.md) , [Dialog creation image and animated GIF/en](Dialog_creation_image_and_animated_GIF/en.md) , [Dialog creation reading and writing files/en](Dialog_creation_reading_and_writing_files/en.md) , [Dialog creation setting colors/en](Dialog_creation_setting_colors/en.md) , [Dialog creation with various widgets/en](Dialog_creation_with_various_widgets/en.md) , [Dialog creation/en](Dialog_creation/en.md) , [Draft API/en](Draft_API/en.md) , [Drawing API example/en](Drawing_API_example/en.md) , [Embedding FreeCAD/en](Embedding_FreeCAD/en.md) , [Embedding FreeCADGui/en](Embedding_FreeCADGui/en.md) , [Expressions/en](Expressions/en.md) , [FeaturePython methods/en](FeaturePython_methods/en.md) , [FEM CalculiX/en](FEM_CalculiX/en.md) , [FEM Element Types/en](FEM_Element_Types/en.md) , [FEM Mesh CalculiX/en](FEM_Mesh_CalculiX/en.md) , [FreeCAD API/en](FreeCAD_API/en.md) , [FreeCAD Scripting Basics/en](FreeCAD_Scripting_Basics/en.md) , [FreeCAD vector math library/en](FreeCAD_vector_math_library/en.md) , [FreeCADGui API/en](FreeCADGui_API/en.md) , [Gui Command/en](Gui_Command/en.md) , [How to install additional workbenches/en](How_to_install_additional_workbenches/en.md) , [How to install macros/en](How_to_install_macros/en.md) , [Installing more workbenches/en](Installing_more_workbenches/en.md) , [Interface creation/en](Interface_creation/en.md) , [Introduction to Python/en](Introduction_to_Python/en.md) , [Line drawing function/en](Line_drawing_function/en.md) , [LinkSub/en](LinkSub/en.md) , [LinkSubList/en](LinkSubList/en.md) , [Macro at Startup/en](Macro_at_Startup/en.md) , [Macros/en](Macros/en.md) , [Manual:A gentle introduction/en](Manual:A_gentle_introduction/en.md) , [Manual:Creating and manipulating geometry/en](Manual:Creating_and_manipulating_geometry/en.md) , [Manual:Creating interface tools/en](Manual:Creating_interface_tools/en.md) , [Manual:Creating parametric objects/en](Manual:Creating_parametric_objects/en.md) , [Manual:Import and export to other filetypes/en](Manual:Import_and_export_to_other_filetypes/en.md) , [Manual:Installing/en](Manual:Installing/en.md) , [Manual:Parametric objects/en](Manual:Parametric_objects/en.md) , [Matrix API/en](Matrix_API/en.md) , [Mesh API/en](Mesh_API/en.md) , [Mesh Scripting/en](Mesh_Scripting/en.md) , [Mesh to Part/en](Mesh_to_Part/en.md) , [Multithreading/en](Multithreading/en.md) , [Object API/en](Object_API/en.md) , [OpenCASCADE/en](OpenCASCADE/en.md) , [Part API/en](Part_API/en.md) , [Part scripting/en](Part_scripting/en.md) , [Path experimental/en](Path_experimental/en.md) , [Path scripting/en](Path_scripting/en.md) , [Pivy/en](Pivy/en.md) , [Placement API/en](Placement_API/en.md) , [Power users hub/en](Power_users_hub/en.md) , [Profiling/en](Profiling/en.md) , [Property/en](Property/en.md) , [PySide Advanced Examples/en](PySide_Advanced_Examples/en.md) , [PySide Beginner Examples/en](PySide_Beginner_Examples/en.md) , [PySide Intermediate Examples/en](PySide_Intermediate_Examples/en.md) , [PySide usage snippets/en](PySide_usage_snippets/en.md) , [PySide/en](PySide/en.md) , [Python Development Environment/en](Python_Development_Environment/en.md) , [Python scripting tutorial/en](Python_scripting_tutorial/en.md) , [Python/en](Python/en.md) , [PythonOCC/en](PythonOCC/en.md) , [Qt Example/en](Qt_Example/en.md) , [Quantity/en](Quantity/en.md) , [Raytracing API example/en](Raytracing_API_example/en.md) , [Reinforcement API/en](Reinforcement_API/en.md) , [Scenegraph/en](Scenegraph/en.md) , [Scientific literature/en](Scientific_literature/en.md) , [Scripted objects migration/en](Scripted_objects_migration/en.md) , [Scripted objects saving attributes/en](Scripted_objects_saving_attributes/en.md) , [Scripted objects with attachment/en](Scripted_objects_with_attachment/en.md) , [Scripted objects/en](Scripted_objects/en.md) , [Scripted Parts: Ball Bearing - Part 1/en](Scripted_Parts:_Ball_Bearing_-_Part_1/en.md) , [Scripted Parts: Ball Bearing - Part 2/en](Scripted_Parts:_Ball_Bearing_-_Part_2/en.md) , [Scripting and macros/en](Scripting_and_macros/en.md) , [Scripts/en](Scripts/en.md) , [Selection API/en](Selection_API/en.md) , [Svg Namespace/en](Svg_Namespace/en.md) , [TechDraw API/en](TechDraw_API/en.md) , [TechDrawGui API/en](TechDrawGui_API/en.md) , [Topological data scripting/en](Topological_data_scripting/en.md) , [TopoShape API/en](TopoShape_API/en.md) , [Units/en](Units/en.md) , [Vector API/en](Vector_API/en.md) , [ViewObject API/en](ViewObject_API/en.md) , [Viewprovider/en](Viewprovider/en.md) , [Workbench creation/en](Workbench_creation/en.md) , [Wrapping a Cplusplus class in Python/en](Wrapping_a_Cplusplus_class_in_Python/en.md) [Category:Documentation/en](Category:Documentation/en.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/en diff --git a/wiki/translations/en/Category:Preferences.md b/wiki/translations/en/Category:Preferences.md index 45889ab8a8..c849216075 100644 --- a/wiki/translations/en/Category:Preferences.md +++ b/wiki/translations/en/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Arch Preferences/en](Arch_Preferences/en.md) , [Customize Toolbars/en](Customize_Toolbars/en.md) , [Draft Preferences/en](Draft_Preferences/en.md) , [FEM Preferences/en](FEM_Preferences/en.md) , [Import Export Preferences/en](Import_Export_Preferences/en.md) , [OpenSCAD Preferences/en](OpenSCAD_Preferences/en.md) , [PartDesign Preferences/en](PartDesign_Preferences/en.md) , [Path Preferences/en](Path_Preferences/en.md) , [Preferences Editor/en](Preferences_Editor/en.md) , [Raytracing Preferences/en](Raytracing_Preferences/en.md) , [Sketcher Preferences/en](Sketcher_Preferences/en.md) , [Start Preferences/en](Start_Preferences/en.md) , [TechDraw Preferences/en](TechDraw_Preferences/en.md) + +--- +[documentation index](../README.md) > Category:Preferences/en diff --git a/wiki/translations/en/Category:Python_Code.md b/wiki/translations/en/Category:Python_Code.md index 723fe4b13d..66a8de4a11 100644 --- a/wiki/translations/en/Category:Python_Code.md +++ b/wiki/translations/en/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Code snippets/en](Code_snippets/en.md) , [Command/en](Command/en.md) , [Create a FeaturePython object part I/en](Create_a_FeaturePython_object_part_I/en.md) , [Create a FeaturePython object part II/en](Create_a_FeaturePython_object_part_II/en.md) , [Custom icon in tree view/en](Custom_icon_in_tree_view/en.md) , [Debugging/en](Debugging/en.md) , [Dialog creation image and animated GIF/en](Dialog_creation_image_and_animated_GIF/en.md) , [Dialog creation reading and writing files/en](Dialog_creation_reading_and_writing_files/en.md) , [Dialog creation setting colors/en](Dialog_creation_setting_colors/en.md) , [Dialog creation with various widgets/en](Dialog_creation_with_various_widgets/en.md) , [Dialog creation/en](Dialog_creation/en.md) , [Drawing API example/en](Drawing_API_example/en.md) , [Embedding FreeCAD/en](Embedding_FreeCAD/en.md) , [Embedding FreeCADGui/en](Embedding_FreeCADGui/en.md) , [Extra python modules/en](Extra_python_modules/en.md) , [FeaturePython methods/en](FeaturePython_methods/en.md) , [FEM Tutorial Python/en](FEM_Tutorial_Python/en.md) , [FreeCAD Scripting Basics/en](FreeCAD_Scripting_Basics/en.md) , [FreeCAD vector math library/en](FreeCAD_vector_math_library/en.md) , [How to install macros/en](How_to_install_macros/en.md) , [Interface creation/en](Interface_creation/en.md) , [Introduction to Python/en](Introduction_to_Python/en.md) , [Line drawing function/en](Line_drawing_function/en.md) , [Macro at Startup/en](Macro_at_Startup/en.md) , [Macros recipes/en](Macros_recipes/en.md) , [Macros/en](Macros/en.md) , [Manual:A gentle introduction/en](Manual:A_gentle_introduction/en.md) , [Manual:Creating and manipulating geometry/en](Manual:Creating_and_manipulating_geometry/en.md) , [Manual:Creating interface tools/en](Manual:Creating_interface_tools/en.md) , [Manual:Creating parametric objects/en](Manual:Creating_parametric_objects/en.md) , [Mesh Scripting/en](Mesh_Scripting/en.md) , [Mesh to Part/en](Mesh_to_Part/en.md) , [Part scripting/en](Part_scripting/en.md) , [Path scripting/en](Path_scripting/en.md) , [Pivy/en](Pivy/en.md) , [Profiling/en](Profiling/en.md) , [Property/en](Property/en.md) , [PySide Advanced Examples/en](PySide_Advanced_Examples/en.md) , [PySide Beginner Examples/en](PySide_Beginner_Examples/en.md) , [PySide Intermediate Examples/en](PySide_Intermediate_Examples/en.md) , [PySide usage snippets/en](PySide_usage_snippets/en.md) , [PySide/en](PySide/en.md) , [Python Development Environment/en](Python_Development_Environment/en.md) , [Python scripting tutorial/en](Python_scripting_tutorial/en.md) , [Python/en](Python/en.md) , [PythonOCC/en](PythonOCC/en.md) , [Qt Example/en](Qt_Example/en.md) , [Quantity/en](Quantity/en.md) , [Raytracing API example/en](Raytracing_API_example/en.md) , [Scripted objects migration/en](Scripted_objects_migration/en.md) , [Scripted objects saving attributes/en](Scripted_objects_saving_attributes/en.md) , [Scripted objects with attachment/en](Scripted_objects_with_attachment/en.md) , [Scripted objects/en](Scripted_objects/en.md) , [Scripted Parts: Ball Bearing - Part 1/en](Scripted_Parts:_Ball_Bearing_-_Part_1/en.md) , [Scripted Parts: Ball Bearing - Part 2/en](Scripted_Parts:_Ball_Bearing_-_Part_2/en.md) , [Scripting and macros/en](Scripting_and_macros/en.md) , [Scripts/en](Scripts/en.md) , [Svg Namespace/en](Svg_Namespace/en.md) , [Topological data scripting/en](Topological_data_scripting/en.md) , [Viewprovider/en](Viewprovider/en.md) , [Workbench creation/en](Workbench_creation/en.md) [Category:Categories/en](Category:Categories/en.md) + +--- +[documentation index](../README.md) > Category:Python Code/en diff --git a/wiki/translations/en/Category:Repository.md b/wiki/translations/en/Category:Repository.md index 90de68bd4d..52309bea0c 100644 --- a/wiki/translations/en/Category:Repository.md +++ b/wiki/translations/en/Category:Repository.md @@ -4,3 +4,6 @@ This category gathers pages that act as a repository of resources for FreeCAD, s ### Contents: [Category:Categories/en](Category:Categories/en.md) + +--- +[documentation index](../README.md) > Category:Repository/en diff --git a/wiki/translations/en/Category:Roadmap.md b/wiki/translations/en/Category:Roadmap.md index a8e0f488e4..71f1181ef9 100644 --- a/wiki/translations/en/Category:Roadmap.md +++ b/wiki/translations/en/Category:Roadmap.md @@ -6,3 +6,6 @@ This category gathers all articles documenting what is planned in the Roadmap of [Arch Concept/en](Arch_Concept/en.md) , [Artwork project/en](Artwork_project/en.md) , [Assembly project/en](Assembly_project/en.md) , [CAM project/en](CAM_project/en.md) , [Development roadmap/en](Development_roadmap/en.md) , [FEM project/en](FEM_project/en.md) , [FreeCAD development model project/en](FreeCAD_development_model_project/en.md) , [HiDPI support/en](HiDPI_support/en.md) , [Land Survey Workbench Blueprint/en](Land_Survey_Workbench_Blueprint/en.md) , [Material data model/en](Material_data_model/en.md) , [Material/en](Material/en.md) , [Naming project/en](Naming_project/en.md) , [PartDesign project/en](PartDesign_project/en.md) , [Project template/en](Project_template/en.md) , [Quality project/en](Quality_project/en.md) , [Raytracing project/en](Raytracing_project/en.md) , [Resource framework project/en](Resource_framework_project/en.md) , [Robot project/en](Robot_project/en.md) , [Sketcher project/en](Sketcher_project/en.md) , [STEP project/en](STEP_project/en.md) , [Tolerancing/en](Tolerancing/en.md) , [Units project/en](Units_project/en.md) , [UTF Project/en](UTF_Project/en.md) , [Wished tools/en](Wished_tools/en.md) [Category:Categories/en](Category:Categories/en.md) + +--- +[documentation index](../README.md) > Category:Roadmap/en diff --git a/wiki/translations/en/Category:Robot_API.md b/wiki/translations/en/Category:Robot_API.md index 6a55ef42f0..7599cf3726 100644 --- a/wiki/translations/en/Category:Robot_API.md +++ b/wiki/translations/en/Category:Robot_API.md @@ -6,3 +6,6 @@ This page collects the programming interface (API) and examples for the [Robot W [Robot API example/en](Robot_API_example/en.md) [Category:API/en](Category:API/en.md) + +--- +[documentation index](../README.md) > Category:Robot API/en diff --git a/wiki/translations/en/Category:Spreadsheet.md b/wiki/translations/en/Category:Spreadsheet.md index ce17e8d134..4091646213 100644 --- a/wiki/translations/en/Category:Spreadsheet.md +++ b/wiki/translations/en/Category:Spreadsheet.md @@ -4,3 +4,6 @@ These are pages that discuss the use of spreadsheets and/or the Spreadsheet Work ### Contents: [Artwork Spreadsheet/en](Artwork_Spreadsheet/en.md) , [Expressions/en](Expressions/en.md) , [Spreadsheet CSV/en](Spreadsheet_CSV/en.md) + +--- +[documentation index](../README.md) > Category:Spreadsheet/en diff --git a/wiki/translations/en/Category:Template.md b/wiki/translations/en/Category:Template.md index 50707545e5..ec883df242 100644 --- a/wiki/translations/en/Category:Template.md +++ b/wiki/translations/en/Category:Template.md @@ -6,3 +6,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) ### Contents: [Category:Categories/en](Category:Categories/en.md) [Category:Template:Navigation/en](Category:Template:Navigation/en.md) + +--- +[documentation index](../README.md) > Category:Template/en diff --git a/wiki/translations/en/Category:Template:Navigation.md b/wiki/translations/en/Category:Template:Navigation.md index 1b95f02a5c..49aab23e61 100644 --- a/wiki/translations/en/Category:Template:Navigation.md +++ b/wiki/translations/en/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/en](Template:Arch_Tools_navi/en.md) , [Template:Artwork/en](Template:Artwork/en.md) , [Template:Powerdocnavi/en](Template:Powerdocnavi/en.md) , [Template:Robot Tools navi/en](Template:Robot_Tools_navi/en.md) , [Template:Std Base navi/en](Template:Std_Base_navi/en.md) [Category:Template/en](Category:Template/en.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/en diff --git a/wiki/translations/en/Category:Tutorials.md b/wiki/translations/en/Category:Tutorials.md index 4830e50322..bc9c74e6d1 100644 --- a/wiki/translations/en/Category:Tutorials.md +++ b/wiki/translations/en/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials](Offsite_tutorials.md) and [Video tutorials [Add FEM constraint tutorial/en](Add_FEM_constraint_tutorial/en.md) , [Add FEM equation tutorial/en](Add_FEM_equation_tutorial/en.md) , [Advanced TechDraw Tutorial/en](Advanced_TechDraw_Tutorial/en.md) , [Aeroplane/en](Aeroplane/en.md) , [Analysis of reinforced concrete with FEM/en](Analysis_of_reinforced_concrete_with_FEM/en.md) , [Arch panel tutorial/en](Arch_panel_tutorial/en.md) , [Arch tutorial/en](Arch_tutorial/en.md) , [Basic Attachment Tutorial/en](Basic_Attachment_Tutorial/en.md) , [Basic modeling tutorial/en](Basic_modeling_tutorial/en.md) , [Basic Part Design Tutorial/en](Basic_Part_Design_Tutorial/en.md) , [Basic Sketcher Tutorial/en](Basic_Sketcher_Tutorial/en.md) , [Basic TechDraw Tutorial/en](Basic_TechDraw_Tutorial/en.md) , [BIM ingame tutorial/en](BIM_ingame_tutorial/en.md) , [Creating a simple part with PartDesign/en](Creating_a_simple_part_with_PartDesign/en.md) , [Customize Toolbars/en](Customize_Toolbars/en.md) , [Draft ShapeString tutorial/en](Draft_ShapeString_tutorial/en.md) , [Draft tutorial/en](Draft_tutorial/en.md) , [Drawing Template HowTo/en](Drawing_Template_HowTo/en.md) , [Drawing tutorial/en](Drawing_tutorial/en.md) , [Dxf Importer Install/en](Dxf_Importer_Install/en.md) , [Engine Block Tutorial/en](Engine_Block_Tutorial/en.md) , [Engine tutorial/en](Engine_tutorial/en.md) , [Export to STL or OBJ/en](Export_to_STL_or_OBJ/en.md) , [Extend FEM Module/en](Extend_FEM_Module/en.md) , [FEM Beginner tutorial/en](FEM_Beginner_tutorial/en.md) , [FEM CalculiX Cantilever 3D/en](FEM_CalculiX_Cantilever_3D/en.md) , [FEM Example Capacitance Two Balls/en](FEM_Example_Capacitance_Two_Balls/en.md) , [FEM Shear of a Composite Block/en](FEM_Shear_of_a_Composite_Block/en.md) , [FEM Tutorial Python/en](FEM_Tutorial_Python/en.md) , [FEM tutorial/en](FEM_tutorial/en.md) , [FreeCAD-Ship s60 tutorial (II)/en](FreeCAD-Ship_s60_tutorial_(II)/en.md) , [FreeCAD-Ship s60 tutorial/en](FreeCAD-Ship_s60_tutorial/en.md) , [How to install additional workbenches/en](How_to_install_additional_workbenches/en.md) , [How to install macros/en](How_to_install_macros/en.md) , [Import from STL or OBJ/en](Import_from_STL_or_OBJ/en.md) , [Import OpenSCAD code/en](Import_OpenSCAD_code/en.md) , [Import text and geometry from Inkscape/en](Import_text_and_geometry_from_Inkscape/en.md) , [Import/Export IFC - compiling IfcOpenShell/en](Import/Export_IFC_-_compiling_IfcOpenShell/en.md) , [Manual:Creating renderings/en](Manual:Creating_renderings/en.md) , [Manual:Import and export to other filetypes/en](Manual:Import_and_export_to_other_filetypes/en.md) , [Manual:Installing/en](Manual:Installing/en.md) , [Manual:Parametric objects/en](Manual:Parametric_objects/en.md) , [Manual:Preparing models for 3D printing/en](Manual:Preparing_models_for_3D_printing/en.md) , [Manual:Traditional 2D drafting/en](Manual:Traditional_2D_drafting/en.md) , [Measurement Of Angles On Holes/en](Measurement_Of_Angles_On_Holes/en.md) , [Part Loft Technical Details/en](Part_Loft_Technical_Details/en.md) , [PartDesign Bearingholder Tutorial I/en](PartDesign_Bearingholder_Tutorial_I/en.md) , [PartDesign Bearingholder Tutorial II/en](PartDesign_Bearingholder_Tutorial_II/en.md) , [PartDesign tutorial/en](PartDesign_tutorial/en.md) , [Path Walkthrough for the Impatient/en](Path_Walkthrough_for_the_Impatient/en.md) , [Plot Basic tutorial/en](Plot_Basic_tutorial/en.md) , [Plot MultiAxes tutorial/en](Plot_MultiAxes_tutorial/en.md) , [Post-Processing of FEM Results with Paraview/en](Post-Processing_of_FEM_Results_with_Paraview/en.md) , [Raytracing tutorial/en](Raytracing_tutorial/en.md) , [Robot 6-Axis/en](Robot_6-Axis/en.md) , [Robot tutorial/en](Robot_tutorial/en.md) , [Sandbox:TechDraw template creation tutorial/en](Sandbox:TechDraw_template_creation_tutorial/en.md) , [Scripted Parts: Ball Bearing - Part 1/en](Scripted_Parts:_Ball_Bearing_-_Part_1/en.md) , [Scripted Parts: Ball Bearing - Part 2/en](Scripted_Parts:_Ball_Bearing_-_Part_2/en.md) , [Scripts/en](Scripts/en.md) , [Sketcher Micro Tutorial - Constraint Practices/en](Sketcher_Micro_Tutorial_-_Constraint_Practices/en.md) , [Sketcher requirement for a sketch/en](Sketcher_requirement_for_a_sketch/en.md) , [Sketcher Tutorial/en](Sketcher_Tutorial/en.md) , [TechDraw HowTo Page/en](TechDraw_HowTo_Page/en.md) , [TechDraw pitch circle tutorial/en](TechDraw_pitch_circle_tutorial/en.md) , [TechDraw TemplateGenerator/en](TechDraw_TemplateGenerator/en.md) , [TechDraw TemplateHowTo/en](TechDraw_TemplateHowTo/en.md) , [Thread for Screw Tutorial/en](Thread_for_Screw_Tutorial/en.md) , [Toothbrush Head Stand/en](Toothbrush_Head_Stand/en.md) , [Transient FEM analysis/en](Transient_FEM_analysis/en.md) , [Tutorial custom placing of windows and doors/en](Tutorial_custom_placing_of_windows_and_doors/en.md) , [Tutorial for open windows/en](Tutorial_for_open_windows/en.md) , [Tutorial FreeCAD POV ray/en](Tutorial_FreeCAD_POV_ray/en.md) , [Tutorial Render with Blender/en](Tutorial_Render_with_Blender/en.md) , [Template:TutorialInfo/en](Template:TutorialInfo/en.md) , [Tutorials/en](Tutorials/en.md) , [VRML Preparation for Robot Simulation/en](VRML_Preparation_for_Robot_Simulation/en.md) , [Whiffle Ball tutorial/en](Whiffle_Ball_tutorial/en.md) , [Wikihouse porting tutorial/en](Wikihouse_porting_tutorial/en.md) [Category:Categories/en](Category:Categories/en.md) + +--- +[documentation index](../README.md) > Category:Tutorials/en diff --git a/wiki/translations/en/Category:UnfinishedDocu.md b/wiki/translations/en/Category:UnfinishedDocu.md index cb324f7821..3826b99bba 100644 --- a/wiki/translations/en/Category:UnfinishedDocu.md +++ b/wiki/translations/en/Category:UnfinishedDocu.md @@ -6,3 +6,6 @@ This category contains all Unfinished Documents [Animation Workbench/en](Animation_Workbench/en.md) , [Arch CompAxis/en](Arch_CompAxis/en.md) , [Arch CompPanel/en](Arch_CompPanel/en.md) , [Arch CompPipe/en](Arch_CompPipe/en.md) , [Arch CompSetMaterial/en](Arch_CompSetMaterial/en.md) , [Assembly Workbench/en](Assembly_Workbench/en.md) , [Assembly3 ConstraintAlignment/en](Assembly3_ConstraintAlignment/en.md) , [Assembly3 ConstraintAngle/en](Assembly3_ConstraintAngle/en.md) , [Assembly3 ConstraintAttachment/en](Assembly3_ConstraintAttachment/en.md) , [Assembly3 ConstraintAxial/en](Assembly3_ConstraintAxial/en.md) , [Assembly3 ConstraintCoincidence/en](Assembly3_ConstraintCoincidence/en.md) , [Assembly3 ConstraintColinear/en](Assembly3_ConstraintColinear/en.md) , [Assembly3 ConstraintDiameter/en](Assembly3_ConstraintDiameter/en.md) , [Assembly3 ConstraintEqualAngle/en](Assembly3_ConstraintEqualAngle/en.md) , [Assembly3 ConstraintEqualLength/en](Assembly3_ConstraintEqualLength/en.md) , [Assembly3 ConstraintEqualLineArcLength/en](Assembly3_ConstraintEqualLineArcLength/en.md) , [Assembly3 ConstraintEqualPointLineDistance/en](Assembly3_ConstraintEqualPointLineDistance/en.md) , [Assembly3 ConstraintEqualRadius/en](Assembly3_ConstraintEqualRadius/en.md) , [Assembly3 ConstraintLengthDifference/en](Assembly3_ConstraintLengthDifference/en.md) , [Assembly3 ConstraintLengthEqualPointLineDistance/en](Assembly3_ConstraintLengthEqualPointLineDistance/en.md) , [Assembly3 ConstraintLengthRatio/en](Assembly3_ConstraintLengthRatio/en.md) , [Assembly3 ConstraintLineHorizontal/en](Assembly3_ConstraintLineHorizontal/en.md) , [Assembly3 ConstraintLineLength/en](Assembly3_ConstraintLineLength/en.md) , [Assembly3 ConstraintLineVertical/en](Assembly3_ConstraintLineVertical/en.md) , [Assembly3 ConstraintLock/en](Assembly3_ConstraintLock/en.md) , [Assembly3 ConstraintMidPoint/en](Assembly3_ConstraintMidPoint/en.md) , [Assembly3 ConstraintMultiParallel/en](Assembly3_ConstraintMultiParallel/en.md) , [Assembly3 ConstraintPerpendicular/en](Assembly3_ConstraintPerpendicular/en.md) , [Assembly3 ConstraintPointDistance/en](Assembly3_ConstraintPointDistance/en.md) , [Assembly3 ConstraintPointInPlane/en](Assembly3_ConstraintPointInPlane/en.md) , [Assembly3 ConstraintPointLineDistance/en](Assembly3_ConstraintPointLineDistance/en.md) , [Assembly3 ConstraintPointOnCircle/en](Assembly3_ConstraintPointOnCircle/en.md) , [Assembly3 ConstraintPointOnLine/en](Assembly3_ConstraintPointOnLine/en.md) , [Assembly3 ConstraintPointPlaneDistance/en](Assembly3_ConstraintPointPlaneDistance/en.md) , [Assembly3 ConstraintPointsCoincident/en](Assembly3_ConstraintPointsCoincident/en.md) , [Assembly3 ConstraintPointsDistance/en](Assembly3_ConstraintPointsDistance/en.md) , [Assembly3 ConstraintPointsHorizontal/en](Assembly3_ConstraintPointsHorizontal/en.md) , [Assembly3 ConstraintPointsProjectDistance/en](Assembly3_ConstraintPointsProjectDistance/en.md) , [Assembly3 ConstraintPointsSymmetric/en](Assembly3_ConstraintPointsSymmetric/en.md) , [Assembly3 ConstraintPointsVertical/en](Assembly3_ConstraintPointsVertical/en.md) , [Assembly3 ConstraintSameOrientation/en](Assembly3_ConstraintSameOrientation/en.md) , [Assembly3 ConstraintSketchPlane/en](Assembly3_ConstraintSketchPlane/en.md) , [Assembly3 ConstraintSymmetric/en](Assembly3_ConstraintSymmetric/en.md) , [Assembly3 ConstraintSymmetricHorizontal/en](Assembly3_ConstraintSymmetricHorizontal/en.md) , [Assembly3 ConstraintSymmetricLine/en](Assembly3_ConstraintSymmetricLine/en.md) , [Assembly3 ConstraintSymmetricVertical/en](Assembly3_ConstraintSymmetricVertical/en.md) , [Assembly3 CreateAssembly/en](Assembly3_CreateAssembly/en.md) , [Assembly3 CreateElement/en](Assembly3_CreateElement/en.md) , [Assembly3 GoToRelation/en](Assembly3_GoToRelation/en.md) , [Assembly3 GroupObjects/en](Assembly3_GroupObjects/en.md) , [Assembly3 ImportFromSTEP/en](Assembly3_ImportFromSTEP/en.md) , [Assembly3 ImportMultiDocument/en](Assembly3_ImportMultiDocument/en.md) , [Assembly3 MeasureAngle/en](Assembly3_MeasureAngle/en.md) , [Assembly3 MeasurePointLine/en](Assembly3_MeasurePointLine/en.md) , [Assembly3 MeasurePointPlane/en](Assembly3_MeasurePointPlane/en.md) , [Assembly3 MeasurePoints/en](Assembly3_MeasurePoints/en.md) , [BIM application compatibility table/en](BIM_application_compatibility_table/en.md) , [BIM ingame tutorial/en](BIM_ingame_tutorial/en.md) , [BIM Workbench/en](BIM_Workbench/en.md) , [BOLTSFC Workbench/en](BOLTSFC_Workbench/en.md) , [CurvedShapes Workbench/en](CurvedShapes_Workbench/en.md) , [Curves Pipeshell/en](Curves_Pipeshell/en.md) , [Curves SketchOnSurface/en](Curves_SketchOnSurface/en.md) , [Curves SplitCurve/en](Curves_SplitCurve/en.md) , [Curves Workbench/en](Curves_Workbench/en.md) , [Curves ZebraTool/en](Curves_ZebraTool/en.md) , [Developing FreeCAD with KDevelop/en](Developing_FreeCAD_with_KDevelop/en.md) , [Engine Block Tutorial/en](Engine_Block_Tutorial/en.md) , [FEM ClippingPlaneAdd/en](FEM_ClippingPlaneAdd/en.md) , [FEM ClippingPlaneRemoveAll/en](FEM_ClippingPlaneRemoveAll/en.md) , [FEM ConstantVacuumPermittivity/en](FEM_ConstantVacuumPermittivity/en.md) , [FEM ConstraintBearing/en](FEM_ConstraintBearing/en.md) , [FEM ConstraintBodyHeatSource/en](FEM_ConstraintBodyHeatSource/en.md) , [FEM ConstraintElectrostaticPotential/en](FEM_ConstraintElectrostaticPotential/en.md) , [FEM ConstraintFluidBoundary/en](FEM_ConstraintFluidBoundary/en.md) , [FEM ConstraintForce/en](FEM_ConstraintForce/en.md) , [FEM ConstraintGear/en](FEM_ConstraintGear/en.md) , [FEM ConstraintPulley/en](FEM_ConstraintPulley/en.md) , [FEM ConstraintSectionPrint/en](FEM_ConstraintSectionPrint/en.md) , [FEM ConstraintTie/en](FEM_ConstraintTie/en.md) , [FEM ConstraintTransform/en](FEM_ConstraintTransform/en.md) , [FEM CreateNodesSet/en](FEM_CreateNodesSet/en.md) , [FEM ElementGeometry1D/en](FEM_ElementGeometry1D/en.md) , [FEM ElementGeometry2D/en](FEM_ElementGeometry2D/en.md) , [FEM ElementRotation1D/en](FEM_ElementRotation1D/en.md) , [FEM EquationElasticity/en](FEM_EquationElasticity/en.md) , [FEM EquationElectricforce/en](FEM_EquationElectricforce/en.md) , [FEM EquationElectrostatic/en](FEM_EquationElectrostatic/en.md) , [FEM EquationFlow/en](FEM_EquationFlow/en.md) , [FEM EquationFlux/en](FEM_EquationFlux/en.md) , [FEM EquationHeat/en](FEM_EquationHeat/en.md) , [FEM MaterialMechanicalNonlinear/en](FEM_MaterialMechanicalNonlinear/en.md) , [FEM MaterialReinforced/en](FEM_MaterialReinforced/en.md) , [FEM MeshClear/en](FEM_MeshClear/en.md) , [FEM MeshGroup/en](FEM_MeshGroup/en.md) , [FEM MeshNetgenFromShape/en](FEM_MeshNetgenFromShape/en.md) , [FEM PostApplyChanges/en](FEM_PostApplyChanges/en.md) , [FEM PostCreateFunctions/en](FEM_PostCreateFunctions/en.md) , [FEM PostFilterClipRegion/en](FEM_PostFilterClipRegion/en.md) , [FEM PostFilterClipScalar/en](FEM_PostFilterClipScalar/en.md) , [FEM PostFilterCutFunction/en](FEM_PostFilterCutFunction/en.md) , [FEM PostFilterDataAlongLine/en](FEM_PostFilterDataAlongLine/en.md) , [FEM PostFilterDataAtPoint/en](FEM_PostFilterDataAtPoint/en.md) , [FEM PostFilterLinearizedStresses/en](FEM_PostFilterLinearizedStresses/en.md) , [FEM PostFilterWarp/en](FEM_PostFilterWarp/en.md) , [FEM PostPipelineFromResult/en](FEM_PostPipelineFromResult/en.md) , [FEM ResultShow/en](FEM_ResultShow/en.md) , [FEM ResultsPurge/en](FEM_ResultsPurge/en.md) , [FEM SolverCalculiX/en](FEM_SolverCalculiX/en.md) , [FEM SolverControl/en](FEM_SolverControl/en.md) , [FEM SolverRun/en](FEM_SolverRun/en.md) , [FEM SolverZ88/en](FEM_SolverZ88/en.md) , [InputField/en](InputField/en.md) , [Lattice2 AttachablePlacement/en](Lattice2_AttachablePlacement/en.md) , [Lattice2 Workbench/en](Lattice2_Workbench/en.md) , [MacOS packaging/en](MacOS_packaging/en.md) , [Manipulator/en](Manipulator/en.md) , [Manual:BIM modeling/en](Manual:BIM_modeling/en.md) , [Material/en](Material/en.md) , [ModernUI Workbench/en](ModernUI_Workbench/en.md) , [OpenCascade/en](OpenCascade/en.md) , [OpenSCAD ColorCodeShape/en](OpenSCAD_ColorCodeShape/en.md) , [Part BoxSelection/en](Part_BoxSelection/en.md) , [Part CompCompoundTools/en](Part_CompCompoundTools/en.md) , [Part CompSplittingTools/en](Part_CompSplittingTools/en.md) , [Part ElementCopy/en](Part_ElementCopy/en.md) , [Part Ellipse/en](Part_Ellipse/en.md) , [Part Ellipsoid/en](Part_Ellipsoid/en.md) , [Part Helix/en](Part_Helix/en.md) , [Part Line/en](Part_Line/en.md) , [Part Loft/en](Part_Loft/en.md) , [Part Mirror/en](Part_Mirror/en.md) , [Part Offset/en](Part_Offset/en.md) , [Part Plane/en](Part_Plane/en.md) , [Part Point/en](Part_Point/en.md) , [Part PointsFromMesh/en](Part_PointsFromMesh/en.md) , [Part RegularPolygon/en](Part_RegularPolygon/en.md) , [Part RuledSurface/en](Part_RuledSurface/en.md) , [Part Spiral/en](Part_Spiral/en.md) , [Part TransformedCopy/en](Part_TransformedCopy/en.md) , [Part Wedge/en](Part_Wedge/en.md) , [Path Area Workplane/en](Path_Area_Workplane/en.md) , [Path Area/en](Path_Area/en.md) , [Path DressupLeadInOut/en](Path_DressupLeadInOut/en.md) , [Path Engrave/en](Path_Engrave/en.md) , [Path Fixture/en](Path_Fixture/en.md) , [Path Helix/en](Path_Helix/en.md) , [Path MillFace/en](Path_MillFace/en.md) , [Path OpActiveToggle/en](Path_OpActiveToggle/en.md) , [Path Pocket 3D/en](Path_Pocket_3D/en.md) , [Path Sanity/en](Path_Sanity/en.md) , [Path Shape/en](Path_Shape/en.md) , [Path Simulator/en](Path_Simulator/en.md) , [Path Surface/en](Path_Surface/en.md) , [Path ToolBitDock/en](Path_ToolBitDock/en.md) , [Path ToolBitLibraryOpen/en](Path_ToolBitLibraryOpen/en.md) , [Path Waterline/en](Path_Waterline/en.md) , [Robot SetDefaultOrientation/en](Robot_SetDefaultOrientation/en.md) , [SheetMetal AddBase/en](SheetMetal_AddBase/en.md) , [SheetMetal AddBend/en](SheetMetal_AddBend/en.md) , [SheetMetal AddCornerRelief/en](SheetMetal_AddCornerRelief/en.md) , [SheetMetal AddFoldWall/en](SheetMetal_AddFoldWall/en.md) , [SheetMetal AddJunction/en](SheetMetal_AddJunction/en.md) , [SheetMetal AddRelief/en](SheetMetal_AddRelief/en.md) , [SheetMetal AddWall/en](SheetMetal_AddWall/en.md) , [SheetMetal Examples/en](SheetMetal_Examples/en.md) , [SheetMetal Extrude/en](SheetMetal_Extrude/en.md) , [SheetMetal Forming/en](SheetMetal_Forming/en.md) , [SheetMetal SketchOnSheet/en](SheetMetal_SketchOnSheet/en.md) , [SheetMetal UnattendedUnfold/en](SheetMetal_UnattendedUnfold/en.md) , [SheetMetal Unfold/en](SheetMetal_Unfold/en.md) , [SheetMetal Workbench/en](SheetMetal_Workbench/en.md) , [Ship Area/en](Ship_Area/en.md) , [Ship Hydrostatics/en](Ship_Hydrostatics/en.md) , [Ship Loading/en](Ship_Loading/en.md) , [Ship PlotGZ/en](Ship_PlotGZ/en.md) , [Ship TankCapacity/en](Ship_TankCapacity/en.md) , [Ship TankNew/en](Ship_TankNew/en.md) , [Ship Weight/en](Ship_Weight/en.md) , [Silk Workbench/en](Silk_Workbench/en.md) , [Sketcher ConstrainHorizontal/en](Sketcher_ConstrainHorizontal/en.md) , [Sketcher SelectElementsWithDoFs/en](Sketcher_SelectElementsWithDoFs/en.md) , [Std MacroAttachDebugger/en](Std_MacroAttachDebugger/en.md) , [TechDraw LinkDimension/en](TechDraw_LinkDimension/en.md) , [TechDraw TemplateGenerator/en](TechDraw_TemplateGenerator/en.md) , [Transient FEM analysis/en](Transient_FEM_analysis/en.md) , [Template:UnfinishedDocu/en](Template:UnfinishedDocu/en.md) [Category:Administration/en](Category:Administration/en.md) [Category:Categories/en](Category:Categories/en.md) + +--- +[documentation index](../README.md) > Category:UnfinishedDocu/en diff --git a/wiki/translations/en/Category:User_Documentation.md b/wiki/translations/en/Category:User_Documentation.md index 03f376d8e9..260465c508 100644 --- a/wiki/translations/en/Category:User_Documentation.md +++ b/wiki/translations/en/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [3Dconnexion input devices/en](3Dconnexion_input_devices/en.md) , [About FreeCAD/en](About_FreeCAD/en.md) , [Add FEM constraint tutorial/en](Add_FEM_constraint_tutorial/en.md) , [Add FEM equation tutorial/en](Add_FEM_equation_tutorial/en.md) , [Advanced TechDraw Tutorial/en](Advanced_TechDraw_Tutorial/en.md) , [Aeroplane/en](Aeroplane/en.md) , [Analysis of reinforced concrete with FEM/en](Analysis_of_reinforced_concrete_with_FEM/en.md) , [Animation Workbench/en](Animation_Workbench/en.md) , [Arch 3DS/en](Arch_3DS/en.md) , [Arch 3Views/en](Arch_3Views/en.md) , [Arch Add/en](Arch_Add/en.md) , [Arch Axis/en](Arch_Axis/en.md) , [Arch AxisSystem/en](Arch_AxisSystem/en.md) , [Arch Building/en](Arch_Building/en.md) , [Arch BuildingPart/en](Arch_BuildingPart/en.md) , [Arch Check/en](Arch_Check/en.md) , [Arch CloneComponent/en](Arch_CloneComponent/en.md) , [Arch CloseHoles/en](Arch_CloseHoles/en.md) , [Arch CompAxis/en](Arch_CompAxis/en.md) , [Arch Component/en](Arch_Component/en.md) , [Arch CompPanel/en](Arch_CompPanel/en.md) , [Arch CompPipe/en](Arch_CompPipe/en.md) , [Arch CompRebarStraight/en](Arch_CompRebarStraight/en.md) , [Arch CompSetMaterial/en](Arch_CompSetMaterial/en.md) , [Arch CurtainWall/en](Arch_CurtainWall/en.md) , [Arch CutLine/en](Arch_CutLine/en.md) , [Arch CutPlane/en](Arch_CutPlane/en.md) , [Arch Door/en](Arch_Door/en.md) , [Arch Equipment/en](Arch_Equipment/en.md) , [Arch Fence/en](Arch_Fence/en.md) , [Arch Floor/en](Arch_Floor/en.md) , [Arch Frame/en](Arch_Frame/en.md) , [Arch Grid/en](Arch_Grid/en.md) , [Arch IfcExplorer/en](Arch_IfcExplorer/en.md) , [Arch IfcSpreadsheet/en](Arch_IfcSpreadsheet/en.md) , [Arch MergeWalls/en](Arch_MergeWalls/en.md) , [Arch MeshToShape/en](Arch_MeshToShape/en.md) , [Arch MultiMaterial/en](Arch_MultiMaterial/en.md) , [Arch Nest/en](Arch_Nest/en.md) , [Arch Panel Cut/en](Arch_Panel_Cut/en.md) , [Arch Panel Sheet/en](Arch_Panel_Sheet/en.md) , [Arch panel tutorial/en](Arch_panel_tutorial/en.md) , [Arch Panel/en](Arch_Panel/en.md) , [Arch Pipe/en](Arch_Pipe/en.md) , [Arch PipeConnector/en](Arch_PipeConnector/en.md) , [Arch Profile/en](Arch_Profile/en.md) , [Arch Project/en](Arch_Project/en.md) , [Arch Rebar BeamReinforcement/en](Arch_Rebar_BeamReinforcement/en.md) , [Arch Rebar BentShape/en](Arch_Rebar_BentShape/en.md) , [Arch Rebar BOM/en](Arch_Rebar_BOM/en.md) , [Arch Rebar Circular ColumnReinforcement/en](Arch_Rebar_Circular_ColumnReinforcement/en.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/en](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/en.md) , [Arch Rebar ColumnReinforcement/en](Arch_Rebar_ColumnReinforcement/en.md) , [Arch Rebar Dimensioning/en](Arch_Rebar_Dimensioning/en.md) , [Arch Rebar Drawing Dimensioning/en](Arch_Rebar_Drawing_Dimensioning/en.md) , [Arch Rebar Drawing/en](Arch_Rebar_Drawing/en.md) , [Arch Rebar Helical/en](Arch_Rebar_Helical/en.md) , [Arch Rebar LShape/en](Arch_Rebar_LShape/en.md) , [Arch Rebar Slab Reinforcement/en](Arch_Rebar_Slab_Reinforcement/en.md) , [Arch Rebar Stirrup/en](Arch_Rebar_Stirrup/en.md) , [Arch Rebar Straight/en](Arch_Rebar_Straight/en.md) , [Arch Rebar UShape/en](Arch_Rebar_UShape/en.md) , [Arch Rebar/en](Arch_Rebar/en.md) , [Arch Reference/en](Arch_Reference/en.md) , [Arch Remove/en](Arch_Remove/en.md) , [Arch RemoveShape/en](Arch_RemoveShape/en.md) , [Arch Roof/en](Arch_Roof/en.md) , [Arch Schedule/en](Arch_Schedule/en.md) , [Arch SectionPlane/en](Arch_SectionPlane/en.md) , [Arch SelectNonSolidMeshes/en](Arch_SelectNonSolidMeshes/en.md) , [Arch SetMaterial/en](Arch_SetMaterial/en.md) , [Arch Site/en](Arch_Site/en.md) , [Arch Space/en](Arch_Space/en.md) , [Arch SplitMesh/en](Arch_SplitMesh/en.md) , [Arch Stairs/en](Arch_Stairs/en.md) , [Arch Structure/en](Arch_Structure/en.md) , [Arch Survey/en](Arch_Survey/en.md) , [Arch ToggleIfcBrepFlag/en](Arch_ToggleIfcBrepFlag/en.md) , [Arch ToggleSubs/en](Arch_ToggleSubs/en.md) , [Arch Truss/en](Arch_Truss/en.md) , [Arch tutorial/en](Arch_tutorial/en.md) , [Arch Wall/en](Arch_Wall/en.md) , [Arch Window/en](Arch_Window/en.md) , [Assembly2 Workbench/en](Assembly2_Workbench/en.md) , [Assembly3 ConstraintAlignment/en](Assembly3_ConstraintAlignment/en.md) , [Assembly3 ConstraintAngle/en](Assembly3_ConstraintAngle/en.md) , [Assembly3 ConstraintAttachment/en](Assembly3_ConstraintAttachment/en.md) , [Assembly3 ConstraintAxial/en](Assembly3_ConstraintAxial/en.md) , [Assembly3 ConstraintCoincidence/en](Assembly3_ConstraintCoincidence/en.md) , [Assembly3 ConstraintColinear/en](Assembly3_ConstraintColinear/en.md) , [Assembly3 ConstraintDiameter/en](Assembly3_ConstraintDiameter/en.md) , [Assembly3 ConstraintEqualAngle/en](Assembly3_ConstraintEqualAngle/en.md) , [Assembly3 ConstraintEqualLength/en](Assembly3_ConstraintEqualLength/en.md) , [Assembly3 ConstraintEqualLineArcLength/en](Assembly3_ConstraintEqualLineArcLength/en.md) , [Assembly3 ConstraintEqualPointLineDistance/en](Assembly3_ConstraintEqualPointLineDistance/en.md) , [Assembly3 ConstraintEqualRadius/en](Assembly3_ConstraintEqualRadius/en.md) , [Assembly3 ConstraintLengthDifference/en](Assembly3_ConstraintLengthDifference/en.md) , [Assembly3 ConstraintLengthEqualPointLineDistance/en](Assembly3_ConstraintLengthEqualPointLineDistance/en.md) , [Assembly3 ConstraintLengthRatio/en](Assembly3_ConstraintLengthRatio/en.md) , [Assembly3 ConstraintLineHorizontal/en](Assembly3_ConstraintLineHorizontal/en.md) , [Assembly3 ConstraintLineLength/en](Assembly3_ConstraintLineLength/en.md) , [Assembly3 ConstraintLineVertical/en](Assembly3_ConstraintLineVertical/en.md) , [Assembly3 ConstraintLock/en](Assembly3_ConstraintLock/en.md) , [Assembly3 ConstraintMidPoint/en](Assembly3_ConstraintMidPoint/en.md) , [Assembly3 ConstraintMore/en](Assembly3_ConstraintMore/en.md) , [Assembly3 ConstraintMultiParallel/en](Assembly3_ConstraintMultiParallel/en.md) , [Assembly3 ConstraintPerpendicular/en](Assembly3_ConstraintPerpendicular/en.md) , [Assembly3 ConstraintPointDistance/en](Assembly3_ConstraintPointDistance/en.md) , [Assembly3 ConstraintPointInPlane/en](Assembly3_ConstraintPointInPlane/en.md) , [Assembly3 ConstraintPointLineDistance/en](Assembly3_ConstraintPointLineDistance/en.md) , [Assembly3 ConstraintPointOnCircle/en](Assembly3_ConstraintPointOnCircle/en.md) , [Assembly3 ConstraintPointOnLine/en](Assembly3_ConstraintPointOnLine/en.md) , [Assembly3 ConstraintPointPlaneDistance/en](Assembly3_ConstraintPointPlaneDistance/en.md) , [Assembly3 ConstraintPointsCoincident/en](Assembly3_ConstraintPointsCoincident/en.md) , [Assembly3 ConstraintPointsDistance/en](Assembly3_ConstraintPointsDistance/en.md) , [Assembly3 ConstraintPointsHorizontal/en](Assembly3_ConstraintPointsHorizontal/en.md) , [Assembly3 ConstraintPointsProjectDistance/en](Assembly3_ConstraintPointsProjectDistance/en.md) , [Assembly3 ConstraintPointsSymmetric/en](Assembly3_ConstraintPointsSymmetric/en.md) , [Assembly3 ConstraintPointsVertical/en](Assembly3_ConstraintPointsVertical/en.md) , [Assembly3 ConstraintSameOrientation/en](Assembly3_ConstraintSameOrientation/en.md) , [Assembly3 ConstraintSketchPlane/en](Assembly3_ConstraintSketchPlane/en.md) , [Assembly3 ConstraintSymmetric/en](Assembly3_ConstraintSymmetric/en.md) , [Assembly3 ConstraintSymmetricHorizontal/en](Assembly3_ConstraintSymmetricHorizontal/en.md) , [Assembly3 ConstraintSymmetricLine/en](Assembly3_ConstraintSymmetricLine/en.md) , [Assembly3 ConstraintSymmetricVertical/en](Assembly3_ConstraintSymmetricVertical/en.md) , [Assembly3 CreateAssembly/en](Assembly3_CreateAssembly/en.md) , [Assembly3 CreateElement/en](Assembly3_CreateElement/en.md) , [Assembly3 GoToRelation/en](Assembly3_GoToRelation/en.md) , [Assembly3 GroupObjects/en](Assembly3_GroupObjects/en.md) , [Assembly3 ImportFromSTEP/en](Assembly3_ImportFromSTEP/en.md) , [Assembly3 ImportMultiDocument/en](Assembly3_ImportMultiDocument/en.md) , [Assembly3 MeasureAngle/en](Assembly3_MeasureAngle/en.md) , [Assembly3 MeasurePointLine/en](Assembly3_MeasurePointLine/en.md) , [Assembly3 MeasurePointPlane/en](Assembly3_MeasurePointPlane/en.md) , [Assembly3 MeasurePoints/en](Assembly3_MeasurePoints/en.md) , [Basic Attachment Tutorial/en](Basic_Attachment_Tutorial/en.md) , [Basic modeling tutorial/en](Basic_modeling_tutorial/en.md) , [Basic Part Design Tutorial/en](Basic_Part_Design_Tutorial/en.md) , [Basic Sketcher Tutorial/en](Basic_Sketcher_Tutorial/en.md) , [Basic TechDraw Tutorial/en](Basic_TechDraw_Tutorial/en.md) , [BIM Box/en](BIM_Box/en.md) , [BIM Classification/en](BIM_Classification/en.md) , [BIM Clone/en](BIM_Clone/en.md) , [BIM Copy/en](BIM_Copy/en.md) , [BIM IfcElements/en](BIM_IfcElements/en.md) , [BIM IfcProperties/en](BIM_IfcProperties/en.md) , [BIM IfcQuantities/en](BIM_IfcQuantities/en.md) , [BIM Layers/en](BIM_Layers/en.md) , [BIM Library/en](BIM_Library/en.md) , [BIM Preflight/en](BIM_Preflight/en.md) , [BIM Project/en](BIM_Project/en.md) , [BIM Setup/en](BIM_Setup/en.md) , [BIM Views/en](BIM_Views/en.md) , [BIM Windows/en](BIM_Windows/en.md) , [Bitmap/en](Bitmap/en.md) , [CadQuery Workbench/en](CadQuery_Workbench/en.md) , [Cfd Workbench/en](Cfd_Workbench/en.md) , [Civil Engineering Workbench/en](Civil_Engineering_Workbench/en.md) , [Common Airfoil Data Import/en](Common_Airfoil_Data_Import/en.md) , [Creating a simple part with PartDesign/en](Creating_a_simple_part_with_PartDesign/en.md) , [CurvedShapes CurvedArray/en](CurvedShapes_CurvedArray/en.md) , [Curves CompressionSpring/en](Curves_CompressionSpring/en.md) , [Curves Discretize/en](Curves_Discretize/en.md) , [Curves EditableSpline/en](Curves_EditableSpline/en.md) , [Curves ExtendCurve/en](Curves_ExtendCurve/en.md) , [Curves GordonSurface/en](Curves_GordonSurface/en.md) , [Curves Interpolate/en](Curves_Interpolate/en.md) , [Curves IsoCurve/en](Curves_IsoCurve/en.md) , [Curves JoinCurve/en](Curves_JoinCurve/en.md) , [Curves Line/en](Curves_Line/en.md) , [Curves MultiLoft/en](Curves_MultiLoft/en.md) , [Curves ParametricComb/en](Curves_ParametricComb/en.md) , [Curves ParametricSolid/en](Curves_ParametricSolid/en.md) , [Curves PasteSVG/en](Curves_PasteSVG/en.md) , [Curves Pipeshell/en](Curves_Pipeshell/en.md) , [Curves PipeshellProfile/en](Curves_PipeshellProfile/en.md) , [Curves ProfileSupport/en](Curves_ProfileSupport/en.md) , [Curves ReflectLines/en](Curves_ReflectLines/en.md) , [Curves SegmentSurface/en](Curves_SegmentSurface/en.md) , [Curves SketchOnSurface/en](Curves_SketchOnSurface/en.md) , [Curves SplitCurve/en](Curves_SplitCurve/en.md) , [Curves ToConsole/en](Curves_ToConsole/en.md) , [Curves ZebraTool/en](Curves_ZebraTool/en.md) , [Custom Spacing/en](Custom_Spacing/en.md) , [Customize Toolbars/en](Customize_Toolbars/en.md) , [Developing FreeCAD with GitKraken/en](Developing_FreeCAD_with_GitKraken/en.md) , [Draft AddConstruction/en](Draft_AddConstruction/en.md) , [Draft AddToGroup/en](Draft_AddToGroup/en.md) , [Draft AnnotationStyleEditor/en](Draft_AnnotationStyleEditor/en.md) , [Draft ApplyStyle/en](Draft_ApplyStyle/en.md) , [Draft Arc 3Points/en](Draft_Arc_3Points/en.md) , [Draft Arc/en](Draft_Arc/en.md) , [Draft Array/en](Draft_Array/en.md) , [Draft AutoGroup/en](Draft_AutoGroup/en.md) , [Draft BezCurve/en](Draft_BezCurve/en.md) , [Draft BSpline/en](Draft_BSpline/en.md) , [Draft Circle/en](Draft_Circle/en.md) , [Draft CircularArray/en](Draft_CircularArray/en.md) , [Draft Clone/en](Draft_Clone/en.md) , [Draft CubicBezCurve/en](Draft_CubicBezCurve/en.md) , [Draft Dimension/en](Draft_Dimension/en.md) , [Draft Downgrade/en](Draft_Downgrade/en.md) , [Draft Draft2Sketch/en](Draft_Draft2Sketch/en.md) , [Draft Drawing/en](Draft_Drawing/en.md) , [Draft Edit/en](Draft_Edit/en.md) , [Draft Ellipse/en](Draft_Ellipse/en.md) , [Draft Facebinder/en](Draft_Facebinder/en.md) , [Draft Fillet/en](Draft_Fillet/en.md) , [Draft FlipDimension/en](Draft_FlipDimension/en.md) , [Draft Heal/en](Draft_Heal/en.md) , [Draft Join/en](Draft_Join/en.md) , [Draft Label/en](Draft_Label/en.md) , [Draft Layer/en](Draft_Layer/en.md) , [Draft Line/en](Draft_Line/en.md) , [Draft Mirror/en](Draft_Mirror/en.md) , [Draft Move/en](Draft_Move/en.md) , [Draft Offset/en](Draft_Offset/en.md) , [Draft OrthoArray/en](Draft_OrthoArray/en.md) , [Draft PathArray/en](Draft_PathArray/en.md) , [Draft PathLinkArray/en](Draft_PathLinkArray/en.md) , [Draft Point/en](Draft_Point/en.md) , [Draft PointArray/en](Draft_PointArray/en.md) , [Draft PointLinkArray/en](Draft_PointLinkArray/en.md) , [Draft PolarArray/en](Draft_PolarArray/en.md) , [Draft Polygon/en](Draft_Polygon/en.md) , [Draft Rectangle/en](Draft_Rectangle/en.md) , [Draft Rotate/en](Draft_Rotate/en.md) , [Draft Scale/en](Draft_Scale/en.md) , [Draft SelectGroup/en](Draft_SelectGroup/en.md) , [Draft SelectPlane/en](Draft_SelectPlane/en.md) , [Draft SetStyle/en](Draft_SetStyle/en.md) , [Draft Shape2DView/en](Draft_Shape2DView/en.md) , [Draft ShapeString tutorial/en](Draft_ShapeString_tutorial/en.md) , [Draft ShapeString/en](Draft_ShapeString/en.md) , [Draft ShowSnapBar/en](Draft_ShowSnapBar/en.md) , [Draft Slope/en](Draft_Slope/en.md) , [Draft Snap Angle/en](Draft_Snap_Angle/en.md) , [Draft Snap Center/en](Draft_Snap_Center/en.md) , [Draft Snap Dimensions/en](Draft_Snap_Dimensions/en.md) , [Draft Snap Endpoint/en](Draft_Snap_Endpoint/en.md) , [Draft Snap Extension/en](Draft_Snap_Extension/en.md) , [Draft Snap Grid/en](Draft_Snap_Grid/en.md) , [Draft Snap Intersection/en](Draft_Snap_Intersection/en.md) , [Draft Snap Lock/en](Draft_Snap_Lock/en.md) , [Draft Snap Midpoint/en](Draft_Snap_Midpoint/en.md) , [Draft Snap Near/en](Draft_Snap_Near/en.md) , [Draft Snap Ortho/en](Draft_Snap_Ortho/en.md) , [Draft Snap Parallel/en](Draft_Snap_Parallel/en.md) , [Draft Snap Perpendicular/en](Draft_Snap_Perpendicular/en.md) , [Draft Snap Special/en](Draft_Snap_Special/en.md) , [Draft Snap WorkingPlane/en](Draft_Snap_WorkingPlane/en.md) , [Draft Split/en](Draft_Split/en.md) , [Draft Stretch/en](Draft_Stretch/en.md) , [Draft SubelementHighlight/en](Draft_SubelementHighlight/en.md) , [Draft Text/en](Draft_Text/en.md) , [Draft ToggleConstructionMode/en](Draft_ToggleConstructionMode/en.md) , [Draft ToggleContinueMode/en](Draft_ToggleContinueMode/en.md) , [Draft ToggleDisplayMode/en](Draft_ToggleDisplayMode/en.md) , [Draft ToggleGrid/en](Draft_ToggleGrid/en.md) , [Draft Trimex/en](Draft_Trimex/en.md) , [Draft tutorial/en](Draft_tutorial/en.md) , [Draft Upgrade/en](Draft_Upgrade/en.md) , [Draft Wire/en](Draft_Wire/en.md) , [Draft WireToBSpline/en](Draft_WireToBSpline/en.md) , [Draft WorkingPlaneProxy/en](Draft_WorkingPlaneProxy/en.md) , [Drawing Annotation/en](Drawing_Annotation/en.md) , [Drawing Clip/en](Drawing_Clip/en.md) , [Drawing Dimensioning Addon/en](Drawing_Dimensioning_Addon/en.md) , [Drawing Landscape A3/en](Drawing_Landscape_A3/en.md) , [Drawing Open SVG/en](Drawing_Open_SVG/en.md) , [Drawing Openbrowser/en](Drawing_Openbrowser/en.md) , [Drawing Orthoviews/en](Drawing_Orthoviews/en.md) , [Drawing ProjectShape/en](Drawing_ProjectShape/en.md) , [Drawing Save/en](Drawing_Save/en.md) , [Drawing SpreadsheetView/en](Drawing_SpreadsheetView/en.md) , [Drawing Symbol/en](Drawing_Symbol/en.md) , [Drawing Template HowTo/en](Drawing_Template_HowTo/en.md) , [Drawing tutorial/en](Drawing_tutorial/en.md) , [Drawing View/en](Drawing_View/en.md) , [Dxf Importer Install/en](Dxf_Importer_Install/en.md) , [DXF/en](DXF/en.md) , [EM FHEquiv/en](EM_FHEquiv/en.md) , [EM FHInputFile/en](EM_FHInputFile/en.md) , [EM FHNode/en](EM_FHNode/en.md) , [EM FHPath/en](EM_FHPath/en.md) , [EM FHPlane/en](EM_FHPlane/en.md) , [EM FHPlaneAddRemoveNodeHole/en](EM_FHPlaneAddRemoveNodeHole/en.md) , [EM FHPlaneHole/en](EM_FHPlaneHole/en.md) , [EM FHPort/en](EM_FHPort/en.md) , [EM FHSegment/en](EM_FHSegment/en.md) , [EM FHSolver/en](EM_FHSolver/en.md) , [Engine Block Tutorial/en](Engine_Block_Tutorial/en.md) , [ExplodedAssembly Workbench/en](ExplodedAssembly_Workbench/en.md) , [Export to STL or OBJ/en](Export_to_STL_or_OBJ/en.md) , [Extend FEM Module/en](Extend_FEM_Module/en.md) , [Fasteners BOM/en](Fasteners_BOM/en.md) , [FCGear BevelGear/en](FCGear_BevelGear/en.md) , [FCGear CrownGear/en](FCGear_CrownGear/en.md) , [FCGear CycloideGear/en](FCGear_CycloideGear/en.md) , [FCGear InvoluteGear/en](FCGear_InvoluteGear/en.md) , [FCGear InvoluteRack/en](FCGear_InvoluteRack/en.md) , [FCGear LanternGear/en](FCGear_LanternGear/en.md) , [FCGear TimingGear/en](FCGear_TimingGear/en.md) , [FCGear WormGear/en](FCGear_WormGear/en.md) , [Feature list/en](Feature_list/en.md) , [FEM Analysis/en](FEM_Analysis/en.md) , [FEM Beginner tutorial/en](FEM_Beginner_tutorial/en.md) , [FEM CalculiX Cantilever 3D/en](FEM_CalculiX_Cantilever_3D/en.md) , [FEM ClippingPlaneAdd/en](FEM_ClippingPlaneAdd/en.md) , [FEM ClippingPlaneRemoveAll/en](FEM_ClippingPlaneRemoveAll/en.md) , [FEM ConstantVacuumPermittivity/en](FEM_ConstantVacuumPermittivity/en.md) , [FEM ConstraintBearing/en](FEM_ConstraintBearing/en.md) , [FEM ConstraintBodyHeatSource/en](FEM_ConstraintBodyHeatSource/en.md) , [FEM ConstraintContact/en](FEM_ConstraintContact/en.md) , [FEM ConstraintDisplacement/en](FEM_ConstraintDisplacement/en.md) , [FEM ConstraintElectrostaticPotential/en](FEM_ConstraintElectrostaticPotential/en.md) , [FEM ConstraintFixed/en](FEM_ConstraintFixed/en.md) , [FEM ConstraintFlowVelocity/en](FEM_ConstraintFlowVelocity/en.md) , [FEM ConstraintFluidBoundary/en](FEM_ConstraintFluidBoundary/en.md) , [FEM ConstraintForce/en](FEM_ConstraintForce/en.md) , [FEM ConstraintGear/en](FEM_ConstraintGear/en.md) , [FEM ConstraintHeatflux/en](FEM_ConstraintHeatflux/en.md) , [FEM ConstraintInitialFlowVelocity/en](FEM_ConstraintInitialFlowVelocity/en.md) , [FEM ConstraintInitialTemperature/en](FEM_ConstraintInitialTemperature/en.md) , [FEM ConstraintPlaneRotation/en](FEM_ConstraintPlaneRotation/en.md) , [FEM ConstraintPressure/en](FEM_ConstraintPressure/en.md) , [FEM ConstraintPulley/en](FEM_ConstraintPulley/en.md) , [FEM ConstraintSectionPrint/en](FEM_ConstraintSectionPrint/en.md) , [FEM ConstraintSelfWeight/en](FEM_ConstraintSelfWeight/en.md) , [FEM ConstraintTemperature/en](FEM_ConstraintTemperature/en.md) , [FEM ConstraintTie/en](FEM_ConstraintTie/en.md) , [FEM ConstraintTransform/en](FEM_ConstraintTransform/en.md) , [FEM CreateNodesSet/en](FEM_CreateNodesSet/en.md) , [FEM ElementFluid1D/en](FEM_ElementFluid1D/en.md) , [FEM ElementGeometry1D/en](FEM_ElementGeometry1D/en.md) , [FEM ElementGeometry2D/en](FEM_ElementGeometry2D/en.md) , [FEM ElementRotation1D/en](FEM_ElementRotation1D/en.md) , [FEM EquationElasticity/en](FEM_EquationElasticity/en.md) , [FEM EquationElectricforce/en](FEM_EquationElectricforce/en.md) , [FEM EquationElectrostatic/en](FEM_EquationElectrostatic/en.md) , [FEM EquationFlow/en](FEM_EquationFlow/en.md) , [FEM EquationFlux/en](FEM_EquationFlux/en.md) , [FEM EquationHeat/en](FEM_EquationHeat/en.md) , [FEM Example Capacitance Two Balls/en](FEM_Example_Capacitance_Two_Balls/en.md) , [FEM Examples/en](FEM_Examples/en.md) , [FEM FemMesh2Mesh/en](FEM_FemMesh2Mesh/en.md) , [FEM FrontISTR Workbench/en](FEM_FrontISTR_Workbench/en.md) , [FEM MaterialFluid/en](FEM_MaterialFluid/en.md) , [FEM MaterialMechanicalNonlinear/en](FEM_MaterialMechanicalNonlinear/en.md) , [FEM MaterialReinforced/en](FEM_MaterialReinforced/en.md) , [FEM MaterialSolid/en](FEM_MaterialSolid/en.md) , [FEM MeshBoundaryLayer/en](FEM_MeshBoundaryLayer/en.md) , [FEM MeshClear/en](FEM_MeshClear/en.md) , [FEM MeshDisplayInfo/en](FEM_MeshDisplayInfo/en.md) , [FEM MeshGmshFromShape/en](FEM_MeshGmshFromShape/en.md) , [FEM MeshGroup/en](FEM_MeshGroup/en.md) , [FEM MeshNetgenFromShape/en](FEM_MeshNetgenFromShape/en.md) , [FEM MeshRegion/en](FEM_MeshRegion/en.md) , [FEM PostApplyChanges/en](FEM_PostApplyChanges/en.md) , [FEM PostCreateFunctions/en](FEM_PostCreateFunctions/en.md) , [FEM PostFilterClipRegion/en](FEM_PostFilterClipRegion/en.md) , [FEM PostFilterClipScalar/en](FEM_PostFilterClipScalar/en.md) , [FEM PostFilterCutFunction/en](FEM_PostFilterCutFunction/en.md) , [FEM PostFilterDataAlongLine/en](FEM_PostFilterDataAlongLine/en.md) , [FEM PostFilterDataAtPoint/en](FEM_PostFilterDataAtPoint/en.md) , [FEM PostFilterLinearizedStresses/en](FEM_PostFilterLinearizedStresses/en.md) , [FEM PostFilterWarp/en](FEM_PostFilterWarp/en.md) , [FEM PostPipelineFromResult/en](FEM_PostPipelineFromResult/en.md) , [FEM ResultShow/en](FEM_ResultShow/en.md) , [FEM ResultsPurge/en](FEM_ResultsPurge/en.md) , [FEM Shear of a Composite Block/en](FEM_Shear_of_a_Composite_Block/en.md) , [FEM SolverCalculiX/en](FEM_SolverCalculiX/en.md) , [FEM SolverCalculixCxxtools/en](FEM_SolverCalculixCxxtools/en.md) , [FEM SolverControl/en](FEM_SolverControl/en.md) , [FEM SolverElmer/en](FEM_SolverElmer/en.md) , [FEM SolverRun/en](FEM_SolverRun/en.md) , [FEM SolverZ88/en](FEM_SolverZ88/en.md) , [FEM Tutorial Python/en](FEM_Tutorial_Python/en.md) , [FEM tutorial/en](FEM_tutorial/en.md) , [FreeCAD and DXF Import/en](FreeCAD_and_DXF_Import/en.md) , [FreeCAD and Mesh Import/en](FreeCAD_and_Mesh_Import/en.md) , [FreeCAD-Ship s60 tutorial (II)/en](FreeCAD-Ship_s60_tutorial_(II)/en.md) , [FreeCAD-Ship s60 tutorial/en](FreeCAD-Ship_s60_tutorial/en.md) , [Getting started/en](Getting_started/en.md) , [GuiCommand model/en](GuiCommand_model/en.md) , [Template:GuiCommand/en](Template:GuiCommand/en.md) , [How to install additional workbenches/en](How_to_install_additional_workbenches/en.md) , [How to install macros/en](How_to_install_macros/en.md) , [Image CreateImagePlane/en](Image_CreateImagePlane/en.md) , [Image Open/en](Image_Open/en.md) , [Image Scaling/en](Image_Scaling/en.md) , [Import from STL or OBJ/en](Import_from_STL_or_OBJ/en.md) , [Import OpenSCAD code/en](Import_OpenSCAD_code/en.md) , [Import text and geometry from Inkscape/en](Import_text_and_geometry_from_Inkscape/en.md) , [Import/Export IFC - compiling IfcOpenShell/en](Import/Export_IFC_-_compiling_IfcOpenShell/en.md) , [Lattice2 AttachablePlacement/en](Lattice2_AttachablePlacement/en.md) , [Macro 3D Parametric Curve/en](Macro_3D_Parametric_Curve/en.md) , [Macro 3d Printer Slicer Individual Parts/en](Macro_3d_Printer_Slicer_Individual_Parts/en.md) , [Macro 3d Printer Slicer/en](Macro_3d_Printer_Slicer/en.md) , [Macro AeroFoil/en](Macro_AeroFoil/en.md) , [Macro Airfoil Import & Scale/en](Macro_Airfoil_Import_&_Scale/en.md) , [Macro Alias Manager/en](Macro_Alias_Manager/en.md) , [Macro Align Camera to Working Plane/en](Macro_Align_Camera_to_Working_Plane/en.md) , [Macro Align Face Object to View/en](Macro_Align_Face_Object_to_View/en.md) , [Macro Align Object to View/en](Macro_Align_Object_to_View/en.md) , [Macro Align View to Face/en](Macro_Align_View_to_Face/en.md) , [Macro Align Working Plane to Camera/en](Macro_Align_Working_Plane_to_Camera/en.md) , [Macro Animated Constrain/en](Macro_Animated_Constrain/en.md) , [Macro Apothem Based Prism GUI/en](Macro_Apothem_Based_Prism_GUI/en.md) , [Macro Arch Axis System Repartition/en](Macro_Arch_Axis_System_Repartition/en.md) , [Macro ArrayCopy/en](Macro_ArrayCopy/en.md) , [Macro Assemblage Imprimante 3D/en](Macro_Assemblage_Imprimante_3D/en.md) , [Macro Assembly/en](Macro_Assembly/en.md) , [Macro Automatic drawing/en](Macro_Automatic_drawing/en.md) , [Macro BOLTS/en](Macro_BOLTS/en.md) , [Macro BoundingBox Tracing/en](Macro_BoundingBox_Tracing/en.md) , [Macro Build Utility/en](Macro_Build_Utility/en.md) , [Macro Cabinets32/en](Macro_Cabinets32/en.md) , [Macro CartoucheFC 2/en](Macro_CartoucheFC_2/en.md) , [Macro CartoucheFC Full/en](Macro_CartoucheFC_Full/en.md) , [Macro CartoucheFC/en](Macro_CartoucheFC/en.md) , [Macro Center Align Objects with Faces or Edges/en](Macro_Center_Align_Objects_with_Faces_or_Edges/en.md) , [Macro CenterFace/en](Macro_CenterFace/en.md) , [Macro CenterOfMass/en](Macro_CenterOfMass/en.md) , [Macro Circle/en](Macro_Circle/en.md) , [Macro CirclePlus/en](Macro_CirclePlus/en.md) , [Macro CloneConvert/en](Macro_CloneConvert/en.md) , [Macro Compound Plus/en](Macro_Compound_Plus/en.md) , [Macro Connect And Sweep/en](Macro_Connect_And_Sweep/en.md) , [Macro Constraint Draft/en](Macro_Constraint_Draft/en.md) , [Macro Copy3DViewToClipboard/en](Macro_Copy3DViewToClipboard/en.md) , [Macro Corner shapes wizard/en](Macro_Corner_shapes_wizard/en.md) , [Macro Corner shapes wizard/update/en](Macro_Corner_shapes_wizard/update/en.md) , [Macro crank simul/en](Macro_crank_simul/en.md) , [Macro Creating faces from a DXF file/en](Macro_Creating_faces_from_a_DXF_file/en.md) , [Macro cross section/en](Macro_cross_section/en.md) , [Macro Cut Circle/en](Macro_Cut_Circle/en.md) , [Macro Cut Line/en](Macro_Cut_Line/en.md) , [Macro DeepCopy/en](Macro_DeepCopy/en.md) , [Macro Delta xyz/en](Macro_Delta_xyz/en.md) , [Macro documentation/en](Macro_documentation/en.md) , [Macro Draft Circle 3 Points 3D/en](Macro_Draft_Circle_3_Points_3D/en.md) , [Macro Draft Circle 3 Points/en](Macro_Draft_Circle_3_Points/en.md) , [Macro Draw 2D Function/en](Macro_Draw_2D_Function/en.md) , [Macro Draw Parametric 2D Function/en](Macro_Draw_Parametric_2D_Function/en.md) , [Macro Dump Objects/en](Macro_Dump_Objects/en.md) , [Macro Duplicate Selection/en](Macro_Duplicate_Selection/en.md) , [Macro DXF to Face and Sketch/en](Macro_DXF_to_Face_and_Sketch/en.md) , [Macro Easy cutouts for Enclosure Design/en](Macro_Easy_cutouts_for_Enclosure_Design/en.md) , [Macro EdgesToArc/en](Macro_EdgesToArc/en.md) , [Macro Ellipse-Center+2Points/en](Macro_Ellipse-Center+2Points/en.md) , [Macro ExpandTreeItem/en](Macro_ExpandTreeItem/en.md) , [Macro export transient FEM results/en](Macro_export_transient_FEM_results/en.md) , [Macro Extract Wires from Mesh/en](Macro_Extract_Wires_from_Mesh/en.md) , [Macro FaceToSketch/en](Macro_FaceToSketch/en.md) , [Macro FC Convert Lines/en](Macro_FC_Convert_Lines/en.md) , [Macro FC element selector/en](Macro_FC_element_selector/en.md) , [Macro FCCamera/en](Macro_FCCamera/en.md) , [Macro FCCamGroover/en](Macro_FCCamGroover/en.md) , [Macro FCCircularText/en](Macro_FCCircularText/en.md) , [Macro FCGear/en](Macro_FCGear/en.md) , [Macro FCHoneycombMaker/en](Macro_FCHoneycombMaker/en.md) , [Macro FCInfo Alternate Linux/en](Macro_FCInfo_Alternate_Linux/en.md) , [Macro FCInfo/en](Macro_FCInfo/en.md) , [Macro FCInfoGlass/en](Macro_FCInfoGlass/en.md) , [Macro FCInfoToMouse/en](Macro_FCInfoToMouse/en.md) , [Macro FCSpreadSheet Extract/en](Macro_FCSpreadSheet_Extract/en.md) , [Macro FCSpring Helix Variable/en](Macro_FCSpring_Helix_Variable/en.md) , [Macro FCSpring On Surface/en](Macro_FCSpring_On_Surface/en.md) , [Macro FCTreeView/en](Macro_FCTreeView/en.md) , [Macro FCWire To Volume/en](Macro_FCWire_To_Volume/en.md) , [Macro findConfigFiles/en](Macro_findConfigFiles/en.md) , [Macro FlattenWire/en](Macro_FlattenWire/en.md) , [Macro FlattenWire3Points/en](Macro_FlattenWire3Points/en.md) , [Macro Fonts Win10 PYMP/en](Macro_Fonts_Win10_PYMP/en.md) , [Macro ForceRecompute/en](Macro_ForceRecompute/en.md) , [Macro FreeCAD to Kerkythea/en](Macro_FreeCAD_to_Kerkythea/en.md) , [Macro Geneva Wheel GUI/en](Macro_Geneva_Wheel_GUI/en.md) , [Macro Geneva Wheel/en](Macro_Geneva_Wheel/en.md) , [Macro Geodesic Dome/en](Macro_Geodesic_Dome/en.md) , [Macro Global Variable Watcher/en](Macro_Global_Variable_Watcher/en.md) , [Macro GMSH/en](Macro_GMSH/en.md) , [Macro GuiResetToolbars/en](Macro_GuiResetToolbars/en.md) , [Macro Guitar fretboard/en](Macro_Guitar_fretboard/en.md) , [Macro Guitar Nut/en](Macro_Guitar_Nut/en.md) , [Macro Half turn stairs/en](Macro_Half_turn_stairs/en.md) , [Macro Half-Hull Model/en](Macro_Half-Hull_Model/en.md) , [Macro HealArcs/en](Macro_HealArcs/en.md) , [Macro HiddenAlls/en](Macro_HiddenAlls/en.md) , [Macro HighlightCommon/en](Macro_HighlightCommon/en.md) , [Macro HighlightDifference/en](Macro_HighlightDifference/en.md) , [Macro HilbertCurve/en](Macro_HilbertCurve/en.md) , [Macro hinge/en](Macro_hinge/en.md) , [Macro If Selected Stay If Not Then Delete/en](Macro_If_Selected_Stay_If_Not_Then_Delete/en.md) , [Macro Image Scaling/en](Macro_Image_Scaling/en.md) , [Macro ImperialScales/en](Macro_ImperialScales/en.md) , [Macro JointWire/en](Macro_JointWire/en.md) , [Macro Kerkythea/en](Macro_Kerkythea/en.md) , [Macro Line Length/en](Macro_Line_Length/en.md) , [Macro Loft/en](Macro_Loft/en.md) [Category:Documentation/en](Category:Documentation/en.md) + +--- +[documentation index](../README.md) > Category:User Documentation/en diff --git a/wiki/translations/en/Category:Wiki.md b/wiki/translations/en/Category:Wiki.md index a2e84e6a03..ff7f12b87d 100644 --- a/wiki/translations/en/Category:Wiki.md +++ b/wiki/translations/en/Category:Wiki.md @@ -4,3 +4,6 @@ [Glossary/en](Glossary/en.md) , [Localisation Sidebar/en](Localisation_Sidebar/en.md) , [Localisation/en](Localisation/en.md) , [WikiPages/en](WikiPages/en.md) [Category:Administration/en](Category:Administration/en.md) [Category:Categories/en](Category:Categories/en.md) [Category:Documentation/en](Category:Documentation/en.md) + +--- +[documentation index](../README.md) > Category:Wiki/en diff --git a/wiki/translations/en/Category:Workbenches.md b/wiki/translations/en/Category:Workbenches.md index 243df64440..50514d760a 100644 --- a/wiki/translations/en/Category:Workbenches.md +++ b/wiki/translations/en/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/en](Arch_Workbench/en.md) , [Draft Workbench/en](Draft_Workbench/en.md) , [FEM Workbench/en](FEM_Workbench/en.md) , [Image Workbench/en](Image_Workbench/en.md) , [Inspection Workbench/en](Inspection_Workbench/en.md) , [Mesh Workbench/en](Mesh_Workbench/en.md) , [OpenSCAD Workbench/en](OpenSCAD_Workbench/en.md) , [Part Module/en](Part_Module/en.md) , [PartDesign Workbench/en](PartDesign_Workbench/en.md) , [Path Workbench/en](Path_Workbench/en.md) , [Points Workbench/en](Points_Workbench/en.md) , [Raytracing Workbench/en](Raytracing_Workbench/en.md) , [Reverse Engineering Workbench/en](Reverse_Engineering_Workbench/en.md) , [Robot Workbench/en](Robot_Workbench/en.md) , [Sketcher Workbench/en](Sketcher_Workbench/en.md) , [Spreadsheet Workbench/en](Spreadsheet_Workbench/en.md) , [Start Workbench/en](Start_Workbench/en.md) , [Std Base/en](Std_Base/en.md) , [Std Edit Menu/en](Std_Edit_Menu/en.md) , [Std File Menu/en](Std_File_Menu/en.md) , [Std Help Menu/en](Std_Help_Menu/en.md) , [Std Macro Menu/en](Std_Macro_Menu/en.md) , [Std Tools Menu/en](Std_Tools_Menu/en.md) , [Std View Menu/en](Std_View_Menu/en.md) , [Std Windows Menu/en](Std_Windows_Menu/en.md) , [Surface Workbench/en](Surface_Workbench/en.md) , [TechDraw Workbench/en](TechDraw_Workbench/en.md) , [Testing/en](Testing/en.md) , [Web Workbench/en](Web_Workbench/en.md) , [Workbenches/en](Workbenches/en.md) , , , , , , , , , , , , , [Category:User Documentation/en](Category:User_Documentation/en.md) [Category:Arch/en](Category:Arch/en.md) [Category:Draft/en](Category:Draft/en.md) [Category:External Workbenches/en](Category:External_Workbenches/en.md) [Category:FEM/en](Category:FEM/en.md) [Category:Inspection/en](Category:Inspection/en.md) [Category:Mesh/en](Category:Mesh/en.md) [Category:Obsolete Workbenches/en](Category:Obsolete_Workbenches/en.md) [Category:OpenSCAD/en](Category:OpenSCAD/en.md) [Category:Part/en](Category:Part/en.md) [Category:PartDesign/en](Category:PartDesign/en.md) [Category:Path/en](Category:Path/en.md) [Category:Plot/en](Category:Plot/en.md) [Category:Points/en](Category:Points/en.md) + +--- +[documentation index](../README.md) > Category:Workbenches/en diff --git a/wiki/translations/en/Cfd_Workbench.md b/wiki/translations/en/Cfd_Workbench.md index 68f55055a0..75e6d35efb 100644 --- a/wiki/translations/en/Cfd_Workbench.md +++ b/wiki/translations/en/Cfd_Workbench.md @@ -1,6 +1,4 @@ # Cfd Workbench/en - - ## Introduction @@ -61,3 +59,6 @@ To use CFD for FreeCAD [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Cfd Workbench/en diff --git a/wiki/translations/en/Changelog.md b/wiki/translations/en/Changelog.md index c0abb65bef..cf233f3426 100644 --- a/wiki/translations/en/Changelog.md +++ b/wiki/translations/en/Changelog.md @@ -1,5 +1,5 @@ # Changelog/en - The FreeCAD changelog is maintained on our mantis tracker: +The FreeCAD changelog is maintained on our mantis tracker: @@ -7,3 +7,6 @@ [Category:Administration](Category:Administration.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Changelog/en diff --git a/wiki/translations/en/Civil_Engineering_Workbench.md b/wiki/translations/en/Civil_Engineering_Workbench.md index 4b48612089..d51811f961 100644 --- a/wiki/translations/en/Civil_Engineering_Workbench.md +++ b/wiki/translations/en/Civil_Engineering_Workbench.md @@ -1,6 +1,4 @@ # Civil Engineering Workbench/en - - ## Description Civil Engineering is a broad category of engineering and covers several subjects, primarily environmental (wastewater), geotechnical, transportation, and structural. At present, the primary focus of the civil engineering effort in FreeCAD is focused on transportation engineering, or more specifically 3D Highway design. @@ -33,3 +31,6 @@ The Rebar tools are currently part of the [Arch Workbench](Arch_Workbench.md) [Category:Documentation](Category:Documentation.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Civil Engineering Workbench/en diff --git a/wiki/translations/en/Code_snippets.md b/wiki/translations/en/Code_snippets.md index e863d97175..2fa21c1afb 100644 --- a/wiki/translations/en/Code_snippets.md +++ b/wiki/translations/en/Code_snippets.md @@ -1,7 +1,4 @@ # Code snippets/en - - - {{TOCright}} ## Introduction @@ -1773,3 +1770,6 @@ See [Coin3d snippets](Coin3d_snippets.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Code snippets/en diff --git a/wiki/translations/en/Coin3d_snippets.md b/wiki/translations/en/Coin3d_snippets.md index ce009f2557..0bc34a1ed3 100644 --- a/wiki/translations/en/Coin3d_snippets.md +++ b/wiki/translations/en/Coin3d_snippets.md @@ -1,7 +1,4 @@ # Coin3d snippets/en - - - {{TOCright}} ## Description of this list @@ -103,3 +100,6 @@ No installation is required. Thanks go to the author of the program. }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Coin3d snippets/en diff --git a/wiki/translations/en/Combo_view.md b/wiki/translations/en/Combo_view.md index ec8b97f00e..0d4b260a1a 100644 --- a/wiki/translations/en/Combo_view.md +++ b/wiki/translations/en/Combo_view.md @@ -1,5 +1,5 @@ # Combo view/en - {{TOCright}} +{{TOCright}} ## Introduction @@ -54,4 +54,7 @@ Then activate the view using the menu, **View → Panels → Tree view** or ** {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Combo view/en diff --git a/wiki/translations/en/Command.md b/wiki/translations/en/Command.md index 098d759648..1cd9e2c751 100644 --- a/wiki/translations/en/Command.md +++ b/wiki/translations/en/Command.md @@ -1,6 +1,4 @@ # Command/en - - ## Introduction @@ -101,3 +99,6 @@ See [Line drawing function](Line_drawing_function.md). }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Command_Reference|:Category:Command Reference]] page. Commands can be launched by a toolbar button, a menu item, or from a ](Category:Command_Reference|:Category:Command Reference]] page. Commands can be launched by a toolbar button, a menu item, or from a .md) > Command/en diff --git a/wiki/translations/en/Common_Airfoil_Data_Import.md b/wiki/translations/en/Common_Airfoil_Data_Import.md index 758a969011..33d793824b 100644 --- a/wiki/translations/en/Common_Airfoil_Data_Import.md +++ b/wiki/translations/en/Common_Airfoil_Data_Import.md @@ -1,6 +1,4 @@ # Common Airfoil Data Import/en - - ## Importing Airfoil Data FreeCAD can import airfoil data such as that found on the [UIUC Airfoil Coordinates Database](http://m-selig.ae.illinois.edu/ads/coord_database.html) or files produced by airfoil creation and annalizing software like [XFLR5](http://www.xflr5.com/xflr5.htm) @@ -38,3 +36,6 @@ There is a macro available that will import the airfoil with a user defined chor [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Common Airfoil Data Import/en diff --git a/wiki/translations/en/CompileOnWindows_-_Reducing_Disk_Footprint.md b/wiki/translations/en/CompileOnWindows_-_Reducing_Disk_Footprint.md index e133e1a21d..cae7ebcb2b 100644 --- a/wiki/translations/en/CompileOnWindows_-_Reducing_Disk_Footprint.md +++ b/wiki/translations/en/CompileOnWindows_-_Reducing_Disk_Footprint.md @@ -1,5 +1,5 @@ # CompileOnWindows - Reducing Disk Footprint/en - Techniques to reduce disk space required for building FreeCAD on Windows This may be of use to those, who are limited on disk space (for example, because of an SSD), and for those, who want to avoid installing complete Visual Studio. +Techniques to reduce disk space required for building FreeCAD on Windows This may be of use to those, who are limited on disk space (for example, because of an SSD), and for those, who want to avoid installing complete Visual Studio. It is recommended that you know on practice, how to [Compile on Windows](Compile_on_Windows.md) with Qt Creator, before attempting this. @@ -159,3 +159,6 @@ You\'ll have to modify the path to libpack to match yours. Use absolute paths. T This batch must be run with administrator privileges (or, you can set to allow users use mklink in local security policy settings in Windows). The batch may fail, if there are spaces in paths (it may work, but it is untested). Tip: create a shortcut to links\_libpack.bat, set it up to run as admin (in shortcut properties), and drag the build folder onto the shortcut. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > CompileOnWindows - Reducing Disk Footprint/en diff --git a/wiki/translations/en/Compile_on_Cygwin.md b/wiki/translations/en/Compile_on_Cygwin.md index 18ec4cbe27..3ec2bc5725 100644 --- a/wiki/translations/en/Compile_on_Cygwin.md +++ b/wiki/translations/en/Compile_on_Cygwin.md @@ -1,5 +1,5 @@ # Compile on Cygwin/en - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** ## How to build and run FreeCAD under Cygwin @@ -74,3 +74,6 @@ Once you have built the sources successfully using \'make\' with \'make install\ [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Cygwin/en diff --git a/wiki/translations/en/Compile_on_Docker.md b/wiki/translations/en/Compile_on_Docker.md index e75f050c03..73e9c4b78b 100644 --- a/wiki/translations/en/Compile_on_Docker.md +++ b/wiki/translations/en/Compile_on_Docker.md @@ -1,10 +1,4 @@ # Compile on Docker/en - - - - - - {{TOCright}} ## Overview @@ -142,3 +136,6 @@ You can find the attached directories in the `/mnt` directory. [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Compile on Docker/en diff --git a/wiki/translations/en/Compile_on_Linux.md b/wiki/translations/en/Compile_on_Linux.md index 5c8b14f933..8f0e148bbe 100644 --- a/wiki/translations/en/Compile_on_Linux.md +++ b/wiki/translations/en/Compile_on_Linux.md @@ -1,10 +1,4 @@ # Compile on Linux/en - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -1216,3 +1210,6 @@ To update FreeCAD to latest build just repeat from step 3. Update AUR repo when [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Linux/en diff --git a/wiki/translations/en/Compile_on_MacOS.md b/wiki/translations/en/Compile_on_MacOS.md index 90c8730b3d..8dfb020d2a 100644 --- a/wiki/translations/en/Compile_on_MacOS.md +++ b/wiki/translations/en/Compile_on_MacOS.md @@ -1,10 +1,4 @@ # Compile on MacOS/en - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -194,3 +188,6 @@ FreeCAD can be built against the latest git master hosted on github, and launche [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS/en diff --git a/wiki/translations/en/Compile_on_MinGW.md b/wiki/translations/en/Compile_on_MinGW.md index c25fa915c6..b6944d97b9 100644 --- a/wiki/translations/en/Compile_on_MinGW.md +++ b/wiki/translations/en/Compile_on_MinGW.md @@ -1,5 +1,5 @@ # Compile on MinGW/en - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** {{TOCright}} +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** {{TOCright}} ## How to build and run FreeCAD under MSYS/MinGW @@ -256,3 +256,6 @@ Have fun! [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MinGW/en diff --git a/wiki/translations/en/Compile_on_Windows.md b/wiki/translations/en/Compile_on_Windows.md index 12e9c9e3c2..ac0e11641b 100644 --- a/wiki/translations/en/Compile_on_Windows.md +++ b/wiki/translations/en/Compile_on_Windows.md @@ -1,10 +1,4 @@ # Compile on Windows/en - - - - - - {{TOCright}} This page explains step by step **how to compile FreeCAD 0.19 or newer on Windows**. For other platforms see [Compiling](Compiling.md). @@ -465,3 +459,6 @@ See also [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows/en diff --git a/wiki/translations/en/Compile_on_Windows_with_VS2013.md b/wiki/translations/en/Compile_on_Windows_with_VS2013.md index 0d5bd873bc..0092a8ce87 100644 --- a/wiki/translations/en/Compile_on_Windows_with_VS2013.md +++ b/wiki/translations/en/Compile_on_Windows_with_VS2013.md @@ -1,5 +1,5 @@ # Compile on Windows with VS2013/en - {{Note|Important Note:|This page is a child of the [Complile of Windows](CompileOnWindows.md) page.}} The following procedure will work for compiling on Windows Vista/7/8, for XP an alternate VS tool set is required for VS 2012 and 2013, which has not been tested successfully with the current Libpacks. To target XP(both x32 and x64) it is recommended to use VS2008 and Libpack FreeCADLibs\_11.0\_x86\_VC9.7z +{{Note|Important Note:|This page is a child of the [Complile of Windows](CompileOnWindows.md) page.}} The following procedure will work for compiling on Windows Vista/7/8, for XP an alternate VS tool set is required for VS 2012 and 2013, which has not been tested successfully with the current Libpacks. To target XP(both x32 and x64) it is recommended to use VS2008 and Libpack FreeCADLibs\_11.0\_x86\_VC9.7z ## **Prerequisites** @@ -116,3 +116,6 @@ If you don\'t get any errors your done. Exit Visual Studio and start FreeCAD by [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows with VS2013/en diff --git a/wiki/translations/en/Compiling.md b/wiki/translations/en/Compiling.md index 6f90c06f57..2d4d7614a6 100644 --- a/wiki/translations/en/Compiling.md +++ b/wiki/translations/en/Compiling.md @@ -1,5 +1,5 @@ # Compiling/en - Each operating system has its own page for compiling FreeCAD in the [Online Help Documentation](Online_Help_Toc.md). +Each operating system has its own page for compiling FreeCAD in the [Online Help Documentation](Online_Help_Toc.md). ------------------------------------------------------ -------------------------------------------------- ------------------------------------------------- ------------------------------------------------------------- [Compile on Docker container](Compile_on_Docker.md) @@ -20,3 +20,6 @@ To learn to use revision control system and contribute code see [Source code man [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling/en diff --git a/wiki/translations/en/Compiling_(Speeding_up).md b/wiki/translations/en/Compiling_(Speeding_up).md index ade8b24c07..51c47e7adb 100644 --- a/wiki/translations/en/Compiling_(Speeding_up).md +++ b/wiki/translations/en/Compiling_(Speeding_up).md @@ -1,10 +1,4 @@ # Compiling (Speeding up)/en - - - - - - {{TOCright}} ## Overview @@ -64,3 +58,6 @@ The `distcc` program can be used to perform distributed compilation of C and C++ [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling (Speeding up)/en diff --git a/wiki/translations/en/Complete_Workbench.md b/wiki/translations/en/Complete_Workbench.md index 1b0889ff05..cb0176ab34 100644 --- a/wiki/translations/en/Complete_Workbench.md +++ b/wiki/translations/en/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/en - - - **The [[Complete Workbench]] is deprecated.** @@ -14,3 +11,6 @@ See [Interface Customization](Interface_Customization.md) if you\'d like to adap [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/en diff --git a/wiki/translations/en/Conda.md b/wiki/translations/en/Conda.md index fbeef597be..3d0de5fe52 100644 --- a/wiki/translations/en/Conda.md +++ b/wiki/translations/en/Conda.md @@ -1,6 +1,4 @@ # Conda/en - - ## Introduction @@ -95,3 +93,6 @@ conda create --name fcenv-dev --channel freecad/label/dev freecad - [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Conda/en diff --git a/wiki/translations/en/Console_API.md b/wiki/translations/en/Console_API.md index c08c268ac8..f26b560609 100644 --- a/wiki/translations/en/Console_API.md +++ b/wiki/translations/en/Console_API.md @@ -1,5 +1,5 @@ # Console API/en - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** This module is contained inside the FreeCAD module and contains methods to send text to FreeCAD\'s output console and status bar. The messages will have different color if they are message, warning or error. @@ -31,3 +31,6 @@ FreeCAD.Console.PrintMessage("Hello World!\n") [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Console API/en diff --git a/wiki/translations/en/Constraint.md b/wiki/translations/en/Constraint.md index a76d1b9076..27b8540979 100644 --- a/wiki/translations/en/Constraint.md +++ b/wiki/translations/en/Constraint.md @@ -1,6 +1,4 @@ # Constraint/en - - ## Introduction @@ -47,3 +45,6 @@ See the information in the [Glossary](Category:Glossary.md) > Constraint/en diff --git a/wiki/translations/en/Constructive_solid_geometry.md b/wiki/translations/en/Constructive_solid_geometry.md index 2e58ac4218..6492fbd314 100644 --- a/wiki/translations/en/Constructive_solid_geometry.md +++ b/wiki/translations/en/Constructive_solid_geometry.md @@ -1,5 +1,5 @@ # Constructive solid geometry/en - {{TOCright}} +{{TOCright}} ## Introduction @@ -37,3 +37,6 @@ The [tutorials](tutorials.md) page provides some examples on creating solids wit [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Constructive solid geometry/en diff --git a/wiki/translations/en/Continuous_Integration.md b/wiki/translations/en/Continuous_Integration.md index 7075f46dc0..ea1f0b01f2 100644 --- a/wiki/translations/en/Continuous_Integration.md +++ b/wiki/translations/en/Continuous_Integration.md @@ -1,10 +1,4 @@ # Continuous Integration/en - - - - - - {{TOCright}} ## Continuous Integration @@ -34,3 +28,6 @@ Currently the FreeCAD repository on GitHub will trigger a build on the below two [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Continuous Integration/en diff --git a/wiki/translations/en/Contributors.md b/wiki/translations/en/Contributors.md index 8902c16da0..6cf945fbbe 100644 --- a/wiki/translations/en/Contributors.md +++ b/wiki/translations/en/Contributors.md @@ -1,10 +1,4 @@ # Contributors/en - - - - - - {{TOCright}} @@ -253,3 +247,6 @@ Developers of FreeCAD addons (retrieved from [Developer](Category:Developer.md) > Contributors/en diff --git a/wiki/translations/en/Contributors_hub.md b/wiki/translations/en/Contributors_hub.md index d6a2fbc651..dbad7fdfa9 100644 --- a/wiki/translations/en/Contributors_hub.md +++ b/wiki/translations/en/Contributors_hub.md @@ -1,6 +1,4 @@ # Contributors hub/en - - ## Introduction If you want to contribute to FreeCAD and use your energy to push this project forward, there are many ways to help. Below, you can find different roles that you can join. @@ -23,4 +21,7 @@ Also, you can help other users in the [FreeCAD support page](https://forum.freec ## FreeCAD Developer -## Web Developer or Administrator +## Web Developer or Administrator + +--- +[documentation index](../README.md) > Contributors hub/en diff --git a/wiki/translations/en/Copying_Objects.md b/wiki/translations/en/Copying_Objects.md index d3dfc9bc88..448eb1d287 100644 --- a/wiki/translations/en/Copying_Objects.md +++ b/wiki/translations/en/Copying_Objects.md @@ -1,5 +1,5 @@ # Copying Objects/en - {{TOCright}} +{{TOCright}} ## Overview @@ -39,5 +39,5 @@ Like most things in FreeCAD, there are many ways of making a copy. For more idea - [Paste](Std_Paste.md) - [Duplicate Selection](Std_DuplicateSelection.md) - - +--- +[documentation index](../README.md) > Copying Objects/en diff --git a/wiki/translations/en/Create_a_FeaturePython_object_part_I.md b/wiki/translations/en/Create_a_FeaturePython_object_part_I.md index e95d715570..ca82357329 100644 --- a/wiki/translations/en/Create_a_FeaturePython_object_part_I.md +++ b/wiki/translations/en/Create_a_FeaturePython_object_part_I.md @@ -1,10 +1,4 @@ # Create a FeaturePython object part I/en - - - - - - {{TOCright}} ## Introduction @@ -389,3 +383,6 @@ class box(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Create a FeaturePython object part I/en diff --git a/wiki/translations/en/Create_a_FeaturePython_object_part_II.md b/wiki/translations/en/Create_a_FeaturePython_object_part_II.md index 6d4bd5a07f..a7ee6787bb 100644 --- a/wiki/translations/en/Create_a_FeaturePython_object_part_II.md +++ b/wiki/translations/en/Create_a_FeaturePython_object_part_II.md @@ -1,10 +1,4 @@ # Create a FeaturePython object part II/en - - - - - - {{TOCright}} ## Introduction @@ -402,3 +396,6 @@ class ViewProviderBox: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Create a FeaturePython object part II/en diff --git a/wiki/translations/en/Creating_a_FeaturePython_Box,_Part_II.md b/wiki/translations/en/Creating_a_FeaturePython_Box,_Part_II.md index a9a01fc180..1c5e58f6f9 100644 --- a/wiki/translations/en/Creating_a_FeaturePython_Box,_Part_II.md +++ b/wiki/translations/en/Creating_a_FeaturePython_Box,_Part_II.md @@ -1,2 +1,5 @@ # Creating a FeaturePython Box, Part II/en 1. REDIRECT [Create\_a\_FeaturePython\_object\_part\_II/en](Create_a_FeaturePython_object_part_II/en.md) + +--- +[documentation index](../README.md) > Creating a FeaturePython Box, Part II/en diff --git a/wiki/translations/en/Creating_a_simple_part_with_PartDesign.md b/wiki/translations/en/Creating_a_simple_part_with_PartDesign.md index 7eb546c465..4b35f7ecee 100644 --- a/wiki/translations/en/Creating_a_simple_part_with_PartDesign.md +++ b/wiki/translations/en/Creating_a_simple_part_with_PartDesign.md @@ -1,7 +1,4 @@ # Creating a simple part with PartDesign/en - - - {{TutorialInfo |Topic=Modeling |Level=Beginner @@ -267,4 +264,7 @@ You can also continue with this other tutorial of a slightly more complicated pa {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Creating a simple part with PartDesign/en diff --git a/wiki/translations/en/Crowdin_Administration.md b/wiki/translations/en/Crowdin_Administration.md index d266c6de63..d80b03f422 100644 --- a/wiki/translations/en/Crowdin_Administration.md +++ b/wiki/translations/en/Crowdin_Administration.md @@ -1,6 +1,4 @@ # Crowdin Administration/en - - ## Roles - Translator @@ -41,3 +39,6 @@ [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Crowdin Administration/en diff --git a/wiki/translations/en/Crowdin_Scripts.md b/wiki/translations/en/Crowdin_Scripts.md index 502cc490a4..7a597c37de 100644 --- a/wiki/translations/en/Crowdin_Scripts.md +++ b/wiki/translations/en/Crowdin_Scripts.md @@ -1,5 +1,5 @@ # Crowdin Scripts/en - {{TOCright}} +{{TOCright}} ## Managing Translations for FreeCAD @@ -91,3 +91,6 @@ The updatefromcrowdin.py script pulls changes from crowdin to your local FreeCAD [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Crowdin Scripts/en diff --git a/wiki/translations/en/CurvedShapes_CurvedArray.md b/wiki/translations/en/CurvedShapes_CurvedArray.md index 4eb2939664..f868dcf90b 100644 --- a/wiki/translations/en/CurvedShapes_CurvedArray.md +++ b/wiki/translations/en/CurvedShapes_CurvedArray.md @@ -7,6 +7,8 @@ SeeAlso: --- +# CurvedShapes CurvedArray/en + ## Description Creates an array and resizes the items in the bounds of one or more hull curves. In this example, the orange base shape is rescaled in the bounds of the red and violet hullcurves. The curves do not have to be connected. The hullcurves should lie on or parallel to the XY- XZ- or YZ- plane. @@ -56,3 +58,6 @@ Creates an array and resizes the items in the bounds of one or more hull curves. [Category:Name](Category:Name.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Name](Category:Name.md) > CurvedShapes CurvedArray/en diff --git a/wiki/translations/en/CurvedShapes_Workbench.md b/wiki/translations/en/CurvedShapes_Workbench.md index bc3f5de731..c5fe207891 100644 --- a/wiki/translations/en/CurvedShapes_Workbench.md +++ b/wiki/translations/en/CurvedShapes_Workbench.md @@ -1,5 +1,5 @@ # CurvedShapes Workbench/en - } CurvedShapes External Workbench Icon {{TOCright}} +} CurvedShapes External Workbench Icon {{TOCright}} ## Introduction @@ -43,3 +43,6 @@ Recommended installation is through the FreeCAD CurvedShapes Workbench/en diff --git a/wiki/translations/en/Curves_CompressionSpring.md b/wiki/translations/en/Curves_CompressionSpring.md index bfa3be2c91..f558b2f900 100644 --- a/wiki/translations/en/Curves_CompressionSpring.md +++ b/wiki/translations/en/Curves_CompressionSpring.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves CompressionSpring/en + ## Description The [Curves CompressionSpring](Curves_CompressionSpring.md) creates a compression spring. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [C {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves CompressionSpring/en diff --git a/wiki/translations/en/Curves_Discretize.md b/wiki/translations/en/Curves_Discretize.md index 870bb01cf4..85da94603b 100644 --- a/wiki/translations/en/Curves_Discretize.md +++ b/wiki/translations/en/Curves_Discretize.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves Discretize/en + ## Description The [Curves Discretize](Curves_Discretize.md) command allows to discretize an edge or a wire. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [Curves D {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves Discretize/en diff --git a/wiki/translations/en/Curves_EditableSpline.md b/wiki/translations/en/Curves_EditableSpline.md index f35f2cd366..002bc71761 100644 --- a/wiki/translations/en/Curves_EditableSpline.md +++ b/wiki/translations/en/Curves_EditableSpline.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves EditableSpline/en + ## Description The [Curves EditableSpline](Curves_EditableSpline.md) creates a freehand B-Spline curve. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [Curv {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves EditableSpline/en diff --git a/wiki/translations/en/Curves_ExtendCurve.md b/wiki/translations/en/Curves_ExtendCurve.md index 1e5cb3d78b..3ccc8c27ad 100644 --- a/wiki/translations/en/Curves_ExtendCurve.md +++ b/wiki/translations/en/Curves_ExtendCurve.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ExtendCurve/en + ## Description The [Curves ExtendCurve](Curves_ExtendCurve.md) extends the selected edge. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md).. @@ -30,4 +32,7 @@ The [Curves {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ExtendCurve/en diff --git a/wiki/translations/en/Curves_GordonSurface.md b/wiki/translations/en/Curves_GordonSurface.md index dcb55ef16f..501b8d7eec 100644 --- a/wiki/translations/en/Curves_GordonSurface.md +++ b/wiki/translations/en/Curves_GordonSurface.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves GordonSurface/en + ## Description The [Curves GordonSurface](Curves_GordonSurface.md) creates a surface that skins a network of curves. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -90,4 +92,7 @@ TODO {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves GordonSurface/en diff --git a/wiki/translations/en/Curves_Interpolate.md b/wiki/translations/en/Curves_Interpolate.md index a6eccadcaf..b6918b4bcd 100644 --- a/wiki/translations/en/Curves_Interpolate.md +++ b/wiki/translations/en/Curves_Interpolate.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves Interpolate/en + ## Description The [Curves Interpolate](Curves_Interpolate.md) interpolates points with a BSpline curve. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [Curves {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves Interpolate/en diff --git a/wiki/translations/en/Curves_IsoCurve.md b/wiki/translations/en/Curves_IsoCurve.md index ee64bcf8eb..10e9df0e0b 100644 --- a/wiki/translations/en/Curves_IsoCurve.md +++ b/wiki/translations/en/Curves_IsoCurve.md @@ -6,6 +6,8 @@ SeeAlso:[Curves JoinCurves](Curves_JoinCurve.md) --- +# Curves IsoCurve/en + ## Description The [Curves IsoCurve](Curves_IsoCurve.md) tool applies a UV oriented lattice on to a selected surface. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -39,4 +41,7 @@ The [Curves Iso {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves IsoCurve/en diff --git a/wiki/translations/en/Curves_JoinCurve.md b/wiki/translations/en/Curves_JoinCurve.md index 7ef6b91856..1699a48ea9 100644 --- a/wiki/translations/en/Curves_JoinCurve.md +++ b/wiki/translations/en/Curves_JoinCurve.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves JoinCurve/en + ## Description The [Curves JoinCurve](Curves_JoinCurve.md) joins the selected edges into BSpline curves. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -35,4 +37,7 @@ The [Curves Jo {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves JoinCurve/en diff --git a/wiki/translations/en/Curves_Line.md b/wiki/translations/en/Curves_Line.md index d6be654d8b..0bc2d33220 100644 --- a/wiki/translations/en/Curves_Line.md +++ b/wiki/translations/en/Curves_Line.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves Line/en + ## Description The [Curves Line](Curves_Line.md) creates a parametric line between two vertices. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [Curves Line](C {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves Line/en diff --git a/wiki/translations/en/Curves_MultiLoft.md b/wiki/translations/en/Curves_MultiLoft.md index 2822904561..75f8346896 100644 --- a/wiki/translations/en/Curves_MultiLoft.md +++ b/wiki/translations/en/Curves_MultiLoft.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves MultiLoft/en + ## Description The [Curves MultiLoft](Curves_MultiLoft.md) lofts profile objects made of multiple faces in parallel. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [Curves Mu {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves MultiLoft/en diff --git a/wiki/translations/en/Curves_ParametricComb.md b/wiki/translations/en/Curves_ParametricComb.md index 842808e00b..4dab2c8cec 100644 --- a/wiki/translations/en/Curves_ParametricComb.md +++ b/wiki/translations/en/Curves_ParametricComb.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ParametricComb/en + ## Description The [Curves ParametricComb](Curves_ParametricComb.md) can help to visualize the regularity or smoothness of a curve as well as the continuity between two curves. Note: A comb is only for visualization. @@ -42,3 +44,6 @@ A 3D comb will be created for 3D curves. Sample and scale can be changed. This t }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Curves ParametricComb/en diff --git a/wiki/translations/en/Curves_ParametricSolid.md b/wiki/translations/en/Curves_ParametricSolid.md index e50e0ce5dc..074cbd2dbc 100644 --- a/wiki/translations/en/Curves_ParametricSolid.md +++ b/wiki/translations/en/Curves_ParametricSolid.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ParametricSolid/en + ## Description The [Curves ParametricSolid](Curves_ParametricSolid.md) makes a parametric solid from selected faces. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -39,3 +41,6 @@ The [Cur }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Curves ParametricSolid/en diff --git a/wiki/translations/en/Curves_PasteSVG.md b/wiki/translations/en/Curves_PasteSVG.md index 485a3abbdb..3f6064ccad 100644 --- a/wiki/translations/en/Curves_PasteSVG.md +++ b/wiki/translations/en/Curves_PasteSVG.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves PasteSVG/en + ## Description The [Curves PasteSVG](Curves_PasteSVG.md) pastes the SVG content of the clipboard in to the [3D view](3D_view.md). This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [Curves Pas {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves PasteSVG/en diff --git a/wiki/translations/en/Curves_PipeShell.md b/wiki/translations/en/Curves_PipeShell.md index b4710d4974..a0a6ce35e0 100644 --- a/wiki/translations/en/Curves_PipeShell.md +++ b/wiki/translations/en/Curves_PipeShell.md @@ -1,2 +1,5 @@ # Curves PipeShell/en 1. REDIRECT [Curves\_Pipeshell/en](Curves_Pipeshell/en.md) + +--- +[documentation index](../README.md) > Curves PipeShell/en diff --git a/wiki/translations/en/Curves_Pipeshell.md b/wiki/translations/en/Curves_Pipeshell.md index 4c1f3191f7..43751d2d2f 100644 --- a/wiki/translations/en/Curves_Pipeshell.md +++ b/wiki/translations/en/Curves_Pipeshell.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves Pipeshell/en + ## Description The [Curves Pipeshell](Curves_Pipeshell.md) creates a Pipeshell sweep object. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -91,4 +93,7 @@ The [Curves Pi {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves Pipeshell/en diff --git a/wiki/translations/en/Curves_PipeshellProfile.md b/wiki/translations/en/Curves_PipeshellProfile.md index 20d8f5aab6..bcb9602099 100644 --- a/wiki/translations/en/Curves_PipeshellProfile.md +++ b/wiki/translations/en/Curves_PipeshellProfile.md @@ -6,6 +6,8 @@ SeeAlso:[Curves Pipeshell](Curves_Pipeshell.md) --- +# Curves PipeshellProfile/en + ## Description The [Curves PipeshellProfile](Curves_PipeshellProfile.md) creates a Profile object for Pipeshell. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -31,4 +33,7 @@ The [Cu {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves PipeshellProfile/en diff --git a/wiki/translations/en/Curves_ProfileSupport.md b/wiki/translations/en/Curves_ProfileSupport.md index 05b45fbcd2..4b499c49f5 100644 --- a/wiki/translations/en/Curves_ProfileSupport.md +++ b/wiki/translations/en/Curves_ProfileSupport.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ProfileSupport/en + ## Description The [Curves ProfileSupport](Curves_ProfileSupport.md) creates a support plane for sketches. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -32,4 +34,7 @@ The [Curv {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ProfileSupport/en diff --git a/wiki/translations/en/Curves_ReflectLines.md b/wiki/translations/en/Curves_ReflectLines.md index 5c2a8c8b20..c78d7156f5 100644 --- a/wiki/translations/en/Curves_ReflectLines.md +++ b/wiki/translations/en/Curves_ReflectLines.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ReflectLines/en + ## Description The [Curves ReflectLines](Curves_ReflectLines.md) creates the reflect lines on a shape, according to a view direction. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [Curves {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ReflectLines/en diff --git a/wiki/translations/en/Curves_SegmentSurface.md b/wiki/translations/en/Curves_SegmentSurface.md index 81dab42840..aa7f6a62e5 100644 --- a/wiki/translations/en/Curves_SegmentSurface.md +++ b/wiki/translations/en/Curves_SegmentSurface.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves SegmentSurface/en + ## Description The [Curves SegmentSurface](Curves_SegmentSurface.md) allows to segment a surface on isocurves. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [Curv {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves SegmentSurface/en diff --git a/wiki/translations/en/Curves_SketchOnSurface.md b/wiki/translations/en/Curves_SketchOnSurface.md index a29a9c3be6..dbab9edb3a 100644 --- a/wiki/translations/en/Curves_SketchOnSurface.md +++ b/wiki/translations/en/Curves_SketchOnSurface.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves SketchOnSurface/en + ## Description This tool maps a sketch onto a face, like a label on a bottle. The sketch must be actually attached to a face (see Sketch.Support). The `Map` mode of the sketch has no effect on the result. @@ -62,4 +64,7 @@ The blue construction lines of the sketch are part of the sketch even if they ar {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves SketchOnSurface/en diff --git a/wiki/translations/en/Curves_SplitCurve.md b/wiki/translations/en/Curves_SplitCurve.md index 3b997acf81..b609801f96 100644 --- a/wiki/translations/en/Curves_SplitCurve.md +++ b/wiki/translations/en/Curves_SplitCurve.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves SplitCurve/en + ## Description The [Curves SplitCurve](Curves_SplitCurve.md) splits the selected edge. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [Curves S {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves SplitCurve/en diff --git a/wiki/translations/en/Curves_ToConsole.md b/wiki/translations/en/Curves_ToConsole.md index 0d4697604a..0b64fbaa49 100644 --- a/wiki/translations/en/Curves_ToConsole.md +++ b/wiki/translations/en/Curves_ToConsole.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ToConsole/en + ## Description The [Curves ToConsole](Curves_ToConsole.md) moves objects to the console. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [Curves To {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ToConsole/en diff --git a/wiki/translations/en/Curves_Workbench.md b/wiki/translations/en/Curves_Workbench.md index 9c74c96ab0..355cde5abf 100644 --- a/wiki/translations/en/Curves_Workbench.md +++ b/wiki/translations/en/Curves_Workbench.md @@ -1,5 +1,5 @@ # Curves Workbench/en - } +} ## Introduction @@ -51,3 +51,6 @@ Download the Curves workbench via the Curves Workbench/en diff --git a/wiki/translations/en/Curves_ZebraTool.md b/wiki/translations/en/Curves_ZebraTool.md index 6d5700a3a5..497459c924 100644 --- a/wiki/translations/en/Curves_ZebraTool.md +++ b/wiki/translations/en/Curves_ZebraTool.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ZebraTool/en + ## Description The [Curves ZebraTool](Curves_ZebraTool.md) creates a Zebra texture for surface inspection. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -40,4 +42,7 @@ The [Curves Ze {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ZebraTool/en diff --git a/wiki/translations/en/Custom_Spacing.md b/wiki/translations/en/Custom_Spacing.md index 2317d91b43..550f77da49 100644 --- a/wiki/translations/en/Custom_Spacing.md +++ b/wiki/translations/en/Custom_Spacing.md @@ -1,6 +1,4 @@ # Custom Spacing/en - - ## Description The Custom Spacing tool allows a user to create rebar distribution in the structural element. You can define three segments for the distribution. For the first and third segments, you can give both a number of rebars and spacing between rebars. But for the second segment, you can only give either a number of rebars or spacing between rebars because one value automatically determines other. @@ -19,3 +17,6 @@ Output produced by Rebar Distribution dialog when user clicks on **OK** button: [Category:User Documentation](Category:User_Documentation.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Custom Spacing/en diff --git a/wiki/translations/en/Custom_icon_in_tree_view.md b/wiki/translations/en/Custom_icon_in_tree_view.md index 9c362c7ecf..db45f5ea0c 100644 --- a/wiki/translations/en/Custom_icon_in_tree_view.md +++ b/wiki/translations/en/Custom_icon_in_tree_view.md @@ -1,6 +1,4 @@ # Custom icon in tree view/en - - ## Introduction This is an example of modifying the icon of a custom [viewprovider](Viewprovider.md), which are normally added to [scripted objects](scripted_objects.md). @@ -276,3 +274,6 @@ makeBox() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Custom icon in tree view/en diff --git a/wiki/translations/en/Customize_Toolbars.md b/wiki/translations/en/Customize_Toolbars.md index 495a77f12a..611c5da854 100644 --- a/wiki/translations/en/Customize_Toolbars.md +++ b/wiki/translations/en/Customize_Toolbars.md @@ -1,5 +1,5 @@ # Customize Toolbars/en - {{TutorialInfo|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} +{{TutorialInfo|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} ## Synopsis @@ -116,3 +116,6 @@ See also [Interface Customization](Interface_Customization.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Customize Toolbars/en diff --git a/wiki/translations/en/DAG_view.md b/wiki/translations/en/DAG_view.md index f490295afd..a2d99c1b67 100644 --- a/wiki/translations/en/DAG_view.md +++ b/wiki/translations/en/DAG_view.md @@ -1,6 +1,4 @@ # DAG view/en - - ## Introduction @@ -62,4 +60,7 @@ In the [parameter editor](Std_DlgParameter.md) you can also change some properti {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > DAG view/en diff --git a/wiki/translations/en/DXF.md b/wiki/translations/en/DXF.md index b5121dbb58..ce8f3c85c8 100644 --- a/wiki/translations/en/DXF.md +++ b/wiki/translations/en/DXF.md @@ -1,5 +1,5 @@ # DXF/en - {{TOCright}} +{{TOCright}} ## Background history @@ -43,3 +43,6 @@ In addition to the options under the Edit → Preferences, the [TechDraw Workben [Category:User Documentation](Category:User_Documentation.md) [Category:Draft](Category:Draft.md) [Category:TechDraw](Category:TechDraw.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > DXF/en diff --git a/wiki/translations/en/Datum.md b/wiki/translations/en/Datum.md index d690c8d322..33ba949f20 100644 --- a/wiki/translations/en/Datum.md +++ b/wiki/translations/en/Datum.md @@ -1,6 +1,4 @@ # Datum/en - - ## Introduction In FreeCAD the word \"[Datum](Datum.md)\" is normally used to refer to auxiliary geometry in the [PartDesign Workbench](PartDesign_Workbench.md). These geometrical elements will not form part of the final [Shape](Shape.md) of the [Body](Body.md), but can be used as references and supports for [sketches](Sketch.md) and other types of [features](Feature.md). @@ -46,3 +44,6 @@ Since they appeared in v0.17, datum objects were intended to be used inside [Par }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Datum/en diff --git a/wiki/translations/en/Debian_Unstable.md b/wiki/translations/en/Debian_Unstable.md index fe6d3007f6..3d1158e8b6 100644 --- a/wiki/translations/en/Debian_Unstable.md +++ b/wiki/translations/en/Debian_Unstable.md @@ -1,6 +1,4 @@ # Debian Unstable/en - - [Debian Unstable](https://wiki.debian.org/DebianUnstable) is a rolling distribution used for [Debian development](Debian_development.md) and recommended for advanced users in FreeCAD development and packaging. New packages are ready as soon as they are uploaded and built, unless the uploader has marked them for [Debian Experimental](https://wiki.debian.org/DebianExperimental) which requires explicit installation (after some setup to enable the extra distribution) via . Frequently, people using Debian Testing should actually use Debian Unstable; Debian Testing should only be considered a \"QA release pocket\", since, while it may appear to be more stable than Unstable, there\'s actually a downside. New packages are uploaded to Debian Unstable and migrate to Testing after some time, and so security fixes and important packaging changes can be inappropriately delayed. @@ -27,3 +25,6 @@ deb [http://deb.debian.org/debian](http://deb.debian.org/debian) experimental [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian Unstable/en diff --git a/wiki/translations/en/Debian_development.md b/wiki/translations/en/Debian_development.md index 05908a56cf..56f05f8aec 100644 --- a/wiki/translations/en/Debian_development.md +++ b/wiki/translations/en/Debian_development.md @@ -1,6 +1,4 @@ # Debian development/en - - Debian is the parent distribution from which many other Linux distributions are derived, such as Ubuntu, Linux Mint, and others. As such, it\'s worthwhile to focus specifically on Debian development since improvements in Debian will filter down through its descendants. [Debian Unstable](Debian_Unstable.md) is a good target distribution for FreeCAD development on Linux since it provides the most up-to-date packages possible, as a rolling distribution. One can contribute both to FreeCAD development on Debian as well as its ecosystem of related packages and dependencies. @@ -9,3 +7,6 @@ Debian is the parent distribution from which many other Linux distributions are [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian development/en diff --git a/wiki/translations/en/Debugging.md b/wiki/translations/en/Debugging.md index 5b740c3748..f588cea904 100644 --- a/wiki/translations/en/Debugging.md +++ b/wiki/translations/en/Debugging.md @@ -1,10 +1,4 @@ # Debugging/en - - - - - - {{TOCright}} ## Test First @@ -336,3 +330,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/en diff --git a/wiki/translations/en/Defeaturing.md b/wiki/translations/en/Defeaturing.md index 2ee7b41a65..dd98394119 100644 --- a/wiki/translations/en/Defeaturing.md +++ b/wiki/translations/en/Defeaturing.md @@ -1,6 +1,4 @@ # Defeaturing/en - - ## Introduction 3D Model Defeaturing got added with Open CASCADE 7.3 [1](https://dev.opencascade.org/index.php?q=node/1211) and can be used for editing STEP models by removing of the features from the model. @@ -29,3 +27,6 @@ Part.show(box4) #show defeatured shape [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Defeaturing/en diff --git a/wiki/translations/en/Defeaturing_Workbench.md b/wiki/translations/en/Defeaturing_Workbench.md index 86b46dbe8f..eb5c92d006 100644 --- a/wiki/translations/en/Defeaturing_Workbench.md +++ b/wiki/translations/en/Defeaturing_Workbench.md @@ -1,5 +1,4 @@ -# Defeaturing Workbench/en - Defeaturing workbench icon +# Defeaturing workbench icon Defeaturing Workbench/en ## Introduction @@ -119,3 +118,6 @@ New workbenches are in development, stay tuned! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Defeaturing Workbench/en diff --git a/wiki/translations/en/Developer_hub.md b/wiki/translations/en/Developer_hub.md index 80ea022183..ceae0a9232 100644 --- a/wiki/translations/en/Developer_hub.md +++ b/wiki/translations/en/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/en - - ![150](images/Crystal_Clear_app_tutorials.png ) This is the place to come if you want to contribute to the development of the FreeCAD software. @@ -126,3 +124,6 @@ FreeCAD, though usable in certain areas, is at the beginning of a long way into [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/en diff --git a/wiki/translations/en/Developing_FreeCAD_with_KDevelop.md b/wiki/translations/en/Developing_FreeCAD_with_KDevelop.md index 0f6a1b23d5..91710741e7 100644 --- a/wiki/translations/en/Developing_FreeCAD_with_KDevelop.md +++ b/wiki/translations/en/Developing_FreeCAD_with_KDevelop.md @@ -1,5 +1,5 @@ # Developing FreeCAD with KDevelop/en - } +} ## Introduction @@ -19,3 +19,6 @@ The intention for this page is to help orient users who are inclined toward unde - [Developing FreeCAD with GitKraken](Developing_FreeCAD_with_GitKraken.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Developing FreeCAD with KDevelop/en diff --git a/wiki/translations/en/Development_roadmap.md b/wiki/translations/en/Development_roadmap.md index f85c942c76..1d7f941951 100644 --- a/wiki/translations/en/Development_roadmap.md +++ b/wiki/translations/en/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/en - **Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** +**Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** FreeCAD - though usable in many applications - is at the beginning of a long journey into CAD mainstream. There is still a lot to do to reach a state where we can compete with commercial software. @@ -44,3 +44,6 @@ Like in the most [FLOSS](http://en.wikipedia.org/wiki/FLOSS) projects a release [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/en diff --git a/wiki/translations/en/Dialog_creation.md b/wiki/translations/en/Dialog_creation.md index d73d06cf44..0a6193050b 100644 --- a/wiki/translations/en/Dialog_creation.md +++ b/wiki/translations/en/Dialog_creation.md @@ -1,7 +1,4 @@ # Dialog creation/en - - - {{TOCright}} ## Introduction @@ -263,3 +260,6 @@ class plane(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation/en diff --git a/wiki/translations/en/Dialog_creation_image_and_animated_GIF.md b/wiki/translations/en/Dialog_creation_image_and_animated_GIF.md index 7a0b4b9842..f377910638 100644 --- a/wiki/translations/en/Dialog_creation_image_and_animated_GIF.md +++ b/wiki/translations/en/Dialog_creation_image_and_animated_GIF.md @@ -1,6 +1,4 @@ # Dialog creation image and animated GIF/en - - ## Introduction This is an example of [dialog creation](Dialog_creation.md) with [PySide](PySide.md). @@ -51,3 +49,6 @@ patience.show() #show the image }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation image and animated GIF/en diff --git a/wiki/translations/en/Dialog_creation_reading_and_writing_files.md b/wiki/translations/en/Dialog_creation_reading_and_writing_files.md index c47c0f8e71..8e7756c22b 100644 --- a/wiki/translations/en/Dialog_creation_reading_and_writing_files.md +++ b/wiki/translations/en/Dialog_creation_reading_and_writing_files.md @@ -1,6 +1,4 @@ # Dialog creation reading and writing files/en - - ## Introduction This is an example of [dialog creation](Dialog_creation.md) with [PySide](PySide.md). @@ -96,3 +94,6 @@ else: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation reading and writing files/en diff --git a/wiki/translations/en/Dialog_creation_setting_colors.md b/wiki/translations/en/Dialog_creation_setting_colors.md index 4903ca993c..d12b6d3201 100644 --- a/wiki/translations/en/Dialog_creation_setting_colors.md +++ b/wiki/translations/en/Dialog_creation_setting_colors.md @@ -1,6 +1,4 @@ # Dialog creation setting colors/en - - ## Introduction This is an example of [dialog creation](Dialog_creation.md) with [PySide](PySide.md). @@ -203,3 +201,6 @@ else: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation setting colors/en diff --git a/wiki/translations/en/Dialog_creation_with_various_widgets.md b/wiki/translations/en/Dialog_creation_with_various_widgets.md index a3ade1ce9f..893e9623b2 100644 --- a/wiki/translations/en/Dialog_creation_with_various_widgets.md +++ b/wiki/translations/en/Dialog_creation_with_various_widgets.md @@ -1,6 +1,4 @@ # Dialog creation with various widgets/en - - ## Introduction This is an example of [dialog creation](Dialog_creation.md) with [PySide](PySide.md). @@ -401,3 +399,6 @@ The code page and the icons [Qt\_Example](Qt_Example.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation with various widgets/en diff --git a/wiki/translations/en/Document_structure.md b/wiki/translations/en/Document_structure.md index 005586ef8e..b222080354 100644 --- a/wiki/translations/en/Document_structure.md +++ b/wiki/translations/en/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/en - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) A FreeCAD document contains all the objects of your scene. It can contain groups, and objects made with any workbench. You can therefore switch between workbenches, and still work on the same document. The document is what gets saved to disk when you save your work. You can also open several documents at the same time in FreeCAD, and open several views of the same document. @@ -42,8 +36,5 @@ FreeCADGui.ActiveDocument.Blob FreeCADGui.ActiveDocument.ActiveView ``` Will return the current view - - - - - +--- +[documentation index](../README.md) > Document structure/en diff --git a/wiki/translations/en/Donate.md b/wiki/translations/en/Donate.md index 2bda0a616e..5f13408a83 100644 --- a/wiki/translations/en/Donate.md +++ b/wiki/translations/en/Donate.md @@ -1,7 +1,4 @@ # Donate/en - - - [Category:User Documentation](Category:User_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > 3Dconnexion input devices/es diff --git a/wiki/translations/es/A2plus_Workbench.md b/wiki/translations/es/A2plus_Workbench.md index 33aa753393..bcdd919754 100644 --- a/wiki/translations/es/A2plus_Workbench.md +++ b/wiki/translations/es/A2plus_Workbench.md @@ -1,5 +1,4 @@ -# A2plus Workbench/es - El icono del Ambiente de trabajo A2plus +# El icono del Ambiente de trabajo A2plus A2plus Workbench/es ## Introducción @@ -614,3 +613,6 @@ This is an A2plus-specific command. It solves the assembly constraints of the as [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > A2plus Workbench/es diff --git a/wiki/translations/es/About_FreeCAD.md b/wiki/translations/es/About_FreeCAD.md index fdaccd697d..475281575b 100644 --- a/wiki/translations/es/About_FreeCAD.md +++ b/wiki/translations/es/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/es - - - +# About FreeCAD/es **FreeCAD** es un modelador 3D paramétrico de propósito general [**CAD**](http://en.wikipedia.org/wiki/CAD), cuyo desarrollo es completamente [código abierto](https://es.wikipedia.org/wiki/C%C3%B3digo_abierto) ([Licencia LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html)). FreeCAD está orientado directamente a la [ingeniería mecánica](http://en.wikipedia.org/wiki/Mechanical_engineering) y al [diseño de productos](https://es.wikipedia.org/wiki/Dise%C3%B1o_de_producto), pero también se adapta a una gama más amplia de usos en torno a la ingeniería, como la arquitectura, el análisis de elementos finitos, la impresión 3D y otras tareas. @@ -28,3 +25,6 @@ FreeCAD es mantenido y desarrollado por una comunidad de entusiastas desarrollad [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/es diff --git a/wiki/translations/es/Addon.md b/wiki/translations/es/Addon.md index d06ababb2c..473dbbafd8 100644 --- a/wiki/translations/es/Addon.md +++ b/wiki/translations/es/Addon.md @@ -1,6 +1,4 @@ # Addon/es - - ## Introducción En FreeCAD y en esta documentación, un [complemento](addon/es.md) es cualquier componente que no es parte de la instalación base, pero que puede ser añadido al sistema por ciertos métodos. @@ -37,3 +35,6 @@ Sin embargo, la instalación manual sigue siendo posible. [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Addon/es diff --git a/wiki/translations/es/Addon_Manager.md b/wiki/translations/es/Addon_Manager.md index fc4426340a..27249d6eff 100644 --- a/wiki/translations/es/Addon_Manager.md +++ b/wiki/translations/es/Addon_Manager.md @@ -1,2 +1,5 @@ # Addon Manager/es 1. REDIRECT [Std AddonMgr/es](Std_AddonMgr/es.md) + +--- +[documentation index](../README.md) > Addon Manager/es diff --git a/wiki/translations/es/Advanced_TechDraw_Tutorial.md b/wiki/translations/es/Advanced_TechDraw_Tutorial.md index 7b27b692a8..1e797d4e34 100644 --- a/wiki/translations/es/Advanced_TechDraw_Tutorial.md +++ b/wiki/translations/es/Advanced_TechDraw_Tutorial.md @@ -1,10 +1,4 @@ # Advanced TechDraw Tutorial/es - - - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -92,4 +86,7 @@ However, the described path could represent the starting point (or the idea) to {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Advanced TechDraw Tutorial/es diff --git a/wiki/translations/es/Aeroplane.md b/wiki/translations/es/Aeroplane.md index b051a491d8..e99ef6922d 100644 --- a/wiki/translations/es/Aeroplane.md +++ b/wiki/translations/es/Aeroplane.md @@ -1,5 +1,5 @@ # Aeroplane/es - {{TutorialInfo/es +{{TutorialInfo/es |Topic=Part Workbench |Level=Beginner |Time=10 minutes @@ -99,4 +99,7 @@ Espero que este pequeño tutorial te ayude a manejar mejor las rotaciones. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Aeroplane/es diff --git a/wiki/translations/es/Analysis_of_reinforced_concrete_with_FEM.md b/wiki/translations/es/Analysis_of_reinforced_concrete_with_FEM.md index 8cf7de2537..e0c6453ead 100644 --- a/wiki/translations/es/Analysis_of_reinforced_concrete_with_FEM.md +++ b/wiki/translations/es/Analysis_of_reinforced_concrete_with_FEM.md @@ -1,7 +1,4 @@ # Analysis of reinforced concrete with FEM/es - - -
@@ -192,4 +189,7 @@ The tensile stress pattern suggests an alternative design concept using pre-stre {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Analysis of reinforced concrete with FEM/es diff --git a/wiki/translations/es/Animation_Workbench.md b/wiki/translations/es/Animation_Workbench.md index 3df1a84976..76cf9eae94 100644 --- a/wiki/translations/es/Animation_Workbench.md +++ b/wiki/translations/es/Animation_Workbench.md @@ -1,5 +1,4 @@ # Animation Workbench/es - {{Template:UnfinishedDocu }} @@ -101,3 +100,6 @@ Other - [Ambiente de Trabajo externos](External_workbenches.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Animation Workbench/es diff --git a/wiki/translations/es/AppImage.md b/wiki/translations/es/AppImage.md index 2cf2184b3b..9f7b9e18fd 100644 --- a/wiki/translations/es/AppImage.md +++ b/wiki/translations/es/AppImage.md @@ -1,5 +1,5 @@ # AppImage/es - **As of 7 July 2019, the FreeCAD community has been observing that downloading AppImages from Github seems to timeout before completion. We aren't sure why this is occurring. If this happens to you please try downloading again. It make take a few tries. A recommended practice is to use the AppImage [https://www.freecadweb.org/wiki/Appimage#Automatic_updating auto-updating feature], which will restore the download from the place it failed.** +**As of 7 July 2019, the FreeCAD community has been observing that downloading AppImages from Github seems to timeout before completion. We aren't sure why this is occurring. If this happens to you please try downloading again. It make take a few tries. A recommended practice is to use the AppImage [https://www.freecadweb.org/wiki/Appimage#Automatic_updating auto-updating feature], which will restore the download from the place it failed.** {{TOCright}} @@ -170,3 +170,6 @@ The repository for these scripts is at [realthunder/FreeCADMakeImage](https://gi [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > AppImage/es diff --git a/wiki/translations/es/App_Link.md b/wiki/translations/es/App_Link.md index 695fe7dfb4..6e3542c043 100644 --- a/wiki/translations/es/App_Link.md +++ b/wiki/translations/es/App_Link.md @@ -1,5 +1,5 @@ # App Link/es - {{TOCright}} +{{TOCright}} ## Introducción @@ -28,4 +28,7 @@ See the full list of properties in the [Std LinkMake](Std_LinkMake.md) page. {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Link/es diff --git a/wiki/translations/es/Arch_3Views.md b/wiki/translations/es/Arch_3Views.md index 99f74122b3..fdbc20d90c 100644 --- a/wiki/translations/es/Arch_3Views.md +++ b/wiki/translations/es/Arch_3Views.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Arch 3Views/es +
@@ -76,11 +78,5 @@ Wall.ViewObject.Visibility = False mesh_obj.ViewObject.Visibility = False ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3Views/es diff --git a/wiki/translations/es/Arch_Add.md b/wiki/translations/es/Arch_Add.md index 53b9c20ad7..cbc510ae1f 100644 --- a/wiki/translations/es/Arch_Add.md +++ b/wiki/translations/es/Arch_Add.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Suprimir](Arch_Remove/es.md) --- +# Arch Add/es + @@ -112,11 +114,5 @@ Arch.addComponents(Wall2, Wall) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Add/es diff --git a/wiki/translations/es/Arch_Axis.md b/wiki/translations/es/Arch_Axis.md index a746979510..d26854c077 100644 --- a/wiki/translations/es/Arch_Axis.md +++ b/wiki/translations/es/Arch_Axis.md @@ -7,6 +7,8 @@ Shortcut:**A** **X** --- +# Arch Axis/es + @@ -148,3 +150,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/es](Category:Arch/es.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Axis/es diff --git a/wiki/translations/es/Arch_AxisSystem.md b/wiki/translations/es/Arch_AxisSystem.md index 0f078d0b0a..419a3b4559 100644 --- a/wiki/translations/es/Arch_AxisSystem.md +++ b/wiki/translations/es/Arch_AxisSystem.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Axis](Arch_Axis/es.md), [Grid](Arch_Grid/es.md) --- +# Arch AxisSystem/es + @@ -127,5 +129,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch AxisSystem/es diff --git a/wiki/translations/es/Arch_BimServer.md b/wiki/translations/es/Arch_BimServer.md index 4f84778335..1900c11ac5 100644 --- a/wiki/translations/es/Arch_BimServer.md +++ b/wiki/translations/es/Arch_BimServer.md @@ -1,2 +1,5 @@ # Arch BimServer/es 1. REDIRECT [WebTools\_BimServer/es](WebTools_BimServer/es.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BimServer/es diff --git a/wiki/translations/es/Arch_Building.md b/wiki/translations/es/Arch_Building.md index 7122c3b20a..a359a7e15a 100644 --- a/wiki/translations/es/Arch_Building.md +++ b/wiki/translations/es/Arch_Building.md @@ -8,6 +8,8 @@ SeeAlso:[Piso](Arch_Floor/es.md), [Ubicación](Arch_Site/es.md) --- +# Arch Building/es + @@ -109,3 +111,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/es](Category:Arch/es.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Building/es diff --git a/wiki/translations/es/Arch_BuildingPart.md b/wiki/translations/es/Arch_BuildingPart.md index 2513e8b24c..36542239e1 100644 --- a/wiki/translations/es/Arch_BuildingPart.md +++ b/wiki/translations/es/Arch_BuildingPart.md @@ -8,6 +8,8 @@ SeeAlso:[Arquitectura Edificio](Arch_Building/es.md), [Arquitectura Sitio](Arch_Site/es.md) --- +# Arch BuildingPart/es + @@ -139,5 +141,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BuildingPart/es diff --git a/wiki/translations/es/Arch_Check.md b/wiki/translations/es/Arch_Check.md index 6ae1b41410..13bf896187 100644 --- a/wiki/translations/es/Arch_Check.md +++ b/wiki/translations/es/Arch_Check.md @@ -7,6 +7,8 @@ SeeAlso:[Tapar agujeros](Arch_CloseHoles/es.md) --- +# Arch Check/es + @@ -88,11 +90,5 @@ list_bad = Arch.check([Wall1, Wall2, Circle, Wire], includehidden=True) print(list_bad) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Check/es diff --git a/wiki/translations/es/Arch_CloneComponent.md b/wiki/translations/es/Arch_CloneComponent.md index f12103b13c..48d0023f1e 100644 --- a/wiki/translations/es/Arch_CloneComponent.md +++ b/wiki/translations/es/Arch_CloneComponent.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Arch CloneComponent/es + @@ -37,8 +39,5 @@ El componente de clonación simplemente tendrá su propiedad **CloneOf** estable ## Scripting - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloneComponent/es diff --git a/wiki/translations/es/Arch_CloseHoles.md b/wiki/translations/es/Arch_CloseHoles.md index 2f27175b3e..78b9ff57fe 100644 --- a/wiki/translations/es/Arch_CloseHoles.md +++ b/wiki/translations/es/Arch_CloseHoles.md @@ -7,6 +7,8 @@ SeeAlso:[Comprobar](Arch_Check/es.md) --- +# Arch CloseHoles/es + @@ -88,11 +90,5 @@ FreeCAD.ActiveDocument.recompute() solid = Arch.closeHole(Wall.Shape) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloseHoles/es diff --git a/wiki/translations/es/Arch_CompRebarStraight.md b/wiki/translations/es/Arch_CompRebarStraight.md index cba8723644..14ae3c8b83 100644 --- a/wiki/translations/es/Arch_CompRebarStraight.md +++ b/wiki/translations/es/Arch_CompRebarStraight.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Arch CompRebarStraight/es + ## Descripción El complemento de refuerzo aumenta el [Ambiente de trabajo Arquitectura](Arch_Workbench/es.md) proporcionando nuevas interfaces y preajustes para la creación de tipos de barras de refuerzo comunes para su uso con [Arquitectura Estructura](Arch_Structure/es.md). También está integrado en el ambiente de trabajo externo [BIM](BIM_Workbench/es.md). @@ -38,8 +40,5 @@ Back to [Workbenches](Workbenches#External_workbenches.md) / [External Workbench - [Rebar](Arch_Rebar.md): Creates a custom reinforcement bar in a selected structural element using a sketch - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompRebarStraight/es diff --git a/wiki/translations/es/Arch_Component.md b/wiki/translations/es/Arch_Component.md index 19851373c5..c241072c0c 100644 --- a/wiki/translations/es/Arch_Component.md +++ b/wiki/translations/es/Arch_Component.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Arch Component/es + @@ -132,11 +134,5 @@ El objeto del Arch componente es también una base compartida por todos los dem - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Component/es diff --git a/wiki/translations/es/Arch_Concept.md b/wiki/translations/es/Arch_Concept.md index de68a5c319..618f1c6237 100644 --- a/wiki/translations/es/Arch_Concept.md +++ b/wiki/translations/es/Arch_Concept.md @@ -1,7 +1,4 @@ # Arch Concept/es - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -214,3 +211,6 @@ El siguiente diagrama ilustra las relaciones entre todos los objetos descritos h Objetos para capturar el conocimiento de la construcción [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Concept/es diff --git a/wiki/translations/es/Arch_CurtainWall.md b/wiki/translations/es/Arch_CurtainWall.md index 0cb1c65b5b..cab6402d28 100644 --- a/wiki/translations/es/Arch_CurtainWall.md +++ b/wiki/translations/es/Arch_CurtainWall.md @@ -9,6 +9,8 @@ SeeAlso:[Arquitectura Muro](Arch_Wall/es.md), [Arquitecturah Rejilla](Arch_Grid/es.md) --- +# Arch CurtainWall/es + @@ -152,8 +154,5 @@ curtainWall.VerticalSections = 6 FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CurtainWall/es diff --git a/wiki/translations/es/Arch_CutPlane.md b/wiki/translations/es/Arch_CutPlane.md index 8d8128790f..dd5abdcda8 100644 --- a/wiki/translations/es/Arch_CutPlane.md +++ b/wiki/translations/es/Arch_CutPlane.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Remove](Arch_Remove/es.md) --- +# Arch CutPlane/es + @@ -125,8 +127,5 @@ cutObj2 = Arch.cutComponentwithPlane(main_object2, cut_face2, 1) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutPlane/es diff --git a/wiki/translations/es/Arch_DAE.md b/wiki/translations/es/Arch_DAE.md index 64e8501d6b..51236ad7ea 100644 --- a/wiki/translations/es/Arch_DAE.md +++ b/wiki/translations/es/Arch_DAE.md @@ -1,7 +1,4 @@ # Arch DAE/es - - -
@@ -59,3 +56,6 @@ La funcionalidad de importación de Collada en el módulo de Arquitectura depend [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch DAE/es diff --git a/wiki/translations/es/Arch_Equipment.md b/wiki/translations/es/Arch_Equipment.md index da2bf4f3dc..4006411d79 100644 --- a/wiki/translations/es/Arch_Equipment.md +++ b/wiki/translations/es/Arch_Equipment.md @@ -8,6 +8,8 @@ SeeAlso:[3 views from mesh](Arch_3Views/es.md) --- +# Arch Equipment/es +
@@ -21,6 +23,8 @@ SeeAlso:[3 views from mesh](Arch_3Views/es.md) --- +# Arch Equipment/es + ## Descripción @@ -133,8 +137,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Equipment/es diff --git a/wiki/translations/es/Arch_Floor.md b/wiki/translations/es/Arch_Floor.md index 7a20412340..7a2f153352 100644 --- a/wiki/translations/es/Arch_Floor.md +++ b/wiki/translations/es/Arch_Floor.md @@ -8,6 +8,8 @@ SeeAlso:[ Arch Celda](Arch_Cell/es.md) --- +# Arch Floor/es + @@ -111,8 +113,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor/es diff --git a/wiki/translations/es/Arch_Frame.md b/wiki/translations/es/Arch_Frame.md index 107012b77c..3e63b743d7 100644 --- a/wiki/translations/es/Arch_Frame.md +++ b/wiki/translations/es/Arch_Frame.md @@ -8,6 +8,8 @@ SeeAlso:[[Arch Wall/es]], [[Arch Structure/es]] --- +# Arch Frame/es + @@ -125,8 +127,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Frame/es diff --git a/wiki/translations/es/Arch_Git.md b/wiki/translations/es/Arch_Git.md index 3d4e624966..e4ceba8292 100644 --- a/wiki/translations/es/Arch_Git.md +++ b/wiki/translations/es/Arch_Git.md @@ -1,2 +1,5 @@ # Arch Git/es 1. REDIRECT [WebTools\_Git/es](WebTools_Git/es.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Git/es diff --git a/wiki/translations/es/Arch_Grid.md b/wiki/translations/es/Arch_Grid.md index 523c322022..96ed3e6ff7 100644 --- a/wiki/translations/es/Arch_Grid.md +++ b/wiki/translations/es/Arch_Grid.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Axis/es]], [[Arch AxisSystem/es]] --- +# Arch Grid/es + @@ -154,5 +156,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Grid/es diff --git a/wiki/translations/es/Arch_IFC.md b/wiki/translations/es/Arch_IFC.md index cd69a8d806..c47d7fb00d 100644 --- a/wiki/translations/es/Arch_IFC.md +++ b/wiki/translations/es/Arch_IFC.md @@ -1,7 +1,4 @@ # Arch IFC/es - - -
@@ -96,3 +93,6 @@ Si la forma de los objetos exportados se basa en una extrusión o en una operaci [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IFC/es diff --git a/wiki/translations/es/Arch_IfcExplorer.md b/wiki/translations/es/Arch_IfcExplorer.md index 6c7aa4ef50..1dec08d791 100644 --- a/wiki/translations/es/Arch_IfcExplorer.md +++ b/wiki/translations/es/Arch_IfcExplorer.md @@ -7,6 +7,8 @@ SeeAlso:[Arch IFC](Arch_IFC/es.md) --- +# Arch IfcExplorer/es +
@@ -41,3 +43,6 @@ El propósito de este explorador es simplemente permitirte comprobar lo que real [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcExplorer/es diff --git a/wiki/translations/es/Arch_MeshToShape.md b/wiki/translations/es/Arch_MeshToShape.md index dea7a052b0..86a67e55fd 100644 --- a/wiki/translations/es/Arch_MeshToShape.md +++ b/wiki/translations/es/Arch_MeshToShape.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh/es](Arch_SplitMesh/es.md), [Eliminar forma](Arch_RemoveShape/es.md) --- +# Arch MeshToShape/es + @@ -94,5 +96,5 @@ new_obj = Arch.meshToShape(Box) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MeshToShape/es diff --git a/wiki/translations/es/Arch_Module.md b/wiki/translations/es/Arch_Module.md index 3d48b9cb2e..c25c1cb3af 100644 --- a/wiki/translations/es/Arch_Module.md +++ b/wiki/translations/es/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/es 1. REDIRECT [Arch\_Workbench/es](Arch_Workbench/es.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/es diff --git a/wiki/translations/es/Arch_MultiMaterial.md b/wiki/translations/es/Arch_MultiMaterial.md index 9a9f5f8765..d078f17832 100644 --- a/wiki/translations/es/Arch_MultiMaterial.md +++ b/wiki/translations/es/Arch_MultiMaterial.md @@ -6,6 +6,8 @@ Workbenches:[Arch](Arch_Workbench/es.md), [BIM](BIM_Workbench.md) --- +# Arch MultiMaterial/es + @@ -84,5 +86,5 @@ This roughly corresponds to a combination of [IfcMaterialLayerSet](https://stand - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MultiMaterial/es diff --git a/wiki/translations/es/Arch_Nest.md b/wiki/translations/es/Arch_Nest.md index 6758ba18eb..9b72f01845 100644 --- a/wiki/translations/es/Arch_Nest.md +++ b/wiki/translations/es/Arch_Nest.md @@ -6,6 +6,8 @@ SeeAlso:[[Arch Panel/es]], [[Arch Panel Sheet/es]] --- +# Arch Nest/es + @@ -68,5 +70,5 @@ El algoritmo detrás de la herramienta Nido está en constante evolución y actu - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Nest/es diff --git a/wiki/translations/es/Arch_OBJ.md b/wiki/translations/es/Arch_OBJ.md index efbcc8abeb..b2e84d891f 100644 --- a/wiki/translations/es/Arch_OBJ.md +++ b/wiki/translations/es/Arch_OBJ.md @@ -1,7 +1,4 @@ # Arch OBJ/es - - -
@@ -71,3 +68,6 @@ mesh.write(Filename="new_example.obj", Material=face_colors, Format="obj") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch OBJ/es diff --git a/wiki/translations/es/Arch_Panel.md b/wiki/translations/es/Arch_Panel.md index 2970694c9e..bcc993547f 100644 --- a/wiki/translations/es/Arch_Panel.md +++ b/wiki/translations/es/Arch_Panel.md @@ -9,6 +9,8 @@ SeeAlso:[Arch Panel Cut](Arch_Panel_Cut/es.md), [Arch Panel Sheet](Arch_Panel_Sheet/es.md) --- +# Arch Panel/es +
@@ -153,5 +155,5 @@ Panel = Arch.makePanel(Rect, thickness=36) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel/es diff --git a/wiki/translations/es/Arch_Panel_Cut.md b/wiki/translations/es/Arch_Panel_Cut.md index 3b4c8799a9..882b1bc2d2 100644 --- a/wiki/translations/es/Arch_Panel_Cut.md +++ b/wiki/translations/es/Arch_Panel_Cut.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Panel](Arch_Panel/es.md), [[Arch Panel Sheet/es]], [[Arch Nest/es]], [[Path Workbench/es]] --- +# Arch Panel Cut/es + @@ -150,5 +152,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Cut/es diff --git a/wiki/translations/es/Arch_Panel_Sheet.md b/wiki/translations/es/Arch_Panel_Sheet.md index 04667b29b7..dc29dbc313 100644 --- a/wiki/translations/es/Arch_Panel_Sheet.md +++ b/wiki/translations/es/Arch_Panel_Sheet.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Panel](Arch_Panel/es.md) --- +# Arch Panel Sheet/es + @@ -159,5 +161,5 @@ Sheet = Arch.makePanelSheet([Cut1, Cut2, Cut3]) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Sheet/es diff --git a/wiki/translations/es/Arch_Pipe.md b/wiki/translations/es/Arch_Pipe.md index a046e7dabe..63cff4c882 100644 --- a/wiki/translations/es/Arch_Pipe.md +++ b/wiki/translations/es/Arch_Pipe.md @@ -9,6 +9,8 @@ Version:0.17 --- +# Arch Pipe/es + @@ -155,5 +157,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Pipe/es diff --git a/wiki/translations/es/Arch_PipeConnector.md b/wiki/translations/es/Arch_PipeConnector.md index c4ab73f69e..3573ab449c 100644 --- a/wiki/translations/es/Arch_PipeConnector.md +++ b/wiki/translations/es/Arch_PipeConnector.md @@ -9,6 +9,8 @@ SeeAlso:[Arch Pipe](Arch_Pipe/es.md), [Arch Equipment](Arch_Equipment/es.md) --- +# Arch PipeConnector/es + ## Descripción @@ -114,8 +116,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch PipeConnector/es diff --git a/wiki/translations/es/Arch_Profile.md b/wiki/translations/es/Arch_Profile.md index 24f188e025..bbf40d23d1 100644 --- a/wiki/translations/es/Arch_Profile.md +++ b/wiki/translations/es/Arch_Profile.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Arch Profile/es + ## Descripción The Profile tool builds a parametric 2D profile object. This object can then be used as a base in different other tools that perform extrusions, such as [Arch Frame](Arch_Frame.md), [Arch CurtainWall](Arch_CurtainWall.md) or [Part Extrude](Part_Extrude.md). @@ -88,8 +90,5 @@ Arch.makeProfile([0,'REC','REC100x100','R',100,100]) Where the first element of the list is an order number that is not used yet. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Profile/es diff --git a/wiki/translations/es/Arch_Project.md b/wiki/translations/es/Arch_Project.md index 20d42688b0..0bd7957504 100644 --- a/wiki/translations/es/Arch_Project.md +++ b/wiki/translations/es/Arch_Project.md @@ -8,6 +8,8 @@ SeeAlso:[Proyecto Sitio](Arch_Site/es.md), [Proyecto Edificio](Arch_Building/es.md) --- +# Arch Project/es + @@ -33,5 +35,5 @@ Tenga en cuenta que, aunque se puede añadir cualquier otro objeto BIM a un proy - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Project/es diff --git a/wiki/translations/es/Arch_Rebar.md b/wiki/translations/es/Arch_Rebar.md index 46c1ffa0f3..00c0005ba5 100644 --- a/wiki/translations/es/Arch_Rebar.md +++ b/wiki/translations/es/Arch_Rebar.md @@ -1,3 +1,4 @@ +# Arch Rebar/es --- - GuiCommand:/es Name:Arch Rebar Name/es:Arch Rebar Workbenches:[MenuLocation:Arch → Rebar Shortcut:R B SeeAlso:[[Arch Structure/es|Arch Structure](Arch_Workbench/es___Arch]].md)--- @@ -164,3 +165,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/es](Category:Arch/es.md) [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar/es diff --git a/wiki/translations/es/Arch_Rebar_BentShape.md b/wiki/translations/es/Arch_Rebar_BentShape.md index 8c503cabf9..a99df3214a 100644 --- a/wiki/translations/es/Arch_Rebar_BentShape.md +++ b/wiki/translations/es/Arch_Rebar_BentShape.md @@ -9,6 +9,8 @@ Addon:Reinforcement --- +# Arch Rebar BentShape/es + @@ -183,3 +185,6 @@ BentShapeRebar.editBentShapeRebar(Rebar2, 50, 35, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BentShape/es diff --git a/wiki/translations/es/Arch_Rebar_Helical.md b/wiki/translations/es/Arch_Rebar_Helical.md index e89271699b..a663648e0d 100644 --- a/wiki/translations/es/Arch_Rebar_Helical.md +++ b/wiki/translations/es/Arch_Rebar_Helical.md @@ -9,6 +9,8 @@ SeeAlso:[Arch Rebar](Arch_Rebar/es.md) --- +# Arch Rebar Helical/es + @@ -158,3 +160,6 @@ HelicalRebar.editHelicalRebar(Rebar, 20, 100, 20, 20, 100) [Category:Arch/es](Category:Arch/es.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Helical/es diff --git a/wiki/translations/es/Arch_Rebar_LShape.md b/wiki/translations/es/Arch_Rebar_LShape.md index e516602a63..76b29a153f 100644 --- a/wiki/translations/es/Arch_Rebar_LShape.md +++ b/wiki/translations/es/Arch_Rebar_LShape.md @@ -9,6 +9,8 @@ Addon:Reinforcement --- +# Arch Rebar LShape/es + @@ -189,3 +191,6 @@ LShapeRebar.editLShapeRebar(Rebar2, 50, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar LShape/es diff --git a/wiki/translations/es/Arch_Rebar_Stirrup.md b/wiki/translations/es/Arch_Rebar_Stirrup.md index fe8ae44985..5531f711c0 100644 --- a/wiki/translations/es/Arch_Rebar_Stirrup.md +++ b/wiki/translations/es/Arch_Rebar_Stirrup.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch Rebar Stirrup/es + @@ -193,3 +195,6 @@ Stirrup.editStirrup(Rebar, 20, 20, 20, 20, 50, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Stirrup/es diff --git a/wiki/translations/es/Arch_Rebar_Straight.md b/wiki/translations/es/Arch_Rebar_Straight.md index 65327335bf..179b2bcfdb 100644 --- a/wiki/translations/es/Arch_Rebar_Straight.md +++ b/wiki/translations/es/Arch_Rebar_Straight.md @@ -9,6 +9,8 @@ Addon:Reinforcement --- +# Arch Rebar Straight/es + @@ -251,3 +253,6 @@ StraightRebar.editStraightRebar(Rebar4, 50, ("Right Side", 50), 100, 100, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Straight/es diff --git a/wiki/translations/es/Arch_Rebar_UShape.md b/wiki/translations/es/Arch_Rebar_UShape.md index 1e4c06f9f4..9269e242a8 100644 --- a/wiki/translations/es/Arch_Rebar_UShape.md +++ b/wiki/translations/es/Arch_Rebar_UShape.md @@ -10,6 +10,8 @@ SeeAlso:[LShape Rebar](Arch_Rebar_LShape/es.md) --- +# Arch Rebar UShape/es + @@ -188,3 +190,6 @@ UShapeRebar.editUShapeRebar(Rebar2, 70, 50, 20, 20, [Category:Arch/es](Category:Arch/es.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar UShape/es diff --git a/wiki/translations/es/Arch_Reference.md b/wiki/translations/es/Arch_Reference.md index f5625a57c1..8954f4ded6 100644 --- a/wiki/translations/es/Arch_Reference.md +++ b/wiki/translations/es/Arch_Reference.md @@ -7,6 +7,8 @@ SeeAlso:[Arquitectura EdificioPieza](Arch_BuildingPart/es.md) --- +# Arch Reference/es + @@ -63,5 +65,5 @@ Arch.makeReference("/path/to/some/file.FSCtd","myPart") - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Reference/es diff --git a/wiki/translations/es/Arch_Remove.md b/wiki/translations/es/Arch_Remove.md index e5ab8fe761..361e729661 100644 --- a/wiki/translations/es/Arch_Remove.md +++ b/wiki/translations/es/Arch_Remove.md @@ -7,6 +7,8 @@ SeeAlso:[Añadir](Arch_Add/es.md) --- +# Arch Remove/es + @@ -117,8 +119,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove/es diff --git a/wiki/translations/es/Arch_RemoveShape.md b/wiki/translations/es/Arch_RemoveShape.md index 7b76c50073..deea5a7325 100644 --- a/wiki/translations/es/Arch_RemoveShape.md +++ b/wiki/translations/es/Arch_RemoveShape.md @@ -7,6 +7,8 @@ SeeAlso:[Arch MeshToShape](Arch_MeshToShape/es.md) --- +# Arch RemoveShape/es + @@ -86,5 +88,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch RemoveShape/es diff --git a/wiki/translations/es/Arch_Roof.md b/wiki/translations/es/Arch_Roof.md index 28a2b39c47..91c5df8c28 100644 --- a/wiki/translations/es/Arch_Roof.md +++ b/wiki/translations/es/Arch_Roof.md @@ -7,6 +7,8 @@ Shortcut:**R** **F** --- +# Arch Roof/es + @@ -159,3 +161,6 @@ doc.recompute() [Category:Arch/es](Category:Arch/es.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Roof/es diff --git a/wiki/translations/es/Arch_SectionPlane.md b/wiki/translations/es/Arch_SectionPlane.md index 53ac21395f..411070b287 100644 --- a/wiki/translations/es/Arch_SectionPlane.md +++ b/wiki/translations/es/Arch_SectionPlane.md @@ -7,6 +7,8 @@ Shortcut:**S** **P** --- +# Arch SectionPlane/es + @@ -185,3 +187,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/es](Category:Arch/es.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane/es diff --git a/wiki/translations/es/Arch_SelectNonSolidMeshes.md b/wiki/translations/es/Arch_SelectNonSolidMeshes.md index 9337bb92a4..55b0967a2c 100644 --- a/wiki/translations/es/Arch_SelectNonSolidMeshes.md +++ b/wiki/translations/es/Arch_SelectNonSolidMeshes.md @@ -7,6 +7,8 @@ SeeAlso:[Arch MeshToShape](Arch_MeshToShape/es.md) --- +# Arch SelectNonSolidMeshes/es + @@ -37,8 +39,5 @@ Esta herramienta identifica y selecciona las mallas no sólidas (no [manifold](h - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SelectNonSolidMeshes/es diff --git a/wiki/translations/es/Arch_SetMaterial.md b/wiki/translations/es/Arch_SetMaterial.md index 6df204271f..16765545f5 100644 --- a/wiki/translations/es/Arch_SetMaterial.md +++ b/wiki/translations/es/Arch_SetMaterial.md @@ -7,6 +7,8 @@ Shortcut:**M** **T** --- +# Arch SetMaterial/es + @@ -84,5 +86,5 @@ This roughly corresponds to [IfcMaterial](https://standards.buildingsmart.org/IF - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SetMaterial/es diff --git a/wiki/translations/es/Arch_Site.md b/wiki/translations/es/Arch_Site.md index 834d60ce59..2e0ff7e51a 100644 --- a/wiki/translations/es/Arch_Site.md +++ b/wiki/translations/es/Arch_Site.md @@ -8,6 +8,8 @@ SeeAlso:[Arquitectura Piso](Arch_Floor/es.md), [Arquitectura Edificio](Arch_Building/es.md) --- +# Arch Site/es + @@ -177,5 +179,5 @@ FreeCAD.Gui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Site/es diff --git a/wiki/translations/es/Arch_Space.md b/wiki/translations/es/Arch_Space.md index 8bbe37c37b..6c772a95c7 100644 --- a/wiki/translations/es/Arch_Space.md +++ b/wiki/translations/es/Arch_Space.md @@ -8,6 +8,8 @@ SeeAlso:[[Arch Wall/es]], [[Arch Structure/es]] --- +# Arch Space/es + @@ -200,5 +202,5 @@ Arch.removeSpaceBoundaries(Space, selection) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Space/es diff --git a/wiki/translations/es/Arch_SplitMesh.md b/wiki/translations/es/Arch_SplitMesh.md index 4020292f17..93aeb0ff7c 100644 --- a/wiki/translations/es/Arch_SplitMesh.md +++ b/wiki/translations/es/Arch_SplitMesh.md @@ -7,6 +7,8 @@ SeeAlso:[Seleccionar Mallas no sólidas](Arch_SelectNonSolidMeshes/es.md) --- +# Arch SplitMesh/es + @@ -87,11 +89,5 @@ mesh_obj.ViewObject.DisplayMode = "Flat Lines" new_list = Arch.splitMesh(mesh_obj) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SplitMesh/es diff --git a/wiki/translations/es/Arch_Stairs.md b/wiki/translations/es/Arch_Stairs.md index bf66914be7..e36520ab94 100644 --- a/wiki/translations/es/Arch_Stairs.md +++ b/wiki/translations/es/Arch_Stairs.md @@ -7,6 +7,8 @@ Shortcut:**S** **R** --- +# Arch Stairs/es + @@ -179,3 +181,6 @@ Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14) [Category:Arch/es](Category:Arch/es.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Stairs/es diff --git a/wiki/translations/es/Arch_Structure.md b/wiki/translations/es/Arch_Structure.md index 1b2c71ee35..4300e510c2 100644 --- a/wiki/translations/es/Arch_Structure.md +++ b/wiki/translations/es/Arch_Structure.md @@ -8,6 +8,8 @@ SeeAlso:[Arquitectura Muro](Arch_Wall/es.md), [Arquitectura Barra de refuerzo](Arch_Rebar/es.md) --- +# Arch Structure/es + @@ -134,8 +136,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/es diff --git a/wiki/translations/es/Arch_Survey.md b/wiki/translations/es/Arch_Survey.md index af3b8854f6..1a4da0356c 100644 --- a/wiki/translations/es/Arch_Survey.md +++ b/wiki/translations/es/Arch_Survey.md @@ -1,3 +1,4 @@ +# Arch Survey/es --- - GuiCommand: Name:Arch Survey Workbenches:[MenuLocation:Arch → Survey SeeAlso:[[Macro FCInfo|FCInfo (macro)](Arch_Workbench/es___Arch]].md)--- @@ -68,8 +69,5 @@ for obj in selection: print("Center of Mass: %f", element.CenterOfMass) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Survey/es diff --git a/wiki/translations/es/Arch_ToggleIfcBrepFlag.md b/wiki/translations/es/Arch_ToggleIfcBrepFlag.md index 92c809600f..b086f5bf8c 100644 --- a/wiki/translations/es/Arch_ToggleIfcBrepFlag.md +++ b/wiki/translations/es/Arch_ToggleIfcBrepFlag.md @@ -1,3 +1,4 @@ +# Arch ToggleIfcBrepFlag/es --- - GuiCommand: Name:Arch ToggleIfcBrepFlag Workbenches:[[Arch_Workbench/es Arch]]|MenuLocation:Arch → Utilities → Toggle Ifc Brep flag Shortcut: SeeAlso:--- @@ -31,11 +32,5 @@ Esta herramienta activa / desactiva el indicador IfcBrep de un objeto [ Arch](Ar - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleIfcBrepFlag/es diff --git a/wiki/translations/es/Arch_ToggleSubs.md b/wiki/translations/es/Arch_ToggleSubs.md index 2af991de8a..08aa1ad99e 100644 --- a/wiki/translations/es/Arch_ToggleSubs.md +++ b/wiki/translations/es/Arch_ToggleSubs.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Arch ToggleSubs/es + @@ -55,8 +57,5 @@ La opción **Editar → Preferencias → Arch → Aplicar estilo de construcció The [Draft construction](Draft_ToggleConstructionMode.md) style can be set in the [Draft Preferences](Draft_Preferences.md), in the menu **Preferences → Draft → General Draft**. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleSubs/es diff --git a/wiki/translations/es/Arch_Truss.md b/wiki/translations/es/Arch_Truss.md index 251fb86d0b..8cbadd9ea4 100644 --- a/wiki/translations/es/Arch_Truss.md +++ b/wiki/translations/es/Arch_Truss.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Truss/es + @@ -108,5 +110,5 @@ truss.HeightEnd = 400 - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Truss/es diff --git a/wiki/translations/es/Arch_Wall.md b/wiki/translations/es/Arch_Wall.md index d6d3c6387b..2a75fd69fc 100644 --- a/wiki/translations/es/Arch_Wall.md +++ b/wiki/translations/es/Arch_Wall.md @@ -8,6 +8,8 @@ SeeAlso:[Arquitectura Estructura](Arch_Structure/es.md) --- +# Arch Wall/es + @@ -169,8 +171,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/es diff --git a/wiki/translations/es/Arch_Window.md b/wiki/translations/es/Arch_Window.md index a2d9907144..649193b502 100644 --- a/wiki/translations/es/Arch_Window.md +++ b/wiki/translations/es/Arch_Window.md @@ -8,6 +8,8 @@ SeeAlso:[Arquitectura Muro](Arch_Wall/es.md), [Arquitectura Añadir](Arch_Add/es.md) --- +# Arch Window/es + ## Descripción Un [Arquitectura Ventana](Arch_Window/es.md) es un objeto base para todo tipo de objetos \"incrustables\", como ventanas y puertas. Está diseñado para ser independiente, o \"alojado\" dentro de otro componente como un [Arquitectura Muro](Arch_Wall/es.md), [Arquitectura Estructura](Arch_Structure/es.md), o [Arquitectura Techo](Arch_Roof/es.md). Tiene su propia geometría, que puede estar formada por varios componentes sólidos (comúnmente un marco y paneles interiores), y también define un volumen que se sustrae de los objetos anfitriones, para crear una abertura. @@ -259,11 +261,5 @@ Door = Arch.makeWindowPreset("Simple door", placement=place) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Window/es diff --git a/wiki/translations/es/Arch_Workbench.md b/wiki/translations/es/Arch_Workbench.md index aa1d2413b2..1e2ed0ec2a 100644 --- a/wiki/translations/es/Arch_Workbench.md +++ b/wiki/translations/es/Arch_Workbench.md @@ -1,10 +1,4 @@ -# Arch Workbench/es - - - - - -El icono del Ambiente de trabajo Arquitectura +# El icono del Ambiente de trabajo Arquitectura Arch Workbench/es {{TOCright}} @@ -145,3 +139,6 @@ El Módulo de arquitectura puede usarse en scripts de [Python](Python/es.md) y e [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/es diff --git a/wiki/translations/es/Arch_tutorial.md b/wiki/translations/es/Arch_tutorial.md index 7425e49bae..8e7e02f9e0 100644 --- a/wiki/translations/es/Arch_tutorial.md +++ b/wiki/translations/es/Arch_tutorial.md @@ -1,7 +1,4 @@ # Arch tutorial/es - - -
@@ -567,4 +564,7 @@ The file created during this tutorial can be found [here](http://yorik.uncreated {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch tutorial/es diff --git a/wiki/translations/es/Artwork.md b/wiki/translations/es/Artwork.md index 31842dd4dc..f59b05b19f 100644 --- a/wiki/translations/es/Artwork.md +++ b/wiki/translations/es/Artwork.md @@ -1,5 +1,5 @@ # Artwork/es - Here is the artwork that has been created for FreeCAD. Feel free to reuse in other applications. If you would like to contribute with icons, please read the [artwork guidelines](Artwork_Guidelines.md). +Here is the artwork that has been created for FreeCAD. Feel free to reuse in other applications. If you would like to contribute with icons, please read the [artwork guidelines](Artwork_Guidelines.md). ## Otros iconos @@ -157,3 +157,6 @@ See [Artwork Erroneous](Artwork_Erroneous.md). }} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork/es diff --git a/wiki/translations/es/Artwork_Guidelines.md b/wiki/translations/es/Artwork_Guidelines.md index 900c913f40..fcc33eba56 100644 --- a/wiki/translations/es/Artwork_Guidelines.md +++ b/wiki/translations/es/Artwork_Guidelines.md @@ -1,6 +1,4 @@ # Artwork Guidelines/es - - ## Introducción @@ -173,3 +171,6 @@ Una imagen en escala de grises permite identificar más fácilmente los problema {{Artwork/es}} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Artwork Guidelines/es diff --git a/wiki/translations/es/Assembly3_Workbench.md b/wiki/translations/es/Assembly3_Workbench.md index 11cfefd46f..2d80cc82cf 100644 --- a/wiki/translations/es/Assembly3_Workbench.md +++ b/wiki/translations/es/Assembly3_Workbench.md @@ -1,7 +1,4 @@ -# Assembly3 Workbench/es - - -Assembly3 workbench icon +# Assembly3 workbench icon Assembly3 Workbench/es {{TOCright}} @@ -632,3 +629,6 @@ One way to solve this is to just delete all invalid constraints and elements, im [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Assembly3 Workbench/es diff --git a/wiki/translations/es/Assembly4_Workbench.md b/wiki/translations/es/Assembly4_Workbench.md index 4e318a7a68..99383c8d72 100644 --- a/wiki/translations/es/Assembly4_Workbench.md +++ b/wiki/translations/es/Assembly4_Workbench.md @@ -1,7 +1,4 @@ -# Assembly4 Workbench/es - - -Icono del ambiente de trabajo externo +# Icono del ambiente de trabajo externo Assembly4 Workbench/es ## Introducción @@ -40,3 +37,6 @@ Assembly4 se inspiró en @@ -13,3 +15,6 @@ El sistema de preferencias de FreeCAD, ubicado en el menú **Editar -\> Preferencias**, es muy complejo. El **diálogo de configuración BIM** ofrece una versión simplificada del mismo, al reunir algunas de las configuraciones de preferencias más utilizadas para el trabajo BIM en una sola pantalla. Cambiar cualquiera de las opciones de preferencias tiene el mismo efecto que cambiar la configuración correspondiente en Editar -\> Preferencias. Al pasar el mouse por encima de cada configuración, se le mostrará una sugerencia para explicar para qué se usa y la ubicación de la configuración correspondiente en el sistema de preferencias general de FreeCAD. + +--- +[documentation index](../README.md) > BIM Setup/es diff --git a/wiki/translations/es/BIM_Workbench.md b/wiki/translations/es/BIM_Workbench.md index 56ce200894..43f4e451eb 100644 --- a/wiki/translations/es/BIM_Workbench.md +++ b/wiki/translations/es/BIM_Workbench.md @@ -1,8 +1,4 @@ -# BIM Workbench/es - - - -El icono del Ambiente de trabajo BIM +# El icono del Ambiente de trabajo BIM BIM Workbench/es {{TOCright}} @@ -195,3 +191,6 @@ Nuevos ambientes de trabajo están en desarrollo, esté atento! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > BIM Workbench/es diff --git a/wiki/translations/es/BIM_application_compatibility_table.md b/wiki/translations/es/BIM_application_compatibility_table.md index 70cf6ec7ed..ca20957801 100644 --- a/wiki/translations/es/BIM_application_compatibility_table.md +++ b/wiki/translations/es/BIM_application_compatibility_table.md @@ -1,6 +1,5 @@ # BIM application compatibility table/es - - Esta página da una visión general de cómo las diferentes herramientas y conceptos que se encuentran en otras aplicaciones BIM convencionales se comparan con FreeCAD, específicamente su [BIM ambiente de trabajo](BIM_Workbench/es.md). +Esta página da una visión general de cómo las diferentes herramientas y conceptos que se encuentran en otras aplicaciones BIM convencionales se comparan con FreeCAD, específicamente su [BIM ambiente de trabajo](BIM_Workbench/es.md). **HACER:** Añadir otras aplicaciones BIM: Allplan, Tekla, Vectorworks, BricsCAD, ¿qué más? @@ -16,3 +15,6 @@ **Elementos BIM estándar** Paredes, estructuras (vigas, columnas y forjados), ventanas (puertas y ventanas), techos, escaleras, armazones (barandillas), componentes (muebles, aparatos, etc.) Paredes, vigas, columnas, pisos, techos, ventanas, puertas, techos, escaleras, barandas, componentes (muebles, aparatos, etc) Paredes, vigas, columnas, forjados, ventanas, puertas, techos, escaleras, barandillas, muros cortina, objetos (muebles, electrodomésticos, etc) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM application compatibility table/es diff --git a/wiki/translations/es/Base_API.md b/wiki/translations/es/Base_API.md index 476f1276a8..bfd20c515f 100644 --- a/wiki/translations/es/Base_API.md +++ b/wiki/translations/es/Base_API.md @@ -1,5 +1,5 @@ # Base API/es - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** El módulo Base está contenido en el módulo FreeCAD y contiene constructores para diferentes tipos de objetos ampliamente utilizados en FreeCAD. @@ -19,3 +19,6 @@ El módulo Base está contenido en el módulo FreeCAD y contiene constructores p [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Base API/es diff --git a/wiki/translations/es/Basic_Part_Design_Tutorial.md b/wiki/translations/es/Basic_Part_Design_Tutorial.md index be2e6e141a..74f85daa46 100644 --- a/wiki/translations/es/Basic_Part_Design_Tutorial.md +++ b/wiki/translations/es/Basic_Part_Design_Tutorial.md @@ -1,7 +1,4 @@ # Basic Part Design Tutorial/es - - -
@@ -160,4 +157,7 @@ Este tutorial y tu modelo están completos. {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Part Design Tutorial/es diff --git a/wiki/translations/es/Basic_Part_Design_Tutorial_017.md b/wiki/translations/es/Basic_Part_Design_Tutorial_017.md index b6ad3a60c4..1ca8e19a4a 100644 --- a/wiki/translations/es/Basic_Part_Design_Tutorial_017.md +++ b/wiki/translations/es/Basic_Part_Design_Tutorial_017.md @@ -1,2 +1,5 @@ # Basic Part Design Tutorial 017/es 1. REDIRECT [Basic\_Part\_Design\_Tutorial/es](Basic_Part_Design_Tutorial/es.md) + +--- +[documentation index](../README.md) > Basic Part Design Tutorial 017/es diff --git a/wiki/translations/es/Basic_Sketcher_Tutorial.md b/wiki/translations/es/Basic_Sketcher_Tutorial.md index 5b4642ee46..5e45f9810b 100644 --- a/wiki/translations/es/Basic_Sketcher_Tutorial.md +++ b/wiki/translations/es/Basic_Sketcher_Tutorial.md @@ -1,7 +1,4 @@ # Basic Sketcher Tutorial/es - - -
@@ -298,4 +295,7 @@ Constraining a sketch can be done in many different ways. In general, it is reco {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Sketcher Tutorial/es diff --git a/wiki/translations/es/Basic_modeling_tutorial.md b/wiki/translations/es/Basic_modeling_tutorial.md index 6f00fe0a66..2bb8dc8bb7 100644 --- a/wiki/translations/es/Basic_modeling_tutorial.md +++ b/wiki/translations/es/Basic_modeling_tutorial.md @@ -1,5 +1,5 @@ # Basic modeling tutorial/es - {{TutorialInfo/es +{{TutorialInfo/es |Topic= Introducción a la modelización |Level= Principiante |Time= 15 minutos @@ -188,4 +188,7 @@ Las instrucciones de arriba funcionarán, sin importar la etiqueta que tenga el {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Basic modeling tutorial/es diff --git a/wiki/translations/es/Branding.md b/wiki/translations/es/Branding.md index 1ae9979d5f..56b8bdf76b 100644 --- a/wiki/translations/es/Branding.md +++ b/wiki/translations/es/Branding.md @@ -1,10 +1,4 @@ # Branding/es - - - - - - {{TOCright}} ## Overview @@ -120,3 +114,6 @@ All listed tags are optional. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Branding/es diff --git a/wiki/translations/es/Builtin_modules.md b/wiki/translations/es/Builtin_modules.md index 75d543845e..a22d873b21 100644 --- a/wiki/translations/es/Builtin_modules.md +++ b/wiki/translations/es/Builtin_modules.md @@ -1,5 +1,5 @@ # Builtin modules/es - **(October 2019) Do not edit these pages. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself by following [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit these pages. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself by following [Source documentation](Source_documentation.md).** Esta página presenta información más detallada sobre los módulos incorporados en FreeCAD, y cuales son las funciones y propiedades disponibles para ti. Esta página no es una lista completa de todo el contenido de estos módulos, y, debido a la rápida evolución de FreeCAD, la información presentada aquí podría estar ligeramente anticuada, pero debería darte un buen punto de vista de sus posibilidades. Para ver una lista completa del contenido de los módulos, utiliza la función dir(module) en el interprete. @@ -29,3 +29,6 @@ Esta página presenta información más detallada sobre los módulos incorporado }} [Category:API](Category:API.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Builtin modules/es diff --git a/wiki/translations/es/CAM_project.md b/wiki/translations/es/CAM_project.md index 8bc8579ce3..7715d85708 100644 --- a/wiki/translations/es/CAM_project.md +++ b/wiki/translations/es/CAM_project.md @@ -1,7 +1,10 @@ # CAM project/es - The CAM workbench and project is deprecated. See instead [Path Workbench](Path_Workbench.md) +The CAM workbench and project is deprecated. See instead [Path Workbench](Path_Workbench.md) [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > CAM project/es diff --git a/wiki/translations/es/Category:API.md b/wiki/translations/es/Category:API.md index f9b384bb18..1b47da53c8 100644 --- a/wiki/translations/es/Category:API.md +++ b/wiki/translations/es/Category:API.md @@ -6,3 +6,6 @@ Esta categoría recopila artículos que listan objetos y métodos disponibles pa [Base API/es](Base_API/es.md) , [Builtin modules/es](Builtin_modules/es.md) , [Console API/es](Console_API/es.md) , [Draft API/es](Draft_API/es.md) , [FreeCAD API/es](FreeCAD_API/es.md) , [FreeCADGui API/es](FreeCADGui_API/es.md) , [Matrix API/es](Matrix_API/es.md) , [Mesh API/es](Mesh_API/es.md) , [Object API/es](Object_API/es.md) , [Part API/es](Part_API/es.md) , [Placement API/es](Placement_API/es.md) , [Selection API/es](Selection_API/es.md) , [TopoShape API/es](TopoShape_API/es.md) , [Vector API/es](Vector_API/es.md) , [ViewObject API/es](ViewObject_API/es.md) [Category:Categories/es](Category:Categories/es.md) + +--- +[documentation index](../README.md) > Category:API/es diff --git a/wiki/translations/es/Category:API_Documentation.md b/wiki/translations/es/Category:API_Documentation.md index 85e69ec7f5..9f1613273f 100644 --- a/wiki/translations/es/Category:API_Documentation.md +++ b/wiki/translations/es/Category:API_Documentation.md @@ -6,3 +6,6 @@ This category gathers all articles documenting the python API of FreeCAD and its [Python/es](Python/es.md) [Category:Documentation/es](Category:Documentation/es.md) + +--- +[documentation index](../README.md) > Category:API Documentation/es diff --git a/wiki/translations/es/Category:Addons.md b/wiki/translations/es/Category:Addons.md index d6ab1e2a0f..2f63e381fd 100644 --- a/wiki/translations/es/Category:Addons.md +++ b/wiki/translations/es/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/es - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [A2plus Workbench/es](A2plus_Workbench/es.md) , [Addon/es](Addon/es.md) , [Animation Workbench/es](Animation_Workbench/es.md) , [Assembly3 Workbench/es](Assembly3_Workbench/es.md) , [Assembly4 Workbench/es](Assembly4_Workbench/es.md) , [BIM Workbench/es](BIM_Workbench/es.md) , [Civil Engineering Workbench/es](Civil_Engineering_Workbench/es.md) , [External workbenches/es](External_workbenches/es.md) , [FCGear Workbench/es](FCGear_Workbench/es.md) , [How to install additional workbenches/es](How_to_install_additional_workbenches/es.md) , [KicadStepUp Workbench/es](KicadStepUp_Workbench/es.md) , [PCB Workbench/es](PCB_Workbench/es.md) , [Plot Axes/es](Plot_Axes/es.md) , [Plot Basic tutorial/es](Plot_Basic_tutorial/es.md) , [Plot Grid/es](Plot_Grid/es.md) , [Plot Labels/es](Plot_Labels/es.md) , [Plot Legend/es](Plot_Legend/es.md) , [Plot Module/es](Plot_Module/es.md) , [Plot MultiAxes tutorial/es](Plot_MultiAxes_tutorial/es.md) , [Plot Positions/es](Plot_Positions/es.md) , [Plot Save/es](Plot_Save/es.md) , [Plot Series/es](Plot_Series/es.md) , [Render project/es](Render_project/es.md) , [Ship Workbench/es](Ship_Workbench/es.md) , [Symbols Library Workbench/es](Symbols_Library_Workbench/es.md) , [WebTools Workbench/es](WebTools_Workbench/es.md) , [Category:Categories](Category:Categories.md) [Category:External Workbenches/es](Category:External_Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Addons/es diff --git a/wiki/translations/es/Category:Administration.md b/wiki/translations/es/Category:Administration.md index e4d261d9b7..dddb3a1bb1 100644 --- a/wiki/translations/es/Category:Administration.md +++ b/wiki/translations/es/Category:Administration.md @@ -6,3 +6,6 @@ Esta categoría contiene artículos y categorías sobre temas de administración [Template:Arch Tools navi/es](Template:Arch_Tools_navi/es.md) , [Changelog/es](Changelog/es.md) , [Template:Drawing Tools navi/es](Template:Drawing_Tools_navi/es.md) , [Template:FEM Tools navi/es](Template:FEM_Tools_navi/es.md) , [Template:Mesh Tools navi/es](Template:Mesh_Tools_navi/es.md) , [Template:OpenSCAD Tools navi/es](Template:OpenSCAD_Tools_navi/es.md) , [Organization chart/es](Organization_chart/es.md) , [Template:Part Tools navi/es](Template:Part_Tools_navi/es.md) , [Template:PartDesign Tools navi/es](Template:PartDesign_Tools_navi/es.md) , [Template:Path Tools navi/es](Template:Path_Tools_navi/es.md) , [Template:Plot Tools navi/es](Template:Plot_Tools_navi/es.md) , [Template:Powerdocnavi/es](Template:Powerdocnavi/es.md) , [Template:PropertyData/es](Template:PropertyData/es.md) , [Template:PropertyView/es](Template:PropertyView/es.md) , [Template:Raytracing Tools navi/es](Template:Raytracing_Tools_navi/es.md) , [Template:Robot Tools navi/es](Template:Robot_Tools_navi/es.md) , [Template:Ship Tools navi/es](Template:Ship_Tools_navi/es.md) , [Template:Sketcher Tools navi/es](Template:Sketcher_Tools_navi/es.md) , [Template:Std Base navi/es](Template:Std_Base_navi/es.md) , [Template:Std Base/es](Template:Std_Base/es.md) , [Tracker/es](Tracker/es.md) , [WikiPages/es](WikiPages/es.md) , [Category:Categories/es](Category:Categories/es.md) [Category:Wiki/es](Category:Wiki/es.md) + +--- +[documentation index](../README.md) > Category:Administration/es diff --git a/wiki/translations/es/Category:Arch.md b/wiki/translations/es/Category:Arch.md index 009d8a01f2..39b01526ac 100644 --- a/wiki/translations/es/Category:Arch.md +++ b/wiki/translations/es/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Arch 3Views/es](Arch_3Views/es.md) , [Arch Add/es](Arch_Add/es.md) , [Arch Axis/es](Arch_Axis/es.md) , [Arch AxisSystem/es](Arch_AxisSystem/es.md) , [Arch Building/es](Arch_Building/es.md) , [Arch BuildingPart/es](Arch_BuildingPart/es.md) , [Arch Check/es](Arch_Check/es.md) , [Arch CloneComponent/es](Arch_CloneComponent/es.md) , [Arch CloseHoles/es](Arch_CloseHoles/es.md) , [Arch Component/es](Arch_Component/es.md) , [Arch CompRebarStraight/es](Arch_CompRebarStraight/es.md) , [Arch CurtainWall/es](Arch_CurtainWall/es.md) , [Arch CutPlane/es](Arch_CutPlane/es.md) , [Arch DAE/es](Arch_DAE/es.md) , [Arch Equipment/es](Arch_Equipment/es.md) , [Arch Floor/es](Arch_Floor/es.md) , [Arch Frame/es](Arch_Frame/es.md) , [Arch Grid/es](Arch_Grid/es.md) , [Arch IFC/es](Arch_IFC/es.md) , [Arch IfcExplorer/es](Arch_IfcExplorer/es.md) , [Arch MeshToShape/es](Arch_MeshToShape/es.md) , [Arch MultiMaterial/es](Arch_MultiMaterial/es.md) , [Arch Nest/es](Arch_Nest/es.md) , [Arch OBJ/es](Arch_OBJ/es.md) , [Arch Panel Cut/es](Arch_Panel_Cut/es.md) , [Arch Panel Sheet/es](Arch_Panel_Sheet/es.md) , [Arch Panel/es](Arch_Panel/es.md) , [Arch Pipe/es](Arch_Pipe/es.md) , [Arch PipeConnector/es](Arch_PipeConnector/es.md) , [Arch Profile/es](Arch_Profile/es.md) , [Arch Project/es](Arch_Project/es.md) , [Arch Rebar BentShape/es](Arch_Rebar_BentShape/es.md) , [Arch Rebar Helical/es](Arch_Rebar_Helical/es.md) , [Arch Rebar LShape/es](Arch_Rebar_LShape/es.md) , [Arch Rebar Stirrup/es](Arch_Rebar_Stirrup/es.md) , [Arch Rebar Straight/es](Arch_Rebar_Straight/es.md) , [Arch Rebar UShape/es](Arch_Rebar_UShape/es.md) , [Arch Rebar/es](Arch_Rebar/es.md) , [Arch Reference/es](Arch_Reference/es.md) , [Arch Remove/es](Arch_Remove/es.md) , [Arch RemoveShape/es](Arch_RemoveShape/es.md) , [Arch Roof/es](Arch_Roof/es.md) , [Arch SectionPlane/es](Arch_SectionPlane/es.md) , [Arch SelectNonSolidMeshes/es](Arch_SelectNonSolidMeshes/es.md) , [Arch SetMaterial/es](Arch_SetMaterial/es.md) , [Arch Site/es](Arch_Site/es.md) , [Arch Space/es](Arch_Space/es.md) , [Arch SplitMesh/es](Arch_SplitMesh/es.md) , [Arch Stairs/es](Arch_Stairs/es.md) , [Arch Structure/es](Arch_Structure/es.md) , [Arch Survey/es](Arch_Survey/es.md) , [Arch ToggleIfcBrepFlag/es](Arch_ToggleIfcBrepFlag/es.md) , [Arch ToggleSubs/es](Arch_ToggleSubs/es.md) , [Template:Arch Tools navi/es](Template:Arch_Tools_navi/es.md) , [Arch Truss/es](Arch_Truss/es.md) , [Arch tutorial/es](Arch_tutorial/es.md) , [Arch Wall/es](Arch_Wall/es.md) , [Arch Window/es](Arch_Window/es.md) , [Arch Workbench/es](Arch_Workbench/es.md) , [BIM Library/es](BIM_Library/es.md) , [Custom Spacing/es](Custom_Spacing/es.md) , [IfcOpenShell/es](IfcOpenShell/es.md) , [Import/Export IFC - compiling IfcOpenShell/es](Import/Export_IFC_-_compiling_IfcOpenShell/es.md) , [Manual:BIM modeling/es](Manual:BIM_modeling/es.md) , [Material/es](Material/es.md) , [Category:User Documentation/es](Category:User_Documentation/es.md) [Category:BIM/es](Category:BIM/es.md) [Category:Reinforcement/es](Category:Reinforcement/es.md) + +--- +[documentation index](../README.md) > Category:Arch/es diff --git a/wiki/translations/es/Category:Artwork.md b/wiki/translations/es/Category:Artwork.md index 83253cc93b..3c333d4a44 100644 --- a/wiki/translations/es/Category:Artwork.md +++ b/wiki/translations/es/Category:Artwork.md @@ -4,3 +4,6 @@ This category collects pages related to artwork existing in the program, like ic ### Contents: [Category:Developer Documentation/es](Category:Developer_Documentation/es.md) [Category:Icon/es](Category:Icon/es.md) + +--- +[documentation index](../README.md) > Category:Artwork/es diff --git a/wiki/translations/es/Category:BIM.md b/wiki/translations/es/Category:BIM.md index 9b7340ace4..fd32fd69cb 100644 --- a/wiki/translations/es/Category:BIM.md +++ b/wiki/translations/es/Category:BIM.md @@ -6,3 +6,6 @@ This category is for pages related to building information management (BIM). [Arch IfcExplorer/es](Arch_IfcExplorer/es.md) , [BIM application compatibility table/es](BIM_application_compatibility_table/es.md) , [BIM Library/es](BIM_Library/es.md) , [BIM Workbench/es](BIM_Workbench/es.md) , [IfcOpenShell/es](IfcOpenShell/es.md) , [Import/Export IFC - compiling IfcOpenShell/es](Import/Export_IFC_-_compiling_IfcOpenShell/es.md) , [Manual:BIM modeling/es](Manual:BIM_modeling/es.md) , [Material/es](Material/es.md) , [Category:User Documentation/es](Category:User_Documentation/es.md) [Category:Arch/es](Category:Arch/es.md) + +--- +[documentation index](../README.md) > Category:BIM/es diff --git a/wiki/translations/es/Category:Base.md b/wiki/translations/es/Category:Base.md index 2049ab62e8..acea3cfff3 100644 --- a/wiki/translations/es/Category:Base.md +++ b/wiki/translations/es/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/es](Category:User_Documentation/es.md) + +--- +[documentation index](../README.md) > Category:Base/es diff --git a/wiki/translations/es/Category:Categories.md b/wiki/translations/es/Category:Categories.md index 4f1602cab4..fabc490620 100644 --- a/wiki/translations/es/Category:Categories.md +++ b/wiki/translations/es/Category:Categories.md @@ -11,3 +11,6 @@ Esta es la **categoría de nivel superior** que contiene las principales categor , , , , , , , , , , , , , , , , , [Category:Categories/es](Category:Categories/es.md) [Category:Addons/es](Category:Addons/es.md) [Category:Administration/es](Category:Administration/es.md) [Category:API/es](Category:API/es.md) [Category:Categories/es](Category:Categories/es.md) [Category:Command Reference/es](Category:Command_Reference/es.md) [Category:Developer/es](Category:Developer/es.md) [Category:Documentation/es](Category:Documentation/es.md) [Category:Help/es](Category:Help/es.md) [Category:Hubs/es](Category:Hubs/es.md) [Category:Image/es](Category:Image/es.md) [Category:Macros/es](Category:Macros/es.md) [Category:News/es](Category:News/es.md) [Category:Python Code/es](Category:Python_Code/es.md) [Category:Repository/es](Category:Repository/es.md) [Category:Roadmap/es](Category:Roadmap/es.md) [Category:Template/es](Category:Template/es.md) [Category:Tutorials/es](Category:Tutorials/es.md) [Category:Wiki/es](Category:Wiki/es.md) + +--- +[documentation index](../README.md) > Category:Categories/es diff --git a/wiki/translations/es/Category:Command_Reference.md b/wiki/translations/es/Category:Command_Reference.md index 58b585d878..d7916bd540 100644 --- a/wiki/translations/es/Category:Command_Reference.md +++ b/wiki/translations/es/Category:Command_Reference.md @@ -6,3 +6,6 @@ Esta categoría contiene las páginas de ayuda de cada comando de FreeCAD. [Arch 3Views/es](Arch_3Views/es.md) , [Arch Add/es](Arch_Add/es.md) , [Arch Axis/es](Arch_Axis/es.md) , [Arch AxisSystem/es](Arch_AxisSystem/es.md) , [Arch Building/es](Arch_Building/es.md) , [Arch BuildingPart/es](Arch_BuildingPart/es.md) , [Arch Check/es](Arch_Check/es.md) , [Arch CloneComponent/es](Arch_CloneComponent/es.md) , [Arch CloseHoles/es](Arch_CloseHoles/es.md) , [Arch Component/es](Arch_Component/es.md) , [Arch CompRebarStraight/es](Arch_CompRebarStraight/es.md) , [Arch CurtainWall/es](Arch_CurtainWall/es.md) , [Arch CutPlane/es](Arch_CutPlane/es.md) , [Arch Equipment/es](Arch_Equipment/es.md) , [Arch Floor/es](Arch_Floor/es.md) , [Arch Frame/es](Arch_Frame/es.md) , [Arch Grid/es](Arch_Grid/es.md) , [Arch IfcExplorer/es](Arch_IfcExplorer/es.md) , [Arch MeshToShape/es](Arch_MeshToShape/es.md) , [Arch MultiMaterial/es](Arch_MultiMaterial/es.md) , [Arch Nest/es](Arch_Nest/es.md) , [Arch Panel Cut/es](Arch_Panel_Cut/es.md) , [Arch Panel Sheet/es](Arch_Panel_Sheet/es.md) , [Arch Panel/es](Arch_Panel/es.md) , [Arch Pipe/es](Arch_Pipe/es.md) , [Arch PipeConnector/es](Arch_PipeConnector/es.md) , [Arch Profile/es](Arch_Profile/es.md) , [Arch Project/es](Arch_Project/es.md) , [Arch Rebar BentShape/es](Arch_Rebar_BentShape/es.md) , [Arch Rebar Helical/es](Arch_Rebar_Helical/es.md) , [Arch Rebar LShape/es](Arch_Rebar_LShape/es.md) , [Arch Rebar Stirrup/es](Arch_Rebar_Stirrup/es.md) , [Arch Rebar Straight/es](Arch_Rebar_Straight/es.md) , [Arch Rebar UShape/es](Arch_Rebar_UShape/es.md) , [Arch Rebar/es](Arch_Rebar/es.md) , [Arch Reference/es](Arch_Reference/es.md) , [Arch Remove/es](Arch_Remove/es.md) , [Arch RemoveShape/es](Arch_RemoveShape/es.md) , [Arch Roof/es](Arch_Roof/es.md) , [Arch SectionPlane/es](Arch_SectionPlane/es.md) , [Arch SelectNonSolidMeshes/es](Arch_SelectNonSolidMeshes/es.md) , [Arch SetMaterial/es](Arch_SetMaterial/es.md) , [Arch Site/es](Arch_Site/es.md) , [Arch Space/es](Arch_Space/es.md) , [Arch SplitMesh/es](Arch_SplitMesh/es.md) , [Arch Stairs/es](Arch_Stairs/es.md) , [Arch Structure/es](Arch_Structure/es.md) , [Arch Survey/es](Arch_Survey/es.md) , [Arch ToggleIfcBrepFlag/es](Arch_ToggleIfcBrepFlag/es.md) , [Arch ToggleSubs/es](Arch_ToggleSubs/es.md) , [Arch Truss/es](Arch_Truss/es.md) , [Arch Wall/es](Arch_Wall/es.md) , [Arch Window/es](Arch_Window/es.md) , [BIM Box/es](BIM_Box/es.md) , [BIM Copy/es](BIM_Copy/es.md) , [BIM Library/es](BIM_Library/es.md) , [BIM Project/es](BIM_Project/es.md) , [BIM Setup/es](BIM_Setup/es.md) , [Draft AddConstruction/es](Draft_AddConstruction/es.md) , [Draft AddToGroup/es](Draft_AddToGroup/es.md) , [Draft AnnotationStyleEditor/es](Draft_AnnotationStyleEditor/es.md) , [Draft ApplyStyle/es](Draft_ApplyStyle/es.md) , [Draft Arc/es](Draft_Arc/es.md) , [Draft Array/es](Draft_Array/es.md) , [Draft AutoGroup/es](Draft_AutoGroup/es.md) , [Draft BezCurve/es](Draft_BezCurve/es.md) , [Draft BSpline/es](Draft_BSpline/es.md) , [Draft Circle/es](Draft_Circle/es.md) , [Draft CircularArray/es](Draft_CircularArray/es.md) , [Draft Clone/es](Draft_Clone/es.md) , [Draft CubicBezCurve/es](Draft_CubicBezCurve/es.md) , [Draft Dimension/es](Draft_Dimension/es.md) , [Draft Downgrade/es](Draft_Downgrade/es.md) , [Draft Draft2Sketch/es](Draft_Draft2Sketch/es.md) , [Draft Drawing/es](Draft_Drawing/es.md) , [Draft Edit/es](Draft_Edit/es.md) , [Draft Ellipse/es](Draft_Ellipse/es.md) , [Draft Facebinder/es](Draft_Facebinder/es.md) , [Draft FlipDimension/es](Draft_FlipDimension/es.md) , [Draft Heal/es](Draft_Heal/es.md) , [Draft Label/es](Draft_Label/es.md) , [Draft Line/es](Draft_Line/es.md) , [Draft Mirror/es](Draft_Mirror/es.md) , [Draft Move/es](Draft_Move/es.md) , [Draft Offset/es](Draft_Offset/es.md) , [Draft OrthoArray/es](Draft_OrthoArray/es.md) , [Draft PathArray/es](Draft_PathArray/es.md) , [Draft Point/es](Draft_Point/es.md) , [Draft PointArray/es](Draft_PointArray/es.md) , [Draft PolarArray/es](Draft_PolarArray/es.md) , [Draft Polygon/es](Draft_Polygon/es.md) , [Draft Rectangle/es](Draft_Rectangle/es.md) , [Draft Rotate/es](Draft_Rotate/es.md) , [Draft Scale/es](Draft_Scale/es.md) , [Draft SelectGroup/es](Draft_SelectGroup/es.md) , [Draft SelectPlane/es](Draft_SelectPlane/es.md) , [Draft Shape2DView/es](Draft_Shape2DView/es.md) , [Draft ShapeString/es](Draft_ShapeString/es.md) , [Draft ShowSnapBar/es](Draft_ShowSnapBar/es.md) , [Draft Slope/es](Draft_Slope/es.md) , [Draft Snap Angle/es](Draft_Snap_Angle/es.md) , [Draft Snap Center/es](Draft_Snap_Center/es.md) , [Draft Snap Extension/es](Draft_Snap_Extension/es.md) , [Draft Snap Intersection/es](Draft_Snap_Intersection/es.md) , [Draft Snap Lock/es](Draft_Snap_Lock/es.md) , [Draft Snap Midpoint/es](Draft_Snap_Midpoint/es.md) , [Draft Snap Ortho/es](Draft_Snap_Ortho/es.md) , [Draft Snap Parallel/es](Draft_Snap_Parallel/es.md) , [Draft Stretch/es](Draft_Stretch/es.md) , [Draft Text/es](Draft_Text/es.md) , [Draft ToggleConstructionMode/es](Draft_ToggleConstructionMode/es.md) , [Draft ToggleContinueMode/es](Draft_ToggleContinueMode/es.md) , [Draft ToggleDisplayMode/es](Draft_ToggleDisplayMode/es.md) , [Draft ToggleGrid/es](Draft_ToggleGrid/es.md) , [Draft Trimex/es](Draft_Trimex/es.md) , [Draft Upgrade/es](Draft_Upgrade/es.md) , [Draft Wire/es](Draft_Wire/es.md) , [Draft WireToBSpline/es](Draft_WireToBSpline/es.md) , [Draft WorkingPlaneProxy/es](Draft_WorkingPlaneProxy/es.md) , [Drawing Annotation/es](Drawing_Annotation/es.md) , [Drawing Clip/es](Drawing_Clip/es.md) , [Drawing Landscape A3/es](Drawing_Landscape_A3/es.md) , [Drawing Open SVG/es](Drawing_Open_SVG/es.md) , [Drawing Orthoviews/es](Drawing_Orthoviews/es.md) , [Drawing Save/es](Drawing_Save/es.md) , [Drawing View/es](Drawing_View/es.md) , [FEM MaterialSolid/es](FEM_MaterialSolid/es.md) , [FEM PostPipelineFromResult/es](FEM_PostPipelineFromResult/es.md) , [FEM SolverCalculixCxxtools/es](FEM_SolverCalculixCxxtools/es.md) , [GuiCommand model/es](GuiCommand_model/es.md) , [Template:GuiCommand/es](Template:GuiCommand/es.md) , [Template:GuiCommandAddon/es](Template:GuiCommandAddon/es.md) , [Image CreateImagePlane/es](Image_CreateImagePlane/es.md) , [Image Open/es](Image_Open/es.md) , [OpenSCAD AddOpenSCADElement/es](OpenSCAD_AddOpenSCADElement/es.md) , [OpenSCAD ColorCodeShape/es](OpenSCAD_ColorCodeShape/es.md) , [OpenSCAD Edgestofaces/es](OpenSCAD_Edgestofaces/es.md) , [OpenSCAD ExpandPlacements/es](OpenSCAD_ExpandPlacements/es.md) , [OpenSCAD IncreaseToleranceFeature/es](OpenSCAD_IncreaseToleranceFeature/es.md) , [OpenSCAD RefineShapeFeature/es](OpenSCAD_RefineShapeFeature/es.md) , [OpenSCAD RemoveSubtree/es](OpenSCAD_RemoveSubtree/es.md) , [OpenSCAD ReplaceObject/es](OpenSCAD_ReplaceObject/es.md) , [Part Boolean/es](Part_Boolean/es.md) , [Part Box/es](Part_Box/es.md) , [Part Builder/es](Part_Builder/es.md) , [Part Chamfer/es](Part_Chamfer/es.md) , [Part CheckGeometry/es](Part_CheckGeometry/es.md) , [Part Circle/es](Part_Circle/es.md) , [Part Common/es](Part_Common/es.md) , [Part CompCompoundTools/es](Part_CompCompoundTools/es.md) , [Part Compound/es](Part_Compound/es.md) , [Part CompoundFilter/es](Part_CompoundFilter/es.md) , [Part Cone/es](Part_Cone/es.md) , [Part CrossSections/es](Part_CrossSections/es.md) , [Part Cut/es](Part_Cut/es.md) , [Part Cylinder/es](Part_Cylinder/es.md) , [Part Ellipse/es](Part_Ellipse/es.md) , [Part Ellipsoid/es](Part_Ellipsoid/es.md) , [Part ExplodeCompound/es](Part_ExplodeCompound/es.md) , [Part Extrude/es](Part_Extrude/es.md) , [Part Fillet/es](Part_Fillet/es.md) , [Part Fuse/es](Part_Fuse/es.md) , [Part Helix/es](Part_Helix/es.md) , [Part Line/es](Part_Line/es.md) , [Part Mirror/es](Part_Mirror/es.md) , [Part Plane/es](Part_Plane/es.md) , [Part Point/es](Part_Point/es.md) , [Part Primitives/es](Part_Primitives/es.md) , [Part Prism/es](Part_Prism/es.md) , [Part ProjectionOnSurface/es](Part_ProjectionOnSurface/es.md) , [Part RegularPolygon/es](Part_RegularPolygon/es.md) , [Part Revolve/es](Part_Revolve/es.md) , [Part Section/es](Part_Section/es.md) , [Part Sphere/es](Part_Sphere/es.md) , [Part Spiral/es](Part_Spiral/es.md) , [Part Sweep/es](Part_Sweep/es.md) , [Part Thickness/es](Part_Thickness/es.md) , [Part Torus/es](Part_Torus/es.md) , [Part Tube/es](Part_Tube/es.md) , [Part Wedge/es](Part_Wedge/es.md) , [PartDesign AdditiveBox/es](PartDesign_AdditiveBox/es.md) , [PartDesign AdditiveCone/es](PartDesign_AdditiveCone/es.md) , [PartDesign AdditiveCylinder/es](PartDesign_AdditiveCylinder/es.md) , [PartDesign AdditiveEllipsoid/es](PartDesign_AdditiveEllipsoid/es.md) , [PartDesign AdditiveHelix/es](PartDesign_AdditiveHelix/es.md) , [PartDesign AdditiveLoft/es](PartDesign_AdditiveLoft/es.md) , [PartDesign AdditivePipe/es](PartDesign_AdditivePipe/es.md) , [PartDesign AdditivePrism/es](PartDesign_AdditivePrism/es.md) , [PartDesign AdditiveSphere/es](PartDesign_AdditiveSphere/es.md) , [PartDesign AdditiveTorus/es](PartDesign_AdditiveTorus/es.md) , [PartDesign AdditiveWedge/es](PartDesign_AdditiveWedge/es.md) , [PartDesign Body/es](PartDesign_Body/es.md) , [PartDesign Chamfer/es](PartDesign_Chamfer/es.md) , [PartDesign Clone/es](PartDesign_Clone/es.md) , [PartDesign CompPrimitiveAdditive/es](PartDesign_CompPrimitiveAdditive/es.md) , [PartDesign CompPrimitiveSubtractive/es](PartDesign_CompPrimitiveSubtractive/es.md) , [PartDesign Draft/es](PartDesign_Draft/es.md) , [PartDesign Fillet/es](PartDesign_Fillet/es.md) , [PartDesign Groove/es](PartDesign_Groove/es.md) , [PartDesign Hole/es](PartDesign_Hole/es.md) , [PartDesign InvoluteGear/es](PartDesign_InvoluteGear/es.md) , [PartDesign Line/es](PartDesign_Line/es.md) , [PartDesign LinearPattern/es](PartDesign_LinearPattern/es.md) , [PartDesign Migrate/es](PartDesign_Migrate/es.md) , [PartDesign Mirrored/es](PartDesign_Mirrored/es.md) , [PartDesign MultiTransform/es](PartDesign_MultiTransform/es.md) , [PartDesign NewSketch/es](PartDesign_NewSketch/es.md) , [PartDesign Pad/es](PartDesign_Pad/es.md) , [PartDesign Plane/es](PartDesign_Plane/es.md) , [PartDesign Pocket/es](PartDesign_Pocket/es.md) , [PartDesign Point/es](PartDesign_Point/es.md) , [PartDesign PolarPattern/es](PartDesign_PolarPattern/es.md) , [PartDesign Revolution/es](PartDesign_Revolution/es.md) , [PartDesign Scaled/es](PartDesign_Scaled/es.md) , [PartDesign ShapeBinder/es](PartDesign_ShapeBinder/es.md) , [PartDesign Sprocket/es](PartDesign_Sprocket/es.md) , [PartDesign SubtractiveBox/es](PartDesign_SubtractiveBox/es.md) , [PartDesign SubtractiveCone/es](PartDesign_SubtractiveCone/es.md) , [PartDesign SubtractiveCylinder/es](PartDesign_SubtractiveCylinder/es.md) , [PartDesign SubtractiveEllipsoid/es](PartDesign_SubtractiveEllipsoid/es.md) , [PartDesign SubtractivePipe/es](PartDesign_SubtractivePipe/es.md) , [PartDesign SubtractivePrism/es](PartDesign_SubtractivePrism/es.md) , [PartDesign SubtractiveSphere/es](PartDesign_SubtractiveSphere/es.md) , [PartDesign SubtractiveTorus/es](PartDesign_SubtractiveTorus/es.md) , [PartDesign SubtractiveWedge/es](PartDesign_SubtractiveWedge/es.md) , [PartDesign Thickness/es](PartDesign_Thickness/es.md) , [PartDesign WizardShaft/es](PartDesign_WizardShaft/es.md) , [Path Array/es](Path_Array/es.md) , [Path Fixture/es](Path_Fixture/es.md) , [Path Job/es](Path_Job/es.md) , [Path Pocket 3D/es](Path_Pocket_3D/es.md) , [Plot Axes/es](Plot_Axes/es.md) , [Plot Grid/es](Plot_Grid/es.md) , [Plot Labels/es](Plot_Labels/es.md) , [Plot Legend/es](Plot_Legend/es.md) , [Plot Positions/es](Plot_Positions/es.md) , [Plot Save/es](Plot_Save/es.md) , [Plot Series/es](Plot_Series/es.md) , [Raytracing New/es](Raytracing_New/es.md) , [Raytracing WriteCamera/es](Raytracing_WriteCamera/es.md) , [Raytracing WritePart/es](Raytracing_WritePart/es.md) , [Raytracing WriteView/es](Raytracing_WriteView/es.md) , [Robot CreateRobot/es](Robot_CreateRobot/es.md) , [Robot CreateTrajectory/es](Robot_CreateTrajectory/es.md) , [Robot Edge2Trac/es](Robot_Edge2Trac/es.md) , [Robot Export/es](Robot_Export/es.md) , [Robot InsertWaypoint/es](Robot_InsertWaypoint/es.md) , [Robot InsertWaypointPre/es](Robot_InsertWaypointPre/es.md) , [Robot RestoreHomePos/es](Robot_RestoreHomePos/es.md) , [Robot SetDefaultOrientation/es](Robot_SetDefaultOrientation/es.md) , [Robot SetDefaultValues/es](Robot_SetDefaultValues/es.md) , [Robot SetHomePos/es](Robot_SetHomePos/es.md) , [Robot Simulate/es](Robot_Simulate/es.md) , [Robot TrajectoryCompound/es](Robot_TrajectoryCompound/es.md) , [Robot TrajectoryDressUp/es](Robot_TrajectoryDressUp/es.md) , [Ship Area/es](Ship_Area/es.md) , [Ship Geometries Examples/es](Ship_Geometries_Examples/es.md) , [Ship Hydrostatics/es](Ship_Hydrostatics/es.md) , [Ship New/es](Ship_New/es.md) , [Ship Outline/es](Ship_Outline/es.md) , [Sketcher CarbonCopy/es](Sketcher_CarbonCopy/es.md) , [Sketcher Clone/es](Sketcher_Clone/es.md) , [Sketcher CloseShape/es](Sketcher_CloseShape/es.md) , [Sketcher CompCreateArc/es](Sketcher_CompCreateArc/es.md) , [Sketcher CompCreateBSpline/es](Sketcher_CompCreateBSpline/es.md) , [Sketcher CompCreateCircle/es](Sketcher_CompCreateCircle/es.md) , [Sketcher CompCreateConic/es](Sketcher_CompCreateConic/es.md) , [Sketcher CompCreateRegularPolygon/es](Sketcher_CompCreateRegularPolygon/es.md) , [Sketcher ConnectLines/es](Sketcher_ConnectLines/es.md) , [Sketcher ConstrainAngle/es](Sketcher_ConstrainAngle/es.md) , [Sketcher ConstrainBlock/es](Sketcher_ConstrainBlock/es.md) , [Sketcher ConstrainCoincident/es](Sketcher_ConstrainCoincident/es.md) , [Sketcher ConstrainDiameter/es](Sketcher_ConstrainDiameter/es.md) , [Sketcher ConstrainDistance/es](Sketcher_ConstrainDistance/es.md) , [Sketcher ConstrainDistanceX/es](Sketcher_ConstrainDistanceX/es.md) , [Sketcher ConstrainDistanceY/es](Sketcher_ConstrainDistanceY/es.md) , [Sketcher ConstrainEqual/es](Sketcher_ConstrainEqual/es.md) , [Sketcher ConstrainHorizontal/es](Sketcher_ConstrainHorizontal/es.md) , [Sketcher ConstrainInternalAlignment/es](Sketcher_ConstrainInternalAlignment/es.md) , [Sketcher ConstrainLock/es](Sketcher_ConstrainLock/es.md) , [Sketcher ConstrainParallel/es](Sketcher_ConstrainParallel/es.md) , [Sketcher ConstrainPerpendicular/es](Sketcher_ConstrainPerpendicular/es.md) , [Sketcher ConstrainPointOnObject/es](Sketcher_ConstrainPointOnObject/es.md) , [Sketcher ConstrainRadius/es](Sketcher_ConstrainRadius/es.md) , [Sketcher ConstrainSnellsLaw/es](Sketcher_ConstrainSnellsLaw/es.md) , [Sketcher ConstrainSymmetric/es](Sketcher_ConstrainSymmetric/es.md) , [Sketcher ConstrainTangent/es](Sketcher_ConstrainTangent/es.md) , [Sketcher ConstrainVertical/es](Sketcher_ConstrainVertical/es.md) , [Sketcher Copy/es](Sketcher_Copy/es.md) , [Sketcher Create3PointArc/es](Sketcher_Create3PointArc/es.md) , [Sketcher Create3PointCircle/es](Sketcher_Create3PointCircle/es.md) , [Sketcher CreateArc/es](Sketcher_CreateArc/es.md) , [Sketcher CreateArcOfEllipse/es](Sketcher_CreateArcOfEllipse/es.md) , [Sketcher CreateArcOfHyperbola/es](Sketcher_CreateArcOfHyperbola/es.md) , [Sketcher CreateArcOfParabola/es](Sketcher_CreateArcOfParabola/es.md) , [Sketcher CreateCircle/es](Sketcher_CreateCircle/es.md) , [Sketcher CreateEllipseByCenter/es](Sketcher_CreateEllipseByCenter/es.md) , [Sketcher CreateFillet/es](Sketcher_CreateFillet/es.md) , [Sketcher CreateHeptagon/es](Sketcher_CreateHeptagon/es.md) , [Sketcher CreateHexagon/es](Sketcher_CreateHexagon/es.md) , [Sketcher CreateLine/es](Sketcher_CreateLine/es.md) , [Sketcher CreateOctagon/es](Sketcher_CreateOctagon/es.md) , [Sketcher CreatePentagon/es](Sketcher_CreatePentagon/es.md) , [Sketcher CreatePoint/es](Sketcher_CreatePoint/es.md) , [Sketcher CreatePolyline/es](Sketcher_CreatePolyline/es.md) , [Sketcher CreateRectangle/es](Sketcher_CreateRectangle/es.md) , [Sketcher CreateRegularPolygon/es](Sketcher_CreateRegularPolygon/es.md) , [Sketcher CreateSlot/es](Sketcher_CreateSlot/es.md) , [Sketcher CreateSquare/es](Sketcher_CreateSquare/es.md) , [Sketcher CreateTriangle/es](Sketcher_CreateTriangle/es.md) , [Sketcher EditSketch/es](Sketcher_EditSketch/es.md) , [Sketcher Extend/es](Sketcher_Extend/es.md) , [Sketcher External/es](Sketcher_External/es.md) , [Sketcher LeaveSketch/es](Sketcher_LeaveSketch/es.md) , [Sketcher MapSketch/es](Sketcher_MapSketch/es.md) , [Sketcher MergeSketches/es](Sketcher_MergeSketches/es.md) , [Sketcher MirrorSketch/es](Sketcher_MirrorSketch/es.md) , [Sketcher Move/es](Sketcher_Move/es.md) , [Sketcher NewSketch/es](Sketcher_NewSketch/es.md) , [Sketcher RectangularArray/es](Sketcher_RectangularArray/es.md) , [Sketcher ReorientSketch/es](Sketcher_ReorientSketch/es.md) , [Sketcher RestoreInternalAlignmentGeometry/es](Sketcher_RestoreInternalAlignmentGeometry/es.md) , [Sketcher SelectConflictingConstraints/es](Sketcher_SelectConflictingConstraints/es.md) , [Sketcher SelectConstraints/es](Sketcher_SelectConstraints/es.md) , [Sketcher SelectElementsAssociatedWithConstraints/es](Sketcher_SelectElementsAssociatedWithConstraints/es.md) , [Sketcher SelectElementsWithDoFs/es](Sketcher_SelectElementsWithDoFs/es.md) , [Sketcher SelectHorizontalAxis/es](Sketcher_SelectHorizontalAxis/es.md) , [Sketcher SelectOrigin/es](Sketcher_SelectOrigin/es.md) , [Sketcher SelectRedundantConstraints/es](Sketcher_SelectRedundantConstraints/es.md) , [Sketcher SelectVerticalAxis/es](Sketcher_SelectVerticalAxis/es.md) , [Sketcher Split/es](Sketcher_Split/es.md) , [Sketcher StopOperation/es](Sketcher_StopOperation/es.md) , [Sketcher Symmetry/es](Sketcher_Symmetry/es.md) , [Sketcher ToggleConstruction/es](Sketcher_ToggleConstruction/es.md) , [Sketcher ToggleDrivingConstraint/es](Sketcher_ToggleDrivingConstraint/es.md) , [Sketcher Trimming/es](Sketcher_Trimming/es.md) , [Sketcher ValidateSketch/es](Sketcher_ValidateSketch/es.md) , [Sketcher ViewSketch/es](Sketcher_ViewSketch/es.md) , [Spreadsheet CreateSheet/es](Spreadsheet_CreateSheet/es.md) , [Spreadsheet Export/es](Spreadsheet_Export/es.md) , [Spreadsheet Import/es](Spreadsheet_Import/es.md) , [Std AddonMgr/es](Std_AddonMgr/es.md) , [Std Delete/es](Std_Delete/es.md) , [Std DependencyGraph/es](Std_DependencyGraph/es.md) , [Std DlgCustomize/es](Std_DlgCustomize/es.md) , [Std Edit/es](Std_Edit/es.md) , [Std Group/es](Std_Group/es.md) , [Std Import/es](Std_Import/es.md) , [Std New/es](Std_New/es.md) , [Std Open/es](Std_Open/es.md) , [Std OrthographicCamera/es](Std_OrthographicCamera/es.md) , [Std Part/es](Std_Part/es.md) , [Std PerspectiveCamera/es](Std_PerspectiveCamera/es.md) , [Std ProjectUtil/es](Std_ProjectUtil/es.md) , [Std Save/es](Std_Save/es.md) , [Std SaveAs/es](Std_SaveAs/es.md) , [Std SceneInspector/es](Std_SceneInspector/es.md) , [Std ToggleClipPlane/es](Std_ToggleClipPlane/es.md) , [Std ViewScreenShot/es](Std_ViewScreenShot/es.md) , [Tasks Placement/es](Tasks_Placement/es.md) , [TechDraw AngleDimension/es](TechDraw_AngleDimension/es.md) , [TechDraw DiameterDimension/es](TechDraw_DiameterDimension/es.md) , [TechDraw ExportPageDXF/es](TechDraw_ExportPageDXF/es.md) , [TechDraw ExportPageSVG/es](TechDraw_ExportPageSVG/es.md) , [TechDraw Hatch/es](TechDraw_Hatch/es.md) , [TechDraw HorizontalDimension/es](TechDraw_HorizontalDimension/es.md) , [TechDraw LengthDimension/es](TechDraw_LengthDimension/es.md) , [TechDraw PageDefault/es](TechDraw_PageDefault/es.md) , [TechDraw PageTemplate/es](TechDraw_PageTemplate/es.md) , [TechDraw ProjectionGroup/es](TechDraw_ProjectionGroup/es.md) , [TechDraw RadiusDimension/es](TechDraw_RadiusDimension/es.md) , [TechDraw RedrawPage/es](TechDraw_RedrawPage/es.md) , [TechDraw SectionView/es](TechDraw_SectionView/es.md) , [TechDraw VerticalDimension/es](TechDraw_VerticalDimension/es.md) , [TechDraw View/es](TechDraw_View/es.md) , [WebTools BimServer/es](WebTools_BimServer/es.md) , [WebTools Git/es](WebTools_Git/es.md) , [WebTools Sketchfab/es](WebTools_Sketchfab/es.md) [Category:Categories/es](Category:Categories/es.md) + +--- +[documentation index](../README.md) > Category:Command Reference/es diff --git a/wiki/translations/es/Category:Common_Questions.md b/wiki/translations/es/Category:Common_Questions.md index ed7f4aabd6..bb99d228c2 100644 --- a/wiki/translations/es/Category:Common_Questions.md +++ b/wiki/translations/es/Category:Common_Questions.md @@ -4,3 +4,6 @@ This category has links to common questions on how to do something in FC. This i ### Contents: [Constructive solid geometry/es](Constructive_solid_geometry/es.md) , [Feature editing/es](Feature_editing/es.md) , [FreeCAD and DWG Import/es](FreeCAD_and_DWG_Import/es.md) , [Help FreeCAD/es](Help_FreeCAD/es.md) , [Import Export Preferences/es](Import_Export_Preferences/es.md) , [Installing on Linux/es](Installing_on_Linux/es.md) , [Topological naming problem/es](Topological_naming_problem/es.md) , [Video tutorials/es](Video_tutorials/es.md) + +--- +[documentation index](../README.md) > Category:Common Questions/es diff --git a/wiki/translations/es/Category:Developer.md b/wiki/translations/es/Category:Developer.md index 477aee2f76..af05aa29fd 100644 --- a/wiki/translations/es/Category:Developer.md +++ b/wiki/translations/es/Category:Developer.md @@ -6,3 +6,6 @@ Esta categoría contiene artículos que son relevantes para los desarrolladores. [Changelog/es](Changelog/es.md) , [Compile on Cygwin/es](Compile_on_Cygwin/es.md) , [Compile on Docker/es](Compile_on_Docker/es.md) , [Compile on Linux/es](Compile_on_Linux/es.md) , [Compile on MacOS/es](Compile_on_MacOS/es.md) , [Compile on MinGW/es](Compile_on_MinGW/es.md) , [Compile on Windows/es](Compile_on_Windows/es.md) , [Compiling (Speeding up)/es](Compiling_(Speeding_up)/es.md) , [Compiling/es](Compiling/es.md) , [Conda/es](Conda/es.md) , [Contributors/es](Contributors/es.md) , [Doxygen/es](Doxygen/es.md) , [File Format FCStd/es](File_Format_FCStd/es.md) , [ImageConv/es](ImageConv/es.md) , [Material/es](Material/es.md) , [Organization chart/es](Organization_chart/es.md) , [Svg Namespace/es](Svg_Namespace/es.md) [Category:Categories/es](Category:Categories/es.md) + +--- +[documentation index](../README.md) > Category:Developer/es diff --git a/wiki/translations/es/Category:Developer_Documentation.md b/wiki/translations/es/Category:Developer_Documentation.md index 2e6e4e4592..0cca69d226 100644 --- a/wiki/translations/es/Category:Developer_Documentation.md +++ b/wiki/translations/es/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ Esta categoría recopila documentación de artículos principalmente dirigidos a [AppImage/es](AppImage/es.md) , [Artwork Guidelines/es](Artwork_Guidelines/es.md) , [Artwork/es](Artwork/es.md) , [Branding/es](Branding/es.md) , [Code snippets/es](Code_snippets/es.md) , [Coin3d snippets/es](Coin3d_snippets/es.md) , [Command/es](Command/es.md) , [Compile on Cygwin/es](Compile_on_Cygwin/es.md) , [Compile on Docker/es](Compile_on_Docker/es.md) , [Compile on Linux/es](Compile_on_Linux/es.md) , [Compile on MacOS/es](Compile_on_MacOS/es.md) , [Compile on MinGW/es](Compile_on_MinGW/es.md) , [Compile on Windows/es](Compile_on_Windows/es.md) , [Compiling (Speeding up)/es](Compiling_(Speeding_up)/es.md) , [Compiling/es](Compiling/es.md) , [Conda/es](Conda/es.md) , [Continuous Integration/es](Continuous_Integration/es.md) , [Debian development/es](Debian_development/es.md) , [Debian Unstable/es](Debian_Unstable/es.md) , [Debugging/es](Debugging/es.md) , [Developer hub/es](Developer_hub/es.md) , [Dialog creation/es](Dialog_creation/es.md) , [Doxygen/es](Doxygen/es.md) , [Drawing templates/es](Drawing_templates/es.md) , [Embedding FreeCAD/es](Embedding_FreeCAD/es.md) , [Embedding FreeCADGui/es](Embedding_FreeCADGui/es.md) , [Extra python modules/es](Extra_python_modules/es.md) , [File Format FCStd/es](File_Format_FCStd/es.md) , [FreeCAD Build Tool/es](FreeCAD_Build_Tool/es.md) , [FreeCAD Scripting Basics/es](FreeCAD_Scripting_Basics/es.md) , [FreeCAD vector math library/es](FreeCAD_vector_math_library/es.md) , [Git buildpackage/es](Git_buildpackage/es.md) , [Help FreeCAD/es](Help_FreeCAD/es.md) , [How to install macros/es](How_to_install_macros/es.md) , [Installing more workbenches/es](Installing_more_workbenches/es.md) , [Installing on Linux/es](Installing_on_Linux/es.md) , [Introduction to Python/es](Introduction_to_Python/es.md) , [Licence/es](Licence/es.md) , [Line drawing function/es](Line_drawing_function/es.md) , [Linux packaging/es](Linux_packaging/es.md) , [Localisation/es](Localisation/es.md) , [Macros/es](Macros/es.md) , [Manual:A gentle introduction/es](Manual:A_gentle_introduction/es.md) , [Manual:Creating and manipulating geometry/es](Manual:Creating_and_manipulating_geometry/es.md) , [Material/es](Material/es.md) , [Mesh Scripting/es](Mesh_Scripting/es.md) , [Mesh to Part/es](Mesh_to_Part/es.md) , [OpenCASCADE/es](OpenCASCADE/es.md) , [Packaging/es](Packaging/es.md) , [Part scripting/es](Part_scripting/es.md) , [Path scripting/es](Path_scripting/es.md) , [Pivy/es](Pivy/es.md) , [Property/es](Property/es.md) , [PySide Beginner Examples/es](PySide_Beginner_Examples/es.md) , [PySide/es](PySide/es.md) , [Python scripting tutorial/es](Python_scripting_tutorial/es.md) , [Python/es](Python/es.md) , [PythonOCC/es](PythonOCC/es.md) , [Scenegraph/es](Scenegraph/es.md) , [Scripted objects/es](Scripted_objects/es.md) , [Scripting and macros/es](Scripting_and_macros/es.md) , [Source code management/es](Source_code_management/es.md) , [Source documentation/es](Source_documentation/es.md) , [Start up and Configuration/es](Start_up_and_Configuration/es.md) , [Testing/es](Testing/es.md) , [The FreeCAD source code/es](The_FreeCAD_source_code/es.md) , [Third Party Libraries/es](Third_Party_Libraries/es.md) , [Third Party Tools/es](Third_Party_Tools/es.md) , [Topological data scripting/es](Topological_data_scripting/es.md) , [Tracker/es](Tracker/es.md) , [Translating an external workbench/es](Translating_an_external_workbench/es.md) , [Windows packaging/es](Windows_packaging/es.md) , [Workbench creation/es](Workbench_creation/es.md) , [Category:Documentation/es](Category:Documentation/es.md) [Category:Artwork/es](Category:Artwork/es.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/es diff --git a/wiki/translations/es/Category:Documentation.md b/wiki/translations/es/Category:Documentation.md index 0b17b30da4..7797b51fa4 100644 --- a/wiki/translations/es/Category:Documentation.md +++ b/wiki/translations/es/Category:Documentation.md @@ -6,3 +6,6 @@ Esta categoría agrupa toda la documentación de FreeCAD [3D input devices/es](3D_input_devices/es.md) , [Civil Engineering Workbench/es](Civil_Engineering_Workbench/es.md) , [Drawing templates/es](Drawing_templates/es.md) , [Free-cad:Community Portal/es](Free-cad:Community_Portal/es.md) , [FreeCAD Community Portal/es](FreeCAD_Community_Portal/es.md) , [Frequently asked questions/es](Frequently_asked_questions/es.md) , [Help FreeCAD/es](Help_FreeCAD/es.md) , [Interesting links/es](Interesting_links/es.md) , [Main Page/es](Main_Page/es.md) , [Online Help Toc/es](Online_Help_Toc/es.md) , [Release notes 0.11/es](Release_notes_0.11/es.md) , [Release notes 0.12/es](Release_notes_0.12/es.md) , [Release notes 0.13/es](Release_notes_0.13/es.md) , [Release notes 0.14/es](Release_notes_0.14/es.md) , [Release notes 0.15/es](Release_notes_0.15/es.md) , [Release notes 0.16/es](Release_notes_0.16/es.md) , [Release notes 0.17/es](Release_notes_0.17/es.md) , [Release notes 0.18/es](Release_notes_0.18/es.md) , [Release notes 0.19/es](Release_notes_0.19/es.md) , [Release notes 0.20/es](Release_notes_0.20/es.md) , [WikiPages/es](WikiPages/es.md) , , , , , , [Category:Categories/es](Category:Categories/es.md) [Category:API Documentation/es](Category:API_Documentation/es.md) [Category:Developer Documentation/es](Category:Developer_Documentation/es.md) [Category:Poweruser Documentation/es](Category:Poweruser_Documentation/es.md) [Category:Screenshots/es](Category:Screenshots/es.md) [Category:User Documentation/es](Category:User_Documentation/es.md) [Category:Wiki/es](Category:Wiki/es.md) + +--- +[documentation index](../README.md) > Category:Documentation/es diff --git a/wiki/translations/es/Category:Draft.md b/wiki/translations/es/Category:Draft.md index e4645e304f..13ebc93a65 100644 --- a/wiki/translations/es/Category:Draft.md +++ b/wiki/translations/es/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/es\" and \"Workben [Draft AddConstruction/es](Draft_AddConstruction/es.md) , [Draft AddToGroup/es](Draft_AddToGroup/es.md) , [Draft AnnotationStyleEditor/es](Draft_AnnotationStyleEditor/es.md) , [Draft API/es](Draft_API/es.md) , [Draft ApplyStyle/es](Draft_ApplyStyle/es.md) , [Draft Arc/es](Draft_Arc/es.md) , [Draft Array/es](Draft_Array/es.md) , [Draft AutoGroup/es](Draft_AutoGroup/es.md) , [Draft BezCurve/es](Draft_BezCurve/es.md) , [Draft BSpline/es](Draft_BSpline/es.md) , [Draft Circle/es](Draft_Circle/es.md) , [Draft CircularArray/es](Draft_CircularArray/es.md) , [Draft Clone/es](Draft_Clone/es.md) , [Draft Constrain/es](Draft_Constrain/es.md) , [Draft CubicBezCurve/es](Draft_CubicBezCurve/es.md) , [Draft DAT/es](Draft_DAT/es.md) , [Draft Dimension/es](Draft_Dimension/es.md) , [Draft Downgrade/es](Draft_Downgrade/es.md) , [Draft Draft2Sketch/es](Draft_Draft2Sketch/es.md) , [Draft Drawing/es](Draft_Drawing/es.md) , [Draft DXF/es](Draft_DXF/es.md) , [Draft Edit/es](Draft_Edit/es.md) , [Draft Ellipse/es](Draft_Ellipse/es.md) , [Draft Facebinder/es](Draft_Facebinder/es.md) , [Draft FlipDimension/es](Draft_FlipDimension/es.md) , [Draft Heal/es](Draft_Heal/es.md) , [Draft Label/es](Draft_Label/es.md) , [Draft Line/es](Draft_Line/es.md) , [Draft Mirror/es](Draft_Mirror/es.md) , [Draft Move/es](Draft_Move/es.md) , [Draft OCA/es](Draft_OCA/es.md) , [Draft Offset/es](Draft_Offset/es.md) , [Draft OrthoArray/es](Draft_OrthoArray/es.md) , [Draft PathArray/es](Draft_PathArray/es.md) , [Draft Point/es](Draft_Point/es.md) , [Draft PointArray/es](Draft_PointArray/es.md) , [Draft PolarArray/es](Draft_PolarArray/es.md) , [Draft Polygon/es](Draft_Polygon/es.md) , [Draft Preferences/es](Draft_Preferences/es.md) , [Draft Rectangle/es](Draft_Rectangle/es.md) , [Draft Rotate/es](Draft_Rotate/es.md) , [Draft Scale/es](Draft_Scale/es.md) , [Draft SelectGroup/es](Draft_SelectGroup/es.md) , [Draft SelectPlane/es](Draft_SelectPlane/es.md) , [Draft Shape2DView/es](Draft_Shape2DView/es.md) , [Draft ShapeString/es](Draft_ShapeString/es.md) , [Draft ShowSnapBar/es](Draft_ShowSnapBar/es.md) , [Draft Slope/es](Draft_Slope/es.md) , [Draft Snap Angle/es](Draft_Snap_Angle/es.md) , [Draft Snap Center/es](Draft_Snap_Center/es.md) , [Draft Snap Extension/es](Draft_Snap_Extension/es.md) , [Draft Snap Intersection/es](Draft_Snap_Intersection/es.md) , [Draft Snap Lock/es](Draft_Snap_Lock/es.md) , [Draft Snap Midpoint/es](Draft_Snap_Midpoint/es.md) , [Draft Snap Ortho/es](Draft_Snap_Ortho/es.md) , [Draft Snap Parallel/es](Draft_Snap_Parallel/es.md) , [Draft Snap/es](Draft_Snap/es.md) , [Draft Stretch/es](Draft_Stretch/es.md) , [Draft SVG/es](Draft_SVG/es.md) , [Draft Text/es](Draft_Text/es.md) , [Draft ToggleConstructionMode/es](Draft_ToggleConstructionMode/es.md) , [Draft ToggleContinueMode/es](Draft_ToggleContinueMode/es.md) , [Draft ToggleDisplayMode/es](Draft_ToggleDisplayMode/es.md) , [Draft ToggleGrid/es](Draft_ToggleGrid/es.md) , [Draft Tray/es](Draft_Tray/es.md) , [Draft Trimex/es](Draft_Trimex/es.md) , [Draft tutorial/es](Draft_tutorial/es.md) , [Draft Upgrade/es](Draft_Upgrade/es.md) , [Draft Wire/es](Draft_Wire/es.md) , [Draft WireToBSpline/es](Draft_WireToBSpline/es.md) , [Draft Workbench/es](Draft_Workbench/es.md) , [Draft WorkingPlaneProxy/es](Draft_WorkingPlaneProxy/es.md) , [DXF/es](DXF/es.md) , [FreeCAD and DWG Import/es](FreeCAD_and_DWG_Import/es.md) , [SVG/es](SVG/es.md) [Category:User Documentation/es](Category:User_Documentation/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Draft/es diff --git a/wiki/translations/es/Category:Drawing.md b/wiki/translations/es/Category:Drawing.md index 64f89b780d..2c7e392d21 100644 --- a/wiki/translations/es/Category:Drawing.md +++ b/wiki/translations/es/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/es](Drawing_Workbenc [Drawing Annotation/es](Drawing_Annotation/es.md) , [Drawing Clip/es](Drawing_Clip/es.md) , [Drawing Landscape A3/es](Drawing_Landscape_A3/es.md) , [Drawing Open SVG/es](Drawing_Open_SVG/es.md) , [Drawing Orthoviews/es](Drawing_Orthoviews/es.md) , [Drawing Save/es](Drawing_Save/es.md) , [Drawing templates/es](Drawing_templates/es.md) , [Template:Drawing Tools navi/es](Template:Drawing_Tools_navi/es.md) , [Drawing View/es](Drawing_View/es.md) , [Drawing Workbench/es](Drawing_Workbench/es.md) , [Svg Namespace/es](Svg_Namespace/es.md) [Category:Obsolete Workbenches/es](Category:Obsolete_Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Drawing/es diff --git a/wiki/translations/es/Category:External_Workbenches.md b/wiki/translations/es/Category:External_Workbenches.md index 589a06e245..d15ffc7847 100644 --- a/wiki/translations/es/Category:External_Workbenches.md +++ b/wiki/translations/es/Category:External_Workbenches.md @@ -4,3 +4,6 @@ [External workbenches/es](External_workbenches/es.md) , [A2plus Workbench/es](A2plus_Workbench/es.md) , [Animation Workbench/es](Animation_Workbench/es.md) , [Assembly3 Workbench/es](Assembly3_Workbench/es.md) , [Assembly4 Workbench/es](Assembly4_Workbench/es.md) , [BIM Workbench/es](BIM_Workbench/es.md) , [FCGear Workbench/es](FCGear_Workbench/es.md) , [How to install additional workbenches/es](How_to_install_additional_workbenches/es.md) , [KicadStepUp Workbench/es](KicadStepUp_Workbench/es.md) , [PCB Workbench/es](PCB_Workbench/es.md) , [Plot Axes/es](Plot_Axes/es.md) , [Plot Basic tutorial/es](Plot_Basic_tutorial/es.md) , [Plot Grid/es](Plot_Grid/es.md) , [Plot Labels/es](Plot_Labels/es.md) , [Plot Legend/es](Plot_Legend/es.md) , [Plot Module/es](Plot_Module/es.md) , [Plot MultiAxes tutorial/es](Plot_MultiAxes_tutorial/es.md) , [Plot Positions/es](Plot_Positions/es.md) , [Plot Save/es](Plot_Save/es.md) , [Plot Series/es](Plot_Series/es.md) , [Render project/es](Render_project/es.md) , [Ship Workbench/es](Ship_Workbench/es.md) , [Symbols Library Workbench/es](Symbols_Library_Workbench/es.md) , [WebTools Workbench/es](WebTools_Workbench/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) [Category:Addons/es](Category:Addons/es.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/es diff --git a/wiki/translations/es/Category:FEM.md b/wiki/translations/es/Category:FEM.md index d8459fbb92..a5b61b26e4 100644 --- a/wiki/translations/es/Category:FEM.md +++ b/wiki/translations/es/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/es](FEM_Workbench/es.md) [Analysis of reinforced concrete with FEM/es](Analysis_of_reinforced_concrete_with_FEM/es.md) , [Extend FEM Module/es](Extend_FEM_Module/es.md) , [FEM CalculiX Cantilever 3D/es](FEM_CalculiX_Cantilever_3D/es.md) , [FEM Install/es](FEM_Install/es.md) , [FEM MaterialSolid/es](FEM_MaterialSolid/es.md) , [FEM Mesh/es](FEM_Mesh/es.md) , [FEM PostPipelineFromResult/es](FEM_PostPipelineFromResult/es.md) , [FEM project/es](FEM_project/es.md) , [FEM Shear of a Composite Block/es](FEM_Shear_of_a_Composite_Block/es.md) , [FEM Solver/es](FEM_Solver/es.md) , [FEM SolverCalculixCxxtools/es](FEM_SolverCalculixCxxtools/es.md) , [Template:FEM Tools navi/es](Template:FEM_Tools_navi/es.md) , [FEM Tutorial Python/es](FEM_Tutorial_Python/es.md) , [FEM tutorial/es](FEM_tutorial/es.md) , [FEM Workbench/es](FEM_Workbench/es.md) , [IfcOpenShell/es](IfcOpenShell/es.md) , [Material/es](Material/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:FEM/es diff --git a/wiki/translations/es/Category:File_Formats.md b/wiki/translations/es/Category:File_Formats.md index 67bb9ee1b7..4f1e29edd7 100644 --- a/wiki/translations/es/Category:File_Formats.md +++ b/wiki/translations/es/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [Arch DAE/es](Arch_DAE/es.md) , [Arch IFC/es](Arch_IFC/es.md) , [Arch OBJ/es](Arch_OBJ/es.md) , [Draft DAT/es](Draft_DAT/es.md) , [Draft DXF/es](Draft_DXF/es.md) , [Draft OCA/es](Draft_OCA/es.md) , [Draft SVG/es](Draft_SVG/es.md) , [DXF/es](DXF/es.md) , [File Format FCStd/es](File_Format_FCStd/es.md) , [FreeCAD and DWG Import/es](FreeCAD_and_DWG_Import/es.md) , [FreeCAD and DXF Import/es](FreeCAD_and_DXF_Import/es.md) , [Import Export Preferences/es](Import_Export_Preferences/es.md) , [Import Export/es](Import_Export/es.md) , [Import/Export IFC - compiling IfcOpenShell/es](Import/Export_IFC_-_compiling_IfcOpenShell/es.md) , [Material/es](Material/es.md) , [OpenSCAD CSG/es](OpenSCAD_CSG/es.md) , [PDF/es](PDF/es.md) , [Std Import/es](Std_Import/es.md) , [SVG/es](SVG/es.md) + +--- +[documentation index](../README.md) > Category:File Formats/es diff --git a/wiki/translations/es/Category:Glossary.md b/wiki/translations/es/Category:Glossary.md index da7ac886e1..e5b5edca6b 100644 --- a/wiki/translations/es/Category:Glossary.md +++ b/wiki/translations/es/Category:Glossary.md @@ -4,3 +4,6 @@ This category tracks pages that explain definitions of words related to FreeCAD ### Contents: [Command/es](Command/es.md) , [Constraint/es](Constraint/es.md) , [Glossary/es](Glossary/es.md) , [Manipulator/es](Manipulator/es.md) , [Python/es](Python/es.md) , [Sketch/es](Sketch/es.md) + +--- +[documentation index](../README.md) > Category:Glossary/es diff --git a/wiki/translations/es/Category:Help.md b/wiki/translations/es/Category:Help.md index 1c61190721..4d3fc92371 100644 --- a/wiki/translations/es/Category:Help.md +++ b/wiki/translations/es/Category:Help.md @@ -6,3 +6,6 @@ Esta categoría lista páginas que contienen información útil sobre MediaWiki [Help/es](Help/es.md) [Category:Categories/es](Category:Categories/es.md) + +--- +[documentation index](../README.md) > Category:Help/es diff --git a/wiki/translations/es/Category:Hubs.md b/wiki/translations/es/Category:Hubs.md index 23dc170d3f..88841a977b 100644 --- a/wiki/translations/es/Category:Hubs.md +++ b/wiki/translations/es/Category:Hubs.md @@ -6,3 +6,6 @@ Esta categoría recopila los puntos de encuentro de las 3 categorías de usuario [Developer hub/es](Developer_hub/es.md) , [Power users hub/es](Power_users_hub/es.md) , [User hub/es](User_hub/es.md) [Category:Categories/es](Category:Categories/es.md) + +--- +[documentation index](../README.md) > Category:Hubs/es diff --git a/wiki/translations/es/Category:Icon.md b/wiki/translations/es/Category:Icon.md index 972198402c..09e8c60f27 100644 --- a/wiki/translations/es/Category:Icon.md +++ b/wiki/translations/es/Category:Icon.md @@ -6,3 +6,6 @@ This category contains icon images, and buttons, which can be placed in document [Artwork/es](Artwork/es.md) [Category:Artwork/es](Category:Artwork/es.md) + +--- +[documentation index](../README.md) > Category:Icon/es diff --git a/wiki/translations/es/Category:Image.md b/wiki/translations/es/Category:Image.md index 16b622f8bc..91c66e4c84 100644 --- a/wiki/translations/es/Category:Image.md +++ b/wiki/translations/es/Category:Image.md @@ -6,3 +6,6 @@ This category is the top level category for **images**. It should not contain an [Image CreateImagePlane/es](Image_CreateImagePlane/es.md) , [Image Open/es](Image_Open/es.md) , [Image Workbench/es](Image_Workbench/es.md) [Category:Categories/es](Category:Categories/es.md) + +--- +[documentation index](../README.md) > Category:Image/es diff --git a/wiki/translations/es/Category:Inspection.md b/wiki/translations/es/Category:Inspection.md index d6749996ab..33416cd3ad 100644 --- a/wiki/translations/es/Category:Inspection.md +++ b/wiki/translations/es/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Inspection Workbench/es](Inspection_Workbench/es.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection/es diff --git a/wiki/translations/es/Category:Macros.md b/wiki/translations/es/Category:Macros.md index 9aac0aedff..2d5bbea352 100644 --- a/wiki/translations/es/Category:Macros.md +++ b/wiki/translations/es/Category:Macros.md @@ -6,3 +6,6 @@ Esta categoría contiene macros para extender tu instalación de FreeCAD con nue [Macro Align View to Face/es](Macro_Align_View_to_Face/es.md) , [Macro ArrayCopy/es](Macro_ArrayCopy/es.md) , [Macro Automatic drawing/es](Macro_Automatic_drawing/es.md) , [Macro Corner shapes wizard/es](Macro_Corner_shapes_wizard/es.md) , [Macro Draw 2D Function/es](Macro_Draw_2D_Function/es.md) , [Macro Draw Parametric 2D Function/es](Macro_Draw_Parametric_2D_Function/es.md) , [Macro FlattenWire/es](Macro_FlattenWire/es.md) , [Macro HealArcs/es](Macro_HealArcs/es.md) , [Macro JointWire/es](Macro_JointWire/es.md) , [Macro Make Cube/es](Macro_Make_Cube/es.md) , [Macro MeshToPart/es](Macro_MeshToPart/es.md) , [Macro MessageBox/es](Macro_MessageBox/es.md) , [Macro Mouse Cross/es](Macro_Mouse_Cross/es.md) , [Macro PartsLibrary/es](Macro_PartsLibrary/es.md) , [Macro Rectellipse/es](Macro_Rectellipse/es.md) , [Macro Remove parametric history/es](Macro_Remove_parametric_history/es.md) , [Macro Rotate View/es](Macro_Rotate_View/es.md) , [Macro Solid Sweep/es](Macro_Solid_Sweep/es.md) , [Macro SuperWire/es](Macro_SuperWire/es.md) , [Macro Texture Objects/es](Macro_Texture_Objects/es.md) , [Macro View Rotation/es](Macro_View_Rotation/es.md) , [Template:Macro/es](Template:Macro/es.md) , [Macros recipes/es](Macros_recipes/es.md) , [Macros/es](Macros/es.md) , [Qt Example/es](Qt_Example/es.md) , [Svg Namespace/es](Svg_Namespace/es.md) [Category:Categories/es](Category:Categories/es.md) + +--- +[documentation index](../README.md) > Category:Macros/es diff --git a/wiki/translations/es/Category:Manual.md b/wiki/translations/es/Category:Manual.md index 62521461f2..0ef4fb5b75 100644 --- a/wiki/translations/es/Category:Manual.md +++ b/wiki/translations/es/Category:Manual.md @@ -4,3 +4,6 @@ This category contains all the page of the FreeCAD manual Esta categoría contie ### Contents: [Manual:A gentle introduction/es](Manual:A_gentle_introduction/es.md) , [Manual:BIM modeling/es](Manual:BIM_modeling/es.md) , [Manual:Creating and manipulating geometry/es](Manual:Creating_and_manipulating_geometry/es.md) , [Manual:Generating 2D drawings/es](Manual:Generating_2D_drawings/es.md) , [Manual:Import and export to other filetypes/es](Manual:Import_and_export_to_other_filetypes/es.md) , [Manual:Installing/es](Manual:Installing/es.md) , [Manual:Introduction/es](Manual:Introduction/es.md) , [Manual:Navigating in the 3D view/es](Manual:Navigating_in_the_3D_view/es.md) , [Manual:Parametric objects/es](Manual:Parametric_objects/es.md) , [Manual:Preparing models for 3D printing/es](Manual:Preparing_models_for_3D_printing/es.md) , [Manual:Summary/es](Manual:Summary/es.md) , [Manual:The Community/es](Manual:The_Community/es.md) , [Manual:The FreeCAD document/es](Manual:The_FreeCAD_document/es.md) , [Manual:The FreeCAD Interface/es](Manual:The_FreeCAD_Interface/es.md) , [Template:Manual:TOC/es](Template:Manual:TOC/es.md) , [Manual:What is FreeCAD/es](Manual:What_is_FreeCAD/es.md) + +--- +[documentation index](../README.md) > Category:Manual/es diff --git a/wiki/translations/es/Category:Mesh.md b/wiki/translations/es/Category:Mesh.md index 639b8b7cc4..a2fd6a8b3b 100644 --- a/wiki/translations/es/Category:Mesh.md +++ b/wiki/translations/es/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/es](Mesh_Workbench/es. [Manual:Preparing models for 3D printing/es](Manual:Preparing_models_for_3D_printing/es.md) , [Mesh Scripting/es](Mesh_Scripting/es.md) , [Mesh to Part/es](Mesh_to_Part/es.md) , [Template:Mesh Tools navi/es](Template:Mesh_Tools_navi/es.md) , [Mesh Workbench/es](Mesh_Workbench/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Mesh/es diff --git a/wiki/translations/es/Category:News.md b/wiki/translations/es/Category:News.md index 504f4a2c8d..50d3df742e 100644 --- a/wiki/translations/es/Category:News.md +++ b/wiki/translations/es/Category:News.md @@ -6,3 +6,6 @@ Esta categoría contiene artículos con noticias y mensajes sobre FreeCAD. [History/es](History/es.md) , [Release notes 0.11/es](Release_notes_0.11/es.md) , [Release notes 0.12/es](Release_notes_0.12/es.md) , [Release notes 0.13/es](Release_notes_0.13/es.md) , [Release notes 0.14/es](Release_notes_0.14/es.md) , [Release notes 0.15/es](Release_notes_0.15/es.md) , [Release notes 0.16/es](Release_notes_0.16/es.md) , [Release notes 0.17/es](Release_notes_0.17/es.md) , [Release notes 0.18/es](Release_notes_0.18/es.md) , [Release notes 0.19/es](Release_notes_0.19/es.md) , [Release notes 0.20/es](Release_notes_0.20/es.md) [Category:Categories/es](Category:Categories/es.md) + +--- +[documentation index](../README.md) > Category:News/es diff --git a/wiki/translations/es/Category:Obsolete_Workbenches.md b/wiki/translations/es/Category:Obsolete_Workbenches.md index 41b5fa1f86..cee066485a 100644 --- a/wiki/translations/es/Category:Obsolete_Workbenches.md +++ b/wiki/translations/es/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/es](Drawing_Workbenc [Complete Workbench/es](Complete_Workbench/es.md) , [Drawing Workbench/es](Drawing_Workbench/es.md) , , [Category:Obsolete Workbenches/es](Category:Obsolete_Workbenches/es.md) [Category:Drawing/es](Category:Drawing/es.md) [Category:Obsolete Workbenches/es](Category:Obsolete_Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/es diff --git a/wiki/translations/es/Category:OpenSCAD.md b/wiki/translations/es/Category:OpenSCAD.md index 3ccbc5600f..476290390f 100644 --- a/wiki/translations/es/Category:OpenSCAD.md +++ b/wiki/translations/es/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/es](OpenSCAD_Workb [Import OpenSCAD code/es](Import_OpenSCAD_code/es.md) , [OpenSCAD AddOpenSCADElement/es](OpenSCAD_AddOpenSCADElement/es.md) , [OpenSCAD ColorCodeShape/es](OpenSCAD_ColorCodeShape/es.md) , [OpenSCAD CSG/es](OpenSCAD_CSG/es.md) , [OpenSCAD Edgestofaces/es](OpenSCAD_Edgestofaces/es.md) , [OpenSCAD ExpandPlacements/es](OpenSCAD_ExpandPlacements/es.md) , [OpenSCAD IncreaseToleranceFeature/es](OpenSCAD_IncreaseToleranceFeature/es.md) , [OpenSCAD Preferences/es](OpenSCAD_Preferences/es.md) , [OpenSCAD RefineShapeFeature/es](OpenSCAD_RefineShapeFeature/es.md) , [OpenSCAD RemoveSubtree/es](OpenSCAD_RemoveSubtree/es.md) , [OpenSCAD ReplaceObject/es](OpenSCAD_ReplaceObject/es.md) , [Template:OpenSCAD Tools navi/es](Template:OpenSCAD_Tools_navi/es.md) , [OpenSCAD Workbench/es](OpenSCAD_Workbench/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/es diff --git a/wiki/translations/es/Category:Part.md b/wiki/translations/es/Category:Part.md index bc71f5f81f..2a02596f6f 100644 --- a/wiki/translations/es/Category:Part.md +++ b/wiki/translations/es/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/es](Part_Workbench/es.m [Aeroplane/es](Aeroplane/es.md) , [Basic modeling tutorial/es](Basic_modeling_tutorial/es.md) , [Constructive solid geometry/es](Constructive_solid_geometry/es.md) , [Part and PartDesign/es](Part_and_PartDesign/es.md) , [Part Boolean/es](Part_Boolean/es.md) , [Part Box/es](Part_Box/es.md) , [Part Builder/es](Part_Builder/es.md) , [Part Chamfer/es](Part_Chamfer/es.md) , [Part CheckGeometry/es](Part_CheckGeometry/es.md) , [Part Circle/es](Part_Circle/es.md) , [Part Common/es](Part_Common/es.md) , [Part CompCompoundTools/es](Part_CompCompoundTools/es.md) , [Part Compound/es](Part_Compound/es.md) , [Part CompoundFilter/es](Part_CompoundFilter/es.md) , [Part Cone/es](Part_Cone/es.md) , [Part CrossSections/es](Part_CrossSections/es.md) , [Part Cut/es](Part_Cut/es.md) , [Part Cylinder/es](Part_Cylinder/es.md) , [Part Ellipse/es](Part_Ellipse/es.md) , [Part Ellipsoid/es](Part_Ellipsoid/es.md) , [Part ExplodeCompound/es](Part_ExplodeCompound/es.md) , [Part Extrude/es](Part_Extrude/es.md) , [Part Fillet/es](Part_Fillet/es.md) , [Part Fuse/es](Part_Fuse/es.md) , [Part Helix/es](Part_Helix/es.md) , [Part Line/es](Part_Line/es.md) , [Part Mirror/es](Part_Mirror/es.md) , [Part Module/es](Part_Module/es.md) , [Part Plane/es](Part_Plane/es.md) , [Part Point/es](Part_Point/es.md) , [Part Primitives/es](Part_Primitives/es.md) , [Part Prism/es](Part_Prism/es.md) , [Part ProjectionOnSurface/es](Part_ProjectionOnSurface/es.md) , [Part RegularPolygon/es](Part_RegularPolygon/es.md) , [Part Revolve/es](Part_Revolve/es.md) , [Part scripting/es](Part_scripting/es.md) , [Part Section/es](Part_Section/es.md) , [Part Sphere/es](Part_Sphere/es.md) , [Part Spiral/es](Part_Spiral/es.md) , [Part Sweep/es](Part_Sweep/es.md) , [Part Thickness/es](Part_Thickness/es.md) , [Template:Part Tools navi/es](Template:Part_Tools_navi/es.md) , [Part Torus/es](Part_Torus/es.md) , [Part Tube/es](Part_Tube/es.md) , [Part Wedge/es](Part_Wedge/es.md) , [Topological naming problem/es](Topological_naming_problem/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Part/es diff --git a/wiki/translations/es/Category:PartDesign.md b/wiki/translations/es/Category:PartDesign.md index dc531fc762..ef2901157e 100644 --- a/wiki/translations/es/Category:PartDesign.md +++ b/wiki/translations/es/Category:PartDesign.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to PartDesign ### Contents: [Basic Part Design Tutorial/es](Basic_Part_Design_Tutorial/es.md) , [Creating a simple part with PartDesign/es](Creating_a_simple_part_with_PartDesign/es.md) , [Feature editing/es](Feature_editing/es.md) , [Part and PartDesign/es](Part_and_PartDesign/es.md) , [PartDesign AdditiveBox/es](PartDesign_AdditiveBox/es.md) , [PartDesign AdditiveCone/es](PartDesign_AdditiveCone/es.md) , [PartDesign AdditiveCylinder/es](PartDesign_AdditiveCylinder/es.md) , [PartDesign AdditiveEllipsoid/es](PartDesign_AdditiveEllipsoid/es.md) , [PartDesign AdditiveHelix/es](PartDesign_AdditiveHelix/es.md) , [PartDesign AdditiveLoft/es](PartDesign_AdditiveLoft/es.md) , [PartDesign AdditivePipe/es](PartDesign_AdditivePipe/es.md) , [PartDesign AdditivePrism/es](PartDesign_AdditivePrism/es.md) , [PartDesign AdditiveSphere/es](PartDesign_AdditiveSphere/es.md) , [PartDesign AdditiveTorus/es](PartDesign_AdditiveTorus/es.md) , [PartDesign AdditiveWedge/es](PartDesign_AdditiveWedge/es.md) , [PartDesign Body/es](PartDesign_Body/es.md) , [PartDesign Chamfer/es](PartDesign_Chamfer/es.md) , [PartDesign Clone/es](PartDesign_Clone/es.md) , [PartDesign CompPrimitiveAdditive/es](PartDesign_CompPrimitiveAdditive/es.md) , [PartDesign CompPrimitiveSubtractive/es](PartDesign_CompPrimitiveSubtractive/es.md) , [PartDesign Draft/es](PartDesign_Draft/es.md) , [PartDesign Feature/es](PartDesign_Feature/es.md) , [PartDesign Fillet/es](PartDesign_Fillet/es.md) , [PartDesign Groove/es](PartDesign_Groove/es.md) , [PartDesign Hole/es](PartDesign_Hole/es.md) , [PartDesign InvoluteGear/es](PartDesign_InvoluteGear/es.md) , [PartDesign Line/es](PartDesign_Line/es.md) , [PartDesign LinearPattern/es](PartDesign_LinearPattern/es.md) , [PartDesign Migrate/es](PartDesign_Migrate/es.md) , [PartDesign Mirrored/es](PartDesign_Mirrored/es.md) , [PartDesign MultiTransform/es](PartDesign_MultiTransform/es.md) , [PartDesign NewSketch/es](PartDesign_NewSketch/es.md) , [PartDesign Pad/es](PartDesign_Pad/es.md) , [PartDesign Plane/es](PartDesign_Plane/es.md) , [PartDesign Pocket/es](PartDesign_Pocket/es.md) , [PartDesign Point/es](PartDesign_Point/es.md) , [PartDesign PolarPattern/es](PartDesign_PolarPattern/es.md) , [PartDesign Revolution/es](PartDesign_Revolution/es.md) , [PartDesign ShapeBinder/es](PartDesign_ShapeBinder/es.md) , [PartDesign Sprocket/es](PartDesign_Sprocket/es.md) , [PartDesign SubtractiveBox/es](PartDesign_SubtractiveBox/es.md) , [PartDesign SubtractiveCone/es](PartDesign_SubtractiveCone/es.md) , [PartDesign SubtractiveCylinder/es](PartDesign_SubtractiveCylinder/es.md) , [PartDesign SubtractiveEllipsoid/es](PartDesign_SubtractiveEllipsoid/es.md) , [PartDesign SubtractivePipe/es](PartDesign_SubtractivePipe/es.md) , [PartDesign SubtractivePrism/es](PartDesign_SubtractivePrism/es.md) , [PartDesign SubtractiveSphere/es](PartDesign_SubtractiveSphere/es.md) , [PartDesign SubtractiveTorus/es](PartDesign_SubtractiveTorus/es.md) , [PartDesign SubtractiveWedge/es](PartDesign_SubtractiveWedge/es.md) , [PartDesign Thickness/es](PartDesign_Thickness/es.md) , [Template:PartDesign Tools navi/es](Template:PartDesign_Tools_navi/es.md) , [PartDesign WizardShaft/es](PartDesign_WizardShaft/es.md) , [Toothbrush Head Stand/es](Toothbrush_Head_Stand/es.md) , [Topological naming problem/es](Topological_naming_problem/es.md) + +--- +[documentation index](../README.md) > Category:PartDesign/es diff --git a/wiki/translations/es/Category:Path.md b/wiki/translations/es/Category:Path.md index 5b93fe301c..fd18cd2da0 100644 --- a/wiki/translations/es/Category:Path.md +++ b/wiki/translations/es/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/es](PartDesign_Wo [Manual:Preparing models for 3D printing/es](Manual:Preparing_models_for_3D_printing/es.md) , [Path Array/es](Path_Array/es.md) , [Path FAQ/es](Path_FAQ/es.md) , [Path Fixture/es](Path_Fixture/es.md) , [Path Job/es](Path_Job/es.md) , [Path Pocket 3D/es](Path_Pocket_3D/es.md) , [Path Postprocessor Customization/es](Path_Postprocessor_Customization/es.md) , [Path scripting/es](Path_scripting/es.md) , [Template:Path Tools navi/es](Template:Path_Tools_navi/es.md) , [Path Workbench/es](Path_Workbench/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Path/es diff --git a/wiki/translations/es/Category:Plot.md b/wiki/translations/es/Category:Plot.md index 341b54c84e..30bd02cc7e 100644 --- a/wiki/translations/es/Category:Plot.md +++ b/wiki/translations/es/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/es](Plot_Workbench/es.m [Plot Axes/es](Plot_Axes/es.md) , [Plot Basic tutorial/es](Plot_Basic_tutorial/es.md) , [Plot Grid/es](Plot_Grid/es.md) , [Plot Labels/es](Plot_Labels/es.md) , [Plot Legend/es](Plot_Legend/es.md) , [Plot Module/es](Plot_Module/es.md) , [Plot MultiAxes tutorial/es](Plot_MultiAxes_tutorial/es.md) , [Plot Positions/es](Plot_Positions/es.md) , [Plot Save/es](Plot_Save/es.md) , [Plot Series/es](Plot_Series/es.md) , [Template:Plot Tools navi/es](Template:Plot_Tools_navi/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Plot/es diff --git a/wiki/translations/es/Category:Points.md b/wiki/translations/es/Category:Points.md index 46a415b799..23093ceda0 100644 --- a/wiki/translations/es/Category:Points.md +++ b/wiki/translations/es/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/es](Points_Workbench/ [Points Workbench/es](Points_Workbench/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Points/es diff --git a/wiki/translations/es/Category:Poweruser_Documentation.md b/wiki/translations/es/Category:Poweruser_Documentation.md index 03ea7a7f9a..7c2560e1e6 100644 --- a/wiki/translations/es/Category:Poweruser_Documentation.md +++ b/wiki/translations/es/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ Esta categoría muestra documentación de artículos acerca de los archivos de g [Base API/es](Base_API/es.md) , [Builtin modules/es](Builtin_modules/es.md) , [Code snippets/es](Code_snippets/es.md) , [Coin3d snippets/es](Coin3d_snippets/es.md) , [Command/es](Command/es.md) , [Console API/es](Console_API/es.md) , [Debugging/es](Debugging/es.md) , [Dialog creation/es](Dialog_creation/es.md) , [Draft API/es](Draft_API/es.md) , [Embedding FreeCAD/es](Embedding_FreeCAD/es.md) , [Embedding FreeCADGui/es](Embedding_FreeCADGui/es.md) , [Expressions/es](Expressions/es.md) , [FreeCAD API/es](FreeCAD_API/es.md) , [FreeCAD Scripting Basics/es](FreeCAD_Scripting_Basics/es.md) , [FreeCAD vector math library/es](FreeCAD_vector_math_library/es.md) , [FreeCADGui API/es](FreeCADGui_API/es.md) , [Gui Command/es](Gui_Command/es.md) , [How to install additional workbenches/es](How_to_install_additional_workbenches/es.md) , [How to install macros/es](How_to_install_macros/es.md) , [Installing more workbenches/es](Installing_more_workbenches/es.md) , [Introduction to Python/es](Introduction_to_Python/es.md) , [Line drawing function/es](Line_drawing_function/es.md) , [Macros/es](Macros/es.md) , [Manual:A gentle introduction/es](Manual:A_gentle_introduction/es.md) , [Manual:Creating and manipulating geometry/es](Manual:Creating_and_manipulating_geometry/es.md) , [Manual:Import and export to other filetypes/es](Manual:Import_and_export_to_other_filetypes/es.md) , [Manual:Installing/es](Manual:Installing/es.md) , [Manual:Parametric objects/es](Manual:Parametric_objects/es.md) , [Matrix API/es](Matrix_API/es.md) , [Mesh API/es](Mesh_API/es.md) , [Mesh Scripting/es](Mesh_Scripting/es.md) , [Mesh to Part/es](Mesh_to_Part/es.md) , [Object API/es](Object_API/es.md) , [OpenCASCADE/es](OpenCASCADE/es.md) , [Part API/es](Part_API/es.md) , [Part scripting/es](Part_scripting/es.md) , [Path scripting/es](Path_scripting/es.md) , [Pivy/es](Pivy/es.md) , [Placement API/es](Placement_API/es.md) , [Power users hub/es](Power_users_hub/es.md) , [Property/es](Property/es.md) , [PySide Beginner Examples/es](PySide_Beginner_Examples/es.md) , [PySide/es](PySide/es.md) , [Python scripting tutorial/es](Python_scripting_tutorial/es.md) , [Python/es](Python/es.md) , [PythonOCC/es](PythonOCC/es.md) , [Qt Example/es](Qt_Example/es.md) , [Scenegraph/es](Scenegraph/es.md) , [Scripted objects/es](Scripted_objects/es.md) , [Scripting and macros/es](Scripting_and_macros/es.md) , [Selection API/es](Selection_API/es.md) , [Svg Namespace/es](Svg_Namespace/es.md) , [Topological data scripting/es](Topological_data_scripting/es.md) , [TopoShape API/es](TopoShape_API/es.md) , [Units/es](Units/es.md) , [Vector API/es](Vector_API/es.md) , [ViewObject API/es](ViewObject_API/es.md) , [Workbench creation/es](Workbench_creation/es.md) [Category:Documentation/es](Category:Documentation/es.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/es diff --git a/wiki/translations/es/Category:Preferences.md b/wiki/translations/es/Category:Preferences.md index f9e02d0bff..6e70b07416 100644 --- a/wiki/translations/es/Category:Preferences.md +++ b/wiki/translations/es/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Customize Toolbars/es](Customize_Toolbars/es.md) , [Draft Preferences/es](Draft_Preferences/es.md) , [Import Export Preferences/es](Import_Export_Preferences/es.md) , [OpenSCAD Preferences/es](OpenSCAD_Preferences/es.md) , [Preferences Editor/es](Preferences_Editor/es.md) , [Sketcher Preferences/es](Sketcher_Preferences/es.md) + +--- +[documentation index](../README.md) > Category:Preferences/es diff --git a/wiki/translations/es/Category:Python_Code.md b/wiki/translations/es/Category:Python_Code.md index dc18011caa..30629966fd 100644 --- a/wiki/translations/es/Category:Python_Code.md +++ b/wiki/translations/es/Category:Python_Code.md @@ -6,3 +6,6 @@ Esta categoría contiene ejemplos de código en Python para FreeCAD [Code snippets/es](Code_snippets/es.md) , [Command/es](Command/es.md) , [Debugging/es](Debugging/es.md) , [Dialog creation/es](Dialog_creation/es.md) , [Embedding FreeCAD/es](Embedding_FreeCAD/es.md) , [Embedding FreeCADGui/es](Embedding_FreeCADGui/es.md) , [Extra python modules/es](Extra_python_modules/es.md) , [FEM Tutorial Python/es](FEM_Tutorial_Python/es.md) , [FreeCAD Scripting Basics/es](FreeCAD_Scripting_Basics/es.md) , [FreeCAD vector math library/es](FreeCAD_vector_math_library/es.md) , [How to install macros/es](How_to_install_macros/es.md) , [Introduction to Python/es](Introduction_to_Python/es.md) , [Line drawing function/es](Line_drawing_function/es.md) , [Macros recipes/es](Macros_recipes/es.md) , [Macros/es](Macros/es.md) , [Manual:A gentle introduction/es](Manual:A_gentle_introduction/es.md) , [Manual:Creating and manipulating geometry/es](Manual:Creating_and_manipulating_geometry/es.md) , [Mesh Scripting/es](Mesh_Scripting/es.md) , [Mesh to Part/es](Mesh_to_Part/es.md) , [Part scripting/es](Part_scripting/es.md) , [Path scripting/es](Path_scripting/es.md) , [Pivy/es](Pivy/es.md) , [Property/es](Property/es.md) , [PySide Beginner Examples/es](PySide_Beginner_Examples/es.md) , [PySide/es](PySide/es.md) , [Python scripting tutorial/es](Python_scripting_tutorial/es.md) , [Python/es](Python/es.md) , [PythonOCC/es](PythonOCC/es.md) , [Qt Example/es](Qt_Example/es.md) , [Scripted objects/es](Scripted_objects/es.md) , [Scripting and macros/es](Scripting_and_macros/es.md) , [Svg Namespace/es](Svg_Namespace/es.md) , [Topological data scripting/es](Topological_data_scripting/es.md) , [Workbench creation/es](Workbench_creation/es.md) [Category:Categories/es](Category:Categories/es.md) + +--- +[documentation index](../README.md) > Category:Python Code/es diff --git a/wiki/translations/es/Category:Raytracing.md b/wiki/translations/es/Category:Raytracing.md index 974a74d444..2223b16814 100644 --- a/wiki/translations/es/Category:Raytracing.md +++ b/wiki/translations/es/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/es](Raytracing_Wo [Raytracing New/es](Raytracing_New/es.md) , [Template:Raytracing Tools navi/es](Template:Raytracing_Tools_navi/es.md) , [Raytracing Workbench/es](Raytracing_Workbench/es.md) , [Raytracing WriteCamera/es](Raytracing_WriteCamera/es.md) , [Raytracing WritePart/es](Raytracing_WritePart/es.md) , [Raytracing WriteView/es](Raytracing_WriteView/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Raytracing/es diff --git a/wiki/translations/es/Category:Reinforcement.md b/wiki/translations/es/Category:Reinforcement.md index 64572e50a1..91e85ae128 100644 --- a/wiki/translations/es/Category:Reinforcement.md +++ b/wiki/translations/es/Category:Reinforcement.md @@ -4,3 +4,6 @@ [Arch Rebar BentShape/es](Arch_Rebar_BentShape/es.md) , [Arch Rebar Helical/es](Arch_Rebar_Helical/es.md) , [Arch Rebar LShape/es](Arch_Rebar_LShape/es.md) , [Arch Rebar Stirrup/es](Arch_Rebar_Stirrup/es.md) , [Arch Rebar Straight/es](Arch_Rebar_Straight/es.md) , [Arch Rebar UShape/es](Arch_Rebar_UShape/es.md) , [Arch Rebar/es](Arch_Rebar/es.md) , [Custom Spacing/es](Custom_Spacing/es.md) [Category:Arch/es](Category:Arch/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Reinforcement/es diff --git a/wiki/translations/es/Category:Repository.md b/wiki/translations/es/Category:Repository.md index 173a253117..3af481bf38 100644 --- a/wiki/translations/es/Category:Repository.md +++ b/wiki/translations/es/Category:Repository.md @@ -4,3 +4,6 @@ Esta categoría recopila páginas que actúan como un repositorio de recursos pa ### Contents: [Category:Categories/es](Category:Categories/es.md) + +--- +[documentation index](../README.md) > Category:Repository/es diff --git a/wiki/translations/es/Category:Roadmap.md b/wiki/translations/es/Category:Roadmap.md index aba954a1f4..39c208fed4 100644 --- a/wiki/translations/es/Category:Roadmap.md +++ b/wiki/translations/es/Category:Roadmap.md @@ -6,3 +6,6 @@ Esta categoría recopila todos los artículos documentando lo que está planeado [Arch Concept/es](Arch_Concept/es.md) , [Assembly project/es](Assembly_project/es.md) , [CAM project/es](CAM_project/es.md) , [Development roadmap/es](Development_roadmap/es.md) , [FEM project/es](FEM_project/es.md) , [FreeCAD development model project/es](FreeCAD_development_model_project/es.md) , [Material data model/es](Material_data_model/es.md) , [Material/es](Material/es.md) , [Naming project/es](Naming_project/es.md) , [PartDesign project/es](PartDesign_project/es.md) , [Project template/es](Project_template/es.md) , [Quality project/es](Quality_project/es.md) , [Raytracing project/es](Raytracing_project/es.md) , [Resource framework project/es](Resource_framework_project/es.md) , [Robot project/es](Robot_project/es.md) , [Sketcher project/es](Sketcher_project/es.md) , [STEP project/es](STEP_project/es.md) , [Units project/es](Units_project/es.md) , [UTF Project/es](UTF_Project/es.md) [Category:Categories/es](Category:Categories/es.md) + +--- +[documentation index](../README.md) > Category:Roadmap/es diff --git a/wiki/translations/es/Category:Robot.md b/wiki/translations/es/Category:Robot.md index d145a63f3d..8e5f99316d 100644 --- a/wiki/translations/es/Category:Robot.md +++ b/wiki/translations/es/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/es](Robot_Workbench/es [Robot 6-Axis/es](Robot_6-Axis/es.md) , [Robot API example/es](Robot_API_example/es.md) , [Robot CreateRobot/es](Robot_CreateRobot/es.md) , [Robot CreateTrajectory/es](Robot_CreateTrajectory/es.md) , [Robot Edge2Trac/es](Robot_Edge2Trac/es.md) , [Robot Export/es](Robot_Export/es.md) , [Robot InsertWaypoint/es](Robot_InsertWaypoint/es.md) , [Robot InsertWaypointPre/es](Robot_InsertWaypointPre/es.md) , [Robot RestoreHomePos/es](Robot_RestoreHomePos/es.md) , [Robot SetDefaultOrientation/es](Robot_SetDefaultOrientation/es.md) , [Robot SetDefaultValues/es](Robot_SetDefaultValues/es.md) , [Robot SetHomePos/es](Robot_SetHomePos/es.md) , [Robot Simulate/es](Robot_Simulate/es.md) , [Template:Robot Tools navi/es](Template:Robot_Tools_navi/es.md) , [Robot TrajectoryCompound/es](Robot_TrajectoryCompound/es.md) , [Robot TrajectoryDressUp/es](Robot_TrajectoryDressUp/es.md) , [Robot tutorial/es](Robot_tutorial/es.md) , [Robot Workbench/es](Robot_Workbench/es.md) , [VRML Preparation for Robot Simulation/es](VRML_Preparation_for_Robot_Simulation/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Robot/es diff --git a/wiki/translations/es/Category:Screenshots.md b/wiki/translations/es/Category:Screenshots.md index c88ec46285..69df749c61 100644 --- a/wiki/translations/es/Category:Screenshots.md +++ b/wiki/translations/es/Category:Screenshots.md @@ -6,3 +6,6 @@ This category lists pages with screenshots. [Screenshots/es](Screenshots/es.md) [Category:Documentation/es](Category:Documentation/es.md) + +--- +[documentation index](../README.md) > Category:Screenshots/es diff --git a/wiki/translations/es/Category:Ship.md b/wiki/translations/es/Category:Ship.md index 620fe862e7..9d7c94c31e 100644 --- a/wiki/translations/es/Category:Ship.md +++ b/wiki/translations/es/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/es](Ship_Workbench/es.m [FreeCAD-Ship s60 tutorial (II)/es](FreeCAD-Ship_s60_tutorial_(II)/es.md) , [FreeCAD-Ship s60 tutorial/es](FreeCAD-Ship_s60_tutorial/es.md) , [Ship Area/es](Ship_Area/es.md) , [Ship Geometries Examples/es](Ship_Geometries_Examples/es.md) , [Ship Hydrostatics/es](Ship_Hydrostatics/es.md) , [Ship New/es](Ship_New/es.md) , [Ship Outline/es](Ship_Outline/es.md) , [Template:Ship Tools navi/es](Template:Ship_Tools_navi/es.md) , [Ship Workbench/es](Ship_Workbench/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Ship/es diff --git a/wiki/translations/es/Category:Sketcher.md b/wiki/translations/es/Category:Sketcher.md index f5816e5642..6237429f35 100644 --- a/wiki/translations/es/Category:Sketcher.md +++ b/wiki/translations/es/Category:Sketcher.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to Sketcher ### Contents: [Basic Part Design Tutorial/es](Basic_Part_Design_Tutorial/es.md) , [Basic Sketcher Tutorial/es](Basic_Sketcher_Tutorial/es.md) , [Constraint/es](Constraint/es.md) , [Creating a simple part with PartDesign/es](Creating_a_simple_part_with_PartDesign/es.md) , [Part and PartDesign/es](Part_and_PartDesign/es.md) , [Sketch/es](Sketch/es.md) , [Sketcher CarbonCopy/es](Sketcher_CarbonCopy/es.md) , [Sketcher Clone/es](Sketcher_Clone/es.md) , [Sketcher CloseShape/es](Sketcher_CloseShape/es.md) , [Sketcher CompCreateArc/es](Sketcher_CompCreateArc/es.md) , [Sketcher CompCreateBSpline/es](Sketcher_CompCreateBSpline/es.md) , [Sketcher CompCreateCircle/es](Sketcher_CompCreateCircle/es.md) , [Sketcher CompCreateConic/es](Sketcher_CompCreateConic/es.md) , [Sketcher CompCreateRegularPolygon/es](Sketcher_CompCreateRegularPolygon/es.md) , [Sketcher ConnectLines/es](Sketcher_ConnectLines/es.md) , [Sketcher ConstrainAngle/es](Sketcher_ConstrainAngle/es.md) , [Sketcher ConstrainBlock/es](Sketcher_ConstrainBlock/es.md) , [Sketcher ConstrainCoincident/es](Sketcher_ConstrainCoincident/es.md) , [Sketcher ConstrainDiameter/es](Sketcher_ConstrainDiameter/es.md) , [Sketcher ConstrainDistance/es](Sketcher_ConstrainDistance/es.md) , [Sketcher ConstrainDistanceX/es](Sketcher_ConstrainDistanceX/es.md) , [Sketcher ConstrainDistanceY/es](Sketcher_ConstrainDistanceY/es.md) , [Sketcher ConstrainEqual/es](Sketcher_ConstrainEqual/es.md) , [Sketcher ConstrainHorizontal/es](Sketcher_ConstrainHorizontal/es.md) , [Sketcher ConstrainInternalAlignment/es](Sketcher_ConstrainInternalAlignment/es.md) , [Sketcher ConstrainLock/es](Sketcher_ConstrainLock/es.md) , [Sketcher ConstrainParallel/es](Sketcher_ConstrainParallel/es.md) , [Sketcher ConstrainPerpendicular/es](Sketcher_ConstrainPerpendicular/es.md) , [Sketcher ConstrainPointOnObject/es](Sketcher_ConstrainPointOnObject/es.md) , [Sketcher ConstrainRadius/es](Sketcher_ConstrainRadius/es.md) , [Sketcher ConstrainSnellsLaw/es](Sketcher_ConstrainSnellsLaw/es.md) , [Sketcher ConstrainSymmetric/es](Sketcher_ConstrainSymmetric/es.md) , [Sketcher ConstrainTangent/es](Sketcher_ConstrainTangent/es.md) , [Sketcher ConstrainVertical/es](Sketcher_ConstrainVertical/es.md) , [Sketcher Copy/es](Sketcher_Copy/es.md) , [Sketcher Create3PointArc/es](Sketcher_Create3PointArc/es.md) , [Sketcher Create3PointCircle/es](Sketcher_Create3PointCircle/es.md) , [Sketcher CreateArc/es](Sketcher_CreateArc/es.md) , [Sketcher CreateArcOfEllipse/es](Sketcher_CreateArcOfEllipse/es.md) , [Sketcher CreateArcOfHyperbola/es](Sketcher_CreateArcOfHyperbola/es.md) , [Sketcher CreateArcOfParabola/es](Sketcher_CreateArcOfParabola/es.md) , [Sketcher CreateCircle/es](Sketcher_CreateCircle/es.md) , [Sketcher CreateEllipseBy3Points/es](Sketcher_CreateEllipseBy3Points/es.md) , [Sketcher CreateEllipseByCenter/es](Sketcher_CreateEllipseByCenter/es.md) , [Sketcher CreateFillet/es](Sketcher_CreateFillet/es.md) , [Sketcher CreateHeptagon/es](Sketcher_CreateHeptagon/es.md) , [Sketcher CreateHexagon/es](Sketcher_CreateHexagon/es.md) , [Sketcher CreateLine/es](Sketcher_CreateLine/es.md) , [Sketcher CreateOctagon/es](Sketcher_CreateOctagon/es.md) , [Sketcher CreatePentagon/es](Sketcher_CreatePentagon/es.md) , [Sketcher CreatePoint/es](Sketcher_CreatePoint/es.md) , [Sketcher CreatePolyline/es](Sketcher_CreatePolyline/es.md) , [Sketcher CreateRectangle/es](Sketcher_CreateRectangle/es.md) , [Sketcher CreateRegularPolygon/es](Sketcher_CreateRegularPolygon/es.md) , [Sketcher CreateSlot/es](Sketcher_CreateSlot/es.md) , [Sketcher CreateSquare/es](Sketcher_CreateSquare/es.md) , [Sketcher CreateTriangle/es](Sketcher_CreateTriangle/es.md) , [Sketcher EditSketch/es](Sketcher_EditSketch/es.md) , [Sketcher Extend/es](Sketcher_Extend/es.md) , [Sketcher External/es](Sketcher_External/es.md) , [Sketcher helper constraint/es](Sketcher_helper_constraint/es.md) , [Sketcher LeaveSketch/es](Sketcher_LeaveSketch/es.md) , [Sketcher MapSketch/es](Sketcher_MapSketch/es.md) , [Sketcher MergeSketches/es](Sketcher_MergeSketches/es.md) , [Sketcher MirrorSketch/es](Sketcher_MirrorSketch/es.md) , [Sketcher Move/es](Sketcher_Move/es.md) , [Sketcher NewSketch/es](Sketcher_NewSketch/es.md) , [Sketcher Preferences/es](Sketcher_Preferences/es.md) , [Sketcher project/es](Sketcher_project/es.md) , [Sketcher RectangularArray/es](Sketcher_RectangularArray/es.md) , [Sketcher ReorientSketch/es](Sketcher_ReorientSketch/es.md) , [Sketcher requirement for a sketch/es](Sketcher_requirement_for_a_sketch/es.md) , [Sketcher RestoreInternalAlignmentGeometry/es](Sketcher_RestoreInternalAlignmentGeometry/es.md) , [Sketcher scripting/es](Sketcher_scripting/es.md) , [Sketcher SelectConflictingConstraints/es](Sketcher_SelectConflictingConstraints/es.md) , [Sketcher SelectConstraints/es](Sketcher_SelectConstraints/es.md) , [Sketcher SelectElementsAssociatedWithConstraints/es](Sketcher_SelectElementsAssociatedWithConstraints/es.md) , [Sketcher SelectElementsWithDoFs/es](Sketcher_SelectElementsWithDoFs/es.md) , [Sketcher SelectHorizontalAxis/es](Sketcher_SelectHorizontalAxis/es.md) , [Sketcher SelectOrigin/es](Sketcher_SelectOrigin/es.md) , [Sketcher SelectRedundantConstraints/es](Sketcher_SelectRedundantConstraints/es.md) , [Sketcher SelectVerticalAxis/es](Sketcher_SelectVerticalAxis/es.md) , [Sketcher Split/es](Sketcher_Split/es.md) , [Sketcher StopOperation/es](Sketcher_StopOperation/es.md) , [Sketcher Symmetry/es](Sketcher_Symmetry/es.md) , [Sketcher ToggleConstruction/es](Sketcher_ToggleConstruction/es.md) , [Sketcher ToggleDrivingConstraint/es](Sketcher_ToggleDrivingConstraint/es.md) , [Template:Sketcher Tools navi/es](Template:Sketcher_Tools_navi/es.md) , [Sketcher Trimming/es](Sketcher_Trimming/es.md) , [Sketcher Tutorial/es](Sketcher_Tutorial/es.md) , [Sketcher ValidateSketch/es](Sketcher_ValidateSketch/es.md) , [Sketcher ViewSketch/es](Sketcher_ViewSketch/es.md) , [Sketcher Workbench/es](Sketcher_Workbench/es.md) , [Toothbrush Head Stand/es](Toothbrush_Head_Stand/es.md) + +--- +[documentation index](../README.md) > Category:Sketcher/es diff --git a/wiki/translations/es/Category:Std_Base.md b/wiki/translations/es/Category:Std_Base.md index 6718829326..7c10ae647e 100644 --- a/wiki/translations/es/Category:Std_Base.md +++ b/wiki/translations/es/Category:Std_Base.md @@ -6,3 +6,6 @@ This category list pages related to the [Std Base](Std_Base/es.md), which collec [App Link/es](App_Link/es.md) , [Combo view/es](Combo_view/es.md) , [Interface Customization/es](Interface_Customization/es.md) , [Property editor/es](Property_editor/es.md) , [Python console/es](Python_console/es.md) , [Report view/es](Report_view/es.md) , [Standard Menu/es](Standard_Menu/es.md) , [Std AddonMgr/es](Std_AddonMgr/es.md) , [Template:Std Base navi/es](Template:Std_Base_navi/es.md) , [Template:Std Base/es](Template:Std_Base/es.md) , [Std Base/es](Std_Base/es.md) , [Std Delete/es](Std_Delete/es.md) , [Std DependencyGraph/es](Std_DependencyGraph/es.md) , [Std DlgCustomize/es](Std_DlgCustomize/es.md) , [Std Edit Menu/es](Std_Edit_Menu/es.md) , [Std Edit/es](Std_Edit/es.md) , [Std File Menu/es](Std_File_Menu/es.md) , [Std Group/es](Std_Group/es.md) , [Std Import/es](Std_Import/es.md) , [Std New/es](Std_New/es.md) , [Std Open/es](Std_Open/es.md) , [Std OrthographicCamera/es](Std_OrthographicCamera/es.md) , [Std Part/es](Std_Part/es.md) , [Std PerspectiveCamera/es](Std_PerspectiveCamera/es.md) , [Std ProjectUtil/es](Std_ProjectUtil/es.md) , [Std Save/es](Std_Save/es.md) , [Std SaveAs/es](Std_SaveAs/es.md) , [Std SceneInspector/es](Std_SceneInspector/es.md) , [Std ToggleClipPlane/es](Std_ToggleClipPlane/es.md) , [Std Tools Menu/es](Std_Tools_Menu/es.md) , [Std View Menu/es](Std_View_Menu/es.md) , [Std ViewScreenShot/es](Std_ViewScreenShot/es.md) , [Tree view/es](Tree_view/es.md) [Category:User\_Documentation/es](Category:User_Documentation/es.md) + +--- +[documentation index](../README.md) > Category:Std Base/es diff --git a/wiki/translations/es/Category:Surface.md b/wiki/translations/es/Category:Surface.md index bba39de9e5..dcf38b44cb 100644 --- a/wiki/translations/es/Category:Surface.md +++ b/wiki/translations/es/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/es](Surface_Workbenc [Surface Workbench/es](Surface_Workbench/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Surface/es diff --git a/wiki/translations/es/Category:TechDraw.md b/wiki/translations/es/Category:TechDraw.md index 0a2cc672e2..c877c5074d 100644 --- a/wiki/translations/es/Category:TechDraw.md +++ b/wiki/translations/es/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/es](TechDraw_Workbe [Advanced TechDraw Tutorial/es](Advanced_TechDraw_Tutorial/es.md) , [DXF/es](DXF/es.md) , [SVG/es](SVG/es.md) , [TechDraw AngleDimension/es](TechDraw_AngleDimension/es.md) , [TechDraw DiameterDimension/es](TechDraw_DiameterDimension/es.md) , [TechDraw ExportPageDXF/es](TechDraw_ExportPageDXF/es.md) , [TechDraw ExportPageSVG/es](TechDraw_ExportPageSVG/es.md) , [TechDraw Hatch/es](TechDraw_Hatch/es.md) , [TechDraw HorizontalDimension/es](TechDraw_HorizontalDimension/es.md) , [TechDraw HowTo Page/es](TechDraw_HowTo_Page/es.md) , [TechDraw LengthDimension/es](TechDraw_LengthDimension/es.md) , [TechDraw PageDefault/es](TechDraw_PageDefault/es.md) , [TechDraw PageTemplate/es](TechDraw_PageTemplate/es.md) , [TechDraw ProjectionGroup/es](TechDraw_ProjectionGroup/es.md) , [TechDraw RadiusDimension/es](TechDraw_RadiusDimension/es.md) , [TechDraw RedrawPage/es](TechDraw_RedrawPage/es.md) , [TechDraw Roadmap/es](TechDraw_Roadmap/es.md) , [TechDraw SectionView/es](TechDraw_SectionView/es.md) , [TechDraw VerticalDimension/es](TechDraw_VerticalDimension/es.md) , [TechDraw View/es](TechDraw_View/es.md) , [TechDraw Workbench/es](TechDraw_Workbench/es.md) , [Topological naming problem/es](Topological_naming_problem/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:TechDraw/es diff --git a/wiki/translations/es/Category:Template.md b/wiki/translations/es/Category:Template.md index 5e52486b08..3d0c7dc691 100644 --- a/wiki/translations/es/Category:Template.md +++ b/wiki/translations/es/Category:Template.md @@ -8,3 +8,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) [Template:APIFunction/es](Template:APIFunction/es.md) , [Template:APIProperty/es](Template:APIProperty/es.md) , [Template:Blender Navigation/es](Template:Blender_Navigation/es.md) , [Template:CAD Navigation/es](Template:CAD_Navigation/es.md) , [Template:Es](Template:Es.md) , [Template:Languages/es](Template:Languages/es.md) , [Template:Property/es](Template:Property/es.md) , [Template:Raytracing Tools/es](Template:Raytracing_Tools/es.md) , [Template:Sketcher Tools/es](Template:Sketcher_Tools/es.md) , [Template:Touchpad Navigation/es](Template:Touchpad_Navigation/es.md) , , , [Category:Categories/es](Category:Categories/es.md) [Category:Template:Doc/es](Category:Template:Doc/es.md) [Category:Template:Navigation/es](Category:Template:Navigation/es.md) [Category:Template:Text/es](Category:Template:Text/es.md) + +--- +[documentation index](../README.md) > Category:Template/es diff --git a/wiki/translations/es/Category:Template:Doc.md b/wiki/translations/es/Category:Template:Doc.md index d00a32b742..40a8feb73a 100644 --- a/wiki/translations/es/Category:Template:Doc.md +++ b/wiki/translations/es/Category:Template:Doc.md @@ -6,3 +6,6 @@ This category lists templates that produce text boxes used for documenting comma [Template:Macro/es](Template:Macro/es.md) [Category:Template/es](Category:Template/es.md) + +--- +[documentation index](../README.md) > Category:Template:Doc/es diff --git a/wiki/translations/es/Category:Template:Navigation.md b/wiki/translations/es/Category:Template:Navigation.md index e67251f36a..c7b5d3d9f6 100644 --- a/wiki/translations/es/Category:Template:Navigation.md +++ b/wiki/translations/es/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/es](Template:Arch_Tools_navi/es.md) , [Template:Drawing Tools navi/es](Template:Drawing_Tools_navi/es.md) , [Template:FEM Tools navi/es](Template:FEM_Tools_navi/es.md) , [Template:Mesh Tools navi/es](Template:Mesh_Tools_navi/es.md) , [Template:OpenSCAD Tools navi/es](Template:OpenSCAD_Tools_navi/es.md) , [Template:Part Tools navi/es](Template:Part_Tools_navi/es.md) , [Template:PartDesign Tools navi/es](Template:PartDesign_Tools_navi/es.md) , [Template:Path Tools navi/es](Template:Path_Tools_navi/es.md) , [Template:Plot Tools navi/es](Template:Plot_Tools_navi/es.md) , [Template:Powerdocnavi/es](Template:Powerdocnavi/es.md) , [Template:Raytracing Tools navi/es](Template:Raytracing_Tools_navi/es.md) , [Template:Robot Tools navi/es](Template:Robot_Tools_navi/es.md) , [Template:Ship Tools navi/es](Template:Ship_Tools_navi/es.md) , [Template:Sketcher Tools navi/es](Template:Sketcher_Tools_navi/es.md) , [Template:Std Base navi/es](Template:Std_Base_navi/es.md) , [Template:Std Base/es](Template:Std_Base/es.md) [Category:Template/es](Category:Template/es.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/es diff --git a/wiki/translations/es/Category:Template:Text.md b/wiki/translations/es/Category:Template:Text.md index a96e44ce49..b74ceef311 100644 --- a/wiki/translations/es/Category:Template:Text.md +++ b/wiki/translations/es/Category:Template:Text.md @@ -10,3 +10,6 @@ Longer pieces of text should be placed in the page itself so that they are trans [Template:Version/es](Template:Version/es.md) [Category:Template/es](Category:Template/es.md) + +--- +[documentation index](../README.md) > Category:Template:Text/es diff --git a/wiki/translations/es/Category:Test_Framework.md b/wiki/translations/es/Category:Test_Framework.md index 0c1b0692f7..9915fc26a4 100644 --- a/wiki/translations/es/Category:Test_Framework.md +++ b/wiki/translations/es/Category:Test_Framework.md @@ -6,3 +6,6 @@ This category lists pages related to the [Test Framework Workbench/es](Test_Fram [Testing/es](Testing/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) [Category:User\_Documentation/es](Category:User_Documentation/es.md) [Category:Testing/es](Category:Testing/es.md) + +--- +[documentation index](../README.md) > Category:Test Framework/es diff --git a/wiki/translations/es/Category:Testing.md b/wiki/translations/es/Category:Testing.md index 14a7237d8b..4c25a4677d 100644 --- a/wiki/translations/es/Category:Testing.md +++ b/wiki/translations/es/Category:Testing.md @@ -6,3 +6,6 @@ Pages related to testing in regards to unit testing, continuous integration, qua [AppImage/es](AppImage/es.md) , [Continuous Integration/es](Continuous_Integration/es.md) , [Testing/es](Testing/es.md) , [Category:Test Framework/es](Category:Test_Framework/es.md) + +--- +[documentation index](../README.md) > Category:Testing/es diff --git a/wiki/translations/es/Category:Tutorials.md b/wiki/translations/es/Category:Tutorials.md index 7497021c89..1cfcbafbfd 100644 --- a/wiki/translations/es/Category:Tutorials.md +++ b/wiki/translations/es/Category:Tutorials.md @@ -6,3 +6,6 @@ Tutoriales de FreeCAD. Por favor, ayúdanos añadiendo más! [Advanced TechDraw Tutorial/es](Advanced_TechDraw_Tutorial/es.md) , [Aeroplane/es](Aeroplane/es.md) , [Analysis of reinforced concrete with FEM/es](Analysis_of_reinforced_concrete_with_FEM/es.md) , [Arch tutorial/es](Arch_tutorial/es.md) , [Basic modeling tutorial/es](Basic_modeling_tutorial/es.md) , [Basic Part Design Tutorial/es](Basic_Part_Design_Tutorial/es.md) , [Basic Sketcher Tutorial/es](Basic_Sketcher_Tutorial/es.md) , [Creating a simple part with PartDesign/es](Creating_a_simple_part_with_PartDesign/es.md) , [Customize Toolbars/es](Customize_Toolbars/es.md) , [Draft tutorial/es](Draft_tutorial/es.md) , [Dxf Importer Install/es](Dxf_Importer_Install/es.md) , [Engine Block Tutorial/es](Engine_Block_Tutorial/es.md) , [Extend FEM Module/es](Extend_FEM_Module/es.md) , [FEM CalculiX Cantilever 3D/es](FEM_CalculiX_Cantilever_3D/es.md) , [FEM Shear of a Composite Block/es](FEM_Shear_of_a_Composite_Block/es.md) , [FEM Tutorial Python/es](FEM_Tutorial_Python/es.md) , [FEM tutorial/es](FEM_tutorial/es.md) , [FreeCAD-Ship s60 tutorial (II)/es](FreeCAD-Ship_s60_tutorial_(II)/es.md) , [FreeCAD-Ship s60 tutorial/es](FreeCAD-Ship_s60_tutorial/es.md) , [How to install additional workbenches/es](How_to_install_additional_workbenches/es.md) , [How to install macros/es](How_to_install_macros/es.md) , [Import OpenSCAD code/es](Import_OpenSCAD_code/es.md) , [Import/Export IFC - compiling IfcOpenShell/es](Import/Export_IFC_-_compiling_IfcOpenShell/es.md) , [Manual:Generating 2D drawings/es](Manual:Generating_2D_drawings/es.md) , [Manual:Import and export to other filetypes/es](Manual:Import_and_export_to_other_filetypes/es.md) , [Manual:Installing/es](Manual:Installing/es.md) , [Manual:Parametric objects/es](Manual:Parametric_objects/es.md) , [Manual:Preparing models for 3D printing/es](Manual:Preparing_models_for_3D_printing/es.md) , [PartDesign Bearingholder Tutorial I/es](PartDesign_Bearingholder_Tutorial_I/es.md) , [PartDesign Bearingholder Tutorial II/es](PartDesign_Bearingholder_Tutorial_II/es.md) , [PartDesign tutorial/es](PartDesign_tutorial/es.md) , [Plot Basic tutorial/es](Plot_Basic_tutorial/es.md) , [Plot MultiAxes tutorial/es](Plot_MultiAxes_tutorial/es.md) , [Robot 6-Axis/es](Robot_6-Axis/es.md) , [Robot tutorial/es](Robot_tutorial/es.md) , [Sketcher requirement for a sketch/es](Sketcher_requirement_for_a_sketch/es.md) , [Sketcher Tutorial/es](Sketcher_Tutorial/es.md) , [TechDraw HowTo Page/es](TechDraw_HowTo_Page/es.md) , [Toothbrush Head Stand/es](Toothbrush_Head_Stand/es.md) , [Template:TutorialInfo/es](Template:TutorialInfo/es.md) , [Tutorials/es](Tutorials/es.md) , [VRML Preparation for Robot Simulation/es](VRML_Preparation_for_Robot_Simulation/es.md) , [Wikihouse porting tutorial/es](Wikihouse_porting_tutorial/es.md) [Category:Categories/es](Category:Categories/es.md) + +--- +[documentation index](../README.md) > Category:Tutorials/es diff --git a/wiki/translations/es/Category:User_Documentation.md b/wiki/translations/es/Category:User_Documentation.md index 038c03e107..ef0bfc6bdd 100644 --- a/wiki/translations/es/Category:User_Documentation.md +++ b/wiki/translations/es/Category:User_Documentation.md @@ -6,3 +6,6 @@ Esta categoría contiene artículos sobre la utilización de FreeCAD. También e [Template:GuiCommandAddon/es](Template:GuiCommandAddon/es.md) , [3D view/es](3D_view/es.md) , [3Dconnexion input devices/es](3Dconnexion_input_devices/es.md) , [A2plus Workbench/es](A2plus_Workbench/es.md) , [About FreeCAD/es](About_FreeCAD/es.md) , [Addon/es](Addon/es.md) , [Advanced TechDraw Tutorial/es](Advanced_TechDraw_Tutorial/es.md) , [Aeroplane/es](Aeroplane/es.md) , [Analysis of reinforced concrete with FEM/es](Analysis_of_reinforced_concrete_with_FEM/es.md) , [Animation Workbench/es](Animation_Workbench/es.md) , [App Link/es](App_Link/es.md) , [AppImage/es](AppImage/es.md) , [Arch 3Views/es](Arch_3Views/es.md) , [Arch Add/es](Arch_Add/es.md) , [Arch Axis/es](Arch_Axis/es.md) , [Arch AxisSystem/es](Arch_AxisSystem/es.md) , [Arch Building/es](Arch_Building/es.md) , [Arch BuildingPart/es](Arch_BuildingPart/es.md) , [Arch Check/es](Arch_Check/es.md) , [Arch CloneComponent/es](Arch_CloneComponent/es.md) , [Arch CloseHoles/es](Arch_CloseHoles/es.md) , [Arch Component/es](Arch_Component/es.md) , [Arch CompRebarStraight/es](Arch_CompRebarStraight/es.md) , [Arch CurtainWall/es](Arch_CurtainWall/es.md) , [Arch CutPlane/es](Arch_CutPlane/es.md) , [Arch DAE/es](Arch_DAE/es.md) , [Arch Equipment/es](Arch_Equipment/es.md) , [Arch Floor/es](Arch_Floor/es.md) , [Arch Frame/es](Arch_Frame/es.md) , [Arch Grid/es](Arch_Grid/es.md) , [Arch IFC/es](Arch_IFC/es.md) , [Arch IfcExplorer/es](Arch_IfcExplorer/es.md) , [Arch MeshToShape/es](Arch_MeshToShape/es.md) , [Arch MultiMaterial/es](Arch_MultiMaterial/es.md) , [Arch Nest/es](Arch_Nest/es.md) , [Arch OBJ/es](Arch_OBJ/es.md) , [Arch Panel Cut/es](Arch_Panel_Cut/es.md) , [Arch Panel Sheet/es](Arch_Panel_Sheet/es.md) , [Arch Panel/es](Arch_Panel/es.md) , [Arch Pipe/es](Arch_Pipe/es.md) , [Arch PipeConnector/es](Arch_PipeConnector/es.md) , [Arch Profile/es](Arch_Profile/es.md) , [Arch Project/es](Arch_Project/es.md) , [Arch Rebar BentShape/es](Arch_Rebar_BentShape/es.md) , [Arch Rebar Helical/es](Arch_Rebar_Helical/es.md) , [Arch Rebar LShape/es](Arch_Rebar_LShape/es.md) , [Arch Rebar Stirrup/es](Arch_Rebar_Stirrup/es.md) , [Arch Rebar Straight/es](Arch_Rebar_Straight/es.md) , [Arch Rebar UShape/es](Arch_Rebar_UShape/es.md) , [Arch Rebar/es](Arch_Rebar/es.md) , [Arch Reference/es](Arch_Reference/es.md) , [Arch Remove/es](Arch_Remove/es.md) , [Arch RemoveShape/es](Arch_RemoveShape/es.md) , [Arch Roof/es](Arch_Roof/es.md) , [Arch SectionPlane/es](Arch_SectionPlane/es.md) , [Arch SelectNonSolidMeshes/es](Arch_SelectNonSolidMeshes/es.md) , [Arch SetMaterial/es](Arch_SetMaterial/es.md) , [Arch Site/es](Arch_Site/es.md) , [Arch Space/es](Arch_Space/es.md) , [Arch SplitMesh/es](Arch_SplitMesh/es.md) , [Arch Stairs/es](Arch_Stairs/es.md) , [Arch Structure/es](Arch_Structure/es.md) , [Arch Survey/es](Arch_Survey/es.md) , [Arch ToggleIfcBrepFlag/es](Arch_ToggleIfcBrepFlag/es.md) , [Arch ToggleSubs/es](Arch_ToggleSubs/es.md) , [Arch Truss/es](Arch_Truss/es.md) , [Arch tutorial/es](Arch_tutorial/es.md) , [Arch Wall/es](Arch_Wall/es.md) , [Arch Window/es](Arch_Window/es.md) , [Arch Workbench/es](Arch_Workbench/es.md) , [Assembly3 Workbench/es](Assembly3_Workbench/es.md) , [Assembly4 Workbench/es](Assembly4_Workbench/es.md) , [Base API/es](Base_API/es.md) , [Basic modeling tutorial/es](Basic_modeling_tutorial/es.md) , [Basic Part Design Tutorial/es](Basic_Part_Design_Tutorial/es.md) , [Basic Sketcher Tutorial/es](Basic_Sketcher_Tutorial/es.md) , [BIM Box/es](BIM_Box/es.md) , [BIM Copy/es](BIM_Copy/es.md) , [BIM Library/es](BIM_Library/es.md) , [BIM Project/es](BIM_Project/es.md) , [BIM Setup/es](BIM_Setup/es.md) , [BIM Workbench/es](BIM_Workbench/es.md) , [Branding/es](Branding/es.md) , [Civil Engineering Workbench/es](Civil_Engineering_Workbench/es.md) , [Combo view/es](Combo_view/es.md) , [Compile on Docker/es](Compile_on_Docker/es.md) , [Compile on Linux/es](Compile_on_Linux/es.md) , [Compile on MacOS/es](Compile_on_MacOS/es.md) , [Compile on MinGW/es](Compile_on_MinGW/es.md) , [Compile on Windows/es](Compile_on_Windows/es.md) , [Compiling (Speeding up)/es](Compiling_(Speeding_up)/es.md) , [Compiling/es](Compiling/es.md) , [Complete Workbench/es](Complete_Workbench/es.md) , [Console API/es](Console_API/es.md) , [Constraint/es](Constraint/es.md) , [Constructive solid geometry/es](Constructive_solid_geometry/es.md) , [Continuous Integration/es](Continuous_Integration/es.md) , [Contributors/es](Contributors/es.md) , [Copying Objects/es](Copying_Objects/es.md) , [Creating a simple part with PartDesign/es](Creating_a_simple_part_with_PartDesign/es.md) , [Custom Spacing/es](Custom_Spacing/es.md) , [Customize Toolbars/es](Customize_Toolbars/es.md) , [Debian development/es](Debian_development/es.md) , [Debian Unstable/es](Debian_Unstable/es.md) , [Developer hub/es](Developer_hub/es.md) , [Document structure/es](Document_structure/es.md) , [Donate/es](Donate/es.md) , [Download/es](Download/es.md) , [Draft AddConstruction/es](Draft_AddConstruction/es.md) , [Draft AddToGroup/es](Draft_AddToGroup/es.md) , [Draft AnnotationStyleEditor/es](Draft_AnnotationStyleEditor/es.md) , [Draft API/es](Draft_API/es.md) , [Draft ApplyStyle/es](Draft_ApplyStyle/es.md) , [Draft Arc/es](Draft_Arc/es.md) , [Draft Array/es](Draft_Array/es.md) , [Draft AutoGroup/es](Draft_AutoGroup/es.md) , [Draft BezCurve/es](Draft_BezCurve/es.md) , [Draft BSpline/es](Draft_BSpline/es.md) , [Draft Circle/es](Draft_Circle/es.md) , [Draft CircularArray/es](Draft_CircularArray/es.md) , [Draft Clone/es](Draft_Clone/es.md) , [Draft Constrain/es](Draft_Constrain/es.md) , [Draft CubicBezCurve/es](Draft_CubicBezCurve/es.md) , [Draft DAT/es](Draft_DAT/es.md) , [Draft Dimension/es](Draft_Dimension/es.md) , [Draft Downgrade/es](Draft_Downgrade/es.md) , [Draft Draft2Sketch/es](Draft_Draft2Sketch/es.md) , [Draft Drawing/es](Draft_Drawing/es.md) , [Draft DXF/es](Draft_DXF/es.md) , [Draft Edit/es](Draft_Edit/es.md) , [Draft Ellipse/es](Draft_Ellipse/es.md) , [Draft Facebinder/es](Draft_Facebinder/es.md) , [Draft FlipDimension/es](Draft_FlipDimension/es.md) , [Draft Heal/es](Draft_Heal/es.md) , [Draft Label/es](Draft_Label/es.md) , [Draft Line/es](Draft_Line/es.md) , [Draft Mirror/es](Draft_Mirror/es.md) , [Draft Move/es](Draft_Move/es.md) , [Draft OCA/es](Draft_OCA/es.md) , [Draft Offset/es](Draft_Offset/es.md) , [Draft OrthoArray/es](Draft_OrthoArray/es.md) , [Draft PathArray/es](Draft_PathArray/es.md) , [Draft Point/es](Draft_Point/es.md) , [Draft PointArray/es](Draft_PointArray/es.md) , [Draft PolarArray/es](Draft_PolarArray/es.md) , [Draft Polygon/es](Draft_Polygon/es.md) , [Draft Preferences/es](Draft_Preferences/es.md) , [Draft Rectangle/es](Draft_Rectangle/es.md) , [Draft Rotate/es](Draft_Rotate/es.md) , [Draft Scale/es](Draft_Scale/es.md) , [Draft SelectGroup/es](Draft_SelectGroup/es.md) , [Draft SelectPlane/es](Draft_SelectPlane/es.md) , [Draft Shape2DView/es](Draft_Shape2DView/es.md) , [Draft ShapeString/es](Draft_ShapeString/es.md) , [Draft ShowSnapBar/es](Draft_ShowSnapBar/es.md) , [Draft Slope/es](Draft_Slope/es.md) , [Draft Snap Angle/es](Draft_Snap_Angle/es.md) , [Draft Snap Center/es](Draft_Snap_Center/es.md) , [Draft Snap Extension/es](Draft_Snap_Extension/es.md) , [Draft Snap Intersection/es](Draft_Snap_Intersection/es.md) , [Draft Snap Lock/es](Draft_Snap_Lock/es.md) , [Draft Snap Midpoint/es](Draft_Snap_Midpoint/es.md) , [Draft Snap Ortho/es](Draft_Snap_Ortho/es.md) , [Draft Snap Parallel/es](Draft_Snap_Parallel/es.md) , [Draft Snap/es](Draft_Snap/es.md) , [Draft Stretch/es](Draft_Stretch/es.md) , [Draft SVG/es](Draft_SVG/es.md) , [Draft Text/es](Draft_Text/es.md) , [Draft ToggleConstructionMode/es](Draft_ToggleConstructionMode/es.md) , [Draft ToggleContinueMode/es](Draft_ToggleContinueMode/es.md) , [Draft ToggleDisplayMode/es](Draft_ToggleDisplayMode/es.md) , [Draft ToggleGrid/es](Draft_ToggleGrid/es.md) , [Draft Tray/es](Draft_Tray/es.md) , [Draft Trimex/es](Draft_Trimex/es.md) , [Draft tutorial/es](Draft_tutorial/es.md) , [Draft Upgrade/es](Draft_Upgrade/es.md) , [Draft Wire/es](Draft_Wire/es.md) , [Draft WireToBSpline/es](Draft_WireToBSpline/es.md) , [Draft Workbench/es](Draft_Workbench/es.md) , [Draft WorkingPlaneProxy/es](Draft_WorkingPlaneProxy/es.md) , [Drawing Annotation/es](Drawing_Annotation/es.md) , [Drawing Clip/es](Drawing_Clip/es.md) , [Drawing Landscape A3/es](Drawing_Landscape_A3/es.md) , [Drawing Open SVG/es](Drawing_Open_SVG/es.md) , [Drawing Orthoviews/es](Drawing_Orthoviews/es.md) , [Drawing Save/es](Drawing_Save/es.md) , [Drawing templates/es](Drawing_templates/es.md) , [Drawing View/es](Drawing_View/es.md) , [Drawing Workbench/es](Drawing_Workbench/es.md) , [Dxf Importer Install/es](Dxf_Importer_Install/es.md) , [DXF/es](DXF/es.md) , [Engine Block Tutorial/es](Engine_Block_Tutorial/es.md) , [Extend FEM Module/es](Extend_FEM_Module/es.md) , [External workbenches/es](External_workbenches/es.md) , [Extra python modules/es](Extra_python_modules/es.md) , [FCGear Workbench/es](FCGear_Workbench/es.md) , [Feature editing/es](Feature_editing/es.md) , [Feature list/es](Feature_list/es.md) , [FEM CalculiX Cantilever 3D/es](FEM_CalculiX_Cantilever_3D/es.md) , [FEM Install/es](FEM_Install/es.md) , [FEM MaterialSolid/es](FEM_MaterialSolid/es.md) , [FEM Mesh/es](FEM_Mesh/es.md) , [FEM PostPipelineFromResult/es](FEM_PostPipelineFromResult/es.md) , [FEM project/es](FEM_project/es.md) , [FEM Shear of a Composite Block/es](FEM_Shear_of_a_Composite_Block/es.md) , [FEM Solver/es](FEM_Solver/es.md) , [FEM SolverCalculixCxxtools/es](FEM_SolverCalculixCxxtools/es.md) , [FEM Tutorial Python/es](FEM_Tutorial_Python/es.md) , [FEM tutorial/es](FEM_tutorial/es.md) , [FEM Workbench/es](FEM_Workbench/es.md) , [File Format FCStd/es](File_Format_FCStd/es.md) , [FreeCAD and DWG Import/es](FreeCAD_and_DWG_Import/es.md) , [FreeCAD and DXF Import/es](FreeCAD_and_DXF_Import/es.md) , [FreeCAD API/es](FreeCAD_API/es.md) , [FreeCAD Build Tool/es](FreeCAD_Build_Tool/es.md) , [FreeCAD-Ship s60 tutorial (II)/es](FreeCAD-Ship_s60_tutorial_(II)/es.md) , [FreeCAD-Ship s60 tutorial/es](FreeCAD-Ship_s60_tutorial/es.md) , [FreeCADGui API/es](FreeCADGui_API/es.md) , [Frequently asked questions/es](Frequently_asked_questions/es.md) , [Getting started/es](Getting_started/es.md) , [Git buildpackage/es](Git_buildpackage/es.md) , [Glossary/es](Glossary/es.md) , [GuiCommand model/es](GuiCommand_model/es.md) , [Template:GuiCommand/es](Template:GuiCommand/es.md) , [Help FreeCAD/es](Help_FreeCAD/es.md) , [Help/es](Help/es.md) , [How to install additional workbenches/es](How_to_install_additional_workbenches/es.md) , [How to install macros/es](How_to_install_macros/es.md) , [IfcOpenShell/es](IfcOpenShell/es.md) , [Image CreateImagePlane/es](Image_CreateImagePlane/es.md) , [Image Open/es](Image_Open/es.md) , [Image Workbench/es](Image_Workbench/es.md) , [Import Export Preferences/es](Import_Export_Preferences/es.md) , [Import Export/es](Import_Export/es.md) , [Import OpenSCAD code/es](Import_OpenSCAD_code/es.md) , [Import/Export IFC - compiling IfcOpenShell/es](Import/Export_IFC_-_compiling_IfcOpenShell/es.md) , [Inspection Workbench/es](Inspection_Workbench/es.md) , [Installing additional components/es](Installing_additional_components/es.md) , [Installing Helpfile/es](Installing_Helpfile/es.md) , [Installing on Linux/es](Installing_on_Linux/es.md) , [Installing on Mac/es](Installing_on_Mac/es.md) , [Installing on Windows/es](Installing_on_Windows/es.md) , [Interface Customization/es](Interface_Customization/es.md) , [Interface/es](Interface/es.md) , [KicadStepUp Workbench/es](KicadStepUp_Workbench/es.md) , [Licence/es](Licence/es.md) , [Linux packaging/es](Linux_packaging/es.md) , [Localisation/es](Localisation/es.md) , [Macro Align View to Face/es](Macro_Align_View_to_Face/es.md) , [Macro ArrayCopy/es](Macro_ArrayCopy/es.md) , [Macro Automatic drawing/es](Macro_Automatic_drawing/es.md) , [Macro Corner shapes wizard/es](Macro_Corner_shapes_wizard/es.md) , [Macro Draw 2D Function/es](Macro_Draw_2D_Function/es.md) , [Macro Draw Parametric 2D Function/es](Macro_Draw_Parametric_2D_Function/es.md) , [Macro FlattenWire/es](Macro_FlattenWire/es.md) , [Macro HealArcs/es](Macro_HealArcs/es.md) , [Macro JointWire/es](Macro_JointWire/es.md) , [Macro Make Cube/es](Macro_Make_Cube/es.md) , [Macro MeshToPart/es](Macro_MeshToPart/es.md) , [Macro MessageBox/es](Macro_MessageBox/es.md) , [Macro Mouse Cross/es](Macro_Mouse_Cross/es.md) , [Macro PartsLibrary/es](Macro_PartsLibrary/es.md) , [Macro Rectellipse/es](Macro_Rectellipse/es.md) , [Macro Remove parametric history/es](Macro_Remove_parametric_history/es.md) , [Macro Rotate View/es](Macro_Rotate_View/es.md) , [Macro Solid Sweep/es](Macro_Solid_Sweep/es.md) , [Macro SuperWire/es](Macro_SuperWire/es.md) , [Macro Texture Objects/es](Macro_Texture_Objects/es.md) , [Macro View Rotation/es](Macro_View_Rotation/es.md) , [Template:Macro/es](Template:Macro/es.md) , [Main Page/es](Main_Page/es.md) , [Manipulator/es](Manipulator/es.md) , [Material/es](Material/es.md) , [Matrix API/es](Matrix_API/es.md) , [Mesh API/es](Mesh_API/es.md) , [Mesh Workbench/es](Mesh_Workbench/es.md) , [MIBA/es](MIBA/es.md) , [Migrating to FreeCAD from Fusion360/es](Migrating_to_FreeCAD_from_Fusion360/es.md) , [Migrating to FreeCAD from OnShape/es](Migrating_to_FreeCAD_from_OnShape/es.md) , [Mouse navigation/es](Mouse_navigation/es.md) , [Naming project/es](Naming_project/es.md) , [Object API/es](Object_API/es.md) , [Object name/es](Object_name/es.md) , [Offsite tutorials/es](Offsite_tutorials/es.md) , [Online Help Startpage/es](Online_Help_Startpage/es.md) , [Online Help Toc/es](Online_Help_Toc/es.md) , [OpenSCAD AddOpenSCADElement/es](OpenSCAD_AddOpenSCADElement/es.md) , [OpenSCAD ColorCodeShape/es](OpenSCAD_ColorCodeShape/es.md) , [OpenSCAD CSG/es](OpenSCAD_CSG/es.md) , [OpenSCAD Edgestofaces/es](OpenSCAD_Edgestofaces/es.md) , [OpenSCAD ExpandPlacements/es](OpenSCAD_ExpandPlacements/es.md) , [OpenSCAD IncreaseToleranceFeature/es](OpenSCAD_IncreaseToleranceFeature/es.md) , [OpenSCAD Preferences/es](OpenSCAD_Preferences/es.md) , [OpenSCAD RefineShapeFeature/es](OpenSCAD_RefineShapeFeature/es.md) , [OpenSCAD RemoveSubtree/es](OpenSCAD_RemoveSubtree/es.md) , [OpenSCAD ReplaceObject/es](OpenSCAD_ReplaceObject/es.md) , [OpenSCAD Workbench/es](OpenSCAD_Workbench/es.md) , [Packaging/es](Packaging/es.md) , [Part and PartDesign/es](Part_and_PartDesign/es.md) , [Part API/es](Part_API/es.md) , [Part Boolean/es](Part_Boolean/es.md) , [Part Box/es](Part_Box/es.md) , [Part Builder/es](Part_Builder/es.md) , [Part Chamfer/es](Part_Chamfer/es.md) , [Part CheckGeometry/es](Part_CheckGeometry/es.md) , [Part Circle/es](Part_Circle/es.md) , [Part Common/es](Part_Common/es.md) , [Part CompCompoundTools/es](Part_CompCompoundTools/es.md) , [Part Compound/es](Part_Compound/es.md) , [Part CompoundFilter/es](Part_CompoundFilter/es.md) , [Part Cone/es](Part_Cone/es.md) , [Part CrossSections/es](Part_CrossSections/es.md) , [Part Cut/es](Part_Cut/es.md) , [Part Cylinder/es](Part_Cylinder/es.md) , [Part Ellipse/es](Part_Ellipse/es.md) , [Part Ellipsoid/es](Part_Ellipsoid/es.md) , [Part ExplodeCompound/es](Part_ExplodeCompound/es.md) , [Part Extrude/es](Part_Extrude/es.md) , [Part Fillet/es](Part_Fillet/es.md) , [Part Fuse/es](Part_Fuse/es.md) , [Part Helix/es](Part_Helix/es.md) , [Part Line/es](Part_Line/es.md) , [Part Mirror/es](Part_Mirror/es.md) , [Part Module/es](Part_Module/es.md) , [Part Plane/es](Part_Plane/es.md) , [Part Point/es](Part_Point/es.md) , [Part Primitives/es](Part_Primitives/es.md) , [Part Prism/es](Part_Prism/es.md) , [Part ProjectionOnSurface/es](Part_ProjectionOnSurface/es.md) , [Part RegularPolygon/es](Part_RegularPolygon/es.md) , [Part Revolve/es](Part_Revolve/es.md) , [Part Section/es](Part_Section/es.md) , [Part Sphere/es](Part_Sphere/es.md) , [Part Spiral/es](Part_Spiral/es.md) , [Part Sweep/es](Part_Sweep/es.md) , [Part Thickness/es](Part_Thickness/es.md) , [Part Torus/es](Part_Torus/es.md) , [Part Tube/es](Part_Tube/es.md) , [Part Wedge/es](Part_Wedge/es.md) , [PartDesign AdditiveBox/es](PartDesign_AdditiveBox/es.md) , [PartDesign AdditiveCone/es](PartDesign_AdditiveCone/es.md) , [PartDesign AdditiveCylinder/es](PartDesign_AdditiveCylinder/es.md) , [PartDesign AdditiveEllipsoid/es](PartDesign_AdditiveEllipsoid/es.md) , [PartDesign AdditiveHelix/es](PartDesign_AdditiveHelix/es.md) , [PartDesign AdditiveLoft/es](PartDesign_AdditiveLoft/es.md) , [PartDesign AdditivePipe/es](PartDesign_AdditivePipe/es.md) , [PartDesign AdditivePrism/es](PartDesign_AdditivePrism/es.md) , [PartDesign AdditiveSphere/es](PartDesign_AdditiveSphere/es.md) , [PartDesign AdditiveTorus/es](PartDesign_AdditiveTorus/es.md) , [PartDesign AdditiveWedge/es](PartDesign_AdditiveWedge/es.md) , [PartDesign Bearingholder Tutorial I/es](PartDesign_Bearingholder_Tutorial_I/es.md) , [PartDesign Bearingholder Tutorial II/es](PartDesign_Bearingholder_Tutorial_II/es.md) , [PartDesign Body/es](PartDesign_Body/es.md) , [PartDesign Chamfer/es](PartDesign_Chamfer/es.md) , [PartDesign Clone/es](PartDesign_Clone/es.md) , [PartDesign CompPrimitiveAdditive/es](PartDesign_CompPrimitiveAdditive/es.md) , [PartDesign CompPrimitiveSubtractive/es](PartDesign_CompPrimitiveSubtractive/es.md) , [PartDesign Draft/es](PartDesign_Draft/es.md) , [PartDesign Feature/es](PartDesign_Feature/es.md) , [PartDesign Fillet/es](PartDesign_Fillet/es.md) , [PartDesign Groove/es](PartDesign_Groove/es.md) , [PartDesign Hole/es](PartDesign_Hole/es.md) , [PartDesign InvoluteGear/es](PartDesign_InvoluteGear/es.md) , [PartDesign Line/es](PartDesign_Line/es.md) , [PartDesign LinearPattern/es](PartDesign_LinearPattern/es.md) , [PartDesign Migrate/es](PartDesign_Migrate/es.md) , [PartDesign Mirrored/es](PartDesign_Mirrored/es.md) , [PartDesign MultiTransform/es](PartDesign_MultiTransform/es.md) , [PartDesign NewSketch/es](PartDesign_NewSketch/es.md) , [PartDesign Pad/es](PartDesign_Pad/es.md) , [PartDesign Plane/es](PartDesign_Plane/es.md) , [PartDesign Pocket/es](PartDesign_Pocket/es.md) , [PartDesign Point/es](PartDesign_Point/es.md) , [PartDesign PolarPattern/es](PartDesign_PolarPattern/es.md) , [PartDesign Revolution/es](PartDesign_Revolution/es.md) , [PartDesign Scaled/es](PartDesign_Scaled/es.md) , [PartDesign ShapeBinder/es](PartDesign_ShapeBinder/es.md) , [PartDesign Sprocket/es](PartDesign_Sprocket/es.md) , [PartDesign SubtractiveBox/es](PartDesign_SubtractiveBox/es.md) , [PartDesign SubtractiveCone/es](PartDesign_SubtractiveCone/es.md) , [PartDesign SubtractiveCylinder/es](PartDesign_SubtractiveCylinder/es.md) , [PartDesign SubtractiveEllipsoid/es](PartDesign_SubtractiveEllipsoid/es.md) , [PartDesign SubtractivePipe/es](PartDesign_SubtractivePipe/es.md) , [PartDesign SubtractivePrism/es](PartDesign_SubtractivePrism/es.md) , [PartDesign SubtractiveSphere/es](PartDesign_SubtractiveSphere/es.md) , [PartDesign SubtractiveTorus/es](PartDesign_SubtractiveTorus/es.md) , [PartDesign SubtractiveWedge/es](PartDesign_SubtractiveWedge/es.md) , [PartDesign Thickness/es](PartDesign_Thickness/es.md) , [PartDesign tutorial/es](PartDesign_tutorial/es.md) , [PartDesign WizardShaft/es](PartDesign_WizardShaft/es.md) , [Path Array/es](Path_Array/es.md) , [Path FAQ/es](Path_FAQ/es.md) , [Path Fixture/es](Path_Fixture/es.md) , [Path Job/es](Path_Job/es.md) , [Path Pocket 3D/es](Path_Pocket_3D/es.md) , [Path Postprocessor Customization/es](Path_Postprocessor_Customization/es.md) , [Path Workbench/es](Path_Workbench/es.md) , [PCB Workbench/es](PCB_Workbench/es.md) , [PDF/es](PDF/es.md) , [Placement API/es](Placement_API/es.md) , [Placement/es](Placement/es.md) , [Plot Axes/es](Plot_Axes/es.md) , [Plot Basic tutorial/es](Plot_Basic_tutorial/es.md) , [Plot Grid/es](Plot_Grid/es.md) , [Plot Labels/es](Plot_Labels/es.md) , [Plot Legend/es](Plot_Legend/es.md) , [Plot Module/es](Plot_Module/es.md) , [Plot MultiAxes tutorial/es](Plot_MultiAxes_tutorial/es.md) , [Plot Positions/es](Plot_Positions/es.md) , [Plot Save/es](Plot_Save/es.md) , [Plot Series/es](Plot_Series/es.md) , [Points Workbench/es](Points_Workbench/es.md) , [Preferences Editor/es](Preferences_Editor/es.md) , [Property editor/es](Property_editor/es.md) , [Python console/es](Python_console/es.md) , [Qt Example/es](Qt_Example/es.md) , [Quality project/es](Quality_project/es.md) , [Raytracing New/es](Raytracing_New/es.md) , [Raytracing Workbench/es](Raytracing_Workbench/es.md) , [Raytracing WriteCamera/es](Raytracing_WriteCamera/es.md) , [Raytracing WritePart/es](Raytracing_WritePart/es.md) , [Raytracing WriteView/es](Raytracing_WriteView/es.md) , [Render project/es](Render_project/es.md) , [Report view/es](Report_view/es.md) , [Reverse Engineering Workbench/es](Reverse_Engineering_Workbench/es.md) , [Robot 6-Axis/es](Robot_6-Axis/es.md) , [Robot API example/es](Robot_API_example/es.md) , [Robot CreateRobot/es](Robot_CreateRobot/es.md) , [Robot CreateTrajectory/es](Robot_CreateTrajectory/es.md) , [Robot Edge2Trac/es](Robot_Edge2Trac/es.md) , [Robot Export/es](Robot_Export/es.md) , [Robot InsertWaypoint/es](Robot_InsertWaypoint/es.md) , [Robot InsertWaypointPre/es](Robot_InsertWaypointPre/es.md) , [Robot RestoreHomePos/es](Robot_RestoreHomePos/es.md) , [Robot SetDefaultOrientation/es](Robot_SetDefaultOrientation/es.md) , [Robot SetDefaultValues/es](Robot_SetDefaultValues/es.md) , [Robot SetHomePos/es](Robot_SetHomePos/es.md) , [Robot Simulate/es](Robot_Simulate/es.md) , [Robot TrajectoryCompound/es](Robot_TrajectoryCompound/es.md) , [Robot TrajectoryDressUp/es](Robot_TrajectoryDressUp/es.md) , [Robot tutorial/es](Robot_tutorial/es.md) , [Robot Workbench/es](Robot_Workbench/es.md) , [Screenshots/es](Screenshots/es.md) , [Selection API/es](Selection_API/es.md) , [Selection methods/es](Selection_methods/es.md) , [Ship Area/es](Ship_Area/es.md) , [Ship Geometries Examples/es](Ship_Geometries_Examples/es.md) , [Ship Hydrostatics/es](Ship_Hydrostatics/es.md) , [Ship New/es](Ship_New/es.md) , [Ship Outline/es](Ship_Outline/es.md) , [Ship Workbench/es](Ship_Workbench/es.md) , [Sketch/es](Sketch/es.md) , [Sketcher CarbonCopy/es](Sketcher_CarbonCopy/es.md) , [Sketcher Clone/es](Sketcher_Clone/es.md) , [Sketcher CloseShape/es](Sketcher_CloseShape/es.md) , [Sketcher CompCreateArc/es](Sketcher_CompCreateArc/es.md) , [Sketcher CompCreateBSpline/es](Sketcher_CompCreateBSpline/es.md) , [Sketcher CompCreateCircle/es](Sketcher_CompCreateCircle/es.md) , [Sketcher CompCreateConic/es](Sketcher_CompCreateConic/es.md) , [Sketcher CompCreateRegularPolygon/es](Sketcher_CompCreateRegularPolygon/es.md) , [Sketcher ConnectLines/es](Sketcher_ConnectLines/es.md) , [Sketcher ConstrainAngle/es](Sketcher_ConstrainAngle/es.md) , [Sketcher ConstrainBlock/es](Sketcher_ConstrainBlock/es.md) , [Sketcher ConstrainCoincident/es](Sketcher_ConstrainCoincident/es.md) , [Sketcher ConstrainDiameter/es](Sketcher_ConstrainDiameter/es.md) , [Sketcher ConstrainDistance/es](Sketcher_ConstrainDistance/es.md) , [Sketcher ConstrainDistanceX/es](Sketcher_ConstrainDistanceX/es.md) , [Sketcher ConstrainDistanceY/es](Sketcher_ConstrainDistanceY/es.md) , [Sketcher ConstrainEqual/es](Sketcher_ConstrainEqual/es.md) , [Sketcher ConstrainHorizontal/es](Sketcher_ConstrainHorizontal/es.md) , [Sketcher ConstrainInternalAlignment/es](Sketcher_ConstrainInternalAlignment/es.md) , [Sketcher ConstrainLock/es](Sketcher_ConstrainLock/es.md) , [Sketcher ConstrainParallel/es](Sketcher_ConstrainParallel/es.md) , [Sketcher ConstrainPerpendicular/es](Sketcher_ConstrainPerpendicular/es.md) , [Sketcher ConstrainPointOnObject/es](Sketcher_ConstrainPointOnObject/es.md) , [Sketcher ConstrainRadius/es](Sketcher_ConstrainRadius/es.md) , [Sketcher ConstrainSnellsLaw/es](Sketcher_ConstrainSnellsLaw/es.md) , [Sketcher ConstrainSymmetric/es](Sketcher_ConstrainSymmetric/es.md) , [Sketcher ConstrainTangent/es](Sketcher_ConstrainTangent/es.md) , [Sketcher ConstrainVertical/es](Sketcher_ConstrainVertical/es.md) , [Sketcher Copy/es](Sketcher_Copy/es.md) , [Sketcher Create3PointArc/es](Sketcher_Create3PointArc/es.md) , [Sketcher Create3PointCircle/es](Sketcher_Create3PointCircle/es.md) , [Sketcher CreateArc/es](Sketcher_CreateArc/es.md) , [Sketcher CreateArcOfEllipse/es](Sketcher_CreateArcOfEllipse/es.md) , [Sketcher CreateArcOfHyperbola/es](Sketcher_CreateArcOfHyperbola/es.md) , [Sketcher CreateArcOfParabola/es](Sketcher_CreateArcOfParabola/es.md) , [Sketcher CreateCircle/es](Sketcher_CreateCircle/es.md) , [Sketcher CreateEllipseBy3Points/es](Sketcher_CreateEllipseBy3Points/es.md) , [Sketcher CreateEllipseByCenter/es](Sketcher_CreateEllipseByCenter/es.md) , [Sketcher CreateFillet/es](Sketcher_CreateFillet/es.md) , [Sketcher CreateHeptagon/es](Sketcher_CreateHeptagon/es.md) , [Sketcher CreateHexagon/es](Sketcher_CreateHexagon/es.md) , [Sketcher CreateLine/es](Sketcher_CreateLine/es.md) , [Sketcher CreateOctagon/es](Sketcher_CreateOctagon/es.md) , [Sketcher CreatePentagon/es](Sketcher_CreatePentagon/es.md) , [Sketcher CreatePoint/es](Sketcher_CreatePoint/es.md) , [Sketcher CreatePolyline/es](Sketcher_CreatePolyline/es.md) , [Sketcher CreateRectangle/es](Sketcher_CreateRectangle/es.md) , [Sketcher CreateRegularPolygon/es](Sketcher_CreateRegularPolygon/es.md) [Category:Documentation/es](Category:Documentation/es.md) + +--- +[documentation index](../README.md) > Category:User Documentation/es diff --git a/wiki/translations/es/Category:Web.md b/wiki/translations/es/Category:Web.md index 22eeedc74a..7965161465 100644 --- a/wiki/translations/es/Category:Web.md +++ b/wiki/translations/es/Category:Web.md @@ -6,3 +6,6 @@ This category lists pages that relate to the [Web Workbench/es](Web_Workbench/es [Web Workbench/es](Web_Workbench/es.md) [Category:Workbenches/es](Category:Workbenches/es.md) + +--- +[documentation index](../README.md) > Category:Web/es diff --git a/wiki/translations/es/Category:Wiki.md b/wiki/translations/es/Category:Wiki.md index f3e267725f..33800689dc 100644 --- a/wiki/translations/es/Category:Wiki.md +++ b/wiki/translations/es/Category:Wiki.md @@ -6,3 +6,6 @@ This category contains all documents that relate to the Wiki/es. [Glossary/es](Glossary/es.md) , [Localisation/es](Localisation/es.md) , [WikiPages/es](WikiPages/es.md) [Category:Administration/es](Category:Administration/es.md) [Category:Categories/es](Category:Categories/es.md) [Category:Documentation/es](Category:Documentation/es.md) + +--- +[documentation index](../README.md) > Category:Wiki/es diff --git a/wiki/translations/es/Category:Workbenches.md b/wiki/translations/es/Category:Workbenches.md index 74e584b0eb..3185b88f32 100644 --- a/wiki/translations/es/Category:Workbenches.md +++ b/wiki/translations/es/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/es](Arch_Workbench/es.md) , [Draft Workbench/es](Draft_Workbench/es.md) , [FEM Workbench/es](FEM_Workbench/es.md) , [Image Workbench/es](Image_Workbench/es.md) , [Inspection Workbench/es](Inspection_Workbench/es.md) , [Mesh Workbench/es](Mesh_Workbench/es.md) , [OpenSCAD Workbench/es](OpenSCAD_Workbench/es.md) , [Part Module/es](Part_Module/es.md) , [Path Workbench/es](Path_Workbench/es.md) , [Points Workbench/es](Points_Workbench/es.md) , [Raytracing Workbench/es](Raytracing_Workbench/es.md) , [Reverse Engineering Workbench/es](Reverse_Engineering_Workbench/es.md) , [Robot Workbench/es](Robot_Workbench/es.md) , [Sketcher Workbench/es](Sketcher_Workbench/es.md) , [Spreadsheet Workbench/es](Spreadsheet_Workbench/es.md) , [Start Workbench/es](Start_Workbench/es.md) , [Std Base/es](Std_Base/es.md) , [Std Edit Menu/es](Std_Edit_Menu/es.md) , [Std File Menu/es](Std_File_Menu/es.md) , [Std Tools Menu/es](Std_Tools_Menu/es.md) , [Std View Menu/es](Std_View_Menu/es.md) , [Surface Workbench/es](Surface_Workbench/es.md) , [TechDraw Workbench/es](TechDraw_Workbench/es.md) , [Testing/es](Testing/es.md) , [Web Workbench/es](Web_Workbench/es.md) , [Workbenches/es](Workbenches/es.md) , , , , , , , , , , , , , , , , , , [Category:User Documentation/es](Category:User_Documentation/es.md) [Category:Draft/es](Category:Draft/es.md) [Category:External Workbenches/es](Category:External_Workbenches/es.md) [Category:FEM/es](Category:FEM/es.md) [Category:Inspection/es](Category:Inspection/es.md) [Category:Mesh/es](Category:Mesh/es.md) [Category:OpenSCAD/es](Category:OpenSCAD/es.md) [Category:Part/es](Category:Part/es.md) [Category:Path/es](Category:Path/es.md) [Category:Plot/es](Category:Plot/es.md) [Category:Points/es](Category:Points/es.md) [Category:Raytracing/es](Category:Raytracing/es.md) [Category:Reinforcement/es](Category:Reinforcement/es.md) [Category:Robot/es](Category:Robot/es.md) [Category:Ship/es](Category:Ship/es.md) [Category:Surface/es](Category:Surface/es.md) [Category:TechDraw/es](Category:TechDraw/es.md) [Category:Test Framework/es](Category:Test_Framework/es.md) [Category:Web/es](Category:Web/es.md) + +--- +[documentation index](../README.md) > Category:Workbenches/es diff --git a/wiki/translations/es/Changelog.md b/wiki/translations/es/Changelog.md index 84fd266183..68ba5ff3e3 100644 --- a/wiki/translations/es/Changelog.md +++ b/wiki/translations/es/Changelog.md @@ -1,5 +1,5 @@ # Changelog/es - El historial de cambios de FreeCAD se mantiene en nuestro rastreador de Mantis: +El historial de cambios de FreeCAD se mantiene en nuestro rastreador de Mantis: @@ -7,3 +7,6 @@ [Category:Administration](Category:Administration.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Changelog/es diff --git a/wiki/translations/es/Civil_Engineering_Workbench.md b/wiki/translations/es/Civil_Engineering_Workbench.md index 78e7b225e1..030b03c807 100644 --- a/wiki/translations/es/Civil_Engineering_Workbench.md +++ b/wiki/translations/es/Civil_Engineering_Workbench.md @@ -1,6 +1,4 @@ # Civil Engineering Workbench/es - - ## Descripción La ingeniería civil es una categoría amplia de la ingeniería y cubre varios temas, principalmente ambiental (aguas residuales), geotécnica, transporte y estructural. En la actualidad, el enfoque principal del esfuerzo de la ingeniería civil en FreeCAD se centra en la ingeniería del transporte, o más específicamente en el diseño de autopistas en 3D. @@ -33,3 +31,6 @@ Las herramientas de Barra de refuerzo forman parte actualmente del [Ambiente de [Category:Documentation](Category:Documentation.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Civil Engineering Workbench/es diff --git a/wiki/translations/es/Code_snippets.md b/wiki/translations/es/Code_snippets.md index ba791e9523..bd2730c4c0 100644 --- a/wiki/translations/es/Code_snippets.md +++ b/wiki/translations/es/Code_snippets.md @@ -1,7 +1,4 @@ # Code snippets/es - - - {{TOCright}} ## Introducción @@ -1773,3 +1770,6 @@ See [Coin3d snippets](Coin3d_snippets.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Code snippets/es diff --git a/wiki/translations/es/Coin3d_snippets.md b/wiki/translations/es/Coin3d_snippets.md index 4df1ae0598..9d00a897fa 100644 --- a/wiki/translations/es/Coin3d_snippets.md +++ b/wiki/translations/es/Coin3d_snippets.md @@ -1,7 +1,4 @@ # Coin3d snippets/es - - - {{TOCright}} ## Descripción de esta lista @@ -103,3 +100,6 @@ No requiere instalación. Gracias al autor del programa. }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Coin3d snippets/es diff --git a/wiki/translations/es/Combo_view.md b/wiki/translations/es/Combo_view.md index 0d1520f3b6..8d14881433 100644 --- a/wiki/translations/es/Combo_view.md +++ b/wiki/translations/es/Combo_view.md @@ -1,5 +1,5 @@ # Combo view/es - {{TOCright}} +{{TOCright}} ## Introducción @@ -54,4 +54,7 @@ Entonces activa la vista usando el menú, **Vista → Paneles → Vista de árbo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Combo view/es diff --git a/wiki/translations/es/Command.md b/wiki/translations/es/Command.md index c0d63d5dfd..bf5bfd9bc4 100644 --- a/wiki/translations/es/Command.md +++ b/wiki/translations/es/Command.md @@ -1,6 +1,4 @@ # Command/es - - ## Introduction @@ -113,3 +111,6 @@ See [Line drawing function](Line_drawing_function.md). }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Command/es diff --git a/wiki/translations/es/CompileOnCygwin.md b/wiki/translations/es/CompileOnCygwin.md index a26d4a76e7..050d88f993 100644 --- a/wiki/translations/es/CompileOnCygwin.md +++ b/wiki/translations/es/CompileOnCygwin.md @@ -1,2 +1,5 @@ # CompileOnCygwin/es 1. REDIRECT [Compile on Cygwin/es](Compile_on_Cygwin/es.md) + +--- +[documentation index](../README.md) > CompileOnCygwin/es diff --git a/wiki/translations/es/CompileOnMac.md b/wiki/translations/es/CompileOnMac.md index 7fdcabf7f2..226b111c9d 100644 --- a/wiki/translations/es/CompileOnMac.md +++ b/wiki/translations/es/CompileOnMac.md @@ -1,2 +1,5 @@ # CompileOnMac/es 1. REDIRECT [Compile on MacOS/es](Compile_on_MacOS/es.md) + +--- +[documentation index](../README.md) > CompileOnMac/es diff --git a/wiki/translations/es/CompileOnMinGW.md b/wiki/translations/es/CompileOnMinGW.md index 5fa8b50841..071c2c45b6 100644 --- a/wiki/translations/es/CompileOnMinGW.md +++ b/wiki/translations/es/CompileOnMinGW.md @@ -1,2 +1,5 @@ # CompileOnMinGW/es 1. REDIRECT [Compile on MinGW/es](Compile_on_MinGW/es.md) + +--- +[documentation index](../README.md) > CompileOnMinGW/es diff --git a/wiki/translations/es/CompileOnUnix.md b/wiki/translations/es/CompileOnUnix.md index dc31ef710b..74ab3f7889 100644 --- a/wiki/translations/es/CompileOnUnix.md +++ b/wiki/translations/es/CompileOnUnix.md @@ -1,2 +1,5 @@ # CompileOnUnix/es 1. REDIRECT [Compile\_on\_Linux/es](Compile_on_Linux/es.md) + +--- +[documentation index](../README.md) > CompileOnUnix/es diff --git a/wiki/translations/es/CompileOnWindows.md b/wiki/translations/es/CompileOnWindows.md index db5e618bb6..e57299ac9e 100644 --- a/wiki/translations/es/CompileOnWindows.md +++ b/wiki/translations/es/CompileOnWindows.md @@ -1,2 +1,5 @@ # CompileOnWindows/es 1. REDIRECT [Compile on Windows/es](Compile_on_Windows/es.md) + +--- +[documentation index](../README.md) > CompileOnWindows/es diff --git a/wiki/translations/es/Compile_on_Cygwin.md b/wiki/translations/es/Compile_on_Cygwin.md index 5e89a80254..0378e36050 100644 --- a/wiki/translations/es/Compile_on_Cygwin.md +++ b/wiki/translations/es/Compile_on_Cygwin.md @@ -1,5 +1,5 @@ # Compile on Cygwin/es - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** ## How to build and run FreeCAD under Cygwin @@ -74,3 +74,6 @@ Once you have built the sources successfully using \'make\' with \'make install\ [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Cygwin/es diff --git a/wiki/translations/es/Compile_on_Docker.md b/wiki/translations/es/Compile_on_Docker.md index 1bc694107c..079b53bf14 100644 --- a/wiki/translations/es/Compile_on_Docker.md +++ b/wiki/translations/es/Compile_on_Docker.md @@ -1,10 +1,4 @@ # Compile on Docker/es - - - - - - {{TOCright}} ## Resumen @@ -142,3 +136,6 @@ You can find the attached directories in the `/mnt` directory. [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Compile on Docker/es diff --git a/wiki/translations/es/Compile_on_Linux.md b/wiki/translations/es/Compile_on_Linux.md index a495267a55..bb8952cc09 100644 --- a/wiki/translations/es/Compile_on_Linux.md +++ b/wiki/translations/es/Compile_on_Linux.md @@ -1,10 +1,4 @@ # Compile on Linux/es - - - - - - **Hay un contenedor experimental FreeCAD Docker que se está probando para el desarrollo de FreeCAD. Lea más sobre ello en [Compilar en Docker](Compile_on_Docker/es.md)** @@ -1234,3 +1228,6 @@ Para actualizar FreeCAD a la última compilación simplemente repite el paso 3.A [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Linux/es diff --git a/wiki/translations/es/Compile_on_MacOS.md b/wiki/translations/es/Compile_on_MacOS.md index 52959d0eeb..8086d0e41e 100644 --- a/wiki/translations/es/Compile_on_MacOS.md +++ b/wiki/translations/es/Compile_on_MacOS.md @@ -1,10 +1,4 @@ # Compile on MacOS/es - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -200,3 +194,6 @@ FreeCAD can be built against the latest git master hosted on github, and launche [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS/es diff --git a/wiki/translations/es/Compile_on_MinGW.md b/wiki/translations/es/Compile_on_MinGW.md index 82e525f776..bcd8a65efc 100644 --- a/wiki/translations/es/Compile_on_MinGW.md +++ b/wiki/translations/es/Compile_on_MinGW.md @@ -1,5 +1,5 @@ # Compile on MinGW/es - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** {{TOCright}} +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** {{TOCright}} ## How to build and run FreeCAD under MSYS/MinGW @@ -256,3 +256,6 @@ Have fun! [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MinGW/es diff --git a/wiki/translations/es/Compile_on_Windows.md b/wiki/translations/es/Compile_on_Windows.md index 35b0ee8a14..3dae807c71 100644 --- a/wiki/translations/es/Compile_on_Windows.md +++ b/wiki/translations/es/Compile_on_Windows.md @@ -1,10 +1,4 @@ # Compile on Windows/es - - - - - - {{TOCright}} Esta página explica paso a paso *cómo compilar FreeCAD 0.19 o más reciente en Windows*. Para otras plataformas ver [Compilación](Compiling/es.md). @@ -471,3 +465,6 @@ See also [Category:Developer Documentation/es](Category:Developer_Documentation/es.md) [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows/es diff --git a/wiki/translations/es/Compiling.md b/wiki/translations/es/Compiling.md index 004ff94626..323afdb0d7 100644 --- a/wiki/translations/es/Compiling.md +++ b/wiki/translations/es/Compiling.md @@ -1,7 +1,4 @@ # Compiling/es - - -
Cada sistema operativo tiene su propia página para compilar FreeCAD en la [Documentación en Línea de Ayuda](Online_Help_Toc/es.md). @@ -34,3 +31,6 @@ To learn to use revision control system and contribute code see [Source code man [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling/es diff --git a/wiki/translations/es/Compiling_(Speeding_up).md b/wiki/translations/es/Compiling_(Speeding_up).md index f942c34529..afc83a8f8b 100644 --- a/wiki/translations/es/Compiling_(Speeding_up).md +++ b/wiki/translations/es/Compiling_(Speeding_up).md @@ -1,10 +1,4 @@ # Compiling (Speeding up)/es - - - - - - {{TOCright}} ## Overview @@ -76,3 +70,6 @@ The `distcc` program can be used to perform distributed compilation of C and C++ [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling (Speeding up)/es diff --git a/wiki/translations/es/Complete_Workbench.md b/wiki/translations/es/Complete_Workbench.md index 6703bb6581..c25cbf4061 100644 --- a/wiki/translations/es/Complete_Workbench.md +++ b/wiki/translations/es/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/es - - - **The [[Complete Workbench]] is deprecated.** @@ -14,3 +11,6 @@ See [Interface Customization](Interface_Customization.md) if you\'d like to adap [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/es diff --git a/wiki/translations/es/Conda.md b/wiki/translations/es/Conda.md index d9ccf9133e..f6305dd82e 100644 --- a/wiki/translations/es/Conda.md +++ b/wiki/translations/es/Conda.md @@ -1,6 +1,4 @@ # Conda/es - - ## Introducción @@ -95,3 +93,6 @@ conda create --name fcenv-dev --channel freecad/label/dev freecad - [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Conda/es diff --git a/wiki/translations/es/Console_API.md b/wiki/translations/es/Console_API.md index d49f1fec27..a51d440092 100644 --- a/wiki/translations/es/Console_API.md +++ b/wiki/translations/es/Console_API.md @@ -1,5 +1,5 @@ # Console API/es - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Este módulo está contenido en el módulo de FreeCAD y contiene métodos para enviar texto a la consola de salida de FreeCAD y a la barra de estado. Los mensajes tendrán diferente color si son mensajes, advertencias o errores. @@ -31,3 +31,6 @@ FreeCAD.Console.PrintMessage("Hello World!\n") [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Console API/es diff --git a/wiki/translations/es/Constraint.md b/wiki/translations/es/Constraint.md index 2f85d58e9c..25734c8574 100644 --- a/wiki/translations/es/Constraint.md +++ b/wiki/translations/es/Constraint.md @@ -1,6 +1,4 @@ # Constraint/es - - ## Introducción @@ -53,3 +51,6 @@ Vea la información en el @@ -253,3 +247,6 @@ Desarrolladores de complementos de FreeCAD (recuperados de [Developer](Category:Developer.md) > Contributors/es diff --git a/wiki/translations/es/Copying_Objects.md b/wiki/translations/es/Copying_Objects.md index 265409f99c..5fcc5a7a19 100644 --- a/wiki/translations/es/Copying_Objects.md +++ b/wiki/translations/es/Copying_Objects.md @@ -1,5 +1,5 @@ # Copying Objects/es - {{TOCright}} +{{TOCright}} ## Vista general @@ -45,5 +45,5 @@ Como la mayoría de las cosas en FreeCAD, hay muchas maneras de hacer una copia. - [Pegar](Std_Paste/es.md) - [Selección de duplicados](Std_DuplicateSelection/es.md) - - +--- +[documentation index](../README.md) > Copying Objects/es diff --git a/wiki/translations/es/Creating_a_simple_part_with_PartDesign.md b/wiki/translations/es/Creating_a_simple_part_with_PartDesign.md index 2b5af063d6..02989163fe 100644 --- a/wiki/translations/es/Creating_a_simple_part_with_PartDesign.md +++ b/wiki/translations/es/Creating_a_simple_part_with_PartDesign.md @@ -1,7 +1,4 @@ # Creating a simple part with PartDesign/es - - - {{TutorialInfo/es |Topic=Modelización |Level=Principiante @@ -267,4 +264,7 @@ You can also continue with this other tutorial of a slightly more complicated pa {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Creating a simple part with PartDesign/es diff --git a/wiki/translations/es/Custom_Spacing.md b/wiki/translations/es/Custom_Spacing.md index b9d98c160a..c4325174ed 100644 --- a/wiki/translations/es/Custom_Spacing.md +++ b/wiki/translations/es/Custom_Spacing.md @@ -1,6 +1,4 @@ # Custom Spacing/es - - ## Descripción La herramienta Espaciado personalizado permite al usuario crear una distribución de barras de refuerzo en el elemento estructural. Puede definir tres segmentos para la distribución. Para el primer y tercer segmento, puede dar tanto una cantidad de barras y espaciado entre barras. Pero para el segundo segmento, solo puede dar una cantidad de barras o espaciado entre barras porque un valor determina automáticamente otro. @@ -31,3 +29,6 @@ La salida se genera mediante el cuadro de diálogo Distribución de barras de re [Category:User Documentation](Category:User_Documentation.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Custom Spacing/es diff --git a/wiki/translations/es/Customize_Toolbars.md b/wiki/translations/es/Customize_Toolbars.md index bdcd1ca757..b8da1306d3 100644 --- a/wiki/translations/es/Customize_Toolbars.md +++ b/wiki/translations/es/Customize_Toolbars.md @@ -1,5 +1,5 @@ # Customize Toolbars/es - {{TutorialInfo/es|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} +{{TutorialInfo/es|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} ## Synopsis @@ -116,3 +116,6 @@ See also [Interface Customization](Interface_Customization.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Customize Toolbars/es diff --git a/wiki/translations/es/DXF.md b/wiki/translations/es/DXF.md index f54259eb68..4a162185cc 100644 --- a/wiki/translations/es/DXF.md +++ b/wiki/translations/es/DXF.md @@ -1,5 +1,5 @@ # DXF/es - {{TOCright}} +{{TOCright}} ## Historia del fondo @@ -43,3 +43,6 @@ In addition to the options under the Edit → Preferences, the [TechDraw Workben [Category:User Documentation](Category:User_Documentation.md) [Category:Draft](Category:Draft.md) [Category:TechDraw](Category:TechDraw.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > DXF/es diff --git a/wiki/translations/es/Debian_Unstable.md b/wiki/translations/es/Debian_Unstable.md index 51ba92b1c7..e38ed49ded 100644 --- a/wiki/translations/es/Debian_Unstable.md +++ b/wiki/translations/es/Debian_Unstable.md @@ -1,6 +1,4 @@ # Debian Unstable/es - - [Debian Inestable](https://wiki.debian.org/DebianUnstable) es una distribución rodante utilizada para [Desarrollo de Debian](Debian_development/es.md) y recomendada para usuarios avanzados en el desarrollo y empaquetado de FreeCAD. Los nuevos paquetes están listos tan pronto como se suben y se construyen, a menos que quien los suba los haya marcado para [Debian Experimental](https://wiki.debian.org/DebianExperimental), lo que requiere una instalación explícita (después de alguna configuración para habilitar la distribución extra) mediante sudo apt install -t experimental . Frecuentemente, la gente que usa Debian Testing debería en realidad usar Debian Inestable; Debian Testing sólo debería considerarse un \"bolsillo de la versión de control de calidad\", ya que, aunque pueda parecer más estable que Unstable, en realidad hay un inconveniente. Los nuevos paquetes se suben a Debian Inestable y migran a Pruebas después de un tiempo, por lo que las correcciones de seguridad y los cambios importantes en el empaquetado pueden retrasarse de forma inapropiada. @@ -27,3 +25,6 @@ deb [http://deb.debian.org/debian](http://deb.debian.org/debian) experimental [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian Unstable/es diff --git a/wiki/translations/es/Debian_development.md b/wiki/translations/es/Debian_development.md index b7758a842d..3e4746dd14 100644 --- a/wiki/translations/es/Debian_development.md +++ b/wiki/translations/es/Debian_development.md @@ -1,6 +1,4 @@ # Debian development/es - - Debian es la distribución madre de la que derivan muchas otras distribuciones de Linux, como Ubuntu, Linux Mint y otras. Como tal, vale la pena centrarse específicamente en el desarrollo de Debian, ya que las mejoras en Debian se filtrarán a través de sus descendientes. [Debian Inestable](Debian_Unstable/es.md) es una buena distribución de destino para el desarrollo de FreeCAD en Linux ya que proporciona los paquetes más actualizados posibles, como una distribución rodante. Uno puede contribuir tanto al desarrollo de FreeCAD en Debian como a su ecosistema de paquetes y dependencias relacionadas. @@ -9,3 +7,6 @@ Debian es la distribución madre de la que derivan muchas otras distribuciones d [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian development/es diff --git a/wiki/translations/es/Debugging.md b/wiki/translations/es/Debugging.md index 8963ba3b34..71e7d2d435 100644 --- a/wiki/translations/es/Debugging.md +++ b/wiki/translations/es/Debugging.md @@ -1,10 +1,4 @@ # Debugging/es - - - - - - {{TOCright}} @@ -361,3 +355,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/es diff --git a/wiki/translations/es/Developer_hub.md b/wiki/translations/es/Developer_hub.md index dfe0c6664a..67ae98d9aa 100644 --- a/wiki/translations/es/Developer_hub.md +++ b/wiki/translations/es/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/es - - ![150](images/Crystal_Clear_app_tutorials.png ) Este es el lugar al que acudir si quieres contribuir al desarrollo del software FreeCAD. @@ -125,3 +123,6 @@ FreeCAD, es utilizable en ciertas áreas, está al principio de un largo camino [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/es diff --git a/wiki/translations/es/Development_roadmap.md b/wiki/translations/es/Development_roadmap.md index 4ef6dba0ee..c8e6906059 100644 --- a/wiki/translations/es/Development_roadmap.md +++ b/wiki/translations/es/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/es - **Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** +**Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** FreeCAD, aunque utilizable en diversas aplicaciones, está al principio de un larga travesía dentro de las aplicaciones de CAD. Aún queda mucho por hacer para alcanzar un estado en el cual se pueda competir con el software comercial. @@ -45,3 +45,6 @@ Como en la mayoría de proyectos de [Software libre y de código abierto (FLOSS) [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/es diff --git a/wiki/translations/es/Dialog_creation.md b/wiki/translations/es/Dialog_creation.md index ba23c43919..9f2802881c 100644 --- a/wiki/translations/es/Dialog_creation.md +++ b/wiki/translations/es/Dialog_creation.md @@ -1,7 +1,4 @@ # Dialog creation/es - - - {{TOCright}} ## Introduction @@ -321,3 +318,6 @@ class plane(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation/es diff --git a/wiki/translations/es/Document_structure.md b/wiki/translations/es/Document_structure.md index 932ee7fe82..446c7b259e 100644 --- a/wiki/translations/es/Document_structure.md +++ b/wiki/translations/es/Document_structure.md @@ -1,7 +1,4 @@ # Document structure/es - - -
@@ -93,5 +90,5 @@ FreeCADGui.ActiveDocument.ActiveView
- - +--- +[documentation index](../README.md) > Document structure/es diff --git a/wiki/translations/es/Donate.md b/wiki/translations/es/Donate.md index d3999dc29e..953cac4390 100644 --- a/wiki/translations/es/Donate.md +++ b/wiki/translations/es/Donate.md @@ -1,7 +1,4 @@ # Donate/es - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddConstruction/es diff --git a/wiki/translations/es/Draft_AddToGroup.md b/wiki/translations/es/Draft_AddToGroup.md index 0d1b6da29c..df81599c2e 100644 --- a/wiki/translations/es/Draft_AddToGroup.md +++ b/wiki/translations/es/Draft_AddToGroup.md @@ -7,6 +7,8 @@ SeeAlso:[Draft SelectGroup](Draft_SelectGroup.md), [Std Group](Std_Group.md) --- +# Draft AddToGroup/es +
@@ -53,5 +55,5 @@ In FreeCAD version 0.20 the command can also handle group-like [Arch](Arch_Workb
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddToGroup/es diff --git a/wiki/translations/es/Draft_AnnotationStyleEditor.md b/wiki/translations/es/Draft_AnnotationStyleEditor.md index 2c2a087fb2..8cebdf3062 100644 --- a/wiki/translations/es/Draft_AnnotationStyleEditor.md +++ b/wiki/translations/es/Draft_AnnotationStyleEditor.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Draft AnnotationStyleEditor/es +
@@ -105,5 +107,5 @@ props = {
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AnnotationStyleEditor/es diff --git a/wiki/translations/es/Draft_Apply.md b/wiki/translations/es/Draft_Apply.md index 5fd42fe61e..c659c33002 100644 --- a/wiki/translations/es/Draft_Apply.md +++ b/wiki/translations/es/Draft_Apply.md @@ -1,2 +1,5 @@ # Draft Apply/es 1. REDIRECT [Draft\_ApplyStyle/es](Draft_ApplyStyle/es.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Apply/es diff --git a/wiki/translations/es/Draft_ApplyStyle.md b/wiki/translations/es/Draft_ApplyStyle.md index 9a4c3cd8f8..a6c32604dc 100644 --- a/wiki/translations/es/Draft_ApplyStyle.md +++ b/wiki/translations/es/Draft_ApplyStyle.md @@ -5,6 +5,8 @@ MenuLocation:Croquis->→ Utilidades → Aplicar estilo --- +# Draft ApplyStyle/es + @@ -56,8 +58,5 @@ This command currently handles only five of the settings the [Draft SetStyle](Dr - In FreeCAD version 0.20 the [Draft SetStyle](Draft_SetStyle.md) command can also apply the settings. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ApplyStyle/es diff --git a/wiki/translations/es/Draft_Arc.md b/wiki/translations/es/Draft_Arc.md index 54243c6432..46f6143c5e 100644 --- a/wiki/translations/es/Draft_Arc.md +++ b/wiki/translations/es/Draft_Arc.md @@ -8,6 +8,8 @@ SeeAlso:[Circunferencia](Draft_Circle/es.md) --- +# Draft Arc/es + @@ -133,8 +135,5 @@ arc3 = Draft.make_circle(750, startangle=-30, endangle=-150) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc/es diff --git a/wiki/translations/es/Draft_Array.md b/wiki/translations/es/Draft_Array.md index c38b9b1791..aeeee63ca2 100644 --- a/wiki/translations/es/Draft_Array.md +++ b/wiki/translations/es/Draft_Array.md @@ -8,6 +8,8 @@ ]], [Borrador ArregloCircular](Draft_CircularArray/es.md), [Borrador ArregloTrayectorias](Draft_PathArray/es.md), [Borrador ArregloPuntos](Draft_PointArray/es.md), [Borrador Clon](Draft_Clone/es.md) --- +# Draft Array/es + @@ -56,5 +58,5 @@ See [Draft OrthoArray](Draft_OrthoArray#Scripting.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Array/es diff --git a/wiki/translations/es/Draft_AutoGroup.md b/wiki/translations/es/Draft_AutoGroup.md index 6b90cb3ed6..98f86836c3 100644 --- a/wiki/translations/es/Draft_AutoGroup.md +++ b/wiki/translations/es/Draft_AutoGroup.md @@ -1,3 +1,4 @@ +# Draft AutoGroup/es --- - GuiCommand:/es Name:Draft AutoGroup Workbenches:[Arch](Draft_Workbench/es___Draft]],_[[Arch_Workbench/es.md)|MenuLocation:Draft → Utilities → AutoGroup SeeAlso:--- @@ -66,8 +67,5 @@ Draft.autogroup(polygon3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AutoGroup/es diff --git a/wiki/translations/es/Draft_BSpline.md b/wiki/translations/es/Draft_BSpline.md index d8237b3d63..2b4bacb4dd 100644 --- a/wiki/translations/es/Draft_BSpline.md +++ b/wiki/translations/es/Draft_BSpline.md @@ -9,6 +9,8 @@ SeeAlso:[Borrador Hilo](Draft_Wire/es.md), [Borrador CúbicaBezCurva](Draft_CubicBezCurve/es.md), [Borrador BezCurva](Draft_BezCurve/es.md) --- +# Draft BSpline/es + @@ -153,5 +155,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BSpline/es diff --git a/wiki/translations/es/Draft_BezCurve.md b/wiki/translations/es/Draft_BezCurve.md index d80b17a33c..6ac5cf8aab 100644 --- a/wiki/translations/es/Draft_BezCurve.md +++ b/wiki/translations/es/Draft_BezCurve.md @@ -8,6 +8,8 @@ SeeAlso:[Borrador CubicBezCurva](Draft_CubicBezCurve/es.md), [Borrador BSpline](Draft_BSpline/es.md) --- +# Draft BezCurve/es + @@ -164,5 +166,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BezCurve/es diff --git a/wiki/translations/es/Draft_Circle.md b/wiki/translations/es/Draft_Circle.md index 8c516b22b5..bf27e37c3a 100644 --- a/wiki/translations/es/Draft_Circle.md +++ b/wiki/translations/es/Draft_Circle.md @@ -9,6 +9,8 @@ SeeAlso:[Arco](Draft_Arc/es.md) --- +# Draft Circle/es + @@ -169,8 +171,5 @@ circle3 = Draft.make_circle(750, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Circle/es diff --git a/wiki/translations/es/Draft_CircularArray.md b/wiki/translations/es/Draft_CircularArray.md index 4c21ca40e0..bc49258a64 100644 --- a/wiki/translations/es/Draft_CircularArray.md +++ b/wiki/translations/es/Draft_CircularArray.md @@ -8,6 +8,8 @@ SeeAlso:[Borrador OrthoArray](Draft_OrthoArray/es.md), [Borrador ArregloPolar](Draft_PolarArray/es.md), [Borrador ArregloRuta](Draft_PathArray/es.md), [Borrador ArregloEnlaceRuta](Draft_PathLinkArray/es.md), [Borrador ArregloPunto](Draft_PointArray/es.md), [Borrador ArregloEnlacePunto](Draft_PointLinkArray/es.md) --- +# Draft CircularArray/es + @@ -132,5 +134,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CircularArray/es diff --git a/wiki/translations/es/Draft_Clone.md b/wiki/translations/es/Draft_Clone.md index be46bb39de..ce2582fb3f 100644 --- a/wiki/translations/es/Draft_Clone.md +++ b/wiki/translations/es/Draft_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Borrador Escalar](Draft_Scale/es.md) --- +# Draft Clone/es + @@ -113,5 +115,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Clone/es diff --git a/wiki/translations/es/Draft_CloseLine.md b/wiki/translations/es/Draft_CloseLine.md index ed6647ab39..6e50753e5f 100644 --- a/wiki/translations/es/Draft_CloseLine.md +++ b/wiki/translations/es/Draft_CloseLine.md @@ -1,2 +1,5 @@ # Draft CloseLine/es 1. REDIRECT [Draft\_Wire/es](Draft_Wire/es.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CloseLine/es diff --git a/wiki/translations/es/Draft_Constrain.md b/wiki/translations/es/Draft_Constrain.md index e107a87d37..84e34b76f8 100644 --- a/wiki/translations/es/Draft_Constrain.md +++ b/wiki/translations/es/Draft_Constrain.md @@ -1,10 +1,4 @@ # Draft Constrain/es - - - - - - {{TOCright}} ## Description @@ -68,3 +62,6 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr [Category:User Documentation/es](Category:User_Documentation/es.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Constrain/es diff --git a/wiki/translations/es/Draft_CubicBezCurve.md b/wiki/translations/es/Draft_CubicBezCurve.md index 1b875ca2de..4e21c8c6fd 100644 --- a/wiki/translations/es/Draft_CubicBezCurve.md +++ b/wiki/translations/es/Draft_CubicBezCurve.md @@ -8,6 +8,8 @@ SeeAlso:[Borrador BezCurva](Draft_BezCurve/es.md), [Borrador BSpline](Draft_BSpline/es.md) --- +# Draft CubicBezCurve/es + @@ -171,5 +173,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CubicBezCurve/es diff --git a/wiki/translations/es/Draft_DAT.md b/wiki/translations/es/Draft_DAT.md index b5489872c2..96270c5a47 100644 --- a/wiki/translations/es/Draft_DAT.md +++ b/wiki/translations/es/Draft_DAT.md @@ -1,10 +1,4 @@ # Draft DAT/es - - - - - -
El formato de datos aerodinámicos comunes es un simple tipo de archivo que contiene metadatos opcionales sobre aerodinámica en las primeras 1-2 líneas y las coordenadas de las superficies superior e inferior. @@ -30,3 +24,6 @@ Hay muchos dialectos diferentes en este formato de modo que este módulo de este [Category:User Documentation/es](Category:User_Documentation/es.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DAT/es diff --git a/wiki/translations/es/Draft_DXF.md b/wiki/translations/es/Draft_DXF.md index 7acf99b743..b7d2277d3f 100644 --- a/wiki/translations/es/Draft_DXF.md +++ b/wiki/translations/es/Draft_DXF.md @@ -1,7 +1,4 @@ # Draft DXF/es - - -
@@ -154,3 +151,6 @@ importDXF.export(objects, "/home/user/Pictures/myfile.dxf") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DXF/es diff --git a/wiki/translations/es/Draft_Dimension.md b/wiki/translations/es/Draft_Dimension.md index 2aed24d1f1..7dc1f03481 100644 --- a/wiki/translations/es/Draft_Dimension.md +++ b/wiki/translations/es/Draft_Dimension.md @@ -8,6 +8,8 @@ SeeAlso:[FlipDimension](Draft_FlipDimension/es.md) --- +# Draft Dimension/es +
@@ -369,8 +371,5 @@ dimension4.ViewObject.FontSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Dimension/es diff --git a/wiki/translations/es/Draft_Downgrade.md b/wiki/translations/es/Draft_Downgrade.md index a4d88566f6..9eda194b94 100644 --- a/wiki/translations/es/Draft_Downgrade.md +++ b/wiki/translations/es/Draft_Downgrade.md @@ -8,6 +8,8 @@ SeeAlso:[Borrador Elevar](Draft_Upgrade/es.md), [Pieza Cortar](Part_Cut/es.md) --- +# Draft Downgrade/es + ## Descripción El comando \'\'\'Borrador Rebajar \'\'\' rebaja los objetos seleccionados. El resultado depende del número de objetos seleccionados y de su tipo. El comando puede, por ejemplo, deconstruir un sólido 3D en caras separadas y un hilo en aristas separadas. Si se seleccionan dos caras, se crea un objeto [Pieza Corte](Part_Cut/es.md) a partir de ellas. Tenga en cuenta que no todos los objetos pueden ser rebajados. Este comando es la contraparte del comando [Borrador Elevar](Draft_Upgrade/es.md). @@ -73,8 +75,5 @@ add_list4, delete_list4 = Draft.downgrade(box, delete=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Downgrade/es diff --git a/wiki/translations/es/Draft_Draft2Sketch.md b/wiki/translations/es/Draft_Draft2Sketch.md index 97b2c4cb21..cd8bdbf133 100644 --- a/wiki/translations/es/Draft_Draft2Sketch.md +++ b/wiki/translations/es/Draft_Draft2Sketch.md @@ -6,6 +6,8 @@ Workbenches:[Boceto](Draft_Workbench/es.md), [Arquitectura](Arch_Workbench/es.md) --- +# Draft Draft2Sketch/es +
@@ -111,5 +113,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Draft2Sketch/es diff --git a/wiki/translations/es/Draft_Drawing.md b/wiki/translations/es/Draft_Drawing.md index 11d1ff71fb..eb3bd3d1dd 100644 --- a/wiki/translations/es/Draft_Drawing.md +++ b/wiki/translations/es/Draft_Drawing.md @@ -6,6 +6,8 @@ Workbenches:[Croquis](Draft_Workbench/es.md), [Arquitectura](Arch_Workbench/es.md) --- +# Draft Drawing/es + @@ -44,8 +46,5 @@ This command is now obsolete. Use the [TechDraw Workbench](TechDraw_Workbench.md - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Drawing/es diff --git a/wiki/translations/es/Draft_Edit.md b/wiki/translations/es/Draft_Edit.md index 708541c7ed..b55a3a9d12 100644 --- a/wiki/translations/es/Draft_Edit.md +++ b/wiki/translations/es/Draft_Edit.md @@ -8,6 +8,8 @@ SeeAlso:[Std Edición](Std_Edit/es.md) --- +# Draft Edit/es + @@ -194,5 +196,5 @@ No hay ningún método en Python para editar borradores de objetos. Para emular - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Edit/es diff --git a/wiki/translations/es/Draft_Ellipse.md b/wiki/translations/es/Draft_Ellipse.md index f3be5c0ca7..2d447c96ba 100644 --- a/wiki/translations/es/Draft_Ellipse.md +++ b/wiki/translations/es/Draft_Ellipse.md @@ -8,6 +8,8 @@ Version:0.7 --- +# Draft Ellipse/es + @@ -143,8 +145,5 @@ ellipse3 = Draft.make_ellipse(700, 1000, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Ellipse/es diff --git a/wiki/translations/es/Draft_Facebinder.md b/wiki/translations/es/Draft_Facebinder.md index 60717342f2..c9575a11e4 100644 --- a/wiki/translations/es/Draft_Facebinder.md +++ b/wiki/translations/es/Draft_Facebinder.md @@ -1,3 +1,4 @@ +# Draft Facebinder/es --- - GuiCommand:/es Name:Draft Facebinder @@ -124,8 +125,5 @@ facebinder.ViewObject.ShapeColor = (0.99, 0.99, 0.4) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Facebinder/es diff --git a/wiki/translations/es/Draft_FinishLine.md b/wiki/translations/es/Draft_FinishLine.md index 1365237574..0922a59708 100644 --- a/wiki/translations/es/Draft_FinishLine.md +++ b/wiki/translations/es/Draft_FinishLine.md @@ -1,2 +1,5 @@ # Draft FinishLine/es 1. REDIRECT [Draft\_Wire/es](Draft_Wire/es.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FinishLine/es diff --git a/wiki/translations/es/Draft_FlipDimension.md b/wiki/translations/es/Draft_FlipDimension.md index ac3fd795f4..fbbf294af3 100644 --- a/wiki/translations/es/Draft_FlipDimension.md +++ b/wiki/translations/es/Draft_FlipDimension.md @@ -7,6 +7,8 @@ SeeAlso:[Dimension](Draft_Dimension/es.md) --- +# Draft FlipDimension/es + @@ -65,8 +67,5 @@ dimension.Normal = dimension.Normal.negative() doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FlipDimension/es diff --git a/wiki/translations/es/Draft_Heal.md b/wiki/translations/es/Draft_Heal.md index 83070daaea..f994d9e0cb 100644 --- a/wiki/translations/es/Draft_Heal.md +++ b/wiki/translations/es/Draft_Heal.md @@ -6,6 +6,8 @@ MenuLocation:Draft → Utilities → Heal --- +# Draft Heal/es + @@ -27,8 +29,5 @@ Debido a la rápida evolución de FreeCAD, algunas definiciones de objetos puede 2. Select the **Utilities → Heal** option from the menu. 3. If no errors are found the command will do nothing. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Heal/es diff --git a/wiki/translations/es/Draft_Label.md b/wiki/translations/es/Draft_Label.md index d3ca49def3..18f843eb9e 100644 --- a/wiki/translations/es/Draft_Label.md +++ b/wiki/translations/es/Draft_Label.md @@ -7,6 +7,8 @@ Shortcut:D L --- +# Draft Label/es + @@ -229,8 +231,5 @@ label3.ViewObject.TextSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Label/es diff --git a/wiki/translations/es/Draft_Line.md b/wiki/translations/es/Draft_Line.md index 3f20647739..fee58c29a2 100644 --- a/wiki/translations/es/Draft_Line.md +++ b/wiki/translations/es/Draft_Line.md @@ -9,6 +9,8 @@ SeeAlso:[Borrador Hilo](Draft_Wire/es.md), [Borrador Punto](Draft_Point/es.md) --- +# Draft Line/es + @@ -159,5 +161,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Line/es diff --git a/wiki/translations/es/Draft_Linestyle.md b/wiki/translations/es/Draft_Linestyle.md index 0c95cc3ddc..75f85d7ce5 100644 --- a/wiki/translations/es/Draft_Linestyle.md +++ b/wiki/translations/es/Draft_Linestyle.md @@ -1,2 +1,5 @@ # Draft Linestyle/es 1. REDIRECT [Draft\_Tray](Draft_Tray.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Linestyle/es diff --git a/wiki/translations/es/Draft_Mirror.md b/wiki/translations/es/Draft_Mirror.md index bcef8b01d3..0372831d42 100644 --- a/wiki/translations/es/Draft_Mirror.md +++ b/wiki/translations/es/Draft_Mirror.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Scale](Draft_Scale/es.md) --- +# Draft Mirror/es + @@ -159,8 +161,5 @@ mirrored2 = Draft.mirror([polygon1, polygon2], -p1, -p2) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Mirror/es diff --git a/wiki/translations/es/Draft_Module.md b/wiki/translations/es/Draft_Module.md index 9d8175b21b..5234c599af 100644 --- a/wiki/translations/es/Draft_Module.md +++ b/wiki/translations/es/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/es 1. REDIRECT [Draft\_Workbench/es](Draft_Workbench/es.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/es diff --git a/wiki/translations/es/Draft_Move.md b/wiki/translations/es/Draft_Move.md index f622ade290..9af9874a66 100644 --- a/wiki/translations/es/Draft_Move.md +++ b/wiki/translations/es/Draft_Move.md @@ -7,6 +7,8 @@ Shortcut:**M** **V** --- +# Draft Move/es + @@ -139,8 +141,5 @@ list3 = Draft.move(list1, -2*vector, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Move/es diff --git a/wiki/translations/es/Draft_OCA.md b/wiki/translations/es/Draft_OCA.md index 97dd32335e..949c218ba8 100644 --- a/wiki/translations/es/Draft_OCA.md +++ b/wiki/translations/es/Draft_OCA.md @@ -1,10 +1,4 @@ # Draft OCA/es - - - - - - {{TOCright}} ## Description @@ -111,3 +105,6 @@ importOCA.export(objects, "/home/user/Pictures/myfile.oca") [Category:User Documentation/es](Category:User_Documentation/es.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft OCA/es diff --git a/wiki/translations/es/Draft_Offset.md b/wiki/translations/es/Draft_Offset.md index e7ce88f985..c0b1dc3e49 100644 --- a/wiki/translations/es/Draft_Offset.md +++ b/wiki/translations/es/Draft_Offset.md @@ -8,6 +8,8 @@ SeeAlso:[Part 2D Offset](Part_Offset2D/es.md) --- +# Draft Offset/es + @@ -132,8 +134,5 @@ offset5 = Draft.offset(wire, 1.5*vector, copy=True, occ=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Offset/es diff --git a/wiki/translations/es/Draft_OrthoArray.md b/wiki/translations/es/Draft_OrthoArray.md index ff61f1e07f..fbc5f6cc04 100644 --- a/wiki/translations/es/Draft_OrthoArray.md +++ b/wiki/translations/es/Draft_OrthoArray.md @@ -8,6 +8,8 @@ SeeAlso:[Borrador ArregloPolar](Draft_PolarArray/es.md), [Borrador ArregloCircular](Draft_CircularArray/es.md), [Borrador ArregloRutas](Draft_PathArray/es.md), [Borrador ArregloEnlaceRuta](Draft_PathLinkArray/es.md), [Borrador ArregloPunto](Draft_PointArray/es.md), [Borrador ArregloEnlacePunto](Draft_PointLinkArray/es.md). --- +# Draft OrthoArray/es + @@ -357,5 +359,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft OrthoArray/es diff --git a/wiki/translations/es/Draft_PathArray.md b/wiki/translations/es/Draft_PathArray.md index d7823735f6..00b0967ef9 100644 --- a/wiki/translations/es/Draft_PathArray.md +++ b/wiki/translations/es/Draft_PathArray.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Array](Draft_Array/es.md) --- +# Draft PathArray/es + @@ -278,8 +280,5 @@ path_array2 = Draft.make_path_array(obj, wire, count=3, extra=App.Vector(0, -500 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathArray/es diff --git a/wiki/translations/es/Draft_Point.md b/wiki/translations/es/Draft_Point.md index 2d1c73534d..413cae5a0f 100644 --- a/wiki/translations/es/Draft_Point.md +++ b/wiki/translations/es/Draft_Point.md @@ -7,6 +7,8 @@ Shortcut:P T --- +# Draft Point/es + @@ -176,8 +178,5 @@ for i in range(N): doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Point/es diff --git a/wiki/translations/es/Draft_PointArray.md b/wiki/translations/es/Draft_PointArray.md index 6d7d7c946d..08452e4d8e 100644 --- a/wiki/translations/es/Draft_PointArray.md +++ b/wiki/translations/es/Draft_PointArray.md @@ -9,6 +9,8 @@ [Borrador ArregloCircular](Draft_CircularArray/es.md), [Borrador ArregloRuta](Draft_PathArray/es.md), [Borrador ArregloEnlaceRuta](Draft_PathLinkArray/es.md), [Borrador ArregloEnlacePunto](Draft_PointLinkArray/es.md) --- +# Draft PointArray/es + @@ -229,5 +231,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PointArray/es diff --git a/wiki/translations/es/Draft_PolarArray.md b/wiki/translations/es/Draft_PolarArray.md index 0d3eaa23f4..99f1f0ef27 100644 --- a/wiki/translations/es/Draft_PolarArray.md +++ b/wiki/translations/es/Draft_PolarArray.md @@ -8,6 +8,8 @@ SeeAlso:[Borrador OrthoArray](Draft_OrthoArray/es.md), [Borrador ArregloCircular](Draft_CircularArray/es.md), [Borrador ArregloRuta](Draft_PathArray/es.md), [Borrador ArregloEnlaceRuta](Draft_PathLinkArray/es.md), [Borrador ArregloPunto](Draft_PointArray/es.md), [Borrador ArregloEnlacePunto](Draft_PointLinkArray/es.md) --- +# Draft PolarArray/es + @@ -154,5 +156,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PolarArray/es diff --git a/wiki/translations/es/Draft_Polygon.md b/wiki/translations/es/Draft_Polygon.md index b126617fb1..d6a967265f 100644 --- a/wiki/translations/es/Draft_Polygon.md +++ b/wiki/translations/es/Draft_Polygon.md @@ -7,6 +7,8 @@ Shortcut:**P** **G** --- +# Draft Polygon/es + @@ -189,8 +191,5 @@ Polygon3 = Draft.make_polygon(6, radius=1450, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Polygon/es diff --git a/wiki/translations/es/Draft_Preferences.md b/wiki/translations/es/Draft_Preferences.md index 299ddfd23d..91e10cc609 100644 --- a/wiki/translations/es/Draft_Preferences.md +++ b/wiki/translations/es/Draft_Preferences.md @@ -1,10 +1,4 @@ # Draft Preferences/es - - - - - - {{TOCright}} @@ -508,3 +502,6 @@ On the *Texts and dimensions* tab you can specify the following: [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Preferences/es diff --git a/wiki/translations/es/Draft_Rectangle.md b/wiki/translations/es/Draft_Rectangle.md index 31aab1be64..cb045cf311 100644 --- a/wiki/translations/es/Draft_Rectangle.md +++ b/wiki/translations/es/Draft_Rectangle.md @@ -9,6 +9,8 @@ SeeAlso:[Cubo](Part_Box/es.md) --- +# Draft Rectangle/es + @@ -209,8 +211,5 @@ rectangle3 = Draft.make_rectangle(3500, 250, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rectangle/es diff --git a/wiki/translations/es/Draft_Rotate.md b/wiki/translations/es/Draft_Rotate.md index 26ad85ad90..6d3a6dd3f0 100644 --- a/wiki/translations/es/Draft_Rotate.md +++ b/wiki/translations/es/Draft_Rotate.md @@ -7,6 +7,8 @@ Shortcut:**R** **O** --- +# Draft Rotate/es + @@ -149,8 +151,5 @@ rot_list4 = Draft.rotate(list2, 4*angle2, center=cen, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rotate/es diff --git a/wiki/translations/es/Draft_SVG.md b/wiki/translations/es/Draft_SVG.md index 6da6f86b35..728a048f24 100644 --- a/wiki/translations/es/Draft_SVG.md +++ b/wiki/translations/es/Draft_SVG.md @@ -1,10 +1,4 @@ # Draft SVG/es - - - - - - {{TOCright}} ## Description @@ -173,3 +167,6 @@ importSVG.export(objects, "/home/user/Pictures/myfile.svg") [Category:User Documentation/es](Category:User_Documentation/es.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SVG/es diff --git a/wiki/translations/es/Draft_Scale.md b/wiki/translations/es/Draft_Scale.md index 01ffb082bc..a5c02d095a 100644 --- a/wiki/translations/es/Draft_Scale.md +++ b/wiki/translations/es/Draft_Scale.md @@ -8,6 +8,8 @@ SeeAlso:[Clonar](Draft_Clone/es.md) --- +# Draft Scale/es + @@ -140,8 +142,5 @@ wires = Draft.scale([wire1, wire2], scale2, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Scale/es diff --git a/wiki/translations/es/Draft_Select.md b/wiki/translations/es/Draft_Select.md index 3edfb150ac..79d242ccf9 100644 --- a/wiki/translations/es/Draft_Select.md +++ b/wiki/translations/es/Draft_Select.md @@ -1,2 +1,5 @@ # Draft Select/es 1. REDIRECT [Selection\_methods/es](Selection_methods/es.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Select/es diff --git a/wiki/translations/es/Draft_SelectGroup.md b/wiki/translations/es/Draft_SelectGroup.md index 524d498eb9..6895080363 100644 --- a/wiki/translations/es/Draft_SelectGroup.md +++ b/wiki/translations/es/Draft_SelectGroup.md @@ -8,6 +8,8 @@ SeeAlso:[Draft AddToGroup](Draft_AddToGroup/es.md), [Std CreateGroup](Std_Group/es.md) --- +# Draft SelectGroup/es + @@ -33,8 +35,5 @@ The command currently does not work well with layers and can produce confusing r - For more information about organizing your model see [Document structure](Document_structure.md) and [Arch tutorial](Arch_tutorial#Organizing_your_model.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectGroup/es diff --git a/wiki/translations/es/Draft_SelectPlane.md b/wiki/translations/es/Draft_SelectPlane.md index 1c4f36b9d7..4edee0cf80 100644 --- a/wiki/translations/es/Draft_SelectPlane.md +++ b/wiki/translations/es/Draft_SelectPlane.md @@ -8,6 +8,8 @@ SeeAlso:[Borrador PlanoTrabajoProxy](Draft_WorkingPlaneProxy/es.md), [Borrador AlternarRejilla](Draft_ToggleGrid/es.md) --- +# Draft SelectPlane/es + @@ -183,5 +185,5 @@ print(projection) - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectPlane/es diff --git a/wiki/translations/es/Draft_SetWorkingPlaneProxy.md b/wiki/translations/es/Draft_SetWorkingPlaneProxy.md index aba2f7d07e..68fb72d5e9 100644 --- a/wiki/translations/es/Draft_SetWorkingPlaneProxy.md +++ b/wiki/translations/es/Draft_SetWorkingPlaneProxy.md @@ -1,2 +1,5 @@ # Draft SetWorkingPlaneProxy/es 1. REDIRECT [Draft\_WorkingPlaneProxy/es](Draft_WorkingPlaneProxy/es.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SetWorkingPlaneProxy/es diff --git a/wiki/translations/es/Draft_Shape2DView.md b/wiki/translations/es/Draft_Shape2DView.md index 533fd1ee26..d4762597b3 100644 --- a/wiki/translations/es/Draft_Shape2DView.md +++ b/wiki/translations/es/Draft_Shape2DView.md @@ -6,6 +6,8 @@ Workbenches:[Boceto](Draft_Workbench/es.md), [Arquitectura](Arch_Workbench/es.md) --- +# Draft Shape2DView/es + @@ -131,8 +133,5 @@ shape3.ProjectionMode = "Individual Faces" doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Shape2DView/es diff --git a/wiki/translations/es/Draft_ShapeString.md b/wiki/translations/es/Draft_ShapeString.md index 50af301c8d..8516635720 100644 --- a/wiki/translations/es/Draft_ShapeString.md +++ b/wiki/translations/es/Draft_ShapeString.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Text](Draft_Text/es.md), [Part Extrude](Part_Extrude/es.md) --- +# Draft ShapeString/es + @@ -185,8 +187,5 @@ S3.Placement.Rotation = App.Rotation(zaxis, 180) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString/es diff --git a/wiki/translations/es/Draft_ShowSnapBar.md b/wiki/translations/es/Draft_ShowSnapBar.md index fd4b027fe7..229d308eb8 100644 --- a/wiki/translations/es/Draft_ShowSnapBar.md +++ b/wiki/translations/es/Draft_ShowSnapBar.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/es.md), [Arch](Arch_Workbench/es.md) --- +# Draft ShowSnapBar/es + @@ -23,8 +25,5 @@ The **Draft S - Select the **View → Toolbars → Draft Snap** option from the menu. - Right-click an empty space in the [toolbar area](Interface.md) and select the **Draft Snap** option from the menu that appears. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShowSnapBar/es diff --git a/wiki/translations/es/Draft_Slope.md b/wiki/translations/es/Draft_Slope.md index 75dd775758..ea620a3648 100644 --- a/wiki/translations/es/Draft_Slope.md +++ b/wiki/translations/es/Draft_Slope.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Draft Slope/es + @@ -48,5 +50,5 @@ There is no Python method to slope objects. To emulate the results of the Draft - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Slope/es diff --git a/wiki/translations/es/Draft_Snap.md b/wiki/translations/es/Draft_Snap.md index 39757b5cb6..32350caf81 100644 --- a/wiki/translations/es/Draft_Snap.md +++ b/wiki/translations/es/Draft_Snap.md @@ -1,7 +1,4 @@ # Draft Snap/es - - -
@@ -126,5 +123,5 @@ Note that after changing some preferences you must restart FreeCAD.
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap/es diff --git a/wiki/translations/es/Draft_Snap_Angle.md b/wiki/translations/es/Draft_Snap_Angle.md index c085750a37..1677c9714d 100644 --- a/wiki/translations/es/Draft_Snap_Angle.md +++ b/wiki/translations/es/Draft_Snap_Angle.md @@ -1,3 +1,4 @@ +# Draft Snap Angle/es --- - GuiCommand: Name:Draft Angle Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [[Draft Snap Snap]] → Angle|Shortcut: SeeAlso:--- @@ -42,8 +43,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Angle/es diff --git a/wiki/translations/es/Draft_Snap_Center.md b/wiki/translations/es/Draft_Snap_Center.md index 3c347b9e77..6b1da5260a 100644 --- a/wiki/translations/es/Draft_Snap_Center.md +++ b/wiki/translations/es/Draft_Snap_Center.md @@ -1,3 +1,4 @@ +# Draft Snap Center/es --- - GuiCommand: Name:Draft Center Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [[Draft Snap Snap]] → Center|Shortcut: SeeAlso:--- @@ -42,8 +43,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Center/es diff --git a/wiki/translations/es/Draft_Snap_Extension.md b/wiki/translations/es/Draft_Snap_Extension.md index b5e729cd6c..d5c15ddbe6 100644 --- a/wiki/translations/es/Draft_Snap_Extension.md +++ b/wiki/translations/es/Draft_Snap_Extension.md @@ -1,3 +1,4 @@ +# Draft Snap Extension/es --- - GuiCommand: Name:Draft Snap Extension Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [[Draft Snap Snap]] → Extension|Shortcut: SeeAlso:--- @@ -56,8 +57,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Extension/es diff --git a/wiki/translations/es/Draft_Snap_Intersection.md b/wiki/translations/es/Draft_Snap_Intersection.md index 9e231332df..d2a52a1317 100644 --- a/wiki/translations/es/Draft_Snap_Intersection.md +++ b/wiki/translations/es/Draft_Snap_Intersection.md @@ -1,3 +1,4 @@ +# Draft Snap Intersection/es --- - GuiCommand: Name:Draft Intersection Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [[Draft_Snap Snap]] → Intersection|Shortcut: SeeAlso:--- @@ -37,8 +38,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Intersection/es diff --git a/wiki/translations/es/Draft_Snap_Lock.md b/wiki/translations/es/Draft_Snap_Lock.md index 67d81f1b24..d5245e5b66 100644 --- a/wiki/translations/es/Draft_Snap_Lock.md +++ b/wiki/translations/es/Draft_Snap_Lock.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/es.md), [Arch](Arch_Workbench/es.md) --- +# Draft Snap Lock/es + @@ -22,8 +24,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). - Press the **** button in the [Draft snap widget](Draft_snap_widget.md) and in the menu select the ** Snap Lock** option. - Use the \"in-command\" shortcut: **S**. This shortcut can only be used if a command is active and does not work for all commands. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Lock/es diff --git a/wiki/translations/es/Draft_Snap_Midpoint.md b/wiki/translations/es/Draft_Snap_Midpoint.md index cc184345af..8909d4b523 100644 --- a/wiki/translations/es/Draft_Snap_Midpoint.md +++ b/wiki/translations/es/Draft_Snap_Midpoint.md @@ -1,3 +1,4 @@ +# Draft Snap Midpoint/es --- - GuiCommand: Name:Draft Midpoint Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [Shortcut:''None'' SeeAlso:[[Draft Snap](Draft_Snap___Snap]]_→_Midpoint.md)--- @@ -40,8 +41,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Midpoint/es diff --git a/wiki/translations/es/Draft_Snap_Ortho.md b/wiki/translations/es/Draft_Snap_Ortho.md index 34b82b468c..d97314a210 100644 --- a/wiki/translations/es/Draft_Snap_Ortho.md +++ b/wiki/translations/es/Draft_Snap_Ortho.md @@ -1,3 +1,4 @@ +# Draft Snap Ortho/es --- - GuiCommand: Name:Draft Snap Ortho Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [[Draft Snap Snap]] → Ortho|Shortcut: SeeAlso:--- @@ -29,8 +30,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Ortho/es diff --git a/wiki/translations/es/Draft_Snap_Parallel.md b/wiki/translations/es/Draft_Snap_Parallel.md index 5379416d5f..549d490a0c 100644 --- a/wiki/translations/es/Draft_Snap_Parallel.md +++ b/wiki/translations/es/Draft_Snap_Parallel.md @@ -1,3 +1,4 @@ +# Draft Snap Parallel/es --- - GuiCommand: Name:Draft Parallel Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [[Draft Snap Snap]] → Parallel|Shortcut: SeeAlso:--- @@ -40,8 +41,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Parallel/es diff --git a/wiki/translations/es/Draft_Stretch.md b/wiki/translations/es/Draft_Stretch.md index 3146a15f57..b92167aab0 100644 --- a/wiki/translations/es/Draft_Stretch.md +++ b/wiki/translations/es/Draft_Stretch.md @@ -7,6 +7,8 @@ SeeAlso:[[Draft Offset]] --- +# Draft Stretch/es + @@ -58,8 +60,5 @@ See also: [Autogenerated API documentation](https://freecad.github.io/SourceDoc/ There is no Python method to stretch objects. To emulate the results of the Draft Stretch command geometric properties of objects have to be modified. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Stretch/es diff --git a/wiki/translations/es/Draft_Text.md b/wiki/translations/es/Draft_Text.md index 68dd8dce60..fe44f21287 100644 --- a/wiki/translations/es/Draft_Text.md +++ b/wiki/translations/es/Draft_Text.md @@ -7,6 +7,8 @@ Shortcut:**T** **E** --- +# Draft Text/es + @@ -206,8 +208,5 @@ text3.ViewObject.FontSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Text/es diff --git a/wiki/translations/es/Draft_ToggleConstructionMode.md b/wiki/translations/es/Draft_ToggleConstructionMode.md index d6446fce51..63ac19ae64 100644 --- a/wiki/translations/es/Draft_ToggleConstructionMode.md +++ b/wiki/translations/es/Draft_ToggleConstructionMode.md @@ -7,6 +7,8 @@ Shortcut:**C** **M** --- +# Draft ToggleConstructionMode/es + @@ -60,8 +62,5 @@ In FreeCAD version 0.19 this command and the [Draft AddConstruction](Draft_AddCo - To change the label ((v0.20) ) of the construction group: **Edit → Preferences... → Draft → General settings → Construction Geometry → Construction group name**. - To change the color that is used: **Edit → Preferences... → Draft → General settings → Construction Geometry → Construction geometry color**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleConstructionMode/es diff --git a/wiki/translations/es/Draft_ToggleContinueMode.md b/wiki/translations/es/Draft_ToggleContinueMode.md index e2d7ff21c2..3a1fcafef8 100644 --- a/wiki/translations/es/Draft_ToggleContinueMode.md +++ b/wiki/translations/es/Draft_ToggleContinueMode.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/es.md), [Arch](Arch_Workbench/es.md) --- +# Draft ToggleContinueMode/es + @@ -21,8 +23,5 @@ The ** 4. Create your geometry. 5. Press **Esc** or the **Close** button to finish the command and switch off continue mode. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleContinueMode/es diff --git a/wiki/translations/es/Draft_ToggleDisplayMode.md b/wiki/translations/es/Draft_ToggleDisplayMode.md index f6ff99a3df..1694f9b7e3 100644 --- a/wiki/translations/es/Draft_ToggleDisplayMode.md +++ b/wiki/translations/es/Draft_ToggleDisplayMode.md @@ -7,6 +7,8 @@ Shortcut:**Shift**+**Space** --- +# Draft ToggleDisplayMode/es + @@ -39,8 +41,5 @@ Esta herramienta conmuta la visualización de los objetos seleccionados entre Wi - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleDisplayMode/es diff --git a/wiki/translations/es/Draft_ToggleGrid.md b/wiki/translations/es/Draft_ToggleGrid.md index 95c84978fb..77b204bc59 100644 --- a/wiki/translations/es/Draft_ToggleGrid.md +++ b/wiki/translations/es/Draft_ToggleGrid.md @@ -7,6 +7,8 @@ Shortcut:**G** **R** --- +# Draft ToggleGrid/es + @@ -33,8 +35,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - To use the grid select: **Edit → Preferences... → Draft → Grid and snapping → Grid → Use grid**. After changing this preference you must restart FreeCAD. - Several other grid preferences are also available: **Edit → Preferences... → Draft → Grid and snapping → Grid**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleGrid/es diff --git a/wiki/translations/es/Draft_Tray.md b/wiki/translations/es/Draft_Tray.md index c23ae2e186..bea5971418 100644 --- a/wiki/translations/es/Draft_Tray.md +++ b/wiki/translations/es/Draft_Tray.md @@ -1,10 +1,4 @@ # Draft Tray/es - - - - - - {{TOCright}} ## Description @@ -31,8 +25,5 @@ La [Bandeja Borrador](Bandeja_Borrador.md) te permite cambiar rápidamente las p - ![](images/Draft_tray_button_layer.png ) [AutoGroup](Draft_AutoGroup.md): changes the active [Draft Layer](Draft_Layer.md) or, optionally, the active [Std Group](Std_Group.md) or group-like [Arch](Arch_Workbench.md) object. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Tray/es diff --git a/wiki/translations/es/Draft_Trimex.md b/wiki/translations/es/Draft_Trimex.md index 5cd0585b20..5a4629e72e 100644 --- a/wiki/translations/es/Draft_Trimex.md +++ b/wiki/translations/es/Draft_Trimex.md @@ -8,6 +8,8 @@ SeeAlso:[Extrusión](Part_Extrude/es.md) --- +# Draft Trimex/es + @@ -141,8 +143,5 @@ solid = Draft.extrude(rectangle, vector, solid=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Trimex/es diff --git a/wiki/translations/es/Draft_UndoLine.md b/wiki/translations/es/Draft_UndoLine.md index 0e2f547506..6ad5fbfd3c 100644 --- a/wiki/translations/es/Draft_UndoLine.md +++ b/wiki/translations/es/Draft_UndoLine.md @@ -1,2 +1,5 @@ # Draft UndoLine/es 1. REDIRECT [Draft\_Wire/es](Draft_Wire/es.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft UndoLine/es diff --git a/wiki/translations/es/Draft_Upgrade.md b/wiki/translations/es/Draft_Upgrade.md index 15cc163dc0..dc0a0f6054 100644 --- a/wiki/translations/es/Draft_Upgrade.md +++ b/wiki/translations/es/Draft_Upgrade.md @@ -8,6 +8,8 @@ SeeAlso:[Borrador Rebajar](Draft_Downgrade/es.md) --- +# Draft Upgrade/es + ## Descripción @@ -86,8 +88,5 @@ add_list5, delete_list5 = Draft.upgrade(face, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Upgrade/es diff --git a/wiki/translations/es/Draft_Wire.md b/wiki/translations/es/Draft_Wire.md index 7d0b2c30af..cff07251ee 100644 --- a/wiki/translations/es/Draft_Wire.md +++ b/wiki/translations/es/Draft_Wire.md @@ -9,6 +9,8 @@ SeeAlso:[Línea Boceto](Draft_Line/es.md), [BSpline Boceto](Draft_BSpline/es.md) --- +# Draft Wire/es + @@ -209,8 +211,5 @@ wire3 = Draft.make_wire([1.3*p3, p1, -1.7*p2], closed=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Wire/es diff --git a/wiki/translations/es/Draft_WireToBSpline.md b/wiki/translations/es/Draft_WireToBSpline.md index 82f3ceba77..3dd8c607b3 100644 --- a/wiki/translations/es/Draft_WireToBSpline.md +++ b/wiki/translations/es/Draft_WireToBSpline.md @@ -6,6 +6,8 @@ Workbenches:[Boceto](Draft_Workbench/es.md), [Arquitectura](Arch_Workbench/es.md) --- +# Draft WireToBSpline/es + @@ -94,8 +96,5 @@ wire_from_spline = Draft.make_wire(points2) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WireToBSpline/es diff --git a/wiki/translations/es/Draft_Workbench.md b/wiki/translations/es/Draft_Workbench.md index 49e050c7ab..402b9b0ed0 100644 --- a/wiki/translations/es/Draft_Workbench.md +++ b/wiki/translations/es/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/es - - - - - -El icono del Ambiente de trabajo Borrador +# El icono del Ambiente de trabajo Borrador Draft Workbench/es {{TOCright}} @@ -441,3 +435,6 @@ Inspeccionar el código de este módulo es útil para entender cómo utilizar la [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/es diff --git a/wiki/translations/es/Draft_WorkingPlaneProxy.md b/wiki/translations/es/Draft_WorkingPlaneProxy.md index cd9106d915..643c1e808c 100644 --- a/wiki/translations/es/Draft_WorkingPlaneProxy.md +++ b/wiki/translations/es/Draft_WorkingPlaneProxy.md @@ -7,6 +7,8 @@ SeeAlso:[Borrador SeleccionarPlano](Draft_SelectPlane/es.md) --- +# Draft WorkingPlaneProxy/es + @@ -161,5 +163,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WorkingPlaneProxy/es diff --git a/wiki/translations/es/Draft_tutorial.md b/wiki/translations/es/Draft_tutorial.md index ea67b5bdc3..49b06a6260 100644 --- a/wiki/translations/es/Draft_tutorial.md +++ b/wiki/translations/es/Draft_tutorial.md @@ -1,7 +1,4 @@ # Draft tutorial/es - - - {{TutorialInfo/es |Topic= Borrador |Level= Principiante @@ -219,5 +216,5 @@ Este tutorial utiliza la notación {{Value|(x, y, z)}} para denotar las coordena {{Tutorials navi}} - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft tutorial/es diff --git a/wiki/translations/es/Drawing_Annotation.md b/wiki/translations/es/Drawing_Annotation.md index b1cc1063c3..61a6916cca 100644 --- a/wiki/translations/es/Drawing_Annotation.md +++ b/wiki/translations/es/Drawing_Annotation.md @@ -1,3 +1,4 @@ +# Drawing Annotation/es --- - GuiCommand:/es Name:Drawing Annotation Name/es:Drawing Annotation Workbenches:[[Drawing Workbench/es Drawing]], Complete|MenuLocation:Drawing → Annotation Shortcut:none--- @@ -28,4 +29,7 @@ This command allows you to place a block of text on a [Drawing page](Drawing_Lan {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Annotation/es diff --git a/wiki/translations/es/Drawing_Clip.md b/wiki/translations/es/Drawing_Clip.md index dce2e32744..16bf9b47d8 100644 --- a/wiki/translations/es/Drawing_Clip.md +++ b/wiki/translations/es/Drawing_Clip.md @@ -1,3 +1,4 @@ +# Drawing Clip/es --- - GuiCommand:/es Name:Drawing Clip Name/es:Drawing Clip Workbenches:[[Drawing Workbench/es Drawing]], Complete|MenuLocation:Drawing → Clip Shortcut:none--- @@ -27,4 +28,7 @@ This command allows you to place a clipping rectangle on a [Drawing page](Drawin {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Clip/es diff --git a/wiki/translations/es/Drawing_Landscape_A3.md b/wiki/translations/es/Drawing_Landscape_A3.md index 9a5709a167..135ac19529 100644 --- a/wiki/translations/es/Drawing_Landscape_A3.md +++ b/wiki/translations/es/Drawing_Landscape_A3.md @@ -1,3 +1,4 @@ +# Drawing Landscape A3/es --- - GuiCommand:/es Name:Drawing Landscape A3 Workbenches:[[Drawing Workbench/es Dibujo]], Complete|MenuLocation:Dibujo → Insertar nuevo dibujo → A3 apaisado Shortcut:none--- @@ -21,4 +22,7 @@ Si la página no se muestra, pulsa en el icono [Drawing](Drawing_Workbench.md) > Drawing Landscape A3/es diff --git a/wiki/translations/es/Drawing_Module.md b/wiki/translations/es/Drawing_Module.md index f2302ecfdf..3db386a511 100644 --- a/wiki/translations/es/Drawing_Module.md +++ b/wiki/translations/es/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/es 1. REDIRECT [Drawing\_Workbench/es](Drawing_Workbench/es.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/es diff --git a/wiki/translations/es/Drawing_Open_SVG.md b/wiki/translations/es/Drawing_Open_SVG.md index aebf54f9f1..7447c5f412 100644 --- a/wiki/translations/es/Drawing_Open_SVG.md +++ b/wiki/translations/es/Drawing_Open_SVG.md @@ -1,3 +1,4 @@ +# Drawing Open SVG/es --- - GuiCommand:/es Name:Drawing Open SVG Workbenches:[MenuLocation:Dibujo → Abrir SVG... Shortcut:none SeeAlso:[[Drawing Save/es|Guardar dibujo](Drawing_Workbench/es___Dibujo]],_Complete.md)--- @@ -15,4 +16,7 @@ Esta herramienta abre una hoja de dibujo previamente guardada como un archivo SV {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Open SVG/es diff --git a/wiki/translations/es/Drawing_Orthoviews.md b/wiki/translations/es/Drawing_Orthoviews.md index f10f9bf1e5..f1a3a6accf 100644 --- a/wiki/translations/es/Drawing_Orthoviews.md +++ b/wiki/translations/es/Drawing_Orthoviews.md @@ -1,3 +1,4 @@ +# Drawing Orthoviews/es --- - GuiCommand: Name:Drawing Orthoviews Workbenches:[MenuLocation:Drawing → Insert orthographic views Shortcut:none SeeAlso:[[Drawing Landscape A3|Drawing Landscape A3](Drawing_Workbench___Drawing]],_Complete.md)--- @@ -56,4 +57,7 @@ To be added {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Orthoviews/es diff --git a/wiki/translations/es/Drawing_Save.md b/wiki/translations/es/Drawing_Save.md index 56e8a4ba80..1cddcf2eb9 100644 --- a/wiki/translations/es/Drawing_Save.md +++ b/wiki/translations/es/Drawing_Save.md @@ -1,3 +1,4 @@ +# Drawing Save/es --- - GuiCommand:/es Name:Drawing Save Workbenches:[MenuLocation:Dibujo → Exportar página... Shortcut:none SeeAlso:[[Drawing Open SVG/es|Abrir SVG](Drawing_Workbench/es___Dibujo]],_Complete.md)--- @@ -20,4 +21,7 @@ Los archivos SVG son comunes y se pueden visualizar en la mayoría de visores y {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Save/es diff --git a/wiki/translations/es/Drawing_View.md b/wiki/translations/es/Drawing_View.md index 162de1d8dd..5bb87433e1 100644 --- a/wiki/translations/es/Drawing_View.md +++ b/wiki/translations/es/Drawing_View.md @@ -1,3 +1,4 @@ +# Drawing View/es --- - GuiCommand:/es Name:Drawing View Name/es:Drawing View Workbenches:[MenuLocation:Dibujo → Insertar vista en dibujo Shortcut:none SeeAlso:[[Drawing Landscape A3/es|Dibujo A3 apaisado](Drawing_Workbench/es___Dibujo]],_Complete.md)--- @@ -61,4 +62,7 @@ If you are looking for persective-orthographic toggling in 3D view check [Std Pe {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing View/es diff --git a/wiki/translations/es/Drawing_Workbench.md b/wiki/translations/es/Drawing_Workbench.md index 4070321410..27e453ce40 100644 --- a/wiki/translations/es/Drawing_Workbench.md +++ b/wiki/translations/es/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/es - - - **El desarrollo del [Ambiente de Trabajo Dibujo](Drawing_Workbench/es.md) se detuvo en FreeCAD 0.16, y el nuevo [Ambiente de Trabajo DibujoTécnico](TechDraw_Workbench/es.md) que pretendía reemplazarlo fue introducido en la v0.17. Ambos ambientes de trabajo todavía se proporcionan en la v0.17, pero el ambiente de Trabajo de Dibujo puede ser eliminado en futuras versiones.** El icono del Ambiente de trabajo Dibujar @@ -87,3 +84,6 @@ Some notes on the programming side of the drawing module will be added to the [D }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/es diff --git a/wiki/translations/es/Drawing_templates.md b/wiki/translations/es/Drawing_templates.md index 668d4527ae..cee5ece276 100644 --- a/wiki/translations/es/Drawing_templates.md +++ b/wiki/translations/es/Drawing_templates.md @@ -1,7 +1,4 @@ # Drawing templates/es - - - **The [Drawing Workbench](Drawing_Workbench.md) became obsolete in v0.17. Consider using the [TechDraw Workbench](TechDraw_Workbench.md) instead.** @@ -301,3 +298,6 @@ The two lines that FreeCAD will be looking for are \"\$blocks\" and \"\$entities }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing templates/es diff --git a/wiki/translations/es/Dxf_Importer_Install.md b/wiki/translations/es/Dxf_Importer_Install.md index 301a92dbe7..65b4e9e9c5 100644 --- a/wiki/translations/es/Dxf_Importer_Install.md +++ b/wiki/translations/es/Dxf_Importer_Install.md @@ -1,7 +1,4 @@ # Dxf Importer Install/es - - - {{TutorialInfo/es |Topic=ClaseMuestra |Level=Usuario medio @@ -185,3 +182,6 @@ Usar Teigha. Teigha es un programa completo y puedes usarlo sin FreeCAD ### Enlaces Video tutorial [FreeCAD Tutorial 24 - DXF/DWG Import](https://www.youtube.com/watch?v=wHxTWuDhc3M) + +--- +[documentation index](../README.md) > Dxf Importer Install/es diff --git a/wiki/translations/es/Embedding_FreeCAD.md b/wiki/translations/es/Embedding_FreeCAD.md index 5673235e71..547c0945f4 100644 --- a/wiki/translations/es/Embedding_FreeCAD.md +++ b/wiki/translations/es/Embedding_FreeCAD.md @@ -1,7 +1,4 @@ # Embedding FreeCAD/es - - - {{TOCright}} ## Introduction @@ -179,3 +176,6 @@ Since the FreeCAD Python module is compiled from C++ (rather than being a pure P }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCAD/es diff --git a/wiki/translations/es/Embedding_FreeCADGui.md b/wiki/translations/es/Embedding_FreeCADGui.md index 9dbc5163aa..472e5b60a2 100644 --- a/wiki/translations/es/Embedding_FreeCADGui.md +++ b/wiki/translations/es/Embedding_FreeCADGui.md @@ -1,6 +1,4 @@ # Embedding FreeCADGui/es - - ## Introduction @@ -542,3 +540,6 @@ In the source code there are examples of embedding FreeCAD with various graphica }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCADGui/es diff --git a/wiki/translations/es/Engine_Block_Tutorial.md b/wiki/translations/es/Engine_Block_Tutorial.md index f4c4590b78..cf81eed5ed 100644 --- a/wiki/translations/es/Engine_Block_Tutorial.md +++ b/wiki/translations/es/Engine_Block_Tutorial.md @@ -1,5 +1,5 @@ # Engine Block Tutorial/es - } +}
@@ -383,6 +383,5 @@ Selecciona los 6 objetos *Taladro Perno 1*, *Taladro Perno 2*\... y únelos llam Your final object should look like the picture on the right. - - - +--- +[documentation index](../README.md) > Engine Block Tutorial/es diff --git a/wiki/translations/es/Expressions.md b/wiki/translations/es/Expressions.md index 05d9ac3712..5f11afc9ef 100644 --- a/wiki/translations/es/Expressions.md +++ b/wiki/translations/es/Expressions.md @@ -1,5 +1,5 @@ # Expressions/es - {{TOCright}} +{{TOCright}} ## Resumen @@ -534,3 +534,6 @@ Of course, it\'s up to you to load the corresponding documents later when you wa }} [Category:Spreadsheet](Category:Spreadsheet.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Category:Spreadsheet.md) > Expressions/es diff --git a/wiki/translations/es/Extend_FEM_Module.md b/wiki/translations/es/Extend_FEM_Module.md index 56d66b4686..40b9aac369 100644 --- a/wiki/translations/es/Extend_FEM_Module.md +++ b/wiki/translations/es/Extend_FEM_Module.md @@ -1,7 +1,4 @@ # Extend FEM Module/es - - -
@@ -152,3 +149,6 @@ Agregar nuevas restricciones es bastante sencillo. Para los recién llegados hay
[Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Extend FEM Module/es diff --git a/wiki/translations/es/External_workbench_list.md b/wiki/translations/es/External_workbench_list.md index 5c93e5e698..727a72f55a 100644 --- a/wiki/translations/es/External_workbench_list.md +++ b/wiki/translations/es/External_workbench_list.md @@ -1,2 +1,5 @@ # External workbench list/es 1. REDIRECT [External\_workbenches/es](External_workbenches/es.md) + +--- +[documentation index](../README.md) > External workbench list/es diff --git a/wiki/translations/es/External_workbenches.md b/wiki/translations/es/External_workbenches.md index 8e9454ddbe..e02a03e1ab 100644 --- a/wiki/translations/es/External_workbenches.md +++ b/wiki/translations/es/External_workbenches.md @@ -1,10 +1,4 @@ # External workbenches/es - - - - - - {{TOCright}} ## Introducción @@ -314,3 +308,6 @@ Ver la página wiki para más información [Traducir un ambiente de trabajo exte [Category:Addons](Category:Addons.md) [\*](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > External workbenches/es diff --git a/wiki/translations/es/Extra_python_modules.md b/wiki/translations/es/Extra_python_modules.md index ed68f0fc67..ee552ee7a7 100644 --- a/wiki/translations/es/Extra_python_modules.md +++ b/wiki/translations/es/Extra_python_modules.md @@ -1,7 +1,4 @@ # Extra python modules/es - - -
@@ -742,3 +739,6 @@ utils = LazyLoader('PathScripts', globals(), 'PathScripts.PathUtils') [Category:Python Code](Category:Python_Code.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > Extra python modules/es diff --git a/wiki/translations/es/FAQ.md b/wiki/translations/es/FAQ.md index 05d9be853e..5f641e078d 100644 --- a/wiki/translations/es/FAQ.md +++ b/wiki/translations/es/FAQ.md @@ -1,2 +1,5 @@ # FAQ/es 1. REDIRECT [Frequently\_asked\_questions/es](Frequently_asked_questions/es.md) + +--- +[documentation index](../README.md) > FAQ/es diff --git a/wiki/translations/es/FCGear_Workbench.md b/wiki/translations/es/FCGear_Workbench.md index ddb74fecec..f604cb1573 100644 --- a/wiki/translations/es/FCGear_Workbench.md +++ b/wiki/translations/es/FCGear_Workbench.md @@ -1,5 +1,4 @@ -# FCGear Workbench/es - FCEngranaje Icono Ambiente de trabajo Externo +# FCEngranaje Icono Ambiente de trabajo Externo FCGear Workbench/es ## Introducción @@ -168,3 +167,6 @@ Vea las instrucciones para Linux arriba [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) + +--- +[documentation index](../README.md) > FCGear Workbench/es diff --git a/wiki/translations/es/FEM_CalculiX_Cantilever_3D.md b/wiki/translations/es/FEM_CalculiX_Cantilever_3D.md index 57eb601c6d..4597862bf0 100644 --- a/wiki/translations/es/FEM_CalculiX_Cantilever_3D.md +++ b/wiki/translations/es/FEM_CalculiX_Cantilever_3D.md @@ -1,7 +1,4 @@ # FEM CalculiX Cantilever 3D/es - - -
@@ -158,4 +155,7 @@ Este ejemplo pretende mostrar cómo se ve un simple Análisis de elementos finit {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM CalculiX Cantilever 3D/es diff --git a/wiki/translations/es/FEM_Install.md b/wiki/translations/es/FEM_Install.md index b9dfe0f9dd..64a63b0833 100644 --- a/wiki/translations/es/FEM_Install.md +++ b/wiki/translations/es/FEM_Install.md @@ -1,7 +1,4 @@ # FEM Install/es - - - {{TOCright}} ## Introducción @@ -260,4 +257,7 @@ Si tiene problemas para instalar Netgen, Gmsh, o CalculiX, u otra herramienta ex {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Install/es diff --git a/wiki/translations/es/FEM_MaterialSolid.md b/wiki/translations/es/FEM_MaterialSolid.md index bfa2d5b5d6..a56c0b7018 100644 --- a/wiki/translations/es/FEM_MaterialSolid.md +++ b/wiki/translations/es/FEM_MaterialSolid.md @@ -1,3 +1,4 @@ +# FEM MaterialSolid/es --- - GuiCommand: Name:FEM MaterialSolid MenuLocation:Model → FEM material for solid |Workbenches:[Shortcut:M,M SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -52,4 +53,7 @@ Agrega propiedades de material a una parte. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialSolid/es diff --git a/wiki/translations/es/FEM_Mesh.md b/wiki/translations/es/FEM_Mesh.md index 5a5e923c01..b9d4ce19fa 100644 --- a/wiki/translations/es/FEM_Mesh.md +++ b/wiki/translations/es/FEM_Mesh.md @@ -1,5 +1,5 @@ # FEM Mesh/es - {{TOCright}} +{{TOCright}} ## Crear una malla de EF @@ -727,4 +727,7 @@ See for example FEM Mesh/es diff --git a/wiki/translations/es/FEM_Module.md b/wiki/translations/es/FEM_Module.md index 8d84c3d92a..f74b4ad1be 100644 --- a/wiki/translations/es/FEM_Module.md +++ b/wiki/translations/es/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/es 1. REDIRECT [FEM\_Workbench/es](FEM_Workbench/es.md) + +--- +[documentation index](../README.md) > FEM Module/es diff --git a/wiki/translations/es/FEM_PostPipelineFromResult.md b/wiki/translations/es/FEM_PostPipelineFromResult.md index 9a5a6c71be..86e2e18162 100644 --- a/wiki/translations/es/FEM_PostPipelineFromResult.md +++ b/wiki/translations/es/FEM_PostPipelineFromResult.md @@ -1,3 +1,4 @@ +# FEM PostPipelineFromResult/es --- - GuiCommand: Name:FEM PostPipelineFromResult MenuLocation: Results → post pipeline from result |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -49,5 +50,5 @@ Pipeline es un objeto de resultado, que crea una nueva representación gráfica {{FEM Tools navi}} - - +--- +[documentation index](../README.md) > FEM PostPipelineFromResult/es diff --git a/wiki/translations/es/FEM_Shear_of_a_Composite_Block.md b/wiki/translations/es/FEM_Shear_of_a_Composite_Block.md index 2f29ac1232..af613a0ed4 100644 --- a/wiki/translations/es/FEM_Shear_of_a_Composite_Block.md +++ b/wiki/translations/es/FEM_Shear_of_a_Composite_Block.md @@ -1,7 +1,4 @@ # FEM Shear of a Composite Block/es - - -
@@ -121,4 +118,7 @@ The FC file for this tutorial is attached below as a starting point. -Que te diviertas ! {{Tutorials navi}} {{FEM Tools navi}} +Que te diviertas ! {{Tutorials navi}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM Shear of a Composite Block/es diff --git a/wiki/translations/es/FEM_Solver.md b/wiki/translations/es/FEM_Solver.md index 23de7723e3..121df6b0bf 100644 --- a/wiki/translations/es/FEM_Solver.md +++ b/wiki/translations/es/FEM_Solver.md @@ -1,7 +1,4 @@ # FEM Solver/es - - -
## Предисловие @@ -242,4 +239,7 @@ Technog was successfully used in FreeCAD as a substitute of CalculiX, although t {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Solver/es diff --git a/wiki/translations/es/FEM_SolverCalculixCxxtools.md b/wiki/translations/es/FEM_SolverCalculixCxxtools.md index 783eb25620..84dc533285 100644 --- a/wiki/translations/es/FEM_SolverCalculixCxxtools.md +++ b/wiki/translations/es/FEM_SolverCalculixCxxtools.md @@ -1,3 +1,4 @@ +# FEM SolverCalculixCxxtools/es --- - GuiCommand: Name:FEM Solver MenuLocation:Solve → Solver CalculiX Standard |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -216,4 +217,7 @@ La documentación original de CalculiX se puede encontrar en {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverCalculixCxxtools/es diff --git a/wiki/translations/es/FEM_Tutorial_Python.md b/wiki/translations/es/FEM_Tutorial_Python.md index 4c4b4e44bb..6f12a252a7 100644 --- a/wiki/translations/es/FEM_Tutorial_Python.md +++ b/wiki/translations/es/FEM_Tutorial_Python.md @@ -1,7 +1,4 @@ # FEM Tutorial Python/es - - - {{TutorialInfo/es |Topic= Finite Element Analysis |Level= Intermediates @@ -628,3 +625,6 @@ Escribir el archivo de entrada en el modo de consola FreeCAD (sin Gui) se podrí }} {{FEM Tools navi}} [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > FEM Tutorial Python/es diff --git a/wiki/translations/es/FEM_Workbench.md b/wiki/translations/es/FEM_Workbench.md index d6bd856167..8a3e2ad03b 100644 --- a/wiki/translations/es/FEM_Workbench.md +++ b/wiki/translations/es/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/es - - - - - -El icono del Ambiente de trabajo MEF +# El icono del Ambiente de trabajo MEF FEM Workbench/es {{TOCright}} @@ -280,3 +274,6 @@ A developer\'s guide has been written to help power users in understanding the c }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/es diff --git a/wiki/translations/es/FEM_project.md b/wiki/translations/es/FEM_project.md index 67c9c7e8a8..8ebd3608f5 100644 --- a/wiki/translations/es/FEM_project.md +++ b/wiki/translations/es/FEM_project.md @@ -1,7 +1,4 @@ # FEM project/es - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -80,3 +77,6 @@ Algunas aplicaciones de cálculo existente }} [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > FEM project/es diff --git a/wiki/translations/es/FEM_tutorial.md b/wiki/translations/es/FEM_tutorial.md index 20115b59ba..44514f4bb5 100644 --- a/wiki/translations/es/FEM_tutorial.md +++ b/wiki/translations/es/FEM_tutorial.md @@ -1,7 +1,4 @@ # FEM tutorial/es - - -
@@ -195,4 +192,7 @@ We are now finished with the basic workflow for the [FEM Workbench](FEM_Workbenc {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM tutorial/es diff --git a/wiki/translations/es/Fcstd_file_format.md b/wiki/translations/es/Fcstd_file_format.md index 5111591093..7f87476f0f 100644 --- a/wiki/translations/es/Fcstd_file_format.md +++ b/wiki/translations/es/Fcstd_file_format.md @@ -1,2 +1,5 @@ # Fcstd file format/es 1. REDIRECT [File\_Format\_FCStd/es](File_Format_FCStd/es.md) + +--- +[documentation index](../README.md) > Fcstd file format/es diff --git a/wiki/translations/es/Feature_editing.md b/wiki/translations/es/Feature_editing.md index c92509e9a3..82241d5558 100644 --- a/wiki/translations/es/Feature_editing.md +++ b/wiki/translations/es/Feature_editing.md @@ -1,5 +1,5 @@ # Feature editing/es - {{TOCright}} +{{TOCright}} ## Introducción @@ -180,3 +180,6 @@ The [tutorials](Tutorials.md) page provides some examples of using the [feature }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Feature editing/es diff --git a/wiki/translations/es/Feature_list.md b/wiki/translations/es/Feature_list.md index 0687d55743..c10b27b8dc 100644 --- a/wiki/translations/es/Feature_list.md +++ b/wiki/translations/es/Feature_list.md @@ -1,6 +1,4 @@ # Feature list/es - - Esta es una lista extensa, pero no completa, de las características que FreeCAD implementa. Si quiere mirar hacia el futuro, vea la [Mapa de ruta de desarrollo](Development_roadmap/es.md) para una rápida visión general de lo que viene a continuación. Además, las [Capturas de pantalla](Screenshots/es.md) son un buen lugar para ir. @@ -102,3 +100,6 @@ Usuarios de Poder han creado varias [Ambiente de trabajo externos](external_work [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/es diff --git a/wiki/translations/es/File_Format_FCStd.md b/wiki/translations/es/File_Format_FCStd.md index ef242ec146..14e0033666 100644 --- a/wiki/translations/es/File_Format_FCStd.md +++ b/wiki/translations/es/File_Format_FCStd.md @@ -1,5 +1,5 @@ # File Format FCStd/es - {{TOCright}} +{{TOCright}} ## Resumen @@ -167,3 +167,6 @@ Ver el hilo del foro, [PDF dentro del proyecto](https://forum.freecadweb.org/vie [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > File Format FCStd/es diff --git a/wiki/translations/es/Free-cad:Community_Portal.md b/wiki/translations/es/Free-cad:Community_Portal.md index 22ff82004d..36ad4a7fdb 100644 --- a/wiki/translations/es/Free-cad:Community_Portal.md +++ b/wiki/translations/es/Free-cad:Community_Portal.md @@ -120,3 +120,6 @@ Feel free to add more pages or assign one or more pages to yourself to take care [Category:Documentation/es](Category:Documentation/es.md) + +--- +[documentation index](../README.md) > Free-cad:Community Portal/es diff --git a/wiki/translations/es/FreeCAD-Ship_s60_tutorial.md b/wiki/translations/es/FreeCAD-Ship_s60_tutorial.md index c1b08d1ceb..f73df50274 100644 --- a/wiki/translations/es/FreeCAD-Ship_s60_tutorial.md +++ b/wiki/translations/es/FreeCAD-Ship_s60_tutorial.md @@ -1,7 +1,4 @@ # FreeCAD-Ship s60 tutorial/es - - - {{TutorialInfo/es |Topic=Ambiente de Trabajo |Level=Principiante @@ -317,3 +314,6 @@ El [Tutorial de FreeCAD-Nave s60 (II)](FreeCAD-Ship_s60_tutorial_(II)/es.md) es {{Ship Tools navi }} + +--- +[documentation index](../README.md) > FreeCAD-Ship s60 tutorial/es diff --git a/wiki/translations/es/FreeCAD-Ship_s60_tutorial_(II).md b/wiki/translations/es/FreeCAD-Ship_s60_tutorial_(II).md index 16d1e420da..67717d0961 100644 --- a/wiki/translations/es/FreeCAD-Ship_s60_tutorial_(II).md +++ b/wiki/translations/es/FreeCAD-Ship_s60_tutorial_(II).md @@ -1,7 +1,4 @@ # FreeCAD-Ship s60 tutorial (II)/es - - - {{TutorialInfo/es |Topic=Ship Workbench |Level= Beginner @@ -314,3 +311,6 @@ Por supuesto este ejemplo no es real, entre otras cosas porque no se pueden llev {{Ship Tools navi }} + +--- +[documentation index](../README.md) > FreeCAD-Ship s60 tutorial (II)/es diff --git a/wiki/translations/es/FreeCADGui_API.md b/wiki/translations/es/FreeCADGui_API.md index 993673684f..7a4fe6f200 100644 --- a/wiki/translations/es/FreeCADGui_API.md +++ b/wiki/translations/es/FreeCADGui_API.md @@ -1,5 +1,5 @@ # FreeCADGui API/es - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Este módulo es el homologo al módulo de FreeCAD. Contiene todo lo relacionado con la interfaz de usuario y las vistas 3D. Ejemplo: ```python @@ -70,3 +70,6 @@ gui_doc.activateWorkbench("myWorkbench") [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FreeCADGui API/es diff --git a/wiki/translations/es/FreeCADShip_Workbench.md b/wiki/translations/es/FreeCADShip_Workbench.md index 0bd9ed81ec..6ad5840be4 100644 --- a/wiki/translations/es/FreeCADShip_Workbench.md +++ b/wiki/translations/es/FreeCADShip_Workbench.md @@ -1,2 +1,5 @@ # FreeCADShip Workbench/es 1. REDIRECT [Ship\_Workbench/es](Ship_Workbench/es.md) + +--- +[documentation index](../README.md) > FreeCADShip Workbench/es diff --git a/wiki/translations/es/FreeCAD_API.md b/wiki/translations/es/FreeCAD_API.md index bebe4e6df1..f2004cf6a8 100644 --- a/wiki/translations/es/FreeCAD_API.md +++ b/wiki/translations/es/FreeCAD_API.md @@ -1,5 +1,5 @@ # FreeCAD API/es - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Este es el módulo principal (raíz) de FreeCAD. También puede ser llamado por \"App\" desde el interprete de FreeCAD. Contiene todo lo que es necesario para manipular documentos y sus contenidos (objectos). @@ -68,3 +68,6 @@ mydoc = FreeCAD.activeDocument() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FreeCAD API/es diff --git a/wiki/translations/es/FreeCAD_Build_Tool.md b/wiki/translations/es/FreeCAD_Build_Tool.md index 2bc763067d..77fd8d1a39 100644 --- a/wiki/translations/es/FreeCAD_Build_Tool.md +++ b/wiki/translations/es/FreeCAD_Build_Tool.md @@ -1,10 +1,4 @@ # FreeCAD Build Tool/es - - - - - - {{TOCright}} @@ -100,3 +94,6 @@ El comando \"CM\" [crea un nuevo módulo de aplicación](Module_Creation/es.md). [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Build Tool/es diff --git a/wiki/translations/es/FreeCAD_Community_Portal.md b/wiki/translations/es/FreeCAD_Community_Portal.md index aafdcb75ae..4897108cbf 100644 --- a/wiki/translations/es/FreeCAD_Community_Portal.md +++ b/wiki/translations/es/FreeCAD_Community_Portal.md @@ -1,6 +1,4 @@ # FreeCAD Community Portal/es - - ¡Este es el lugar para poner todo tipo de cosas relacionadas con FreeCAD! ¡Si trabajas en algo relacionado con FreeCAD, por favor inclúyelo aquí! ## Lugares donde aparece FreeCAD en la red @@ -87,3 +85,6 @@ Estos son los ambientes de trabajo, scripts, macros y complementos desarrollados [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > FreeCAD Community Portal/es diff --git a/wiki/translations/es/FreeCAD_Scripting_Basics.md b/wiki/translations/es/FreeCAD_Scripting_Basics.md index e36eaa46df..81a8e6a897 100644 --- a/wiki/translations/es/FreeCAD_Scripting_Basics.md +++ b/wiki/translations/es/FreeCAD_Scripting_Basics.md @@ -1,7 +1,4 @@ # FreeCAD Scripting Basics/es - - - {{TOCright}} ## Guionización Python en FreeCAD @@ -211,3 +208,6 @@ print(myObj.isDerivedFrom("Part::Feature")) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Scripting Basics/es diff --git a/wiki/translations/es/FreeCAD_and_DWG_Import.md b/wiki/translations/es/FreeCAD_and_DWG_Import.md index ccd815b3f8..5af2887783 100644 --- a/wiki/translations/es/FreeCAD_and_DWG_Import.md +++ b/wiki/translations/es/FreeCAD_and_DWG_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DWG Import/es - {{TOCright}} +{{TOCright}} {{Fake heading|sub=4|< Back to [[FreeCAD Howto Import Export]]}} @@ -146,3 +146,6 @@ En la versión de desarrollo, como se mencionó anteriormente, se puede cambiar [Category:File\_Formats](Category:File_Formats.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > FreeCAD and DWG Import/es diff --git a/wiki/translations/es/FreeCAD_and_DXF_Import.md b/wiki/translations/es/FreeCAD_and_DXF_Import.md index 0955d26138..790574a95e 100644 --- a/wiki/translations/es/FreeCAD_and_DXF_Import.md +++ b/wiki/translations/es/FreeCAD_and_DXF_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DXF Import/es - {{TOCright}} +{{TOCright}} ## Fondo @@ -52,3 +52,6 @@ You can also try: Para ver un resumen de todas las preferencias relacionadas con DXF, consulte [Preferencias de importación y exportación](Import_Export_Preferences/es#DXF.md). [Category:User\_Documentation](Category:User_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > FreeCAD and DXF Import/es diff --git a/wiki/translations/es/FreeCAD_development_model_project.md b/wiki/translations/es/FreeCAD_development_model_project.md index f5a3e801dc..02237e78cc 100644 --- a/wiki/translations/es/FreeCAD_development_model_project.md +++ b/wiki/translations/es/FreeCAD_development_model_project.md @@ -1,7 +1,4 @@ # FreeCAD development model project/es - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -74,3 +71,6 @@ Las reglas decididas y la información va al documento [Modelo de desarrollo de [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > FreeCAD development model project/es diff --git a/wiki/translations/es/FreeCAD_vector_math_library.md b/wiki/translations/es/FreeCAD_vector_math_library.md index e07e65e401..2d25528ff1 100644 --- a/wiki/translations/es/FreeCAD_vector_math_library.md +++ b/wiki/translations/es/FreeCAD_vector_math_library.md @@ -1,6 +1,4 @@ # FreeCAD vector math library/es - - ## Introduction @@ -96,3 +94,6 @@ def project(first, other): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD vector math library/es diff --git a/wiki/translations/es/Frequently_asked_questions.md b/wiki/translations/es/Frequently_asked_questions.md index d434c16447..d21ee1f5fe 100644 --- a/wiki/translations/es/Frequently_asked_questions.md +++ b/wiki/translations/es/Frequently_asked_questions.md @@ -1,9 +1,4 @@ # Frequently asked questions/es - - - - - Esta página intenta responder a las preguntas más comunes que se hacen en los foros de FreeCAD. Si tienes un problema o una pregunta sobre FreeCAD, comprueba primero lo que se indica a continuación. Entonces, si no puedes encontrar una respuesta para tu pregunta específica, dirígete al [foro de FreeCAD](http://forum.freecadweb.org/viewforum.php?f=3). ## Instalación @@ -309,3 +304,6 @@ Yes, you can use the core parts of FreeCAD in other applications as long as you [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Frequently asked questions/es diff --git a/wiki/translations/es/Getting_started.md b/wiki/translations/es/Getting_started.md index a3b0dd35f1..b8b547f2ce 100644 --- a/wiki/translations/es/Getting_started.md +++ b/wiki/translations/es/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/es - - - - - - {{TOCright}} ## Prólogo @@ -196,3 +190,6 @@ Y finalmente, una de las características más poderosas de FreeCAD es el entorn {{Userdocnavi/es}} [Category:User Documentation/es](Category:User_Documentation/es.md) + +--- +[documentation index](../README.md) > Getting started/es diff --git a/wiki/translations/es/Git_buildpackage.md b/wiki/translations/es/Git_buildpackage.md index ba6d24942f..e832e21283 100644 --- a/wiki/translations/es/Git_buildpackage.md +++ b/wiki/translations/es/Git_buildpackage.md @@ -1,6 +1,4 @@ # Git buildpackage/es - - Los flujos de trabajo de desarrollo de Debian modernos implican [empaquetar con Git](https://wiki.debian.org/PackagingWithGit) y la herramienta principal para hacerlo es [git-buildpackage](http://honk.sigxcpu.org/projects/git-buildpackage/manual-html/gbp.html). git-buildpackage proporciona un comando gbp con varias opciones similares al propio comando git. Muchos de estos comandos son en sí mismos sólo una envoltura de herramientas de Debian de nivel inferior, por lo que la complejidad para aprender a empaquetar puede ser bastante alta. Para evitar esto, aquí están los pasos cortos y simples para empezar con git-buildpackage. Esto debería funcionar en casi cualquier distribución basada en Debian, pero recomiendo trabajar en esto en un entorno limpio y separado una máquina virtual [Debian Inestable](Debian_Unstable/es.md). @@ -36,3 +34,6 @@ Ubicación: ~/.quiltrc [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Git buildpackage/es diff --git a/wiki/translations/es/Glossary.md b/wiki/translations/es/Glossary.md index c48a20330a..2151e64ea3 100644 --- a/wiki/translations/es/Glossary.md +++ b/wiki/translations/es/Glossary.md @@ -1,9 +1,4 @@ # Glossary/es - - - - - Esta página es un glosario de términos y definiciones comunes en FreeCAD. (Ver la [página de Discusión](Talk:Glossary/es.md), por favor.) Ir a la letra {{CompactTOC|center=yes}} @@ -1122,3 +1117,6 @@ Ir a la letra {{CompactTOC|center=yes}} [Category:Wiki](Category:Wiki.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Wiki](Category:Wiki.md) > Glossary/es diff --git a/wiki/translations/es/GuiCommand_model.md b/wiki/translations/es/GuiCommand_model.md index 23ca077ec2..deaf47cb65 100644 --- a/wiki/translations/es/GuiCommand_model.md +++ b/wiki/translations/es/GuiCommand_model.md @@ -1,3 +1,4 @@ +# GuiCommand model/es --- - GuiCommand:/es Name:Base_ExampleCommandModel Workbenches:Wb1,Wb2--- @@ -257,3 +258,6 @@ Optional. }} [Category:Wiki:Example](Category:Wiki:Example.md) + +--- +[documentation index](../README.md) > [API]] and ](Category:API]] and .md) > GuiCommand model/es diff --git a/wiki/translations/es/Gui_Command.md b/wiki/translations/es/Gui_Command.md index 742609bec3..11a928f776 100644 --- a/wiki/translations/es/Gui_Command.md +++ b/wiki/translations/es/Gui_Command.md @@ -1,7 +1,4 @@ # Gui Command/es - - -
Los comandos de la interfaz gráfica de usuario (GuiCommand) son una de las funciones más importantes de FreeCAD en el principal punto de interacción del usuario. Cada vez que el usuario selecciona un elemento del menú o presiona un botón de una barra de herramientas se activa un comando de la interfaz gráfica de usuario. Alguno de los atributos de un comandos de la interfaz gráfica de usuario (GuiCommand) son: @@ -133,4 +130,7 @@ Se espera que esto sea cierto para todos los comandos de la interfaz gráfica de {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Gui Command/es diff --git a/wiki/translations/es/Help.md b/wiki/translations/es/Help.md index da9b3c0ef5..47ac9b959a 100644 --- a/wiki/translations/es/Help.md +++ b/wiki/translations/es/Help.md @@ -1,6 +1,4 @@ # Help/es - - ## Foro El primer lugar donde puedes pedir ayuda es el [foro de FreeCAD](https://forum.freecadweb.org/viewforum.php?f=3). Por favor, lee [este post](https://forum.freecadweb.org/viewtopic.php?f=3&t=2264) antes de hacer cualquier pregunta. Recuerda que [información importante](Información_importante.md) sobre tu sistema es necesario cuando pidas ayuda. @@ -45,3 +43,6 @@ Tenemos un [official Servidor Discord dedicado a FreeCAD](https://discord.gg/BgZ [Category:Help](Category:Help.md) + +--- +[documentation index](../README.md) > [Help](Category:Help.md) > Help/es diff --git a/wiki/translations/es/Help_FreeCAD.md b/wiki/translations/es/Help_FreeCAD.md index 75cd553f3c..0690760d3a 100644 --- a/wiki/translations/es/Help_FreeCAD.md +++ b/wiki/translations/es/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/es - - ## Introducción @@ -94,3 +92,6 @@ Escribir código para FreeCAD no es difícil, y no necesitas ningún tipo de per [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command_Reference]] lista y documenta todos los FreeCAD ](Category:Command_Reference]] lista y documenta todos los FreeCAD .md) > Help FreeCAD/es diff --git a/wiki/translations/es/How_to_install_additional_workbenches.md b/wiki/translations/es/How_to_install_additional_workbenches.md index 00d791c6cd..7f8b81bd2e 100644 --- a/wiki/translations/es/How_to_install_additional_workbenches.md +++ b/wiki/translations/es/How_to_install_additional_workbenches.md @@ -1,5 +1,5 @@ # How to install additional workbenches/es - {{TutorialInfo/es +{{TutorialInfo/es |Topic=Programación |Level=Programador mediano |Time=15 minutos @@ -169,3 +169,6 @@ For the sake of this example, say you\'ve chosen the [Curves Workbench](Curves_W {{Powerdocnavi}} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External Workbenches](Category:External Workbenches.md) > How to install additional workbenches/es diff --git a/wiki/translations/es/How_to_install_macros.md b/wiki/translations/es/How_to_install_macros.md index 5555604ca2..0f9b81cbca 100644 --- a/wiki/translations/es/How_to_install_macros.md +++ b/wiki/translations/es/How_to_install_macros.md @@ -1,7 +1,4 @@ # How to install macros/es - - -
@@ -475,3 +472,6 @@ and then press the **OK** button. }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > How to install macros/es diff --git a/wiki/translations/es/IfcOpenShell.md b/wiki/translations/es/IfcOpenShell.md index 8d1fcbd38c..6e5d54bcd8 100644 --- a/wiki/translations/es/IfcOpenShell.md +++ b/wiki/translations/es/IfcOpenShell.md @@ -1,6 +1,4 @@ # IfcOpenShell/es - - ## Descripción @@ -451,3 +449,6 @@ The IfcOpenShell project has also developed \"IFC Pipeline\", a self-hosted IFC {{FEM Tools navi}} [Category:BIM](Category:BIM.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > IfcOpenShell/es diff --git a/wiki/translations/es/ImageConv.md b/wiki/translations/es/ImageConv.md index c961ae8b20..cf47e62586 100644 --- a/wiki/translations/es/ImageConv.md +++ b/wiki/translations/es/ImageConv.md @@ -1,6 +1,4 @@ # ImageConv/es - - **ImageConv** es un programa utilizado para convertir imágenes de varios formatos al formato XPM, este puede estar compilado dentro de FreeCAD. ## Creación @@ -17,3 +15,6 @@ La creación es fácil con el *Makefile* o el VisualStudio-Projecto. ImageConv es una herramienta de comando en línea. [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > ImageConv/es diff --git a/wiki/translations/es/Image_CreateImagePlane.md b/wiki/translations/es/Image_CreateImagePlane.md index 9a9a12f88e..18e8641ad9 100644 --- a/wiki/translations/es/Image_CreateImagePlane.md +++ b/wiki/translations/es/Image_CreateImagePlane.md @@ -6,6 +6,8 @@ SeeAlso:[Image Open](Image_Open.md), [Image Scaling](Image_Scaling.md) --- +# Image CreateImagePlane/es + ## Descripción The [CreateImagePlane](Image_CreateImagePlane.md) tool imports a [bitmap](bitmap.md) image and places it on one of the XY, YZ or XZ planes. @@ -54,4 +56,7 @@ If no offset is given to the image initially, its position can still be adjusted {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image CreateImagePlane/es diff --git a/wiki/translations/es/Image_Module.md b/wiki/translations/es/Image_Module.md index 3b7580c869..bc228b87e3 100644 --- a/wiki/translations/es/Image_Module.md +++ b/wiki/translations/es/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/es 1. REDIRECT [Image\_Workbench/es](Image_Workbench/es.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/es diff --git a/wiki/translations/es/Image_Open.md b/wiki/translations/es/Image_Open.md index 99a20d71b9..80d0a73329 100644 --- a/wiki/translations/es/Image_Open.md +++ b/wiki/translations/es/Image_Open.md @@ -6,6 +6,8 @@ SeeAlso:[Image CreateImagePlane](Image_CreateImagePlane.md), [Image Scaling](Image_Scaling.md) --- +# Image Open/es + ## Descripción The [Image Open](Image_Open.md) tool simply opens an image from your system in a new tab in the viewport. @@ -29,4 +31,7 @@ The image is placed in a new viewport, not in the 3D view. {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Open/es diff --git a/wiki/translations/es/Image_Workbench.md b/wiki/translations/es/Image_Workbench.md index 53fcc9087a..989407be04 100644 --- a/wiki/translations/es/Image_Workbench.md +++ b/wiki/translations/es/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/es - - -El icono del Ambiente de trabajo Imagen +# El icono del Ambiente de trabajo Imagen Image Workbench/es ## Introducción @@ -39,3 +36,6 @@ El relleno de la imagen puede establecerse durante la importación, o modificars }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/es diff --git a/wiki/translations/es/Import.md b/wiki/translations/es/Import.md index 07f382dd15..59c37ca7a0 100644 --- a/wiki/translations/es/Import.md +++ b/wiki/translations/es/Import.md @@ -1,5 +1,5 @@ # Import/Export IFC - compiling IfcOpenShell/es - {{TutorialInfo/es +{{TutorialInfo/es |Topic=Ambiente de trabajo Arquitectura |Level=Avanzado |Time=120 minutos @@ -134,3 +134,6 @@ Salud [Category:BIM](Category:BIM.md) [Category:Arch](Category:Arch.md) [Category:3rd Party](Category:3rd_Party.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Import/Export IFC - compiling IfcOpenShell/es diff --git a/wiki/translations/es/Import_Export.md b/wiki/translations/es/Import_Export.md index 4556970a7b..47df2be2b2 100644 --- a/wiki/translations/es/Import_Export.md +++ b/wiki/translations/es/Import_Export.md @@ -1,9 +1,4 @@ # Import Export/es - - - - - ## Introducción En esta página se enumeran los diversos formatos de archivo que FreeCAD puede importar y exportar. Para completar la lista se incluye el formato nativo de FreeCAD. Algunos formatos tienen una página wiki relacionada a la que se puede acceder haciendo clic en la extensión en la primera columna. @@ -75,3 +70,6 @@ Ver las siguientes páginas para obtener información adicional: [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export/es diff --git a/wiki/translations/es/Import_Export_Preferences.md b/wiki/translations/es/Import_Export_Preferences.md index 99255d2ea2..7d3838b21d 100644 --- a/wiki/translations/es/Import_Export_Preferences.md +++ b/wiki/translations/es/Import_Export_Preferences.md @@ -1,10 +1,4 @@ # Import Export Preferences/es - - - - - - {{TOCright}} ## Introducción @@ -627,3 +621,6 @@ For the VTK format you can specify the following: [Category:Common Questions](Category:Common_Questions.md) [Category:Preferences](Category:Preferences.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preferences/es diff --git a/wiki/translations/es/Import_OpenSCAD_code.md b/wiki/translations/es/Import_OpenSCAD_code.md index 2158cef8d6..860efbef3b 100644 --- a/wiki/translations/es/Import_OpenSCAD_code.md +++ b/wiki/translations/es/Import_OpenSCAD_code.md @@ -1,7 +1,4 @@ # Import OpenSCAD code/es - - - {{TutorialInfo/es |Topic= Importar código OpenSCAD |Level= Principiante @@ -58,3 +55,6 @@ Aquí usaremos el archivo example005.scad de los (antiguos) ejemplos de OpenSCAD \]\] [Category:OpenSCAD](Category:OpenSCAD.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import OpenSCAD code/es diff --git a/wiki/translations/es/Inspection_Workbench.md b/wiki/translations/es/Inspection_Workbench.md index 1927ac2061..80e8764f20 100644 --- a/wiki/translations/es/Inspection_Workbench.md +++ b/wiki/translations/es/Inspection_Workbench.md @@ -1,7 +1,4 @@ -# Inspection Workbench/es - - -El icono del Ambiente de trabajo Inspección +# El icono del Ambiente de trabajo Inspección Inspection Workbench/es ## Introducción @@ -27,3 +24,6 @@ Alternativamente, usa la macro Inspection Workbench/es diff --git a/wiki/translations/es/Install_on_Linux.md b/wiki/translations/es/Install_on_Linux.md index 63d5df6c33..3c59eeb765 100644 --- a/wiki/translations/es/Install_on_Linux.md +++ b/wiki/translations/es/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/es 1. REDIRECT [Installing\_on\_Linux/es](Installing_on_Linux/es.md) + +--- +[documentation index](../README.md) > Install on Linux/es diff --git a/wiki/translations/es/Install_on_Mac.md b/wiki/translations/es/Install_on_Mac.md index 5d56813c43..d1af4e1e58 100644 --- a/wiki/translations/es/Install_on_Mac.md +++ b/wiki/translations/es/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/es 1. REDIRECT [Installing\_on\_Mac/es](Installing_on_Mac/es.md) + +--- +[documentation index](../README.md) > Install on Mac/es diff --git a/wiki/translations/es/Install_on_Unix.md b/wiki/translations/es/Install_on_Unix.md index d7ed2cc04b..6ce6e8500e 100644 --- a/wiki/translations/es/Install_on_Unix.md +++ b/wiki/translations/es/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/es 1. REDIRECT [Installing\_on\_Linux/es](Installing_on_Linux/es.md) + +--- +[documentation index](../README.md) > Install on Unix/es diff --git a/wiki/translations/es/Install_on_Windows.md b/wiki/translations/es/Install_on_Windows.md index bed76c1ed6..e40f31acdb 100644 --- a/wiki/translations/es/Install_on_Windows.md +++ b/wiki/translations/es/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/es 1. REDIRECT [Installing\_on\_Windows/es](Installing_on_Windows/es.md) + +--- +[documentation index](../README.md) > Install on Windows/es diff --git a/wiki/translations/es/Installing.md b/wiki/translations/es/Installing.md index 939503fc98..80ad748d24 100644 --- a/wiki/translations/es/Installing.md +++ b/wiki/translations/es/Installing.md @@ -1,2 +1,5 @@ # Installing/es 1. REDIRECT [Installing\_additional\_components/es](Installing_additional_components/es.md) + +--- +[documentation index](../README.md) > Installing/es diff --git a/wiki/translations/es/Installing_Helpfile.md b/wiki/translations/es/Installing_Helpfile.md index 3fdfed67b5..445d3d3dd3 100644 --- a/wiki/translations/es/Installing_Helpfile.md +++ b/wiki/translations/es/Installing_Helpfile.md @@ -1,6 +1,4 @@ # Installing Helpfile/es - - ## FreeCAD Archivos de ayuda La documentación offline de FreeCAD se construye a partir del wiki de FreeCAD utilizando scripts. Ha crecido hasta un tamaño de archivo de más de 220 MB. Estos grandes archivos no forman parte de los instaladores y ejecutables de FreeCAD, pero pueden instalarse por separado como se documenta aquí. @@ -45,5 +43,5 @@ Difficulties may arise when trying to install the documentation packages on Ubun - Alternatively, you can instead get the development versions of the {{FileName|freecad.qhc}} and {{FileName|freecad.qch}} help files from [GitHub](https://github.com/FreeCAD/FreeCAD/tree/master/src/Doc). You will need to [concatenate](http://man7.org/linux/man-pages/man1/cat.1.html) the .part files together: `cat freecad.qch.part00 freecad.qch.part01 freecad.qch.part02 freecad.qch.part03 > freecad.qch`. - With administrative privileges (e.g., `sudo`), copy or move {{FileName|freecad.qhc}} and {{FileName|freecad.qch}} to {{FileName|/usr/share/doc/freecad-doc/}}. If you are using `freecad-daily`, this will instead be {{FileName|/usr/share/doc/freecad-daily-doc/}}. - - +--- +[documentation index](../README.md) > Installing Helpfile/es diff --git a/wiki/translations/es/Installing_additional_components.md b/wiki/translations/es/Installing_additional_components.md index ffb268ce4c..6460fd669f 100644 --- a/wiki/translations/es/Installing_additional_components.md +++ b/wiki/translations/es/Installing_additional_components.md @@ -1,10 +1,4 @@ # Installing additional components/es - - - - - - {{TOCright}} # Introducción @@ -123,3 +117,6 @@ El [ODA Conversor Archivo](https://www.opendesign.com/guestfiles/oda_file_conver [Category:User Documentation/es](Category:User_Documentation/es.md) + +--- +[documentation index](../README.md) > Installing additional components/es diff --git a/wiki/translations/es/Installing_more_workbenches.md b/wiki/translations/es/Installing_more_workbenches.md index 4f42e2cd1a..bd90feac1a 100644 --- a/wiki/translations/es/Installing_more_workbenches.md +++ b/wiki/translations/es/Installing_more_workbenches.md @@ -1,6 +1,4 @@ # Installing more workbenches/es - - ## Introducción Desde la v0.17 es fácil añadir [ambientes de trabajo externos](external_workbenches/es.md) utilizando el [Gestor de complementos](Std_AddonMgr/es.md). Un usuario normal no necesita hacer más que usar esta herramienta. @@ -48,3 +46,6 @@ Consulta también una descripción detallada en la página [cómo instalar ambie }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Installing more workbenches/es diff --git a/wiki/translations/es/Installing_on_Linux.md b/wiki/translations/es/Installing_on_Linux.md index ac76fe08a0..36d970e1a9 100644 --- a/wiki/translations/es/Installing_on_Linux.md +++ b/wiki/translations/es/Installing_on_Linux.md @@ -1,9 +1,4 @@ # Installing on Linux/es - - - - - ## Vista general @@ -377,3 +372,6 @@ Una vez tengas instalado FreeCAD, es hora de [dar tus primeros pasos](Getting_st [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/es diff --git a/wiki/translations/es/Installing_on_Mac.md b/wiki/translations/es/Installing_on_Mac.md index e10fceb079..d574e8ce29 100644 --- a/wiki/translations/es/Installing_on_Mac.md +++ b/wiki/translations/es/Installing_on_Mac.md @@ -1,9 +1,4 @@ # Installing on Mac/es - - - - - FreeCAD puede instalarse en macOS desde un paquete .dmg que puedes arrastrar y soltar en tu carpeta de aplicaciones: @@ -50,8 +45,5 @@ Actualmente no hay un desinstalador para FreeCAD instalado con el paquete dmg. P Si instalaste FreeCAD con homebrew simplemente usa el comando `brew uninstall freecad`. Eso es todo. - - - - - +--- +[documentation index](../README.md) > Installing on Mac/es diff --git a/wiki/translations/es/Installing_on_Windows.md b/wiki/translations/es/Installing_on_Windows.md index ce92d553b8..086796b79a 100644 --- a/wiki/translations/es/Installing_on_Windows.md +++ b/wiki/translations/es/Installing_on_Windows.md @@ -1,9 +1,4 @@ # Installing on Windows/es - - - - - Puede instalar FreeCAD en Windows descargando uno de los siguientes instaladores: @@ -191,8 +186,5 @@ msiexec /i Y:\\software\\FreeCAD.msi FreeCAD se está ejecutando, pero se ha informado de que la pantalla de OpenGL no funciona, como con otros programas que se ejecutan bajo [Wine](wikipedia:Wine_(software).md) es decir, Google [SketchUp](wikipedia:SketchUp.md). - - - - - +--- +[documentation index](../README.md) > Installing on Windows/es diff --git a/wiki/translations/es/Interesting_links.md b/wiki/translations/es/Interesting_links.md index d9c81ae341..07bbddbc47 100644 --- a/wiki/translations/es/Interesting_links.md +++ b/wiki/translations/es/Interesting_links.md @@ -1,7 +1,4 @@ # Interesting links/es - - - {{TOCright}} @@ -132,3 +129,6 @@ Otra página que contiene enlaces interesantes es [Portal de la Comunidad](FreeC [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Interesting links/es diff --git a/wiki/translations/es/Interface.md b/wiki/translations/es/Interface.md index a9e046cd27..c1ad76d5e4 100644 --- a/wiki/translations/es/Interface.md +++ b/wiki/translations/es/Interface.md @@ -1,5 +1,5 @@ # Interface/es - {{TOCright}} +{{TOCright}} ## Introducción @@ -79,4 +79,7 @@ These options are in the menu, **Tools → Customize**. See [interface customiza {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Interface/es diff --git a/wiki/translations/es/Interface_Customization.md b/wiki/translations/es/Interface_Customization.md index 49ba1ccdc1..4779697846 100644 --- a/wiki/translations/es/Interface_Customization.md +++ b/wiki/translations/es/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/es - - - - - - {{TOCright}} ## Introducción @@ -285,4 +279,7 @@ Los complementos ofrecen otra forma de personalizar la interfaz de uso. A contin {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/es diff --git a/wiki/translations/es/Introduction_to_Python.md b/wiki/translations/es/Introduction_to_Python.md index 6a4a4c035a..f533220a1e 100644 --- a/wiki/translations/es/Introduction_to_Python.md +++ b/wiki/translations/es/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/es - - - {{TOCright}} ## Introducción @@ -501,3 +498,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/es diff --git a/wiki/translations/es/KicadStepUp_Workbench.md b/wiki/translations/es/KicadStepUp_Workbench.md index 1eafc08f0e..465fb67586 100644 --- a/wiki/translations/es/KicadStepUp_Workbench.md +++ b/wiki/translations/es/KicadStepUp_Workbench.md @@ -1,7 +1,4 @@ # KicadStepUp Workbench/es - - -
KicadStepUp Icono del ambiente de trabajo externo @@ -162,3 +159,6 @@ Nuevos ambientes de trabajo están en desarrollo, esté atento! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > KicadStepUp Workbench/es diff --git a/wiki/translations/es/Licence.md b/wiki/translations/es/Licence.md index 54d7dcfb05..6dfe6ac99a 100644 --- a/wiki/translations/es/Licence.md +++ b/wiki/translations/es/Licence.md @@ -1,10 +1,4 @@ # Licence/es - - - - - - {{TOCright}} @@ -132,3 +126,6 @@ No obstante, esta decisión se ha tomado sólo para el sistema básico de FreeCA [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Licence/es diff --git a/wiki/translations/es/Line_drawing_function.md b/wiki/translations/es/Line_drawing_function.md index 05f18bf451..da92bdc1a2 100644 --- a/wiki/translations/es/Line_drawing_function.md +++ b/wiki/translations/es/Line_drawing_function.md @@ -1,7 +1,4 @@ # Line drawing function/es - - - {{TOCright}} ## Introduction @@ -465,3 +462,6 @@ No dudes en escribir tus preguntas o ideas en la [forum](http://forum.freecadweb Don\'t hesitate to ask questions or share ideas on the [forum](https://forum.freecadweb.org/)! {{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Line drawing function/es diff --git a/wiki/translations/es/Linux_packaging.md b/wiki/translations/es/Linux_packaging.md index 07ab1c7093..edbf58020b 100644 --- a/wiki/translations/es/Linux_packaging.md +++ b/wiki/translations/es/Linux_packaging.md @@ -1,6 +1,4 @@ # Linux packaging/es - - Linux permite empaquetar de diferentes maneras dependiendo de la distribución específica utilizada. Los formatos más populares son los paquetes de Debian `.deb`, los paquetes de openSuse y Fedora `.rpm` y el formato casi universal `.AppImage`. @@ -17,3 +15,6 @@ para Windows y MacOS, ver [Empaquetado](Packaging/es.md). [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Linux packaging/es diff --git a/wiki/translations/es/List_of_Commands.md b/wiki/translations/es/List_of_Commands.md index 7f39855b8b..1e8f50a878 100644 --- a/wiki/translations/es/List_of_Commands.md +++ b/wiki/translations/es/List_of_Commands.md @@ -1,2 +1,5 @@ # List of Commands/es 1. REDIRECT [:Category:Command Reference/es](:Category:Command_Reference/es.md) + +--- +[documentation index](../README.md) > List of Commands/es diff --git a/wiki/translations/es/Localisation.md b/wiki/translations/es/Localisation.md index ccd34b38d4..ec92f43c8f 100644 --- a/wiki/translations/es/Localisation.md +++ b/wiki/translations/es/Localisation.md @@ -1,7 +1,4 @@ # Localisation/es - - -
@@ -269,3 +266,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/es diff --git a/wiki/translations/es/MIBA.md b/wiki/translations/es/MIBA.md index 9d15c6936f..01315f9c91 100644 --- a/wiki/translations/es/MIBA.md +++ b/wiki/translations/es/MIBA.md @@ -1,6 +1,4 @@ # MIBA/es - - ## Introduction @@ -55,3 +53,6 @@ App.closeDocument(App.ActiveDocument.Name) ``` [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > MIBA/es diff --git a/wiki/translations/es/Macro_Align_View_to_Face.md b/wiki/translations/es/Macro_Align_View_to_Face.md index cfa06b1200..7d70cb2929 100644 --- a/wiki/translations/es/Macro_Align_View_to_Face.md +++ b/wiki/translations/es/Macro_Align_View_to_Face.md @@ -1,5 +1,5 @@ # Macro Align View to Face/es - {{Macro/es +{{Macro/es |Name=Macro Align View to Face |Icone=Macro_Align_View_to_Face.png |Translate=Vista de alineación de macro a cara @@ -77,3 +77,6 @@ cam.orientation.setValue(rot.Q) Gui.SendMsgToActiveView("ViewSelection") }} + +--- +[documentation index](../README.md) > Macro Align View to Face/es diff --git a/wiki/translations/es/Macro_ArrayCopy.md b/wiki/translations/es/Macro_ArrayCopy.md index fd5ba534fd..6940696199 100644 --- a/wiki/translations/es/Macro_ArrayCopy.md +++ b/wiki/translations/es/Macro_ArrayCopy.md @@ -1,5 +1,5 @@ # Macro ArrayCopy/es - {{Macro/es +{{Macro/es |Name=ArrayCopy |Icon=Macro_ArrayCopy.png |Translate=ArrayCopy @@ -84,3 +84,5 @@ dialog.show() }} +--- +[documentation index](../README.md) > Macro ArrayCopy/es diff --git a/wiki/translations/es/Macro_Automatic_drawing.md b/wiki/translations/es/Macro_Automatic_drawing.md index a445f99460..0d18178f14 100644 --- a/wiki/translations/es/Macro_Automatic_drawing.md +++ b/wiki/translations/es/Macro_Automatic_drawing.md @@ -1,5 +1,5 @@ # Macro Automatic drawing/es - {{Macro/es +{{Macro/es |Name=Automatic drawing |Translate=Automatic drawing |Icon=Macro_Automatic_drawing.png @@ -124,3 +124,6 @@ App.activeDocument().AutoDrawing.addObject(App.activeDocument().IsoView) ## Enlazar El foro [Automatic drawing](https://forum.freecadweb.org/viewtopic.php?f=8&t=3361) + +--- +[documentation index](../README.md) > Macro Automatic drawing/es diff --git a/wiki/translations/es/Macro_Corner_shapes_wizard.md b/wiki/translations/es/Macro_Corner_shapes_wizard.md index e6d997b012..6be1eb9b30 100644 --- a/wiki/translations/es/Macro_Corner_shapes_wizard.md +++ b/wiki/translations/es/Macro_Corner_shapes_wizard.md @@ -1,5 +1,5 @@ # Macro Corner shapes wizard/es - {{Macro/es +{{Macro/es |Name=Corner shapes wizard |Translate=Corner shapes wizard |Icon=Macro_Corner_shapes_wizard.png @@ -196,6 +196,5 @@ ToolBar Icon ![](images/Macro_Corner_shapes_wizard.png ) QtCore.QMetaObject.connectSlotsByName(dialog) dialog.show() - - - +--- +[documentation index](../README.md) > Macro Corner shapes wizard/es diff --git a/wiki/translations/es/Macro_Draw_2D_Function.md b/wiki/translations/es/Macro_Draw_2D_Function.md index 59e5a099b1..c59770f9bf 100644 --- a/wiki/translations/es/Macro_Draw_2D_Function.md +++ b/wiki/translations/es/Macro_Draw_2D_Function.md @@ -1,5 +1,5 @@ # Macro Draw 2D Function/es - {{Macro/es +{{Macro/es |Name=Draw 2D Function |Translate=Draw 2D Function |Icon=Macro_Draw_2D_Function.png @@ -67,3 +67,5 @@ Part.show(WWire) }} +--- +[documentation index](../README.md) > Macro Draw 2D Function/es diff --git a/wiki/translations/es/Macro_Draw_Parametric_2D_Function.md b/wiki/translations/es/Macro_Draw_Parametric_2D_Function.md index ca56bfe995..c3febb81c1 100644 --- a/wiki/translations/es/Macro_Draw_Parametric_2D_Function.md +++ b/wiki/translations/es/Macro_Draw_Parametric_2D_Function.md @@ -1,5 +1,5 @@ # Macro Draw Parametric 2D Function/es - {{Macro/es +{{Macro/es |Name=Macro Draw Parametric 2D Function |Icon=Macro_Draw_Parametric_2D_Function.png |Translate=Macro Dibujar Parametrico 2D Función @@ -83,3 +83,5 @@ draw2Dfunction(xFunction="0.5*n", yFunction="-0.75*n", n=0, nd=-math.pi, step=50 }} +--- +[documentation index](../README.md) > Macro Draw Parametric 2D Function/es diff --git a/wiki/translations/es/Macro_FlattenWire.md b/wiki/translations/es/Macro_FlattenWire.md index 730df413fa..2f62f4183a 100644 --- a/wiki/translations/es/Macro_FlattenWire.md +++ b/wiki/translations/es/Macro_FlattenWire.md @@ -1,5 +1,5 @@ # Macro FlattenWire/es - {{Macro/es +{{Macro/es |Name=FlattenWire |Translate=FlattenWire |Icon=Macro_FlattenWire.png @@ -35,6 +35,5 @@ obj.Points = newppoints }} - - - +--- +[documentation index](../README.md) > Macro FlattenWire/es diff --git a/wiki/translations/es/Macro_HealArcs.md b/wiki/translations/es/Macro_HealArcs.md index 3cfbcc4fef..3904426b48 100644 --- a/wiki/translations/es/Macro_HealArcs.md +++ b/wiki/translations/es/Macro_HealArcs.md @@ -1,5 +1,5 @@ # Macro HealArcs/es - {{Macro/es +{{Macro/es |Name=HealArcs |Translate=HealArcs |Icon=Macro_HealArcs.png @@ -45,6 +45,5 @@ else: FreeCAD.ActiveDocument.removeObject(n) }} - - - +--- +[documentation index](../README.md) > Macro HealArcs/es diff --git a/wiki/translations/es/Macro_JointWire.md b/wiki/translations/es/Macro_JointWire.md index 96f17c86b6..fc3974d2ca 100644 --- a/wiki/translations/es/Macro_JointWire.md +++ b/wiki/translations/es/Macro_JointWire.md @@ -1,5 +1,5 @@ # Macro JointWire/es - **!!! This macro needs to be corrected. !!!** +**!!! This macro needs to be corrected. !!!** {{Macro/es @@ -92,6 +92,5 @@ ToolBar Icon ![](images/Macro_JointWire.png ) }} - - - +--- +[documentation index](../README.md) > Macro JointWire/es diff --git a/wiki/translations/es/Macro_Make_Cube.md b/wiki/translations/es/Macro_Make_Cube.md index 7e58fea12c..bc58d840ed 100644 --- a/wiki/translations/es/Macro_Make_Cube.md +++ b/wiki/translations/es/Macro_Make_Cube.md @@ -1,7 +1,4 @@ # Macro Make Cube/es - - - {{Macro/es |Name=Make Cube |Icon=Macro_makeCube.png @@ -154,3 +151,5 @@ class myCommand(draftTools.Creator): myCommand() ``` +--- +[documentation index](../README.md) > Macro Make Cube/es diff --git a/wiki/translations/es/Macro_MeshToPart.md b/wiki/translations/es/Macro_MeshToPart.md index c536c46fd5..672c911d89 100644 --- a/wiki/translations/es/Macro_MeshToPart.md +++ b/wiki/translations/es/Macro_MeshToPart.md @@ -1,7 +1,4 @@ # Macro MeshToPart/es - - -
@@ -74,3 +71,6 @@ for obj in FreeCADGui.Selection.getSelection(): ## Enlazar La discusión en el foro [Convert mesh to solid?](http://forum.freecadweb.org/viewtopic.php?f=3&t=253&hilit=getPlanarSegments) + +--- +[documentation index](../README.md) > Macro MeshToPart/es diff --git a/wiki/translations/es/Macro_MessageBox.md b/wiki/translations/es/Macro_MessageBox.md index 4e7e127dbf..f5157284c9 100644 --- a/wiki/translations/es/Macro_MessageBox.md +++ b/wiki/translations/es/Macro_MessageBox.md @@ -1,5 +1,5 @@ # Macro MessageBox/es - {{Macro/es +{{Macro/es |Name=MessageBox |Translate=MessageBox |Icon=Macro MessageBox.png @@ -66,6 +66,5 @@ Ejemplo: "+str(z)+"\nRayon\t : "+str(r)) }} - - - +--- +[documentation index](../README.md) > Macro MessageBox/es diff --git a/wiki/translations/es/Macro_Mouse_Cross.md b/wiki/translations/es/Macro_Mouse_Cross.md index a405967849..80ed642bed 100644 --- a/wiki/translations/es/Macro_Mouse_Cross.md +++ b/wiki/translations/es/Macro_Mouse_Cross.md @@ -1,5 +1,5 @@ # Macro Mouse Cross/es - {{Macro/es +{{Macro/es |Name=Macro_Mouse_Cross |Icon=Macro_Mouse_Cross.png |Translate=Macro_Mouse_Cross @@ -210,3 +210,6 @@ ArrowCursor, UpArrowCursor, CrossCursor, WaitCursor, IBeamCursor, SizeVerCursor, El cursor puede cambiar de aspecto dependiendo del Workbench utilizado, debe repetir la operación. El cursor puede ser subtitulador de los otros controles deslizantes (por ejemplo, expansión de una ventana, esquina \...). La cuadrícula es permanente. + +--- +[documentation index](../README.md) > Macro Mouse Cross/es diff --git a/wiki/translations/es/Macro_PartsLibrary.md b/wiki/translations/es/Macro_PartsLibrary.md index 1c68a420ac..065ac0f1e8 100644 --- a/wiki/translations/es/Macro_PartsLibrary.md +++ b/wiki/translations/es/Macro_PartsLibrary.md @@ -1,5 +1,5 @@ # Macro PartsLibrary/es - {{Macro/es +{{Macro/es |Name=Parts Library |Name/es=Parts Library |Icon=FreeCAD Doc.png @@ -28,3 +28,6 @@ Esta macro, también incluida en la librería, hace aparecer un panel en el inte ToolBar Icon ![](images/FreeCAD_Doc.png ) [PartsLibrary.FCMacro](http://github.com/yorikvanhavre/FreeCAD-library/blob/master/PartsLibrary.FCMacro) + +--- +[documentation index](../README.md) > Macro PartsLibrary/es diff --git a/wiki/translations/es/Macro_Rectellipse.md b/wiki/translations/es/Macro_Rectellipse.md index 31fc0e2834..e92b129075 100644 --- a/wiki/translations/es/Macro_Rectellipse.md +++ b/wiki/translations/es/Macro_Rectellipse.md @@ -1,5 +1,5 @@ # Macro Rectellipse/es - {{Macro/es +{{Macro/es |Name=Rectellipse Macro |Icon=Macro_Rectellipse.png |Translate=Rectellipse Macro @@ -90,3 +90,6 @@ if __name__ == "__main__": ## Enlazar [Get the code from Github here!](https://github.com/FreeCAD/FreeCAD-macros/blob/master/ParametricObjectCreation/Rectellipse.FCMacro) + +--- +[documentation index](../README.md) > Macro Rectellipse/es diff --git a/wiki/translations/es/Macro_Remove_parametric_history.md b/wiki/translations/es/Macro_Remove_parametric_history.md index 01db04cab7..422679ee79 100644 --- a/wiki/translations/es/Macro_Remove_parametric_history.md +++ b/wiki/translations/es/Macro_Remove_parametric_history.md @@ -1,5 +1,5 @@ # Macro Remove parametric history/es - {{Macro/es +{{Macro/es |Name=Remove parametric history |Icon=Macro_Remove_parametric_history.png |Translate=Remove parametric history @@ -39,6 +39,5 @@ newObject.Shape = newShape }} - - - +--- +[documentation index](../README.md) > Macro Remove parametric history/es diff --git a/wiki/translations/es/Macro_Rotate_View.md b/wiki/translations/es/Macro_Rotate_View.md index 4199157e3c..1cbc86e642 100644 --- a/wiki/translations/es/Macro_Rotate_View.md +++ b/wiki/translations/es/Macro_Rotate_View.md @@ -1,7 +1,4 @@ # Macro Rotate View/es - - -
@@ -52,6 +49,5 @@ nrot = cam.orientation.getValue() * rot cam.orientation = nrot }} - - - +--- +[documentation index](../README.md) > Macro Rotate View/es diff --git a/wiki/translations/es/Macro_Solid_Sweep.md b/wiki/translations/es/Macro_Solid_Sweep.md index 10d13527d0..c37b0af5fc 100644 --- a/wiki/translations/es/Macro_Solid_Sweep.md +++ b/wiki/translations/es/Macro_Solid_Sweep.md @@ -1,5 +1,5 @@ # Macro Solid Sweep/es - {{Macro/es +{{Macro/es |Name=Solid Sweep |Icon=Macro_Solid_Sweep.png |Translate=Solid Sweep @@ -93,3 +93,6 @@ myObject.Shape = Sweep Gracias a [Wmayer](User:Wmayer.md) por su ayuda al escribir esta macro. Dos ejemplo de uso se pueden ver en [este hilo del foro](http://forum.freecadweb.org/viewtopic.php?f=8&t=1222&start=50#p11120), así como enlaces para descargar archivos FCStd. Utilizando una hélice como trayectoria, un sólido barrido se puede utilizar para crear un tornillo. + +--- +[documentation index](../README.md) > Macro Solid Sweep/es diff --git a/wiki/translations/es/Macro_SuperWire.md b/wiki/translations/es/Macro_SuperWire.md index a31b20da95..7c0ae346af 100644 --- a/wiki/translations/es/Macro_SuperWire.md +++ b/wiki/translations/es/Macro_SuperWire.md @@ -1,7 +1,4 @@ # Macro SuperWire/es - - - {{Macro/es |Name=SuperWire |Translate=SuperWire @@ -59,6 +56,5 @@ else: ``` - - - +--- +[documentation index](../README.md) > Macro SuperWire/es diff --git a/wiki/translations/es/Macro_Texture_Objects.md b/wiki/translations/es/Macro_Texture_Objects.md index 544e65082f..6d05835ae6 100644 --- a/wiki/translations/es/Macro_Texture_Objects.md +++ b/wiki/translations/es/Macro_Texture_Objects.md @@ -1,5 +1,5 @@ # Macro Texture Objects/es - {{Macro/es +{{Macro/es |Name=Texture Objects |Icon=Macro_Texture_Objects.png |Translate=Objetos de textura @@ -46,6 +46,5 @@ for obj in FreeCADGui.Selection.getSelection(): [Script to map texture with environement checked](https://forum.freecadweb.org/viewtopic.php?f=3&t=28795) - - - +--- +[documentation index](../README.md) > Macro Texture Objects/es diff --git a/wiki/translations/es/Macro_View_Rotation.md b/wiki/translations/es/Macro_View_Rotation.md index 4922b58784..7cfb02117e 100644 --- a/wiki/translations/es/Macro_View_Rotation.md +++ b/wiki/translations/es/Macro_View_Rotation.md @@ -1,5 +1,5 @@ # Macro View Rotation/es - {{Macro/es +{{Macro/es |Name=View Rotation |Icon=Macro_View_Rotation.png |Description=Esta macro proporciona un interfaz gráfico para girar la vista.
Download the [http://forum.freecadweb.org/download/file.php?id=453 Icon] of the macro.
@@ -290,3 +290,6 @@ al final de la función \'initUI\'. Los dos primeros argumentos (derecha-300, 0) ## Página de discusión [View+Rotation](http://forum.freecadweb.org/viewtopic.php?f=3&t=1784&hilit=View+Rotation#p12012) + +--- +[documentation index](../README.md) > Macro View Rotation/es diff --git a/wiki/translations/es/Macros.md b/wiki/translations/es/Macros.md index 01559073d8..922ad6ebdc 100644 --- a/wiki/translations/es/Macros.md +++ b/wiki/translations/es/Macros.md @@ -1,7 +1,4 @@ # Macros/es - - - {{TOCright}} ## Introducción @@ -110,3 +107,6 @@ Puede instalar manualmente las extensiones, sin embargo, es mucho más sencillo }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/es diff --git a/wiki/translations/es/Main_Page.md b/wiki/translations/es/Main_Page.md index a5fb4cf32e..8b2ae533a6 100644 --- a/wiki/translations/es/Main_Page.md +++ b/wiki/translations/es/Main_Page.md @@ -1,6 +1,4 @@ # Main Page/es - - ## Introducción Este es la documentación wiki de [FreeCAD](http://www.freecadweb.org). Hay varias maneras de utilizar esta documentación: explorando los centros, siguiendo el manual, o utilizando las entradas del menú de ayuda desde FreeCAD. Este es un trabajo en progreso, escrito por la comunidad de usuarios y desarrolladores de FreeCAD. ¡Si encuentras información errónea o que falta, por favor [ayuda FreeCAD](Special:MyLanguage/help_FreeCAD.md)! @@ -67,3 +65,6 @@ Comprueba el [ Mapa de desarrollo](Development_roadmap/es.md) para ver noticias [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/es diff --git a/wiki/translations/es/Manipulator.md b/wiki/translations/es/Manipulator.md index 6a58f9509d..ed1ed681c4 100644 --- a/wiki/translations/es/Manipulator.md +++ b/wiki/translations/es/Manipulator.md @@ -1,5 +1,5 @@ # Manipulator/es - } +}
@@ -17,3 +17,6 @@ Un **manipulador** es una utilidad que puede utilizarse para modificar la aparie [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Manipulator/es diff --git a/wiki/translations/es/Manual.md b/wiki/translations/es/Manual.md index 19383b58ae..b3110e5925 100644 --- a/wiki/translations/es/Manual.md +++ b/wiki/translations/es/Manual.md @@ -1,2 +1,5 @@ # Manual/es 1. Redirect:[Manual:Introduction/es](Manual:Introduction/es.md) + +--- +[documentation index](../README.md) > Manual/es diff --git a/wiki/translations/es/Manual:A_gentle_introduction.md b/wiki/translations/es/Manual:A_gentle_introduction.md index 8b0d95b53a..b6069947e8 100644 --- a/wiki/translations/es/Manual:A_gentle_introduction.md +++ b/wiki/translations/es/Manual:A_gentle_introduction.md @@ -1,7 +1,4 @@ # Manual:A gentle introduction/es - - -
@@ -128,3 +125,6 @@ box.Placement = otherpla }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:A gentle introduction/es diff --git a/wiki/translations/es/Manual:BIM_modeling.md b/wiki/translations/es/Manual:BIM_modeling.md index 919cd9ac78..4da9d58c74 100644 --- a/wiki/translations/es/Manual:BIM_modeling.md +++ b/wiki/translations/es/Manual:BIM_modeling.md @@ -1,5 +1,5 @@ # Manual:BIM modeling/es - } +}
@@ -279,3 +279,6 @@ Our page is now ready, and we can export it to SVG or DXF formats, or print it. }} [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Manual:BIM modeling/es diff --git a/wiki/translations/es/Manual:Creating_and_manipulating_geometry.md b/wiki/translations/es/Manual:Creating_and_manipulating_geometry.md index 3bcfd8e8e5..d45a504aeb 100644 --- a/wiki/translations/es/Manual:Creating_and_manipulating_geometry.md +++ b/wiki/translations/es/Manual:Creating_and_manipulating_geometry.md @@ -1,7 +1,4 @@ # Manual:Creating and manipulating geometry/es - - - {{Manual:TOC/es}} En los capítulos anteriores, hemos aprendido sobre los diferentes ambientes de trabajo de FreeCAD, y cómo cada uno de ellos implementa sus propias herramientas y tipos de geometría. El mismo concepto se aplica cuando se trabaja desde el código de Python. @@ -231,3 +228,6 @@ Todo lo anterior, y mucho más, se explica en detalle en la página [Guionizaci }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating and manipulating geometry/es diff --git a/wiki/translations/es/Manual:Generating_2D_drawings.md b/wiki/translations/es/Manual:Generating_2D_drawings.md index 7a74668741..672f552426 100644 --- a/wiki/translations/es/Manual:Generating_2D_drawings.md +++ b/wiki/translations/es/Manual:Generating_2D_drawings.md @@ -1,10 +1,4 @@ # Manual:Generating 2D drawings/es - - - - - - {{Manual:TOC/es}} When your model cannot be printed or milled directly by a machine, for example it is too big (a building) or it requires manual assembly after the pieces are ready, you will usually need to explain to another person how to do it. In technical fields (engineering, architecture, etc), this is usually done with drawings. The drawings are handed over to the person responsible for assembling the final product and will explain how to do it. @@ -108,3 +102,6 @@ Our page can now be exported to SVG for further work in graphical applications l [Category:Tutorials/es](Category:Tutorials/es.md) + +--- +[documentation index](../README.md) > Manual:Generating 2D drawings/es diff --git a/wiki/translations/es/Manual:Import_and_export_to_other_filetypes.md b/wiki/translations/es/Manual:Import_and_export_to_other_filetypes.md index 9d28712492..6e05d1e27b 100644 --- a/wiki/translations/es/Manual:Import_and_export_to_other_filetypes.md +++ b/wiki/translations/es/Manual:Import_and_export_to_other_filetypes.md @@ -1,7 +1,4 @@ # Manual:Import and export to other filetypes/es - - - {{Manual:TOC/es}} FreeCAD puede importar y exportar a muchos tipos de archivos. Aquí hay una lista de los más importantes con una breve descripción de las características disponibles @@ -49,3 +46,6 @@ Algunos de estos formatos de archivo tienen opciones. Estas se pueden configurar [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Import and export to other filetypes/es diff --git a/wiki/translations/es/Manual:Installing.md b/wiki/translations/es/Manual:Installing.md index 63d1884013..e58ddb4e50 100644 --- a/wiki/translations/es/Manual:Installing.md +++ b/wiki/translations/es/Manual:Installing.md @@ -1,10 +1,4 @@ # Manual:Installing/es - - - - - - {{Manual:TOC/es}} FreeCAD utiliza la licencia [LGPL](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License); puedes descargar, instalar, redistribuir y utilizar FreeCAD como quieras, independientemente del tipo de trabajo que vayas a realizar con él (comercial o no comercial). No estás obligado a ninguna cláusula o restricción, y los archivos que produzcas con él son totalmente tuyos. Lo único que la licencia prohíbe, en realidad, es afirmar que has programado FreeCAD tú mismo. @@ -101,3 +95,6 @@ Si estás usando el sistema operativo Ubuntu, algunos de los complementos anteri [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Installing/es diff --git a/wiki/translations/es/Manual:Introduction.md b/wiki/translations/es/Manual:Introduction.md index 70bdf9b94d..877f07788c 100644 --- a/wiki/translations/es/Manual:Introduction.md +++ b/wiki/translations/es/Manual:Introduction.md @@ -1,10 +1,4 @@ # Manual:Introduction/es - - - - - - {{Manual:TOC/es}} ![150\|center](images/Crystal_Clear_manual.png ) @@ -19,6 +13,5 @@ Este manual está siendo escrito para la versión estable más reciente de FreeC El contenido de este manual se publica bajo la licencia [Creative Commons 4.0](http://creativecommons.org/licenses/by/4.0/), y puede ser utilizado, descargado, copiado y modificado libremente. Los archivos fuente de este manual están alojados en esta [wiki](Página_principal.md), y en la cuenta original [github](https://github.com/yorikvanhavre/FreeCAD-manual) utilizada para escribir la primera versión de este libro. Hay versiones HTML, PDF, MOBI y EPUB más fáciles de leer en [GitBook](https://www.gitbook.com/book/yorikvanhavre/a-freecad-manual/details). Se está preparando una versión impresa. - - - +--- +[documentation index](../README.md) > Manual:Introduction/es diff --git a/wiki/translations/es/Manual:Navigating_in_the_3D_view.md b/wiki/translations/es/Manual:Navigating_in_the_3D_view.md index 4d7abfa8e0..4cfab5ece0 100644 --- a/wiki/translations/es/Manual:Navigating_in_the_3D_view.md +++ b/wiki/translations/es/Manual:Navigating_in_the_3D_view.md @@ -1,10 +1,4 @@ # Manual:Navigating in the 3D view/es - - - - - - {{Manual:TOC/es}} ### Una palabra sobre el espacio 3D @@ -102,6 +96,5 @@ You can also use the Selection View to select objects by searching for a particu - [The FreeCAD navigation modes](Mouse_navigation.md) - [Navigation Cluster](Navigation_Cube.md) - - - +--- +[documentation index](../README.md) > Manual:Navigating in the 3D view/es diff --git a/wiki/translations/es/Manual:Parametric_objects.md b/wiki/translations/es/Manual:Parametric_objects.md index ea1be3b25d..ae775869b9 100644 --- a/wiki/translations/es/Manual:Parametric_objects.md +++ b/wiki/translations/es/Manual:Parametric_objects.md @@ -1,10 +1,4 @@ # Manual:Parametric objects/es - - - - - - {{Manual:TOC/es}} FreeCAD está diseñado para el modelado paramétrico. Esto significa que la geometría que creas, en lugar de ser libremente esculpible, es producida por reglas y parámetros. Por ejemplo, un cilindro puede ser producido a partir de un radio y una altura. Con estos dos parámetros, el programa tiene suficiente información para construir el cilindro. @@ -41,3 +35,6 @@ Por último, cabe destacar que los objetos paramétricos personalizados son [fá [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Parametric objects/es diff --git a/wiki/translations/es/Manual:Preparing_models_for_3D_printing.md b/wiki/translations/es/Manual:Preparing_models_for_3D_printing.md index cd356126cf..d3747c80a7 100644 --- a/wiki/translations/es/Manual:Preparing_models_for_3D_printing.md +++ b/wiki/translations/es/Manual:Preparing_models_for_3D_printing.md @@ -1,10 +1,4 @@ # Manual:Preparing models for 3D printing/es - - - - - - {{Manual:TOC/es}} Uno de los principales usos de FreeCAD es producir objetos del mundo real. Estos pueden ser diseñados en FreeCAD, y luego hacerse realidad de diferentes maneras, como comunicándolos a otras personas que luego los construirán, o, cada vez más frecuentemente, enviándolos directamente a una [impresora 3D](https://en.wikipedia.org/wiki/3D_printing) o a una [fresadora CNC](https://en.wikipedia.org/wiki/Milling_%28machining%29). Este capítulo le mostrará cómo preparar sus modelos para enviarlos a estas máquinas. @@ -141,3 +135,6 @@ Hay muchas aplicaciones disponibles para simular el corte real, una de ellas que [Category:Path](Category:Path.md) [Category:Mesh](Category:Mesh.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Path](Category:Path.md) > Manual:Preparing models for 3D printing/es diff --git a/wiki/translations/es/Manual:Summary.md b/wiki/translations/es/Manual:Summary.md index 1e4861e5b7..2a69aa169e 100644 --- a/wiki/translations/es/Manual:Summary.md +++ b/wiki/translations/es/Manual:Summary.md @@ -57,3 +57,6 @@ Hay otra tabla de contenidos para el sistema [FreeCAD **Ayuda en línea**](Onlin [Category:Manual](Category:Manual.md) + +--- +[documentation index](../README.md) > [Manual](Category:Manual.md) > Manual:Summary/es diff --git a/wiki/translations/es/Manual:The_Community.md b/wiki/translations/es/Manual:The_Community.md index de9fd1a0f2..e4013ec4f3 100644 --- a/wiki/translations/es/Manual:The_Community.md +++ b/wiki/translations/es/Manual:The_Community.md @@ -1,7 +1,4 @@ # Manual:The Community/es - - - {{Manual:TOC/es}} Ningún manual que trate sobre software libre y de código abierto estaría completo sin un capítulo sobre la comunidad. Como la gran mayoría de los proyectos de software libre y de código abierto, FreeCAD está hecho por una comunidad, y mantenido por esa comunidad. En lugar de la empresa opaca, desconocida, impersonal e inaccesible que se encuentra más que a menudo detrás del software comercial, las comunidades de software libre y de código abierto son espacios abiertos, donde usted como usuario es bienvenido, y donde puede obtener respuestas muy rápidamente, e incluso tener su opinión en el desarrollo del propio software. También eres más que bienvenido a ayudar, hay tareas para todos. @@ -38,6 +35,5 @@ Con suerte, hemos conseguido darte una buena muestra de FreeCAD en este manual, - [Traduciendo FreeCAD en crowdin](https://crowdin.com/project/freecad) - [El rastreador de errores de FreeCAD](http://www.freecadweb.org/tracker) - - - +--- +[documentation index](../README.md) > Manual:The Community/es diff --git a/wiki/translations/es/Manual:The_FreeCAD_Interface.md b/wiki/translations/es/Manual:The_FreeCAD_Interface.md index 3572aab07f..f959a5b8b5 100644 --- a/wiki/translations/es/Manual:The_FreeCAD_Interface.md +++ b/wiki/translations/es/Manual:The_FreeCAD_Interface.md @@ -1,7 +1,4 @@ # Manual:The FreeCAD Interface/es - - -
@@ -95,3 +92,5 @@ Estas opciones de personalización avanzada están disponibles en el **Herramien
+--- +[documentation index](../README.md) > Manual:The FreeCAD Interface/es diff --git a/wiki/translations/es/Manual:The_FreeCAD_document.md b/wiki/translations/es/Manual:The_FreeCAD_document.md index 226118e99b..3d82bb686c 100644 --- a/wiki/translations/es/Manual:The_FreeCAD_document.md +++ b/wiki/translations/es/Manual:The_FreeCAD_document.md @@ -1,10 +1,4 @@ # Manual:The FreeCAD document/es - - - - - - {{Manual:TOC/es}} Un documento de FreeCAD contiene todos los objetos de tu escena. Puede contener grupos y objetos hechos con cualquier ambiente de trabajo. Por lo tanto, puedes cambiar entre ambientes de trabajo, y seguir trabajando en el mismo documento y/o objetos dentro de ese documento. El documento es lo que se guarda en el disco cuando guardas tu trabajo. También puedes abrir varios documentos al mismo tiempo en FreeCAD, y abrir varias vistas del mismo documento. @@ -26,6 +20,5 @@ Los documentos de LibreCAD se guardan con la extensión .FcStd, que es un format - [El documento FreeCAD](Document_structure/es.md) - [Formato archivo FCStd](File_Format_FCStd/es.md) - - - +--- +[documentation index](../README.md) > Manual:The FreeCAD document/es diff --git a/wiki/translations/es/Manual:What_is_FreeCAD.md b/wiki/translations/es/Manual:What_is_FreeCAD.md index 4afebc6d1b..808c8499ec 100644 --- a/wiki/translations/es/Manual:What_is_FreeCAD.md +++ b/wiki/translations/es/Manual:What_is_FreeCAD.md @@ -1,7 +1,4 @@ # Manual:What is FreeCAD/es - - - {{Manual:TOC/es}} ![](images/Freecad016_screenshot1.jpg ) @@ -22,6 +19,5 @@ El sitio web oficial de FreeCAD está en - [Lista de características](Feature_list/es.md) - [Capturas de pantalla y casos de usuarios](http://forum.freecadweb.org/viewforum.php?f=24) - - - +--- +[documentation index](../README.md) > Manual:What is FreeCAD/es diff --git a/wiki/translations/es/Material.md b/wiki/translations/es/Material.md index 71a16421b7..a6b0387412 100644 --- a/wiki/translations/es/Material.md +++ b/wiki/translations/es/Material.md @@ -1,5 +1,5 @@ # Material/es - } +} ## Overview @@ -170,3 +170,6 @@ This section defines material-properties which are related to the visual appeara {{FEM Tools navi}} [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Roadmap](Category:Roadmap.md) [Category:BIM](Category:BIM.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Material/es diff --git a/wiki/translations/es/Material_data_model.md b/wiki/translations/es/Material_data_model.md index 5182a75be5..ae875a6055 100644 --- a/wiki/translations/es/Material_data_model.md +++ b/wiki/translations/es/Material_data_model.md @@ -1,7 +1,4 @@ # Material data model/es - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -252,3 +249,6 @@ CSI/MasterFormat code (as there are several systems used in the industry which g [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Material](Material_Workbench.md) > Material data model/es diff --git a/wiki/translations/es/Matrix_API.md b/wiki/translations/es/Matrix_API.md index b57795a8f9..8242f64a22 100644 --- a/wiki/translations/es/Matrix_API.md +++ b/wiki/translations/es/Matrix_API.md @@ -1,5 +1,5 @@ # Matrix API/es - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Las matrices 4x4 se utilizan en todas partes en FreeCAD y pueden crearse de una de las formas siguientes: ```python @@ -96,3 +96,6 @@ print m.A21() # print m[1][0] [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Matrix API/es diff --git a/wiki/translations/es/Mesh_API.md b/wiki/translations/es/Mesh_API.md index b8a465f9de..f18ba3adf3 100644 --- a/wiki/translations/es/Mesh_API.md +++ b/wiki/translations/es/Mesh_API.md @@ -1,7 +1,4 @@ # Mesh API/es - - - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** @@ -247,3 +244,6 @@ Los objetos malla pueden ser manipulados añadiendo facetas, eliminando facetas, [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh API/es diff --git a/wiki/translations/es/Mesh_Module.md b/wiki/translations/es/Mesh_Module.md index fe53acf177..e4996a957d 100644 --- a/wiki/translations/es/Mesh_Module.md +++ b/wiki/translations/es/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/es 1. REDIRECT [Mesh Workbench/es](Mesh_Workbench/es.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/es diff --git a/wiki/translations/es/Mesh_Scripting.md b/wiki/translations/es/Mesh_Scripting.md index b0501fbe7f..f9c00236f8 100644 --- a/wiki/translations/es/Mesh_Scripting.md +++ b/wiki/translations/es/Mesh_Scripting.md @@ -1,7 +1,4 @@ # Mesh Scripting/es - - - {{TOCright}} ## Introducción @@ -99,3 +96,6 @@ Una fuente extensa, aunque difícil de usar, de scripts relacionados con la mall Ver también: [Interfaz de programación de aplicaciones Malla](Mesh_API.md). {{Top}} {{Powerdocnavi}} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scripting/es diff --git a/wiki/translations/es/Mesh_Workbench.md b/wiki/translations/es/Mesh_Workbench.md index 77864e21ef..cf07ab59fc 100644 --- a/wiki/translations/es/Mesh_Workbench.md +++ b/wiki/translations/es/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/es - - - - - -El icono del Ambiente de trabajo Mesh +# El icono del Ambiente de trabajo Mesh Mesh Workbench/es {{TOCright}} @@ -111,3 +105,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/es diff --git a/wiki/translations/es/Mesh_to_Part.md b/wiki/translations/es/Mesh_to_Part.md index a9cfe98556..a10eb20c93 100644 --- a/wiki/translations/es/Mesh_to_Part.md +++ b/wiki/translations/es/Mesh_to_Part.md @@ -1,7 +1,4 @@ # Mesh to Part/es - - - {{TOCright}} @@ -152,3 +149,6 @@ Part.show(solid) }} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh to Part/es diff --git a/wiki/translations/es/Migrating_to_FreeCAD_from_Fusion360.md b/wiki/translations/es/Migrating_to_FreeCAD_from_Fusion360.md index 0e33494496..21237ba7b3 100644 --- a/wiki/translations/es/Migrating_to_FreeCAD_from_Fusion360.md +++ b/wiki/translations/es/Migrating_to_FreeCAD_from_Fusion360.md @@ -1,5 +1,5 @@ # Migrating to FreeCAD from Fusion360/es - {{TOCright}} +{{TOCright}} ## Fondo @@ -56,5 +56,5 @@ A esta página wiki le falta algo. Por favor, solicite [permisos wiki](https://f - [Migración a FreeCAD desde OnShape](Migrating_to_FreeCAD_from_OnShape/es.md) - - +--- +[documentation index](../README.md) > Migrating to FreeCAD from Fusion360/es diff --git a/wiki/translations/es/Migrating_to_FreeCAD_from_OnShape.md b/wiki/translations/es/Migrating_to_FreeCAD_from_OnShape.md index 871aff2179..2adb5da0ed 100644 --- a/wiki/translations/es/Migrating_to_FreeCAD_from_OnShape.md +++ b/wiki/translations/es/Migrating_to_FreeCAD_from_OnShape.md @@ -1,5 +1,5 @@ # Migrating to FreeCAD from OnShape/es - {{TOCright}} +{{TOCright}} ## Fondo @@ -11,5 +11,5 @@ Esta página está dirigida a los usuarios interesados en trabajar con FreeCAD q - [Migrando a FreeCAD desde Fusion360](Migrating_to_FreeCAD_from_Fusion360/es.md) - Joko Engineering [video](https://youtu.be/oH8GOR8Jx88) comparación lado a lado de FreeCAD con OnShape - - +--- +[documentation index](../README.md) > Migrating to FreeCAD from OnShape/es diff --git a/wiki/translations/es/Module_Creation.md b/wiki/translations/es/Module_Creation.md index 5594b13726..22c922e73e 100644 --- a/wiki/translations/es/Module_Creation.md +++ b/wiki/translations/es/Module_Creation.md @@ -1,2 +1,5 @@ # Module Creation/es 1. REDIRECT [Workbench\_creation/es](Workbench_creation/es.md) + +--- +[documentation index](../README.md) > Module Creation/es diff --git a/wiki/translations/es/Mouse_Model.md b/wiki/translations/es/Mouse_Model.md index 59f99d5a64..71353a35f8 100644 --- a/wiki/translations/es/Mouse_Model.md +++ b/wiki/translations/es/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/es 1. REDIRECT [Mouse\_navigation/es](Mouse_navigation/es.md) + +--- +[documentation index](../README.md) > Mouse Model/es diff --git a/wiki/translations/es/Mouse_navigation.md b/wiki/translations/es/Mouse_navigation.md index 9aff685b12..a0cf0a46e0 100644 --- a/wiki/translations/es/Mouse_navigation.md +++ b/wiki/translations/es/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/es - - - - - - {{TOCright}} ## Overview @@ -345,8 +339,5 @@ Recientemente hemos recibido reportes [en el foro](http://forum.freecadweb.org/v The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mouse_navigation_option_to_FreeCAD.md) orients developers who want to develop a custom mouse navigation option. Familiarity with the C++ syntax is required. - - - - - +--- +[documentation index](../README.md) > Mouse navigation/es diff --git a/wiki/translations/es/Naming_project.md b/wiki/translations/es/Naming_project.md index 74a1e4b1c3..c632b7edf5 100644 --- a/wiki/translations/es/Naming_project.md +++ b/wiki/translations/es/Naming_project.md @@ -1,7 +1,4 @@ # Naming project/es - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -108,3 +105,6 @@ Ver [aquí](https://github.com/ezzieyguywuf/freecadTopoTesting/blob/master/TNami [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Naming project/es diff --git a/wiki/translations/es/Object_API.md b/wiki/translations/es/Object_API.md index 923d8fcad4..ff4640f32d 100644 --- a/wiki/translations/es/Object_API.md +++ b/wiki/translations/es/Object_API.md @@ -1,5 +1,5 @@ # Object API/es - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Siendo paramétricos, los objetos del documento en FreeCAD pueden tener diversas propiedades adicionales, pero éstas son las básicas, presentes en cada objeto del documento de FreeCAD. Los objetos se pueden recuperar fácilmente por su nombre. Por ejemplo: ```python @@ -59,3 +59,6 @@ print myObj.PropertiesList [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Object API/es diff --git a/wiki/translations/es/Object_name.md b/wiki/translations/es/Object_name.md index db4c16a62c..c85c995752 100644 --- a/wiki/translations/es/Object_name.md +++ b/wiki/translations/es/Object_name.md @@ -1,6 +1,4 @@ # Object name/es - - ## Introducción @@ -118,5 +116,5 @@ obj3 = App.ActiveDocument.getObjectsByLabel("Some special name for this cube__00 Given that the `Label` is in general not unique, the `getObjectsByLabel` method returns a list with all objects found with that `Label`. However, if the `Label` is unique in the document then the first element in that list should be the desired object. - - +--- +[documentation index](../README.md) > Object name/es diff --git a/wiki/translations/es/Offsite_tutorials.md b/wiki/translations/es/Offsite_tutorials.md index 5ec506de4d..337562712c 100644 --- a/wiki/translations/es/Offsite_tutorials.md +++ b/wiki/translations/es/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/es - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** Esta página muestra un listado de tutoriales de FreeCAD encontrados en otras páginas Web. @@ -21,4 +21,7 @@ Esta página muestra un listado de tutoriales de FreeCAD encontrados en otras p {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/es diff --git a/wiki/translations/es/Online_Help_Startpage.md b/wiki/translations/es/Online_Help_Startpage.md index 4be45e6672..757ff6e77c 100644 --- a/wiki/translations/es/Online_Help_Startpage.md +++ b/wiki/translations/es/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/es - - ![150](images/Crystal_Clear_app_tutorials.png ) ## Bienvenido a la ayuda en línea de FreeCAD @@ -22,3 +20,6 @@ Como habrás experimentado en ocasiones, ¡programadores son realmente malos esc [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/es diff --git a/wiki/translations/es/Online_Help_Toc.md b/wiki/translations/es/Online_Help_Toc.md index e290a50db4..6e5756b717 100644 --- a/wiki/translations/es/Online_Help_Toc.md +++ b/wiki/translations/es/Online_Help_Toc.md @@ -1,6 +1,4 @@ # Online Help Toc/es - - Esta es la tabla de contenidos usada para construcción automática de el sistema de \'\'\'ayuda en linea \'\'\' en FreeCAD. Una versión imprimible de este manual es tambien disponible en [paginas liberadas](https://github.com/FreeCAD/FreeCAD/releases). Si tienes alguna pregunta o necesitas ayuda con FreeCAD por favor consulta la [página de ayuda](Help/es.md) incluyendo los foros y grupos de chat. Alli esta otra tabla de contenidos para el [Manual de FreeCAD](Manual:Introduction.md). @@ -120,3 +118,6 @@ Alli esta otra tabla de contenidos para el [Manual de FreeCAD](Manual:Introducti [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/es diff --git a/wiki/translations/es/OpenCASCADE.md b/wiki/translations/es/OpenCASCADE.md index e25399e0bf..cc84abbc7b 100644 --- a/wiki/translations/es/OpenCASCADE.md +++ b/wiki/translations/es/OpenCASCADE.md @@ -1,7 +1,4 @@ # OpenCASCADE/es - - - {{TOCright}} ## Descripción @@ -88,3 +85,6 @@ Así, a partir de las formas se pueden construir piezas muy complejas o, al rev }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > OpenCASCADE/es diff --git a/wiki/translations/es/OpenSCAD_AddOpenSCADElement.md b/wiki/translations/es/OpenSCAD_AddOpenSCADElement.md index 1273e44c27..c3c607c70d 100644 --- a/wiki/translations/es/OpenSCAD_AddOpenSCADElement.md +++ b/wiki/translations/es/OpenSCAD_AddOpenSCADElement.md @@ -1,3 +1,4 @@ +# OpenSCAD AddOpenSCADElement/es --- - GuiCommand:/es Name:OpenSCAD AddOpenSCADElement Name/es:Añadir un elemento OpenSCAD Workbenches:[[OpenSCAD_Workbench/es OpenSCAD]]|MenuLocation:OpenSCAD -> Añadir un elemento OpenSCAD--- @@ -62,4 +63,7 @@ Starting from (v0.14) FreeCAD will search for the OpenSCAD execu {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD AddOpenSCADElement/es diff --git a/wiki/translations/es/OpenSCAD_CSG.md b/wiki/translations/es/OpenSCAD_CSG.md index 05a7dab0d8..3f59063091 100644 --- a/wiki/translations/es/OpenSCAD_CSG.md +++ b/wiki/translations/es/OpenSCAD_CSG.md @@ -1,5 +1,5 @@ # OpenSCAD CSG/es - {{TOCright}} +{{TOCright}} ## Importar @@ -40,3 +40,6 @@ Todo objeto derivado de Part::Feature que aún no es soportado será mallado y e {{OpenSCAD Tools navi}} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD CSG/es diff --git a/wiki/translations/es/OpenSCAD_ColorCodeShape.md b/wiki/translations/es/OpenSCAD_ColorCodeShape.md index 8049d0d8e5..8ee471094e 100644 --- a/wiki/translations/es/OpenSCAD_ColorCodeShape.md +++ b/wiki/translations/es/OpenSCAD_ColorCodeShape.md @@ -1,3 +1,4 @@ +# OpenSCAD ColorCodeShape/es --- - GuiCommand:/es Name:OpenSCAD ColorCodeShape Name/es:OpenSCAD ColorCodeShape‏‎ MenuLocation:OpenSCAD → ColorCodeShape‏‎ |Workbenches:[[OpenSCAD_Workbench/es OpenSCAD]]|Shortcut: SeeAlso:--- @@ -24,4 +25,7 @@ {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ColorCodeShape/es diff --git a/wiki/translations/es/OpenSCAD_Edgestofaces.md b/wiki/translations/es/OpenSCAD_Edgestofaces.md index 6efeec8d24..b33b604045 100644 --- a/wiki/translations/es/OpenSCAD_Edgestofaces.md +++ b/wiki/translations/es/OpenSCAD_Edgestofaces.md @@ -1,3 +1,4 @@ +# OpenSCAD Edgestofaces/es --- - GuiCommand:/es Name:OpenSCAD Edgestofaces Name/es:OpenSCAD Edgestofaces MenuLocation:OpenSCAD → EdgesToFaces‏‎ |Workbenches:[[OpenSCAD_Workbench/es OpenSCAD]]|Shortcut: SeeAlso:--- @@ -25,4 +26,7 @@ See also Draft\_Upgrade La pantalla de preferencias de OpenScad se encuentra en la ventana de Preferencias (Edición de Menú → Preferencias → OpenSCAD). @@ -29,3 +26,6 @@ There is only one tab: General settings. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Preferences/es diff --git a/wiki/translations/es/OpenSCAD_RefineShapeFeature.md b/wiki/translations/es/OpenSCAD_RefineShapeFeature.md index 34128fd3f9..8dfffc4721 100644 --- a/wiki/translations/es/OpenSCAD_RefineShapeFeature.md +++ b/wiki/translations/es/OpenSCAD_RefineShapeFeature.md @@ -1,3 +1,4 @@ +# OpenSCAD RefineShapeFeature/es --- - GuiCommand:/es Name:OpenSCAD RefineShapeFeature Name/es:OpenSCAD RefineShapeFeature MenuLocation:OpenSCAD → Refine Shape Feature Workbenches:[[OpenSCAD_Workbench/es OpenSCAD]]|SeeAlso:..--- @@ -35,4 +36,7 @@ Cleans unnecessary lines. After a Boolean operation some lines defining the prev {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD RefineShapeFeature/es diff --git a/wiki/translations/es/OpenSCAD_RemoveSubtree.md b/wiki/translations/es/OpenSCAD_RemoveSubtree.md index 90375ba8eb..c6b62234c9 100644 --- a/wiki/translations/es/OpenSCAD_RemoveSubtree.md +++ b/wiki/translations/es/OpenSCAD_RemoveSubtree.md @@ -1,3 +1,4 @@ +# OpenSCAD RemoveSubtree/es --- - GuiCommand:/es Name:OpenSCAD RemoveSubtree Name/es:OpenSCAD RemoveSubtree MenuLocation:OpenSCAD → RemoveSubtree‏‎ |Workbenches:[[OpenSCAD_Workbench/es OpenSCAD]]|Shortcut: SeeAlso:--- @@ -23,4 +24,7 @@ Removes the selected objects and all children that are not referenced from other {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD RemoveSubtree/es diff --git a/wiki/translations/es/OpenSCAD_ReplaceObject.md b/wiki/translations/es/OpenSCAD_ReplaceObject.md index d04631eaed..accecece71 100644 --- a/wiki/translations/es/OpenSCAD_ReplaceObject.md +++ b/wiki/translations/es/OpenSCAD_ReplaceObject.md @@ -1,3 +1,4 @@ +# OpenSCAD ReplaceObject/es --- - GuiCommand:/es Name:OpenSCAD ReplaceObject Name/es:OpenSCAD ReplaceObject MenuLocation:OpenSCAD → ReplaceObject‏‎ |Workbenches:[[OpenSCAD_Workbench/es OpenSCAD]]|Shortcut: SeeAlso:--- @@ -25,4 +26,7 @@ You can use this feature for example to substitute a part inside a fusion/cut/co {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ReplaceObject/es diff --git a/wiki/translations/es/OpenSCAD_Workbench.md b/wiki/translations/es/OpenSCAD_Workbench.md index 306353a466..5bac5c25c2 100644 --- a/wiki/translations/es/OpenSCAD_Workbench.md +++ b/wiki/translations/es/OpenSCAD_Workbench.md @@ -1,7 +1,4 @@ # OpenSCAD Workbench/es - - -
@@ -113,3 +110,6 @@ Si FreeCAD se cuelga importando CSG, es muy recomendable activar *automáticamen }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/es diff --git a/wiki/translations/es/PCB_Workbench.md b/wiki/translations/es/PCB_Workbench.md index 3d3e13ade7..a860416174 100644 --- a/wiki/translations/es/PCB_Workbench.md +++ b/wiki/translations/es/PCB_Workbench.md @@ -1,6 +1,4 @@ # PCB Workbench/es - - ## Introducción @@ -111,3 +109,6 @@ Seguridad → Editar → Usuarios y marque todas las casillas de verificación e [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > PCB Workbench/es diff --git a/wiki/translations/es/PDF.md b/wiki/translations/es/PDF.md index d26033facc..e3f25ca2e4 100644 --- a/wiki/translations/es/PDF.md +++ b/wiki/translations/es/PDF.md @@ -1,7 +1,4 @@ # PDF/es - - - {{TOCright}} ## Descripción @@ -30,3 +27,6 @@ The option to export to PDF is available in the **File → [Export PDF](Std_Expo [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > PDF/es diff --git a/wiki/translations/es/Packaging.md b/wiki/translations/es/Packaging.md index 0cd6298595..16dda1d9bc 100644 --- a/wiki/translations/es/Packaging.md +++ b/wiki/translations/es/Packaging.md @@ -1,6 +1,4 @@ # Packaging/es - - Esta página recoge la información sobre el empaquetado de FreeCAD en diferentes plataformas. - [Linux Empaquetado](Linux_packaging/es.md). Información sobre AplicaciónImágenes, paquetes Debian, inestables y diarios, y otros. @@ -11,3 +9,6 @@ Esta página recoge la información sobre el empaquetado de FreeCAD en diferente [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Packaging/es diff --git a/wiki/translations/es/PartDesign_AdditiveBox.md b/wiki/translations/es/PartDesign_AdditiveBox.md index 42e40e9004..efea593544 100644 --- a/wiki/translations/es/PartDesign_AdditiveBox.md +++ b/wiki/translations/es/PartDesign_AdditiveBox.md @@ -8,6 +8,8 @@ SeeAlso:[DiseñoPiezas Primitiva aditiva](PartDesign_CompPrimitiveAdditive/es.md) --- +# PartDesign AdditiveBox/es + ## Descripción Inserta un cubo primitivo en el Cuerpo activo como primera característica, o lo fusiona con la(s) característica(s) existente(s). @@ -58,4 +60,7 @@ Tras su creación, el Cubo puede ser editado de dos maneras: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveBox/es diff --git a/wiki/translations/es/PartDesign_AdditiveCone.md b/wiki/translations/es/PartDesign_AdditiveCone.md index a1636d0e54..51229fea5f 100644 --- a/wiki/translations/es/PartDesign_AdditiveCone.md +++ b/wiki/translations/es/PartDesign_AdditiveCone.md @@ -8,6 +8,8 @@ SeeAlso:[Crear una primitiva aditiva](PartDesign_CompPrimitiveAdditive/es.md), [Cono Sustractivo](PartDesign_SubtractiveCone/es.md) --- +# PartDesign AdditiveCone/es +
@@ -63,4 +65,7 @@ Tras su creación, el Cono puede ser editado de dos maneras: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCone/es diff --git a/wiki/translations/es/PartDesign_AdditiveCylinder.md b/wiki/translations/es/PartDesign_AdditiveCylinder.md index 6c7019ff3a..015ea580c2 100644 --- a/wiki/translations/es/PartDesign_AdditiveCylinder.md +++ b/wiki/translations/es/PartDesign_AdditiveCylinder.md @@ -8,6 +8,8 @@ SeeAlso:[Crear una primitiva aditiva](PartDesign_CompPrimitiveAdditive/es.md), [Cilindro sustractivo](PartDesign_SubtractiveCylinder/es.md) --- +# PartDesign AdditiveCylinder/es + ## Descripción Inserta un Cilindro primitivo en el Cuerpo activo como primera característica, o lo fusiona con la(s) característica(s) existente(s). @@ -64,4 +66,7 @@ Tras su creación, el Cilindro puede ser editado de dos maneras: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCylinder/es diff --git a/wiki/translations/es/PartDesign_AdditiveEllipsoid.md b/wiki/translations/es/PartDesign_AdditiveEllipsoid.md index 9e47407643..c28c1ebddc 100644 --- a/wiki/translations/es/PartDesign_AdditiveEllipsoid.md +++ b/wiki/translations/es/PartDesign_AdditiveEllipsoid.md @@ -8,6 +8,8 @@ SeeAlso:[DiseñoPiezas CompPrimitivaAditiva](PartDesign_CompPrimitiveAdditive/es.md) --- +# PartDesign AdditiveEllipsoid/es + ## Descripción Inserta un Elipsoide primitiva en el Cuerpo activo como primera característica, o lo fusiona con la(s) característica(s) existente(s). @@ -64,4 +66,7 @@ Tras su creación, el Elipsoide puede ser editado de dos maneras: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveEllipsoid/es diff --git a/wiki/translations/es/PartDesign_AdditiveHelix.md b/wiki/translations/es/PartDesign_AdditiveHelix.md index 66132ccbf8..c8ed0b52ea 100644 --- a/wiki/translations/es/PartDesign_AdditiveHelix.md +++ b/wiki/translations/es/PartDesign_AdditiveHelix.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign SubtractiveHelix](PartDesign_SubtractiveHelix.md) --- +# PartDesign AdditiveHelix/es + ## Descripción La herramienta **Hélice aditiva** crea un sólido realizando un barrido de un boceto seleccionado o de un objeto 2D a lo largo de la trayectoria de una hélice. @@ -128,4 +130,7 @@ Si está marcada esta casilla, la hélice se mostrará en la vista y se actualiz {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveHelix/es diff --git a/wiki/translations/es/PartDesign_AdditiveLoft.md b/wiki/translations/es/PartDesign_AdditiveLoft.md index 3cf98c7f07..a00f61a756 100644 --- a/wiki/translations/es/PartDesign_AdditiveLoft.md +++ b/wiki/translations/es/PartDesign_AdditiveLoft.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign AdditivePipe](PartDesign_AdditivePipe.md), [PartDesign SubtractiveLoft](PartDesign_SubtractiveLoft.md) --- +# PartDesign AdditiveLoft/es + ## Descripción **Additive Loft** creates a solid in the active Body by making a transition between two or more sketches (also referred to as cross-sections). If the Body already contains features, the additive loft will be merged to them. @@ -99,4 +101,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveLoft/es diff --git a/wiki/translations/es/PartDesign_AdditivePipe.md b/wiki/translations/es/PartDesign_AdditivePipe.md index 9b2ec6454a..a030a127ab 100644 --- a/wiki/translations/es/PartDesign_AdditivePipe.md +++ b/wiki/translations/es/PartDesign_AdditivePipe.md @@ -8,6 +8,8 @@ SeeAlso:[DiseñoPiezas Additivo Loft](PartDesign_AdditiveLoft/es.md), [DiseñoPiezas Tubo sustractivo](PartDesign_SubtractivePipe/es.md) --- +# PartDesign AdditivePipe/es +
@@ -118,4 +120,7 @@ To use more than one cross-section, start with the first cross-section sketch as {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePipe/es diff --git a/wiki/translations/es/PartDesign_AdditivePrism.md b/wiki/translations/es/PartDesign_AdditivePrism.md index 16436c1d5b..49324893e1 100644 --- a/wiki/translations/es/PartDesign_AdditivePrism.md +++ b/wiki/translations/es/PartDesign_AdditivePrism.md @@ -8,6 +8,8 @@ SeeAlso:[DiseñoPiezas Componer un primitiva aditiva](PartDesign_CompPrimitiveAdditive/es.md), [DiseñoPiezas Prisma Sustractivo](PartDesign_SubtractivePrism/es.md) --- +# PartDesign AdditivePrism/es + ## Descripción Inserta un prisma primitiva en el Cuerpo activo como primera característica, o lo fusiona con la(s) característica(s) existente(s). @@ -64,4 +66,7 @@ Tras su creación, el Prisma puede ser editado de dos maneras: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePrism/es diff --git a/wiki/translations/es/PartDesign_AdditiveSphere.md b/wiki/translations/es/PartDesign_AdditiveSphere.md index a99cf3b55a..83944a70af 100644 --- a/wiki/translations/es/PartDesign_AdditiveSphere.md +++ b/wiki/translations/es/PartDesign_AdditiveSphere.md @@ -8,6 +8,8 @@ SeeAlso:[DiseñoPiezas CompPrimitivaAditiva](PartDesign_CompPrimitiveAdditive/es.md) --- +# PartDesign AdditiveSphere/es + ## Descripción Inserta una Esfera primitiva en el Cuerpo activo como primera característica, o lo fusiona con la(s) característica(s) existente(s). @@ -60,4 +62,7 @@ Tras su creación, la Esfera puede ser editada de dos maneras: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveSphere/es diff --git a/wiki/translations/es/PartDesign_AdditiveTorus.md b/wiki/translations/es/PartDesign_AdditiveTorus.md index 9ce679deef..8dd62f9e34 100644 --- a/wiki/translations/es/PartDesign_AdditiveTorus.md +++ b/wiki/translations/es/PartDesign_AdditiveTorus.md @@ -8,6 +8,8 @@ SeeAlso:[Part Design Crear una Primitiva aditiva](PartDesign_CompPrimitiveAdditive/es.md) --- +# PartDesign AdditiveTorus/es + ## Descripción Inserta un toro primitivo en el Cuerpo activo como primera característica, o lo fusiona con la(s) característica(s) existente(s). @@ -62,4 +64,7 @@ Tras su creación, el Toro puede ser editado de dos maneras: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveTorus/es diff --git a/wiki/translations/es/PartDesign_AdditiveWedge.md b/wiki/translations/es/PartDesign_AdditiveWedge.md index fc5fa9c93d..b214cd02d0 100644 --- a/wiki/translations/es/PartDesign_AdditiveWedge.md +++ b/wiki/translations/es/PartDesign_AdditiveWedge.md @@ -8,6 +8,8 @@ SeeAlso:[Create an additive primitive](PartDesign_CompPrimitiveAdditive/es.md), [Subtractive Wedge](PartDesign_SubtractiveWedge.md) --- +# PartDesign AdditiveWedge/es +
@@ -65,4 +67,7 @@ Para crear una pirámide regular con un vértice en el lado superior, los valore {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveWedge/es diff --git a/wiki/translations/es/PartDesign_Bearingholder_Tutorial_I.md b/wiki/translations/es/PartDesign_Bearingholder_Tutorial_I.md index 73d581b580..16b5ef5856 100644 --- a/wiki/translations/es/PartDesign_Bearingholder_Tutorial_I.md +++ b/wiki/translations/es/PartDesign_Bearingholder_Tutorial_I.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial I/es - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -122,3 +118,6 @@ We have modelled the bearing holder top with the dimensions it will have after c [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial I/es diff --git a/wiki/translations/es/PartDesign_Bearingholder_Tutorial_II.md b/wiki/translations/es/PartDesign_Bearingholder_Tutorial_II.md index d4bb6ea52e..4f25e5df5b 100644 --- a/wiki/translations/es/PartDesign_Bearingholder_Tutorial_II.md +++ b/wiki/translations/es/PartDesign_Bearingholder_Tutorial_II.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial II/es - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -89,3 +85,6 @@ For the rest of the machining, create a new Body. The bottom of the holder will [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial II/es diff --git a/wiki/translations/es/PartDesign_Body.md b/wiki/translations/es/PartDesign_Body.md index 033842e4bf..953641c2d9 100644 --- a/wiki/translations/es/PartDesign_Body.md +++ b/wiki/translations/es/PartDesign_Body.md @@ -9,6 +9,8 @@ SeeAlso:[Part](Std_Part/es.md) --- +# PartDesign Body/es +
@@ -294,4 +296,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Body/es diff --git a/wiki/translations/es/PartDesign_Chamfer.md b/wiki/translations/es/PartDesign_Chamfer.md index 70a442118e..7c13b31bd0 100644 --- a/wiki/translations/es/PartDesign_Chamfer.md +++ b/wiki/translations/es/PartDesign_Chamfer.md @@ -7,6 +7,8 @@ SeeAlso:[Redondeo](PartDesign_Fillet/es.md), [Pieza Chaflán](Part_Chamfer/es.md) --- +# PartDesign Chamfer/es +
@@ -53,4 +55,7 @@ Esta herramienta crea chaflanes en los bordes seleccionados de un objeto. Se cre {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Chamfer/es diff --git a/wiki/translations/es/PartDesign_Clone.md b/wiki/translations/es/PartDesign_Clone.md index dfa419781b..8fa9096b89 100644 --- a/wiki/translations/es/PartDesign_Clone.md +++ b/wiki/translations/es/PartDesign_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Clonar Draft](Draft_Clone/es.md) --- +# PartDesign Clone/es +
@@ -41,4 +43,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Clone/es diff --git a/wiki/translations/es/PartDesign_CompPrimitiveAdditive.md b/wiki/translations/es/PartDesign_CompPrimitiveAdditive.md index 828f835b53..e3d7481191 100644 --- a/wiki/translations/es/PartDesign_CompPrimitiveAdditive.md +++ b/wiki/translations/es/PartDesign_CompPrimitiveAdditive.md @@ -8,6 +8,8 @@ SeeAlso:[Crear una Primitiva sustractiva](PartDesign_CompPrimitiveSubtractive/es.md) --- +# PartDesign CompPrimitiveAdditive/es + ## Descripción Crea una primitiva aditiva en el Cuerpo activo como primera característica, o lo fusiona con la(s) característica(s) existente(s). Si no existe ningún cuerpo en el documento, se creará uno automáticamente. @@ -29,4 +31,7 @@ Crea una primitiva aditiva en el Cuerpo activo como primera característica, o l {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveAdditive/es diff --git a/wiki/translations/es/PartDesign_CompPrimitiveSubtractive.md b/wiki/translations/es/PartDesign_CompPrimitiveSubtractive.md index 739c00a46a..684bacc3b6 100644 --- a/wiki/translations/es/PartDesign_CompPrimitiveSubtractive.md +++ b/wiki/translations/es/PartDesign_CompPrimitiveSubtractive.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign CompPrimitiveSubtractive/es + ## Descripción Crea una Primitiva sustractiva en el Body (cuerpo) activo, sustrayendo su forma del sólido existente. @@ -29,4 +31,7 @@ Crea una Primitiva sustractiva en el Body (cuerpo) activo, sustrayendo su forma {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveSubtractive/es diff --git a/wiki/translations/es/PartDesign_Draft.md b/wiki/translations/es/PartDesign_Draft.md index ad01c53967..b6d9612e8a 100644 --- a/wiki/translations/es/PartDesign_Draft.md +++ b/wiki/translations/es/PartDesign_Draft.md @@ -8,6 +8,8 @@ SeeAlso:Ninguno --- +# PartDesign Draft/es +
@@ -70,4 +72,7 @@ Esta herramienta crea una corriente de aire angular en las caras seleccionadas d {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Draft/es diff --git a/wiki/translations/es/PartDesign_Feature.md b/wiki/translations/es/PartDesign_Feature.md index 1c9cdba1e6..ac430520f1 100644 --- a/wiki/translations/es/PartDesign_Feature.md +++ b/wiki/translations/es/PartDesign_Feature.md @@ -1,6 +1,4 @@ # PartDesign Feature/es - - ## Introducción A [PartDesign Feature](PartDesign_Feature.md) refers to a \"step\" in the modelling process that happens inside of a [PartDesign Body](PartDesign_Body.md). For example, each time you add a solid box with [PartDesign AdditiveBox](PartDesign_AdditiveBox.md), you add a feature; when you add a chamfer to an edge with [PartDesign Chamfer](PartDesign_Chamfer.md), you add another feature; when you cut a hole using a [sketch](Sketch.md) and [PartDesign Pocket](PartDesign_Pocket.md), you add another feature. @@ -81,4 +79,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Feature/es diff --git a/wiki/translations/es/PartDesign_Fillet.md b/wiki/translations/es/PartDesign_Fillet.md index a928d41710..0e987ff76d 100644 --- a/wiki/translations/es/PartDesign_Fillet.md +++ b/wiki/translations/es/PartDesign_Fillet.md @@ -7,6 +7,8 @@ SeeAlso:[Chaflán](PartDesign_Chamfer.md),[Piezas Redondeo](Part_Fillet/es.md) --- +# PartDesign Fillet/es +
@@ -130,4 +132,7 @@ Part.show(Box) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Fillet/es diff --git a/wiki/translations/es/PartDesign_Groove.md b/wiki/translations/es/PartDesign_Groove.md index aaa873ce32..2f462b7427 100644 --- a/wiki/translations/es/PartDesign_Groove.md +++ b/wiki/translations/es/PartDesign_Groove.md @@ -1,3 +1,4 @@ +# PartDesign Groove/es --- - GuiCommand:/es Name:PartDesign_Groove Name/es:PartDesign Groove Workbenches:[[PartDesign Workbench/es Diseño de Piezas]], Complete|MenuLocation:PartDesign → Groove--- @@ -101,4 +102,7 @@ Below are properties which can be defined after creation of the feature. Data pr {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Groove/es diff --git a/wiki/translations/es/PartDesign_Hole.md b/wiki/translations/es/PartDesign_Hole.md index 9bcd3b698d..7c90bb9e17 100644 --- a/wiki/translations/es/PartDesign_Hole.md +++ b/wiki/translations/es/PartDesign_Hole.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Pocket](PartDesign_Pocket.md) --- +# PartDesign Hole/es + ## Description The **Hole** feature creates one or more holes from a selected sketch\'s circles and arcs. If arcs are present they must be part of closed contours. All non arc/circle entities are ignored but they still must form closed contours. Many parameters can be set such as threading and size, fit, hole type (countersink, counterbore, straight) and more. @@ -107,4 +109,7 @@ Example: {{Code|lang=json|code= {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Hole/es diff --git a/wiki/translations/es/PartDesign_InvoluteGear.md b/wiki/translations/es/PartDesign_InvoluteGear.md index a4e2ccaf3d..1416f6be60 100644 --- a/wiki/translations/es/PartDesign_InvoluteGear.md +++ b/wiki/translations/es/PartDesign_InvoluteGear.md @@ -7,6 +7,8 @@ SeeAlso:[Ambiente de trabajo FCEngranaje](FCGear_Workbench/es.md) --- +# PartDesign InvoluteGear/es + ## Descripción Esta herramienta permite crear un perfil 2D de un engranaje evolvente. Este perfil 2D es totalmente paramétrico, y puede ser rellenado con la función [DiseñoPiezas Pad](PartDesign_Pad/es.md). @@ -43,4 +45,7 @@ Para una información más detallada ver las entradas de Wikipedia para: [Gear]( {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign InvoluteGear/es diff --git a/wiki/translations/es/PartDesign_Legacy.md b/wiki/translations/es/PartDesign_Legacy.md index 86a93a70a2..ad1058fa2f 100644 --- a/wiki/translations/es/PartDesign_Legacy.md +++ b/wiki/translations/es/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/es 1. REDIRECT [PartDesign\_Workbench/es](PartDesign_Workbench/es.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/es diff --git a/wiki/translations/es/PartDesign_Line.md b/wiki/translations/es/PartDesign_Line.md index 371466703d..46a465a1c0 100644 --- a/wiki/translations/es/PartDesign_Line.md +++ b/wiki/translations/es/PartDesign_Line.md @@ -8,6 +8,8 @@ SeeAlso:[Punto PartDesign](PartDesign_Point/es.md), [Plano PartDesign](PartDesign_Plane/es.md) --- +# PartDesign Line/es +
@@ -46,4 +48,7 @@ Double-click the DatumLine label in the Model tree or right-click and select **E {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Line/es diff --git a/wiki/translations/es/PartDesign_LinearPattern.md b/wiki/translations/es/PartDesign_LinearPattern.md index 90d8348720..e70afba53b 100644 --- a/wiki/translations/es/PartDesign_LinearPattern.md +++ b/wiki/translations/es/PartDesign_LinearPattern.md @@ -6,6 +6,8 @@ Workbenches:[DiseñoPieza](PartDesign_Workbench/es.md) --- +# PartDesign LinearPattern/es + ## Descripción La herramienta ** '''PatrónLineal'''** crea copias de una operación a una misma distancia en dirección lineal. A partir de la v0.17 la herramienta de patrón lineal puede repetir múltiples operaciones. {{VersionPlus/es|0.17}} @@ -93,4 +95,7 @@ Seleccionar uno de los ejes estándar de Origen del Body (cuerpo) (X, Y o Z) com {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign LinearPattern/es diff --git a/wiki/translations/es/PartDesign_Migrate.md b/wiki/translations/es/PartDesign_Migrate.md index 47b03abeca..686eacd18a 100644 --- a/wiki/translations/es/PartDesign_Migrate.md +++ b/wiki/translations/es/PartDesign_Migrate.md @@ -7,6 +7,8 @@ Version:0.17 --- +# PartDesign Migrate/es + ## Descripción El ambiente de trabajo de DiseñoPiezas en FreeCAD v0.17 introduce nuevas herramientas y elementos que no son reconocidos por las versiones anteriores de FreeCAD (0.16 y anteriores). Los documentos de FreeCAD creados en versiones anteriores pueden seguir siendo abiertos y editados. Para beneficiarse de las nuevas características, deben ser migrados a través del menú DiseñoPiezas → Migrar. @@ -39,4 +41,7 @@ El ambiente de trabajo de DiseñoPiezas en FreeCAD v0.17 introduce nuevas herram {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Migrate/es diff --git a/wiki/translations/es/PartDesign_Mirrored.md b/wiki/translations/es/PartDesign_Mirrored.md index 12090185e1..b786dae575 100644 --- a/wiki/translations/es/PartDesign_Mirrored.md +++ b/wiki/translations/es/PartDesign_Mirrored.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/es.md) --- +# PartDesign Mirrored/es + ## Descripción @@ -108,4 +110,7 @@ La simetría resultante puede ser vista de forma predeterminada en tiempo real a {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Mirrored/es diff --git a/wiki/translations/es/PartDesign_MultiTransform.md b/wiki/translations/es/PartDesign_MultiTransform.md index 64ffc1dffb..b01e3563ab 100644 --- a/wiki/translations/es/PartDesign_MultiTransform.md +++ b/wiki/translations/es/PartDesign_MultiTransform.md @@ -1,3 +1,4 @@ +# PartDesign MultiTransform/es --- - GuiCommand:/es Name:PartDesign_MultiTransform Workbenches:[[PartDesign Workbench/es Diseño de Piezas]], Complete|MenuLocation:Diseño de Piezas-> MultiTransformación--- @@ -215,4 +216,7 @@ A partir de la cajera se crea una simetría respecto al plano YZ y luego se apli {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MultiTransform/es diff --git a/wiki/translations/es/PartDesign_NewSketch.md b/wiki/translations/es/PartDesign_NewSketch.md index 6538b6f1e4..d92e458b60 100644 --- a/wiki/translations/es/PartDesign_NewSketch.md +++ b/wiki/translations/es/PartDesign_NewSketch.md @@ -7,6 +7,8 @@ Version:0.17 --- +# PartDesign NewSketch/es +
@@ -65,4 +67,7 @@ To reference any items in the [DiseñoPieza Pastilla](PartDesign_Pad/es.md)** herramienta extrae un boceto en un sólido en una dirección normal al plano del boceto. A partir de {{VersionPlus/es|0.17}} las caras en el sólido también pueden ser utilizadas. @@ -130,4 +132,7 @@ Invierte la dirección de la pastilla. {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pad/es diff --git a/wiki/translations/es/PartDesign_Plane.md b/wiki/translations/es/PartDesign_Plane.md index 1ab1dd3b28..26c676fbb1 100644 --- a/wiki/translations/es/PartDesign_Plane.md +++ b/wiki/translations/es/PartDesign_Plane.md @@ -8,6 +8,8 @@ SeeAlso:[Punto PartDesign](PartDesign_Point/es.md), [Línea PartDesign](PartDesign_Line/es.md) --- +# PartDesign Plane/es +
@@ -48,4 +50,7 @@ Double-click the DatumPlane label in the Model tree or right-click and select ** {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Plane/es diff --git a/wiki/translations/es/PartDesign_Pocket.md b/wiki/translations/es/PartDesign_Pocket.md index 4c7a293d87..cc83cd06ef 100644 --- a/wiki/translations/es/PartDesign_Pocket.md +++ b/wiki/translations/es/PartDesign_Pocket.md @@ -7,6 +7,8 @@ SeeAlso:[DiseñoPieza Pastilla](PartDesign_Pad/es.md) --- +# PartDesign Pocket/es + ## Descripción La herramienta **Cajera** recorta un sólido extruyendo un boceto (o una cara del sólido) en una trayectoria recta y restándolo del sólido. @@ -63,4 +65,7 @@ Un [ejemplo](http://forum.freecadweb.org/viewtopic.php?f=3&t=3733&start=10) con {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pocket/es diff --git a/wiki/translations/es/PartDesign_Point.md b/wiki/translations/es/PartDesign_Point.md index 81c6fab22e..b2d259690b 100644 --- a/wiki/translations/es/PartDesign_Point.md +++ b/wiki/translations/es/PartDesign_Point.md @@ -8,6 +8,8 @@ SeeAlso:[Línea PartDesign](PartDesign_Line/es.md), [Plano PartDesign](PartDesign_Plane/es.md) --- +# PartDesign Point/es +
@@ -49,4 +51,7 @@ Double-click the DatumPoint label in the Model tree or right-click and select ** {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Point/es diff --git a/wiki/translations/es/PartDesign_PolarPattern.md b/wiki/translations/es/PartDesign_PolarPattern.md index d1086dd478..cecdb144b2 100644 --- a/wiki/translations/es/PartDesign_PolarPattern.md +++ b/wiki/translations/es/PartDesign_PolarPattern.md @@ -6,6 +6,8 @@ Workbenches:[DiseñoPieza](PartDesign_Workbench/es.md) --- +# PartDesign PolarPattern/es + ## Descripción La herramienta **Patrón polar** crea copias de una operación girando alrededor de un eje seleccionado. A partir de la versión v0.17, se puede crear un patrón polar de múltiples operaciones. @@ -130,4 +132,7 @@ Especifica el ángulo a ser cubierto por el patrón, y el número total de forma {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign PolarPattern/es diff --git a/wiki/translations/es/PartDesign_Revolution.md b/wiki/translations/es/PartDesign_Revolution.md index 747b69b834..759c4bee7b 100644 --- a/wiki/translations/es/PartDesign_Revolution.md +++ b/wiki/translations/es/PartDesign_Revolution.md @@ -6,6 +6,8 @@ Workbenches:[DiseñoPiezas](PartDesign_Workbench/es.md) --- +# PartDesign Revolution/es +
@@ -103,4 +105,7 @@ A [detailed example of use](http://forum.freecadweb.org/viewtopic.php?f=3&t=3674 {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Revolution/es diff --git a/wiki/translations/es/PartDesign_Scaled.md b/wiki/translations/es/PartDesign_Scaled.md index 542c726f91..4d5ea22a14 100644 --- a/wiki/translations/es/PartDesign_Scaled.md +++ b/wiki/translations/es/PartDesign_Scaled.md @@ -1,3 +1,4 @@ +# PartDesign Scaled/es --- - GuiCommand:/es Name:PartDesign_Scaled Workbenches:[[PartDesign Workbench/es Diseño de Piezas]], Complete|MenuLocation:Diseño de Piezas → MultiTransform--- @@ -53,4 +54,7 @@ Starting from FreeCAD 0.15, this operation is not available directly, but was in ![c\|center\|800px](images/mt_example2.png ) The smallest pad was first patterned three times in X direction and then scaled to factor two (so the three occurrences have scaling factor 1.0, 1.5 and 2.0). Then a polar pattern was applied with 8 occurrences. -Since the scaling is done with respect to the center of gravity, in the case of a pad, it is necessary that the pad penetrate also in the main body, otherwise the scaled objects are floating, detached from the body. To have a pad that intersects the main body can be used \"two dimensions\" type or \"simmetric to plane\" option. +Since the scaling is done with respect to the center of gravity, in the case of a pad, it is necessary that the pad penetrate also in the main body, otherwise the scaled objects are floating, detached from the body. To have a pad that intersects the main body can be used \"two dimensions\" type or \"simmetric to plane\" option. + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Scaled/es diff --git a/wiki/translations/es/PartDesign_ShapeBinder.md b/wiki/translations/es/PartDesign_ShapeBinder.md index eebe7c21e5..74e9f8be4f 100644 --- a/wiki/translations/es/PartDesign_ShapeBinder.md +++ b/wiki/translations/es/PartDesign_ShapeBinder.md @@ -8,6 +8,8 @@ SeeAlso:[DiseñoPiezas SubFormaAglomerante](PartDesign_SubShapeBinder/es.md), [DiseñoPiezas Clon](PartDesign_Clone/es.md) --- +# PartDesign ShapeBinder/es + ## Descripción @@ -115,4 +117,7 @@ There is a workaround for multiple selection: If you select all the elements you {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign ShapeBinder/es diff --git a/wiki/translations/es/PartDesign_Sprocket.md b/wiki/translations/es/PartDesign_Sprocket.md index 7d7d976e60..26d2f53616 100644 --- a/wiki/translations/es/PartDesign_Sprocket.md +++ b/wiki/translations/es/PartDesign_Sprocket.md @@ -7,6 +7,8 @@ Version:0.19 --- +# PartDesign Sprocket/es + ## Description @@ -52,4 +54,7 @@ Esta herramienta permite crear un perfil 2D de una rueda cadena. Se puede acolch {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Sprocket/es diff --git a/wiki/translations/es/PartDesign_SubtractiveBox.md b/wiki/translations/es/PartDesign_SubtractiveBox.md index 9759d76c30..2f9ab4ec6d 100644 --- a/wiki/translations/es/PartDesign_SubtractiveBox.md +++ b/wiki/translations/es/PartDesign_SubtractiveBox.md @@ -8,6 +8,8 @@ SeeAlso:[Crear una Primitiva sustractiva](PartDesign_CompPrimitiveSubtractive/es.md) --- +# PartDesign SubtractiveBox/es + ## Descripción Inserta una Caja sustractiva en el Body (cuerpo) activo. Su forma es sustraída del sólido existente. @@ -58,4 +60,7 @@ Tras su creación, la Caja puede ser editada de dos maneras: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveBox/es diff --git a/wiki/translations/es/PartDesign_SubtractiveCone.md b/wiki/translations/es/PartDesign_SubtractiveCone.md index 65f8301b79..4faa642668 100644 --- a/wiki/translations/es/PartDesign_SubtractiveCone.md +++ b/wiki/translations/es/PartDesign_SubtractiveCone.md @@ -8,6 +8,8 @@ SeeAlso:[Crear una Primitiva sustractiva](PartDesign_CompPrimitiveSubtractive/es.md), [Additive Cone](PartDesign_AdditiveCone.md) --- +# PartDesign SubtractiveCone/es +
@@ -65,4 +67,7 @@ Tras su creación, el Cono puede ser editado de dos maneras: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCone/es diff --git a/wiki/translations/es/PartDesign_SubtractiveCylinder.md b/wiki/translations/es/PartDesign_SubtractiveCylinder.md index 237150b9b6..bcf6d75a79 100644 --- a/wiki/translations/es/PartDesign_SubtractiveCylinder.md +++ b/wiki/translations/es/PartDesign_SubtractiveCylinder.md @@ -8,6 +8,8 @@ SeeAlso:[Crear una Primitiva sustractiva](PartDesign_CompPrimitiveSubtractive/es.md), [Additive Cylinder](PartDesign_AdditiveCylinder.md) --- +# PartDesign SubtractiveCylinder/es + ## Descripción Inserta un Cilindro sustractivo en el Body (cuerpo) activo. Su forma es sustraída del sólido existente. @@ -66,4 +68,7 @@ Tras su creación, el Cilindro puede ser editado de dos maneras: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCylinder/es diff --git a/wiki/translations/es/PartDesign_SubtractiveEllipsoid.md b/wiki/translations/es/PartDesign_SubtractiveEllipsoid.md index 325795a141..9ac39cbba2 100644 --- a/wiki/translations/es/PartDesign_SubtractiveEllipsoid.md +++ b/wiki/translations/es/PartDesign_SubtractiveEllipsoid.md @@ -8,6 +8,8 @@ SeeAlso:[Crear una Primitiva sustractiva](PartDesign_CompPrimitiveSubtractive/es.md) --- +# PartDesign SubtractiveEllipsoid/es + ## Descripción Inserta un Elipsoide sustractivo en el Body (cuerpo) activo. Su forma es sustraída del sólido existente. @@ -66,4 +68,7 @@ Tras su creación, el Elipsoide puede ser editado de dos maneras: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveEllipsoid/es diff --git a/wiki/translations/es/PartDesign_SubtractivePipe.md b/wiki/translations/es/PartDesign_SubtractivePipe.md index c56db15e3d..c1f6f4589f 100644 --- a/wiki/translations/es/PartDesign_SubtractivePipe.md +++ b/wiki/translations/es/PartDesign_SubtractivePipe.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Barrido aditivo](PartDesign_AdditivePipe/es.md), [PartDesign Subtractive loft](PartDesign_SubtractiveLoft.md) --- +# PartDesign SubtractivePipe/es +
@@ -96,4 +98,7 @@ El **Barrido sustractivo** crea un sólido sustractivo en el Body (cuerpo) activ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePipe/es diff --git a/wiki/translations/es/PartDesign_SubtractivePrism.md b/wiki/translations/es/PartDesign_SubtractivePrism.md index b4b97e08cb..3dad37d896 100644 --- a/wiki/translations/es/PartDesign_SubtractivePrism.md +++ b/wiki/translations/es/PartDesign_SubtractivePrism.md @@ -8,6 +8,8 @@ SeeAlso:[Crear una Primitiva sustractiva](PartDesign_CompPrimitiveSubtractive/es.md), [Additive Prism](PartDesign_AdditivePrism.md) --- +# PartDesign SubtractivePrism/es +
@@ -69,4 +71,7 @@ Tras su creación, el Prisma puede ser editado de dos maneras: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePrism/es diff --git a/wiki/translations/es/PartDesign_SubtractiveSphere.md b/wiki/translations/es/PartDesign_SubtractiveSphere.md index 03b81563ac..7fd6ed4e79 100644 --- a/wiki/translations/es/PartDesign_SubtractiveSphere.md +++ b/wiki/translations/es/PartDesign_SubtractiveSphere.md @@ -8,6 +8,8 @@ SeeAlso:[Crear una Primitiva sustractiva](PartDesign_CompPrimitiveSubtractive/es.md) --- +# PartDesign SubtractiveSphere/es + ## Descripción Inserta una Esfera sustractiva en el Body (cuerpo) activo. Su forma es sustraída del sólido existente. @@ -60,4 +62,7 @@ Tras su creación, la Esfera puede ser editada de dos maneras: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveSphere/es diff --git a/wiki/translations/es/PartDesign_SubtractiveTorus.md b/wiki/translations/es/PartDesign_SubtractiveTorus.md index ad7117aeef..9c8ac66f78 100644 --- a/wiki/translations/es/PartDesign_SubtractiveTorus.md +++ b/wiki/translations/es/PartDesign_SubtractiveTorus.md @@ -8,6 +8,8 @@ SeeAlso:[Crear una Primitiva sustractiva](PartDesign_CompPrimitiveSubtractive/es.md) --- +# PartDesign SubtractiveTorus/es + ## Descripción Inserta un Toro sustractivo en el Body (cuerpo) activo. Su forma es sustraída del sólido existente. @@ -62,4 +64,7 @@ Tras su creación, el Toro puede ser editado de dos maneras: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveTorus/es diff --git a/wiki/translations/es/PartDesign_SubtractiveWedge.md b/wiki/translations/es/PartDesign_SubtractiveWedge.md index bebe381e4c..c63b224386 100644 --- a/wiki/translations/es/PartDesign_SubtractiveWedge.md +++ b/wiki/translations/es/PartDesign_SubtractiveWedge.md @@ -8,6 +8,8 @@ SeeAlso:[Crear una Primitiva sustractiva](PartDesign_CompPrimitiveSubtractive/es.md), [Cuña aditiva](PartDesign_AdditiveWedge/es.md) --- +# PartDesign SubtractiveWedge/es + @@ -65,4 +67,7 @@ Para crear una pirámide regular con un vértice en el lado superior, los valore {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveWedge/es diff --git a/wiki/translations/es/PartDesign_Thickness.md b/wiki/translations/es/PartDesign_Thickness.md index 130a584330..8b045205dc 100644 --- a/wiki/translations/es/PartDesign_Thickness.md +++ b/wiki/translations/es/PartDesign_Thickness.md @@ -8,6 +8,8 @@ SeeAlso:[Part Thickness](Part_Thickness/es.md) --- +# PartDesign Thickness/es + ## Descripción La herramienta **Espesor** trabaja sobre un cuerpo sólido y lo transforma en un objeto hueco con una pared de un grosor determinado, con al menos una cara abierta, dando a cada una de sus caras restantes un espesor uniforme. Con algunos sólidos permite un ahorro significativo de trabajo, evitando hacer extrusiones y vaciados innecesarios. @@ -84,4 +86,7 @@ Resultado: ![](images/Brga-spessore.png ) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Thickness/es diff --git a/wiki/translations/es/PartDesign_WizardShaft.md b/wiki/translations/es/PartDesign_WizardShaft.md index e91a59b8d1..23dff13e23 100644 --- a/wiki/translations/es/PartDesign_WizardShaft.md +++ b/wiki/translations/es/PartDesign_WizardShaft.md @@ -5,6 +5,8 @@ Workbenches:[DiseñoPiezas](PartDesign_Workbench/es.md) --- +# PartDesign WizardShaft/es + ## Descripción Esta herramienta permite crear un árbol a partir de una tabla de valores y analizar las fuerzas y los momentos. Puede iniciar el asistente desde el menú Diseño de la pieza **DiseñoPieza → Asistente Diseño Ejes...**. @@ -66,4 +68,7 @@ Para añadir un nuevo segmento de eje, pulsa con el botón derecho en un espacio {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign WizardShaft/es diff --git a/wiki/translations/es/PartDesign_Workbench.md b/wiki/translations/es/PartDesign_Workbench.md index 1388018b72..d75b51e9c9 100644 --- a/wiki/translations/es/PartDesign_Workbench.md +++ b/wiki/translations/es/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/es - - -El icono del Ambiente de trabajo PartDesign +# El icono del Ambiente de trabajo PartDesign PartDesign Workbench/es {{TOCright}} @@ -202,3 +199,6 @@ Otras funcionalidades adicionales disponibles en el menú de diseño de piezas: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/es diff --git a/wiki/translations/es/PartDesign_project.md b/wiki/translations/es/PartDesign_project.md index e8cd282f2b..34d09c4110 100644 --- a/wiki/translations/es/PartDesign_project.md +++ b/wiki/translations/es/PartDesign_project.md @@ -1,7 +1,4 @@ # PartDesign project/es - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -276,3 +273,6 @@ Gira un croquis alrededor de un eje un cierto ángulo. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign project/es diff --git a/wiki/translations/es/PartDesign_tutorial.md b/wiki/translations/es/PartDesign_tutorial.md index c69d9ae063..b7b7c12c7e 100644 --- a/wiki/translations/es/PartDesign_tutorial.md +++ b/wiki/translations/es/PartDesign_tutorial.md @@ -1,5 +1,5 @@ # PartDesign tutorial/es - {{TutorialInfo/es +{{TutorialInfo/es |Topic= Sketcher |Level= Beginner |Time= 15 minutes @@ -105,3 +105,6 @@ After completing this task you should have the following result. If not, re-edit the MultiTransform operation by double clicking on it in the Tree View. Check both pattern features to detect necessary modifications, such as the **Axis** and if the **Direction** needs to be reversed. We are now finished with the basic workflow for the [PartDesign Workbench](PartDesign_Workbench.md). + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign tutorial/es diff --git a/wiki/translations/es/Part_API.md b/wiki/translations/es/Part_API.md index a5ec906a98..377cf0d3fd 100644 --- a/wiki/translations/es/Part_API.md +++ b/wiki/translations/es/Part_API.md @@ -1,5 +1,5 @@ # Part API/es - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** El módulo Pieza es la conexión directa entre FreeCAD y el kernel de OpenCasCade. Proporciona principalmente [TopoShapes](TopoShape_API/es.md) el cual es el principal tipo de objeto utilizado por OpenCascade. El módulo de Pieza también contiene una variedad de funciones convenientes para crear y manipular topoShapes. Ejemplo: ```python @@ -99,3 +99,6 @@ Part.show(mycube) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part API/es diff --git a/wiki/translations/es/Part_Boolean.md b/wiki/translations/es/Part_Boolean.md index 7d78e43612..627525f33f 100644 --- a/wiki/translations/es/Part_Boolean.md +++ b/wiki/translations/es/Part_Boolean.md @@ -1,3 +1,4 @@ +# Part Boolean/es --- - GuiCommand:/es Name:Part Booleans Name/es:Part Booleans MenuLocation:Part → Booleans Workbenches:[SeeAlso:[[Part Union/es|Part Union](Part_Workbench/es___Part]].md), [Part Common](Part_Common/es.md) and [Part Cut](Part_Cut/es.md)--- @@ -66,8 +67,5 @@ In cases of coplanarity, even if the first boolean operation succeeds, subsequen *Left: shapes that share a face, a boolean union may produce incorrect results. Right: shapes that intersect each other clearly, the boolean union will be successful in most cases.* - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Boolean/es diff --git a/wiki/translations/es/Part_Box.md b/wiki/translations/es/Part_Box.md index f76b655489..423ceeebb3 100644 --- a/wiki/translations/es/Part_Box.md +++ b/wiki/translations/es/Part_Box.md @@ -7,6 +7,8 @@ SeeAlso:[Part Crear primitivas](Part_Primitives/es.md) --- +# Part Box/es + @@ -84,5 +86,5 @@ FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6, - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Box/es diff --git a/wiki/translations/es/Part_Builder.md b/wiki/translations/es/Part_Builder.md index bd74dd9fd2..da670c6c09 100644 --- a/wiki/translations/es/Part_Builder.md +++ b/wiki/translations/es/Part_Builder.md @@ -1,3 +1,4 @@ +# Part Builder/es --- - GuiCommand:/es Name:Part Shapebuilder Name/es:Part Shapebuilder MenuLocation:Part -> Shapebuilder... |Workbenches:[SeeAlso:[[Part_CreatePrimitives/es|Part CreatePrimitives](Part_Workbench/es___Part]].md)--- @@ -67,8 +68,5 @@ A possible workflow could be: - Create a \"shell from faces\" - Create a \"solid from shell\" - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Builder/es diff --git a/wiki/translations/es/Part_Chamfer.md b/wiki/translations/es/Part_Chamfer.md index bf3df0e3b8..8b8902e884 100644 --- a/wiki/translations/es/Part_Chamfer.md +++ b/wiki/translations/es/Part_Chamfer.md @@ -1,3 +1,4 @@ +# Part Chamfer/es --- - GuiCommand:/es Name:Part_Chamfer MenuLocation:Pieza → Chaflán Workbenches:Pieza,Completo--- @@ -154,8 +155,5 @@ FreeCAD.ActiveDocument.recompute() - Recomputes all altered components on the screen and refreshes the display. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Chamfer/es diff --git a/wiki/translations/es/Part_CheckGeometry.md b/wiki/translations/es/Part_CheckGeometry.md index eedcb44972..dceaecf91c 100644 --- a/wiki/translations/es/Part_CheckGeometry.md +++ b/wiki/translations/es/Part_CheckGeometry.md @@ -6,6 +6,8 @@ Workbenches:[Pieza](Part_Workbench/es.md) --- +# Part CheckGeometry/es + @@ -73,5 +75,5 @@ If ticked, any errors found are also logged in the [report view](Report_view.md) - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CheckGeometry/es diff --git a/wiki/translations/es/Part_Circle.md b/wiki/translations/es/Part_Circle.md index 7295434942..15b3308ec7 100644 --- a/wiki/translations/es/Part_Circle.md +++ b/wiki/translations/es/Part_Circle.md @@ -1,3 +1,4 @@ +# Part Circle/es --- - GuiCommand:/es Name:Part_Circle Name/es:Part_Circle MenuLocation:Part → [Workbenches:[[Part_Workbench/es Part](Part_CreatePrimitives/es___Create_Primitives]]_→_Circle.md), [OpenSCAD](OpenSCAD_Workbench/es.md)|SeeAlso:..--- @@ -27,8 +28,5 @@ A Circle geometric primitive is available from the Create Primitives dialogue in - {{Parameter|Angle 1}}: end of the curved edge, (degrees anti-clockwise), the default value is 360 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Circle/es diff --git a/wiki/translations/es/Part_Common.md b/wiki/translations/es/Part_Common.md index cad4db2612..c4466b601e 100644 --- a/wiki/translations/es/Part_Common.md +++ b/wiki/translations/es/Part_Common.md @@ -1,3 +1,4 @@ +# Part Common/es --- - GuiCommand:/es Name:Part_Common Name/es:Part_Common MenuLocation:Part → Common Workbenches:[Completo](Part_Workbench/es___Pieza]],[[Complete_Workbench/es.md)|SeeAlso:[Part Union](Part_Union/es.md), [Part Cut](Part_Cut/es.md)--- @@ -17,8 +18,5 @@ Extrae la parte común (intersección) entre los objetos piezas seleccionados. E Input objects must be [OpenCascade](OpenCascade.md) shapes. Examples: stuff made with Part, PartDesign, Sketcher workbenches. Not meshes (unless those were converted to shapes) - for meshes, there are specific Boolean tools in MeshDesign workbench. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Common/es diff --git a/wiki/translations/es/Part_CompCompoundTools.md b/wiki/translations/es/Part_CompCompoundTools.md index e1220561df..ed898300b3 100644 --- a/wiki/translations/es/Part_CompCompoundTools.md +++ b/wiki/translations/es/Part_CompCompoundTools.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part CompCompoundTools/es + @@ -29,5 +31,5 @@ Un conjunto de varias herramientas compuestas. - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompCompoundTools/es diff --git a/wiki/translations/es/Part_Compound.md b/wiki/translations/es/Part_Compound.md index b2ab68ff64..23537634dd 100644 --- a/wiki/translations/es/Part_Compound.md +++ b/wiki/translations/es/Part_Compound.md @@ -8,6 +8,8 @@ SeeAlso:[Pieza Unión](Part_Union/es.md), [Pieza Filtro compuesto](Part_CompoundFilter/es.md), [Pieza Explotar compuesto](Part_ExplodeCompound/es.md) --- +# Part Compound/es + @@ -37,5 +39,5 @@ To turn this check on go to **Tools → Edit Parameters → Preferences... → M - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Compound/es diff --git a/wiki/translations/es/Part_CompoundFilter.md b/wiki/translations/es/Part_CompoundFilter.md index d32be0f384..848389e3ad 100644 --- a/wiki/translations/es/Part_CompoundFilter.md +++ b/wiki/translations/es/Part_CompoundFilter.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Part CompoundFilter/es + @@ -76,8 +78,5 @@ Si sólo hay un niño en el resultado, la salida es el niño. Si hay más de un - **items**: List or range of elements to be selected if Filter Type is \"specific items\". - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompoundFilter/es diff --git a/wiki/translations/es/Part_Cone.md b/wiki/translations/es/Part_Cone.md index eb80ba1e00..209d4009c7 100644 --- a/wiki/translations/es/Part_Cone.md +++ b/wiki/translations/es/Part_Cone.md @@ -1,3 +1,4 @@ +# Part Cone/es --- - GuiCommand:/es Name:Part Cone Name/es:Part Cone MenuLocation:Part -> Cone |Workbenches:[SeeAlso:[[Part_CreatePrimitives/es|Part CreatePrimitives](Part_Workbench/es___Part]],_Complete.md)--- @@ -32,8 +33,5 @@ The cone properties can later be edited, either in the [Property editor](Propert - **Angle**: Number of degrees of the arc or circles defining the upper and lower faces of the truncated cone. The default 360° creates circular faces, a lower value will create a portion of a cone as defined by upper and lower faces each with edges defined by an arc of the number of degrees and two radii. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cone/es diff --git a/wiki/translations/es/Part_CreatePrimitives.md b/wiki/translations/es/Part_CreatePrimitives.md index 5d8bb6b73f..75c6024398 100644 --- a/wiki/translations/es/Part_CreatePrimitives.md +++ b/wiki/translations/es/Part_CreatePrimitives.md @@ -1,2 +1,5 @@ # Part CreatePrimitives/es 1. REDIRECT [Part\_Primitives/es](Part_Primitives/es.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CreatePrimitives/es diff --git a/wiki/translations/es/Part_CrossSections.md b/wiki/translations/es/Part_CrossSections.md index bcb26a475a..9bf8d0c23c 100644 --- a/wiki/translations/es/Part_CrossSections.md +++ b/wiki/translations/es/Part_CrossSections.md @@ -1,3 +1,4 @@ +# Part CrossSections/es --- - GuiCommand:/es Name:Part SectionCross MenuLocation:Part → SectionCross Workbenches:[[Part_Workbench/es Part]],Complete|SeeAlso:--- @@ -32,8 +33,5 @@ The **Cross-sections** utility creates one or more cross-sections through the se ![Result](images/SectionCross3.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CrossSections/es diff --git a/wiki/translations/es/Part_Cut.md b/wiki/translations/es/Part_Cut.md index 6555d60c40..de772f9633 100644 --- a/wiki/translations/es/Part_Cut.md +++ b/wiki/translations/es/Part_Cut.md @@ -1,3 +1,4 @@ +# Part Cut/es --- - GuiCommand:/es Name:Part_Cut Name/es:Part Cut MenuLocation:Part → Cut Workbenches:[Complete](Part_Workbench/es___Part]],[[Complete_Workbench/es.md)|SeeAlso:[Part Union](Part_Union/es.md), [Part Common](Part_Common/es.md)--- @@ -29,8 +30,5 @@ Cuts (subtracts) selected Part objects, the last one being subtracted from the f Input objects must be [OpenCascade](OpenCascade.md) shapes. Examples: stuff made with Part, PartDesign, Sketcher workbenches. Not meshes (unless those were converted to shapes) - for meshes, there are specific Boolean tools in MeshDesign workbench. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cut/es diff --git a/wiki/translations/es/Part_Cylinder.md b/wiki/translations/es/Part_Cylinder.md index 81ee9e13e2..d7f1a206b5 100644 --- a/wiki/translations/es/Part_Cylinder.md +++ b/wiki/translations/es/Part_Cylinder.md @@ -1,3 +1,4 @@ +# Part Cylinder/es --- - GuiCommand:/es Name:Part Cylinder Name/es:Part Cylinder MenuLocation:Part → Cylinder |Workbenches:[SeeAlso:[[Part CreatePrimitives/es|Part CreatePrimitives](Part_Workbench/es___Part]],_Complete.md)--- @@ -31,10 +32,7 @@ The cylinder properties can later be edited, either in the [Property editor](Pro - **First Angle**: Angle in first direction. (v0.20) -- **Second Angle**: Angle in second direction. (v0.20) +- **Second Angle**: Angle in second direction. (v0.20) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cylinder/es diff --git a/wiki/translations/es/Part_Ellipse.md b/wiki/translations/es/Part_Ellipse.md index f4917716ee..7cf23fda1c 100644 --- a/wiki/translations/es/Part_Ellipse.md +++ b/wiki/translations/es/Part_Ellipse.md @@ -1,3 +1,4 @@ +# Part Ellipse/es --- - GuiCommand:/es Name:Part Ellipse Name/es:Part Ellipse MenuLocation:Part → [Workbenches:[[Part_Workbench/es Part](Part_CreatePrimitives/es___Create_Primitives]]_→_Ellipse.md), [OpenSCAD](OpenSCAD_Workbench/es.md)|SeeAlso:..--- @@ -19,8 +20,5 @@ The Create Primitives dialogue can be accessed via the [Primitives](Part_Primiti - **Angle 1:** start of the edge of the ellipse or elliptical curved edge, (degrees anti-clockwise), the default value is 0 - **Angle 2:** end of the edge of the ellipse or elliptical curved edge, (degrees anti-clockwise), the default value is 360 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipse/es diff --git a/wiki/translations/es/Part_Ellipsoid.md b/wiki/translations/es/Part_Ellipsoid.md index 6c1c7a572a..980d6cf584 100644 --- a/wiki/translations/es/Part_Ellipsoid.md +++ b/wiki/translations/es/Part_Ellipsoid.md @@ -1,3 +1,4 @@ +# Part Ellipsoid/es --- - GuiCommand:/es Name:Part Ellipsoid Name/es:Part Ellipsoid MenuLocation:Part → [Workbenches:[[Part_Workbench/es Part](Part_CreatePrimitives/es___Create_Primitives]]_→_Ellipsoid.md), [OpenSCAD](OpenSCAD_Workbench/es.md)|SeeAlso:..--- @@ -33,8 +34,5 @@ A parametric Ellipsoid solid is available from the Create Primitives dialogue in ![](images/Part_Ellipsoid_screenshot.jpg ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipsoid/es diff --git a/wiki/translations/es/Part_ExplodeCompound.md b/wiki/translations/es/Part_ExplodeCompound.md index ebc9515b4d..32702025c8 100644 --- a/wiki/translations/es/Part_ExplodeCompound.md +++ b/wiki/translations/es/Part_ExplodeCompound.md @@ -8,6 +8,8 @@ SeeAlso:[Pieza Hacer Compuesto](Part_Compound/es.md), [Borrador Bajada](Draft_Downgrade/es.md) --- +# Part ExplodeCompound/es + @@ -55,5 +57,5 @@ La herramienta también explotará las formas no compuestas en sus constituyente - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ExplodeCompound/es diff --git a/wiki/translations/es/Part_Extrude.md b/wiki/translations/es/Part_Extrude.md index 190aad1b0d..c342919a48 100644 --- a/wiki/translations/es/Part_Extrude.md +++ b/wiki/translations/es/Part_Extrude.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Trimex](Draft_Trimex/es.md) --- +# Part Extrude/es + @@ -114,8 +116,5 @@ Part Extrude doesn\'t care where it is in model tree. PartDesign Pad can only li Part Extrude can extrude any object that has Part Geometry (OCC shape), except for solids and compsolids. And it can\'t extrude individual faces of other objects. PartDesign Pad will only accept a Sketch as a profile (and a small selection of other object types), or a face of a solid. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Extrude/es diff --git a/wiki/translations/es/Part_Fillet.md b/wiki/translations/es/Part_Fillet.md index 00a342b216..fa16d66250 100644 --- a/wiki/translations/es/Part_Fillet.md +++ b/wiki/translations/es/Part_Fillet.md @@ -7,6 +7,8 @@ SeeAlso:[Pieza Chaflán](Part_Chamfer/es.md) --- +# Part Fillet/es + @@ -54,8 +56,5 @@ The fillet tool sometimes fails when trying to fillet complex objects. A common Also note that the part Fillet feature is affected by the [Topological naming problem](Topological_naming_problem.md) when the any change is done to a modeling step earlier in the chain that affects the number of facets or vertices. This could cause unpredictable result. Until that is resolved (possibly with V0.19) it is advised to apply Chamfer and [Fillet](Part_Fillet.md) operations at the last steps in the chain. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fillet/es diff --git a/wiki/translations/es/Part_Fuse.md b/wiki/translations/es/Part_Fuse.md index 7b4b2ca42f..5ba1eeef7b 100644 --- a/wiki/translations/es/Part_Fuse.md +++ b/wiki/translations/es/Part_Fuse.md @@ -7,6 +7,8 @@ SeeAlso:[Part Cut](Part_Cut/es.md), [Part Common](Part_Common/es.md) --- +# Part Fuse/es + @@ -41,8 +43,5 @@ Items can be added and removed from the fusion, by dragging them in or out of th After this operation is complete, it may be necessary to clean up the shape with [RefineShape](Part_RefineShape.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fuse/es diff --git a/wiki/translations/es/Part_Helix.md b/wiki/translations/es/Part_Helix.md index e638dc4d13..86142fadfe 100644 --- a/wiki/translations/es/Part_Helix.md +++ b/wiki/translations/es/Part_Helix.md @@ -1,3 +1,4 @@ +# Part Helix/es --- - GuiCommand:/es Name:Part Helix Name/es:Part Helix MenuLocation:Part → [Workbenches:[[Part_Workbench/es Part](Part_CreatePrimitives/es___Create_Primitives]]_→_Helix.md), [OpenSCAD](OpenSCAD_Workbench/es.md)|SeeAlso:..--- @@ -59,8 +60,5 @@ Once you have created the helix you have the possibility to edit its parameters. | | | +----------------------------------------------------------+----------------------------------------------------------------------------------+ - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Helix/es diff --git a/wiki/translations/es/Part_Line.md b/wiki/translations/es/Part_Line.md index 31fa73cfae..030c388d48 100644 --- a/wiki/translations/es/Part_Line.md +++ b/wiki/translations/es/Part_Line.md @@ -1,3 +1,4 @@ +# Part Line/es --- - GuiCommand:/es Name:Part Line Name/es:Part Line MenuLocation:Part → [Workbenches:[[OpenSCAD_Workbench/es Part](Part_CreatePrimitives/es___Create_Primitives]]_→_Line.md), [OpenSCAD](OpenSCAD_Workbench/es.md)|SeeAlso:..--- @@ -81,11 +82,5 @@ | | : | +--------------------------------------------------------+------------------------------------------+ - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Line/es diff --git a/wiki/translations/es/Part_Mirror.md b/wiki/translations/es/Part_Mirror.md index 26de6d5462..5470694435 100644 --- a/wiki/translations/es/Part_Mirror.md +++ b/wiki/translations/es/Part_Mirror.md @@ -1,3 +1,4 @@ +# Part Mirror/es --- - GuiCommand:/es Name:Part_Mirror MenuLocation:Pieza -> Simetría Workbenches:Pieza,Completo--- @@ -42,8 +43,5 @@ The **Base point** boxes can be used to move the mirror plane parallel to the se - Arbitrary mirror planes (ie not parallel to a standard plane) are not supported. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Mirror/es diff --git a/wiki/translations/es/Part_Module.md b/wiki/translations/es/Part_Module.md index 722c90cbcc..9c698d9bad 100644 --- a/wiki/translations/es/Part_Module.md +++ b/wiki/translations/es/Part_Module.md @@ -1,7 +1,4 @@ # Part Module/es - - -
@@ -221,3 +218,6 @@ Ver [Guiones Pieza](Part_scripting/es.md). [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/es diff --git a/wiki/translations/es/Part_Plane.md b/wiki/translations/es/Part_Plane.md index 01f6f0c8fe..2d95d0b90d 100644 --- a/wiki/translations/es/Part_Plane.md +++ b/wiki/translations/es/Part_Plane.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitivas](Part_Primitives/es.md) --- +# Part Plane/es +
@@ -64,8 +66,5 @@ Las propiedades pueden ser cambiadas posteriormente en la pestaña **Vista combi You have the standard properties view. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Plane/es diff --git a/wiki/translations/es/Part_Point.md b/wiki/translations/es/Part_Point.md index cf3e12fe6f..8eb8c77702 100644 --- a/wiki/translations/es/Part_Point.md +++ b/wiki/translations/es/Part_Point.md @@ -1,3 +1,4 @@ +# Part Point/es --- - GuiCommand:/es Name:Part Point Name/es:Part Point MenuLocation:Part → [Workbenches:[[Part_Workbench/es Part](Part_CreatePrimitives/es___Create_Primitives]]_→_Point.md), [OpenSCAD](OpenSCAD_Workbench/es.md)|SeeAlso:..--- @@ -83,4 +84,7 @@ A Point (vertex) geometric primitive. {{Part_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Point/es diff --git a/wiki/translations/es/Part_Primitives.md b/wiki/translations/es/Part_Primitives.md index f730de7b68..37524cab73 100644 --- a/wiki/translations/es/Part_Primitives.md +++ b/wiki/translations/es/Part_Primitives.md @@ -7,6 +7,8 @@ SeeAlso:[Part Shapebuilder](Part_Builder.md) --- +# Part Primitives/es + @@ -97,5 +99,5 @@ freecad $INSTALL_DIR/Mod/Part/parttests/part_test_objects.py - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Primitives/es diff --git a/wiki/translations/es/Part_Prism.md b/wiki/translations/es/Part_Prism.md index 5cbf588168..84a3ee7a1c 100644 --- a/wiki/translations/es/Part_Prism.md +++ b/wiki/translations/es/Part_Prism.md @@ -8,6 +8,8 @@ SeeAlso:[Part Primitivas](Part_Primitives/es.md), [Part Cubo](Part_Box/es.md) --- +# Part Prism/es + @@ -56,5 +58,5 @@ Es posible crear prismas torcidos especificando ángulos con respecto al vector - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Prism/es diff --git a/wiki/translations/es/Part_ProjectionOnSurface.md b/wiki/translations/es/Part_ProjectionOnSurface.md index 41706ae752..2f86d66990 100644 --- a/wiki/translations/es/Part_ProjectionOnSurface.md +++ b/wiki/translations/es/Part_ProjectionOnSurface.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Part ProjectionOnSurface/es + @@ -119,5 +121,5 @@ If this happens: - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ProjectionOnSurface/es diff --git a/wiki/translations/es/Part_RegularPolygon.md b/wiki/translations/es/Part_RegularPolygon.md index 7116984188..2fff8f9a4e 100644 --- a/wiki/translations/es/Part_RegularPolygon.md +++ b/wiki/translations/es/Part_RegularPolygon.md @@ -1,3 +1,4 @@ +# Part RegularPolygon/es --- - GuiCommand: Name:Part RegularPolygon MenuLocation:Part → [Workbenches:[[Part_Workbench Part](Part_CreatePrimitives___Create_Primitives]]_→_Regular_Polygon.md), [OpenSCAD](OpenSCAD_Workbench.md)|SeeAlso:--- @@ -44,8 +45,5 @@ The RegularPolygon is available from the Create Primitives dialogue in the Part - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RegularPolygon/es diff --git a/wiki/translations/es/Part_Revolve.md b/wiki/translations/es/Part_Revolve.md index 607a18c469..88f813b794 100644 --- a/wiki/translations/es/Part_Revolve.md +++ b/wiki/translations/es/Part_Revolve.md @@ -1,3 +1,4 @@ +# Part Revolve/es --- - GuiCommand:/es Name:Part_Revolve MenuLocation:Part → Revolve Workbenches:[[Part_Workbench/es Pieza]], Completo|SeeAlso:--- @@ -63,8 +64,5 @@ Si seleccionas un eje definido por el usuario, los números definen la direcció - If your version of FreeCAD has a check box for Solid in the Revolve dialog, you can make Solids from closed Wires and Edges. - If Revolve is performed using an axis that intersects the face to rotate, and you want to create a solid, the result might be invalid. This can happen for various reasons, self-intersection, direction, etc. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Revolve/es diff --git a/wiki/translations/es/Part_Section.md b/wiki/translations/es/Part_Section.md index 12cea0d988..e929eed54f 100644 --- a/wiki/translations/es/Part_Section.md +++ b/wiki/translations/es/Part_Section.md @@ -1,3 +1,4 @@ +# Part Section/es --- - GuiCommand:/es Name:Part_Section MenuLocation:Pieza → Sección Workbenches:[Complete](Part_Workbench___Part]],_[[Complete_Workbench/es.md)|SeeAlso:[SectionCross](Part_SectionCross/es.md)--- @@ -34,8 +35,5 @@ In this example, a cube is sectioned with a cylinder: To create sections with a section plane see [Cross-sections](Part_CrossSections.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Section/es diff --git a/wiki/translations/es/Part_SectionCross.md b/wiki/translations/es/Part_SectionCross.md index 9967af7d79..b253702de4 100644 --- a/wiki/translations/es/Part_SectionCross.md +++ b/wiki/translations/es/Part_SectionCross.md @@ -1,2 +1,5 @@ # Part SectionCross/es 1. REDIRECT [Part\_CrossSections/es](Part_CrossSections/es.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SectionCross/es diff --git a/wiki/translations/es/Part_Shapebuilder.md b/wiki/translations/es/Part_Shapebuilder.md index 72812029b6..265d97b386 100644 --- a/wiki/translations/es/Part_Shapebuilder.md +++ b/wiki/translations/es/Part_Shapebuilder.md @@ -1,2 +1,5 @@ # Part Shapebuilder/es 1. REDIRECT [Part\_Builder/es](Part_Builder/es.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Shapebuilder/es diff --git a/wiki/translations/es/Part_Sphere.md b/wiki/translations/es/Part_Sphere.md index 5a5533a60b..5328a7b9e8 100644 --- a/wiki/translations/es/Part_Sphere.md +++ b/wiki/translations/es/Part_Sphere.md @@ -1,3 +1,4 @@ +# Part Sphere/es --- - GuiCommand:/es Name:Part Sphere Name/es:Part Sphere MenuLocation:Part -> Sphere |Workbenches:[SeeAlso:[[Part_CreatePrimitives/es|Part CreatePrimitives](Part_Workbench/es___Part_Module]],Complete.md)--- @@ -46,8 +47,5 @@ Because it is quite difficult to explain the meaning of the parameters angle 1, - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sphere/es diff --git a/wiki/translations/es/Part_Spiral.md b/wiki/translations/es/Part_Spiral.md index 05e1caa8e8..f1f9058e21 100644 --- a/wiki/translations/es/Part_Spiral.md +++ b/wiki/translations/es/Part_Spiral.md @@ -1,3 +1,4 @@ +# Part Spiral/es --- - GuiCommand:/es Name:Part Spiral Name/es:Part Spiral MenuLocation:[Create Primitives](Part_Workbench/es___Part]]_→_[[Part_CreatePrimitives/es.md) → Spiral|Workbenches:[SeeAlso:[[Part_CreatePrimitives/es|Create Primitives](Part_Workbench/es___Part]].md)--- @@ -16,8 +17,5 @@ The Create Primitives dialogue can be accessed via the [Primitives](Part_Primiti ![](images/Spiral_y45_it.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Spiral/es diff --git a/wiki/translations/es/Part_Sweep.md b/wiki/translations/es/Part_Sweep.md index 97dd3623c0..45fd939219 100644 --- a/wiki/translations/es/Part_Sweep.md +++ b/wiki/translations/es/Part_Sweep.md @@ -7,6 +7,8 @@ SeeAlso:[Part Loft](Part_Loft.md) --- +# Part Sweep/es + @@ -149,5 +151,5 @@ Si \"Frenet\" es \"true\" la orientación del perfil se computa en base a la cur - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sweep/es diff --git a/wiki/translations/es/Part_Thickness.md b/wiki/translations/es/Part_Thickness.md index 87baeb87d7..c5d7483704 100644 --- a/wiki/translations/es/Part_Thickness.md +++ b/wiki/translations/es/Part_Thickness.md @@ -7,6 +7,8 @@ SeeAlso:[Part Offset](Part_Offset.md) --- +# Part Thickness/es + @@ -131,5 +133,5 @@ En este objeto se han seleccionado y eliminado dos caras adyacentes. - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Thickness/es diff --git a/wiki/translations/es/Part_Torus.md b/wiki/translations/es/Part_Torus.md index 95a6cb7a83..250afbc5ec 100644 --- a/wiki/translations/es/Part_Torus.md +++ b/wiki/translations/es/Part_Torus.md @@ -1,3 +1,4 @@ +# Part Torus/es --- - GuiCommand:/es Name:Part Torus Name/es:Part Torus MenuLocation:Part → Torus |Workbenches:[SeeAlso:[[Part_CreatePrimitives/es|Part CreatePrimitives](Part_Workbench/es___Part]],_Complete.md)--- @@ -54,10 +55,7 @@ as well as the standard set of placement parameters. The pictures below give a v ![](images/TorusExampleAngle2.jpg ) The parameter Angle2 has a value of 90°. -![](images/TorusExampleAngle3.jpg ) The parameter Angle3 has a value of 90°. +![](images/TorusExampleAngle3.jpg ) The parameter Angle3 has a value of 90°. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Torus/es diff --git a/wiki/translations/es/Part_Tube.md b/wiki/translations/es/Part_Tube.md index f4157aa958..bd85facab6 100644 --- a/wiki/translations/es/Part_Tube.md +++ b/wiki/translations/es/Part_Tube.md @@ -8,6 +8,8 @@ Seealso:[Part CreatePrimitives](Part_CreatePrimitives/es.md) --- +# Part Tube/es + @@ -55,5 +57,5 @@ Para editar el tubo: - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Tube/es diff --git a/wiki/translations/es/Part_Union.md b/wiki/translations/es/Part_Union.md index 0c9de2ff07..ec61d8e8af 100644 --- a/wiki/translations/es/Part_Union.md +++ b/wiki/translations/es/Part_Union.md @@ -1,2 +1,5 @@ # Part Union/es 1. REDIRECT [Part\_Fuse/es](Part_Fuse/es.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Union/es diff --git a/wiki/translations/es/Part_Wedge.md b/wiki/translations/es/Part_Wedge.md index 45edb0fc64..37314c263b 100644 --- a/wiki/translations/es/Part_Wedge.md +++ b/wiki/translations/es/Part_Wedge.md @@ -1,3 +1,4 @@ +# Part Wedge/es --- - GuiCommand:/es Name:Part Wedge Name/es:Part Wedge MenuLocation:Part -> [|Workbenches:[[Part_Workbench/es Part](Part_CreatePrimitives/es___Part_CreatePrimitives]]_->_Cuña.md)|SeeAlso:[Part CreatePrimitives](Part_CreatePrimitives/es.md)--- @@ -65,8 +66,5 @@ Crea un objeto paramétrico Cuña. Esta Cuña se predetermina a un cuadrado más ![](images/Wedge_examples.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Wedge/es diff --git a/wiki/translations/es/Part_Workbench.md b/wiki/translations/es/Part_Workbench.md index 7415c48017..3bb4c7008f 100644 --- a/wiki/translations/es/Part_Workbench.md +++ b/wiki/translations/es/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/es 1. REDIRECT [Part\_Module/es](Part_Module/es.md) + +--- +[documentation index](../README.md) > Part Workbench/es diff --git a/wiki/translations/es/Part_and_PartDesign.md b/wiki/translations/es/Part_and_PartDesign.md index 3486e3ea54..ceb844e77b 100644 --- a/wiki/translations/es/Part_and_PartDesign.md +++ b/wiki/translations/es/Part_and_PartDesign.md @@ -1,5 +1,5 @@ # Part and PartDesign/es - {{TOCright}} +{{TOCright}} ## Introducción @@ -172,4 +172,7 @@ Los bancos de trabajo Part y PartDesign pueden ser usados juntos con cuidado, cr {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part and PartDesign/es diff --git a/wiki/translations/es/Part_scripting.md b/wiki/translations/es/Part_scripting.md index 7ebfcb9ee2..babc8ff869 100644 --- a/wiki/translations/es/Part_scripting.md +++ b/wiki/translations/es/Part_scripting.md @@ -1,7 +1,4 @@ # Part scripting/es - - - {{TOCright}} ## Introducción @@ -156,3 +153,6 @@ Head to the [Topological data scripting](Topological_data_scripting.md) page if }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part scripting/es diff --git a/wiki/translations/es/Path_Array.md b/wiki/translations/es/Path_Array.md index f15bfd109b..86fc69d403 100644 --- a/wiki/translations/es/Path_Array.md +++ b/wiki/translations/es/Path_Array.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Array/es + @@ -60,4 +62,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Array/es diff --git a/wiki/translations/es/Path_FAQ.md b/wiki/translations/es/Path_FAQ.md index ded0063b8c..97f2d711bc 100644 --- a/wiki/translations/es/Path_FAQ.md +++ b/wiki/translations/es/Path_FAQ.md @@ -1,9 +1,4 @@ # Path FAQ/es - - - - - ## ¿Cuántos ejes puede manejar Ambiente de trabajo Trayectoria? At the moment, Version 0.18, Path Workbench can handle up to 3 axis milling. Currently, 4th-axis capabilities are under development for the next official release, with some Path Workbench operations already upgraded to basic 4th-axis status. @@ -231,4 +226,7 @@ This is only a matter of displaying the path. You can change this in the prefere {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FAQ/es diff --git a/wiki/translations/es/Path_Fixture.md b/wiki/translations/es/Path_Fixture.md index d00182b5dc..354d2753d4 100644 --- a/wiki/translations/es/Path_Fixture.md +++ b/wiki/translations/es/Path_Fixture.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Path Fixture/es + @@ -64,4 +66,7 @@ The G59 Fixture is used to expand available fixtures. The degree of expansion im {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Fixture/es diff --git a/wiki/translations/es/Path_Job.md b/wiki/translations/es/Path_Job.md index 64f1626711..587ed43c26 100644 --- a/wiki/translations/es/Path_Job.md +++ b/wiki/translations/es/Path_Job.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Job/es + @@ -88,4 +90,7 @@ If you have a job which contends more than one path operation, you can determine {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Job/es diff --git a/wiki/translations/es/Path_Pocket_3D.md b/wiki/translations/es/Path_Pocket_3D.md index e96df8f2eb..15b74010e8 100644 --- a/wiki/translations/es/Path_Pocket_3D.md +++ b/wiki/translations/es/Path_Pocket_3D.md @@ -1,3 +1,4 @@ +# Path Pocket 3D/es --- - GuiCommand: Name:Path 3DPocket Workbenches:[[Path Workbench Banco de trabajo Trayectoria]]|MenuLocation:Trayectoria → Vaciado 3D ShortCut: SeeAlso:--- @@ -209,4 +210,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Pocket 3D/es diff --git a/wiki/translations/es/Path_Postprocessor_Customization.md b/wiki/translations/es/Path_Postprocessor_Customization.md index f0f7e0a0e4..4a6c630347 100644 --- a/wiki/translations/es/Path_Postprocessor_Customization.md +++ b/wiki/translations/es/Path_Postprocessor_Customization.md @@ -1,10 +1,4 @@ # Path Postprocessor Customization/es - - - - - - {{TOCright}} ## Introducción @@ -133,4 +127,7 @@ Verá que ambas funciones también llaman a la función \"linenumber()\". Si el {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Postprocessor Customization/es diff --git a/wiki/translations/es/Path_Workbench.md b/wiki/translations/es/Path_Workbench.md index 0f138a0b2e..dcb73e16f9 100644 --- a/wiki/translations/es/Path_Workbench.md +++ b/wiki/translations/es/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/es - - - - - -El icono del Ambiente de trabajo Trayectoria +# El icono del Ambiente de trabajo Trayectoria Path Workbench/es {{TOCright}} @@ -486,3 +480,6 @@ See [Path scripting](Path_scripting.md). }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench/es diff --git a/wiki/translations/es/Path_scripting.md b/wiki/translations/es/Path_scripting.md index 3e091fb587..57035a6bd4 100644 --- a/wiki/translations/es/Path_scripting.md +++ b/wiki/translations/es/Path_scripting.md @@ -1,10 +1,4 @@ # Path scripting/es - - - - - - {{TOCright}} ## Introducción @@ -459,3 +453,6 @@ doc.recompute() }} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path scripting/es diff --git a/wiki/translations/es/Pivy.md b/wiki/translations/es/Pivy.md index eb46ebc693..e9354f66b4 100644 --- a/wiki/translations/es/Pivy.md +++ b/wiki/translations/es/Pivy.md @@ -1,7 +1,4 @@ # Pivy/es - - - {{TOCright}} ## Introduction @@ -258,3 +255,6 @@ These links provide reference documentation for Coin v3.x. The differences with }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Pivy/es diff --git a/wiki/translations/es/Placement.md b/wiki/translations/es/Placement.md index b438633af5..0667b0f22a 100644 --- a/wiki/translations/es/Placement.md +++ b/wiki/translations/es/Placement.md @@ -1,6 +1,4 @@ # Placement/es - - ## Introducción **Placement o Ubicación** es el modo en que Freecad especifica la localización y la inclinación (orientación) de un objeto en el espacio. Placement puede ser especificado de múltiples formas y manipulado a través de [Código](Python_scripting_tutorial/es#Vectors_and_placements.md), del [Editor de propiedades](Property_editor/es.md) o seleccionando desde el menú **Editar → Ubicación...** para abrir el [Panel de tareas de Ubicación](Std_Placement.md). @@ -236,5 +234,5 @@ Para hacer que la ubicación del \"Boceto\" sea la misma que la del \"Cilindro\" - Este tutorial: [Aeroplano](Aeroplane/es.md) abarca los mecanismos del cambio de ubicación de un objeto extensivamente. - - +--- +[documentation index](../README.md) > Placement/es diff --git a/wiki/translations/es/Placement_API.md b/wiki/translations/es/Placement_API.md index e767a9de8a..4929ea7f56 100644 --- a/wiki/translations/es/Placement_API.md +++ b/wiki/translations/es/Placement_API.md @@ -1,5 +1,5 @@ # Placement API/es - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Una ubicación en FreeCAD es un objeto definiendo una posición y rotación. @@ -41,3 +41,6 @@ myObj.Placement = pl [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Placement API/es diff --git a/wiki/translations/es/Plot_Axes.md b/wiki/translations/es/Plot_Axes.md index fd370765d9..f45ef8e32e 100644 --- a/wiki/translations/es/Plot_Axes.md +++ b/wiki/translations/es/Plot_Axes.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Axes/es + ## Description The standard plot module already provides a basic tool to control the plot axes . But that tool is clearly insufficient when multi-axes plots have to be handled, as is the case in the [Multi-axes plot tutorial](Plot_MultiAxes_tutorial.md). To overcome that limitation you can install the [Plot Workbench](Plot_Workbench.md) using the [Add-on manager](Std_AddonMgr.md), so a more complete tool to edit the plot axes will be available. @@ -46,3 +48,6 @@ Finally you can set the minimum and maximum values considered for each set of ax }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Axes/es diff --git a/wiki/translations/es/Plot_Basic_tutorial.md b/wiki/translations/es/Plot_Basic_tutorial.md index 9c22b72022..9b6fa028a8 100644 --- a/wiki/translations/es/Plot_Basic_tutorial.md +++ b/wiki/translations/es/Plot_Basic_tutorial.md @@ -1,7 +1,4 @@ # Plot Basic tutorial/es - - -
@@ -394,3 +391,6 @@ También puede seleccionar el tamaño de la imagen de salida en pulgadas, por ej }} {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Basic tutorial/es diff --git a/wiki/translations/es/Plot_Grid.md b/wiki/translations/es/Plot_Grid.md index 3a8d25e9a1..e9e1e6fe0c 100644 --- a/wiki/translations/es/Plot_Grid.md +++ b/wiki/translations/es/Plot_Grid.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Grid/es + ## Description This tool allows the user to enable/disable the grid lines on a specific plot. @@ -26,3 +28,6 @@ This tool acts on the active set of axis. In case of multi-axes plots you can se }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Grid/es diff --git a/wiki/translations/es/Plot_Labels.md b/wiki/translations/es/Plot_Labels.md index 73768fa255..e31603250d 100644 --- a/wiki/translations/es/Plot_Labels.md +++ b/wiki/translations/es/Plot_Labels.md @@ -1,3 +1,4 @@ +# Plot Labels/es --- - GuiCommand:/es Name:Plot Labels MenuLocation:Plot → Labels‏‎ |Workbenches:[[Plot Module/es Plot]]|Shortcut: SeeAlso:--- @@ -34,3 +35,6 @@ Select the plot tab that you want to edit, and run this tool. In case of multi-a }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Labels/es diff --git a/wiki/translations/es/Plot_Legend.md b/wiki/translations/es/Plot_Legend.md index 974c1a3992..442db40f9f 100644 --- a/wiki/translations/es/Plot_Legend.md +++ b/wiki/translations/es/Plot_Legend.md @@ -1,3 +1,4 @@ +# Plot Legend/es --- - GuiCommand:/es Name:Plot Legend MenuLocation:Plot → Legend‏‎ |Workbenches:[[Plot Module/es Plot]]|Shortcut: SeeAlso:--- @@ -25,3 +26,6 @@ Remember that the styles and labels of the data series can be edited with the [d }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Legend/es diff --git a/wiki/translations/es/Plot_Module.md b/wiki/translations/es/Plot_Module.md index 9cdbe65210..ea094d729b 100644 --- a/wiki/translations/es/Plot_Module.md +++ b/wiki/translations/es/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/es - - -Plot workbench icon +# Plot workbench icon Plot Module/es {{TOCright}} @@ -92,3 +89,6 @@ Siendo el módulo de graficado una adaptación de `matplotlib`, usted puede hace }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/es diff --git a/wiki/translations/es/Plot_MultiAxes_tutorial.md b/wiki/translations/es/Plot_MultiAxes_tutorial.md index 168c4a1491..522acff7d7 100644 --- a/wiki/translations/es/Plot_MultiAxes_tutorial.md +++ b/wiki/translations/es/Plot_MultiAxes_tutorial.md @@ -1,7 +1,4 @@ # Plot MultiAxes tutorial/es - - -
@@ -333,3 +330,6 @@ Now you can save your work. See the [previous tutorial](Plot_Basic_tutorial.md) }} {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot MultiAxes tutorial/es diff --git a/wiki/translations/es/Plot_Positions.md b/wiki/translations/es/Plot_Positions.md index f534248f37..18f5132bb7 100644 --- a/wiki/translations/es/Plot_Positions.md +++ b/wiki/translations/es/Plot_Positions.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Positions/es + ## Description This tool allows the user to edit the position of some items like titles, axes labels and legend. @@ -31,3 +33,6 @@ Select the plot tab that you want to edit, and run this tool. Then you can selec }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Positions/es diff --git a/wiki/translations/es/Plot_Save.md b/wiki/translations/es/Plot_Save.md index b16cadf601..6dc70d4c80 100644 --- a/wiki/translations/es/Plot_Save.md +++ b/wiki/translations/es/Plot_Save.md @@ -1,3 +1,4 @@ +# Plot Save/es --- - GuiCommand:/es Name:Plot Save Workbenches:[[Plot Module/es Plot]]|MenuLocation:Plot → Guardar gráfico--- @@ -55,3 +56,6 @@ Selecciona el gráfico que deseas salvar mediante las pestañas de la vista prin }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Save/es diff --git a/wiki/translations/es/Plot_Series.md b/wiki/translations/es/Plot_Series.md index 77e58cc404..9990bf3220 100644 --- a/wiki/translations/es/Plot_Series.md +++ b/wiki/translations/es/Plot_Series.md @@ -5,6 +5,8 @@ ‏‎ Workbenches:[Plot](Plot_Module.md) --- +# Plot Series/es + ## Description The standard plot module already provides a tool to edit the plot series style . But if you install the [Plot Workbench](Plot_Workbench.md) using the [Add-on manager](Std_AddonMgr.md), a more complete and straigthforward tool will be available. @@ -36,3 +38,6 @@ Select the plot tab that you want to edit, and run this tool. Then select the se }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Series/es diff --git a/wiki/translations/es/Plot_Workbench.md b/wiki/translations/es/Plot_Workbench.md index ab1c9b232d..bdec172d50 100644 --- a/wiki/translations/es/Plot_Workbench.md +++ b/wiki/translations/es/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/es 1. REDIRECT [Plot\_Module/es](Plot_Module/es.md) + +--- +[documentation index](../README.md) > Plot Workbench/es diff --git a/wiki/translations/es/Plugin_Loader.md b/wiki/translations/es/Plugin_Loader.md index 261b71ddbc..7d54afc960 100644 --- a/wiki/translations/es/Plugin_Loader.md +++ b/wiki/translations/es/Plugin_Loader.md @@ -1,2 +1,5 @@ # Plugin Loader/es 1. REDIRECT [Std\_AddonMgr/es](Std_AddonMgr/es.md) + +--- +[documentation index](../README.md) > Plugin Loader/es diff --git a/wiki/translations/es/Points_Module.md b/wiki/translations/es/Points_Module.md index c3b2b5dcc7..df4688693e 100644 --- a/wiki/translations/es/Points_Module.md +++ b/wiki/translations/es/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/es 1. REDIRECT [Points\_Workbench/es](Points_Workbench/es.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/es diff --git a/wiki/translations/es/Points_Workbench.md b/wiki/translations/es/Points_Workbench.md index 19fadf1970..0183561e7f 100644 --- a/wiki/translations/es/Points_Workbench.md +++ b/wiki/translations/es/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/es - - - - - -El icono del Ambiente de trabajo Puntos +# El icono del Ambiente de trabajo Puntos Points Workbench/es ## Introducción @@ -57,3 +51,6 @@ Se puede acceder a todas las herramientas del ambiente de trabajo de puntos desd }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/es diff --git a/wiki/translations/es/Power_users_hub.md b/wiki/translations/es/Power_users_hub.md index dafd2b7e6f..603ae186ab 100644 --- a/wiki/translations/es/Power_users_hub.md +++ b/wiki/translations/es/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/es - +# Power users hub/es ------------------------------------------------------------------------ @@ -135,3 +134,6 @@ En el [Portal de la Comunidad](FreeCAD_Community_Portal/es.md), puedes encontrar }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/es diff --git a/wiki/translations/es/Preferences_Editor.md b/wiki/translations/es/Preferences_Editor.md index 1498e1aec4..85be38fbeb 100644 --- a/wiki/translations/es/Preferences_Editor.md +++ b/wiki/translations/es/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/es - - - - - - {{TOCright}} ## Introducción @@ -686,3 +680,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/es diff --git a/wiki/translations/es/Project_template.md b/wiki/translations/es/Project_template.md index 28f362ace0..9248d1f2ff 100644 --- a/wiki/translations/es/Project_template.md +++ b/wiki/translations/es/Project_template.md @@ -1,5 +1,5 @@ # Project template/es - Esta plantilla establece las directrices para el proyecto de desarrollo de FreeCAD. Se siguen las reglas del proceso definido en la metodología [Getting things done](http://es.wikipedia.org/wiki/Getting_Things_Done). Los proyectos se recopilan en el [Mapa de desarrollo](Development_roadmap/es.md). +Esta plantilla establece las directrices para el proyecto de desarrollo de FreeCAD. Se siguen las reglas del proceso definido en la metodología [Getting things done](http://es.wikipedia.org/wiki/Getting_Things_Done). Los proyectos se recopilan en el [Mapa de desarrollo](Development_roadmap/es.md). *Comencemos revisando el modelo de planificación natural. El modelo de planificación natural en realidad no es nada nuevo. No es ningún fantástico nuevo modelo It is not some fantastic new model inventado por David Allen para ayudarnos a planificar y gestionar nuestros proyectos. Es sin embargo, el modelo de planificación recomendado por David en su libro Getting Things Done. El modelo de planificación natural está basado sobre la planificación que hacemos en una base diaria, utilizando simplemente nuestros cerebros. Por ejemplo, piensa en cuantas tareas planeamos en el día a día que ni siquiera nos molestamos en escribir porque son clasificadas como tareas ordinarias. Por ejemplo, vestirse, o conducir hasta el trabajo. Todas ellas se podrían considerar tareas pero simplemente seguimos adelante y las planeamos sin pensar nada en absoluto. Utilizamos los aspectos de planificación de nuestro cerebro que son condicionados para este tipo natural de planificación.* @@ -34,3 +34,6 @@ [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Project template/es diff --git a/wiki/translations/es/Property.md b/wiki/translations/es/Property.md index 5003136d96..635e68cca6 100644 --- a/wiki/translations/es/Property.md +++ b/wiki/translations/es/Property.md @@ -1,6 +1,4 @@ # Property/es - - ## Introduction @@ -122,3 +120,6 @@ They are imported and initialized in `[https://github.com/FreeCAD/FreeCAD/blob/9 }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/es diff --git a/wiki/translations/es/Property_editor.md b/wiki/translations/es/Property_editor.md index f3ce8e0650..eb0fe0f30d 100644 --- a/wiki/translations/es/Property_editor.md +++ b/wiki/translations/es/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/es - - - - - - {{TOCright}} ## Introducción @@ -386,4 +380,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/es diff --git a/wiki/translations/es/PySide.md b/wiki/translations/es/PySide.md index b16e9ffa58..b98151c042 100644 --- a/wiki/translations/es/PySide.md +++ b/wiki/translations/es/PySide.md @@ -1,7 +1,4 @@ # PySide/es - - - {{TOCright}} ## Introduction @@ -81,3 +78,6 @@ The PySide documentation refers to the Python-style classes; however, since Qt i }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide/es diff --git a/wiki/translations/es/PySide_Beginner_Examples.md b/wiki/translations/es/PySide_Beginner_Examples.md index c64c933090..af079a804a 100644 --- a/wiki/translations/es/PySide_Beginner_Examples.md +++ b/wiki/translations/es/PySide_Beginner_Examples.md @@ -1,6 +1,4 @@ # PySide Beginner Examples/es - - ## Introducción El propósito de esta página es cubrir ejemplos de nivel de principiante del [PySide](PySide/es.md) Administrador de la interfaz gráfica de usuario (hay páginas que acompañan a [Ejemplos intermedios de PySide](PySide_Intermediate_Examples/es.md) y [Ejemplos avanzados de PySide](PySide_Advanced_Examples/es.md)). @@ -167,3 +165,6 @@ buttonBox = QtGui.QDialogButtonBox(QtCore.Qt.Vertical) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Beginner Examples/es diff --git a/wiki/translations/es/Python.md b/wiki/translations/es/Python.md index 8459b79815..74014befd2 100644 --- a/wiki/translations/es/Python.md +++ b/wiki/translations/es/Python.md @@ -1,5 +1,5 @@ # Python/es - **FreeCAD fue originalmente diseñado para trabajar con Python 2.x. Esta serie terminó con la versión 2.7.18 del 20 de abril de 2020 y es sucedida por Python 3. El desarrollo posterior de FreeCAD se hará exclusivamente con Python 3, y no se apoyará la compatibilidad hacia atrás.** +**FreeCAD fue originalmente diseñado para trabajar con Python 2.x. Esta serie terminó con la versión 2.7.18 del 20 de abril de 2020 y es sucedida por Python 3. El desarrollo posterior de FreeCAD se hará exclusivamente con Python 3, y no se apoyará la compatibilidad hacia atrás.** ## Descripción @@ -127,3 +127,6 @@ Structure = Arch.make_structure(Wire, name="Big pillar") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:API Documentation](Category:API_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python/es diff --git a/wiki/translations/es/PythonOCC.md b/wiki/translations/es/PythonOCC.md index b57f11a260..64ede8467d 100644 --- a/wiki/translations/es/PythonOCC.md +++ b/wiki/translations/es/PythonOCC.md @@ -1,6 +1,4 @@ # PythonOCC/es - - ## Descripción @@ -57,3 +55,6 @@ You can also self compile pythonOCC (see [instructions](https://github.com/tpavi }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PythonOCC/es diff --git a/wiki/translations/es/Python_console.md b/wiki/translations/es/Python_console.md index 048b18ecb0..abe7e3dd86 100644 --- a/wiki/translations/es/Python_console.md +++ b/wiki/translations/es/Python_console.md @@ -1,5 +1,5 @@ # Python console/es - **(Enero 2020) FreeCAD fue diseñado originalmente para trabajar con Python 2. Desde que Python 2 llegó al final de su vida útil en 2020, el desarrollo futuro de FreeCAD se hará exclusivamente con Python 3, y no se soportará la compatibilidad hacia atrás.** +**(Enero 2020) FreeCAD fue diseñado originalmente para trabajar con Python 2. Desde que Python 2 llegó al final de su vida útil en 2020, el desarrollo futuro de FreeCAD se hará exclusivamente con Python 3, y no se soportará la compatibilidad hacia atrás.** ## Introducción @@ -86,4 +86,7 @@ Right click on the Python console shows some commands: {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Python console/es diff --git a/wiki/translations/es/Python_scripting_tutorial.md b/wiki/translations/es/Python_scripting_tutorial.md index 6a5f927509..669a6428bb 100644 --- a/wiki/translations/es/Python_scripting_tutorial.md +++ b/wiki/translations/es/Python_scripting_tutorial.md @@ -1,7 +1,4 @@ # Python scripting tutorial/es - - - {{TOCright}} ## Introducción @@ -294,3 +291,6 @@ Ahora estás listo para profundizar en guionización FreeCAD. Así que dirígete }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python scripting tutorial/es diff --git a/wiki/translations/es/Qt_Example.md b/wiki/translations/es/Qt_Example.md index 187d89d653..c4defa8d26 100644 --- a/wiki/translations/es/Qt_Example.md +++ b/wiki/translations/es/Qt_Example.md @@ -1,5 +1,5 @@ # Qt Example/es - {{Macro/es +{{Macro/es |Name=Macro Qt Ejemplo |Icon=MEPlan.png |Description=Describe los comandos de Qt. @@ -807,3 +807,6 @@ MainWindow.show() ¡Buen provecho! [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Qt Example/es diff --git a/wiki/translations/es/Quality_project.md b/wiki/translations/es/Quality_project.md index 4292ec0cfd..541843031c 100644 --- a/wiki/translations/es/Quality_project.md +++ b/wiki/translations/es/Quality_project.md @@ -1,7 +1,4 @@ # Quality project/es - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -44,3 +41,6 @@ Work through all the unfinished commands and make a documentation: [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Quality project/es diff --git a/wiki/translations/es/Ray_Tracing_Workbench.md b/wiki/translations/es/Ray_Tracing_Workbench.md index f42931627d..88e83bc020 100644 --- a/wiki/translations/es/Ray_Tracing_Workbench.md +++ b/wiki/translations/es/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/es 1. REDIRECT [Raytracing\_Workbench/es](Raytracing_Workbench/es.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/es diff --git a/wiki/translations/es/Raytracing_Module.md b/wiki/translations/es/Raytracing_Module.md index 00af7cbbec..bfc8173113 100644 --- a/wiki/translations/es/Raytracing_Module.md +++ b/wiki/translations/es/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/es 1. REDIRECT [Raytracing\_Workbench/es](Raytracing_Workbench/es.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/es diff --git a/wiki/translations/es/Raytracing_New.md b/wiki/translations/es/Raytracing_New.md index ac7a58bdb1..feb6348d8e 100644 --- a/wiki/translations/es/Raytracing_New.md +++ b/wiki/translations/es/Raytracing_New.md @@ -1,3 +1,4 @@ +# Raytracing New/es --- - GuiCommand:/es Name:Raytracing New Name/es:Raytracing New MenuLocation:Raytracing → New‏‎ |Workbenches:[[Raytracing_Workbench/es Raytracing]]|Shortcut: SeeAlso:--- @@ -27,4 +28,7 @@ Insert new PovRay project in the document. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing New/es diff --git a/wiki/translations/es/Raytracing_Workbench.md b/wiki/translations/es/Raytracing_Workbench.md index 0db58d5c3b..bf80027727 100644 --- a/wiki/translations/es/Raytracing_Workbench.md +++ b/wiki/translations/es/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/es - - - **L' Ambiente de trabajo Trazado de rayos es esencialmente obsoleta. Un nuevo desarrollo está ocurriendo en el [https://github.com/FreeCAD/FreeCAD-render Render Ambiente de trabajo], que se pretende que sea su sustituto. Este Ambiente de trabajo está completamente programado en Python, así que es mucho más fácil de ampliar. Nevertheless, the information in this page is generally useful for the new workbench, as both modules work basically in the same way. @@ -154,3 +151,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/es diff --git a/wiki/translations/es/Raytracing_WriteCamera.md b/wiki/translations/es/Raytracing_WriteCamera.md index 3b8dc9f23a..1ac21af347 100644 --- a/wiki/translations/es/Raytracing_WriteCamera.md +++ b/wiki/translations/es/Raytracing_WriteCamera.md @@ -1,3 +1,4 @@ +# Raytracing WriteCamera/es --- - GuiCommand:/es Name:Raytracing Camera‏‎ Name/es:Raytracing Camera MenuLocation:Raytracing → Camera‏‎ |Workbenches:[[Raytracing_Workbench/es Raytracing]]|Shortcut: SeeAlso:--- @@ -28,4 +29,7 @@ Exports the current camera properties to a pov-file for use in a POV-Ray project {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteCamera/es diff --git a/wiki/translations/es/Raytracing_WritePart.md b/wiki/translations/es/Raytracing_WritePart.md index 234e42776b..0c8b449640 100644 --- a/wiki/translations/es/Raytracing_WritePart.md +++ b/wiki/translations/es/Raytracing_WritePart.md @@ -1,3 +1,4 @@ +# Raytracing WritePart/es --- - GuiCommand:/es Name:Raytracing Part‏‎ Name/es:Raytracing Part MenuLocation:Raytracing → Part‏‎ |Workbenches:[[Raytracing_Workbench/es Raytracing]]|Shortcut: SeeAlso:--- @@ -23,4 +24,7 @@ Exports the selected part to a pov-file for use in a POV-Ray project. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WritePart/es diff --git a/wiki/translations/es/Raytracing_WriteView.md b/wiki/translations/es/Raytracing_WriteView.md index e5af0b210d..d9578c6889 100644 --- a/wiki/translations/es/Raytracing_WriteView.md +++ b/wiki/translations/es/Raytracing_WriteView.md @@ -1,3 +1,4 @@ +# Raytracing WriteView/es --- - GuiCommand:/es Name:Raytracing Export‏‎ MenuLocation:Raytracing → Export‏‎ |Workbenches:[[Raytracing_Workbench/es Raytracing]]|Shortcut: SeeAlso:--- @@ -29,4 +30,7 @@ Exports the current view properties to a pov-file for use in a POV-Ray project. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteView/es diff --git a/wiki/translations/es/Raytracing_project.md b/wiki/translations/es/Raytracing_project.md index 207c7f4e92..beda5d643e 100644 --- a/wiki/translations/es/Raytracing_project.md +++ b/wiki/translations/es/Raytracing_project.md @@ -1,7 +1,4 @@ # Raytracing project/es - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -114,3 +111,6 @@ Se muestra una pieza creada utilizando Diseño de Piezas / Croquizador y luego r [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing project/es diff --git a/wiki/translations/es/Release_notes_0.11.md b/wiki/translations/es/Release_notes_0.11.md index 73a3a349eb..ef2280f8b9 100644 --- a/wiki/translations/es/Release_notes_0.11.md +++ b/wiki/translations/es/Release_notes_0.11.md @@ -66,3 +66,6 @@ Una captura de pantalla de la versión 0.11 {{languages/es | {{en|Release_notes_0.11}} {{de|Release_notes_0.11/de}} {{fr|Release_notes_0.11/fr}} {{it|Release_notes_0.11/it}} {{pl|Release_notes_0.11/pl}} {{ru|Release_notes_0.11/ru}} }} [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.11/es diff --git a/wiki/translations/es/Release_notes_0.12.md b/wiki/translations/es/Release_notes_0.12.md index 6338506f1a..6856d2abbe 100644 --- a/wiki/translations/es/Release_notes_0.12.md +++ b/wiki/translations/es/Release_notes_0.12.md @@ -47,3 +47,6 @@ Versiones anteriores: [0.11](Release_notes_0.11/es.md) {{languages/es | {{en|Release_notes_0.12}} {{fr|Release_notes_0.12/fr}} {{it|Release_notes_0.12/it}} {{pl|Release_notes_0.12/pl}} {{ru|Release_notes_0.12/ru}} }} [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.12/es diff --git a/wiki/translations/es/Release_notes_0.13.md b/wiki/translations/es/Release_notes_0.13.md index b1204b260c..234b6f2118 100644 --- a/wiki/translations/es/Release_notes_0.13.md +++ b/wiki/translations/es/Release_notes_0.13.md @@ -1,5 +1,5 @@ # Release notes 0.13/es - Este es un resumen de los cambios más interesantes realizados en FreeCAD desde la última versión. Mira [aquí](http://www.freecadweb.org/tracker/changelog_page.php) para ver una lista completa de los cambios. +Este es un resumen de los cambios más interesantes realizados en FreeCAD desde la última versión. Mira [aquí](http://www.freecadweb.org/tracker/changelog_page.php) para ver una lista completa de los cambios.
@@ -147,3 +147,6 @@ Geometry (Points, Lines and Curves) may be selected by dragging on the backgroun - For more information see the [OpenSCAD Workbench](OpenSCAD_Workbench.md) page on the FreeCAD wiki [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.13/es diff --git a/wiki/translations/es/Release_notes_0.14.md b/wiki/translations/es/Release_notes_0.14.md index ded127b067..fb3d62ed2a 100644 --- a/wiki/translations/es/Release_notes_0.14.md +++ b/wiki/translations/es/Release_notes_0.14.md @@ -1,6 +1,4 @@ # Release notes 0.14/es - - FreeCAD 0.14 was released on July 1, 2014. This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -232,3 +230,6 @@ Much work has been done on both FreeCAD and [IfcOpenShell](http://www.ifcopenshe The full list of bugfixes and new features can be read on [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.14/es diff --git a/wiki/translations/es/Release_notes_0.15.md b/wiki/translations/es/Release_notes_0.15.md index 6beeaa1ff2..a3aba4d7b0 100644 --- a/wiki/translations/es/Release_notes_0.15.md +++ b/wiki/translations/es/Release_notes_0.15.md @@ -1,5 +1,5 @@ # Release notes 0.15/es - FreeCAD 0.15 was released on April 8, 2015. This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) +FreeCAD 0.15 was released on April 8, 2015. This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -152,3 +152,6 @@ The [WorkFeature macro](https://github.com/Rentlau/WorkFeature) adds a wide rang [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.15/es diff --git a/wiki/translations/es/Release_notes_0.16.md b/wiki/translations/es/Release_notes_0.16.md index 822e34cada..c7d275efcf 100644 --- a/wiki/translations/es/Release_notes_0.16.md +++ b/wiki/translations/es/Release_notes_0.16.md @@ -1,5 +1,5 @@ # Release notes 0.16/es - FreeCAD 0.16 was released on 18. April, 2016, get it from [Github](https://github.com/FreeCAD/FreeCAD/releases). This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.15](Release_notes_0.15.md) - [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) +FreeCAD 0.16 was released on 18. April, 2016, get it from [Github](https://github.com/FreeCAD/FreeCAD/releases). This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.15](Release_notes_0.15.md) - [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -121,3 +121,6 @@ A couple of new [addons workbenches](https://github.com/FreeCAD/FreeCAD-addons) ![](images/Macro_installer_02.jpg ) [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.16/es diff --git a/wiki/translations/es/Release_notes_0.17.md b/wiki/translations/es/Release_notes_0.17.md index 51cc99a276..e3860fef48 100644 --- a/wiki/translations/es/Release_notes_0.17.md +++ b/wiki/translations/es/Release_notes_0.17.md @@ -1,7 +1,4 @@ # Release notes 0.17/es - - -
\"Esta edición de FreeCad está dedicada a nuestro amigo Roland Frank [quien nos dejó el 2017](https://forum.freecadweb.org/viewtopic.php?f=8&t=25673). Él fue un activo y muy apreciado miembro del foro de FreeCAD. Además sus video-tutoriales en los canales de Youtube [Learn FreeCAD](https://www.youtube.com/watch?v=_HEvhclR4-o&list=PL6fZ68Cq3L8k0JhxnIVjZQN26cn9idJrj) y [BPLFRE](https://www.youtube.com/watch?v=m49z0weonog&list=PLsrwVwvqYb8G4Ri0iz1JIebsOXkgoytAY) ayudaron a muchas personas a iniciarse en FreeCAD.\" @@ -389,3 +386,6 @@ Algunos de los nuevos módulos de comunidad que se crearon. - [Kicad StepUp Workbench](https://www.freecadweb.org/wiki/KicadStepUp_Workbench) está destinado a ayudar a los usuarios de KiCad y FreeCAD en la colaboración ECAD y MCAD. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.17/es diff --git a/wiki/translations/es/Release_notes_0.18.md b/wiki/translations/es/Release_notes_0.18.md index d42bb0d543..ffcc3ce709 100644 --- a/wiki/translations/es/Release_notes_0.18.md +++ b/wiki/translations/es/Release_notes_0.18.md @@ -1,6 +1,4 @@ # Release notes 0.18/es - - FreeCAD 0.18 was released on 12 March, 2019, get it from the [Download](Download.md) page. This is a summary of the most interesting changes. The complete list of changes can be found in the [MantisBT bugtracker FC 0.18 changelog](https://www.freecadweb.org/tracker/changelog_page.php?version_id=78). Older FreeCAD release notes can be found in [Feature list](Feature_list#Release_notes.md). @@ -220,3 +218,6 @@ Some of the new community modules that were actively developed during the 0.18 d - [Defeaturing Workbench](Defeaturing_Workbench.md) is intended for editing imported STEP models, removal of the selected features from the model. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.18/es diff --git a/wiki/translations/es/Release_notes_0.19.md b/wiki/translations/es/Release_notes_0.19.md index 38f2d9b276..4dbc30b70e 100644 --- a/wiki/translations/es/Release_notes_0.19.md +++ b/wiki/translations/es/Release_notes_0.19.md @@ -1,5 +1,5 @@ # Release notes 0.19/es - {{TOCright}} +{{TOCright}} **FreeCAD 0.19** was released on **March 20th, 2021**, get it from the [Download](Download.md) page. This is a summary of the most interesting changes. The complete list of changes can be found in the [MantisBT bugtracker FC 0.19 changelog](https://www.freecadweb.org/tracker/changelog_page.php?version_id=122). @@ -777,3 +777,6 @@ these are the new workbenches created in this development cycle, or older workbe +-------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.19/es diff --git a/wiki/translations/es/Release_notes_0.20.md b/wiki/translations/es/Release_notes_0.20.md index 752f93fa8f..402f365d69 100644 --- a/wiki/translations/es/Release_notes_0.20.md +++ b/wiki/translations/es/Release_notes_0.20.md @@ -1,7 +1,4 @@ # Release notes 0.20/es - - - **Esta página registra las nuevas características a medida que se añaden a la versión de desarrollo de FreeCAD, que actualmente es la 0.20. Cuando se produzca la congelación de las características de la 0.20, se borrarán estos mensajes y no se añadirán más características a esta página. Se espera que FreeCAD 0.20 sea lanzado en 202x.** @@ -215,3 +212,6 @@ There is also a text box for feedback of OpenSCAD errors. ### Trails, PyTrails, Turns, pivy\_trackers, and Geomatics [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.20/es diff --git a/wiki/translations/es/Release_notes_011.md b/wiki/translations/es/Release_notes_011.md index 7935663a06..46b30ee6b1 100644 --- a/wiki/translations/es/Release_notes_011.md +++ b/wiki/translations/es/Release_notes_011.md @@ -1,2 +1,5 @@ # Release notes 011/es 1. REDIRECT [Release notes 0.11/es](Release_notes_0.11/es.md) + +--- +[documentation index](../README.md) > Release notes 011/es diff --git a/wiki/translations/es/Release_notes_012.md b/wiki/translations/es/Release_notes_012.md index f8100f1bd9..85943637e5 100644 --- a/wiki/translations/es/Release_notes_012.md +++ b/wiki/translations/es/Release_notes_012.md @@ -1,2 +1,5 @@ # Release notes 012/es 1. REDIRECT [Release notes 0.12/es](Release_notes_0.12/es.md) + +--- +[documentation index](../README.md) > Release notes 012/es diff --git a/wiki/translations/es/Release_notes_013.md b/wiki/translations/es/Release_notes_013.md index 641d6e16b0..963644faad 100644 --- a/wiki/translations/es/Release_notes_013.md +++ b/wiki/translations/es/Release_notes_013.md @@ -1,2 +1,5 @@ # Release notes 013/es 1. REDIRECT [Release\_notes\_0.13/es](Release_notes_0.13/es.md) + +--- +[documentation index](../README.md) > Release notes 013/es diff --git a/wiki/translations/es/Render_project.md b/wiki/translations/es/Render_project.md index aaa7e2bf08..e6a77dc921 100644 --- a/wiki/translations/es/Render_project.md +++ b/wiki/translations/es/Render_project.md @@ -1,5 +1,5 @@ # Render project/es - **(2020) This page refers to an attempt to update the [Raytracing Workbench](Raytracing_Workbench.md), proposed around 2012. Its original author never completed the implementation so this information is outdated, and should not be considered current. +**(2020) This page refers to an attempt to update the [Raytracing Workbench](Raytracing_Workbench.md), proposed around 2012. Its original author never completed the implementation so this information is outdated, and should not be considered current. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], a complete Python replacement for the [Raytracing Workbench](Raytracing_Workbench.md). @@ -141,3 +141,6 @@ See also [Raytracing tutorial](Raytracing_tutorial.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Render](Category:Render.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Render project/es diff --git a/wiki/translations/es/Report_view.md b/wiki/translations/es/Report_view.md index 27be4f67a6..bc981eb5af 100644 --- a/wiki/translations/es/Report_view.md +++ b/wiki/translations/es/Report_view.md @@ -1,6 +1,4 @@ # Report view/es - - ## Introducción La [Vista de informe](Report_view/es.md) es un panel que muestra los mensajes de texto de los procesos y herramientas de FreeCAD. Está disponible en el menú **{{StdMenu|[Vista](Std_View_Menu/es.md)** → Paneles → Vista de informe}}. @@ -53,4 +51,7 @@ Al hacer clic con el botón derecho del ratón en la vista del informe se muestr {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Report view/es diff --git a/wiki/translations/es/Resource_framework_project.md b/wiki/translations/es/Resource_framework_project.md index e7de786cac..f3097837c4 100644 --- a/wiki/translations/es/Resource_framework_project.md +++ b/wiki/translations/es/Resource_framework_project.md @@ -1,7 +1,4 @@ # Resource framework project/es - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -125,3 +122,6 @@ Un diseño de clase para la estructura de recursos. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Resource framework project/es diff --git a/wiki/translations/es/Reverse_Engineering_Workbench.md b/wiki/translations/es/Reverse_Engineering_Workbench.md index c6710bb46c..66c0327425 100644 --- a/wiki/translations/es/Reverse_Engineering_Workbench.md +++ b/wiki/translations/es/Reverse_Engineering_Workbench.md @@ -1,10 +1,4 @@ -# Reverse Engineering Workbench/es - - - - - -El icono del Ambiente de trabajo Ingeniería inversa +# El icono del Ambiente de trabajo Ingeniería inversa Reverse Engineering Workbench/es ## Introduction @@ -37,3 +31,6 @@ Enlace a los hilos apropiados en los que se habla de este ambiente de trabajo [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench/es diff --git a/wiki/translations/es/Robot_API_example.md b/wiki/translations/es/Robot_API_example.md index 33eeb3949a..097b768214 100644 --- a/wiki/translations/es/Robot_API_example.md +++ b/wiki/translations/es/Robot_API_example.md @@ -1,6 +1,4 @@ # Robot API example/es - - ## Introducción Este ejemplo está basado en el ejemplo [RobotExample.py](https://github.com/FreeCAD/FreeCAD_sf_master/blob/master/src/Mod/Robot/RobotExample.py). @@ -169,3 +167,6 @@ for w in App.activeDocument().Trajectory.Trajectory.Waypoints: {{Userdocnavi/es}} [Category:Robot API](Category:Robot_API.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot API example/es diff --git a/wiki/translations/es/Robot_CreateRobot.md b/wiki/translations/es/Robot_CreateRobot.md index d928104890..93f55cbad8 100644 --- a/wiki/translations/es/Robot_CreateRobot.md +++ b/wiki/translations/es/Robot_CreateRobot.md @@ -1,3 +1,4 @@ +# Robot CreateRobot/es --- - GuiCommand:/es Name:Robot CreateRobot Name/es:Robot CreateRobot Workbenches:[[Robot_Workbench/es Robot]]|MenuLocation:Robot → Insert robot--- @@ -43,4 +44,7 @@ The predefined robots are {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateRobot/es diff --git a/wiki/translations/es/Robot_CreateTrajectory.md b/wiki/translations/es/Robot_CreateTrajectory.md index 16504cfc8d..a34ce7b522 100644 --- a/wiki/translations/es/Robot_CreateTrajectory.md +++ b/wiki/translations/es/Robot_CreateTrajectory.md @@ -1,3 +1,4 @@ +# Robot CreateTrajectory/es --- - GuiCommand:/es Name:Robot CreateTrajectory Name/es:Robot CreateTrajectory Workbenches:[[Robot_Workbench/es Robot]]|MenuLocation:Robot → Create trajectory--- @@ -20,4 +21,7 @@ Click on {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateTrajectory/es diff --git a/wiki/translations/es/Robot_Edge2Trac.md b/wiki/translations/es/Robot_Edge2Trac.md index 296f62ac9b..c4d3714a2c 100644 --- a/wiki/translations/es/Robot_Edge2Trac.md +++ b/wiki/translations/es/Robot_Edge2Trac.md @@ -1,3 +1,4 @@ +# Robot Edge2Trac/es --- - GuiCommand:/es Name:Robot Edge2Trac Name/es:Robot Edge2Trac Workbenches:[[Robot_Workbench/es Robot]]|MenuLocation:Robot → Edge to trajectory--- @@ -31,4 +32,7 @@ You are able to change values for this trajectory by defining a [Robot](Robot_Workbench.md) > Robot Edge2Trac/es diff --git a/wiki/translations/es/Robot_Export.md b/wiki/translations/es/Robot_Export.md index 07d015f59b..aa3ac8bc71 100644 --- a/wiki/translations/es/Robot_Export.md +++ b/wiki/translations/es/Robot_Export.md @@ -1,3 +1,4 @@ +# Robot Export/es --- - GuiCommand:/es Name:Robot Export Name/es:Robot Export Workbenches:[[Robot_Workbench/es Robot]]|MenuLocation:Robot → Export trajectory--- @@ -25,4 +26,7 @@ Result: A KRL file (\*.src) will be created. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Export/es diff --git a/wiki/translations/es/Robot_InsertWaypoint.md b/wiki/translations/es/Robot_InsertWaypoint.md index d5006788c0..0712cc18ba 100644 --- a/wiki/translations/es/Robot_InsertWaypoint.md +++ b/wiki/translations/es/Robot_InsertWaypoint.md @@ -1,3 +1,4 @@ +# Robot InsertWaypoint/es --- - GuiCommand:/es Name:Robot InsertWaypoint Name/es:Robot InsertWaypoint Workbenches:[[Robot_Workbench/es Robot]]|MenuLocation:Robot → Insert in trajectory--- @@ -30,4 +31,7 @@ Moving a robot is done by {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot InsertWaypoint/es diff --git a/wiki/translations/es/Robot_InsertWaypointPre.md b/wiki/translations/es/Robot_InsertWaypointPre.md index 1041548436..94fb75fe8d 100644 --- a/wiki/translations/es/Robot_InsertWaypointPre.md +++ b/wiki/translations/es/Robot_InsertWaypointPre.md @@ -1,3 +1,4 @@ +# Robot InsertWaypointPre/es --- - GuiCommand:/es Name:Robot InsertWaypointPre Name/es:Robot InsertWaypointPre Workbenches:[[Robot_Workbench/es Robot]]|MenuLocation:Robot → Insert in trajectory--- @@ -30,4 +31,7 @@ Selectable objects are: {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot InsertWaypointPre/es diff --git a/wiki/translations/es/Robot_RestoreHomePos.md b/wiki/translations/es/Robot_RestoreHomePos.md index def61e4fcd..a0be5ca007 100644 --- a/wiki/translations/es/Robot_RestoreHomePos.md +++ b/wiki/translations/es/Robot_RestoreHomePos.md @@ -1,3 +1,4 @@ +# Robot RestoreHomePos/es --- - GuiCommand:/es Name:Robot RestoreHomePos Name/es:Robot RestoreHomePos Workbenches:[[Robot_Workbench/es Robot]]|MenuLocation:Robot → Restore home position--- @@ -25,4 +26,7 @@ Lets the selected robot move to its home position. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot RestoreHomePos/es diff --git a/wiki/translations/es/Robot_SetDefaultOrientation.md b/wiki/translations/es/Robot_SetDefaultOrientation.md index 69cd45af35..6ea961b024 100644 --- a/wiki/translations/es/Robot_SetDefaultOrientation.md +++ b/wiki/translations/es/Robot_SetDefaultOrientation.md @@ -1,3 +1,4 @@ +# Robot SetDefaultOrientation/es --- - GuiCommand:/es Name:Robot SetDefaultOrientation Name/es:Robot SetDefaultOrientation Workbenches:[[Robot_Workbench/es Robot]]|MenuLocation:Robot → Set default orientation--- @@ -14,4 +15,7 @@ {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetDefaultOrientation/es diff --git a/wiki/translations/es/Robot_SetDefaultValues.md b/wiki/translations/es/Robot_SetDefaultValues.md index c599658256..4cc3ef8877 100644 --- a/wiki/translations/es/Robot_SetDefaultValues.md +++ b/wiki/translations/es/Robot_SetDefaultValues.md @@ -1,3 +1,4 @@ +# Robot SetDefaultValues/es --- - GuiCommand:/es Name:Robot SetDefaultValues Name/es:Robot SetDefaultValues Workbenches:[[Robot_Workbench/es Robot]]|MenuLocation:Robot → Set default values--- @@ -32,4 +33,7 @@ The program\'s default values are for {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetDefaultValues/es diff --git a/wiki/translations/es/Robot_SetHomePos.md b/wiki/translations/es/Robot_SetHomePos.md index 685223bf7d..8d419e7dfe 100644 --- a/wiki/translations/es/Robot_SetHomePos.md +++ b/wiki/translations/es/Robot_SetHomePos.md @@ -1,3 +1,4 @@ +# Robot SetHomePos/es --- - GuiCommand:/es Name:Robot SetHomePos Name/es:Robot SetHomePos Workbenches:[[Robot_Workbench/es Robot]]|MenuLocation:Robot → Set home position--- @@ -25,4 +26,7 @@ Sets the current position/orientation of the selected robot as home position. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetHomePos/es diff --git a/wiki/translations/es/Robot_Simulate.md b/wiki/translations/es/Robot_Simulate.md index 59045cb9a0..d05b565301 100644 --- a/wiki/translations/es/Robot_Simulate.md +++ b/wiki/translations/es/Robot_Simulate.md @@ -1,3 +1,4 @@ +# Robot Simulate/es --- - GuiCommand:/es Name:Robot Simulate Name/es:Robot Simulate Workbenches:[[Robot_Workbench/es Robot]]|MenuLocation:Robot → Simulate a trajectory--- @@ -34,4 +35,7 @@ The buttons from left to right. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Simulate/es diff --git a/wiki/translations/es/Robot_TrajectoryCompound.md b/wiki/translations/es/Robot_TrajectoryCompound.md index 24354e0ddc..c462338629 100644 --- a/wiki/translations/es/Robot_TrajectoryCompound.md +++ b/wiki/translations/es/Robot_TrajectoryCompound.md @@ -1,3 +1,4 @@ +# Robot TrajectoryCompound/es --- - GuiCommand:/es Name:Robot TrajectoryCompound Name/es:Robot TrajectoryCompound Workbenches:[[Robot_Workbench/es Robot]]|MenuLocation:Robot → TrajectoryCompound--- @@ -25,4 +26,7 @@ Creates a compound out of some single trajectories. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot TrajectoryCompound/es diff --git a/wiki/translations/es/Robot_TrajectoryDressUp.md b/wiki/translations/es/Robot_TrajectoryDressUp.md index 1decba4545..b64e02c51d 100644 --- a/wiki/translations/es/Robot_TrajectoryDressUp.md +++ b/wiki/translations/es/Robot_TrajectoryDressUp.md @@ -1,3 +1,4 @@ +# Robot TrajectoryDressUp/es --- - GuiCommand:/es Name:Robot TrajectoryDressUp Name/es:Robot TrajectoryDressUp Workbenches:[[Robot_Workbench/es Robot]]|MenuLocation:Robot → TrajectoryDressUp --- @@ -29,4 +30,7 @@ Resulting in the ability to change values for: {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot TrajectoryDressUp/es diff --git a/wiki/translations/es/Robot_Workbench.md b/wiki/translations/es/Robot_Workbench.md index 2b194ff581..549cc5bad5 100644 --- a/wiki/translations/es/Robot_Workbench.md +++ b/wiki/translations/es/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/es - - - - - - **El Ambiente de trabajo Robot no se mantiene. Si tienes experiencia en el tema y estás interesado en mantenerlo, por favor declara tu intención en la sección de desarrolladores del [https://forum.freecadweb.org/index.php Foro de FreeCAD]. La razón por la que este ambiente de trabajo está todavía en el código fuente maestro es porque este ambiente de trabajo está programado en C++. Si este ambiente de trabajo pudiera ser programado en Python, entonces podría convertirse en un [Ambiente de trabajo externo](external_workbenches/es.md) y podría ser movido a un repositorio separado. @@ -81,3 +75,6 @@ Ver el [Ejemplo de la API del Robot](Robot_API_example/es.md) para ver una descr }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/es diff --git a/wiki/translations/es/Robot_project.md b/wiki/translations/es/Robot_project.md index c225483674..59624a551a 100644 --- a/wiki/translations/es/Robot_project.md +++ b/wiki/translations/es/Robot_project.md @@ -1,7 +1,4 @@ # Robot project/es - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -103,3 +100,6 @@ Simulación del robot [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot project/es diff --git a/wiki/translations/es/Robot_tutorial.md b/wiki/translations/es/Robot_tutorial.md index 1bb3745852..f476552f10 100644 --- a/wiki/translations/es/Robot_tutorial.md +++ b/wiki/translations/es/Robot_tutorial.md @@ -1,5 +1,5 @@ # Robot tutorial/es - {{TutorialInfo/es +{{TutorialInfo/es |Topic= Robot Workbench |Level= Beginner |Time= @@ -68,3 +68,6 @@ El objetivo de este tutorial es el uso de [robots industriales](http://en.wikipe }} {{Robot Tools navi}} [Category:Tutorials/es](Category:Tutorials/es.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot tutorial/es diff --git a/wiki/translations/es/STEP_project.md b/wiki/translations/es/STEP_project.md index 9b903b07c8..057cd4e8f8 100644 --- a/wiki/translations/es/STEP_project.md +++ b/wiki/translations/es/STEP_project.md @@ -1,7 +1,4 @@ # STEP project/es - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -115,3 +112,6 @@ Aquí algunos enlaces con información: [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > STEP project/es diff --git a/wiki/translations/es/SVG.md b/wiki/translations/es/SVG.md index ab9b7a482d..9d1a151fe8 100644 --- a/wiki/translations/es/SVG.md +++ b/wiki/translations/es/SVG.md @@ -1,5 +1,5 @@ # SVG/es - {{TOCright}} +{{TOCright}} ## Descripción @@ -24,3 +24,6 @@ FreeCAD is primarily a 3D modeling application, and thus doesn\'t have many 2D d [Category:Draft](Category:Draft.md) [Category:TechDraw](Category:TechDraw.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Category:Draft.md) > SVG/es diff --git a/wiki/translations/es/Scenegraph.md b/wiki/translations/es/Scenegraph.md index 0f556ef84e..7c8c3a1f0f 100644 --- a/wiki/translations/es/Scenegraph.md +++ b/wiki/translations/es/Scenegraph.md @@ -1,7 +1,4 @@ # Scenegraph/es - - - {{TOCright}} ## Introduction @@ -152,3 +149,6 @@ See [Coin3d snippets](Coin3d_snippets.md) courtesy of MariwanJ\'s research for t }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scenegraph/es diff --git a/wiki/translations/es/Screenshots.md b/wiki/translations/es/Screenshots.md index f2695ab497..2e476c4db8 100644 --- a/wiki/translations/es/Screenshots.md +++ b/wiki/translations/es/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/es - {{TOCright}} +{{TOCright}} Aquí hay algunas capturas de pantalla mostrando diferentes parted de FreeCAD. No están ordenadas en alguna cronología específica, así que las imágenes pueden diferir de tu versión. Ve más capturas de pantalla enviadas por usuarios de FreeCAD en el [foro de capturas de pantalla](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) y en [la parte del foro de Users Showcase \"¡Muestra tu proyecto aquí!\"](http://forum.freecadweb.org/viewforum.php?f=24). @@ -238,3 +238,6 @@ FreeCAD ejecutado en modo consola (sin interfaz gráfico de usuario GUI) Letrero de diálogo para guardar una imagen de tamaño arbitrario. [Category:User Documentation/es](Category:User_Documentation/es.md) [Category:Screenshots/es](Category:Screenshots/es.md) + +--- +[documentation index](../README.md) > Screenshots/es diff --git a/wiki/translations/es/Scripted_objects.md b/wiki/translations/es/Scripted_objects.md index 94504dafa1..3a346c46c3 100644 --- a/wiki/translations/es/Scripted_objects.md +++ b/wiki/translations/es/Scripted_objects.md @@ -1,7 +1,4 @@ # Scripted objects/es - - - {{TOCright}} ## Introduction @@ -941,3 +938,6 @@ In addition to the examples presented here have a look at FreeCAD source code [s }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects/es diff --git a/wiki/translations/es/Scripting_and_macros.md b/wiki/translations/es/Scripting_and_macros.md index bad7e4b02b..e8ecf8db07 100644 --- a/wiki/translations/es/Scripting_and_macros.md +++ b/wiki/translations/es/Scripting_and_macros.md @@ -1,7 +1,4 @@ # Scripting and macros/es - - -
@@ -108,3 +105,6 @@ }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripting and macros/es diff --git a/wiki/translations/es/Scripting_examples.md b/wiki/translations/es/Scripting_examples.md index baed57a367..6eebe2ff04 100644 --- a/wiki/translations/es/Scripting_examples.md +++ b/wiki/translations/es/Scripting_examples.md @@ -1,2 +1,5 @@ # Scripting examples/es 1. REDIRECT [Scripting\_and\_macros/es](Scripting_and_macros/es.md) + +--- +[documentation index](../README.md) > Scripting examples/es diff --git a/wiki/translations/es/Selection_API.md b/wiki/translations/es/Selection_API.md index 6cf87a398c..a92104eab0 100644 --- a/wiki/translations/es/Selection_API.md +++ b/wiki/translations/es/Selection_API.md @@ -1,5 +1,5 @@ # Selection API/es - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** El submódulo de selección es parte del módulo FreeCADGui. Ejemplo: ```python @@ -26,3 +26,6 @@ sel = FreeCADGui.Selection.getSelection() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Selection API/es diff --git a/wiki/translations/es/Selection_methods.md b/wiki/translations/es/Selection_methods.md index c7a3f961c3..023bd9c3ff 100644 --- a/wiki/translations/es/Selection_methods.md +++ b/wiki/translations/es/Selection_methods.md @@ -1,7 +1,4 @@ # Selection methods/es - - -
@@ -101,5 +98,5 @@ See the [Source documentation](Source_documentation.md) and [Std PythonHelp](Std
- - +--- +[documentation index](../README.md) > Selection methods/es diff --git a/wiki/translations/es/Ship_Area.md b/wiki/translations/es/Ship_Area.md index 4374fc9741..dcc4b6d383 100644 --- a/wiki/translations/es/Ship_Area.md +++ b/wiki/translations/es/Ship_Area.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Ship Area/es + ## Descripción Trazar la curva de áreas transversales @@ -28,4 +30,7 @@ Trazar la curva de áreas transversales {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Area/es diff --git a/wiki/translations/es/Ship_Geometries_Examples.md b/wiki/translations/es/Ship_Geometries_Examples.md index bfa398540f..d9dba6a733 100644 --- a/wiki/translations/es/Ship_Geometries_Examples.md +++ b/wiki/translations/es/Ship_Geometries_Examples.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Ship Geometries Examples/es + ## Description Ship works over **Ship entities**, that must be created on top of provided geometry. Geometry must be a solid, or set of solids, following criteria must be taken into account: @@ -47,4 +49,7 @@ In order to help new users, Ship includes a geometries examples loader, with the {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Geometries Examples/es diff --git a/wiki/translations/es/Ship_Hydrostatics.md b/wiki/translations/es/Ship_Hydrostatics.md index 95fd04621c..86c516bb9f 100644 --- a/wiki/translations/es/Ship_Hydrostatics.md +++ b/wiki/translations/es/Ship_Hydrostatics.md @@ -7,6 +7,8 @@ SeeAlso= --- +# Ship Hydrostatics/es +
@@ -40,4 +42,7 @@ When the Hydrostatics tool is executed, a task dialog is shown. Usually Hydrosta {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Hydrostatics/es diff --git a/wiki/translations/es/Ship_New.md b/wiki/translations/es/Ship_New.md index 4f64fd6bee..9104f8e0f1 100644 --- a/wiki/translations/es/Ship_New.md +++ b/wiki/translations/es/Ship_New.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Ship New/es + ## Descripción Create a New Ship or new Ship Instance. @@ -50,4 +52,7 @@ Note: From here onward, you must have **Ship** selected before you execute any S {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship New/es diff --git a/wiki/translations/es/Ship_Outline.md b/wiki/translations/es/Ship_Outline.md index 5c52f614fc..e23fedd1b9 100644 --- a/wiki/translations/es/Ship_Outline.md +++ b/wiki/translations/es/Ship_Outline.md @@ -9,6 +9,8 @@ SeeAlso: --- +# Ship Outline/es + ## Descripción Dibuja el contorno del casco del barco @@ -107,4 +109,7 @@ Outline draw plot. {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Outline/es diff --git a/wiki/translations/es/Ship_Workbench.md b/wiki/translations/es/Ship_Workbench.md index 0330a9a0d5..aa0ca26502 100644 --- a/wiki/translations/es/Ship_Workbench.md +++ b/wiki/translations/es/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/es - - -Icono del ambiente de trabajo Nave +# Icono del ambiente de trabajo Nave Ship Workbench/es {{TOCright}} @@ -67,3 +64,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/es diff --git a/wiki/translations/es/Sketch.md b/wiki/translations/es/Sketch.md index 631c4b7970..8159c8701f 100644 --- a/wiki/translations/es/Sketch.md +++ b/wiki/translations/es/Sketch.md @@ -1,6 +1,4 @@ # Sketch/es - - ## Introducción @@ -39,3 +37,6 @@ Sin embargo, un Croquis siempre puede ser creado por sí mismo para cualquier ot }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Sketch/es diff --git a/wiki/translations/es/Sketcher_CarbonCopy.md b/wiki/translations/es/Sketcher_CarbonCopy.md index a58ef35395..a0c77c60ad 100644 --- a/wiki/translations/es/Sketcher_CarbonCopy.md +++ b/wiki/translations/es/Sketcher_CarbonCopy.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Sketcher CarbonCopy/es +
@@ -41,4 +43,7 @@ Dimensional constraints which exist before the copy function remain linked to th {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CarbonCopy/es diff --git a/wiki/translations/es/Sketcher_Clone.md b/wiki/translations/es/Sketcher_Clone.md index df4a86b1e3..1c00422799 100644 --- a/wiki/translations/es/Sketcher_Clone.md +++ b/wiki/translations/es/Sketcher_Clone.md @@ -14,6 +14,8 @@ SeeAlso:[Sketcher Copiar](Sketcher_Copy/es.md), [Sketcher Move](Sketcher_Move/es.md) --- +# Sketcher Clone/es +
@@ -37,4 +39,7 @@ No extra constraints for clone-behaviour are added. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Clone/es diff --git a/wiki/translations/es/Sketcher_CloseShape.md b/wiki/translations/es/Sketcher_CloseShape.md index 46f0b0bc7e..d84287dff0 100644 --- a/wiki/translations/es/Sketcher_CloseShape.md +++ b/wiki/translations/es/Sketcher_CloseShape.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher CloseShape/es +
@@ -33,4 +35,7 @@ The tool will connect the elements in the order of their selection, so make sure {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CloseShape/es diff --git a/wiki/translations/es/Sketcher_CompCreateArc.md b/wiki/translations/es/Sketcher_CompCreateArc.md index 15af8da3dc..6032d21ded 100644 --- a/wiki/translations/es/Sketcher_CompCreateArc.md +++ b/wiki/translations/es/Sketcher_CompCreateArc.md @@ -6,6 +6,8 @@ Workbenches:[Croquizador](Sketcher_Workbench/es.md) --- +# Sketcher CompCreateArc/es + ## Descripción **Crear un arco** es un botón de icono en la barra de herramientas de geometrías de Croqizador que agrupa herramientas para crear un arco eligiendo tres puntos. Haz clic en la flecha hacia abajo situada a su derecha para expandir los iconos que hay debajo y seleccionar una herramienta. @@ -21,4 +23,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateArc/es diff --git a/wiki/translations/es/Sketcher_CompCreateBSpline.md b/wiki/translations/es/Sketcher_CompCreateBSpline.md index 7a0121604f..c7dfb06374 100644 --- a/wiki/translations/es/Sketcher_CompCreateBSpline.md +++ b/wiki/translations/es/Sketcher_CompCreateBSpline.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Sketcher CompCreateBSpline/es +
@@ -26,4 +28,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateBSpline/es diff --git a/wiki/translations/es/Sketcher_CompCreateCircle.md b/wiki/translations/es/Sketcher_CompCreateCircle.md index a9ec4947df..2b73a77541 100644 --- a/wiki/translations/es/Sketcher_CompCreateCircle.md +++ b/wiki/translations/es/Sketcher_CompCreateCircle.md @@ -7,6 +7,8 @@ Workbenches:[Croquizador](Sketcher_Workbench/es.md) --- +# Sketcher CompCreateCircle/es + ## Descripción **Crear un círculo** es un botón de icono en la barra de herramientas de geometrías de Croquizador que agrupa herramientas para crear un círculo. Haz clic en la flecha hacia abajo situada a su derecha para desplegar los iconos que hay debajo y seleccionar una herramienta. @@ -22,4 +24,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateCircle/es diff --git a/wiki/translations/es/Sketcher_CompCreateConic.md b/wiki/translations/es/Sketcher_CompCreateConic.md index 32f58db306..92bda44aa8 100644 --- a/wiki/translations/es/Sketcher_CompCreateConic.md +++ b/wiki/translations/es/Sketcher_CompCreateConic.md @@ -7,6 +7,8 @@ Workbenches:[Croquizador](Sketcher_Workbench/es.md) --- +# Sketcher CompCreateConic/es + ## Descripción **Crear un cónico** es un botón de icono en la barra de herramientas de geometrías de croquizador que agrupa herramientas para crear curvas basadas en una sección de un cono. Haz clic en la flecha hacia abajo a su derecha para expandir los iconos que se encuentran debajo y selecciona una herramienta. @@ -31,4 +33,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateConic/es diff --git a/wiki/translations/es/Sketcher_CompCreateRegularPolygon.md b/wiki/translations/es/Sketcher_CompCreateRegularPolygon.md index 25abea602c..8c6783a667 100644 --- a/wiki/translations/es/Sketcher_CompCreateRegularPolygon.md +++ b/wiki/translations/es/Sketcher_CompCreateRegularPolygon.md @@ -7,6 +7,8 @@ MenuLocation:Ninguno (sólo barra de herramientas) --- +# Sketcher CompCreateRegularPolygon/es +
@@ -36,4 +38,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateRegularPolygon/es diff --git a/wiki/translations/es/Sketcher_ConnectLines.md b/wiki/translations/es/Sketcher_ConnectLines.md index 70c0cae517..e771bddd6e 100644 --- a/wiki/translations/es/Sketcher_ConnectLines.md +++ b/wiki/translations/es/Sketcher_ConnectLines.md @@ -1,3 +1,4 @@ +# Sketcher ConnectLines/es --- - GuiCommand:/es Name:Sketcher ConnectLines Name/es:Sketcher ConnectLines Workbenches:[[Sketcher Workbench/es Sketcher]]|MenuLocation:Sketch → Sketcher tools → Connect Edges Shortcut:Ctrl+Shift+K Version:0.15--- @@ -26,4 +27,7 @@ Before using this command make sure that obvious constraints (horizontal, vertic {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConnectLines/es diff --git a/wiki/translations/es/Sketcher_ConstrainAngle.md b/wiki/translations/es/Sketcher_ConstrainAngle.md index c80c832433..751fff88d0 100644 --- a/wiki/translations/es/Sketcher_ConstrainAngle.md +++ b/wiki/translations/es/Sketcher_ConstrainAngle.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainAngle/es --- - GuiCommand:/es Name:Constraint InternalAngle Workbenches:[Diseño de Piezas](Sketcher_Workbench/es___Croquizador]],_[[PartDesign_Workbench/es.md)|Shortcut:A MenuLocation:Croquizador → Restricciones del Croquizador → Restricción angular SeeAlso:[Restricción distancia](Constraint_Length/es.md), [Restricción perpendicular](Constraint_Perpendicular/es.md)--- @@ -101,4 +102,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainAngle/es diff --git a/wiki/translations/es/Sketcher_ConstrainBlock.md b/wiki/translations/es/Sketcher_ConstrainBlock.md index e56fc9c414..83c49e67fa 100644 --- a/wiki/translations/es/Sketcher_ConstrainBlock.md +++ b/wiki/translations/es/Sketcher_ConstrainBlock.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Sketcher ConstrainBlock/es +
@@ -43,4 +45,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainBlock/es diff --git a/wiki/translations/es/Sketcher_ConstrainCoincident.md b/wiki/translations/es/Sketcher_ConstrainCoincident.md index 2cb9814906..57c074861b 100644 --- a/wiki/translations/es/Sketcher_ConstrainCoincident.md +++ b/wiki/translations/es/Sketcher_ConstrainCoincident.md @@ -7,6 +7,8 @@ MenuLocation:Sketch → Restricciones de croquis → Restricción de coincidencia SeeAlso:[Restricción de bloqueo](Constraint_Lock/es.md), [Punto en objeto](Constraint_PointOnObject/es.md) --- +# Sketcher ConstrainCoincident/es + @@ -93,3 +95,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/es](Category:Sketcher/es.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainCoincident/es diff --git a/wiki/translations/es/Sketcher_ConstrainDiameter.md b/wiki/translations/es/Sketcher_ConstrainDiameter.md index f72782a79a..899e165f6f 100644 --- a/wiki/translations/es/Sketcher_ConstrainDiameter.md +++ b/wiki/translations/es/Sketcher_ConstrainDiameter.md @@ -7,6 +7,8 @@ SeeAlso:[Restringir la distancia](Sketcher_ConstrainDistance/es.md), [Restringir distancia horizontal](Sketcher_ConstrainDistanceX/es.md), [Restringir distancia vertical](Sketcher_ConstrainDistanceY/es.md) --- +# Sketcher ConstrainDiameter/es + @@ -53,4 +55,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDiameter/es diff --git a/wiki/translations/es/Sketcher_ConstrainDistance.md b/wiki/translations/es/Sketcher_ConstrainDistance.md index e8e0829c95..561443907b 100644 --- a/wiki/translations/es/Sketcher_ConstrainDistance.md +++ b/wiki/translations/es/Sketcher_ConstrainDistance.md @@ -8,6 +8,8 @@ SeeAlso:[Distancia Horizontal](Sketcher_ConstrainDistanceX/es.md), [Distancia Vertical](Sketcher_ConstrainDistanceY/es.md) --- +# Sketcher ConstrainDistance/es + @@ -76,4 +78,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistance/es diff --git a/wiki/translations/es/Sketcher_ConstrainDistanceX.md b/wiki/translations/es/Sketcher_ConstrainDistanceX.md index 857baef3ae..a9619adbb3 100644 --- a/wiki/translations/es/Sketcher_ConstrainDistanceX.md +++ b/wiki/translations/es/Sketcher_ConstrainDistanceX.md @@ -8,6 +8,8 @@ SeeAlso:[Restricción de longitud](Sketcher_ConstrainDistance/es.md), [Restricción de distancia vertical](Sketcher_ConstrainDistanceY/es.md) --- +# Sketcher ConstrainDistanceX/es + @@ -79,4 +81,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceX/es diff --git a/wiki/translations/es/Sketcher_ConstrainDistanceY.md b/wiki/translations/es/Sketcher_ConstrainDistanceY.md index 9fcfa38542..1d241d65a3 100644 --- a/wiki/translations/es/Sketcher_ConstrainDistanceY.md +++ b/wiki/translations/es/Sketcher_ConstrainDistanceY.md @@ -8,6 +8,8 @@ SeeAlso:[Distancia Horizontal](Sketcher_ConstrainDistanceX/es.md), [Distancia](Sketcher_ConstrainDistance/es.md) --- +# Sketcher ConstrainDistanceY/es + @@ -53,4 +55,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceY/es diff --git a/wiki/translations/es/Sketcher_ConstrainEqual.md b/wiki/translations/es/Sketcher_ConstrainEqual.md index c7a2339058..c8004bda75 100644 --- a/wiki/translations/es/Sketcher_ConstrainEqual.md +++ b/wiki/translations/es/Sketcher_ConstrainEqual.md @@ -8,6 +8,8 @@ SeeAlso:[Restringir radius](Sketcher_ConstrainRadius/es.md) --- +# Sketcher ConstrainEqual/es + @@ -114,4 +116,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainEqual/es diff --git a/wiki/translations/es/Sketcher_ConstrainHorizontal.md b/wiki/translations/es/Sketcher_ConstrainHorizontal.md index e95c55a5fb..decf3207b1 100644 --- a/wiki/translations/es/Sketcher_ConstrainHorizontal.md +++ b/wiki/translations/es/Sketcher_ConstrainHorizontal.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainHorizontal/es --- - GuiCommand:/es Name:Constraint Horizontal Name/es:Constraint Horizontal Workbenches:[Diseño de Piezas](Sketcher_Workbench/es___Croquizador]],_[[PartDesign_Workbench/es.md)|MenuLocation:Croquizador → Restricciones del Croquizador → Restricción Horizontal SeeAlso:[Vertical](Constraint_Vertical/es.md)--- @@ -38,4 +39,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainHorizontal/es diff --git a/wiki/translations/es/Sketcher_ConstrainInternalAlignment.md b/wiki/translations/es/Sketcher_ConstrainInternalAlignment.md index 97efba41d8..43478fc82b 100644 --- a/wiki/translations/es/Sketcher_ConstrainInternalAlignment.md +++ b/wiki/translations/es/Sketcher_ConstrainInternalAlignment.md @@ -8,6 +8,8 @@ SeeAlso:[Show/Hide Internal Geometry](Sketcher_RestoreInternalAlignmentGeometry/es.md), [Ellipse](Sketcher_CreateEllipseByCenter/es.md) --- +# Sketcher ConstrainInternalAlignment/es + @@ -60,4 +62,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainInternalAlignment/es diff --git a/wiki/translations/es/Sketcher_ConstrainLock.md b/wiki/translations/es/Sketcher_ConstrainLock.md index e519b6185e..a37c460ab8 100644 --- a/wiki/translations/es/Sketcher_ConstrainLock.md +++ b/wiki/translations/es/Sketcher_ConstrainLock.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainLock/es --- - GuiCommand:/es Name:Sketcher ConstrainLock Name/es:Sketcher ConstrainLock Workbenches:[Diseño de Piezas](Sketcher_Workbench/es___Croquizador]],_[[PartDesign_Workbench/es.md)|MenuLocation:Croquizador → Restricciones del Croquizador → Bloquear SeeAlso:[Restricción Coincidente](Constraint_PointOnPoint/es.md)--- @@ -59,4 +60,7 @@ The [Loc {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainLock/es diff --git a/wiki/translations/es/Sketcher_ConstrainParallel.md b/wiki/translations/es/Sketcher_ConstrainParallel.md index 283d6eea31..e1743b5803 100644 --- a/wiki/translations/es/Sketcher_ConstrainParallel.md +++ b/wiki/translations/es/Sketcher_ConstrainParallel.md @@ -8,6 +8,8 @@ SeeAlso:[Croquizador Restriccion Vertical](Sketcher_ConstrainVertical/es.md), [Croquizador Restriccion Horizontal](Sketcher_ConstrainHorizontal/es.md) --- +# Sketcher ConstrainParallel/es + @@ -63,4 +65,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainParallel/es diff --git a/wiki/translations/es/Sketcher_ConstrainPerpendicular.md b/wiki/translations/es/Sketcher_ConstrainPerpendicular.md index e41960a12a..e632af1e0a 100644 --- a/wiki/translations/es/Sketcher_ConstrainPerpendicular.md +++ b/wiki/translations/es/Sketcher_ConstrainPerpendicular.md @@ -8,6 +8,8 @@ SeeAlso:[Croquizador Restringir Ángulo](Sketcher_ConstrainAngle/es.md) --- +# Sketcher ConstrainPerpendicular/es + @@ -115,4 +117,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPerpendicular/es diff --git a/wiki/translations/es/Sketcher_ConstrainPointOnObject.md b/wiki/translations/es/Sketcher_ConstrainPointOnObject.md index e00017e2b4..c03b6f6f23 100644 --- a/wiki/translations/es/Sketcher_ConstrainPointOnObject.md +++ b/wiki/translations/es/Sketcher_ConstrainPointOnObject.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainPointOnObject/es --- - GuiCommand:/es Name:Constraint PointOnObject Workbenches:[Diseño de Piezas](Sketcher_Workbench/es___Croquizador]],_[[PartDesign_Workbench/es.md)|MenuLocation:Croquizador → Restricciones del Croquizador → Punto en objeto SeeAlso:[Coincidente](Constraint_PointOnPoint/es.md)--- @@ -54,4 +55,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains how to identify th {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPointOnObject/es diff --git a/wiki/translations/es/Sketcher_ConstrainRadius.md b/wiki/translations/es/Sketcher_ConstrainRadius.md index d20f830220..1eccd4563d 100644 --- a/wiki/translations/es/Sketcher_ConstrainRadius.md +++ b/wiki/translations/es/Sketcher_ConstrainRadius.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainRadius/es --- - GuiCommand:/es Name:Constraint Radius Workbenches:[Diseño de Piezas](Sketcher_Workbench/es___Croquizador]],_[[PartDesign_Workbench/es.md)|MenuLocation:Croquizador → Restricciones del Croquizador → Radio SeeAlso:[Distancia](Constraint_Length/es.md), [Horizontal](Constraint_Horizontal/es.md), [Vertical](Constraint_Vertical/es.md)--- @@ -53,4 +54,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadius/es diff --git a/wiki/translations/es/Sketcher_ConstrainSnellsLaw.md b/wiki/translations/es/Sketcher_ConstrainSnellsLaw.md index 2998beb779..43919f2eb3 100644 --- a/wiki/translations/es/Sketcher_ConstrainSnellsLaw.md +++ b/wiki/translations/es/Sketcher_ConstrainSnellsLaw.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/es.md) --- +# Sketcher ConstrainSnellsLaw/es + @@ -98,4 +100,7 @@ App.ActiveDocument.recompute() {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSnellsLaw/es diff --git a/wiki/translations/es/Sketcher_ConstrainSymmetric.md b/wiki/translations/es/Sketcher_ConstrainSymmetric.md index a0bf532640..aed488bd48 100644 --- a/wiki/translations/es/Sketcher_ConstrainSymmetric.md +++ b/wiki/translations/es/Sketcher_ConstrainSymmetric.md @@ -8,6 +8,8 @@ SeeAlso:[Restricción Paralela](Constraint_Parallel/es.md) --- +# Sketcher ConstrainSymmetric/es + @@ -90,4 +92,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSymmetric/es diff --git a/wiki/translations/es/Sketcher_ConstrainTangent.md b/wiki/translations/es/Sketcher_ConstrainTangent.md index 373c7ca2c9..8ff4b244ff 100644 --- a/wiki/translations/es/Sketcher_ConstrainTangent.md +++ b/wiki/translations/es/Sketcher_ConstrainTangent.md @@ -8,6 +8,8 @@ SeeAlso:[Restriccion Punto sobre objeto](Sketcher_ConstrainPointOnObject/es.md) --- +# Sketcher ConstrainTangent/es + @@ -126,4 +128,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainTangent/es diff --git a/wiki/translations/es/Sketcher_ConstrainVertical.md b/wiki/translations/es/Sketcher_ConstrainVertical.md index 9159774105..c0401b227b 100644 --- a/wiki/translations/es/Sketcher_ConstrainVertical.md +++ b/wiki/translations/es/Sketcher_ConstrainVertical.md @@ -8,6 +8,8 @@ SeeAlso:[Restringir horizontalmente](Sketcher_ConstrainHorizontal/es.md) --- +# Sketcher ConstrainVertical/es + @@ -50,3 +52,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/es](Category:Sketcher/es.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainVertical/es diff --git a/wiki/translations/es/Sketcher_Copy.md b/wiki/translations/es/Sketcher_Copy.md index 3ee7e6544e..0228d0e691 100644 --- a/wiki/translations/es/Sketcher_Copy.md +++ b/wiki/translations/es/Sketcher_Copy.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Clonar](Sketcher_Clone/es.md), [Sketcher Move](Sketcher_Move/es.md) --- +# Sketcher Copy/es + @@ -35,4 +37,7 @@ No extra constraints are added. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Copy/es diff --git a/wiki/translations/es/Sketcher_Create3PointArc.md b/wiki/translations/es/Sketcher_Create3PointArc.md index 3cffd9b0ad..07dc6c46bf 100644 --- a/wiki/translations/es/Sketcher_Create3PointArc.md +++ b/wiki/translations/es/Sketcher_Create3PointArc.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Sketcher Create3PointArc/es + ## Descripción Esta herramienta dibuja un arco eligiendo tres puntos: el punto inicial, el punto final y un punto del arco. @@ -25,4 +27,7 @@ Al iniciar la herramienta, el puntero del ratón cambia a una cruz blanca con un {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Create3PointArc/es diff --git a/wiki/translations/es/Sketcher_Create3PointCircle.md b/wiki/translations/es/Sketcher_Create3PointCircle.md index 07d483d3b2..3cca08dddb 100644 --- a/wiki/translations/es/Sketcher_Create3PointCircle.md +++ b/wiki/translations/es/Sketcher_Create3PointCircle.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Sketcher Create3PointCircle/es + ## Descripción Esta herramienta dibuja un círculo eligiendo tres puntos en el contorno del círculo. Al iniciar la herramienta, el puntero del ratón cambia a una cruz blanca con un icono de círculo rojo. Además se muestran las coordenadas en tiempo real. @@ -23,4 +25,7 @@ Esta herramienta [Geometría externa](Sketcher_External/es.md)** cuando necesites aplicar una restricción entre la geometría del croquis y algo fuera del mismo. Funciona insertando una geometría de construcción vinculada en el croquis. El color por defecto de los bordes vinculadas externamente es el magenta. Al igual que con la geometría de construcción no vinculada estándar (azul), la geometría vinculada externamente sólo es visible cuando el croquis está en modo de edición y no se utiliza directamente en el resultado posterior del uso del croquis en otra herramienta. Ambos tipos de geometría de construcción pueden utilizarse como referencia para las restricciones dentro del croquis. @@ -77,4 +79,7 @@ When the sketch edit mode is closed, external Geometry lines are not visible. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher External/es diff --git a/wiki/translations/es/Sketcher_LeaveSketch.md b/wiki/translations/es/Sketcher_LeaveSketch.md index 71cd81f1e2..7c656323e3 100644 --- a/wiki/translations/es/Sketcher_LeaveSketch.md +++ b/wiki/translations/es/Sketcher_LeaveSketch.md @@ -1,3 +1,4 @@ +# Sketcher LeaveSketch/es --- - GuiCommand:/es Name:Sketcher LeaveSketch Workbenches:[Diseño de Piezas](Sketcher_Workbench/es___Croquizador]],_[[PartDesign_Workbench/es.md)|MenuLocation:Croquizador→ Abandonar croquis|--- @@ -38,3 +39,6 @@ The **Leave sketch** command exits the sketch editing mode and frees up the [Tas }} [Category:Sketcher/es](Category:Sketcher/es.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher LeaveSketch/es diff --git a/wiki/translations/es/Sketcher_MapSketch.md b/wiki/translations/es/Sketcher_MapSketch.md index 5b077b08cd..2d9a807d97 100644 --- a/wiki/translations/es/Sketcher_MapSketch.md +++ b/wiki/translations/es/Sketcher_MapSketch.md @@ -1,3 +1,4 @@ +# Sketcher MapSketch/es --- - GuiCommand:/es Name:Sketcher MapSketch Name/es:Sketcher MapSketch Create a sketch on a face|Workbenches:[PartDesign](Sketcher_Workbench/es___Sketcher]],_[[PartDesign_Workbench/es.md)|MenuLocation:Part Design/Sketch → Map sketch to face... SeeAlso:[Create a new sketch](Sketcher_NewSketch/es.md)--- @@ -57,3 +58,6 @@ Now we select the top face of Pad and then select the Map A Sketch To A Face too }} [Category:Sketcher/es](Category:Sketcher/es.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MapSketch/es diff --git a/wiki/translations/es/Sketcher_MergeSketches.md b/wiki/translations/es/Sketcher_MergeSketches.md index 9a5f53e899..f527b72193 100644 --- a/wiki/translations/es/Sketcher_MergeSketches.md +++ b/wiki/translations/es/Sketcher_MergeSketches.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher MergeSketches/es + @@ -32,4 +34,7 @@ Merge two or more sketches into one. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MergeSketches/es diff --git a/wiki/translations/es/Sketcher_MirrorSketch.md b/wiki/translations/es/Sketcher_MirrorSketch.md index 1bda75bac2..134602e706 100644 --- a/wiki/translations/es/Sketcher_MirrorSketch.md +++ b/wiki/translations/es/Sketcher_MirrorSketch.md @@ -7,6 +7,8 @@ Version:0.16 --- +# Sketcher MirrorSketch/es + ## Descripción Simetría de un croquis a lo largo del eje x, el eje y o el origen. Este comando se invoca mientras \"no\" se edita un croquis. Crea un nuevo croquis que contiene la geometría simétrica. @@ -27,4 +29,7 @@ Notas: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MirrorSketch/es diff --git a/wiki/translations/es/Sketcher_Module.md b/wiki/translations/es/Sketcher_Module.md index dec8ab6c42..a0d7c8fbc0 100644 --- a/wiki/translations/es/Sketcher_Module.md +++ b/wiki/translations/es/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/es 1. REDIRECT [Sketcher Workbench/es](Sketcher_Workbench/es.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/es diff --git a/wiki/translations/es/Sketcher_Move.md b/wiki/translations/es/Sketcher_Move.md index 70abfb8170..f73aea8bde 100644 --- a/wiki/translations/es/Sketcher_Move.md +++ b/wiki/translations/es/Sketcher_Move.md @@ -9,6 +9,8 @@ SeeAlso:[Clonar](Sketcher_Clone/es.md), [Copiar](Sketcher_Copy/es.md) --- +# Sketcher Move/es + @@ -40,4 +42,7 @@ Moves the selected sketch elements from one point to another, using the last sel {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Move/es diff --git a/wiki/translations/es/Sketcher_NewSketch.md b/wiki/translations/es/Sketcher_NewSketch.md index 8e484ab44e..d6c945c924 100644 --- a/wiki/translations/es/Sketcher_NewSketch.md +++ b/wiki/translations/es/Sketcher_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[DiseñoPieza Nuevo croquis](PartDesign_NewSketch/es.md), [Croquizador MapearCroquis](Sketcher_MapSketch/es.md), [Croquizador Reorientar](Sketcher_ReorientSketch/es.md) --- +# Sketcher NewSketch/es + ## Descripción Esto creará un nuevo [Croquis](Sketcher_Workbench/es.md). @@ -37,4 +39,7 @@ El croquis puede ser movido en la [Vista 3D](3D_view/es.md) usando [Colocación] {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher NewSketch/es diff --git a/wiki/translations/es/Sketcher_Polyline.md b/wiki/translations/es/Sketcher_Polyline.md index b6f37897b5..bdfdab264e 100644 --- a/wiki/translations/es/Sketcher_Polyline.md +++ b/wiki/translations/es/Sketcher_Polyline.md @@ -1,2 +1,5 @@ # Sketcher Polyline/es 1. REDIRECT [Sketcher\_CreatePolyline/es](Sketcher_CreatePolyline/es.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Polyline/es diff --git a/wiki/translations/es/Sketcher_Preferences.md b/wiki/translations/es/Sketcher_Preferences.md index 1034498aeb..409ec393c2 100644 --- a/wiki/translations/es/Sketcher_Preferences.md +++ b/wiki/translations/es/Sketcher_Preferences.md @@ -1,7 +1,4 @@ # Sketcher Preferences/es - - - {{TOCright}} The preferences screen of the [Sketcher Workbench](Sketcher_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → Sketcher**. @@ -246,3 +243,6 @@ In the *Colors* tab you can specify the following: }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Preferences/es diff --git a/wiki/translations/es/Sketcher_RectangularArray.md b/wiki/translations/es/Sketcher_RectangularArray.md index d65261db45..37009dd080 100644 --- a/wiki/translations/es/Sketcher_RectangularArray.md +++ b/wiki/translations/es/Sketcher_RectangularArray.md @@ -1,3 +1,4 @@ +# Sketcher RectangularArray/es --- - GuiCommand:/es Name:Sketcher RectangularArray Workbenches:[PartDesign](Sketcher_Workbench/es___Sketcher]],_[[PartDesign_Workbench/es.md)|MenuLocation:Sketch → Sketcher tools → Rectangular Array Version:0.16--- @@ -26,4 +27,7 @@ Creates an array of selected sketcher elements. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RectangularArray/es diff --git a/wiki/translations/es/Sketcher_ReorientSketch.md b/wiki/translations/es/Sketcher_ReorientSketch.md index c26afcbf2c..cf78bf3a86 100644 --- a/wiki/translations/es/Sketcher_ReorientSketch.md +++ b/wiki/translations/es/Sketcher_ReorientSketch.md @@ -8,6 +8,8 @@ SeeAlso:[Map sketch](Sketcher_MapSketch/es.md), [New Sketch](Sketcher_NewSketch/es.md) --- +# Sketcher ReorientSketch/es + @@ -35,4 +37,7 @@ Allows you to detach a sketch from a face and attach it to one of the main plane {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ReorientSketch/es diff --git a/wiki/translations/es/Sketcher_RestoreInternalAlignmentGeometry.md b/wiki/translations/es/Sketcher_RestoreInternalAlignmentGeometry.md index f8ee976bb7..4a082443fc 100644 --- a/wiki/translations/es/Sketcher_RestoreInternalAlignmentGeometry.md +++ b/wiki/translations/es/Sketcher_RestoreInternalAlignmentGeometry.md @@ -1,3 +1,4 @@ +# Sketcher RestoreInternalAlignmentGeometry/es --- - GuiCommand:/es Name:Sketcher RestoreInternalAlignmentGeometry Workbenches:[PartDesign](Sketcher_Workbench/es___Sketcher]],_[[PartDesign_Workbench/es.md)|MenuLocation:Sketch → Sketcher tools → Show/hide internal geometry Shortcut:Ctrl+Shift+E SeeAlso:[Ellipse](Sketcher_Ellipse/es.md), [Internal Alignment Constraint](Constraint_Internal_Alignment/es.md)--- @@ -30,4 +31,7 @@ If there are free alignment places for the selected element, new construction ge {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RestoreInternalAlignmentGeometry/es diff --git a/wiki/translations/es/Sketcher_SelectConflictingConstraints.md b/wiki/translations/es/Sketcher_SelectConflictingConstraints.md index f4effeb95a..1910342c8d 100644 --- a/wiki/translations/es/Sketcher_SelectConflictingConstraints.md +++ b/wiki/translations/es/Sketcher_SelectConflictingConstraints.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectConflictingConstraints/es + @@ -27,4 +29,7 @@ Selecciona las restricciones conflictivas de un croquis. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConflictingConstraints/es diff --git a/wiki/translations/es/Sketcher_SelectConstraints.md b/wiki/translations/es/Sketcher_SelectConstraints.md index a652d0c361..0e10b3a38b 100644 --- a/wiki/translations/es/Sketcher_SelectConstraints.md +++ b/wiki/translations/es/Sketcher_SelectConstraints.md @@ -1,3 +1,4 @@ +# Sketcher SelectConstraints/es --- - GuiCommand:/es Name:Sketcher SelectConstraints Workbenches:[[Sketcher Workbench/es Sketcher]]|MenuLocation:Sketch → Sketcher tools → Select Constraints Shortcut:Shift+Ctrl+C SeeAlso: Version:0.15--- @@ -27,4 +28,7 @@ Selects the constraints of a sketcher element. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConstraints/es diff --git a/wiki/translations/es/Sketcher_SelectElementsAssociatedWithConstraints.md b/wiki/translations/es/Sketcher_SelectElementsAssociatedWithConstraints.md index 25cd011211..2c19828af4 100644 --- a/wiki/translations/es/Sketcher_SelectElementsAssociatedWithConstraints.md +++ b/wiki/translations/es/Sketcher_SelectElementsAssociatedWithConstraints.md @@ -1,3 +1,4 @@ +# Sketcher SelectElementsAssociatedWithConstraints/es --- - GuiCommand:/es Name:Sketcher SelectElementsAssociatedWithConstraints Name/es:Sketcher SelectElementsAssociatedWithConstraints Workbenches:[[Sketcher Workbench/es Sketcher]]|MenuLocation:Sketch → Sketcher tools → Select Elements Associated with constraints Shortcut:Shift+Ctrl+E SeeAlso: Version:0.15--- @@ -20,4 +21,7 @@ Select sketcher Elements associated with constraints. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsAssociatedWithConstraints/es diff --git a/wiki/translations/es/Sketcher_SelectElementsWithDoFs.md b/wiki/translations/es/Sketcher_SelectElementsWithDoFs.md index fdda68bef6..7f67c497c8 100644 --- a/wiki/translations/es/Sketcher_SelectElementsWithDoFs.md +++ b/wiki/translations/es/Sketcher_SelectElementsWithDoFs.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Sketcher SelectElementsWithDoFs/es + ## Descripción Esta herramienta está pensada para ayudar a restringir completamente un croquis resaltando en verde los elementos del croquis con grados de libertad (GdL) (inglés: DoF Degrees of Freedom) restantes. @@ -34,4 +36,7 @@ donde \"X\" es el número de grados de libertad que quedan en el croquis; recibi {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsWithDoFs/es diff --git a/wiki/translations/es/Sketcher_SelectHorizontalAxis.md b/wiki/translations/es/Sketcher_SelectHorizontalAxis.md index 63d0bc0644..c6af9cbf5b 100644 --- a/wiki/translations/es/Sketcher_SelectHorizontalAxis.md +++ b/wiki/translations/es/Sketcher_SelectHorizontalAxis.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectHorizontalAxis/es + @@ -27,4 +29,7 @@ Selecciona el eje horizontal de un croquis. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectHorizontalAxis/es diff --git a/wiki/translations/es/Sketcher_SelectOrigin.md b/wiki/translations/es/Sketcher_SelectOrigin.md index 8c9448de42..966aa2562c 100644 --- a/wiki/translations/es/Sketcher_SelectOrigin.md +++ b/wiki/translations/es/Sketcher_SelectOrigin.md @@ -1,3 +1,4 @@ +# Sketcher SelectOrigin/es --- - GuiCommand:/es Name:Sketcher SelectOrigin Workbenches:[[Sketcher Workbench/es Sketcher]]|MenuLocation:Sketch → Sketcher tools → Select Origin Shortcut:Shift+Ctrl+O Version:0.15--- @@ -20,4 +21,7 @@ Selects the origin of a sketch. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectOrigin/es diff --git a/wiki/translations/es/Sketcher_SelectRedundantConstraints.md b/wiki/translations/es/Sketcher_SelectRedundantConstraints.md index 895ff8740c..96ef5dee19 100644 --- a/wiki/translations/es/Sketcher_SelectRedundantConstraints.md +++ b/wiki/translations/es/Sketcher_SelectRedundantConstraints.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectRedundantConstraints/es + @@ -35,4 +37,7 @@ Selecciona las restricciones redundantes de un croquis. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectRedundantConstraints/es diff --git a/wiki/translations/es/Sketcher_SelectVerticalAxis.md b/wiki/translations/es/Sketcher_SelectVerticalAxis.md index 9156841f30..fccd9d7ce9 100644 --- a/wiki/translations/es/Sketcher_SelectVerticalAxis.md +++ b/wiki/translations/es/Sketcher_SelectVerticalAxis.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectVerticalAxis/es + ## Descripción Selecciona el eje vertical de un croquis. @@ -24,4 +26,7 @@ Selecciona el eje vertical de un croquis. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectVerticalAxis/es diff --git a/wiki/translations/es/Sketcher_Split.md b/wiki/translations/es/Sketcher_Split.md index b5e2f4aec8..76c589b450 100644 --- a/wiki/translations/es/Sketcher_Split.md +++ b/wiki/translations/es/Sketcher_Split.md @@ -8,6 +8,8 @@ SeeAlso:[Croquizador Recortar](Sketcher_Trimming/es.md) --- +# Sketcher Split/es + ## Descripción Esta herramienta permite dividir un borde en dos idénticas, mientras que la mayoría de las restricciones se duplican, por lo que ambas partes permanecen restringidas aparte de la posición del punto de división. En el caso especial de un círculo, éste se convierte en un arco de extremos sueltos, transfiriéndose las restricciones existentes del círculo al nuevo arco. @@ -45,4 +47,7 @@ Esta herramienta permite dividir un borde en dos idénticas, mientras que la may {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Split/es diff --git a/wiki/translations/es/Sketcher_StopOperation.md b/wiki/translations/es/Sketcher_StopOperation.md index b4843ece1d..4aa50c5d64 100644 --- a/wiki/translations/es/Sketcher_StopOperation.md +++ b/wiki/translations/es/Sketcher_StopOperation.md @@ -6,6 +6,8 @@ MenuLocation:Dibujo → Detener Operación --- +# Sketcher StopOperation/es + ## Descripción @@ -25,4 +27,7 @@ Esto es similar a pulsar la tecla **Esc**. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher StopOperation/es diff --git a/wiki/translations/es/Sketcher_Symmetry.md b/wiki/translations/es/Sketcher_Symmetry.md index 4ba1784d9c..2ddad097bb 100644 --- a/wiki/translations/es/Sketcher_Symmetry.md +++ b/wiki/translations/es/Sketcher_Symmetry.md @@ -7,6 +7,8 @@ Version:0.16 --- +# Sketcher Symmetry/es + @@ -34,4 +36,7 @@ Tenga en cuenta que no se añadirá ninguna restricción de simetría adicional. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Symmetry/es diff --git a/wiki/translations/es/Sketcher_ToggleConstruction.md b/wiki/translations/es/Sketcher_ToggleConstruction.md index 4bd4b00318..3221513651 100644 --- a/wiki/translations/es/Sketcher_ToggleConstruction.md +++ b/wiki/translations/es/Sketcher_ToggleConstruction.md @@ -7,6 +7,8 @@ MenuLocation:Sketch → Geometrías de croquis → Alternar geometría de construcción --- +# Sketcher ToggleConstruction/es + @@ -72,3 +74,6 @@ and once you ** [lea }} [Category:Sketcher/es](Category:Sketcher/es.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleConstruction/es diff --git a/wiki/translations/es/Sketcher_ToggleDrivingConstraint.md b/wiki/translations/es/Sketcher_ToggleDrivingConstraint.md index f6a02afa53..a5ca897c4c 100644 --- a/wiki/translations/es/Sketcher_ToggleDrivingConstraint.md +++ b/wiki/translations/es/Sketcher_ToggleDrivingConstraint.md @@ -1,3 +1,4 @@ +# Sketcher ToggleDrivingConstraint/es --- - GuiCommand:/es Name:Sketcher ToggleConstraint Workbenches:[PartDesign](Sketcher_Workbench/es___Sketcher]],_[[PartDesign_Workbench/es.md)|MenuLocation:Sketch → Sketcher constraints → Toggle reference/driving constraint Shortcut: SeeAlso:[Toggle Construction](Sketcher_ToggleConstruction/es.md)--- @@ -25,4 +26,7 @@ The ** [ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleDrivingConstraint/es diff --git a/wiki/translations/es/Sketcher_Trimming.md b/wiki/translations/es/Sketcher_Trimming.md index 4b2ad83d6b..a4a33e5131 100644 --- a/wiki/translations/es/Sketcher_Trimming.md +++ b/wiki/translations/es/Sketcher_Trimming.md @@ -8,6 +8,8 @@ SeeAlso:[Croquizador Extender borde](Sketcher_Extend/es.md) --- +# Sketcher Trimming/es + ## Descripción Esta herramienta recorta un borde hasta el borde más cercano que se superpone. @@ -31,4 +33,7 @@ Esta herramienta recorta un borde hasta el borde más cercano que se superpone. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Trimming/es diff --git a/wiki/translations/es/Sketcher_ValidateSketch.md b/wiki/translations/es/Sketcher_ValidateSketch.md index d7d2512ab1..2449ab39ed 100644 --- a/wiki/translations/es/Sketcher_ValidateSketch.md +++ b/wiki/translations/es/Sketcher_ValidateSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Croquizador RestringirCoincidencia](Sketcher_ConstrainCoincident/es.md), [Problema de denominación topológica](Topological_naming_problem/es.md) --- +# Sketcher ValidateSketch/es + ## Descripción La utilidad **Validar croquis** puede utilizarse para analizar y reparar un croquis que ya no es editable o que tiene restricciones no válidas, o para añadir las restricciones [coincidentes](Sketcher_ConstrainCoincident/es.md) que faltan a un croquis creado a partir de geometría importada, como los archivos DXF. También puede ser útil para localizar una coincidencia que falta en un boceto nativo que genera un error de \"no se puede validar la cara rota\" al intentar aplicar una función de DiseñoPieza. @@ -78,4 +80,7 @@ The locking mechanism typically works well and this tool should not be needed. * {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ValidateSketch/es diff --git a/wiki/translations/es/Sketcher_ViewSketch.md b/wiki/translations/es/Sketcher_ViewSketch.md index 8b30f1c21a..19b88288af 100644 --- a/wiki/translations/es/Sketcher_ViewSketch.md +++ b/wiki/translations/es/Sketcher_ViewSketch.md @@ -1,3 +1,4 @@ +# Sketcher ViewSketch/es --- - GuiCommand:/es Name:Sketcher ViewSketch Workbenches:[PartDesign](Sketcher_Workbench/es___Sketcher]],_[[PartDesign_Workbench/es.md)|MenuLocation:Sketch → View sketch--- @@ -21,4 +22,7 @@ While in sketch edit mode, either {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSketch/es diff --git a/wiki/translations/es/Sketcher_Workbench.md b/wiki/translations/es/Sketcher_Workbench.md index a2d3c4dd0a..7d0c777a78 100644 --- a/wiki/translations/es/Sketcher_Workbench.md +++ b/wiki/translations/es/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/es - - - - - -El icono del Ambiente de trabajo Croquizador +# El icono del Ambiente de trabajo Croquizador Sketcher Workbench/es {{TOCright}} @@ -525,3 +519,6 @@ La página [Croquizador Guión](Sketcher_scripting/es.md) contiene ejemplos sobr }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/es diff --git a/wiki/translations/es/Sketcher_helper_constraint.md b/wiki/translations/es/Sketcher_helper_constraint.md index a04d3aa8ce..82341ecb42 100644 --- a/wiki/translations/es/Sketcher_helper_constraint.md +++ b/wiki/translations/es/Sketcher_helper_constraint.md @@ -1,6 +1,4 @@ # Sketcher helper constraint/es - - ## Overview Example of a helper constraint (Constraint5 - point on circle) for a tangent constraint (Constraint6; in tangent-via-point mode). Only one helper constraint is used in this case, since the point of tangency is the endpoint of ellipse\'s major diameter, which inherently lies on the ellipse. @@ -39,4 +37,7 @@ Helper constraints were introduced in v0.15.4387 {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher helper constraint/es diff --git a/wiki/translations/es/Sketcher_project.md b/wiki/translations/es/Sketcher_project.md index 45a17ccd83..c820742e93 100644 --- a/wiki/translations/es/Sketcher_project.md +++ b/wiki/translations/es/Sketcher_project.md @@ -1,7 +1,4 @@ # Sketcher project/es - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -120,3 +117,6 @@ For 0.12: }} [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher project/es diff --git a/wiki/translations/es/Sketcher_requirement_for_a_sketch.md b/wiki/translations/es/Sketcher_requirement_for_a_sketch.md index 5b1ab4b586..8ce31a7745 100644 --- a/wiki/translations/es/Sketcher_requirement_for_a_sketch.md +++ b/wiki/translations/es/Sketcher_requirement_for_a_sketch.md @@ -1,7 +1,4 @@ # Sketcher requirement for a sketch/es - - - {{TutorialInfo/es |Topic=Croquis |Level=Principiante @@ -44,4 +41,7 @@ Si crea accidentalmente una \"sobremodulación\", aparece una advertencia en la {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher requirement for a sketch/es diff --git a/wiki/translations/es/Sketcher_scripting.md b/wiki/translations/es/Sketcher_scripting.md index b170d1e60f..b7cf14765a 100644 --- a/wiki/translations/es/Sketcher_scripting.md +++ b/wiki/translations/es/Sketcher_scripting.md @@ -1,5 +1,5 @@ # Sketcher scripting/es - {{TOCright}} +{{TOCright}} ## Creación de una restricción con Python @@ -200,4 +200,7 @@ The command `Sketch.addConstraint(Sketcher.Constraint('Coincident',0,2,2,2))` yi {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher scripting/es diff --git a/wiki/translations/es/Sketcher_tutorial.md b/wiki/translations/es/Sketcher_tutorial.md index 5913b56c47..20a654711e 100644 --- a/wiki/translations/es/Sketcher_tutorial.md +++ b/wiki/translations/es/Sketcher_tutorial.md @@ -1,2 +1,5 @@ # Sketcher tutorial/es 1. REDIRECT [Basic\_Sketcher\_Tutorial/es](Basic_Sketcher_Tutorial/es.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher tutorial/es diff --git a/wiki/translations/es/Source_code_management.md b/wiki/translations/es/Source_code_management.md index 7846eb910c..613ece6e37 100644 --- a/wiki/translations/es/Source_code_management.md +++ b/wiki/translations/es/Source_code_management.md @@ -1,5 +1,5 @@ # Source code management/es - {{TOCright}} +{{TOCright}} ## Introduction @@ -990,3 +990,6 @@ Head to the development section of the [FreeCAD forum](https://forum.freecadweb. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source code management/es diff --git a/wiki/translations/es/Source_documentation.md b/wiki/translations/es/Source_documentation.md index b28e4571ed..6dec7735d0 100644 --- a/wiki/translations/es/Source_documentation.md +++ b/wiki/translations/es/Source_documentation.md @@ -1,7 +1,4 @@ # Source documentation/es - - -
@@ -163,3 +160,6 @@ void removeTaskWatcher(void); [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source documentation/es diff --git a/wiki/translations/es/Spinning.md b/wiki/translations/es/Spinning.md index b282153901..43d373e125 100644 --- a/wiki/translations/es/Spinning.md +++ b/wiki/translations/es/Spinning.md @@ -1,2 +1,5 @@ # Spinning/es 1. REDIRECT [Std\_DemoMode](Std_DemoMode.md) + +--- +[documentation index](../README.md) > Spinning/es diff --git a/wiki/translations/es/Splash_screen.md b/wiki/translations/es/Splash_screen.md index e639662998..71d4a0e373 100644 --- a/wiki/translations/es/Splash_screen.md +++ b/wiki/translations/es/Splash_screen.md @@ -1,4 +1,7 @@ # Splash screen/es - La **pantalla de bienvenida** es una imagen que aparece durante el inicio de FreeCAD. Puedes desactivar la pantalla de bienvenida en el menú Preferencias de FreeCAD eliminando la opción \"Activar la pantalla de bienvenida al inicio\". +La **pantalla de bienvenida** es una imagen que aparece durante el inicio de FreeCAD. Puedes desactivar la pantalla de bienvenida en el menú Preferencias de FreeCAD eliminando la opción \"Activar la pantalla de bienvenida al inicio\". [Category:User Documentation/es](Category:User_Documentation/es.md) + +--- +[documentation index](../README.md) > Splash screen/es diff --git a/wiki/translations/es/Spreadsheet_CreateSheet.md b/wiki/translations/es/Spreadsheet_CreateSheet.md index 21d745ee22..ada8635446 100644 --- a/wiki/translations/es/Spreadsheet_CreateSheet.md +++ b/wiki/translations/es/Spreadsheet_CreateSheet.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet CreateSheet/es + ## Descripción El ** [Hoja de cálculo CrearHoja](Spreadsheet_CreateSheet/es.md)** añade un nuevo objeto de hoja de cálculo al documento activo, que se abrirá en una nueva pestaña en el [área de vista principal](main_view_area/es.md). @@ -23,4 +25,7 @@ El ** [Hoja de c {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet CreateSheet/es diff --git a/wiki/translations/es/Spreadsheet_Export.md b/wiki/translations/es/Spreadsheet_Export.md index 89c7f50fc5..15736de962 100644 --- a/wiki/translations/es/Spreadsheet_Export.md +++ b/wiki/translations/es/Spreadsheet_Export.md @@ -8,6 +8,8 @@ SeeAlso:[Std Importar](Std_Import/es.md) --- +# Spreadsheet Export/es +
@@ -26,4 +28,7 @@ El ** [Exportación de {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Export/es diff --git a/wiki/translations/es/Spreadsheet_Import.md b/wiki/translations/es/Spreadsheet_Import.md index 57a29c519b..b818df0343 100644 --- a/wiki/translations/es/Spreadsheet_Import.md +++ b/wiki/translations/es/Spreadsheet_Import.md @@ -8,6 +8,8 @@ SeeAlso:[Std Importar](Std_Import/es.md) --- +# Spreadsheet Import/es + @@ -30,4 +32,7 @@ El herramienta ** [Imp {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Import/es diff --git a/wiki/translations/es/Spreadsheet_Module.md b/wiki/translations/es/Spreadsheet_Module.md index a8d786e2fb..ad98d96d60 100644 --- a/wiki/translations/es/Spreadsheet_Module.md +++ b/wiki/translations/es/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module/es 1. REDIRECT [Spreadsheet Workbench/es](Spreadsheet_Workbench/es.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module/es diff --git a/wiki/translations/es/Spreadsheet_Workbench.md b/wiki/translations/es/Spreadsheet_Workbench.md index 29ef3ac57e..20d67de35a 100644 --- a/wiki/translations/es/Spreadsheet_Workbench.md +++ b/wiki/translations/es/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/es - {{Page_in_progress}} @@ -235,3 +234,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/es diff --git a/wiki/translations/es/Standard_Menu.md b/wiki/translations/es/Standard_Menu.md index 27d14826f2..6c36c28eda 100644 --- a/wiki/translations/es/Standard_Menu.md +++ b/wiki/translations/es/Standard_Menu.md @@ -1,5 +1,5 @@ # Standard Menu/es - {{TOCright}} +{{TOCright}} ## Introduction @@ -47,4 +47,7 @@ The standard menu is composed of 7 sub-menus: {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Standard Menu/es diff --git a/wiki/translations/es/Start_Workbench.md b/wiki/translations/es/Start_Workbench.md index cef9e4f798..6fef453b9d 100644 --- a/wiki/translations/es/Start_Workbench.md +++ b/wiki/translations/es/Start_Workbench.md @@ -1,7 +1,4 @@ # Start Workbench/es - - -
@@ -35,3 +32,6 @@ Desde esta interfaz puedes ver información útil y saltar a los archivos abiert [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench/es diff --git a/wiki/translations/es/Start_up_and_Configuration.md b/wiki/translations/es/Start_up_and_Configuration.md index f85fe30552..305988d6ba 100644 --- a/wiki/translations/es/Start_up_and_Configuration.md +++ b/wiki/translations/es/Start_up_and_Configuration.md @@ -1,10 +1,4 @@ # Start up and Configuration/es - - - - - - {{TOCright}} ## Vista general @@ -459,3 +453,6 @@ Now double-click the batch file to start FreeCAD. ([see](https://forum.freecadwe [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start up and Configuration/es diff --git a/wiki/translations/es/Std_AddonMgr.md b/wiki/translations/es/Std_AddonMgr.md index 8cf676d5bd..899efecaca 100644 --- a/wiki/translations/es/Std_AddonMgr.md +++ b/wiki/translations/es/Std_AddonMgr.md @@ -8,6 +8,8 @@ SeeAlso:[Ambientes de trabajo externos](External_workbenches/es.md), [Macros](Macros/es.md) --- +# Std AddonMgr/es + ## Descripción El comando **Std GestorComplementos** abre el gestor de complementos. Con el gestor de complementos puedes instalar y gestionar [Ambientes de trabajo externos](external_workbenches/es.md) y [Macros](macros/es.md) proporcionados por la comunidad de FreeCAD. Las Ambientes de trabajo y macros disponibles se toman de dos repositorios, [FreeCAD-addons](https://github.com/FreeCAD/FreeCAD-addons/) y [FreeCAD-macros](https://github.com/FreeCAD/FreeCAD-macros/), y de la página [Recetas de macros](Macros_recipes/es.md). @@ -78,4 +80,7 @@ Si desarrollas un ambiente de trabajo en C++, no puede ser ejecutado directament {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std AddonMgr/es diff --git a/wiki/translations/es/Std_Base.md b/wiki/translations/es/Std_Base.md index e1654e88ca..0b6dcfc97c 100644 --- a/wiki/translations/es/Std_Base.md +++ b/wiki/translations/es/Std_Base.md @@ -1,10 +1,4 @@ -# Std Base/es - - - - - -Std Base icono +# Std Base icono Std Base/es {{TOCright}} @@ -67,3 +61,6 @@ El menú estándar se compone de 7 submenús. Cada submenú tiene una página de }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Base/es diff --git a/wiki/translations/es/Std_Delete.md b/wiki/translations/es/Std_Delete.md index 28da7482b9..34c2048485 100644 --- a/wiki/translations/es/Std_Delete.md +++ b/wiki/translations/es/Std_Delete.md @@ -6,6 +6,8 @@ MenuLocation:Editar → Borrar --- +# Std Delete/es +
@@ -63,4 +65,7 @@ FreeCAD.ActiveDocument.removeObject("myObjectName") {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Delete/es diff --git a/wiki/translations/es/Std_DependencyGraph.md b/wiki/translations/es/Std_DependencyGraph.md index 472ad7a089..6a1f40dcc4 100644 --- a/wiki/translations/es/Std_DependencyGraph.md +++ b/wiki/translations/es/Std_DependencyGraph.md @@ -6,6 +6,8 @@ Workbenches:Todo --- +# Std DependencyGraph/es + ## Descripción El comando **Std GrafoDependencia** muestra las dependencias entre los objetos del documento activo en un \"gráfico de dependencias\". A diferencia de la [Vista de árbol](Tree_view/es.md), los objetos se enumeran en orden cronológico inverso, con el primer objeto creado en la parte inferior. @@ -106,3 +108,6 @@ Puede guardar un gráfico dependencia: }} [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > Std DependencyGraph/es diff --git a/wiki/translations/es/Std_DlgCustomize.md b/wiki/translations/es/Std_DlgCustomize.md index f2a8079a50..1451d2a268 100644 --- a/wiki/translations/es/Std_DlgCustomize.md +++ b/wiki/translations/es/Std_DlgCustomize.md @@ -7,6 +7,8 @@ SeeAlso:[Personalización del interfaz](Interface_Customization/es.md) --- +# Std DlgCustomize/es + ## Descripción El comando **Std DiálogoPersonalizar** abre el cuadro de diálogo Personalizar que da acceso a varias opciones de personalización. @@ -32,4 +34,7 @@ El comando **Std DiálogoPersonalizar** abre el cuadro de diálogo Personalizar {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgCustomize/es diff --git a/wiki/translations/es/Std_Edit.md b/wiki/translations/es/Std_Edit.md index 2e6667d5d0..97c8c0bdc9 100644 --- a/wiki/translations/es/Std_Edit.md +++ b/wiki/translations/es/Std_Edit.md @@ -1,3 +1,4 @@ +# Std Edit/es --- - GuiCommand:/es Name:Std_Edit Name/es:Std Edit MenuLocation:[[Std_Edit_Menu/es Edición]] -> Conmutar modo de edición|Workbenches:Todos SeeAlso:...--- @@ -89,4 +90,7 @@ FreeCADGui.ActiveDocument.resetEdit() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Edit/es diff --git a/wiki/translations/es/Std_Edit_Menu.md b/wiki/translations/es/Std_Edit_Menu.md index ec5c197b54..546dcfee37 100644 --- a/wiki/translations/es/Std_Edit_Menu.md +++ b/wiki/translations/es/Std_Edit_Menu.md @@ -1,10 +1,4 @@ -# Std Edit Menu/es - - - - - -Std Base icon +# Std Base icon Std Edit Menu/es {{TOCright}} @@ -81,3 +75,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Edit Menu/es diff --git a/wiki/translations/es/Std_File_Menu.md b/wiki/translations/es/Std_File_Menu.md index cd2a4030df..b8b13f08e8 100644 --- a/wiki/translations/es/Std_File_Menu.md +++ b/wiki/translations/es/Std_File_Menu.md @@ -1,10 +1,4 @@ -# Std File Menu/es - - - - - -Std Base icon +# Std Base icon Std File Menu/es {{TOCright}} @@ -82,3 +76,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std File Menu/es diff --git a/wiki/translations/es/Std_Group.md b/wiki/translations/es/Std_Group.md index fb40adb35a..3a82de7c1b 100644 --- a/wiki/translations/es/Std_Group.md +++ b/wiki/translations/es/Std_Group.md @@ -1,3 +1,4 @@ +# Std Group/es --- - GuiCommand:/es Name:Std Group MenuLocation:Tree View → Right click on the document name |Workbenches:All Shortcut: SeeAlso:[Draft SelectGroup](Draft_SelectGroup/es.md), [Draft AddToGroup](Draft_AddToGroup/es.md)--- @@ -120,4 +121,7 @@ For example, a [FEM Analysis](FEM_Analysis.md) is an `App::DocumentObjectGroupPy {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Group/es diff --git a/wiki/translations/es/Std_Import.md b/wiki/translations/es/Std_Import.md index 32664d0b41..e7d377eecc 100644 --- a/wiki/translations/es/Std_Import.md +++ b/wiki/translations/es/Std_Import.md @@ -1,3 +1,4 @@ +# Std Import/es --- - GuiCommand:/es Name:Std_Import Name/es:Std_Import Workbenches:Todos MenuLocation:Archivo → Importar Shortcut:CTRL+I SeeAlso:[Std Open](Std_Open/es.md), [Std_Save](Std_Save/es.md)...--- @@ -49,3 +50,6 @@ Cuando se carga, el fichero es **incorporado** al proyecto actual (que debe esta }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Import/es diff --git a/wiki/translations/es/Std_InterfaceCustomization.md b/wiki/translations/es/Std_InterfaceCustomization.md index 987c8a4a23..e0aeafdfa7 100644 --- a/wiki/translations/es/Std_InterfaceCustomization.md +++ b/wiki/translations/es/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/es 1. REDIRECT [Interface\_Customization/es](Interface_Customization/es.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/es diff --git a/wiki/translations/es/Std_New.md b/wiki/translations/es/Std_New.md index f62349aa10..14a2d4d17b 100644 --- a/wiki/translations/es/Std_New.md +++ b/wiki/translations/es/Std_New.md @@ -1,3 +1,4 @@ +# Std New/es --- - GuiCommand:/es Name:Std New MenuLocation:Archivo -> Nuevo Workbenches:Todos SeeAlso:[[Std_Open/es]],[[Std_Import/es]]--- @@ -98,4 +99,7 @@ FreeCAD.closeDocument(doc.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std New/es diff --git a/wiki/translations/es/Std_Open.md b/wiki/translations/es/Std_Open.md index 6d9836e2e1..43fbc828e0 100644 --- a/wiki/translations/es/Std_Open.md +++ b/wiki/translations/es/Std_Open.md @@ -1,3 +1,4 @@ +# Std Open/es --- - GuiCommand:/es Name:Std Open MenuLocation:[Workbenches:Todos SeeAlso:[[Std_Save/es](Std_File_Menu___File]]_→_Open.md),[[Std_Import/es]]--- @@ -51,4 +52,7 @@ For a scripting example see [Std New](Std_New#Scripting.md). {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Open/es diff --git a/wiki/translations/es/Std_OrthographicCamera.md b/wiki/translations/es/Std_OrthographicCamera.md index 3f19ef8100..0968163a98 100644 --- a/wiki/translations/es/Std_OrthographicCamera.md +++ b/wiki/translations/es/Std_OrthographicCamera.md @@ -1,3 +1,4 @@ +# Std OrthographicCamera/es --- - GuiCommand:/es Name:Std OrthographicCamera Name/es:Std OrthographicCamera MenuLocation:[|Workbenches:All Shortcut: SeeAlso:[[Std PerspectiveCamera/es|Perspective View](Std_View_Menu/es___View]]_→_Orthographic_view.md)--- @@ -57,4 +58,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std OrthographicCamera/es diff --git a/wiki/translations/es/Std_Part.md b/wiki/translations/es/Std_Part.md index 4c4f8b2545..ad6b716e53 100644 --- a/wiki/translations/es/Std_Part.md +++ b/wiki/translations/es/Std_Part.md @@ -8,6 +8,8 @@ SeeAlso:[Std Grupo](Std_Group/es.md), [Cuerpo PartDesign](PartDesign_Body/es.md) --- +# Std Part/es + @@ -336,4 +338,7 @@ App.ActiveDocument.addObject('Part::FeaturePython', 'Group', group.MyGroup(), gr {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Part/es diff --git a/wiki/translations/es/Std_PerspectiveCamera.md b/wiki/translations/es/Std_PerspectiveCamera.md index 53f84f4dbd..5f45b862f9 100644 --- a/wiki/translations/es/Std_PerspectiveCamera.md +++ b/wiki/translations/es/Std_PerspectiveCamera.md @@ -1,3 +1,4 @@ +# Std PerspectiveCamera/es --- - GuiCommand:/es Name:Std PerspectiveCamera Name/es:Std PerspectiveCamera MenuLocation:[|Workbenches:All Shortcut: SeeAlso:[[Std OrthographicCamera/es|Orthographic view](Std_View_Menu/es___View]]_→_Perspective_view‏‎.md)--- @@ -56,4 +57,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PerspectiveCamera/es diff --git a/wiki/translations/es/Std_ProjectUtil.md b/wiki/translations/es/Std_ProjectUtil.md index fa0605738a..b5390455db 100644 --- a/wiki/translations/es/Std_ProjectUtil.md +++ b/wiki/translations/es/Std_ProjectUtil.md @@ -6,6 +6,8 @@ Workbenches:Todo --- +# Std ProjectUtil/es + ## Descripción Con el comando **Std ProjectoUtil** puedes extraer archivos de un archivo de proyecto de FreeCAD ({{FileName|*.FCStd}}), que es de hecho un archivo [ZIP](https://en.wikipedia.org/wiki/Zip_(file_format)), y, después de ediciones manuales, crear un nuevo archivo de proyecto a partir de ellos. @@ -58,4 +60,7 @@ Es importante darse cuenta de que los archivos dentro de un archivo de proyecto {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ProjectUtil/es diff --git a/wiki/translations/es/Std_Save.md b/wiki/translations/es/Std_Save.md index 54fd5cb053..2e4b86e246 100644 --- a/wiki/translations/es/Std_Save.md +++ b/wiki/translations/es/Std_Save.md @@ -1,3 +1,4 @@ +# Std Save/es --- - GuiCommand:/es Name:Std Save Name/es:Std Save MenuLocation:[Workbenches:All Shortcut:Crtl+S SeeAlso:[[Std_SaveAs/es|Save as...](Std_File_Menu/es___File]]_→_Save.md)--- @@ -43,4 +44,7 @@ To save a document use the `save` method of the document object. A new document {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Save/es diff --git a/wiki/translations/es/Std_SaveAs.md b/wiki/translations/es/Std_SaveAs.md index 8d1d2567bd..a35a6eaa40 100644 --- a/wiki/translations/es/Std_SaveAs.md +++ b/wiki/translations/es/Std_SaveAs.md @@ -1,3 +1,4 @@ +# Std SaveAs/es --- - GuiCommand:/es Name:Std SaveAs Name/es:Std SaveAs MenuLocation:[Workbenches:All Shortcut:Shift+Crtl+S SeeAlso:[[Std_Save/es|Save](Std_File_Menu/es___File]]_→_Save_as....md)--- @@ -49,4 +50,7 @@ To save a document under a new name use the `saveAs` method of the document obje {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveAs/es diff --git a/wiki/translations/es/Std_SceneInspector.md b/wiki/translations/es/Std_SceneInspector.md index 18ad75ce79..ec29b9d6a1 100644 --- a/wiki/translations/es/Std_SceneInspector.md +++ b/wiki/translations/es/Std_SceneInspector.md @@ -6,6 +6,8 @@ Workbenches:Todo --- +# Std SceneInspector/es + ## Descripción El comando **Std InspectorEscenas** abre un cuadro de diálogo que muestra una visión general de todos los nodos del [escenógrafo](Scenegraph/es.md) de la [Vista 3D](3D_view/es.md) activa. Es más una utilidad para los programadores que para los usuarios medios. Se puede utilizar para averiguar por qué el renderizado es lento o por qué algo no se renderiza correctamente. @@ -24,4 +26,7 @@ El comando **Std InspectorEscenas** abre un cuadro de diálogo que muestra una v {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SceneInspector/es diff --git a/wiki/translations/es/Std_ToggleClipPlane.md b/wiki/translations/es/Std_ToggleClipPlane.md index 67f0b9a8fd..4be8c495cd 100644 --- a/wiki/translations/es/Std_ToggleClipPlane.md +++ b/wiki/translations/es/Std_ToggleClipPlane.md @@ -1,3 +1,4 @@ +# Std ToggleClipPlane/es --- - GuiCommand:/es Name:Std ClippingPlane Name/es:Std ClippingPlane MenuLocation:[[Std View Menu/es View]] → Clipping plane‏‎||Workbenches:All Shortcut: SeeAlso:--- @@ -38,4 +39,7 @@ The **Std ToggleClipPlane** command temporarily hides objects and parts of objec {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleClipPlane/es diff --git a/wiki/translations/es/Std_Tools_Menu.md b/wiki/translations/es/Std_Tools_Menu.md index b2723e0b93..59f3ac2916 100644 --- a/wiki/translations/es/Std_Tools_Menu.md +++ b/wiki/translations/es/Std_Tools_Menu.md @@ -1,10 +1,4 @@ -# Std Tools Menu/es - - - - - -Std Base icon +# Std Base icon Std Tools Menu/es {{TOCright}} @@ -59,3 +53,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Tools Menu/es diff --git a/wiki/translations/es/Std_ViewScreenShot.md b/wiki/translations/es/Std_ViewScreenShot.md index 8e7003e39a..69cd316a93 100644 --- a/wiki/translations/es/Std_ViewScreenShot.md +++ b/wiki/translations/es/Std_ViewScreenShot.md @@ -1,3 +1,4 @@ +# Std ViewScreenShot/es --- - GuiCommand:/es Name:Std_ViewScreenShot MenuLocation:[[Std Tools Menu/es Herramientas]] -> Guardar imagen...|Workbenches:Todos SeeAlso:...--- @@ -129,4 +130,7 @@ App.closeDocument(App.ActiveDocument.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewScreenShot/es diff --git a/wiki/translations/es/Std_View_Menu.md b/wiki/translations/es/Std_View_Menu.md index 59d51e3112..dced779fbc 100644 --- a/wiki/translations/es/Std_View_Menu.md +++ b/wiki/translations/es/Std_View_Menu.md @@ -1,10 +1,4 @@ -# Std View Menu/es - - - - - -Std Base icono +# Std Base icono Std View Menu/es {{TOCright}} @@ -165,3 +159,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std View Menu/es diff --git a/wiki/translations/es/Surface_Module.md b/wiki/translations/es/Surface_Module.md index d715d0b34d..abdc9597d2 100644 --- a/wiki/translations/es/Surface_Module.md +++ b/wiki/translations/es/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/es 1. REDIRECT [Surface\_Workbench/es](Surface_Workbench/es.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/es diff --git a/wiki/translations/es/Surface_Workbench.md b/wiki/translations/es/Surface_Workbench.md index c0121987df..208f4a8124 100644 --- a/wiki/translations/es/Surface_Workbench.md +++ b/wiki/translations/es/Surface_Workbench.md @@ -1,7 +1,4 @@ # Surface Workbench/es - - -
@@ -69,3 +66,6 @@ La superficie generada no puede colocarse dentro de un ** Surface Workbench/es diff --git a/wiki/translations/es/Svg_Namespace.md b/wiki/translations/es/Svg_Namespace.md index 5e7fda7c07..334f8a87bd 100644 --- a/wiki/translations/es/Svg_Namespace.md +++ b/wiki/translations/es/Svg_Namespace.md @@ -1,7 +1,4 @@ # Svg Namespace/es - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** @@ -251,3 +248,6 @@ See [Drawing templates](Drawing_templates.md) }} [Category:Poweruser\_Documentation](Category:Poweruser_Documentation.md) [Category:Developer](Category:Developer.md) [Category:Python\_Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Poweruser_Documentation](Category:Poweruser_Documentation.md) > Svg Namespace/es diff --git a/wiki/translations/es/Symbols_Library_Workbench.md b/wiki/translations/es/Symbols_Library_Workbench.md index 3b90c5098c..ee664c76d5 100644 --- a/wiki/translations/es/Symbols_Library_Workbench.md +++ b/wiki/translations/es/Symbols_Library_Workbench.md @@ -1,6 +1,4 @@ # Symbols Library Workbench/es - - ## Introducción @@ -57,3 +55,6 @@ La biblioteca es un simple contenedor de archivos SVG. Puedes descargarla en cua [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Symbols Library Workbench/es diff --git a/wiki/translations/es/Task_panel.md b/wiki/translations/es/Task_panel.md index 71462fda7e..755dd7f6b3 100644 --- a/wiki/translations/es/Task_panel.md +++ b/wiki/translations/es/Task_panel.md @@ -1,5 +1,5 @@ # Task panel/es - {{TOCright}} +{{TOCright}} ## Introducción @@ -78,4 +78,7 @@ Gui::Control().closeDialog(); {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Task panel/es diff --git a/wiki/translations/es/Tasks_Placement.md b/wiki/translations/es/Tasks_Placement.md index c036db06e3..bae75df3d5 100644 --- a/wiki/translations/es/Tasks_Placement.md +++ b/wiki/translations/es/Tasks_Placement.md @@ -1,6 +1,4 @@ # Tasks Placement/es - - ## Description Command for modifying **Placement**. These options relate only to the position and orientation of the object in space, they do not affect other attributes of the shape. The placement is stored internally as a position, and a rotation (rotation axis and angle transformed into a quaternion [1](https://en.wikipedia.org/wiki/Quaternions_and_spatial_rotation)). While there are several methods to specify a rotation, for instance with a rotation center, this is only used to affect the rotation computation and is not stored for later operations. Similarly, if a rotation axis of (1,1,1) is specified, it may be normalized when stored in the quaternion and appear as (0.58, 0.58, 0.58) when browsing the object later. @@ -121,3 +119,6 @@ Other explanation on [Placement](Placement.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Command_Reference](Category:Command_Reference.md) > Tasks Placement/es diff --git a/wiki/translations/es/TechDraw_AngleDimension.md b/wiki/translations/es/TechDraw_AngleDimension.md index db68a49163..40be939fb7 100644 --- a/wiki/translations/es/TechDraw_AngleDimension.md +++ b/wiki/translations/es/TechDraw_AngleDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Dimensión Ángulo3Ps](TechDraw_Dimension_Angle3Pt/es.md) --- +# TechDraw AngleDimension/es +
@@ -63,4 +65,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw AngleDimension/es diff --git a/wiki/translations/es/TechDraw_DiameterDimension.md b/wiki/translations/es/TechDraw_DiameterDimension.md index 8647b9ba09..97c82747b3 100644 --- a/wiki/translations/es/TechDraw_DiameterDimension.md +++ b/wiki/translations/es/TechDraw_DiameterDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Dimensión Radio](TechDraw_Dimension_Radius/es.md) --- +# TechDraw DiameterDimension/es + @@ -63,4 +65,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DiameterDimension/es diff --git a/wiki/translations/es/TechDraw_Dimension_Angle.md b/wiki/translations/es/TechDraw_Dimension_Angle.md index ec1f34bc80..11fed0687e 100644 --- a/wiki/translations/es/TechDraw_Dimension_Angle.md +++ b/wiki/translations/es/TechDraw_Dimension_Angle.md @@ -1,2 +1,5 @@ # TechDraw Dimension Angle/es 1. REDIRECT [TechDraw\_AngleDimension/es](TechDraw_AngleDimension/es.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Angle/es diff --git a/wiki/translations/es/TechDraw_Dimension_Diameter.md b/wiki/translations/es/TechDraw_Dimension_Diameter.md index 4b17e93999..af914bd886 100644 --- a/wiki/translations/es/TechDraw_Dimension_Diameter.md +++ b/wiki/translations/es/TechDraw_Dimension_Diameter.md @@ -1,2 +1,5 @@ # TechDraw Dimension Diameter/es 1. REDIRECT [TechDraw\_DiameterDimension/es](TechDraw_DiameterDimension/es.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Diameter/es diff --git a/wiki/translations/es/TechDraw_Dimension_Horizontal.md b/wiki/translations/es/TechDraw_Dimension_Horizontal.md index 4781b2b9a1..49d8713abe 100644 --- a/wiki/translations/es/TechDraw_Dimension_Horizontal.md +++ b/wiki/translations/es/TechDraw_Dimension_Horizontal.md @@ -1,2 +1,5 @@ # TechDraw Dimension Horizontal/es 1. REDIRECT [TechDraw\_HorizontalDimension/es](TechDraw_HorizontalDimension/es.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Horizontal/es diff --git a/wiki/translations/es/TechDraw_Dimension_Length.md b/wiki/translations/es/TechDraw_Dimension_Length.md index 8fb14b2e6e..47c5b4d8cb 100644 --- a/wiki/translations/es/TechDraw_Dimension_Length.md +++ b/wiki/translations/es/TechDraw_Dimension_Length.md @@ -1,2 +1,5 @@ # TechDraw Dimension Length/es 1. REDIRECT [TechDraw\_LengthDimension/es](TechDraw_LengthDimension/es.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Length/es diff --git a/wiki/translations/es/TechDraw_Dimension_Radius.md b/wiki/translations/es/TechDraw_Dimension_Radius.md index 1a12feb0fa..d6ede6aed0 100644 --- a/wiki/translations/es/TechDraw_Dimension_Radius.md +++ b/wiki/translations/es/TechDraw_Dimension_Radius.md @@ -1,2 +1,5 @@ # TechDraw Dimension Radius/es 1. REDIRECT [TechDraw\_RadiusDimension/es](TechDraw_RadiusDimension/es.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Radius/es diff --git a/wiki/translations/es/TechDraw_Dimension_Vertical.md b/wiki/translations/es/TechDraw_Dimension_Vertical.md index 6571dbdd3a..8bd7313fa8 100644 --- a/wiki/translations/es/TechDraw_Dimension_Vertical.md +++ b/wiki/translations/es/TechDraw_Dimension_Vertical.md @@ -1,2 +1,5 @@ # TechDraw Dimension Vertical/es 1. REDIRECT [TechDraw\_VerticalDimension/es](TechDraw_VerticalDimension/es.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Vertical/es diff --git a/wiki/translations/es/TechDraw_ExportPageDXF.md b/wiki/translations/es/TechDraw_ExportPageDXF.md index 9f0302ba6e..d538e0ed12 100644 --- a/wiki/translations/es/TechDraw_ExportPageDXF.md +++ b/wiki/translations/es/TechDraw_ExportPageDXF.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Export Page as SVG](TechDraw_ExportPageSVG.md), [Draft DXF](Draft_DXF.md) --- +# TechDraw ExportPageDXF/es + ## Descripción The ExportPageDXF tool saves a drawing page as a [DXF](DXF.md) file. @@ -73,4 +75,7 @@ TechDraw.writeDXFPage(page,filename) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ExportPageDXF/es diff --git a/wiki/translations/es/TechDraw_ExportPageSVG.md b/wiki/translations/es/TechDraw_ExportPageSVG.md index fcfe4483ec..a391924bfb 100644 --- a/wiki/translations/es/TechDraw_ExportPageSVG.md +++ b/wiki/translations/es/TechDraw_ExportPageSVG.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Templates](TechDraw_Templates.md), [Draft SVG](Draft_SVG.md) --- +# TechDraw ExportPageSVG/es + ## Descripción The ExportPageSVG tool saves the current drawing page as an [SVG](SVG.md) file. @@ -48,4 +50,7 @@ Note that the FreeCADGui module must be active to use this function. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ExportPageSVG/es diff --git a/wiki/translations/es/TechDraw_Hatch.md b/wiki/translations/es/TechDraw_Hatch.md index d4f6efdcf3..5c8082e531 100644 --- a/wiki/translations/es/TechDraw_Hatch.md +++ b/wiki/translations/es/TechDraw_Hatch.md @@ -7,6 +7,8 @@ SeeAlso:[DibujoTécnico Aplicar la achurado geométrica a la plano](TechDraw_GeometricHatch/es.md), [DibujoTécnico Achurado](TechDraw_Hatching/es.md) --- +# TechDraw Hatch/es + ## Descripción La herramienta Achurado rellena una región cerrada en una Vista con un patrón de achurado, que pueden ser archivos [SVG](SVG/es.md) o [bitmap](bitmap/es.md). Por el contrario el [Achurado geométrico](TechDraw_GeometricHatch/es.md) utiliza un archivo de patrones PAT específico, vea [Achurado](TechDraw_Hatching/es.md) para más detalles. @@ -71,4 +73,7 @@ rc = page.addView(hatch) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Hatch/es diff --git a/wiki/translations/es/TechDraw_HorizontalDimension.md b/wiki/translations/es/TechDraw_HorizontalDimension.md index 748088d743..6995bf6b92 100644 --- a/wiki/translations/es/TechDraw_HorizontalDimension.md +++ b/wiki/translations/es/TechDraw_HorizontalDimension.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Dimensión Longitud](TechDraw_Dimension_Length/es.md), [TechDraw Dimensión Vertical](TechDraw_Dimension_Vertical/es.md) --- +# TechDraw HorizontalDimension/es + @@ -64,4 +66,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HorizontalDimension/es diff --git a/wiki/translations/es/TechDraw_HowTo_Page.md b/wiki/translations/es/TechDraw_HowTo_Page.md index 55822df143..ba44a836e0 100644 --- a/wiki/translations/es/TechDraw_HowTo_Page.md +++ b/wiki/translations/es/TechDraw_HowTo_Page.md @@ -1,5 +1,5 @@ # TechDraw HowTo Page/es - Back to [TechDraw Tutorials](TechDraw_Workbench#Tutorials.md) +Back to [TechDraw Tutorials](TechDraw_Workbench#Tutorials.md) {{TutorialInfo/es @@ -50,4 +50,7 @@ See also [Measurement Of Angles On Holes](Measurement_Of_Angles_On_Holes.md) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HowTo Page/es diff --git a/wiki/translations/es/TechDraw_LengthDimension.md b/wiki/translations/es/TechDraw_LengthDimension.md index 386a9f2b55..b9188b1d4c 100644 --- a/wiki/translations/es/TechDraw_LengthDimension.md +++ b/wiki/translations/es/TechDraw_LengthDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Dimensión Horizontal](TechDraw_Dimension_Horizontal/es.md), [TechDraw Dimensión Vertical](TechDraw_Dimension_Vertical/es.md) --- +# TechDraw LengthDimension/es + @@ -271,4 +273,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LengthDimension/es diff --git a/wiki/translations/es/TechDraw_Module.md b/wiki/translations/es/TechDraw_Module.md index b77deb371a..1f6121f01a 100644 --- a/wiki/translations/es/TechDraw_Module.md +++ b/wiki/translations/es/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/es 1. REDIRECT [TechDraw\_Workbench/es](TechDraw_Workbench/es.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/es diff --git a/wiki/translations/es/TechDraw_NewArch.md b/wiki/translations/es/TechDraw_NewArch.md index 183b099644..2a989220aa 100644 --- a/wiki/translations/es/TechDraw_NewArch.md +++ b/wiki/translations/es/TechDraw_NewArch.md @@ -1,2 +1,5 @@ # TechDraw NewArch/es 1. REDIRECT [TechDraw\_ArchView](TechDraw_ArchView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewArch/es diff --git a/wiki/translations/es/TechDraw_PageDefault.md b/wiki/translations/es/TechDraw_PageDefault.md index 0b4e70acbc..3d08ad22bf 100644 --- a/wiki/translations/es/TechDraw_PageDefault.md +++ b/wiki/translations/es/TechDraw_PageDefault.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Page Template](TechDraw_PageTemplate.md), [TechDraw Templates](TechDraw_Templates.md) --- +# TechDraw PageDefault/es + ## Descripción The New Default tool creates a new Page object using the the template file specified in the [TechDraw Preferences](TechDraw_Preferences.md). @@ -87,4 +89,7 @@ page.Template.EditableTexts = texts {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw PageDefault/es diff --git a/wiki/translations/es/TechDraw_PageTemplate.md b/wiki/translations/es/TechDraw_PageTemplate.md index e2c7a0f021..9282295afe 100644 --- a/wiki/translations/es/TechDraw_PageTemplate.md +++ b/wiki/translations/es/TechDraw_PageTemplate.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Default Page](TechDraw_PageDefault.md), [TechDraw Templates](TechDraw_Templates.md) --- +# TechDraw PageTemplate/es + ## Descripción The New Pick tool creates a new Page object using the template file selected from a dialog. @@ -63,4 +65,7 @@ See the information in [Insert Default Page](TechDraw_PageDefault.md) to program {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw PageTemplate/es diff --git a/wiki/translations/es/TechDraw_ProjectionGroup.md b/wiki/translations/es/TechDraw_ProjectionGroup.md index 162426f061..829da2e64d 100644 --- a/wiki/translations/es/TechDraw_ProjectionGroup.md +++ b/wiki/translations/es/TechDraw_ProjectionGroup.md @@ -8,6 +8,8 @@ Version: --- +# TechDraw ProjectionGroup/es + @@ -106,4 +108,7 @@ Programming note: The Projection Group should always be added to the Page (ex. p {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ProjectionGroup/es diff --git a/wiki/translations/es/TechDraw_RadiusDimension.md b/wiki/translations/es/TechDraw_RadiusDimension.md index 54c2c6765d..3eed854d98 100644 --- a/wiki/translations/es/TechDraw_RadiusDimension.md +++ b/wiki/translations/es/TechDraw_RadiusDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Dimensión Diámetro](TechDraw_Dimension_Diameter/es.md) --- +# TechDraw RadiusDimension/es + @@ -69,4 +71,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RadiusDimension/es diff --git a/wiki/translations/es/TechDraw_RedrawPage.md b/wiki/translations/es/TechDraw_RedrawPage.md index e7df571865..4cfa765416 100644 --- a/wiki/translations/es/TechDraw_RedrawPage.md +++ b/wiki/translations/es/TechDraw_RedrawPage.md @@ -6,6 +6,8 @@ Version:0.19 --- +# TechDraw RedrawPage/es + ## Descripción The Redraw tool forces a page update despite any contrary settings of KeepUpdated (Page property), Update with 3D (parameter) or Allow Page Override (parameter). @@ -39,4 +41,7 @@ The Redraw command is not directly available in scripts. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RedrawPage/es diff --git a/wiki/translations/es/TechDraw_Roadmap.md b/wiki/translations/es/TechDraw_Roadmap.md index 3655f1598b..6e03d59b42 100644 --- a/wiki/translations/es/TechDraw_Roadmap.md +++ b/wiki/translations/es/TechDraw_Roadmap.md @@ -1,5 +1,4 @@ -# TechDraw Roadmap/es - +# TechDraw Roadmap/es The [TechDraw Workbench](TechDraw_Workbench.md) was introduced officially as part of FreeCAD in version 0.17. It is relatively new and hasn\'t had the years of development that have benefited some other workbenches. Still, TechDraw now meets its original design goal and can now \"produce basic technical drawings based on the 3D model\". @@ -81,3 +80,6 @@ See the bug tracker for up to date information. }} [Category:User Documentation](Category:User_Documentation.md) [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Roadmap/es diff --git a/wiki/translations/es/TechDraw_SectionView.md b/wiki/translations/es/TechDraw_SectionView.md index 426fa1a067..d499d2e930 100644 --- a/wiki/translations/es/TechDraw_SectionView.md +++ b/wiki/translations/es/TechDraw_SectionView.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw View](TechDraw_View.md), [TechDraw Projection Group](TechDraw_ProjectionGroup.md) --- +# TechDraw SectionView/es + ## Descripción The Section tool creates a cross section view based on an existing part view. @@ -121,4 +123,7 @@ section.SectionOrigin = (5.0,5.0,5.0) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SectionView/es diff --git a/wiki/translations/es/TechDraw_VerticalDimension.md b/wiki/translations/es/TechDraw_VerticalDimension.md index 66c3823aa9..3b0ad52698 100644 --- a/wiki/translations/es/TechDraw_VerticalDimension.md +++ b/wiki/translations/es/TechDraw_VerticalDimension.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Dimensión Longitud](TechDraw_Dimension_Length/es.md), [/es|TechDraw Dimensión Horizontal](TechDraw_Dimension_Horizontal.md) --- +# TechDraw VerticalDimension/es + @@ -64,4 +66,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw VerticalDimension/es diff --git a/wiki/translations/es/TechDraw_View.md b/wiki/translations/es/TechDraw_View.md index 5d2758e47f..b5a808e392 100644 --- a/wiki/translations/es/TechDraw_View.md +++ b/wiki/translations/es/TechDraw_View.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Insertar Grupo de Proyección](TechDraw_ProjectionGroup/es.md), [TechDraw Insertar vista de sección](TechDraw_SectionView/es.md) --- +# TechDraw View/es + @@ -146,4 +148,7 @@ FreeCAD.ActiveDocument.View.Direction = (0.0,0.0,1.0) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw View/es diff --git a/wiki/translations/es/TechDraw_Workbench.md b/wiki/translations/es/TechDraw_Workbench.md index c3c428279f..1ff716473e 100644 --- a/wiki/translations/es/TechDraw_Workbench.md +++ b/wiki/translations/es/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/es - - - - - -El icono del Ambiente de trabajo Dibujo Técnico +# El icono del Ambiente de trabajo Dibujo Técnico TechDraw Workbench/es ## Introducción @@ -326,3 +320,6 @@ Tutoriales de vídeo de sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/es diff --git a/wiki/translations/es/Test_Framework_Workbench.md b/wiki/translations/es/Test_Framework_Workbench.md index 6c2d86b66b..56b30318a9 100644 --- a/wiki/translations/es/Test_Framework_Workbench.md +++ b/wiki/translations/es/Test_Framework_Workbench.md @@ -1,2 +1,5 @@ # Test Framework Workbench/es 1. REDIRECT [Testing/es](Testing/es.md) + +--- +[documentation index](../README.md) > Test Framework Workbench/es diff --git a/wiki/translations/es/Testing.md b/wiki/translations/es/Testing.md index 7258a63797..fb69fea7b2 100644 --- a/wiki/translations/es/Testing.md +++ b/wiki/translations/es/Testing.md @@ -1,10 +1,4 @@ -# Testing/es - - - - - -Test workbench icon +# Test workbench icon Testing/es {{TOCright}} @@ -190,3 +184,6 @@ r.run(suite) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Test Framework](Category:Test_Framework.md) [Category:Workbenches](Category:Workbenches.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Testing/es diff --git a/wiki/translations/es/The_FreeCAD_source_code.md b/wiki/translations/es/The_FreeCAD_source_code.md index ff79d8e0a6..c485e4bdd8 100644 --- a/wiki/translations/es/The_FreeCAD_source_code.md +++ b/wiki/translations/es/The_FreeCAD_source_code.md @@ -1,5 +1,5 @@ # The FreeCAD source code/es - El [código fuente de FreeCAD](https://github.com/FreeCAD/FreeCAD) se maneja con git, y es público, abierto y disponible bajo la [licencia LGPL](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License). Puede ser copiado, descargado, leído, analizado, redistribuido y modificado por cualquiera. Si planeas hacer modificaciones que deseas que se incluyan en el propio código oficial, recuerda que tus cambios tendrán que ser aprobados por los desarrolladores de FreeCAD, por lo que es aconsejable discutir primero tus intenciones e ideas en el [forum](http://forum.freecadweb.org), para evitar el riesgo de que tus cambios sean rechazados por alguna razón que no hayas previsto. +El [código fuente de FreeCAD](https://github.com/FreeCAD/FreeCAD) se maneja con git, y es público, abierto y disponible bajo la [licencia LGPL](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License). Puede ser copiado, descargado, leído, analizado, redistribuido y modificado por cualquiera. Si planeas hacer modificaciones que deseas que se incluyan en el propio código oficial, recuerda que tus cambios tendrán que ser aprobados por los desarrolladores de FreeCAD, por lo que es aconsejable discutir primero tus intenciones e ideas en el [forum](http://forum.freecadweb.org), para evitar el riesgo de que tus cambios sean rechazados por alguna razón que no hayas previsto. A continuación encontrarás algunas pistas e información útil para ponerte al día si estás interesado en explorar el código de FreeCAD. @@ -33,3 +33,6 @@ A continuación encontrarás algunas pistas e información útil para ponerte al - [FCStd](File_Format_FCStd.md) - the FreeCAD file format [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > The FreeCAD source code/es diff --git a/wiki/translations/es/Third_Party_Libraries.md b/wiki/translations/es/Third_Party_Libraries.md index ca2271e870..f92c24be20 100644 --- a/wiki/translations/es/Third_Party_Libraries.md +++ b/wiki/translations/es/Third_Party_Libraries.md @@ -1,10 +1,4 @@ # Third Party Libraries/es - - - - - - {{TOCright}} @@ -502,3 +496,6 @@ It includes among other things: Boost 1.67, Coin3D 4.0.0a, Eigen3, Open CASCADE [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Libraries/es diff --git a/wiki/translations/es/Third_Party_Tools.md b/wiki/translations/es/Third_Party_Tools.md index 17c81d64ab..381803fbd7 100644 --- a/wiki/translations/es/Third_Party_Tools.md +++ b/wiki/translations/es/Third_Party_Tools.md @@ -1,10 +1,4 @@ # Third Party Tools/es - - - - - - {{TOCright}} ## Tool Page @@ -161,3 +155,6 @@ PENDIENTE [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Tools/es diff --git a/wiki/translations/es/Toothbrush_Head_Stand.md b/wiki/translations/es/Toothbrush_Head_Stand.md index aa1b56f662..3116ff4618 100644 --- a/wiki/translations/es/Toothbrush_Head_Stand.md +++ b/wiki/translations/es/Toothbrush_Head_Stand.md @@ -1,5 +1,5 @@ # Toothbrush Head Stand/es - {{TutorialInfo/es +{{TutorialInfo/es |Topic=Modeling |Level=Beginner |Author=[EmmanuelG](User:EmmanuelG.md) @@ -428,4 +428,7 @@ Perfect ! {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Toothbrush Head Stand/es diff --git a/wiki/translations/es/TopoShape_API.md b/wiki/translations/es/TopoShape_API.md index 88f4a8e5f7..97496a120c 100644 --- a/wiki/translations/es/TopoShape_API.md +++ b/wiki/translations/es/TopoShape_API.md @@ -1,5 +1,5 @@ # TopoShape API/es - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** TopoShape es el objeto madre del módulo de pieza. Todos los tipos de formas (contornos, caras, sólidos, etc.) del módulo de pieza son TopoShapes, y comparten los siguientes atributos y métodos. Ejemplo: ```python @@ -226,3 +226,6 @@ Some attributes and methods apply only to certain TopoShapes. These items apply [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > TopoShape API/es diff --git a/wiki/translations/es/Topological_Naming_Project.md b/wiki/translations/es/Topological_Naming_Project.md index 78f5f601a4..32ee379371 100644 --- a/wiki/translations/es/Topological_Naming_Project.md +++ b/wiki/translations/es/Topological_Naming_Project.md @@ -1,6 +1,4 @@ # Topological Naming Project/es - - Esta página está dedicada a la descripción de la idea del proyecto Google Summer of Code relativa a la denominación topológica. Para el tema en sí, por favor vea [Proyecto denominación](Naming_project/es.md). La página wiki enlazada también puede servir como punto de partida para adentrarse en el problema de la denominación. ## Outline @@ -42,3 +40,6 @@ Difícil ### Información adicional [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > Topological Naming Project/es diff --git a/wiki/translations/es/Topological_data_scripting.md b/wiki/translations/es/Topological_data_scripting.md index 94e66fac98..d22333391f 100644 --- a/wiki/translations/es/Topological_data_scripting.md +++ b/wiki/translations/es/Topological_data_scripting.md @@ -1,7 +1,4 @@ # Topological data scripting/es - - - {{TOCright}} ## Introducción @@ -1467,3 +1464,6 @@ To convert a STEP file to an IGS file: ```{{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting/es diff --git a/wiki/translations/es/Topological_naming_problem.md b/wiki/translations/es/Topological_naming_problem.md index 7e7a4c8d04..f0f9c5496e 100644 --- a/wiki/translations/es/Topological_naming_problem.md +++ b/wiki/translations/es/Topological_naming_problem.md @@ -1,6 +1,4 @@ # Topological naming problem/es - - ## Introducción @@ -135,3 +133,6 @@ Los objetos Datum, [puntos](PartDesign_Point/es.md), [líneas](PartDesign_Line/e {{TechDraw Tools navi}} {{PartDesign Tools navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Topological naming problem/es diff --git a/wiki/translations/es/Tracker.md b/wiki/translations/es/Tracker.md index 5d89e1560b..176da8dafd 100644 --- a/wiki/translations/es/Tracker.md +++ b/wiki/translations/es/Tracker.md @@ -1,10 +1,4 @@ # Tracker/es - - - - - - {{TOCright}} ![](images/Mantis_logo_262x90.png ) @@ -204,3 +198,6 @@ For the inquisitive here is the regex MantisBT uses for this operation: [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Tracker/es diff --git a/wiki/translations/es/Translating_an_external_workbench.md b/wiki/translations/es/Translating_an_external_workbench.md index 1d1d946943..330cb257c9 100644 --- a/wiki/translations/es/Translating_an_external_workbench.md +++ b/wiki/translations/es/Translating_an_external_workbench.md @@ -1,6 +1,4 @@ # Translating an external workbench/es - - En las siguientes notas, `"contexto"` debe ser el mismo nombre de tu complemento o banco de trabajo, por ejemplo, `"MiSuperComplemento"` o `"DraftPlus"`, o el que sea. Este contexto hace que todas esas traducciones de tu código sean reunidas bajo el mismo nombre, para que sean mas fácilmente identificables por los traductores. Esto es, ellos sabrán exactamente a cual complemento o banco de trabajo una cadena de texto pertenece. **Note**: Here is an all-in-one script that automates the complete procedure mentioned below (you are still advised to read the procedure to know what the script should do, though): @@ -230,3 +228,6 @@ Yorik maintains a convenience script for the BIM workbench, that can gather, upl [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Translating an external workbench/es diff --git a/wiki/translations/es/Tree_view.md b/wiki/translations/es/Tree_view.md index 3359bbcd21..b7f68cdd30 100644 --- a/wiki/translations/es/Tree_view.md +++ b/wiki/translations/es/Tree_view.md @@ -1,5 +1,5 @@ # Tree view/es - {{TOCright}} +{{TOCright}} ## Introducción @@ -147,4 +147,7 @@ Esto indica que el objeto tiene un error que debe ser corregido. Después de vol {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Tree view/es diff --git a/wiki/translations/es/Tutorials.md b/wiki/translations/es/Tutorials.md index 585f27e78f..71afd7a36d 100644 --- a/wiki/translations/es/Tutorials.md +++ b/wiki/translations/es/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/es - - - - - - {{TOCright}} Esta página presenta una selección de tutoriales escritos de alta calidad. Una lista completa y sin clasificar de tutoriales se puede encontrar en [:Category:Tutorials](:Category:Tutorials.md), una completa y ordenable se puede encontrar en la [tabla de abajo](Tutorials/es#Tutoriales_-_Lista_completa.md). @@ -286,3 +280,6 @@ Aquí están listados todos los tutoriales que no están en el manual **independ [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials]], una completa y ordenable se puede encontrar en la ](Category:Tutorials]], una completa y ordenable se puede encontrar en la .md) > Tutorials/es diff --git a/wiki/translations/es/UTF_Project.md b/wiki/translations/es/UTF_Project.md index e8fca577d7..f3f4ac8413 100644 --- a/wiki/translations/es/UTF_Project.md +++ b/wiki/translations/es/UTF_Project.md @@ -1,7 +1,4 @@ # UTF Project/es - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -44,3 +41,6 @@ A pesar de que Coin3D se ha movido ahora a un plataforma de desarrollo más abie [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > UTF Project/es diff --git a/wiki/translations/es/Ubuntu_Snap.md b/wiki/translations/es/Ubuntu_Snap.md index 0fbd396b8c..3c926daee0 100644 --- a/wiki/translations/es/Ubuntu_Snap.md +++ b/wiki/translations/es/Ubuntu_Snap.md @@ -1,6 +1,4 @@ # Ubuntu Snap/es - - ## Introducción Un [Ubuntu Snap](Ubuntu_Snap/es.md) paquete, o simplemente [Snap](Ubuntu_Snap/es.md) es un formato de distribución similar a [AppImage](AppImage/es.md) en el que se pretende que sea un \"paquete instalable universal\" para desplegar software en sistemas Linux. Los Snaps fueron introducidos por Ubuntu pero están pensados para ejecutarse en todas las distribuciones de Linux siempre y cuando el demonio Snap, o `snapd`, esté disponible en el sistema objetivo. @@ -37,5 +35,5 @@ Más información sobre los esfuerzos actuales para tratar con Snaps. - [0.19 Snap previsión necesita \"probadores\"](https://forum.freecadweb.org/viewtopic.php?f=4&t=46044), más viejo Snap de **vejmarie** - [Discusión: Estado del snap (paquete Snap)](https://forum.freecadweb.org/viewtopic.php?f=42&t=46853), nueva versión del Snap de **ppd** - - +--- +[documentation index](../README.md) > Ubuntu Snap/es diff --git a/wiki/translations/es/Units.md b/wiki/translations/es/Units.md index 522ea400f7..356db8d062 100644 --- a/wiki/translations/es/Units.md +++ b/wiki/translations/es/Units.md @@ -1,7 +1,4 @@ # Units/es - - -
Aquí hay algunos enlaces con información sobre unidades: @@ -308,4 +305,7 @@ It becomes thus very easy to manage any number of properties with any kind of un {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Units/es diff --git a/wiki/translations/es/Units_project.md b/wiki/translations/es/Units_project.md index fd853eaf60..547e19dc7b 100644 --- a/wiki/translations/es/Units_project.md +++ b/wiki/translations/es/Units_project.md @@ -1,7 +1,4 @@ # Units project/es - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -57,3 +54,6 @@ Eventualmente un editor de propiedades para el PropertyUntit. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Units project/es diff --git a/wiki/translations/es/User_hub.md b/wiki/translations/es/User_hub.md index 6a1154e476..c075176e1f 100644 --- a/wiki/translations/es/User_hub.md +++ b/wiki/translations/es/User_hub.md @@ -1,5 +1,4 @@ -# User hub/es - +# User hub/es ------------------------------------------------------------------------ @@ -122,3 +121,6 @@ Esta es la ayuda en línea oficial de FreeCAD. Por favor ten en cuenta que el si [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/es diff --git a/wiki/translations/es/VRML_Preparation_for_Robot_Simulation.md b/wiki/translations/es/VRML_Preparation_for_Robot_Simulation.md index 3c819dc328..9d0b97a686 100644 --- a/wiki/translations/es/VRML_Preparation_for_Robot_Simulation.md +++ b/wiki/translations/es/VRML_Preparation_for_Robot_Simulation.md @@ -1,5 +1,5 @@ # VRML Preparation for Robot Simulation/es - {{TutorialInfo/es +{{TutorialInfo/es |Topic=Ambiente de trabajo Robot |Level=Intermedio |Time= @@ -449,3 +449,6 @@ Aquí está un parche para conseguir el archivo VRML adecuado para la simulació [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > VRML Preparation for Robot Simulation/es diff --git a/wiki/translations/es/Vector_API.md b/wiki/translations/es/Vector_API.md index 3f1887aefa..230e71b235 100644 --- a/wiki/translations/es/Vector_API.md +++ b/wiki/translations/es/Vector_API.md @@ -1,7 +1,4 @@ # Vector API/es - - -
Los vectores se utilizan en todas partes en FreeCAD. @@ -79,3 +76,6 @@ print v3.Length [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Vector API/es diff --git a/wiki/translations/es/Video_tutorials.md b/wiki/translations/es/Video_tutorials.md index 6d3cdf7730..72ab1d6151 100644 --- a/wiki/translations/es/Video_tutorials.md +++ b/wiki/translations/es/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials/es - - - **Por favor, presten atención a la versión de FreeCAD utilizada en el tutorial. Si un tutorial utiliza una versión anterior del programa, el proceso de modelado general puede seguir funcionando, pero algunas herramientas pueden haber cambiado en versiones más recientes. No añada vídeos hechos con la versión 0.16 o anterior, ya que estas versiones se consideran obsoletas.** Esta página presenta una selección de video tutoriales hechos por usuarios y desarrolladores de FreeCAD. Visite el subforo [Tutoriales y vídeos](https://forum.freecadweb.org/viewforum.php?f=36) para obtener más enlaces. Una fuente útil de tutoriales de vídeo es [YouTube](https://YouTube.com). @@ -95,3 +92,6 @@ Para más información ver [Tutoriales de vídeo obsoletos](Video_tutorials_obso }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Video tutorials/es diff --git a/wiki/translations/es/Video_tutorials_for_architectural_design.md b/wiki/translations/es/Video_tutorials_for_architectural_design.md index 19807102fb..8320afad4a 100644 --- a/wiki/translations/es/Video_tutorials_for_architectural_design.md +++ b/wiki/translations/es/Video_tutorials_for_architectural_design.md @@ -1,5 +1,5 @@ # Video tutorials for architectural design/es - **Por favor, presten atención a la versión de FreeCAD utilizada en el tutorial. Si un tutorial utiliza una versión anterior del programa, el proceso de modelado general puede seguir funcionando, pero algunas herramientas pueden haber cambiado en versiones más recientes. No añada vídeos hechos con la versión 0.16 o anterior, ya que estas versiones se consideran obsoletas.** +**Por favor, presten atención a la versión de FreeCAD utilizada en el tutorial. Si un tutorial utiliza una versión anterior del programa, el proceso de modelado general puede seguir funcionando, pero algunas herramientas pueden haber cambiado en versiones más recientes. No añada vídeos hechos con la versión 0.16 o anterior, ya que estas versiones se consideran obsoletas.** ## Introducción @@ -53,4 +53,7 @@ Vídeos que recorren el modelado de habitaciones, casas, edificios de oficinas y {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Video tutorials for architectural design/es diff --git a/wiki/translations/es/Video_tutorials_for_product_design.md b/wiki/translations/es/Video_tutorials_for_product_design.md index 1bb24cca48..a1c30dbf3c 100644 --- a/wiki/translations/es/Video_tutorials_for_product_design.md +++ b/wiki/translations/es/Video_tutorials_for_product_design.md @@ -1,5 +1,5 @@ # Video tutorials for product design/es - **Por favor, presten atención a la versión de FreeCAD utilizada en el tutorial. Si un tutorial utiliza una versión anterior del programa, el proceso de modelado general puede seguir funcionando, pero algunas herramientas pueden haber cambiado en versiones más recientes. No añada vídeos hechos con la versión 0.16 o anterior, ya que estas versiones se consideran obsoletas.** +**Por favor, presten atención a la versión de FreeCAD utilizada en el tutorial. Si un tutorial utiliza una versión anterior del programa, el proceso de modelado general puede seguir funcionando, pero algunas herramientas pueden haber cambiado en versiones más recientes. No añada vídeos hechos con la versión 0.16 o anterior, ya que estas versiones se consideran obsoletas.** ## Introducción @@ -77,4 +77,7 @@ Aunque esta lista se centra en el contenido alemán, muchos de estos canales tam {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Video tutorials for product design/es diff --git a/wiki/translations/es/Video_tutorials_obsolete.md b/wiki/translations/es/Video_tutorials_obsolete.md index e86247b1e7..2a249c2246 100644 --- a/wiki/translations/es/Video_tutorials_obsolete.md +++ b/wiki/translations/es/Video_tutorials_obsolete.md @@ -1,5 +1,5 @@ # Video tutorials obsolete/es - **In FreeCAD 0.17 the [PartDesign Workbench](PartDesign_Workbench.md) received important updates that change the way solids are created with respect to previous versions. New users should watch videos for versions 0.17 and above to understand the concept of working with a [PartDesign Body](PartDesign_Body.md) and datum objects.** **These videos are considered obsolete because they use v0.16 or earlier versions of the program.** +**In FreeCAD 0.17 the [PartDesign Workbench](PartDesign_Workbench.md) received important updates that change the way solids are created with respect to previous versions. New users should watch videos for versions 0.17 and above to understand the concept of working with a [PartDesign Body](PartDesign_Body.md) and datum objects.** **These videos are considered obsolete because they use v0.16 or earlier versions of the program.** ## Introducción @@ -56,4 +56,7 @@ For up-to-date videos on different topics, see the [video tutorials](video_tutor {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Video tutorials obsolete/es diff --git a/wiki/translations/es/ViewObject_API.md b/wiki/translations/es/ViewObject_API.md index 6a918e38ad..bb9f9c17fc 100644 --- a/wiki/translations/es/ViewObject_API.md +++ b/wiki/translations/es/ViewObject_API.md @@ -1,5 +1,5 @@ # ViewObject API/es - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Cuando la interfaz gráfica de usuario GUI está iniciada, cada objeto en el documento de FreeCAD tiene un objeto de vista (ViewOject) asociado, este reside el documento homólogo FreeCADGui. Un objeto de vista puede ser recuperado de dos modos. Ejemplo: ```python @@ -84,3 +84,6 @@ print myViewObj.IV [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > ViewObject API/es diff --git a/wiki/translations/es/WebTools_BimServer.md b/wiki/translations/es/WebTools_BimServer.md index 2f86756126..8be469c2f9 100644 --- a/wiki/translations/es/WebTools_BimServer.md +++ b/wiki/translations/es/WebTools_BimServer.md @@ -6,6 +6,8 @@ Workbenches:[HerramientasWeb](WebTools_Workbench/es.md) --- +# WebTools BimServer/es + **A partir de FreeCAD v0.17, esta herramienta se ha eliminado del Ambiente de trabajos Arquitectura y ahora forma parte del [Ambiente de trabajos HerramientasWeb](WebTools_Workbench/es.md) externo que puedes instalar a través del menú Herramientas → . [Administrador de complementos](Addon_manager/es.md). ** @@ -49,3 +51,6 @@ Para utilizar este comando, se deben cumplir las siguientes condiciones: - Elija el **Objeto raíz**\' que desea cargar. Debe ser un [Arquitectura Site](Arch_Site/es.md) o un [Arquitectura Edificio](Arch_Building/es.md). Sólo se subirán los objetos que pertenezcan a ese objeto raíz. - Escribe un **Comentario**\', que será la descripción (nombre) de la revisión. - Pulse el botón **Subir**. Se abrirá un cuadro de diálogo que le permitirá guardar el archivo IFC producido en una ubicación de su elección antes de cargarlo. Si pulsa **Cancelar**, el archivo se guardará con un nombre temporal en el directorio temporal del sistema. + +--- +[documentation index](../README.md) > WebTools BimServer/es diff --git a/wiki/translations/es/WebTools_Git.md b/wiki/translations/es/WebTools_Git.md index 9164350331..c1af2bc2bc 100644 --- a/wiki/translations/es/WebTools_Git.md +++ b/wiki/translations/es/WebTools_Git.md @@ -7,6 +7,8 @@ Version:0.17 --- +# WebTools Git/es + **A partir de FreeCAD v0.17, esta herramienta ha sido eliminada del Ambiente de trabajos Arquitectura y ahora forma parte del [Ambiente de trabajos HerramientasWeb](WebTools_Workbench/es.md) externo que puedes instalar a través del menú Herramientas → [Administrador de complementos](Addon_manager/es.md). ** @@ -120,3 +122,6 @@ Alternativamente, si quieres invocar fcinfo con argumentos (por ejemplo, --gui)  [diff "fcinfo"]  textconv = sh -c '/ruta/a/fcinfo --gui "$0"' + +--- +[documentation index](../README.md) > WebTools Git/es diff --git a/wiki/translations/es/WebTools_Sketchfab.md b/wiki/translations/es/WebTools_Sketchfab.md index c269799803..5b8a9c470a 100644 --- a/wiki/translations/es/WebTools_Sketchfab.md +++ b/wiki/translations/es/WebTools_Sketchfab.md @@ -6,6 +6,8 @@ Workbenches:[HerramientasWeb](WebTools_Workbench/es.md) --- +# WebTools Sketchfab/es + ## Descripción Esta herramienta le permite exportar y subir objetos a su cuenta [SketchFab](http://www.sketchfab.com). {{Version/es|0.17}} @@ -28,3 +30,6 @@ Esta herramienta le permite exportar y subir objetos a su cuenta [SketchFab](htt - Una vez subido tu modelo, Sketchfab ofrece una interfaz bastante avanzada en la que puedes seguir configurando los materiales, la iluminación y el entorno. - Cuando pulses el \"botón de subir\", una vez terminada la subida, si todo ha ido bien, el botón se convertirá en un botón de \"Ver tu modelo online\", que, al pulsarlo, te llevará directamente a la página del modelo en Sketchfab. - Algunos formatos, como el OBJ, son interpretados de forma diferente por Sketchfab y FreeCAD. FreeCAD considera que el eje Z apunta hacia arriba, mientras que Sketchfab considera que apunta hacia la persona que está detrás de la pantalla. Para remediar esto, una vez finalizada la carga, el exportador utilizará la API de Sketchfab para rotar el modelo a su posición correcta. Si esta operación falla, recibirás un aviso, pero tu modelo seguirá siendo subido correctamente. Puedes rotarlo manualmente en la interfaz de Sketchfab, pulsando la flecha derecha junto al eje \"X\" en la pestaña de orientación del modelo. + +--- +[documentation index](../README.md) > WebTools Sketchfab/es diff --git a/wiki/translations/es/WebTools_Workbench.md b/wiki/translations/es/WebTools_Workbench.md index ba3c9d8e89..df48e3d8db 100644 --- a/wiki/translations/es/WebTools_Workbench.md +++ b/wiki/translations/es/WebTools_Workbench.md @@ -1,5 +1,4 @@ -# WebTools Workbench/es - Icono del ambiente de trabajo HerramientasWeb +# Icono del ambiente de trabajo HerramientasWeb WebTools Workbench/es ## Resumen @@ -23,3 +22,6 @@ Este ambiente de trabajo se puede instalar desde el [Gestor de complementos](Std [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > WebTools Workbench/es diff --git a/wiki/translations/es/Web_Workbench.md b/wiki/translations/es/Web_Workbench.md index a600c180c3..0579bb8dae 100644 --- a/wiki/translations/es/Web_Workbench.md +++ b/wiki/translations/es/Web_Workbench.md @@ -1,7 +1,4 @@ # Web Workbench/es - - -
@@ -37,3 +34,6 @@ Desde este navegador eres capaz de navegar por la web, hacer clic en los enlaces [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/es diff --git a/wiki/translations/es/WikiPages.md b/wiki/translations/es/WikiPages.md index 1bc5bf3e1a..0758d4835e 100644 --- a/wiki/translations/es/WikiPages.md +++ b/wiki/translations/es/WikiPages.md @@ -1,5 +1,5 @@ # WikiPages/es - {{TOCright}} +{{TOCright}} Esta página es una extensión de la página [Ayuda:Edición](Help:Editing.md) y da pautas comunes para escribir y actualizar la documentación del wiki de FreeCAD. Resume varias discusiones y sesiones de brainstorming @@ -569,3 +569,6 @@ See [Glossary](Glossary.md). - [Polish](Polish_translation.md) [Category:Documentation](Category:Documentation.md) [Category:Wiki](Category:Wiki.md) [Category:Wiki Documentation](Category:Wiki_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > WikiPages/es diff --git a/wiki/translations/es/Wikihouse_porting_tutorial.md b/wiki/translations/es/Wikihouse_porting_tutorial.md index d324389b88..685b0ff172 100644 --- a/wiki/translations/es/Wikihouse_porting_tutorial.md +++ b/wiki/translations/es/Wikihouse_porting_tutorial.md @@ -1,7 +1,4 @@ # Wikihouse porting tutorial/es - - - {{TutorialInfo/es |Topic= Wikihouse porting tutorial |Level= Intermediate/Advanced @@ -135,3 +132,6 @@ The last step is simply to select all the sheets, then export them to DXF from m ![](images/Arch_Wikihouse_04.jpg ) These files are ready to send to the shops that will do the actual cut. It would be possible to generate the G-Code to be sent to the CNC machine directly from FreeCAD too, but that is matter for another tutorial. + +--- +[documentation index](../README.md) > Wikihouse porting tutorial/es diff --git a/wiki/translations/es/Windows_packaging.md b/wiki/translations/es/Windows_packaging.md index 552a1373d0..6dc7c827e7 100644 --- a/wiki/translations/es/Windows_packaging.md +++ b/wiki/translations/es/Windows_packaging.md @@ -1,4 +1,5 @@ # Windows packaging/es - - [Category:Packaging/es](Category:Packaging/es.md) [Category:Developer Documentation/es](Category:Developer_Documentation/es.md) + +--- +[documentation index](../README.md) > Windows packaging/es diff --git a/wiki/translations/es/Workbench_creation.md b/wiki/translations/es/Workbench_creation.md index 5f1e6a7cc9..4e7bf5ca76 100644 --- a/wiki/translations/es/Workbench_creation.md +++ b/wiki/translations/es/Workbench_creation.md @@ -1,10 +1,4 @@ # Workbench creation/es - - - - - - {{TOCright}} ## Introduction @@ -350,3 +344,6 @@ os.remove(qrc_filename) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > Workbench creation/es diff --git a/wiki/translations/es/Workbenches.md b/wiki/translations/es/Workbenches.md index b8414b283b..a1a8fe04e6 100644 --- a/wiki/translations/es/Workbenches.md +++ b/wiki/translations/es/Workbenches.md @@ -1,9 +1,4 @@ # Workbenches/es - - - - - FreeCAD, al igual que muchas aplicaciones de diseño moderno como [Revit](https://es.wikipedia.org/wiki/Revit) o [CATIA](https://es.wikipedia.org/wiki/CATIA), se basa en el concepto de [de trabajo](https://es.wikipedia.org/wiki/Banco_de_trabajo%7CBanco). Un banco de trabajo puede considerarse como un conjunto de herramientas especialmente agrupadas para una determinada tarea. En un taller de muebles tradicional, se tendría una mesa de trabajo para el que trabaja con la madera, otra para el que trabaja con las piezas de metal, y quizá una tercera para el que monta todas las piezas juntas. En FreeCAD se aplica el mismo concepto. Las herramientas se agrupan en bancos de trabajo según las tareas con las que están relacionadas. @@ -89,3 +84,6 @@ Los nuevos Ambientes de Trabajo están siempre en desarrollo, ¡manténganse en [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/es diff --git a/wiki/translations/fi/Category:Categories.md b/wiki/translations/fi/Category:Categories.md index b7cd8ee59b..5ac1b87c32 100644 --- a/wiki/translations/fi/Category:Categories.md +++ b/wiki/translations/fi/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , [Category:Categories/fi](Category:Categories/fi.md) [Category:Categories/fi](Category:Categories/fi.md) [Category:Documentation/fi](Category:Documentation/fi.md) [Category:Template/fi](Category:Template/fi.md) + +--- +[documentation index](../README.md) > Category:Categories/fi diff --git a/wiki/translations/fi/Category:Documentation.md b/wiki/translations/fi/Category:Documentation.md index 890d92bc97..4503301aed 100644 --- a/wiki/translations/fi/Category:Documentation.md +++ b/wiki/translations/fi/Category:Documentation.md @@ -4,3 +4,6 @@ This category groups all of the FreeCAD documentation ### Contents: [Category:Categories/fi](Category:Categories/fi.md) + +--- +[documentation index](../README.md) > Category:Documentation/fi diff --git a/wiki/translations/fi/Category:Template.md b/wiki/translations/fi/Category:Template.md index dc42c8c4cf..06005293e6 100644 --- a/wiki/translations/fi/Category:Template.md +++ b/wiki/translations/fi/Category:Template.md @@ -8,3 +8,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) [Template:Languages/fi](Template:Languages/fi.md) [Category:Categories/fi](Category:Categories/fi.md) + +--- +[documentation index](../README.md) > Category:Template/fi diff --git a/wiki/translations/fr/3D_input_devices.md b/wiki/translations/fr/3D_input_devices.md index 0794ed80f5..bc121f7876 100644 --- a/wiki/translations/fr/3D_input_devices.md +++ b/wiki/translations/fr/3D_input_devices.md @@ -1,5 +1,5 @@ # 3D input devices/fr - FreeCAD prend en charge certains périphériques d\'entrée spécialisés, tels que les souris 3D. Cela permet à l\'utilisateur de faire pivoter, de déplacer, et de zoomer des objets en trois dimensions. +FreeCAD prend en charge certains périphériques d\'entrée spécialisés, tels que les souris 3D. Cela permet à l\'utilisateur de faire pivoter, de déplacer, et de zoomer des objets en trois dimensions. ## Matériel supporté @@ -7,3 +7,6 @@ - Instructions d\'installation: [Périphériques connexion 3D](3Dconnexion_input_devices/fr.md) [category:Documentation](category:Documentation.md) + +--- +[documentation index](../README.md) > 3D input devices/fr diff --git a/wiki/translations/fr/3D_view.md b/wiki/translations/fr/3D_view.md index 2f88c4b759..89461a8ba4 100644 --- a/wiki/translations/fr/3D_view.md +++ b/wiki/translations/fr/3D_view.md @@ -1,6 +1,4 @@ # 3D view/fr - - ## Introduction @@ -87,4 +85,7 @@ Pour plus d\'informations, voir la documentation de l\'utilisateur expert : {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > 3D view/fr diff --git a/wiki/translations/fr/3Dconnexion_input_devices.md b/wiki/translations/fr/3Dconnexion_input_devices.md index 4918e385e3..bee4b9b60c 100644 --- a/wiki/translations/fr/3Dconnexion_input_devices.md +++ b/wiki/translations/fr/3Dconnexion_input_devices.md @@ -1,5 +1,4 @@ -# 3Dconnexion input devices/fr - 3Dconnexion SpaceNavigator {{TOCright}} +# 3Dconnexion SpaceNavigator {{TOCright}} 3Dconnexion input devices/fr ## Installation des drivers @@ -278,3 +277,6 @@ Pour connecter certaines commandes à un bouton, sélectionnez le bouton sur le - Fil de discussion du forum [Confusion de l\'axe de la spacenav](https://forum.freecadweb.org/viewtopic.php?f=8&t=57188). [Category:User Documentation](Category:User_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > 3Dconnexion input devices/fr diff --git a/wiki/translations/fr/A2plus_Workbench.md b/wiki/translations/fr/A2plus_Workbench.md index 767b13d5cf..92f3d7aa56 100644 --- a/wiki/translations/fr/A2plus_Workbench.md +++ b/wiki/translations/fr/A2plus_Workbench.md @@ -1,5 +1,4 @@ -# A2plus Workbench/fr - Icône de l\'atelier Assembly2+ +# Icône de l\'atelier Assembly2+ A2plus Workbench/fr ## Introduction @@ -611,3 +610,6 @@ Il s\'agit d\'une commande spécifique à A2plus. Elle résout les contraintes d [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > A2plus Workbench/fr diff --git a/wiki/translations/fr/ANSI_templates.md b/wiki/translations/fr/ANSI_templates.md index 323eaa09d4..c16827c7ca 100644 --- a/wiki/translations/fr/ANSI_templates.md +++ b/wiki/translations/fr/ANSI_templates.md @@ -1,5 +1,5 @@ # ANSI templates/fr - Cette page répertorie les modèles selon le standard American National Standards Institute [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) +Cette page répertorie les modèles selon le standard American National Standards Institute [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) ### ANSI A @@ -62,3 +62,6 @@ Les modèles sont dessinés par [Quick61](User:Quick61.md) et répertoriés [FreeCAD-Drawing-Templates](https://github.com/quick61/FreeCAD-Drawing-Templates) [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > ANSI templates/fr diff --git a/wiki/translations/fr/API_documentation.md b/wiki/translations/fr/API_documentation.md index fa24ae02e6..0764ad0d99 100644 --- a/wiki/translations/fr/API_documentation.md +++ b/wiki/translations/fr/API_documentation.md @@ -1,7 +1,9 @@ # API documentation/fr - **(Novembre 2018) Cette information peut être incomplète et obsolète. Pour la dernière API, voir la [https://www.freecadweb.org/api documentation API générée automatiquement].** Cette catégorie regroupe des articles répertoriant les objets et les méthodes disponibles pour la programmation [Python](Python/fr.md). [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > API documentation/fr diff --git a/wiki/translations/fr/About_FreeCAD.md b/wiki/translations/fr/About_FreeCAD.md index d7de7f726f..b30898119f 100644 --- a/wiki/translations/fr/About_FreeCAD.md +++ b/wiki/translations/fr/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/fr - - - +# About FreeCAD/fr **FreeCAD** est un modeleur paramétrique 3D de [**CAO**](https://fr.wikipedia.org/wiki/Conception_assist%C3%A9e_par_ordinateur) d\'utilisation générale, dont le développement est entièrement [Open source](https://fr.wikipedia.org/wiki/Open_source) ([License LGPL](https://www.gnu.org/licenses/lgpl-3.0.fr.html)). FreeCAD est directement destiné à l\'[ingénierie mécanique](https://fr.wikipedia.org/wiki/G%C3%A9nie_m%C3%A9canique) et à la [conception de produits](http://en.wikipedia.org/wiki/Product_design) mais s\'adapte également à une gamme plus large d\'utilisations autour de l\'ingénierie, comme l\'architecture, l\'analyse par éléments finis, l\'impression 3D et d\'autres tâches. @@ -28,3 +25,6 @@ FreeCAD est maintenu et développé par une communauté de développeurs et d\'u [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/fr diff --git a/wiki/translations/fr/Add_FEM_Constraint_Tutorial.md b/wiki/translations/fr/Add_FEM_Constraint_Tutorial.md index 38659f70e3..d502b9c8ae 100644 --- a/wiki/translations/fr/Add_FEM_Constraint_Tutorial.md +++ b/wiki/translations/fr/Add_FEM_Constraint_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Constraint Tutorial/fr 1. REDIRECT [Add\_FEM\_constraint\_tutorial/fr](Add_FEM_constraint_tutorial/fr.md) + +--- +[documentation index](../README.md) > Add FEM Constraint Tutorial/fr diff --git a/wiki/translations/fr/Add_FEM_Equation_Tutorial.md b/wiki/translations/fr/Add_FEM_Equation_Tutorial.md index 395aa10e97..4e0e492876 100644 --- a/wiki/translations/fr/Add_FEM_Equation_Tutorial.md +++ b/wiki/translations/fr/Add_FEM_Equation_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Equation Tutorial/fr 1. REDIRECT [Add\_FEM\_equation\_tutorial/fr](Add_FEM_equation_tutorial/fr.md) + +--- +[documentation index](../README.md) > Add FEM Equation Tutorial/fr diff --git a/wiki/translations/fr/Add_FEM_constraint_tutorial.md b/wiki/translations/fr/Add_FEM_constraint_tutorial.md index f0b0ab62bf..7519479aa0 100644 --- a/wiki/translations/fr/Add_FEM_constraint_tutorial.md +++ b/wiki/translations/fr/Add_FEM_constraint_tutorial.md @@ -1,7 +1,4 @@ # Add FEM constraint tutorial/fr - - - {{TutorialInfo/fr |Topic=Ajouter des contraintes FEM |Level= @@ -310,3 +307,6 @@ def _handleFlowBndConditions(self): ``` [Category:FEM/fr](Category:FEM/fr.md) [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM constraint tutorial/fr diff --git a/wiki/translations/fr/Add_FEM_equation_tutorial.md b/wiki/translations/fr/Add_FEM_equation_tutorial.md index 7affe7544b..6005d254c0 100644 --- a/wiki/translations/fr/Add_FEM_equation_tutorial.md +++ b/wiki/translations/fr/Add_FEM_equation_tutorial.md @@ -1,7 +1,4 @@ # Add FEM equation tutorial/fr - - - {{TutorialInfo/fr |Topic=Ajouter des équations FEM |Level=Avancé @@ -189,3 +186,6 @@ Nous avons maintenant terminé la partie fonction de la nouvelle équation. Ensu Nous venons de créer une nouvelle classe d\'équation. Pour y accéder depuis l\'interface graphique FEM, nous devons créer un bouton et le lier à la nouvelle classe d\'équation. Voici un tutoriel : [Tutoriel Ajouter un bouton à la barre d\'outils FEM](Add_button_to_FEM_toolbar_tutorial/fr.md). [Category:FEM](Category:FEM.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM equation tutorial/fr diff --git a/wiki/translations/fr/Addon.md b/wiki/translations/fr/Addon.md index 2dd8afcf6b..dcb7b67b9e 100644 --- a/wiki/translations/fr/Addon.md +++ b/wiki/translations/fr/Addon.md @@ -1,6 +1,4 @@ # Addon/fr - - ## Introduction Dans FreeCAD et dans cette documentation, un [addon](addon/fr.md) est un composant qui ne fait pas partie de l\'installation de base mais peut être ajouté au système par certaines méthodes. @@ -37,3 +35,6 @@ Cependant, une installation manuelle est toujours possible. [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Addon/fr diff --git a/wiki/translations/fr/AddonManager.md b/wiki/translations/fr/AddonManager.md index 1277d90ee3..4cfe95c357 100644 --- a/wiki/translations/fr/AddonManager.md +++ b/wiki/translations/fr/AddonManager.md @@ -1,2 +1,5 @@ # AddonManager/fr 1. REDIRECT [Std AddonMgr/fr](Std_AddonMgr/fr.md) + +--- +[documentation index](../README.md) > AddonManager/fr diff --git a/wiki/translations/fr/Addon_Manager.md b/wiki/translations/fr/Addon_Manager.md index a84c8c9488..37fadc1eaf 100644 --- a/wiki/translations/fr/Addon_Manager.md +++ b/wiki/translations/fr/Addon_Manager.md @@ -1,2 +1,5 @@ # Addon Manager/fr 1. REDIRECT [Std AddonMgr/fr](Std_AddonMgr/fr.md) + +--- +[documentation index](../README.md) > Addon Manager/fr diff --git a/wiki/translations/fr/Addon_manager.md b/wiki/translations/fr/Addon_manager.md index 807710a5a4..4ad978855c 100644 --- a/wiki/translations/fr/Addon_manager.md +++ b/wiki/translations/fr/Addon_manager.md @@ -1,2 +1,5 @@ # Addon manager/fr 1. REDIRECT [Std AddonMgr/fr](Std_AddonMgr/fr.md) + +--- +[documentation index](../README.md) > Addon manager/fr diff --git a/wiki/translations/fr/Advanced_TechDraw_Tutorial.md b/wiki/translations/fr/Advanced_TechDraw_Tutorial.md index 1a5fc2e5b0..8b95e21df6 100644 --- a/wiki/translations/fr/Advanced_TechDraw_Tutorial.md +++ b/wiki/translations/fr/Advanced_TechDraw_Tutorial.md @@ -1,10 +1,4 @@ # Advanced TechDraw Tutorial/fr - - - - - - {{TutorialInfo |Topic=Modélisation |Level=Utilisateur expérimenté @@ -92,4 +86,7 @@ Cependant, le chemin décrit pourrait représenter le point de départ (ou l\'id {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Advanced TechDraw Tutorial/fr diff --git a/wiki/translations/fr/Aeroplane.md b/wiki/translations/fr/Aeroplane.md index 366186743f..4a06ed3ebc 100644 --- a/wiki/translations/fr/Aeroplane.md +++ b/wiki/translations/fr/Aeroplane.md @@ -1,5 +1,5 @@ # Aeroplane/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic=Atelier Part |Level=Débutant |Time=10 minutes @@ -99,4 +99,7 @@ J\'espère, que ce petit tutoriel vous a aidé, à comprendre les rotations. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Aeroplane/fr diff --git a/wiki/translations/fr/Analysis_of_reinforced_concrete_with_FEM.md b/wiki/translations/fr/Analysis_of_reinforced_concrete_with_FEM.md index c77d3ab12e..017072ddb1 100644 --- a/wiki/translations/fr/Analysis_of_reinforced_concrete_with_FEM.md +++ b/wiki/translations/fr/Analysis_of_reinforced_concrete_with_FEM.md @@ -1,5 +1,5 @@ # Analysis of reinforced concrete with FEM/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic=Béton armé avec FEM |Level=Intermédiaire |Time=60 minutes @@ -183,4 +183,7 @@ Le modèle de contrainte de traction suggère un concept alternatif utilisant de {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Analysis of reinforced concrete with FEM/fr diff --git a/wiki/translations/fr/Animation_Workbench.md b/wiki/translations/fr/Animation_Workbench.md index 8d1fa073ff..ab3169e613 100644 --- a/wiki/translations/fr/Animation_Workbench.md +++ b/wiki/translations/fr/Animation_Workbench.md @@ -1,5 +1,4 @@ # Animation Workbench/fr - {{Template:UnfinishedDocu }} @@ -101,3 +100,6 @@ Autre - [Ateliers externes](External_workbenches/fr.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Animation Workbench/fr diff --git a/wiki/translations/fr/AppImage.md b/wiki/translations/fr/AppImage.md index 0dc1fb5542..4c5694ec07 100644 --- a/wiki/translations/fr/AppImage.md +++ b/wiki/translations/fr/AppImage.md @@ -1,5 +1,5 @@ # AppImage/fr - **Depuis le 7 juillet 2019, la communauté FreeCAD observe que le téléchargement d'AppImages à partir de Github semble s'arrêter avant la fin du téléchargement. Nous ne savons pas pourquoi cela se produit. Si cela se produit pour vous, essayez de télécharger à nouveau. Il se pourrait que vous deviez faire plusieurs essais. Une pratique recommandée consiste à utiliser la [https://www.freecadweb.org/wiki/AppImage/fr#Mise_à_jour_automatique fonction de mise à jour automatique] AppImage, qui restaurera le téléchargement à partir de l'endroit où il a échoué.** +**Depuis le 7 juillet 2019, la communauté FreeCAD observe que le téléchargement d'AppImages à partir de Github semble s'arrêter avant la fin du téléchargement. Nous ne savons pas pourquoi cela se produit. Si cela se produit pour vous, essayez de télécharger à nouveau. Il se pourrait que vous deviez faire plusieurs essais. Une pratique recommandée consiste à utiliser la [https://www.freecadweb.org/wiki/AppImage/fr#Mise_à_jour_automatique fonction de mise à jour automatique] AppImage, qui restaurera le téléchargement à partir de l'endroit où il a échoué.** {{TOCright}} @@ -172,3 +172,6 @@ Le dépôt de ces scripts se trouve à [realthunder/FreeCADMakeImage](https://gi [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > AppImage/fr diff --git a/wiki/translations/fr/App_DocumentObject.md b/wiki/translations/fr/App_DocumentObject.md index c12bd8d26a..b05395750a 100644 --- a/wiki/translations/fr/App_DocumentObject.md +++ b/wiki/translations/fr/App_DocumentObject.md @@ -1,5 +1,5 @@ # App DocumentObject/fr - {{TOCright}} +{{TOCright}} ## Introduction @@ -69,4 +69,7 @@ obj.Label = "Custom label" {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App DocumentObject/fr diff --git a/wiki/translations/fr/App_DocumentObjectGroup.md b/wiki/translations/fr/App_DocumentObjectGroup.md index 9237f231d5..0127a5f9f6 100644 --- a/wiki/translations/fr/App_DocumentObjectGroup.md +++ b/wiki/translations/fr/App_DocumentObjectGroup.md @@ -1,6 +1,4 @@ # App DocumentObjectGroup/fr - - ## Introduction @@ -31,4 +29,7 @@ Voir les propriétés dans la page [Std Group](Std_Part/fr.md). {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App DocumentObjectGroup/fr diff --git a/wiki/translations/fr/App_FeaturePython.md b/wiki/translations/fr/App_FeaturePython.md index 966aa342d4..2b64456843 100644 --- a/wiki/translations/fr/App_FeaturePython.md +++ b/wiki/translations/fr/App_FeaturePython.md @@ -1,6 +1,4 @@ # App FeaturePython/fr - - ## Introduction Un objet [App FeaturePython](App_FeaturePython/fr.md), ou officiellement `App::FeaturePython`, est une simple instance de [App DocumentObject](App_DocumentObject/fr.md) dans [Python](Python/fr.md). @@ -95,4 +93,7 @@ Si l\'objet souhaité doit avoir un placement, une forme, une pièce jointe ou d {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App FeaturePython/fr diff --git a/wiki/translations/fr/App_GeoFeature.md b/wiki/translations/fr/App_GeoFeature.md index 11065c7a2d..442d44fc44 100644 --- a/wiki/translations/fr/App_GeoFeature.md +++ b/wiki/translations/fr/App_GeoFeature.md @@ -1,6 +1,4 @@ # App GeoFeature/fr - - ## Introduction @@ -144,4 +142,7 @@ Par exemple, l\'élément [Arch Partie de bâtiment](Arch_BuildingPart/fr.md) de {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App GeoFeature/fr diff --git a/wiki/translations/fr/App_Link.md b/wiki/translations/fr/App_Link.md index 001a0ab30c..73caf2af31 100644 --- a/wiki/translations/fr/App_Link.md +++ b/wiki/translations/fr/App_Link.md @@ -1,5 +1,5 @@ # App Link/fr - {{TOCright}} +{{TOCright}} ## Introduction @@ -28,4 +28,7 @@ Voir la liste complète des propriétés à la page [Std Créer un lien](Std_Lin {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Link/fr diff --git a/wiki/translations/fr/App_Part.md b/wiki/translations/fr/App_Part.md index eada3ddbb4..fc17abfb10 100644 --- a/wiki/translations/fr/App_Part.md +++ b/wiki/translations/fr/App_Part.md @@ -1,6 +1,4 @@ # App Part/fr - - ## Introduction @@ -31,4 +29,7 @@ Voir la liste complète des propriétés dans la page [Std Part](Std_Part/fr.md) {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Part/fr diff --git a/wiki/translations/fr/Arch_3DS.md b/wiki/translations/fr/Arch_3DS.md index 2fff7bf268..41f7b5d61c 100644 --- a/wiki/translations/fr/Arch_3DS.md +++ b/wiki/translations/fr/Arch_3DS.md @@ -1,9 +1,4 @@ # Arch 3DS/fr - - - - - L\'atelier Arch supporte l\'importation de fichiers [3DS](https://en.wikipedia.org/wiki/.3ds). Le format 3DS est ancien mais encore couramment utilisé sur internet. Il peut contenir un maillage et des informations de matériaux. Pour le moment la fonction d\'import dans FreeCAD importera le maillage, il n\'y a pas d\'import des informations sur les matériaux pour le moment. @@ -13,3 +8,6 @@ L\'atelier Arch supporte l\'importation de fichiers [3DS](https://en.wikipedia.o [Category:User Documentation](Category:User_Documentation.md) [Category:Arch](Category:Arch.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3DS/fr diff --git a/wiki/translations/fr/Arch_3Views.md b/wiki/translations/fr/Arch_3Views.md index 80ff876f5b..3b95f69ea9 100644 --- a/wiki/translations/fr/Arch_3Views.md +++ b/wiki/translations/fr/Arch_3Views.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Séparer un objet Mesh](Arch_SplitMesh/fr.md), [Arch Maillage vers une forme](Arch_MeshToShape/fr.md) --- +# Arch 3Views/fr + ## Description @@ -69,11 +71,5 @@ Wall.ViewObject.Visibility = False mesh_obj.ViewObject.Visibility = False ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3Views/fr diff --git a/wiki/translations/fr/Arch_API.md b/wiki/translations/fr/Arch_API.md index bbf4fa80f4..e6d9473e00 100644 --- a/wiki/translations/fr/Arch_API.md +++ b/wiki/translations/fr/Arch_API.md @@ -1,5 +1,5 @@ # Arch API/fr - **(November 2018) L'API Arch est répertoriée dans la [https://www.freecadweb.org/api documentation API générée automatiquement].** +**(November 2018) L'API Arch est répertoriée dans la [https://www.freecadweb.org/api documentation API générée automatiquement].** Les fonctions de l\'API font partie de l\'atelier [Arch](Arch_Workbench/fr.md) et peuvent être utilisées dans des [macros](macros/fr.md) et à partir de la console [Python](Python/fr.md) une fois que le module `Arch` a été importé. L\'atelier [renforcement](Reinforcement_Addon/fr.md) a ses propres [API de renforts](Reinforcement_API/fr.md). @@ -18,3 +18,6 @@ Arch.makeWall(baseline, length=None, width=200, height=2000) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch API/fr diff --git a/wiki/translations/fr/Arch_Add.md b/wiki/translations/fr/Arch_Add.md index 891ccf31ed..3040647074 100644 --- a/wiki/translations/fr/Arch_Add.md +++ b/wiki/translations/fr/Arch_Add.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Soustraire](Arch_Remove/fr.md) --- +# Arch Add/fr + ## Description L\'outil Ajouter vous permet de faire 4 types d\'opérations : @@ -75,11 +77,5 @@ Arch.addComponents(Wall2, Wall) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Add/fr diff --git a/wiki/translations/fr/Arch_Axis.md b/wiki/translations/fr/Arch_Axis.md index 599fa428dd..b42527ee5c 100644 --- a/wiki/translations/fr/Arch_Axis.md +++ b/wiki/translations/fr/Arch_Axis.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Système d'axes](Arch_AxisSystem/fr.md), [Arch Grille](Arch_Grid/fr.md) --- +# Arch Axis/fr + ## Description L\'outil ** [Axes](Arch_Axis/fr.md)** vous permet de placer une série d\'axes dans le document en cours. La distance et l\'angle entre les axes sont personnalisables, ainsi que le style de numérotation. Les axes servent principalement de références pour accrocher des objets mais peuvent également être utilisés avec ** [Arch Système d'axes](Arch_AxisSystem/fr.md)**, et peuvent également être référencés par d\'autres objets Arch pour créer des réseaux paramétriques, par exemple des poutres ou des colonnes. ** [Arch Grilles](Arch_Grid/fr.md)** peut également être utilisé à la place des axes. @@ -90,8 +92,5 @@ Draft.move(Axes2, FreeCAD.Vector(-1000, 2500, 0)) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Axis/fr diff --git a/wiki/translations/fr/Arch_AxisSystem.md b/wiki/translations/fr/Arch_AxisSystem.md index 390c5aff7f..947faa07f1 100644 --- a/wiki/translations/fr/Arch_AxisSystem.md +++ b/wiki/translations/fr/Arch_AxisSystem.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Axes](Arch_Axis/fr.md), [Arch Grille](Arch_Grid/fr.md) --- +# Arch AxisSystem/fr + ## Description L\'outil [Système d\'Axes](Arch_AxisSystem/fr.md) vous permet de combiner 2 ou 3 objets [Axes](Arch_Axis/fr.md). @@ -74,8 +76,5 @@ Structure.Axis = AxisSystem FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch AxisSystem/fr diff --git a/wiki/translations/fr/Arch_BimServer.md b/wiki/translations/fr/Arch_BimServer.md index dedcec3d2f..bbdea4322b 100644 --- a/wiki/translations/fr/Arch_BimServer.md +++ b/wiki/translations/fr/Arch_BimServer.md @@ -1,2 +1,5 @@ # Arch BimServer/fr 1. REDIRECT [WebTools\_BimServer/fr](WebTools_BimServer/fr.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BimServer/fr diff --git a/wiki/translations/fr/Arch_Building.md b/wiki/translations/fr/Arch_Building.md index 55b165251c..1e5c037243 100644 --- a/wiki/translations/fr/Arch_Building.md +++ b/wiki/translations/fr/Arch_Building.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Partie de bâtiment](Arch_BuildingPart/fr.md), [Arch Site](Arch_Site/fr.md) --- +# Arch Building/fr + ## Description Arch Building (Bâtiment) est un type spécial d\'objet de groupe FreeCAD particulièrement adapté pour représenter une unité de construction entière. Ils sont principalement utilisés pour organiser votre modèle, en contenant des objets [Arch Niveaux](Arch_Floor/fr.md). @@ -62,8 +64,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Building/fr diff --git a/wiki/translations/fr/Arch_BuildingPart.md b/wiki/translations/fr/Arch_BuildingPart.md index 20fd2153f6..969f2e5108 100644 --- a/wiki/translations/fr/Arch_BuildingPart.md +++ b/wiki/translations/fr/Arch_BuildingPart.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Bâtiment](Arch_Building/fr.md), [Arch Site](Arch_Site/fr.md) --- +# Arch BuildingPart/fr + ## Description BuildingPart (Partie de bâtiment) remplace les anciens [Arch Planchers](Arch_Floor/fr.md) et [Arch Bâtiment](Arch_Building/fr.md) par une version plus performante qui peut être utilisée non seulement pour créer un étage/un niveau/des niveaux mais également pour toutes sortes de situations dans lesquelles différents objets Arch/BIM doivent être groupés. Ce groupe pourra être traité comme un seul objet ou répliqué. @@ -127,8 +129,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BuildingPart/fr diff --git a/wiki/translations/fr/Arch_Check.md b/wiki/translations/fr/Arch_Check.md index 6dbb060125..16e80ee2e1 100644 --- a/wiki/translations/fr/Arch_Check.md +++ b/wiki/translations/fr/Arch_Check.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Fermer les trous](Arch_CloseHoles/fr.md) --- +# Arch Check/fr + ## Description Cet outil vérifie le document actif ou les objets sélectionnés pour vérifier des objets non-solides **[Atelier Part](Part_Workbench/fr.md)** ou **[Atelier Arch](Arch_Workbench/fr.md)**, lesquels pourraient créer des problèmes étant donné que la plupart des opérations de l\'ateler Arch nécessitent des objets solides. @@ -54,11 +56,5 @@ list_bad = Arch.check([Wall1, Wall2, Circle, Wire], includehidden=True) print(list_bad) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Check/fr diff --git a/wiki/translations/fr/Arch_CloneComponent.md b/wiki/translations/fr/Arch_CloneComponent.md index 6134a8f1e5..e389eefa82 100644 --- a/wiki/translations/fr/Arch_CloneComponent.md +++ b/wiki/translations/fr/Arch_CloneComponent.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Clone](Draft_Clone/fr.md), [Arch Composant](Arch_Component/fr.md) --- +# Arch CloneComponent/fr + ## Description @@ -26,8 +28,5 @@ Le composant clone aura simplement sa propriété {{PropertyData/fr|CloneOf}} d ## Script - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloneComponent/fr diff --git a/wiki/translations/fr/Arch_CloseHoles.md b/wiki/translations/fr/Arch_CloseHoles.md index b167f150ee..3ed9e18c0b 100644 --- a/wiki/translations/fr/Arch_CloseHoles.md +++ b/wiki/translations/fr/Arch_CloseHoles.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Vérification](Arch_Check/fr.md) --- +# Arch CloseHoles/fr + ## Description Cet outil identifie les trous (séquence circulaire d\'arêtes ouvertes (edges)) dans un objet [shape](Part_Workbench/fr.md) et tente de les fermer avec l\'ajout d\'une nouvelle face construite sur la séquence de bords. Vous devez cependant, vous assurer que le résultat est un solide. @@ -52,11 +54,5 @@ FreeCAD.ActiveDocument.recompute() solid = Arch.closeHole(Wall.Shape) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloseHoles/fr diff --git a/wiki/translations/fr/Arch_CompAxis.md b/wiki/translations/fr/Arch_CompAxis.md index fc0bbbcb63..bb5e284e29 100644 --- a/wiki/translations/fr/Arch_CompAxis.md +++ b/wiki/translations/fr/Arch_CompAxis.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Axes](Arch_Axis/fr.md), [Arch Système d'axes](Arch_AxisSystem.md), [Arch Grille](Arch_Grid.md) --- +# Arch CompAxis/fr + ## Description Créer des axes. @@ -18,8 +20,5 @@ Créer des axes. - [Système d\'axes](Arch_AxisSystem/fr.md) : Ajoute au document un système d\'axes composé de plusieurs axes. - [Grille](Arch_Grid/fr.md) : Ajoute au document un objet de type grille. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompAxis/fr diff --git a/wiki/translations/fr/Arch_CompPanel.md b/wiki/translations/fr/Arch_CompPanel.md index 598221148a..b6969d55ab 100644 --- a/wiki/translations/fr/Arch_CompPanel.md +++ b/wiki/translations/fr/Arch_CompPanel.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Arch CompPanel/fr + ## Description Groupement de plusieurs outils en relation avec les panneaux. @@ -19,8 +21,5 @@ Groupement de plusieurs outils en relation avec les panneaux. - [Panneau de feuille](Arch_Panel_Sheet/fr.md): crée une feuille de découpe 2D comprenant des [découpes de panneau](Arch_Panel_Cut/fr.md) ou d\'autres objets 2D. {{Version/fr|0.17}} - [Calepinage](Arch_Nest/fr.md): permet d\'imbriquer plusieurs objets plats dans une forme de conteneur. {{Version/fr|0.17}} - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompPanel/fr diff --git a/wiki/translations/fr/Arch_CompPipe.md b/wiki/translations/fr/Arch_CompPipe.md index d003e0cf28..946bc3329a 100644 --- a/wiki/translations/fr/Arch_CompPipe.md +++ b/wiki/translations/fr/Arch_CompPipe.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Arch CompPipe/fr + ## Description ## Types @@ -14,8 +16,5 @@ - [Tuyauterie](Arch_Pipe/fr.md): Crée un tuyau {{Version/fr|0.17}} - [Connecteur](Arch_PipeConnector/fr.md): Crée un raccord à angle droit ou en té entre 2 ou 3 tuyaux sélectionnés. {{Version/fr|0.17}} - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompPipe/fr diff --git a/wiki/translations/fr/Arch_CompRebarStraight.md b/wiki/translations/fr/Arch_CompRebarStraight.md index 698bed9caa..b40d0c4ef1 100644 --- a/wiki/translations/fr/Arch_CompRebarStraight.md +++ b/wiki/translations/fr/Arch_CompRebarStraight.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch CompRebarStraight/fr + ## Description L\'addon Renforcement augmente les fonctionnalités de l\'[atelier Arch](Arch_Workbench/fr.md) en fournissant de nouvelles interfaces et de nouveaux préréglages pour la création de types de barres d\'armature courants à utiliser avec [Arch Structures](Arch_Structure/fr.md). Il est également intégré à l\'atelier externe [BIM](BIM_Workbench/fr.md). @@ -39,8 +41,5 @@ Voir sur [Ateliers](Workbenches/fr#Ateliers_externes.md)/[Ateliers externes](Ext - [Armature personnalisée](Arch_Rebar/fr.md) : Crée une barre de ferraillage personnalisée dans un élément de structure sélectionné à l\'aide d\'une esquisse. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompRebarStraight/fr diff --git a/wiki/translations/fr/Arch_CompSetMaterial.md b/wiki/translations/fr/Arch_CompSetMaterial.md index 01d8dde164..d134c15308 100644 --- a/wiki/translations/fr/Arch_CompSetMaterial.md +++ b/wiki/translations/fr/Arch_CompSetMaterial.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Matériaux](Arch_SetMaterial/fr.md), [Arch Matériaux multiples](Arch_MultiMaterial/fr.md) --- +# Arch CompSetMaterial/fr + ## Description Les outils Matériaux permettent d\'ajouter des matériaux au document actif. @@ -17,8 +19,5 @@ Les outils Matériaux permettent d\'ajouter des matériaux au document actif. - [Matériau](Arch_SetMaterial/fr.md): crée un matériau et l\'attribue, le cas échéant aux objets sélectionnés - [Matériaux multiples](Arch_MultiMaterial/fr.md): crée un multi-matériau et l\'attribue aux objets sélectionnés, le cas échéant {{Version/fr|0.17}}. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompSetMaterial/fr diff --git a/wiki/translations/fr/Arch_Component.md b/wiki/translations/fr/Arch_Component.md index 4497f0bcc0..771cade4b3 100644 --- a/wiki/translations/fr/Arch_Component.md +++ b/wiki/translations/fr/Arch_Component.md @@ -7,6 +7,8 @@ Shortcut:**C** **M** --- +# Arch Component/fr + ## Description Crée un composant [Arch](Arch_Workbench/fr.md) non-paramétrique à partir de n\'importe quel objet [Part](Part_Workbench/fr.md). Cela donne un objet de base Part avec les mêmes attributs et propriétés que les autres objets Arch et permet de préciser comment il doit être exporté au format IFC en définissant sa propriété ou son *Rôle*. @@ -47,11 +49,5 @@ L\'objet Composant Arch est également une base partagée par tous les autres ob - **Hi Res** : Les composants Arch peuvent utiliser la forme d\'un autre objet avec une résolution plus élevée. Pour cela, la propriété Hi Res et le mode d\'affichage Hi Res doivent être définis. Cela permet, par exemple, de créer un simple mur, puis de modéliser chaque brique qui compose le mur, par exemple avec ** [Part Cube](Part_Box/fr.md)**. Ensuite, utilisez un composé de ces briques comme une version haute résolution du mur. La forme du mur n\'est pas modifiée en ajoutant un objet Hi-Res. Seule sa représentation dans la vue 3D changera en adoptant la représentation de la version haute résolution à la place de la sienne. - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Component/fr diff --git a/wiki/translations/fr/Arch_Concept.md b/wiki/translations/fr/Arch_Concept.md index dab043764f..e1327bf83a 100644 --- a/wiki/translations/fr/Arch_Concept.md +++ b/wiki/translations/fr/Arch_Concept.md @@ -1,7 +1,4 @@ # Arch Concept/fr - - - ** Ce plan de développement est probablement obsolète. Pour plus d'informations, voir [Plan de développement](Development_roadmap/fr.md).
Si vous n'êtes pas impliqué dans le développement discuté ici :
@@ -173,3 +170,6 @@ Le schéma suivant illustre la relation entre tous les objets décrits à ce jou Objects for capturing building knowledge [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Concept/fr diff --git a/wiki/translations/fr/Arch_CurtainWall.md b/wiki/translations/fr/Arch_CurtainWall.md index 1eee413466..c61f770b54 100644 --- a/wiki/translations/fr/Arch_CurtainWall.md +++ b/wiki/translations/fr/Arch_CurtainWall.md @@ -9,6 +9,8 @@ SeeAlso:[Arch Mur](Arch_Wall/fr.md), [Arch Grille](Arch_Grid/fr.md) --- +# Arch CurtainWall/fr + ## Description Cet outil crée un [Mur-rideau](https://fr.wikipedia.org/wiki/Mur-rideau) en subdivisant une face de base en faces quadrangulaires puis en créant un meneau vertical sur les bords verticaux, des meneaux horizontaux sur les bords horizontaux et remplit les espaces entre les meneaux avec des panneaux. @@ -150,8 +152,5 @@ curtainWall.VerticalSections = 6 FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CurtainWall/fr diff --git a/wiki/translations/fr/Arch_CutLine.md b/wiki/translations/fr/Arch_CutLine.md index ff7910ce1a..56336dca04 100644 --- a/wiki/translations/fr/Arch_CutLine.md +++ b/wiki/translations/fr/Arch_CutLine.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Couper suivant un plan](Arch_CutPlane/fr.md) --- +# Arch CutLine/fr + ## Description L\'outil [Arch Couper suivant une ligne](Arch_CutLine/fr.md) vous permet de couper un objet solide Arch comme un [Arch Mur](Arch_Wall/fr.md) ou [Arch Structure](Arch_Structure/fr.md) à l\'aide d\'une ligne qui traverse l\'objet. @@ -32,8 +34,5 @@ L\'outil [Arch Couper suivant une ligne](Arch_CutLine/fr.md) vous permet de coup [Arch API](Arch_API.md) et [FreeCAD Script de Base](FreeCAD_Scripting_Basics/fr.md). - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutLine/fr diff --git a/wiki/translations/fr/Arch_CutPlane.md b/wiki/translations/fr/Arch_CutPlane.md index e5b720bed2..d807bb2fcb 100644 --- a/wiki/translations/fr/Arch_CutPlane.md +++ b/wiki/translations/fr/Arch_CutPlane.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Couper suivant une ligne](Arch_CutLine/fr.md), [Arch Soustraire](Arch_Remove/fr.md) --- +# Arch CutPlane/fr + ## Description L\'outil Couper le plan vous permet de couper un objet Arch selon un plan: @@ -93,8 +95,5 @@ cutObj2 = Arch.cutComponentwithPlane(main_object2, cut_face2, 1) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutPlane/fr diff --git a/wiki/translations/fr/Arch_DAE.md b/wiki/translations/fr/Arch_DAE.md index ef58fcb9fe..eec1b1af21 100644 --- a/wiki/translations/fr/Arch_DAE.md +++ b/wiki/translations/fr/Arch_DAE.md @@ -1,6 +1,4 @@ # Arch DAE/fr - - Le format [Collada (DAE)](https://fr.wikipedia.org/wiki/Collaborative_Design_Activity) est un format de fichier standard pour l\'échange de données de maillage. L\'[atelier Arch](Arch_Workbench/fr.md) peut importer des maillages à partir de fichiers .dae, et exporter des objets Arch et d\'autres objets basés sur [Part](Part_Workbench.md) au format .dae. Notez que les objets importés seront des objets [Mesh](Mesh_Workbench/fr.md) et devront être transformés en objets [Shape](Shape/fr.md) ou en objets [Arch](Arch_Workbench/fr.md) pour une utilisation optimale. L\'[atelier Arch](Arch_Workbench/fr.md) dispose de plusieurs outils pour vous aider dans ces opérations. @@ -18,3 +16,6 @@ La fonctionnalité d\'importation Collada dans l\'atelier Arch dépend de [pycol [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch DAE/fr diff --git a/wiki/translations/fr/Arch_Door.md b/wiki/translations/fr/Arch_Door.md index 87844e619e..f4cb4ae58b 100644 --- a/wiki/translations/fr/Arch_Door.md +++ b/wiki/translations/fr/Arch_Door.md @@ -9,6 +9,8 @@ Icon:Arch_Window.svg --- +# Arch Door/fr + ## Description [Arch Porte](Arch_Door/fr.md) est créé avec l\'outil [Arch Fenêtre](Arch_Window/fr.md). @@ -24,5 +26,5 @@ Toutes les propriétés sont accessibles dans l\'outil [Arch Fenêtre](Arch_Wind Door *Les portes doivent être construites avec l'atelier [Esquisse](Sketcher_Workbench/fr.md)* - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Door/fr diff --git a/wiki/translations/fr/Arch_Equipment.md b/wiki/translations/fr/Arch_Equipment.md index 64464c9c63..ff66aec825 100644 --- a/wiki/translations/fr/Arch_Equipment.md +++ b/wiki/translations/fr/Arch_Equipment.md @@ -8,6 +8,8 @@ SeeAlso:[Arch 3 vues depuis maillage](Arch_3Views/fr.md) --- +# Arch Equipment/fr + ## Description L\'outil Équipement vous offre un moyen simple et pratique d\'insérer des éléments autonomes, non structurels tels que des meubles, des équipements sanitaire ou appareils électriques à vos projets. Les équipements sont basés sur des [objets Part](Part_Workbench/fr.md), ce qui leur permet de bénéficier de la solidité et des possibilités de la géométrie BRep et de générer de jolies vues lors du rendu en vue en plan et en coupe. @@ -66,11 +68,5 @@ Equip = Arch.makeEquipment(Box) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Equipment/fr diff --git a/wiki/translations/fr/Arch_Fence.md b/wiki/translations/fr/Arch_Fence.md index 30c67cb0d7..ee890cf266 100644 --- a/wiki/translations/fr/Arch_Fence.md +++ b/wiki/translations/fr/Arch_Fence.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Fence/fr + ## Description L\'outil [Arch Clôture](Arch_Fence/fr.md) est un objet qui construit une clôture en répétant un poteau et une section de clôture le long d\'un chemin donné. @@ -95,8 +97,5 @@ post = FreeCAD.ActiveDocument.Post Fence = Arch.buildFence(fence_section, post, sketch) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Fence/fr diff --git a/wiki/translations/fr/Arch_Floor.md b/wiki/translations/fr/Arch_Floor.md index 1a95ba57f7..05c9d6e210 100644 --- a/wiki/translations/fr/Arch_Floor.md +++ b/wiki/translations/fr/Arch_Floor.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Bâtiment](Arch_Building/fr.md), [Arch Partie de bâtiment](Arch_BuildingPart/fr.md), [Arch Site](Arch_Site/fr.md) --- +# Arch Floor/fr + ## Description [Niveaux](Arch_Floor/fr.md) est un type spécial d\'objet de groupe FreeCAD qui possède quelques propriétés supplémentaires particulièrement adaptées pour la construction de niveaux. En particulier, ils ont une propriété height (hauteur), que ses objets enfants ([Arch murs](Arch_Wall/fr.md) et [Arch structures](Arch_Structure/fr.md)) peuvent utiliser pour définir automatiquement leur propre hauteur. Ils sont principalement utilisés pour organiser votre modèle. @@ -67,11 +69,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor/fr diff --git a/wiki/translations/fr/Arch_Frame.md b/wiki/translations/fr/Arch_Frame.md index c6fa65efad..5d9308aa88 100644 --- a/wiki/translations/fr/Arch_Frame.md +++ b/wiki/translations/fr/Arch_Frame.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Mur](Arch_Wall/fr.md), [Arch Structure](Arch_Structure/fr.md) --- +# Arch Frame/fr + ## Description L\'outil ** [Arch Ossature](Arch_Frame/fr.md)** sert à construire toutes sortes d\'objets structurels basés sur un profil et un schéma d\'agencement. Le profil est extrudé sur les bords du modèle, qui peut être n\'importe quel objet 2D comme une [esquisse](Sketcher_Workbench/fr.md) ou un [objet Draft](Draft_Workbench/fr.md). Il est particulièrement utile pour créer des rampes ou des murs. Les objets Ossature peuvent alors facilement être transformés en [murs](Arch_Wall/fr.md) ou en objets [structurels](Arch_Structure/fr.md). @@ -74,11 +76,5 @@ Frame = Arch.makeFrame(baseobj, profile) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Frame/fr diff --git a/wiki/translations/fr/Arch_Git.md b/wiki/translations/fr/Arch_Git.md index 827f3d6ed6..e40d8418cd 100644 --- a/wiki/translations/fr/Arch_Git.md +++ b/wiki/translations/fr/Arch_Git.md @@ -1,2 +1,5 @@ # Arch Git/fr 1. REDIRECT [WebTools\_Git/fr](WebTools_Git/fr.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Git/fr diff --git a/wiki/translations/fr/Arch_Grid.md b/wiki/translations/fr/Arch_Grid.md index 2097269900..df4cbfc4bf 100644 --- a/wiki/translations/fr/Arch_Grid.md +++ b/wiki/translations/fr/Arch_Grid.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Axes](Arch_Axis/fr.md), [Arch Système d'axes](Arch_AxisSystem/fr.md) --- +# Arch Grid/fr + ## Description L\'outil ** [Arch Grille](Arch_Grid/fr.md)** vous permet de placer un objet de type grille dans le document. Cet objet est destiné à servir de base pour construire des objets Arch nécessitant un cadre régulier mais complexe, comme des fenêtres, des murs-rideaux, des grilles de colonnes, des garde-corps, etc. L\'objet Grille est modifiable comme une feuille de calcul où vous pouvez ajouter ou supprimer colonnes et lignes, définissent leur taille et fusionnent les cellules. @@ -90,8 +92,5 @@ Structure.Axis = Grid FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Grid/fr diff --git a/wiki/translations/fr/Arch_IFC.md b/wiki/translations/fr/Arch_IFC.md index 574ca35689..becbb9ed38 100644 --- a/wiki/translations/fr/Arch_IFC.md +++ b/wiki/translations/fr/Arch_IFC.md @@ -1,7 +1,4 @@ # Arch IFC/fr - - - {{TOCright}} ## Description @@ -75,3 +72,6 @@ Si la forme des objets exportés est basée sur une extrusion ou une opération [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IFC/fr diff --git a/wiki/translations/fr/Arch_IfcExplorer.md b/wiki/translations/fr/Arch_IfcExplorer.md index 22bee5c928..07154de8a2 100644 --- a/wiki/translations/fr/Arch_IfcExplorer.md +++ b/wiki/translations/fr/Arch_IfcExplorer.md @@ -7,6 +7,8 @@ SeeAlso:[Arch IFC](Arch_IFC/fr.md) --- +# Arch IfcExplorer/fr + ## Description L\'Explorateur Ifc est un utilitaire simple pour explorer le contenu d\'un fichier [IFC](Arch_IFC/fr.md). Les fichiers IFC sont des fichiers texte et sont donc lisibles dans un éditeur de texte mais les informations sont condensées, non formatées et difficiles à parcourir. Cet utilitaire présente à l\'utilisateur le même contenu exact, mais affiché dans une méthode organisée et lisible. La bibliothèque de logiciels \"[IfcOpenShell](IfcOpenShell/fr.md)\" doit être installée pour que cet utilitaire fonctionne. @@ -32,3 +34,6 @@ Le but de cet explorateur est simplement de vous permettre de vérifier ce qui e [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcExplorer/fr diff --git a/wiki/translations/fr/Arch_IfcSpreadsheet.md b/wiki/translations/fr/Arch_IfcSpreadsheet.md index c3a41e7692..1e69b8f740 100644 --- a/wiki/translations/fr/Arch_IfcSpreadsheet.md +++ b/wiki/translations/fr/Arch_IfcSpreadsheet.md @@ -8,6 +8,8 @@ SeeAlso:[Arch IFC](Arch_IFC/fr.md), [Arch Explorateur Ifc](Arch_IfcExplorer/fr.md) --- +# Arch IfcSpreadsheet/fr + ## Description Cet outil crée une feuille de calcul pour stocker les propriétés [IFC](Arch_IFC/fr.md) d\'un objet. @@ -45,8 +47,5 @@ FreeCAD.ActiveDocument.recompute() spreadsheet = Arch.makeIfcSpreadsheet(Wall) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcSpreadsheet/fr diff --git a/wiki/translations/fr/Arch_JSON.md b/wiki/translations/fr/Arch_JSON.md index 48c5ce6267..fbe7d0cbda 100644 --- a/wiki/translations/fr/Arch_JSON.md +++ b/wiki/translations/fr/Arch_JSON.md @@ -1,9 +1,4 @@ # Arch JSON/fr - - - - - L\'objectif principal de ce format d\'exportation est de faciliter le traitement des données du modèle FreeCAD à partir de langages de programmation. Le format [JSON](http://json.org/) est le suivant: { @@ -31,3 +26,6 @@ Notez que les facettes forment des triangles et leurs valeurs entières référe [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch JSON/fr diff --git a/wiki/translations/fr/Arch_MakeIfcSpreadsheet.md b/wiki/translations/fr/Arch_MakeIfcSpreadsheet.md index 59bc34f277..44e511f2d9 100644 --- a/wiki/translations/fr/Arch_MakeIfcSpreadsheet.md +++ b/wiki/translations/fr/Arch_MakeIfcSpreadsheet.md @@ -1,2 +1,5 @@ # Arch MakeIfcSpreadsheet/fr 1. REDIRECT [Arch\_IfcSpreadsheet/fr](Arch_IfcSpreadsheet/fr.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MakeIfcSpreadsheet/fr diff --git a/wiki/translations/fr/Arch_MergeWalls.md b/wiki/translations/fr/Arch_MergeWalls.md index 0272e30d83..5da4bdef34 100644 --- a/wiki/translations/fr/Arch_MergeWalls.md +++ b/wiki/translations/fr/Arch_MergeWalls.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Murs](Arch_Wall/fr.md) --- +# Arch MergeWalls/fr + ## Description L\'outil [Fusionner des Murs](Arch_MergeWalls/fr.md) fusionne deux ou plusieurs **[Arch Murs](Arch_Wall/fr.md)** sélectionnés. @@ -48,8 +50,5 @@ FreeCAD.ActiveDocument.recompute() base = Arch.joinWalls([Wall1, Wall2]) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MergeWalls/fr diff --git a/wiki/translations/fr/Arch_MeshToShape.md b/wiki/translations/fr/Arch_MeshToShape.md index 799f6b6ad3..f51c5c0d37 100644 --- a/wiki/translations/fr/Arch_MeshToShape.md +++ b/wiki/translations/fr/Arch_MeshToShape.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Séparer un objet Mesh](Arch_SplitMesh/fr.md), [Arch Supprimer la forme](Arch_RemoveShape/fr.md) --- +# Arch MeshToShape/fr + ## Description [Arch Maillage vers une forme](Arch_MeshToShape/fr.md) convertit un objet [Mesh](Mesh/fr.md) ([Mesh Feature](Mesh_Feature/fr.md)) sélectionné en un objet [Shape](Shape/fr.md) ([Part Feature](Part_Feature/fr.md)). @@ -59,8 +61,5 @@ FreeCAD.ActiveDocument.recompute() new_obj = Arch.meshToShape(Box) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MeshToShape/fr diff --git a/wiki/translations/fr/Arch_Module.md b/wiki/translations/fr/Arch_Module.md index 8e23ac192b..78e77d7499 100644 --- a/wiki/translations/fr/Arch_Module.md +++ b/wiki/translations/fr/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/fr 1. REDIRECT [Arch\_Workbench/fr](Arch_Workbench/fr.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/fr diff --git a/wiki/translations/fr/Arch_MultiMaterial.md b/wiki/translations/fr/Arch_MultiMaterial.md index 5a39bac252..1d161f1fb6 100644 --- a/wiki/translations/fr/Arch_MultiMaterial.md +++ b/wiki/translations/fr/Arch_MultiMaterial.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Matériau](Arch_SetMaterial/fr.md), [Arch Outils matériaux](Arch_CompSetMaterial/fr.md) --- +# Arch MultiMaterial/fr + ## Description L\'outil Multi-matériaux définit une liste de [matériaux](Material/fr.md) avec, pour chaque matériau, un nom et une valeur d\'épaisseur. Cette liste multi-matériaux peut ensuite être ajoutée à un objet [Arch](Arch_Workbench/fr.md) à la place d\'un seul [Arch Matériau](Arch_SetMaterial/fr.md). @@ -49,8 +51,5 @@ Cela correspond à peu près à une combinaison de [IfcMaterialLayerSet](https:/ ## Script - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MultiMaterial/fr diff --git a/wiki/translations/fr/Arch_Nest.md b/wiki/translations/fr/Arch_Nest.md index e466a3b3aa..c4ec73f3cf 100644 --- a/wiki/translations/fr/Arch_Nest.md +++ b/wiki/translations/fr/Arch_Nest.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Panneau](Arch_Panel/fr.md), [Arch Panneau feuille](Arch_Panel_Sheet/fr.md) --- +# Arch Nest/fr + ## Description L\'outil ** [Arch Calepinage](Arch_Nest/fr.md)** permet de sélectionner une forme plane pour en faire un conteneur, et une série d\'autres formes planes à disposer à l\'intérieur de l\'espace défini par la forme du conteneur. Ceci est généralement nécessaire pour les opérations sur machines CNC, où vous voulez découper une série de pièces dans un panneau de base, et devez organiser ces pièces de la manière la plus compacte possible pour qu\'elles occupent moins d\'espace sur le panneau. @@ -39,8 +41,5 @@ L\'algorithme qui gère l\'outil Nest est en constante évolution et n\'est actu - Pour le moment, la marge/espacement entre les pièces n\'est pas encore implémenté - Le calcul peut prendre beaucoup de temps avec de nombreux objets. Cela sera optimisé dans le futur - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Nest/fr diff --git a/wiki/translations/fr/Arch_OBJ.md b/wiki/translations/fr/Arch_OBJ.md index b337dda6d3..b51567cbbe 100644 --- a/wiki/translations/fr/Arch_OBJ.md +++ b/wiki/translations/fr/Arch_OBJ.md @@ -1,9 +1,4 @@ # Arch OBJ/fr - - - - - ## Description En plus de l\'exportateur standard **[.OBJ](https://fr.wikipedia.org/wiki/Objet_3D_(format_de_fichier))** de FreeCAD, l\'[atelier Arch](Arch_Workbench/fr.md) dispose d\'une solution alternative d\'exportation qui exporte les faces coplanaires comme des faces OBJ entières, au lieu de trianguler les objets basés sur les [Shape](Shape/fr.md), comme le fait l\'exportateur standard. @@ -53,3 +48,6 @@ mesh.write(Filename="new_example.obj", Material=face_colors, Format="obj") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch OBJ/fr diff --git a/wiki/translations/fr/Arch_Panel.md b/wiki/translations/fr/Arch_Panel.md index e7db15cf0a..670b056611 100644 --- a/wiki/translations/fr/Arch_Panel.md +++ b/wiki/translations/fr/Arch_Panel.md @@ -9,6 +9,8 @@ SeeAlso:[Arch Découpe de panneaux](Arch_Panel_Cut/fr.md), [Arch Panneau feuille](Arch_Panel_Sheet/fr.md) --- +# Arch Panel/fr + ## Description Cet outil vous permet de créer toutes sortes d\'éléments semblables à des panneaux, généralement pour des constructions de panneaux comme le projet [WikiHouse](http://www.wikihouse.cc/) , mais aussi pour toutes sortes d\'objets qui sont basés sur un profil plat. @@ -91,8 +93,5 @@ Panel = Arch.makePanel(Rect, thickness=36) - [Wikihouse porting tutorial](Wikihouse_porting_tutorial/fr.md) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel/fr diff --git a/wiki/translations/fr/Arch_Panel_Cut.md b/wiki/translations/fr/Arch_Panel_Cut.md index 5a4194301b..f232ed0bb4 100644 --- a/wiki/translations/fr/Arch_Panel_Cut.md +++ b/wiki/translations/fr/Arch_Panel_Cut.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Panneaux](Arch_Panel/fr.md), [Arch Panneau feuille](Arch_Panel_Sheet/fr.md), [Arch Calepinage](Arch_Nest/fr.md) --- +# Arch Panel Cut/fr + ## Description Cet outil crée, dans le document 3D, une vue 2D plane d\'un objet [Panneaux](Arch_Panel/fr.md), à inclure dans un [Arch Panneau feuille](Arch_Panel_Sheet/fr.md) ou directement exportée vers [DXF](Draft_DXF/fr.md). Les objets Découpe de panneaux sont également pris en charge par l\'[atelier Path](Path_Workbench/fr.md). @@ -97,8 +99,5 @@ FreeCAD.ActiveDocument.recompute() - [tutoriel Wikihouse](Wikihouse_porting_tutorial/fr.md) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Cut/fr diff --git a/wiki/translations/fr/Arch_Panel_Sheet.md b/wiki/translations/fr/Arch_Panel_Sheet.md index f175a36949..b65644cd7e 100644 --- a/wiki/translations/fr/Arch_Panel_Sheet.md +++ b/wiki/translations/fr/Arch_Panel_Sheet.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Panneau](Arch_Panel/fr.md), [Arch Découpe de panneaux](Arch_Panel_Cut/fr.md), [Arch Calepinage](Arch_Nest/fr.md) --- +# Arch Panel Sheet/fr + ## Description Cet outil permet de construire une feuille en 2D, y compris n\'importe quel nombre d\'objets [Panneaux coupés](Arch_Panel_Cut/fr.md), ou tout autre objet 2D tel que ceux réalisés par le [l\'atelier Draft](Draft_Workbench/fr.md) et [atelier Sketcher](Sketcher_Workbench/fr.md). Le panneau est typiquement fait pour mettre en page des coupes destinées à être exécutées sur une machine à commande numérique par ordinateur. Ces feuilles peuvent ensuite être exportées vers un fichier [DXF](Draft_DXF/fr.md). @@ -115,8 +117,5 @@ Sheet = Arch.makePanelSheet([Cut1, Cut2, Cut3]) - [Tutoriel de portage Wikihouse](Wikihouse_porting_tutorial/fr.md) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Sheet/fr diff --git a/wiki/translations/fr/Arch_Pipe.md b/wiki/translations/fr/Arch_Pipe.md index 4625fa1d89..f2ecb45b0f 100644 --- a/wiki/translations/fr/Arch_Pipe.md +++ b/wiki/translations/fr/Arch_Pipe.md @@ -9,6 +9,8 @@ SeeAlso:[Arch Connecteur](Arch_PipeConnector/fr.md), [Arch Equipement](Arch_Equipment/fr.md) --- +# Arch Pipe/fr + ## Description Cet outil vous permet de créer un tube à partir de zéro ou à partir d\'objets basés sur (Draft, Sketch, etc..) sélectionnés et contenant un fil et un seul fil ouvert. @@ -109,8 +111,5 @@ Pipe2 = Arch.makePipe(diameter=120, length=3000) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Pipe/fr diff --git a/wiki/translations/fr/Arch_PipeConnector.md b/wiki/translations/fr/Arch_PipeConnector.md index cce6e01fcb..17e51bf2c1 100644 --- a/wiki/translations/fr/Arch_PipeConnector.md +++ b/wiki/translations/fr/Arch_PipeConnector.md @@ -9,6 +9,8 @@ SeeAlso:[Arch Tuyau](Arch_Pipe/fr.md), [Arch Equipement](Arch_Equipment/fr.md) --- +# Arch PipeConnector/fr + ## Description Cet outil vous permet de créer des raccords entre deux ou plusieurs [Tuyaux](Arch_Pipe/fr.md) sélectionnés. @@ -74,11 +76,5 @@ Conn3 = Arch.makePipeConnector([Pipe4, Pipe5], radius=400) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch PipeConnector/fr diff --git a/wiki/translations/fr/Arch_Preferences.md b/wiki/translations/fr/Arch_Preferences.md index 68ea7e2588..de9888af0b 100644 --- a/wiki/translations/fr/Arch_Preferences.md +++ b/wiki/translations/fr/Arch_Preferences.md @@ -1,6 +1,4 @@ # Arch Preferences/fr - - Les préférences de l\'[Atelier Arch](Arch_Workbench/fr.md) se trouvent dans [Éditeur de préférences](Preferences_Editor/fr.md), dans le menu **Édition → Préférences → Arch**. Il existe deux onglets : Paramètres généraux et Valeurs par défaut. @@ -17,3 +15,6 @@ Il existe deux onglets : Paramètres généraux et Valeurs par défaut. [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Preferences/fr diff --git a/wiki/translations/fr/Arch_Profile.md b/wiki/translations/fr/Arch_Profile.md index 1820e41c10..feefd055c2 100644 --- a/wiki/translations/fr/Arch_Profile.md +++ b/wiki/translations/fr/Arch_Profile.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Profile/fr + ## Description L\'outil Profilé crée un objet de profil 2D paramétrique. Cet objet peut ensuite être utilisé comme base dans différents autres outils qui effectuent des extrusions tels que [Arch Ossature](Arch_Frame/fr.md), [Arch Mur-rideau](Arch_CurtainWall/fr.md) ou [Part Extrusion](Part_Extrude/fr.md). @@ -90,8 +92,5 @@ Arch.makeProfile([0,'REC','REC100x100','R',100,100]) Lorsque le premier élément de la liste est un numéro ordonné pas encore utilisé. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Profile/fr diff --git a/wiki/translations/fr/Arch_Project.md b/wiki/translations/fr/Arch_Project.md index 8d726affc0..d400517401 100644 --- a/wiki/translations/fr/Arch_Project.md +++ b/wiki/translations/fr/Arch_Project.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Site](Arch_Site/fr.md), [Arch Bâtiment](Arch_Building/fr.md) --- +# Arch Project/fr + ## Description Le projet Arch est un objet spécial permettant d'améliorer la compatibilité avec les fichiers [IFC](Arch_IFC/fr.md). Chaque fichier IFC doit contenir une entité [IfcProject](https://standards.buildingsmart.org/IFC/RELEASE/IFC4_1/FINAL/HTML/schema/ifckernel/lexical/ifcproject.htm). IfcProject est principalement utilisé pour définir les paramètres généraux du projet tels que les systèmes de projection, pour la compatibilité GIS, ou les systèmes d\'unités. @@ -21,8 +23,5 @@ Remarquez que, bien que tout autre objet BIM puisse être ajouté à un projet, 1. Appuyez sur le bouton ** [Crée une entité de projet...](Arch_Project/fr.md)** ou appuyez sur les touches **P** puis **O**. 2. Ajoutez n\'importe quel objet à votre projet en les faisant glisser sur la [Vue en arborescence](Tree_view/fr.md). - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Project/fr diff --git a/wiki/translations/fr/Arch_Rebar.md b/wiki/translations/fr/Arch_Rebar.md index fe32274123..1b07f7438e 100644 --- a/wiki/translations/fr/Arch_Rebar.md +++ b/wiki/translations/fr/Arch_Rebar.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Structure](Arch_Structure/fr.md), [Atelier Reinforcement](Reinforcement_Workbench/fr.md) --- +# Arch Rebar/fr + ## Description L\'outil [Armature](Arch_Rebar/fr.md) vous permet de placer des [barres d\'armature](http://fr.wikipedia.org/wiki/Armature_%28technique%29) dans les objets [Structure](Arch_Structure/fr.md). @@ -123,3 +125,6 @@ FreeCAD.ActiveDocument.recompute() [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar/fr diff --git a/wiki/translations/fr/Arch_Rebar_BOM.md b/wiki/translations/fr/Arch_Rebar_BOM.md index e43657d805..c3b7353345 100644 --- a/wiki/translations/fr/Arch_Rebar_BOM.md +++ b/wiki/translations/fr/Arch_Rebar_BOM.md @@ -8,6 +8,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench/fr.md), [Reinforcement Tableau des armatures](Reinforcement_Bar_Bending_Schedule/fr.md), [Arch Rebar Dimensions des armatures](Arch_Rebar_Drawing_Dimensioning/fr.md) --- +# Arch Rebar BOM/fr + ## Description L\'outil [Nomenclature (BOM)](Arch_Rebar_BOM/fr.md) permet à l\'utilisateur de créer une nomenclature de barres d\'armature. @@ -525,3 +527,6 @@ BillOfMaterial_SVG.makeBillOfMaterialSVG( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BOM/fr diff --git a/wiki/translations/fr/Arch_Rebar_BeamReinforcement.md b/wiki/translations/fr/Arch_Rebar_BeamReinforcement.md index 631928d572..b0ea7055bc 100644 --- a/wiki/translations/fr/Arch_Rebar_BeamReinforcement.md +++ b/wiki/translations/fr/Arch_Rebar_BeamReinforcement.md @@ -8,6 +8,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Armature personnalisée](Arch_Rebar/fr.md), [Arch Armature 2x6](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/fr.md), --- +# Arch Rebar BeamReinforcement/fr + ## Description L\'outil [Rebar Poutre](Arch_Rebar_BeamReinforcement/fr.md) permet à l\'utilisateur de créer des barres d\'armature à l\'intérieur d\'un objet poutre [Arch Structure](Arch_Structure/fr.md). @@ -364,3 +366,6 @@ RebarGroup = TwoLeggedBeam.makeReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BeamReinforcement/fr diff --git a/wiki/translations/fr/Arch_Rebar_BentShape.md b/wiki/translations/fr/Arch_Rebar_BentShape.md index 067064122e..e8348d7fb7 100644 --- a/wiki/translations/fr/Arch_Rebar_BentShape.md +++ b/wiki/translations/fr/Arch_Rebar_BentShape.md @@ -8,6 +8,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Armature personnalisée](Arch_Rebar/fr.md), [Arch Armature en étrier](Arch_Rebar_Stirrup/fr.md), --- +# Arch Rebar BentShape/fr + ## Description L\'outil [Rebar Armature cintrée](Arch_Rebar_BentShape/fr.md) permet à l\'utilisateur de créer un ensemble de barres d\'armature pliées à l\'intérieur d\'un objet [Structure](Arch_Structure/fr.md). @@ -153,3 +155,6 @@ BentShapeRebar.editBentShapeRebar(Rebar2, 50, 35, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BentShape/fr diff --git a/wiki/translations/fr/Arch_Rebar_Circular_ColumnReinforcement.md b/wiki/translations/fr/Arch_Rebar_Circular_ColumnReinforcement.md index 60160925e9..99bac6fc32 100644 --- a/wiki/translations/fr/Arch_Rebar_Circular_ColumnReinforcement.md +++ b/wiki/translations/fr/Arch_Rebar_Circular_ColumnReinforcement.md @@ -8,6 +8,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench/fr.md), [Arch Armature 2x6](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/fr.md), [Arch Armature personnalisée](Arch_Rebar/fr.md) --- +# Arch Rebar Circular ColumnReinforcement/fr + ## Description L\'outil [Renforcement de colonnes](Arch_Rebar_Circular_ColumnReinforcement/fr.md) permet à l\'utilisateur de créer des barres de renforcement à l\'intérieur d\'un objet Column [Arch Structure](Arch_Structure/fr.md). @@ -202,3 +204,6 @@ rebar_group = CircularColumn.editReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Circular ColumnReinforcement/fr diff --git a/wiki/translations/fr/Arch_Rebar_ColumnReinforcement.md b/wiki/translations/fr/Arch_Rebar_ColumnReinforcement.md index 6ec76974ab..2928956f1b 100644 --- a/wiki/translations/fr/Arch_Rebar_ColumnReinforcement.md +++ b/wiki/translations/fr/Arch_Rebar_ColumnReinforcement.md @@ -8,6 +8,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench/fr.md), [Arch Armature personnalisée](Arch_Rebar/fr.md), [Arch Armature hélicoïdale](Arch_Rebar_Helical/fr.md), [Arch Armature 2x6](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/fr.md) --- +# Arch Rebar ColumnReinforcement/fr + ## Description L\'outil [Renfort de colonnes](Arch_Rebar_Circular_ColumnReinforcement/fr.md) permet à l\'utilisateur de créer des barres de renforcement à l\'intérieur d\'un objet colonne [Arch Structure](Arch_Structure/fr.md). @@ -569,3 +571,6 @@ rebar_group = SingleTieMultipleRebars.editSingleTieMultipleRebars( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar ColumnReinforcement/fr diff --git a/wiki/translations/fr/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md b/wiki/translations/fr/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md index b8d0c9169a..2c3eb8fff9 100644 --- a/wiki/translations/fr/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md +++ b/wiki/translations/fr/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar ColumnReinforcement TwoTiesSixRebars/fr + ## Description L\'outil [Armature 2x6](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/fr.md) permet à l\'utilisateur de créer des barres d\'armature 2x6 à l\'intérieur d\'un objet colonne [Arch Structure](Arch_Structure/fr.md). @@ -337,3 +339,6 @@ rebar_group = TwoTiesSixRebars.editTwoTiesSixRebars( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar ColumnReinforcement TwoTiesSixRebars/fr diff --git a/wiki/translations/fr/Arch_Rebar_Dimensioning.md b/wiki/translations/fr/Arch_Rebar_Dimensioning.md index d7771728d2..ef51f2050a 100644 --- a/wiki/translations/fr/Arch_Rebar_Dimensioning.md +++ b/wiki/translations/fr/Arch_Rebar_Dimensioning.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar Dimensioning/fr + Remarque: le travail ci-dessous est présent dans la branche de développement de l\'atelier Reinforcement [ici](https://github.com/amrit3701/FreeCAD-Reinforcement/tree/develop) ## Description @@ -353,3 +355,6 @@ for visible_rebar in visible_rebars: [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Dimensioning/fr diff --git a/wiki/translations/fr/Arch_Rebar_Drawing.md b/wiki/translations/fr/Arch_Rebar_Drawing.md index 42c1cc03f5..54e37824c1 100644 --- a/wiki/translations/fr/Arch_Rebar_Drawing.md +++ b/wiki/translations/fr/Arch_Rebar_Drawing.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar Drawing/fr + Remarque: le travail ci-dessous est présent dans la branche de développement de l\'atelier Reinforcement [ici](https://github.com/amrit3701/FreeCAD-Reinforcement/tree/develop) ## Description @@ -386,3 +388,6 @@ for drawing_view in ("Front", "Rear", "Left", "Right", "Top", "Bottom"): [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Drawing/fr diff --git a/wiki/translations/fr/Arch_Rebar_Drawing_Dimensioning.md b/wiki/translations/fr/Arch_Rebar_Drawing_Dimensioning.md index 69bc79fd8b..f7c49a3aaa 100644 --- a/wiki/translations/fr/Arch_Rebar_Drawing_Dimensioning.md +++ b/wiki/translations/fr/Arch_Rebar_Drawing_Dimensioning.md @@ -8,6 +8,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench/fr.md), [Arch Nomenclature armature](Arch_Rebar_BOM/fr.md), [Reinforcement Nomenclature de façonnage des armatures](Reinforcement_Bar_Shape_Cut_List.md) --- +# Arch Rebar Drawing Dimensioning/fr + ## Description L\'outil [Dessins dimensions](Arch_Rebar_Drawing_Dimensioning/fr.md) permet à l\'utilisateur de créer un dessin d\'armatures et de leurs donner des dimensions. @@ -1077,3 +1079,6 @@ for visible_rebar in visible_rebars: [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Drawing Dimensioning/fr diff --git a/wiki/translations/fr/Arch_Rebar_Helical.md b/wiki/translations/fr/Arch_Rebar_Helical.md index 5e61c81a59..5bd32eeaf5 100644 --- a/wiki/translations/fr/Arch_Rebar_Helical.md +++ b/wiki/translations/fr/Arch_Rebar_Helical.md @@ -8,6 +8,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Armature personnalisée](Arch_Rebar/fr.md), [Arch Rebar Armature en étrier](Arch_Rebar_Stirrup/fr.md), [Arch Rebar Armature en colonnes](Arch_Rebar_ColumnReinforcement/fr.md) --- +# Arch Rebar Helical/fr + ## Description L\'outil [Armature hélicoïdale](Arch_Rebar_Helical/fr.md) permet à l\'utilisateur de créer une armature hélicoïdale continue dans l\'élément structurel [Arch Structure](Arch_Structure/fr.md). @@ -126,3 +128,6 @@ HelicalRebar.editHelicalRebar(Rebar, 20, 100, 20, 20, 100) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Helical/fr diff --git a/wiki/translations/fr/Arch_Rebar_LShape.md b/wiki/translations/fr/Arch_Rebar_LShape.md index 8fb9ae3518..13744314f9 100644 --- a/wiki/translations/fr/Arch_Rebar_LShape.md +++ b/wiki/translations/fr/Arch_Rebar_LShape.md @@ -8,6 +8,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Armature personnalisée](Arch_Rebar/fr.md), [Arch Armature cintrée](Arch_Rebar_BentShape/fr.md) --- +# Arch Rebar LShape/fr + ## Description L\'outil [LShape Rebar](Arch_Rebar_LShape.md) permet à l\'utilisateur de créer un ensemble de barres d\'armature en forme de L à l\'intérieur d\'un objet [Arch Structure](Arch_Structure/fr.md). @@ -155,3 +157,6 @@ LShapeRebar.editLShapeRebar(Rebar2, 50, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar LShape/fr diff --git a/wiki/translations/fr/Arch_Rebar_Slab_Reinforcement.md b/wiki/translations/fr/Arch_Rebar_Slab_Reinforcement.md index 5861171cb8..741d2060ca 100644 --- a/wiki/translations/fr/Arch_Rebar_Slab_Reinforcement.md +++ b/wiki/translations/fr/Arch_Rebar_Slab_Reinforcement.md @@ -6,6 +6,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Helical Rebar](Arch_Rebar_Helical.md) --- +# Arch Rebar Slab Reinforcement/fr + ## Description The [Slab Reinforcement](Arch_Rebar_Slab_Reinforcement.md) tool allows the user to create reinforcing bars inside a Slab [Arch Structure](Arch_Structure.md) object. @@ -317,3 +319,6 @@ slabReinforcementGroup = editSlabReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Slab Reinforcement/fr diff --git a/wiki/translations/fr/Arch_Rebar_Stirrup.md b/wiki/translations/fr/Arch_Rebar_Stirrup.md index bef13aa393..7ff1b52170 100644 --- a/wiki/translations/fr/Arch_Rebar_Stirrup.md +++ b/wiki/translations/fr/Arch_Rebar_Stirrup.md @@ -8,6 +8,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Armature personnalisée](Arch_Rebar/fr.md), [Arch Armature hélicoïdale](Arch_Rebar_Helical/fr.md) --- +# Arch Rebar Stirrup/fr + ## Description L\'outil [Stirrup Rebar](Arch_Rebar_Stirrup/fr.md) permet à l\'utilisateur de créer un ensemble de barres d\'armature pliées à l\'intérieur d\'un objet [Structure](Arch_Structure/fr.md). @@ -143,3 +145,6 @@ Stirrup.editStirrup(Rebar, 20, 20, 20, 20, 50, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Stirrup/fr diff --git a/wiki/translations/fr/Arch_Rebar_Straight.md b/wiki/translations/fr/Arch_Rebar_Straight.md index 51520cad17..6b71d7961c 100644 --- a/wiki/translations/fr/Arch_Rebar_Straight.md +++ b/wiki/translations/fr/Arch_Rebar_Straight.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench/fr.md), [Arch Armature personnalisée](Arch_Rebar/fr.md), [Arch Rebar Nomenclature](Arch_Rebar_BOM/fr.md) --- +# Arch Rebar Straight/fr + ## Description L\'outil [Armature droite](Arch_Rebar_Straight/fr.md) permet à l\'utilisateur de créer un ensemble de barres d\'armature droites à l\'intérieur d\'un objet [Arch Structure](Arch_Structure/fr.md). @@ -211,3 +213,6 @@ StraightRebar.editStraightRebar(Rebar4, 50, ("Right Side", 50), 100, 100, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Straight/fr diff --git a/wiki/translations/fr/Arch_Rebar_UShape.md b/wiki/translations/fr/Arch_Rebar_UShape.md index d6ac45e660..6d19d4e41c 100644 --- a/wiki/translations/fr/Arch_Rebar_UShape.md +++ b/wiki/translations/fr/Arch_Rebar_UShape.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch Rebar UShape/fr + ## Description L\'outil [Armature en U](Arch_Rebar_UShape/fr.md) permet à l\'utilisateur de créer un ensemble de barres d\'armature en forme de U à l\'intérieur d\'un objet [Arch Structure](Arch_Structure/fr.md). @@ -149,3 +151,6 @@ UShapeRebar.editUShapeRebar(Rebar2, 70, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar UShape/fr diff --git a/wiki/translations/fr/Arch_Reference.md b/wiki/translations/fr/Arch_Reference.md index 73e0e5463d..968c7f2aaf 100644 --- a/wiki/translations/fr/Arch_Reference.md +++ b/wiki/translations/fr/Arch_Reference.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Partie de bâtiment](Arch_BuildingPart/fr.md) --- +# Arch Reference/fr + ## Description @@ -51,8 +53,5 @@ import Arch Arch.makeReference("/path/to/some/file.FSCtd","myPart") ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Reference/fr diff --git a/wiki/translations/fr/Arch_Remove.md b/wiki/translations/fr/Arch_Remove.md index e5f705dc42..dcb7fcec71 100644 --- a/wiki/translations/fr/Arch_Remove.md +++ b/wiki/translations/fr/Arch_Remove.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Couper selon une ligne](Arch_CutLine.md), [Arch Couper selon un plan](Arch_CutPlane.md), [Arch Ajouter](Arch_Add/fr.md) --- +# Arch Remove/fr + ## Description Les outils de suppression vous permettent d\'effectuer 2 types d\'opérations: @@ -63,10 +65,7 @@ Draft.move(Box, FreeCAD.Vector(1000, 700, 0)) Arch.removeComponents(Box, Wall) FreeCAD.ActiveDocument.recompute() -``` - - - - - +``` +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove/fr diff --git a/wiki/translations/fr/Arch_RemoveShape.md b/wiki/translations/fr/Arch_RemoveShape.md index 16542cc4de..fb445c69b4 100644 --- a/wiki/translations/fr/Arch_RemoveShape.md +++ b/wiki/translations/fr/Arch_RemoveShape.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Séparer un objet Mesh](Arch_SplitMesh/fr.md), [Arch Maillage vers une forme](Arch_MeshToShape/fr.md) --- +# Arch RemoveShape/fr + ## Description Cet outil vise à supprimer la forme cubique intérieure d\'un **[Arch Mmur](Arch_Wall/fr.md)** ou d\'une **[Arch Structure](Arch_Structure/fr.md)** et ajuste ses propriétés, la rendant totalement paramétriques. Cet outil ne fonctionne que si le shape sous-jacent est cubique (exactement 6 faces, tous les coins ont seulement des angles droits). @@ -52,8 +54,5 @@ Arch.removeShape(Structure) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch RemoveShape/fr diff --git a/wiki/translations/fr/Arch_Roof.md b/wiki/translations/fr/Arch_Roof.md index 3898542be2..eec4aa58f7 100644 --- a/wiki/translations/fr/Arch_Roof.md +++ b/wiki/translations/fr/Arch_Roof.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Structure](Arch_Structure/fr.md), [Arch Mur](Arch_Wall/fr.md) --- +# Arch Roof/fr + ## Description L\'outil ** [Toiture](Arch_Roof/fr.md)** permet de créer un toit en pente à partir d\'un fil sélectionné. L\'objet Toiture créé est paramétrique et garde sa relation avec l\'objet de base. Le principe est que chaque bord se voit attribuer un profil de toiture (pente, largeur, surplomb, épaisseur). @@ -105,8 +107,5 @@ roof1 = Arch.makeRoof(wire) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Roof/fr diff --git a/wiki/translations/fr/Arch_SHP.md b/wiki/translations/fr/Arch_SHP.md index 1113e750ed..598c47eef1 100644 --- a/wiki/translations/fr/Arch_SHP.md +++ b/wiki/translations/fr/Arch_SHP.md @@ -1,5 +1,5 @@ # Arch SHP/fr - FreeCAD est capable d\'importer [des shapefiles ou fichier de formes](https://fr.wikipedia.org/wiki/Shapefile) +FreeCAD est capable d\'importer [des shapefiles ou fichier de formes](https://fr.wikipedia.org/wiki/Shapefile) L\'importateur utilise la bibliothèque shapefile.py de . Elle ne se trouve pas sur votre système lors de la première exécution, l\'importateur proposera de la télécharger et de l\'installer pour vous. @@ -21,3 +21,6 @@ A noter que toute la question des unités géoréférencées, avec des centaines [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SHP/fr diff --git a/wiki/translations/fr/Arch_Schedule.md b/wiki/translations/fr/Arch_Schedule.md index f509b116ac..ddbd559d14 100644 --- a/wiki/translations/fr/Arch_Schedule.md +++ b/wiki/translations/fr/Arch_Schedule.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Équipement](Arch_Equipment/fr.md) --- +# Arch Schedule/fr + ## Description L\'outil Planificateur vous permet de créer et de remplir automatiquement une [feuille de calculs](Spreadsheet_Workbench/fr.md) avec les données du modèle. @@ -97,8 +99,5 @@ A partir du plan de travail Spreadsheet, la feuille de calcul peut ensuite être Il est possible d\'ajouter vos propres propriétés aux objets. Celles-ci sont appelées [propriétés dynamiques](Property_editor/fr#Actions.md). Si elles ont été ajoutées avec l\'option **Prefix group name** sélectionnée, leurs noms commenceront effectivement par le nom du groupe, mais ce préfixe ne sera pas affiché dans l\'[Éditeur de propriétés](Property_editor/fr.md). Leurs noms ont la forme suivante: `NameOfGroup_NameOfProperty`. Pour les référencer dans un calendrier, ce nom complet doit être utilisé. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Schedule/fr diff --git a/wiki/translations/fr/Arch_SectionPlane.md b/wiki/translations/fr/Arch_SectionPlane.md index 3474ae19c9..09e994a9db 100644 --- a/wiki/translations/fr/Arch_SectionPlane.md +++ b/wiki/translations/fr/Arch_SectionPlane.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Vue 2D d'une forme](Draft_Shape2DView/fr.md), [TechDraw Vue Arch](TechDraw_ArchView/fr.md) --- +# Arch SectionPlane/fr + ## Description Cet outil place dans le document courant une \"chose\" qui définit un plan de section ou de vue. La \"chose\" est placée en fonction du [Draft plan de travail](Draft_SelectPlane/fr.md) en cours et peut être déplacée et réorientée en la déplaçant et en la faisant tourner, jusqu\'à ce qu\'elle décrive la vue 2D que vous souhaitez obtenir. L\'objet Plan de section ne tiendra compte que d\'un certain ensemble d\'objets. Les objets sélectionnés lorsque vous créez un plan de coupe seront automatiquement ajoutés à cet ensemble. D\'autres objets peuvent être ajoutés ou retirés ultérieurement d\'un objet Plan de coupe à l\'aide des outils [Arch Ajouter](Arch_Add.md) et [Arch Soustraire](Arch_Remove.md) ou en double-cliquant sur le Plan de coupe dans l\'arborescence. @@ -109,11 +111,5 @@ Section3 = Arch.makeSectionPlane([Site]) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane/fr diff --git a/wiki/translations/fr/Arch_SelectNonSolidMeshes.md b/wiki/translations/fr/Arch_SelectNonSolidMeshes.md index a7dafa405b..ef982a5a5d 100644 --- a/wiki/translations/fr/Arch_SelectNonSolidMeshes.md +++ b/wiki/translations/fr/Arch_SelectNonSolidMeshes.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Séparer un objet mesh](Arch_SplitMesh/fr.md), [Arch Supprimer la forme](Arch_MeshToShape/fr.md) --- +# Arch SelectNonSolidMeshes/fr + ## Description Cet outil identifie et sélectionne les objets mailles non solides (non-[manifold](http://fr.wikipedia.org/wiki/Vari%C3%A9t%C3%A9_%28g%C3%A9om%C3%A9trie%29)) dans un groupe sélectionné d\'objets Mesh Workbench [Mesh](Mesh_Workbench/fr.md). @@ -16,8 +18,5 @@ Cet outil identifie et sélectionne les objets mailles non solides (non-[manifol 1. Sélectionnez un objet mesh. 2. Cliquez sur le bouton ** [Selectionner les solides non manifold](Arch_SelectNonSolidMeshes/fr.md)** ou par **Arch → Utilitaires → Selectionner les solides non manifold**. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SelectNonSolidMeshes/fr diff --git a/wiki/translations/fr/Arch_SetMaterial.md b/wiki/translations/fr/Arch_SetMaterial.md index f57320eeda..c54c1aa349 100644 --- a/wiki/translations/fr/Arch_SetMaterial.md +++ b/wiki/translations/fr/Arch_SetMaterial.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Outils matériaux](Arch_CompSetMaterial/fr.md), [Arch Matériaux multiples](Arch_MultiMaterial/fr.md) --- +# Arch SetMaterial/fr + ## Description L\'outil Matériau permet d\'ajouter des [matériaux](Material/fr.md) dans le document actif et attribue un matériau à un objet [Arch](Arch_Workbench/fr.md). Les matériaux peuvent prendre toutes les propriétés d\'un certain matériel, et contrôler la couleur de l\'objet auquel il est attaché. Les données sont stockées dans le dossier **Matériaux** dans le document actif. @@ -45,8 +47,5 @@ L\'outil Matériau permet d\'ajouter des [matériaux](Material/fr.md) dans le do Cela correspond à peu près à [IfcMaterial](https://standards.buildingsmart.org/IFC/DEV/IFC4_2/FINAL/HTML/link/ifcmaterial.htm). - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SetMaterial/fr diff --git a/wiki/translations/fr/Arch_Site.md b/wiki/translations/fr/Arch_Site.md index aff5ee62a0..4d9a8af683 100644 --- a/wiki/translations/fr/Arch_Site.md +++ b/wiki/translations/fr/Arch_Site.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Niveaux](Arch_Floor/fr.md), [Arch Bâtiment](Arch_Building/fr.md) --- +# Arch Site/fr + ## Description **Arch Site** est un objet spécial qui combine les propriétés d\'un objet groupe FreeCAD standard et un objet Arch. Il est particulièrement adapté pour représenter un site entier, ou un terrain. Dans un travail architectural fait d\'IFC, il est surtout utilisé pour organiser votre modèle qui contient un objet [Arch Bâtiment](Arch_Building/fr.md). Arch Site est également utilisé pour gérer et afficher un terrain physique et peut calculer le volume de terre a ajouter ou a supprimer. @@ -164,8 +166,5 @@ Node = Arch.makeSolarDiagram(-46.38, -23.33, scale=10000, complete=True) FreeCAD.Gui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Site/fr diff --git a/wiki/translations/fr/Arch_Space.md b/wiki/translations/fr/Arch_Space.md index 25ffce07f2..065f13fd05 100644 --- a/wiki/translations/fr/Arch_Space.md +++ b/wiki/translations/fr/Arch_Space.md @@ -9,6 +9,8 @@ SeeAlso:[Arch Mur](Arch_Wall/fr.md), [Arch Structure](Arch_Structure/fr.md) --- +# Arch Space/fr + ## Description L\'outil Espace vous permet de définir un volume vide, soit en le basant sur une forme solide, soit en définissant ses limites, soit en combinant les deux. S\'il est basé uniquement sur des limites, le volume est calculé en partant du cadre de sélection de toutes les limites données et en soustrayant les espaces situés derrière chaque limite. L\'objet spatial définit toujours un volume solide. La surface de plancher d\'un objet d\'espace, calculée en coupant un plan horizontal au centre de gravité du volume d\'espace, peut également être affichée. @@ -137,8 +139,5 @@ selection = FreeCADGui.Selection.getSelectionEx() Arch.removeSpaceBoundaries(Space, selection) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Space/fr diff --git a/wiki/translations/fr/Arch_SplitMesh.md b/wiki/translations/fr/Arch_SplitMesh.md index 22e513cb8e..9d02675a45 100644 --- a/wiki/translations/fr/Arch_SplitMesh.md +++ b/wiki/translations/fr/Arch_SplitMesh.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Sélection de maillages non-manifold](Arch_SelectNonSolidMeshes/fr.md), [Arch Maillage vers un objet shape](Arch_MeshToShape/fr.md) --- +# Arch SplitMesh/fr + ## Description Cet outil sépare les composants d\'un objet [Mesh](Mesh_Workbench/fr.md) sélectionné. @@ -56,11 +58,5 @@ mesh_obj.ViewObject.DisplayMode = "Flat Lines" new_list = Arch.splitMesh(mesh_obj) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SplitMesh/fr diff --git a/wiki/translations/fr/Arch_Stairs.md b/wiki/translations/fr/Arch_Stairs.md index 67418ab025..5ec4781ff4 100644 --- a/wiki/translations/fr/Arch_Stairs.md +++ b/wiki/translations/fr/Arch_Stairs.md @@ -9,6 +9,8 @@ SeeAlso:[Arch Structure](Arch_Structure/fr.md), [Arch Equipement](Arch_Equipment/fr.md) --- +# Arch Stairs/fr + ## Description L\'outil [escaliers](Arch_Stairs/fr.md) vous permet de construire automatiquement plusieurs types d\'escaliers. À l\'heure actuelle, seuls les escaliers droits (avec ou sans palier central) sont pris en charge. Les escaliers peuvent être construits à partir de zéro, ou d\'une ligne droite [Draft Ligne](Draft_Line/fr.md), auquel cas les escaliers suivent la ligne. Si la ligne n\'est pas horizontale mais a une inclinaison verticale, les escaliers suivront également sa pente. @@ -98,8 +100,5 @@ import Arch Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Stairs/fr diff --git a/wiki/translations/fr/Arch_Structure.md b/wiki/translations/fr/Arch_Structure.md index fd35d39c01..4183f5057c 100644 --- a/wiki/translations/fr/Arch_Structure.md +++ b/wiki/translations/fr/Arch_Structure.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Mur](Arch_Wall/fr.md), [Arch Armature personnalisée](Arch_Rebar/fr.md) --- +# Arch Structure/fr + ## Description L\'atelier [Arch Structure](Arch_Structure/fr.md) vous permet de construire les éléments structurels, tels que colonnes ou poutres, en précisant leur largeur, longueur et hauteur, ou en les fondant sur un profil 2D (face, fil ou esquisse). @@ -119,10 +121,7 @@ FreeCAD.ActiveDocument.recompute() Structure2 = Arch.makeStructure(None, length=500, width=1000, height=3000) Draft.move(Structure2, FreeCAD.Vector(2000, 0, 0)) FreeCAD.ActiveDocument.recompute() -``` - - - - - +``` +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/fr diff --git a/wiki/translations/fr/Arch_Survey.md b/wiki/translations/fr/Arch_Survey.md index 7aca29d437..1792e6987a 100644 --- a/wiki/translations/fr/Arch_Survey.md +++ b/wiki/translations/fr/Arch_Survey.md @@ -7,6 +7,8 @@ SeeAlso:[Macro FCInfo](Macro_FCInfo/fr.md), [Macro SimpleProperties](Macro_SimpleProperties/fr.md) --- +# Arch Survey/fr + ## Description L\'outil ** [Arch Prise de cotes](Arch_Survey/fr.md)** accède à un mode spécial d\'arpentage, qui permet de prendre rapidement des mesures et des informations sur un modèle et de transférer ces renseignements à d\'autres applications. Une fois que vous êtes en mode Prise de cotes, et que vous cliquez sur différents sous-éléments de l\'objet 3D, vous récupérez les informations suivantes (en fonction de ce sur quoi vous cliquez): @@ -66,8 +68,5 @@ for obj in selection: print("Center of Mass: %f", element.CenterOfMass) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Survey/fr diff --git a/wiki/translations/fr/Arch_ToggleIfcBrepFlag.md b/wiki/translations/fr/Arch_ToggleIfcBrepFlag.md index b1b6ad7034..add072ee3a 100644 --- a/wiki/translations/fr/Arch_ToggleIfcBrepFlag.md +++ b/wiki/translations/fr/Arch_ToggleIfcBrepFlag.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Explorateur IFC](Arch_IfcExplorer/fr.md), [Arch IFC](Arch_IFC/fr.md) --- +# Arch ToggleIfcBrepFlag/fr + ## Description Cet outil active/désactive l\'indicateur IfcBrep d\'un objet [Arch](Arch_Workbench/fr.md) sélectionné (la valeur par défaut est toujours off). Si l\'indicateur est activé lors de l\'exportation de l\'objet au format IFC, l\'objet sera exporté sous forme de [IfcFacetedBrep](http://www.buildingsmart-tech.org/ifc/IFC4/final/html/schema/ifcgeometricmodelresource/lexical/ifcfacetedbrep.htm), même si une exportation de niveau supérieur telle que IfcExtrudedAreaSolid ou IfcBooleanResult est possible. Bien que les objets IfcFacetedBrep sont plus lourds et moins modifiables (ils perdent des informations de géométrie tels que l\'historique de la modélisation), ils sont souvent sujets à moins d\'erreurs. Dans certains cas la définition de cet indicateur permet de résoudre les problèmes d\'objets qui ne sont pas exportés correctement lorsque cet indicateur n\'est pas défini. @@ -16,11 +18,5 @@ Cet outil active/désactive l\'indicateur IfcBrep d\'un objet [Arch](Arch_Workbe 1. Selectionnez un objet Arch 2. Sélectionnez le bouton **** ou **Arch** → **Utilitaires** → ** [Activer/désactiver le marqueur Brep IFC](Arch_ToggleIfcBrepFlag/fr.md)** dans le menu supérieur. - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleIfcBrepFlag/fr diff --git a/wiki/translations/fr/Arch_ToggleSubs.md b/wiki/translations/fr/Arch_ToggleSubs.md index 716c2572c6..0ae297cb2b 100644 --- a/wiki/translations/fr/Arch_ToggleSubs.md +++ b/wiki/translations/fr/Arch_ToggleSubs.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Composants](Arch_Component/fr.md) --- +# Arch ToggleSubs/fr + ## Description Cet outil permet de faire basculer la visibilité de toutes les soustractions d\'un objet [Arch](Arch_Workbench/fr.md) entre visible et caché. @@ -28,8 +30,5 @@ La couleur d\'un élément de soustraction peut suivre le style des éléments [ Le style de [Draft Basculer en mode construction](Draft_ToggleConstructionMode/fr.md) peut être défini dans les [Draft Préférences](Draft_Preferences/fr.md) dans le menu **Préférences → Draft → Paramètres généraux**. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleSubs/fr diff --git a/wiki/translations/fr/Arch_Truss.md b/wiki/translations/fr/Arch_Truss.md index b51c1b4278..78c5bb9419 100644 --- a/wiki/translations/fr/Arch_Truss.md +++ b/wiki/translations/fr/Arch_Truss.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Truss/fr + ## Description L\'outil [Arch Ferme](Arch_Truss/fr.md) crée un objet [Treillis](https://fr.wikipedia.org/wiki/Treillis_(assemblage)) à partir d\'un objet linéaire sélectionné (positionnez une [Draft Ligne](Draft_Line/fr.md) ou [Sketcher Nouvelle esquisse](Sketcher_NewSketch/fr.md)) ou à partir de zéro, si aucun objet n\'est sélectionné lors du lancement de la commande. @@ -92,8 +94,5 @@ truss.HeightEnd = 400 # adjust other needed properties ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Truss/fr diff --git a/wiki/translations/fr/Arch_Wall.md b/wiki/translations/fr/Arch_Wall.md index bf075df32a..e317b12532 100644 --- a/wiki/translations/fr/Arch_Wall.md +++ b/wiki/translations/fr/Arch_Wall.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Structure](Arch_Structure/fr.md) --- +# Arch Wall/fr + ## Description Cet outil crée un objet mur à partir de zéro ou sur la base de n\'importe quel objet [forme de Part](Part_Workbench/fr.md) ou sur la base de n\'importe quel objet [mesh](Mesh_Workbench/fr.md). Un mur peut être construit sans objet de base, il se comportera alors comme un volume cubique, il sera construit à l\'aide des propriétés de longueur, largeur et hauteur. Lorsque qu\'il est construit sur une forme existante, le mur peut être basé sur : @@ -138,11 +140,5 @@ Draft.move(Wall2, FreeCAD.Vector(0, -1000, 0)) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/fr diff --git a/wiki/translations/fr/Arch_Window.md b/wiki/translations/fr/Arch_Window.md index 04cb432ffe..a3bfad807c 100644 --- a/wiki/translations/fr/Arch_Window.md +++ b/wiki/translations/fr/Arch_Window.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Mur](Arch_Wall/fr.md), [Arch Ajouter](Arch_Add/fr.md) --- +# Arch Window/fr + ## Description Un objet [Arch Fenêtre](Arch_Window/fr.md) est un objet de base pour toutes sortes d\'objets **intégrables**, comme les fenêtres et portes. Il est conçu pour être indépendant ou devenir **hôte** à l\'intérieur d\'un autre composant comme un [Arch Mur](Arch_Wall/fr.md), un élément d\'une [Arch Structure](Arch_Structure/fr.md) ou d\'un [Arch Toit](Arch_Roof/fr.md). Il a sa propre forme géométrique, qui peut être fait de plusieurs composants (généralement un cadre et des panneaux intérieurs) et définit également un volume à soustraire aux objets hôtes, afin de créer une ouverture. @@ -222,11 +224,5 @@ Door = Arch.makeWindowPreset("Simple door", placement=place) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Window/fr diff --git a/wiki/translations/fr/Arch_Workbench.md b/wiki/translations/fr/Arch_Workbench.md index 2b3e93f75e..f6ea71ecbb 100644 --- a/wiki/translations/fr/Arch_Workbench.md +++ b/wiki/translations/fr/Arch_Workbench.md @@ -1,10 +1,4 @@ -# Arch Workbench/fr - - - - - -Icône de l\'Atelier Arch +# Icône de l\'Atelier Arch Arch Workbench/fr {{TOCright}} @@ -144,3 +138,6 @@ L\'atelier Arch peut être utilisé dans des scripts [Python](Python/fr.md) et d [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/fr diff --git a/wiki/translations/fr/Arch_panel_tutorial.md b/wiki/translations/fr/Arch_panel_tutorial.md index e8f14b6e25..3b6b54b02e 100644 --- a/wiki/translations/fr/Arch_panel_tutorial.md +++ b/wiki/translations/fr/Arch_panel_tutorial.md @@ -1,7 +1,4 @@ # Arch panel tutorial/fr - - - {{TutorialInfo/fr |Topic= Modeling an architecturla panel |Level= Beginner @@ -200,4 +197,7 @@ Les deux outils Draft Rotate et Move utilisent le système Snapping Draft. Diff {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch panel tutorial/fr diff --git a/wiki/translations/fr/Arch_templates.md b/wiki/translations/fr/Arch_templates.md index ef299eede5..85d95b17d1 100644 --- a/wiki/translations/fr/Arch_templates.md +++ b/wiki/translations/fr/Arch_templates.md @@ -1,5 +1,5 @@ # Arch templates/fr - Cette page répertorie les modèles selon le standard American National Standards Institute [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute). +Cette page répertorie les modèles selon le standard American National Standards Institute [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute). ### Arch A @@ -92,3 +92,6 @@ Les modèles sont dessinés par [Quick61](User:Quick61.md) et répertoriés [FreeCAD-Drawing-Templates](https://github.com/quick61/FreeCAD-Drawing-Templates) [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch templates/fr diff --git a/wiki/translations/fr/Arch_tutorial.md b/wiki/translations/fr/Arch_tutorial.md index 3e704b51cd..b0e8e7b327 100644 --- a/wiki/translations/fr/Arch_tutorial.md +++ b/wiki/translations/fr/Arch_tutorial.md @@ -1,7 +1,4 @@ # Arch tutorial/fr - - - {{TutorialInfo/fr |Topic=Modélisation |Level=Intermédiaire @@ -479,4 +476,7 @@ Le fichier créé durant ce tutoriel peut être téléchargé [ici](http://yorik {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch tutorial/fr diff --git a/wiki/translations/fr/Artwork.md b/wiki/translations/fr/Artwork.md index c36c8bc794..6ee4b385b0 100644 --- a/wiki/translations/fr/Artwork.md +++ b/wiki/translations/fr/Artwork.md @@ -1,5 +1,5 @@ # Artwork/fr - Voici les icônes créés pour FreeCad. N\'hésitez pas à les utiliser dans vos applications. Si vous voulez contribuer en créant des icônes, veuillez lire les [directives de style graphique](Artwork_Guidelines.md). +Voici les icônes créés pour FreeCad. N\'hésitez pas à les utiliser dans vos applications. Si vous voulez contribuer en créant des icônes, veuillez lire les [directives de style graphique](Artwork_Guidelines.md). ## Icônes diverses @@ -169,3 +169,6 @@ Voir [Erreurs graphiques](Artwork_Erroneous/fr.md). }} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork/fr diff --git a/wiki/translations/fr/Artwork_Arch.md b/wiki/translations/fr/Artwork_Arch.md index 4876fb42e0..92390a4ae1 100644 --- a/wiki/translations/fr/Artwork_Arch.md +++ b/wiki/translations/fr/Artwork_Arch.md @@ -1,5 +1,5 @@ # Artwork Arch/fr - Ces icônes se trouvent dans le chemin source indiqué. +Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -19,3 +19,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Arch](Category:Arch.md) + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Artwork Arch/fr diff --git a/wiki/translations/fr/Artwork_Assembly.md b/wiki/translations/fr/Artwork_Assembly.md index 0e9a504f7d..771a01a7fa 100644 --- a/wiki/translations/fr/Artwork_Assembly.md +++ b/wiki/translations/fr/Artwork_Assembly.md @@ -1,6 +1,4 @@ # Artwork Assembly/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -25,3 +23,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Assembly](Category:Assembly.md) + +--- +[documentation index](../README.md) > [Assembly](Category:Assembly.md) > Artwork Assembly/fr diff --git a/wiki/translations/fr/Artwork_Complete.md b/wiki/translations/fr/Artwork_Complete.md index 0b881d3f76..e186edf350 100644 --- a/wiki/translations/fr/Artwork_Complete.md +++ b/wiki/translations/fr/Artwork_Complete.md @@ -1,6 +1,4 @@ # Artwork Complete/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -14,3 +12,5 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m {{Artwork}} +--- +[documentation index](../README.md) > Artwork Complete/fr diff --git a/wiki/translations/fr/Artwork_Draft.md b/wiki/translations/fr/Artwork_Draft.md index a7d3784388..9e239c086b 100644 --- a/wiki/translations/fr/Artwork_Draft.md +++ b/wiki/translations/fr/Artwork_Draft.md @@ -1,6 +1,4 @@ # Artwork Draft/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -21,3 +19,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m [Category:Draft](Category:Draft.md) + +--- +[documentation index](../README.md) > [Draft](Category:Draft.md) > Artwork Draft/fr diff --git a/wiki/translations/fr/Artwork_Drawing.md b/wiki/translations/fr/Artwork_Drawing.md index 1706aafe03..a43bd25546 100644 --- a/wiki/translations/fr/Artwork_Drawing.md +++ b/wiki/translations/fr/Artwork_Drawing.md @@ -1,6 +1,4 @@ # Artwork Drawing/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -46,3 +44,5 @@ L\'image suivante est \"A4\_Simple.svg\". C\'est une page vide. {{Artwork}} +--- +[documentation index](../README.md) > Artwork Drawing/fr diff --git a/wiki/translations/fr/Artwork_Erroneous.md b/wiki/translations/fr/Artwork_Erroneous.md index e7e04a099e..e2d800c901 100644 --- a/wiki/translations/fr/Artwork_Erroneous.md +++ b/wiki/translations/fr/Artwork_Erroneous.md @@ -1,6 +1,4 @@ # Artwork Erroneous/fr - - Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -26,3 +24,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork Erroneous/fr diff --git a/wiki/translations/fr/Artwork_Fem.md b/wiki/translations/fr/Artwork_Fem.md index 88aacc46d7..e03f07a7b9 100644 --- a/wiki/translations/fr/Artwork_Fem.md +++ b/wiki/translations/fr/Artwork_Fem.md @@ -1,6 +1,4 @@ # Artwork Fem/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -17,3 +15,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Artwork Fem/fr diff --git a/wiki/translations/fr/Artwork_Gui.md b/wiki/translations/fr/Artwork_Gui.md index ba535a1460..2cd059a105 100644 --- a/wiki/translations/fr/Artwork_Gui.md +++ b/wiki/translations/fr/Artwork_Gui.md @@ -1,5 +1,5 @@ # Artwork Gui/fr - Ces icônes se trouvent dans le chemin source indiqué. +Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -22,4 +22,7 @@ Ces images sont plus grandes que les icônes. {{Artwork -}} +}} + +--- +[documentation index](../README.md) > Artwork Gui/fr diff --git a/wiki/translations/fr/Artwork_Guidelines.md b/wiki/translations/fr/Artwork_Guidelines.md index fbee61ccda..7f7532cba9 100644 --- a/wiki/translations/fr/Artwork_Guidelines.md +++ b/wiki/translations/fr/Artwork_Guidelines.md @@ -1,6 +1,4 @@ # Artwork Guidelines/fr - - ## Introduction @@ -173,3 +171,6 @@ Une image en niveaux de gris vous permet d\'identifier plus facilement les probl {{Artwork}} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Artwork Guidelines/fr diff --git a/wiki/translations/fr/Artwork_Image.md b/wiki/translations/fr/Artwork_Image.md index 3790015631..c1c40f17ef 100644 --- a/wiki/translations/fr/Artwork_Image.md +++ b/wiki/translations/fr/Artwork_Image.md @@ -1,6 +1,4 @@ # Artwork Image/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -17,3 +15,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Image](Category:Image.md) + +--- +[documentation index](../README.md) > [Image](Category:Image.md) > Artwork Image/fr diff --git a/wiki/translations/fr/Artwork_Inspection.md b/wiki/translations/fr/Artwork_Inspection.md index 25f0054c6b..bcf1186365 100644 --- a/wiki/translations/fr/Artwork_Inspection.md +++ b/wiki/translations/fr/Artwork_Inspection.md @@ -1,6 +1,4 @@ # Artwork Inspection/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -17,3 +15,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Inspection](Category:Inspection.md) + +--- +[documentation index](../README.md) > [Inspection](Category:Inspection.md) > Artwork Inspection/fr diff --git a/wiki/translations/fr/Artwork_Material.md b/wiki/translations/fr/Artwork_Material.md index 22f030fefc..79052b9d09 100644 --- a/wiki/translations/fr/Artwork_Material.md +++ b/wiki/translations/fr/Artwork_Material.md @@ -1,6 +1,4 @@ # Artwork Material/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -15,3 +13,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m {{Artwork }} + +--- +[documentation index](../README.md) > Artwork Material/fr diff --git a/wiki/translations/fr/Artwork_Mesh.md b/wiki/translations/fr/Artwork_Mesh.md index 99061fa716..9bb35bc6b7 100644 --- a/wiki/translations/fr/Artwork_Mesh.md +++ b/wiki/translations/fr/Artwork_Mesh.md @@ -1,6 +1,4 @@ # Artwork Mesh/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -21,3 +19,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Mesh](Category:Mesh.md) + +--- +[documentation index](../README.md) > [Mesh](Category:Mesh.md) > Artwork Mesh/fr diff --git a/wiki/translations/fr/Artwork_MeshPart.md b/wiki/translations/fr/Artwork_MeshPart.md index 506db497b2..c9197cf2d7 100644 --- a/wiki/translations/fr/Artwork_MeshPart.md +++ b/wiki/translations/fr/Artwork_MeshPart.md @@ -1,6 +1,4 @@ # Artwork MeshPart/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -19,3 +17,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m {{Artwork }} {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > Artwork MeshPart/fr diff --git a/wiki/translations/fr/Artwork_OpenSCAD.md b/wiki/translations/fr/Artwork_OpenSCAD.md index 19b1e75270..a67134abdf 100644 --- a/wiki/translations/fr/Artwork_OpenSCAD.md +++ b/wiki/translations/fr/Artwork_OpenSCAD.md @@ -1,6 +1,4 @@ # Artwork OpenSCAD/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -17,3 +15,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:OpenSCAD](Category:OpenSCAD.md) + +--- +[documentation index](../README.md) > [OpenSCAD](Category:OpenSCAD.md) > Artwork OpenSCAD/fr diff --git a/wiki/translations/fr/Artwork_Part.md b/wiki/translations/fr/Artwork_Part.md index bda2a269b8..492b924699 100644 --- a/wiki/translations/fr/Artwork_Part.md +++ b/wiki/translations/fr/Artwork_Part.md @@ -1,6 +1,4 @@ # Artwork Part/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -34,4 +32,7 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m {{Artwork -}} +}} + +--- +[documentation index](../README.md) > Artwork Part/fr diff --git a/wiki/translations/fr/Artwork_PartDesign.md b/wiki/translations/fr/Artwork_PartDesign.md index e4f6279237..78926e6eae 100644 --- a/wiki/translations/fr/Artwork_PartDesign.md +++ b/wiki/translations/fr/Artwork_PartDesign.md @@ -1,6 +1,4 @@ # Artwork PartDesign/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -25,3 +23,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:PartDesign](Category:PartDesign.md) + +--- +[documentation index](../README.md) > [PartDesign](Category:PartDesign.md) > Artwork PartDesign/fr diff --git a/wiki/translations/fr/Artwork_Path.md b/wiki/translations/fr/Artwork_Path.md index 99092e430b..50af970d46 100644 --- a/wiki/translations/fr/Artwork_Path.md +++ b/wiki/translations/fr/Artwork_Path.md @@ -1,6 +1,4 @@ # Artwork Path/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -17,3 +15,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Path](Category:Path.md) + +--- +[documentation index](../README.md) > [Path](Category:Path.md) > Artwork Path/fr diff --git a/wiki/translations/fr/Artwork_Plot.md b/wiki/translations/fr/Artwork_Plot.md index 2f1f777cd8..a9c2608d19 100644 --- a/wiki/translations/fr/Artwork_Plot.md +++ b/wiki/translations/fr/Artwork_Plot.md @@ -1,6 +1,4 @@ # Artwork Plot/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -29,3 +27,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Plot](Category:Plot.md) + +--- +[documentation index](../README.md) > [Plot](Category:Plot.md) > Artwork Plot/fr diff --git a/wiki/translations/fr/Artwork_Points.md b/wiki/translations/fr/Artwork_Points.md index 7be76d06df..09d97eb5e7 100644 --- a/wiki/translations/fr/Artwork_Points.md +++ b/wiki/translations/fr/Artwork_Points.md @@ -1,6 +1,4 @@ # Artwork Points/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -17,3 +15,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Points](Category:Points.md) + +--- +[documentation index](../README.md) > [Points](Category:Points.md) > Artwork Points/fr diff --git a/wiki/translations/fr/Artwork_Raytracing.md b/wiki/translations/fr/Artwork_Raytracing.md index b633aa7818..c6457b3b35 100644 --- a/wiki/translations/fr/Artwork_Raytracing.md +++ b/wiki/translations/fr/Artwork_Raytracing.md @@ -1,6 +1,4 @@ # Artwork Raytracing/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -17,3 +15,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Raytracing](Category:Raytracing.md) + +--- +[documentation index](../README.md) > [Raytracing](Category:Raytracing.md) > Artwork Raytracing/fr diff --git a/wiki/translations/fr/Artwork_Reinforcement.md b/wiki/translations/fr/Artwork_Reinforcement.md index f80730c848..87750337bc 100644 --- a/wiki/translations/fr/Artwork_Reinforcement.md +++ b/wiki/translations/fr/Artwork_Reinforcement.md @@ -1,6 +1,4 @@ # Artwork Reinforcement/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -14,3 +12,5 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m {{Artwork}} +--- +[documentation index](../README.md) > Artwork Reinforcement/fr diff --git a/wiki/translations/fr/Artwork_ReverseEngineering.md b/wiki/translations/fr/Artwork_ReverseEngineering.md index fc06feb337..a819a0e857 100644 --- a/wiki/translations/fr/Artwork_ReverseEngineering.md +++ b/wiki/translations/fr/Artwork_ReverseEngineering.md @@ -1,6 +1,4 @@ # Artwork ReverseEngineering/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -21,3 +19,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Reverse Engineering](Category:Reverse_Engineering.md) + +--- +[documentation index](../README.md) > [Reverse Engineering](Category:Reverse Engineering.md) > Artwork ReverseEngineering/fr diff --git a/wiki/translations/fr/Artwork_Robot.md b/wiki/translations/fr/Artwork_Robot.md index 359a0b2a81..767117b823 100644 --- a/wiki/translations/fr/Artwork_Robot.md +++ b/wiki/translations/fr/Artwork_Robot.md @@ -1,6 +1,4 @@ # Artwork Robot/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -17,3 +15,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > Artwork Robot/fr diff --git a/wiki/translations/fr/Artwork_Ship.md b/wiki/translations/fr/Artwork_Ship.md index 3de72b7e68..64a6d790c6 100644 --- a/wiki/translations/fr/Artwork_Ship.md +++ b/wiki/translations/fr/Artwork_Ship.md @@ -1,6 +1,4 @@ # Artwork Ship/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -29,3 +27,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Ship](Category:Ship.md) + +--- +[documentation index](../README.md) > [Ship](Category:Ship.md) > Artwork Ship/fr diff --git a/wiki/translations/fr/Artwork_Sketcher.md b/wiki/translations/fr/Artwork_Sketcher.md index c6c45bb210..3611b6c996 100644 --- a/wiki/translations/fr/Artwork_Sketcher.md +++ b/wiki/translations/fr/Artwork_Sketcher.md @@ -1,6 +1,4 @@ # Artwork Sketcher/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -53,3 +51,6 @@ Par le passé, les icônes `.xpm` étaient utilisées comme superpositions lors {{Artwork }} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Artwork Sketcher/fr diff --git a/wiki/translations/fr/Artwork_Splash_screen.md b/wiki/translations/fr/Artwork_Splash_screen.md index a6d55ec8d7..b9102dfdc0 100644 --- a/wiki/translations/fr/Artwork_Splash_screen.md +++ b/wiki/translations/fr/Artwork_Splash_screen.md @@ -1,6 +1,4 @@ # Artwork Splash screen/fr - - Ce sont les écrans de démarrage qui ont été utilisés pour chaque version du programme. ![](images/Splashscreen09.png ) @@ -27,3 +25,6 @@ Ce sont les écrans de démarrage qui ont été utilisés pour chaque version du {{Artwork }} + +--- +[documentation index](../README.md) > Artwork Splash screen/fr diff --git a/wiki/translations/fr/Artwork_Spreadsheet.md b/wiki/translations/fr/Artwork_Spreadsheet.md index bd5859da2b..ccba4e0b8d 100644 --- a/wiki/translations/fr/Artwork_Spreadsheet.md +++ b/wiki/translations/fr/Artwork_Spreadsheet.md @@ -1,6 +1,4 @@ # Artwork Spreadsheet/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -17,3 +15,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Spreadsheet](Category:Spreadsheet.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Category:Spreadsheet.md) > Artwork Spreadsheet/fr diff --git a/wiki/translations/fr/Artwork_Start.md b/wiki/translations/fr/Artwork_Start.md index 2dbc11a294..64d20a71e5 100644 --- a/wiki/translations/fr/Artwork_Start.md +++ b/wiki/translations/fr/Artwork_Start.md @@ -1,6 +1,4 @@ # Artwork Start/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -35,3 +33,6 @@ L\'image suivante a été redimensionnée à une largeur d\'affichage de 480 pix }} [Category:Start](Category:Start.md) + +--- +[documentation index](../README.md) > [Start](Category:Start.md) > Artwork Start/fr diff --git a/wiki/translations/fr/Artwork_Surface.md b/wiki/translations/fr/Artwork_Surface.md index bc6fa9e1d6..bb16fce90c 100644 --- a/wiki/translations/fr/Artwork_Surface.md +++ b/wiki/translations/fr/Artwork_Surface.md @@ -1,6 +1,4 @@ # Artwork Surface/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -15,3 +13,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m {{Surface Tools navi }} {{Artwork}} + +--- +[documentation index](../README.md) > Artwork Surface/fr diff --git a/wiki/translations/fr/Artwork_TechDraw.md b/wiki/translations/fr/Artwork_TechDraw.md index e3ed978a3a..511a50fd45 100644 --- a/wiki/translations/fr/Artwork_TechDraw.md +++ b/wiki/translations/fr/Artwork_TechDraw.md @@ -1,6 +1,4 @@ # Artwork TechDraw/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -33,3 +31,6 @@ L\'[atelier TechDraw](TechDraw_Workbench.md) est livré avec un certain nombre d }} [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [TechDraw](Category:TechDraw.md) > Artwork TechDraw/fr diff --git a/wiki/translations/fr/Artwork_Test.md b/wiki/translations/fr/Artwork_Test.md index bb8e23f69c..5945816bd2 100644 --- a/wiki/translations/fr/Artwork_Test.md +++ b/wiki/translations/fr/Artwork_Test.md @@ -1,6 +1,4 @@ # Artwork Test/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -14,3 +12,5 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m {{Artwork}} +--- +[documentation index](../README.md) > Artwork Test/fr diff --git a/wiki/translations/fr/Artwork_Tux.md b/wiki/translations/fr/Artwork_Tux.md index 810eb5ce05..75d96bfd1f 100644 --- a/wiki/translations/fr/Artwork_Tux.md +++ b/wiki/translations/fr/Artwork_Tux.md @@ -1,6 +1,4 @@ # Artwork Tux/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -14,3 +12,5 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m {{Artwork}} +--- +[documentation index](../README.md) > Artwork Tux/fr diff --git a/wiki/translations/fr/Artwork_Web.md b/wiki/translations/fr/Artwork_Web.md index c29824ee54..d9a67233e4 100644 --- a/wiki/translations/fr/Artwork_Web.md +++ b/wiki/translations/fr/Artwork_Web.md @@ -1,6 +1,4 @@ # Artwork Web/fr - - Ces icônes se trouvent dans le chemin source indiqué. Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.md). @@ -21,3 +19,6 @@ Pour toutes les icônes de l\'arborescence source, voir [Graphisme](Artwork/fr.m }} [Category:Web](Category:Web.md) + +--- +[documentation index](../README.md) > [Web](Category:Web.md) > Artwork Web/fr diff --git a/wiki/translations/fr/Artwork_project.md b/wiki/translations/fr/Artwork_project.md index cd66438b2c..fe93b92a78 100644 --- a/wiki/translations/fr/Artwork_project.md +++ b/wiki/translations/fr/Artwork_project.md @@ -1,7 +1,4 @@ # Artwork project/fr - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -101,3 +98,6 @@ The current color palette is captured in google drive: [Roadmap](Category:Roadmap.md) > Artwork project/fr diff --git a/wiki/translations/fr/Assembly.md b/wiki/translations/fr/Assembly.md index aa21dd8e0b..e07871081d 100644 --- a/wiki/translations/fr/Assembly.md +++ b/wiki/translations/fr/Assembly.md @@ -1,6 +1,4 @@ # Assembly/fr - - ## Introduction @@ -53,3 +51,6 @@ Les ateliers d\'assemblage poursuivent leur développement et il est prévu qu\' }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Assembly/fr diff --git a/wiki/translations/fr/Assembly2_Workbench.md b/wiki/translations/fr/Assembly2_Workbench.md index 113198cc33..1277ddaad0 100644 --- a/wiki/translations/fr/Assembly2_Workbench.md +++ b/wiki/translations/fr/Assembly2_Workbench.md @@ -1,7 +1,4 @@ # Assembly2 Workbench/fr - - -
@@ -156,3 +153,6 @@ To update to the latest version, delete the assembly2 folder and redownload the [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Assembly2 Workbench/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintAlignment.md b/wiki/translations/fr/Assembly3_ConstraintAlignment.md index de0ff67780..d27dd42b18 100644 --- a/wiki/translations/fr/Assembly3_ConstraintAlignment.md +++ b/wiki/translations/fr/Assembly3_ConstraintAlignment.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintAlignment/fr + ## Description Cet outil relie deux ou plusieurs objets d\'un assemblage et fait correspondre leurs orientations. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -20,8 +22,5 @@ Le décalage de leurs axes z et l\'angle entre leurs axes x (et y également) ne 2. Sélectionnez un élément de face planaire de chaque objet. 3. Appuyez sur le bouton **[Alignment](Assembly3_ConstraintAlignment/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAlignment/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintAngle.md b/wiki/translations/fr/Assembly3_ConstraintAngle.md index 115ec89835..7a94910cb6 100644 --- a/wiki/translations/fr/Assembly3_ConstraintAngle.md +++ b/wiki/translations/fr/Assembly3_ConstraintAngle.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintAngle/fr + ## Description Cet outil établit un lien entre deux objets d\'un assemblage et fait correspondre leur orientation. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -22,8 +24,5 @@ La contrainte accepte les bords droits et les faces planes. 2. Sélectionnez un élément de bord droit ou un élément de face plane de chaque objet. 3. Appuyez sur le bouton ** [Angle](Assembly3_ConstraintAngle/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAngle/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintAttachment.md b/wiki/translations/fr/Assembly3_ConstraintAttachment.md index a6551d6d96..6317bfd4c2 100644 --- a/wiki/translations/fr/Assembly3_ConstraintAttachment.md +++ b/wiki/translations/fr/Assembly3_ConstraintAttachment.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintAttachment/fr + ## Description Cet outil établit un lien entre deux objets d\'un assemblage et fixe la distance entre eux et leur orientation l\'un par rapport à l\'autre. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -18,8 +20,5 @@ Ce lien ne laisse aucun degré de liberté (DOF) sans contrainte. 2. Sélectionnez un élément de chaque objet. 3. Appuyez sur le bouton ** [Attachment](Assembly3_ConstraintAttachment/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAttachment/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintAxial.md b/wiki/translations/fr/Assembly3_ConstraintAxial.md index 0a41e1574c..80a095d9f4 100644 --- a/wiki/translations/fr/Assembly3_ConstraintAxial.md +++ b/wiki/translations/fr/Assembly3_ConstraintAxial.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintAxial/fr + ## Description Cet outil établit un lien entre deux ou plusieurs objets d\'un assemblage et fait correspondre leur orientation. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -28,8 +30,5 @@ Différents types d\'éléments géométriques peuvent être mélangés. 2. Sélectionnez un élément de chaque objet. 3. Appuyez sur le bouton ** [Alignement axial](Assembly3_ConstraintAxial/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintAxial/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintCoincidence.md b/wiki/translations/fr/Assembly3_ConstraintCoincidence.md index 021da4d0a3..ca67518e96 100644 --- a/wiki/translations/fr/Assembly3_ConstraintCoincidence.md +++ b/wiki/translations/fr/Assembly3_ConstraintCoincidence.md @@ -7,6 +7,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintCoincidence/fr + ## Description Cet outil relie deux ou plusieurs objets d\'un assemblage et fait correspondre leurs orientations. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -27,8 +29,5 @@ La rotation peut être arrêtée en mettant Lock Angle sur true dans le panneau 2. Sélectionnez un élément de face plane de chaque objet. 3. Appuyez sur le bouton ** [Plane Coincidence](Assembly3_ConstraintCoincidence/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintCoincidence/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintEqualAngle.md b/wiki/translations/fr/Assembly3_ConstraintEqualAngle.md index c03d473df9..320aef5244 100644 --- a/wiki/translations/fr/Assembly3_ConstraintEqualAngle.md +++ b/wiki/translations/fr/Assembly3_ConstraintEqualAngle.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintEqualAngle/fr + ## Description Cet outil construit un lien entre deux objets d\'un assemblage et fixe un angle entre eux par rapport à la valeur d\'un autre angle. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS) sont utilisés pour positionner un objet par rapport à un autre. @@ -23,8 +25,5 @@ Les directions des lignes ainsi que les normales des faces sont représentées p : En outre, la fonction \"Flip element\" du panneau des propriétés des éléments peut être nécessaire si les SCI ne sont pas orientés comme prévu. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualAngle/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintEqualLength.md b/wiki/translations/fr/Assembly3_ConstraintEqualLength.md index a37fcffd14..a22a5ecdb3 100644 --- a/wiki/translations/fr/Assembly3_ConstraintEqualLength.md +++ b/wiki/translations/fr/Assembly3_ConstraintEqualLength.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintEqualLength/fr + ## Description Cet outil contraint la longueur d\'une ligne 2D comme un segment non fractionné réalisé avec l\'établi Draft par rapport à un plan de travail. @@ -24,8 +26,5 @@ La valeur de la longueur de la première ligne sélectionnée est égale à la v : (si ** [Auto recompute](Assembly3_AutoRecompute/fr.md)** et ** [Smart recompute](Assembly3_SmartRecompute/fr.md)** sont désactivés). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintEqualLength/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintLengthDifference.md b/wiki/translations/fr/Assembly3_ConstraintLengthDifference.md index 4fea93c048..35b08a702a 100644 --- a/wiki/translations/fr/Assembly3_ConstraintLengthDifference.md +++ b/wiki/translations/fr/Assembly3_ConstraintLengthDifference.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintLengthDifference/fr + ## Description Cet outil contraint la longueur d\'une ligne 2D comme un segment non fractionné réalisé avec l\'établi Draft par rapport à un plan de travail. @@ -27,8 +29,5 @@ La valeur de la longueur de la première ligne sélectionnée est égale à la v : (si ** [Auto recompute](Assembly3_AutoRecompute/fr.md)** et ** [Smart recompute](Assembly3_SmartRecompute/fr.md)** sont désactivés). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLengthDifference/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintLengthEqualPointLineDistance.md b/wiki/translations/fr/Assembly3_ConstraintLengthEqualPointLineDistance.md index e714eaf71a..9a96e73e2e 100644 --- a/wiki/translations/fr/Assembly3_ConstraintLengthEqualPointLineDistance.md +++ b/wiki/translations/fr/Assembly3_ConstraintLengthEqualPointLineDistance.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintLengthEqualPointLineDistance/fr + ## Description Cet outil contraint la longueur d\'une ligne 2D comme un segment non fractionné réalisé avec l\'établi Draft par rapport à un plan de travail. @@ -26,8 +28,5 @@ La valeur de la longueur de la première ligne sélectionnée est égale à la d : (si ** [Auto recompute](Assembly3_AutoRecompute.md)** et ** [Smart recompute](Assembly3_SmartRecompute.md)** sont désactivés). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLengthEqualPointLineDistance/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintLengthRatio.md b/wiki/translations/fr/Assembly3_ConstraintLengthRatio.md index 6cabdfaf8a..bd6dce9871 100644 --- a/wiki/translations/fr/Assembly3_ConstraintLengthRatio.md +++ b/wiki/translations/fr/Assembly3_ConstraintLengthRatio.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintLengthRatio/fr + ## Description Cet outil contraint la longueur d\'une ligne 2D comme un segment non fractionné réalisé avec l\'établi Draft par rapport à un plan de travail. @@ -27,8 +29,5 @@ La valeur de longueur de la première ligne sélectionnée est égale à la vale : (si ** [Auto recompute](Assembly3_AutoRecompute/fr.md)** et ** [Smart recompute](Assembly3_SmartRecompute/fr.md)** sont désactivés). - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLengthRatio/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintLineHorizontal.md b/wiki/translations/fr/Assembly3_ConstraintLineHorizontal.md index fa77b799e1..fc433e98f8 100644 --- a/wiki/translations/fr/Assembly3_ConstraintLineHorizontal.md +++ b/wiki/translations/fr/Assembly3_ConstraintLineHorizontal.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintLineHorizontal/fr + ## Description Cet outil permet de construire un lien entre deux objets d\'un assemblage. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS) sont utilisés pour positionner un objet par rapport à un autre. @@ -19,8 +21,5 @@ Sur la base de l\'ICS d\'un élément planaire, les points de départ et d\'arri 3. Sélectionnez un élément de face planaire du second objet 4. Appuyez sur le bouton ** [Line horizontal](Assembly3_ConstraintLineHorizontal/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLineHorizontal/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintLineLength.md b/wiki/translations/fr/Assembly3_ConstraintLineLength.md index d9eaa7691f..72658fae3b 100644 --- a/wiki/translations/fr/Assembly3_ConstraintLineLength.md +++ b/wiki/translations/fr/Assembly3_ConstraintLineLength.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintLineLength/fr + ## Description Cet outil contraint la longueur d\'une ligne 2D comme un segment non fractionné réalisé avec l\'établi Draft par rapport à un plan de travail. @@ -19,8 +21,5 @@ La longueur est fixée à une certaine valeur en modifiant le paramètre de long 3. Définissez la valeur **Longueur** dans le panneau des propriétés. 4. Appuyez sur le bouton ** [Solve constraints](Assembly3_ResolveConstraints/fr.md)** ou sur le bouton ** [Quick solve](Assembly3_QuickSolve/fr.md)** pour recalculer. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLineLength/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintLineVertical.md b/wiki/translations/fr/Assembly3_ConstraintLineVertical.md index b95f020cbf..b2d4edf3c6 100644 --- a/wiki/translations/fr/Assembly3_ConstraintLineVertical.md +++ b/wiki/translations/fr/Assembly3_ConstraintLineVertical.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintLineVertical/fr + ## Description Cet outil permet de construire un lien entre deux objets d\'un assemblage. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS) sont utilisés pour positionner un objet par rapport à un autre. @@ -19,8 +21,5 @@ Sur la base de l\'ICS d\'un élément planaire, les points de départ et d\'arri 3. Sélectionnez un élément planaire de l\'autre objet 4. Appuyez sur le bouton ** [Line vertical](Assembly3_ConstraintLineVertical/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLineVertical/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintLock.md b/wiki/translations/fr/Assembly3_ConstraintLock.md index 6fcec78849..37b4432246 100644 --- a/wiki/translations/fr/Assembly3_ConstraintLock.md +++ b/wiki/translations/fr/Assembly3_ConstraintLock.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintLock/fr + ## Description Cet outil relie un objet au système de coordonnées global (GCS = global coordinate system) de l\'assemblage en utilisant le système de coordonnées implicite (ICS) d\'un élément sélectionné. @@ -29,8 +31,5 @@ IL peut être utilisé pour définir l\'ensemble fixe dans un assemblage statiqu 2. Sélectionnez un élément de l\'objet. 3. Appuyez sur le bouton ** [Locked](Assembly3_ConstraintLock/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintLock/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintMore.md b/wiki/translations/fr/Assembly3_ConstraintMore.md index 3cc21b7d94..a24e18421b 100644 --- a/wiki/translations/fr/Assembly3_ConstraintMore.md +++ b/wiki/translations/fr/Assembly3_ConstraintMore.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintMore/fr + ## Description Cet outil ne fait que basculer la visibilité de deux autres panneaux de contraintes. @@ -14,8 +16,5 @@ Cet outil ne fait que basculer la visibilité de deux autres panneaux de contrai 1. Appuyez sur le bouton ** [More](Assembly3_ConstraintMore/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintMore/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintMultiParallel.md b/wiki/translations/fr/Assembly3_ConstraintMultiParallel.md index e70e212c8d..c2b549d520 100644 --- a/wiki/translations/fr/Assembly3_ConstraintMultiParallel.md +++ b/wiki/translations/fr/Assembly3_ConstraintMultiParallel.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintMultiParallel/fr + ## Description Cet outil établit un lien entre deux ou plusieurs objets d\'un assemblage et fait correspondre leur orientation. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -22,8 +24,5 @@ La contrainte accepte les bords droits et les faces planes, qui deviennent paral 2. Sélectionnez un élément de bord droit ou un élément de face plane de chaque objet. 3. Appuyez sur le bouton ** [Multi parallel](Assembly3_ConstraintMultiParallel/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintMultiParallel/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintPerpendicular.md b/wiki/translations/fr/Assembly3_ConstraintPerpendicular.md index eee3a50f38..f272dddfde 100644 --- a/wiki/translations/fr/Assembly3_ConstraintPerpendicular.md +++ b/wiki/translations/fr/Assembly3_ConstraintPerpendicular.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintPerpendicular/fr + ## Description Cet outil établit un lien entre deux objets d\'un assemblage et fait correspondre leur orientation. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -22,8 +24,5 @@ La contrainte accepte les bords droits et les faces planes. 2. Sélectionnez un élément de bord droit ou un élément de face plane de chaque objet. 3. Appuyez sur le bouton ** [Perpendicular](Assembly3_ConstraintPerpendicular/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPerpendicular/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintPointDistance.md b/wiki/translations/fr/Assembly3_ConstraintPointDistance.md index 5e83ca52ad..1f1c1c96af 100644 --- a/wiki/translations/fr/Assembly3_ConstraintPointDistance.md +++ b/wiki/translations/fr/Assembly3_ConstraintPointDistance.md @@ -7,6 +7,8 @@ SeeAlso:[Assembly3 Contrainte distance entre points](Assembly3_ConstraintPointsDistance/fr.md) --- +# Assembly3 ConstraintPointDistance/fr + ## Description Cet outil permet de construire un lien entre deux objets d\'un assemblage et de fixer la distance qui les sépare. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS) sont utilisés pour positionner un objet par rapport à un autre. @@ -19,8 +21,5 @@ Il peut traiter des éléments ponctuels 3D ainsi que des éléments ponctuels 2 2. Sélectionnez un élément ponctuel de chaque objet 3. Appuyez sur le bouton ** [Point distance](Assembly3_ConstraintPointDistance/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointDistance/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintPointInPlane.md b/wiki/translations/fr/Assembly3_ConstraintPointInPlane.md index b2dc029daf..4725d02a05 100644 --- a/wiki/translations/fr/Assembly3_ConstraintPointInPlane.md +++ b/wiki/translations/fr/Assembly3_ConstraintPointInPlane.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintPointInPlane/fr + ## Description Cet outil établit un lien entre deux objets d\'un assemblage et fixe la distance entre eux et leur orientation l\'un par rapport à l\'autre. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -22,8 +24,5 @@ Par rapport au premier objet, l\'objet suivant peut toujours se déplacer le lon 2. Sélectionnez un élément de point d\'un objet et un élément de face planaire de l\'autre objet. 3. Appuyez sur le bouton ** [Point on plane](Assembly3_ConstraintPointInPlane/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointInPlane/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintPointLineDistance.md b/wiki/translations/fr/Assembly3_ConstraintPointLineDistance.md index 33991dc1d2..ea15eeb82a 100644 --- a/wiki/translations/fr/Assembly3_ConstraintPointLineDistance.md +++ b/wiki/translations/fr/Assembly3_ConstraintPointLineDistance.md @@ -7,6 +7,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintPointLineDistance/fr + ## Description Cet outil établit un lien entre deux objets d\'un assemblage et fixe la distance entre eux et leur orientation l\'un par rapport à l\'autre. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -17,8 +19,5 @@ Cet outil établit un lien entre deux objets d\'un assemblage et fixe la distanc 2. Sélectionnez un élément de point d\'un objet et un élément de bord linéaire de l\'autre objet. 3. Appuyez sur le bouton ** [Point line distance](Assembly3_ConstraintPointLineDistance/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointLineDistance/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintPointOnCircle.md b/wiki/translations/fr/Assembly3_ConstraintPointOnCircle.md index 6f7eb2b5ac..08ba8f5fb7 100644 --- a/wiki/translations/fr/Assembly3_ConstraintPointOnCircle.md +++ b/wiki/translations/fr/Assembly3_ConstraintPointOnCircle.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintPointOnCircle/fr + ## Description Cet outil établit un lien entre deux objets d\'un assemblage et fixe la distance entre eux et leur orientation l\'un par rapport à l\'autre. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -22,8 +24,5 @@ La position sur l\'élément circulaire (longueur d\'arc à partir du point de d 2. Sélectionnez un élément de point d\'un objet et un élément de face ou de bord circulaire de l\'autre objet. 3. Appuyez sur le bouton ** [Point on circle](Assembly3_ConstraintPointOnCircle/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointOnCircle/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintPointOnLine.md b/wiki/translations/fr/Assembly3_ConstraintPointOnLine.md index 27f52b6a13..36dfeee99a 100644 --- a/wiki/translations/fr/Assembly3_ConstraintPointOnLine.md +++ b/wiki/translations/fr/Assembly3_ConstraintPointOnLine.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintPointOnLine/fr + ## Description Cet outil établit un lien entre deux objets d\'un assemblage et fixe la distance entre eux et leur orientation l\'un par rapport à l\'autre. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -22,8 +24,5 @@ Par rapport au premier objet, l\'objet suivant peut toujours se déplacer le lon 2. Sélectionnez un élément de point d\'un objet et un élément de bord droit de l\'autre objet. 3. Appuyez sur le bouton ** [Point sur une ligne](Assembly3_ConstraintPointOnLine/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointOnLine/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintPointPlaneDistance.md b/wiki/translations/fr/Assembly3_ConstraintPointPlaneDistance.md index ae31317c81..133b2610be 100644 --- a/wiki/translations/fr/Assembly3_ConstraintPointPlaneDistance.md +++ b/wiki/translations/fr/Assembly3_ConstraintPointPlaneDistance.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintPointPlaneDistance/fr + ## Description Cet outil établit un lien entre deux objets d\'un assemblage et fixe la distance entre eux et leur orientation l\'un par rapport à l\'autre. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -16,8 +18,5 @@ Cet outil établit un lien entre deux objets d\'un assemblage et fixe la distanc 2. Sélectionnez un élément de point d\'un objet et un élément de face planaire de l\'autre objet. 3. Appuyez sur le bouton ** [Distance entre points et plans](Assembly3_ConstraintPointPlaneDistance/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointPlaneDistance/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintPointsCoincident.md b/wiki/translations/fr/Assembly3_ConstraintPointsCoincident.md index 18d9e56e04..fb358d2203 100644 --- a/wiki/translations/fr/Assembly3_ConstraintPointsCoincident.md +++ b/wiki/translations/fr/Assembly3_ConstraintPointsCoincident.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintPointsCoincident/fr + ## Description Cet outil établit un lien entre deux objets d\'un assemblage et fixe la distance entre eux et leur orientation l\'un par rapport à l\'autre. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -22,8 +24,5 @@ Par rapport au premier objet, l\'objet suivant peut encore tourner autour de l\' 2. Sélectionnez un élément ponctuel de chaque objet 3. Appuyez sur le bouton ** [Points coincident](Assembly3_ConstraintPointsCoincident/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsCoincident/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintPointsDistance.md b/wiki/translations/fr/Assembly3_ConstraintPointsDistance.md index 3211c56fbc..fd527abb59 100644 --- a/wiki/translations/fr/Assembly3_ConstraintPointsDistance.md +++ b/wiki/translations/fr/Assembly3_ConstraintPointsDistance.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintPointsDistance/fr + ## Description Cet outil établit un lien entre deux objets d\'un assemblage et fait correspondre leur orientation. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -16,8 +18,5 @@ Cet outil établit un lien entre deux objets d\'un assemblage et fait correspond 2. Sélectionnez un élément ponctuel de chaque objet 3. Appuyez sur le bouton ** [Distance des points](Assembly3_ConstraintPointsDistance/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsDistance/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintPointsHorizontal.md b/wiki/translations/fr/Assembly3_ConstraintPointsHorizontal.md index 9184462957..65e237d0d2 100644 --- a/wiki/translations/fr/Assembly3_ConstraintPointsHorizontal.md +++ b/wiki/translations/fr/Assembly3_ConstraintPointsHorizontal.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintPointsHorizontal/fr + ## Description Cet outil permet de construire un lien entre deux ou trois objets d\'un assemblage. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS) sont utilisés pour positionner un objet par rapport à un autre. @@ -26,8 +28,5 @@ Ou 3. Sélectionnez un élément planaire du troisième objet 4. Appuyez sur le bouton ** [Points horizontal](Assembly3_ConstraintPointsHorizontal/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsHorizontal/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintPointsSymmetric.md b/wiki/translations/fr/Assembly3_ConstraintPointsSymmetric.md index f7787ad643..fdafe69a80 100644 --- a/wiki/translations/fr/Assembly3_ConstraintPointsSymmetric.md +++ b/wiki/translations/fr/Assembly3_ConstraintPointsSymmetric.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintPointsSymmetric/fr + ## Description Cet outil construit un lien entre deux ou trois objets d\'un assemblage et positionne deux éléments ponctuels symétriquement à un élément d\'une surface plane ou à un plan . Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS) sont utilisés pour positionner les objets les uns par rapport aux autres. @@ -26,8 +28,5 @@ Ou 3. Sélectionnez un élément planaire du troisième objet 4. Appuyez sur le bouton ** [Points symmetric](Assembly3_ConstraintPointsSymmetric/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsSymmetric/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintPointsVertical.md b/wiki/translations/fr/Assembly3_ConstraintPointsVertical.md index 288b749516..a10140a57b 100644 --- a/wiki/translations/fr/Assembly3_ConstraintPointsVertical.md +++ b/wiki/translations/fr/Assembly3_ConstraintPointsVertical.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintPointsVertical/fr + ## Description Cet outil permet de construire un lien entre deux ou trois objets d\'un assemblage. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS) sont utilisés pour positionner un objet par rapport à un autre. @@ -26,8 +28,5 @@ Ou 3. Sélectionnez un élément planaire du troisième objet 4. Appuyez sur le bouton ** [Points vertical](Assembly3_ConstraintPointsVertical/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintPointsVertical/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintSameOrientation.md b/wiki/translations/fr/Assembly3_ConstraintSameOrientation.md index c79c925761..e45226e205 100644 --- a/wiki/translations/fr/Assembly3_ConstraintSameOrientation.md +++ b/wiki/translations/fr/Assembly3_ConstraintSameOrientation.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintSameOrientation/fr + ## Description Cet outil établit un lien entre deux ou plusieurs objets d\'un assemblage et fait correspondre leur orientation. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -22,8 +24,5 @@ La contrainte accepte les faces planes. 2. Sélectionnez un élément de face plane de chaque objet. 3. Appuyez sur le bouton ** [Same orientation](Assembly3_ConstraintSameOrientation/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSameOrientation/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintSymmetric.md b/wiki/translations/fr/Assembly3_ConstraintSymmetric.md index fb60d7ea43..c3ff2cf097 100644 --- a/wiki/translations/fr/Assembly3_ConstraintSymmetric.md +++ b/wiki/translations/fr/Assembly3_ConstraintSymmetric.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintSymmetric/fr + ## Description Cet outil établit un lien entre deux objets d\'un assemblage et fait correspondre leur orientation. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS = implicit coordinate systems) sont utilisés pour positionner un objet par rapport à un autre. @@ -16,8 +18,5 @@ Cet outil établit un lien entre deux objets d\'un assemblage et fait correspond 2. Sélectionnez un élément de chaque objet et un plan miroir. 3. Appuyez sur le bouton ** [Symmetric](Assembly3_ConstraintSymmetric/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetric/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintSymmetricHorizontal.md b/wiki/translations/fr/Assembly3_ConstraintSymmetricHorizontal.md index f004f91a07..915030665b 100644 --- a/wiki/translations/fr/Assembly3_ConstraintSymmetricHorizontal.md +++ b/wiki/translations/fr/Assembly3_ConstraintSymmetricHorizontal.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintSymmetricHorizontal/fr + ## Description Cet outil permet de construire un lien entre deux objets d\'un assemblage. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS) sont utilisés pour positionner les objets l\'un par rapport à l\'autre. @@ -19,8 +21,5 @@ Sur la base de l\'ICS d\'un élément plan, les origines des ICS des deux autres 3. Sélectionnez un élément planaire de l\'autre objet. 4. Appuyez sur le bouton ** [Symmetric horizontal](Assembly3_ConstraintSymmetricHorizontal/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetricHorizontal/fr diff --git a/wiki/translations/fr/Assembly3_ConstraintSymmetricVertical.md b/wiki/translations/fr/Assembly3_ConstraintSymmetricVertical.md index cf9a2c0fc1..c6acb13d8e 100644 --- a/wiki/translations/fr/Assembly3_ConstraintSymmetricVertical.md +++ b/wiki/translations/fr/Assembly3_ConstraintSymmetricVertical.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 ConstraintSymmetricVertical/fr + ## Description Cet outil permet de construire un lien entre deux objets d\'un assemblage. Les éléments sélectionnés de chaque objet ou plus précisément leurs systèmes de coordonnées implicites (ICS) sont utilisés pour positionner les objets l\'un par rapport à l\'autre. @@ -19,8 +21,5 @@ Sur la base de l\'ICS d\'un élément plan, les origines des ICS des deux autres 3. Sélectionnez un élément planaire de l\'autre objet. 4. Appuyez sur le bouton ** [Symmetric vertical](Assembly3_ConstraintSymmetricVertical/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 ConstraintSymmetricVertical/fr diff --git a/wiki/translations/fr/Assembly3_MeasureAngle.md b/wiki/translations/fr/Assembly3_MeasureAngle.md index c99a7a412d..74c5fe02f7 100644 --- a/wiki/translations/fr/Assembly3_MeasureAngle.md +++ b/wiki/translations/fr/Assembly3_MeasureAngle.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 MeasureAngle/fr + ## Description Cet outil mesure l\'angle entre deux objets d\'un assemblage à l\'aide d\'arêtes droites ou de faces planes. @@ -15,8 +17,5 @@ Cet outil mesure l\'angle entre deux objets d\'un assemblage à l\'aide d\'arêt 1. Sélectionnez deux arêtes droites ou deux faces planes (ou une de chaque). 2. Appuyez sur le bouton ** [Measure angle](Assembly3_MeasureAngle/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 MeasureAngle/fr diff --git a/wiki/translations/fr/Assembly3_MeasurePointLine.md b/wiki/translations/fr/Assembly3_MeasurePointLine.md index b40ba04fd1..e2b77c43de 100644 --- a/wiki/translations/fr/Assembly3_MeasurePointLine.md +++ b/wiki/translations/fr/Assembly3_MeasurePointLine.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 MeasurePointLine/fr + ## Description Cet outil mesure la distance entre deux objets d\'un assemblage en utilisant un point et une ligne. @@ -15,8 +17,5 @@ Cet outil mesure la distance entre deux objets d\'un assemblage en utilisant un 1. Sélectionnez un point et une ligne. 2. Appuyez sur le bouton ** [Measure point to line](Assembly3_MeasurePointLine/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 MeasurePointLine/fr diff --git a/wiki/translations/fr/Assembly3_MeasurePointPlane.md b/wiki/translations/fr/Assembly3_MeasurePointPlane.md index 1e451b6535..0f45804abd 100644 --- a/wiki/translations/fr/Assembly3_MeasurePointPlane.md +++ b/wiki/translations/fr/Assembly3_MeasurePointPlane.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 MeasurePointPlane/fr + ## Description Cet outil mesure la distance entre deux objets d\'un assemblage en utilisant un point et une face plane. @@ -15,8 +17,5 @@ Cet outil mesure la distance entre deux objets d\'un assemblage en utilisant un 1. Sélectionnez un point et une face plane. 2. Appuyez sur le bouton ** [Measure point to plane](Assembly3_MeasurePointPlane/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 MeasurePointPlane/fr diff --git a/wiki/translations/fr/Assembly3_MeasurePoints.md b/wiki/translations/fr/Assembly3_MeasurePoints.md index 03acb7f61f..3c4a89fce0 100644 --- a/wiki/translations/fr/Assembly3_MeasurePoints.md +++ b/wiki/translations/fr/Assembly3_MeasurePoints.md @@ -6,6 +6,8 @@ Workbenches:[Assembly3](Assembly3_Workbench/fr.md) --- +# Assembly3 MeasurePoints/fr + ## Description Cet outil mesure la distance entre deux objets d\'un assemblage à l\'aide de deux points. @@ -15,8 +17,5 @@ Cet outil mesure la distance entre deux objets d\'un assemblage à l\'aide de de 1. Sélectionnez deux points. 2. Appuyez sur le bouton ** [Measure point to point](Assembly3_MeasurePoints/fr.md)**. - - - - - +--- +[documentation index](../README.md) > Assembly3 MeasurePoints/fr diff --git a/wiki/translations/fr/Assembly3_Workbench.md b/wiki/translations/fr/Assembly3_Workbench.md index c7d30cdbb4..52762354a2 100644 --- a/wiki/translations/fr/Assembly3_Workbench.md +++ b/wiki/translations/fr/Assembly3_Workbench.md @@ -1,7 +1,4 @@ -# Assembly3 Workbench/fr - - -Assembly3 workbench icon +# Assembly3 workbench icon Assembly3 Workbench/fr {{TOCright}} @@ -598,3 +595,6 @@ Une façon de résoudre ce problème consiste simplement à supprimer toutes les [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Assembly3 Workbench/fr diff --git a/wiki/translations/fr/Assembly4_Workbench.md b/wiki/translations/fr/Assembly4_Workbench.md index 69d49aa6d3..aa212c1c8a 100644 --- a/wiki/translations/fr/Assembly4_Workbench.md +++ b/wiki/translations/fr/Assembly4_Workbench.md @@ -1,7 +1,4 @@ -# Assembly4 Workbench/fr - - -Icône de l\'atelier externe Assembly4 +# Icône de l\'atelier externe Assembly4 Assembly4 Workbench/fr ## Introduction @@ -40,3 +37,6 @@ Assembly4 a été inspiré par Nous avons donc également des zones dans lesquelles l\'intensité de la lumière réfléchie est différente. Pour éviter cela, nous avons besoin au point géométrique de transition d\'une continuité de la dérivée de second ordre et donc d\'une B-spline cubique. + +--- +[documentation index](../README.md) > B-Splines/fr diff --git a/wiki/translations/fr/BIM_Box.md b/wiki/translations/fr/BIM_Box.md index de202303af..9ca3986ce5 100644 --- a/wiki/translations/fr/BIM_Box.md +++ b/wiki/translations/fr/BIM_Box.md @@ -7,6 +7,8 @@ SeeAlso:[Part Box](Part_Box/fr.md) --- +# BIM Box/fr + ## Description @@ -20,3 +22,6 @@ L'outil Boîte BIM vous permet de créer une [Part Box](Part_Box/fr.md) standard 3. Cliquez sur un deuxième point pour définir un premier bord de la boîte, en partant du premier point. 4. Cliquez sur un troisième point pour définir une première face de la boîte, orthogonale au premier bord 5. Cliquez sur un quatrième point pour définir la distance d\'extrusion de la première face, formant ainsi la boîte finale. + +--- +[documentation index](../README.md) > BIM Box/fr diff --git a/wiki/translations/fr/BIM_Classification.md b/wiki/translations/fr/BIM_Classification.md index 4414bdbd77..e22c579a14 100644 --- a/wiki/translations/fr/BIM_Classification.md +++ b/wiki/translations/fr/BIM_Classification.md @@ -7,6 +7,8 @@ MenuLocation:Manage → Manage classification --- +# BIM Classification/fr + ## Description @@ -18,3 +20,6 @@ Le gestionnaire de classifications vous permet d\'attribuer une classe standard - Installez un ou plusieurs fichiers XML ou IFC standard de classification comme expliqué ci-dessus. - Si vous souhaitez ajouter ou modifier une classe pour un objet, sélectionnez cet objet et appuyez sur le bouton Classification BIM. - Si vous souhaitez ajouter ou modifier une classe pour un matériau, ne sélectionnez rien et appuyez sur le bouton Classification BIM. Vous pourrez parcourir les matériaux directement à partir de la fenêtre du gestionnaire de classification. + +--- +[documentation index](../README.md) > BIM Classification/fr diff --git a/wiki/translations/fr/BIM_Clone.md b/wiki/translations/fr/BIM_Clone.md index 55bcde9210..25f79a0382 100644 --- a/wiki/translations/fr/BIM_Clone.md +++ b/wiki/translations/fr/BIM_Clone.md @@ -8,6 +8,11 @@ SeeAlso:[Draft Clone](Draft_Clone/fr.md) --- +# BIM Clone/fr + ## Description L\'outil de clonage BIM est un raccourci vers l\'outil [Draft Clone](Draft_Clone/fr.md) standard, mais il lance une commande [Draft Move](Draft_Move/fr.md) juste après le clonage, vous permettant ainsi de cloner et de placer l\'objet cloné ailleurs dans le modèle en une seule fois. + +--- +[documentation index](../README.md) > BIM Clone/fr diff --git a/wiki/translations/fr/BIM_Copy.md b/wiki/translations/fr/BIM_Copy.md index 4983cd2707..0a8d8394c8 100644 --- a/wiki/translations/fr/BIM_Copy.md +++ b/wiki/translations/fr/BIM_Copy.md @@ -7,6 +7,11 @@ SeeAlso:[Déplacer](Draft_Move/fr.md) --- +# BIM Copy/fr + ## Description L'outil Copie BIM est un raccourci vers l'outil standard [Déplacer](Draft_Move/fr.md) mais en commençant par son option **Copier** ce qui permet de créer une copie d'un objet et de le placer à un endroit donné, en une fois. + +--- +[documentation index](../README.md) > BIM Copy/fr diff --git a/wiki/translations/fr/BIM_IfcElements.md b/wiki/translations/fr/BIM_IfcElements.md index c414f495fc..094ff09dce 100644 --- a/wiki/translations/fr/BIM_IfcElements.md +++ b/wiki/translations/fr/BIM_IfcElements.md @@ -8,6 +8,8 @@ SeeAlso:[BIM Propriétés IFC](BIM_IfcProperties/fr.md),[BIM Quantité IFC](BIM_IfcQuantities/fr.md) --- +# BIM IfcElements/fr + ## Description @@ -20,3 +22,6 @@ Avec cela, vous pouvez: - Renommer des objets en double-cliquant sur leur nom. - Modifier leur type IFC en cliquant sur un type individuel ou, si plusieurs d\'entre eux sont sélectionnés, en utilisant le menu déroulant \"changer le type en:\" - Changer leur matériau en cliquant sur un matériau individuel ou, si plusieurs sont sélectionnés, en utilisant le menu déroulant \"changer de matériau en:\" + +--- +[documentation index](../README.md) > BIM IfcElements/fr diff --git a/wiki/translations/fr/BIM_IfcProperties.md b/wiki/translations/fr/BIM_IfcProperties.md index b6fcd9d7ce..7cf1b70968 100644 --- a/wiki/translations/fr/BIM_IfcProperties.md +++ b/wiki/translations/fr/BIM_IfcProperties.md @@ -8,6 +8,8 @@ SeeAlso:[BIM Elements IFC](BIM_IfcElements/fr.md),[BIM Quantité IFC](BIM_IfcQuantities/fr.md) --- +# BIM IfcProperties/fr + ## Description @@ -31,3 +33,6 @@ Dans le fichier CSV, chaque ligne représente un ensemble de propriétés diffé Pset_FreeCAD;Name;IfcLabel;Version;IfcReal définirait un ensemble de propriétés nommé \"FreeCAD\" (le préfixe Pset\_ n\'est pas obligatoire mais est une pratique courante) qui contient deux propriétés: une appelée \"Name\" qui est un IfcLabel (un morceau de texte) et une autre appelée \"Version\" qui est un IfcReal (une valeur numérique avec des décimales). + +--- +[documentation index](../README.md) > BIM IfcProperties/fr diff --git a/wiki/translations/fr/BIM_IfcQuantities.md b/wiki/translations/fr/BIM_IfcQuantities.md index e6b14c5ada..ad46053e15 100644 --- a/wiki/translations/fr/BIM_IfcQuantities.md +++ b/wiki/translations/fr/BIM_IfcQuantities.md @@ -8,6 +8,8 @@ SeeAlso:[BIM Elements IFC](BIM_IfcElements/fr.md),[BIM Propriétés IFC](BIM_IfcProperties/fr.md) --- +# BIM IfcQuantities/fr + ## Description @@ -21,3 +23,6 @@ L\'idée derrière des quantités explicites est de les mettre à la disposition Par défaut, lors de l\'exportation d\'un fichier IFC depuis FreeCAD, aucune quantité explicite n\'est exportée. Avec le gestionnaire de quantités IFC, vous pouvez marquer les quantités à exporter et vérifier leurs valeurs. Des messages d\'avertissement seront affichés à côté des valeurs nulles, vous informant des problèmes potentiels que vous pourriez vouloir résoudre avant d\'exporter. Vous pouvez également utiliser le gestionnaire de quantités pour modifier ou fixer les valeurs réelles **Height**, **Width** et **Length** des objets. Mais cela affectera la géométrie de l\'objet dans FreeCAD. + +--- +[documentation index](../README.md) > BIM IfcQuantities/fr diff --git a/wiki/translations/fr/BIM_Layers.md b/wiki/translations/fr/BIM_Layers.md index a7a2d9a146..4460bf2f8f 100644 --- a/wiki/translations/fr/BIM_Layers.md +++ b/wiki/translations/fr/BIM_Layers.md @@ -7,6 +7,8 @@ Addon:BIM --- +# BIM Layers/fr + ## Description @@ -16,3 +18,6 @@ Le gestionnaire de calques vous permet de gérer les [Draft Calques](Draft_Layer Les calques sont importés et exportés de/vers [Arch IFC](Arch_IFC/fr.md) et [Draft DXF/DWG](Draft_DXF/fr.md). Le gestionnaire de calques vous permet de gérer vos calques, d\'ajouter ou de supprimer des calques ou de modifier leurs propriétés visuelles. Pour ajouter des objets à un calque, faites-les simplement glisser dans le calque de l\'arborescence. Pour les supprimer, faites-les glisser du calque et déposez-les dans la racine du document. + +--- +[documentation index](../README.md) > BIM Layers/fr diff --git a/wiki/translations/fr/BIM_Levels.md b/wiki/translations/fr/BIM_Levels.md index 54c0ae6d0f..002b91d775 100644 --- a/wiki/translations/fr/BIM_Levels.md +++ b/wiki/translations/fr/BIM_Levels.md @@ -1,2 +1,5 @@ # BIM Levels/fr 1. REDIRECT [BIM\_Views/fr](BIM_Views/fr.md) + +--- +[documentation index](../README.md) > BIM Levels/fr diff --git a/wiki/translations/fr/BIM_Library.md b/wiki/translations/fr/BIM_Library.md index ea52743bc0..592f8d4966 100644 --- a/wiki/translations/fr/BIM_Library.md +++ b/wiki/translations/fr/BIM_Library.md @@ -9,6 +9,8 @@ SeeAlso:[Arch Equipement](Arch_Equipment/fr.md) --- +# BIM Library/fr + ## Description L\'outil Bibliothèque BIM vous permet de placer dans le modèle en cours un objet de la [Bibliothèque de pièces](Parts_Library/fr.md). Il doit être installé via le [Addon Manager](Addon_Manager/fr.md) pour que cet outil soit disponible. @@ -37,3 +39,6 @@ L\'outil Bibliothèque BIM vous permet de placer dans le modèle en cours un obj [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM Library/fr diff --git a/wiki/translations/fr/BIM_Preflight.md b/wiki/translations/fr/BIM_Preflight.md index 2b1f6d4b6e..94ce38dfee 100644 --- a/wiki/translations/fr/BIM_Preflight.md +++ b/wiki/translations/fr/BIM_Preflight.md @@ -7,6 +7,8 @@ MenuLocation:Manage → Preflight check --- +# BIM Preflight/fr + ## Description @@ -86,3 +88,6 @@ def myCustomTest():    # text if the test failed. The string or text will be displayed    # to the user when they press the "Failed" button.    return result + +--- +[documentation index](../README.md) > BIM Preflight/fr diff --git a/wiki/translations/fr/BIM_Project.md b/wiki/translations/fr/BIM_Project.md index 624ae5d192..6d1231e1bc 100644 --- a/wiki/translations/fr/BIM_Project.md +++ b/wiki/translations/fr/BIM_Project.md @@ -7,6 +7,8 @@ MenuLocation:Manage → Manage project... --- +# BIM Project/fr + ## Description @@ -27,3 +29,6 @@ La boîte de dialogue de configuration du projet peut créer: L\'outil Projet prend en charge deux types de modèles : Une fois que vous avez rempli les différentes options, le contenu de l\'assistant de configuration de projet BIM peut être **enregistré** en tant que modèle. Ces modèles peuvent être **restaurés** et adaptés ultérieurement. Les modèles de projet sont stockés sous forme de fichiers de texte brut dans votre dossier d'utilisateur FreeCAD. Vous pouvez aussi enregistrer le contenu du document actuel en tant que modèle. Cela enregistrera le document actuellement ouvert en tant que fichier standard **.FCStd**, mais inclura également des paramètres BIM supplémentaires tels que l\'atelier actuel ou les unités actuelles. En utilisant l\'option de **restauration** à tout moment, le contenu de ce fichier modèle sera fusionné dans le document actif et tous les paramètres qui s\'y trouvent seront appliqués. + +--- +[documentation index](../README.md) > BIM Project/fr diff --git a/wiki/translations/fr/BIM_Setup.md b/wiki/translations/fr/BIM_Setup.md index 70c55fba12..bf2c1f2d4d 100644 --- a/wiki/translations/fr/BIM_Setup.md +++ b/wiki/translations/fr/BIM_Setup.md @@ -7,6 +7,8 @@ MenuLocation:Manage → Setup --- +# BIM Setup/fr + ## Description @@ -14,3 +16,6 @@ Le système de préférences de FreeCAD, situé sous le menu **Edition -\> Préférences**, est très complexe. La **boîte de dialogue de configuration BIM** en offre une version simplifiée en regroupant certains des paramètres de préférences les plus couramment utilisés pour le travail BIM sur un seul écran. Changer l\'une des options de préférence a le même effet que de modifier le paramètre correspondant sous Edition -\> Préférences. En survolant chaque paramètre avec la souris, un ttoltip vous en expliquera l'utilisation, ainsi que l'emplacement du paramètre correspondant dans les préférences générales de FreeCAD. + +--- +[documentation index](../README.md) > BIM Setup/fr diff --git a/wiki/translations/fr/BIM_Views.md b/wiki/translations/fr/BIM_Views.md index 0383e4f181..6561b10889 100644 --- a/wiki/translations/fr/BIM_Views.md +++ b/wiki/translations/fr/BIM_Views.md @@ -7,6 +7,8 @@ MenuLocation:Manage → Views --- +# BIM Views/fr + ## Description Le gestionnaire de vues et de niveaux BIM est une fenêtre ancrable qui s\'ouvre sous l\'arborescence normale. Il contient tous les [Parties de bâtiment (niveaux)](Arch_BuildingPart/fr.md) et [Proxy de plan de travail](Draft_WorkingPlaneProxy/fr.md) de votre modèle. @@ -37,3 +39,6 @@ Le gestionnaire de vues BIM affichera tous les niveaux (éléments de constructi }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > BIM Views/fr diff --git a/wiki/translations/fr/BIM_Windows.md b/wiki/translations/fr/BIM_Windows.md index b8b86ffe83..a219bb4ddf 100644 --- a/wiki/translations/fr/BIM_Windows.md +++ b/wiki/translations/fr/BIM_Windows.md @@ -7,6 +7,8 @@ MenuLocation:Manage → Manage doors and windows --- +# BIM Windows/fr + ## Description La boîte de dialogue Gestionnaire de fenêtres BIM vous permet de parcourir et de modifier toutes les [fenêtres et portes](Arch_Window/fr.md) de votre projet. C'est souvent plus pratique que de les éditer un à un et vous permet de vous assurer qu'ils ont tous les paramètres que vous souhaitez définir correctement, tels que balise, dimensions, description ou matériau. @@ -21,3 +23,6 @@ La boîte de dialogue Gestionnaire de fenêtres BIM vous permet de parcourir et }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > BIM Windows/fr diff --git a/wiki/translations/fr/BIM_Workbench.md b/wiki/translations/fr/BIM_Workbench.md index 55ac5e70bf..a363035b3f 100644 --- a/wiki/translations/fr/BIM_Workbench.md +++ b/wiki/translations/fr/BIM_Workbench.md @@ -1,8 +1,4 @@ -# BIM Workbench/fr - - - -Icône de l\'atelier externe BIM +# Icône de l\'atelier externe BIM BIM Workbench/fr {{TOCright}} @@ -187,3 +183,6 @@ De nouveaux ateliers sont en développement, restez à l\'écoute ! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > BIM Workbench/fr diff --git a/wiki/translations/fr/BIM_application_compatibility_table.md b/wiki/translations/fr/BIM_application_compatibility_table.md index 547b21d0d0..f55095c534 100644 --- a/wiki/translations/fr/BIM_application_compatibility_table.md +++ b/wiki/translations/fr/BIM_application_compatibility_table.md @@ -1,6 +1,5 @@ # BIM application compatibility table/fr - - Cette page donne un aperçu général de la façon dont les différents outils et concepts utilisés dans d\'autres applications BIM sont comparables à FreeCAD, plus précisément à l\'[atelier BIM](BIM_Workbench/fr.md). +Cette page donne un aperçu général de la façon dont les différents outils et concepts utilisés dans d\'autres applications BIM sont comparables à FreeCAD, plus précisément à l\'[atelier BIM](BIM_Workbench/fr.md). **A FAIRE :** Ajouter d\'autres applications BIM : Allplan, Tekla, Vectorworks, BricsCAD, et quoi d\'autre ? @@ -16,3 +15,6 @@ **Éléments standard BIM** Murs, structures (poutres, colonnes et dalles), fenêtres (portes et fenêtres), toits, escaliers, cadres (balustrades), équipements (meubles, appareils ménagers, etc.) Murs, poutres, colonnes, sols, plafonds, fenêtres, portes, toits, escaliers, balustrades, composants (meubles, appareils ménagers, etc.) Murs, poutres, colonnes, dalles, fenêtres, portes, toits, escaliers, balustrades, murs rideaux, objets (meubles, appareils ménagers, etc.) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM application compatibility table/fr diff --git a/wiki/translations/fr/BIM_ingame_tutorial.md b/wiki/translations/fr/BIM_ingame_tutorial.md index 6b00eacb88..c0a4ee10d6 100644 --- a/wiki/translations/fr/BIM_ingame_tutorial.md +++ b/wiki/translations/fr/BIM_ingame_tutorial.md @@ -1,8 +1,4 @@ -# BIM ingame tutorial/fr - - - - +# BIM ingame tutorial/fr {{BIMTutorialAction|descr=Il s'agit du tutoriel de l'[atelier BIM](BIM_Workbench/fr.md). Il n'est pas destiné à être lu ici sur le wiki, mais plutôt à être démarré depuis FreeCAD, dans l'atelier BIM, sous le menu '''Aide -> Tutoriel BIM'''. Il comprend une série d'étapes à effectuer par l'utilisateur. Chaque étape se termine par une instance du modèle [{{BIMTutorialAction|descr|goal1|test1|goal2|test2}}](Template:BIMTutorialAction.md) qui informe de la condition qui doit être remplie. Les images doivent avoir une largeur de 300 pixels. Aucune image SVG ne doit être utilisée sur cette page car elles ne sont pas prises en charge par le widget QTextBrowser}} @@ -509,3 +505,6 @@ FreeCAD est un logiciel gratuit, développé par une communauté passionnée d\' {{BIMTutorialAction|descr=Aucune action à effectuer pour cette étape}} [Category:BIM](Category:BIM.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM ingame tutorial/fr diff --git a/wiki/translations/fr/BOLTSFC_Workbench.md b/wiki/translations/fr/BOLTSFC_Workbench.md index 4b664236a4..ec15835cc6 100644 --- a/wiki/translations/fr/BOLTSFC_Workbench.md +++ b/wiki/translations/fr/BOLTSFC_Workbench.md @@ -1,5 +1,5 @@ # BOLTSFC Workbench/fr - } L\'icône de l\'atelier externe BOLTS FreeCAD +} L\'icône de l\'atelier externe BOLTS FreeCAD ## Introduction @@ -72,3 +72,6 @@ est requis. [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > BOLTSFC Workbench/fr diff --git a/wiki/translations/fr/Base_API.md b/wiki/translations/fr/Base_API.md index a280e5d840..9dee834685 100644 --- a/wiki/translations/fr/Base_API.md +++ b/wiki/translations/fr/Base_API.md @@ -1,5 +1,5 @@ # Base API/fr - {{VeryImportantMessage | (octobre 2019) Ne pas éditer cette page. L'information est incomplète et obsolète. Pour la dernière API, voir la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir [Documentation source](Source_documentation/fr.md).}} +{{VeryImportantMessage | (octobre 2019) Ne pas éditer cette page. L'information est incomplète et obsolète. Pour la dernière API, voir la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir [Documentation source](Source_documentation/fr.md).}} Le module de base est contenu à l\'intérieur du module FreeCAD et contient les constructeurs pour différents types d\'objets largement utilisés dans FreeCAD. @@ -18,3 +18,6 @@ Le module de base est contenu à l\'intérieur du module FreeCAD et contient les [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Base API/fr diff --git a/wiki/translations/fr/Basic_Attachment_Tutorial.md b/wiki/translations/fr/Basic_Attachment_Tutorial.md index 48d1d93fd8..3e7f69357f 100644 --- a/wiki/translations/fr/Basic_Attachment_Tutorial.md +++ b/wiki/translations/fr/Basic_Attachment_Tutorial.md @@ -1,7 +1,4 @@ # Basic Attachment Tutorial/fr - - - {{TutorialInfo |Topic=Ancrage |Level= Débutant et intermédiaire @@ -301,3 +298,6 @@ Happy Attaching! }} {{PartDesign_Tools_navi}} {{Sketcher_Tools_navi}} [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > Basic Attachment Tutorial/fr diff --git a/wiki/translations/fr/Basic_Part_Design_Tutorial.md b/wiki/translations/fr/Basic_Part_Design_Tutorial.md index 5464fa67d0..246398aa87 100644 --- a/wiki/translations/fr/Basic_Part_Design_Tutorial.md +++ b/wiki/translations/fr/Basic_Part_Design_Tutorial.md @@ -1,5 +1,5 @@ # Basic Part Design Tutorial/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic=Modélisation |Level=Débutant |Author=Mark Stephen ([Quick61](User:Quick61.md)) et HarryGeier ([HarryGeier](User:HarryGeier.md)) @@ -148,4 +148,7 @@ Ce tutoriel ainsi que votre modèle sont terminés. {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Part Design Tutorial/fr diff --git a/wiki/translations/fr/Basic_Part_Design_Tutorial_017.md b/wiki/translations/fr/Basic_Part_Design_Tutorial_017.md index 6329ae915a..37d827ac26 100644 --- a/wiki/translations/fr/Basic_Part_Design_Tutorial_017.md +++ b/wiki/translations/fr/Basic_Part_Design_Tutorial_017.md @@ -1,2 +1,5 @@ # Basic Part Design Tutorial 017/fr 1. REDIRECT [Basic\_Part\_Design\_Tutorial/fr](Basic_Part_Design_Tutorial/fr.md) + +--- +[documentation index](../README.md) > Basic Part Design Tutorial 017/fr diff --git a/wiki/translations/fr/Basic_Sketcher_Tutorial.md b/wiki/translations/fr/Basic_Sketcher_Tutorial.md index 00477d3788..09d456e844 100644 --- a/wiki/translations/fr/Basic_Sketcher_Tutorial.md +++ b/wiki/translations/fr/Basic_Sketcher_Tutorial.md @@ -1,7 +1,4 @@ # Basic Sketcher Tutorial/fr - - - {{TutorialInfo/fr |Topic= Esquisse |Level= Débutant @@ -293,3 +290,6 @@ Contraindre une esquisse peut se faire de différentes manières. En général, }} {{Sketcher Tools navi}} [Category:Sketcher/fr](Category:Sketcher/fr.md) + +--- +[documentation index](../README.md) > Basic Sketcher Tutorial/fr diff --git a/wiki/translations/fr/Basic_TechDraw_Tutorial.md b/wiki/translations/fr/Basic_TechDraw_Tutorial.md index cf277c4fc3..9b57870609 100644 --- a/wiki/translations/fr/Basic_TechDraw_Tutorial.md +++ b/wiki/translations/fr/Basic_TechDraw_Tutorial.md @@ -1,5 +1,5 @@ # Basic TechDraw Tutorial/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic=Dessin technique |Level=Débutant |Author=[WandererFan](User:WandererFan.md) @@ -132,4 +132,7 @@ Il y a beaucoup plus de fonctionnalités à explorer dans TechDraw: vues en coup {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Basic TechDraw Tutorial/fr diff --git a/wiki/translations/fr/Basic_modeling_tutorial.md b/wiki/translations/fr/Basic_modeling_tutorial.md index cd5b7d8861..e5dfbdc01a 100644 --- a/wiki/translations/fr/Basic_modeling_tutorial.md +++ b/wiki/translations/fr/Basic_modeling_tutorial.md @@ -1,5 +1,5 @@ # Basic modeling tutorial/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic= Introduction à la modélisation |Level= Débutant |Time= 15 minutes @@ -124,4 +124,7 @@ Les instructions ci-dessus fonctionneront, quelle que soit l\'étiquette sur le {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Basic modeling tutorial/fr diff --git a/wiki/translations/fr/Bitmap.md b/wiki/translations/fr/Bitmap.md index 68e3be9765..1e1ef3ba21 100644 --- a/wiki/translations/fr/Bitmap.md +++ b/wiki/translations/fr/Bitmap.md @@ -1,6 +1,4 @@ # Bitmap/fr - - ## Description [Bitmap](https://fr.wikipedia.org/wiki/Bitmap) ou [Image matricielle](https://fr.wikipedia.org/wiki/Image_matricielle) sont des images 2D qui sont une collection de pixels peints de différentes nuances de couleurs. Ensemble, ces milliers ou millions de pixels peuvent représenter une image ou une image couleur pour l'œil humain. @@ -17,3 +15,6 @@ FreeCAD peut importer des images bitmap à l\'aide de [l\'atelier Image](Image_W [Category:User Documentation](Category:User_Documentation.md) [Category:TechDraw](Category:TechDraw.md) [Category:Image](Category:Image.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Bitmap/fr diff --git a/wiki/translations/fr/Body.md b/wiki/translations/fr/Body.md index 4202bc07bb..5006edea71 100644 --- a/wiki/translations/fr/Body.md +++ b/wiki/translations/fr/Body.md @@ -1,6 +1,4 @@ # Body/fr - - ## Introduction Dans FreeCAD, le mot \"[Body](Body/fr.md)\" est normalement utilisé pour faire référence à un objet [PartDesign Corps (Body)](PartDesign_Body/fr.md) (classe `PartDesign::Body`) défini par le [atelier PartDesign](PartDesign_Workbench/fr.md). Il s\'agit d\'un objet conteneur qui peut contenir des [Esquisses 2D](Sketch/fr.md) et des [fonctions géométriques 3D](PartDesign_Feature/fr.md) pour créer une forme solide. @@ -29,3 +27,6 @@ Un corps n\'est pas requis lors de l\'utilisation de [l\'atelier Part](Part_Work }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Body/fr diff --git a/wiki/translations/fr/Branding.md b/wiki/translations/fr/Branding.md index 1758c7ed6e..e8cd6dd7c4 100644 --- a/wiki/translations/fr/Branding.md +++ b/wiki/translations/fr/Branding.md @@ -1,10 +1,4 @@ # Branding/fr - - - - - - {{TOCright}} ## Présentation @@ -100,3 +94,6 @@ Toutes les balises répertoriées sont facultatives. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Branding/fr diff --git a/wiki/translations/fr/Bug_Triage.md b/wiki/translations/fr/Bug_Triage.md index 11d7b9e539..7ce053015e 100644 --- a/wiki/translations/fr/Bug_Triage.md +++ b/wiki/translations/fr/Bug_Triage.md @@ -1,10 +1,4 @@ # Bug Triage/fr - - - - - - {{TOCright}} ## Pourquoi @@ -155,3 +149,6 @@ Une méthodologie importante pour suivre les tickets par sujet/thème/catégorie [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Bug Triage/fr diff --git a/wiki/translations/fr/Builtin_modules.md b/wiki/translations/fr/Builtin_modules.md index 4acf5c94cd..d3477d582d 100644 --- a/wiki/translations/fr/Builtin_modules.md +++ b/wiki/translations/fr/Builtin_modules.md @@ -1,5 +1,5 @@ # Builtin modules/fr - **(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, voir la [https://www.freecadweb.org/api autogenerated API documentation], ou générez vous-même la documentation, voir [Source documentation](Source_documentation/fr.md).** +**(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, voir la [https://www.freecadweb.org/api autogenerated API documentation], ou générez vous-même la documentation, voir [Source documentation](Source_documentation/fr.md).** Cette page présente des informations détaillées sur les modules intégrés dans FreeCAD, et, quelles sont les fonctions, et, propriétés disponibles. @@ -27,3 +27,6 @@ Cette page n\'est pas une liste complète du contenus de ces modules, et, en rai }} [Category:API](Category:API.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Builtin modules/fr diff --git a/wiki/translations/fr/CAM_project.md b/wiki/translations/fr/CAM_project.md index 7607c83b2a..0fc50d5728 100644 --- a/wiki/translations/fr/CAM_project.md +++ b/wiki/translations/fr/CAM_project.md @@ -1,7 +1,10 @@ # CAM project/fr - L\'atelier et le projet CAM sont obsolètes. Voir à la place [Atelier Path](Path_Workbench/fr.md) +L\'atelier et le projet CAM sont obsolètes. Voir à la place [Atelier Path](Path_Workbench/fr.md) [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > CAM project/fr diff --git a/wiki/translations/fr/CadQuery_Workbench.md b/wiki/translations/fr/CadQuery_Workbench.md index bb2866b509..4c5a2bcabc 100644 --- a/wiki/translations/fr/CadQuery_Workbench.md +++ b/wiki/translations/fr/CadQuery_Workbench.md @@ -1,5 +1,4 @@ -# CadQuery Workbench/fr - Icône de l\'atelier CadQuery +# Icône de l\'atelier CadQuery CadQuery Workbench/fr **(Janvier 2021) @@ -58,3 +57,6 @@ La dernière version de CadQuery n\'utilise plus FreeCAD et n\'est pas compatibl [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > CadQuery Workbench/fr diff --git a/wiki/translations/fr/Category:3rd_Party.md b/wiki/translations/fr/Category:3rd_Party.md index 91f3d44559..35f8da818c 100644 --- a/wiki/translations/fr/Category:3rd_Party.md +++ b/wiki/translations/fr/Category:3rd_Party.md @@ -4,3 +4,6 @@ External aka 3rd-Party applications/libraries that FreeCAD depends on or are of ### Contents: [3Dconnexion input devices/fr](3Dconnexion_input_devices/fr.md) , [Developing FreeCAD with GitKraken/fr](Developing_FreeCAD_with_GitKraken/fr.md) , [Developing FreeCAD with KDevelop/fr](Developing_FreeCAD_with_KDevelop/fr.md) , [Doxygen/fr](Doxygen/fr.md) , [IfcOpenShell/fr](IfcOpenShell/fr.md) , [Import/Export IFC - compiling IfcOpenShell/fr](Import/Export_IFC_-_compiling_IfcOpenShell/fr.md) , [NumPy/fr](NumPy/fr.md) , [OpenCamLib/fr](OpenCamLib/fr.md) , [Std DependencyGraph/fr](Std_DependencyGraph/fr.md) , [SweetHome3D/fr](SweetHome3D/fr.md) + +--- +[documentation index](../README.md) > Category:3rd Party/fr diff --git a/wiki/translations/fr/Category:API.md b/wiki/translations/fr/Category:API.md index c7725de7c8..491461af8f 100644 --- a/wiki/translations/fr/Category:API.md +++ b/wiki/translations/fr/Category:API.md @@ -6,3 +6,6 @@ Cette catégorie rassemble les articles qui liste les objets et les méthodes di [Arch API/fr](Arch_API/fr.md) , [Base API/fr](Base_API/fr.md) , [Builtin modules/fr](Builtin_modules/fr.md) , [Console API/fr](Console_API/fr.md) , [Draft API/fr](Draft_API/fr.md) , [FeaturePython Custom Properties/fr](FeaturePython_Custom_Properties/fr.md) , [FreeCAD API/fr](FreeCAD_API/fr.md) , [FreeCADGui API/fr](FreeCADGui_API/fr.md) , [Matrix API/fr](Matrix_API/fr.md) , [Mesh API/fr](Mesh_API/fr.md) , [Object API/fr](Object_API/fr.md) , [Part API/fr](Part_API/fr.md) , [Placement API/fr](Placement_API/fr.md) , [Reinforcement API/fr](Reinforcement_API/fr.md) , [Selection API/fr](Selection_API/fr.md) , [TechDraw API/fr](TechDraw_API/fr.md) , [TechDrawGui API/fr](TechDrawGui_API/fr.md) , [TopoShape API/fr](TopoShape_API/fr.md) , [Vector API/fr](Vector_API/fr.md) , [ViewObject API/fr](ViewObject_API/fr.md) [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:API/fr diff --git a/wiki/translations/fr/Category:API_Documentation.md b/wiki/translations/fr/Category:API_Documentation.md index cc006497d6..23f3d05260 100644 --- a/wiki/translations/fr/Category:API_Documentation.md +++ b/wiki/translations/fr/Category:API_Documentation.md @@ -6,3 +6,6 @@ Cette catégorie regroupe tous les articles documentant l'API python de FreeCAD [Python/fr](Python/fr.md) [Category:Documentation/fr](Category:Documentation/fr.md) + +--- +[documentation index](../README.md) > Category:API Documentation/fr diff --git a/wiki/translations/fr/Category:Addons.md b/wiki/translations/fr/Category:Addons.md index c86bca6499..510690eca7 100644 --- a/wiki/translations/fr/Category:Addons.md +++ b/wiki/translations/fr/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/fr - - Cette page liste les ateliers externes complémentaires (addons) qui disposent d\'une page sur ce wiki. Les ateliers complémentaires sont contribués par la communauté et ne font pas partie de l\'installation standard de FreeCAD. ### Contents: @@ -8,3 +6,6 @@ Cette page liste les ateliers externes complémentaires (addons) qui disposent d [A2plus Workbench/fr](A2plus_Workbench/fr.md) , [Addon/fr](Addon/fr.md) , [Animation Workbench/fr](Animation_Workbench/fr.md) , [Assembly2 Workbench/fr](Assembly2_Workbench/fr.md) , [Assembly3 Workbench/fr](Assembly3_Workbench/fr.md) , [Assembly4 Workbench/fr](Assembly4_Workbench/fr.md) , [BIM Workbench/fr](BIM_Workbench/fr.md) , [BOLTSFC Workbench/fr](BOLTSFC_Workbench/fr.md) , [CadQuery Workbench/fr](CadQuery_Workbench/fr.md) , [Cfd Workbench/fr](Cfd_Workbench/fr.md) , [Civil Engineering Workbench/fr](Civil_Engineering_Workbench/fr.md) , [CurvedShapes Workbench/fr](CurvedShapes_Workbench/fr.md) , [Curves Workbench/fr](Curves_Workbench/fr.md) , [Defeaturing Workbench/fr](Defeaturing_Workbench/fr.md) , [Defeaturing/fr](Defeaturing/fr.md) , [Drawing Dimensioning Addon/fr](Drawing_Dimensioning_Addon/fr.md) , [DynamicData Workbench/fr](DynamicData_Workbench/fr.md) , [ExplodedAssembly Workbench/fr](ExplodedAssembly_Workbench/fr.md) , [External workbenches/fr](External_workbenches/fr.md) , [Fasteners Workbench/fr](Fasteners_Workbench/fr.md) , [FCGear BevelGear/fr](FCGear_BevelGear/fr.md) , [FCGear CrownGear/fr](FCGear_CrownGear/fr.md) , [FCGear CycloideGear/fr](FCGear_CycloideGear/fr.md) , [FCGear InvoluteGear/fr](FCGear_InvoluteGear/fr.md) , [FCGear InvoluteRack/fr](FCGear_InvoluteRack/fr.md) , [FCGear LanternGear/fr](FCGear_LanternGear/fr.md) , [FCGear TimingGear/fr](FCGear_TimingGear/fr.md) , [FCGear Workbench/fr](FCGear_Workbench/fr.md) , [FCGear WormGear/fr](FCGear_WormGear/fr.md) , [FEM FrontISTR Workbench/fr](FEM_FrontISTR_Workbench/fr.md) , [Flamingo Workbench/fr](Flamingo_Workbench/fr.md) , [How to install additional workbenches/fr](How_to_install_additional_workbenches/fr.md) , [KicadStepUp Workbench/fr](KicadStepUp_Workbench/fr.md) , [Lattice2 Workbench/fr](Lattice2_Workbench/fr.md) , [Macro Kerkythea/fr](Macro_Kerkythea/fr.md) , [Macro WorkFeatures/fr](Macro_WorkFeatures/fr.md) , [Manipulator Workbench/fr](Manipulator_Workbench/fr.md) , [ModernUI Workbench/fr](ModernUI_Workbench/fr.md) , [MOOC Workbench/fr](MOOC_Workbench/fr.md) , [OSE 3D Printer Workbench/fr](OSE_3D_Printer_Workbench/fr.md) , [OSE Piping Workbench/fr](OSE_Piping_Workbench/fr.md) , [Parts Library Workbench/fr](Parts_Library_Workbench/fr.md) , [PCB Workbench/fr](PCB_Workbench/fr.md) , [Plot Axes/fr](Plot_Axes/fr.md) , [Plot Basic tutorial/fr](Plot_Basic_tutorial/fr.md) , [Plot Grid/fr](Plot_Grid/fr.md) , [Plot Labels/fr](Plot_Labels/fr.md) , [Plot Legend/fr](Plot_Legend/fr.md) , [Plot Module/fr](Plot_Module/fr.md) , [Plot MultiAxes tutorial/fr](Plot_MultiAxes_tutorial/fr.md) , [Plot Positions/fr](Plot_Positions/fr.md) , [Plot Save/fr](Plot_Save/fr.md) , [Plot Series/fr](Plot_Series/fr.md) , [Pyramids and polyhedrons Workbench/fr](Pyramids_and_polyhedrons_Workbench/fr.md) , [Pyrate Workbench/fr](Pyrate_Workbench/fr.md) , [Reinforcement Workbench/fr](Reinforcement_Workbench/fr.md) , [Render project/fr](Render_project/fr.md) , [Rocket BodyTube/fr](Rocket_BodyTube/fr.md) , [Rocket Bulkhead/fr](Rocket_Bulkhead/fr.md) , [Rocket CenteringRing/fr](Rocket_CenteringRing/fr.md) , [Rocket Ejection Charge Calculator/fr](Rocket_Ejection_Charge_Calculator/fr.md) , [Rocket Fin/fr](Rocket_Fin/fr.md) , [Rocket NoseCone/fr](Rocket_NoseCone/fr.md) , [Rocket Parachute Size Calculator/fr](Rocket_Parachute_Size_Calculator/fr.md) , [Rocket Thrust To Weight Calculator/fr](Rocket_Thrust_To_Weight_Calculator/fr.md) , [Rocket Transition/fr](Rocket_Transition/fr.md) , [Rocket Vent Hole Size Calculator/fr](Rocket_Vent_Hole_Size_Calculator/fr.md) , [Rocket Workbench/fr](Rocket_Workbench/fr.md) , [SheetMetal AddBase/fr](SheetMetal_AddBase/fr.md) , [SheetMetal AddBend/fr](SheetMetal_AddBend/fr.md) , [SheetMetal AddCornerRelief/fr](SheetMetal_AddCornerRelief/fr.md) , [SheetMetal AddFoldWall/fr](SheetMetal_AddFoldWall/fr.md) , [SheetMetal AddJunction/fr](SheetMetal_AddJunction/fr.md) , [SheetMetal AddRelief/fr](SheetMetal_AddRelief/fr.md) , [SheetMetal AddWall/fr](SheetMetal_AddWall/fr.md) , [SheetMetal Extrude/fr](SheetMetal_Extrude/fr.md) , [SheetMetal Forming/fr](SheetMetal_Forming/fr.md) , [SheetMetal SketchOnSheet/fr](SheetMetal_SketchOnSheet/fr.md) , [SheetMetal UnattendedUnfold/fr](SheetMetal_UnattendedUnfold/fr.md) , [SheetMetal Unfold/fr](SheetMetal_Unfold/fr.md) , [SheetMetal Workbench/fr](SheetMetal_Workbench/fr.md) , [Ship Workbench/fr](Ship_Workbench/fr.md) , [Silk Workbench/fr](Silk_Workbench/fr.md) , [Symbols Library Workbench/fr](Symbols_Library_Workbench/fr.md) , [ThreadProfile Workbench/fr](ThreadProfile_Workbench/fr.md) , [Timber Workbench/fr](Timber_Workbench/fr.md) , [WebTools Workbench/fr](WebTools_Workbench/fr.md) , [Workfeature Workbench/fr](Workfeature_Workbench/fr.md) , , [Category:Categories](Category:Categories.md) [Category:External Workbenches/fr](Category:External_Workbenches/fr.md) [Category:FCGear/fr](Category:FCGear/fr.md) + +--- +[documentation index](../README.md) > Category:Addons/fr diff --git a/wiki/translations/fr/Category:Administration.md b/wiki/translations/fr/Category:Administration.md index 1bb47e97dc..9bc63104e7 100644 --- a/wiki/translations/fr/Category:Administration.md +++ b/wiki/translations/fr/Category:Administration.md @@ -8,3 +8,6 @@ Cette catégorie contient les articles, et, les catégories sur le wiki, de tous [Template:Arch Tools navi/fr](Template:Arch_Tools_navi/fr.md) , [Template:Artwork/fr](Template:Artwork/fr.md) , [Bug Triage/fr](Bug_Triage/fr.md) , [Changelog/fr](Changelog/fr.md) , [Crowdin Administration/fr](Crowdin_Administration/fr.md) , [Crowdin Scripts/fr](Crowdin_Scripts/fr.md) , [Template:Document objects navi/fr](Template:Document_objects_navi/fr.md) , [Template:Draft Tools navi/fr](Template:Draft_Tools_navi/fr.md) , [Template:Drawing Tools navi/fr](Template:Drawing_Tools_navi/fr.md) , [Template:EM Tools navi/fr](Template:EM_Tools_navi/fr.md) , [Template:FEM Tools navi/fr](Template:FEM_Tools_navi/fr.md) , [Template:Interface navi/fr](Template:Interface_navi/fr.md) , [Template:LesAutresOutilsDEsquisse](Template:LesAutresOutilsDEsquisse.md) , [Template:LesOutilsDeTransformationsPartDesign](Template:LesOutilsDeTransformationsPartDesign.md) , [Template:LesOutilsPART](Template:LesOutilsPART.md) , [Template:MenuCommand/fr](Template:MenuCommand/fr.md) , [Template:Mesh Tools navi/fr](Template:Mesh_Tools_navi/fr.md) , [Template:Navigation menu 2/fr](Template:Navigation_menu_2/fr.md) , [Template:OngletTache](Template:OngletTache.md) , [Template:OpenSCAD Tools navi/fr](Template:OpenSCAD_Tools_navi/fr.md) , [Organization chart/fr](Organization_chart/fr.md) , [Part Chamfer/ro](Part_Chamfer/ro.md) , [Template:Part Tools navi/fr](Template:Part_Tools_navi/fr.md) , [PartDesign Chamfer/ro](PartDesign_Chamfer/ro.md) , [PartDesign Scaled/fr](PartDesign_Scaled/fr.md) , [Template:PartDesign Tools navi/fr](Template:PartDesign_Tools_navi/fr.md) , [Template:PartOngletVue 2/fr](Template:PartOngletVue_2/fr.md) , [Template:PartOngletVue/fr](Template:PartOngletVue/fr.md) , [Template:Path Tools navi/fr](Template:Path_Tools_navi/fr.md) , [Template:Plot Tools navi/fr](Template:Plot_Tools_navi/fr.md) , [Template:Powerdocnavi/fr](Template:Powerdocnavi/fr.md) , [Template:PropertyData/fr](Template:PropertyData/fr.md) , [Template:PropertyView/fr](Template:PropertyView/fr.md) , [Template:ProprieteDonnees](Template:ProprieteDonnees.md) , [Template:ProprieteVue](Template:ProprieteVue.md) , [Python 3/fr](Python_3/fr.md) , [Template:Raytracing Tools navi/fr](Template:Raytracing_Tools_navi/fr.md) , [Template:Robot Tools navi/fr](Template:Robot_Tools_navi/fr.md) , [Template:Ship Tools navi/fr](Template:Ship_Tools_navi/fr.md) , [Sketcher LeaveSketch/ro](Sketcher_LeaveSketch/ro.md) , [Template:Sketcher Tools navi/fr](Template:Sketcher_Tools_navi/fr.md) , [Template:Spreadsheet Tools navi/fr](Template:Spreadsheet_Tools_navi/fr.md) , [Template:Start Tools navi/fr](Template:Start_Tools_navi/fr.md) , [Template:Std Base navi/fr](Template:Std_Base_navi/fr.md) , [Template:Std Base/fr](Template:Std_Base/fr.md) , [Template:StdMenu/fr](Template:StdMenu/fr.md) , [Template:TechDraw Tools navi/fr](Template:TechDraw_Tools_navi/fr.md) , [Template:TitleProperty/fr](Template:TitleProperty/fr.md) , [Template:TitreProprietes](Template:TitreProprietes.md) , [Template:TitreTache](Template:TitreTache.md) , [Tracker/fr](Tracker/fr.md) , [Template:Tutorials navi/fr](Template:Tutorials_navi/fr.md) , [Template:UnfinishedDocu/fr](Template:UnfinishedDocu/fr.md) , [WikiPages/fr](WikiPages/fr.md) , [WikiRobots/fr](WikiRobots/fr.md) , , [Category:Categories/fr](Category:Categories/fr.md) [Category:UnfinishedDocu/fr](Category:UnfinishedDocu/fr.md) [Category:Wiki/fr](Category:Wiki/fr.md) + +--- +[documentation index](../README.md) > Category:Administration/fr diff --git a/wiki/translations/fr/Category:Arch.md b/wiki/translations/fr/Category:Arch.md index af78bd53e9..fcbb144386 100644 --- a/wiki/translations/fr/Category:Arch.md +++ b/wiki/translations/fr/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Arch 3DS/fr](Arch_3DS/fr.md) , [Arch 3Views/fr](Arch_3Views/fr.md) , [Arch Add/fr](Arch_Add/fr.md) , [Arch API/fr](Arch_API/fr.md) , [Arch Axis/fr](Arch_Axis/fr.md) , [Arch AxisSystem/fr](Arch_AxisSystem/fr.md) , [Arch Building/fr](Arch_Building/fr.md) , [Arch BuildingPart/fr](Arch_BuildingPart/fr.md) , [Arch Check/fr](Arch_Check/fr.md) , [Arch CloneComponent/fr](Arch_CloneComponent/fr.md) , [Arch CloseHoles/fr](Arch_CloseHoles/fr.md) , [Arch CompAxis/fr](Arch_CompAxis/fr.md) , [Arch Component/fr](Arch_Component/fr.md) , [Arch CompPanel/fr](Arch_CompPanel/fr.md) , [Arch CompPipe/fr](Arch_CompPipe/fr.md) , [Arch CompRebarStraight/fr](Arch_CompRebarStraight/fr.md) , [Arch CompSetMaterial/fr](Arch_CompSetMaterial/fr.md) , [Arch CurtainWall/fr](Arch_CurtainWall/fr.md) , [Arch CutLine/fr](Arch_CutLine/fr.md) , [Arch CutPlane/fr](Arch_CutPlane/fr.md) , [Arch DAE/fr](Arch_DAE/fr.md) , [Arch Door/fr](Arch_Door/fr.md) , [Arch Equipment/fr](Arch_Equipment/fr.md) , [Arch Fence/fr](Arch_Fence/fr.md) , [Arch Floor/fr](Arch_Floor/fr.md) , [Arch Frame/fr](Arch_Frame/fr.md) , [Arch Grid/fr](Arch_Grid/fr.md) , [Arch IFC/fr](Arch_IFC/fr.md) , [Arch IfcExplorer/fr](Arch_IfcExplorer/fr.md) , [Arch IfcSpreadsheet/fr](Arch_IfcSpreadsheet/fr.md) , [Arch JSON/fr](Arch_JSON/fr.md) , [Arch MergeWalls/fr](Arch_MergeWalls/fr.md) , [Arch MeshToShape/fr](Arch_MeshToShape/fr.md) , [Arch MultiMaterial/fr](Arch_MultiMaterial/fr.md) , [Arch Nest/fr](Arch_Nest/fr.md) , [Arch OBJ/fr](Arch_OBJ/fr.md) , [Arch Panel Cut/fr](Arch_Panel_Cut/fr.md) , [Arch Panel Sheet/fr](Arch_Panel_Sheet/fr.md) , [Arch panel tutorial/fr](Arch_panel_tutorial/fr.md) , [Arch Panel/fr](Arch_Panel/fr.md) , [Arch Pipe/fr](Arch_Pipe/fr.md) , [Arch PipeConnector/fr](Arch_PipeConnector/fr.md) , [Arch Preferences/fr](Arch_Preferences/fr.md) , [Arch Profile/fr](Arch_Profile/fr.md) , [Arch Project/fr](Arch_Project/fr.md) , [Arch Rebar BeamReinforcement/fr](Arch_Rebar_BeamReinforcement/fr.md) , [Arch Rebar BentShape/fr](Arch_Rebar_BentShape/fr.md) , [Arch Rebar Circular ColumnReinforcement/fr](Arch_Rebar_Circular_ColumnReinforcement/fr.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/fr](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/fr.md) , [Arch Rebar ColumnReinforcement/fr](Arch_Rebar_ColumnReinforcement/fr.md) , [Arch Rebar Dimensioning/fr](Arch_Rebar_Dimensioning/fr.md) , [Arch Rebar Drawing Dimensioning/fr](Arch_Rebar_Drawing_Dimensioning/fr.md) , [Arch Rebar Drawing/fr](Arch_Rebar_Drawing/fr.md) , [Arch Rebar Helical/fr](Arch_Rebar_Helical/fr.md) , [Arch Rebar LShape/fr](Arch_Rebar_LShape/fr.md) , [Arch Rebar Slab Reinforcement/fr](Arch_Rebar_Slab_Reinforcement/fr.md) , [Arch Rebar Stirrup/fr](Arch_Rebar_Stirrup/fr.md) , [Arch Rebar Straight/fr](Arch_Rebar_Straight/fr.md) , [Arch Rebar UShape/fr](Arch_Rebar_UShape/fr.md) , [Arch Rebar/fr](Arch_Rebar/fr.md) , [Arch Reference/fr](Arch_Reference/fr.md) , [Arch Remove/fr](Arch_Remove/fr.md) , [Arch RemoveShape/fr](Arch_RemoveShape/fr.md) , [Arch Roof/fr](Arch_Roof/fr.md) , [Arch Schedule/fr](Arch_Schedule/fr.md) , [Arch SectionPlane/fr](Arch_SectionPlane/fr.md) , [Arch SelectNonSolidMeshes/fr](Arch_SelectNonSolidMeshes/fr.md) , [Arch SetMaterial/fr](Arch_SetMaterial/fr.md) , [Arch SHP/fr](Arch_SHP/fr.md) , [Arch Site/fr](Arch_Site/fr.md) , [Arch Space/fr](Arch_Space/fr.md) , [Arch SplitMesh/fr](Arch_SplitMesh/fr.md) , [Arch Stairs/fr](Arch_Stairs/fr.md) , [Arch Structure/fr](Arch_Structure/fr.md) , [Arch Survey/fr](Arch_Survey/fr.md) , [Arch ToggleIfcBrepFlag/fr](Arch_ToggleIfcBrepFlag/fr.md) , [Arch ToggleSubs/fr](Arch_ToggleSubs/fr.md) , [Template:Arch Tools navi/fr](Template:Arch_Tools_navi/fr.md) , [Arch Truss/fr](Arch_Truss/fr.md) , [Arch tutorial/fr](Arch_tutorial/fr.md) , [Arch Wall/fr](Arch_Wall/fr.md) , [Arch Window/fr](Arch_Window/fr.md) , [Arch Workbench/fr](Arch_Workbench/fr.md) , [Artwork Arch/fr](Artwork_Arch/fr.md) , [BIM Library/fr](BIM_Library/fr.md) , [Custom Spacing/fr](Custom_Spacing/fr.md) , [IfcOpenShell/fr](IfcOpenShell/fr.md) , [IfcPlusPlus/fr](IfcPlusPlus/fr.md) , [Import/Export IFC - compiling IfcOpenShell/fr](Import/Export_IFC_-_compiling_IfcOpenShell/fr.md) , [Manual:BIM modeling/fr](Manual:BIM_modeling/fr.md) , [Material editor/fr](Material_editor/fr.md) , [Material/fr](Material/fr.md) , [Reinforcement Addon/fr](Reinforcement_Addon/fr.md) , [Reinforcement API/fr](Reinforcement_API/fr.md) , [SweetHome3D/fr](SweetHome3D/fr.md) , [Tutorial custom placing of windows and doors/fr](Tutorial_custom_placing_of_windows_and_doors/fr.md) , [Tutorial for open windows/fr](Tutorial_for_open_windows/fr.md) , [Category:User Documentation/fr](Category:User_Documentation/fr.md) [Category:BIM/fr](Category:BIM/fr.md) [Category:Reinforcement/fr](Category:Reinforcement/fr.md) + +--- +[documentation index](../README.md) > Category:Arch/fr diff --git a/wiki/translations/fr/Category:Artwork.md b/wiki/translations/fr/Category:Artwork.md index 7b4a815a4a..d37769bf8e 100644 --- a/wiki/translations/fr/Category:Artwork.md +++ b/wiki/translations/fr/Category:Artwork.md @@ -2,3 +2,6 @@ ### Contents: [Artwork Arch/fr](Artwork_Arch/fr.md) , [Artwork Assembly/fr](Artwork_Assembly/fr.md) , [Artwork Draft/fr](Artwork_Draft/fr.md) , [Artwork Erroneous/fr](Artwork_Erroneous/fr.md) , [Artwork Fem/fr](Artwork_Fem/fr.md) , [Artwork Gui/fr](Artwork_Gui/fr.md) , [Artwork Image/fr](Artwork_Image/fr.md) , [Artwork Inspection/fr](Artwork_Inspection/fr.md) , [Artwork Material/fr](Artwork_Material/fr.md) , [Artwork Mesh/fr](Artwork_Mesh/fr.md) , [Artwork MeshPart/fr](Artwork_MeshPart/fr.md) , [Artwork OpenSCAD/fr](Artwork_OpenSCAD/fr.md) , [Artwork Part/fr](Artwork_Part/fr.md) , [Artwork PartDesign/fr](Artwork_PartDesign/fr.md) , [Artwork Path/fr](Artwork_Path/fr.md) , [Artwork Plot/fr](Artwork_Plot/fr.md) , [Artwork Points/fr](Artwork_Points/fr.md) , [Artwork Raytracing/fr](Artwork_Raytracing/fr.md) , [Artwork ReverseEngineering/fr](Artwork_ReverseEngineering/fr.md) , [Artwork Robot/fr](Artwork_Robot/fr.md) , [Artwork Ship/fr](Artwork_Ship/fr.md) , [Artwork Sketcher/fr](Artwork_Sketcher/fr.md) , [Artwork Splash screen/fr](Artwork_Splash_screen/fr.md) , [Artwork Spreadsheet/fr](Artwork_Spreadsheet/fr.md) , [Artwork Start/fr](Artwork_Start/fr.md) , [Artwork Surface/fr](Artwork_Surface/fr.md) , [Artwork TechDraw/fr](Artwork_TechDraw/fr.md) , [Artwork Web/fr](Artwork_Web/fr.md) , [Artwork/fr](Artwork/fr.md) , [Template:Artwork/fr](Template:Artwork/fr.md) + +--- +[documentation index](../README.md) > Category:Artwork/fr diff --git a/wiki/translations/fr/Category:BIM.md b/wiki/translations/fr/Category:BIM.md index 649b703b90..7cae10abb9 100644 --- a/wiki/translations/fr/Category:BIM.md +++ b/wiki/translations/fr/Category:BIM.md @@ -6,3 +6,6 @@ This category is for pages related to building information management (BIM). [Arch IfcExplorer/fr](Arch_IfcExplorer/fr.md) , [BIM application compatibility table/fr](BIM_application_compatibility_table/fr.md) , [BIM ingame tutorial/fr](BIM_ingame_tutorial/fr.md) , [BIM Library/fr](BIM_Library/fr.md) , [BIM Workbench/fr](BIM_Workbench/fr.md) , [IfcOpenShell/fr](IfcOpenShell/fr.md) , [Import/Export IFC - compiling IfcOpenShell/fr](Import/Export_IFC_-_compiling_IfcOpenShell/fr.md) , [Manual:BIM modeling/fr](Manual:BIM_modeling/fr.md) , [Material/fr](Material/fr.md) , [Category:User Documentation/fr](Category:User_Documentation/fr.md) [Category:Arch/fr](Category:Arch/fr.md) + +--- +[documentation index](../README.md) > Category:BIM/fr diff --git a/wiki/translations/fr/Category:Base.md b/wiki/translations/fr/Category:Base.md index 155bfd0451..f1027285d8 100644 --- a/wiki/translations/fr/Category:Base.md +++ b/wiki/translations/fr/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/fr](Category:User_Documentation/fr.md) + +--- +[documentation index](../README.md) > Category:Base/fr diff --git a/wiki/translations/fr/Category:Categories.md b/wiki/translations/fr/Category:Categories.md index 204acd98e7..05144bf176 100644 --- a/wiki/translations/fr/Category:Categories.md +++ b/wiki/translations/fr/Category:Categories.md @@ -13,3 +13,6 @@ Utilisez les outils suivants pour travailler avec les : [API documentation/fr](API_documentation/fr.md) , , , , , , , , , , , , , , , , , , , , , [Category:Categories/fr](Category:Categories/fr.md) [Category:Addons/fr](Category:Addons/fr.md) [Category:Administration/fr](Category:Administration/fr.md) [Category:API/fr](Category:API/fr.md) [Category:Categories/fr](Category:Categories/fr.md) [Category:Command Reference/fr](Category:Command_Reference/fr.md) [Category:Developer/fr](Category:Developer/fr.md) [Category:Documentation/fr](Category:Documentation/fr.md) [Category:Help/fr](Category:Help/fr.md) [Category:Hubs/fr](Category:Hubs/fr.md) [Category:Icon/fr](Category:Icon/fr.md) [Category:Image/fr](Category:Image/fr.md) [Category:Macros/fr](Category:Macros/fr.md) [Category:News/fr](Category:News/fr.md) [Category:Python Code/fr](Category:Python_Code/fr.md) [Category:Repository/fr](Category:Repository/fr.md) [Category:Roadmap/fr](Category:Roadmap/fr.md) [Category:Sandbox/fr](Category:Sandbox/fr.md) [Category:Template/fr](Category:Template/fr.md) [Category:Tutorials/fr](Category:Tutorials/fr.md) [Category:UnfinishedDocu/fr](Category:UnfinishedDocu/fr.md) [Category:Wiki/fr](Category:Wiki/fr.md) + +--- +[documentation index](../README.md) > Category:Categories/fr diff --git a/wiki/translations/fr/Category:Command_Reference.md b/wiki/translations/fr/Category:Command_Reference.md index 4e010158b6..145ab16a90 100644 --- a/wiki/translations/fr/Category:Command_Reference.md +++ b/wiki/translations/fr/Category:Command_Reference.md @@ -8,3 +8,6 @@ Cette catégorie recense les pages d\'aide de chaque commande de FreeCAD [Comman [Arch 3Views/fr](Arch_3Views/fr.md) , [Arch Add/fr](Arch_Add/fr.md) , [Arch Axis/fr](Arch_Axis/fr.md) , [Arch AxisSystem/fr](Arch_AxisSystem/fr.md) , [Arch Building/fr](Arch_Building/fr.md) , [Arch BuildingPart/fr](Arch_BuildingPart/fr.md) , [Arch Check/fr](Arch_Check/fr.md) , [Arch CloneComponent/fr](Arch_CloneComponent/fr.md) , [Arch CloseHoles/fr](Arch_CloseHoles/fr.md) , [Arch CompAxis/fr](Arch_CompAxis/fr.md) , [Arch Component/fr](Arch_Component/fr.md) , [Arch CompPanel/fr](Arch_CompPanel/fr.md) , [Arch CompPipe/fr](Arch_CompPipe/fr.md) , [Arch CompRebarStraight/fr](Arch_CompRebarStraight/fr.md) , [Arch CompSetMaterial/fr](Arch_CompSetMaterial/fr.md) , [Arch CurtainWall/fr](Arch_CurtainWall/fr.md) , [Arch CutLine/fr](Arch_CutLine/fr.md) , [Arch CutPlane/fr](Arch_CutPlane/fr.md) , [Arch Door/fr](Arch_Door/fr.md) , [Arch Equipment/fr](Arch_Equipment/fr.md) , [Arch Fence/fr](Arch_Fence/fr.md) , [Arch Floor/fr](Arch_Floor/fr.md) , [Arch Frame/fr](Arch_Frame/fr.md) , [Arch Grid/fr](Arch_Grid/fr.md) , [Arch IfcExplorer/fr](Arch_IfcExplorer/fr.md) , [Arch IfcSpreadsheet/fr](Arch_IfcSpreadsheet/fr.md) , [Arch MergeWalls/fr](Arch_MergeWalls/fr.md) , [Arch MeshToShape/fr](Arch_MeshToShape/fr.md) , [Arch MultiMaterial/fr](Arch_MultiMaterial/fr.md) , [Arch Nest/fr](Arch_Nest/fr.md) , [Arch Panel Cut/fr](Arch_Panel_Cut/fr.md) , [Arch Panel Sheet/fr](Arch_Panel_Sheet/fr.md) , [Arch Panel/fr](Arch_Panel/fr.md) , [Arch Pipe/fr](Arch_Pipe/fr.md) , [Arch PipeConnector/fr](Arch_PipeConnector/fr.md) , [Arch Profile/fr](Arch_Profile/fr.md) , [Arch Project/fr](Arch_Project/fr.md) , [Arch Rebar BeamReinforcement/fr](Arch_Rebar_BeamReinforcement/fr.md) , [Arch Rebar BentShape/fr](Arch_Rebar_BentShape/fr.md) , [Arch Rebar BOM/fr](Arch_Rebar_BOM/fr.md) , [Arch Rebar Circular ColumnReinforcement/fr](Arch_Rebar_Circular_ColumnReinforcement/fr.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/fr](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/fr.md) , [Arch Rebar ColumnReinforcement/fr](Arch_Rebar_ColumnReinforcement/fr.md) , [Arch Rebar Dimensioning/fr](Arch_Rebar_Dimensioning/fr.md) , [Arch Rebar Drawing Dimensioning/fr](Arch_Rebar_Drawing_Dimensioning/fr.md) , [Arch Rebar Drawing/fr](Arch_Rebar_Drawing/fr.md) , [Arch Rebar Helical/fr](Arch_Rebar_Helical/fr.md) , [Arch Rebar LShape/fr](Arch_Rebar_LShape/fr.md) , [Arch Rebar Slab Reinforcement/fr](Arch_Rebar_Slab_Reinforcement/fr.md) , [Arch Rebar Stirrup/fr](Arch_Rebar_Stirrup/fr.md) , [Arch Rebar Straight/fr](Arch_Rebar_Straight/fr.md) , [Arch Rebar UShape/fr](Arch_Rebar_UShape/fr.md) , [Arch Rebar/fr](Arch_Rebar/fr.md) , [Arch Reference/fr](Arch_Reference/fr.md) , [Arch Remove/fr](Arch_Remove/fr.md) , [Arch RemoveShape/fr](Arch_RemoveShape/fr.md) , [Arch Roof/fr](Arch_Roof/fr.md) , [Arch Schedule/fr](Arch_Schedule/fr.md) , [Arch SectionPlane/fr](Arch_SectionPlane/fr.md) , [Arch SelectNonSolidMeshes/fr](Arch_SelectNonSolidMeshes/fr.md) , [Arch SetMaterial/fr](Arch_SetMaterial/fr.md) , [Arch Site/fr](Arch_Site/fr.md) , [Arch Space/fr](Arch_Space/fr.md) , [Arch SplitMesh/fr](Arch_SplitMesh/fr.md) , [Arch Stairs/fr](Arch_Stairs/fr.md) , [Arch Structure/fr](Arch_Structure/fr.md) , [Arch Survey/fr](Arch_Survey/fr.md) , [Arch ToggleIfcBrepFlag/fr](Arch_ToggleIfcBrepFlag/fr.md) , [Arch ToggleSubs/fr](Arch_ToggleSubs/fr.md) , [Arch Truss/fr](Arch_Truss/fr.md) , [Arch Wall/fr](Arch_Wall/fr.md) , [Arch Window/fr](Arch_Window/fr.md) , [Assembly3 ConstraintAlignment/fr](Assembly3_ConstraintAlignment/fr.md) , [Assembly3 ConstraintAngle/fr](Assembly3_ConstraintAngle/fr.md) , [Assembly3 ConstraintAttachment/fr](Assembly3_ConstraintAttachment/fr.md) , [Assembly3 ConstraintAxial/fr](Assembly3_ConstraintAxial/fr.md) , [Assembly3 ConstraintCoincidence/fr](Assembly3_ConstraintCoincidence/fr.md) , [Assembly3 ConstraintEqualAngle/fr](Assembly3_ConstraintEqualAngle/fr.md) , [Assembly3 ConstraintEqualLength/fr](Assembly3_ConstraintEqualLength/fr.md) , [Assembly3 ConstraintLengthDifference/fr](Assembly3_ConstraintLengthDifference/fr.md) , [Assembly3 ConstraintLengthEqualPointLineDistance/fr](Assembly3_ConstraintLengthEqualPointLineDistance/fr.md) , [Assembly3 ConstraintLengthRatio/fr](Assembly3_ConstraintLengthRatio/fr.md) , [Assembly3 ConstraintLineHorizontal/fr](Assembly3_ConstraintLineHorizontal/fr.md) , [Assembly3 ConstraintLineLength/fr](Assembly3_ConstraintLineLength/fr.md) , [Assembly3 ConstraintLineVertical/fr](Assembly3_ConstraintLineVertical/fr.md) , [Assembly3 ConstraintLock/fr](Assembly3_ConstraintLock/fr.md) , [Assembly3 ConstraintMore/fr](Assembly3_ConstraintMore/fr.md) , [Assembly3 ConstraintMultiParallel/fr](Assembly3_ConstraintMultiParallel/fr.md) , [Assembly3 ConstraintPerpendicular/fr](Assembly3_ConstraintPerpendicular/fr.md) , [Assembly3 ConstraintPointDistance/fr](Assembly3_ConstraintPointDistance/fr.md) , [Assembly3 ConstraintPointInPlane/fr](Assembly3_ConstraintPointInPlane/fr.md) , [Assembly3 ConstraintPointLineDistance/fr](Assembly3_ConstraintPointLineDistance/fr.md) , [Assembly3 ConstraintPointOnCircle/fr](Assembly3_ConstraintPointOnCircle/fr.md) , [Assembly3 ConstraintPointOnLine/fr](Assembly3_ConstraintPointOnLine/fr.md) , [Assembly3 ConstraintPointPlaneDistance/fr](Assembly3_ConstraintPointPlaneDistance/fr.md) , [Assembly3 ConstraintPointsCoincident/fr](Assembly3_ConstraintPointsCoincident/fr.md) , [Assembly3 ConstraintPointsDistance/fr](Assembly3_ConstraintPointsDistance/fr.md) , [Assembly3 ConstraintPointsHorizontal/fr](Assembly3_ConstraintPointsHorizontal/fr.md) , [Assembly3 ConstraintPointsSymmetric/fr](Assembly3_ConstraintPointsSymmetric/fr.md) , [Assembly3 ConstraintPointsVertical/fr](Assembly3_ConstraintPointsVertical/fr.md) , [Assembly3 ConstraintSameOrientation/fr](Assembly3_ConstraintSameOrientation/fr.md) , [Assembly3 ConstraintSymmetric/fr](Assembly3_ConstraintSymmetric/fr.md) , [Assembly3 ConstraintSymmetricHorizontal/fr](Assembly3_ConstraintSymmetricHorizontal/fr.md) , [Assembly3 ConstraintSymmetricVertical/fr](Assembly3_ConstraintSymmetricVertical/fr.md) , [Assembly3 MeasureAngle/fr](Assembly3_MeasureAngle/fr.md) , [Assembly3 MeasurePointLine/fr](Assembly3_MeasurePointLine/fr.md) , [Assembly3 MeasurePointPlane/fr](Assembly3_MeasurePointPlane/fr.md) , [Assembly3 MeasurePoints/fr](Assembly3_MeasurePoints/fr.md) , [BIM Box/fr](BIM_Box/fr.md) , [BIM Classification/fr](BIM_Classification/fr.md) , [BIM Clone/fr](BIM_Clone/fr.md) , [BIM Copy/fr](BIM_Copy/fr.md) , [BIM IfcElements/fr](BIM_IfcElements/fr.md) , [BIM IfcProperties/fr](BIM_IfcProperties/fr.md) , [BIM IfcQuantities/fr](BIM_IfcQuantities/fr.md) , [BIM Layers/fr](BIM_Layers/fr.md) , [BIM Library/fr](BIM_Library/fr.md) , [BIM Preflight/fr](BIM_Preflight/fr.md) , [BIM Project/fr](BIM_Project/fr.md) , [BIM Setup/fr](BIM_Setup/fr.md) , [BIM Views/fr](BIM_Views/fr.md) , [BIM Windows/fr](BIM_Windows/fr.md) , [CurvedShapes CurvedArray/fr](CurvedShapes_CurvedArray/fr.md) , [Curves CompressionSpring/fr](Curves_CompressionSpring/fr.md) , [Curves Discretize/fr](Curves_Discretize/fr.md) , [Curves EditableSpline/fr](Curves_EditableSpline/fr.md) , [Curves ExtendCurve/fr](Curves_ExtendCurve/fr.md) , [Curves GordonSurface/fr](Curves_GordonSurface/fr.md) , [Curves Interpolate/fr](Curves_Interpolate/fr.md) , [Curves IsoCurve/fr](Curves_IsoCurve/fr.md) , [Curves JoinCurve/fr](Curves_JoinCurve/fr.md) , [Curves Line/fr](Curves_Line/fr.md) , [Curves MultiLoft/fr](Curves_MultiLoft/fr.md) , [Curves ParametricComb/fr](Curves_ParametricComb/fr.md) , [Curves ParametricSolid/fr](Curves_ParametricSolid/fr.md) , [Curves PasteSVG/fr](Curves_PasteSVG/fr.md) , [Curves Pipeshell/fr](Curves_Pipeshell/fr.md) , [Curves PipeshellProfile/fr](Curves_PipeshellProfile/fr.md) , [Curves ProfileSupport/fr](Curves_ProfileSupport/fr.md) , [Curves ReflectLines/fr](Curves_ReflectLines/fr.md) , [Curves SegmentSurface/fr](Curves_SegmentSurface/fr.md) , [Curves SketchOnSurface/fr](Curves_SketchOnSurface/fr.md) , [Curves SplitCurve/fr](Curves_SplitCurve/fr.md) , [Curves ToConsole/fr](Curves_ToConsole/fr.md) , [Curves ZebraTool/fr](Curves_ZebraTool/fr.md) , [Draft AddConstruction/fr](Draft_AddConstruction/fr.md) , [Draft AddToGroup/fr](Draft_AddToGroup/fr.md) , [Draft AnnotationStyleEditor/fr](Draft_AnnotationStyleEditor/fr.md) , [Draft ApplyStyle/fr](Draft_ApplyStyle/fr.md) , [Draft Arc 3Points/fr](Draft_Arc_3Points/fr.md) , [Draft Arc/fr](Draft_Arc/fr.md) , [Draft Array/fr](Draft_Array/fr.md) , [Draft AutoGroup/fr](Draft_AutoGroup/fr.md) , [Draft BezCurve/fr](Draft_BezCurve/fr.md) , [Draft BSpline/fr](Draft_BSpline/fr.md) , [Draft Circle/fr](Draft_Circle/fr.md) , [Draft CircularArray/fr](Draft_CircularArray/fr.md) , [Draft Clone/fr](Draft_Clone/fr.md) , [Draft CubicBezCurve/fr](Draft_CubicBezCurve/fr.md) , [Draft Dimension/fr](Draft_Dimension/fr.md) , [Draft Downgrade/fr](Draft_Downgrade/fr.md) , [Draft Draft2Sketch/fr](Draft_Draft2Sketch/fr.md) , [Draft Drawing/fr](Draft_Drawing/fr.md) , [Draft Edit/fr](Draft_Edit/fr.md) , [Draft Ellipse/fr](Draft_Ellipse/fr.md) , [Draft Facebinder/fr](Draft_Facebinder/fr.md) , [Draft Fillet/fr](Draft_Fillet/fr.md) , [Draft FlipDimension/fr](Draft_FlipDimension/fr.md) , [Draft Heal/fr](Draft_Heal/fr.md) , [Draft Join/fr](Draft_Join/fr.md) , [Draft Label/fr](Draft_Label/fr.md) , [Draft Layer/fr](Draft_Layer/fr.md) , [Draft Line/fr](Draft_Line/fr.md) , [Draft Mirror/fr](Draft_Mirror/fr.md) , [Draft Move/fr](Draft_Move/fr.md) , [Draft Offset/fr](Draft_Offset/fr.md) , [Draft OrthoArray/fr](Draft_OrthoArray/fr.md) , [Draft PathArray/fr](Draft_PathArray/fr.md) , [Draft PathLinkArray/fr](Draft_PathLinkArray/fr.md) , [Draft Point/fr](Draft_Point/fr.md) , [Draft PointArray/fr](Draft_PointArray/fr.md) , [Draft PointLinkArray/fr](Draft_PointLinkArray/fr.md) , [Draft PolarArray/fr](Draft_PolarArray/fr.md) , [Draft Polygon/fr](Draft_Polygon/fr.md) , [Draft Rectangle/fr](Draft_Rectangle/fr.md) , [Draft Rotate/fr](Draft_Rotate/fr.md) , [Draft Scale/fr](Draft_Scale/fr.md) , [Draft SelectGroup/fr](Draft_SelectGroup/fr.md) , [Draft SelectPlane/fr](Draft_SelectPlane/fr.md) , [Draft SetStyle/fr](Draft_SetStyle/fr.md) , [Draft Shape2DView/fr](Draft_Shape2DView/fr.md) , [Draft ShapeString/fr](Draft_ShapeString/fr.md) , [Draft ShowSnapBar/fr](Draft_ShowSnapBar/fr.md) , [Draft Slope/fr](Draft_Slope/fr.md) , [Draft Snap Angle/fr](Draft_Snap_Angle/fr.md) , [Draft Snap Center/fr](Draft_Snap_Center/fr.md) , [Draft Snap Dimensions/fr](Draft_Snap_Dimensions/fr.md) , [Draft Snap Endpoint/fr](Draft_Snap_Endpoint/fr.md) , [Draft Snap Extension/fr](Draft_Snap_Extension/fr.md) , [Draft Snap Grid/fr](Draft_Snap_Grid/fr.md) , [Draft Snap Intersection/fr](Draft_Snap_Intersection/fr.md) , [Draft Snap Lock/fr](Draft_Snap_Lock/fr.md) , [Draft Snap Midpoint/fr](Draft_Snap_Midpoint/fr.md) , [Draft Snap Near/fr](Draft_Snap_Near/fr.md) , [Draft Snap Ortho/fr](Draft_Snap_Ortho/fr.md) , [Draft Snap Parallel/fr](Draft_Snap_Parallel/fr.md) , [Draft Snap Perpendicular/fr](Draft_Snap_Perpendicular/fr.md) , [Draft Snap Special/fr](Draft_Snap_Special/fr.md) , [Draft Snap WorkingPlane/fr](Draft_Snap_WorkingPlane/fr.md) , [Draft Split/fr](Draft_Split/fr.md) , [Draft Stretch/fr](Draft_Stretch/fr.md) , [Draft SubelementHighlight/fr](Draft_SubelementHighlight/fr.md) , [Draft Text/fr](Draft_Text/fr.md) , [Draft ToggleConstructionMode/fr](Draft_ToggleConstructionMode/fr.md) , [Draft ToggleContinueMode/fr](Draft_ToggleContinueMode/fr.md) , [Draft ToggleDisplayMode/fr](Draft_ToggleDisplayMode/fr.md) , [Draft ToggleGrid/fr](Draft_ToggleGrid/fr.md) , [Draft Trimex/fr](Draft_Trimex/fr.md) , [Draft Upgrade/fr](Draft_Upgrade/fr.md) , [Draft Wire/fr](Draft_Wire/fr.md) , [Draft WireToBSpline/fr](Draft_WireToBSpline/fr.md) , [Draft WorkingPlaneProxy/fr](Draft_WorkingPlaneProxy/fr.md) , [Drawing Annotation/fr](Drawing_Annotation/fr.md) , [Drawing Clip/fr](Drawing_Clip/fr.md) , [Drawing Landscape A3/fr](Drawing_Landscape_A3/fr.md) , [Drawing Open SVG/fr](Drawing_Open_SVG/fr.md) , [Drawing Openbrowser/fr](Drawing_Openbrowser/fr.md) , [Drawing Orthoviews/fr](Drawing_Orthoviews/fr.md) , [Drawing ProjectShape/fr](Drawing_ProjectShape/fr.md) , [Drawing Save/fr](Drawing_Save/fr.md) , [Drawing SpreadsheetView/fr](Drawing_SpreadsheetView/fr.md) , [Drawing Symbol/fr](Drawing_Symbol/fr.md) , [Drawing View/fr](Drawing_View/fr.md) , [EM FHEquiv/fr](EM_FHEquiv/fr.md) , [EM FHInputFile/fr](EM_FHInputFile/fr.md) , [EM FHNode/fr](EM_FHNode/fr.md) , [EM FHPath/fr](EM_FHPath/fr.md) , [EM FHPlane/fr](EM_FHPlane/fr.md) , [EM FHPlaneAddRemoveNodeHole/fr](EM_FHPlaneAddRemoveNodeHole/fr.md) , [EM FHPlaneHole/fr](EM_FHPlaneHole/fr.md) , [EM FHPort/fr](EM_FHPort/fr.md) , [EM FHSegment/fr](EM_FHSegment/fr.md) , [EM FHSolver/fr](EM_FHSolver/fr.md) , [Fasteners BOM/fr](Fasteners_BOM/fr.md) , [FCGear BevelGear/fr](FCGear_BevelGear/fr.md) , [FCGear CrownGear/fr](FCGear_CrownGear/fr.md) , [FCGear CycloideGear/fr](FCGear_CycloideGear/fr.md) , [FCGear InvoluteGear/fr](FCGear_InvoluteGear/fr.md) , [FCGear InvoluteRack/fr](FCGear_InvoluteRack/fr.md) , [FCGear LanternGear/fr](FCGear_LanternGear/fr.md) , [FCGear TimingGear/fr](FCGear_TimingGear/fr.md) , [FCGear WormGear/fr](FCGear_WormGear/fr.md) , [FEM Analysis/fr](FEM_Analysis/fr.md) , [FEM ClippingPlaneAdd/fr](FEM_ClippingPlaneAdd/fr.md) , [FEM ClippingPlaneRemoveAll/fr](FEM_ClippingPlaneRemoveAll/fr.md) , [FEM ConstantVacuumPermittivity/fr](FEM_ConstantVacuumPermittivity/fr.md) , [FEM ConstraintBearing/fr](FEM_ConstraintBearing/fr.md) , [FEM ConstraintBodyHeatSource/fr](FEM_ConstraintBodyHeatSource/fr.md) , [FEM ConstraintContact/fr](FEM_ConstraintContact/fr.md) , [FEM ConstraintDisplacement/fr](FEM_ConstraintDisplacement/fr.md) , [FEM ConstraintElectrostaticPotential/fr](FEM_ConstraintElectrostaticPotential/fr.md) , [FEM ConstraintFixed/fr](FEM_ConstraintFixed/fr.md) , [FEM ConstraintFlowVelocity/fr](FEM_ConstraintFlowVelocity/fr.md) , [FEM ConstraintFluidBoundary/fr](FEM_ConstraintFluidBoundary/fr.md) , [FEM ConstraintForce/fr](FEM_ConstraintForce/fr.md) , [FEM ConstraintGear/fr](FEM_ConstraintGear/fr.md) , [FEM ConstraintHeatflux/fr](FEM_ConstraintHeatflux/fr.md) , [FEM ConstraintInitialFlowVelocity/fr](FEM_ConstraintInitialFlowVelocity/fr.md) , [FEM ConstraintInitialTemperature/fr](FEM_ConstraintInitialTemperature/fr.md) , [FEM ConstraintPlaneRotation/fr](FEM_ConstraintPlaneRotation/fr.md) , [FEM ConstraintPressure/fr](FEM_ConstraintPressure/fr.md) , [FEM ConstraintPulley/fr](FEM_ConstraintPulley/fr.md) , [FEM ConstraintSectionPrint/fr](FEM_ConstraintSectionPrint/fr.md) , [FEM ConstraintSelfWeight/fr](FEM_ConstraintSelfWeight/fr.md) , [FEM ConstraintTemperature/fr](FEM_ConstraintTemperature/fr.md) , [FEM ConstraintTie/fr](FEM_ConstraintTie/fr.md) , [FEM ConstraintTransform/fr](FEM_ConstraintTransform/fr.md) , [FEM CreateNodesSet/fr](FEM_CreateNodesSet/fr.md) , [FEM ElementFluid1D/fr](FEM_ElementFluid1D/fr.md) , [FEM ElementGeometry1D/fr](FEM_ElementGeometry1D/fr.md) , [FEM ElementGeometry2D/fr](FEM_ElementGeometry2D/fr.md) , [FEM ElementRotation1D/fr](FEM_ElementRotation1D/fr.md) , [FEM EquationElasticity/fr](FEM_EquationElasticity/fr.md) , [FEM EquationElectricforce/fr](FEM_EquationElectricforce/fr.md) , [FEM EquationElectrostatic/fr](FEM_EquationElectrostatic/fr.md) , [FEM EquationFlow/fr](FEM_EquationFlow/fr.md) , [FEM EquationFlux/fr](FEM_EquationFlux/fr.md) , [FEM EquationHeat/fr](FEM_EquationHeat/fr.md) , [FEM Examples/fr](FEM_Examples/fr.md) , [FEM FemMesh2Mesh/fr](FEM_FemMesh2Mesh/fr.md) , [FEM MaterialFluid/fr](FEM_MaterialFluid/fr.md) , [FEM MaterialMechanicalNonlinear/fr](FEM_MaterialMechanicalNonlinear/fr.md) , [FEM MaterialReinforced/fr](FEM_MaterialReinforced/fr.md) , [FEM MaterialSolid/fr](FEM_MaterialSolid/fr.md) , [FEM MeshBoundaryLayer/fr](FEM_MeshBoundaryLayer/fr.md) , [FEM MeshClear/fr](FEM_MeshClear/fr.md) , [FEM MeshDisplayInfo/fr](FEM_MeshDisplayInfo/fr.md) , [FEM MeshGmshFromShape/fr](FEM_MeshGmshFromShape/fr.md) , [FEM MeshGroup/fr](FEM_MeshGroup/fr.md) , [FEM MeshNetgenFromShape/fr](FEM_MeshNetgenFromShape/fr.md) , [FEM MeshRegion/fr](FEM_MeshRegion/fr.md) , [FEM PostApplyChanges/fr](FEM_PostApplyChanges/fr.md) , [FEM PostCreateFunctions/fr](FEM_PostCreateFunctions/fr.md) , [FEM PostFilterClipRegion/fr](FEM_PostFilterClipRegion/fr.md) , [FEM PostFilterClipScalar/fr](FEM_PostFilterClipScalar/fr.md) , [FEM PostFilterCutFunction/fr](FEM_PostFilterCutFunction/fr.md) , [FEM PostFilterDataAlongLine/fr](FEM_PostFilterDataAlongLine/fr.md) , [FEM PostFilterDataAtPoint/fr](FEM_PostFilterDataAtPoint/fr.md) , [FEM PostFilterLinearizedStresses/fr](FEM_PostFilterLinearizedStresses/fr.md) , [FEM PostFilterWarp/fr](FEM_PostFilterWarp/fr.md) , [FEM PostPipelineFromResult/fr](FEM_PostPipelineFromResult/fr.md) , [FEM ResultShow/fr](FEM_ResultShow/fr.md) , [FEM ResultsPurge/fr](FEM_ResultsPurge/fr.md) , [FEM SolverCalculiX/fr](FEM_SolverCalculiX/fr.md) , [FEM SolverCalculixCxxtools/fr](FEM_SolverCalculixCxxtools/fr.md) , [FEM SolverControl/fr](FEM_SolverControl/fr.md) , [FEM SolverElmer/fr](FEM_SolverElmer/fr.md) , [FEM SolverRun/fr](FEM_SolverRun/fr.md) , [FEM SolverZ88/fr](FEM_SolverZ88/fr.md) , [GuiCommand model/fr](GuiCommand_model/fr.md) , [Template:GuiCommand/fr](Template:GuiCommand/fr.md) , [Template:GuiCommandAddon/fr](Template:GuiCommandAddon/fr.md) , [Image CreateImagePlane/fr](Image_CreateImagePlane/fr.md) , [Image Open/fr](Image_Open/fr.md) , [Image Scaling/fr](Image_Scaling/fr.md) , [Lattice2 AttachablePlacement/fr](Lattice2_AttachablePlacement/fr.md) , [Material editor/fr](Material_editor/fr.md) , [Mesh AddFacet/fr](Mesh_AddFacet/fr.md) , [Mesh BoundingBox/fr](Mesh_BoundingBox/fr.md) , [Mesh BuildRegularSolid/fr](Mesh_BuildRegularSolid/fr.md) , [Mesh CrossSections/fr](Mesh_CrossSections/fr.md) , [Mesh CurvatureInfo/fr](Mesh_CurvatureInfo/fr.md) , [Mesh Decimating/fr](Mesh_Decimating/fr.md) , [Mesh Difference/fr](Mesh_Difference/fr.md) , [Mesh EvaluateFacet/fr](Mesh_EvaluateFacet/fr.md) , [Mesh EvaluateSolid/fr](Mesh_EvaluateSolid/fr.md) , [Mesh Evaluation/fr](Mesh_Evaluation/fr.md) , [Mesh Export/fr](Mesh_Export/fr.md) , [Mesh FillInteractiveHole/fr](Mesh_FillInteractiveHole/fr.md) , [Mesh FillupHoles/fr](Mesh_FillupHoles/fr.md) , [Mesh FlipNormals/fr](Mesh_FlipNormals/fr.md) , [Mesh FromPartShape/fr](Mesh_FromPartShape/fr.md) , [Mesh HarmonizeNormals/fr](Mesh_HarmonizeNormals/fr.md) , [Mesh Import/fr](Mesh_Import/fr.md) , [Mesh Intersection/fr](Mesh_Intersection/fr.md) , [Mesh Merge/fr](Mesh_Merge/fr.md) , [Mesh PolyCut/fr](Mesh_PolyCut/fr.md) , [Mesh PolyTrim/fr](Mesh_PolyTrim/fr.md) , [Mesh RemeshGmsh/fr](Mesh_RemeshGmsh/fr.md) , [Mesh RemoveCompByHand/fr](Mesh_RemoveCompByHand/fr.md) , [Mesh RemoveComponents/fr](Mesh_RemoveComponents/fr.md) , [Mesh Scale/fr](Mesh_Scale/fr.md) , [Mesh SectionByPlane/fr](Mesh_SectionByPlane/fr.md) , [Mesh Segmentation/fr](Mesh_Segmentation/fr.md) , [Mesh SegmentationBestFit/fr](Mesh_SegmentationBestFit/fr.md) , [Mesh Smoothing/fr](Mesh_Smoothing/fr.md) , [Mesh SplitComponents/fr](Mesh_SplitComponents/fr.md) , [Mesh TrimByPlane/fr](Mesh_TrimByPlane/fr.md) , [Mesh Union/fr](Mesh_Union/fr.md) , [Mesh VertexCurvature/fr](Mesh_VertexCurvature/fr.md) , [MeshPart CreateFlatFace/fr](MeshPart_CreateFlatFace/fr.md) , [MeshPart CreateFlatMesh/fr](MeshPart_CreateFlatMesh/fr.md) , [OpenSCAD AddOpenSCADElement/fr](OpenSCAD_AddOpenSCADElement/fr.md) , [OpenSCAD ColorCodeShape/fr](OpenSCAD_ColorCodeShape/fr.md) , [OpenSCAD Edgestofaces/fr](OpenSCAD_Edgestofaces/fr.md) , [OpenSCAD ExpandPlacements/fr](OpenSCAD_ExpandPlacements/fr.md) , [OpenSCAD ExplodeGroup/fr](OpenSCAD_ExplodeGroup/fr.md) , [OpenSCAD Hull/fr](OpenSCAD_Hull/fr.md) , [OpenSCAD IncreaseToleranceFeature/fr](OpenSCAD_IncreaseToleranceFeature/fr.md) , [OpenSCAD MeshBoolean/fr](OpenSCAD_MeshBoolean/fr.md) , [OpenSCAD Minkowski/fr](OpenSCAD_Minkowski/fr.md) , [OpenSCAD MirrorMeshFeature/fr](OpenSCAD_MirrorMeshFeature/fr.md) , [OpenSCAD RefineShapeFeature/fr](OpenSCAD_RefineShapeFeature/fr.md) , [OpenSCAD RemoveSubtree/fr](OpenSCAD_RemoveSubtree/fr.md) , [OpenSCAD ReplaceObject/fr](OpenSCAD_ReplaceObject/fr.md) , [OpenSCAD ResizeMeshFeature/fr](OpenSCAD_ResizeMeshFeature/fr.md) , [OpenSCAD ScaleMeshFeature/fr](OpenSCAD_ScaleMeshFeature/fr.md) , [Part Boolean/fr](Part_Boolean/fr.md) , [Part BooleanFragments/fr](Part_BooleanFragments/fr.md) , [Part Box/fr](Part_Box/fr.md) , [Part BoxSelection/fr](Part_BoxSelection/fr.md) , [Part Builder/fr](Part_Builder/fr.md) , [Part Chamfer/fr](Part_Chamfer/fr.md) , [Part CheckGeometry/fr](Part_CheckGeometry/fr.md) , [Part Circle/fr](Part_Circle/fr.md) , [Part Common/fr](Part_Common/fr.md) , [Part CompCompoundTools/fr](Part_CompCompoundTools/fr.md) , [Part CompJoinFeatures/fr](Part_CompJoinFeatures/fr.md) , [Part CompOffsetTools/fr](Part_CompOffsetTools/fr.md) , [Part Compound/fr](Part_Compound/fr.md) , [Part CompoundFilter/fr](Part_CompoundFilter/fr.md) , [Part CompSplittingTools/fr](Part_CompSplittingTools/fr.md) , [Part Cone/fr](Part_Cone/fr.md) , [Part CrossSections/fr](Part_CrossSections/fr.md) , [Part Cut/fr](Part_Cut/fr.md) , [Part Cylinder/fr](Part_Cylinder/fr.md) , [Part Defeaturing/fr](Part_Defeaturing/fr.md) , [Part EditAttachment/fr](Part_EditAttachment/fr.md) , [Part ElementCopy/fr](Part_ElementCopy/fr.md) , [Part Ellipse/fr](Part_Ellipse/fr.md) , [Part Ellipsoid/fr](Part_Ellipsoid/fr.md) , [Part ExplodeCompound/fr](Part_ExplodeCompound/fr.md) , [Part Export/fr](Part_Export/fr.md) , [Part Extrude/fr](Part_Extrude/fr.md) , [Part FaceColors/fr](Part_FaceColors/fr.md) , [Part Fillet/fr](Part_Fillet/fr.md) , [Part Fuse/fr](Part_Fuse/fr.md) , [Part Helix/fr](Part_Helix/fr.md) , [Part Import/fr](Part_Import/fr.md) , [Part JoinConnect/fr](Part_JoinConnect/fr.md) , [Part JoinCutout/fr](Part_JoinCutout/fr.md) , [Part JoinEmbed/fr](Part_JoinEmbed/fr.md) , [Part Line/fr](Part_Line/fr.md) , [Part Loft/fr](Part_Loft/fr.md) , [Part MakeFace/fr](Part_MakeFace/fr.md) , [Part MakeSolid/fr](Part_MakeSolid/fr.md) , [Part Measure Angular/fr](Part_Measure_Angular/fr.md) , [Part Measure Clear All/fr](Part_Measure_Clear_All/fr.md) , [Part Measure Linear/fr](Part_Measure_Linear/fr.md) , [Part Measure Menu/fr](Part_Measure_Menu/fr.md) , [Part Measure Refresh/fr](Part_Measure_Refresh/fr.md) , [Part Measure Toggle 3d/fr](Part_Measure_Toggle_3d/fr.md) , [Part Measure Toggle All/fr](Part_Measure_Toggle_All/fr.md) , [Part Measure Toggle Delta/fr](Part_Measure_Toggle_Delta/fr.md) , [Part Mirror/fr](Part_Mirror/fr.md) , [Part Offset/fr](Part_Offset/fr.md) , [Part Offset2D/fr](Part_Offset2D/fr.md) , [Part Plane/fr](Part_Plane/fr.md) , [Part Point/fr](Part_Point/fr.md) , [Part PointsFromMesh/fr](Part_PointsFromMesh/fr.md) , [Part Primitives/fr](Part_Primitives/fr.md) , [Part Prism/fr](Part_Prism/fr.md) , [Part ProjectionOnSurface/fr](Part_ProjectionOnSurface/fr.md) , [Part RefineShape/fr](Part_RefineShape/fr.md) , [Part RegularPolygon/fr](Part_RegularPolygon/fr.md) , [Part ReverseShapes/fr](Part_ReverseShapes/fr.md) , [Part Revolve/fr](Part_Revolve/fr.md) , [Part RuledSurface/fr](Part_RuledSurface/fr.md) , [Part Section/fr](Part_Section/fr.md) , [Part ShapeFromMesh/fr](Part_ShapeFromMesh/fr.md) , [Part SimpleCopy/fr](Part_SimpleCopy/fr.md) , [Part Slice/fr](Part_Slice/fr.md) , [Part SliceApart/fr](Part_SliceApart/fr.md) , [Part Sphere/fr](Part_Sphere/fr.md) , [Part Spiral/fr](Part_Spiral/fr.md) , [Part Sweep/fr](Part_Sweep/fr.md) , [Part Thickness/fr](Part_Thickness/fr.md) , [Part Torus/fr](Part_Torus/fr.md) , [Part TransformedCopy/fr](Part_TransformedCopy/fr.md) , [Part Tube/fr](Part_Tube/fr.md) , [Part Wedge/fr](Part_Wedge/fr.md) , [Part XOR/fr](Part_XOR/fr.md) , [PartDesign AdditiveBox/fr](PartDesign_AdditiveBox/fr.md) , [PartDesign AdditiveCone/fr](PartDesign_AdditiveCone/fr.md) , [PartDesign AdditiveCylinder/fr](PartDesign_AdditiveCylinder/fr.md) , [PartDesign AdditiveEllipsoid/fr](PartDesign_AdditiveEllipsoid/fr.md) , [PartDesign AdditiveHelix/fr](PartDesign_AdditiveHelix/fr.md) , [PartDesign AdditiveLoft/fr](PartDesign_AdditiveLoft/fr.md) , [PartDesign AdditivePipe/fr](PartDesign_AdditivePipe/fr.md) , [PartDesign AdditivePrism/fr](PartDesign_AdditivePrism/fr.md) , [PartDesign AdditiveSphere/fr](PartDesign_AdditiveSphere/fr.md) , [PartDesign AdditiveTorus/fr](PartDesign_AdditiveTorus/fr.md) , [PartDesign AdditiveWedge/fr](PartDesign_AdditiveWedge/fr.md) , [PartDesign Body/fr](PartDesign_Body/fr.md) , [PartDesign Boolean/fr](PartDesign_Boolean/fr.md) , [PartDesign Chamfer/fr](PartDesign_Chamfer/fr.md) , [PartDesign Clone/fr](PartDesign_Clone/fr.md) , [PartDesign CompPrimitiveAdditive/fr](PartDesign_CompPrimitiveAdditive/fr.md) , [PartDesign CompPrimitiveSubtractive/fr](PartDesign_CompPrimitiveSubtractive/fr.md) , [PartDesign CoordinateSystem/fr](PartDesign_CoordinateSystem/fr.md) , [PartDesign Draft/fr](PartDesign_Draft/fr.md) , [PartDesign Fillet/fr](PartDesign_Fillet/fr.md) , [PartDesign Groove/fr](PartDesign_Groove/fr.md) , [PartDesign Hole/fr](PartDesign_Hole/fr.md) , [PartDesign InvoluteGear/fr](PartDesign_InvoluteGear/fr.md) , [PartDesign Line/fr](PartDesign_Line/fr.md) , [PartDesign LinearPattern/fr](PartDesign_LinearPattern/fr.md) , [PartDesign Migrate/fr](PartDesign_Migrate/fr.md) , [PartDesign Mirrored/fr](PartDesign_Mirrored/fr.md) , [PartDesign MoveFeature/fr](PartDesign_MoveFeature/fr.md) , [PartDesign MoveFeatureInTree/fr](PartDesign_MoveFeatureInTree/fr.md) , [PartDesign MoveTip/fr](PartDesign_MoveTip/fr.md) , [PartDesign MultiTransform/fr](PartDesign_MultiTransform/fr.md) , [PartDesign NewSketch/fr](PartDesign_NewSketch/fr.md) , [PartDesign Pad/fr](PartDesign_Pad/fr.md) , [PartDesign Plane/fr](PartDesign_Plane/fr.md) , [PartDesign Pocket/fr](PartDesign_Pocket/fr.md) , [PartDesign Point/fr](PartDesign_Point/fr.md) , [PartDesign PolarPattern/fr](PartDesign_PolarPattern/fr.md) , [PartDesign Revolution/fr](PartDesign_Revolution/fr.md) , [PartDesign Scaled/fr](PartDesign_Scaled/fr.md) , [PartDesign ShapeBinder/fr](PartDesign_ShapeBinder/fr.md) , [PartDesign Sprocket/fr](PartDesign_Sprocket/fr.md) , [PartDesign SubShapeBinder/fr](PartDesign_SubShapeBinder/fr.md) , [PartDesign SubtractiveBox/fr](PartDesign_SubtractiveBox/fr.md) , [PartDesign SubtractiveCone/fr](PartDesign_SubtractiveCone/fr.md) , [PartDesign SubtractiveCylinder/fr](PartDesign_SubtractiveCylinder/fr.md) , [PartDesign SubtractiveEllipsoid/fr](PartDesign_SubtractiveEllipsoid/fr.md) , [PartDesign SubtractiveHelix/fr](PartDesign_SubtractiveHelix/fr.md) , [PartDesign SubtractiveLoft/fr](PartDesign_SubtractiveLoft/fr.md) [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:Command Reference/fr diff --git a/wiki/translations/fr/Category:Common_Questions.md b/wiki/translations/fr/Category:Common_Questions.md index 18254460f8..990f03e3a6 100644 --- a/wiki/translations/fr/Category:Common_Questions.md +++ b/wiki/translations/fr/Category:Common_Questions.md @@ -4,3 +4,6 @@ This category has links to common questions on how to do something in FC. This i ### Contents: [Constructive solid geometry/fr](Constructive_solid_geometry/fr.md) , [Feature editing/fr](Feature_editing/fr.md) , [FreeCAD and DWG Import/fr](FreeCAD_and_DWG_Import/fr.md) , [FreeCAD used in production/fr](FreeCAD_used_in_production/fr.md) , [Help FreeCAD/fr](Help_FreeCAD/fr.md) , [Import Export Preferences/fr](Import_Export_Preferences/fr.md) , [Importing From Sketchup/fr](Importing_From_Sketchup/fr.md) , [Installing on Linux/fr](Installing_on_Linux/fr.md) , [Std About/fr](Std_About/fr.md) , [Topological naming problem/fr](Topological_naming_problem/fr.md) , [Video tutorials/fr](Video_tutorials/fr.md) + +--- +[documentation index](../README.md) > Category:Common Questions/fr diff --git a/wiki/translations/fr/Category:Complete.md b/wiki/translations/fr/Category:Complete.md index 0d6e848290..40713d5c9f 100644 --- a/wiki/translations/fr/Category:Complete.md +++ b/wiki/translations/fr/Category:Complete.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages en rapport avec [Complete Workbench](Comp [Complete Workbench/fr](Complete_Workbench/fr.md) [Category:Obsolete Workbenches/fr](Category:Obsolete_Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Complete/fr diff --git a/wiki/translations/fr/Category:Curves.md b/wiki/translations/fr/Category:Curves.md index c939ce67b5..413153ac32 100644 --- a/wiki/translations/fr/Category:Curves.md +++ b/wiki/translations/fr/Category:Curves.md @@ -4,3 +4,6 @@ Pages pertinentes pour l\'[atelier Curves](Curves_Workbench/fr.md) qui fait part ### Contents: [Curves CompressionSpring/fr](Curves_CompressionSpring/fr.md) , [Curves Discretize/fr](Curves_Discretize/fr.md) , [Curves EditableSpline/fr](Curves_EditableSpline/fr.md) , [Curves ExtendCurve/fr](Curves_ExtendCurve/fr.md) , [Curves GordonSurface/fr](Curves_GordonSurface/fr.md) , [Curves Interpolate/fr](Curves_Interpolate/fr.md) , [Curves IsoCurve/fr](Curves_IsoCurve/fr.md) , [Curves JoinCurve/fr](Curves_JoinCurve/fr.md) , [Curves Line/fr](Curves_Line/fr.md) , [Curves MultiLoft/fr](Curves_MultiLoft/fr.md) , [Curves ParametricComb/fr](Curves_ParametricComb/fr.md) , [Curves ParametricSolid/fr](Curves_ParametricSolid/fr.md) , [Curves PasteSVG/fr](Curves_PasteSVG/fr.md) , [Curves Pipeshell/fr](Curves_Pipeshell/fr.md) , [Curves PipeshellProfile/fr](Curves_PipeshellProfile/fr.md) , [Curves ProfileSupport/fr](Curves_ProfileSupport/fr.md) , [Curves ReflectLines/fr](Curves_ReflectLines/fr.md) , [Curves SegmentSurface/fr](Curves_SegmentSurface/fr.md) , [Curves SketchOnSurface/fr](Curves_SketchOnSurface/fr.md) , [Curves SplitCurve/fr](Curves_SplitCurve/fr.md) , [Curves ToConsole/fr](Curves_ToConsole/fr.md) , [Template:Curves Tools navi/fr](Template:Curves_Tools_navi/fr.md) , [Curves Workbench/fr](Curves_Workbench/fr.md) , [Curves ZebraTool/fr](Curves_ZebraTool/fr.md) + +--- +[documentation index](../README.md) > Category:Curves/fr diff --git a/wiki/translations/fr/Category:Developer.md b/wiki/translations/fr/Category:Developer.md index 99cb5a7af0..9ffc009f1c 100644 --- a/wiki/translations/fr/Category:Developer.md +++ b/wiki/translations/fr/Category:Developer.md @@ -8,3 +8,6 @@ Cette catégorie contient les articles importants relevants aux développeurs. [Changelog/fr](Changelog/fr.md) , [Compile on Cygwin/fr](Compile_on_Cygwin/fr.md) , [Compile on Docker/fr](Compile_on_Docker/fr.md) , [Compile on Linux/fr](Compile_on_Linux/fr.md) , [Compile on MacOS/fr](Compile_on_MacOS/fr.md) , [Compile on MinGW/fr](Compile_on_MinGW/fr.md) , [Compile on Windows with VS2013/fr](Compile_on_Windows_with_VS2013/fr.md) , [Compile on Windows/fr](Compile_on_Windows/fr.md) , [Compiling (Speeding up)/fr](Compiling_(Speeding_up)/fr.md) , [Compiling/fr](Compiling/fr.md) , [Conda/fr](Conda/fr.md) , [Contributors/fr](Contributors/fr.md) , [Developing FreeCAD with GitKraken/fr](Developing_FreeCAD_with_GitKraken/fr.md) , [Doxygen/fr](Doxygen/fr.md) , [FEM CalculiX/fr](FEM_CalculiX/fr.md) , [FEM Element Types/fr](FEM_Element_Types/fr.md) , [FEM Mesh CalculiX/fr](FEM_Mesh_CalculiX/fr.md) , [File Format FCStd/fr](File_Format_FCStd/fr.md) , [ImageConv/fr](ImageConv/fr.md) , [InputField/fr](InputField/fr.md) , [Land Survey Workbench Blueprint/fr](Land_Survey_Workbench_Blueprint/fr.md) , [LGTM/fr](LGTM/fr.md) , [Material/fr](Material/fr.md) , [Organization chart/fr](Organization_chart/fr.md) , [Svg Namespace/fr](Svg_Namespace/fr.md) , [WikiRobots/fr](WikiRobots/fr.md) , [Wished tools/fr](Wished_tools/fr.md) , [Wrapping a Cplusplus class in Python/fr](Wrapping_a_Cplusplus_class_in_Python/fr.md) [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:Developer/fr diff --git a/wiki/translations/fr/Category:Developer_Documentation.md b/wiki/translations/fr/Category:Developer_Documentation.md index 7452b57504..acd41154c0 100644 --- a/wiki/translations/fr/Category:Developer_Documentation.md +++ b/wiki/translations/fr/Category:Developer_Documentation.md @@ -8,3 +8,6 @@ Cette catégorie rassemble les articles de documentation s\'adressant surtout au [Add FEM equation tutorial/fr](Add_FEM_equation_tutorial/fr.md) , [ANSI templates/fr](ANSI_templates/fr.md) , [AppImage/fr](AppImage/fr.md) , [Arch templates/fr](Arch_templates/fr.md) , [Artwork Erroneous/fr](Artwork_Erroneous/fr.md) , [Artwork Guidelines/fr](Artwork_Guidelines/fr.md) , [Artwork/fr](Artwork/fr.md) , [Branding/fr](Branding/fr.md) , [Bug Triage/fr](Bug_Triage/fr.md) , [Code snippets/fr](Code_snippets/fr.md) , [Coin3d snippets/fr](Coin3d_snippets/fr.md) , [Command/fr](Command/fr.md) , [Compile on Cygwin/fr](Compile_on_Cygwin/fr.md) , [Compile on Docker/fr](Compile_on_Docker/fr.md) , [Compile on Linux/fr](Compile_on_Linux/fr.md) , [Compile on MacOS/fr](Compile_on_MacOS/fr.md) , [Compile on MinGW/fr](Compile_on_MinGW/fr.md) , [Compile on Windows with VS2013/fr](Compile_on_Windows_with_VS2013/fr.md) , [Compile on Windows/fr](Compile_on_Windows/fr.md) , [CompileOnWindows - Reducing Disk Footprint/fr](CompileOnWindows_-_Reducing_Disk_Footprint/fr.md) , [Compiling (Speeding up)/fr](Compiling_(Speeding_up)/fr.md) , [Compiling/fr](Compiling/fr.md) , [Conda/fr](Conda/fr.md) , [Continuous Integration/fr](Continuous_Integration/fr.md) , [Create a FeaturePython object part I/fr](Create_a_FeaturePython_object_part_I/fr.md) , [Create a FeaturePython object part II/fr](Create_a_FeaturePython_object_part_II/fr.md) , [Crowdin Scripts/fr](Crowdin_Scripts/fr.md) , [Custom icon in tree view/fr](Custom_icon_in_tree_view/fr.md) , [Debian development/fr](Debian_development/fr.md) , [Debian Unstable/fr](Debian_Unstable/fr.md) , [Debugging/fr](Debugging/fr.md) , [Developer hub/fr](Developer_hub/fr.md) , [Developing FreeCAD with GitKraken/fr](Developing_FreeCAD_with_GitKraken/fr.md) , [Developing FreeCAD with KDevelop/fr](Developing_FreeCAD_with_KDevelop/fr.md) , [Dialog creation image and animated GIF/fr](Dialog_creation_image_and_animated_GIF/fr.md) , [Dialog creation reading and writing files/fr](Dialog_creation_reading_and_writing_files/fr.md) , [Dialog creation setting colors/fr](Dialog_creation_setting_colors/fr.md) , [Dialog creation with various widgets/fr](Dialog_creation_with_various_widgets/fr.md) , [Dialog creation/fr](Dialog_creation/fr.md) , [Doxygen/fr](Doxygen/fr.md) , [Drawing API example/fr](Drawing_API_example/fr.md) , [Drawing Documentation/fr](Drawing_Documentation/fr.md) , [Drawing templates/fr](Drawing_templates/fr.md) , [Embedding FreeCAD/fr](Embedding_FreeCAD/fr.md) , [Embedding FreeCADGui/fr](Embedding_FreeCADGui/fr.md) , [Extra python modules/fr](Extra_python_modules/fr.md) , [FeaturePython Custom Properties/fr](FeaturePython_Custom_Properties/fr.md) , [FeaturePython methods/fr](FeaturePython_methods/fr.md) , [File Format FCStd/fr](File_Format_FCStd/fr.md) , [Fine-tuning/fr](Fine-tuning/fr.md) , [FreeCAD Build Tool/fr](FreeCAD_Build_Tool/fr.md) , [FreeCAD Scripting Basics/fr](FreeCAD_Scripting_Basics/fr.md) , [FreeCAD vector math library/fr](FreeCAD_vector_math_library/fr.md) , [Git buildpackage/fr](Git_buildpackage/fr.md) , [Help FreeCAD/fr](Help_FreeCAD/fr.md) , [How to install macros/fr](How_to_install_macros/fr.md) , [Installing more workbenches/fr](Installing_more_workbenches/fr.md) , [Installing on Linux/fr](Installing_on_Linux/fr.md) , [Interface creation/fr](Interface_creation/fr.md) , [Introduction to Python/fr](Introduction_to_Python/fr.md) , [LGTM/fr](LGTM/fr.md) , [Licence/fr](Licence/fr.md) , [Line drawing function/fr](Line_drawing_function/fr.md) , [Linux packaging/fr](Linux_packaging/fr.md) , [Localisation Sidebar/fr](Localisation_Sidebar/fr.md) , [Localisation/fr](Localisation/fr.md) , [Localization Older Methods/fr](Localization_Older_Methods/fr.md) , [Macro at Startup/fr](Macro_at_Startup/fr.md) , [Macros/fr](Macros/fr.md) , [Manual:A gentle introduction/fr](Manual:A_gentle_introduction/fr.md) , [Manual:Creating and manipulating geometry/fr](Manual:Creating_and_manipulating_geometry/fr.md) , [Manual:Creating interface tools/fr](Manual:Creating_interface_tools/fr.md) , [Manual:Creating parametric objects/fr](Manual:Creating_parametric_objects/fr.md) , [Material/fr](Material/fr.md) , [Mesh Scripting/fr](Mesh_Scripting/fr.md) , [Mesh to Part/fr](Mesh_to_Part/fr.md) , [Misc templates/fr](Misc_templates/fr.md) , [Multithreading/fr](Multithreading/fr.md) , [OpenCASCADE/fr](OpenCASCADE/fr.md) , [OpenSCAD CSG tested files/fr](OpenSCAD_CSG_tested_files/fr.md) , [Packaging/fr](Packaging/fr.md) , [Part scripting/fr](Part_scripting/fr.md) , [Path scripting/fr](Path_scripting/fr.md) , [Pivy/fr](Pivy/fr.md) , [Profiling/fr](Profiling/fr.md) , [Property/fr](Property/fr.md) , [PySide Advanced Examples/fr](PySide_Advanced_Examples/fr.md) , [PySide Beginner Examples/fr](PySide_Beginner_Examples/fr.md) , [PySide Intermediate Examples/fr](PySide_Intermediate_Examples/fr.md) , [PySide usage snippets/fr](PySide_usage_snippets/fr.md) , [PySide/fr](PySide/fr.md) , [Python scripting tutorial/fr](Python_scripting_tutorial/fr.md) , [Python/fr](Python/fr.md) , [PythonOCC/fr](PythonOCC/fr.md) , [Quantity/fr](Quantity/fr.md) , [Raytracing API example/fr](Raytracing_API_example/fr.md) , [Scenegraph/fr](Scenegraph/fr.md) , [Scripted objects saving attributes/fr](Scripted_objects_saving_attributes/fr.md) , [Scripted objects with attachment/fr](Scripted_objects_with_attachment/fr.md) , [Scripted objects/fr](Scripted_objects/fr.md) , [Scripted Parts: Ball Bearing - Part 1/fr](Scripted_Parts:_Ball_Bearing_-_Part_1/fr.md) , [Scripted Parts: Ball Bearing - Part 2/fr](Scripted_Parts:_Ball_Bearing_-_Part_2/fr.md) , [Scripting and macros/fr](Scripting_and_macros/fr.md) , [Scripts/fr](Scripts/fr.md) , [Source code management/fr](Source_code_management/fr.md) , [Source documentation/fr](Source_documentation/fr.md) , [Sphinx/fr](Sphinx/fr.md) , [Start up and Configuration/fr](Start_up_and_Configuration/fr.md) , [Testing/fr](Testing/fr.md) , [The FreeCAD source code/fr](The_FreeCAD_source_code/fr.md) , [Third Party Libraries/fr](Third_Party_Libraries/fr.md) , [Third Party Tools/fr](Third_Party_Tools/fr.md) , [Topological data scripting/fr](Topological_data_scripting/fr.md) , [Tracker/fr](Tracker/fr.md) , [Translating an external workbench/fr](Translating_an_external_workbench/fr.md) , [Viewprovider/fr](Viewprovider/fr.md) , [Workbench creation/fr](Workbench_creation/fr.md) , [Wrapping a Cplusplus class in Python/fr](Wrapping_a_Cplusplus_class_in_Python/fr.md) , [Category:Documentation/fr](Category:Documentation/fr.md) [Category:Packaging/fr](Category:Packaging/fr.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/fr diff --git a/wiki/translations/fr/Category:Document_object.md b/wiki/translations/fr/Category:Document_object.md index 154c3a7f66..ab8ac04610 100644 --- a/wiki/translations/fr/Category:Document_object.md +++ b/wiki/translations/fr/Category:Document_object.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages liées aux objets dérivés de la base [A [App DocumentObject/fr](App_DocumentObject/fr.md) , [App DocumentObjectGroup/fr](App_DocumentObjectGroup/fr.md) , [App FeaturePython/fr](App_FeaturePython/fr.md) , [App GeoFeature/fr](App_GeoFeature/fr.md) , [App Link/fr](App_Link/fr.md) , [App Part/fr](App_Part/fr.md) , [Assembly/fr](Assembly/fr.md) , [Body/fr](Body/fr.md) , [Constraint/fr](Constraint/fr.md) , [Datum/fr](Datum/fr.md) , [Drawing/fr](Drawing/fr.md) , [Feature/fr](Feature/fr.md) , [Mesh Feature/fr](Mesh_Feature/fr.md) , [Mesh MeshObject/fr](Mesh_MeshObject/fr.md) , [Mesh/fr](Mesh/fr.md) , [Model/fr](Model/fr.md) , [Part Feature/fr](Part_Feature/fr.md) , [Part TopoShape/fr](Part_TopoShape/fr.md) , [Part/fr](Part/fr.md) , [PartDesign Feature/fr](PartDesign_Feature/fr.md) , [Shape/fr](Shape/fr.md) , [Sketch/fr](Sketch/fr.md) , [Sketcher SketchObject/fr](Sketcher_SketchObject/fr.md) [Category:User Documentation/fr](Category:User_Documentation/fr.md) + +--- +[documentation index](../README.md) > Category:Document object/fr diff --git a/wiki/translations/fr/Category:Documentation.md b/wiki/translations/fr/Category:Documentation.md index 3af3637183..dbcbcfd018 100644 --- a/wiki/translations/fr/Category:Documentation.md +++ b/wiki/translations/fr/Category:Documentation.md @@ -6,3 +6,6 @@ Cette catégorie regroupe toute la documentation de FreeCAD. [3D input devices/fr](3D_input_devices/fr.md) , [ANSI templates/fr](ANSI_templates/fr.md) , [Arch templates/fr](Arch_templates/fr.md) , [Civil Engineering Workbench/fr](Civil_Engineering_Workbench/fr.md) , [Drawing templates/fr](Drawing_templates/fr.md) , [FreeCAD Community Portal/fr](FreeCAD_Community_Portal/fr.md) , [Frequently asked questions/fr](Frequently_asked_questions/fr.md) , [Help FreeCAD/fr](Help_FreeCAD/fr.md) , [Interesting links/fr](Interesting_links/fr.md) , [Main Page/fr](Main_Page/fr.md) , [Misc templates/fr](Misc_templates/fr.md) , [Online Help Toc/fr](Online_Help_Toc/fr.md) , [Part Measure Menu/fr](Part_Measure_Menu/fr.md) , [Release notes 0.11/fr](Release_notes_0.11/fr.md) , [Release notes 0.12/fr](Release_notes_0.12/fr.md) , [Release notes 0.13/fr](Release_notes_0.13/fr.md) , [Release notes 0.14/fr](Release_notes_0.14/fr.md) , [Release notes 0.15/fr](Release_notes_0.15/fr.md) , [Release notes 0.16/fr](Release_notes_0.16/fr.md) , [Release notes 0.17/fr](Release_notes_0.17/fr.md) , [Release notes 0.18/fr](Release_notes_0.18/fr.md) , [Release notes 0.19/fr](Release_notes_0.19/fr.md) , [Release notes 0.20/fr](Release_notes_0.20/fr.md) , [Transportation Workbench/fr](Transportation_Workbench/fr.md) , [WikiPages/fr](WikiPages/fr.md) , , , , , , , [Category:Categories/fr](Category:Categories/fr.md) [Category:API Documentation/fr](Category:API_Documentation/fr.md) [Category:Developer Documentation/fr](Category:Developer_Documentation/fr.md) [Category:Poweruser Documentation/fr](Category:Poweruser_Documentation/fr.md) [Category:Screenshots/fr](Category:Screenshots/fr.md) [Category:User Documentation/fr](Category:User_Documentation/fr.md) [Category:Wiki Documentation/fr](Category:Wiki_Documentation/fr.md) [Category:Wiki/fr](Category:Wiki/fr.md) + +--- +[documentation index](../README.md) > Category:Documentation/fr diff --git a/wiki/translations/fr/Category:Draft.md b/wiki/translations/fr/Category:Draft.md index cf17526f86..09bd0173a9 100644 --- a/wiki/translations/fr/Category:Draft.md +++ b/wiki/translations/fr/Category:Draft.md @@ -6,3 +6,6 @@ Cette catégorie liste les pages liées à l\'[atelier Draft](Draft_Workbench/fr [Arch panel tutorial/fr](Arch_panel_tutorial/fr.md) , [Artwork Draft/fr](Artwork_Draft/fr.md) , [Draft AddConstruction/fr](Draft_AddConstruction/fr.md) , [Draft AddToGroup/fr](Draft_AddToGroup/fr.md) , [Draft annotation scale widget/fr](Draft_annotation_scale_widget/fr.md) , [Draft AnnotationStyleEditor/fr](Draft_AnnotationStyleEditor/fr.md) , [Draft API/fr](Draft_API/fr.md) , [Draft ApplyStyle/fr](Draft_ApplyStyle/fr.md) , [Draft Arc 3Points/fr](Draft_Arc_3Points/fr.md) , [Draft Arc/fr](Draft_Arc/fr.md) , [Draft Array/fr](Draft_Array/fr.md) , [Draft AutoGroup/fr](Draft_AutoGroup/fr.md) , [Draft BezCurve/fr](Draft_BezCurve/fr.md) , [Draft BSpline/fr](Draft_BSpline/fr.md) , [Draft Circle/fr](Draft_Circle/fr.md) , [Draft CircularArray/fr](Draft_CircularArray/fr.md) , [Draft Clone/fr](Draft_Clone/fr.md) , [Draft Constrain/fr](Draft_Constrain/fr.md) , [Draft CubicBezCurve/fr](Draft_CubicBezCurve/fr.md) , [Draft DAT/fr](Draft_DAT/fr.md) , [Draft Dimension/fr](Draft_Dimension/fr.md) , [Draft Downgrade/fr](Draft_Downgrade/fr.md) , [Draft Draft2Sketch/fr](Draft_Draft2Sketch/fr.md) , [Draft Drawing/fr](Draft_Drawing/fr.md) , [Draft DXF/fr](Draft_DXF/fr.md) , [Draft Edit/fr](Draft_Edit/fr.md) , [Draft Ellipse/fr](Draft_Ellipse/fr.md) , [Draft Facebinder/fr](Draft_Facebinder/fr.md) , [Draft Fillet/fr](Draft_Fillet/fr.md) , [Draft FlipDimension/fr](Draft_FlipDimension/fr.md) , [Draft Heal/fr](Draft_Heal/fr.md) , [Draft Join/fr](Draft_Join/fr.md) , [Draft Label/fr](Draft_Label/fr.md) , [Draft Layer/fr](Draft_Layer/fr.md) , [Draft Line/fr](Draft_Line/fr.md) , [Draft Mirror/fr](Draft_Mirror/fr.md) , [Draft Move/fr](Draft_Move/fr.md) , [Draft OCA/fr](Draft_OCA/fr.md) , [Draft Offset/fr](Draft_Offset/fr.md) , [Draft OrthoArray/fr](Draft_OrthoArray/fr.md) , [Draft PathArray/fr](Draft_PathArray/fr.md) , [Draft PathLinkArray/fr](Draft_PathLinkArray/fr.md) , [Draft Pattern/fr](Draft_Pattern/fr.md) , [Draft Point/fr](Draft_Point/fr.md) , [Draft PointArray/fr](Draft_PointArray/fr.md) , [Draft PointLinkArray/fr](Draft_PointLinkArray/fr.md) , [Draft PolarArray/fr](Draft_PolarArray/fr.md) , [Draft Polygon/fr](Draft_Polygon/fr.md) , [Draft Preferences/fr](Draft_Preferences/fr.md) , [Draft Rectangle/fr](Draft_Rectangle/fr.md) , [Draft Rotate/fr](Draft_Rotate/fr.md) , [Draft Scale/fr](Draft_Scale/fr.md) , [Draft SelectGroup/fr](Draft_SelectGroup/fr.md) , [Draft SelectPlane/fr](Draft_SelectPlane/fr.md) , [Draft SetStyle/fr](Draft_SetStyle/fr.md) , [Draft Shape2DView/fr](Draft_Shape2DView/fr.md) , [Draft ShapeString/fr](Draft_ShapeString/fr.md) , [Draft ShowSnapBar/fr](Draft_ShowSnapBar/fr.md) , [Draft Slope/fr](Draft_Slope/fr.md) , [Draft Snap Angle/fr](Draft_Snap_Angle/fr.md) , [Draft Snap Center/fr](Draft_Snap_Center/fr.md) , [Draft Snap Dimensions/fr](Draft_Snap_Dimensions/fr.md) , [Draft Snap Endpoint/fr](Draft_Snap_Endpoint/fr.md) , [Draft Snap Extension/fr](Draft_Snap_Extension/fr.md) , [Draft Snap Grid/fr](Draft_Snap_Grid/fr.md) , [Draft Snap Intersection/fr](Draft_Snap_Intersection/fr.md) , [Draft Snap Lock/fr](Draft_Snap_Lock/fr.md) , [Draft Snap Midpoint/fr](Draft_Snap_Midpoint/fr.md) , [Draft Snap Near/fr](Draft_Snap_Near/fr.md) , [Draft Snap Ortho/fr](Draft_Snap_Ortho/fr.md) , [Draft Snap Parallel/fr](Draft_Snap_Parallel/fr.md) , [Draft Snap Perpendicular/fr](Draft_Snap_Perpendicular/fr.md) , [Draft Snap Special/fr](Draft_Snap_Special/fr.md) , [Draft snap widget/fr](Draft_snap_widget/fr.md) , [Draft Snap WorkingPlane/fr](Draft_Snap_WorkingPlane/fr.md) , [Draft Snap/fr](Draft_Snap/fr.md) , [Draft Split/fr](Draft_Split/fr.md) , [Draft Stretch/fr](Draft_Stretch/fr.md) , [Draft SubelementHighlight/fr](Draft_SubelementHighlight/fr.md) , [Draft SVG/fr](Draft_SVG/fr.md) , [Draft Text/fr](Draft_Text/fr.md) , [Draft ToggleConstructionMode/fr](Draft_ToggleConstructionMode/fr.md) , [Draft ToggleContinueMode/fr](Draft_ToggleContinueMode/fr.md) , [Draft ToggleDisplayMode/fr](Draft_ToggleDisplayMode/fr.md) , [Draft ToggleGrid/fr](Draft_ToggleGrid/fr.md) , [Template:Draft Tools navi/fr](Template:Draft_Tools_navi/fr.md) , [Draft Tray/fr](Draft_Tray/fr.md) , [Draft Trimex/fr](Draft_Trimex/fr.md) , [Draft tutorial/fr](Draft_tutorial/fr.md) , [Draft Upgrade/fr](Draft_Upgrade/fr.md) , [Draft Wire/fr](Draft_Wire/fr.md) , [Draft WireToBSpline/fr](Draft_WireToBSpline/fr.md) , [Draft Workbench/fr](Draft_Workbench/fr.md) , [Draft WorkingPlaneProxy/fr](Draft_WorkingPlaneProxy/fr.md) , [DXF/fr](DXF/fr.md) , [FreeCAD and DWG Import/fr](FreeCAD_and_DWG_Import/fr.md) , [Macro FCCircularText/fr](Macro_FCCircularText/fr.md) , [Manual:Traditional 2D drafting/fr](Manual:Traditional_2D_drafting/fr.md) , [SVG/fr](SVG/fr.md) , [Tutorial custom placing of windows and doors/fr](Tutorial_custom_placing_of_windows_and_doors/fr.md) , [Tutorial for open windows/fr](Tutorial_for_open_windows/fr.md) [Category:User Documentation/fr](Category:User_Documentation/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Draft/fr diff --git a/wiki/translations/fr/Category:Drawing.md b/wiki/translations/fr/Category:Drawing.md index ccb2969943..ae69eaa5fa 100644 --- a/wiki/translations/fr/Category:Drawing.md +++ b/wiki/translations/fr/Category:Drawing.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages liées à l\'[Atelier de dessin](Drawing_ [ANSI templates/fr](ANSI_templates/fr.md) , [Arch templates/fr](Arch_templates/fr.md) , [Drawing Annotation/fr](Drawing_Annotation/fr.md) , [Drawing API example/fr](Drawing_API_example/fr.md) , [Drawing Clip/fr](Drawing_Clip/fr.md) , [Drawing Dimensioning Addon/fr](Drawing_Dimensioning_Addon/fr.md) , [Drawing Documentation/fr](Drawing_Documentation/fr.md) , [Drawing Landscape A3/fr](Drawing_Landscape_A3/fr.md) , [Drawing Open SVG/fr](Drawing_Open_SVG/fr.md) , [Drawing Openbrowser/fr](Drawing_Openbrowser/fr.md) , [Drawing Orthoviews/fr](Drawing_Orthoviews/fr.md) , [Drawing ProjectShape/fr](Drawing_ProjectShape/fr.md) , [Drawing Save/fr](Drawing_Save/fr.md) , [Drawing SpreadsheetView/fr](Drawing_SpreadsheetView/fr.md) , [Drawing Symbol/fr](Drawing_Symbol/fr.md) , [Drawing Template HowTo/fr](Drawing_Template_HowTo/fr.md) , [Drawing templates/fr](Drawing_templates/fr.md) , [Template:Drawing Tools navi/fr](Template:Drawing_Tools_navi/fr.md) , [Drawing tutorial/fr](Drawing_tutorial/fr.md) , [Drawing View/fr](Drawing_View/fr.md) , [Drawing Workbench/fr](Drawing_Workbench/fr.md) , [Misc templates/fr](Misc_templates/fr.md) , [Svg Namespace/fr](Svg_Namespace/fr.md) [Category:Obsolete Workbenches/fr](Category:Obsolete_Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Drawing/fr diff --git a/wiki/translations/fr/Category:EM.md b/wiki/translations/fr/Category:EM.md index e2c12abcad..684dd25649 100644 --- a/wiki/translations/fr/Category:EM.md +++ b/wiki/translations/fr/Category:EM.md @@ -6,3 +6,6 @@ Cette liste les pages liées à la page [EM Workbench](EM_Workbench/fr.md) qui e [EM FHEquiv/fr](EM_FHEquiv/fr.md) , [EM FHInputFile/fr](EM_FHInputFile/fr.md) , [EM FHNode/fr](EM_FHNode/fr.md) , [EM FHPath/fr](EM_FHPath/fr.md) , [EM FHPlane/fr](EM_FHPlane/fr.md) , [EM FHPlaneAddRemoveNodeHole/fr](EM_FHPlaneAddRemoveNodeHole/fr.md) , [EM FHPlaneHole/fr](EM_FHPlaneHole/fr.md) , [EM FHPort/fr](EM_FHPort/fr.md) , [EM FHSegment/fr](EM_FHSegment/fr.md) , [EM FHSolver/fr](EM_FHSolver/fr.md) , [Template:EM Tools navi/fr](Template:EM_Tools_navi/fr.md) , [EM Workbench/fr](EM_Workbench/fr.md) [Category:External Workbenches/fr](Category:External_Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:EM/fr diff --git a/wiki/translations/fr/Category:External_Command_Reference.md b/wiki/translations/fr/Category:External_Command_Reference.md index c4d295d131..c68c6a1197 100644 --- a/wiki/translations/fr/Category:External_Command_Reference.md +++ b/wiki/translations/fr/Category:External_Command_Reference.md @@ -4,3 +4,6 @@ This categorizes all **external** workbench commands separate from the internal ### Contents: [Arch Rebar BOM/fr](Arch_Rebar_BOM/fr.md) , [Arch Rebar Dimensioning/fr](Arch_Rebar_Dimensioning/fr.md) , [Arch Rebar Drawing Dimensioning/fr](Arch_Rebar_Drawing_Dimensioning/fr.md) , [Arch Rebar Drawing/fr](Arch_Rebar_Drawing/fr.md) , [Arch Rebar/fr](Arch_Rebar/fr.md) , [BIM Views/fr](BIM_Views/fr.md) , [BIM Windows/fr](BIM_Windows/fr.md) , [CurvedShapes CurvedArray/fr](CurvedShapes_CurvedArray/fr.md) , [Curves CompressionSpring/fr](Curves_CompressionSpring/fr.md) , [Curves Discretize/fr](Curves_Discretize/fr.md) , [Curves EditableSpline/fr](Curves_EditableSpline/fr.md) , [Curves ExtendCurve/fr](Curves_ExtendCurve/fr.md) , [Curves GordonSurface/fr](Curves_GordonSurface/fr.md) , [Curves Interpolate/fr](Curves_Interpolate/fr.md) , [Curves IsoCurve/fr](Curves_IsoCurve/fr.md) , [Curves JoinCurve/fr](Curves_JoinCurve/fr.md) , [Curves Line/fr](Curves_Line/fr.md) , [Curves MultiLoft/fr](Curves_MultiLoft/fr.md) , [Curves ParametricComb/fr](Curves_ParametricComb/fr.md) , [Curves ParametricSolid/fr](Curves_ParametricSolid/fr.md) , [Curves PasteSVG/fr](Curves_PasteSVG/fr.md) , [Curves Pipeshell/fr](Curves_Pipeshell/fr.md) , [Curves PipeshellProfile/fr](Curves_PipeshellProfile/fr.md) , [Curves ProfileSupport/fr](Curves_ProfileSupport/fr.md) , [Curves ReflectLines/fr](Curves_ReflectLines/fr.md) , [Curves SegmentSurface/fr](Curves_SegmentSurface/fr.md) , [Curves SketchOnSurface/fr](Curves_SketchOnSurface/fr.md) , [Curves SplitCurve/fr](Curves_SplitCurve/fr.md) , [Curves ToConsole/fr](Curves_ToConsole/fr.md) , [Template:Curves Tools navi/fr](Template:Curves_Tools_navi/fr.md) , [Curves Workbench/fr](Curves_Workbench/fr.md) , [Curves ZebraTool/fr](Curves_ZebraTool/fr.md) , [Fasteners BOM/fr](Fasteners_BOM/fr.md) , [Fasteners Workbench/fr](Fasteners_Workbench/fr.md) , [FCGear BevelGear/fr](FCGear_BevelGear/fr.md) , [FCGear CrownGear/fr](FCGear_CrownGear/fr.md) , [FCGear CycloideGear/fr](FCGear_CycloideGear/fr.md) , [FCGear InvoluteGear/fr](FCGear_InvoluteGear/fr.md) , [FCGear InvoluteRack/fr](FCGear_InvoluteRack/fr.md) , [FCGear LanternGear/fr](FCGear_LanternGear/fr.md) , [FCGear TimingGear/fr](FCGear_TimingGear/fr.md) , [FCGear WormGear/fr](FCGear_WormGear/fr.md) , [Lattice2 AttachablePlacement/fr](Lattice2_AttachablePlacement/fr.md) , [Reinforcement Bar Bending Schedule/fr](Reinforcement_Bar_Bending_Schedule/fr.md) , [Reinforcement Bar Shape Cut List/fr](Reinforcement_Bar_Shape_Cut_List/fr.md) , [SheetMetal AddBase/fr](SheetMetal_AddBase/fr.md) , [SheetMetal AddBend/fr](SheetMetal_AddBend/fr.md) , [SheetMetal AddCornerRelief/fr](SheetMetal_AddCornerRelief/fr.md) , [SheetMetal AddFoldWall/fr](SheetMetal_AddFoldWall/fr.md) , [SheetMetal AddJunction/fr](SheetMetal_AddJunction/fr.md) , [SheetMetal AddRelief/fr](SheetMetal_AddRelief/fr.md) , [SheetMetal AddWall/fr](SheetMetal_AddWall/fr.md) , [SheetMetal Extrude/fr](SheetMetal_Extrude/fr.md) , [SheetMetal Forming/fr](SheetMetal_Forming/fr.md) , [SheetMetal SketchOnSheet/fr](SheetMetal_SketchOnSheet/fr.md) , [SheetMetal UnattendedUnfold/fr](SheetMetal_UnattendedUnfold/fr.md) , [SheetMetal Unfold/fr](SheetMetal_Unfold/fr.md) , [SheetMetal Workbench/fr](SheetMetal_Workbench/fr.md) + +--- +[documentation index](../README.md) > Category:External Command Reference/fr diff --git a/wiki/translations/fr/Category:External_Workbenches.md b/wiki/translations/fr/Category:External_Workbenches.md index e5f6a589e2..941d8cf8f9 100644 --- a/wiki/translations/fr/Category:External_Workbenches.md +++ b/wiki/translations/fr/Category:External_Workbenches.md @@ -4,3 +4,6 @@ [External workbenches/fr](External_workbenches/fr.md) , [A2plus Workbench/fr](A2plus_Workbench/fr.md) , [Animation Workbench/fr](Animation_Workbench/fr.md) , [Assembly2 Workbench/fr](Assembly2_Workbench/fr.md) , [Assembly3 Workbench/fr](Assembly3_Workbench/fr.md) , [Assembly4 Workbench/fr](Assembly4_Workbench/fr.md) , [BIM Workbench/fr](BIM_Workbench/fr.md) , [BOLTSFC Workbench/fr](BOLTSFC_Workbench/fr.md) , [CadQuery Workbench/fr](CadQuery_Workbench/fr.md) , [Cfd Workbench/fr](Cfd_Workbench/fr.md) , [CurvedShapes Workbench/fr](CurvedShapes_Workbench/fr.md) , [Curves Workbench/fr](Curves_Workbench/fr.md) , [Defeaturing Workbench/fr](Defeaturing_Workbench/fr.md) , [Defeaturing/fr](Defeaturing/fr.md) , [DynamicData Workbench/fr](DynamicData_Workbench/fr.md) , [EM FHEquiv/fr](EM_FHEquiv/fr.md) , [EM FHInputFile/fr](EM_FHInputFile/fr.md) , [EM FHNode/fr](EM_FHNode/fr.md) , [EM FHPath/fr](EM_FHPath/fr.md) , [EM FHPlane/fr](EM_FHPlane/fr.md) , [EM FHPlaneAddRemoveNodeHole/fr](EM_FHPlaneAddRemoveNodeHole/fr.md) , [EM FHPlaneHole/fr](EM_FHPlaneHole/fr.md) , [EM FHPort/fr](EM_FHPort/fr.md) , [EM FHSegment/fr](EM_FHSegment/fr.md) , [EM FHSolver/fr](EM_FHSolver/fr.md) , [EM Workbench/fr](EM_Workbench/fr.md) , [ExplodedAssembly Workbench/fr](ExplodedAssembly_Workbench/fr.md) , [Fasteners Workbench/fr](Fasteners_Workbench/fr.md) , [FCGear Workbench/fr](FCGear_Workbench/fr.md) , [FEM FrontISTR Workbench/fr](FEM_FrontISTR_Workbench/fr.md) , [Flamingo Workbench/fr](Flamingo_Workbench/fr.md) , [How to install additional workbenches/fr](How_to_install_additional_workbenches/fr.md) , [KicadStepUp Workbench/fr](KicadStepUp_Workbench/fr.md) , [Lattice2 Workbench/fr](Lattice2_Workbench/fr.md) , [Macro Kerkythea/fr](Macro_Kerkythea/fr.md) , [Manipulator Workbench/fr](Manipulator_Workbench/fr.md) , [ModernUI Workbench/fr](ModernUI_Workbench/fr.md) , [MOOC Workbench/fr](MOOC_Workbench/fr.md) , [OSE 3D Printer Workbench/fr](OSE_3D_Printer_Workbench/fr.md) , [OSE Piping Workbench/fr](OSE_Piping_Workbench/fr.md) , [Parts Library Workbench/fr](Parts_Library_Workbench/fr.md) , [PCB Workbench/fr](PCB_Workbench/fr.md) , [Plot Axes/fr](Plot_Axes/fr.md) , [Plot Basic tutorial/fr](Plot_Basic_tutorial/fr.md) , [Plot Grid/fr](Plot_Grid/fr.md) , [Plot Labels/fr](Plot_Labels/fr.md) , [Plot Legend/fr](Plot_Legend/fr.md) , [Plot Module/fr](Plot_Module/fr.md) , [Plot MultiAxes tutorial/fr](Plot_MultiAxes_tutorial/fr.md) , [Plot Positions/fr](Plot_Positions/fr.md) , [Plot Save/fr](Plot_Save/fr.md) , [Plot Series/fr](Plot_Series/fr.md) , [Pyramids and polyhedrons Workbench/fr](Pyramids_and_polyhedrons_Workbench/fr.md) , [Pyrate Workbench/fr](Pyrate_Workbench/fr.md) , [Reinforcement Workbench/fr](Reinforcement_Workbench/fr.md) , [Render project/fr](Render_project/fr.md) , [Rocket BodyTube/fr](Rocket_BodyTube/fr.md) , [Rocket Bulkhead/fr](Rocket_Bulkhead/fr.md) , [Rocket CenteringRing/fr](Rocket_CenteringRing/fr.md) , [Rocket Ejection Charge Calculator/fr](Rocket_Ejection_Charge_Calculator/fr.md) , [Rocket Fin/fr](Rocket_Fin/fr.md) , [Rocket NoseCone/fr](Rocket_NoseCone/fr.md) , [Rocket Parachute Size Calculator/fr](Rocket_Parachute_Size_Calculator/fr.md) , [Rocket Thrust To Weight Calculator/fr](Rocket_Thrust_To_Weight_Calculator/fr.md) , [Rocket Transition/fr](Rocket_Transition/fr.md) , [Rocket Vent Hole Size Calculator/fr](Rocket_Vent_Hole_Size_Calculator/fr.md) , [Rocket Workbench/fr](Rocket_Workbench/fr.md) , [Ship Workbench/fr](Ship_Workbench/fr.md) , [Silk Workbench/fr](Silk_Workbench/fr.md) , [Symbols Library Workbench/fr](Symbols_Library_Workbench/fr.md) , [Timber Workbench/fr](Timber_Workbench/fr.md) , [WebTools Workbench/fr](WebTools_Workbench/fr.md) , [Workfeature Workbench/fr](Workfeature_Workbench/fr.md) , , , , [Category:Workbenches/fr](Category:Workbenches/fr.md) [Category:Addons/fr](Category:Addons/fr.md) [Category:EM/fr](Category:EM/fr.md) [Category:Fasteners/fr](Category:Fasteners/fr.md) [Category:FCGear/fr](Category:FCGear/fr.md) [Category:SheetMetal/fr](Category:SheetMetal/fr.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/fr diff --git a/wiki/translations/fr/Category:FCGear.md b/wiki/translations/fr/Category:FCGear.md index 32cdd0d3e2..0089ddb14b 100644 --- a/wiki/translations/fr/Category:FCGear.md +++ b/wiki/translations/fr/Category:FCGear.md @@ -6,3 +6,6 @@ All relevant pages to the [FCGear workbench](FCGear_Workbench.md) (an [external [FCGear BevelGear/fr](FCGear_BevelGear/fr.md) , [FCGear CrownGear/fr](FCGear_CrownGear/fr.md) , [FCGear CycloideGear/fr](FCGear_CycloideGear/fr.md) , [FCGear InvoluteGear/fr](FCGear_InvoluteGear/fr.md) , [FCGear InvoluteRack/fr](FCGear_InvoluteRack/fr.md) , [FCGear LanternGear/fr](FCGear_LanternGear/fr.md) , [FCGear TimingGear/fr](FCGear_TimingGear/fr.md) , [FCGear Workbench/fr](FCGear_Workbench/fr.md) , [FCGear WormGear/fr](FCGear_WormGear/fr.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Category:FCGear/fr diff --git a/wiki/translations/fr/Category:FEM.md b/wiki/translations/fr/Category:FEM.md index 5f441be23b..acc6ef147b 100644 --- a/wiki/translations/fr/Category:FEM.md +++ b/wiki/translations/fr/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/fr](FEM_Workbench/fr.md) [Add FEM constraint tutorial/fr](Add_FEM_constraint_tutorial/fr.md) , [Add FEM equation tutorial/fr](Add_FEM_equation_tutorial/fr.md) , [Analysis of reinforced concrete with FEM/fr](Analysis_of_reinforced_concrete_with_FEM/fr.md) , [Artwork Fem/fr](Artwork_Fem/fr.md) , [Extend FEM Module/fr](Extend_FEM_Module/fr.md) , [FEM Analysis/fr](FEM_Analysis/fr.md) , [FEM CalculiX Cantilever 3D/fr](FEM_CalculiX_Cantilever_3D/fr.md) , [FEM CalculiX/fr](FEM_CalculiX/fr.md) , [FEM ClippingPlaneAdd/fr](FEM_ClippingPlaneAdd/fr.md) , [FEM ClippingPlaneRemoveAll/fr](FEM_ClippingPlaneRemoveAll/fr.md) , [FEM Concrete/fr](FEM_Concrete/fr.md) , [FEM ConstantVacuumPermittivity/fr](FEM_ConstantVacuumPermittivity/fr.md) , [FEM ConstraintBearing/fr](FEM_ConstraintBearing/fr.md) , [FEM ConstraintBodyHeatSource/fr](FEM_ConstraintBodyHeatSource/fr.md) , [FEM ConstraintContact/fr](FEM_ConstraintContact/fr.md) , [FEM ConstraintDisplacement/fr](FEM_ConstraintDisplacement/fr.md) , [FEM ConstraintElectrostaticPotential/fr](FEM_ConstraintElectrostaticPotential/fr.md) , [FEM ConstraintFixed/fr](FEM_ConstraintFixed/fr.md) , [FEM ConstraintFlowVelocity/fr](FEM_ConstraintFlowVelocity/fr.md) , [FEM ConstraintFluidBoundary/fr](FEM_ConstraintFluidBoundary/fr.md) , [FEM ConstraintForce/fr](FEM_ConstraintForce/fr.md) , [FEM ConstraintGear/fr](FEM_ConstraintGear/fr.md) , [FEM ConstraintHeatflux/fr](FEM_ConstraintHeatflux/fr.md) , [FEM ConstraintInitialFlowVelocity/fr](FEM_ConstraintInitialFlowVelocity/fr.md) , [FEM ConstraintInitialTemperature/fr](FEM_ConstraintInitialTemperature/fr.md) , [FEM ConstraintPlaneRotation/fr](FEM_ConstraintPlaneRotation/fr.md) , [FEM ConstraintPressure/fr](FEM_ConstraintPressure/fr.md) , [FEM ConstraintPulley/fr](FEM_ConstraintPulley/fr.md) , [FEM ConstraintSectionPrint/fr](FEM_ConstraintSectionPrint/fr.md) , [FEM ConstraintSelfWeight/fr](FEM_ConstraintSelfWeight/fr.md) , [FEM ConstraintTemperature/fr](FEM_ConstraintTemperature/fr.md) , [FEM ConstraintTie/fr](FEM_ConstraintTie/fr.md) , [FEM ConstraintTransform/fr](FEM_ConstraintTransform/fr.md) , [FEM CreateNodesSet/fr](FEM_CreateNodesSet/fr.md) , [FEM Element Types/fr](FEM_Element_Types/fr.md) , [FEM ElementFluid1D/fr](FEM_ElementFluid1D/fr.md) , [FEM ElementGeometry1D/fr](FEM_ElementGeometry1D/fr.md) , [FEM ElementGeometry2D/fr](FEM_ElementGeometry2D/fr.md) , [FEM ElementRotation1D/fr](FEM_ElementRotation1D/fr.md) , [FEM EquationElasticity/fr](FEM_EquationElasticity/fr.md) , [FEM EquationElectricforce/fr](FEM_EquationElectricforce/fr.md) , [FEM EquationElectrostatic/fr](FEM_EquationElectrostatic/fr.md) , [FEM EquationFlow/fr](FEM_EquationFlow/fr.md) , [FEM EquationFlux/fr](FEM_EquationFlux/fr.md) , [FEM EquationHeat/fr](FEM_EquationHeat/fr.md) , [FEM Example Capacitance Two Balls/fr](FEM_Example_Capacitance_Two_Balls/fr.md) , [FEM Examples/fr](FEM_Examples/fr.md) , [FEM FemMesh2Mesh/fr](FEM_FemMesh2Mesh/fr.md) , [FEM Install/fr](FEM_Install/fr.md) , [FEM MaterialFluid/fr](FEM_MaterialFluid/fr.md) , [FEM MaterialMechanicalNonlinear/fr](FEM_MaterialMechanicalNonlinear/fr.md) , [FEM MaterialReinforced/fr](FEM_MaterialReinforced/fr.md) , [FEM MaterialSolid/fr](FEM_MaterialSolid/fr.md) , [FEM Mesh CalculiX/fr](FEM_Mesh_CalculiX/fr.md) , [FEM Mesh/fr](FEM_Mesh/fr.md) , [FEM MeshBoundaryLayer/fr](FEM_MeshBoundaryLayer/fr.md) , [FEM MeshClear/fr](FEM_MeshClear/fr.md) , [FEM MeshDisplayInfo/fr](FEM_MeshDisplayInfo/fr.md) , [FEM MeshGmshFromShape/fr](FEM_MeshGmshFromShape/fr.md) , [FEM MeshGroup/fr](FEM_MeshGroup/fr.md) , [FEM MeshNetgenFromShape/fr](FEM_MeshNetgenFromShape/fr.md) , [FEM MeshRegion/fr](FEM_MeshRegion/fr.md) , [FEM PostApplyChanges/fr](FEM_PostApplyChanges/fr.md) , [FEM PostCreateFunctions/fr](FEM_PostCreateFunctions/fr.md) , [FEM PostFilterClipRegion/fr](FEM_PostFilterClipRegion/fr.md) , [FEM PostFilterClipScalar/fr](FEM_PostFilterClipScalar/fr.md) , [FEM PostFilterCutFunction/fr](FEM_PostFilterCutFunction/fr.md) , [FEM PostFilterDataAlongLine/fr](FEM_PostFilterDataAlongLine/fr.md) , [FEM PostFilterDataAtPoint/fr](FEM_PostFilterDataAtPoint/fr.md) , [FEM PostFilterLinearizedStresses/fr](FEM_PostFilterLinearizedStresses/fr.md) , [FEM PostFilterWarp/fr](FEM_PostFilterWarp/fr.md) , [FEM PostPipelineFromResult/fr](FEM_PostPipelineFromResult/fr.md) , [FEM Preferences/fr](FEM_Preferences/fr.md) , [FEM project/fr](FEM_project/fr.md) , [FEM ResultShow/fr](FEM_ResultShow/fr.md) , [FEM ResultsPurge/fr](FEM_ResultsPurge/fr.md) , [FEM Shear of a Composite Block/fr](FEM_Shear_of_a_Composite_Block/fr.md) , [FEM Solver/fr](FEM_Solver/fr.md) , [FEM SolverCalculiX/fr](FEM_SolverCalculiX/fr.md) , [FEM SolverCalculixCxxtools/fr](FEM_SolverCalculixCxxtools/fr.md) , [FEM SolverControl/fr](FEM_SolverControl/fr.md) , [FEM SolverElmer/fr](FEM_SolverElmer/fr.md) , [FEM SolverRun/fr](FEM_SolverRun/fr.md) , [FEM SolverZ88/fr](FEM_SolverZ88/fr.md) , [Template:FEM Tools navi/fr](Template:FEM_Tools_navi/fr.md) , [FEM Tutorial Python/fr](FEM_Tutorial_Python/fr.md) , [FEM tutorial/fr](FEM_tutorial/fr.md) , [FEM Workbench/fr](FEM_Workbench/fr.md) , [IfcOpenShell/fr](IfcOpenShell/fr.md) , [IfcPlusPlus/fr](IfcPlusPlus/fr.md) , [Material editor/fr](Material_editor/fr.md) , [Material/fr](Material/fr.md) , [Mesh/fr](Mesh/fr.md) , [Post-Processing of FEM Results with Paraview/fr](Post-Processing_of_FEM_Results_with_Paraview/fr.md) , [Transient FEM analysis/fr](Transient_FEM_analysis/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:FEM/fr diff --git a/wiki/translations/fr/Category:Fasteners.md b/wiki/translations/fr/Category:Fasteners.md index 08c34b3eae..513a9d889f 100644 --- a/wiki/translations/fr/Category:Fasteners.md +++ b/wiki/translations/fr/Category:Fasteners.md @@ -6,3 +6,6 @@ This page collects the documentation pages for the [Fasteners Workbench](Fastene [Fasteners Workbench/fr](Fasteners_Workbench/fr.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Category:Fasteners/fr diff --git a/wiki/translations/fr/Category:File_Formats.md b/wiki/translations/fr/Category:File_Formats.md index 1bab7959ca..a3cfd4bd13 100644 --- a/wiki/translations/fr/Category:File_Formats.md +++ b/wiki/translations/fr/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [Arch 3DS/fr](Arch_3DS/fr.md) , [Arch DAE/fr](Arch_DAE/fr.md) , [Arch IFC/fr](Arch_IFC/fr.md) , [Arch JSON/fr](Arch_JSON/fr.md) , [Arch OBJ/fr](Arch_OBJ/fr.md) , [Arch SHP/fr](Arch_SHP/fr.md) , [Asymptote/fr](Asymptote/fr.md) , [Draft DAT/fr](Draft_DAT/fr.md) , [Draft DXF/fr](Draft_DXF/fr.md) , [Draft OCA/fr](Draft_OCA/fr.md) , [Draft SVG/fr](Draft_SVG/fr.md) , [DXF/fr](DXF/fr.md) , [Export to STL or OBJ/fr](Export_to_STL_or_OBJ/fr.md) , [File Format FCStd/fr](File_Format_FCStd/fr.md) , [FreeCAD and DWG Import/fr](FreeCAD_and_DWG_Import/fr.md) , [FreeCAD and DXF Import/fr](FreeCAD_and_DXF_Import/fr.md) , [FreeCAD and Mesh Import/fr](FreeCAD_and_Mesh_Import/fr.md) , [GlTF/fr](GlTF/fr.md) , [Import Export Preferences/fr](Import_Export_Preferences/fr.md) , [Import Export/fr](Import_Export/fr.md) , [Import from STL or OBJ/fr](Import_from_STL_or_OBJ/fr.md) , [Import/Export IFC - compiling IfcOpenShell/fr](Import/Export_IFC_-_compiling_IfcOpenShell/fr.md) , [Importing From Sketchup/fr](Importing_From_Sketchup/fr.md) , [Material/fr](Material/fr.md) , [OpenSCAD CSG tested files/fr](OpenSCAD_CSG_tested_files/fr.md) , [OpenSCAD CSG/fr](OpenSCAD_CSG/fr.md) , [PDF/fr](PDF/fr.md) , [Spreadsheet CSV/fr](Spreadsheet_CSV/fr.md) , [Std Export/fr](Std_Export/fr.md) , [Std Import/fr](Std_Import/fr.md) , [SVG/fr](SVG/fr.md) + +--- +[documentation index](../README.md) > Category:File Formats/fr diff --git a/wiki/translations/fr/Category:Glossary.md b/wiki/translations/fr/Category:Glossary.md index 10c3798693..69e05f24b7 100644 --- a/wiki/translations/fr/Category:Glossary.md +++ b/wiki/translations/fr/Category:Glossary.md @@ -4,3 +4,6 @@ This category tracks pages that explain definitions of words related to FreeCAD ### Contents: [Assembly/fr](Assembly/fr.md) , [Body/fr](Body/fr.md) , [Command/fr](Command/fr.md) , [Constraint/fr](Constraint/fr.md) , [Datum/fr](Datum/fr.md) , [Drawing/fr](Drawing/fr.md) , [Feature/fr](Feature/fr.md) , [Glossary/fr](Glossary/fr.md) , [Manipulator/fr](Manipulator/fr.md) , [Mesh Feature/fr](Mesh_Feature/fr.md) , [Mesh/fr](Mesh/fr.md) , [Model/fr](Model/fr.md) , [Part/fr](Part/fr.md) , [Python/fr](Python/fr.md) , [Shape/fr](Shape/fr.md) , [Sketch/fr](Sketch/fr.md) + +--- +[documentation index](../README.md) > Category:Glossary/fr diff --git a/wiki/translations/fr/Category:Help.md b/wiki/translations/fr/Category:Help.md index 9872fabcac..c231d2b378 100644 --- a/wiki/translations/fr/Category:Help.md +++ b/wiki/translations/fr/Category:Help.md @@ -6,3 +6,6 @@ Category:Help/fr [Help:Editing/fr](Help:Editing/fr.md) , [Help/fr](Help/fr.md) [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:Help/fr diff --git a/wiki/translations/fr/Category:Hubs.md b/wiki/translations/fr/Category:Hubs.md index 36e1dc1826..88055c9272 100644 --- a/wiki/translations/fr/Category:Hubs.md +++ b/wiki/translations/fr/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Developer hub/fr](Developer_hub/fr.md) , [Power users hub/fr](Power_users_hub/fr.md) , [Scientific literature/fr](Scientific_literature/fr.md) , [User hub/fr](User_hub/fr.md) , [Wished tools/fr](Wished_tools/fr.md) [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:Hubs/fr diff --git a/wiki/translations/fr/Category:Icon.md b/wiki/translations/fr/Category:Icon.md index 5f989aa344..e5beeeeedc 100644 --- a/wiki/translations/fr/Category:Icon.md +++ b/wiki/translations/fr/Category:Icon.md @@ -6,3 +6,6 @@ Cette catégorie rassemble les articles s\'adressant surtout aux traducteurs du [Artwork Erroneous/fr](Artwork_Erroneous/fr.md) , [Artwork/fr](Artwork/fr.md) [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:Icon/fr diff --git a/wiki/translations/fr/Category:Image.md b/wiki/translations/fr/Category:Image.md index 1041492303..712f8f73d5 100644 --- a/wiki/translations/fr/Category:Image.md +++ b/wiki/translations/fr/Category:Image.md @@ -6,3 +6,6 @@ Cette catégorie est la catégorie de niveau supérieur pour **images**. Il ne d [Artwork Image/fr](Artwork_Image/fr.md) , [Bitmap/fr](Bitmap/fr.md) , [Image CreateImagePlane/fr](Image_CreateImagePlane/fr.md) , [Image Open/fr](Image_Open/fr.md) , [Image Scaling/fr](Image_Scaling/fr.md) , [Image Workbench/fr](Image_Workbench/fr.md) [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:Image/fr diff --git a/wiki/translations/fr/Category:Inspection.md b/wiki/translations/fr/Category:Inspection.md index 2389f0414e..4c34a39c1b 100644 --- a/wiki/translations/fr/Category:Inspection.md +++ b/wiki/translations/fr/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench/fr](Inspection_Wo [Artwork Inspection/fr](Artwork_Inspection/fr.md) , [Inspection Workbench/fr](Inspection_Workbench/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Inspection/fr diff --git a/wiki/translations/fr/Category:Interface.md b/wiki/translations/fr/Category:Interface.md index 1f43c24fd2..b0f242c114 100644 --- a/wiki/translations/fr/Category:Interface.md +++ b/wiki/translations/fr/Category:Interface.md @@ -4,3 +4,6 @@ Cette catégorie répertorie les pages décrivant l\'interface FreeCAD. ### Contents: [3D view/fr](3D_view/fr.md) , [Combo view/fr](Combo_view/fr.md) , [DAG view/fr](DAG_view/fr.md) , [Interface Customization/fr](Interface_Customization/fr.md) , [Template:Interface navi/fr](Template:Interface_navi/fr.md) , [Interface/fr](Interface/fr.md) , [Main view area/fr](Main_view_area/fr.md) , [Property editor/fr](Property_editor/fr.md) , [Python console/fr](Python_console/fr.md) , [Report view/fr](Report_view/fr.md) , [Selection view/fr](Selection_view/fr.md) , [Standard Menu/fr](Standard_Menu/fr.md) , [Status bar/fr](Status_bar/fr.md) , [Std Workbench/fr](Std_Workbench/fr.md) , [Task panel/fr](Task_panel/fr.md) , [Tree view/fr](Tree_view/fr.md) + +--- +[documentation index](../README.md) > Category:Interface/fr diff --git a/wiki/translations/fr/Category:Macros.md b/wiki/translations/fr/Category:Macros.md index d16b278e43..3665cb912f 100644 --- a/wiki/translations/fr/Category:Macros.md +++ b/wiki/translations/fr/Category:Macros.md @@ -6,3 +6,6 @@ Cette catégorie contient des macros qui permettent d\'étendre les fonctionnali [Macro 3D Parametric Curve/fr](Macro_3D_Parametric_Curve/fr.md) , [Macro 3d Printer Slicer Individual Parts/fr](Macro_3d_Printer_Slicer_Individual_Parts/fr.md) , [Macro 3d Printer Slicer/fr](Macro_3d_Printer_Slicer/fr.md) , [Macro AeroFoil/fr](Macro_AeroFoil/fr.md) , [Macro Airfoil Import & Scale/fr](Macro_Airfoil_Import_&_Scale/fr.md) , [Macro Alias Manager/fr](Macro_Alias_Manager/fr.md) , [Macro Align Camera to Working Plane/fr](Macro_Align_Camera_to_Working_Plane/fr.md) , [Macro Align Face Object to View/fr](Macro_Align_Face_Object_to_View/fr.md) , [Macro Align Object to View/fr](Macro_Align_Object_to_View/fr.md) , [Macro Align View to Face/fr](Macro_Align_View_to_Face/fr.md) , [Macro Align Working Plane to Camera/fr](Macro_Align_Working_Plane_to_Camera/fr.md) , [Macro Animated Constrain/fr](Macro_Animated_Constrain/fr.md) , [Macro Apothem Based Prism GUI/fr](Macro_Apothem_Based_Prism_GUI/fr.md) , [Macro Arch Axis System Repartition/fr](Macro_Arch_Axis_System_Repartition/fr.md) , [Macro ArrayCopy/fr](Macro_ArrayCopy/fr.md) , [Macro Assemblage Imprimante 3D/fr](Macro_Assemblage_Imprimante_3D/fr.md) , [Macro Assembly/fr](Macro_Assembly/fr.md) , [Macro at Startup/fr](Macro_at_Startup/fr.md) , [Macro Automatic drawing/fr](Macro_Automatic_drawing/fr.md) , [Macro BOLTS/fr](Macro_BOLTS/fr.md) , [Macro BoundingBox Tracing/fr](Macro_BoundingBox_Tracing/fr.md) , [Macro Build Utility/fr](Macro_Build_Utility/fr.md) , [Macro Cabinets32/fr](Macro_Cabinets32/fr.md) , [Macro CartoucheFC 2/fr](Macro_CartoucheFC_2/fr.md) , [Macro CartoucheFC Full/fr](Macro_CartoucheFC_Full/fr.md) , [Macro CartoucheFC/fr](Macro_CartoucheFC/fr.md) , [Macro Center Align Objects with Faces or Edges/fr](Macro_Center_Align_Objects_with_Faces_or_Edges/fr.md) , [Macro CenterFace/fr](Macro_CenterFace/fr.md) , [Macro CenterOfMass/fr](Macro_CenterOfMass/fr.md) , [Macro Circle/fr](Macro_Circle/fr.md) , [Macro CirclePlus/fr](Macro_CirclePlus/fr.md) , [Macro CloneConvert/fr](Macro_CloneConvert/fr.md) , [Macro Compound Plus/fr](Macro_Compound_Plus/fr.md) , [Macro Connect And Sweep/fr](Macro_Connect_And_Sweep/fr.md) , [Macro Constraint Draft/fr](Macro_Constraint_Draft/fr.md) , [Macro Copy3DViewToClipboard/fr](Macro_Copy3DViewToClipboard/fr.md) , [Macro Corner shapes wizard/fr](Macro_Corner_shapes_wizard/fr.md) , [Macro Corner shapes wizard/update/fr](Macro_Corner_shapes_wizard/update/fr.md) , [Macro crank simul/fr](Macro_crank_simul/fr.md) , [Macro Creating faces from a DXF file/fr](Macro_Creating_faces_from_a_DXF_file/fr.md) , [Macro cross section/fr](Macro_cross_section/fr.md) , [Macro Cut Circle/fr](Macro_Cut_Circle/fr.md) , [Macro Cut Line/fr](Macro_Cut_Line/fr.md) , [Macro DeepCopy/fr](Macro_DeepCopy/fr.md) , [Macro Delta xyz/fr](Macro_Delta_xyz/fr.md) , [Macro documentation/fr](Macro_documentation/fr.md) , [Macro Draft Circle 3 Points 3D/fr](Macro_Draft_Circle_3_Points_3D/fr.md) , [Macro Draft Circle 3 Points/fr](Macro_Draft_Circle_3_Points/fr.md) , [Macro Draw 2D Function/fr](Macro_Draw_2D_Function/fr.md) , [Macro Draw Parametric 2D Function/fr](Macro_Draw_Parametric_2D_Function/fr.md) , [Macro Dump Objects/fr](Macro_Dump_Objects/fr.md) , [Macro Duplicate Selection/fr](Macro_Duplicate_Selection/fr.md) , [Macro DXF to Face and Sketch/fr](Macro_DXF_to_Face_and_Sketch/fr.md) , [Macro Easy cutouts for Enclosure Design/fr](Macro_Easy_cutouts_for_Enclosure_Design/fr.md) , [Macro EdgesToArc/fr](Macro_EdgesToArc/fr.md) , [Macro Ellipse-Center+2Points/fr](Macro_Ellipse-Center+2Points/fr.md) , [Macro ExpandTreeItem/fr](Macro_ExpandTreeItem/fr.md) , [Macro export transient FEM results/fr](Macro_export_transient_FEM_results/fr.md) , [Macro Extract Wires from Mesh/fr](Macro_Extract_Wires_from_Mesh/fr.md) , [Macro FaceToSketch/fr](Macro_FaceToSketch/fr.md) , [Macro FC Convert Lines/fr](Macro_FC_Convert_Lines/fr.md) , [Macro FC element selector/fr](Macro_FC_element_selector/fr.md) , [Macro FCCamera/fr](Macro_FCCamera/fr.md) , [Macro FCCamGroover/fr](Macro_FCCamGroover/fr.md) , [Macro FCCircularText/fr](Macro_FCCircularText/fr.md) , [Macro FCGear/fr](Macro_FCGear/fr.md) , [Macro FCHoneycombMaker/fr](Macro_FCHoneycombMaker/fr.md) , [Macro FCInfo Alternate Linux/fr](Macro_FCInfo_Alternate_Linux/fr.md) , [Macro FCInfo/fr](Macro_FCInfo/fr.md) , [Macro FCInfoGlass/fr](Macro_FCInfoGlass/fr.md) , [Macro FCInfoToMouse/fr](Macro_FCInfoToMouse/fr.md) , [Macro FCSpreadSheet Extract/fr](Macro_FCSpreadSheet_Extract/fr.md) , [Macro FCSpring Helix Variable/fr](Macro_FCSpring_Helix_Variable/fr.md) , [Macro FCSpring On Surface/fr](Macro_FCSpring_On_Surface/fr.md) , [Macro FCTreeView/fr](Macro_FCTreeView/fr.md) , [Macro FCWire To Volume/fr](Macro_FCWire_To_Volume/fr.md) , [Macro findConfigFiles/fr](Macro_findConfigFiles/fr.md) , [Macro FlattenWire/fr](Macro_FlattenWire/fr.md) , [Macro FlattenWire3Points/fr](Macro_FlattenWire3Points/fr.md) , [Macro Fonts Win10 PYMP/fr](Macro_Fonts_Win10_PYMP/fr.md) , [Macro ForceRecompute/fr](Macro_ForceRecompute/fr.md) , [Macro FreeCAD to Kerkythea/fr](Macro_FreeCAD_to_Kerkythea/fr.md) , [Macro Geneva Wheel GUI/fr](Macro_Geneva_Wheel_GUI/fr.md) , [Macro Geneva Wheel/fr](Macro_Geneva_Wheel/fr.md) , [Macro Geodesic Dome/fr](Macro_Geodesic_Dome/fr.md) , [Macro Global Variable Watcher/fr](Macro_Global_Variable_Watcher/fr.md) , [Macro GMSH/fr](Macro_GMSH/fr.md) , [Macro GuiResetToolbars/fr](Macro_GuiResetToolbars/fr.md) , [Macro Guitar fretboard/fr](Macro_Guitar_fretboard/fr.md) , [Macro Guitar Nut/fr](Macro_Guitar_Nut/fr.md) , [Macro Half turn stairs/fr](Macro_Half_turn_stairs/fr.md) , [Macro Half-Hull Model/fr](Macro_Half-Hull_Model/fr.md) , [Macro HealArcs/fr](Macro_HealArcs/fr.md) , [Macro HiddenAlls/fr](Macro_HiddenAlls/fr.md) , [Macro HighlightCommon/fr](Macro_HighlightCommon/fr.md) , [Macro HighlightDifference/fr](Macro_HighlightDifference/fr.md) , [Macro HilbertCurve/fr](Macro_HilbertCurve/fr.md) , [Macro hinge/fr](Macro_hinge/fr.md) , [Macro If Selected Stay If Not Then Delete/fr](Macro_If_Selected_Stay_If_Not_Then_Delete/fr.md) , [Macro Image Scaling/fr](Macro_Image_Scaling/fr.md) , [Macro ImperialScales/fr](Macro_ImperialScales/fr.md) , [Macro JointWire/fr](Macro_JointWire/fr.md) , [Macro Kerkythea/fr](Macro_Kerkythea/fr.md) , [Macro Line Length/fr](Macro_Line_Length/fr.md) , [Macro Loft/fr](Macro_Loft/fr.md) , [Macro MacroMenu/fr](Macro_MacroMenu/fr.md) , [Macro Make Arc 3 Points/fr](Macro_Make_Arc_3_Points/fr.md) , [Macro Make Circle 3 Points/fr](Macro_Make_Circle_3_Points/fr.md) , [Macro Make Cube/fr](Macro_Make_Cube/fr.md) , [Macro Manage Navigational Style/fr](Macro_Manage_Navigational_Style/fr.md) , [Macro Manage Navigational Style2/fr](Macro_Manage_Navigational_Style2/fr.md) , [Macro MatrixTransform/fr](Macro_MatrixTransform/fr.md) , [Macro MeasureCircle/fr](Macro_MeasureCircle/fr.md) , [Macro Megaminx/fr](Macro_Megaminx/fr.md) , [Macro merge duplicate materials/fr](Macro_merge_duplicate_materials/fr.md) , [Macro MeshToPart/fr](Macro_MeshToPart/fr.md) , [Macro MessageBox/fr](Macro_MessageBox/fr.md) , [Macro Mouse Cross/fr](Macro_Mouse_Cross/fr.md) , [Macro Mouse over cb/fr](Macro_Mouse_over_cb/fr.md) , [Macro MoveToOrigin/fr](Macro_MoveToOrigin/fr.md) , [Macro MultiCopy/fr](Macro_MultiCopy/fr.md) , [Macro Normal Vector/fr](Macro_Normal_Vector/fr.md) , [Macro ObjectInfo/fr](Macro_ObjectInfo/fr.md) , [Macro Overlap/fr](Macro_Overlap/fr.md) , [Macro Parametric Curve FP/fr](Macro_Parametric_Curve_FP/fr.md) , [Macro PartsLibrary/fr](Macro_PartsLibrary/fr.md) , [Macro PartToVRML/fr](Macro_PartToVRML/fr.md) , [Macro Perpendicular To Wire/fr](Macro_Perpendicular_To_Wire/fr.md) , [Macro PlacementAbsolufy/fr](Macro_PlacementAbsolufy/fr.md) , [Macro Polyhedrons/fr](Macro_Polyhedrons/fr.md) , [Macro Print SceneGraph/fr](Macro_Print_SceneGraph/fr.md) , [Macro PropertyMemo/fr](Macro_PropertyMemo/fr.md) , [Macro Pyramid/fr](Macro_Pyramid/fr.md) , [Macro Python Assistant Window/fr](Macro_Python_Assistant_Window/fr.md) , [Macro Recompute Profiler/fr](Macro_Recompute_Profiler/fr.md) , [Macro Rectellipse/fr](Macro_Rectellipse/fr.md) , [Macro Remove parametric history/fr](Macro_Remove_parametric_history/fr.md) , [Macro Replace Part in Assembly/fr](Macro_Replace_Part_in_Assembly/fr.md) , [Macro Repro Wire/fr](Macro_Repro_Wire/fr.md) , [Macro Rotate To Point/fr](Macro_Rotate_To_Point/fr.md) , [Macro Rotate View Free/fr](Macro_Rotate_View_Free/fr.md) , [Macro Rotate View/fr](Macro_Rotate_View/fr.md) , [Macro Rotate ViewAxonometric/fr](Macro_Rotate_ViewAxonometric/fr.md) , [Macro Rubik Cube/fr](Macro_Rubik_Cube/fr.md) , [Macro Screen Wiki/fr](Macro_Screen_Wiki/fr.md) , [Macro screw maker1 2/fr](Macro_screw_maker1_2/fr.md) , [Macro Section/fr](Macro_Section/fr.md) , [Macro Select Hovering/fr](Macro_Select_Hovering/fr.md) , [Macro SelectVisible/fr](Macro_SelectVisible/fr.md) , [Macro Shake Sketch/fr](Macro_Shake_Sketch/fr.md) , [Macro Sheet Metal Unfolder/fr](Macro_Sheet_Metal_Unfolder/fr.md) , [Macro SimpleProperties/fr](Macro_SimpleProperties/fr.md) , [Macro Site From Contours/fr](Macro_Site_From_Contours/fr.md) , [Macro SketchUnmap/fr](Macro_SketchUnmap/fr.md) , [Macro Snip/fr](Macro_Snip/fr.md) , [Macro Solid Sweep/fr](Macro_Solid_Sweep/fr.md) , [Macro SplitPropEditor/fr](Macro_SplitPropEditor/fr.md) , [Macro Spreadsheet2html/fr](Macro_Spreadsheet2html/fr.md) , [Macro SpreadsheetTools/fr](Macro_SpreadsheetTools/fr.md) , [Macro Spring/fr](Macro_Spring/fr.md) , [Macro Stairs/fr](Macro_Stairs/fr.md) , [Macro StraightenObject/fr](Macro_StraightenObject/fr.md) , [Macro SuperWire/fr](Macro_SuperWire/fr.md) , [Macro Texture Objects/fr](Macro_Texture_Objects/fr.md) , [Macro Texture/fr](Macro_Texture/fr.md) , [Macro Toggle Drawstyle Optimized/fr](Macro_Toggle_Drawstyle_Optimized/fr.md) , [Macro Toggle Drawstyle/fr](Macro_Toggle_Drawstyle/fr.md) , [Macro Toggle Panels Visibility/fr](Macro_Toggle_Panels_Visibility/fr.md) , [Macro Toggle Visibility/fr](Macro_Toggle_Visibility/fr.md) , [Macro Toggle Visibility2 1-2/fr](Macro_Toggle_Visibility2_1-2/fr.md) , [Macro Toggle Visibility2 2-2/fr](Macro_Toggle_Visibility2_2-2/fr.md) , [Macro TreeToAscii/fr](Macro_TreeToAscii/fr.md) , [Macro Triangle AH/fr](Macro_Triangle_AH/fr.md) , [Macro Unbind Numpad Shortcuts/fr](Macro_Unbind_Numpad_Shortcuts/fr.md) , [Macro Unfold Box/fr](Macro_Unfold_Box/fr.md) , [Macro Unroll Ruled Surface/fr](Macro_Unroll_Ruled_Surface/fr.md) , [Macro View Rotation/fr](Macro_View_Rotation/fr.md) , [Macro Visibility Manager/fr](Macro_Visibility_Manager/fr.md) , [Macro VisibleAlls/fr](Macro_VisibleAlls/fr.md) , [Macro WireXYZ/fr](Macro_WireXYZ/fr.md) , [Macro Wiring And Hoses/fr](Macro_Wiring_And_Hoses/fr.md) , [Macro WorkFeatures/fr](Macro_WorkFeatures/fr.md) , [Template:Macro/fr](Template:Macro/fr.md) , [Macros recipes/fr](Macros_recipes/fr.md) , [Macros/fr](Macros/fr.md) , [Misc templates Full/fr](Misc_templates_Full/fr.md) , [Qt Example/fr](Qt_Example/fr.md) , [Svg Namespace/fr](Svg_Namespace/fr.md) [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:Macros/fr diff --git a/wiki/translations/fr/Category:Manual.md b/wiki/translations/fr/Category:Manual.md index e09e2b8d21..aa8daebd3c 100644 --- a/wiki/translations/fr/Category:Manual.md +++ b/wiki/translations/fr/Category:Manual.md @@ -4,3 +4,6 @@ This category contains all the page of the FreeCAD manual Cette catégorie conti ### Contents: [Manual:A gentle introduction/fr](Manual:A_gentle_introduction/fr.md) , [Manual:All workbenches at a glance/fr](Manual:All_workbenches_at_a_glance/fr.md) , [Manual:BIM modeling/fr](Manual:BIM_modeling/fr.md) , [Manual:Creating and manipulating geometry/fr](Manual:Creating_and_manipulating_geometry/fr.md) , [Manual:Creating FEM analyses/fr](Manual:Creating_FEM_analyses/fr.md) , [Manual:Creating interface tools/fr](Manual:Creating_interface_tools/fr.md) , [Manual:Creating parametric objects/fr](Manual:Creating_parametric_objects/fr.md) , [Manual:Creating renderings/fr](Manual:Creating_renderings/fr.md) , [Manual:Generating 2D drawings/fr](Manual:Generating_2D_drawings/fr.md) , [Manual:Import and export to other filetypes/fr](Manual:Import_and_export_to_other_filetypes/fr.md) , [Manual:Installing/fr](Manual:Installing/fr.md) , [Manual:Introduction/fr](Manual:Introduction/fr.md) , [Manual:Modeling for product design/fr](Manual:Modeling_for_product_design/fr.md) , [Manual:Navigating in the 3D view/fr](Manual:Navigating_in_the_3D_view/fr.md) , [Manual:Parametric objects/fr](Manual:Parametric_objects/fr.md) , [Manual:Preparing models for 3D printing/fr](Manual:Preparing_models_for_3D_printing/fr.md) , [Manual:Summary/fr](Manual:Summary/fr.md) , [Manual:The Community/fr](Manual:The_Community/fr.md) , [Manual:The FreeCAD document/fr](Manual:The_FreeCAD_document/fr.md) , [Manual:The FreeCAD Interface/fr](Manual:The_FreeCAD_Interface/fr.md) , [Template:Manual:TOC/fr](Template:Manual:TOC/fr.md) , [Manual:Traditional 2D drafting/fr](Manual:Traditional_2D_drafting/fr.md) , [Manual:Traditional modeling, the CSG way/fr](Manual:Traditional_modeling,_the_CSG_way/fr.md) , [Manual:Using spreadsheets/fr](Manual:Using_spreadsheets/fr.md) , [Manual:What is FreeCAD/fr](Manual:What_is_FreeCAD/fr.md) + +--- +[documentation index](../README.md) > Category:Manual/fr diff --git a/wiki/translations/fr/Category:Mesh.md b/wiki/translations/fr/Category:Mesh.md index 2686869562..4de1eef3a1 100644 --- a/wiki/translations/fr/Category:Mesh.md +++ b/wiki/translations/fr/Category:Mesh.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages liées à l\'[Atelier maille](Mesh_Workbe [Artwork Mesh/fr](Artwork_Mesh/fr.md) , [Artwork MeshPart/fr](Artwork_MeshPart/fr.md) , [Asymptote/fr](Asymptote/fr.md) , [Manual:Preparing models for 3D printing/fr](Manual:Preparing_models_for_3D_printing/fr.md) , [Mesh AddFacet/fr](Mesh_AddFacet/fr.md) , [Mesh BoundingBox/fr](Mesh_BoundingBox/fr.md) , [Mesh BuildRegularSolid/fr](Mesh_BuildRegularSolid/fr.md) , [Mesh CrossSections/fr](Mesh_CrossSections/fr.md) , [Mesh CurvatureInfo/fr](Mesh_CurvatureInfo/fr.md) , [Mesh Decimating/fr](Mesh_Decimating/fr.md) , [Mesh Difference/fr](Mesh_Difference/fr.md) , [Mesh EvaluateFacet/fr](Mesh_EvaluateFacet/fr.md) , [Mesh EvaluateSolid/fr](Mesh_EvaluateSolid/fr.md) , [Mesh Evaluation/fr](Mesh_Evaluation/fr.md) , [Mesh Export/fr](Mesh_Export/fr.md) , [Mesh Feature/fr](Mesh_Feature/fr.md) , [Mesh FillInteractiveHole/fr](Mesh_FillInteractiveHole/fr.md) , [Mesh FillupHoles/fr](Mesh_FillupHoles/fr.md) , [Mesh FlipNormals/fr](Mesh_FlipNormals/fr.md) , [Mesh FromPartShape/fr](Mesh_FromPartShape/fr.md) , [Mesh HarmonizeNormals/fr](Mesh_HarmonizeNormals/fr.md) , [Mesh Import/fr](Mesh_Import/fr.md) , [Mesh Intersection/fr](Mesh_Intersection/fr.md) , [Mesh Merge/fr](Mesh_Merge/fr.md) , [Mesh MeshObject/fr](Mesh_MeshObject/fr.md) , [Mesh PolyCut/fr](Mesh_PolyCut/fr.md) , [Mesh PolyTrim/fr](Mesh_PolyTrim/fr.md) , [Mesh RemeshGmsh/fr](Mesh_RemeshGmsh/fr.md) , [Mesh RemoveCompByHand/fr](Mesh_RemoveCompByHand/fr.md) , [Mesh RemoveComponents/fr](Mesh_RemoveComponents/fr.md) , [Mesh Scale/fr](Mesh_Scale/fr.md) , [Mesh Scripting/fr](Mesh_Scripting/fr.md) , [Mesh SectionByPlane/fr](Mesh_SectionByPlane/fr.md) , [Mesh Segmentation/fr](Mesh_Segmentation/fr.md) , [Mesh SegmentationBestFit/fr](Mesh_SegmentationBestFit/fr.md) , [Mesh Smoothing/fr](Mesh_Smoothing/fr.md) , [Mesh SplitComponents/fr](Mesh_SplitComponents/fr.md) , [Mesh to Part/fr](Mesh_to_Part/fr.md) , [Template:Mesh Tools navi/fr](Template:Mesh_Tools_navi/fr.md) , [Mesh TrimByPlane/fr](Mesh_TrimByPlane/fr.md) , [Mesh Union/fr](Mesh_Union/fr.md) , [Mesh VertexCurvature/fr](Mesh_VertexCurvature/fr.md) , [Mesh Workbench/fr](Mesh_Workbench/fr.md) , [Mesh/fr](Mesh/fr.md) , [MeshPart CreateFlatFace/fr](MeshPart_CreateFlatFace/fr.md) , [MeshPart CreateFlatMesh/fr](MeshPart_CreateFlatMesh/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Mesh/fr diff --git a/wiki/translations/fr/Category:News.md b/wiki/translations/fr/Category:News.md index 0a96c8991a..0c3a48d1de 100644 --- a/wiki/translations/fr/Category:News.md +++ b/wiki/translations/fr/Category:News.md @@ -6,3 +6,6 @@ This category contains articles with news and messages about FreeCAD. [History/fr](History/fr.md) , [Release notes 0.11/fr](Release_notes_0.11/fr.md) , [Release notes 0.12/fr](Release_notes_0.12/fr.md) , [Release notes 0.13/fr](Release_notes_0.13/fr.md) , [Release notes 0.14/fr](Release_notes_0.14/fr.md) , [Release notes 0.15/fr](Release_notes_0.15/fr.md) , [Release notes 0.16/fr](Release_notes_0.16/fr.md) , [Release notes 0.17/fr](Release_notes_0.17/fr.md) , [Release notes 0.18/fr](Release_notes_0.18/fr.md) , [Release notes 0.19/fr](Release_notes_0.19/fr.md) , [Release notes 0.20/fr](Release_notes_0.20/fr.md) [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:News/fr diff --git a/wiki/translations/fr/Category:Obsolete_Workbenches.md b/wiki/translations/fr/Category:Obsolete_Workbenches.md index eb6f229965..96af67b4c3 100644 --- a/wiki/translations/fr/Category:Obsolete_Workbenches.md +++ b/wiki/translations/fr/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les ateliers obsolètes, c\'est-à-dire les atelier [Complete Workbench/fr](Complete_Workbench/fr.md) , [Drawing Workbench/fr](Drawing_Workbench/fr.md) , , [Category:Workbenches/fr](Category:Workbenches/fr.md) [Category:Complete/fr](Category:Complete/fr.md) [Category:Drawing/fr](Category:Drawing/fr.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/fr diff --git a/wiki/translations/fr/Category:Obsolete_page.md b/wiki/translations/fr/Category:Obsolete_page.md index 51565d7b70..a888772633 100644 --- a/wiki/translations/fr/Category:Obsolete_page.md +++ b/wiki/translations/fr/Category:Obsolete_page.md @@ -1,6 +1,7 @@ # Category:Obsolete page/fr - - Cette catégorie répertorie les pages obsolètes par rapport à la version actuelle de FreeCAD. Ils sont candidats à la suppression après discussion sur le forum FreeCAD \... ### Contents: + +--- +[documentation index](../README.md) > Category:Obsolete page/fr diff --git a/wiki/translations/fr/Category:OpenSCAD.md b/wiki/translations/fr/Category:OpenSCAD.md index 6e7bf172b2..8d08fcf0dc 100644 --- a/wiki/translations/fr/Category:OpenSCAD.md +++ b/wiki/translations/fr/Category:OpenSCAD.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages liées à l\'[atelier OpenSCAD](OpenSCAD_ [Artwork OpenSCAD/fr](Artwork_OpenSCAD/fr.md) , [Import OpenSCAD code/fr](Import_OpenSCAD_code/fr.md) , [OpenSCAD AddOpenSCADElement/fr](OpenSCAD_AddOpenSCADElement/fr.md) , [OpenSCAD ColorCodeShape/fr](OpenSCAD_ColorCodeShape/fr.md) , [OpenSCAD CSG tested files/fr](OpenSCAD_CSG_tested_files/fr.md) , [OpenSCAD CSG/fr](OpenSCAD_CSG/fr.md) , [OpenSCAD Edgestofaces/fr](OpenSCAD_Edgestofaces/fr.md) , [OpenSCAD ExpandPlacements/fr](OpenSCAD_ExpandPlacements/fr.md) , [OpenSCAD ExplodeGroup/fr](OpenSCAD_ExplodeGroup/fr.md) , [OpenSCAD Hull/fr](OpenSCAD_Hull/fr.md) , [OpenSCAD IncreaseToleranceFeature/fr](OpenSCAD_IncreaseToleranceFeature/fr.md) , [OpenSCAD MeshBoolean/fr](OpenSCAD_MeshBoolean/fr.md) , [OpenSCAD Minkowski/fr](OpenSCAD_Minkowski/fr.md) , [OpenSCAD MirrorMeshFeature/fr](OpenSCAD_MirrorMeshFeature/fr.md) , [OpenSCAD Preferences/fr](OpenSCAD_Preferences/fr.md) , [OpenSCAD RefineShapeFeature/fr](OpenSCAD_RefineShapeFeature/fr.md) , [OpenSCAD RemoveSubtree/fr](OpenSCAD_RemoveSubtree/fr.md) , [OpenSCAD ReplaceObject/fr](OpenSCAD_ReplaceObject/fr.md) , [OpenSCAD ResizeMeshFeature/fr](OpenSCAD_ResizeMeshFeature/fr.md) , [OpenSCAD ScaleMeshFeature/fr](OpenSCAD_ScaleMeshFeature/fr.md) , [Template:OpenSCAD Tools navi/fr](Template:OpenSCAD_Tools_navi/fr.md) , [OpenSCAD Workbench/fr](OpenSCAD_Workbench/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/fr diff --git a/wiki/translations/fr/Category:Packaging.md b/wiki/translations/fr/Category:Packaging.md index 9bd3266503..652c07b7b8 100644 --- a/wiki/translations/fr/Category:Packaging.md +++ b/wiki/translations/fr/Category:Packaging.md @@ -6,3 +6,6 @@ This category collects pages related to packing FreeCAD for different platforms, [AppImage/fr](AppImage/fr.md) , [Debian development/fr](Debian_development/fr.md) , [Debian Unstable/fr](Debian_Unstable/fr.md) , [Git buildpackage/fr](Git_buildpackage/fr.md) , [Linux packaging/fr](Linux_packaging/fr.md) , [Packaging/fr](Packaging/fr.md) [Category:Developer\_Documentation/fr](Category:Developer_Documentation/fr.md) + +--- +[documentation index](../README.md) > Category:Packaging/fr diff --git a/wiki/translations/fr/Category:Part.md b/wiki/translations/fr/Category:Part.md index 43da993183..23fff79309 100644 --- a/wiki/translations/fr/Category:Part.md +++ b/wiki/translations/fr/Category:Part.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages liées à [Part Workbench/fr](Part_Workbe [Aeroplane/fr](Aeroplane/fr.md) , [Artwork Part/fr](Artwork_Part/fr.md) , [Basic modeling tutorial/fr](Basic_modeling_tutorial/fr.md) , [Constructive solid geometry/fr](Constructive_solid_geometry/fr.md) , [Draft ShapeString tutorial/fr](Draft_ShapeString_tutorial/fr.md) , [Feature/fr](Feature/fr.md) , [Part and PartDesign/fr](Part_and_PartDesign/fr.md) , [Part Boolean/fr](Part_Boolean/fr.md) , [Part BooleanFragments/fr](Part_BooleanFragments/fr.md) , [Part Box/fr](Part_Box/fr.md) , [Part BoxSelection/fr](Part_BoxSelection/fr.md) , [Part Builder/fr](Part_Builder/fr.md) , [Part Chamfer/fr](Part_Chamfer/fr.md) , [Part CheckGeometry/fr](Part_CheckGeometry/fr.md) , [Part Circle/fr](Part_Circle/fr.md) , [Part Common/fr](Part_Common/fr.md) , [Part CompCompoundTools/fr](Part_CompCompoundTools/fr.md) , [Part CompJoinFeatures/fr](Part_CompJoinFeatures/fr.md) , [Part CompOffsetTools/fr](Part_CompOffsetTools/fr.md) , [Part Compound/fr](Part_Compound/fr.md) , [Part CompoundFilter/fr](Part_CompoundFilter/fr.md) , [Part CompSplittingTools/fr](Part_CompSplittingTools/fr.md) , [Part Cone/fr](Part_Cone/fr.md) , [Part CrossSections/fr](Part_CrossSections/fr.md) , [Part Cut/fr](Part_Cut/fr.md) , [Part Cylinder/fr](Part_Cylinder/fr.md) , [Part Defeaturing/fr](Part_Defeaturing/fr.md) , [Part EditAttachment/fr](Part_EditAttachment/fr.md) , [Part ElementCopy/fr](Part_ElementCopy/fr.md) , [Part Ellipse/fr](Part_Ellipse/fr.md) , [Part Ellipsoid/fr](Part_Ellipsoid/fr.md) , [Part ExplodeCompound/fr](Part_ExplodeCompound/fr.md) , [Part Export/fr](Part_Export/fr.md) , [Part Extrude/fr](Part_Extrude/fr.md) , [Part Feature/fr](Part_Feature/fr.md) , [Part Fillet/fr](Part_Fillet/fr.md) , [Part Fuse/fr](Part_Fuse/fr.md) , [Part Helix/fr](Part_Helix/fr.md) , [Part Import/fr](Part_Import/fr.md) , [Part JoinConnect/fr](Part_JoinConnect/fr.md) , [Part JoinCutout/fr](Part_JoinCutout/fr.md) , [Part JoinEmbed/fr](Part_JoinEmbed/fr.md) , [Part Line/fr](Part_Line/fr.md) , [Part Loft Technical Details/fr](Part_Loft_Technical_Details/fr.md) , [Part Loft/fr](Part_Loft/fr.md) , [Part MakeFace/fr](Part_MakeFace/fr.md) , [Part MakeSolid/fr](Part_MakeSolid/fr.md) , [Part Measure Angular/fr](Part_Measure_Angular/fr.md) , [Part Measure Clear All/fr](Part_Measure_Clear_All/fr.md) , [Part Measure Linear/fr](Part_Measure_Linear/fr.md) , [Part Measure Menu/fr](Part_Measure_Menu/fr.md) , [Part Measure Refresh/fr](Part_Measure_Refresh/fr.md) , [Part Measure Toggle 3d/fr](Part_Measure_Toggle_3d/fr.md) , [Part Measure Toggle All/fr](Part_Measure_Toggle_All/fr.md) , [Part Measure Toggle Delta/fr](Part_Measure_Toggle_Delta/fr.md) , [Part Mirror/fr](Part_Mirror/fr.md) , [Part Module/fr](Part_Module/fr.md) , [Part Offset/fr](Part_Offset/fr.md) , [Part Offset2D/fr](Part_Offset2D/fr.md) , [Part Part2DObject/fr](Part_Part2DObject/fr.md) , [Part Plane/fr](Part_Plane/fr.md) , [Part Point/fr](Part_Point/fr.md) , [Part PointsFromMesh/fr](Part_PointsFromMesh/fr.md) , [Part Primitives/fr](Part_Primitives/fr.md) , [Part Prism/fr](Part_Prism/fr.md) , [Part ProjectionOnSurface/fr](Part_ProjectionOnSurface/fr.md) , [Part RefineShape/fr](Part_RefineShape/fr.md) , [Part RegularPolygon/fr](Part_RegularPolygon/fr.md) , [Part ReverseShapes/fr](Part_ReverseShapes/fr.md) , [Part Revolve/fr](Part_Revolve/fr.md) , [Part RuledSurface/fr](Part_RuledSurface/fr.md) , [Part scripting/fr](Part_scripting/fr.md) , [Part Section/fr](Part_Section/fr.md) , [Part ShapeFromMesh/fr](Part_ShapeFromMesh/fr.md) , [Part SimpleCopy/fr](Part_SimpleCopy/fr.md) , [Part Slice/fr](Part_Slice/fr.md) , [Part SliceApart/fr](Part_SliceApart/fr.md) , [Part Sphere/fr](Part_Sphere/fr.md) , [Part Spiral/fr](Part_Spiral/fr.md) , [Part Sweep/fr](Part_Sweep/fr.md) , [Part Thickness/fr](Part_Thickness/fr.md) , [Template:Part Tools navi/fr](Template:Part_Tools_navi/fr.md) , [Part TopoShape/fr](Part_TopoShape/fr.md) , [Part Torus/fr](Part_Torus/fr.md) , [Part TransformedCopy/fr](Part_TransformedCopy/fr.md) , [Part Tube/fr](Part_Tube/fr.md) , [Part Wedge/fr](Part_Wedge/fr.md) , [Part XOR/fr](Part_XOR/fr.md) , [Shape/fr](Shape/fr.md) , [Thread for Screw Tutorial/fr](Thread_for_Screw_Tutorial/fr.md) , [Topological naming problem/fr](Topological_naming_problem/fr.md) , [Whiffle Ball tutorial/fr](Whiffle_Ball_tutorial/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Part/fr diff --git a/wiki/translations/fr/Category:PartDesign.md b/wiki/translations/fr/Category:PartDesign.md index 63ae2fe527..de0fdfa086 100644 --- a/wiki/translations/fr/Category:PartDesign.md +++ b/wiki/translations/fr/Category:PartDesign.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to PartDesign ### Contents: [Artwork PartDesign/fr](Artwork_PartDesign/fr.md) , [Basic Attachment Tutorial/fr](Basic_Attachment_Tutorial/fr.md) , [Basic Part Design Tutorial/fr](Basic_Part_Design_Tutorial/fr.md) , [Body/fr](Body/fr.md) , [Creating a simple part with PartDesign/fr](Creating_a_simple_part_with_PartDesign/fr.md) , [Datum/fr](Datum/fr.md) , [Draft ShapeString tutorial/fr](Draft_ShapeString_tutorial/fr.md) , [Feature editing/fr](Feature_editing/fr.md) , [Feature/fr](Feature/fr.md) , [Part and PartDesign/fr](Part_and_PartDesign/fr.md) , [PartDesign AdditiveBox/fr](PartDesign_AdditiveBox/fr.md) , [PartDesign AdditiveCone/fr](PartDesign_AdditiveCone/fr.md) , [PartDesign AdditiveCylinder/fr](PartDesign_AdditiveCylinder/fr.md) , [PartDesign AdditiveEllipsoid/fr](PartDesign_AdditiveEllipsoid/fr.md) , [PartDesign AdditiveHelix/fr](PartDesign_AdditiveHelix/fr.md) , [PartDesign AdditiveLoft/fr](PartDesign_AdditiveLoft/fr.md) , [PartDesign AdditivePipe/fr](PartDesign_AdditivePipe/fr.md) , [PartDesign AdditivePrism/fr](PartDesign_AdditivePrism/fr.md) , [PartDesign AdditiveSphere/fr](PartDesign_AdditiveSphere/fr.md) , [PartDesign AdditiveTorus/fr](PartDesign_AdditiveTorus/fr.md) , [PartDesign AdditiveWedge/fr](PartDesign_AdditiveWedge/fr.md) , [PartDesign Body/fr](PartDesign_Body/fr.md) , [PartDesign Boolean/fr](PartDesign_Boolean/fr.md) , [PartDesign Chamfer/fr](PartDesign_Chamfer/fr.md) , [PartDesign Clone/fr](PartDesign_Clone/fr.md) , [PartDesign CompPrimitiveAdditive/fr](PartDesign_CompPrimitiveAdditive/fr.md) , [PartDesign CompPrimitiveSubtractive/fr](PartDesign_CompPrimitiveSubtractive/fr.md) , [PartDesign CoordinateSystem/fr](PartDesign_CoordinateSystem/fr.md) , [PartDesign Draft/fr](PartDesign_Draft/fr.md) , [PartDesign Feature/fr](PartDesign_Feature/fr.md) , [PartDesign Fillet/fr](PartDesign_Fillet/fr.md) , [PartDesign Groove/fr](PartDesign_Groove/fr.md) , [PartDesign Hole/fr](PartDesign_Hole/fr.md) , [PartDesign InvoluteGear/fr](PartDesign_InvoluteGear/fr.md) , [PartDesign Line/fr](PartDesign_Line/fr.md) , [PartDesign LinearPattern/fr](PartDesign_LinearPattern/fr.md) , [PartDesign Migrate/fr](PartDesign_Migrate/fr.md) , [PartDesign Mirrored/fr](PartDesign_Mirrored/fr.md) , [PartDesign MoveFeature/fr](PartDesign_MoveFeature/fr.md) , [PartDesign MoveFeatureInTree/fr](PartDesign_MoveFeatureInTree/fr.md) , [PartDesign MoveTip/fr](PartDesign_MoveTip/fr.md) , [PartDesign MultiTransform/fr](PartDesign_MultiTransform/fr.md) , [PartDesign NewSketch/fr](PartDesign_NewSketch/fr.md) , [PartDesign Pad/fr](PartDesign_Pad/fr.md) , [PartDesign Plane/fr](PartDesign_Plane/fr.md) , [PartDesign Pocket/fr](PartDesign_Pocket/fr.md) , [PartDesign Point/fr](PartDesign_Point/fr.md) , [PartDesign PolarPattern/fr](PartDesign_PolarPattern/fr.md) , [PartDesign Preferences/fr](PartDesign_Preferences/fr.md) , [PartDesign Revolution/fr](PartDesign_Revolution/fr.md) , [PartDesign ShapeBinder/fr](PartDesign_ShapeBinder/fr.md) , [PartDesign Sprocket/fr](PartDesign_Sprocket/fr.md) , [PartDesign SubShapeBinder/fr](PartDesign_SubShapeBinder/fr.md) , [PartDesign SubtractiveBox/fr](PartDesign_SubtractiveBox/fr.md) , [PartDesign SubtractiveCone/fr](PartDesign_SubtractiveCone/fr.md) , [PartDesign SubtractiveCylinder/fr](PartDesign_SubtractiveCylinder/fr.md) , [PartDesign SubtractiveEllipsoid/fr](PartDesign_SubtractiveEllipsoid/fr.md) , [PartDesign SubtractiveHelix/fr](PartDesign_SubtractiveHelix/fr.md) , [PartDesign SubtractiveLoft/fr](PartDesign_SubtractiveLoft/fr.md) , [PartDesign SubtractivePipe/fr](PartDesign_SubtractivePipe/fr.md) , [PartDesign SubtractivePrism/fr](PartDesign_SubtractivePrism/fr.md) , [PartDesign SubtractiveSphere/fr](PartDesign_SubtractiveSphere/fr.md) , [PartDesign SubtractiveTorus/fr](PartDesign_SubtractiveTorus/fr.md) , [PartDesign SubtractiveWedge/fr](PartDesign_SubtractiveWedge/fr.md) , [PartDesign Thickness/fr](PartDesign_Thickness/fr.md) , [Template:PartDesign Tools navi/fr](Template:PartDesign_Tools_navi/fr.md) , [PartDesign WizardShaft/fr](PartDesign_WizardShaft/fr.md) , [PartDesign Workbench/fr](PartDesign_Workbench/fr.md) , [Thread for Screw Tutorial/fr](Thread_for_Screw_Tutorial/fr.md) , [Toothbrush Head Stand/fr](Toothbrush_Head_Stand/fr.md) , [Topological naming problem/fr](Topological_naming_problem/fr.md) + +--- +[documentation index](../README.md) > Category:PartDesign/fr diff --git a/wiki/translations/fr/Category:Path.md b/wiki/translations/fr/Category:Path.md index 5d9708d9e3..bbd190f5cb 100644 --- a/wiki/translations/fr/Category:Path.md +++ b/wiki/translations/fr/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/fr](PartDesign_Wo [Artwork Path/fr](Artwork_Path/fr.md) , [Template:Depths/Heights/fr](Template:Depths/Heights/fr.md) , [Manual:Preparing models for 3D printing/fr](Manual:Preparing_models_for_3D_printing/fr.md) , [Path Adaptive/fr](Path_Adaptive/fr.md) , [Path Area Workplane/fr](Path_Area_Workplane/fr.md) , [Path Area/fr](Path_Area/fr.md) , [Path Array/fr](Path_Array/fr.md) , [Path Comment/fr](Path_Comment/fr.md) , [Path Copy/fr](Path_Copy/fr.md) , [Path Custom/fr](Path_Custom/fr.md) , [Path Development Roadmap/fr](Path_Development_Roadmap/fr.md) , [Path DressupDogbone/fr](Path_DressupDogbone/fr.md) , [Path DressupDragKnife/fr](Path_DressupDragKnife/fr.md) , [Path DressupLeadInOut/fr](Path_DressupLeadInOut/fr.md) , [Path DressupPathBoundary/fr](Path_DressupPathBoundary/fr.md) , [Path DressupRampEntry/fr](Path_DressupRampEntry/fr.md) , [Path DressupTag/fr](Path_DressupTag/fr.md) , [Path Drilling/fr](Path_Drilling/fr.md) , [Path Engrave/fr](Path_Engrave/fr.md) , [Path experimental/fr](Path_experimental/fr.md) , [Path ExportTemplate/fr](Path_ExportTemplate/fr.md) , [Path FAQ/fr](Path_FAQ/fr.md) , [Path Fixture/fr](Path_Fixture/fr.md) , [Path fourth axis/fr](Path_fourth_axis/fr.md) , [Path Helix/fr](Path_Helix/fr.md) , [Path Inspect/fr](Path_Inspect/fr.md) , [Path Job/fr](Path_Job/fr.md) , [Path MillFace/fr](Path_MillFace/fr.md) , [Path OpActiveToggle/fr](Path_OpActiveToggle/fr.md) , [Path Pocket 3D/fr](Path_Pocket_3D/fr.md) , [Path Pocket Shape/fr](Path_Pocket_Shape/fr.md) , [Path Post/fr](Path_Post/fr.md) , [Path Postprocessor Customization/fr](Path_Postprocessor_Customization/fr.md) , [Path Preferences/fr](Path_Preferences/fr.md) , [Path Profile/fr](Path_Profile/fr.md) , [Path Sanity/fr](Path_Sanity/fr.md) , [Path scripting/fr](Path_scripting/fr.md) , [Path SelectLoop/fr](Path_SelectLoop/fr.md) , [Path SetupSheet/fr](Path_SetupSheet/fr.md) , [Path Shape/fr](Path_Shape/fr.md) , [Path SimpleCopy/fr](Path_SimpleCopy/fr.md) , [Path Simulator/fr](Path_Simulator/fr.md) , [Path Slot/fr](Path_Slot/fr.md) , [Path Stop/fr](Path_Stop/fr.md) , [Path Surface/fr](Path_Surface/fr.md) , [Path ToolBit Library/fr](Path_ToolBit_Library/fr.md) , [Path ToolBit/fr](Path_ToolBit/fr.md) , [Path ToolBitDock/fr](Path_ToolBitDock/fr.md) , [Path ToolBitLibraryOpen/fr](Path_ToolBitLibraryOpen/fr.md) , [Path ToolController/fr](Path_ToolController/fr.md) , [Path ToolLibraryEdit/fr](Path_ToolLibraryEdit/fr.md) , [Template:Path Tools navi/fr](Template:Path_Tools_navi/fr.md) , [Path Tools/fr](Path_Tools/fr.md) , [Path ToolShape/fr](Path_ToolShape/fr.md) , [Path Vcarve/fr](Path_Vcarve/fr.md) , [Path Walkthrough for the Impatient/fr](Path_Walkthrough_for_the_Impatient/fr.md) , [Path Waterline/fr](Path_Waterline/fr.md) , [Path Workbench/fr](Path_Workbench/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Path/fr diff --git a/wiki/translations/fr/Category:Plot.md b/wiki/translations/fr/Category:Plot.md index 8475489b3e..19a3f3a476 100644 --- a/wiki/translations/fr/Category:Plot.md +++ b/wiki/translations/fr/Category:Plot.md @@ -6,3 +6,6 @@ Cette catégorie liste les pages en relation avec l\'[atelier Plot](Plot_Workben [Artwork Plot/fr](Artwork_Plot/fr.md) , [Plot Axes/fr](Plot_Axes/fr.md) , [Plot Basic tutorial/fr](Plot_Basic_tutorial/fr.md) , [Plot Grid/fr](Plot_Grid/fr.md) , [Plot Labels/fr](Plot_Labels/fr.md) , [Plot Legend/fr](Plot_Legend/fr.md) , [Plot Module/fr](Plot_Module/fr.md) , [Plot MultiAxes tutorial/fr](Plot_MultiAxes_tutorial/fr.md) , [Plot Positions/fr](Plot_Positions/fr.md) , [Plot Save/fr](Plot_Save/fr.md) , [Plot Series/fr](Plot_Series/fr.md) , [Template:Plot Tools navi/fr](Template:Plot_Tools_navi/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Plot/fr diff --git a/wiki/translations/fr/Category:Points.md b/wiki/translations/fr/Category:Points.md index 3c869a7f38..ce5dfc817e 100644 --- a/wiki/translations/fr/Category:Points.md +++ b/wiki/translations/fr/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/fr](Points_Workbench/ [Artwork Points/fr](Artwork_Points/fr.md) , [Points Convert/fr](Points_Convert/fr.md) , [Points Export/fr](Points_Export/fr.md) , [Points Import/fr](Points_Import/fr.md) , [Points Merge/fr](Points_Merge/fr.md) , [Points PolyCut/fr](Points_PolyCut/fr.md) , [Points Structure/fr](Points_Structure/fr.md) , [Points Workbench/fr](Points_Workbench/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Points/fr diff --git a/wiki/translations/fr/Category:Poweruser_Documentation.md b/wiki/translations/fr/Category:Poweruser_Documentation.md index b9f006655b..47bdc2ce60 100644 --- a/wiki/translations/fr/Category:Poweruser_Documentation.md +++ b/wiki/translations/fr/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ Cette catégorie affiche les articles de la documentation concernant le scriptin [Arch API/fr](Arch_API/fr.md) , [Base API/fr](Base_API/fr.md) , [Builtin modules/fr](Builtin_modules/fr.md) , [Code snippets/fr](Code_snippets/fr.md) , [Coin3d snippets/fr](Coin3d_snippets/fr.md) , [Command/fr](Command/fr.md) , [Console API/fr](Console_API/fr.md) , [Create a FeaturePython object part I/fr](Create_a_FeaturePython_object_part_I/fr.md) , [Create a FeaturePython object part II/fr](Create_a_FeaturePython_object_part_II/fr.md) , [Custom icon in tree view/fr](Custom_icon_in_tree_view/fr.md) , [Debugging/fr](Debugging/fr.md) , [Dialog creation image and animated GIF/fr](Dialog_creation_image_and_animated_GIF/fr.md) , [Dialog creation reading and writing files/fr](Dialog_creation_reading_and_writing_files/fr.md) , [Dialog creation setting colors/fr](Dialog_creation_setting_colors/fr.md) , [Dialog creation with various widgets/fr](Dialog_creation_with_various_widgets/fr.md) , [Dialog creation/fr](Dialog_creation/fr.md) , [Draft API/fr](Draft_API/fr.md) , [Drawing API example/fr](Drawing_API_example/fr.md) , [Embedding FreeCAD/fr](Embedding_FreeCAD/fr.md) , [Embedding FreeCADGui/fr](Embedding_FreeCADGui/fr.md) , [Expressions/fr](Expressions/fr.md) , [FeaturePython methods/fr](FeaturePython_methods/fr.md) , [FEM CalculiX/fr](FEM_CalculiX/fr.md) , [FEM Element Types/fr](FEM_Element_Types/fr.md) , [FEM Mesh CalculiX/fr](FEM_Mesh_CalculiX/fr.md) , [FreeCAD API/fr](FreeCAD_API/fr.md) , [FreeCAD Scripting Basics/fr](FreeCAD_Scripting_Basics/fr.md) , [FreeCAD vector math library/fr](FreeCAD_vector_math_library/fr.md) , [FreeCADGui API/fr](FreeCADGui_API/fr.md) , [Gui Command/fr](Gui_Command/fr.md) , [How to install additional workbenches/fr](How_to_install_additional_workbenches/fr.md) , [How to install macros/fr](How_to_install_macros/fr.md) , [Installing more workbenches/fr](Installing_more_workbenches/fr.md) , [Interface creation/fr](Interface_creation/fr.md) , [Introduction to Python/fr](Introduction_to_Python/fr.md) , [Line drawing function/fr](Line_drawing_function/fr.md) , [LinkSub/fr](LinkSub/fr.md) , [LinkSubList/fr](LinkSubList/fr.md) , [Macro at Startup/fr](Macro_at_Startup/fr.md) , [Macros/fr](Macros/fr.md) , [Manual:A gentle introduction/fr](Manual:A_gentle_introduction/fr.md) , [Manual:Creating and manipulating geometry/fr](Manual:Creating_and_manipulating_geometry/fr.md) , [Manual:Creating interface tools/fr](Manual:Creating_interface_tools/fr.md) , [Manual:Creating parametric objects/fr](Manual:Creating_parametric_objects/fr.md) , [Manual:Import and export to other filetypes/fr](Manual:Import_and_export_to_other_filetypes/fr.md) , [Manual:Installing/fr](Manual:Installing/fr.md) , [Manual:Parametric objects/fr](Manual:Parametric_objects/fr.md) , [Matrix API/fr](Matrix_API/fr.md) , [Mesh API/fr](Mesh_API/fr.md) , [Mesh Scripting/fr](Mesh_Scripting/fr.md) , [Mesh to Part/fr](Mesh_to_Part/fr.md) , [Multithreading/fr](Multithreading/fr.md) , [Object API/fr](Object_API/fr.md) , [OpenCASCADE/fr](OpenCASCADE/fr.md) , [Part API/fr](Part_API/fr.md) , [Part scripting/fr](Part_scripting/fr.md) , [Path experimental/fr](Path_experimental/fr.md) , [Path scripting/fr](Path_scripting/fr.md) , [Pivy/fr](Pivy/fr.md) , [Placement API/fr](Placement_API/fr.md) , [Power users hub/fr](Power_users_hub/fr.md) , [Profiling/fr](Profiling/fr.md) , [Property/fr](Property/fr.md) , [PySide Advanced Examples/fr](PySide_Advanced_Examples/fr.md) , [PySide Beginner Examples/fr](PySide_Beginner_Examples/fr.md) , [PySide Intermediate Examples/fr](PySide_Intermediate_Examples/fr.md) , [PySide usage snippets/fr](PySide_usage_snippets/fr.md) , [PySide/fr](PySide/fr.md) , [Python Development Environment/fr](Python_Development_Environment/fr.md) , [Python scripting tutorial/fr](Python_scripting_tutorial/fr.md) , [Python/fr](Python/fr.md) , [PythonOCC/fr](PythonOCC/fr.md) , [Qt Example/fr](Qt_Example/fr.md) , [Quantity/fr](Quantity/fr.md) , [Raytracing API example/fr](Raytracing_API_example/fr.md) , [Reinforcement API/fr](Reinforcement_API/fr.md) , [Scenegraph/fr](Scenegraph/fr.md) , [Scientific literature/fr](Scientific_literature/fr.md) , [Scripted objects saving attributes/fr](Scripted_objects_saving_attributes/fr.md) , [Scripted objects with attachment/fr](Scripted_objects_with_attachment/fr.md) , [Scripted objects/fr](Scripted_objects/fr.md) , [Scripted Parts: Ball Bearing - Part 1/fr](Scripted_Parts:_Ball_Bearing_-_Part_1/fr.md) , [Scripted Parts: Ball Bearing - Part 2/fr](Scripted_Parts:_Ball_Bearing_-_Part_2/fr.md) , [Scripting and macros/fr](Scripting_and_macros/fr.md) , [Scripts/fr](Scripts/fr.md) , [Selection API/fr](Selection_API/fr.md) , [Svg Namespace/fr](Svg_Namespace/fr.md) , [TechDraw API/fr](TechDraw_API/fr.md) , [TechDrawGui API/fr](TechDrawGui_API/fr.md) , [Topological data scripting/fr](Topological_data_scripting/fr.md) , [TopoShape API/fr](TopoShape_API/fr.md) , [Units/fr](Units/fr.md) , [Vector API/fr](Vector_API/fr.md) , [ViewObject API/fr](ViewObject_API/fr.md) , [Viewprovider/fr](Viewprovider/fr.md) , [Workbench creation/fr](Workbench_creation/fr.md) , [Wrapping a Cplusplus class in Python/fr](Wrapping_a_Cplusplus_class_in_Python/fr.md) [Category:Documentation/fr](Category:Documentation/fr.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/fr diff --git a/wiki/translations/fr/Category:Preferences.md b/wiki/translations/fr/Category:Preferences.md index 1547cfae80..c50ca21053 100644 --- a/wiki/translations/fr/Category:Preferences.md +++ b/wiki/translations/fr/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Arch Preferences/fr](Arch_Preferences/fr.md) , [Customize Toolbars/fr](Customize_Toolbars/fr.md) , [Draft Preferences/fr](Draft_Preferences/fr.md) , [FEM Preferences/fr](FEM_Preferences/fr.md) , [Import Export Preferences/fr](Import_Export_Preferences/fr.md) , [OpenSCAD Preferences/fr](OpenSCAD_Preferences/fr.md) , [PartDesign Preferences/fr](PartDesign_Preferences/fr.md) , [Path Preferences/fr](Path_Preferences/fr.md) , [Preferences Editor/fr](Preferences_Editor/fr.md) , [Raytracing Preferences/fr](Raytracing_Preferences/fr.md) , [Sketcher Preferences/fr](Sketcher_Preferences/fr.md) , [Start Preferences/fr](Start_Preferences/fr.md) , [TechDraw Preferences/fr](TechDraw_Preferences/fr.md) + +--- +[documentation index](../README.md) > Category:Preferences/fr diff --git a/wiki/translations/fr/Category:Python_Code.md b/wiki/translations/fr/Category:Python_Code.md index d92b6d5e45..114497af40 100644 --- a/wiki/translations/fr/Category:Python_Code.md +++ b/wiki/translations/fr/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Code snippets/fr](Code_snippets/fr.md) , [Command/fr](Command/fr.md) , [Create a FeaturePython object part I/fr](Create_a_FeaturePython_object_part_I/fr.md) , [Create a FeaturePython object part II/fr](Create_a_FeaturePython_object_part_II/fr.md) , [Custom icon in tree view/fr](Custom_icon_in_tree_view/fr.md) , [Debugging/fr](Debugging/fr.md) , [Dialog creation image and animated GIF/fr](Dialog_creation_image_and_animated_GIF/fr.md) , [Dialog creation reading and writing files/fr](Dialog_creation_reading_and_writing_files/fr.md) , [Dialog creation setting colors/fr](Dialog_creation_setting_colors/fr.md) , [Dialog creation with various widgets/fr](Dialog_creation_with_various_widgets/fr.md) , [Dialog creation/fr](Dialog_creation/fr.md) , [Drawing API example/fr](Drawing_API_example/fr.md) , [Embedding FreeCAD/fr](Embedding_FreeCAD/fr.md) , [Embedding FreeCADGui/fr](Embedding_FreeCADGui/fr.md) , [Extra python modules/fr](Extra_python_modules/fr.md) , [FeaturePython methods/fr](FeaturePython_methods/fr.md) , [FEM Tutorial Python/fr](FEM_Tutorial_Python/fr.md) , [FreeCAD Scripting Basics/fr](FreeCAD_Scripting_Basics/fr.md) , [FreeCAD vector math library/fr](FreeCAD_vector_math_library/fr.md) , [How to install macros/fr](How_to_install_macros/fr.md) , [Interface creation/fr](Interface_creation/fr.md) , [Introduction to Python/fr](Introduction_to_Python/fr.md) , [Line drawing function/fr](Line_drawing_function/fr.md) , [Macro at Startup/fr](Macro_at_Startup/fr.md) , [Macros recipes/fr](Macros_recipes/fr.md) , [Macros/fr](Macros/fr.md) , [Manual:A gentle introduction/fr](Manual:A_gentle_introduction/fr.md) , [Manual:Creating and manipulating geometry/fr](Manual:Creating_and_manipulating_geometry/fr.md) , [Manual:Creating interface tools/fr](Manual:Creating_interface_tools/fr.md) , [Manual:Creating parametric objects/fr](Manual:Creating_parametric_objects/fr.md) , [Mesh Scripting/fr](Mesh_Scripting/fr.md) , [Mesh to Part/fr](Mesh_to_Part/fr.md) , [Part scripting/fr](Part_scripting/fr.md) , [Path scripting/fr](Path_scripting/fr.md) , [Pivy/fr](Pivy/fr.md) , [Profiling/fr](Profiling/fr.md) , [Property/fr](Property/fr.md) , [PySide Advanced Examples/fr](PySide_Advanced_Examples/fr.md) , [PySide Beginner Examples/fr](PySide_Beginner_Examples/fr.md) , [PySide Intermediate Examples/fr](PySide_Intermediate_Examples/fr.md) , [PySide usage snippets/fr](PySide_usage_snippets/fr.md) , [PySide/fr](PySide/fr.md) , [Python Development Environment/fr](Python_Development_Environment/fr.md) , [Python scripting tutorial/fr](Python_scripting_tutorial/fr.md) , [Python/fr](Python/fr.md) , [PythonOCC/fr](PythonOCC/fr.md) , [Qt Example/fr](Qt_Example/fr.md) , [Quantity/fr](Quantity/fr.md) , [Raytracing API example/fr](Raytracing_API_example/fr.md) , [Scripted objects saving attributes/fr](Scripted_objects_saving_attributes/fr.md) , [Scripted objects with attachment/fr](Scripted_objects_with_attachment/fr.md) , [Scripted objects/fr](Scripted_objects/fr.md) , [Scripted Parts: Ball Bearing - Part 1/fr](Scripted_Parts:_Ball_Bearing_-_Part_1/fr.md) , [Scripted Parts: Ball Bearing - Part 2/fr](Scripted_Parts:_Ball_Bearing_-_Part_2/fr.md) , [Scripting and macros/fr](Scripting_and_macros/fr.md) , [Scripts/fr](Scripts/fr.md) , [Svg Namespace/fr](Svg_Namespace/fr.md) , [Topological data scripting/fr](Topological_data_scripting/fr.md) , [Viewprovider/fr](Viewprovider/fr.md) , [Workbench creation/fr](Workbench_creation/fr.md) [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:Python Code/fr diff --git a/wiki/translations/fr/Category:Raytracing.md b/wiki/translations/fr/Category:Raytracing.md index 23ad3289ef..2eebdf0660 100644 --- a/wiki/translations/fr/Category:Raytracing.md +++ b/wiki/translations/fr/Category:Raytracing.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages liées à [Raytracing Workbench](Raytraci [Artwork Raytracing/fr](Artwork_Raytracing/fr.md) , [Manual:Creating renderings/fr](Manual:Creating_renderings/fr.md) , [Raytracing API example/fr](Raytracing_API_example/fr.md) , [Raytracing ExportProject/fr](Raytracing_ExportProject/fr.md) , [Raytracing InsertPart/fr](Raytracing_InsertPart/fr.md) , [Raytracing Lux/fr](Raytracing_Lux/fr.md) , [Raytracing New/fr](Raytracing_New/fr.md) , [Raytracing Preferences/fr](Raytracing_Preferences/fr.md) , [Raytracing Render/fr](Raytracing_Render/fr.md) , [Raytracing ResetCamera/fr](Raytracing_ResetCamera/fr.md) , [Raytracing templates/fr](Raytracing_templates/fr.md) , [Template:Raytracing Tools navi/fr](Template:Raytracing_Tools_navi/fr.md) , [Raytracing tutorial/fr](Raytracing_tutorial/fr.md) , [Raytracing Workbench/fr](Raytracing_Workbench/fr.md) , [Raytracing WriteCamera/fr](Raytracing_WriteCamera/fr.md) , [Raytracing WritePart/fr](Raytracing_WritePart/fr.md) , [Raytracing WriteView/fr](Raytracing_WriteView/fr.md) , [Tutorial FreeCAD POV ray/fr](Tutorial_FreeCAD_POV_ray/fr.md) , [Tutorial Render with Blender/fr](Tutorial_Render_with_Blender/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Raytracing/fr diff --git a/wiki/translations/fr/Category:Reinforcement.md b/wiki/translations/fr/Category:Reinforcement.md index f2ee5641e6..a893da16f8 100644 --- a/wiki/translations/fr/Category:Reinforcement.md +++ b/wiki/translations/fr/Category:Reinforcement.md @@ -4,3 +4,6 @@ [Arch Rebar BeamReinforcement/fr](Arch_Rebar_BeamReinforcement/fr.md) , [Arch Rebar BentShape/fr](Arch_Rebar_BentShape/fr.md) , [Arch Rebar BOM/fr](Arch_Rebar_BOM/fr.md) , [Arch Rebar Circular ColumnReinforcement/fr](Arch_Rebar_Circular_ColumnReinforcement/fr.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/fr](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/fr.md) , [Arch Rebar ColumnReinforcement/fr](Arch_Rebar_ColumnReinforcement/fr.md) , [Arch Rebar Dimensioning/fr](Arch_Rebar_Dimensioning/fr.md) , [Arch Rebar Drawing Dimensioning/fr](Arch_Rebar_Drawing_Dimensioning/fr.md) , [Arch Rebar Drawing/fr](Arch_Rebar_Drawing/fr.md) , [Arch Rebar Helical/fr](Arch_Rebar_Helical/fr.md) , [Arch Rebar LShape/fr](Arch_Rebar_LShape/fr.md) , [Arch Rebar Slab Reinforcement/fr](Arch_Rebar_Slab_Reinforcement/fr.md) , [Arch Rebar Stirrup/fr](Arch_Rebar_Stirrup/fr.md) , [Arch Rebar Straight/fr](Arch_Rebar_Straight/fr.md) , [Arch Rebar UShape/fr](Arch_Rebar_UShape/fr.md) , [Arch Rebar/fr](Arch_Rebar/fr.md) , [Custom Spacing/fr](Custom_Spacing/fr.md) , [Reinforcement Addon/fr](Reinforcement_Addon/fr.md) , [Reinforcement API/fr](Reinforcement_API/fr.md) , [Reinforcement Bar Bending Schedule/fr](Reinforcement_Bar_Bending_Schedule/fr.md) , [Reinforcement Bar Shape Cut List/fr](Reinforcement_Bar_Shape_Cut_List/fr.md) , [Reinforcement Workbench/fr](Reinforcement_Workbench/fr.md) [Category:Arch/fr](Category:Arch/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Reinforcement/fr diff --git a/wiki/translations/fr/Category:Releases.md b/wiki/translations/fr/Category:Releases.md index 0da081890e..fc0a106657 100644 --- a/wiki/translations/fr/Category:Releases.md +++ b/wiki/translations/fr/Category:Releases.md @@ -4,3 +4,6 @@ Catégorie qui relie toutes les pages de publication de versions de FreeCAD. ### Contents: [Release notes 0.11/fr](Release_notes_0.11/fr.md) , [Release notes 0.12/fr](Release_notes_0.12/fr.md) , [Release notes 0.13/fr](Release_notes_0.13/fr.md) , [Release notes 0.14/fr](Release_notes_0.14/fr.md) , [Release notes 0.15/fr](Release_notes_0.15/fr.md) , [Release notes 0.16/fr](Release_notes_0.16/fr.md) , [Release notes 0.17/fr](Release_notes_0.17/fr.md) , [Release notes 0.18/fr](Release_notes_0.18/fr.md) , [Release notes 0.19/fr](Release_notes_0.19/fr.md) , [Release notes 0.20/fr](Release_notes_0.20/fr.md) + +--- +[documentation index](../README.md) > Category:Releases/fr diff --git a/wiki/translations/fr/Category:Repository.md b/wiki/translations/fr/Category:Repository.md index 87bfa4af2f..2f89ac94d4 100644 --- a/wiki/translations/fr/Category:Repository.md +++ b/wiki/translations/fr/Category:Repository.md @@ -4,3 +4,6 @@ This category gathers pages that act as a repository of resources for FreeCAD, s ### Contents: [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:Repository/fr diff --git a/wiki/translations/fr/Category:Reverse_Engineering.md b/wiki/translations/fr/Category:Reverse_Engineering.md index 7c62f84267..b38ff25ca5 100644 --- a/wiki/translations/fr/Category:Reverse_Engineering.md +++ b/wiki/translations/fr/Category:Reverse_Engineering.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages liées à [Reverse Engineering Workbench/ [Artwork ReverseEngineering/fr](Artwork_ReverseEngineering/fr.md) , [Reverse Engineering Workbench/fr](Reverse_Engineering_Workbench/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Reverse Engineering/fr diff --git a/wiki/translations/fr/Category:Roadmap.md b/wiki/translations/fr/Category:Roadmap.md index e46f815027..eda16e18da 100644 --- a/wiki/translations/fr/Category:Roadmap.md +++ b/wiki/translations/fr/Category:Roadmap.md @@ -6,3 +6,6 @@ Cette catégorie regroupe tous les articles de documention ce qui sont prévues [Arch Concept/fr](Arch_Concept/fr.md) , [Artwork project/fr](Artwork_project/fr.md) , [Assembly project/fr](Assembly_project/fr.md) , [CAM project/fr](CAM_project/fr.md) , [Development roadmap/fr](Development_roadmap/fr.md) , [FEM project/fr](FEM_project/fr.md) , [FreeCAD development model project/fr](FreeCAD_development_model_project/fr.md) , [HiDPI support/fr](HiDPI_support/fr.md) , [Land Survey Workbench Blueprint/fr](Land_Survey_Workbench_Blueprint/fr.md) , [Material data model/fr](Material_data_model/fr.md) , [Material/fr](Material/fr.md) , [Naming project/fr](Naming_project/fr.md) , [PartDesign project/fr](PartDesign_project/fr.md) , [Project template/fr](Project_template/fr.md) , [Quality project/fr](Quality_project/fr.md) , [Raytracing project/fr](Raytracing_project/fr.md) , [Resource framework project/fr](Resource_framework_project/fr.md) , [Robot project/fr](Robot_project/fr.md) , [Sketcher project/fr](Sketcher_project/fr.md) , [STEP project/fr](STEP_project/fr.md) , [Tolerancing/fr](Tolerancing/fr.md) , [Units project/fr](Units_project/fr.md) , [UTF Project/fr](UTF_Project/fr.md) , [Wished tools/fr](Wished_tools/fr.md) [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:Roadmap/fr diff --git a/wiki/translations/fr/Category:Robot.md b/wiki/translations/fr/Category:Robot.md index 9dbe284536..4d9214258c 100644 --- a/wiki/translations/fr/Category:Robot.md +++ b/wiki/translations/fr/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/fr](Robot_Workbench/fr [Artwork Robot/fr](Artwork_Robot/fr.md) , [Robot 6-Axis/fr](Robot_6-Axis/fr.md) , [Robot API example/fr](Robot_API_example/fr.md) , [Robot CreateRobot/fr](Robot_CreateRobot/fr.md) , [Robot CreateTrajectory/fr](Robot_CreateTrajectory/fr.md) , [Robot Edge2Trac/fr](Robot_Edge2Trac/fr.md) , [Robot Export/fr](Robot_Export/fr.md) , [Robot InsertWaypoint/fr](Robot_InsertWaypoint/fr.md) , [Robot InsertWaypointPre/fr](Robot_InsertWaypointPre/fr.md) , [Robot RestoreHomePos/fr](Robot_RestoreHomePos/fr.md) , [Robot SetDefaultOrientation/fr](Robot_SetDefaultOrientation/fr.md) , [Robot SetDefaultValues/fr](Robot_SetDefaultValues/fr.md) , [Robot SetHomePos/fr](Robot_SetHomePos/fr.md) , [Robot Simulate/fr](Robot_Simulate/fr.md) , [Template:Robot Tools navi/fr](Template:Robot_Tools_navi/fr.md) , [Robot TrajectoryCompound/fr](Robot_TrajectoryCompound/fr.md) , [Robot TrajectoryDressUp/fr](Robot_TrajectoryDressUp/fr.md) , [Robot tutorial/fr](Robot_tutorial/fr.md) , [Robot Workbench/fr](Robot_Workbench/fr.md) , [VRML Preparation for Robot Simulation/fr](VRML_Preparation_for_Robot_Simulation/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Robot/fr diff --git a/wiki/translations/fr/Category:Sandbox.md b/wiki/translations/fr/Category:Sandbox.md index c2077d1cec..29289668a9 100644 --- a/wiki/translations/fr/Category:Sandbox.md +++ b/wiki/translations/fr/Category:Sandbox.md @@ -6,3 +6,6 @@ Cette catégorie regroupe toutes les pages utilisées comme Sandbox (Bac à sabl [CadQuery Workbench/fr](CadQuery_Workbench/fr.md) , [Cfd Workbench/fr](Cfd_Workbench/fr.md) , [ExplodedAssembly Workbench/fr](ExplodedAssembly_Workbench/fr.md) , [FEM FrontISTR Workbench/fr](FEM_FrontISTR_Workbench/fr.md) , [Macro Kerkythea/fr](Macro_Kerkythea/fr.md) , [PCB Workbench/fr](PCB_Workbench/fr.md) , [Symbols Library Workbench/fr](Symbols_Library_Workbench/fr.md) , [Timber Workbench/fr](Timber_Workbench/fr.md) , [Workfeature Workbench/fr](Workfeature_Workbench/fr.md) [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:Sandbox/fr diff --git a/wiki/translations/fr/Category:Screenshots.md b/wiki/translations/fr/Category:Screenshots.md index b33b9a5925..c9544bd7be 100644 --- a/wiki/translations/fr/Category:Screenshots.md +++ b/wiki/translations/fr/Category:Screenshots.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages avec des captures d\'écran. [Screenshots/fr](Screenshots/fr.md) [Category:Documentation/fr](Category:Documentation/fr.md) + +--- +[documentation index](../README.md) > Category:Screenshots/fr diff --git a/wiki/translations/fr/Category:SheetMetal.md b/wiki/translations/fr/Category:SheetMetal.md index ba5c2b2df7..e4fa38c39e 100644 --- a/wiki/translations/fr/Category:SheetMetal.md +++ b/wiki/translations/fr/Category:SheetMetal.md @@ -6,3 +6,6 @@ This page collects the documentation pages for the [SheetMetal Workbench](SheetM [SheetMetal AddBase/fr](SheetMetal_AddBase/fr.md) , [SheetMetal AddBend/fr](SheetMetal_AddBend/fr.md) , [SheetMetal AddCornerRelief/fr](SheetMetal_AddCornerRelief/fr.md) , [SheetMetal AddFoldWall/fr](SheetMetal_AddFoldWall/fr.md) , [SheetMetal AddJunction/fr](SheetMetal_AddJunction/fr.md) , [SheetMetal AddRelief/fr](SheetMetal_AddRelief/fr.md) , [SheetMetal AddWall/fr](SheetMetal_AddWall/fr.md) , [SheetMetal Extrude/fr](SheetMetal_Extrude/fr.md) , [SheetMetal Forming/fr](SheetMetal_Forming/fr.md) , [SheetMetal SketchOnSheet/fr](SheetMetal_SketchOnSheet/fr.md) , [SheetMetal UnattendedUnfold/fr](SheetMetal_UnattendedUnfold/fr.md) , [SheetMetal Unfold/fr](SheetMetal_Unfold/fr.md) , [SheetMetal Workbench/fr](SheetMetal_Workbench/fr.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Category:SheetMetal/fr diff --git a/wiki/translations/fr/Category:Ship.md b/wiki/translations/fr/Category:Ship.md index 7f5163b84f..568ecd8983 100644 --- a/wiki/translations/fr/Category:Ship.md +++ b/wiki/translations/fr/Category:Ship.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages liées à [Ship Workbench/fr](Ship_Workbe [Artwork Ship/fr](Artwork_Ship/fr.md) , [FreeCAD-Ship s60 tutorial (II)/fr](FreeCAD-Ship_s60_tutorial_(II)/fr.md) , [FreeCAD-Ship s60 tutorial/fr](FreeCAD-Ship_s60_tutorial/fr.md) , [Ship Area/fr](Ship_Area/fr.md) , [Ship Geometries Examples/fr](Ship_Geometries_Examples/fr.md) , [Ship Hydrostatics/fr](Ship_Hydrostatics/fr.md) , [Ship Loading/fr](Ship_Loading/fr.md) , [Ship New/fr](Ship_New/fr.md) , [Ship Outline/fr](Ship_Outline/fr.md) , [Template:Ship Tools navi/fr](Template:Ship_Tools_navi/fr.md) , [Ship Workbench/fr](Ship_Workbench/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Ship/fr diff --git a/wiki/translations/fr/Category:Sketcher.md b/wiki/translations/fr/Category:Sketcher.md index 358550bb19..f72445117d 100644 --- a/wiki/translations/fr/Category:Sketcher.md +++ b/wiki/translations/fr/Category:Sketcher.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to Sketcher ### Contents: [Arch panel tutorial/fr](Arch_panel_tutorial/fr.md) , [Artwork Sketcher/fr](Artwork_Sketcher/fr.md) , [Basic Attachment Tutorial/fr](Basic_Attachment_Tutorial/fr.md) , [Basic Part Design Tutorial/fr](Basic_Part_Design_Tutorial/fr.md) , [Basic Sketcher Tutorial/fr](Basic_Sketcher_Tutorial/fr.md) , [Constraint/fr](Constraint/fr.md) , [Creating a simple part with PartDesign/fr](Creating_a_simple_part_with_PartDesign/fr.md) , [Draft ShapeString tutorial/fr](Draft_ShapeString_tutorial/fr.md) , [Part and PartDesign/fr](Part_and_PartDesign/fr.md) , [Sketch/fr](Sketch/fr.md) , [Sketcher BSplineApproximate/fr](Sketcher_BSplineApproximate/fr.md) , [Sketcher BSplineComb/fr](Sketcher_BSplineComb/fr.md) , [Sketcher BSplineDecreaseDegree/fr](Sketcher_BSplineDecreaseDegree/fr.md) , [Sketcher BSplineDecreaseKnotMultiplicity/fr](Sketcher_BSplineDecreaseKnotMultiplicity/fr.md) , [Sketcher BSplineDegree/fr](Sketcher_BSplineDegree/fr.md) , [Sketcher BSplineIncreaseDegree/fr](Sketcher_BSplineIncreaseDegree/fr.md) , [Sketcher BSplineIncreaseKnotMultiplicity/fr](Sketcher_BSplineIncreaseKnotMultiplicity/fr.md) , [Sketcher BSplineKnotMultiplicity/fr](Sketcher_BSplineKnotMultiplicity/fr.md) , [Sketcher BSplinePoleWeight/fr](Sketcher_BSplinePoleWeight/fr.md) , [Sketcher BSplinePolygon/fr](Sketcher_BSplinePolygon/fr.md) , [Sketcher CarbonCopy/fr](Sketcher_CarbonCopy/fr.md) , [Sketcher Clone/fr](Sketcher_Clone/fr.md) , [Sketcher CloseShape/fr](Sketcher_CloseShape/fr.md) , [Sketcher CompConstrainRadDia/fr](Sketcher_CompConstrainRadDia/fr.md) , [Sketcher CompCopy/fr](Sketcher_CompCopy/fr.md) , [Sketcher CompCreateArc/fr](Sketcher_CompCreateArc/fr.md) , [Sketcher CompCreateBSpline/fr](Sketcher_CompCreateBSpline/fr.md) , [Sketcher CompCreateCircle/fr](Sketcher_CompCreateCircle/fr.md) , [Sketcher CompCreateConic/fr](Sketcher_CompCreateConic/fr.md) , [Sketcher CompCreateRectangles/fr](Sketcher_CompCreateRectangles/fr.md) , [Sketcher CompCreateRegularPolygon/fr](Sketcher_CompCreateRegularPolygon/fr.md) , [Sketcher ConnectLines/fr](Sketcher_ConnectLines/fr.md) , [Sketcher ConstrainAngle/fr](Sketcher_ConstrainAngle/fr.md) , [Sketcher ConstrainBlock/fr](Sketcher_ConstrainBlock/fr.md) , [Sketcher ConstrainCoincident/fr](Sketcher_ConstrainCoincident/fr.md) , [Sketcher ConstrainDiameter/fr](Sketcher_ConstrainDiameter/fr.md) , [Sketcher ConstrainDistance/fr](Sketcher_ConstrainDistance/fr.md) , [Sketcher ConstrainDistanceX/fr](Sketcher_ConstrainDistanceX/fr.md) , [Sketcher ConstrainDistanceY/fr](Sketcher_ConstrainDistanceY/fr.md) , [Sketcher ConstrainEqual/fr](Sketcher_ConstrainEqual/fr.md) , [Sketcher ConstrainHorizontal/fr](Sketcher_ConstrainHorizontal/fr.md) , [Sketcher ConstrainInternalAlignment/fr](Sketcher_ConstrainInternalAlignment/fr.md) , [Sketcher ConstrainLock/fr](Sketcher_ConstrainLock/fr.md) , [Sketcher ConstrainParallel/fr](Sketcher_ConstrainParallel/fr.md) , [Sketcher ConstrainPerpendicular/fr](Sketcher_ConstrainPerpendicular/fr.md) , [Sketcher ConstrainPointOnObject/fr](Sketcher_ConstrainPointOnObject/fr.md) , [Sketcher ConstrainRadiam/fr](Sketcher_ConstrainRadiam/fr.md) , [Sketcher ConstrainRadius/fr](Sketcher_ConstrainRadius/fr.md) , [Sketcher ConstrainSnellsLaw/fr](Sketcher_ConstrainSnellsLaw/fr.md) , [Sketcher ConstrainSymmetric/fr](Sketcher_ConstrainSymmetric/fr.md) , [Sketcher ConstrainTangent/fr](Sketcher_ConstrainTangent/fr.md) , [Sketcher ConstrainVertical/fr](Sketcher_ConstrainVertical/fr.md) , [Sketcher Copy/fr](Sketcher_Copy/fr.md) , [Sketcher Create3PointArc/fr](Sketcher_Create3PointArc/fr.md) , [Sketcher Create3PointCircle/fr](Sketcher_Create3PointCircle/fr.md) , [Sketcher CreateArc/fr](Sketcher_CreateArc/fr.md) , [Sketcher CreateArcOfEllipse/fr](Sketcher_CreateArcOfEllipse/fr.md) , [Sketcher CreateArcOfHyperbola/fr](Sketcher_CreateArcOfHyperbola/fr.md) , [Sketcher CreateArcOfParabola/fr](Sketcher_CreateArcOfParabola/fr.md) , [Sketcher CreateBSpline/fr](Sketcher_CreateBSpline/fr.md) , [Sketcher CreateCircle/fr](Sketcher_CreateCircle/fr.md) , [Sketcher CreateEllipseBy3Points/fr](Sketcher_CreateEllipseBy3Points/fr.md) , [Sketcher CreateEllipseByCenter/fr](Sketcher_CreateEllipseByCenter/fr.md) , [Sketcher CreateFillet/fr](Sketcher_CreateFillet/fr.md) , [Sketcher CreateHeptagon/fr](Sketcher_CreateHeptagon/fr.md) , [Sketcher CreateHexagon/fr](Sketcher_CreateHexagon/fr.md) , [Sketcher CreateLine/fr](Sketcher_CreateLine/fr.md) , [Sketcher CreateOblong/fr](Sketcher_CreateOblong/fr.md) , [Sketcher CreateOctagon/fr](Sketcher_CreateOctagon/fr.md) , [Sketcher CreatePentagon/fr](Sketcher_CreatePentagon/fr.md) , [Sketcher CreatePeriodicBSpline/fr](Sketcher_CreatePeriodicBSpline/fr.md) , [Sketcher CreatePoint/fr](Sketcher_CreatePoint/fr.md) , [Sketcher CreatePolyline/fr](Sketcher_CreatePolyline/fr.md) , [Sketcher CreateRectangle Center/fr](Sketcher_CreateRectangle_Center/fr.md) , [Sketcher CreateRectangle/fr](Sketcher_CreateRectangle/fr.md) , [Sketcher CreateRegularPolygon/fr](Sketcher_CreateRegularPolygon/fr.md) , [Sketcher CreateSlot/fr](Sketcher_CreateSlot/fr.md) , [Sketcher CreateSquare/fr](Sketcher_CreateSquare/fr.md) , [Sketcher CreateTriangle/fr](Sketcher_CreateTriangle/fr.md) , [Sketcher DeleteAllConstraints/fr](Sketcher_DeleteAllConstraints/fr.md) , [Sketcher DeleteAllGeometry/fr](Sketcher_DeleteAllGeometry/fr.md) , [Sketcher Dialog/fr](Sketcher_Dialog/fr.md) , [Sketcher EditSketch/fr](Sketcher_EditSketch/fr.md) , [Sketcher Extend/fr](Sketcher_Extend/fr.md) , [Sketcher External/fr](Sketcher_External/fr.md) , [Sketcher helper constraint/fr](Sketcher_helper_constraint/fr.md) , [Sketcher LeaveSketch/fr](Sketcher_LeaveSketch/fr.md) , [Sketcher MapSketch/fr](Sketcher_MapSketch/fr.md) , [Sketcher MergeSketches/fr](Sketcher_MergeSketches/fr.md) , [Sketcher Micro Tutorial - Constraint Practices/fr](Sketcher_Micro_Tutorial_-_Constraint_Practices/fr.md) , [Sketcher MirrorSketch/fr](Sketcher_MirrorSketch/fr.md) , [Sketcher Move/fr](Sketcher_Move/fr.md) , [Sketcher NewSketch/fr](Sketcher_NewSketch/fr.md) , [Sketcher Preferences/fr](Sketcher_Preferences/fr.md) , [Sketcher project/fr](Sketcher_project/fr.md) , [Sketcher RectangularArray/fr](Sketcher_RectangularArray/fr.md) , [Sketcher reference/fr](Sketcher_reference/fr.md) , [Sketcher RemoveAxesAlignment/fr](Sketcher_RemoveAxesAlignment/fr.md) , [Sketcher ReorientSketch/fr](Sketcher_ReorientSketch/fr.md) , [Sketcher requirement for a sketch/fr](Sketcher_requirement_for_a_sketch/fr.md) , [Sketcher RestoreInternalAlignmentGeometry/fr](Sketcher_RestoreInternalAlignmentGeometry/fr.md) , [Sketcher scripting/fr](Sketcher_scripting/fr.md) , [Sketcher SelectConflictingConstraints/fr](Sketcher_SelectConflictingConstraints/fr.md) , [Sketcher SelectConstraints/fr](Sketcher_SelectConstraints/fr.md) , [Sketcher SelectElementsAssociatedWithConstraints/fr](Sketcher_SelectElementsAssociatedWithConstraints/fr.md) , [Sketcher SelectElementsWithDoFs/fr](Sketcher_SelectElementsWithDoFs/fr.md) , [Sketcher SelectHorizontalAxis/fr](Sketcher_SelectHorizontalAxis/fr.md) , [Sketcher SelectOrigin/fr](Sketcher_SelectOrigin/fr.md) , [Sketcher SelectRedundantConstraints/fr](Sketcher_SelectRedundantConstraints/fr.md) , [Sketcher SelectVerticalAxis/fr](Sketcher_SelectVerticalAxis/fr.md) , [Sketcher Sketch/fr](Sketcher_Sketch/fr.md) , [Sketcher SketchObject/fr](Sketcher_SketchObject/fr.md) , [Sketcher Split/fr](Sketcher_Split/fr.md) , [Sketcher StopOperation/fr](Sketcher_StopOperation/fr.md) , [Sketcher SwitchVirtualSpace/fr](Sketcher_SwitchVirtualSpace/fr.md) , [Sketcher Symmetry/fr](Sketcher_Symmetry/fr.md) , [Sketcher ToggleActiveConstraint/fr](Sketcher_ToggleActiveConstraint/fr.md) , [Sketcher ToggleConstruction/fr](Sketcher_ToggleConstruction/fr.md) , [Sketcher ToggleDrivingConstraint/fr](Sketcher_ToggleDrivingConstraint/fr.md) , [Template:Sketcher Tools navi/fr](Template:Sketcher_Tools_navi/fr.md) , [Sketcher Trimming/fr](Sketcher_Trimming/fr.md) , [Sketcher Tutorial/fr](Sketcher_Tutorial/fr.md) , [Sketcher ValidateSketch/fr](Sketcher_ValidateSketch/fr.md) , [Sketcher ViewSection/fr](Sketcher_ViewSection/fr.md) , [Sketcher ViewSketch/fr](Sketcher_ViewSketch/fr.md) , [Sketcher Workbench/fr](Sketcher_Workbench/fr.md) , [Thread for Screw Tutorial/fr](Thread_for_Screw_Tutorial/fr.md) , [Toothbrush Head Stand/fr](Toothbrush_Head_Stand/fr.md) , [Tutorial custom placing of windows and doors/fr](Tutorial_custom_placing_of_windows_and_doors/fr.md) + +--- +[documentation index](../README.md) > Category:Sketcher/fr diff --git a/wiki/translations/fr/Category:Spreadsheet.md b/wiki/translations/fr/Category:Spreadsheet.md index 7ca25c3a74..c588993878 100644 --- a/wiki/translations/fr/Category:Spreadsheet.md +++ b/wiki/translations/fr/Category:Spreadsheet.md @@ -2,3 +2,6 @@ ### Contents: [Artwork Spreadsheet/fr](Artwork_Spreadsheet/fr.md) , [Expressions/fr](Expressions/fr.md) , [Spreadsheet AlignBottom/fr](Spreadsheet_AlignBottom/fr.md) , [Spreadsheet AlignCenter/fr](Spreadsheet_AlignCenter/fr.md) , [Spreadsheet AlignLeft/fr](Spreadsheet_AlignLeft/fr.md) , [Spreadsheet AlignRight/fr](Spreadsheet_AlignRight/fr.md) , [Spreadsheet AlignTop/fr](Spreadsheet_AlignTop/fr.md) , [Spreadsheet AlignVCenter/fr](Spreadsheet_AlignVCenter/fr.md) , [Spreadsheet CreateSheet/fr](Spreadsheet_CreateSheet/fr.md) , [Spreadsheet CSV/fr](Spreadsheet_CSV/fr.md) , [Spreadsheet Export/fr](Spreadsheet_Export/fr.md) , [Spreadsheet Import/fr](Spreadsheet_Import/fr.md) , [Spreadsheet MergeCells/fr](Spreadsheet_MergeCells/fr.md) , [Spreadsheet SetAlias/fr](Spreadsheet_SetAlias/fr.md) , [Spreadsheet SplitCell/fr](Spreadsheet_SplitCell/fr.md) , [Spreadsheet StyleBold/fr](Spreadsheet_StyleBold/fr.md) , [Spreadsheet StyleItalic/fr](Spreadsheet_StyleItalic/fr.md) , [Spreadsheet StyleUnderline/fr](Spreadsheet_StyleUnderline/fr.md) , [Template:Spreadsheet Tools navi/fr](Template:Spreadsheet_Tools_navi/fr.md) , [Spreadsheet Workbench/fr](Spreadsheet_Workbench/fr.md) + +--- +[documentation index](../README.md) > Category:Spreadsheet/fr diff --git a/wiki/translations/fr/Category:Start.md b/wiki/translations/fr/Category:Start.md index f2dde0e494..518b91adeb 100644 --- a/wiki/translations/fr/Category:Start.md +++ b/wiki/translations/fr/Category:Start.md @@ -6,3 +6,6 @@ This category lists pages related to the [Start Workbench/fr](Start_Workbench/fr [Artwork Start/fr](Artwork_Start/fr.md) , [Start Preferences/fr](Start_Preferences/fr.md) , [Template:Start Tools navi/fr](Template:Start_Tools_navi/fr.md) , [Start Workbench/fr](Start_Workbench/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Start/fr diff --git a/wiki/translations/fr/Category:Std_Base.md b/wiki/translations/fr/Category:Std_Base.md index 578e770af6..a1ec6789d3 100644 --- a/wiki/translations/fr/Category:Std_Base.md +++ b/wiki/translations/fr/Category:Std_Base.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages associées à [Std Base](Std_Base/fr.md), [App DocumentObjectGroup/fr](App_DocumentObjectGroup/fr.md) , [App Link/fr](App_Link/fr.md) , [App Part/fr](App_Part/fr.md) , [Assembly/fr](Assembly/fr.md) , [Combo view/fr](Combo_view/fr.md) , [DAG view/fr](DAG_view/fr.md) , [Interface Customization/fr](Interface_Customization/fr.md) , [Part/fr](Part/fr.md) , [Property editor/fr](Property_editor/fr.md) , [Python console/fr](Python_console/fr.md) , [Report view/fr](Report_view/fr.md) , [Selection view/fr](Selection_view/fr.md) , [Standard Menu/fr](Standard_Menu/fr.md) , [Std About/fr](Std_About/fr.md) , [Std ActivateNextWindow/fr](Std_ActivateNextWindow/fr.md) , [Std ActivatePrevWindow/fr](Std_ActivatePrevWindow/fr.md) , [Std AddonMgr/fr](Std_AddonMgr/fr.md) , [Std Alignment/fr](Std_Alignment/fr.md) , [Std ArrangeIcons/fr](Std_ArrangeIcons/fr.md) , [Std AxisCross/fr](Std_AxisCross/fr.md) , [Template:Std Base navi/fr](Template:Std_Base_navi/fr.md) , [Template:Std Base/fr](Template:Std_Base/fr.md) , [Std Base/fr](Std_Base/fr.md) , [Std BoxElementSelection/fr](Std_BoxElementSelection/fr.md) , [Std BoxSelection/fr](Std_BoxSelection/fr.md) , [Std CascadeWindows/fr](Std_CascadeWindows/fr.md) , [Std CloseActiveWindow/fr](Std_CloseActiveWindow/fr.md) , [Std CloseAllWindows/fr](Std_CloseAllWindows/fr.md) , [Std Copy/fr](Std_Copy/fr.md) , [Std Cut/fr](Std_Cut/fr.md) , [Std Delete/fr](Std_Delete/fr.md) , [Std DemoMode/fr](Std_DemoMode/fr.md) , [Std DependencyGraph/fr](Std_DependencyGraph/fr.md) , [Std DlgCustomize/fr](Std_DlgCustomize/fr.md) , [Std DlgMacroExecute/fr](Std_DlgMacroExecute/fr.md) , [Std DlgMacroExecuteDirect/fr](Std_DlgMacroExecuteDirect/fr.md) , [Std DlgMacroRecord/fr](Std_DlgMacroRecord/fr.md) , [Std DlgParameter/fr](Std_DlgParameter/fr.md) , [Std DlgPreferences/fr](Std_DlgPreferences/fr.md) , [Std DrawStyle/fr](Std_DrawStyle/fr.md) , [Std DuplicateSelection/fr](Std_DuplicateSelection/fr.md) , [Std Edit Menu/fr](Std_Edit_Menu/fr.md) , [Std Edit/fr](Std_Edit/fr.md) , [Std Export/fr](Std_Export/fr.md) , [Std File Menu/fr](Std_File_Menu/fr.md) , [Std FreeCADFAQ/fr](Std_FreeCADFAQ/fr.md) , [Std FreeCADForum/fr](Std_FreeCADForum/fr.md) , [Std FreeCADPowerUserHub/fr](Std_FreeCADPowerUserHub/fr.md) , [Std FreeCADUserHub/fr](Std_FreeCADUserHub/fr.md) , [Std FreeCADWebsite/fr](Std_FreeCADWebsite/fr.md) , [Std FreezeViews/fr](Std_FreezeViews/fr.md) , [Std Group/fr](Std_Group/fr.md) , [Std Help Menu/fr](Std_Help_Menu/fr.md) , [Std HideObjects/fr](Std_HideObjects/fr.md) , [Std HideSelection/fr](Std_HideSelection/fr.md) , [Std Import/fr](Std_Import/fr.md) , [Std LinkImport/fr](Std_LinkImport/fr.md) , [Std LinkImportAll/fr](Std_LinkImportAll/fr.md) , [Std LinkMake/fr](Std_LinkMake/fr.md) , [Std LinkMakeRelative/fr](Std_LinkMakeRelative/fr.md) , [Std LinkReplace/fr](Std_LinkReplace/fr.md) , [Std LinkSelectAllLinks/fr](Std_LinkSelectAllLinks/fr.md) , [Std LinkSelectLinked/fr](Std_LinkSelectLinked/fr.md) , [Std LinkSelectLinkedFinal/fr](Std_LinkSelectLinkedFinal/fr.md) , [Std LinkUnlink/fr](Std_LinkUnlink/fr.md) , [Std Macro Menu/fr](Std_Macro_Menu/fr.md) , [Std MacroAttachDebugger/fr](Std_MacroAttachDebugger/fr.md) , [Std MacroStartDebug/fr](Std_MacroStartDebug/fr.md) , [Std MacroStepInto/fr](Std_MacroStepInto/fr.md) , [Std MacroStepOver/fr](Std_MacroStepOver/fr.md) , [Std MacroStopDebug/fr](Std_MacroStopDebug/fr.md) , [Std MacroStopRecord/fr](Std_MacroStopRecord/fr.md) , [Std MainFullscreen/fr](Std_MainFullscreen/fr.md) , [Std MeasureDistance/fr](Std_MeasureDistance/fr.md) , [Std MergeProjects/fr](Std_MergeProjects/fr.md) , [Std New/fr](Std_New/fr.md) , [Std OnlineHelp/fr](Std_OnlineHelp/fr.md) , [Std Open/fr](Std_Open/fr.md) , [Std OrthographicCamera/fr](Std_OrthographicCamera/fr.md) , [Std Part/fr](Std_Part/fr.md) , [Std Paste/fr](Std_Paste/fr.md) , [Std PerspectiveCamera/fr](Std_PerspectiveCamera/fr.md) , [Std Placement/fr](Std_Placement/fr.md) , [Std Print/fr](Std_Print/fr.md) , [Std PrintPdf/fr](Std_PrintPdf/fr.md) , [Std PrintPreview/fr](Std_PrintPreview/fr.md) , [Std ProjectInfo/fr](Std_ProjectInfo/fr.md) , [Std ProjectUtil/fr](Std_ProjectUtil/fr.md) , [Std PythonHelp/fr](Std_PythonHelp/fr.md) , [Std Quit/fr](Std_Quit/fr.md) , [Std RandomColor/fr](Std_RandomColor/fr.md) , [Std RecentFiles/fr](Std_RecentFiles/fr.md) , [Std Redo/fr](Std_Redo/fr.md) , [Std Refresh/fr](Std_Refresh/fr.md) , [Std Revert/fr](Std_Revert/fr.md) , [Std Save/fr](Std_Save/fr.md) , [Std SaveAll/fr](Std_SaveAll/fr.md) , [Std SaveAs/fr](Std_SaveAs/fr.md) , [Std SaveCopy/fr](Std_SaveCopy/fr.md) , [Std SceneInspector/fr](Std_SceneInspector/fr.md) , [Std SelBack/fr](Std_SelBack/fr.md) , [Std SelBoundingBox/fr](Std_SelBoundingBox/fr.md) , [Std SelectAll/fr](Std_SelectAll/fr.md) , [Std SelectVisibleObjects/fr](Std_SelectVisibleObjects/fr.md) , [Std SelForward/fr](Std_SelForward/fr.md) , [Std SendToPythonConsole/fr](Std_SendToPythonConsole/fr.md) , [Std SetAppearance/fr](Std_SetAppearance/fr.md) , [Std ShowObjects/fr](Std_ShowObjects/fr.md) , [Std ShowSelection/fr](Std_ShowSelection/fr.md) , [Std TextDocument/fr](Std_TextDocument/fr.md) , [Std TextureMapping/fr](Std_TextureMapping/fr.md) , [Std TileWindows/fr](Std_TileWindows/fr.md) , [Std ToggleBreakpoint/fr](Std_ToggleBreakpoint/fr.md) , [Std ToggleClipPlane/fr](Std_ToggleClipPlane/fr.md) , [Std ToggleNavigation/fr](Std_ToggleNavigation/fr.md) , [Std ToggleObjects/fr](Std_ToggleObjects/fr.md) , [Std ToggleSelectability/fr](Std_ToggleSelectability/fr.md) , [Std ToggleVisibility/fr](Std_ToggleVisibility/fr.md) , [Std Tools Menu/fr](Std_Tools_Menu/fr.md) , [Std TransformManip/fr](Std_TransformManip/fr.md) , [Std TreeCollapseDocument/fr](Std_TreeCollapseDocument/fr.md) , [Std TreeDrag/fr](Std_TreeDrag/fr.md) , [Std TreeMultiDocument/fr](Std_TreeMultiDocument/fr.md) , [Std TreePreSelection/fr](Std_TreePreSelection/fr.md) , [Std TreeRecordSelection/fr](Std_TreeRecordSelection/fr.md) , [Std TreeSelection/fr](Std_TreeSelection/fr.md) , [Std TreeSingleDocument/fr](Std_TreeSingleDocument/fr.md) , [Std TreeSyncPlacement/fr](Std_TreeSyncPlacement/fr.md) , [Std TreeSyncSelection/fr](Std_TreeSyncSelection/fr.md) , [Std TreeSyncView/fr](Std_TreeSyncView/fr.md) , [Std Undo/fr](Std_Undo/fr.md) , [Std UnitsCalculator/fr](Std_UnitsCalculator/fr.md) , [Std View Menu/fr](Std_View_Menu/fr.md) , [Std ViewBottom/fr](Std_ViewBottom/fr.md) , [Std ViewBoxZoom/fr](Std_ViewBoxZoom/fr.md) , [Std ViewCreate/fr](Std_ViewCreate/fr.md) , [Std ViewDimetric/fr](Std_ViewDimetric/fr.md) , [Std ViewDockUndockFullscreen/fr](Std_ViewDockUndockFullscreen/fr.md) , [Std ViewFitAll/fr](Std_ViewFitAll/fr.md) , [Std ViewFitSelection/fr](Std_ViewFitSelection/fr.md) , [Std ViewFront/fr](Std_ViewFront/fr.md) , [Std ViewFullscreen/fr](Std_ViewFullscreen/fr.md) , [Std ViewHome/fr](Std_ViewHome/fr.md) , [Std ViewIsometric/fr](Std_ViewIsometric/fr.md) , [Std ViewIvIssueCamPos/fr](Std_ViewIvIssueCamPos/fr.md) , [Std ViewIvStereoInterleavedColumns/fr](Std_ViewIvStereoInterleavedColumns/fr.md) , [Std ViewIvStereoInterleavedRows/fr](Std_ViewIvStereoInterleavedRows/fr.md) , [Std ViewIvStereoOff/fr](Std_ViewIvStereoOff/fr.md) , [Std ViewIvStereoQuadBuff/fr](Std_ViewIvStereoQuadBuff/fr.md) , [Std ViewIvStereoRedGreen/fr](Std_ViewIvStereoRedGreen/fr.md) , [Std ViewLeft/fr](Std_ViewLeft/fr.md) , [Std ViewRear/fr](Std_ViewRear/fr.md) , [Std ViewRight/fr](Std_ViewRight/fr.md) , [Std ViewRotateLeft/fr](Std_ViewRotateLeft/fr.md) , [Std ViewRotateRight/fr](Std_ViewRotateRight/fr.md) , [Std ViewScreenShot/fr](Std_ViewScreenShot/fr.md) , [Std ViewStatusBar/fr](Std_ViewStatusBar/fr.md) , [Std ViewTop/fr](Std_ViewTop/fr.md) , [Std ViewTrimetric/fr](Std_ViewTrimetric/fr.md) , [Std ViewZoomIn/fr](Std_ViewZoomIn/fr.md) , [Std ViewZoomOut/fr](Std_ViewZoomOut/fr.md) , [Std WhatsThis/fr](Std_WhatsThis/fr.md) , [Std Windows Menu/fr](Std_Windows_Menu/fr.md) , [Std Windows/fr](Std_Windows/fr.md) , [Std Workbench/fr](Std_Workbench/fr.md) , [Tree view/fr](Tree_view/fr.md) , [View Measure Clear All/fr](View_Measure_Clear_All/fr.md) , [View Measure Toggle All/fr](View_Measure_Toggle_All/fr.md) [Category:User\_Documentation/fr](Category:User_Documentation/fr.md) + +--- +[documentation index](../README.md) > Category:Std Base/fr diff --git a/wiki/translations/fr/Category:Surface.md b/wiki/translations/fr/Category:Surface.md index 95dcb1743a..561f6efc6b 100644 --- a/wiki/translations/fr/Category:Surface.md +++ b/wiki/translations/fr/Category:Surface.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages liées à la [Surface Workbench/fr](Surfa [Artwork Surface/fr](Artwork_Surface/fr.md) , [Surface CurveOnMesh/fr](Surface_CurveOnMesh/fr.md) , [Surface ExtendFace/fr](Surface_ExtendFace/fr.md) , [Surface Filling/fr](Surface_Filling/fr.md) , [Surface GeomFillSurface/fr](Surface_GeomFillSurface/fr.md) , [Surface Sections/fr](Surface_Sections/fr.md) , [Surface Workbench/fr](Surface_Workbench/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Surface/fr diff --git a/wiki/translations/fr/Category:TechDraw.md b/wiki/translations/fr/Category:TechDraw.md index 92d8cb4522..51b8e9e3cc 100644 --- a/wiki/translations/fr/Category:TechDraw.md +++ b/wiki/translations/fr/Category:TechDraw.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages liées à l\'atelier [Workbench](TechDraw [Advanced TechDraw Tutorial/fr](Advanced_TechDraw_Tutorial/fr.md) , [Artwork TechDraw/fr](Artwork_TechDraw/fr.md) , [Basic TechDraw Tutorial/fr](Basic_TechDraw_Tutorial/fr.md) , [Bitmap/fr](Bitmap/fr.md) , [Drawing/fr](Drawing/fr.md) , [DXF/fr](DXF/fr.md) , [Measurement Of Angles On Holes/fr](Measurement_Of_Angles_On_Holes/fr.md) , [SVG/fr](SVG/fr.md) , [TechDraw 2LineCenterLine/fr](TechDraw_2LineCenterLine/fr.md) , [TechDraw 2PointCenterLine/fr](TechDraw_2PointCenterLine/fr.md) , [TechDraw 2PointCosmeticLine/fr](TechDraw_2PointCosmeticLine/fr.md) , [TechDraw 3PtAngleDimension/fr](TechDraw_3PtAngleDimension/fr.md) , [TechDraw ActiveView/fr](TechDraw_ActiveView/fr.md) , [TechDraw AngleDimension/fr](TechDraw_AngleDimension/fr.md) , [TechDraw Annotation/fr](TechDraw_Annotation/fr.md) , [TechDraw API/fr](TechDraw_API/fr.md) , [TechDraw ArchView/fr](TechDraw_ArchView/fr.md) , [TechDraw Balloon/fr](TechDraw_Balloon/fr.md) , [TechDraw ClipGroup/fr](TechDraw_ClipGroup/fr.md) , [TechDraw ClipGroupAdd/fr](TechDraw_ClipGroupAdd/fr.md) , [TechDraw ClipGroupRemove/fr](TechDraw_ClipGroupRemove/fr.md) , [TechDraw CosmeticEraser/fr](TechDraw_CosmeticEraser/fr.md) , [TechDraw CosmeticVertex/fr](TechDraw_CosmeticVertex/fr.md) , [TechDraw DecorateLine/fr](TechDraw_DecorateLine/fr.md) , [TechDraw DetailView/fr](TechDraw_DetailView/fr.md) , [TechDraw DiameterDimension/fr](TechDraw_DiameterDimension/fr.md) , [TechDraw DraftView/fr](TechDraw_DraftView/fr.md) , [TechDraw ExportPageDXF/fr](TechDraw_ExportPageDXF/fr.md) , [TechDraw ExportPageSVG/fr](TechDraw_ExportPageSVG/fr.md) , [TechDraw FaceCenterLine/fr](TechDraw_FaceCenterLine/fr.md) , [TechDraw Geometric dimensioning and tolerancing/fr](TechDraw_Geometric_dimensioning_and_tolerancing/fr.md) , [TechDraw GeometricHatch/fr](TechDraw_GeometricHatch/fr.md) , [TechDraw Hatch/fr](TechDraw_Hatch/fr.md) , [TechDraw Hatching/fr](TechDraw_Hatching/fr.md) , [TechDraw HorizontalDimension/fr](TechDraw_HorizontalDimension/fr.md) , [TechDraw HorizontalExtentDimension/fr](TechDraw_HorizontalExtentDimension/fr.md) , [TechDraw HowTo Page/fr](TechDraw_HowTo_Page/fr.md) , [TechDraw Image/fr](TechDraw_Image/fr.md) , [TechDraw LandmarkDimension/fr](TechDraw_LandmarkDimension/fr.md) , [TechDraw LeaderLine/fr](TechDraw_LeaderLine/fr.md) , [TechDraw LengthDimension/fr](TechDraw_LengthDimension/fr.md) , [TechDraw LineGroup/fr](TechDraw_LineGroup/fr.md) , [TechDraw LinkDimension/fr](TechDraw_LinkDimension/fr.md) , [TechDraw Midpoints/fr](TechDraw_Midpoints/fr.md) , [TechDraw PageDefault/fr](TechDraw_PageDefault/fr.md) , [TechDraw PageTemplate/fr](TechDraw_PageTemplate/fr.md) , [TechDraw pitch circle tutorial/fr](TechDraw_pitch_circle_tutorial/fr.md) , [TechDraw Preferences/fr](TechDraw_Preferences/fr.md) , [TechDraw ProjectionGroup/fr](TechDraw_ProjectionGroup/fr.md) , [TechDraw Quadrants/fr](TechDraw_Quadrants/fr.md) , [TechDraw RadiusDimension/fr](TechDraw_RadiusDimension/fr.md) , [TechDraw RedrawPage/fr](TechDraw_RedrawPage/fr.md) , [TechDraw RichTextAnnotation/fr](TechDraw_RichTextAnnotation/fr.md) , [TechDraw Roadmap/fr](TechDraw_Roadmap/fr.md) , [TechDraw SectionView/fr](TechDraw_SectionView/fr.md) , [TechDraw ShowAll/fr](TechDraw_ShowAll/fr.md) , [TechDraw SpreadsheetView/fr](TechDraw_SpreadsheetView/fr.md) , [TechDraw Symbol/fr](TechDraw_Symbol/fr.md) , [TechDraw TemplateHowTo/fr](TechDraw_TemplateHowTo/fr.md) , [TechDraw Templates/fr](TechDraw_Templates/fr.md) , [TechDraw ToggleFrame/fr](TechDraw_ToggleFrame/fr.md) , [Template:TechDraw Tools navi/fr](Template:TechDraw_Tools_navi/fr.md) , [TechDraw VerticalDimension/fr](TechDraw_VerticalDimension/fr.md) , [TechDraw VerticalExtentDimension/fr](TechDraw_VerticalExtentDimension/fr.md) , [TechDraw View/fr](TechDraw_View/fr.md) , [TechDraw WeldSymbol/fr](TechDraw_WeldSymbol/fr.md) , [TechDraw Workbench/fr](TechDraw_Workbench/fr.md) , [TechDrawGui API/fr](TechDrawGui_API/fr.md) , [Tolerancing/fr](Tolerancing/fr.md) , [Topological naming problem/fr](Topological_naming_problem/fr.md) , [Tutorial for open windows/fr](Tutorial_for_open_windows/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:TechDraw/fr diff --git a/wiki/translations/fr/Category:Template.md b/wiki/translations/fr/Category:Template.md index 6a5b77b1bf..6c5f616458 100644 --- a/wiki/translations/fr/Category:Template.md +++ b/wiki/translations/fr/Category:Template.md @@ -6,3 +6,6 @@ This category contains all the Templates [Template:APIFunction/fr](Template:APIFunction/fr.md) , [Template:APIProperty/fr](Template:APIProperty/fr.md) , [Template:Fr](Template:Fr.md) , [Template:Languages/fr](Template:Languages/fr.md) , [Template:Languages/it](Template:Languages/it.md) , [Template:LesOutilsDeConstructionPartDesign](Template:LesOutilsDeConstructionPartDesign.md) , [Template:LesOutilsDeModificationsPartDesign](Template:LesOutilsDeModificationsPartDesign.md) , [Template:PartBooleanProprietes/fr](Template:PartBooleanProprietes/fr.md) , [Template:ProprieteDonnees](Template:ProprieteDonnees.md) , [Template:ProprieteVue](Template:ProprieteVue.md) , [Template:Raytracing Tools/fr](Template:Raytracing_Tools/fr.md) , [Template:Sketcher Tools/fr](Template:Sketcher_Tools/fr.md) , [Template:StdMenu/fr](Template:StdMenu/fr.md) , , , , [Category:Categories/fr](Category:Categories/fr.md) [Category:Template:Doc/fr](Category:Template:Doc/fr.md) [Category:Template:Navigation/fr](Category:Template:Navigation/fr.md) [Category:Template:Text Format/fr](Category:Template:Text_Format/fr.md) [Category:Template:Text/fr](Category:Template:Text/fr.md) + +--- +[documentation index](../README.md) > Category:Template/fr diff --git a/wiki/translations/fr/Category:Template:Doc.md b/wiki/translations/fr/Category:Template:Doc.md index ad89203ff9..de33605f85 100644 --- a/wiki/translations/fr/Category:Template:Doc.md +++ b/wiki/translations/fr/Category:Template:Doc.md @@ -6,3 +6,6 @@ This category lists templates that produce text boxes used for documenting comma [Template:Macro/fr](Template:Macro/fr.md) [Category:Template/fr](Category:Template/fr.md) + +--- +[documentation index](../README.md) > Category:Template:Doc/fr diff --git a/wiki/translations/fr/Category:Template:Navigation.md b/wiki/translations/fr/Category:Template:Navigation.md index 146a89cdc0..b747b52991 100644 --- a/wiki/translations/fr/Category:Template:Navigation.md +++ b/wiki/translations/fr/Category:Template:Navigation.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les modèles qui créent des éléments de navigati [Template:Arch Tools navi/fr](Template:Arch_Tools_navi/fr.md) , [Template:Artwork/fr](Template:Artwork/fr.md) , [Template:Document objects navi/fr](Template:Document_objects_navi/fr.md) , [Template:Draft Tools navi/fr](Template:Draft_Tools_navi/fr.md) , [Template:Drawing Tools navi/fr](Template:Drawing_Tools_navi/fr.md) , [Template:EM Tools navi/fr](Template:EM_Tools_navi/fr.md) , [Template:FEM Tools navi/fr](Template:FEM_Tools_navi/fr.md) , [Template:Interface navi/fr](Template:Interface_navi/fr.md) , [Template:Mesh Tools navi/fr](Template:Mesh_Tools_navi/fr.md) , [Template:Navigation menu 2/fr](Template:Navigation_menu_2/fr.md) , [Template:OpenSCAD Tools navi/fr](Template:OpenSCAD_Tools_navi/fr.md) , [Template:Part Tools navi/fr](Template:Part_Tools_navi/fr.md) , [Template:PartDesign Tools navi/fr](Template:PartDesign_Tools_navi/fr.md) , [Template:Path Tools navi/fr](Template:Path_Tools_navi/fr.md) , [Template:Plot Tools navi/fr](Template:Plot_Tools_navi/fr.md) , [Template:Powerdocnavi/fr](Template:Powerdocnavi/fr.md) , [Template:Raytracing Tools navi/fr](Template:Raytracing_Tools_navi/fr.md) , [Template:Robot Tools navi/fr](Template:Robot_Tools_navi/fr.md) , [Template:Ship Tools navi/fr](Template:Ship_Tools_navi/fr.md) , [Template:Sketcher Tools navi/fr](Template:Sketcher_Tools_navi/fr.md) , [Template:Spreadsheet Tools navi/fr](Template:Spreadsheet_Tools_navi/fr.md) , [Template:Start Tools navi/fr](Template:Start_Tools_navi/fr.md) , [Template:Std Base navi/fr](Template:Std_Base_navi/fr.md) , [Template:Std Base/fr](Template:Std_Base/fr.md) , [Template:TechDraw Tools navi/fr](Template:TechDraw_Tools_navi/fr.md) , [Template:Tutorials navi/fr](Template:Tutorials_navi/fr.md) [Category:Template/fr](Category:Template/fr.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/fr diff --git a/wiki/translations/fr/Category:Template:Text.md b/wiki/translations/fr/Category:Template:Text.md index 3b4d65b559..aeb84ce6a7 100644 --- a/wiki/translations/fr/Category:Template:Text.md +++ b/wiki/translations/fr/Category:Template:Text.md @@ -10,3 +10,6 @@ Les longs textes doivent être placés dans la page elle-même, de manière à p [Template:Obsolete/fr](Template:Obsolete/fr.md) , [Template:Version/fr](Template:Version/fr.md) , [Template:VersionMinus/fr](Template:VersionMinus/fr.md) , [Template:VersionPlus/fr](Template:VersionPlus/fr.md) [Category:Template/fr](Category:Template/fr.md) + +--- +[documentation index](../README.md) > Category:Template:Text/fr diff --git a/wiki/translations/fr/Category:Template:Text_Format.md b/wiki/translations/fr/Category:Template:Text_Format.md index b18de672b7..25650ff09a 100644 --- a/wiki/translations/fr/Category:Template:Text_Format.md +++ b/wiki/translations/fr/Category:Template:Text_Format.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les modèles au format texte donnés en entrée. [Template:MenuCommand/fr](Template:MenuCommand/fr.md) , [Template:PropertyData/fr](Template:PropertyData/fr.md) , [Template:PropertyView/fr](Template:PropertyView/fr.md) [Category:Template/fr](Category:Template/fr.md) + +--- +[documentation index](../README.md) > Category:Template:Text Format/fr diff --git a/wiki/translations/fr/Category:Test_Framework.md b/wiki/translations/fr/Category:Test_Framework.md index 63d4ffddf3..a1940264a6 100644 --- a/wiki/translations/fr/Category:Test_Framework.md +++ b/wiki/translations/fr/Category:Test_Framework.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages liées à l\'atelier [Test Framework Work [Testing/fr](Testing/fr.md) [Workbenches/fr](Category:Workbenches/fr.md) [User\_Documentation/fr](Category:User_Documentation/fr.md) [Testing/fr](Category:Testing/fr.md) + +--- +[documentation index](../README.md) > Category:Test Framework/fr diff --git a/wiki/translations/fr/Category:Testing.md b/wiki/translations/fr/Category:Testing.md index ea84f385fb..8d70a432a6 100644 --- a/wiki/translations/fr/Category:Testing.md +++ b/wiki/translations/fr/Category:Testing.md @@ -6,3 +6,6 @@ Pages relatives aux tests concernant les tests unitaires, l\'intégration contin [AppImage/fr](AppImage/fr.md) , [Continuous Integration/fr](Continuous_Integration/fr.md) , [LGTM/fr](LGTM/fr.md) , [Testing/fr](Testing/fr.md) , [Category:Test Framework/fr](Category:Test_Framework/fr.md) + +--- +[documentation index](../README.md) > Category:Testing/fr diff --git a/wiki/translations/fr/Category:Tutorials.md b/wiki/translations/fr/Category:Tutorials.md index 29a26c4fdc..347f5bdc1f 100644 --- a/wiki/translations/fr/Category:Tutorials.md +++ b/wiki/translations/fr/Category:Tutorials.md @@ -10,3 +10,6 @@ Les pages spéciales [tutoriels externes](Offsite_tutorials/fr.md) et [tutoriels [Add FEM constraint tutorial/fr](Add_FEM_constraint_tutorial/fr.md) , [Add FEM equation tutorial/fr](Add_FEM_equation_tutorial/fr.md) , [Advanced TechDraw Tutorial/fr](Advanced_TechDraw_Tutorial/fr.md) , [Aeroplane/fr](Aeroplane/fr.md) , [Analysis of reinforced concrete with FEM/fr](Analysis_of_reinforced_concrete_with_FEM/fr.md) , [Arch panel tutorial/fr](Arch_panel_tutorial/fr.md) , [Arch tutorial/fr](Arch_tutorial/fr.md) , [Basic Attachment Tutorial/fr](Basic_Attachment_Tutorial/fr.md) , [Basic modeling tutorial/fr](Basic_modeling_tutorial/fr.md) , [Basic Part Design Tutorial/fr](Basic_Part_Design_Tutorial/fr.md) , [Basic Sketcher Tutorial/fr](Basic_Sketcher_Tutorial/fr.md) , [Basic TechDraw Tutorial/fr](Basic_TechDraw_Tutorial/fr.md) , [BIM ingame tutorial/fr](BIM_ingame_tutorial/fr.md) , [Manual:Generating 2D drawings/fr](Manual:Generating_2D_drawings/fr.md) , [Manual:Traditional modeling, the CSG way/fr](Manual:Traditional_modeling,_the_CSG_way/fr.md) , [Manual:Using spreadsheets/fr](Manual:Using_spreadsheets/fr.md) , [Creating a simple part with PartDesign/fr](Creating_a_simple_part_with_PartDesign/fr.md) , [Customize Toolbars/fr](Customize_Toolbars/fr.md) , [Draft ShapeString tutorial/fr](Draft_ShapeString_tutorial/fr.md) , [Draft tutorial/fr](Draft_tutorial/fr.md) , [Drawing Template HowTo/fr](Drawing_Template_HowTo/fr.md) , [Drawing tutorial/fr](Drawing_tutorial/fr.md) , [Dxf Importer Install/fr](Dxf_Importer_Install/fr.md) , [Engine Block Tutorial/fr](Engine_Block_Tutorial/fr.md) , [Export to STL or OBJ/fr](Export_to_STL_or_OBJ/fr.md) , [Extend FEM Module/fr](Extend_FEM_Module/fr.md) , [FEM Beginner tutorial/fr](FEM_Beginner_tutorial/fr.md) , [FEM CalculiX Cantilever 3D/fr](FEM_CalculiX_Cantilever_3D/fr.md) , [FEM Example Capacitance Two Balls/fr](FEM_Example_Capacitance_Two_Balls/fr.md) , [FEM Shear of a Composite Block/fr](FEM_Shear_of_a_Composite_Block/fr.md) , [FEM Tutorial Python/fr](FEM_Tutorial_Python/fr.md) , [FEM tutorial/fr](FEM_tutorial/fr.md) , [FreeCAD-Ship s60 tutorial (II)/fr](FreeCAD-Ship_s60_tutorial_(II)/fr.md) , [FreeCAD-Ship s60 tutorial/fr](FreeCAD-Ship_s60_tutorial/fr.md) , [How to install additional workbenches/fr](How_to_install_additional_workbenches/fr.md) , [How to install macros/fr](How_to_install_macros/fr.md) , [Import from STL or OBJ/fr](Import_from_STL_or_OBJ/fr.md) , [Import OpenSCAD code/fr](Import_OpenSCAD_code/fr.md) , [Import text and geometry from Inkscape/fr](Import_text_and_geometry_from_Inkscape/fr.md) , [Import/Export IFC - compiling IfcOpenShell/fr](Import/Export_IFC_-_compiling_IfcOpenShell/fr.md) , [Manual:BIM modeling/fr](Manual:BIM_modeling/fr.md) , [Manual:Creating FEM analyses/fr](Manual:Creating_FEM_analyses/fr.md) , [Manual:Creating renderings/fr](Manual:Creating_renderings/fr.md) , [Manual:Import and export to other filetypes/fr](Manual:Import_and_export_to_other_filetypes/fr.md) , [Manual:Installing/fr](Manual:Installing/fr.md) , [Manual:Modeling for product design/fr](Manual:Modeling_for_product_design/fr.md) , [Manual:Parametric objects/fr](Manual:Parametric_objects/fr.md) , [Manual:Preparing models for 3D printing/fr](Manual:Preparing_models_for_3D_printing/fr.md) , [Manual:Traditional 2D drafting/fr](Manual:Traditional_2D_drafting/fr.md) , [Measurement Of Angles On Holes/fr](Measurement_Of_Angles_On_Holes/fr.md) , [Offsite tutorials/fr](Offsite_tutorials/fr.md) , [Part and PartDesign/fr](Part_and_PartDesign/fr.md) , [Part Loft Technical Details/fr](Part_Loft_Technical_Details/fr.md) , [PartDesign Bearingholder Tutorial I/fr](PartDesign_Bearingholder_Tutorial_I/fr.md) , [PartDesign Bearingholder Tutorial II/fr](PartDesign_Bearingholder_Tutorial_II/fr.md) , [PartDesign tutorial/fr](PartDesign_tutorial/fr.md) , [Path Walkthrough for the Impatient/fr](Path_Walkthrough_for_the_Impatient/fr.md) , [Plot Basic tutorial/fr](Plot_Basic_tutorial/fr.md) , [Plot MultiAxes tutorial/fr](Plot_MultiAxes_tutorial/fr.md) , [Post-Processing of FEM Results with Paraview/fr](Post-Processing_of_FEM_Results_with_Paraview/fr.md) , [Raytracing tutorial/fr](Raytracing_tutorial/fr.md) , [Robot 6-Axis/fr](Robot_6-Axis/fr.md) , [Robot tutorial/fr](Robot_tutorial/fr.md) , [Scripted Parts: Ball Bearing - Part 1/fr](Scripted_Parts:_Ball_Bearing_-_Part_1/fr.md) , [Scripted Parts: Ball Bearing - Part 2/fr](Scripted_Parts:_Ball_Bearing_-_Part_2/fr.md) , [Scripts/fr](Scripts/fr.md) , [Sketcher Micro Tutorial - Constraint Practices/fr](Sketcher_Micro_Tutorial_-_Constraint_Practices/fr.md) , [Sketcher reference/fr](Sketcher_reference/fr.md) , [Sketcher requirement for a sketch/fr](Sketcher_requirement_for_a_sketch/fr.md) , [Sketcher Tutorial/fr](Sketcher_Tutorial/fr.md) , [TechDraw HowTo Page/fr](TechDraw_HowTo_Page/fr.md) , [TechDraw pitch circle tutorial/fr](TechDraw_pitch_circle_tutorial/fr.md) , [TechDraw TemplateHowTo/fr](TechDraw_TemplateHowTo/fr.md) , [Thread for Screw Tutorial/fr](Thread_for_Screw_Tutorial/fr.md) , [Toothbrush Head Stand/fr](Toothbrush_Head_Stand/fr.md) , [Transient FEM analysis/fr](Transient_FEM_analysis/fr.md) , [Tutorial custom placing of windows and doors/fr](Tutorial_custom_placing_of_windows_and_doors/fr.md) , [Tutorial for open windows/fr](Tutorial_for_open_windows/fr.md) , [Tutorial FreeCAD POV ray/fr](Tutorial_FreeCAD_POV_ray/fr.md) , [Tutorial Render with Blender/fr](Tutorial_Render_with_Blender/fr.md) , [Template:TutorialInfo/fr](Template:TutorialInfo/fr.md) , [Tutorials/fr](Tutorials/fr.md) , [Video tutorials for architectural design/fr](Video_tutorials_for_architectural_design/fr.md) , [Video tutorials for product design/fr](Video_tutorials_for_product_design/fr.md) , [Video tutorials obsolete/fr](Video_tutorials_obsolete/fr.md) , [Video tutorials/fr](Video_tutorials/fr.md) , [VRML Preparation for Robot Simulation/fr](VRML_Preparation_for_Robot_Simulation/fr.md) , [Whiffle Ball tutorial/fr](Whiffle_Ball_tutorial/fr.md) , [Wikihouse porting tutorial/fr](Wikihouse_porting_tutorial/fr.md) [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:Tutorials/fr diff --git a/wiki/translations/fr/Category:UnfinishedDocu.md b/wiki/translations/fr/Category:UnfinishedDocu.md index f6da414636..d59ed7ccb3 100644 --- a/wiki/translations/fr/Category:UnfinishedDocu.md +++ b/wiki/translations/fr/Category:UnfinishedDocu.md @@ -4,3 +4,6 @@ This category contains all Unfinished Documents ### Contents: [Category:Administration/fr](Category:Administration/fr.md) [Category:Categories/fr](Category:Categories/fr.md) + +--- +[documentation index](../README.md) > Category:UnfinishedDocu/fr diff --git a/wiki/translations/fr/Category:User_Documentation.md b/wiki/translations/fr/Category:User_Documentation.md index 799515b264..76d2b80402 100644 --- a/wiki/translations/fr/Category:User_Documentation.md +++ b/wiki/translations/fr/Category:User_Documentation.md @@ -8,3 +8,6 @@ Cette catégorie contient des articles sur l\'utilisation de FreeCAD. Il s\'agit [BIM Classification/fr](BIM_Classification/fr.md) , [BIM Clone/fr](BIM_Clone/fr.md) , [BIM IfcElements/fr](BIM_IfcElements/fr.md) , [BIM IfcProperties/fr](BIM_IfcProperties/fr.md) , [BIM IfcQuantities/fr](BIM_IfcQuantities/fr.md) , [BIM Layers/fr](BIM_Layers/fr.md) , [BIM Preflight/fr](BIM_Preflight/fr.md) , [BIM Project/fr](BIM_Project/fr.md) , [BIM Views/fr](BIM_Views/fr.md) , [BIM Windows/fr](BIM_Windows/fr.md) , [Template:GuiCommandAddon/fr](Template:GuiCommandAddon/fr.md) , [3D view/fr](3D_view/fr.md) , [3Dconnexion input devices/fr](3Dconnexion_input_devices/fr.md) , [A2plus Workbench/fr](A2plus_Workbench/fr.md) , [About FreeCAD/fr](About_FreeCAD/fr.md) , [Add FEM constraint tutorial/fr](Add_FEM_constraint_tutorial/fr.md) , [Add FEM equation tutorial/fr](Add_FEM_equation_tutorial/fr.md) , [Addon/fr](Addon/fr.md) , [Advanced TechDraw Tutorial/fr](Advanced_TechDraw_Tutorial/fr.md) , [Aeroplane/fr](Aeroplane/fr.md) , [Analysis of reinforced concrete with FEM/fr](Analysis_of_reinforced_concrete_with_FEM/fr.md) , [Animation Workbench/fr](Animation_Workbench/fr.md) , [App DocumentObject/fr](App_DocumentObject/fr.md) , [App DocumentObjectGroup/fr](App_DocumentObjectGroup/fr.md) , [App FeaturePython/fr](App_FeaturePython/fr.md) , [App GeoFeature/fr](App_GeoFeature/fr.md) , [App Link/fr](App_Link/fr.md) , [App Part/fr](App_Part/fr.md) , [AppImage/fr](AppImage/fr.md) , [Arch 3DS/fr](Arch_3DS/fr.md) , [Arch 3Views/fr](Arch_3Views/fr.md) , [Arch Add/fr](Arch_Add/fr.md) , [Arch API/fr](Arch_API/fr.md) , [Arch Axis/fr](Arch_Axis/fr.md) , [Arch AxisSystem/fr](Arch_AxisSystem/fr.md) , [Arch Building/fr](Arch_Building/fr.md) , [Arch BuildingPart/fr](Arch_BuildingPart/fr.md) , [Arch Check/fr](Arch_Check/fr.md) , [Arch CloneComponent/fr](Arch_CloneComponent/fr.md) , [Arch CloseHoles/fr](Arch_CloseHoles/fr.md) , [Arch CompAxis/fr](Arch_CompAxis/fr.md) , [Arch Component/fr](Arch_Component/fr.md) , [Arch CompPanel/fr](Arch_CompPanel/fr.md) , [Arch CompPipe/fr](Arch_CompPipe/fr.md) , [Arch CompRebarStraight/fr](Arch_CompRebarStraight/fr.md) , [Arch CompSetMaterial/fr](Arch_CompSetMaterial/fr.md) , [Arch CurtainWall/fr](Arch_CurtainWall/fr.md) , [Arch CutLine/fr](Arch_CutLine/fr.md) , [Arch CutPlane/fr](Arch_CutPlane/fr.md) , [Arch DAE/fr](Arch_DAE/fr.md) , [Arch Door/fr](Arch_Door/fr.md) , [Arch Equipment/fr](Arch_Equipment/fr.md) , [Arch Fence/fr](Arch_Fence/fr.md) , [Arch Floor/fr](Arch_Floor/fr.md) , [Arch Frame/fr](Arch_Frame/fr.md) , [Arch Grid/fr](Arch_Grid/fr.md) , [Arch IFC/fr](Arch_IFC/fr.md) , [Arch IfcExplorer/fr](Arch_IfcExplorer/fr.md) , [Arch IfcSpreadsheet/fr](Arch_IfcSpreadsheet/fr.md) , [Arch JSON/fr](Arch_JSON/fr.md) , [Arch MergeWalls/fr](Arch_MergeWalls/fr.md) , [Arch MeshToShape/fr](Arch_MeshToShape/fr.md) , [Arch MultiMaterial/fr](Arch_MultiMaterial/fr.md) , [Arch Nest/fr](Arch_Nest/fr.md) , [Arch OBJ/fr](Arch_OBJ/fr.md) , [Arch Panel Cut/fr](Arch_Panel_Cut/fr.md) , [Arch Panel Sheet/fr](Arch_Panel_Sheet/fr.md) , [Arch panel tutorial/fr](Arch_panel_tutorial/fr.md) , [Arch Panel/fr](Arch_Panel/fr.md) , [Arch Pipe/fr](Arch_Pipe/fr.md) , [Arch PipeConnector/fr](Arch_PipeConnector/fr.md) , [Arch Preferences/fr](Arch_Preferences/fr.md) , [Arch Profile/fr](Arch_Profile/fr.md) , [Arch Project/fr](Arch_Project/fr.md) , [Arch Rebar BeamReinforcement/fr](Arch_Rebar_BeamReinforcement/fr.md) , [Arch Rebar BentShape/fr](Arch_Rebar_BentShape/fr.md) , [Arch Rebar BOM/fr](Arch_Rebar_BOM/fr.md) , [Arch Rebar Circular ColumnReinforcement/fr](Arch_Rebar_Circular_ColumnReinforcement/fr.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/fr](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/fr.md) , [Arch Rebar ColumnReinforcement/fr](Arch_Rebar_ColumnReinforcement/fr.md) , [Arch Rebar Dimensioning/fr](Arch_Rebar_Dimensioning/fr.md) , [Arch Rebar Drawing Dimensioning/fr](Arch_Rebar_Drawing_Dimensioning/fr.md) , [Arch Rebar Drawing/fr](Arch_Rebar_Drawing/fr.md) , [Arch Rebar Helical/fr](Arch_Rebar_Helical/fr.md) , [Arch Rebar LShape/fr](Arch_Rebar_LShape/fr.md) , [Arch Rebar Slab Reinforcement/fr](Arch_Rebar_Slab_Reinforcement/fr.md) , [Arch Rebar Stirrup/fr](Arch_Rebar_Stirrup/fr.md) , [Arch Rebar Straight/fr](Arch_Rebar_Straight/fr.md) , [Arch Rebar UShape/fr](Arch_Rebar_UShape/fr.md) , [Arch Rebar/fr](Arch_Rebar/fr.md) , [Arch Reference/fr](Arch_Reference/fr.md) , [Arch Remove/fr](Arch_Remove/fr.md) , [Arch RemoveShape/fr](Arch_RemoveShape/fr.md) , [Arch Roof/fr](Arch_Roof/fr.md) , [Arch Schedule/fr](Arch_Schedule/fr.md) , [Arch SectionPlane/fr](Arch_SectionPlane/fr.md) , [Arch SelectNonSolidMeshes/fr](Arch_SelectNonSolidMeshes/fr.md) , [Arch SetMaterial/fr](Arch_SetMaterial/fr.md) , [Arch SHP/fr](Arch_SHP/fr.md) , [Arch Site/fr](Arch_Site/fr.md) , [Arch Space/fr](Arch_Space/fr.md) , [Arch SplitMesh/fr](Arch_SplitMesh/fr.md) , [Arch Stairs/fr](Arch_Stairs/fr.md) , [Arch Structure/fr](Arch_Structure/fr.md) , [Arch Survey/fr](Arch_Survey/fr.md) , [Arch ToggleIfcBrepFlag/fr](Arch_ToggleIfcBrepFlag/fr.md) , [Arch ToggleSubs/fr](Arch_ToggleSubs/fr.md) , [Arch Truss/fr](Arch_Truss/fr.md) , [Arch tutorial/fr](Arch_tutorial/fr.md) , [Arch Wall/fr](Arch_Wall/fr.md) , [Arch Window/fr](Arch_Window/fr.md) , [Arch Workbench/fr](Arch_Workbench/fr.md) , [Assembly/fr](Assembly/fr.md) , [Assembly2 Workbench/fr](Assembly2_Workbench/fr.md) , [Assembly3 ConstraintAlignment/fr](Assembly3_ConstraintAlignment/fr.md) , [Assembly3 ConstraintAngle/fr](Assembly3_ConstraintAngle/fr.md) , [Assembly3 ConstraintAttachment/fr](Assembly3_ConstraintAttachment/fr.md) , [Assembly3 ConstraintAxial/fr](Assembly3_ConstraintAxial/fr.md) , [Assembly3 ConstraintCoincidence/fr](Assembly3_ConstraintCoincidence/fr.md) , [Assembly3 ConstraintEqualAngle/fr](Assembly3_ConstraintEqualAngle/fr.md) , [Assembly3 ConstraintEqualLength/fr](Assembly3_ConstraintEqualLength/fr.md) , [Assembly3 ConstraintLengthDifference/fr](Assembly3_ConstraintLengthDifference/fr.md) , [Assembly3 ConstraintLengthEqualPointLineDistance/fr](Assembly3_ConstraintLengthEqualPointLineDistance/fr.md) , [Assembly3 ConstraintLengthRatio/fr](Assembly3_ConstraintLengthRatio/fr.md) , [Assembly3 ConstraintLineHorizontal/fr](Assembly3_ConstraintLineHorizontal/fr.md) , [Assembly3 ConstraintLineLength/fr](Assembly3_ConstraintLineLength/fr.md) , [Assembly3 ConstraintLineVertical/fr](Assembly3_ConstraintLineVertical/fr.md) , [Assembly3 ConstraintLock/fr](Assembly3_ConstraintLock/fr.md) , [Assembly3 ConstraintMore/fr](Assembly3_ConstraintMore/fr.md) , [Assembly3 ConstraintMultiParallel/fr](Assembly3_ConstraintMultiParallel/fr.md) , [Assembly3 ConstraintPerpendicular/fr](Assembly3_ConstraintPerpendicular/fr.md) , [Assembly3 ConstraintPointDistance/fr](Assembly3_ConstraintPointDistance/fr.md) , [Assembly3 ConstraintPointInPlane/fr](Assembly3_ConstraintPointInPlane/fr.md) , [Assembly3 ConstraintPointLineDistance/fr](Assembly3_ConstraintPointLineDistance/fr.md) , [Assembly3 ConstraintPointOnCircle/fr](Assembly3_ConstraintPointOnCircle/fr.md) , [Assembly3 ConstraintPointOnLine/fr](Assembly3_ConstraintPointOnLine/fr.md) , [Assembly3 ConstraintPointPlaneDistance/fr](Assembly3_ConstraintPointPlaneDistance/fr.md) , [Assembly3 ConstraintPointsCoincident/fr](Assembly3_ConstraintPointsCoincident/fr.md) , [Assembly3 ConstraintPointsDistance/fr](Assembly3_ConstraintPointsDistance/fr.md) , [Assembly3 ConstraintPointsHorizontal/fr](Assembly3_ConstraintPointsHorizontal/fr.md) , [Assembly3 ConstraintPointsSymmetric/fr](Assembly3_ConstraintPointsSymmetric/fr.md) , [Assembly3 ConstraintPointsVertical/fr](Assembly3_ConstraintPointsVertical/fr.md) , [Assembly3 ConstraintSameOrientation/fr](Assembly3_ConstraintSameOrientation/fr.md) , [Assembly3 ConstraintSymmetric/fr](Assembly3_ConstraintSymmetric/fr.md) , [Assembly3 ConstraintSymmetricHorizontal/fr](Assembly3_ConstraintSymmetricHorizontal/fr.md) , [Assembly3 ConstraintSymmetricVertical/fr](Assembly3_ConstraintSymmetricVertical/fr.md) , [Assembly3 MeasureAngle/fr](Assembly3_MeasureAngle/fr.md) , [Assembly3 MeasurePointLine/fr](Assembly3_MeasurePointLine/fr.md) , [Assembly3 MeasurePointPlane/fr](Assembly3_MeasurePointPlane/fr.md) , [Assembly3 MeasurePoints/fr](Assembly3_MeasurePoints/fr.md) , [Assembly3 Workbench/fr](Assembly3_Workbench/fr.md) , [Assembly4 Workbench/fr](Assembly4_Workbench/fr.md) , [Asymptote/fr](Asymptote/fr.md) , [Base API/fr](Base_API/fr.md) , [Basic Attachment Tutorial/fr](Basic_Attachment_Tutorial/fr.md) , [Basic modeling tutorial/fr](Basic_modeling_tutorial/fr.md) , [Basic Part Design Tutorial/fr](Basic_Part_Design_Tutorial/fr.md) , [Basic Sketcher Tutorial/fr](Basic_Sketcher_Tutorial/fr.md) , [Basic TechDraw Tutorial/fr](Basic_TechDraw_Tutorial/fr.md) , [BIM Box/fr](BIM_Box/fr.md) , [BIM Copy/fr](BIM_Copy/fr.md) , [BIM Library/fr](BIM_Library/fr.md) , [BIM Setup/fr](BIM_Setup/fr.md) , [BIM Workbench/fr](BIM_Workbench/fr.md) , [Bitmap/fr](Bitmap/fr.md) , [Body/fr](Body/fr.md) , [BOLTSFC Workbench/fr](BOLTSFC_Workbench/fr.md) , [Branding/fr](Branding/fr.md) , [Bug Triage/fr](Bug_Triage/fr.md) , [CadQuery Workbench/fr](CadQuery_Workbench/fr.md) , [Cfd Workbench/fr](Cfd_Workbench/fr.md) , [Civil Engineering Workbench/fr](Civil_Engineering_Workbench/fr.md) , [Combo view/fr](Combo_view/fr.md) , [Common Airfoil Data Import/fr](Common_Airfoil_Data_Import/fr.md) , [Compile on Docker/fr](Compile_on_Docker/fr.md) , [Compile on Linux/fr](Compile_on_Linux/fr.md) , [Compile on MacOS/fr](Compile_on_MacOS/fr.md) , [Compile on MinGW/fr](Compile_on_MinGW/fr.md) , [Compile on Windows with VS2013/fr](Compile_on_Windows_with_VS2013/fr.md) , [Compile on Windows/fr](Compile_on_Windows/fr.md) , [Compiling (Speeding up)/fr](Compiling_(Speeding_up)/fr.md) , [Compiling/fr](Compiling/fr.md) , [Complete Workbench/fr](Complete_Workbench/fr.md) , [Console API/fr](Console_API/fr.md) , [Constraint/fr](Constraint/fr.md) , [Constructive solid geometry/fr](Constructive_solid_geometry/fr.md) , [Continuous Integration/fr](Continuous_Integration/fr.md) , [Contributors/fr](Contributors/fr.md) , [Copying Objects/fr](Copying_Objects/fr.md) , [Creating a simple part with PartDesign/fr](Creating_a_simple_part_with_PartDesign/fr.md) , [Crowdin Administration/fr](Crowdin_Administration/fr.md) , [Crowdin Scripts/fr](Crowdin_Scripts/fr.md) , [CurvedShapes CurvedArray/fr](CurvedShapes_CurvedArray/fr.md) , [CurvedShapes Workbench/fr](CurvedShapes_Workbench/fr.md) , [Curves CompressionSpring/fr](Curves_CompressionSpring/fr.md) , [Curves Discretize/fr](Curves_Discretize/fr.md) , [Curves EditableSpline/fr](Curves_EditableSpline/fr.md) , [Curves ExtendCurve/fr](Curves_ExtendCurve/fr.md) , [Curves GordonSurface/fr](Curves_GordonSurface/fr.md) , [Curves Interpolate/fr](Curves_Interpolate/fr.md) , [Curves IsoCurve/fr](Curves_IsoCurve/fr.md) , [Curves JoinCurve/fr](Curves_JoinCurve/fr.md) , [Curves Line/fr](Curves_Line/fr.md) , [Curves MultiLoft/fr](Curves_MultiLoft/fr.md) , [Curves ParametricComb/fr](Curves_ParametricComb/fr.md) , [Curves ParametricSolid/fr](Curves_ParametricSolid/fr.md) , [Curves PasteSVG/fr](Curves_PasteSVG/fr.md) , [Curves Pipeshell/fr](Curves_Pipeshell/fr.md) , [Curves PipeshellProfile/fr](Curves_PipeshellProfile/fr.md) , [Curves ProfileSupport/fr](Curves_ProfileSupport/fr.md) , [Curves ReflectLines/fr](Curves_ReflectLines/fr.md) , [Curves SegmentSurface/fr](Curves_SegmentSurface/fr.md) , [Curves SketchOnSurface/fr](Curves_SketchOnSurface/fr.md) , [Curves SplitCurve/fr](Curves_SplitCurve/fr.md) , [Curves ToConsole/fr](Curves_ToConsole/fr.md) , [Curves Workbench/fr](Curves_Workbench/fr.md) , [Curves ZebraTool/fr](Curves_ZebraTool/fr.md) , [Custom Spacing/fr](Custom_Spacing/fr.md) , [Customize Toolbars/fr](Customize_Toolbars/fr.md) , [DAG view/fr](DAG_view/fr.md) , [Datum/fr](Datum/fr.md) , [Debian development/fr](Debian_development/fr.md) , [Debian Unstable/fr](Debian_Unstable/fr.md) , [Defeaturing Workbench/fr](Defeaturing_Workbench/fr.md) , [Defeaturing/fr](Defeaturing/fr.md) , [Template:Depths/Heights/fr](Template:Depths/Heights/fr.md) , [Developer hub/fr](Developer_hub/fr.md) , [Developing FreeCAD with GitKraken/fr](Developing_FreeCAD_with_GitKraken/fr.md) , [Document structure/fr](Document_structure/fr.md) , [Donate/fr](Donate/fr.md) , [Download/fr](Download/fr.md) , [Draft AddConstruction/fr](Draft_AddConstruction/fr.md) , [Draft AddToGroup/fr](Draft_AddToGroup/fr.md) , [Draft annotation scale widget/fr](Draft_annotation_scale_widget/fr.md) , [Draft AnnotationStyleEditor/fr](Draft_AnnotationStyleEditor/fr.md) , [Draft API/fr](Draft_API/fr.md) , [Draft ApplyStyle/fr](Draft_ApplyStyle/fr.md) , [Draft Arc 3Points/fr](Draft_Arc_3Points/fr.md) , [Draft Arc/fr](Draft_Arc/fr.md) , [Draft Array/fr](Draft_Array/fr.md) , [Draft AutoGroup/fr](Draft_AutoGroup/fr.md) , [Draft BezCurve/fr](Draft_BezCurve/fr.md) , [Draft BSpline/fr](Draft_BSpline/fr.md) , [Draft Circle/fr](Draft_Circle/fr.md) , [Draft CircularArray/fr](Draft_CircularArray/fr.md) , [Draft Clone/fr](Draft_Clone/fr.md) , [Draft Constrain/fr](Draft_Constrain/fr.md) , [Draft CubicBezCurve/fr](Draft_CubicBezCurve/fr.md) , [Draft DAT/fr](Draft_DAT/fr.md) , [Draft Dimension/fr](Draft_Dimension/fr.md) , [Draft Downgrade/fr](Draft_Downgrade/fr.md) , [Draft Draft2Sketch/fr](Draft_Draft2Sketch/fr.md) , [Draft Drawing/fr](Draft_Drawing/fr.md) , [Draft DXF/fr](Draft_DXF/fr.md) , [Draft Edit/fr](Draft_Edit/fr.md) , [Draft Ellipse/fr](Draft_Ellipse/fr.md) , [Draft Facebinder/fr](Draft_Facebinder/fr.md) , [Draft Fillet/fr](Draft_Fillet/fr.md) , [Draft FlipDimension/fr](Draft_FlipDimension/fr.md) , [Draft Heal/fr](Draft_Heal/fr.md) , [Draft Join/fr](Draft_Join/fr.md) , [Draft Label/fr](Draft_Label/fr.md) , [Draft Layer/fr](Draft_Layer/fr.md) , [Draft Line/fr](Draft_Line/fr.md) , [Draft Mirror/fr](Draft_Mirror/fr.md) , [Draft Move/fr](Draft_Move/fr.md) , [Draft OCA/fr](Draft_OCA/fr.md) , [Draft Offset/fr](Draft_Offset/fr.md) , [Draft OrthoArray/fr](Draft_OrthoArray/fr.md) , [Draft PathArray/fr](Draft_PathArray/fr.md) , [Draft PathLinkArray/fr](Draft_PathLinkArray/fr.md) , [Draft Pattern/fr](Draft_Pattern/fr.md) , [Draft Point/fr](Draft_Point/fr.md) , [Draft PointArray/fr](Draft_PointArray/fr.md) , [Draft PointLinkArray/fr](Draft_PointLinkArray/fr.md) , [Draft PolarArray/fr](Draft_PolarArray/fr.md) , [Draft Polygon/fr](Draft_Polygon/fr.md) , [Draft Preferences/fr](Draft_Preferences/fr.md) , [Draft Rectangle/fr](Draft_Rectangle/fr.md) , [Draft Rotate/fr](Draft_Rotate/fr.md) , [Draft Scale/fr](Draft_Scale/fr.md) , [Draft SelectGroup/fr](Draft_SelectGroup/fr.md) , [Draft SelectPlane/fr](Draft_SelectPlane/fr.md) , [Draft SetStyle/fr](Draft_SetStyle/fr.md) , [Draft Shape2DView/fr](Draft_Shape2DView/fr.md) , [Draft ShapeString tutorial/fr](Draft_ShapeString_tutorial/fr.md) , [Draft ShapeString/fr](Draft_ShapeString/fr.md) , [Draft ShowSnapBar/fr](Draft_ShowSnapBar/fr.md) , [Draft Slope/fr](Draft_Slope/fr.md) , [Draft Snap Angle/fr](Draft_Snap_Angle/fr.md) , [Draft Snap Center/fr](Draft_Snap_Center/fr.md) , [Draft Snap Dimensions/fr](Draft_Snap_Dimensions/fr.md) , [Draft Snap Endpoint/fr](Draft_Snap_Endpoint/fr.md) , [Draft Snap Extension/fr](Draft_Snap_Extension/fr.md) , [Draft Snap Grid/fr](Draft_Snap_Grid/fr.md) , [Draft Snap Intersection/fr](Draft_Snap_Intersection/fr.md) , [Draft Snap Lock/fr](Draft_Snap_Lock/fr.md) , [Draft Snap Midpoint/fr](Draft_Snap_Midpoint/fr.md) , [Draft Snap Near/fr](Draft_Snap_Near/fr.md) , [Draft Snap Ortho/fr](Draft_Snap_Ortho/fr.md) , [Draft Snap Parallel/fr](Draft_Snap_Parallel/fr.md) , [Draft Snap Perpendicular/fr](Draft_Snap_Perpendicular/fr.md) , [Draft Snap Special/fr](Draft_Snap_Special/fr.md) , [Draft snap widget/fr](Draft_snap_widget/fr.md) , [Draft Snap WorkingPlane/fr](Draft_Snap_WorkingPlane/fr.md) , [Draft Snap/fr](Draft_Snap/fr.md) , [Draft Split/fr](Draft_Split/fr.md) , [Draft Stretch/fr](Draft_Stretch/fr.md) , [Draft SubelementHighlight/fr](Draft_SubelementHighlight/fr.md) , [Draft SVG/fr](Draft_SVG/fr.md) , [Draft Text/fr](Draft_Text/fr.md) , [Draft ToggleConstructionMode/fr](Draft_ToggleConstructionMode/fr.md) , [Draft ToggleContinueMode/fr](Draft_ToggleContinueMode/fr.md) , [Draft ToggleDisplayMode/fr](Draft_ToggleDisplayMode/fr.md) , [Draft ToggleGrid/fr](Draft_ToggleGrid/fr.md) , [Draft Tray/fr](Draft_Tray/fr.md) , [Draft Trimex/fr](Draft_Trimex/fr.md) , [Draft tutorial/fr](Draft_tutorial/fr.md) , [Draft Upgrade/fr](Draft_Upgrade/fr.md) , [Draft Wire/fr](Draft_Wire/fr.md) , [Draft WireToBSpline/fr](Draft_WireToBSpline/fr.md) , [Draft Workbench/fr](Draft_Workbench/fr.md) , [Draft WorkingPlaneProxy/fr](Draft_WorkingPlaneProxy/fr.md) , [Drawing Annotation/fr](Drawing_Annotation/fr.md) , [Drawing Clip/fr](Drawing_Clip/fr.md) , [Drawing Dimensioning Addon/fr](Drawing_Dimensioning_Addon/fr.md) , [Drawing Landscape A3/fr](Drawing_Landscape_A3/fr.md) , [Drawing Open SVG/fr](Drawing_Open_SVG/fr.md) , [Drawing Openbrowser/fr](Drawing_Openbrowser/fr.md) , [Drawing Orthoviews/fr](Drawing_Orthoviews/fr.md) , [Drawing ProjectShape/fr](Drawing_ProjectShape/fr.md) , [Drawing Save/fr](Drawing_Save/fr.md) , [Drawing SpreadsheetView/fr](Drawing_SpreadsheetView/fr.md) , [Drawing Symbol/fr](Drawing_Symbol/fr.md) , [Drawing Template HowTo/fr](Drawing_Template_HowTo/fr.md) , [Drawing templates/fr](Drawing_templates/fr.md) , [Drawing tutorial/fr](Drawing_tutorial/fr.md) , [Drawing View/fr](Drawing_View/fr.md) , [Drawing Workbench/fr](Drawing_Workbench/fr.md) , [Drawing/fr](Drawing/fr.md) , [Dxf Importer Install/fr](Dxf_Importer_Install/fr.md) , [DXF/fr](DXF/fr.md) , [DynamicData Workbench/fr](DynamicData_Workbench/fr.md) , [EM FHEquiv/fr](EM_FHEquiv/fr.md) , [EM FHInputFile/fr](EM_FHInputFile/fr.md) , [EM FHNode/fr](EM_FHNode/fr.md) , [EM FHPath/fr](EM_FHPath/fr.md) , [EM FHPlane/fr](EM_FHPlane/fr.md) , [EM FHPlaneAddRemoveNodeHole/fr](EM_FHPlaneAddRemoveNodeHole/fr.md) , [EM FHPlaneHole/fr](EM_FHPlaneHole/fr.md) , [EM FHPort/fr](EM_FHPort/fr.md) , [EM FHSegment/fr](EM_FHSegment/fr.md) , [EM FHSolver/fr](EM_FHSolver/fr.md) , [EM Workbench/fr](EM_Workbench/fr.md) , [Engine Block Tutorial/fr](Engine_Block_Tutorial/fr.md) , [ExplodedAssembly Workbench/fr](ExplodedAssembly_Workbench/fr.md) , [Export to STL or OBJ/fr](Export_to_STL_or_OBJ/fr.md) , [Extend FEM Module/fr](Extend_FEM_Module/fr.md) , [External workbenches/fr](External_workbenches/fr.md) , [Extra python modules/fr](Extra_python_modules/fr.md) , [Fasteners BOM/fr](Fasteners_BOM/fr.md) , [Fasteners Workbench/fr](Fasteners_Workbench/fr.md) , [FCGear BevelGear/fr](FCGear_BevelGear/fr.md) , [FCGear CrownGear/fr](FCGear_CrownGear/fr.md) , [FCGear CycloideGear/fr](FCGear_CycloideGear/fr.md) , [FCGear InvoluteGear/fr](FCGear_InvoluteGear/fr.md) , [FCGear InvoluteRack/fr](FCGear_InvoluteRack/fr.md) , [FCGear LanternGear/fr](FCGear_LanternGear/fr.md) , [FCGear TimingGear/fr](FCGear_TimingGear/fr.md) , [FCGear Workbench/fr](FCGear_Workbench/fr.md) , [FCGear WormGear/fr](FCGear_WormGear/fr.md) , [Feature editing/fr](Feature_editing/fr.md) , [Feature list/fr](Feature_list/fr.md) , [Feature/fr](Feature/fr.md) , [FeaturePython Custom Properties/fr](FeaturePython_Custom_Properties/fr.md) , [FEM Analysis/fr](FEM_Analysis/fr.md) , [FEM Beginner tutorial/fr](FEM_Beginner_tutorial/fr.md) , [FEM CalculiX Cantilever 3D/fr](FEM_CalculiX_Cantilever_3D/fr.md) , [FEM ClippingPlaneAdd/fr](FEM_ClippingPlaneAdd/fr.md) , [FEM ClippingPlaneRemoveAll/fr](FEM_ClippingPlaneRemoveAll/fr.md) , [FEM Concrete/fr](FEM_Concrete/fr.md) , [FEM ConstantVacuumPermittivity/fr](FEM_ConstantVacuumPermittivity/fr.md) , [FEM ConstraintBearing/fr](FEM_ConstraintBearing/fr.md) , [FEM ConstraintBodyHeatSource/fr](FEM_ConstraintBodyHeatSource/fr.md) , [FEM ConstraintContact/fr](FEM_ConstraintContact/fr.md) , [FEM ConstraintDisplacement/fr](FEM_ConstraintDisplacement/fr.md) , [FEM ConstraintElectrostaticPotential/fr](FEM_ConstraintElectrostaticPotential/fr.md) , [FEM ConstraintFixed/fr](FEM_ConstraintFixed/fr.md) , [FEM ConstraintFlowVelocity/fr](FEM_ConstraintFlowVelocity/fr.md) , [FEM ConstraintFluidBoundary/fr](FEM_ConstraintFluidBoundary/fr.md) , [FEM ConstraintForce/fr](FEM_ConstraintForce/fr.md) , [FEM ConstraintGear/fr](FEM_ConstraintGear/fr.md) , [FEM ConstraintHeatflux/fr](FEM_ConstraintHeatflux/fr.md) , [FEM ConstraintInitialFlowVelocity/fr](FEM_ConstraintInitialFlowVelocity/fr.md) , [FEM ConstraintInitialTemperature/fr](FEM_ConstraintInitialTemperature/fr.md) , [FEM ConstraintPlaneRotation/fr](FEM_ConstraintPlaneRotation/fr.md) , [FEM ConstraintPressure/fr](FEM_ConstraintPressure/fr.md) , [FEM ConstraintPulley/fr](FEM_ConstraintPulley/fr.md) , [FEM ConstraintSectionPrint/fr](FEM_ConstraintSectionPrint/fr.md) , [FEM ConstraintSelfWeight/fr](FEM_ConstraintSelfWeight/fr.md) , [FEM ConstraintTemperature/fr](FEM_ConstraintTemperature/fr.md) , [FEM ConstraintTie/fr](FEM_ConstraintTie/fr.md) , [FEM ConstraintTransform/fr](FEM_ConstraintTransform/fr.md) , [FEM CreateNodesSet/fr](FEM_CreateNodesSet/fr.md) , [FEM Element Types/fr](FEM_Element_Types/fr.md) , [FEM ElementFluid1D/fr](FEM_ElementFluid1D/fr.md) , [FEM ElementGeometry1D/fr](FEM_ElementGeometry1D/fr.md) , [FEM ElementGeometry2D/fr](FEM_ElementGeometry2D/fr.md) , [FEM ElementRotation1D/fr](FEM_ElementRotation1D/fr.md) , [FEM EquationElasticity/fr](FEM_EquationElasticity/fr.md) , [FEM EquationElectricforce/fr](FEM_EquationElectricforce/fr.md) , [FEM EquationElectrostatic/fr](FEM_EquationElectrostatic/fr.md) , [FEM EquationFlow/fr](FEM_EquationFlow/fr.md) , [FEM EquationFlux/fr](FEM_EquationFlux/fr.md) , [FEM EquationHeat/fr](FEM_EquationHeat/fr.md) , [FEM Example Capacitance Two Balls/fr](FEM_Example_Capacitance_Two_Balls/fr.md) , [FEM Examples/fr](FEM_Examples/fr.md) , [FEM FemMesh2Mesh/fr](FEM_FemMesh2Mesh/fr.md) , [FEM FrontISTR Workbench/fr](FEM_FrontISTR_Workbench/fr.md) , [FEM Install/fr](FEM_Install/fr.md) , [FEM MaterialFluid/fr](FEM_MaterialFluid/fr.md) , [FEM MaterialMechanicalNonlinear/fr](FEM_MaterialMechanicalNonlinear/fr.md) , [FEM MaterialReinforced/fr](FEM_MaterialReinforced/fr.md) , [FEM MaterialSolid/fr](FEM_MaterialSolid/fr.md) , [FEM Mesh CalculiX/fr](FEM_Mesh_CalculiX/fr.md) , [FEM Mesh/fr](FEM_Mesh/fr.md) , [FEM MeshBoundaryLayer/fr](FEM_MeshBoundaryLayer/fr.md) , [FEM MeshClear/fr](FEM_MeshClear/fr.md) , [FEM MeshDisplayInfo/fr](FEM_MeshDisplayInfo/fr.md) , [FEM MeshGmshFromShape/fr](FEM_MeshGmshFromShape/fr.md) , [FEM MeshGroup/fr](FEM_MeshGroup/fr.md) , [FEM MeshNetgenFromShape/fr](FEM_MeshNetgenFromShape/fr.md) , [FEM MeshRegion/fr](FEM_MeshRegion/fr.md) , [FEM PostApplyChanges/fr](FEM_PostApplyChanges/fr.md) , [FEM PostCreateFunctions/fr](FEM_PostCreateFunctions/fr.md) , [FEM PostFilterClipRegion/fr](FEM_PostFilterClipRegion/fr.md) , [FEM PostFilterClipScalar/fr](FEM_PostFilterClipScalar/fr.md) , [FEM PostFilterCutFunction/fr](FEM_PostFilterCutFunction/fr.md) , [FEM PostFilterDataAlongLine/fr](FEM_PostFilterDataAlongLine/fr.md) , [FEM PostFilterDataAtPoint/fr](FEM_PostFilterDataAtPoint/fr.md) , [FEM PostFilterLinearizedStresses/fr](FEM_PostFilterLinearizedStresses/fr.md) , [FEM PostFilterWarp/fr](FEM_PostFilterWarp/fr.md) , [FEM PostPipelineFromResult/fr](FEM_PostPipelineFromResult/fr.md) , [FEM Preferences/fr](FEM_Preferences/fr.md) , [FEM project/fr](FEM_project/fr.md) , [FEM ResultShow/fr](FEM_ResultShow/fr.md) , [FEM ResultsPurge/fr](FEM_ResultsPurge/fr.md) , [FEM Shear of a Composite Block/fr](FEM_Shear_of_a_Composite_Block/fr.md) , [FEM Solver/fr](FEM_Solver/fr.md) , [FEM SolverCalculiX/fr](FEM_SolverCalculiX/fr.md) , [FEM SolverCalculixCxxtools/fr](FEM_SolverCalculixCxxtools/fr.md) , [FEM SolverControl/fr](FEM_SolverControl/fr.md) , [FEM SolverElmer/fr](FEM_SolverElmer/fr.md) , [FEM SolverRun/fr](FEM_SolverRun/fr.md) , [FEM SolverZ88/fr](FEM_SolverZ88/fr.md) , [FEM Tutorial Python/fr](FEM_Tutorial_Python/fr.md) , [FEM tutorial/fr](FEM_tutorial/fr.md) , [FEM Workbench/fr](FEM_Workbench/fr.md) , [File Format FCStd/fr](File_Format_FCStd/fr.md) , [Fine-tuning/fr](Fine-tuning/fr.md) , [Flamingo Workbench/fr](Flamingo_Workbench/fr.md) , [FreeCAD and DWG Import/fr](FreeCAD_and_DWG_Import/fr.md) , [FreeCAD and DXF Import/fr](FreeCAD_and_DXF_Import/fr.md) , [FreeCAD and Mesh Import/fr](FreeCAD_and_Mesh_Import/fr.md) , [FreeCAD API/fr](FreeCAD_API/fr.md) , [FreeCAD Build Tool/fr](FreeCAD_Build_Tool/fr.md) , [FreeCAD used in production/fr](FreeCAD_used_in_production/fr.md) , [FreeCAD-Ship s60 tutorial (II)/fr](FreeCAD-Ship_s60_tutorial_(II)/fr.md) , [FreeCAD-Ship s60 tutorial/fr](FreeCAD-Ship_s60_tutorial/fr.md) , [FreeCADGui API/fr](FreeCADGui_API/fr.md) , [Frequently asked questions/fr](Frequently_asked_questions/fr.md) , [Getting started/fr](Getting_started/fr.md) , [Git buildpackage/fr](Git_buildpackage/fr.md) , [Glossary/fr](Glossary/fr.md) , [GlTF/fr](GlTF/fr.md) , [GuiCommand model/fr](GuiCommand_model/fr.md) , [Template:GuiCommand/fr](Template:GuiCommand/fr.md) , [Help FreeCAD/fr](Help_FreeCAD/fr.md) , [Help/fr](Help/fr.md) , [How to install additional workbenches/fr](How_to_install_additional_workbenches/fr.md) , [How to install macros/fr](How_to_install_macros/fr.md) , [IfcOpenShell/fr](IfcOpenShell/fr.md) , [IfcPlusPlus/fr](IfcPlusPlus/fr.md) , [Image CreateImagePlane/fr](Image_CreateImagePlane/fr.md) , [Image Open/fr](Image_Open/fr.md) , [Image Scaling/fr](Image_Scaling/fr.md) , [Image Workbench/fr](Image_Workbench/fr.md) , [Import Export Preferences/fr](Import_Export_Preferences/fr.md) , [Import Export/fr](Import_Export/fr.md) , [Import from STL or OBJ/fr](Import_from_STL_or_OBJ/fr.md) , [Import OpenSCAD code/fr](Import_OpenSCAD_code/fr.md) , [Import text and geometry from Inkscape/fr](Import_text_and_geometry_from_Inkscape/fr.md) , [Import/Export IFC - compiling IfcOpenShell/fr](Import/Export_IFC_-_compiling_IfcOpenShell/fr.md) , [Important information/fr](Important_information/fr.md) , [Importing From Sketchup/fr](Importing_From_Sketchup/fr.md) , [Inspection Workbench/fr](Inspection_Workbench/fr.md) , [Installing additional components/fr](Installing_additional_components/fr.md) , [Installing Helpfile/fr](Installing_Helpfile/fr.md) , [Installing on Linux/fr](Installing_on_Linux/fr.md) , [Installing on Mac/fr](Installing_on_Mac/fr.md) [Category:Documentation/fr](Category:Documentation/fr.md) + +--- +[documentation index](../README.md) > Category:User Documentation/fr diff --git a/wiki/translations/fr/Category:Web.md b/wiki/translations/fr/Category:Web.md index 80cec811a2..4449a5904d 100644 --- a/wiki/translations/fr/Category:Web.md +++ b/wiki/translations/fr/Category:Web.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages relatives à [Web Workbench](Web_Workbenc [Artwork Web/fr](Artwork_Web/fr.md) , [Web Workbench/fr](Web_Workbench/fr.md) [Category:Workbenches/fr](Category:Workbenches/fr.md) + +--- +[documentation index](../README.md) > Category:Web/fr diff --git a/wiki/translations/fr/Category:Wiki.md b/wiki/translations/fr/Category:Wiki.md index 64fcca71b4..19575b21c5 100644 --- a/wiki/translations/fr/Category:Wiki.md +++ b/wiki/translations/fr/Category:Wiki.md @@ -6,3 +6,6 @@ Cette catégorie contient tous les documents relatifs au Wiki [Glossary/fr](Glossary/fr.md) , [Localisation Sidebar/fr](Localisation_Sidebar/fr.md) , [Localisation/fr](Localisation/fr.md) , [WikiPages/fr](WikiPages/fr.md) [Category:Administration/fr](Category:Administration/fr.md) [Category:Categories/fr](Category:Categories/fr.md) [Category:Documentation/fr](Category:Documentation/fr.md) + +--- +[documentation index](../README.md) > Category:Wiki/fr diff --git a/wiki/translations/fr/Category:Wiki:Example.md b/wiki/translations/fr/Category:Wiki:Example.md index 33716abf2e..e1bdb26c1d 100644 --- a/wiki/translations/fr/Category:Wiki:Example.md +++ b/wiki/translations/fr/Category:Wiki:Example.md @@ -4,3 +4,6 @@ Cette catégorie répertorie les pages qui sont des exemples de la documentation ### Contents: [Category:Wiki Documentation/fr](Category:Wiki_Documentation/fr.md) + +--- +[documentation index](../README.md) > Category:Wiki:Example/fr diff --git a/wiki/translations/fr/Category:Wiki_Documentation.md b/wiki/translations/fr/Category:Wiki_Documentation.md index 290d809c73..5e3d8b7ec5 100644 --- a/wiki/translations/fr/Category:Wiki_Documentation.md +++ b/wiki/translations/fr/Category:Wiki_Documentation.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les pages relatives à l\'utilisation efficace du w [WikiPages/fr](WikiPages/fr.md) , [Category:Documentation/fr](Category:Documentation/fr.md) [Category:Wiki:Example/fr](Category:Wiki:Example/fr.md) + +--- +[documentation index](../README.md) > Category:Wiki Documentation/fr diff --git a/wiki/translations/fr/Category:Workbenches.md b/wiki/translations/fr/Category:Workbenches.md index addc74a80e..5e6d550e12 100644 --- a/wiki/translations/fr/Category:Workbenches.md +++ b/wiki/translations/fr/Category:Workbenches.md @@ -6,3 +6,6 @@ Cette catégorie répertorie les ateliers inclus dans FreeCAD. [Arch Workbench/fr](Arch_Workbench/fr.md) , [Draft Workbench/fr](Draft_Workbench/fr.md) , [FEM Workbench/fr](FEM_Workbench/fr.md) , [Image Workbench/fr](Image_Workbench/fr.md) , [Inspection Workbench/fr](Inspection_Workbench/fr.md) , [Mesh Workbench/fr](Mesh_Workbench/fr.md) , [OpenSCAD Workbench/fr](OpenSCAD_Workbench/fr.md) , [Part Module/fr](Part_Module/fr.md) , [PartDesign Workbench/fr](PartDesign_Workbench/fr.md) , [Path Workbench/fr](Path_Workbench/fr.md) , [Points Workbench/fr](Points_Workbench/fr.md) , [Raytracing Workbench/fr](Raytracing_Workbench/fr.md) , [Reverse Engineering Workbench/fr](Reverse_Engineering_Workbench/fr.md) , [Robot Workbench/fr](Robot_Workbench/fr.md) , [Sketcher Workbench/fr](Sketcher_Workbench/fr.md) , [Spreadsheet Workbench/fr](Spreadsheet_Workbench/fr.md) , [Start Workbench/fr](Start_Workbench/fr.md) , [Std Base/fr](Std_Base/fr.md) , [Std Edit Menu/fr](Std_Edit_Menu/fr.md) , [Std File Menu/fr](Std_File_Menu/fr.md) , [Std Help Menu/fr](Std_Help_Menu/fr.md) , [Std Macro Menu/fr](Std_Macro_Menu/fr.md) , [Std Tools Menu/fr](Std_Tools_Menu/fr.md) , [Std View Menu/fr](Std_View_Menu/fr.md) , [Std Windows Menu/fr](Std_Windows_Menu/fr.md) , [Surface Workbench/fr](Surface_Workbench/fr.md) , [TechDraw Workbench/fr](TechDraw_Workbench/fr.md) , [Testing/fr](Testing/fr.md) , [Web Workbench/fr](Web_Workbench/fr.md) , [Workbenches/fr](Workbenches/fr.md) , , , , , , , , , , , , , , , , , , , , , [Category:User Documentation/fr](Category:User_Documentation/fr.md) [Category:Draft/fr](Category:Draft/fr.md) [Category:External Workbenches/fr](Category:External_Workbenches/fr.md) [Category:FEM/fr](Category:FEM/fr.md) [Category:Inspection/fr](Category:Inspection/fr.md) [Category:Mesh/fr](Category:Mesh/fr.md) [Category:Obsolete Workbenches/fr](Category:Obsolete_Workbenches/fr.md) [Category:OpenSCAD/fr](Category:OpenSCAD/fr.md) [Category:Part/fr](Category:Part/fr.md) [Category:Path/fr](Category:Path/fr.md) [Category:Plot/fr](Category:Plot/fr.md) [Category:Points/fr](Category:Points/fr.md) [Category:Raytracing/fr](Category:Raytracing/fr.md) [Category:Reinforcement/fr](Category:Reinforcement/fr.md) [Category:Reverse Engineering/fr](Category:Reverse_Engineering/fr.md) [Category:Robot/fr](Category:Robot/fr.md) [Category:Ship/fr](Category:Ship/fr.md) [Category:Start/fr](Category:Start/fr.md) [Category:Surface/fr](Category:Surface/fr.md) [Category:TechDraw/fr](Category:TechDraw/fr.md) [Category:Web/fr](Category:Web/fr.md) [Category:Test Framework/fr](Category:Test_Framework/fr.md) + +--- +[documentation index](../README.md) > Category:Workbenches/fr diff --git a/wiki/translations/fr/Cfd_Workbench.md b/wiki/translations/fr/Cfd_Workbench.md index d0281b333a..ff9b4fc514 100644 --- a/wiki/translations/fr/Cfd_Workbench.md +++ b/wiki/translations/fr/Cfd_Workbench.md @@ -1,6 +1,4 @@ # Cfd Workbench/fr - - ## Introduction @@ -61,3 +59,6 @@ Pour utiliser CFD pour FreeCAD [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Cfd Workbench/fr diff --git a/wiki/translations/fr/Changelog.md b/wiki/translations/fr/Changelog.md index 1be04c9d06..34aefc8453 100644 --- a/wiki/translations/fr/Changelog.md +++ b/wiki/translations/fr/Changelog.md @@ -1,5 +1,5 @@ # Changelog/fr - Le suivi des changements FreeCAD est assuré sur notre tracker mantis : +Le suivi des changements FreeCAD est assuré sur notre tracker mantis : @@ -7,3 +7,6 @@ [Category:Administration](Category:Administration.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Changelog/fr diff --git a/wiki/translations/fr/Civil_Engineering_Workbench.md b/wiki/translations/fr/Civil_Engineering_Workbench.md index 35b22c7114..4e18038db1 100644 --- a/wiki/translations/fr/Civil_Engineering_Workbench.md +++ b/wiki/translations/fr/Civil_Engineering_Workbench.md @@ -1,6 +1,4 @@ # Civil Engineering Workbench/fr - - ## Description Le génie civil est un vaste domaine d\'ingénierie et couvre plusieurs sujets, principalement environnementaux (eaux usées), géotechnique, transport et structure. À l'heure actuelle, les efforts de génie civil dans FreeCAD portent principalement sur l'ingénierie des transports, ou plus précisément sur la conception 3D des autoroutes. @@ -33,3 +31,6 @@ Les outils Armatures font actuellement partie de l\'[atelier Arch (Architecture) [Category:Documentation](Category:Documentation.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Civil Engineering Workbench/fr diff --git a/wiki/translations/fr/Code_snippets.md b/wiki/translations/fr/Code_snippets.md index 4159a91891..e61b63307e 100644 --- a/wiki/translations/fr/Code_snippets.md +++ b/wiki/translations/fr/Code_snippets.md @@ -1,7 +1,4 @@ # Code snippets/fr - - - {{TOCright}} ## Introduction @@ -1775,3 +1772,6 @@ Voir [Bouts de codes Coin3d](Coin3d_snippets/fr.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Code snippets/fr diff --git a/wiki/translations/fr/Coin3d_snippets.md b/wiki/translations/fr/Coin3d_snippets.md index 03fe8c6469..b259d43aae 100644 --- a/wiki/translations/fr/Coin3d_snippets.md +++ b/wiki/translations/fr/Coin3d_snippets.md @@ -1,7 +1,4 @@ # Coin3d snippets/fr - - - {{TOCright}} ## Description de cette liste @@ -103,3 +100,6 @@ Aucune installation n\'est nécessaire. Merci à l\'auteur du programme. }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Coin3d snippets/fr diff --git a/wiki/translations/fr/Combo_view.md b/wiki/translations/fr/Combo_view.md index a89daaec40..eedb9da85b 100644 --- a/wiki/translations/fr/Combo_view.md +++ b/wiki/translations/fr/Combo_view.md @@ -1,5 +1,5 @@ # Combo view/fr - {{TOCright}} +{{TOCright}} ## Introduction @@ -54,4 +54,7 @@ Activez ensuite la vue à l\'aide du menu, **Affichage → Panneaux → Vue arbo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Combo view/fr diff --git a/wiki/translations/fr/Command.md b/wiki/translations/fr/Command.md index c1947855d7..56ed83981c 100644 --- a/wiki/translations/fr/Command.md +++ b/wiki/translations/fr/Command.md @@ -1,6 +1,4 @@ # Command/fr - - ## Introduction @@ -101,3 +99,6 @@ Voir [Fonction - tracer une ligne](Line_drawing_function/fr.md). }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Command_Reference|:Category:Command_Reference]]. Les commandes peuvent être lancées à l'aide d'un bouton de la barre d'outils, d'un élément de menu, d'un script ](Category:Command_Reference|:Category:Command_Reference]]. Les commandes peuvent être lancées à l'aide d'un bouton de la barre d'outils, d'un élément de menu, d'un script .md) > Command/fr diff --git a/wiki/translations/fr/Common_Airfoil_Data_Import.md b/wiki/translations/fr/Common_Airfoil_Data_Import.md index e5b1e12637..080d5b2211 100644 --- a/wiki/translations/fr/Common_Airfoil_Data_Import.md +++ b/wiki/translations/fr/Common_Airfoil_Data_Import.md @@ -1,6 +1,4 @@ # Common Airfoil Data Import/fr - - ## Importation des données des profils aérodynamiques FreeCAD peut importer des données de profils comme celles qui se trouvent sur la base de données de coordonnées de profils [UIUC Airfoil Coordinates Database](http://m-selig.ae.illinois.edu/ads/coord_database.html) ou des fichiers produits par un logiciel de création et d\'annalyse de profils comme [XFLR5](http://www.xflr5.com/xflr5.htm). @@ -38,3 +36,6 @@ Il y a une macro disponible qui importera le profil avec une longueur de corde d [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Common Airfoil Data Import/fr diff --git a/wiki/translations/fr/CompileOnMac.md b/wiki/translations/fr/CompileOnMac.md index dafaace544..3a441f2b9b 100644 --- a/wiki/translations/fr/CompileOnMac.md +++ b/wiki/translations/fr/CompileOnMac.md @@ -1,2 +1,5 @@ # CompileOnMac/fr 1. REDIRECT [Compile on MacOS/fr](Compile_on_MacOS/fr.md) + +--- +[documentation index](../README.md) > CompileOnMac/fr diff --git a/wiki/translations/fr/CompileOnUnix.md b/wiki/translations/fr/CompileOnUnix.md index a114593a79..30ce6b9fb4 100644 --- a/wiki/translations/fr/CompileOnUnix.md +++ b/wiki/translations/fr/CompileOnUnix.md @@ -1,2 +1,5 @@ # CompileOnUnix/fr 1. REDIRECT [Compile\_on\_Linux/fr](Compile_on_Linux/fr.md) + +--- +[documentation index](../README.md) > CompileOnUnix/fr diff --git a/wiki/translations/fr/CompileOnWindows.md b/wiki/translations/fr/CompileOnWindows.md index 47f0e43382..958ffaf9a2 100644 --- a/wiki/translations/fr/CompileOnWindows.md +++ b/wiki/translations/fr/CompileOnWindows.md @@ -1,2 +1,5 @@ # CompileOnWindows/fr 1. REDIRECT [Compile on Windows/fr](Compile_on_Windows/fr.md) + +--- +[documentation index](../README.md) > CompileOnWindows/fr diff --git a/wiki/translations/fr/CompileOnWindows_-_Reducing_Disk_Footprint.md b/wiki/translations/fr/CompileOnWindows_-_Reducing_Disk_Footprint.md index fefa4a9b54..fe47ad8947 100644 --- a/wiki/translations/fr/CompileOnWindows_-_Reducing_Disk_Footprint.md +++ b/wiki/translations/fr/CompileOnWindows_-_Reducing_Disk_Footprint.md @@ -1,5 +1,5 @@ # CompileOnWindows - Reducing Disk Footprint/fr - Techniques to reduce disk space required for building FreeCAD on Windows This may be of use to those, who are limited on disk space (for example, because of an SSD), and for those, who want to avoid installing complete Visual Studio. +Techniques to reduce disk space required for building FreeCAD on Windows This may be of use to those, who are limited on disk space (for example, because of an SSD), and for those, who want to avoid installing complete Visual Studio. It is recommended that you know on practice, how to [Compile on Windows](Compile_on_Windows.md) with Qt Creator, before attempting this. @@ -159,3 +159,6 @@ You\'ll have to modify the path to libpack to match yours. Use absolute paths. T This batch must be run with administrator privileges (or, you can set to allow users use mklink in local security policy settings in Windows). The batch may fail, if there are spaces in paths (it may work, but it is untested). Tip: create a shortcut to links\_libpack.bat, set it up to run as admin (in shortcut properties), and drag the build folder onto the shortcut. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > CompileOnWindows - Reducing Disk Footprint/fr diff --git a/wiki/translations/fr/Compile_on_Cygwin.md b/wiki/translations/fr/Compile_on_Cygwin.md index 472c22e1b0..bbeca1a26a 100644 --- a/wiki/translations/fr/Compile_on_Cygwin.md +++ b/wiki/translations/fr/Compile_on_Cygwin.md @@ -1,5 +1,5 @@ # Compile on Cygwin/fr - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** ## How to build and run FreeCAD under Cygwin @@ -74,3 +74,6 @@ Once you have built the sources successfully using \'make\' with \'make install\ [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Cygwin/fr diff --git a/wiki/translations/fr/Compile_on_Docker.md b/wiki/translations/fr/Compile_on_Docker.md index 00b1e1661c..55921de0da 100644 --- a/wiki/translations/fr/Compile_on_Docker.md +++ b/wiki/translations/fr/Compile_on_Docker.md @@ -1,10 +1,4 @@ # Compile on Docker/fr - - - - - - {{TOCright}} ## Présentation @@ -142,3 +136,6 @@ Vous pouvez trouver les répertoires joints dans le répertoire `/mnt`. [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Compile on Docker/fr diff --git a/wiki/translations/fr/Compile_on_Linux.md b/wiki/translations/fr/Compile_on_Linux.md index 862d13fe07..99bca01943 100644 --- a/wiki/translations/fr/Compile_on_Linux.md +++ b/wiki/translations/fr/Compile_on_Linux.md @@ -1,10 +1,4 @@ # Compile on Linux/fr - - - - - - **Il existe un conteneur Docker FreeCAD expérimental qui est testé pour le développement FreeCAD. En savoir plus à ce sujet sur [Compiler sur Docker](Compile_on_Docker/fr.md)** @@ -1216,3 +1210,6 @@ Pour mettre à jour FreeCAD vers la dernière version, recommencez à partir de [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Linux/fr diff --git a/wiki/translations/fr/Compile_on_MacOS.md b/wiki/translations/fr/Compile_on_MacOS.md index 420f7e0777..2692010443 100644 --- a/wiki/translations/fr/Compile_on_MacOS.md +++ b/wiki/translations/fr/Compile_on_MacOS.md @@ -1,10 +1,4 @@ # Compile on MacOS/fr - - - - - - **Il existe un conteneur Docker FreeCAD expérimental qui est testé pour le développement FreeCAD. En savoir plus à ce sujet sur [Compiler sur Docker](Compile_on_Docker/fr.md)** @@ -194,3 +188,6 @@ FreeCAD peut être construit à partir du dernier master git hébergé sur githu [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS/fr diff --git a/wiki/translations/fr/Compile_on_MinGW.md b/wiki/translations/fr/Compile_on_MinGW.md index 6cbe50418e..ab8cfc0a4e 100644 --- a/wiki/translations/fr/Compile_on_MinGW.md +++ b/wiki/translations/fr/Compile_on_MinGW.md @@ -1,5 +1,5 @@ # Compile on MinGW/fr - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** {{TOCright}} +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** {{TOCright}} ## How to build and run FreeCAD under MSYS/MinGW @@ -256,3 +256,6 @@ Have fun! [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MinGW/fr diff --git a/wiki/translations/fr/Compile_on_Windows.md b/wiki/translations/fr/Compile_on_Windows.md index 868794de33..80d9043800 100644 --- a/wiki/translations/fr/Compile_on_Windows.md +++ b/wiki/translations/fr/Compile_on_Windows.md @@ -1,10 +1,4 @@ # Compile on Windows/fr - - - - - - {{TOCright}} Cette page explique étape par étape **comment compiler FreeCAD 0.19 ou plus récent sous Windows**. Pour les autres plates-formes, voir [Compiler](Compiling/fr.md). @@ -465,3 +459,6 @@ A voir [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows/fr diff --git a/wiki/translations/fr/Compile_on_Windows_with_VS2013.md b/wiki/translations/fr/Compile_on_Windows_with_VS2013.md index 201a48a631..e0e0b1498d 100644 --- a/wiki/translations/fr/Compile_on_Windows_with_VS2013.md +++ b/wiki/translations/fr/Compile_on_Windows_with_VS2013.md @@ -1,7 +1,4 @@ # Compile on Windows with VS2013/fr - - -
La procédure suivante crée une compilation dans l\'environnement Windows Vista/7/8, pour XP un autre ensemble d\'outils VS est nécessaire pour VS 2012 et 2013, qui n\'a pas été testé avec succès sur les Libpacks actuelles. Pour cibler XP (x32 et x64 fois), il est recommandé d\'utiliser VS2008 et Libpack FreeCADLibs\_11.0\_x86\_VC9.7z @@ -124,3 +121,6 @@ If you don\'t get any errors your done. Exit Visual Studio and start FreeCAD by [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows with VS2013/fr diff --git a/wiki/translations/fr/Compiling.md b/wiki/translations/fr/Compiling.md index 169ffc1695..f8656b742c 100644 --- a/wiki/translations/fr/Compiling.md +++ b/wiki/translations/fr/Compiling.md @@ -1,5 +1,5 @@ # Compiling/fr - Chaque système d\'exploitation dispose de sa page spécifique pour compiler FreeCAD dans la [Documentation d\'aide en ligne](Online_Help_Toc/fr.md). +Chaque système d\'exploitation dispose de sa page spécifique pour compiler FreeCAD dans la [Documentation d\'aide en ligne](Online_Help_Toc/fr.md). ----------------------------------------------------------- ------------------------------------------------------- ----------------------------------------------------- --------------------------------------------------------- [Compiler sous Docker](Compile_on_Docker/fr.md) @@ -20,3 +20,6 @@ Pour apprendre à utiliser le système de contrôle des révisions et contribuer [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling/fr diff --git a/wiki/translations/fr/Compiling_(Speeding_up).md b/wiki/translations/fr/Compiling_(Speeding_up).md index e484d7372e..452d90ec18 100644 --- a/wiki/translations/fr/Compiling_(Speeding_up).md +++ b/wiki/translations/fr/Compiling_(Speeding_up).md @@ -1,10 +1,4 @@ # Compiling (Speeding up)/fr - - - - - - {{TOCright}} ## Présentation @@ -64,3 +58,6 @@ Le programme `distcc` peut être utilisé pour effectuer une compilation distrib [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling (Speeding up)/fr diff --git a/wiki/translations/fr/Complete_Workbench.md b/wiki/translations/fr/Complete_Workbench.md index c477a7887f..4d20160557 100644 --- a/wiki/translations/fr/Complete_Workbench.md +++ b/wiki/translations/fr/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/fr - - - **L'[atelier Complete](Complete_Workbench/fr.md) est déprécié.** @@ -14,3 +11,6 @@ Voir [Personnalisation de l\'interface](Interface_Customization/fr.md) si vous s [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/fr diff --git a/wiki/translations/fr/Conda.md b/wiki/translations/fr/Conda.md index 7cd81e7e35..41f2bfecc6 100644 --- a/wiki/translations/fr/Conda.md +++ b/wiki/translations/fr/Conda.md @@ -1,6 +1,4 @@ # Conda/fr - - ## Introduction @@ -95,3 +93,6 @@ conda create --name fcenv-dev --channel freecad/label/dev freecad - [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Conda/fr diff --git a/wiki/translations/fr/Console_API.md b/wiki/translations/fr/Console_API.md index 5bbe227070..ad3259ac28 100644 --- a/wiki/translations/fr/Console_API.md +++ b/wiki/translations/fr/Console_API.md @@ -1,5 +1,5 @@ # Console API/fr - {{VeryImportantMessage |(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, voir [https://www.freecadweb.org/api autogenerated API documentation], ou générez vous-même la documentation, voir la [https://www.freecadweb.org/api documentation de l'auto-génération de l'API].}} +{{VeryImportantMessage |(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, voir [https://www.freecadweb.org/api autogenerated API documentation], ou générez vous-même la documentation, voir la [https://www.freecadweb.org/api documentation de l'auto-génération de l'API].}} Ce module est contenu dans le module FreeCAD et contient des méthodes pour envoyer le texte à la console de sortie FreeCAD et à la barre d\'état. Les messages seront de couleur différente suivant s\'ils sont des messages, des avertissements ou des erreurs. @@ -30,3 +30,6 @@ FreeCAD.Console.PrintMessage("Hello World!\n") [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Console API/fr diff --git a/wiki/translations/fr/Constraint.md b/wiki/translations/fr/Constraint.md index 7258d378d4..0e9bacaaab 100644 --- a/wiki/translations/fr/Constraint.md +++ b/wiki/translations/fr/Constraint.md @@ -1,6 +1,4 @@ # Constraint/fr - - ## Introduction @@ -47,3 +45,6 @@ Reportez-vous aux informations dans l\' [Glossary](Category:Glossary.md) > Constraint/fr diff --git a/wiki/translations/fr/Constructive_solid_geometry.md b/wiki/translations/fr/Constructive_solid_geometry.md index 6ed9a48151..cb0f057de9 100644 --- a/wiki/translations/fr/Constructive_solid_geometry.md +++ b/wiki/translations/fr/Constructive_solid_geometry.md @@ -1,5 +1,5 @@ # Constructive solid geometry/fr - {{TOCright}} +{{TOCright}} ## Introduction @@ -37,3 +37,6 @@ La page [Tutoriels](tutorials/fr.md) fournit des exemples de création de solide [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Constructive solid geometry/fr diff --git a/wiki/translations/fr/Continuous_Integration.md b/wiki/translations/fr/Continuous_Integration.md index 28f373faca..1a6908b5fe 100644 --- a/wiki/translations/fr/Continuous_Integration.md +++ b/wiki/translations/fr/Continuous_Integration.md @@ -1,10 +1,4 @@ # Continuous Integration/fr - - - - - - {{TOCright}} ## Intégration continue @@ -34,3 +28,6 @@ Actuellement, le dépôt FreeCAD sur GitHub déclenchera une construction sur le [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Continuous Integration/fr diff --git a/wiki/translations/fr/Contributors.md b/wiki/translations/fr/Contributors.md index f626330b8d..209e1e0d1d 100644 --- a/wiki/translations/fr/Contributors.md +++ b/wiki/translations/fr/Contributors.md @@ -1,10 +1,4 @@ # Contributors/fr - - - - - - {{TOCright}} @@ -253,3 +247,6 @@ Développeurs d\'ateliers supplémentaires pour FreeCAD (extrait de [Developer](Category:Developer.md) > Contributors/fr diff --git a/wiki/translations/fr/Contributors_hub.md b/wiki/translations/fr/Contributors_hub.md index 6f660be631..7277f82d3e 100644 --- a/wiki/translations/fr/Contributors_hub.md +++ b/wiki/translations/fr/Contributors_hub.md @@ -1,6 +1,4 @@ # Contributors hub/fr - - ## Introduction Si vous souhaitez contribuer à FreeCAD et utiliser votre énergie pour faire avancer ce projet, il existe de nombreuses façons de nous aider. Vous trouverez ci-dessous différents domaines auxquels vous pouvez vous joindre. @@ -23,4 +21,7 @@ Vous pouvez aussi aider les autres utilisateurs dans la [page d'assistance FreeC ## Développeur FreeCAD -## Développeur ou administrateur Web +## Développeur ou administrateur Web + +--- +[documentation index](../README.md) > Contributors hub/fr diff --git a/wiki/translations/fr/Copying_Objects.md b/wiki/translations/fr/Copying_Objects.md index 8687dc28b9..219798bd39 100644 --- a/wiki/translations/fr/Copying_Objects.md +++ b/wiki/translations/fr/Copying_Objects.md @@ -1,5 +1,5 @@ # Copying Objects/fr - {{TOCright}} +{{TOCright}} ## Vue d\'ensemble @@ -39,5 +39,5 @@ Comme la plupart des choses dans FreeCAD, il y a plusieurs façons de faire une - [Coller](Std_Paste/fr.md) - [Dupliquer une sélection](Std_DuplicateSelection/fr.md) - - +--- +[documentation index](../README.md) > Copying Objects/fr diff --git a/wiki/translations/fr/Create_a_FeaturePython_object_part_I.md b/wiki/translations/fr/Create_a_FeaturePython_object_part_I.md index cb1da55a8a..1c1291b0e8 100644 --- a/wiki/translations/fr/Create_a_FeaturePython_object_part_I.md +++ b/wiki/translations/fr/Create_a_FeaturePython_object_part_I.md @@ -1,10 +1,4 @@ # Create a FeaturePython object part I/fr - - - - - - {{TOCright}} ## Introduction @@ -389,3 +383,6 @@ class box(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Create a FeaturePython object part I/fr diff --git a/wiki/translations/fr/Create_a_FeaturePython_object_part_II.md b/wiki/translations/fr/Create_a_FeaturePython_object_part_II.md index e9dc36dd64..7e1a4b4ee9 100644 --- a/wiki/translations/fr/Create_a_FeaturePython_object_part_II.md +++ b/wiki/translations/fr/Create_a_FeaturePython_object_part_II.md @@ -1,10 +1,4 @@ # Create a FeaturePython object part II/fr - - - - - - {{TOCright}} ## Introduction @@ -402,3 +396,6 @@ class ViewProviderBox: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Create a FeaturePython object part II/fr diff --git a/wiki/translations/fr/Creating_a_FeaturePython_Box,_Part_II.md b/wiki/translations/fr/Creating_a_FeaturePython_Box,_Part_II.md index 114715a68f..e8e15639e0 100644 --- a/wiki/translations/fr/Creating_a_FeaturePython_Box,_Part_II.md +++ b/wiki/translations/fr/Creating_a_FeaturePython_Box,_Part_II.md @@ -1,2 +1,5 @@ # Creating a FeaturePython Box, Part II/fr 1. REDIRECT [Create\_a\_FeaturePython\_object\_part\_II/fr](Create_a_FeaturePython_object_part_II/fr.md) + +--- +[documentation index](../README.md) > Creating a FeaturePython Box, Part II/fr diff --git a/wiki/translations/fr/Creating_a_simple_part_with_PartDesign.md b/wiki/translations/fr/Creating_a_simple_part_with_PartDesign.md index 5aef1c029d..6bc5fd2a24 100644 --- a/wiki/translations/fr/Creating_a_simple_part_with_PartDesign.md +++ b/wiki/translations/fr/Creating_a_simple_part_with_PartDesign.md @@ -1,7 +1,4 @@ # Creating a simple part with PartDesign/fr - - - {{TutorialInfo/fr |Topic=Modélisation |Level=Débutant @@ -267,4 +264,7 @@ Vous pouvez aussi continuer avec cet autre tutoriel d\'une pièce un peu plus co {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Creating a simple part with PartDesign/fr diff --git a/wiki/translations/fr/Crowdin_Administration.md b/wiki/translations/fr/Crowdin_Administration.md index 0d761024f7..4461ae5344 100644 --- a/wiki/translations/fr/Crowdin_Administration.md +++ b/wiki/translations/fr/Crowdin_Administration.md @@ -1,6 +1,4 @@ # Crowdin Administration/fr - - ## Rôles - Traducteur @@ -41,3 +39,6 @@ [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Crowdin Administration/fr diff --git a/wiki/translations/fr/Crowdin_Scripts.md b/wiki/translations/fr/Crowdin_Scripts.md index cd6914c9ac..8e495434e2 100644 --- a/wiki/translations/fr/Crowdin_Scripts.md +++ b/wiki/translations/fr/Crowdin_Scripts.md @@ -1,5 +1,5 @@ # Crowdin Scripts/fr - {{TOCright}} +{{TOCright}} ## Gérer les traductions de FreeCAD @@ -91,3 +91,6 @@ Le script updatefromcrowdin.py extrait les modifications de crowdin vers votre r [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Crowdin Scripts/fr diff --git a/wiki/translations/fr/CurvedShapes_CurvedArray.md b/wiki/translations/fr/CurvedShapes_CurvedArray.md index 8ba74fe0d6..f51cb3b1fc 100644 --- a/wiki/translations/fr/CurvedShapes_CurvedArray.md +++ b/wiki/translations/fr/CurvedShapes_CurvedArray.md @@ -8,6 +8,8 @@ SeeAlso: --- +# CurvedShapes CurvedArray/fr + ## Description Crée un réseau et redimensionne les objets dans les limites d\'une ou plusieurs courbes de la coque. Dans cet exemple, la forme de base orange est redimensionnée dans les limites des courbes de coque rouge et violette. Il n\'est pas nécessaire de relier les courbes entre elles. Les courbes de coque doivent se trouver sur le plan XY- XZ- ou YZ- ou être parallèles à celui-ci. @@ -57,3 +59,6 @@ Crée un réseau et redimensionne les objets dans les limites d\'une ou plusieur [Category:Name](Category:Name.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Name](Category:Name.md) > CurvedShapes CurvedArray/fr diff --git a/wiki/translations/fr/CurvedShapes_Workbench.md b/wiki/translations/fr/CurvedShapes_Workbench.md index fec58c08cc..ceea95a21f 100644 --- a/wiki/translations/fr/CurvedShapes_Workbench.md +++ b/wiki/translations/fr/CurvedShapes_Workbench.md @@ -1,5 +1,5 @@ # CurvedShapes Workbench/fr - } Icône de l\'atelier externe CurvedShapes {{TOCright}} +} Icône de l\'atelier externe CurvedShapes {{TOCright}} ## Introduction @@ -43,3 +43,6 @@ L\'installation recommandée se fait par CurvedShapes Workbench/fr diff --git a/wiki/translations/fr/Curves_CompressionSpring.md b/wiki/translations/fr/Curves_CompressionSpring.md index d1f3c0f3ee..227abae4a3 100644 --- a/wiki/translations/fr/Curves_CompressionSpring.md +++ b/wiki/translations/fr/Curves_CompressionSpring.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves CompressionSpring/fr + ## Description [Curves Ressort de compression](Curves_CompressionSpring/fr.md) crée un ressort de compression. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -31,4 +33,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves CompressionSpring/fr diff --git a/wiki/translations/fr/Curves_Discretize.md b/wiki/translations/fr/Curves_Discretize.md index 2ac3bd8b58..808fbfd092 100644 --- a/wiki/translations/fr/Curves_Discretize.md +++ b/wiki/translations/fr/Curves_Discretize.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves Discretize/fr + ## Description La commande [Curves Discrétiser](Curves_Discretize/fr.md) permet de discrétiser une arête ou un fil. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -31,4 +33,7 @@ La commande [ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves Discretize/fr diff --git a/wiki/translations/fr/Curves_EditableSpline.md b/wiki/translations/fr/Curves_EditableSpline.md index be9a0c2076..44d5443001 100644 --- a/wiki/translations/fr/Curves_EditableSpline.md +++ b/wiki/translations/fr/Curves_EditableSpline.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves EditableSpline/fr + ## Description [Curves Modifier une B-spline](Curves_EditableSpline/fr.md) crée une courbe B-Spline à main levée. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -31,4 +33,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves EditableSpline/fr diff --git a/wiki/translations/fr/Curves_ExtendCurve.md b/wiki/translations/fr/Curves_ExtendCurve.md index 1a469c03a8..313e8081a7 100644 --- a/wiki/translations/fr/Curves_ExtendCurve.md +++ b/wiki/translations/fr/Curves_ExtendCurve.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves ExtendCurve/fr + ## Description [Extension de courbe](Curves_ExtendCurve/fr.md) étend le bord sélectionné. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -31,4 +33,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ExtendCurve/fr diff --git a/wiki/translations/fr/Curves_GordonSurface.md b/wiki/translations/fr/Curves_GordonSurface.md index a9e05032d7..a1b2c49537 100644 --- a/wiki/translations/fr/Curves_GordonSurface.md +++ b/wiki/translations/fr/Curves_GordonSurface.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves GordonSurface/fr + ## Description [Surface de Gordon](Curves_GordonSurface/fr.md) crée une surface qui enveloppe un réseau de courbes. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -91,4 +93,7 @@ A faire {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves GordonSurface/fr diff --git a/wiki/translations/fr/Curves_Interpolate.md b/wiki/translations/fr/Curves_Interpolate.md index 169d7afcee..86c912c0f6 100644 --- a/wiki/translations/fr/Curves_Interpolate.md +++ b/wiki/translations/fr/Curves_Interpolate.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves Interpolate/fr + ## Description [Curves Interpolation](Curves_Interpolate/fr.md) interpole les points avec une courbe B-spline. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -31,4 +33,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves Interpolate/fr diff --git a/wiki/translations/fr/Curves_IsoCurve.md b/wiki/translations/fr/Curves_IsoCurve.md index 5dbd6dca64..44044e8f82 100644 --- a/wiki/translations/fr/Curves_IsoCurve.md +++ b/wiki/translations/fr/Curves_IsoCurve.md @@ -7,6 +7,8 @@ SeeAlso:[Curves Joindre courbe](Curves_JoinCurve/fr.md) --- +# Curves IsoCurve/fr + ## Description L\'outil [Courbe iso](Curves_IsoCurve/fr.md) applique un réseau orienté UV sur une surface sélectionnée. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -40,4 +42,7 @@ L\'outil [Courb {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves IsoCurve/fr diff --git a/wiki/translations/fr/Curves_JoinCurve.md b/wiki/translations/fr/Curves_JoinCurve.md index 0504d12d02..9e2c5de206 100644 --- a/wiki/translations/fr/Curves_JoinCurve.md +++ b/wiki/translations/fr/Curves_JoinCurve.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves JoinCurve/fr + ## Description [Joindre courbe](Curves_JoinCurve/fr.md) joint les arêtes sélectionnées aux courbes BSpline. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -36,4 +38,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves JoinCurve/fr diff --git a/wiki/translations/fr/Curves_Line.md b/wiki/translations/fr/Curves_Line.md index 8670aa143c..b89e56c14f 100644 --- a/wiki/translations/fr/Curves_Line.md +++ b/wiki/translations/fr/Curves_Line.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves Line/fr + ## Description [Curves Ligne](Curves_Line/fr.md) crée une ligne paramétrique entre deux sommets. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -31,4 +33,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves Line/fr diff --git a/wiki/translations/fr/Curves_MultiLoft.md b/wiki/translations/fr/Curves_MultiLoft.md index cc7a366433..39337032bc 100644 --- a/wiki/translations/fr/Curves_MultiLoft.md +++ b/wiki/translations/fr/Curves_MultiLoft.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves MultiLoft/fr + ## Description [MultiLoft](Curves_MultiLoft/fr.md) lisse des objets de profil composés de plusieurs faces en parallèle. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -31,4 +33,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves MultiLoft/fr diff --git a/wiki/translations/fr/Curves_ParametricComb.md b/wiki/translations/fr/Curves_ParametricComb.md index a00dc53280..ed52425495 100644 --- a/wiki/translations/fr/Curves_ParametricComb.md +++ b/wiki/translations/fr/Curves_ParametricComb.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves ParametricComb/fr + ## Description Le [Peigne paramétrique](Curves_ParametricComb/fr.md) peut aider à visualiser la régularité ou la fluidité d\'une courbe ainsi que la continuité entre deux courbes. Remarque: un peigne est uniquement destiné à la visualisation. @@ -43,3 +45,6 @@ Un peigne 3D sera créé pour les courbes 3D. L\'échantillonnage et l\'échelle }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Curves ParametricComb/fr diff --git a/wiki/translations/fr/Curves_ParametricSolid.md b/wiki/translations/fr/Curves_ParametricSolid.md index fc6a3b6afd..4e7d7d7ce1 100644 --- a/wiki/translations/fr/Curves_ParametricSolid.md +++ b/wiki/translations/fr/Curves_ParametricSolid.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves ParametricSolid/fr + ## Description [Solide paramétrique](Curves_ParametricSolid/fr.md) génère un solide paramétrique à partir de faces sélectionnées. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -40,3 +42,6 @@ }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Curves ParametricSolid/fr diff --git a/wiki/translations/fr/Curves_PasteSVG.md b/wiki/translations/fr/Curves_PasteSVG.md index 2c43197b86..f09a83bd3f 100644 --- a/wiki/translations/fr/Curves_PasteSVG.md +++ b/wiki/translations/fr/Curves_PasteSVG.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves PasteSVG/fr + ## Description [Coller une image SVG](Curves_PasteSVG/fr.md) colle le contenu SVG du presse-papiers dans la [vue 3D](3D_view/fr.md). Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -31,4 +33,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves PasteSVG/fr diff --git a/wiki/translations/fr/Curves_PipeShell.md b/wiki/translations/fr/Curves_PipeShell.md index 59a2d082d3..1151962488 100644 --- a/wiki/translations/fr/Curves_PipeShell.md +++ b/wiki/translations/fr/Curves_PipeShell.md @@ -1,2 +1,5 @@ # Curves PipeShell/fr 1. REDIRECT [Curves\_Pipeshell/fr](Curves_Pipeshell/fr.md) + +--- +[documentation index](../README.md) > Curves PipeShell/fr diff --git a/wiki/translations/fr/Curves_Pipeshell.md b/wiki/translations/fr/Curves_Pipeshell.md index ff53344f01..5a29213690 100644 --- a/wiki/translations/fr/Curves_Pipeshell.md +++ b/wiki/translations/fr/Curves_Pipeshell.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves Pipeshell/fr + ## Description [Enveloppe de tube](Curves_Pipeshell/fr.md) crée un objet de balayage pour former une enveloppe de tube. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelés [Curves](Curves_Workbench/fr.md). @@ -92,4 +94,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves Pipeshell/fr diff --git a/wiki/translations/fr/Curves_PipeshellProfile.md b/wiki/translations/fr/Curves_PipeshellProfile.md index 03c0081400..5d4df7aabf 100644 --- a/wiki/translations/fr/Curves_PipeshellProfile.md +++ b/wiki/translations/fr/Curves_PipeshellProfile.md @@ -7,6 +7,8 @@ SeeAlso:[Curves Enveloppe de tube](Curves_Pipeshell/fr.md) --- +# Curves PipeshellProfile/fr + ## Description [Curves Profil de l\'enveloppe du tube](Curves_PipeshellProfile/fr.md) crée un objet des profils à partir de l\'Enveloppe d\'un tube. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -32,4 +34,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves PipeshellProfile/fr diff --git a/wiki/translations/fr/Curves_ProfileSupport.md b/wiki/translations/fr/Curves_ProfileSupport.md index ccee6eb5ea..c1367ee189 100644 --- a/wiki/translations/fr/Curves_ProfileSupport.md +++ b/wiki/translations/fr/Curves_ProfileSupport.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves ProfileSupport/fr + ## Description [Curves Plan de support](Curves_ProfileSupport/fr.md) crée un plan de support pour les esquisses. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -33,4 +35,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ProfileSupport/fr diff --git a/wiki/translations/fr/Curves_ReflectLines.md b/wiki/translations/fr/Curves_ReflectLines.md index 501f4ea41b..61bd396de5 100644 --- a/wiki/translations/fr/Curves_ReflectLines.md +++ b/wiki/translations/fr/Curves_ReflectLines.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves ReflectLines/fr + ## Description [Curves Ligne réfléchie](Curves_ReflectLines/fr.md) crée les lignes de réflexion sur une forme, selon une direction de vue. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -31,4 +33,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ReflectLines/fr diff --git a/wiki/translations/fr/Curves_SegmentSurface.md b/wiki/translations/fr/Curves_SegmentSurface.md index 167492028b..67fd6ed876 100644 --- a/wiki/translations/fr/Curves_SegmentSurface.md +++ b/wiki/translations/fr/Curves_SegmentSurface.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves SegmentSurface/fr + ## Description [Curves Segmenter une surface](Curves_SegmentSurface/fr.md) permet de segmenter une surface sur des isocurves. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -31,4 +33,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves SegmentSurface/fr diff --git a/wiki/translations/fr/Curves_SketchOnSurface.md b/wiki/translations/fr/Curves_SketchOnSurface.md index 40d89710d2..59e10c481a 100644 --- a/wiki/translations/fr/Curves_SketchOnSurface.md +++ b/wiki/translations/fr/Curves_SketchOnSurface.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves SketchOnSurface/fr + ## Description Cet outil mappe une esquisse sur une face comme une étiquette sur une bouteille. L\'esquisse doit être réellement attachée à une face (voir Sketch.Support). Le mode `Map` de l\'esquisse n\'a aucun effet sur le résultat. @@ -63,4 +65,7 @@ Les lignes de construction bleues de l\'esquisse font partie de l\'esquisse mêm {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves SketchOnSurface/fr diff --git a/wiki/translations/fr/Curves_SplitCurve.md b/wiki/translations/fr/Curves_SplitCurve.md index 287e7c41d7..f4a550637a 100644 --- a/wiki/translations/fr/Curves_SplitCurve.md +++ b/wiki/translations/fr/Curves_SplitCurve.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves SplitCurve/fr + ## Description [Séparateur courbe](Curves_SplitCurve/fr.md) divise le bord sélectionné. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -31,4 +33,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves SplitCurve/fr diff --git a/wiki/translations/fr/Curves_ToConsole.md b/wiki/translations/fr/Curves_ToConsole.md index b7f6690f1c..7c1bee4601 100644 --- a/wiki/translations/fr/Curves_ToConsole.md +++ b/wiki/translations/fr/Curves_ToConsole.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves ToConsole/fr + ## Description [Vers la console](Curves_ToConsole/fr.md) déplace les objets vers la console. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -31,4 +33,7 @@ {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ToConsole/fr diff --git a/wiki/translations/fr/Curves_Workbench.md b/wiki/translations/fr/Curves_Workbench.md index 73c5459103..16e151a43d 100644 --- a/wiki/translations/fr/Curves_Workbench.md +++ b/wiki/translations/fr/Curves_Workbench.md @@ -1,5 +1,5 @@ # Curves Workbench/fr - } +} ## Introduction @@ -51,3 +51,6 @@ Télécharger l\'atelier externe via le [Gestionnaire d\'Addon](Std_AddonMgr/fr. }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Curves Workbench/fr diff --git a/wiki/translations/fr/Curves_ZebraTool.md b/wiki/translations/fr/Curves_ZebraTool.md index a1ac64b9b6..2e4d4012c4 100644 --- a/wiki/translations/fr/Curves_ZebraTool.md +++ b/wiki/translations/fr/Curves_ZebraTool.md @@ -6,6 +6,8 @@ Workbenches:[Curves](Curves_Workbench/fr.md) --- +# Curves ZebraTool/fr + ## Description L\' [Outil Zebra](Curves_ZebraTool/fr.md) crée une texture Zebra pour l\'inspection de surface. Cet outil fait partie des [ateliers externes](External_workbenches/fr.md) appelé [Curves](Curves_Workbench/fr.md). @@ -41,4 +43,7 @@ L\' [Outil Zebr {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ZebraTool/fr diff --git a/wiki/translations/fr/Custom_Spacing.md b/wiki/translations/fr/Custom_Spacing.md index 1b6b717230..5230a0fb67 100644 --- a/wiki/translations/fr/Custom_Spacing.md +++ b/wiki/translations/fr/Custom_Spacing.md @@ -1,6 +1,4 @@ # Custom Spacing/fr - - ## Description L\'outil Espacement personnalisé permet à un utilisateur de créer une série de barres d\'armature dans l\'élément structurel. Vous pouvez définir trois segments pour la série. Pour le premier et troisième segment, vous pouvez donner un certain nombre de barres d\'armature et l\'espacement entre les barres d\'armature. Mais pour le second segment, vous ne pouvez donner qu\'un nombre de barres d\'armature ou d\'espacement entre les barres d\'armature car une valeur en détermine automatiquement les autres. @@ -19,3 +17,6 @@ Le résultat produit par la boîte de dialogue Rebar Distribution lorsque l\'uti [Category:User Documentation](Category:User_Documentation.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Custom Spacing/fr diff --git a/wiki/translations/fr/Custom_icon_in_tree_view.md b/wiki/translations/fr/Custom_icon_in_tree_view.md index 30f9cba2f1..f2f41a3c10 100644 --- a/wiki/translations/fr/Custom_icon_in_tree_view.md +++ b/wiki/translations/fr/Custom_icon_in_tree_view.md @@ -1,6 +1,4 @@ # Custom icon in tree view/fr - - ## Introduction Il s\'agit d\'un exemple de modification de l\'icône d\'un [viewprovider](Viewprovider/fr.md) personnalisé qui est normalement ajouté aux [objets définis par script](scripted_objects/fr.md). @@ -276,3 +274,6 @@ makeBox() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Custom icon in tree view/fr diff --git a/wiki/translations/fr/Customize_Toolbars.md b/wiki/translations/fr/Customize_Toolbars.md index f16e20b81e..263e273f2a 100644 --- a/wiki/translations/fr/Customize_Toolbars.md +++ b/wiki/translations/fr/Customize_Toolbars.md @@ -1,5 +1,5 @@ # Customize Toolbars/fr - {{TutorialInfo/fr|Topic=SampleTopic|Level=Débutant|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=Toutes}} +{{TutorialInfo/fr|Topic=SampleTopic|Level=Débutant|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=Toutes}} ## Sommaire @@ -118,3 +118,6 @@ Voir aussi : [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Customize Toolbars/fr diff --git a/wiki/translations/fr/DAG_view.md b/wiki/translations/fr/DAG_view.md index 72ed882f23..dee2f9f4c9 100644 --- a/wiki/translations/fr/DAG_view.md +++ b/wiki/translations/fr/DAG_view.md @@ -1,6 +1,4 @@ # DAG view/fr - - ## Introduction @@ -64,4 +62,7 @@ See also: {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > DAG view/fr diff --git a/wiki/translations/fr/DXF.md b/wiki/translations/fr/DXF.md index a9967e0f7f..d5862fe4b5 100644 --- a/wiki/translations/fr/DXF.md +++ b/wiki/translations/fr/DXF.md @@ -1,5 +1,5 @@ # DXF/fr - {{TOCright}} +{{TOCright}} ## Historique @@ -43,3 +43,6 @@ Outre les options du menu Edition → Préférences, l\'[Atelier TechDraw](TechD [Category:User Documentation](Category:User_Documentation.md) [Category:Draft](Category:Draft.md) [Category:TechDraw](Category:TechDraw.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > DXF/fr diff --git a/wiki/translations/fr/Datum.md b/wiki/translations/fr/Datum.md index f77bd738eb..d9eab6113f 100644 --- a/wiki/translations/fr/Datum.md +++ b/wiki/translations/fr/Datum.md @@ -1,6 +1,4 @@ # Datum/fr - - ## Introduction Dans FreeCAD, le mot \"[Datum](Datum/fr.md)\" est normalement utilisé pour faire référence à la géométrie auxiliaire dans l\'[Atelier PartDesign](PartDesign_Workbench/fr.md). Ces éléments géométriques ne feront pas partie de la [Shape](Shape/fr.md) (forme) finale du [Body](Body/fr.md) (corps) mais peuvent être utilisés comme références et supports pour les [Esquisses](Sketch/fr.md) et d\'autres types de [features](Feature/fr.md) (fonctions). @@ -46,3 +44,6 @@ Depuis leur apparition dans la v0.17, les objets de référence étaient destin }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Datum/fr diff --git a/wiki/translations/fr/Debian_Unstable.md b/wiki/translations/fr/Debian_Unstable.md index 7c2b40cd5a..85a4fb60fc 100644 --- a/wiki/translations/fr/Debian_Unstable.md +++ b/wiki/translations/fr/Debian_Unstable.md @@ -1,6 +1,4 @@ # Debian Unstable/fr - - [Debian Unstable](https://wiki.debian.org/DebianUnstable) est une distribution continue utilisée pour [Développement de Debian](Debian_development/fr.md) et recommandée pour les utilisateurs avancés dans le développement et l\'empaquetage FreeCAD. Les nouveaux paquets sont prêts dès qu\'ils sont téléchargés et construits, à moins que le téléchargeur ne les ait marqués pour [Debian Experimental](https://wiki.debian.org/DebianExperimental) ce qui nécessite une installation explicite (après une configuration pour activer la distribution supplémentaire) via . Souvent, les personnes utilisant les Debian Testing devraient en fait utiliser Debian Unstable; Les Debian Testing ne devraient être considérés que comme une «entrée/sortie de Questions/réponses», car, même s\'il peut sembler plus stable que l\'Unstable, il y a en fait un inconvénient. Les nouveaux paquets sont téléchargés sur Debian Unstable et migrent vers Testing après un certain temps, ainsi les correctifs de sécurité et les modifications importantes de l\'empaquetage peuvent être retardés de manière inappropriée. @@ -27,3 +25,6 @@ deb [http://deb.debian.org/debian](http://deb.debian.org/debian) experimental [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian Unstable/fr diff --git a/wiki/translations/fr/Debian_development.md b/wiki/translations/fr/Debian_development.md index 4ad211f3a4..78c096e55f 100644 --- a/wiki/translations/fr/Debian_development.md +++ b/wiki/translations/fr/Debian_development.md @@ -1,6 +1,4 @@ # Debian development/fr - - Debian est la distribution parente à partir de laquelle de nombreuses autres distributions Linux sont dérivées, comme Ubuntu, Linux Mint et autres. En tant que tel, il vaut la peine de se concentrer spécifiquement sur le développement de Debian car les améliorations de Debian filtreront par le biais de ses descendants. [Debian Unstable](Debian_Unstable/fr.md) est une bonne distribution cible pour le développement de FreeCAD sous Linux car elle fournit les packages les plus à jour possible, sous forme de distribution continue. On peut contribuer à la fois au développement de FreeCAD sur Debian ainsi qu\'à son écosystème de paquets et de dépendances connexes. @@ -9,3 +7,6 @@ Debian est la distribution parente à partir de laquelle de nombreuses autres di [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian development/fr diff --git a/wiki/translations/fr/Debugging.md b/wiki/translations/fr/Debugging.md index 72d7c9a5da..9eecdfeabc 100644 --- a/wiki/translations/fr/Debugging.md +++ b/wiki/translations/fr/Debugging.md @@ -1,10 +1,4 @@ # Debugging/fr - - - - - - {{TOCright}} ## Premier test @@ -335,3 +329,6 @@ Pour les développeurs qui ont besoin d\'approfondir le noyau d\'OpenCasCade, l\ }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/fr diff --git a/wiki/translations/fr/Defeaturing.md b/wiki/translations/fr/Defeaturing.md index df6e938d54..1bf3665965 100644 --- a/wiki/translations/fr/Defeaturing.md +++ b/wiki/translations/fr/Defeaturing.md @@ -1,6 +1,4 @@ # Defeaturing/fr - - ## Introduction La déconstruction de Modèles 3D a été ajouté à Open CASCADE 7.3 [1](https://dev.opencascade.org/index.php?q=node/1211) et peut être utilisé pour éditer des modèles STEP en supprimant des éléments du modèle. @@ -29,3 +27,6 @@ Part.show(box4) #show defeatured shape [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Defeaturing/fr diff --git a/wiki/translations/fr/Defeaturing_Workbench.md b/wiki/translations/fr/Defeaturing_Workbench.md index d2f0b3ac81..a9afb29942 100644 --- a/wiki/translations/fr/Defeaturing_Workbench.md +++ b/wiki/translations/fr/Defeaturing_Workbench.md @@ -1,5 +1,4 @@ -# Defeaturing Workbench/fr - Icône de l\'atelier Defeaturing +# Icône de l\'atelier Defeaturing Defeaturing Workbench/fr ## Introduction @@ -119,3 +118,6 @@ De nouveaux ateliers sont en développement, restez à l\'écoute ! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Defeaturing Workbench/fr diff --git a/wiki/translations/fr/Developer_hub.md b/wiki/translations/fr/Developer_hub.md index 5348f24844..58e8d7ab7f 100644 --- a/wiki/translations/fr/Developer_hub.md +++ b/wiki/translations/fr/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/fr - - ![150](images/Crystal_Clear_app_tutorials.png ) Vous êtes ici à l\'endroit idéal pour vous documenter, si vous voulez contribuer au développement du logiciel FreeCAD. @@ -126,3 +124,6 @@ FreeCAD, bien qu\'utilisable dans certains domaines, n\'est qu\'au début d\'un [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/fr diff --git a/wiki/translations/fr/Developing_FreeCAD_with_KDevelop.md b/wiki/translations/fr/Developing_FreeCAD_with_KDevelop.md index 5104cc5a3e..1bc2813520 100644 --- a/wiki/translations/fr/Developing_FreeCAD_with_KDevelop.md +++ b/wiki/translations/fr/Developing_FreeCAD_with_KDevelop.md @@ -1,5 +1,5 @@ # Developing FreeCAD with KDevelop/fr - } +} ## Introduction @@ -19,3 +19,6 @@ L\'intention de cette page est d\'aider à orienter les utilisateurs qui sont en - [Développer FreeCAD avec GitKraken](Developing_FreeCAD_with_GitKraken/fr.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Developing FreeCAD with KDevelop/fr diff --git a/wiki/translations/fr/Development_roadmap.md b/wiki/translations/fr/Development_roadmap.md index f1d67879c1..5c7ee65347 100644 --- a/wiki/translations/fr/Development_roadmap.md +++ b/wiki/translations/fr/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/fr - **Important : nombre de ces feuilles de route ne sont pas à jour ou sont peut-être abandonnées. Cette page et les pages vers lesquelles elle renvoie contiennent très probablement des informations obsolètes. Une feuille de route "souple" se trouve sur le [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] mais il n'y a pas de feuille de route "dure" pour le moment. De nombreux efforts sont déployés simultanément.** +**Important : nombre de ces feuilles de route ne sont pas à jour ou sont peut-être abandonnées. Cette page et les pages vers lesquelles elle renvoie contiennent très probablement des informations obsolètes. Une feuille de route "souple" se trouve sur le [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] mais il n'y a pas de feuille de route "dure" pour le moment. De nombreux efforts sont déployés simultanément.** FreeCAD - bien qu\'utilisable dans de nombreuses applications - FreeCAD n\'est qu\'au début d\'un long voyage dans la [CAO](http://fr.wikipedia.org/wiki/Conception_assistée_par_ordinateur). Il y a encore beaucoup de travail à faire pour atteindre un stade où nous pourrons rivaliser avec les logiciels commerciaux. @@ -47,3 +47,6 @@ Comme dans les plupart des projets [FLOSS](http://fr.wikipedia.org/wiki/Free/Lib [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/fr diff --git a/wiki/translations/fr/Dialog_creation.md b/wiki/translations/fr/Dialog_creation.md index b61e49c023..9860307c1e 100644 --- a/wiki/translations/fr/Dialog_creation.md +++ b/wiki/translations/fr/Dialog_creation.md @@ -1,7 +1,4 @@ # Dialog creation/fr - - - {{TOCright}} ## Introduction @@ -292,3 +289,6 @@ class plane(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation/fr diff --git a/wiki/translations/fr/Dialog_creation_image_and_animated_GIF.md b/wiki/translations/fr/Dialog_creation_image_and_animated_GIF.md index 56709d42d6..a618aa8809 100644 --- a/wiki/translations/fr/Dialog_creation_image_and_animated_GIF.md +++ b/wiki/translations/fr/Dialog_creation_image_and_animated_GIF.md @@ -1,6 +1,4 @@ # Dialog creation image and animated GIF/fr - - ## Introduction Exemple de [création de boîte de dialogue](Dialog_creation/fr.md) avec [PySide](PySide/fr.md). @@ -51,3 +49,6 @@ patience.show() #show the image }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation image and animated GIF/fr diff --git a/wiki/translations/fr/Dialog_creation_reading_and_writing_files.md b/wiki/translations/fr/Dialog_creation_reading_and_writing_files.md index 9af2b274f4..f814238241 100644 --- a/wiki/translations/fr/Dialog_creation_reading_and_writing_files.md +++ b/wiki/translations/fr/Dialog_creation_reading_and_writing_files.md @@ -1,6 +1,4 @@ # Dialog creation reading and writing files/fr - - ## Introduction Exemple de [création de boîte de dialogue](Dialog_creation/fr.md) avec [PySide](PySide/fr.md). @@ -96,3 +94,6 @@ else: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation reading and writing files/fr diff --git a/wiki/translations/fr/Dialog_creation_setting_colors.md b/wiki/translations/fr/Dialog_creation_setting_colors.md index abc7958cdf..7dcadf0665 100644 --- a/wiki/translations/fr/Dialog_creation_setting_colors.md +++ b/wiki/translations/fr/Dialog_creation_setting_colors.md @@ -1,6 +1,4 @@ # Dialog creation setting colors/fr - - ## Introduction Exemple de [création de boîte de dialogue](Dialog_creation/fr.md) avec [PySide](PySide/fr.md). @@ -203,3 +201,6 @@ else: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation setting colors/fr diff --git a/wiki/translations/fr/Dialog_creation_with_various_widgets.md b/wiki/translations/fr/Dialog_creation_with_various_widgets.md index 29f5cd4f6d..85037b70ea 100644 --- a/wiki/translations/fr/Dialog_creation_with_various_widgets.md +++ b/wiki/translations/fr/Dialog_creation_with_various_widgets.md @@ -1,6 +1,4 @@ # Dialog creation with various widgets/fr - - ## Introduction Exemple de [création de boîte de dialogue](Dialog_creation/fr.md) avec [PySide](PySide/fr.md). @@ -401,3 +399,6 @@ La page de code et les icônes [Qt Exemples](Qt_Example/fr.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation with various widgets/fr diff --git a/wiki/translations/fr/Document_structure.md b/wiki/translations/fr/Document_structure.md index 764ce12a9f..aa58a07878 100644 --- a/wiki/translations/fr/Document_structure.md +++ b/wiki/translations/fr/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/fr - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) Un document FreeCAD contient tous les objets compris dans votre scène. Il peut contenir des groupes ainsi que des objets créés avec n\'importe quel atelier. Vous pouvez donc basculer entre les ateliers et toujours travailler sur le même document. Ce document est ce qui est enregistré sur le disque quand vous sauvegardez votre travail. Vous pouvez aussi ouvrir plusieurs documents à la fois dans FreeCAD, et ouvrir plusieurs vues du même document. @@ -42,8 +36,5 @@ FreeCADGui.ActiveDocument.Blob FreeCADGui.ActiveDocument.ActiveView ``` Retourne à la vue courante - - - - - +--- +[documentation index](../README.md) > Document structure/fr diff --git a/wiki/translations/fr/Donate.md b/wiki/translations/fr/Donate.md index 69633a9dd9..d516c84f4d 100644 --- a/wiki/translations/fr/Donate.md +++ b/wiki/translations/fr/Donate.md @@ -1,7 +1,4 @@ # Donate/fr - - -
Don rapide: [le compte de l\'équipe FreeCAD](https://liberapay.com/FreeCAD) @@ -46,5 +43,5 @@ Il y a aussi le problème que nous n\'avons pas de structure (fondation, associa C\'est l\'époque du financement participatif où toutes sortes de projets et d\'idées peuvent susciter un grand intérêt et permettre de lever de fonds. Pourquoi ne pas inventer quelque chose de nouveau qui pourrait être réalisé pour FreeCad avec de l\'argent ou aider à trouver de meilleures solutions ? N\'hésitez pas à en discuter sur le forum, [A propos du financement et tout ça](http://forum.freecadweb.org/viewtopic.php?f=8&t=12242). - - +--- +[documentation index](../README.md) > Donate/fr diff --git a/wiki/translations/fr/Download.md b/wiki/translations/fr/Download.md index e15194cfd5..0a1aeec227 100644 --- a/wiki/translations/fr/Download.md +++ b/wiki/translations/fr/Download.md @@ -1,5 +1,5 @@ # Download/fr - {{TOCright}} +{{TOCright}} ## Version stable courante @@ -55,5 +55,5 @@ FreeCAD est en développement constant. La communauté FreeCAD propose une multitude de modules supplémentaires et de macros. Depuis la version 0.17, ils peuvent être installés directement depuis FreeCAD à l\'aide du [Gestionnaire d\'Addons](AddonManager/fr.md) . - - +--- +[documentation index](../README.md) > Download/fr diff --git a/wiki/translations/fr/Doxygen.md b/wiki/translations/fr/Doxygen.md index db18a1325f..0596ed97ca 100644 --- a/wiki/translations/fr/Doxygen.md +++ b/wiki/translations/fr/Doxygen.md @@ -1,6 +1,4 @@ # Doxygen/fr - - ## A propos @@ -881,3 +879,6 @@ Voir cette réponse dans [Stackoverflow](https://stackoverflow.com/a/35377654) p - [FreeCAD API website](https://www.freecadweb.org/api/) [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Doxygen/fr diff --git a/wiki/translations/fr/Draft_API.md b/wiki/translations/fr/Draft_API.md index 22156f7dde..1505042bab 100644 --- a/wiki/translations/fr/Draft_API.md +++ b/wiki/translations/fr/Draft_API.md @@ -1,5 +1,5 @@ # Draft API/fr - **(November 2018) Ces informations peuventt être incomplètes et obsolètes. Pour la dernière API, voir la page [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) Ces informations peuventt être incomplètes et obsolètes. Pour la dernière API, voir la page [https://www.freecadweb.org/api autogenerated API documentation].** Ces fonctions font partie de l\'établi [Draft](Draft_Workbench/fr.md), et, une fois que le module a été importé, elles peuvent être utilisées, dans les scripts, les [macros](macros/fr.md), ou dans l\'interpréteur [Python](Python/fr.md). @@ -85,3 +85,6 @@ Draft.move(myrect, mydistance) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft API/fr diff --git a/wiki/translations/fr/Draft_AddConstruction.md b/wiki/translations/fr/Draft_AddConstruction.md index 6472b99dc8..bee44e215b 100644 --- a/wiki/translations/fr/Draft_AddConstruction.md +++ b/wiki/translations/fr/Draft_AddConstruction.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Basculer en mode construction](Draft_ToggleConstructionMode/fr.md), [Draft Ajouter au groupe](Draft_AddToGroup/fr.md) --- +# Draft AddConstruction/fr + ## Description La commande **Draft Ajouter au groupe de construction** déplace les objets vers le [Draft Groupe de construction](Draft_ToggleConstructionMode/fr.md). Elle applique également la [couleur de la géométrie de la construction](Draft_ToggleConstructionMode/fr#Pr.C3.A9f.C3.A9rences.md) aux objets. @@ -30,8 +32,5 @@ Dans la version 0.19 de FreeCAD, cette commande et la commande [Draft Basculer e - Les objets peuvent également être déplacés vers le groupe de construction en les glissant et en les déposant sur le groupe dans la [Vue en arborescence](Tree_view/fr.md) ou en utilisant la commande [Draft Ajouter au groupe de construction](Draft_AddToGroup/fr.md). Dans les deux cas, la [Couleur de la géométrie de construction](Draft_ToggleConstructionMode/fr#Pr.C3.A9f.C3.A9rences.md) n\'est pas appliquée. - Pour plus d\'informations sur l\'organisation de votre modèle, voir [Structure du document](Document_structure/fr.md) et [Tutoriel Arch](Arch_tutorial/fr#Organiser_votre_mod.C3.A8le.md) - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddConstruction/fr diff --git a/wiki/translations/fr/Draft_AddToGroup.md b/wiki/translations/fr/Draft_AddToGroup.md index 7b9d578e2d..5167b3e17f 100644 --- a/wiki/translations/fr/Draft_AddToGroup.md +++ b/wiki/translations/fr/Draft_AddToGroup.md @@ -7,6 +7,8 @@ SeeAlso:[Std Créer un groupe](Std_Group/fr.md), [Draft Ajouter au groupe de construction](Draft_AddConstruction/fr.md), [Draft Groupement automatique](Draft_AutoGroup/fr.md), [Draft Sélection groupée](Draft_SelectGroup/fr.md) --- +# Draft AddToGroup/fr + ## Description La commande **Draft Déplacer vers le groupe** déplace les objets vers un [Std Groupe](Std_Group/fr.md). Elle peut aussi dégrouper des objets. @@ -31,8 +33,5 @@ Dans la version 0.20 de FreeCAD, la commande peut également gérer les objets d - Cette commande peut être utilisée pour déplacer des objets vers le [Groupe de construction](Draft_ToggleConstructionMode/fr.md), mais, contrairement à la commande [Draft Déplacer vers un groupe](Draft_AddConstruction/fr.md), elle n\'applique pas la [couleur de la géométrie de la construction](Draft_ToggleConstructionMode/fr#Pr.C3.A9f.C3.A9rences.md). - Pour plus d\'informations sur l\'organisation de votre modèle, voir [Structure du document](Document_structure/fr.md) et [Tutoriel Arch](Arch_tutorial/fr#Organiser_votre_mod.C3.A8le.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddToGroup/fr diff --git a/wiki/translations/fr/Draft_AnnotationStyleEditor.md b/wiki/translations/fr/Draft_AnnotationStyleEditor.md index cb1a8bb118..d7a527400d 100644 --- a/wiki/translations/fr/Draft_AnnotationStyleEditor.md +++ b/wiki/translations/fr/Draft_AnnotationStyleEditor.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Draft AnnotationStyleEditor/fr + ## Description La commande **Draft Éditeur de styles d\'annotations** vous permet de définir des styles qui affectent les propriétés visuelles des objets de type annotation, comme ceux créés par les commandes [Draft Texte](Draft_Text/fr.md), [Draft Dimension](Draft_Dimension/fr.md) et [Draft Étiquette](Draft_Label/fr.md). @@ -93,8 +95,5 @@ props = { } ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AnnotationStyleEditor/fr diff --git a/wiki/translations/fr/Draft_Apply.md b/wiki/translations/fr/Draft_Apply.md index f61648d26d..53675694a0 100644 --- a/wiki/translations/fr/Draft_Apply.md +++ b/wiki/translations/fr/Draft_Apply.md @@ -1,2 +1,5 @@ # Draft Apply/fr 1. REDIRECT [Draft\_ApplyStyle/fr](Draft_ApplyStyle/fr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Apply/fr diff --git a/wiki/translations/fr/Draft_ApplyStyle.md b/wiki/translations/fr/Draft_ApplyStyle.md index 89182c0032..5907eea2a3 100644 --- a/wiki/translations/fr/Draft_ApplyStyle.md +++ b/wiki/translations/fr/Draft_ApplyStyle.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Définir le style](Draft_SetStyle/fr.md) --- +# Draft ApplyStyle/fr + ## Description La commande **Draft Appliquer le style** applique les paramètres de style en cours aux objets sélectionnés. @@ -38,8 +40,5 @@ Cette commande ne gère actuellement que cinq des paramètres proposés par la c - Dans la version 0.20 de FreeCAD, la commande [Draft Définir le style](Draft_SetStyle/fr.md) peut également appliquer les paramètres. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ApplyStyle/fr diff --git a/wiki/translations/fr/Draft_Arc.md b/wiki/translations/fr/Draft_Arc.md index 34942c559c..810961afcb 100644 --- a/wiki/translations/fr/Draft_Arc.md +++ b/wiki/translations/fr/Draft_Arc.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Arc par 3 Points](Draft_Arc_3Points/fr.md), [Draft Cercle](Draft_Circle/fr.md) --- +# Draft Arc/fr + ## Description La commande **Draft Arc** crée un arc de cercle dans le [plan de travail](Draft_SelectPlane/fr.md) en cours à partir d\'un centre, d\'un rayon, d\'un angle de départ et d\'un angle d\'ouverture. Le rayon et les angles peuvent être définis en sélectionnant des points. @@ -78,8 +80,5 @@ arc3 = Draft.make_circle(750, startangle=-30, endangle=-150) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc/fr diff --git a/wiki/translations/fr/Draft_Arc_3Points.md b/wiki/translations/fr/Draft_Arc_3Points.md index fd4b024f9f..2618b8df05 100644 --- a/wiki/translations/fr/Draft_Arc_3Points.md +++ b/wiki/translations/fr/Draft_Arc_3Points.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Arc](Draft_Arc/fr.md), [Draft Cercle](Draft_Circle/fr.md) --- +# Draft Arc 3Points/fr + ## Description La commande **Draft Arc par 3 points** crée un arc de cercle dans le [plan de travail](Draft_SelectPlane/fr.md) en cours à partir de trois points qui définissent sa circonférence. Le centre et le rayon sont calculés à partir de ces points. @@ -93,8 +95,5 @@ arc = Draft.make_arc_3points(points) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc 3Points/fr diff --git a/wiki/translations/fr/Draft_Array.md b/wiki/translations/fr/Draft_Array.md index ee0a6c9a14..77ea6a0878 100644 --- a/wiki/translations/fr/Draft_Array.md +++ b/wiki/translations/fr/Draft_Array.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Réseau polaire](Draft_PolarArray/fr.md), [Draft Réseau circulaire](Draft_CircularArray/fr.md), [Draft Chemin pour série de copies](Draft_PathArray/fr.md), [Draft Matrice de points](Draft_PointArray/fr.md), [Draft Clone](Draft_Clone/fr.md) --- +# Draft Array/fr +
@@ -84,5 +86,5 @@ This command is now obsolete. Use the [Draft OrthoArray](Draft_OrthoArray.md), [
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Array/fr diff --git a/wiki/translations/fr/Draft_AutoGroup.md b/wiki/translations/fr/Draft_AutoGroup.md index 9461e7ae12..47caefa2a6 100644 --- a/wiki/translations/fr/Draft_AutoGroup.md +++ b/wiki/translations/fr/Draft_AutoGroup.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Calque](Draft_Layer/fr.md), [Std Créer un groupe](Std_Group/fr.md) --- +# Draft AutoGroup/fr + ## Description La commande **Draft Groupement automatique** modifie le [Draft Calque](Draft_Layer/fr.md) actif ou, [éventuellement](#Pr.C3.A9f.C3.A9rences.md), l\'objet actif [Std Groupe](Std_Group/fr.md) ou similaire aux groupes [Arch](Arch_Workbench/fr.md). Les nouveaux objets [Draft](Draft_Workbench/fr.md) et [Arch](Arch_Workbench/fr.md) sont automatiquement placés dans ce calque ou groupe actif. @@ -70,8 +72,5 @@ Draft.autogroup(polygon3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AutoGroup/fr diff --git a/wiki/translations/fr/Draft_BSpline.md b/wiki/translations/fr/Draft_BSpline.md index 7f27075731..012e351095 100644 --- a/wiki/translations/fr/Draft_BSpline.md +++ b/wiki/translations/fr/Draft_BSpline.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Polyligne](Draft_Wire/fr.md), [Draft Courbe de Bézier cubique](Draft_CubicBezCurve/fr.md), [Draft Courbe de Bézier](Draft_BezCurve/fr.md) --- +# Draft BSpline/fr + ## Description La commande **Draft B-spline** crée une [courbe B-spline](http://fr.wikipedia.org/wiki/B-spline) à partir de plusieurs points. @@ -135,8 +137,5 @@ spline3 = Draft.make_bspline([1.3*p3, p1, -1.7*p2], closed=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BSpline/fr diff --git a/wiki/translations/fr/Draft_BezCurve.md b/wiki/translations/fr/Draft_BezCurve.md index 3d26634b4b..9d92eeeb9a 100644 --- a/wiki/translations/fr/Draft_BezCurve.md +++ b/wiki/translations/fr/Draft_BezCurve.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Courbe de Bézier cubique](Draft_CubicBezCurve/fr.md), [Draft B-spline](Draft_BSpline/fr.md) --- +# Draft BezCurve/fr + ## Description La commande **Draft Courbe de Bézier** crée une [courbe de Bézier](http://fr.wikipedia.org/wiki/Courbe_de_B%C3%A9zier) à partir de plusieurs points. @@ -140,8 +142,5 @@ bezcurve3 = Draft.make_bezcurve([1.7*p3, 1.5*p4, 2.1*p2, p1], closed=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BezCurve/fr diff --git a/wiki/translations/fr/Draft_Circle.md b/wiki/translations/fr/Draft_Circle.md index 16f760e94a..394c2f9836 100644 --- a/wiki/translations/fr/Draft_Circle.md +++ b/wiki/translations/fr/Draft_Circle.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Arc](Draft_Arc/fr.md), [Draft Arc par 3 points](Draft_Arc_3Points/fr.md) --- +# Draft Circle/fr + ## Description La commande **Draft Cercle** crée un cercle dans le [Draft Plan de travail](Draft_SelectPlane/fr.md) en cours à partir d\'un centre et d\'un rayon. Le rayon peut être défini en choisissant un point. @@ -126,8 +128,5 @@ circle3 = Draft.make_circle(750, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Circle/fr diff --git a/wiki/translations/fr/Draft_CircularArray.md b/wiki/translations/fr/Draft_CircularArray.md index 4fdeef5e45..7406c31247 100644 --- a/wiki/translations/fr/Draft_CircularArray.md +++ b/wiki/translations/fr/Draft_CircularArray.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Réseau orthogonal](Draft_OrthoArray.md), [Draft Réseau polaire](Draft_PolarArray/fr.md), [Draft Chemin pour série de copies](Draft_PathArray/fr.md), [Draft Réseau lié selon une courbe](Draft_PathLinkArray/fr.md), [Draft Réseau de points](Draft_PointArray/fr.md), [Draft Réseau lié selon des points](Draft_PointLinkArray/fr.md) --- +# Draft CircularArray/fr + ## Description La commande **Draft Réseau circulaire** crée un réseau à partir d\'un objet sélectionné en plaçant des copies le long de circonférences concentriques. La commande peut éventuellement créer un réseau [Link](App_Link/fr.md), plus efficace qu\'un réseau normal. @@ -114,8 +116,5 @@ array = Draft.make_circular_array(tri, 1800, 1200, 4, 1) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CircularArray/fr diff --git a/wiki/translations/fr/Draft_Clone.md b/wiki/translations/fr/Draft_Clone.md index 2925f02eb7..41a34869eb 100644 --- a/wiki/translations/fr/Draft_Clone.md +++ b/wiki/translations/fr/Draft_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Echelle](Draft_Scale/fr.md) --- +# Draft Clone/fr + ## Description La commande **Draft Clone** crée des copies liées, des clones, des objets sélectionnés. La forme d\'un clone est paramétrique. Il sera mis à jour si son objet source change. Mais un clone a sa propre position, rotation et échelle, ainsi que ses propres [propriétés de vue](Property_editor/fr.md). Pour les objets [Arch](Arch_Workbench/fr.md), la commande crée un type spécial de clone : un clone Arch. @@ -83,8 +85,5 @@ cloned_object.Fuse = True doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Clone/fr diff --git a/wiki/translations/fr/Draft_CloseLine.md b/wiki/translations/fr/Draft_CloseLine.md index fa15ab6136..a431ddd428 100644 --- a/wiki/translations/fr/Draft_CloseLine.md +++ b/wiki/translations/fr/Draft_CloseLine.md @@ -1,2 +1,5 @@ # Draft CloseLine/fr 1. REDIRECT [Draft\_Wire/fr](Draft_Wire/fr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CloseLine/fr diff --git a/wiki/translations/fr/Draft_Constrain.md b/wiki/translations/fr/Draft_Constrain.md index 16fb1d0e68..d47321bbc9 100644 --- a/wiki/translations/fr/Draft_Constrain.md +++ b/wiki/translations/fr/Draft_Constrain.md @@ -1,10 +1,4 @@ # Draft Constrain/fr - - - - - - {{TOCright}} ## Description @@ -52,8 +46,5 @@ Voir aussi : [Réglage des préférences](Preferences_Editor/fr.md) et [Draft Pr - La touche par défaut **Constrain mod**, **Shift**, peut être modifiée : **Edition → Préférences.... → Draft → Grille et aimantation → Accrochage → Mode de contrainte**. - Les raccourcis **X**, **Y** et **Z** peuvent être modifiés : **Edition → Préférences... → Draft → Paramètres de l'interface utilisateur → Raccourcis de commandes**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Constrain/fr diff --git a/wiki/translations/fr/Draft_CubicBezCurve.md b/wiki/translations/fr/Draft_CubicBezCurve.md index 2e5bbfec7f..260ad06fbf 100644 --- a/wiki/translations/fr/Draft_CubicBezCurve.md +++ b/wiki/translations/fr/Draft_CubicBezCurve.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Courbe de Bézier](Draft_BezCurve/fr.md), [Draft B-spline](Draft_BSpline/fr.md) --- +# Draft CubicBezCurve/fr + ## Description La commande **Courbe de Bézier cubique** crée une [Courbe de Bézier](https://fr.wikipedia.org/wiki/Courbe_de_B%C3%A9zier) du troisième degré (quatre points requis). @@ -147,8 +149,5 @@ B7.ViewObject.DrawStyle = "Dashed" doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CubicBezCurve/fr diff --git a/wiki/translations/fr/Draft_DAT.md b/wiki/translations/fr/Draft_DAT.md index 4725996863..3ccdaf1827 100644 --- a/wiki/translations/fr/Draft_DAT.md +++ b/wiki/translations/fr/Draft_DAT.md @@ -1,9 +1,4 @@ # Draft DAT/fr - - - - - Le format des données de surface portante commun est un simple fichier contenant les métadonnées facultatives de la surface portante dans les 1-2 premières lignes et les coordonnées des surfaces supérieure et inférieure. Il existe de nombreux versions de ce format, aussi ce module d\'importation tente-t-il d\'être aussi intelligent que possible pour comprendre le fichier d\'entrée. @@ -15,3 +10,6 @@ Il existe de nombreux versions de ce format, aussi ce module d\'importation tent [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DAT/fr diff --git a/wiki/translations/fr/Draft_DXF.md b/wiki/translations/fr/Draft_DXF.md index 49077713dd..df666d7dec 100644 --- a/wiki/translations/fr/Draft_DXF.md +++ b/wiki/translations/fr/Draft_DXF.md @@ -1,10 +1,4 @@ # Draft DXF/fr - - - - - - {{TOCright}} ## Description @@ -124,3 +118,6 @@ importDXF.export(objects, "/home/user/Pictures/myfile.dxf") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DXF/fr diff --git a/wiki/translations/fr/Draft_Dimension.md b/wiki/translations/fr/Draft_Dimension.md index bbb5a7635b..339345aab4 100644 --- a/wiki/translations/fr/Draft_Dimension.md +++ b/wiki/translations/fr/Draft_Dimension.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Inverser la direction de la cote](Draft_FlipDimension/fr.md) --- +# Draft Dimension/fr + ## Description La commande **Draft Dimension** [crée](#Create.md) une [dimension linéaire](#Utilisation_pour_une_dimension_lin.C3.A9aire.md), une [dimension radiale](#Utilisation_pour_une_dimension_radiale.md) ou une [dimension angulaire](#Utilisation_pour_une_dimension_angulaire.md). La commande peut également être utilisée pour [convertir](#Convertir.md) des objets [Std Mesurer une distance](Std_MeasureDistance/fr.md). @@ -298,8 +300,5 @@ dimension4.ViewObject.FontSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Dimension/fr diff --git a/wiki/translations/fr/Draft_Downgrade.md b/wiki/translations/fr/Draft_Downgrade.md index be6b91eb47..968874fd8f 100644 --- a/wiki/translations/fr/Draft_Downgrade.md +++ b/wiki/translations/fr/Draft_Downgrade.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Mettre à niveau](Draft_Upgrade/fr.md), [Draft Soustraction](Part_Cut/fr.md) --- +# Draft Downgrade/fr + ## Description La commande **Draft Rétrograder** déclasse les objets sélectionnés. Le résultat dépend du nombre d\'objets sélectionnés et de leur type. La commande peut par exemple déconstruire un solide 3D en faces séparées et un fil en arêtes séparées. Si deux faces sont sélectionnées, un objet [Part Soustraction](Part_Cut/fr.md) est créé à partir de celles-ci. Notez que tous les objets ne peuvent pas être déclassés. Cette commande est le pendant de la commande [Draft Mettre à niveau](Draft_Upgrade/fr.md). @@ -73,8 +75,5 @@ add_list4, delete_list4 = Draft.downgrade(box, delete=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Downgrade/fr diff --git a/wiki/translations/fr/Draft_Draft2Sketch.md b/wiki/translations/fr/Draft_Draft2Sketch.md index f5feb2042d..e47e6f90e0 100644 --- a/wiki/translations/fr/Draft_Draft2Sketch.md +++ b/wiki/translations/fr/Draft_Draft2Sketch.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/fr.md), [Arch](Arch_Workbench/fr.md) --- +# Draft Draft2Sketch/fr + ## Description La commande **Draft Draft vers Esquisse** convertit les objets [Draft](Draft_Workbench/fr.md) en [Sketcher Esquisses](Sketcher_NewSketch/fr.md) et vice versa. @@ -93,8 +95,5 @@ draft_from_sketch = Draft.draftify(sketch_from_draft, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Draft2Sketch/fr diff --git a/wiki/translations/fr/Draft_Drawing.md b/wiki/translations/fr/Draft_Drawing.md index 62f90a3c03..d9a0622eb5 100644 --- a/wiki/translations/fr/Draft_Drawing.md +++ b/wiki/translations/fr/Draft_Drawing.md @@ -7,6 +7,8 @@ SeeAlso:[Atelier TechDraw](TechDraw_Workbench/fr.md), [Draft Vue 2D d'une forme](Draft_Shape2DView/fr.md) --- +# Draft Drawing/fr +
@@ -62,5 +64,5 @@ This command is now obsolete. Use the [TechDraw Workbench](TechDraw_Workbench.md
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Drawing/fr diff --git a/wiki/translations/fr/Draft_Edit.md b/wiki/translations/fr/Draft_Edit.md index 507db88efd..3cb0e5e7d5 100644 --- a/wiki/translations/fr/Draft_Edit.md +++ b/wiki/translations/fr/Draft_Edit.md @@ -8,6 +8,8 @@ SeeAlso:[Std Mode édition](Std_Edit/fr.md) --- +# Draft Edit/fr + ## Description La commande **Draft Éditer** place les objets sélectionnés en mode Draft Édition. Dans ce mode, les propriétés des objets peuvent être modifiées graphiquement. En général, les nœuds peuvent être déplacés et, dans certains cas, les options du menu contextuel peuvent être sélectionnées. La commande peut gérer la plupart des objets Draft, mais aussi certains autres objets. Voir [Objets pris en charge](#Objets_pris_en_charge.md). Les objets Draft supportés peuvent aussi être mis en mode Draft Édition avec la commande [Std Mode édition](Std_Edit/fr.md). @@ -176,8 +178,5 @@ Voir aussi: [Autogenerated API documentation](https://freecad.github.io/SourceDo Il n\'existe pas de méthode Python pour les objets Draft Edition. Pour émuler les résultats de la commande, les propriétés géométriques des objets doivent être modifiées. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Edit/fr diff --git a/wiki/translations/fr/Draft_Ellipse.md b/wiki/translations/fr/Draft_Ellipse.md index 14340dbfc8..05d2a53293 100644 --- a/wiki/translations/fr/Draft_Ellipse.md +++ b/wiki/translations/fr/Draft_Ellipse.md @@ -8,6 +8,8 @@ Version:0.7 --- +# Draft Ellipse/fr + ## Description La commande **Draft Ellipse** crée une ellipse dans le [plan de travail](Draft_SelectPlane/fr.md) en cours à partir de deux points définissant un rectangle dans lequel l\'ellipse s\'inscrira. @@ -122,8 +124,5 @@ ellipse3 = Draft.make_ellipse(700, 1000, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Ellipse/fr diff --git a/wiki/translations/fr/Draft_Facebinder.md b/wiki/translations/fr/Draft_Facebinder.md index 9db4c3fb20..462fb3f228 100644 --- a/wiki/translations/fr/Draft_Facebinder.md +++ b/wiki/translations/fr/Draft_Facebinder.md @@ -8,6 +8,8 @@ Version:0.14 --- +# Draft Facebinder/fr + ## Description La commande **Draft Surfaces liées** crée un objet de surface à partir des faces sélectionnées. Un objet Draft Surfaces liées est paramétrique, il sera mis à jour si vous modifiez son ou ses objets sources. @@ -117,8 +119,5 @@ facebinder.ViewObject.ShapeColor = (0.99, 0.99, 0.4) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Facebinder/fr diff --git a/wiki/translations/fr/Draft_Fillet.md b/wiki/translations/fr/Draft_Fillet.md index 7313922557..93e6b144b4 100644 --- a/wiki/translations/fr/Draft_Fillet.md +++ b/wiki/translations/fr/Draft_Fillet.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Ligne](Draft_Line/fr.md), [Draft Polyligne](Draft_Wire/fr.md) --- +# Draft Fillet/fr + ## Description La commande **Draft Congé** crée un congé, un coin arrondi ou un chanfrein, un bord droit entre deux [Draft Lignes](Draft_Line/fr.md). @@ -111,8 +113,5 @@ fillet = Draft.make_fillet([line1, line2], radius=500) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Fillet/fr diff --git a/wiki/translations/fr/Draft_FinishLine.md b/wiki/translations/fr/Draft_FinishLine.md index 13bed1a38a..7e0b1f0538 100644 --- a/wiki/translations/fr/Draft_FinishLine.md +++ b/wiki/translations/fr/Draft_FinishLine.md @@ -1,2 +1,5 @@ # Draft FinishLine/fr 1. REDIRECT [Draft\_Wire/fr](Draft_Wire/fr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FinishLine/fr diff --git a/wiki/translations/fr/Draft_FlipDimension.md b/wiki/translations/fr/Draft_FlipDimension.md index a3739eeb8f..15227d7063 100644 --- a/wiki/translations/fr/Draft_FlipDimension.md +++ b/wiki/translations/fr/Draft_FlipDimension.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/fr.md), [Arch](Arch_Workbench/fr.md) --- +# Draft FlipDimension/fr + ## Description La commande **Draft Inverser la direction de la cote** fait pivoter le texte de cote des [Draft Dimensions](Draft_Dimension/fr.md) de 180° autour de la ligne de cote. Elle peut être utilisée pour corriger les dimensions dont le texte apparaît en miroir. La commande ne fonctionne pas correctement pour les dimensions angulaires. @@ -46,8 +48,5 @@ dimension.Normal = dimension.Normal.negative() doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FlipDimension/fr diff --git a/wiki/translations/fr/Draft_Heal.md b/wiki/translations/fr/Draft_Heal.md index 7d79f874c0..54ced88134 100644 --- a/wiki/translations/fr/Draft_Heal.md +++ b/wiki/translations/fr/Draft_Heal.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Mettre à niveau](Draft_Upgrade/fr.md), [Draft Rétrograder](Draft_Downgrade/fr.md) --- +# Draft Heal/fr + ## Description La commande **Draft Réparer** répare les objets [Draft](Draft_Workbench/fr.md) problématiques trouvés dans de très vieux fichiers. Elle essaie de recréer les anciens objets à partir de zéro et de transférer leurs propriétés aux nouveaux objets. @@ -17,8 +19,5 @@ La commande **Draft 2. Sélectionnez l\'option **Utilitaires → Réparer** dans le menu. 3. Si aucune erreur n\'est trouvée, la commande ne fera rien. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Heal/fr diff --git a/wiki/translations/fr/Draft_Join.md b/wiki/translations/fr/Draft_Join.md index 3f7659a7aa..5139576ac8 100644 --- a/wiki/translations/fr/Draft_Join.md +++ b/wiki/translations/fr/Draft_Join.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Fractionner](Draft_Split/fr.md) --- +# Draft Join/fr + ## Description La commande **Draft Joindre** permet de joindre [Draft Lignes](Draft_Line/fr.md) et [Draft Polylignes](Draft_Wire/fr.md) en une seule ligne. Cette commande est la contrepartie de la commande [Draft Scinder](Draft_Split/fr.md). @@ -63,8 +65,5 @@ Draft.join_wires([wire1, wire3, wire2, wire4]) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Join/fr diff --git a/wiki/translations/fr/Draft_Label.md b/wiki/translations/fr/Draft_Label.md index 2540ecb2a0..486439cd5c 100644 --- a/wiki/translations/fr/Draft_Label.md +++ b/wiki/translations/fr/Draft_Label.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Texte](Draft_Text/fr.md), [Draft Formes à partir texte](Draft_ShapeString/fr.md) --- +# Draft Label/fr + ## Description La commande **Draft Étiquette** crée un texte de plusieurs lignes avec une ligne de tête à deux segments et une flèche. @@ -214,8 +216,5 @@ label3.ViewObject.TextSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Label/fr diff --git a/wiki/translations/fr/Draft_Layer.md b/wiki/translations/fr/Draft_Layer.md index 74c6a22165..12d84afcb0 100644 --- a/wiki/translations/fr/Draft_Layer.md +++ b/wiki/translations/fr/Draft_Layer.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Groupement automatique](Draft_AutoGroup/fr.md) --- +# Draft Layer/fr + ## Description La commande **Draft Calque** crée un Draft calque. Un calque est un groupe d\'un type particulier, doté d\'un certain nombre de [propriétés visuelles](#Vue.md). Ces propriétés, et toute modification qui leur est apportée, sont propagées aux objets placés à l\'intérieur du calque. Les calques eux-mêmes sont placés dans un autre groupe spécial : le Draft LayerContainer. @@ -114,8 +116,5 @@ layer.Group = [polygon1, polygon2, polygon3] doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Layer/fr diff --git a/wiki/translations/fr/Draft_Line.md b/wiki/translations/fr/Draft_Line.md index 36940795ad..38b9b9c47f 100644 --- a/wiki/translations/fr/Draft_Line.md +++ b/wiki/translations/fr/Draft_Line.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Polyligne](Draft_Wire/fr.md) --- +# Draft Line/fr + ## Description La commande **Draft Ligne** crée une ligne droite. @@ -99,8 +101,5 @@ line2 = Draft.make_line(p3, p4) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Line/fr diff --git a/wiki/translations/fr/Draft_Linestyle.md b/wiki/translations/fr/Draft_Linestyle.md index 71ac56801e..7211c26517 100644 --- a/wiki/translations/fr/Draft_Linestyle.md +++ b/wiki/translations/fr/Draft_Linestyle.md @@ -1,2 +1,5 @@ # Draft Linestyle/fr 1. REDIRECT [Draft\_Tray/fr](Draft_Tray/fr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Linestyle/fr diff --git a/wiki/translations/fr/Draft_LinkArray.md b/wiki/translations/fr/Draft_LinkArray.md index 2f6b9c3f3e..5c06372606 100644 --- a/wiki/translations/fr/Draft_LinkArray.md +++ b/wiki/translations/fr/Draft_LinkArray.md @@ -1,2 +1,5 @@ # Draft LinkArray/fr 1. REDIRECT [Draft\_OrthoArray/fr](Draft_OrthoArray/fr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft LinkArray/fr diff --git a/wiki/translations/fr/Draft_Mirror.md b/wiki/translations/fr/Draft_Mirror.md index 0df2f6ffcc..f4e7b1cf5a 100644 --- a/wiki/translations/fr/Draft_Mirror.md +++ b/wiki/translations/fr/Draft_Mirror.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Clone](Draft_Clone/fr.md) --- +# Draft Mirror/fr + ## Description La commande **Draft Miroir** crée des copies miroir, des objets [Part Miroir](Part_Mirror/fr.md), à partir des objets sélectionnés. Un objet [Part Miroir](Part_Mirror/fr.md) est paramétrique et il sera mis à jour si son objet source change. @@ -121,8 +123,5 @@ mirrored2 = Draft.mirror([polygon1, polygon2], -p1, -p2) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Mirror/fr diff --git a/wiki/translations/fr/Draft_Module.md b/wiki/translations/fr/Draft_Module.md index aee5b077a6..7f53232a89 100644 --- a/wiki/translations/fr/Draft_Module.md +++ b/wiki/translations/fr/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/fr 1. REDIRECT [Draft\_Workbench/fr](Draft_Workbench/fr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/fr diff --git a/wiki/translations/fr/Draft_Move.md b/wiki/translations/fr/Draft_Move.md index 2ca28a28b9..cc98a0db4d 100644 --- a/wiki/translations/fr/Draft_Move.md +++ b/wiki/translations/fr/Draft_Move.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Surligner les sous éléments](Draft_SubelementHighlight/fr.md) --- +# Draft Move/fr + ## Description La commande **Draft Déplacer** déplace ou copie les objets sélectionnés d\'un point à un autre. En mode sous-élément, la commande déplace les points et les bords sélectionnés ou copie les bords sélectionnés, des [Draft Lignes](Draft_Line/fr.md) et [Draft Polylignes](Draft_Wire/fr.md). @@ -110,8 +112,5 @@ list3 = Draft.move(list1, -2*vector, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Move/fr diff --git a/wiki/translations/fr/Draft_OCA.md b/wiki/translations/fr/Draft_OCA.md index 934f4200ca..4d77b8823b 100644 --- a/wiki/translations/fr/Draft_OCA.md +++ b/wiki/translations/fr/Draft_OCA.md @@ -1,10 +1,4 @@ # Draft OCA/fr - - - - - - {{TOCright}} ## Description @@ -72,3 +66,6 @@ importOCA.export(objects, "/home/user/Pictures/myfile.oca") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft OCA/fr diff --git a/wiki/translations/fr/Draft_Offset.md b/wiki/translations/fr/Draft_Offset.md index 5527609481..f15047338d 100644 --- a/wiki/translations/fr/Draft_Offset.md +++ b/wiki/translations/fr/Draft_Offset.md @@ -8,6 +8,8 @@ SeeAlso:[Part Décalage 2D](Part_Offset2D/fr.md) --- +# Draft Offset/fr + ## Description La commande **Draft Décalage** décale chaque segment d\'un objet sélectionné sur une distance donnée ou crée une copie décalée de l\'objet sélectionné. @@ -107,8 +109,5 @@ offset5 = Draft.offset(wire, 1.5*vector, copy=True, occ=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Offset/fr diff --git a/wiki/translations/fr/Draft_OrthoArray.md b/wiki/translations/fr/Draft_OrthoArray.md index b80c90f673..a49040d39c 100644 --- a/wiki/translations/fr/Draft_OrthoArray.md +++ b/wiki/translations/fr/Draft_OrthoArray.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Réseau polaire](Draft_PolarArray/fr.md), [Draft Réseau circulaire](Draft_CircularArray/fr.md), [Draft Réseau selon une courbe](Draft_PathArray/fr.md), [Draft Réseau lié selon une courbe](Draft_PathLinkArray.md), [Draft Réseau de points](Draft_PointArray/fr.md), [Draft Réseau lié selon des points](Draft_PointLinkArray/fr.md) --- +# Draft OrthoArray/fr + ## Description La commande **Draft Réseau orthogonal** crée un réseau orthogonal (3 axes) à partir d\'un objet sélectionné. La commande peut éventuellement créer un réseau de liens [Link](App_Link/fr.md), qui est plus efficace qu\'un réseau normal. @@ -338,8 +340,5 @@ Draft.array(rect, v_x, v_y, 3, 4) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft OrthoArray/fr diff --git a/wiki/translations/fr/Draft_PathArray.md b/wiki/translations/fr/Draft_PathArray.md index a52d4c79da..f2e7f3fce4 100644 --- a/wiki/translations/fr/Draft_PathArray.md +++ b/wiki/translations/fr/Draft_PathArray.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Réseau orthogonal](Draft_OrthoArray/fr.md), [Draft Réseau polaire](Draft_PolarArray/fr.md), [Draft Réseau circulaire](Draft_CircularArray/fr.md), [Draft Réseau lié selon une courbe](Draft_PathLinkArray/fr.md), [Draft Réseau de points](Draft_PointArray/fr.md), [Draft Réseau lié selon des points](Draft_PointLinkArray/fr.md) --- +# Draft PathArray/fr + ## Description La commande **Draft Réseau selon une courbe** crée un réseau régulier à partir d\'un objet sélectionné en plaçant des copies le long d\'un chemin. Utilisez la commande [Draft Réseau lié selon une courbe](Draft_PathLinkArray/fr.md) pour créer un réseau [Link](App_Link/fr.md) plus efficace à la place. À l\'exception du type de réseau créé, réseau de liens ou réseau régulier, la commande [Draft Réseau lié selon une courbe](Draft_PathLinkArray/fr.md) est identique à cette commande. @@ -255,8 +257,5 @@ path_array2 = Draft.make_path_array(obj, wire, count=3, extra=App.Vector(0, -500 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathArray/fr diff --git a/wiki/translations/fr/Draft_PathLinkArray.md b/wiki/translations/fr/Draft_PathLinkArray.md index 76cea3b7d3..b5a7d76f38 100644 --- a/wiki/translations/fr/Draft_PathLinkArray.md +++ b/wiki/translations/fr/Draft_PathLinkArray.md @@ -8,12 +8,11 @@ SeeAlso:[Draft Réseau orthogonal](Draft_OrthoArray/fr.md), [Draft Réseau polaire](Draft_PolarArray/fr.md), [Draft Réseau circulaire](Draft_CircularArray/fr.md), [Draft Réseau selon une courbe](Draft_PathArray/fr.md), [Draft Réseau de points](Draft_PointArray/fr.md), [Draft Réseau lié selon des points](Draft_PointLinkArray/fr.md) --- +# Draft PathLinkArray/fr + ## Description La commande **Draft Réseau lié selon une courbe** crée un réseau lié [Link](App_Link/fr.md) à partir d\'un objet sélectionné en plaçant des copies le long d\'une courbe. Utilisez la commande [Draft PathArray](Draft_PathArray.md) pour créer un réseau régulier moins efficace à la place. À l\'exception du type de réseau créé, réseau [Link](App_Link/fr.md) ou réseau régulier, cette commande est identique à la commande [Draft Réseau selon une courbe](Draft_PathArray/fr.md). Voir ici pour plus d\'informations. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathLinkArray/fr diff --git a/wiki/translations/fr/Draft_Pattern.md b/wiki/translations/fr/Draft_Pattern.md index d8df6ee6b5..bc3668801e 100644 --- a/wiki/translations/fr/Draft_Pattern.md +++ b/wiki/translations/fr/Draft_Pattern.md @@ -1,10 +1,4 @@ # Draft Pattern/fr - - - - - - {{TOCright}} ## Description @@ -43,8 +37,5 @@ Voir aussi : [Réglage des préférences](Preferences_Editor/fr.md) et [Draft Pr - La fenêtre **Edition → Préférences... → Draft → Paramètres visuels → Résolution des motifs de hachures** préférence n\'est pas utilisée. - Pour modifier la taille du motif {{PropertyView/fr|Pattern Size}} utilisée pour les nouveaux objets : **Edition → Préférences... → Draft → Paramètres visuels → Taille par défaut du motif des hachures**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Pattern/fr diff --git a/wiki/translations/fr/Draft_Point.md b/wiki/translations/fr/Draft_Point.md index 8b3c71eef9..a54ba0b57a 100644 --- a/wiki/translations/fr/Draft_Point.md +++ b/wiki/translations/fr/Draft_Point.md @@ -7,6 +7,8 @@ Version:0.7 --- +# Draft Point/fr + ## Description La commande **Draft Point** crée un point simple. Les Draft Points peuvent être utiles comme référence pour placer des lignes, des fils ou d\'autres objets. @@ -138,8 +140,5 @@ for i in range(N): doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Point/fr diff --git a/wiki/translations/fr/Draft_PointArray.md b/wiki/translations/fr/Draft_PointArray.md index 9fb15fb1cb..2a5554208c 100644 --- a/wiki/translations/fr/Draft_PointArray.md +++ b/wiki/translations/fr/Draft_PointArray.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Réseau orthogonal](Draft_OrthoArray/fr.md), [Draft Réseau polaire](Draft_PolarArray/fr.md), [Draft Réseau circulaire](Draft_CircularArray/fr.md), [Draft Réseau selon une courbe](Draft_PathArray/fr.md), [Draft Réseau lié selon une courbe](Draft_PathLinkArray/fr.md), [Draft Réseau lié selon des points](Draft_PointLinkArray/fr.md) --- +# Draft PointArray/fr + ## Description La commande **Draft Réseau de points** crée un réseau régulier à partir d\'un objet sélectionné en plaçant des copies aux points d\'un [composé de points](#Compos.C3.A9_de_points.md). Utilisez la commande [Draft Réseau lié selon une courbe](Draft_PointLinkArray/fr.md) pour créer un réseau lié [Link](App_Link/fr.md) plus efficace. À l\'exception du type de réseau créé, réseau de liens ou réseau régulier, la commande [Draft Réseau lié selon une courbe](Draft_PointLinkArray/fr.md) est identique à cette commande. @@ -202,8 +204,5 @@ point_array = Draft.make_point_array(polygon, compound) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PointArray/fr diff --git a/wiki/translations/fr/Draft_PointLinkArray.md b/wiki/translations/fr/Draft_PointLinkArray.md index c23b8430fc..11253c40c7 100644 --- a/wiki/translations/fr/Draft_PointLinkArray.md +++ b/wiki/translations/fr/Draft_PointLinkArray.md @@ -8,12 +8,11 @@ SeeAlso:[Draft Réseau orthogonal](Draft_OrthoArray/fr.md), [Draft Réseau polaire](Draft_PolarArray/fr.md), [Draft Réseau circulaire](Draft_CircularArray/fr.md), [Draft Réseau selon une courbe](Draft_PathArray/fr.md), [Draft Réseau de points](Draft_PointArray/fr.md) --- +# Draft PointLinkArray/fr + ## Description La commande **Draft Réseau lié selon des points** crée un réseau lié [Link](App_Link/fr.md) à partir d\'un objet sélectionné en plaçant des copies aux points d\'un [composé de points](Draft_PointArray/fr#Compos.C3.A9_de_points.md). Utilisez la commande [Draft Réseau de points\|](Draft_PointArray/fr.md) pour créer un réseau régulier moins efficace. À l\'exception du type de réseau créé, réseau [Link](App_Link/fr.md) ou réseau régulier, cette commande est identique à la commande [Draft Réseau de points](Draft_PointArray/fr.md). Voir ici pour plus d\'informations. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PointLinkArray/fr diff --git a/wiki/translations/fr/Draft_PolarArray.md b/wiki/translations/fr/Draft_PolarArray.md index 230225a831..6853e55b31 100644 --- a/wiki/translations/fr/Draft_PolarArray.md +++ b/wiki/translations/fr/Draft_PolarArray.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Réseau orthogonal](Draft_OrthoArray.md), [Draft Réseau circulaire](Draft_CircularArray/fr.md), [Draft Chemin pour série de copies](Draft_PathArray/fr.md), [Draft Réseau lié selon une courbe](Draft_PathLinkArray.md), [Draft Matrice de points](Draft_PointArray/fr.md), [Draft Réseau lié selon des points](Draft_PointLinkArray/fr.md) --- +# Draft PolarArray/fr + ## Description La commande **Draft Réseau polaire** crée un réseau à partir d\'un objet sélectionné en plaçant des copies le long d\'une circonférence. La commande peut éventuellement créer un réseau lié [Link](App_Link/fr.md), qui est plus efficace qu\'un réseau régulier. @@ -136,8 +138,5 @@ Draft.array(tri, center, 270, 8) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PolarArray/fr diff --git a/wiki/translations/fr/Draft_Polygon.md b/wiki/translations/fr/Draft_Polygon.md index 5e94bbce91..c0120f0f22 100644 --- a/wiki/translations/fr/Draft_Polygon.md +++ b/wiki/translations/fr/Draft_Polygon.md @@ -8,6 +8,8 @@ Version:0.7 --- +# Draft Polygon/fr + ## Description La commande **Draft Polygone** crée un polygone régulier dans le [plan de travail](Draft_SelectPlane/fr.md) en cours à partir d\'un centre et d\'un rayon. Le rayon peut être défini en choisissant un point. @@ -124,8 +126,5 @@ Polygon3 = Draft.make_polygon(6, radius=1450, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Polygon/fr diff --git a/wiki/translations/fr/Draft_Polyline.md b/wiki/translations/fr/Draft_Polyline.md index c4ed6c3cab..5cc56ee5c9 100644 --- a/wiki/translations/fr/Draft_Polyline.md +++ b/wiki/translations/fr/Draft_Polyline.md @@ -1,2 +1,5 @@ # Draft Polyline/fr 1. REDIRECT [Draft\_Wire/fr](Draft_Wire/fr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Polyline/fr diff --git a/wiki/translations/fr/Draft_Preferences.md b/wiki/translations/fr/Draft_Preferences.md index f7b9d57839..e0b604afbc 100644 --- a/wiki/translations/fr/Draft_Preferences.md +++ b/wiki/translations/fr/Draft_Preferences.md @@ -1,10 +1,4 @@ # Draft Preferences/fr - - - - - - {{TOCright}} Les préférences de l\'[Atelier Draft](Draft_Workbench/fr.md) se trouvent dans [Réglage des préférences](Preferences_Editor/fr.md), dans le menu **Édition → Préférences → Draft**. @@ -500,3 +494,6 @@ Dans l\'onglet *Textes et cotes*, vous pouvez spécifier les éléments suivants [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Preferences/fr diff --git a/wiki/translations/fr/Draft_Rectangle.md b/wiki/translations/fr/Draft_Rectangle.md index 9c27a2978d..7492619c0d 100644 --- a/wiki/translations/fr/Draft_Rectangle.md +++ b/wiki/translations/fr/Draft_Rectangle.md @@ -8,6 +8,8 @@ Version:0.7 --- +# Draft Rectangle/fr + ## Description La commande **Draft Rectangle** crée un rectangle dans le [plan de travail](Draft_SelectPlane/fr.md) en cours à partir de deux points. @@ -125,8 +127,5 @@ rectangle3 = Draft.make_rectangle(3500, 250, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rectangle/fr diff --git a/wiki/translations/fr/Draft_Rotate.md b/wiki/translations/fr/Draft_Rotate.md index 7ef8f37453..6717fc6b45 100644 --- a/wiki/translations/fr/Draft_Rotate.md +++ b/wiki/translations/fr/Draft_Rotate.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Surligner les sous éléments](Draft_SubelementHighlight/fr.md) --- +# Draft Rotate/fr + ## Description La commande **Draft Pivoter** permet de faire pivoter ou de copier les objets sélectionnés autour d\'un point central selon un angle donné. En mode sous-élément, la commande fait tourner les points et les bords sélectionnés ou copie les bords sélectionnés des [Draft Lignes](Draft_Line/fr.md) et [Draft Polylignes](Draft_Wire/fr.md). @@ -118,8 +120,5 @@ rot_list4 = Draft.rotate(list2, 4*angle2, center=cen, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rotate/fr diff --git a/wiki/translations/fr/Draft_SVG.md b/wiki/translations/fr/Draft_SVG.md index ec130ae446..4ee740af4c 100644 --- a/wiki/translations/fr/Draft_SVG.md +++ b/wiki/translations/fr/Draft_SVG.md @@ -1,10 +1,4 @@ # Draft SVG/fr - - - - - - {{TOCright}} ## Description @@ -94,3 +88,6 @@ importSVG.export(objects, "/home/user/Pictures/myfile.svg") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SVG/fr diff --git a/wiki/translations/fr/Draft_Scale.md b/wiki/translations/fr/Draft_Scale.md index 26ef01896e..d44020dad6 100644 --- a/wiki/translations/fr/Draft_Scale.md +++ b/wiki/translations/fr/Draft_Scale.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Surligner les sous éléments](Draft_SubelementHighlight/fr.md), [Draft Clone](Draft_Clone/fr.md) --- +# Draft Scale/fr + ## Description La commande **Draft Échelle** met à l\'échelle ou copie les objets sélectionnés autour d\'un point de base. En mode sous-élément, la commande met à l\'échelle les points et les arêtes sélectionnés de [Draft Ligne](Draft_Line/fr.md) et [Draft Polyligne](Draft_Wire/fr.md). @@ -113,8 +115,5 @@ wires = Draft.scale([wire1, wire2], scale2, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Scale/fr diff --git a/wiki/translations/fr/Draft_Select.md b/wiki/translations/fr/Draft_Select.md index ea9fec4a0f..0071844d94 100644 --- a/wiki/translations/fr/Draft_Select.md +++ b/wiki/translations/fr/Draft_Select.md @@ -1,2 +1,5 @@ # Draft Select/fr 1. REDIRECT [Selection\_methods/fr](Selection_methods/fr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Select/fr diff --git a/wiki/translations/fr/Draft_SelectGroup.md b/wiki/translations/fr/Draft_SelectGroup.md index b3d7474f90..b5d38008ae 100644 --- a/wiki/translations/fr/Draft_SelectGroup.md +++ b/wiki/translations/fr/Draft_SelectGroup.md @@ -7,6 +7,8 @@ SeeAlso:[Std Créer un groupe](Std_Group/fr.md), [Draft Ajouter au groupe](Draft_AddToGroup/fr.md), [Draft Ajouter au groupe de construction](Draft_AddConstruction/fr.md), [Draft Groupement automatique](Draft_AutoGroup/fr.md) --- +# Draft SelectGroup/fr + ## Description La commande **Draft Sélection groupée** sélectionne le contenu des objets [Draft Calques](Draft_Layer/fr.md), [Std Groupes](Std_Group/fr.md) ou des objets de type groupe [Arch](Arch_Workbench/fr.md). @@ -29,8 +31,5 @@ Actuellement, la commande ne fonctionne pas bien avec les calques et peut produi - Pour plus d\'informations sur l\'organisation de votre modèle, voir [Structure du document](Document_structure/fr.md) et [Tutoriel Arch](Arch_tutorial/fr#Organiser_votre_mod.C3.A8le.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectGroup/fr diff --git a/wiki/translations/fr/Draft_SelectPlane.md b/wiki/translations/fr/Draft_SelectPlane.md index 0cec487e3a..58a98c75a3 100644 --- a/wiki/translations/fr/Draft_SelectPlane.md +++ b/wiki/translations/fr/Draft_SelectPlane.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Objet Proxy pour plan de travail](Draft_WorkingPlaneProxy/fr.md) --- +# Draft SelectPlane/fr + ## Description La commande **Draft Sélectionner un plan** sélectionne le plan de travail Draft en cours. Il s\'agit du plan dans la [vue 3D](3D_view/fr.md) où les nouveaux objets [Draft](Draft_Workbench/fr.md) sont créés. Un nouveau plan de travail peut être basé sur l\'une des nombreuses [présélections](#Utilisation_avec_les_pr.C3.A9s.C3.A9lections.md) ou sur une sélection. La sélection peut être créée avant ([présélection](#Utilisation_avec_pr.C3.A9s.C3.A9lection.md)) ou après ([post-sélection](#Utilisation_avec_post-s.C3.A9lection.md)) le lancement de la commande. @@ -147,8 +149,5 @@ projection = my_plane.projectPoint(App.Vector(10, 15, 2)) print(projection) ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectPlane/fr diff --git a/wiki/translations/fr/Draft_SetStyle.md b/wiki/translations/fr/Draft_SetStyle.md index c732a1ffa8..18b6e1b669 100644 --- a/wiki/translations/fr/Draft_SetStyle.md +++ b/wiki/translations/fr/Draft_SetStyle.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Éditeur de styles d'annotations](Draft_AnnotationStyleEditor/fr.md), [Draft Appliquer le style](Draft_ApplyStyle/fr.md) --- +# Draft SetStyle/fr + ## Description La commande **Draft Définir le style** définit le style par défaut des nouveaux objets. @@ -139,8 +141,5 @@ Les préférences suivantes sont en jeu : - Afficher les unités : **Edition → Préférences... → Draft → Textes et dimensions → Paramètres de cotation → Afficher le suffixe de l'unité aux dimensions**. - Remplacement de l\'unité : **Edition → Préférences... → Draft → Textes et dimensions → Paramètres de cotation → Remplacer l'unité**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SetStyle/fr diff --git a/wiki/translations/fr/Draft_SetWorkingPlaneProxy.md b/wiki/translations/fr/Draft_SetWorkingPlaneProxy.md index d669bce611..31b8c137c6 100644 --- a/wiki/translations/fr/Draft_SetWorkingPlaneProxy.md +++ b/wiki/translations/fr/Draft_SetWorkingPlaneProxy.md @@ -1,2 +1,5 @@ # Draft SetWorkingPlaneProxy/fr 1. REDIRECT [Draft\_WorkingPlaneProxy/fr](Draft_WorkingPlaneProxy/fr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SetWorkingPlaneProxy/fr diff --git a/wiki/translations/fr/Draft_Shape2DView.md b/wiki/translations/fr/Draft_Shape2DView.md index 5fc290610f..5ad2b0fe19 100644 --- a/wiki/translations/fr/Draft_Shape2DView.md +++ b/wiki/translations/fr/Draft_Shape2DView.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/fr.md), [Arch](Arch_Workbench/fr.md) --- +# Draft Shape2DView/fr + ## Description La commande **Draft Vue 2D d\'une forme** crée des projections 2D à partir d\'objets sélectionnés, généralement des solides 3D ou des [Arch Plan de section](Arch_SectionPlane/fr.md). Les projections sont placées dans la [Vue 3D](3D_view/fr.md). @@ -142,8 +144,5 @@ shape3.ProjectionMode = "Individual Faces" doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Shape2DView/fr diff --git a/wiki/translations/fr/Draft_ShapeString.md b/wiki/translations/fr/Draft_ShapeString.md index b4ff9eddac..0716f08f5c 100644 --- a/wiki/translations/fr/Draft_ShapeString.md +++ b/wiki/translations/fr/Draft_ShapeString.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Texte](Draft_Text/fr.md), [Draft Etiquette](Draft_Label/fr.md), [Part Extrusion](Part_Extrude/fr.md) --- +# Draft ShapeString/fr + ## Description La commande **Draft Formes à partir de texte** crée une forme composée qui représente une chaîne de texte. Cette forme peut être utilisée pour créer des lettres en 3D avec la commande [Part Extrusion](Part_Extrude/fr.md). @@ -133,8 +135,5 @@ S3.Placement.Rotation = App.Rotation(zaxis, 180) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString/fr diff --git a/wiki/translations/fr/Draft_ShapeString_tutorial.md b/wiki/translations/fr/Draft_ShapeString_tutorial.md index fc8bc8e1a1..bfa0d593d8 100644 --- a/wiki/translations/fr/Draft_ShapeString_tutorial.md +++ b/wiki/translations/fr/Draft_ShapeString_tutorial.md @@ -1,5 +1,5 @@ # Draft ShapeString tutorial/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic= Product design |Level= Débutant |Time=30 minutes @@ -184,4 +184,7 @@ Voir le fil du forum [How to use ShapeStrings in PartDesign](https://forum.freec {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString tutorial/fr diff --git a/wiki/translations/fr/Draft_ShowSnapBar.md b/wiki/translations/fr/Draft_ShowSnapBar.md index 38b5937c05..9c3a84869b 100644 --- a/wiki/translations/fr/Draft_ShowSnapBar.md +++ b/wiki/translations/fr/Draft_ShowSnapBar.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md) --- +# Draft ShowSnapBar/fr + ## Description La commande **Draft Barre d\'aimantation** affiche la Draft barre d\'outils d\'aimantation. Certains utilisateurs ne veulent voir cette barre d\'outils que lorsqu\'une commande est active et ont modifié leurs [Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) en conséquence. Pour eux, cette commande est un moyen d\'afficher la barre d\'outils pour inspecter, et éventuellement changer, les [options d\'aimantation](Draft_Snap/fr.md). @@ -21,8 +23,5 @@ La commande * - Sélectionnez l\'option **Affichage → Barres d'outils → Draft Aimantation** dans le menu. - Cliquez le bouton droit de la souris sur un espace vide dans la [zone de la barre d\'outils](Interface/fr.md) et sélectionnez l\'option **Draft Aimantation** dans le menu qui apparaît. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShowSnapBar/fr diff --git a/wiki/translations/fr/Draft_Slope.md b/wiki/translations/fr/Draft_Slope.md index 0b6f008492..11cd72259f 100644 --- a/wiki/translations/fr/Draft_Slope.md +++ b/wiki/translations/fr/Draft_Slope.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Draft Slope/fr + ## Description La commande **Draft Pente** incline les [Draft Lignes](Draft_Line/fr.md) ou les [Draft Polylignes](Draft_Wire/fr.md) sélectionnés en augmentant, ou en diminuant, la coordonnée Z de tous les points après le premier. Elle peut également être utilisée pour aplanir les [Draft Polylignes](Draft_Wire/fr.md). Notez que la pente est relative au plan XY défini par {{PropertyData/fr|Placement}} des objets. @@ -29,8 +31,5 @@ Voir aussi : [Autogenerated API documentation](https://freecad.github.io/SourceD Il n\'existe pas de méthode Python pour incliner les objets. Pour émuler les résultats de la commande Draft Pente, la propriété `Points` des objets filaires doit être modifiée. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Slope/fr diff --git a/wiki/translations/fr/Draft_Snap.md b/wiki/translations/fr/Draft_Snap.md index 01baf83905..15de7bd1af 100644 --- a/wiki/translations/fr/Draft_Snap.md +++ b/wiki/translations/fr/Draft_Snap.md @@ -1,10 +1,4 @@ # Draft Snap/fr - - - - - - {{TOCright}} ## Description @@ -86,8 +80,5 @@ Remarquez qu\'après avoir modifié certaines préférences, vous devez redémar - La couleur des symboles d\'accrochage et les dimensions de [Draft Aimantation Dimensions](Draft_Snap_Dimensions/fr.md) peuvent être modifiées : **Edition → Préférences... → Draft → Paramètres visuels → Paramètres visuels → Couleur**. - Les raccourcis clavier à un seul caractère mentionnés peuvent être modifiés : **Edition → Préférences... → Draft → Paramètres de l'interface utilisateur → Raccourcis des commandes**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap/fr diff --git a/wiki/translations/fr/Draft_Snap_Angle.md b/wiki/translations/fr/Draft_Snap_Angle.md index 55359ac59c..62b7cfd25d 100644 --- a/wiki/translations/fr/Draft_Snap_Angle.md +++ b/wiki/translations/fr/Draft_Snap_Angle.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Verrouiller](Draft_Snap_Lock/fr.md) --- +# Draft Snap Angle/fr + ## Description L\'option **Draft Aimantation Angle** permet de s\'aimanter aux points cardinaux spéciaux sur les bords circulaires, pour des multiples de 30° et 45°. Les bords peuvent appartenir à des objets [Draft](Draft_Workbench/fr.md) ou [Arch](Arch_Workbench/fr.md) mais aussi à des objets créés avec d\'autres [ateliers](Workbenches/fr.md). @@ -34,8 +36,5 @@ Pour des informations générales sur l\'aimantation voir [Draft Aimantation](Dr Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Angle/fr diff --git a/wiki/translations/fr/Draft_Snap_Center.md b/wiki/translations/fr/Draft_Snap_Center.md index aea8aeb649..3042e16411 100644 --- a/wiki/translations/fr/Draft_Snap_Center.md +++ b/wiki/translations/fr/Draft_Snap_Center.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Verrouiller](Draft_Snap_Lock/fr.md) --- +# Draft Snap Center/fr + ## Description L\'option **Draft Aimantation Centre** permet de s\'aimanter au point central des faces et des arêtes circulaires et au point {{PropertyData/fr|Placement}} de [Draft Proxy pour plan de travail](Draft_WorkingPlaneProxy/fr.md) et [Arch Partie de bâtiment](Arch_BuildingPart/fr.md). Les faces et les arêtes peuvent appartenir à des objets [Draft](Draft_Workbench/fr.md) ou [Arch](Arch_Workbench/fr.md) mais aussi à des objets créés avec d\'autres [ateliers](Workbenches/fr.md). @@ -41,8 +43,5 @@ Pour des informations générales sur l\'aimantation voir [Draft Aimantation](Dr Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Center/fr diff --git a/wiki/translations/fr/Draft_Snap_Dimensions.md b/wiki/translations/fr/Draft_Snap_Dimensions.md index c273935f31..88cdfad444 100644 --- a/wiki/translations/fr/Draft_Snap_Dimensions.md +++ b/wiki/translations/fr/Draft_Snap_Dimensions.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Verrouiller](Draft_Snap_Lock/fr.md), [Draft Plan de travail](Draft_SelectPlane/fr.md) --- +# Draft Snap Dimensions/fr + ## Description L\'option **Draft Aimantation Dimensions** montre les dimensions X et Y temporaires. Elles affichent la distance X et Y entre le curseur et le point précédent dans le système de coordonnées du [Draft plan de travail](Draft_SelectPlane/fr.md). Les dimensions sont créées sur le [Draft plan de travail](Draft_SelectPlane/fr.md). @@ -31,8 +33,5 @@ Pour des informations générales sur l\'aimantation voir [Draft Aimantation](Dr Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Dimensions/fr diff --git a/wiki/translations/fr/Draft_Snap_Endpoint.md b/wiki/translations/fr/Draft_Snap_Endpoint.md index 357c6a300c..d2589c888a 100644 --- a/wiki/translations/fr/Draft_Snap_Endpoint.md +++ b/wiki/translations/fr/Draft_Snap_Endpoint.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Verrouiller](Draft_Snap_Lock/fr.md) --- +# Draft Snap Endpoint/fr + ## Description L\'option **Draft Aimantation Terminaison** permet de s\'aimanter aux extrémités des arêtes. Les arêtes peuvent appartenir à des objets [Draft](Draft_Workbench/fr.md) ou [Arch](Arch_Workbench/fr.md) mais aussi à des objets créés avec d\'autres [ateliers](Workbenches/fr.md). @@ -32,8 +34,5 @@ Pour des informations générales sur l\'aimantation voir [Draft Aimantation](Dr Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Endpoint/fr diff --git a/wiki/translations/fr/Draft_Snap_Extension.md b/wiki/translations/fr/Draft_Snap_Extension.md index 4ae43f8efd..7ab74c370b 100644 --- a/wiki/translations/fr/Draft_Snap_Extension.md +++ b/wiki/translations/fr/Draft_Snap_Extension.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Verrouiller](Draft_Snap_Lock/fr.md) --- +# Draft Snap Extension/fr + ## Description L\'option **Draft Aimantation Extension** permet de s\'aimanter à une ligne imaginaire qui s\'étend au-delà des extrémités des bords droits. Les bords peuvent appartenir à des objets [Draft](Draft_Workbench/fr.md) ou [Arch](Arch_Workbench/fr.md) mais aussi à des objets créés avec d\'autres [ateliers](Workbenches/fr.md). @@ -34,8 +36,5 @@ Pour des informations générales sur l\'aimantation voir [Draft Aimantation](Dr Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Extension/fr diff --git a/wiki/translations/fr/Draft_Snap_Grid.md b/wiki/translations/fr/Draft_Snap_Grid.md index cf53ce6198..6a7969e7cb 100644 --- a/wiki/translations/fr/Draft_Snap_Grid.md +++ b/wiki/translations/fr/Draft_Snap_Grid.md @@ -6,6 +6,8 @@ SeeAlso: [Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Verrouiller](Draft_Snap_Lock/fr.md), [Draft Basculer la grille](Draft_ToggleGrid/fr.md), [Draft Plan de travail](Draft_SelectPlane/fr.md) --- +# Draft Snap Grid/fr + ## Description L\'option **Draft Aimantation Grille** permet de s\'aimanter aux intersections des lignes de la grille. La grille ne peut être utilisée que si la préférence **Activer la grille** est sélectionnée. Voir [Préférences](#Pr.C3.A9f.C3.A9rences.md). @@ -35,8 +37,5 @@ Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - Pour utiliser la grille, sélectionnez : **Édition → Préférences... → Draft → Grille et aimantation → Grille → Activer la grille**. Après avoir modifié cette préférence, vous devez redémarrer FreeCAD. - D\'autres préférences de grille sont également disponibles : **Édition → Préférences... → Draft → Grille et aimantation → Grille**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Grid/fr diff --git a/wiki/translations/fr/Draft_Snap_Intersection.md b/wiki/translations/fr/Draft_Snap_Intersection.md index 740997cf07..399277a4c3 100644 --- a/wiki/translations/fr/Draft_Snap_Intersection.md +++ b/wiki/translations/fr/Draft_Snap_Intersection.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Verrouiller](Draft_Snap_Lock/fr.md) --- +# Draft Snap Intersection/fr + ## Description L\'option **Draft Aimantation Intersection** permet de s\'aimanter à l\'intersection de deux arêtes. Les arêtes peuvent appartenir à des objets [Draft](Draft_Workbench/fr.md) ou [Arch](Arch_Workbench/fr.md) mais aussi à des objets créés avec d\'autres [ateliers](Workbenches/fr.md). @@ -32,8 +34,5 @@ Pour des informations générales sur l\'aimantation voir [Draft Aimantation](Dr Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Intersection/fr diff --git a/wiki/translations/fr/Draft_Snap_Lock.md b/wiki/translations/fr/Draft_Snap_Lock.md index f84942ff8e..c23972837d 100644 --- a/wiki/translations/fr/Draft_Snap_Lock.md +++ b/wiki/translations/fr/Draft_Snap_Lock.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md) --- +# Draft Snap Lock/fr + ## Description La commande **Draft Aimantation Verrouiller** permet d\'activer ou de désactiver l\'aimantation de manière globale. @@ -19,8 +21,5 @@ Pour des informations générales sur l\'aimantation voir [Draft Aimantation](Dr - Appuyez sur le bouton **** dans le [Draft Widget aimantation](Draft_snap_widget/fr.md) et dans le menu sélectionnez l\'option ** Snap Lock**. - Utilisez le raccourci \"en commande\" : **S**. Ce raccourci ne peut être utilisé que si une commande est active et ne fonctionne pas pour toutes les commandes. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Lock/fr diff --git a/wiki/translations/fr/Draft_Snap_Midpoint.md b/wiki/translations/fr/Draft_Snap_Midpoint.md index fa74b2c03a..3b16fd702e 100644 --- a/wiki/translations/fr/Draft_Snap_Midpoint.md +++ b/wiki/translations/fr/Draft_Snap_Midpoint.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Verrouiller](Draft_Snap_Lock/fr.md) --- +# Draft Snap Midpoint/fr + ## Description L\'option **Draft Aimantation Milieu** permet de s\'aimanter au point milieu des arêtes droites et circulaires. Les arêtes peuvent appartenir à des objets [Draft](Draft_Workbench/fr.md) ou [Arch](Arch_Workbench/fr.md) mais aussi à des objets créés avec d\'autres [ateliers](Workbenches/fr.md). @@ -31,8 +33,5 @@ Pour des informations générales sur l\'aimantation voir [Draft Aimantation](Dr Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Midpoint/fr diff --git a/wiki/translations/fr/Draft_Snap_Near.md b/wiki/translations/fr/Draft_Snap_Near.md index d2cd2aa85f..19db94bffd 100644 --- a/wiki/translations/fr/Draft_Snap_Near.md +++ b/wiki/translations/fr/Draft_Snap_Near.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Verrouiller](Draft_Snap_Lock/fr.md) --- +# Draft Snap Near/fr + ## Description L\'option **Draft Aimantation Le plus proche** permet de s\'aimanter au point le plus proche sur les faces ou les arêtes. Les faces et les arêtes peuvent appartenir à des objets [Draft](Draft_Workbench/fr.md) ou [Arch](Arch_Workbench/fr.md) mais aussi à des objets créés avec d\'autres [ateliers](Workbenches/fr.md). @@ -36,8 +38,5 @@ Pour des informations générales sur l\'aimantation voir [Draft Aimantation](Dr Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Near/fr diff --git a/wiki/translations/fr/Draft_Snap_Ortho.md b/wiki/translations/fr/Draft_Snap_Ortho.md index 023c2c5960..d8081b6ea1 100644 --- a/wiki/translations/fr/Draft_Snap_Ortho.md +++ b/wiki/translations/fr/Draft_Snap_Ortho.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Verrouiller](Draft_Snap_Lock/fr.md) --- +# Draft Snap Ortho/fr + ## Description L\'option **Draft Aimantation Orthogonal** permet de s\'aimanter sur des lignes imaginaires qui croisent le point précédent à 0°, 45°, 90° et 135°. Les lignes et les angles sont relatifs au plan XY du système de coordonnées du [plan de travail](Draft_SelectPlane/fr.md). @@ -31,8 +33,5 @@ Pour des informations générales sur l\'aimantation voir [Draft Aimantation](Dr Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Ortho/fr diff --git a/wiki/translations/fr/Draft_Snap_Parallel.md b/wiki/translations/fr/Draft_Snap_Parallel.md index ca0d898cac..d6619332a4 100644 --- a/wiki/translations/fr/Draft_Snap_Parallel.md +++ b/wiki/translations/fr/Draft_Snap_Parallel.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Verrouiller](Draft_Snap_Lock/fr.md) --- +# Draft Snap Parallel/fr + ## Description L\'option *Draft Aimantation Parallèle* permet de s\'aimanter à une ligne imaginaire parallèle à des arêtes droites. Les arêtes peuvent appartenir à des objets [Draft](Draft_Workbench/fr.md) ou [Arch](Arch_Workbench/fr.md) mais aussi à des objets créés avec d\'autres [ateliers](Workbenches/fr.md). @@ -37,8 +39,5 @@ Pour des informations générales sur l\'aimantation voir [Draft Aimantation](Dr Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Parallel/fr diff --git a/wiki/translations/fr/Draft_Snap_Perpendicular.md b/wiki/translations/fr/Draft_Snap_Perpendicular.md index 5ee802e478..d0dd216c07 100644 --- a/wiki/translations/fr/Draft_Snap_Perpendicular.md +++ b/wiki/translations/fr/Draft_Snap_Perpendicular.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Verrouiller](Draft_Snap_Lock/fr.md) --- +# Draft Snap Perpendicular/fr + ## Description L\'option **Draft Aimantation Perpendiculaire** permet de s\'aimanter sur le point perpendiculaire des arêtes. Les arêtes peuvent appartenir à des objets [Draft](Draft_Workbench/fr.md) ou [Arch](Arch_Workbench/fr.md) mais aussi à des objets créés avec d\'autres [ateliers](Workbenches/fr.md). @@ -34,8 +36,5 @@ Pour des informations générales sur l\'aimantation voir [Draft Aimantation](Dr Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Perpendicular/fr diff --git a/wiki/translations/fr/Draft_Snap_Special.md b/wiki/translations/fr/Draft_Snap_Special.md index 3610418b0a..7180322e53 100644 --- a/wiki/translations/fr/Draft_Snap_Special.md +++ b/wiki/translations/fr/Draft_Snap_Special.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Verrouiller](Draft_Snap_Lock/fr.md) --- +# Draft Snap Special/fr + ## Description L\'option **Draft Aimantation Spécial** permet de s\'aimanter à des [points spéciaux](#Points_sp.C3.A9ciaux_accept.C3.A9s.md) définis par l\'objet. Les objets acceptés sont les [Arch Murs](Arch_Wall/fr.md), les [Arch Structures](Arch_Structure/fr.md) et les [Arch Equipements](Arch_Equipment/fr.md). @@ -39,8 +41,5 @@ Pour des informations générales sur l\'aimantation voir [Draft Aimantation](Dr Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Special/fr diff --git a/wiki/translations/fr/Draft_Snap_WorkingPlane.md b/wiki/translations/fr/Draft_Snap_WorkingPlane.md index f554c42bcd..311681d81a 100644 --- a/wiki/translations/fr/Draft_Snap_WorkingPlane.md +++ b/wiki/translations/fr/Draft_Snap_WorkingPlane.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Verrouiller](Draft_Snap_Lock/fr.md), [Draft Plan de travail](Draft_SelectPlane/fr.md) --- +# Draft Snap WorkingPlane/fr + ## Description L\'option **Draft Aimantation Plan de travail** projette le point d\'aimantation sur le [plan de travail](Draft_SelectPlane/fr.md) en cours. Elle ne peut être utilisée qu\'en combinaison avec une autre option d\'aimantation. @@ -33,8 +35,5 @@ Pour des informations générales sur l\'aimantation voir [Draft Aimantation](Dr Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap WorkingPlane/fr diff --git a/wiki/translations/fr/Draft_Split.md b/wiki/translations/fr/Draft_Split.md index 9217769337..2240614766 100644 --- a/wiki/translations/fr/Draft_Split.md +++ b/wiki/translations/fr/Draft_Split.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Joindre](Draft_Join/fr.md) --- +# Draft Split/fr + ## Description La commande **Draft Scinder** permet de diviser une [Draft Ligne](Draft_Line/fr.md) ou une [Draft Polyligne](Draft_Wire/fr.md) à un point ou un bord donné. Cette commande est la contrepartie de la commande [Draft Joindre](Draft_Join/fr.md). @@ -70,8 +72,5 @@ Draft.split(wire, p3, 1) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Split/fr diff --git a/wiki/translations/fr/Draft_Stretch.md b/wiki/translations/fr/Draft_Stretch.md index 7a88a0a25e..72572ebda3 100644 --- a/wiki/translations/fr/Draft_Stretch.md +++ b/wiki/translations/fr/Draft_Stretch.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Draft Stretch/fr + ## Description La commande **Draft Étirer** étire les objets en déplaçant les points sélectionnés. @@ -56,8 +58,5 @@ Voir aussi : [Autogenerated API documentation](https://freecad.github.io/SourceD Il n\'existe pas de méthode Python pour étirer les objets. Pour émuler les résultats de la commande Draft Étirer, les propriétés géométriques des objets doivent être modifiées. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Stretch/fr diff --git a/wiki/translations/fr/Draft_SubelementHighlight.md b/wiki/translations/fr/Draft_SubelementHighlight.md index bc00bcfef2..ae7b4f06a0 100644 --- a/wiki/translations/fr/Draft_SubelementHighlight.md +++ b/wiki/translations/fr/Draft_SubelementHighlight.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Déplacer](Draft_Move/fr.md), [Draft Rotation](Draft_Rotate/fr.md), [Draft Échelle](Draft_Scale/fr.md) --- +# Draft SubelementHighlight/fr + ## Description La commande **Draft Surligner les sous éléments** met temporairement en évidence les objets sélectionnés ou les objets de base des objets sélectionnés. Elle est destinée à être utilisée en conjonction avec le mode sous-élément de la commande [Draft Déplacer](Draft_Move/fr.md), la commande [Draft Rotation](Draft_Rotate/fr.md) ou la commande [Draft Scale](Draft_Scale/fr.md). Actuellement, le mode sous-élément ne fonctionne correctement que pour les [Draft Lignes](Draft_Line/fr.md) et les [Draft Polylignes](Draft_Wire/fr.md). @@ -36,8 +38,5 @@ La commande **Draft Texte** crée un texte de plusieurs lignes à un endroit donné. @@ -145,8 +147,5 @@ text3.ViewObject.FontSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Text/fr diff --git a/wiki/translations/fr/Draft_ToggleConstructionMode.md b/wiki/translations/fr/Draft_ToggleConstructionMode.md index a7a9cad78c..81d37618a7 100644 --- a/wiki/translations/fr/Draft_ToggleConstructionMode.md +++ b/wiki/translations/fr/Draft_ToggleConstructionMode.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Ajouter au groupe de construction](Draft_AddConstruction/fr.md), [Draft Groupe automatique](Draft_AutoGroup/fr.md) --- +# Draft ToggleConstructionMode/fr + ## Description La commande **Draft Basculer en mode construction** active ou désactive le mode de construction de Draft. Si le mode construction est activé, les nouveaux objets [Draft](Draft_Workbench/fr.md), à l\'exception des [Draft Points](Draft_Point/fr.md), sont placés dans un groupe dédié et reçoivent une couleur prédéfinie. Cette fonctionnalité est destinée à la géométrie de construction, souvent temporaire, utilisée pour fournir de nouveaux [points d\'accrochage](Draft_Snap/fr.md) pour la création d\'autres objets. Lorsque la géométrie de construction n\'est plus nécessaire, le groupe de construction peut facilement être [caché](Std_HideSelection/fr.md) ou [effacé](Std_Delete/fr.md). @@ -36,8 +38,5 @@ Dans la version 0.19 de FreeCAD, cette commande et la commande [Draft Ajouter au - Pour modifier l\'étiquette ({{Version/fr|0.20}}) du groupe de construction : **Edition → Préférences... → Draft → Paramètres généraux → Géométrie de construction → Nom du groupe de construction**. - Pour modifier la couleur utilisée : **Edition → Préférences... → Draft → Paramètres généraux → Géométrie de construction → Couleur de la géométrie de construction**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleConstructionMode/fr diff --git a/wiki/translations/fr/Draft_ToggleContinueMode.md b/wiki/translations/fr/Draft_ToggleContinueMode.md index 7586f08270..c357c8ee0b 100644 --- a/wiki/translations/fr/Draft_ToggleContinueMode.md +++ b/wiki/translations/fr/Draft_ToggleContinueMode.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/fr.md), [Arch](Arch_Workbench/fr.md) --- +# Draft ToggleContinueMode/fr + ## Description La commande **Draft Basculer le mode continuer** active ou désactive le mode continu. De nombreuses commandes de [Draft](Draft_Workbench/fr.md) et de [Arch](Arch_Workbench/fr.md) supportent ce mode. Si le mode continu est activé, elles redémarreront après avoir terminé. Le mode continu peut également être activé dans le panneau des tâches de ces commandes, de sorte qu\'en pratique, cette commande est rarement utilisée. @@ -18,8 +20,5 @@ La commande **Draft Mode d\'affichage** fait basculer la propriété {{PropertyView/fr|Display Mode}} des objets sélectionnés entre {{Value|Flat Lines}} et {{Value|Wireframe}}. Lorsque cette propriété est définie sur {{Value|Wireframe}}, seuls les sommets et les bords d\'un objet sont visibles, ce qui permet de visualiser et de sélectionner les objets situés derrière l\'objet. @@ -24,8 +26,5 @@ La commande Basculer le mode d'affichage de normal à filaire** dans le menu contextuel de la [Vue en arborescence](Tree_view/fr.md) ou de la [Vue 3D](3D_view/fr.md). - Utilisez le raccourci clavier : **Maj**+**Barre espace**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleDisplayMode/fr diff --git a/wiki/translations/fr/Draft_ToggleGrid.md b/wiki/translations/fr/Draft_ToggleGrid.md index 66f27ae13e..410b4eb06e 100644 --- a/wiki/translations/fr/Draft_ToggleGrid.md +++ b/wiki/translations/fr/Draft_ToggleGrid.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Aimantation](Draft_Snap/fr.md), [Draft Aimantation Grille](Draft_Snap_Grid/fr.md), [Draft Plan de travail](Draft_SelectPlane/fr.md) --- +# Draft ToggleGrid/fr + ## Description La commande **Draft Basculer la grille** permet d\'activer ou de désactiver la grille. La grille ne peut être utilisée que si la préférence **Activer la grille** est sélectionnée. Voir [Préférences](#Pr.C3.A9f.C3.A9rences.md). @@ -30,8 +32,5 @@ Voir [Draft Préférences](Draft_Snap/fr#Pr.C3.A9f.C3.A9rences.md) - Pour utiliser la grille, sélectionnez : **Édition → Préférences... → Draft → Grille et aimantation → Grille → Activer la grille**. Après avoir modifié cette préférence, vous devez redémarrer FreeCAD. - D\'autres préférences de grille sont également disponibles : **Édition → Préférences... → Draft → Grille et aimantation → Grille**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleGrid/fr diff --git a/wiki/translations/fr/Draft_Tray.md b/wiki/translations/fr/Draft_Tray.md index 659ece2522..f7bb319566 100644 --- a/wiki/translations/fr/Draft_Tray.md +++ b/wiki/translations/fr/Draft_Tray.md @@ -1,10 +1,4 @@ # Draft Tray/fr - - - - - - {{TOCright}} ## Description @@ -23,8 +17,5 @@ La **Draft Barre** permet de sélectionner le plan de travail, de définir les p - ![](images/Draft_tray_button_layer.png ) [Groupement automatique](Draft_AutoGroup/fr.md) : change le [Draft Calque](Draft_Layer/fr.md) actif ou, accessoirement, le [Std Groupe](Std_Group/fr.md) actif ou un objet de type groupe [Arch](Arch_Workbench/fr.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Tray/fr diff --git a/wiki/translations/fr/Draft_Trimex.md b/wiki/translations/fr/Draft_Trimex.md index 76b858947f..062041e374 100644 --- a/wiki/translations/fr/Draft_Trimex.md +++ b/wiki/translations/fr/Draft_Trimex.md @@ -8,6 +8,8 @@ SeeAlso:[Part Extrusion](Part_Extrude/fr.md) --- +# Draft Trimex/fr + ## Description La commande **Draft Ajuster ou prolonger** [Ajuste ou prolonge](#Ajuste_ou_prolonge.md) un objet sélectionné. Les intersections avec le bord d\'un autre objet peuvent être utilisées pour déterminer de nouveaux points d\'extrémité. La commande peut également être utilisée pour une [extrusion](#Extrusion.md) d\'une face, auquel cas elle crée un objet [Part Extrusion](Part_Extrude/fr.md). @@ -118,8 +120,5 @@ solid = Draft.extrude(rectangle, vector, solid=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Trimex/fr diff --git a/wiki/translations/fr/Draft_UndoLine.md b/wiki/translations/fr/Draft_UndoLine.md index aa0480a5c9..07aba9e219 100644 --- a/wiki/translations/fr/Draft_UndoLine.md +++ b/wiki/translations/fr/Draft_UndoLine.md @@ -1,2 +1,5 @@ # Draft UndoLine/fr 1. REDIRECT [Draft\_Wire/fr](Draft_Wire/fr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft UndoLine/fr diff --git a/wiki/translations/fr/Draft_Upgrade.md b/wiki/translations/fr/Draft_Upgrade.md index 9dcd253ce8..d6f21d26b2 100644 --- a/wiki/translations/fr/Draft_Upgrade.md +++ b/wiki/translations/fr/Draft_Upgrade.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Rétrograder](Draft_Downgrade/fr.md) --- +# Draft Upgrade/fr + ## Description La commande **Draft Mettre à niveau** met à niveau les objets sélectionnés. Le résultat dépend du nombre d\'objets sélectionnés et de leur type. La commande peut par exemple fusionner des éléments et créer des faces. Il vaut la peine d\'essayer d\'améliorer une sélection plusieurs fois pour voir si un meilleur résultat peut être obtenu. Voir l\'exemple dans l\'image. Notez que tous les objets ne peuvent pas être mis à jour. Cette commande est le pendant de la commande [Draft Rétrograder](Draft_Downgrade/fr.md). @@ -80,8 +82,5 @@ add_list5, delete_list5 = Draft.upgrade(face, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Upgrade/fr diff --git a/wiki/translations/fr/Draft_Wire.md b/wiki/translations/fr/Draft_Wire.md index ea309baa73..ca5dabef3f 100644 --- a/wiki/translations/fr/Draft_Wire.md +++ b/wiki/translations/fr/Draft_Wire.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Ligne](Draft_Line/fr.md), [Draft B-spline](Draft_BSpline/fr.md) --- +# Draft Wire/fr + ## Description La commande **Draft Polyligne** [crée](#Cr.C3.A9er.md) une polyligne, une séquence de plusieurs segments de ligne connectés. La commande peut aussi être utilisée pour [joint](#Joindre.md) des [Draft Lignes](Draft_Line/fr.md) et des Draft Polylignes. @@ -163,8 +165,5 @@ wire3 = Draft.make_wire([1.3*p3, p1, -1.7*p2], closed=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Wire/fr diff --git a/wiki/translations/fr/Draft_WireToBSpline.md b/wiki/translations/fr/Draft_WireToBSpline.md index a10a80ad7f..e066941b91 100644 --- a/wiki/translations/fr/Draft_WireToBSpline.md +++ b/wiki/translations/fr/Draft_WireToBSpline.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Polyligne](Draft_Wire/fr.md), [Draft B-spline](Draft_BSpline/fr.md) --- +# Draft WireToBSpline/fr + ## Description La commande **Draft Filaire vers B-spline** convertit les [Draft Polylignes](Draft_Wire/fr.md) en [Draft B-splines](Draft_BSpline/fr.md) et inversement. @@ -58,8 +60,5 @@ wire_from_spline = Draft.make_wire(points2) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WireToBSpline/fr diff --git a/wiki/translations/fr/Draft_Workbench.md b/wiki/translations/fr/Draft_Workbench.md index 7dc074c01c..d62c66405b 100644 --- a/wiki/translations/fr/Draft_Workbench.md +++ b/wiki/translations/fr/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/fr - - - - - -Icône de l\'atelier Draft +# Icône de l\'atelier Draft Draft Workbench/fr {{TOCright}} @@ -353,3 +347,6 @@ L\'inspection du code de ce module peut aider à comprendre l\'interface de prog [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/fr diff --git a/wiki/translations/fr/Draft_WorkingPlaneProxy.md b/wiki/translations/fr/Draft_WorkingPlaneProxy.md index aa3a022b6a..8b364b807c 100644 --- a/wiki/translations/fr/Draft_WorkingPlaneProxy.md +++ b/wiki/translations/fr/Draft_WorkingPlaneProxy.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Plan de travail](Draft_SelectPlane/fr.md) --- +# Draft WorkingPlaneProxy/fr + ## Description La commande **Draft Proxy de plan de travail** crée un proxy de plan de travail pour sauvegarder le [Draft Plan de travail](Draft_SelectPlane/fr.md) en cours. Un proxy proxy de plan de travail peut être utilisé pour restaurer rapidement un plan de travail. La position de la caméra et la visibilité des objets dans la [Vue 3D](3D_view/fr.md) sont également enregistrées dans le proxy de plan de travail et peuvent, [optionnellement](#Propri.C3.A9t.C3.A9s.md), être restaurées également. @@ -117,8 +119,5 @@ Gui.Snapper.setGrid() doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WorkingPlaneProxy/fr diff --git a/wiki/translations/fr/Draft_annotation_scale_widget.md b/wiki/translations/fr/Draft_annotation_scale_widget.md index e97a9a9f10..899c0f8600 100644 --- a/wiki/translations/fr/Draft_annotation_scale_widget.md +++ b/wiki/translations/fr/Draft_annotation_scale_widget.md @@ -1,10 +1,4 @@ # Draft annotation scale widget/fr - - - - - - {{TOCright}} ## Description @@ -36,8 +30,5 @@ Voir aussi : [Réglage des préférences](Preferences_Editor/fr.md) et [Draft Pr - Voir aussi: [Draft Définir le style](Draft_SetStyle/fr.md) et [Draft Appliquer le style](Draft_ApplyStyle/fr.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft annotation scale widget/fr diff --git a/wiki/translations/fr/Draft_snap_widget.md b/wiki/translations/fr/Draft_snap_widget.md index bc223eb377..d027e09c61 100644 --- a/wiki/translations/fr/Draft_snap_widget.md +++ b/wiki/translations/fr/Draft_snap_widget.md @@ -1,10 +1,4 @@ # Draft snap widget/fr - - - - - - {{TOCright}} ## Description @@ -25,8 +19,5 @@ Voir aussi : [Réglage des préférences](Preferences_Editor/fr.md) et [Draft Pr - Le widget aimantation de Draft est facultatif : **Edition → Préférences... → Draft → Paramètres de l'interface utilisateur → Barre d'état Draft → Widget d'aimantation Draft**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft snap widget/fr diff --git a/wiki/translations/fr/Draft_tutorial.md b/wiki/translations/fr/Draft_tutorial.md index ea16c93db2..345bdc8314 100644 --- a/wiki/translations/fr/Draft_tutorial.md +++ b/wiki/translations/fr/Draft_tutorial.md @@ -1,7 +1,4 @@ # Draft tutorial/fr - - - {{TutorialInfo/fr |Topic= Drafting |Level= Débutant @@ -224,4 +221,7 @@ L\'[atelier Draft](Draft_Workbench/fr.md) est à bien des égards similaire au [ {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft tutorial/fr diff --git a/wiki/translations/fr/Drawing.md b/wiki/translations/fr/Drawing.md index 82f9cd8692..3ae40db0e5 100644 --- a/wiki/translations/fr/Drawing.md +++ b/wiki/translations/fr/Drawing.md @@ -1,6 +1,4 @@ # Drawing/fr - - ## Introduction Dans FreeCAD, le mot \"[Drawing](Drawing/fr.md)\" est normalement utilisé pour faire référence à une projection 2D d\'un [modèle 3D](model/fr.md). Ceci est généralement créé avec l\'[atelier TechDraw](TechDraw_Workbench/fr.md). @@ -31,3 +29,6 @@ Cependant, lorsque plus de précision est requise, la distinction doit être fai }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Drawing/fr diff --git a/wiki/translations/fr/Drawing_API_example.md b/wiki/translations/fr/Drawing_API_example.md index a70c3bcac0..373b21908f 100644 --- a/wiki/translations/fr/Drawing_API_example.md +++ b/wiki/translations/fr/Drawing_API_example.md @@ -1,6 +1,4 @@ # Drawing API example/fr - - ## Introduction Le flux de travail de l\'interface utilisateur graphique pour l\' [atelier Drawing](Drawing_Workbench/fr.md) est limité. Utiliser un script pour l\'interface est plus intéressante. @@ -246,3 +244,6 @@ Vous pouvez procéder comme ci-dessus pour afficher les dimensions sur la page d }} {{Drawing Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing API example/fr diff --git a/wiki/translations/fr/Drawing_Annotation.md b/wiki/translations/fr/Drawing_Annotation.md index b85ff20404..d8aefefe0d 100644 --- a/wiki/translations/fr/Drawing_Annotation.md +++ b/wiki/translations/fr/Drawing_Annotation.md @@ -8,6 +8,8 @@ Raccourci:Aucun --- +# Drawing Annotation/fr +
@@ -42,4 +44,7 @@ Cette commande vous permet de placer un bloc de texte sur une [Feuille A3 paysag {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Annotation/fr diff --git a/wiki/translations/fr/Drawing_Clip.md b/wiki/translations/fr/Drawing_Clip.md index 02b2894dcd..b233499fe7 100644 --- a/wiki/translations/fr/Drawing_Clip.md +++ b/wiki/translations/fr/Drawing_Clip.md @@ -1,3 +1,4 @@ +# Drawing Clip/fr --- - GuiCommand:/fr Name:Drawing Clip Name/fr:Masque Workbenches:[[Drawing Workbench/fr Mise en plan]], Complet|MenuLocation :Mise en plan → Masque Raccourci : aucun--- @@ -43,4 +44,7 @@ Actualiser\]\] la vue si une vue de dessin n\'a pas été ouverte {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Clip/fr diff --git a/wiki/translations/fr/Drawing_Dimensioning_Addon.md b/wiki/translations/fr/Drawing_Dimensioning_Addon.md index bc29f4ca0a..725f6dd09b 100644 --- a/wiki/translations/fr/Drawing_Dimensioning_Addon.md +++ b/wiki/translations/fr/Drawing_Dimensioning_Addon.md @@ -1,5 +1,5 @@ # Drawing Dimensioning Addon/fr - **L'[atelier Drawing](Drawing_Workbench/fr.md) a été remplacé par l'[atelier TechDraw](TechDraw_Workbench/fr.md) dans FreeCAD 0.17. Bien que les deux ateliers soient inclus dans la v0.17, l'atelier Drawing n'est plus mis à jour et pourait être supprimé dans les futures versions de FreeCAD. Les utilisateurs sont invités à opter pour l'[atelier TechDraw](TechDraw_Workbench/fr.md), qui comprend également des outils de cotation et d'annotation.** +**L'[atelier Drawing](Drawing_Workbench/fr.md) a été remplacé par l'[atelier TechDraw](TechDraw_Workbench/fr.md) dans FreeCAD 0.17. Bien que les deux ateliers soient inclus dans la v0.17, l'atelier Drawing n'est plus mis à jour et pourait être supprimé dans les futures versions de FreeCAD. Les utilisateurs sont invités à opter pour l'[atelier TechDraw](TechDraw_Workbench/fr.md), qui comprend également des outils de cotation et d'annotation.** ## Introduction @@ -217,3 +217,6 @@ Tipps: - [Macros recipes](Macros_recipes.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Dimensioning Addon/fr diff --git a/wiki/translations/fr/Drawing_Documentation.md b/wiki/translations/fr/Drawing_Documentation.md index d0db82861b..2bf10de6f7 100644 --- a/wiki/translations/fr/Drawing_Documentation.md +++ b/wiki/translations/fr/Drawing_Documentation.md @@ -1,5 +1,5 @@ # Drawing Documentation/fr - Cette page documente le module de dessin de jcc242. Il inclut des fichiers et des fonctionnalités sur lesquels il travaille actuellement et qui peuvent ne pas encore être dans la branche principale. La source de ces fichiers est sur [son Github](https://github.com/jcc242/FreeCAD) mais faites attention car il est pour le moment très instable! +Cette page documente le module de dessin de jcc242. Il inclut des fichiers et des fonctionnalités sur lesquels il travaille actuellement et qui peuvent ne pas encore être dans la branche principale. La source de ces fichiers est sur [son Github](https://github.com/jcc242/FreeCAD) mais faites attention car il est pour le moment très instable! ## Base (Mod/Drawing) @@ -139,3 +139,6 @@ CanvasView est l\'objet QGraphicsScene et DrawingView traite une liste de Featur {{Drawing Tools navi}} [Category:Developer\_Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Documentation/fr diff --git a/wiki/translations/fr/Drawing_Landscape_A3.md b/wiki/translations/fr/Drawing_Landscape_A3.md index 9fe1baa26f..c20b6e7cf2 100644 --- a/wiki/translations/fr/Drawing_Landscape_A3.md +++ b/wiki/translations/fr/Drawing_Landscape_A3.md @@ -1,3 +1,4 @@ +# Drawing Landscape A3/fr --- - GuiCommand:/fr Name:Drawing Landscape A3 Name/fr:Feuille A3 Paysage Workbenches:[[Drawing Workbench/fr Mise en plan]], Complet|MenuLocation:Mise en plan → Insérer une nouvelle mise en plan → Feuille A3 paysage Raccourci:aucun--- @@ -34,4 +35,7 @@ Si la page ne s\'affiche pas, cliquer sur l\'icône Rafraîchir [Drawing](Drawing_Workbench.md) > Drawing Landscape A3/fr diff --git a/wiki/translations/fr/Drawing_Module.md b/wiki/translations/fr/Drawing_Module.md index 86e923cc73..64f7e6595c 100644 --- a/wiki/translations/fr/Drawing_Module.md +++ b/wiki/translations/fr/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/fr 1. REDIRECT [Drawing\_Workbench/fr](Drawing_Workbench/fr.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/fr diff --git a/wiki/translations/fr/Drawing_Open_SVG.md b/wiki/translations/fr/Drawing_Open_SVG.md index 39f7a6f663..7361f06e96 100644 --- a/wiki/translations/fr/Drawing_Open_SVG.md +++ b/wiki/translations/fr/Drawing_Open_SVG.md @@ -8,6 +8,8 @@ SeeAlso:[Sauvegarder Mise en Plan](Drawing_Save/fr.md) --- +# Drawing Open SVG/fr +
@@ -28,4 +30,7 @@ Cette commande ouvre une feuille de dessin précédemment sauvegardée au format {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Open SVG/fr diff --git a/wiki/translations/fr/Drawing_Openbrowser.md b/wiki/translations/fr/Drawing_Openbrowser.md index f71c8ee540..8741ba5c6b 100644 --- a/wiki/translations/fr/Drawing_Openbrowser.md +++ b/wiki/translations/fr/Drawing_Openbrowser.md @@ -1,3 +1,4 @@ +# Drawing Openbrowser/fr --- - GuiCommand:/fr Name:Drawing Openbrowser Name/fr:Vue Web Workbenches:[[Drawing Workbench/fr Dessin]], Complet|MenuLocation:Mise en plan → Vue Web Raccourci:aucun--- @@ -35,4 +36,7 @@ Cette commande vous permet d\'afficher une [Feuille A3 paysage](Drawing_Landscap {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Openbrowser/fr diff --git a/wiki/translations/fr/Drawing_Orthoviews.md b/wiki/translations/fr/Drawing_Orthoviews.md index cf151823da..7b2c785e3e 100644 --- a/wiki/translations/fr/Drawing_Orthoviews.md +++ b/wiki/translations/fr/Drawing_Orthoviews.md @@ -8,6 +8,8 @@ SeeAlso:[Paysage A3 Drawing](Drawing_Landscape_A3/fr.md) --- +# Drawing Orthoviews/fr + L\'outil Orthoviews insère un ensemble de projections orthographiques de l\'objet sélectionné dans la feuille de dessin active. Notez qu\'il ne crée pas un seul objet de vue sur la page. Au lieu de cela, une projection orthographique séparée sera créée pour chacune des vues sélectionnées dans les options. L\'outil Orthoviews crée toutes les projections orthographiques à l\'emplacement approprié pour la vue principale donnée. @@ -82,4 +84,7 @@ A ajouter. {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Orthoviews/fr diff --git a/wiki/translations/fr/Drawing_ProjectShape.md b/wiki/translations/fr/Drawing_ProjectShape.md index 76d6e80b76..4959104659 100644 --- a/wiki/translations/fr/Drawing_ProjectShape.md +++ b/wiki/translations/fr/Drawing_ProjectShape.md @@ -7,6 +7,8 @@ MenuLocation:Mise en plan → Projeter la forme... --- +# Drawing ProjectShape/fr + @@ -110,4 +112,7 @@ Cet outil crée une projection de l\'objet sélectionné (Source) dans la vue 3D {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing ProjectShape/fr diff --git a/wiki/translations/fr/Drawing_Save.md b/wiki/translations/fr/Drawing_Save.md index 728894a46b..96737bdd17 100644 --- a/wiki/translations/fr/Drawing_Save.md +++ b/wiki/translations/fr/Drawing_Save.md @@ -8,6 +8,8 @@ SeeAlso:[Ouvrir SVG](Drawing_Open_SVG/fr.md) --- +# Drawing Save/fr + Cet outil permet d\'exporter la feuille de dessin active au format de fichier vectoriel SVG (scalable vector graphics). Ce type de fichier peut être modifié avec un éditeur d\'images vectorielles tel qu\'[Inkscape](http://www.inkscape.org). Les fichiers SVG sont très répandus et peuvent être visionnés dans la plupart des navigateurs modernes et les visionneuses d\'image. Cela peut être pratique pour partager un dessin avec des gens qui n\'ont pas installé FreeCAD sur leur ordinateur. @@ -30,4 +32,7 @@ Les fichiers SVG sont très répandus et peuvent être visionnés dans la plupar {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Save/fr diff --git a/wiki/translations/fr/Drawing_SpreadsheetView.md b/wiki/translations/fr/Drawing_SpreadsheetView.md index 8bdab0d8eb..b12a1311a6 100644 --- a/wiki/translations/fr/Drawing_SpreadsheetView.md +++ b/wiki/translations/fr/Drawing_SpreadsheetView.md @@ -1,3 +1,4 @@ +# Drawing SpreadsheetView/fr --- - GuiCommand:/fr Name:Drawing SpreadsheetView Name/fr:Drawing SpreadsheetView Workbenches:[[Drawing_Workbench/fr Drawing]]|MenuLocation:Drawing → Spreadsheet View--- @@ -54,4 +55,7 @@ Cet outil vous permet de placer une vue d\'une [feuille de calcul](Spreadsheet_W {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing SpreadsheetView/fr diff --git a/wiki/translations/fr/Drawing_Symbol.md b/wiki/translations/fr/Drawing_Symbol.md index 49c82e3a28..d0eacd0658 100644 --- a/wiki/translations/fr/Drawing_Symbol.md +++ b/wiki/translations/fr/Drawing_Symbol.md @@ -1,3 +1,4 @@ +# Drawing Symbol/fr --- - GuiCommand:/fr Name:Drawing Symbol Name/fr:Symbole Workbenches:[[Drawing Workbench/fr drawing]], Complet|MenuLocation:Mise en Plan → Symbole Shortcut:Aucun--- @@ -29,4 +30,7 @@ Cette commande vous permet d\'ajouter le contenu d\'une image SVG sur une [ Feui {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Symbol/fr diff --git a/wiki/translations/fr/Drawing_Template_HowTo.md b/wiki/translations/fr/Drawing_Template_HowTo.md index 62bee61eec..06510c74ba 100644 --- a/wiki/translations/fr/Drawing_Template_HowTo.md +++ b/wiki/translations/fr/Drawing_Template_HowTo.md @@ -1,7 +1,4 @@ # Drawing Template HowTo/fr - - - **L'[atelier Drawing](Drawing_Workbench/fr.md) est devenu obsolète dans la version 0.17. Pensez à utiliser l'[atelier TechDraw](TechDraw_Workbench/fr.md) à la place.** @@ -242,4 +239,7 @@ Les deux outils utilisés dans ce tutoriel sont Inkscape et Kate. Ils peuvent ê {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Template HowTo/fr diff --git a/wiki/translations/fr/Drawing_View.md b/wiki/translations/fr/Drawing_View.md index 82199fc676..c83ab45f22 100644 --- a/wiki/translations/fr/Drawing_View.md +++ b/wiki/translations/fr/Drawing_View.md @@ -8,6 +8,8 @@ SeeAlso:[Feuille A3 Paysage](Drawing_Landscape_A3/fr.md) --- +# Drawing View/fr + Cet outil créé une nouvelle vue de l\'objet sélectionné dans la feuille de dessin active. Une feuille de dessin avec trois vues : face, dessus et isométrique. @@ -65,4 +67,7 @@ Si vous recherchez un basculement orthogonal en perspective dans la vue 3D, vér {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing View/fr diff --git a/wiki/translations/fr/Drawing_Workbench.md b/wiki/translations/fr/Drawing_Workbench.md index 6e47744fe4..3113db5fe4 100644 --- a/wiki/translations/fr/Drawing_Workbench.md +++ b/wiki/translations/fr/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/fr - - - **Le développement de l'[atelier Mise en plan](Drawing_Workbench/fr.md) s'est arrêté, et un nouvel atelier [Techdraw](TechDraw_Workbench/fr.md) visant à le remplacer sera introduit dans la version 0.17. Les deux ateliers seront fournis dans la version v0.17, mais l'atelier Mise en plan peut être supprimé dans les versions ultérieures.** Icône de l\'atelier Drawing @@ -84,3 +81,6 @@ Quelques notes sur le module de dessin sont ajoutés à la page [Documentation s }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/fr diff --git a/wiki/translations/fr/Drawing_templates.md b/wiki/translations/fr/Drawing_templates.md index 57c32d9927..738c8c9a79 100644 --- a/wiki/translations/fr/Drawing_templates.md +++ b/wiki/translations/fr/Drawing_templates.md @@ -1,7 +1,4 @@ # Drawing templates/fr - - - **The [Drawing Workbench](Drawing_Workbench.md) became obsolete in v0.17. Consider using the [TechDraw Workbench](TechDraw_Workbench.md) instead.** @@ -296,3 +293,6 @@ Les deux lignes que FreeCAD recherchera sont \"\$blocks\" et \"\$entities\". Ell }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing templates/fr diff --git a/wiki/translations/fr/Drawing_tutorial.md b/wiki/translations/fr/Drawing_tutorial.md index ee10f6ea87..ae02253c08 100644 --- a/wiki/translations/fr/Drawing_tutorial.md +++ b/wiki/translations/fr/Drawing_tutorial.md @@ -1,5 +1,5 @@ # Drawing tutorial/fr - **Le développement de [atelier Drawing](Drawing_Workbench/fr.md) s'est arrêté dans FreeCAD 0.16, et le nouvel [atelier TechDraw](TechDraw_Workbench/fr.md) visant à le remplacer a été introduit en v0.17. Les deux ateliers sont toujours fournis dans la version 0.17, mais l'atelier de dessin peut être supprimé dans les versions ultérieures.** +**Le développement de [atelier Drawing](Drawing_Workbench/fr.md) s'est arrêté dans FreeCAD 0.16, et le nouvel [atelier TechDraw](TechDraw_Workbench/fr.md) visant à le remplacer a été introduit en v0.17. Les deux ateliers sont toujours fournis dans la version 0.17, mais l'atelier de dessin peut être supprimé dans les versions ultérieures.** {{TutorialInfo/fr @@ -131,4 +131,7 @@ Nous avons terminé le travail de base pour [Atelier de mise en plan ](Drawing_W {{Tutorials navi -}} {{Drawing Tools navi}} +}} {{Drawing Tools navi}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing tutorial/fr diff --git a/wiki/translations/fr/Dxf_Importer_Install.md b/wiki/translations/fr/Dxf_Importer_Install.md index 7fcdce9355..988501ec47 100644 --- a/wiki/translations/fr/Dxf_Importer_Install.md +++ b/wiki/translations/fr/Dxf_Importer_Install.md @@ -1,7 +1,4 @@ # Dxf Importer Install/fr - - - {{TutorialInfo/fr |Topic=SampleClass |Level=Moyen @@ -189,3 +186,6 @@ Utilisation de Teigha. Teigha est une application complète et vous pouvez l\'ut ### Liens Tutoriel Vidéo [FreeCAD Tutorial 24 - DXF/DWG Import](https://www.youtube.com/watch?v=wHxTWuDhc3M) (en Allemand 17:16 minutes) + +--- +[documentation index](../README.md) > Dxf Importer Install/fr diff --git a/wiki/translations/fr/DynamicData_Workbench.md b/wiki/translations/fr/DynamicData_Workbench.md index ce15db3bb2..6164f90c07 100644 --- a/wiki/translations/fr/DynamicData_Workbench.md +++ b/wiki/translations/fr/DynamicData_Workbench.md @@ -1,7 +1,4 @@ -# DynamicData Workbench/fr - - -Icône atelier externe FreeCAD Données dynamiques +# Icône atelier externe FreeCAD Données dynamiques DynamicData Workbench/fr {{TOCright}} @@ -39,3 +36,6 @@ De nouveaux ateliers sont en développement, restez à l\'écoute ! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > DynamicData Workbench/fr diff --git a/wiki/translations/fr/EM_FHEquiv.md b/wiki/translations/fr/EM_FHEquiv.md index 8ee55b61e8..b51f642697 100644 --- a/wiki/translations/fr/EM_FHEquiv.md +++ b/wiki/translations/fr/EM_FHEquiv.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHEquiv/fr + ## Description L\'outil FHEquiv court-circuite deux objets FHNode. @@ -68,4 +70,7 @@ fhequiv = EM.makeFHEquiv(fhnode1, fhnode2) {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHEquiv/fr diff --git a/wiki/translations/fr/EM_FHInputFile.md b/wiki/translations/fr/EM_FHInputFile.md index 8ef544407c..608670654a 100644 --- a/wiki/translations/fr/EM_FHInputFile.md +++ b/wiki/translations/fr/EM_FHInputFile.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHInputFile/fr + ## Description L\'outil FHInputFile crée le fichier FastHenry d\'entrée basé sur les objets de l\'atelier Document EM. @@ -56,4 +58,7 @@ fhsolver = EM.createFHInputFile() {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHInputFile/fr diff --git a/wiki/translations/fr/EM_FHNode.md b/wiki/translations/fr/EM_FHNode.md index e075df197e..350fdbc2b2 100644 --- a/wiki/translations/fr/EM_FHNode.md +++ b/wiki/translations/fr/EM_FHNode.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHNode/fr + ## Description L\'outil FHNode insère un objet de nœud FastHenry. @@ -117,4 +119,7 @@ fhnode = EM.makeFHNode(X=1.0,Y=2.0,Z=0.0) {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHNode/fr diff --git a/wiki/translations/fr/EM_FHPath.md b/wiki/translations/fr/EM_FHPath.md index 55442d3fa9..33590d9c50 100644 --- a/wiki/translations/fr/EM_FHPath.md +++ b/wiki/translations/fr/EM_FHPath.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHPath/fr + ## Description L\'outil FHPath insère un objet FHPath, c\'est-à-dire un ensemble de segments FastHenry le long d\'un chemin. @@ -100,4 +102,7 @@ App.ActiveDocument.recompute() {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHPath/fr diff --git a/wiki/translations/fr/EM_FHPlane.md b/wiki/translations/fr/EM_FHPlane.md index 302ee8a75a..b5fe391e66 100644 --- a/wiki/translations/fr/EM_FHPlane.md +++ b/wiki/translations/fr/EM_FHPlane.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHPlane/fr + ## Description L\'outil FHPlane insère un objet plan conducteur uniforme FastHenry. @@ -118,4 +120,7 @@ fhplane = EM.makeFHPlane(rect, thickness=1.0, seg1=15, seg2=15, nodes=[fhnode1, {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHPlane/fr diff --git a/wiki/translations/fr/EM_FHPlaneAddRemoveNodeHole.md b/wiki/translations/fr/EM_FHPlaneAddRemoveNodeHole.md index 9e40fe8f41..6efdcda8ef 100644 --- a/wiki/translations/fr/EM_FHPlaneAddRemoveNodeHole.md +++ b/wiki/translations/fr/EM_FHPlaneAddRemoveNodeHole.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHPlaneAddRemoveNodeHole/fr + ## Description L\'outil FHPlaneAddRemoveNodeHole insère ou supprime des FHNodes ou FHPlaneHoles d\'un objet FHPlane. @@ -43,4 +45,7 @@ Pour ajouter ou supprimer des objets FHNode ou FHPlaneHole d\'un FHPlane via des {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHPlaneAddRemoveNodeHole/fr diff --git a/wiki/translations/fr/EM_FHPlaneHole.md b/wiki/translations/fr/EM_FHPlaneHole.md index 0e7a327d8d..9cb30af3b1 100644 --- a/wiki/translations/fr/EM_FHPlaneHole.md +++ b/wiki/translations/fr/EM_FHPlaneHole.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHPlaneHole/fr + ## Description L\'outil FHPlaneHole insère un objet de trou plan qui représente un trou plan conducteur uniforme FastHenry. @@ -138,4 +140,7 @@ fhhole = EM.makeFHPlaneHole(X=1.0,Y=1.0,Z=0.0,holetype="Rect",length=1.0,width=2 {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHPlaneHole/fr diff --git a/wiki/translations/fr/EM_FHPort.md b/wiki/translations/fr/EM_FHPort.md index edf69957ea..91e084612d 100644 --- a/wiki/translations/fr/EM_FHPort.md +++ b/wiki/translations/fr/EM_FHPort.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHPort/fr + ## Description L\'outil FHPort crée un port FastHenry entre deux objets FHNode. @@ -65,4 +67,7 @@ fhport = EM.makeFHPort(fhnode_p, fhnode_n) {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHPort/fr diff --git a/wiki/translations/fr/EM_FHSegment.md b/wiki/translations/fr/EM_FHSegment.md index 26209966ed..a7115f0825 100644 --- a/wiki/translations/fr/EM_FHSegment.md +++ b/wiki/translations/fr/EM_FHSegment.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHSegment/fr + ## Description L\'outil FHSegment insère un objet de segment FastHenry. @@ -107,4 +109,7 @@ fhsegment = EM.makeFHSegment(nodeStart=fhnode1, nodeEnd=fhnode2) {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHSegment/fr diff --git a/wiki/translations/fr/EM_FHSolver.md b/wiki/translations/fr/EM_FHSolver.md index 0df412032d..5babb6ae39 100644 --- a/wiki/translations/fr/EM_FHSolver.md +++ b/wiki/translations/fr/EM_FHSolver.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHSolver/fr + ## Description L\'outil FHSolver insère un objet FHSolver. @@ -99,4 +101,7 @@ fhsolver = EM.makeFHSolver() {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHSolver/fr diff --git a/wiki/translations/fr/EM_Workbench.md b/wiki/translations/fr/EM_Workbench.md index 50bce18359..9e9a69750e 100644 --- a/wiki/translations/fr/EM_Workbench.md +++ b/wiki/translations/fr/EM_Workbench.md @@ -1,5 +1,4 @@ -# EM Workbench/fr - +# EM Workbench/fr *align=center|Icône atelier externe FreeCAD Electromagnétique* ## Introduction @@ -80,3 +79,6 @@ De nouveaux ateliers sont en développement, restez à l\'écoute! }} [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > EM Workbench/fr diff --git a/wiki/translations/fr/Embedding_FreeCAD.md b/wiki/translations/fr/Embedding_FreeCAD.md index a60dd767fb..9cb546927e 100644 --- a/wiki/translations/fr/Embedding_FreeCAD.md +++ b/wiki/translations/fr/Embedding_FreeCAD.md @@ -1,7 +1,4 @@ # Embedding FreeCAD/fr - - - {{TOCright}} ## Introduction @@ -138,3 +135,6 @@ Puisque le module Python de FreeCAD est compilé à partir de C ++ (plutôt que }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCAD/fr diff --git a/wiki/translations/fr/Embedding_FreeCADGui.md b/wiki/translations/fr/Embedding_FreeCADGui.md index db5257be6a..6e322e08ae 100644 --- a/wiki/translations/fr/Embedding_FreeCADGui.md +++ b/wiki/translations/fr/Embedding_FreeCADGui.md @@ -1,6 +1,4 @@ # Embedding FreeCADGui/fr - - ## Introduction Il est possible d\'[importer le module FreeCAD](Embedding_FreeCAD/fr.md) dans une application [Python](Python/fr.md) et d\'utiliser tous les outils de l\'application hôte. Mais l\'interface graphique pour utilisateur FreeCAD (GUI) peut également être importée en tant que module Python. Normalement, vous pouvez importer l\'interface complète dans son ensemble, et non pas des portions de celui-ci. C\'est parce que le système d\'interface FreeCAD n\'est pas seulement faite de widgets indépendants et de barres d\'outils mais est une construction complexe où plusieurs composants invisibles (tels que le système de sélection, etc.) sont nécessaires pour que la [vue 3D](3D_view/fr.md) puisse fonctionner. @@ -490,3 +488,6 @@ Dans le code source, il existe des exemples d\'intégration de FreeCAD avec dive }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCADGui/fr diff --git a/wiki/translations/fr/Engine_Block_Tutorial.md b/wiki/translations/fr/Engine_Block_Tutorial.md index 96bb28d38b..cf6de854fb 100644 --- a/wiki/translations/fr/Engine_Block_Tutorial.md +++ b/wiki/translations/fr/Engine_Block_Tutorial.md @@ -1,5 +1,5 @@ # Engine Block Tutorial/fr - } {{TutorialInfo/fr +} {{TutorialInfo/fr |Topic= Atelier Part |Level= Débutant |Time= 1 heure @@ -172,6 +172,5 @@ Maintenant que nous avons des objets 3D pour les trous et la forme extérieure, Votre objet final devrait ressembler à l\'image sur la droite. - - - +--- +[documentation index](../README.md) > Engine Block Tutorial/fr diff --git a/wiki/translations/fr/ExplodedAssembly_Workbench.md b/wiki/translations/fr/ExplodedAssembly_Workbench.md index ac80bf88aa..0bb855d517 100644 --- a/wiki/translations/fr/ExplodedAssembly_Workbench.md +++ b/wiki/translations/fr/ExplodedAssembly_Workbench.md @@ -1,6 +1,4 @@ # ExplodedAssembly Workbench/fr - - ## Introduction @@ -67,3 +65,6 @@ C\'est tout, la prochaine fois que vous lancerez FreeCAD, l\'atelier devrait êt [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > ExplodedAssembly Workbench/fr diff --git a/wiki/translations/fr/Export_to_STL_or_OBJ.md b/wiki/translations/fr/Export_to_STL_or_OBJ.md index 6369fa54cf..c5984e3423 100644 --- a/wiki/translations/fr/Export_to_STL_or_OBJ.md +++ b/wiki/translations/fr/Export_to_STL_or_OBJ.md @@ -1,7 +1,4 @@ # Export to STL or OBJ/fr - - - {{TutorialInfo/fr |Topic=Exportation de fichier STL ou OBJ |Level=Débutant @@ -61,3 +58,6 @@ La méthode 2 doit être préférée. Parmi les raisons: [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Export to STL or OBJ/fr diff --git a/wiki/translations/fr/Expressions.md b/wiki/translations/fr/Expressions.md index d39837671c..f9caa86d97 100644 --- a/wiki/translations/fr/Expressions.md +++ b/wiki/translations/fr/Expressions.md @@ -1,5 +1,5 @@ # Expressions/fr - {{TOCright}} +{{TOCright}} ## Vue d\'ensemble @@ -529,3 +529,6 @@ Bien sûr, vous pouvez charger les documents correspondants à tout moment pour }} [Category:Spreadsheet](Category:Spreadsheet.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Category:Spreadsheet.md) > Expressions/fr diff --git a/wiki/translations/fr/Extend_FEM_Module.md b/wiki/translations/fr/Extend_FEM_Module.md index 7fb34432fc..466a941aa2 100644 --- a/wiki/translations/fr/Extend_FEM_Module.md +++ b/wiki/translations/fr/Extend_FEM_Module.md @@ -1,7 +1,4 @@ # Extend FEM Module/fr - - - {{TutorialInfo/fr |Topic=FEM |Level=Intermédiaire @@ -133,3 +130,6 @@ Les contraintes définissent les conditions aux limites du problème à résoudr L\'ajout de nouvelles contraintes est assez simple. Pour les nouveaux arrivants, il existe un tutoriel:[Tutoriel pour ajouter des contraintes FEM](Add_FEM_Constraint_Tutorial/fr.md). [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Extend FEM Module/fr diff --git a/wiki/translations/fr/External_workbench_list.md b/wiki/translations/fr/External_workbench_list.md index 936a947cef..48fcdcc321 100644 --- a/wiki/translations/fr/External_workbench_list.md +++ b/wiki/translations/fr/External_workbench_list.md @@ -1,2 +1,5 @@ # External workbench list/fr 1. REDIRECT [External\_workbenches/fr](External_workbenches/fr.md) + +--- +[documentation index](../README.md) > External workbench list/fr diff --git a/wiki/translations/fr/External_workbenches.md b/wiki/translations/fr/External_workbenches.md index f8b1cee9d9..4a46a6a761 100644 --- a/wiki/translations/fr/External_workbenches.md +++ b/wiki/translations/fr/External_workbenches.md @@ -1,10 +1,4 @@ # External workbenches/fr - - - - - - {{TOCright}} ## Introduction @@ -246,3 +240,6 @@ Voir la page du wiki pour plus d\'informations [Traduction d\'un atelier externe [Category:Addons](Category:Addons.md) [\*](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > External workbenches/fr diff --git a/wiki/translations/fr/Extra_python_modules.md b/wiki/translations/fr/Extra_python_modules.md index c2aa3f1fa3..1ebd5dd19f 100644 --- a/wiki/translations/fr/Extra_python_modules.md +++ b/wiki/translations/fr/Extra_python_modules.md @@ -1,10 +1,4 @@ # Extra python modules/fr - - - - - - {{TOCright}} ## Présentation @@ -745,3 +739,6 @@ utils = LazyLoader('PathScripts', globals(), 'PathScripts.PathUtils') [Category:Python Code](Category:Python_Code.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > Extra python modules/fr diff --git a/wiki/translations/fr/FAQ.md b/wiki/translations/fr/FAQ.md index 898e5c6cd4..66d24fb705 100644 --- a/wiki/translations/fr/FAQ.md +++ b/wiki/translations/fr/FAQ.md @@ -1,2 +1,5 @@ # FAQ/fr 1. REDIRECT [Frequently\_asked\_questions/fr](Frequently_asked_questions/fr.md) + +--- +[documentation index](../README.md) > FAQ/fr diff --git a/wiki/translations/fr/FCGear_BevelGear.md b/wiki/translations/fr/FCGear_BevelGear.md index bf3f780e53..2c072ad713 100644 --- a/wiki/translations/fr/FCGear_BevelGear.md +++ b/wiki/translations/fr/FCGear_BevelGear.md @@ -7,6 +7,8 @@ Version:v0.16 --- +# FCGear BevelGear/fr + ## Description Les engrenages coniques ne sont pas utilisés aussi souvent que les autres types d\'engrenages, en partie à cause du bruit qu\'ils génèrent. Mais ils sont encore utilisés dans certains secteurs, tels que les emballages alimentaires et les aliments en conserve, les équipements de jardin et de pelouse, les machines telles que les perceuses et les broyeurs, les systèmes de compression pour le marché du gaz et du pétrole et les vannes de régulation de débit. @@ -106,3 +108,6 @@ Angle du cône de référence substantiel \[TECH.\] [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear BevelGear/fr diff --git a/wiki/translations/fr/FCGear_CrownGear.md b/wiki/translations/fr/FCGear_CrownGear.md index 06ee4680db..56881a54c0 100644 --- a/wiki/translations/fr/FCGear_CrownGear.md +++ b/wiki/translations/fr/FCGear_CrownGear.md @@ -8,6 +8,8 @@ SeeAlso:[FCGear Engrenage à développante](FCGear_InvoluteGear/fr.md) --- +# FCGear CrownGear/fr + ## Description La roue de la couronne ressemble à une crémaillère incurvée en forme d\'anneau. L\'angle de pression décroît continuellement du diamètre extérieur vers le diamètre intérieur. Ainsi, la vitesse périphérique variable au niveau de la couronne est compensée par la vitesse périphérique constante du pignon. Les dents externes pointues et les flancs de dents raides sur le diamètre intérieur limitent la largeur de dent utilisable. Les engrenages couronnes atteignent des rendements similaires à ceux des engrenages droits. Une couronne dentée peut entraîner plusieurs pignons. @@ -118,3 +120,6 @@ Aucune limitation n\'est connue. [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear CrownGear/fr diff --git a/wiki/translations/fr/FCGear_CycloideGear.md b/wiki/translations/fr/FCGear_CycloideGear.md index 7f99373654..0be6aefad1 100644 --- a/wiki/translations/fr/FCGear_CycloideGear.md +++ b/wiki/translations/fr/FCGear_CycloideGear.md @@ -9,6 +9,8 @@ SeeAlso:[FCGear Engrenage à développante](FCGear_InvoluteGear/fr.md) --- +# FCGear CycloideGear/fr + ## Description Les engrenages cycloïdaux sont très sensibles à un ajustement inexact de la distance centrale, ce qui entraîne alors une modification du rapport de transmission. Pour ces raisons, les engrenages cycloïdaux sont peu présents dans la construction mécanique mais ne sont utilisés que dans des cas particuliers tels que dans l\'industrie horlogère, pour les compresseurs mécaniques ou pour l\'entraînement de crémaillères. @@ -95,3 +97,6 @@ Pour plus d\'informations voir [Addons](Category:Addons.md) > FCGear CycloideGear/fr diff --git a/wiki/translations/fr/FCGear_InvoluteGear.md b/wiki/translations/fr/FCGear_InvoluteGear.md index 3c84f2e2b4..4c45e47a30 100644 --- a/wiki/translations/fr/FCGear_InvoluteGear.md +++ b/wiki/translations/fr/FCGear_InvoluteGear.md @@ -9,6 +9,8 @@ SeeAlso:[FCGear Engrenage cycloïde](FCGear_CycloideGear/fr.md) --- +# FCGear InvoluteGear/fr + ## Description En raison du rapport d\'engrènement favorable et de la production relativement simple, l\'engrenage à développante est la forme de dent la plus courante en génie mécanique. Les roues dentées se trouvent partout où le mouvement et la force doivent être transférés d\'une pièce à l\'autre. Par exemple, ils peuvent être trouvés dans des machines, des voitures, des montres ou des appareils électroménagers. Le mouvement est souvent transféré directement d\'une roue dentée à l\'autre, mais parfois aussi via une chaîne. De plus, le sens de rotation peut être modifié. Il est également possible de changer un mouvement radial en un mouvement linéaire via un engrenage à crémaillère ( [FCGear Engrenage à crémaillère](FCGear_InvoluteRack/fr.md)). @@ -232,3 +234,6 @@ Gui.SendMsgToActiveView("ViewFit") ``` [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear InvoluteGear/fr diff --git a/wiki/translations/fr/FCGear_InvoluteRack.md b/wiki/translations/fr/FCGear_InvoluteRack.md index 3c807f35c0..433ab67eb4 100644 --- a/wiki/translations/fr/FCGear_InvoluteRack.md +++ b/wiki/translations/fr/FCGear_InvoluteRack.md @@ -8,6 +8,8 @@ SeeAlso:[FCGear Engrenage à développante](FCGear_InvoluteGear/fr.md) --- +# FCGear InvoluteRack/fr + ## Description Les crémaillères sont utilisées pour convertir un mouvement rotatif en un mouvement linéaire ou vice versa. Les exemples suivants présentent les différentes applications: @@ -117,3 +119,6 @@ Gui.SendMsgToActiveView("ViewFit") ``` [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear InvoluteRack/fr diff --git a/wiki/translations/fr/FCGear_LanternGear.md b/wiki/translations/fr/FCGear_LanternGear.md index 8af420d1ec..17ec29c617 100644 --- a/wiki/translations/fr/FCGear_LanternGear.md +++ b/wiki/translations/fr/FCGear_LanternGear.md @@ -7,6 +7,8 @@ Version:v0.16 --- +# FCGear LanternGear/fr + ## Description La denture du pignon lanterne a une forme spéciale de denture cycloïdale dans laquelle le cercle de roulement et le cercle primitif sont de taille égale. De plus, les dents de la plus grande roue d\'une boîte de vitesses sont remplacées par des cylindres. La petite roue est dotée d\'un engrenage cycloïde. Il en résulte un engrenage ponctuel unilatéral. Les engrenages du pignon lanterne ne peuvent être que des dents droites. @@ -79,3 +81,6 @@ Les limitations ne sont pas encore connues. [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear LanternGear/fr diff --git a/wiki/translations/fr/FCGear_TimingGear.md b/wiki/translations/fr/FCGear_TimingGear.md index 14c7a02c14..a1612748d6 100644 --- a/wiki/translations/fr/FCGear_TimingGear.md +++ b/wiki/translations/fr/FCGear_TimingGear.md @@ -7,6 +7,8 @@ Version:v0.16 --- +# FCGear TimingGear/fr + ## Description Le but des engrenages de distribution est de permettre à l\'arbre à cames et au vilebrequin de faire tourner la chaîne de distribution. Le vilebrequin tourne pour déplacer les pistons de haut en bas à l\'intérieur des cylindres. L\'arbre à cames tourne pour permettre aux soupapes d\'admission et d\'échappement des cylindres de s\'ouvrir et de se fermer. Ces composants sont importants pour le bon calage du moteur. @@ -87,3 +89,6 @@ Les limitations ne sont pas encore connues. [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear TimingGear/fr diff --git a/wiki/translations/fr/FCGear_Workbench.md b/wiki/translations/fr/FCGear_Workbench.md index 62cd7798d7..a93bbe4040 100644 --- a/wiki/translations/fr/FCGear_Workbench.md +++ b/wiki/translations/fr/FCGear_Workbench.md @@ -1,5 +1,4 @@ -# FCGear Workbench/fr - Icône de l\'atelier externe FCGear +# Icône de l\'atelier externe FCGear FCGear Workbench/fr ## Introduction @@ -163,3 +162,6 @@ Voir les instructions pour Linux ci-dessus [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) + +--- +[documentation index](../README.md) > FCGear Workbench/fr diff --git a/wiki/translations/fr/FCGear_WormGear.md b/wiki/translations/fr/FCGear_WormGear.md index 4709b83d51..8d54c46492 100644 --- a/wiki/translations/fr/FCGear_WormGear.md +++ b/wiki/translations/fr/FCGear_WormGear.md @@ -9,6 +9,8 @@ SeeAlso:[PartDesign Engrenage droit à développante](PartDesign_InvoluteGear/fr.md) --- +# FCGear WormGear/fr + ## Description La vis sans fin peut être considérée comme un cas particulier d\'engrenage hélicoïdal. Imaginez qu\'il n\'y ait qu\'une seule dent sur un engrenage droit. Augmentez maintenant l\'angle d\'hélice de telle sorte que la dent s\'enroule plusieurs fois autour de l\'engrenage droit avant d\'émerger du côté opposé. Le résultat serait une vis sans fin à un seul filet. @@ -108,3 +110,6 @@ La roue à vis sans fin doit être conçue manuellement. À cet effet, **FCGear [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear WormGear/fr diff --git a/wiki/translations/fr/FEM_Analysis.md b/wiki/translations/fr/FEM_Analysis.md index fd911430a0..44204f601b 100644 --- a/wiki/translations/fr/FEM_Analysis.md +++ b/wiki/translations/fr/FEM_Analysis.md @@ -8,6 +8,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM Analysis/fr + ## Description Le module FEM ([Méthode d\'éléments finis](https://fr.wikipedia.org/wiki/M%C3%A9thode_des_%C3%A9l%C3%A9ments_finis)) peut être considéré comme un conteneur qui contient tous les composants utiles servants à l\'analyse d\'éléments finis. Il est nécessaire de posséder un conteneur qui détient tous les objets nécessaires pour l\'analyse. Au moins un des objets suivants est nécessaire pour une analyse mécanique: @@ -83,4 +85,7 @@ App.ActiveDocument.MechanicalAnalysis.Member = member {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Analysis/fr diff --git a/wiki/translations/fr/FEM_Beginner_tutorial.md b/wiki/translations/fr/FEM_Beginner_tutorial.md index acf5180dee..c41e4b7495 100644 --- a/wiki/translations/fr/FEM_Beginner_tutorial.md +++ b/wiki/translations/fr/FEM_Beginner_tutorial.md @@ -1,5 +1,5 @@ # FEM Beginner tutorial/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic= Tutoriel FEM Débutant |Level= Débutant |Time= @@ -40,7 +40,5 @@ A faire A faire - - - - +--- +[documentation index](../README.md) > FEM Beginner tutorial/fr diff --git a/wiki/translations/fr/FEM_CalculiX.md b/wiki/translations/fr/FEM_CalculiX.md index 81e5cda7e8..99453898c0 100644 --- a/wiki/translations/fr/FEM_CalculiX.md +++ b/wiki/translations/fr/FEM_CalculiX.md @@ -1,5 +1,5 @@ # FEM CalculiX/fr - {{TOCright}} +{{TOCright}} ## Introduction @@ -72,3 +72,6 @@ Les forces de réaction se trouvent dans le fichier ccx\_dat\_file qui contient }} [Category:Poweruser\_Documentation](Category:Poweruser_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Poweruser_Documentation](Category:Poweruser_Documentation.md) > FEM CalculiX/fr diff --git a/wiki/translations/fr/FEM_CalculiX_Cantilever_3D.md b/wiki/translations/fr/FEM_CalculiX_Cantilever_3D.md index 3185850bed..638bf3a209 100644 --- a/wiki/translations/fr/FEM_CalculiX_Cantilever_3D.md +++ b/wiki/translations/fr/FEM_CalculiX_Cantilever_3D.md @@ -1,7 +1,4 @@ # FEM CalculiX Cantilever 3D/fr - - - {{TutorialInfo/fr |Topic=Analyse par éléments finis |Level=Débutant @@ -131,4 +128,7 @@ Cet exemple est destiné à montrer à quoi ressemble une simple analyse par él {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM CalculiX Cantilever 3D/fr diff --git a/wiki/translations/fr/FEM_ClippingPlaneAdd.md b/wiki/translations/fr/FEM_ClippingPlaneAdd.md index ce0eddbf9d..f42c03a9d6 100644 --- a/wiki/translations/fr/FEM_ClippingPlaneAdd.md +++ b/wiki/translations/fr/FEM_ClippingPlaneAdd.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ClippingPlaneAdd/fr + ## Description A faire @@ -19,4 +21,7 @@ A faire {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ClippingPlaneAdd/fr diff --git a/wiki/translations/fr/FEM_ClippingPlaneRemoveAll.md b/wiki/translations/fr/FEM_ClippingPlaneRemoveAll.md index 254692661d..1f078e7e8b 100644 --- a/wiki/translations/fr/FEM_ClippingPlaneRemoveAll.md +++ b/wiki/translations/fr/FEM_ClippingPlaneRemoveAll.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ClippingPlaneRemoveAll/fr + ## Description A faire @@ -19,4 +21,7 @@ A faire {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ClippingPlaneRemoveAll/fr diff --git a/wiki/translations/fr/FEM_Concrete.md b/wiki/translations/fr/FEM_Concrete.md index 159ff660df..2400e06d37 100644 --- a/wiki/translations/fr/FEM_Concrete.md +++ b/wiki/translations/fr/FEM_Concrete.md @@ -1,5 +1,5 @@ # FEM Concrete/fr - Cette page rassemble quelques sujets intéressants en ce qui concerne les structures en béton: +Cette page rassemble quelques sujets intéressants en ce qui concerne les structures en béton: - [Comment utiliser le post-traitement du pipeline (mai 2018)](https://forum.freecadweb.org/viewtopic.php?f=18&t=28635) - [Tracé du rapport de renforcement du béton (mai 2018)](https://forum.freecadweb.org/viewtopic.php?f=18&t=28821) @@ -15,4 +15,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Concrete/fr diff --git a/wiki/translations/fr/FEM_ConstantVacuumPermittivity.md b/wiki/translations/fr/FEM_ConstantVacuumPermittivity.md index 52cf7fc3ed..37b4b725b5 100644 --- a/wiki/translations/fr/FEM_ConstantVacuumPermittivity.md +++ b/wiki/translations/fr/FEM_ConstantVacuumPermittivity.md @@ -8,6 +8,8 @@ SeeAlso: --- +# FEM ConstantVacuumPermittivity/fr + ## Description ## Utilisation @@ -18,4 +20,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstantVacuumPermittivity/fr diff --git a/wiki/translations/fr/FEM_ConstraintBearing.md b/wiki/translations/fr/FEM_ConstraintBearing.md index 040512ad1a..8a003c99ec 100644 --- a/wiki/translations/fr/FEM_ConstraintBearing.md +++ b/wiki/translations/fr/FEM_ConstraintBearing.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Contrainte d'engrenage](FEM_ConstraintGear/fr.md), [FEM Contrainte de poulie](FEM_ConstraintPulley/fr.md) --- +# FEM ConstraintBearing/fr + ## Description non supporté par l\'interface CalculiX ! @@ -25,4 +27,7 @@ non supporté par l\'interface CalculiX ! {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintBearing/fr diff --git a/wiki/translations/fr/FEM_ConstraintBodyHeatSource.md b/wiki/translations/fr/FEM_ConstraintBodyHeatSource.md index 4e8e201cb5..b3f572238b 100644 --- a/wiki/translations/fr/FEM_ConstraintBodyHeatSource.md +++ b/wiki/translations/fr/FEM_ConstraintBodyHeatSource.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ConstraintBodyHeatSource/fr + ## Description Définit une température interne en W/kg (et non en J/m³). @@ -29,4 +31,7 @@ Définit une température interne en W/kg (et non en J/m³). {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintBodyHeatSource/fr diff --git a/wiki/translations/fr/FEM_ConstraintContact.md b/wiki/translations/fr/FEM_ConstraintContact.md index 5fe6a7dcd1..e420478f1f 100644 --- a/wiki/translations/fr/FEM_ConstraintContact.md +++ b/wiki/translations/fr/FEM_ConstraintContact.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Contrainte fixe](FEM_ConstraintFixed/fr.md) --- +# FEM ConstraintContact/fr + ## Description Crée une contrainte FEM de contact entre deux surfaces. @@ -60,4 +62,7 @@ Crée une contrainte FEM de contact entre deux surfaces. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintContact/fr diff --git a/wiki/translations/fr/FEM_ConstraintDisplacement.md b/wiki/translations/fr/FEM_ConstraintDisplacement.md index 27555e20f2..d1d3c26793 100644 --- a/wiki/translations/fr/FEM_ConstraintDisplacement.md +++ b/wiki/translations/fr/FEM_ConstraintDisplacement.md @@ -8,6 +8,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ConstraintDisplacement/fr + ## Description Crée une contrainte FEM pour un déplacement prescrit d\'un objet sélectionné pour un degré de liberté spécifié. @@ -30,4 +32,7 @@ Crée une contrainte FEM pour un déplacement prescrit d\'un objet sélectionné {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintDisplacement/fr diff --git a/wiki/translations/fr/FEM_ConstraintElectrostaticPotential.md b/wiki/translations/fr/FEM_ConstraintElectrostaticPotential.md index 35665a6ce0..57f62d3e7e 100644 --- a/wiki/translations/fr/FEM_ConstraintElectrostaticPotential.md +++ b/wiki/translations/fr/FEM_ConstraintElectrostaticPotential.md @@ -8,6 +8,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ConstraintElectrostaticPotential/fr + ## Description A faire @@ -19,4 +21,7 @@ A faire {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintElectrostaticPotential/fr diff --git a/wiki/translations/fr/FEM_ConstraintFixed.md b/wiki/translations/fr/FEM_ConstraintFixed.md index 0259baf221..569d46172e 100644 --- a/wiki/translations/fr/FEM_ConstraintFixed.md +++ b/wiki/translations/fr/FEM_ConstraintFixed.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Contrainte de contact](FEM_ConstraintContact/fr.md) --- +# FEM ConstraintFixed/fr + ## Description Crée une contrainte FEM pour fixer une géométrie bloquée tous les 6 degrés de liberté sur l\'objet sélectionné. @@ -30,4 +32,7 @@ Vous ne pouvez pas mélanger les objets dans la même contrainte. Utilisez une c {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintFixed/fr diff --git a/wiki/translations/fr/FEM_ConstraintFlowVelocity.md b/wiki/translations/fr/FEM_ConstraintFlowVelocity.md index 3ce65e60fe..3a77dd8d31 100644 --- a/wiki/translations/fr/FEM_ConstraintFlowVelocity.md +++ b/wiki/translations/fr/FEM_ConstraintFlowVelocity.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Contrainte vitesse d'écoulement initiale](FEM_ConstraintInitialFlowVelocity/fr.md) --- +# FEM ConstraintFlowVelocity/fr + ## Description Applique une vitesse d\'écoulement comme condition aux limites à une arête en 2D ou à une face en 3D. @@ -43,4 +45,7 @@ Applique une vitesse d\'écoulement comme condition aux limites à une arête en {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintFlowVelocity/fr diff --git a/wiki/translations/fr/FEM_ConstraintFluidBoundary.md b/wiki/translations/fr/FEM_ConstraintFluidBoundary.md index 6f28b26708..60a8242c22 100644 --- a/wiki/translations/fr/FEM_ConstraintFluidBoundary.md +++ b/wiki/translations/fr/FEM_ConstraintFluidBoundary.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ConstraintFluidBoundary/fr + ## Description ToDo @@ -19,4 +21,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintFluidBoundary/fr diff --git a/wiki/translations/fr/FEM_ConstraintForce.md b/wiki/translations/fr/FEM_ConstraintForce.md index 2bef3670d8..2b6b017cf7 100644 --- a/wiki/translations/fr/FEM_ConstraintForce.md +++ b/wiki/translations/fr/FEM_ConstraintForce.md @@ -8,6 +8,8 @@ SeeAlso:[FEM Contrainte de pression](FEM_ConstraintPressure/fr.md) --- +# FEM ConstraintForce/fr + ## Description Cette commande applique une force de valeur donnée \[N\] à la géométrie cible sélectionnée. @@ -64,4 +66,7 @@ Cette commande applique une force de valeur donnée \[N\] à la géométrie cibl {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintForce/fr diff --git a/wiki/translations/fr/FEM_ConstraintGear.md b/wiki/translations/fr/FEM_ConstraintGear.md index 0faa62b0dd..f24e26115f 100644 --- a/wiki/translations/fr/FEM_ConstraintGear.md +++ b/wiki/translations/fr/FEM_ConstraintGear.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Contrainte de roulement](FEM_ConstraintBearing/fr.md), [FEM Contrainte de poulie](FEM_ConstraintPulley/fr.md) --- +# FEM ConstraintGear/fr + ## Description Non supporté par l\'interface Interface! @@ -19,4 +21,7 @@ Non supporté par l\'interface Interface! {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintGear/fr diff --git a/wiki/translations/fr/FEM_ConstraintHeatflux.md b/wiki/translations/fr/FEM_ConstraintHeatflux.md index c196cb0d28..2586c4227d 100644 --- a/wiki/translations/fr/FEM_ConstraintHeatflux.md +++ b/wiki/translations/fr/FEM_ConstraintHeatflux.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ConstraintHeatflux/fr + ## Description Cette contrainte spécifie l\'échange de chaleur (transfert de chaleur par film) d\'une surface à la température *T* et avec un coefficient de film *h* et une température ambiante \'\'T~0~ \'\'. Le flux de chaleur convective *q* satisfera: ***q = h(T -T~0~)*** @@ -29,4 +31,7 @@ Cette contrainte spécifie l\'échange de chaleur (transfert de chaleur par film {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintHeatflux/fr diff --git a/wiki/translations/fr/FEM_ConstraintInitialFlowVelocity.md b/wiki/translations/fr/FEM_ConstraintInitialFlowVelocity.md index 7361ed4285..7040f9e8e2 100644 --- a/wiki/translations/fr/FEM_ConstraintInitialFlowVelocity.md +++ b/wiki/translations/fr/FEM_ConstraintInitialFlowVelocity.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Contrainte de vitesse d'écoulement](FEM_ConstraintFlowVelocity/fr.md) --- +# FEM ConstraintInitialFlowVelocity/fr + ## Description Applique une condition aux limites de vitesse d\'écoulement à une face en 3D ou à une arête en 2D. @@ -34,4 +36,7 @@ Dans les analyses les plus simples, il n\'est pas nécessaire de spécifier la v {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintInitialFlowVelocity/fr diff --git a/wiki/translations/fr/FEM_ConstraintInitialTemperature.md b/wiki/translations/fr/FEM_ConstraintInitialTemperature.md index 757596dfd7..6f3914c3f3 100644 --- a/wiki/translations/fr/FEM_ConstraintInitialTemperature.md +++ b/wiki/translations/fr/FEM_ConstraintInitialTemperature.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ConstraintInitialTemperature/fr + ## Description Crée une contrainte de température initiale pour une analyse thermo-mécanique. @@ -32,4 +34,7 @@ La contrainte applique la température initiale à tous les nœuds du modèle FE {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintInitialTemperature/fr diff --git a/wiki/translations/fr/FEM_ConstraintPlaneRotation.md b/wiki/translations/fr/FEM_ConstraintPlaneRotation.md index 8c512b56b9..12ca5760da 100644 --- a/wiki/translations/fr/FEM_ConstraintPlaneRotation.md +++ b/wiki/translations/fr/FEM_ConstraintPlaneRotation.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Contrainte de transformation](FEM_ConstraintTransform/fr.md) --- +# FEM ConstraintPlaneRotation/fr + ## Description Crée une contrainte FEM pour conserver les nœuds dans une surface plane dans le même plan. @@ -33,4 +35,7 @@ Crée une contrainte FEM pour conserver les nœuds dans une surface plane dans l {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintPlaneRotation/fr diff --git a/wiki/translations/fr/FEM_ConstraintPressure.md b/wiki/translations/fr/FEM_ConstraintPressure.md index 04c2afa736..f652d26252 100644 --- a/wiki/translations/fr/FEM_ConstraintPressure.md +++ b/wiki/translations/fr/FEM_ConstraintPressure.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Contrainte de force](FEM_ConstraintForce/fr.md) --- +# FEM ConstraintPressure/fr + ## Description Applique une contrainte de pression sur une face. @@ -32,4 +34,7 @@ Applique une contrainte de pression sur une face. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintPressure/fr diff --git a/wiki/translations/fr/FEM_ConstraintPulley.md b/wiki/translations/fr/FEM_ConstraintPulley.md index b81507d2ef..4bb19c763d 100644 --- a/wiki/translations/fr/FEM_ConstraintPulley.md +++ b/wiki/translations/fr/FEM_ConstraintPulley.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Contrainte de roulement](FEM_ConstraintBearing/fr.md), [FEM Contrainte d'engrenage](FEM_ConstraintGear/fr.md) --- +# FEM ConstraintPulley/fr + ## Description Pas supporté avec l\'interface Calculix @@ -19,4 +21,7 @@ Pas supporté avec l\'interface Calculix {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintPulley/fr diff --git a/wiki/translations/fr/FEM_ConstraintSectionPrint.md b/wiki/translations/fr/FEM_ConstraintSectionPrint.md index 30986be7fb..4aeaf4b596 100644 --- a/wiki/translations/fr/FEM_ConstraintSectionPrint.md +++ b/wiki/translations/fr/FEM_ConstraintSectionPrint.md @@ -8,6 +8,8 @@ SeeAlso: --- +# FEM ConstraintSectionPrint/fr + ## Description ## Utilisation @@ -18,4 +20,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintSectionPrint/fr diff --git a/wiki/translations/fr/FEM_ConstraintSelfWeight.md b/wiki/translations/fr/FEM_ConstraintSelfWeight.md index eddbfde3e0..a63c160ad3 100644 --- a/wiki/translations/fr/FEM_ConstraintSelfWeight.md +++ b/wiki/translations/fr/FEM_ConstraintSelfWeight.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ConstraintSelfWeight/fr + ## Description La contrainte de son propre poids est définie par l\'accélération gravitationnelle de 9,81 m/s\^2 qui agit sur l\'ensemble du modèle dans la direction prescrite. @@ -66,4 +68,7 @@ Eall,GRAV,9810,0.0,0.0,-1.0 {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintSelfWeight/fr diff --git a/wiki/translations/fr/FEM_ConstraintTemperature.md b/wiki/translations/fr/FEM_ConstraintTemperature.md index 42562c4aa1..70ae54a057 100644 --- a/wiki/translations/fr/FEM_ConstraintTemperature.md +++ b/wiki/translations/fr/FEM_ConstraintTemperature.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ConstraintTemperature/fr + ## Description Crée une contrainte FEM pour une condition de limite de température. @@ -30,4 +32,7 @@ Crée une contrainte FEM pour une condition de limite de température. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintTemperature/fr diff --git a/wiki/translations/fr/FEM_ConstraintTie.md b/wiki/translations/fr/FEM_ConstraintTie.md index a8b2e620b2..22586efda0 100644 --- a/wiki/translations/fr/FEM_ConstraintTie.md +++ b/wiki/translations/fr/FEM_ConstraintTie.md @@ -8,6 +8,8 @@ SeeAlso:[FEM Contrainte de pression](FEM_ConstraintPressure.md) --- +# FEM ConstraintTie/fr + ## Description Définit une contrainte de liaison qui relie les deux surfaces sélectionnées de telle sorte que (par opposition à la façon dont le contact fonctionne) elles ne peuvent pas se séparer ou glisser l\'une sur l\'autre tout au long de l\'analyse. Ainsi, les surfaces restent collées en permanence. @@ -32,4 +34,7 @@ Définit une contrainte de liaison qui relie les deux surfaces sélectionnées d {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintTie/fr diff --git a/wiki/translations/fr/FEM_ConstraintTransform.md b/wiki/translations/fr/FEM_ConstraintTransform.md index a50af9c81f..f517f5cbc3 100644 --- a/wiki/translations/fr/FEM_ConstraintTransform.md +++ b/wiki/translations/fr/FEM_ConstraintTransform.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Contrainte de rotation du plan](FEM_ConstraintPlaneRotation/fr.md) --- +# FEM ConstraintTransform/fr + ## Description ## Utilisation @@ -17,4 +19,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintTransform/fr diff --git a/wiki/translations/fr/FEM_CreateNodesSet.md b/wiki/translations/fr/FEM_CreateNodesSet.md index 3aa8e7c936..4ab4047158 100644 --- a/wiki/translations/fr/FEM_CreateNodesSet.md +++ b/wiki/translations/fr/FEM_CreateNodesSet.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM CreateNodesSet/fr + ## Description ## Utilisation @@ -27,4 +29,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM CreateNodesSet/fr diff --git a/wiki/translations/fr/FEM_ElementFluid1D.md b/wiki/translations/fr/FEM_ElementFluid1D.md index 7a461f40a8..4e497067d4 100644 --- a/wiki/translations/fr/FEM_ElementFluid1D.md +++ b/wiki/translations/fr/FEM_ElementFluid1D.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ElementFluid1D/fr + ## Description Crée un élément de section fluide FEM pour les réseaux pneumatiques et hydrauliques. @@ -36,4 +38,7 @@ Crée un élément de section fluide FEM pour les réseaux pneumatiques et hydra {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementFluid1D/fr diff --git a/wiki/translations/fr/FEM_ElementGeometry1D.md b/wiki/translations/fr/FEM_ElementGeometry1D.md index fe24c507cf..951c862bd7 100644 --- a/wiki/translations/fr/FEM_ElementGeometry1D.md +++ b/wiki/translations/fr/FEM_ElementGeometry1D.md @@ -8,6 +8,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ElementGeometry1D/fr + ## Description Elément de géométries 1D est utilisé pour définir les sections transversales des éléments de poutre. Actuellement, les types de sections transversales suivants sont disponibles : rectangulaire, circulaire et tube. @@ -41,4 +43,7 @@ Elément de géométries 1D est utilisé pour définir les sections transversale {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementGeometry1D/fr diff --git a/wiki/translations/fr/FEM_ElementGeometry2D.md b/wiki/translations/fr/FEM_ElementGeometry2D.md index 4fe41c4d06..d1c258ab1e 100644 --- a/wiki/translations/fr/FEM_ElementGeometry2D.md +++ b/wiki/translations/fr/FEM_ElementGeometry2D.md @@ -8,6 +8,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ElementGeometry2D/fr + ## Description ElementGeometry2D est utilisé pour définir l\'épaisseur d\'éléments 2D FEM, soit tous, soit posés sur la surface choisie. @@ -43,4 +45,7 @@ Pour afficher les résultats du solveur CalculiX sur le maillage développé à {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementGeometry2D/fr diff --git a/wiki/translations/fr/FEM_ElementRotation1D.md b/wiki/translations/fr/FEM_ElementRotation1D.md index 05d7cd705a..0a7ffa57e9 100644 --- a/wiki/translations/fr/FEM_ElementRotation1D.md +++ b/wiki/translations/fr/FEM_ElementRotation1D.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ElementRotation1D/fr + ## Description **Elément de rotation 1D** est utilisé pour faire tourner le profil du faisceau autour de l\'axe des éléments du faisceau. @@ -36,4 +38,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementRotation1D/fr diff --git a/wiki/translations/fr/FEM_Element_Types.md b/wiki/translations/fr/FEM_Element_Types.md index 8fc467a323..b61dbb789c 100644 --- a/wiki/translations/fr/FEM_Element_Types.md +++ b/wiki/translations/fr/FEM_Element_Types.md @@ -1,5 +1,5 @@ # FEM Element Types/fr - {{TOCright}} +{{TOCright}} ## Introduction @@ -273,3 +273,6 @@ Cette description est basée sur le format MED décrit dans \[ [Developer](Category:Developer.md) > FEM Element Types/fr diff --git a/wiki/translations/fr/FEM_EquationElasticity.md b/wiki/translations/fr/FEM_EquationElasticity.md index 8ece73abfc..871cd5427b 100644 --- a/wiki/translations/fr/FEM_EquationElasticity.md +++ b/wiki/translations/fr/FEM_EquationElasticity.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM EquationElasticity/fr + ## Description ToDo @@ -19,4 +21,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationElasticity/fr diff --git a/wiki/translations/fr/FEM_EquationElectricforce.md b/wiki/translations/fr/FEM_EquationElectricforce.md index b2efca6bfc..31cf6fd777 100644 --- a/wiki/translations/fr/FEM_EquationElectricforce.md +++ b/wiki/translations/fr/FEM_EquationElectricforce.md @@ -8,6 +8,8 @@ SeeAlso: --- +# FEM EquationElectricforce/fr + ## Description ## Utilisation @@ -18,4 +20,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationElectricforce/fr diff --git a/wiki/translations/fr/FEM_EquationElectrostatic.md b/wiki/translations/fr/FEM_EquationElectrostatic.md index 15eaec9352..7a2aa599db 100644 --- a/wiki/translations/fr/FEM_EquationElectrostatic.md +++ b/wiki/translations/fr/FEM_EquationElectrostatic.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM EquationElectrostatic/fr + ## Description ToDo @@ -19,4 +21,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationElectrostatic/fr diff --git a/wiki/translations/fr/FEM_EquationFlow.md b/wiki/translations/fr/FEM_EquationFlow.md index 29de4d9446..1c34cc390a 100644 --- a/wiki/translations/fr/FEM_EquationFlow.md +++ b/wiki/translations/fr/FEM_EquationFlow.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM EquationFlow/fr + ## Description ## Utilisation @@ -17,4 +19,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationFlow/fr diff --git a/wiki/translations/fr/FEM_EquationFlux.md b/wiki/translations/fr/FEM_EquationFlux.md index 846146f3d4..b8dca837c6 100644 --- a/wiki/translations/fr/FEM_EquationFlux.md +++ b/wiki/translations/fr/FEM_EquationFlux.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM EquationFlux/fr + ## Description A faire @@ -19,4 +21,7 @@ A faire {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationFlux/fr diff --git a/wiki/translations/fr/FEM_EquationFluxsolver.md b/wiki/translations/fr/FEM_EquationFluxsolver.md index 076698946d..03fa882857 100644 --- a/wiki/translations/fr/FEM_EquationFluxsolver.md +++ b/wiki/translations/fr/FEM_EquationFluxsolver.md @@ -1,2 +1,5 @@ # FEM EquationFluxsolver/fr 1. REDIRECT [FEM\_EquationFlux/fr](FEM_EquationFlux/fr.md) + +--- +[documentation index](../README.md) > FEM EquationFluxsolver/fr diff --git a/wiki/translations/fr/FEM_EquationHeat.md b/wiki/translations/fr/FEM_EquationHeat.md index 9706f3a558..1fcc192a2f 100644 --- a/wiki/translations/fr/FEM_EquationHeat.md +++ b/wiki/translations/fr/FEM_EquationHeat.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM EquationHeat/fr + ## Description ToDo @@ -19,4 +21,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationHeat/fr diff --git a/wiki/translations/fr/FEM_Example_Capacitance_Two_Balls.md b/wiki/translations/fr/FEM_Example_Capacitance_Two_Balls.md index b266bab70b..1c7a73ad3c 100644 --- a/wiki/translations/fr/FEM_Example_Capacitance_Two_Balls.md +++ b/wiki/translations/fr/FEM_Example_Capacitance_Two_Balls.md @@ -1,7 +1,4 @@ # FEM Example Capacitance Two Balls/fr - - - {{TutorialInfo/fr |Topic= Analyse par les éléments finis |Level=Débutant @@ -121,4 +118,7 @@ Ce cas présente la solution de la capacité de sphères parfaitement conductric {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM Example Capacitance Two Balls/fr diff --git a/wiki/translations/fr/FEM_Examples.md b/wiki/translations/fr/FEM_Examples.md index df56eff70d..184bd769a7 100644 --- a/wiki/translations/fr/FEM_Examples.md +++ b/wiki/translations/fr/FEM_Examples.md @@ -8,6 +8,8 @@ SeeAlso:[FEM Tutoriel](FEM_tutorial/fr.md) --- +# FEM Examples/fr + ## Description [FEM Exemples](FEM_Examples/fr.md) lance une interface graphique qui vous permet d\'accéder aux différents exemples disponibles dans l\'atelier [FEM](FEM_Workbench/fr.md). @@ -29,4 +31,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Examples/fr diff --git a/wiki/translations/fr/FEM_FemMesh2Mesh.md b/wiki/translations/fr/FEM_FemMesh2Mesh.md index ced02fd236..be7a78aacd 100644 --- a/wiki/translations/fr/FEM_FemMesh2Mesh.md +++ b/wiki/translations/fr/FEM_FemMesh2Mesh.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Tutoriel](FEM_tutorial/fr.md) --- +# FEM FemMesh2Mesh/fr + ## Description Cet outil converti une surface un élément 3D ou un élément FEM maille sélectionné en un élément maille . En interne, l\'élément FEM maille choisi est unique (non partagé entre deux éléments) et l\'utilise pour créer une face ou un élément maille. Optionnellement il permet de créer un maillage déformé causé par les forces établies . Ceci est fait par ajout du déplacement de FEM résultant des nœuds du maillage. @@ -70,4 +72,7 @@ Mesh.show(obj) {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM FemMesh2Mesh/fr diff --git a/wiki/translations/fr/FEM_FrontISTR_Workbench.md b/wiki/translations/fr/FEM_FrontISTR_Workbench.md index ef6c1072aa..b3fc8568d6 100644 --- a/wiki/translations/fr/FEM_FrontISTR_Workbench.md +++ b/wiki/translations/fr/FEM_FrontISTR_Workbench.md @@ -1,7 +1,4 @@ -# FEM FrontISTR Workbench/fr - - -Icône de l\'atelier FEM FrontISTR +# Icône de l\'atelier FEM FrontISTR FEM FrontISTR Workbench/fr {{TOCright}} @@ -101,3 +98,6 @@ En préparation. - Rapporter les bogues : Veuillez signaler les bogues à [Github.com](https://github.com/FrontISTR/FEM_FrontISTR). [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > FEM FrontISTR Workbench/fr diff --git a/wiki/translations/fr/FEM_Install.md b/wiki/translations/fr/FEM_Install.md index b46deef588..13cf2b0953 100644 --- a/wiki/translations/fr/FEM_Install.md +++ b/wiki/translations/fr/FEM_Install.md @@ -1,7 +1,4 @@ # FEM Install/fr - - - {{TOCright}} ## Introduction @@ -248,4 +245,7 @@ Si vous rencontrez des problèmes pour installer Netgen, Gmsh ou CalculiX, ou un {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Install/fr diff --git a/wiki/translations/fr/FEM_MaterialFluid.md b/wiki/translations/fr/FEM_MaterialFluid.md index 363a923d73..acb7cbd19f 100644 --- a/wiki/translations/fr/FEM_MaterialFluid.md +++ b/wiki/translations/fr/FEM_MaterialFluid.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM MaterialFluid/fr + ## Description Ajoute des propriétés fluides à une pièce. @@ -33,4 +35,7 @@ Ajoute des propriétés fluides à une pièce. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialFluid/fr diff --git a/wiki/translations/fr/FEM_MaterialMechanicalNonlinear.md b/wiki/translations/fr/FEM_MaterialMechanicalNonlinear.md index c1441439cb..6159fb33c7 100644 --- a/wiki/translations/fr/FEM_MaterialMechanicalNonlinear.md +++ b/wiki/translations/fr/FEM_MaterialMechanicalNonlinear.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Tutoriel](FEM_tutorial/fr.md) --- +# FEM MaterialMechanicalNonlinear/fr + ## Description Ajoute un modèle de matériau mécanique non linéaire. Actuellement, seule la plasticité avec durcissement simple est disponible. @@ -27,4 +29,7 @@ Ajoute un modèle de matériau mécanique non linéaire. Actuellement, seule la {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialMechanicalNonlinear/fr diff --git a/wiki/translations/fr/FEM_MaterialReinforced.md b/wiki/translations/fr/FEM_MaterialReinforced.md index 4ae8c346c0..50db3da0f1 100644 --- a/wiki/translations/fr/FEM_MaterialReinforced.md +++ b/wiki/translations/fr/FEM_MaterialReinforced.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Tutoriel](FEM_tutorial/fr.md) --- +# FEM MaterialReinforced/fr + A faire @@ -15,4 +17,7 @@ A faire {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialReinforced/fr diff --git a/wiki/translations/fr/FEM_MaterialSolid.md b/wiki/translations/fr/FEM_MaterialSolid.md index 1fbd01eadb..c02b194b28 100644 --- a/wiki/translations/fr/FEM_MaterialSolid.md +++ b/wiki/translations/fr/FEM_MaterialSolid.md @@ -8,6 +8,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM MaterialSolid/fr + ## Description Ajoute des propriétés matériau à une pièce. @@ -38,4 +40,7 @@ Ajoute des propriétés matériau à une pièce. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialSolid/fr diff --git a/wiki/translations/fr/FEM_Mesh.md b/wiki/translations/fr/FEM_Mesh.md index 1a2573e80f..da34acc5f0 100644 --- a/wiki/translations/fr/FEM_Mesh.md +++ b/wiki/translations/fr/FEM_Mesh.md @@ -1,5 +1,5 @@ # FEM Mesh/fr - {{TOCright}} +{{TOCright}} ## Créer un FEM Mesh @@ -727,4 +727,7 @@ Voir par exemple FEM Mesh/fr diff --git a/wiki/translations/fr/FEM_MeshBoundaryLayer.md b/wiki/translations/fr/FEM_MeshBoundaryLayer.md index 7e8b4651e2..9fe40d62b6 100644 --- a/wiki/translations/fr/FEM_MeshBoundaryLayer.md +++ b/wiki/translations/fr/FEM_MeshBoundaryLayer.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM MeshBoundaryLayer/fr + ## Description Couche limite de maillage MEF permet à l\'utilisateur de définir un ensemble localisé de paramètres de maillage en sélectionnant un ensemble d\'éléments (Vertex, Edge, Face) et en lui appliquant les paramètres. Elle est particulièrement utile pour affiner les maillages près des bords ou des surfaces dans les simulations d\'écoulement. Par exemple, elle peut être utilisée pour raffiner le maillage à proximité d\'une feuille d\'air ou d\'un obstacle dans un écoulement. @@ -52,4 +54,7 @@ Vous pouvez créer autant de couches limites de maillage différentes que néces {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshBoundaryLayer/fr diff --git a/wiki/translations/fr/FEM_MeshClear.md b/wiki/translations/fr/FEM_MeshClear.md index c84ddde099..121b01357b 100644 --- a/wiki/translations/fr/FEM_MeshClear.md +++ b/wiki/translations/fr/FEM_MeshClear.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM MeshClear/fr + ## Description Permet à l\'utilisateur de réinitialiser le maillage à partir de l\'objet maillé MEF FreeCAD. Le maillage existe toujours mais n\'a pas de sommets, d\'arêtes, de faces ou d\'éléments. Les informations de maillage, les paramètres Netgen/Gmsh, les régions maillées, les groupes de mailles et la couche limite du maillage restent dans l\'arbre du modèle, ce qui signifie que le maillage peut être reproduit ultérieurement. L\'utilisation principale de cette fonction est d\'alléger le fichier FreeCAD, soit pour améliorer les performances lors de l\'utilisation de FreeCAD, soit pour économiser de l\'espace disque ou permettre un transfert facile des fichiers sans perdre les données de maillage. @@ -26,4 +28,7 @@ Les objets de l\'arborescence du modèle sont maintenus car ils représentent le {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshClear/fr diff --git a/wiki/translations/fr/FEM_MeshDisplayInfo.md b/wiki/translations/fr/FEM_MeshDisplayInfo.md index 0968f6db57..b90801dc58 100644 --- a/wiki/translations/fr/FEM_MeshDisplayInfo.md +++ b/wiki/translations/fr/FEM_MeshDisplayInfo.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM MeshDisplayInfo/fr + ## Description Affiche les statistiques de base du maillage existant - nombre de nœuds et d\'éléments de chaque type. En particulier, le nombre total des éléments suivants est affiché : @@ -88,4 +90,7 @@ donnera le résultat suivant : {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshDisplayInfo/fr diff --git a/wiki/translations/fr/FEM_MeshGmshFromShape.md b/wiki/translations/fr/FEM_MeshGmshFromShape.md index 479506094d..0371bc7452 100644 --- a/wiki/translations/fr/FEM_MeshGmshFromShape.md +++ b/wiki/translations/fr/FEM_MeshGmshFromShape.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Tutoriel](FEM_tutorial/fr.md) --- +# FEM MeshGmshFromShape/fr + ## Description Pour une analyse par éléments finis, la géométrie doit être discrétisée en [FEM Mesh](FEM_Mesh/fr.md). Cette commande utilise le programme [Gmsh](https://fr.wikipedia.org/wiki/Gmsh) (qui doit être installé sur le système) pour calculer le maillage. @@ -116,4 +118,7 @@ L\'algorithme de recombinaison *Simple* laissera quelques triangles dans le mail {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshGmshFromShape/fr diff --git a/wiki/translations/fr/FEM_MeshGroup.md b/wiki/translations/fr/FEM_MeshGroup.md index d5b1c528bb..4381e7c19a 100644 --- a/wiki/translations/fr/FEM_MeshGroup.md +++ b/wiki/translations/fr/FEM_MeshGroup.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM MeshGroup/fr + ## Description Groupe de type maillage MEF permet à l\'utilisateur de créer des groupes de sommets, arêtes, surfaces et éléments. Il est utile en cas d\'utilisation de FreeCAD comme pré-processeur pour exporter un maillage organisé et étiqueté. Le maillage est alors utilisable par des codes de résolution externes où les groupes de maillage peuvent être utilisés plus facilement pour définir les conditions aux limites et attribuer les propriétés liées au solveur. Il est possible d\'utiliser le nom d\'objet du groupe de maillage FreeCAD ou l\'étiquette comme nom de groupe lors de l\'exportation du maillage. Si l\'étiquette est choisie, l\'utilisateur doit faire attention à l\'utilisation de caractères spéciaux. Si le format d\'exportation du maillage n\'autorise pas l\'utilisation de caractères spéciaux, la solution de repli consiste à utiliser le nom de l\'objet du groupe de maillage. @@ -41,4 +43,7 @@ Groupe de type maillage MEF permet donc à FreeCAD d\'être utilisé avec des so {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshGroup/fr diff --git a/wiki/translations/fr/FEM_MeshNetgenFromShape.md b/wiki/translations/fr/FEM_MeshNetgenFromShape.md index 7fc98f55c1..bdf661d00d 100644 --- a/wiki/translations/fr/FEM_MeshNetgenFromShape.md +++ b/wiki/translations/fr/FEM_MeshNetgenFromShape.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM MeshNetgenFromShape/fr + ## Description A faire @@ -19,4 +21,7 @@ A faire {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshNetgenFromShape/fr diff --git a/wiki/translations/fr/FEM_MeshPrintInfo.md b/wiki/translations/fr/FEM_MeshPrintInfo.md index 2bc87ba22d..4b57251a32 100644 --- a/wiki/translations/fr/FEM_MeshPrintInfo.md +++ b/wiki/translations/fr/FEM_MeshPrintInfo.md @@ -1,2 +1,5 @@ # FEM MeshPrintInfo/fr 1. REDIRECT [FEM\_MeshDisplayInfo/fr](FEM_MeshDisplayInfo/fr.md) + +--- +[documentation index](../README.md) > FEM MeshPrintInfo/fr diff --git a/wiki/translations/fr/FEM_MeshRegion.md b/wiki/translations/fr/FEM_MeshRegion.md index 960ff6a4d7..b9c8634004 100644 --- a/wiki/translations/fr/FEM_MeshRegion.md +++ b/wiki/translations/fr/FEM_MeshRegion.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM MeshRegion/fr + ## Description FEM Région de maillage MEF permet à l\'utilisateur de définir un ensemble localisé de paramètres de maillage en sélectionnant un ensemble d\'éléments (Vertex-points, Edge-arêtes, Face) et en lui appliquant les paramètres. Cette fonction est particulièrement utile pour affiner les maillages dans les zones d\'intérêt ou les zones où le solveur générera un gradient plus fort d\'une variable. Par exemple, elle peut être utilisée pour raffiner le maillage autour des points de contrainte (arêtes vives, cercles\...) en analyse mécanique, ou aux zones de contraction dans un écoulement de fluide. @@ -54,4 +56,7 @@ L\'ordre dans lequel les régions sont affichées dans la [vue en arborescence]( {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshRegion/fr diff --git a/wiki/translations/fr/FEM_Mesh_CalculiX.md b/wiki/translations/fr/FEM_Mesh_CalculiX.md index 9122195112..8e5b48b20b 100644 --- a/wiki/translations/fr/FEM_Mesh_CalculiX.md +++ b/wiki/translations/fr/FEM_Mesh_CalculiX.md @@ -1,5 +1,5 @@ # FEM Mesh CalculiX/fr - {{TOCright}} +{{TOCright}} ## Types d\'éléments MEF dans CalculiX @@ -96,3 +96,6 @@ L\'ordre de nœud suivant n\'est pas implémenté ! TODO: vérifier l\'ordre des }} [Category:Developer](Category:Developer.md) [Category:Poweruser\_Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > FEM Mesh CalculiX/fr diff --git a/wiki/translations/fr/FEM_Module.md b/wiki/translations/fr/FEM_Module.md index bbf57586e0..e448d270f9 100644 --- a/wiki/translations/fr/FEM_Module.md +++ b/wiki/translations/fr/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/fr 1. REDIRECT [FEM\_Workbench/fr](FEM_Workbench/fr.md) + +--- +[documentation index](../README.md) > FEM Module/fr diff --git a/wiki/translations/fr/FEM_PostApplyChanges.md b/wiki/translations/fr/FEM_PostApplyChanges.md index 441e7c9bb2..1ecee11460 100644 --- a/wiki/translations/fr/FEM_PostApplyChanges.md +++ b/wiki/translations/fr/FEM_PostApplyChanges.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM PostApplyChanges/fr + ## Description ToDo @@ -19,4 +21,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostApplyChanges/fr diff --git a/wiki/translations/fr/FEM_PostCreateClipFilter.md b/wiki/translations/fr/FEM_PostCreateClipFilter.md index a1dd31a782..d82b668189 100644 --- a/wiki/translations/fr/FEM_PostCreateClipFilter.md +++ b/wiki/translations/fr/FEM_PostCreateClipFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateClipFilter/fr 1. REDIRECT [FEM\_PostFilterClipRegion/fr](FEM_PostFilterClipRegion/fr.md) + +--- +[documentation index](../README.md) > FEM PostCreateClipFilter/fr diff --git a/wiki/translations/fr/FEM_PostCreateCutFilter.md b/wiki/translations/fr/FEM_PostCreateCutFilter.md index 90b9915359..135d87af46 100644 --- a/wiki/translations/fr/FEM_PostCreateCutFilter.md +++ b/wiki/translations/fr/FEM_PostCreateCutFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateCutFilter/fr 1. REDIRECT [FEM\_PostFilterCutFunction/fr](FEM_PostFilterCutFunction/fr.md) + +--- +[documentation index](../README.md) > FEM PostCreateCutFilter/fr diff --git a/wiki/translations/fr/FEM_PostCreateDataAlongLineFilter.md b/wiki/translations/fr/FEM_PostCreateDataAlongLineFilter.md index 8b13b0459f..718441e7d7 100644 --- a/wiki/translations/fr/FEM_PostCreateDataAlongLineFilter.md +++ b/wiki/translations/fr/FEM_PostCreateDataAlongLineFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateDataAlongLineFilter/fr 1. REDIRECT [FEM\_PostFilterDataAlongLine/fr](FEM_PostFilterDataAlongLine/fr.md) + +--- +[documentation index](../README.md) > FEM PostCreateDataAlongLineFilter/fr diff --git a/wiki/translations/fr/FEM_PostCreateDataAtPointFilter.md b/wiki/translations/fr/FEM_PostCreateDataAtPointFilter.md index 104fa3a0b3..dbf704adb8 100644 --- a/wiki/translations/fr/FEM_PostCreateDataAtPointFilter.md +++ b/wiki/translations/fr/FEM_PostCreateDataAtPointFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateDataAtPointFilter/fr 1. REDIRECT [FEM\_PostFilterDataAtPoint/fr](FEM_PostFilterDataAtPoint/fr.md) + +--- +[documentation index](../README.md) > FEM PostCreateDataAtPointFilter/fr diff --git a/wiki/translations/fr/FEM_PostCreateFunctions.md b/wiki/translations/fr/FEM_PostCreateFunctions.md index 17b02b88c2..ec6d0209bf 100644 --- a/wiki/translations/fr/FEM_PostCreateFunctions.md +++ b/wiki/translations/fr/FEM_PostCreateFunctions.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM PostCreateFunctions/fr + ## Description ## Types @@ -22,4 +24,7 @@ A faire {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostCreateFunctions/fr diff --git a/wiki/translations/fr/FEM_PostCreateLinearizedStressesFilter.md b/wiki/translations/fr/FEM_PostCreateLinearizedStressesFilter.md index ce14dc7553..5cb9a8119a 100644 --- a/wiki/translations/fr/FEM_PostCreateLinearizedStressesFilter.md +++ b/wiki/translations/fr/FEM_PostCreateLinearizedStressesFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateLinearizedStressesFilter/fr 1. REDIRECT [FEM\_PostFilterLinearizedStresses/fr](FEM_PostFilterLinearizedStresses/fr.md) + +--- +[documentation index](../README.md) > FEM PostCreateLinearizedStressesFilter/fr diff --git a/wiki/translations/fr/FEM_PostCreateScalarClipFilter.md b/wiki/translations/fr/FEM_PostCreateScalarClipFilter.md index 22281487ba..b8109ac1f7 100644 --- a/wiki/translations/fr/FEM_PostCreateScalarClipFilter.md +++ b/wiki/translations/fr/FEM_PostCreateScalarClipFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateScalarClipFilter/fr 1. REDIRECT [FEM\_PostFilterClipScalar/fr](FEM_PostFilterClipScalar/fr.md) + +--- +[documentation index](../README.md) > FEM PostCreateScalarClipFilter/fr diff --git a/wiki/translations/fr/FEM_PostCreateWarpVectorFilter.md b/wiki/translations/fr/FEM_PostCreateWarpVectorFilter.md index e9c3a12014..582860e9b6 100644 --- a/wiki/translations/fr/FEM_PostCreateWarpVectorFilter.md +++ b/wiki/translations/fr/FEM_PostCreateWarpVectorFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateWarpVectorFilter/fr 1. REDIRECT [FEM\_PostFilterWarp/fr](FEM_PostFilterWarp/fr.md) + +--- +[documentation index](../README.md) > FEM PostCreateWarpVectorFilter/fr diff --git a/wiki/translations/fr/FEM_PostFilterClipRegion.md b/wiki/translations/fr/FEM_PostFilterClipRegion.md index 275849a189..8dda200c7f 100644 --- a/wiki/translations/fr/FEM_PostFilterClipRegion.md +++ b/wiki/translations/fr/FEM_PostFilterClipRegion.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM PostFilterClipRegion/fr + ## Description A faire @@ -19,4 +21,7 @@ A faire {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterClipRegion/fr diff --git a/wiki/translations/fr/FEM_PostFilterClipScalar.md b/wiki/translations/fr/FEM_PostFilterClipScalar.md index 44e0518988..c102a53d05 100644 --- a/wiki/translations/fr/FEM_PostFilterClipScalar.md +++ b/wiki/translations/fr/FEM_PostFilterClipScalar.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM PostFilterClipScalar/fr + ## Description ToDo @@ -19,4 +21,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterClipScalar/fr diff --git a/wiki/translations/fr/FEM_PostFilterCutFunction.md b/wiki/translations/fr/FEM_PostFilterCutFunction.md index 96a4984f0e..be40112c25 100644 --- a/wiki/translations/fr/FEM_PostFilterCutFunction.md +++ b/wiki/translations/fr/FEM_PostFilterCutFunction.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Tutoriel](FEM_tutorial/fr.md) --- +# FEM PostFilterCutFunction/fr + ## Description ToDo @@ -19,4 +21,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterCutFunction/fr diff --git a/wiki/translations/fr/FEM_PostFilterDataAlongLine.md b/wiki/translations/fr/FEM_PostFilterDataAlongLine.md index 8dcb43ad52..1375a4e4c8 100644 --- a/wiki/translations/fr/FEM_PostFilterDataAlongLine.md +++ b/wiki/translations/fr/FEM_PostFilterDataAlongLine.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM PostFilterDataAlongLine/fr + ## Description ToDo @@ -19,4 +21,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterDataAlongLine/fr diff --git a/wiki/translations/fr/FEM_PostFilterDataAtPoint.md b/wiki/translations/fr/FEM_PostFilterDataAtPoint.md index 19458f80b3..4473553a9c 100644 --- a/wiki/translations/fr/FEM_PostFilterDataAtPoint.md +++ b/wiki/translations/fr/FEM_PostFilterDataAtPoint.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM PostFilterDataAtPoint/fr + {{FEM Tools navi/fr}} @@ -22,4 +24,7 @@ A faire {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterDataAtPoint/fr diff --git a/wiki/translations/fr/FEM_PostFilterLinearizedStresses.md b/wiki/translations/fr/FEM_PostFilterLinearizedStresses.md index b46c735d51..22e2bc4430 100644 --- a/wiki/translations/fr/FEM_PostFilterLinearizedStresses.md +++ b/wiki/translations/fr/FEM_PostFilterLinearizedStresses.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM PostFilterLinearizedStresses/fr + ## Description A faire @@ -19,4 +21,7 @@ A faire {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterLinearizedStresses/fr diff --git a/wiki/translations/fr/FEM_PostFilterWarp.md b/wiki/translations/fr/FEM_PostFilterWarp.md index 9856bfed96..b064e533a5 100644 --- a/wiki/translations/fr/FEM_PostFilterWarp.md +++ b/wiki/translations/fr/FEM_PostFilterWarp.md @@ -7,6 +7,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM PostFilterWarp/fr + ## Description A faire @@ -19,4 +21,7 @@ A faire {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterWarp/fr diff --git a/wiki/translations/fr/FEM_PostPipelineFromResult.md b/wiki/translations/fr/FEM_PostPipelineFromResult.md index 4dfb1b3d8c..141842e654 100644 --- a/wiki/translations/fr/FEM_PostPipelineFromResult.md +++ b/wiki/translations/fr/FEM_PostPipelineFromResult.md @@ -8,6 +8,8 @@ SeeAlso:[FEM Tutoriel](FEM_tutorial/fr.md) --- +# FEM PostPipelineFromResult/fr + **\* Vous avez besoin d\'un objet résultat valide dans le ** [FEM Conteneur d'analyse](FEM_Analysis/fr.md) **, tel que **CalculiX static results**.** @@ -48,4 +50,7 @@ A nouveau, notez que la représentation des résultats (appelée VTK) par le pip {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostPipelineFromResult/fr diff --git a/wiki/translations/fr/FEM_Preferences.md b/wiki/translations/fr/FEM_Preferences.md index 86279c7317..c36dee59f9 100644 --- a/wiki/translations/fr/FEM_Preferences.md +++ b/wiki/translations/fr/FEM_Preferences.md @@ -1,5 +1,5 @@ # FEM Preferences/fr - {{TOCright}} La fenêtre des préférences de l\'[atelier FEM](FEM_Workbench/fr.md) se trouve dans l\'[Éditeur de préférences](Preferences_Editor/fr.md), **Édition → Préférences → FEM**. +{{TOCright}} La fenêtre des préférences de l\'[atelier FEM](FEM_Workbench/fr.md) se trouve dans l\'[Éditeur de préférences](Preferences_Editor/fr.md), **Édition → Préférences → FEM**. Il y a plusieurs onglets dans les préférences de l\'atelier FEM, en commençant par la configuration **Générale** de l\'atelier. Le reste des onglets contrôle la façon dont FEM interagit avec les solveurs externes supportés. @@ -36,3 +36,6 @@ Les solveurs externes actuellement acceptés sont : }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > FEM Preferences/fr diff --git a/wiki/translations/fr/FEM_ResultShow.md b/wiki/translations/fr/FEM_ResultShow.md index e5a655f817..3d3ce36458 100644 --- a/wiki/translations/fr/FEM_ResultShow.md +++ b/wiki/translations/fr/FEM_ResultShow.md @@ -8,6 +8,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ResultShow/fr + ## Description ## Utilisation @@ -23,4 +25,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ResultShow/fr diff --git a/wiki/translations/fr/FEM_ResultsPurge.md b/wiki/translations/fr/FEM_ResultsPurge.md index a0257d4240..1452c3cda2 100644 --- a/wiki/translations/fr/FEM_ResultsPurge.md +++ b/wiki/translations/fr/FEM_ResultsPurge.md @@ -8,6 +8,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM ResultsPurge/fr + ## Description Supprime tous les objets résultats du conteneur d\'analyse actif dans la [Vue en arborescence](Tree_view/fr.md). @@ -27,4 +29,7 @@ A faire : Ajouter une capture d\'écran avant et après {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ResultsPurge/fr diff --git a/wiki/translations/fr/FEM_Shear_of_a_Composite_Block.md b/wiki/translations/fr/FEM_Shear_of_a_Composite_Block.md index c38f20e7fb..e63f5b9bed 100644 --- a/wiki/translations/fr/FEM_Shear_of_a_Composite_Block.md +++ b/wiki/translations/fr/FEM_Shear_of_a_Composite_Block.md @@ -1,5 +1,5 @@ # FEM Shear of a Composite Block/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic=Analyse d'éléments finis |Level=Débutant/intermédiaire |Time=30 minutes @@ -99,4 +99,7 @@ Le fichier FC pour ce tutoriel est joint ci-dessous comme point de départ. -Amusez-vous bien! {{Tutorials navi}} {{FEM Tools navi}} +Amusez-vous bien! {{Tutorials navi}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM Shear of a Composite Block/fr diff --git a/wiki/translations/fr/FEM_Solver.md b/wiki/translations/fr/FEM_Solver.md index 76e3a8e125..0994616671 100644 --- a/wiki/translations/fr/FEM_Solver.md +++ b/wiki/translations/fr/FEM_Solver.md @@ -1,6 +1,4 @@ # FEM Solver/fr - - ## Préface @@ -217,4 +215,7 @@ Technog a été utilisé avec succès dans FreeCAD en tant que substitut de Calc {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Solver/fr diff --git a/wiki/translations/fr/FEM_SolverCalculiX.md b/wiki/translations/fr/FEM_SolverCalculiX.md index 99d3aa1d52..0bbda615db 100644 --- a/wiki/translations/fr/FEM_SolverCalculiX.md +++ b/wiki/translations/fr/FEM_SolverCalculiX.md @@ -8,6 +8,8 @@ SeeAlso:[Tutoriel FEM](FEM_tutorial/fr.md) --- +# FEM SolverCalculiX/fr + ## Description ToDo @@ -24,4 +26,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverCalculiX/fr diff --git a/wiki/translations/fr/FEM_SolverCalculixCxxtools.md b/wiki/translations/fr/FEM_SolverCalculixCxxtools.md index 35de3488e0..8ab628f172 100644 --- a/wiki/translations/fr/FEM_SolverCalculixCxxtools.md +++ b/wiki/translations/fr/FEM_SolverCalculixCxxtools.md @@ -8,6 +8,8 @@ SeeAlso:[FEM Tutoriel](FEM_tutorial/fr.md) --- +# FEM SolverCalculixCxxtools/fr + ## Description [CalculiXccxTools](FEM_SolverCalculixCxxtools/fr.md) permet d\'utiliser le solveur [CalculiX](https://fr.wikipedia.org/wiki/Calculix). Vous pouvez l\'utiliser pour: @@ -130,4 +132,7 @@ La documentation originale de CalculiX est disponible à l\'adresse FEM SolverCalculixCxxtools/fr diff --git a/wiki/translations/fr/FEM_SolverControl.md b/wiki/translations/fr/FEM_SolverControl.md index 6822db3e90..e27e52255c 100644 --- a/wiki/translations/fr/FEM_SolverControl.md +++ b/wiki/translations/fr/FEM_SolverControl.md @@ -8,6 +8,8 @@ SeeAlso:[FEM Résolution](FEM_SolverRun/fr.md) --- +# FEM SolverControl/fr + ## Description ## Utilisation @@ -18,4 +20,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverControl/fr diff --git a/wiki/translations/fr/FEM_SolverElmer.md b/wiki/translations/fr/FEM_SolverElmer.md index 587d3cb824..69168efc6e 100644 --- a/wiki/translations/fr/FEM_SolverElmer.md +++ b/wiki/translations/fr/FEM_SolverElmer.md @@ -8,6 +8,8 @@ SeeAlso:[FEM Solveur CalculiX](FEM_SolverCalculiX/fr.md), [FEM Solveur Z88](FEM_SolverZ88.md), [FEM Tutoriel](FEM_tutorial/fr.md) --- +# FEM SolverElmer/fr + ## Description [Elmer](https://www.elmerfem.org) est un logiciel de simulation multiphysique open source principalement développé par le CSC - IT Center for Science (CSC). Le développement d\'Elmer a commencé en 1995 en collaboration avec des universités finlandaises, des instituts de recherche et l\'industrie. Après sa publication open source en 2005, l\'utilisation et le développement d\'Elmer sont devenus internationaux. @@ -98,4 +100,7 @@ Le lien suivant donne accès à la [documentation complète pour Elmer](https:// {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverElmer/fr diff --git a/wiki/translations/fr/FEM_SolverRun.md b/wiki/translations/fr/FEM_SolverRun.md index 8b15d8592f..069974965c 100644 --- a/wiki/translations/fr/FEM_SolverRun.md +++ b/wiki/translations/fr/FEM_SolverRun.md @@ -8,6 +8,8 @@ SeeAlso:[FEM Réglage du solveur](FEM_SolverControl/fr.md) --- +# FEM SolverRun/fr + ## Description ## Utilisation @@ -23,4 +25,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverRun/fr diff --git a/wiki/translations/fr/FEM_SolverZ88.md b/wiki/translations/fr/FEM_SolverZ88.md index faafd8f4b9..9b36f614b8 100644 --- a/wiki/translations/fr/FEM_SolverZ88.md +++ b/wiki/translations/fr/FEM_SolverZ88.md @@ -8,6 +8,8 @@ SeeAlso:[FEM Tutoriel](FEM_tutorial/fr.md) --- +# FEM SolverZ88/fr + ## Description ToDo @@ -26,4 +28,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverZ88/fr diff --git a/wiki/translations/fr/FEM_Tutorial_Python.md b/wiki/translations/fr/FEM_Tutorial_Python.md index ac8a184225..e3ea429a67 100644 --- a/wiki/translations/fr/FEM_Tutorial_Python.md +++ b/wiki/translations/fr/FEM_Tutorial_Python.md @@ -1,7 +1,4 @@ # FEM Tutorial Python/fr - - - {{TutorialInfo/fr |Topic=Analyse par Éléménts Finis |Level=Intermédiaire @@ -604,3 +601,6 @@ Amusez-vous! Aussi, si vous avez des commentaires ou des améliorations, n\'hés }} {{FEM Tools navi}} [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > FEM Tutorial Python/fr diff --git a/wiki/translations/fr/FEM_Workbench.md b/wiki/translations/fr/FEM_Workbench.md index dff872d4c0..443a3f861d 100644 --- a/wiki/translations/fr/FEM_Workbench.md +++ b/wiki/translations/fr/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/fr - - - - - -Icône de l\'atelier FEM +# Icône de l\'atelier FEM FEM Workbench/fr {{TOCright}} @@ -278,3 +272,6 @@ Un guide du développeur a été rédigé pour aider les utilisateurs expérimen }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/fr diff --git a/wiki/translations/fr/FEM_project.md b/wiki/translations/fr/FEM_project.md index 272d9b3520..b346e5033e 100644 --- a/wiki/translations/fr/FEM_project.md +++ b/wiki/translations/fr/FEM_project.md @@ -1,7 +1,4 @@ # FEM project/fr - - - ** Ce plan de développement est probablement obsolète. Pour plus d'informations, voir [Plan de développement](Development_roadmap/fr.md).
Si vous n'êtes pas impliqué dans le développement discuté ici :
@@ -54,3 +51,6 @@ Voir [Solveur](FEM_Solver/fr.md) }} [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > FEM project/fr diff --git a/wiki/translations/fr/FEM_tutorial.md b/wiki/translations/fr/FEM_tutorial.md index b68c3e3631..194e904aa9 100644 --- a/wiki/translations/fr/FEM_tutorial.md +++ b/wiki/translations/fr/FEM_tutorial.md @@ -1,7 +1,4 @@ # FEM tutorial/fr - - - {{TutorialInfo/fr |Topic=Analyse par éléments finis |Level=Débutant @@ -112,4 +109,7 @@ Nous avons complété la procédure de base de l\'[atelier FEM](FEM_Workbench/fr {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM tutorial/fr diff --git a/wiki/translations/fr/Fasteners_BOM.md b/wiki/translations/fr/Fasteners_BOM.md index 2de30f0edf..38282806ad 100644 --- a/wiki/translations/fr/Fasteners_BOM.md +++ b/wiki/translations/fr/Fasteners_BOM.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Fasteners BOM/fr + ## Description [Fasteners BOM](Fasteners_BOM/fr.md) génère une nomenclature. Cet outil fait partie de [Fasteners](Fasteners_Workbench/fr.md), un [atelier externe](external_workbenches/fr.md). @@ -57,3 +59,6 @@ }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Fasteners BOM/fr diff --git a/wiki/translations/fr/Fasteners_Workbench.md b/wiki/translations/fr/Fasteners_Workbench.md index ab1c2b5e61..4eb890ae67 100644 --- a/wiki/translations/fr/Fasteners_Workbench.md +++ b/wiki/translations/fr/Fasteners_Workbench.md @@ -1,7 +1,4 @@ -# Fasteners Workbench/fr - - -Icône de l\'atelier externe Fasteners +# Icône de l\'atelier externe Fasteners Fasteners Workbench/fr {{TOCright}} @@ -272,3 +269,6 @@ Pour une description détaillée, voir [ici](http://theseger.com/projects/2015/0 [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Fasteners](Category:Fasteners.md) + +--- +[documentation index](../README.md) > Fasteners Workbench/fr diff --git a/wiki/translations/fr/Fcstd_file_format.md b/wiki/translations/fr/Fcstd_file_format.md index f5c78ac0cb..c55d678f0d 100644 --- a/wiki/translations/fr/Fcstd_file_format.md +++ b/wiki/translations/fr/Fcstd_file_format.md @@ -1,2 +1,5 @@ # Fcstd file format/fr 1. REDIRECT [File\_Format\_FCStd/fr](File_Format_FCStd/fr.md) + +--- +[documentation index](../README.md) > Fcstd file format/fr diff --git a/wiki/translations/fr/Feature.md b/wiki/translations/fr/Feature.md index 7974839531..1a4cce78d5 100644 --- a/wiki/translations/fr/Feature.md +++ b/wiki/translations/fr/Feature.md @@ -1,6 +1,4 @@ # Feature/fr - - ## Introduction Dans FreeCAD, le mot \"[Feature](Feature/fr.md)\" est normalement utilisé pour faire référence à un objet [PartDesign Feature](PartDesign_Feature/fr.md) (classe `PartDesign::Feature`) défini par la classe [PartDesign Workbench](PartDesign_Workbench/fr.md). Il s\'agit d\'une opération ou d\'une étape de modélisation effectuée pour créer ou modifier un solide [Shape](Shape/fr.md) en suivant le paradigme [feature publishing](feature_editing/fr.md). @@ -32,3 +30,6 @@ Dans un sens plus spécifique, une \"entité\" est une étape de modélisation u }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Feature/fr diff --git a/wiki/translations/fr/FeaturePython_Custom_Properties.md b/wiki/translations/fr/FeaturePython_Custom_Properties.md index c87902be65..4c787c7bfe 100644 --- a/wiki/translations/fr/FeaturePython_Custom_Properties.md +++ b/wiki/translations/fr/FeaturePython_Custom_Properties.md @@ -1,5 +1,5 @@ # FeaturePython Custom Properties/fr - {{TOCright}} +{{TOCright}}
@@ -1259,3 +1259,6 @@ obj.ThePropertyName // returns {{TODO}}"example value for getter" [Category:API/fr](Category:API/fr.md) [Category:Developer Documentation/fr](Category:Developer_Documentation/fr.md) [Category:API](Category:API.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FeaturePython Custom Properties/fr diff --git a/wiki/translations/fr/FeaturePython_Objects.md b/wiki/translations/fr/FeaturePython_Objects.md index 92985cfc33..6794529063 100644 --- a/wiki/translations/fr/FeaturePython_Objects.md +++ b/wiki/translations/fr/FeaturePython_Objects.md @@ -1,2 +1,5 @@ # FeaturePython Objects/fr 1. REDIRECT [Create\_a\_FeaturePython\_object\_part\_I/fr](Create_a_FeaturePython_object_part_I/fr.md) + +--- +[documentation index](../README.md) > FeaturePython Objects/fr diff --git a/wiki/translations/fr/FeaturePython_methods.md b/wiki/translations/fr/FeaturePython_methods.md index e8fe8a6be6..084cf3ccd3 100644 --- a/wiki/translations/fr/FeaturePython_methods.md +++ b/wiki/translations/fr/FeaturePython_methods.md @@ -1,7 +1,4 @@ # FeaturePython methods/fr - - - {{TOCright}} ## Introduction @@ -73,3 +70,6 @@ Remarquez que getPyObject() et init() sont des cas particuliers et ne suivent pa }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FeaturePython methods/fr diff --git a/wiki/translations/fr/Feature_editing.md b/wiki/translations/fr/Feature_editing.md index 3719f763ab..53f55bce3c 100644 --- a/wiki/translations/fr/Feature_editing.md +++ b/wiki/translations/fr/Feature_editing.md @@ -1,5 +1,5 @@ # Feature editing/fr - {{TOCright}} +{{TOCright}} ## Introduction @@ -169,3 +169,6 @@ La page des [tutoriels](Tutorials/fr.md) fournit des exemples d\'utilisation de }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Feature editing/fr diff --git a/wiki/translations/fr/Feature_list.md b/wiki/translations/fr/Feature_list.md index a31984684d..4193a332f2 100644 --- a/wiki/translations/fr/Feature_list.md +++ b/wiki/translations/fr/Feature_list.md @@ -1,6 +1,4 @@ # Feature list/fr - - Vous trouverez ici une liste approfondie, mais cependant incomplète, des fonctionnalités implémentées dans FreeCAD. Si vous voulez vous renseigner sur les fonctionnalités à venir, vous pouvez consulter le [calendrier de développement](Development_roadmap/fr.md). Pour un aperçu rapide, la page [captures d\'écran](Screenshots/fr.md) est un bon endroit à visiter. @@ -105,3 +103,6 @@ Des utilisateurs avancés ont créé différents [Ateliers externes](external_wo [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/fr diff --git a/wiki/translations/fr/File_Format_FCStd.md b/wiki/translations/fr/File_Format_FCStd.md index f70b0e45a0..4e03083bde 100644 --- a/wiki/translations/fr/File_Format_FCStd.md +++ b/wiki/translations/fr/File_Format_FCStd.md @@ -1,5 +1,5 @@ # File Format FCStd/fr - {{TOCright}} +{{TOCright}} ## Présentation @@ -167,3 +167,6 @@ Voir le fil du forum [PDF inside the project](https://forum.freecadweb.org/viewt [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > File Format FCStd/fr diff --git a/wiki/translations/fr/Fine-tuning.md b/wiki/translations/fr/Fine-tuning.md index bf0e822e08..92fbeeb5d3 100644 --- a/wiki/translations/fr/Fine-tuning.md +++ b/wiki/translations/fr/Fine-tuning.md @@ -1,7 +1,4 @@ # Fine-tuning/fr - - - {{TOCright}} Cette page contient différents réglages et paramètres que vous pouvez utiliser pour affiner votre installation FreeCAD ou pour résoudre certains problèmes. @@ -77,3 +74,6 @@ Tous les autres caractères sont traités littéralement. Si le nom de fichier r [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Fine-tuning/fr diff --git a/wiki/translations/fr/Flamingo_Workbench.md b/wiki/translations/fr/Flamingo_Workbench.md index 639b6709e5..091173269a 100644 --- a/wiki/translations/fr/Flamingo_Workbench.md +++ b/wiki/translations/fr/Flamingo_Workbench.md @@ -1,5 +1,5 @@ # Flamingo Workbench/fr - **L'atelier Flamingo (Python2/Qt4) a été remplacé par l'atelier Dodo (Python3/Qt5). +**L'atelier Flamingo (Python2/Qt4) a été remplacé par l'atelier Dodo (Python3/Qt5). Cette page wiki mettra en évidence les différences entre ces deux ateliers.** ## Introduction @@ -521,3 +521,6 @@ De nouveaux ateliers sont en développement, tenez vous au courant! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Flamingo Workbench/fr diff --git a/wiki/translations/fr/FreeCAD-Ship_s60_tutorial.md b/wiki/translations/fr/FreeCAD-Ship_s60_tutorial.md index cf9332bbf6..d8a1641da8 100644 --- a/wiki/translations/fr/FreeCAD-Ship_s60_tutorial.md +++ b/wiki/translations/fr/FreeCAD-Ship_s60_tutorial.md @@ -1,7 +1,4 @@ # FreeCAD-Ship s60 tutorial/fr - - - {{TutorialInfo/fr |Topic=Atelier Bateau |Level=Débutant @@ -459,3 +456,6 @@ The [FreeCAD Ship s60 tutorial (II)](FreeCAD-Ship_s60_tutorial_(II).md) is the s {{Ship Tools navi }} + +--- +[documentation index](../README.md) > FreeCAD-Ship s60 tutorial/fr diff --git a/wiki/translations/fr/FreeCAD-Ship_s60_tutorial_(II).md b/wiki/translations/fr/FreeCAD-Ship_s60_tutorial_(II).md index 37a7ab4f29..4e959e12a3 100644 --- a/wiki/translations/fr/FreeCAD-Ship_s60_tutorial_(II).md +++ b/wiki/translations/fr/FreeCAD-Ship_s60_tutorial_(II).md @@ -1,7 +1,4 @@ # FreeCAD-Ship s60 tutorial (II)/fr - - - {{TutorialInfo/fr |Topic=Ship Workbench |Level= Beginner @@ -296,3 +293,6 @@ Bien entendu, cet exemple n'est pas réel (d'abord, tous les réservoirs de carb {{Ship Tools navi }} + +--- +[documentation index](../README.md) > FreeCAD-Ship s60 tutorial (II)/fr diff --git a/wiki/translations/fr/FreeCADGui_API.md b/wiki/translations/fr/FreeCADGui_API.md index d6d286ec4d..7d5d947f68 100644 --- a/wiki/translations/fr/FreeCADGui_API.md +++ b/wiki/translations/fr/FreeCADGui_API.md @@ -1,5 +1,5 @@ # FreeCADGui API/fr - **(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, voir la [https://www.freecadweb.org/api autogenerated API documentation], ou générez vous-même la documentation, voir [Source documentation](Source_documentation/fr.md).** +**(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, voir la [https://www.freecadweb.org/api autogenerated API documentation], ou générez vous-même la documentation, voir [Source documentation](Source_documentation/fr.md).** Ce module est le pendant du module FreeCAD. Il contient tout ce qui touche à l\'interface utilisateur et les vues 3D. Exemple: ```python @@ -70,3 +70,6 @@ gui_doc.activateWorkbench("myWorkbench") [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FreeCADGui API/fr diff --git a/wiki/translations/fr/FreeCADShip_Workbench.md b/wiki/translations/fr/FreeCADShip_Workbench.md index 5ab867746b..699375e00b 100644 --- a/wiki/translations/fr/FreeCADShip_Workbench.md +++ b/wiki/translations/fr/FreeCADShip_Workbench.md @@ -1,2 +1,5 @@ # FreeCADShip Workbench/fr 1. REDIRECT [Ship\_Workbench/fr](Ship_Workbench/fr.md) + +--- +[documentation index](../README.md) > FreeCADShip Workbench/fr diff --git a/wiki/translations/fr/FreeCAD_API.md b/wiki/translations/fr/FreeCAD_API.md index 99b003dba2..9613c4c674 100644 --- a/wiki/translations/fr/FreeCAD_API.md +++ b/wiki/translations/fr/FreeCAD_API.md @@ -1,5 +1,5 @@ # FreeCAD API/fr - **(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir [Source documentation](Source_documentation/fr.md).** +**(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir [Source documentation](Source_documentation/fr.md).** C\'est le module principal (root) de FreeCAD. Il peut également être appelé par \"App\" de l\'interprète FreeCAD. Il contient tout ce qui est nécessaire pour manipuler des documents et leur contenu (objets) @@ -62,3 +62,6 @@ mydoc = FreeCAD.activeDocument() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FreeCAD API/fr diff --git a/wiki/translations/fr/FreeCAD_Build_Tool.md b/wiki/translations/fr/FreeCAD_Build_Tool.md index 8e18f3e2ca..1e17579fdf 100644 --- a/wiki/translations/fr/FreeCAD_Build_Tool.md +++ b/wiki/translations/fr/FreeCAD_Build_Tool.md @@ -1,10 +1,4 @@ # FreeCAD Build Tool/fr - - - - - - {{TOCright}} ## Présentation @@ -72,3 +66,6 @@ La commande \"CM\" [crée un nouveau module d\'application (atelier)](Workbench_ [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Build Tool/fr diff --git a/wiki/translations/fr/FreeCAD_Community_Portal.md b/wiki/translations/fr/FreeCAD_Community_Portal.md index 2a860c821b..016bf2a546 100644 --- a/wiki/translations/fr/FreeCAD_Community_Portal.md +++ b/wiki/translations/fr/FreeCAD_Community_Portal.md @@ -1,6 +1,4 @@ # FreeCAD Community Portal/fr - - C\'est l\'endroit où mettre toutes sortes de choses liées à FreeCAD! Si vous travaillez sur quelque chose lié à FreeCAD, veuillez l\'inclure ici! ## Endroits où FreeCAD apparaît sur le net @@ -87,3 +85,6 @@ Ce sont des ateliers, scripts, macros et addons développés par la communauté [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > FreeCAD Community Portal/fr diff --git a/wiki/translations/fr/FreeCAD_Docker_CLI_mode.md b/wiki/translations/fr/FreeCAD_Docker_CLI_mode.md index 74af85e87d..b4a81bfa65 100644 --- a/wiki/translations/fr/FreeCAD_Docker_CLI_mode.md +++ b/wiki/translations/fr/FreeCAD_Docker_CLI_mode.md @@ -1,10 +1,4 @@ # FreeCAD Docker CLI mode/fr - - - - - - {{TOCright}} ## Présentation @@ -78,6 +72,5 @@ Pour lancer FreeCAD dans l\'image de Docker, exécutez simplement la commande Fr - Fil du forum FreeCAD : - - - +--- +[documentation index](../README.md) > FreeCAD Docker CLI mode/fr diff --git a/wiki/translations/fr/FreeCAD_Scripting_Basics.md b/wiki/translations/fr/FreeCAD_Scripting_Basics.md index b29face107..44480718c6 100644 --- a/wiki/translations/fr/FreeCAD_Scripting_Basics.md +++ b/wiki/translations/fr/FreeCAD_Scripting_Basics.md @@ -1,7 +1,4 @@ # FreeCAD Scripting Basics/fr - - - {{TOCright}} ## Les scripts Python dans FreeCAD @@ -211,3 +208,6 @@ Maintenant, vous pouvez vraiment commencer à vous amuser avec FreeCAD ! Pour un }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Scripting Basics/fr diff --git a/wiki/translations/fr/FreeCAD_and_DWG_Import.md b/wiki/translations/fr/FreeCAD_and_DWG_Import.md index c67f154744..1286686c99 100644 --- a/wiki/translations/fr/FreeCAD_and_DWG_Import.md +++ b/wiki/translations/fr/FreeCAD_and_DWG_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DWG Import/fr - {{TOCright}} +{{TOCright}} {{Fake heading|sub=4|< Retour à [FreeCAD comment importer exporter](FreeCAD_Howto_Import_Export/fr.md)}} @@ -134,3 +134,6 @@ Dans la version de développement comme mentionné ci-dessus, vous pouvez passer [Category:File\_Formats](Category:File_Formats.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > FreeCAD and DWG Import/fr diff --git a/wiki/translations/fr/FreeCAD_and_DXF_Import.md b/wiki/translations/fr/FreeCAD_and_DXF_Import.md index 2014222285..9733edc768 100644 --- a/wiki/translations/fr/FreeCAD_and_DXF_Import.md +++ b/wiki/translations/fr/FreeCAD_and_DXF_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DXF Import/fr - {{TOCright}} +{{TOCright}} ## Contexte @@ -52,3 +52,6 @@ Vous pouvez également essayer: Pour un aperçu de toutes les préférences liées à DXF, voir les [Préférences d\'Import Export](Import_Export_Preferences/fr#DXF.md). [Category:User\_Documentation](Category:User_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > FreeCAD and DXF Import/fr diff --git a/wiki/translations/fr/FreeCAD_and_Mesh_Import.md b/wiki/translations/fr/FreeCAD_and_Mesh_Import.md index da381a36ae..d028d6254d 100644 --- a/wiki/translations/fr/FreeCAD_and_Mesh_Import.md +++ b/wiki/translations/fr/FreeCAD_and_Mesh_Import.md @@ -1,7 +1,4 @@ # FreeCAD and Mesh Import/fr - - - {{TOCright}} ## Après l\'importation @@ -45,3 +42,6 @@ Eh bien, votre coque semble avoir des erreurs, peut-être qu\'elle n\'est pas fe - [FreeCAD Howto Import Export](FreeCAD_and_Mesh_Import/fr.md) [Category:User\_Documentation](Category:User_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > FreeCAD and Mesh Import/fr diff --git a/wiki/translations/fr/FreeCAD_development_model_project.md b/wiki/translations/fr/FreeCAD_development_model_project.md index db44fa10e1..c02d0a0b83 100644 --- a/wiki/translations/fr/FreeCAD_development_model_project.md +++ b/wiki/translations/fr/FreeCAD_development_model_project.md @@ -1,7 +1,4 @@ # FreeCAD development model project/fr - - - ** Ce plan de développement est probablement obsolète. Pour plus d'informations, voir [Plan de développement](Development_roadmap/fr.md).
Si vous n'êtes pas impliqué dans le développement discuté ici :
@@ -71,3 +68,6 @@ Les règles décidées et les informations sont sur décrites sur le document [F [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > FreeCAD development model project/fr diff --git a/wiki/translations/fr/FreeCAD_used_in_production.md b/wiki/translations/fr/FreeCAD_used_in_production.md index 14251bd1ea..fb6d16db04 100644 --- a/wiki/translations/fr/FreeCAD_used_in_production.md +++ b/wiki/translations/fr/FreeCAD_used_in_production.md @@ -1,9 +1,4 @@ # FreeCAD used in production/fr - - - - - ## Aperçu @@ -87,3 +82,6 @@ Afin d\'ajouter quoi que ce soit à cette liste, cela doit être approuvé par l [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > FreeCAD used in production/fr diff --git a/wiki/translations/fr/FreeCAD_vector_math_library.md b/wiki/translations/fr/FreeCAD_vector_math_library.md index 867f98590d..8453676c82 100644 --- a/wiki/translations/fr/FreeCAD_vector_math_library.md +++ b/wiki/translations/fr/FreeCAD_vector_math_library.md @@ -1,6 +1,4 @@ # FreeCAD vector math library/fr - - ## Introduction Il s\'agit d\'un module [Python](Python/fr.md) contenant quelques fonctions utiles pour manipuler les vecteurs. Cette bibliothèque est incluse dans l\'[atelier Draft](Draft_Workbench/fr.md) et est accessible comme ceci depuis l\'interpréteur Python : @@ -88,3 +86,6 @@ def project(first, other): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD vector math library/fr diff --git a/wiki/translations/fr/Frequently_asked_questions.md b/wiki/translations/fr/Frequently_asked_questions.md index fdf72a1767..1c31505b54 100644 --- a/wiki/translations/fr/Frequently_asked_questions.md +++ b/wiki/translations/fr/Frequently_asked_questions.md @@ -1,9 +1,4 @@ # Frequently asked questions/fr - - - - - Cette page tente de répondre aux questions les plus fréquemment posées sur les forums FreeCAD. Si vous avez un problème ou une question concernant FreeCAD, vérifiez ci dessous avant tout. Puis, si vous ne trouvez pas de réponse à votre question, allez voir et au besoin poster sur le [forum de FreeCAD](http://forum.freecadweb.org/viewforum.php?f=3) ! @@ -281,3 +276,6 @@ Oui, vous pouvez utiliser les composants essentiels de FreeCAD dans d'autres app [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Frequently asked questions/fr diff --git a/wiki/translations/fr/Getting_started.md b/wiki/translations/fr/Getting_started.md index 946ec61f99..6821e80c02 100644 --- a/wiki/translations/fr/Getting_started.md +++ b/wiki/translations/fr/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/fr - - - - - - {{TOCright}} ## Avant-propos @@ -175,3 +169,6 @@ Et enfin, une des caractéristiques les plus puissantes de FreeCAD est l\'enviro {{Userdocnavi/fr}} [Category:User Documentation/fr](Category:User_Documentation/fr.md) + +--- +[documentation index](../README.md) > Getting started/fr diff --git a/wiki/translations/fr/Git_buildpackage.md b/wiki/translations/fr/Git_buildpackage.md index ae95285dd3..2bb6d33fde 100644 --- a/wiki/translations/fr/Git_buildpackage.md +++ b/wiki/translations/fr/Git_buildpackage.md @@ -1,6 +1,4 @@ # Git buildpackage/fr - - Les workflows de travail de développement Debian modernes impliquent un [packaging avec Git](https://wiki.debian.org/PackagingWithGit) et l\'outil principal pour le faire est [gbp.html git-buildpackage](http://honk.sigxcpu.org/projects/git-buildpackage/manual-html/). git-buildpackage fournit une commande gbp avec plusieurs options similaires à la commande git elle-même. Beaucoup de ces commandes ne sont elles-mêmes qu\'encapsuleur d\'outils Debian de niveau inférieur. Par conséquent la complexité de l\'apprentissage de l\'empaquetage peut être assez élevée. Pour contourner cela, voici les étapes courtes et simples pour commencer avec git-buildpackage. Cela devrait fonctionner sur presque toutes les distributions basées sur Debian, mais je recommande de travailler dessus dans un environnement propre et séparé, une machine virtuelle [Debian Unstable](Debian_Unstable/fr.md). @@ -36,3 +34,6 @@ Location: ~/.quiltrc [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Git buildpackage/fr diff --git a/wiki/translations/fr/GlTF.md b/wiki/translations/fr/GlTF.md index e80bbdebcd..296ba88ba3 100644 --- a/wiki/translations/fr/GlTF.md +++ b/wiki/translations/fr/GlTF.md @@ -1,7 +1,4 @@ # GlTF/fr - - - {{TOCright}} ## Description @@ -44,3 +41,6 @@ Source: [fil du forum](https://forum.freecadweb.org/viewtopic.php?f=8&t=31680&p= [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > GlTF/fr diff --git a/wiki/translations/fr/Glossary.md b/wiki/translations/fr/Glossary.md index 9ce128a051..c6d7f80524 100644 --- a/wiki/translations/fr/Glossary.md +++ b/wiki/translations/fr/Glossary.md @@ -1,9 +1,4 @@ # Glossary/fr - - - - - Cette page est le glossaire des termes et définitions fréquemment utilisées dans FreeCAD. Aller à la lettre : {{CompactTOC|center=yes}} @@ -1137,3 +1132,6 @@ Aller à la lettre : {{CompactTOC|center=yes}} [Category:Wiki](Category:Wiki.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Wiki](Category:Wiki.md) > Glossary/fr diff --git a/wiki/translations/fr/Group.md b/wiki/translations/fr/Group.md index de8c133057..ae6fbeff32 100644 --- a/wiki/translations/fr/Group.md +++ b/wiki/translations/fr/Group.md @@ -1,2 +1,5 @@ # Group/fr 1. REDIRECT [Std\_Group/fr](Std_Group/fr.md) + +--- +[documentation index](../README.md) > Group/fr diff --git a/wiki/translations/fr/GuiCommand_model.md b/wiki/translations/fr/GuiCommand_model.md index e9a2d32328..e0e64e1cf2 100644 --- a/wiki/translations/fr/GuiCommand_model.md +++ b/wiki/translations/fr/GuiCommand_model.md @@ -10,6 +10,8 @@ SeeAlso: --- +# GuiCommand model/fr + ## Description tant que la page est en construction, ajouter le template [Template:UnfinishedDocu](Template:UnfinishedDocu.md) en haut de la page le modèle en mettant le code ****. @@ -207,3 +209,6 @@ Optional. }} [Category:Wiki:Example](Category:Wiki:Example.md) + +--- +[documentation index](../README.md) > [API/fr]] et ](Category:API/fr]] et .md) > GuiCommand model/fr diff --git a/wiki/translations/fr/Gui_Command.md b/wiki/translations/fr/Gui_Command.md index b03bc32cb0..426e8e9a17 100644 --- a/wiki/translations/fr/Gui_Command.md +++ b/wiki/translations/fr/Gui_Command.md @@ -1,5 +1,5 @@ # Gui Command/fr - Une GuiCommand, est l\'une des fonctions les plus importantes du point de vue interaction entre l\'utilisateur et FreeCAD. Chaque fois que l\'utilisateur sélectionne un élément du menu, ou appuie sur un **bouton** de la barre d\'outils, il active une GuiCommand. Voici quelques-uns des attributs d\'une GuiCommand : +Une GuiCommand, est l\'une des fonctions les plus importantes du point de vue interaction entre l\'utilisateur et FreeCAD. Chaque fois que l\'utilisateur sélectionne un élément du menu, ou appuie sur un **bouton** de la barre d\'outils, il active une GuiCommand. Voici quelques-uns des attributs d\'une GuiCommand : - Définir un nom - Contenir une icône @@ -60,4 +60,7 @@ Espérons que cela devienne vrai pour toutes les GuiCommands de la [liste des co {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Gui Command/fr diff --git a/wiki/translations/fr/Help.md b/wiki/translations/fr/Help.md index 504b17d27b..0313c0f0f6 100644 --- a/wiki/translations/fr/Help.md +++ b/wiki/translations/fr/Help.md @@ -1,6 +1,4 @@ # Help/fr - - ## Forum Le premier endroit où vous pouvez demander de l\'aide est le [forum FreeCAD](https://forum.freecadweb.org/viewforum.php?f=3). Veuillez lire [cet article](https://forum.freecadweb.org/viewtopic.php?f=3&t=2264) avant de poser une question. N\'oubliez pas que des [informations importantes](Important_information.md) sur votre système sont nécessaires lorsque vous demandez de l\'aide. @@ -40,3 +38,6 @@ Nous avons un [serveur Discord officiel dédié à FreeCAD](https://discord.gg/N [Category:Help](Category:Help.md) + +--- +[documentation index](../README.md) > [Help](Category:Help.md) > Help/fr diff --git a/wiki/translations/fr/Help_FreeCAD.md b/wiki/translations/fr/Help_FreeCAD.md index 6b200ceacb..a655cb3413 100644 --- a/wiki/translations/fr/Help_FreeCAD.md +++ b/wiki/translations/fr/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/fr - - ## Introduction @@ -90,3 +88,6 @@ L\'écriture de code pour FreeCAD n\'est pas difficile, et vous n\'avez besoin d [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command_Reference|Command Reference]] liste toutes les ](Category:Command_Reference|Command Reference]] liste toutes les .md) > Help FreeCAD/fr diff --git a/wiki/translations/fr/HiDPI_support.md b/wiki/translations/fr/HiDPI_support.md index 624c25324b..9f6a4c0000 100644 --- a/wiki/translations/fr/HiDPI_support.md +++ b/wiki/translations/fr/HiDPI_support.md @@ -1,7 +1,4 @@ # HiDPI support/fr - - - ** Ce plan de développement est probablement obsolète. Pour plus d'informations, voir [Plan de développement](Development_roadmap/fr.md).
Si vous n'êtes pas impliqué dans le développement discuté ici :
@@ -228,3 +225,6 @@ Qt ne fournit pas la fonctionnalité pour récupérer cette valeur. Nous devons [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > HiDPI support/fr diff --git a/wiki/translations/fr/History.md b/wiki/translations/fr/History.md index e7f6d532fb..ddb5dde90e 100644 --- a/wiki/translations/fr/History.md +++ b/wiki/translations/fr/History.md @@ -1,5 +1,5 @@ # History/fr - \_\_FORCETOC\_\_ +\_\_FORCETOC\_\_ ## Historique @@ -177,3 +177,6 @@ En avril 2019, l\'équipe de développeurs principaux a été élargie: Jürgen, - [Announcing FreeCAD Project](http://www.opencascade.org/org/forum/thread_6572/?forum=11) Annonces sur le forum Open Cascade [Category:News](Category:News.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > History/fr diff --git a/wiki/translations/fr/How_to_install_additional_workbenches.md b/wiki/translations/fr/How_to_install_additional_workbenches.md index bae627505c..b950095b0c 100644 --- a/wiki/translations/fr/How_to_install_additional_workbenches.md +++ b/wiki/translations/fr/How_to_install_additional_workbenches.md @@ -1,5 +1,5 @@ # How to install additional workbenches/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic=Programmation |Level=Programmeur moyen |Time=15 minutes @@ -169,3 +169,6 @@ Pour cet exemple, supposons que vous ayez choisi l\'[Atelier Courbes](Curves_Wor {{Powerdocnavi}} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External Workbenches](Category:External Workbenches.md) > How to install additional workbenches/fr diff --git a/wiki/translations/fr/How_to_install_macros.md b/wiki/translations/fr/How_to_install_macros.md index 6d395ba3b8..5c7d7c84fd 100644 --- a/wiki/translations/fr/How_to_install_macros.md +++ b/wiki/translations/fr/How_to_install_macros.md @@ -1,5 +1,5 @@ # How to install macros/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic=Programmation |Level=Programmeur moyen |Time=15 minutes @@ -474,3 +474,6 @@ et validez en cliquant sur le bouton **OK**. }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > How to install macros/fr diff --git a/wiki/translations/fr/IfcOpenShell.md b/wiki/translations/fr/IfcOpenShell.md index 44ca979f70..78f61ed611 100644 --- a/wiki/translations/fr/IfcOpenShell.md +++ b/wiki/translations/fr/IfcOpenShell.md @@ -1,6 +1,4 @@ # IfcOpenShell/fr - - ## Description @@ -451,3 +449,6 @@ Le projet IfcOpenShell a également développé \"IFC Pipeline\", un programme d {{FEM Tools navi}} [Category:BIM](Category:BIM.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > IfcOpenShell/fr diff --git a/wiki/translations/fr/IfcPlusPlus.md b/wiki/translations/fr/IfcPlusPlus.md index f609ff13e8..90e4a31476 100644 --- a/wiki/translations/fr/IfcPlusPlus.md +++ b/wiki/translations/fr/IfcPlusPlus.md @@ -1,6 +1,4 @@ # IfcPlusPlus/fr - - ## Description @@ -236,4 +234,7 @@ QT5_ADD_RESOURCES(SimpleViewerExample_RESOURCES_RCC ${RESOURCES}) - Fil allemand: [IfcQuery / IfcPlusPlus selber kompilieren](https://forum.freecadweb.org/viewtopic.php?f=13&t=48648) - {{FEM Tools navi}} + {{FEM Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > IfcPlusPlus/fr diff --git a/wiki/translations/fr/ImageConv.md b/wiki/translations/fr/ImageConv.md index 7c98466893..bed9d49e0a 100644 --- a/wiki/translations/fr/ImageConv.md +++ b/wiki/translations/fr/ImageConv.md @@ -1,6 +1,4 @@ # ImageConv/fr - - **ImageConv** est un programme utilisé pour convertir des images de différents formats en format **[XPM](http://fr.wikipedia.org/wiki/X_PixMap)**, qui peut être utilisé et compilé dans FreeCAD. ## Compilation @@ -17,3 +15,6 @@ La compilation est facile avec le **Makefile** ou **VisualStudio-Project**. ImageConv s\'utilise en ligne de commande. [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > ImageConv/fr diff --git a/wiki/translations/fr/Image_CreateImagePlane.md b/wiki/translations/fr/Image_CreateImagePlane.md index 43deb684dc..d9d9fdeced 100644 --- a/wiki/translations/fr/Image_CreateImagePlane.md +++ b/wiki/translations/fr/Image_CreateImagePlane.md @@ -7,6 +7,8 @@ SeeAlso:[Image Ouvrir une image](Image_Open/fr.md), [Image Redimensionner une image](Image_Scaling/fr.md) --- +# Image CreateImagePlane/fr + ## Description L\'outil [Créer une image plane](Image_CreateImagePlane/fr.md) importe une image [bitmap](bitmap/fr.md) et la place sur l\'un des plans XY, YZ ou XZ. @@ -49,4 +51,7 @@ Si aucun décalage n\'est initialement attribué à l\'image, sa position peut t {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image CreateImagePlane/fr diff --git a/wiki/translations/fr/Image_Module.md b/wiki/translations/fr/Image_Module.md index 43bca873de..f7deafded1 100644 --- a/wiki/translations/fr/Image_Module.md +++ b/wiki/translations/fr/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/fr 1. REDIRECT [Image\_Workbench/fr](Image_Workbench/fr.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/fr diff --git a/wiki/translations/fr/Image_Open.md b/wiki/translations/fr/Image_Open.md index 2568bc4a1e..f65dd0a360 100644 --- a/wiki/translations/fr/Image_Open.md +++ b/wiki/translations/fr/Image_Open.md @@ -7,6 +7,8 @@ SeeAlso:[Image Créer une image plane](Image_CreateImagePlane/fr.md), [Image Redimensionner une image](Image_Scaling/fr.md) --- +# Image Open/fr + ## Description L\'outil [Ouvrir une image](Image_Open/fr.md) ouvre simplement une image de votre système dans un nouvel onglet de la fenêtre. @@ -24,4 +26,7 @@ L\'image est placée dans une nouvelle fenêtre, pas dans la vue 3D. {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Open/fr diff --git a/wiki/translations/fr/Image_Scaling.md b/wiki/translations/fr/Image_Scaling.md index 5d8b279fc3..5c4058c701 100644 --- a/wiki/translations/fr/Image_Scaling.md +++ b/wiki/translations/fr/Image_Scaling.md @@ -8,6 +8,8 @@ SeeAlso:[Image Ouvrir une image](Image_Open/fr.md), [Image Créer une image plane](Image_CreateImagePlane/fr.md) --- +# Image Scaling/fr + ## Description L\'outil [Redimensionner l\'mage](Image_Scaling/fr.md) redimensionne une image importée à l\'aide de l\'outil [Image Créer une image plane](Image_CreateImagePlane/fr.md). @@ -26,4 +28,7 @@ L\'outil [Redimensionner l\'mage](Image_Scaling/fr.md) redimensionne une image i {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Scaling/fr diff --git a/wiki/translations/fr/Image_Workbench.md b/wiki/translations/fr/Image_Workbench.md index c75ce21a1e..254de5b57c 100644 --- a/wiki/translations/fr/Image_Workbench.md +++ b/wiki/translations/fr/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/fr - - -Icône de l\'atelier Image +# Icône de l\'atelier Image Image Workbench/fr ## Introduction @@ -39,3 +36,6 @@ Le décalage de l\'image peut être défini lors de l\'importation ou modifié u }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/fr diff --git a/wiki/translations/fr/Import.md b/wiki/translations/fr/Import.md index 0fcf7559c3..2151d63722 100644 --- a/wiki/translations/fr/Import.md +++ b/wiki/translations/fr/Import.md @@ -1,5 +1,5 @@ # Import/Export IFC - compiling IfcOpenShell/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic=Atelier Arch |Level=Avancé |Time=120 minutes @@ -130,3 +130,6 @@ Tchao! [Category:BIM](Category:BIM.md) [Category:Arch](Category:Arch.md) [Category:3rd Party](Category:3rd_Party.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Import/Export IFC - compiling IfcOpenShell/fr diff --git a/wiki/translations/fr/Import_Export.md b/wiki/translations/fr/Import_Export.md index 5c7939a8d2..51b6765e1a 100644 --- a/wiki/translations/fr/Import_Export.md +++ b/wiki/translations/fr/Import_Export.md @@ -1,9 +1,4 @@ # Import Export/fr - - - - - ## Introduction Cette page répertorie les différents formats de fichiers que FreeCAD peut importer et exporter. Pour être complet, le format natif de FreeCAD est inclus dans la liste. Certains formats ont une page wiki en cliquant sur l\'extension dans la première colonne. @@ -145,3 +140,6 @@ Consultez les pages suivantes pour plus d\'informations: [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export/fr diff --git a/wiki/translations/fr/Import_Export_Preference.md b/wiki/translations/fr/Import_Export_Preference.md index d935867900..993be5a2f9 100644 --- a/wiki/translations/fr/Import_Export_Preference.md +++ b/wiki/translations/fr/Import_Export_Preference.md @@ -1,2 +1,5 @@ # Import Export Preference/fr 1. REDIRECT [Import Export Preferences/fr](Import_Export_Preferences/fr.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preference/fr diff --git a/wiki/translations/fr/Import_Export_Preferences.md b/wiki/translations/fr/Import_Export_Preferences.md index 180ce95d54..f3d3ea3e06 100644 --- a/wiki/translations/fr/Import_Export_Preferences.md +++ b/wiki/translations/fr/Import_Export_Preferences.md @@ -1,10 +1,4 @@ # Import Export Preferences/fr - - - - - - {{TOCright}} ## Introduction @@ -623,3 +617,6 @@ Pour le format VTK vous pouvez spécifier ce qui suit: [Category:Common Questions](Category:Common_Questions.md) [Category:Preferences](Category:Preferences.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preferences/fr diff --git a/wiki/translations/fr/Import_OpenSCAD_code.md b/wiki/translations/fr/Import_OpenSCAD_code.md index 1cb307d3e7..b53f448d5b 100644 --- a/wiki/translations/fr/Import_OpenSCAD_code.md +++ b/wiki/translations/fr/Import_OpenSCAD_code.md @@ -1,7 +1,4 @@ # Import OpenSCAD code/fr - - - {{TutorialInfo/fr |Topic= Importer le code d'OpenSCAD |Level= Débutant @@ -50,3 +47,6 @@ Nous utiliserons ici le fichier example005.scad des (anciens) exemples OpenSCAD, - [Préférences d\'Import Export](Import_Export_Preferences/fr.md) [Category:OpenSCAD](Category:OpenSCAD.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import OpenSCAD code/fr diff --git a/wiki/translations/fr/Import_from_STL_or_OBJ.md b/wiki/translations/fr/Import_from_STL_or_OBJ.md index c3dacb011b..16032db8fd 100644 --- a/wiki/translations/fr/Import_from_STL_or_OBJ.md +++ b/wiki/translations/fr/Import_from_STL_or_OBJ.md @@ -1,5 +1,5 @@ # Import from STL or OBJ/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic= Importation depuis STL ou OBJ |Level= Débutant |Time= 30 minutes @@ -101,3 +101,6 @@ Une autre méthode de fermeture manuelle des trous dans votre objet maillé sera [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import from STL or OBJ/fr diff --git a/wiki/translations/fr/Import_text_and_geometry_from_Inkscape.md b/wiki/translations/fr/Import_text_and_geometry_from_Inkscape.md index f2aa37b30b..61cc29feb7 100644 --- a/wiki/translations/fr/Import_text_and_geometry_from_Inkscape.md +++ b/wiki/translations/fr/Import_text_and_geometry_from_Inkscape.md @@ -1,5 +1,5 @@ # Import text and geometry from Inkscape/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic= Importer texte et géométrie depuis Inkscape |Level= Débutant |Time= 30 minutes @@ -50,6 +50,5 @@ Puisque inkscape et FreeCAD semblent avoir des approches différentes sur la fa Merci aux utilisateurs \"freecad-heini-1\" et \"herbk\" pour avoir testé et fourni des commentaires précieux. - - - +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import text and geometry from Inkscape/fr diff --git a/wiki/translations/fr/Important_information.md b/wiki/translations/fr/Important_information.md index 2b837113f7..9b0678e782 100644 --- a/wiki/translations/fr/Important_information.md +++ b/wiki/translations/fr/Important_information.md @@ -1,6 +1,4 @@ # Important information/fr - - ## Présentation [Importantes informations](Important_information/fr.md) aide à résoudre les problèmes d\'installation et d\'utilisation du programme. @@ -22,5 +20,5 @@ Le [forum FreeCAD](https://forum.freecadweb.org/viewforum.php?f=3) est le meille *align=center|Fenêtre contenant les informations "[A propos](Std_About/fr.md)" dans le logiciel. Ne prenez pas de photo de cette fenêtre.
Cliquez sur le bouton **Copier dans le presse-papiers* pour pouvoir coller les informations avec votre votre demande d'aide.** - - +--- +[documentation index](../README.md) > Important information/fr diff --git a/wiki/translations/fr/Importing_From_Sketchup.md b/wiki/translations/fr/Importing_From_Sketchup.md index f5e4af097b..b30bbf10e3 100644 --- a/wiki/translations/fr/Importing_From_Sketchup.md +++ b/wiki/translations/fr/Importing_From_Sketchup.md @@ -1,6 +1,4 @@ # Importing From Sketchup/fr - - ## Meilleure méthode @@ -30,3 +28,6 @@ Collada (\*.dae) et STL sont des formats maillés. Pour utiliser ces fichiers da [Category:Common Questions](Category:Common_Questions.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Importing From Sketchup/fr diff --git a/wiki/translations/fr/InputField.md b/wiki/translations/fr/InputField.md index 47cbaffe10..e6e9625d2c 100644 --- a/wiki/translations/fr/InputField.md +++ b/wiki/translations/fr/InputField.md @@ -1,5 +1,5 @@ # InputField/fr - } +} Il s\'agit de la documentation du widget **InputField** de FreeCAD qui est utilisé dans la plupart des boîtes de dialogues des paramètres pour les unités. @@ -8,3 +8,6 @@ ToDo\... [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > InputField/fr diff --git a/wiki/translations/fr/Inspection_Workbench.md b/wiki/translations/fr/Inspection_Workbench.md index 72418b38bd..f65e2d4fb7 100644 --- a/wiki/translations/fr/Inspection_Workbench.md +++ b/wiki/translations/fr/Inspection_Workbench.md @@ -1,7 +1,4 @@ -# Inspection Workbench/fr - - -Icône de l\'atelier Inspection +# Icône de l\'atelier Inspection Inspection Workbench/fr ## Introduction @@ -27,3 +24,6 @@ Alternativement, vous pouvez aussi utiliser la macro Inspection Workbench/fr diff --git a/wiki/translations/fr/Install_on_Linux.md b/wiki/translations/fr/Install_on_Linux.md index 8a4b23e66e..883283c7cc 100644 --- a/wiki/translations/fr/Install_on_Linux.md +++ b/wiki/translations/fr/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/fr 1. REDIRECT [Installing\_on\_Linux/fr](Installing_on_Linux/fr.md) + +--- +[documentation index](../README.md) > Install on Linux/fr diff --git a/wiki/translations/fr/Install_on_Mac.md b/wiki/translations/fr/Install_on_Mac.md index e848945ba7..7555df6653 100644 --- a/wiki/translations/fr/Install_on_Mac.md +++ b/wiki/translations/fr/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/fr 1. REDIRECT [Installing\_on\_Mac/fr](Installing_on_Mac/fr.md) + +--- +[documentation index](../README.md) > Install on Mac/fr diff --git a/wiki/translations/fr/Install_on_Unix.md b/wiki/translations/fr/Install_on_Unix.md index 9e7442daec..c9b833a618 100644 --- a/wiki/translations/fr/Install_on_Unix.md +++ b/wiki/translations/fr/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/fr 1. REDIRECT [Installing\_on\_Linux/fr](Installing_on_Linux/fr.md) + +--- +[documentation index](../README.md) > Install on Unix/fr diff --git a/wiki/translations/fr/Install_on_Windows.md b/wiki/translations/fr/Install_on_Windows.md index 101c689491..9f1c078b9a 100644 --- a/wiki/translations/fr/Install_on_Windows.md +++ b/wiki/translations/fr/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/fr 1. REDIRECT [Installing\_on\_Windows/fr](Installing_on_Windows/fr.md) + +--- +[documentation index](../README.md) > Install on Windows/fr diff --git a/wiki/translations/fr/Installing.md b/wiki/translations/fr/Installing.md index 8f0323b364..164f3ac3ff 100644 --- a/wiki/translations/fr/Installing.md +++ b/wiki/translations/fr/Installing.md @@ -1,2 +1,5 @@ # Installing/fr 1. REDIRECT [Installing\_additional\_components/fr](Installing_additional_components/fr.md) + +--- +[documentation index](../README.md) > Installing/fr diff --git a/wiki/translations/fr/Installing_Helpfile.md b/wiki/translations/fr/Installing_Helpfile.md index aceab29156..08405fc40a 100644 --- a/wiki/translations/fr/Installing_Helpfile.md +++ b/wiki/translations/fr/Installing_Helpfile.md @@ -1,6 +1,4 @@ # Installing Helpfile/fr - - ## Fichiers d\'aide FreeCAD La documentation hors-ligne de FreeCAD est générée à l\'aide de scripts à partir du wiki FreeCAD. Elle a actuellement atteint une taille dépassant les 220 MB. Ces gros fichiers ne font pas partie des installateurs et exécutables de FreeCAD, mais peuvent être installé séparément selon les explications qui suivent. @@ -45,5 +43,5 @@ Des difficultés peuvent survenir lors de la tentative d\'installation des packa - Vous pouvez également obtenir les versions de développement des fichiers d\'aide {{FileName|freecad.qhc}} et {{FileName|freecad.qch}} à partir de [GitHub](https://github.com/FreeCAD/FreeCAD/tree/master/src/Doc). Vous devrez [concaténer](http://man7.org/linux/man-pages/man1/cat.1.html) les fichiers .part ensemble : `cat freecad.qch.part00 freecad.qch.part01 freecad.qch.part02 freecad.qch.part03 > freecad.qch`. - Avec les privilèges d\'administrateur (par exemple, `sudo`), copiez ou déplacez {{FileName|freecad.qhc}} et {{FileName|freecad.qch}} vers {{FileName|/usr/share/doc/freecad-doc/}}. Si vous utilisez `freecad-daily`, ce sera {{FileName|/usr/share/doc/freecad-daily-doc/}} à la place. - - +--- +[documentation index](../README.md) > Installing Helpfile/fr diff --git a/wiki/translations/fr/Installing_additional_components.md b/wiki/translations/fr/Installing_additional_components.md index 326020ae54..45314292e1 100644 --- a/wiki/translations/fr/Installing_additional_components.md +++ b/wiki/translations/fr/Installing_additional_components.md @@ -1,10 +1,4 @@ # Installing additional components/fr - - - - - - {{TOCright}} # Introduction @@ -123,3 +117,6 @@ Le [ODA File Converter](https://www.opendesign.com/guestfiles/oda_file_converter [Category:User Documentation/fr](Category:User_Documentation/fr.md) + +--- +[documentation index](../README.md) > Installing additional components/fr diff --git a/wiki/translations/fr/Installing_more_workbenches.md b/wiki/translations/fr/Installing_more_workbenches.md index 61c08de42c..b29010c8fc 100644 --- a/wiki/translations/fr/Installing_more_workbenches.md +++ b/wiki/translations/fr/Installing_more_workbenches.md @@ -1,6 +1,4 @@ # Installing more workbenches/fr - - ## Introduction Depuis la v0.17, il est facile d\'ajouter des [ateliers externes](external_workbenches/fr.md) en utilisant le [gestionnaire d\'addons](Std_AddonMgr/fr.md). Un utilisateur régulier n\'a pas besoin de faire plus que d\'utiliser cet outil. @@ -48,3 +46,6 @@ Voir aussi une description détaillée sur la page [Comment installer un atelier }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Installing more workbenches/fr diff --git a/wiki/translations/fr/Installing_on_Linux.md b/wiki/translations/fr/Installing_on_Linux.md index a0ae56a45b..679696eb87 100644 --- a/wiki/translations/fr/Installing_on_Linux.md +++ b/wiki/translations/fr/Installing_on_Linux.md @@ -1,9 +1,4 @@ # Installing on Linux/fr - - - - - ## Présentation @@ -379,3 +374,6 @@ Une fois FreeCAD installé, il est temps de [commencer](Getting_started/fr.md)! [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/fr diff --git a/wiki/translations/fr/Installing_on_Mac.md b/wiki/translations/fr/Installing_on_Mac.md index 777f27e0fb..da1bd30694 100644 --- a/wiki/translations/fr/Installing_on_Mac.md +++ b/wiki/translations/fr/Installing_on_Mac.md @@ -1,9 +1,4 @@ # Installing on Mac/fr - - - - - FreeCAD peut être installé sur macOS à partir d\'un paquet .dmg que vous pouvez glisser et déposer dans votre dossier Applications : @@ -50,8 +45,5 @@ Il n\'y a actuellement pas de programme de désinstallation pour FreeCAD install Si vous avez installé FreeCAD avec homebrew, utilisez simplement la commande `brew uninstall freecad`. C\'est tout. - - - - - +--- +[documentation index](../README.md) > Installing on Mac/fr diff --git a/wiki/translations/fr/Installing_on_Windows.md b/wiki/translations/fr/Installing_on_Windows.md index 74c908b504..0bcfd6a988 100644 --- a/wiki/translations/fr/Installing_on_Windows.md +++ b/wiki/translations/fr/Installing_on_Windows.md @@ -1,9 +1,4 @@ # Installing on Windows/fr - - - - - Vous pouvez installer FreeCAD sous Windows en téléchargeant l'un des programmes d'installation ci-dessous: @@ -186,8 +181,5 @@ msiexec /i Y:\\software\\FreeCAD.msi FreeCAD s\'exécute, mais il a été reporté que l\'affichage OpenGL ne fonctionne pas, comme pour d\'autres programmes fonctionnant sous [Wine](wikipedia:Wine_(software).md), par ex. Google [SketchUp](wikipedia:SketchUp.md). - - - - - +--- +[documentation index](../README.md) > Installing on Windows/fr diff --git a/wiki/translations/fr/Interesting_links.md b/wiki/translations/fr/Interesting_links.md index ca9ec1b1b9..2940154604 100644 --- a/wiki/translations/fr/Interesting_links.md +++ b/wiki/translations/fr/Interesting_links.md @@ -1,7 +1,4 @@ # Interesting links/fr - - - {{TOCright}} Cette page contient des liens relatifs à FreeCAD et à d\'autres projets FLOSS. @@ -60,3 +57,6 @@ Cette page contient des liens relatifs à FreeCAD et à d\'autres projets FLOSS. [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Interesting links/fr diff --git a/wiki/translations/fr/Interface.md b/wiki/translations/fr/Interface.md index 499401bcd3..e621d34182 100644 --- a/wiki/translations/fr/Interface.md +++ b/wiki/translations/fr/Interface.md @@ -1,5 +1,5 @@ # Interface/fr - {{TOCright}} +{{TOCright}} ## Introduction @@ -79,4 +79,7 @@ Ces options sont dans le menu, **Outils → Personnaliser...**. Voir [Personnali {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Interface/fr diff --git a/wiki/translations/fr/Interface_Customization.md b/wiki/translations/fr/Interface_Customization.md index ad529f86ad..f321e21731 100644 --- a/wiki/translations/fr/Interface_Customization.md +++ b/wiki/translations/fr/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/fr - - - - - - {{TOCright}} ## Introduction @@ -285,4 +279,7 @@ Les modules complémentaires offrent une autre façon de personnaliser l\'interf {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/fr diff --git a/wiki/translations/fr/Interface_creation.md b/wiki/translations/fr/Interface_creation.md index c2cb8a66fb..380251a083 100644 --- a/wiki/translations/fr/Interface_creation.md +++ b/wiki/translations/fr/Interface_creation.md @@ -1,6 +1,4 @@ # Interface creation/fr - - ## Introduction Les utilisateurs avancés ont la possibilité de [Créer des interfaces](Interface_creation/fr.md) pour les aider à produire des outils complexes pour leurs [addons](Addon/fr.md) personnalisés, tels que des [macros](Macros/fr.md) ou des [ateliers](Workbenches/fr.md) complets. @@ -43,3 +41,6 @@ Pour des exemples sur cette méthode, voir [Création d\'interface complètement }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Interface creation/fr diff --git a/wiki/translations/fr/Introduction_to_Python.md b/wiki/translations/fr/Introduction_to_Python.md index 461b6f099b..fd7dfd0e76 100644 --- a/wiki/translations/fr/Introduction_to_Python.md +++ b/wiki/translations/fr/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/fr - - - {{TOCright}} ## Introduction @@ -501,3 +498,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/fr diff --git a/wiki/translations/fr/KicadStepUp_Workbench.md b/wiki/translations/fr/KicadStepUp_Workbench.md index 8ee812e03f..400774e0f3 100644 --- a/wiki/translations/fr/KicadStepUp_Workbench.md +++ b/wiki/translations/fr/KicadStepUp_Workbench.md @@ -1,7 +1,4 @@ -# KicadStepUp Workbench/fr - - -Icône de l\'atelier externe KicadStepUp +# Icône de l\'atelier externe KicadStepUp KicadStepUp Workbench/fr {{TOCright}} @@ -133,3 +130,6 @@ De nouveaux ateliers sont en développement, tenez vous au courant! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > KicadStepUp Workbench/fr diff --git a/wiki/translations/fr/LGTM.md b/wiki/translations/fr/LGTM.md index 8b7fde9465..99a65eb79c 100644 --- a/wiki/translations/fr/LGTM.md +++ b/wiki/translations/fr/LGTM.md @@ -1,6 +1,4 @@ # LGTM/fr - - ## Vue d\'ensemble @@ -63,3 +61,6 @@ En outre, certaines classifications (telles que \"modèle\" et \"test\") sont ut - freecad.trails .lgtm.yml sur [Github](https://github.com/joelgraff/freecad.trails/blob/dev/.lgtm.yml) [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > LGTM/fr diff --git a/wiki/translations/fr/Land_Survey_Workbench_Blueprint.md b/wiki/translations/fr/Land_Survey_Workbench_Blueprint.md index 0e9e094a4d..a9483ec827 100644 --- a/wiki/translations/fr/Land_Survey_Workbench_Blueprint.md +++ b/wiki/translations/fr/Land_Survey_Workbench_Blueprint.md @@ -1,7 +1,4 @@ # Land Survey Workbench Blueprint/fr - - - ** Ce plan de développement est probablement obsolète. Pour plus d'informations, voir [Plan de développement](Development_roadmap/fr.md).
Si vous n'êtes pas impliqué dans le développement discuté ici :
@@ -63,3 +60,6 @@ Remarque: les informations de cette page sont basées sur une compréhension sup [Category:Roadmap](Category:Roadmap.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > Land Survey Workbench Blueprint/fr diff --git a/wiki/translations/fr/Lattice2_AttachablePlacement.md b/wiki/translations/fr/Lattice2_AttachablePlacement.md index c051993932..1dfcd7be05 100644 --- a/wiki/translations/fr/Lattice2_AttachablePlacement.md +++ b/wiki/translations/fr/Lattice2_AttachablePlacement.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Lattice2 AttachablePlacement/fr + ## Description La commande [Lattice2 AttachablePlacement](Lattice2_AttachablePlacement/fr.md) attribue un placement ou une poignée à un objet afin qu\'il puisse plus tard être référencé par un emplacement. @@ -35,3 +37,6 @@ La commande +} *align=center|L'icône de l'atelier externe Lattice2 FreeCAD* ## Préambule @@ -156,3 +156,6 @@ Après avoir installé l\'atelier, il devrait apparaître en bas de la liste du [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Lattice2 Workbench/fr diff --git a/wiki/translations/fr/Licence.md b/wiki/translations/fr/Licence.md index c505e7126f..0c3489dc28 100644 --- a/wiki/translations/fr/Licence.md +++ b/wiki/translations/fr/Licence.md @@ -1,10 +1,4 @@ # Licence/fr - - - - - - {{TOCright}} ## Licences utilisées @@ -61,3 +55,6 @@ Néanmoins, cette décision est prise seulement pour le système de base de Free [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Licence/fr diff --git a/wiki/translations/fr/Line_drawing_function.md b/wiki/translations/fr/Line_drawing_function.md index 816d642203..d7aa875eea 100644 --- a/wiki/translations/fr/Line_drawing_function.md +++ b/wiki/translations/fr/Line_drawing_function.md @@ -1,7 +1,4 @@ # Line drawing function/fr - - - {{TOCright}} ## Introduction @@ -274,3 +271,6 @@ Si vous avez aimé cet exercise, pourquoi ne pas essayer d\'améliorer ce petit N\'hésitez pas à poser des questions ou à partager des idées sur le [forum](https://forum.freecadweb.org/)! {{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Line drawing function/fr diff --git a/wiki/translations/fr/LinkSub.md b/wiki/translations/fr/LinkSub.md index 962ec6f4c1..8d677824b0 100644 --- a/wiki/translations/fr/LinkSub.md +++ b/wiki/translations/fr/LinkSub.md @@ -1,6 +1,4 @@ # LinkSub/fr - - ## Description Une [LinkSub](LinkSub/fr.md) est une structure de données qui est utilisée comme une entrée pour diverses fonctions et objets. Son but est de transmettre un sous-objet ou un sous-élément (sommet, arête ou face) d\'un objet à un autre objet qui utilisera ou transformera cette géométrie. @@ -78,3 +76,6 @@ Le sous-élément peut ensuite être extrait de la propriété affectée et peut {{Powerdocnavi }} + +--- +[documentation index](../README.md) > LinkSub/fr diff --git a/wiki/translations/fr/LinkSubList.md b/wiki/translations/fr/LinkSubList.md index 44666797cc..ef15817279 100644 --- a/wiki/translations/fr/LinkSubList.md +++ b/wiki/translations/fr/LinkSubList.md @@ -1,6 +1,4 @@ # LinkSubList/fr - - ## Description Une [LinkSubList](LinkSubList/fr.md) est une structure de données qui est utilisée comme une entrée pour diverses fonctions et objets. Son but est de transmettre un sous-objet ou un sous-élément (sommet, arête ou face) d\'un objet à un autre objet qui utilisera ou transformera cette géométrie. @@ -78,3 +76,6 @@ Le sous-élément peut ensuite être extrait de la propriété affectée et peut {{Powerdocnavi }} + +--- +[documentation index](../README.md) > LinkSubList/fr diff --git a/wiki/translations/fr/Linux_packaging.md b/wiki/translations/fr/Linux_packaging.md index 1d9d56e305..0fa29be2cd 100644 --- a/wiki/translations/fr/Linux_packaging.md +++ b/wiki/translations/fr/Linux_packaging.md @@ -1,6 +1,4 @@ # Linux packaging/fr - - Linux permet le packaging de différentes manières en fonction de la distribution spécifique utilisée. Les formats populaires sont les packages Debian `.deb`, les packages openSuse et Fedora `.rpm` et le format quasi universel `.AppImage`. @@ -17,3 +15,6 @@ pour Windows et MacOS, voir [Packaging](Packaging/fr.md). [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Linux packaging/fr diff --git a/wiki/translations/fr/List_of_Commands.md b/wiki/translations/fr/List_of_Commands.md index b1d681a8ce..180606586f 100644 --- a/wiki/translations/fr/List_of_Commands.md +++ b/wiki/translations/fr/List_of_Commands.md @@ -1,2 +1,5 @@ # List of Commands/fr 1. REDIRECT [:Category:Command Reference/fr](:Category:Command_Reference/fr.md) + +--- +[documentation index](../README.md) > List of Commands/fr diff --git a/wiki/translations/fr/Localisation.md b/wiki/translations/fr/Localisation.md index ea60625219..c8e25313c2 100644 --- a/wiki/translations/fr/Localisation.md +++ b/wiki/translations/fr/Localisation.md @@ -1,10 +1,4 @@ # Localisation/fr - - - - - - {{TOCright}} ## Vue d'ensemble @@ -245,3 +239,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/fr diff --git a/wiki/translations/fr/Localisation_Sidebar.md b/wiki/translations/fr/Localisation_Sidebar.md index 3e2c20c65b..05b40aa21e 100644 --- a/wiki/translations/fr/Localisation_Sidebar.md +++ b/wiki/translations/fr/Localisation_Sidebar.md @@ -1,5 +1,5 @@ # Localisation Sidebar/fr - La [localisation](Localisation/fr.md) est le processus consistant à fournir au logiciel une interface utilisateur multilingue. La documentation wiki peut également être localisé, comme décrit dans la section [Traduire le wiki](Localisation/fr#Traduire_le_wiki_FreeCAD.md). +La [localisation](Localisation/fr.md) est le processus consistant à fournir au logiciel une interface utilisateur multilingue. La documentation wiki peut également être localisé, comme décrit dans la section [Traduire le wiki](Localisation/fr#Traduire_le_wiki_FreeCAD.md). La barre latérale est un outil de navigation important dans le monde wiki, voir [Manuel: Interface/Barre latérale](http://www.mediawiki.org/wiki/Manual:Interface/Sidebar/fr) pour plus d\'informations. @@ -32,3 +32,6 @@ N\'ajoutez pas les codes de langue \"/fr\", \"/de\", \"/es\", \"/ru\", etc. Si l [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation Sidebar/fr diff --git a/wiki/translations/fr/Localization_Older_Methods.md b/wiki/translations/fr/Localization_Older_Methods.md index 9f8d82c3ec..cf350c3e68 100644 --- a/wiki/translations/fr/Localization_Older_Methods.md +++ b/wiki/translations/fr/Localization_Older_Methods.md @@ -1,7 +1,4 @@ # Localization Older Methods/fr - - - {{docnav/fr |[Branding](Branding/fr.md) |[Extra python module](Extra_python_modules/fr.md) @@ -156,3 +153,6 @@ et exécutant pyrcc4 Draft.qrc -o qrc\_Draft.py crée un grand fichier Python co [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localization Older Methods/fr diff --git a/wiki/translations/fr/LuxCoreRender.md b/wiki/translations/fr/LuxCoreRender.md index a9b23872b4..5818bea7ea 100644 --- a/wiki/translations/fr/LuxCoreRender.md +++ b/wiki/translations/fr/LuxCoreRender.md @@ -1,7 +1,4 @@ # LuxCoreRender/fr - - - **LuxCoreRender n'est pas officiellement pris en charge par l'[atelier Raytracing](Raytracing_Workbench/fr.md) mais par le nouvel [https://github.com/FreeCAD/FreeCAD-render atelier Render], qui est destiné à le remplacer. Il ne doit pas être confondu avec le [Projet Render](Render_project/fr.md), arrêté et dépassé. L'atelier Render peut être installé via le [Gestionnaire d'Addon](Std_AddonMgr/fr.md).** @@ -259,3 +256,6 @@ Après avoir installé le Render Workbench et LuxCoreRender, lancez FreeCAD, ouv
Définissez le chemin de la commande LuxCore (cli), quelque chose comme *C:/Tools/LuxCore/pyluxcoretool.exe* et le chemin de l\'interface LuxCore, quelque chose comme *C:/Tools/LuxCore/luxcoreui.exe*, puis appliquez. + +--- +[documentation index](../README.md) > LuxCoreRender/fr diff --git a/wiki/translations/fr/LuxRender.md b/wiki/translations/fr/LuxRender.md index 1e8b406dd6..f54b142c73 100644 --- a/wiki/translations/fr/LuxRender.md +++ b/wiki/translations/fr/LuxRender.md @@ -1,7 +1,4 @@ # LuxRender/fr - - - **LuxRender n'est plus en développement car le projet a été redémarré sous le nom de [LuxCoreRender](LuxCoreRender/fr.md) avec une réécriture majeure du code et de nombreux changements de compatibilité. L'information ici est fournie parce que FreeCAD est toujours livré par défaut (à partir de la version 0.19-24276) avec l'[atelier Raytracing](Raytracing_Workbench/fr.md), qui ne supporte officiellement que LuxRender. Cependant, il semble également fonctionner avec [LuxCoreRender](LuxCoreRender/fr.md) donc pensez à l'essayer avant d'utiliser LuxRender.** # Description @@ -133,3 +130,5 @@ L\'[Atelier Render](https://github.com/FreeCAD/FreeCAD-render) a abandonné la p +--- +[documentation index](../README.md) > LuxRender/fr diff --git a/wiki/translations/fr/MIBA.md b/wiki/translations/fr/MIBA.md index 037ff045d0..79236fec10 100644 --- a/wiki/translations/fr/MIBA.md +++ b/wiki/translations/fr/MIBA.md @@ -1,6 +1,4 @@ # MIBA/fr - - ## Introduction Miba est un moyen d\'intégrer des informations sur l\'espace 3D dans une image 2D. Ainsi, il est souvent possible d\'utiliser l\'image 2D au lieu d\'un visualiseur 3D. Grâce aux informations Miba, vous êtes en mesure de calculer la position d\'un emplacement 3D dans l\'image 2D. Cela vous permet de décorer l\'image ultérieurement avec des informations 3D arbitraires. Vous pouvez prendre l\'image dans un premier état (conception) et l\'utiliser plus tard (p. ex. production). Vous n\'avez pas besoin de connaître le type de données 3D ou les positions lorsque vous prenez la photo. L\'image est donc complètement séparée des données 3D. @@ -39,3 +37,6 @@ App.closeDocument(App.ActiveDocument.Name) ``` [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > MIBA/fr diff --git a/wiki/translations/fr/MOOC_Workbench.md b/wiki/translations/fr/MOOC_Workbench.md index e6a6b9ee8d..d7298fd988 100644 --- a/wiki/translations/fr/MOOC_Workbench.md +++ b/wiki/translations/fr/MOOC_Workbench.md @@ -1,5 +1,4 @@ -# MOOC Workbench/fr - +# MOOC Workbench/fr *align=center|L'icône de l'atelier externe MOOC FreeCAD* ## Vue d\'ensemble @@ -68,3 +67,6 @@ De nouveaux ateliers sont en développement, tenez vous au courant! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > MOOC Workbench/fr diff --git a/wiki/translations/fr/Macro_3D_Parametric_Curve.md b/wiki/translations/fr/Macro_3D_Parametric_Curve.md index a53b95c38f..a54cf1f88a 100644 --- a/wiki/translations/fr/Macro_3D_Parametric_Curve.md +++ b/wiki/translations/fr/Macro_3D_Parametric_Curve.md @@ -1,5 +1,5 @@ # Macro 3D Parametric Curve/fr - {{Macro/fr +{{Macro/fr |Name=Macro 3D Parametric Curve |Icon=Macro_3D_Parametric_Curve.png |Description=Dessine une fonction décrite par des équations paramétriques x(t), y(t) et z(t) avec la possibilité de choisir le type de ligne b-spline ou polyline pour raccorder les points. @@ -208,6 +208,5 @@ ParamCurv() }} - - - +--- +[documentation index](../README.md) > Macro 3D Parametric Curve/fr diff --git a/wiki/translations/fr/Macro_3d_Printer_Slicer.md b/wiki/translations/fr/Macro_3d_Printer_Slicer.md index cb88e3b139..584337857e 100644 --- a/wiki/translations/fr/Macro_3d_Printer_Slicer.md +++ b/wiki/translations/fr/Macro_3d_Printer_Slicer.md @@ -1,5 +1,5 @@ # Macro 3d Printer Slicer/fr - {{Macro/fr +{{Macro/fr |Name=Macro_3d_Printer_Slicer |Icon=Macro_3d_Printer_Slicer.png |Description=Exporter le projet dans un logiciel de tranchage pour utilisation dans une imprimantes 3D. Exporte le fichier stl dans le même répertoire que fichier original, puis l'ouvre dans le logiciel de tranchage. @@ -83,4 +83,7 @@ subprocess.Popen([SLICER + "KISSlicer", stlFile]) ## Credits -Merci à [Wmayer](http://forum.freecadweb.org/viewtopic.php?f=10&t=4686) pour son aide dans la rédaction de ce script. +Merci à [Wmayer](http://forum.freecadweb.org/viewtopic.php?f=10&t=4686) pour son aide dans la rédaction de ce script. + +--- +[documentation index](../README.md) > Macro 3d Printer Slicer/fr diff --git a/wiki/translations/fr/Macro_3d_Printer_Slicer_Individual_Parts.md b/wiki/translations/fr/Macro_3d_Printer_Slicer_Individual_Parts.md index d1852844b2..aad737208c 100644 --- a/wiki/translations/fr/Macro_3d_Printer_Slicer_Individual_Parts.md +++ b/wiki/translations/fr/Macro_3d_Printer_Slicer_Individual_Parts.md @@ -1,5 +1,5 @@ # Macro 3d Printer Slicer Individual Parts/fr - {{Macro/fr +{{Macro/fr |Name=Macro 3d Printer Slicer Individual Parts |Name/fr=Macro 3d Printer Slicer Individual Parts |Icon=Macro_3d_Printer_Slicer_Individual_Parts.svg @@ -84,4 +84,7 @@ subprocess.Popen(stlFiles) Merci à cae2100 pour le développement du code macro d\'origine - [également disponible ici](Macro_3d_Printer_Slicer/fr.md). Merci à [Wmayer](http://forum.freecadweb.org/viewtopic.php?f=10&t=4686) pour son aide dans l\'écriture de ce script. -Original forum topic: +Original forum topic: + +--- +[documentation index](../README.md) > Macro 3d Printer Slicer Individual Parts/fr diff --git a/wiki/translations/fr/Macro_AeroFoil.md b/wiki/translations/fr/Macro_AeroFoil.md index 2dde4220f6..b13af9d081 100644 --- a/wiki/translations/fr/Macro_AeroFoil.md +++ b/wiki/translations/fr/Macro_AeroFoil.md @@ -1,5 +1,5 @@ # Macro AeroFoil/fr - {{Macro +{{Macro |Name=Macro AeroFoil |Icon=AeroFoil.png |Description=AeroFoil crée des courbes et des faces de profils aérodynamiques en utilisant des modèles prédéfinis, des fonctions algébriques et des fichiers DAT ou CSV. @@ -224,3 +224,6 @@ __Files__ = "AeroFoil_UI_Files/AeroFoil_Initial_Dialog.ui, "\ \[3\] [Page de discussion du forum FreeCAD - AeroFoil](https://forum.freecadweb.org/viewtopic.php?f=22&t=56162) \[4\] [Airfoil Tools](http://airfoiltools.com/) contient environ 1 638 profils aérodynamiques différents. \[5\] [UIUC Airfoil Coordinates Database](https://m-selig.ae.illinois.edu/ads/coord_database.html) contient près de 1 600 profils aérodynamiques différents. + +--- +[documentation index](../README.md) > Macro AeroFoil/fr diff --git a/wiki/translations/fr/Macro_Airfoil_Import_&_Scale.md b/wiki/translations/fr/Macro_Airfoil_Import_&_Scale.md index 81b36f0515..36fa23e6f4 100644 --- a/wiki/translations/fr/Macro_Airfoil_Import_&_Scale.md +++ b/wiki/translations/fr/Macro_Airfoil_Import_&_Scale.md @@ -1,5 +1,5 @@ # Macro Airfoil Import & Scale/fr - {{Macro/fr +{{Macro/fr |Name=Macro Airfoil Import & Scale |Icon=Macro_Airfoil_Import_&_Scale.png |Description=Trace le profil d'une aile a partir d'un fichier .dat. @@ -536,3 +536,6 @@ p() Discussion sur [Forum](http://forum.freecadweb.org/viewtopic.php?f=22&t=5554&p=45137&hilit=Airfoil#p45137) [UIUC Applied Aerodynamics Group Departement of Aerospace Engineering](http://aerospace.illinois.edu/m-selig/ads/coord_database.html#N) + +--- +[documentation index](../README.md) > Macro Airfoil Import & Scale/fr diff --git a/wiki/translations/fr/Macro_Alias_Manager.md b/wiki/translations/fr/Macro_Alias_Manager.md index 890b396c29..22babb0eae 100644 --- a/wiki/translations/fr/Macro_Alias_Manager.md +++ b/wiki/translations/fr/Macro_Alias_Manager.md @@ -1,5 +1,5 @@ # Macro Alias Manager/fr - {{Macro/fr +{{Macro/fr |Name=Alias Manager |Icon=aliasmanager_icon.png |Description=Cette macro aide à la gestion des alias dans FreeCAD Spreadsheet workbench. Il est capable de créer, de supprimer, de déplacer des alias et de créer un groupe de fichiers par "famille d'objets". @@ -403,6 +403,5 @@ ToolBar Icon self.dialog2.exec_() p() - - - +--- +[documentation index](../README.md) > Macro Alias Manager/fr diff --git a/wiki/translations/fr/Macro_Align_Camera_to_Working_Plane.md b/wiki/translations/fr/Macro_Align_Camera_to_Working_Plane.md index 45681e3682..2ea39f59be 100644 --- a/wiki/translations/fr/Macro_Align_Camera_to_Working_Plane.md +++ b/wiki/translations/fr/Macro_Align_Camera_to_Working_Plane.md @@ -1,7 +1,4 @@ # Macro Align Camera to Working Plane/fr - - - {{Macro/fr |Name=Macro Align Camera to Working Plane |Icon=Macro_Align_Camera_to_Working_Plane.png @@ -37,6 +34,5 @@ r = FreeCAD.DraftWorkingPlane.getRotation().Rotation.Q c.orientation.setValue(r) ``` - - - +--- +[documentation index](../README.md) > Macro Align Camera to Working Plane/fr diff --git a/wiki/translations/fr/Macro_Align_Face_Object_to_View.md b/wiki/translations/fr/Macro_Align_Face_Object_to_View.md index 79e783267d..d1be8853a9 100644 --- a/wiki/translations/fr/Macro_Align_Face_Object_to_View.md +++ b/wiki/translations/fr/Macro_Align_Face_Object_to_View.md @@ -1,7 +1,4 @@ # Macro Align Face Object to View/fr - - - {{Macro/fr |Name=Macro Align Face Object to View |Icon=Macro_Align_Face_Object_to_View.png @@ -55,6 +52,5 @@ except Exception: Original macro by wmayer [Looking for some helpful GUI-commands](http://forum.freecadweb.org/viewtopic.php?f=3&t=7029&p=56735&hilit=Shape.Face4#p56735) - - - +--- +[documentation index](../README.md) > Macro Align Face Object to View/fr diff --git a/wiki/translations/fr/Macro_Align_Object_to_View.md b/wiki/translations/fr/Macro_Align_Object_to_View.md index fe651228b3..458bb8c800 100644 --- a/wiki/translations/fr/Macro_Align_Object_to_View.md +++ b/wiki/translations/fr/Macro_Align_Object_to_View.md @@ -1,5 +1,5 @@ # Macro Align Object to View/fr - {{Macro/fr +{{Macro/fr |Name=Macro Align Object to View |Icon=Macro_Align_Object_to_View.png |Translate=Macro Align Object to View @@ -75,6 +75,5 @@ Image:Macro Align Object to View 03.png\|Sélectionnez l\'objet et lancez la mac Merci rentlau\_64 pour avoir simplifié le code - - - +--- +[documentation index](../README.md) > Macro Align Object to View/fr diff --git a/wiki/translations/fr/Macro_Align_View_to_Face.md b/wiki/translations/fr/Macro_Align_View_to_Face.md index b9aad2913d..0502dc4976 100644 --- a/wiki/translations/fr/Macro_Align_View_to_Face.md +++ b/wiki/translations/fr/Macro_Align_View_to_Face.md @@ -1,5 +1,5 @@ # Macro Align View to Face/fr - {{Macro/fr +{{Macro/fr |Name=Macro Align View to Face |Icone=Macro_Align_View_to_Face.png |Description=Cette macro aligne la vue sur la face sélectionnée @@ -70,3 +70,6 @@ cam.orientation.setValue(rot.Q) Gui.SendMsgToActiveView("ViewSelection") }} + +--- +[documentation index](../README.md) > Macro Align View to Face/fr diff --git a/wiki/translations/fr/Macro_Align_Working_Plane_to_Camera.md b/wiki/translations/fr/Macro_Align_Working_Plane_to_Camera.md index 4bfdd1b34a..7a2d92b3b4 100644 --- a/wiki/translations/fr/Macro_Align_Working_Plane_to_Camera.md +++ b/wiki/translations/fr/Macro_Align_Working_Plane_to_Camera.md @@ -1,7 +1,4 @@ # Macro Align Working Plane to Camera/fr - - - {{Macro/fr |Name=Macro Align Working Plane to Camera |Icon=Macro_Align_Working_Plane_to_Camera.png @@ -38,6 +35,5 @@ FreeCAD.DraftWorkingPlane.position = pos FreeCADGui.Snapper.setGrid() ``` - - - +--- +[documentation index](../README.md) > Macro Align Working Plane to Camera/fr diff --git a/wiki/translations/fr/Macro_Animated_Constrain.md b/wiki/translations/fr/Macro_Animated_Constrain.md index a45bedd538..171a843ec6 100644 --- a/wiki/translations/fr/Macro_Animated_Constrain.md +++ b/wiki/translations/fr/Macro_Animated_Constrain.md @@ -1,5 +1,5 @@ # Macro Animated Constrain/fr - {{Macro/fr +{{Macro/fr |Name=Animated Constrain |Icon=Macro_Animated_Constrain.png |Description=Animate Constrain within sketch in FreeCAD @@ -146,6 +146,5 @@ La page de discussion sur le forum [Macro Animated Constrain](http://forum.freec [Voir l\'animation sur YouTube.](https://www.youtube.com/watch?v=kmqDcomLnk0) - - - +--- +[documentation index](../README.md) > Macro Animated Constrain/fr diff --git a/wiki/translations/fr/Macro_Apothem_Based_Prism_GUI.md b/wiki/translations/fr/Macro_Apothem_Based_Prism_GUI.md index 59f709450d..fb312e4d22 100644 --- a/wiki/translations/fr/Macro_Apothem_Based_Prism_GUI.md +++ b/wiki/translations/fr/Macro_Apothem_Based_Prism_GUI.md @@ -1,5 +1,5 @@ # Macro Apothem Based Prism GUI/fr - {{Macro/fr +{{Macro/fr |Name=Apothem Based Prism |Icon=Part Prism Apothem.svg |Description=Crée un Apothem Based sur un Prisme. @@ -126,4 +126,7 @@ Le fichier icône SVG pour utiliser dans votre barre d\'outils. ## Remerciements -Remerciement à [shoogen](http://forum.freecadweb.org/memberlist.php?mode=viewprofile&u=765) développeur et à [wandererfan](http://forum.freecadweb.org/memberlist.php?mode=viewprofile&u=1375) pour leur aide précieuse et les conseils dans la mise au point de cette macro. +Remerciement à [shoogen](http://forum.freecadweb.org/memberlist.php?mode=viewprofile&u=765) développeur et à [wandererfan](http://forum.freecadweb.org/memberlist.php?mode=viewprofile&u=1375) pour leur aide précieuse et les conseils dans la mise au point de cette macro. + +--- +[documentation index](../README.md) > Macro Apothem Based Prism GUI/fr diff --git a/wiki/translations/fr/Macro_Arch_Axis_System_Repartition.md b/wiki/translations/fr/Macro_Arch_Axis_System_Repartition.md index 0ba71a94e3..5e17289741 100644 --- a/wiki/translations/fr/Macro_Arch_Axis_System_Repartition.md +++ b/wiki/translations/fr/Macro_Arch_Axis_System_Repartition.md @@ -1,5 +1,5 @@ # Macro Arch Axis System Repartition/fr - {{Macro/fr +{{Macro/fr |Name=Arch Axis System Repartition |Icon=Macro_Arch_Axis_System_Repartition.png |Description=Créer un système d'axes le long d'une ligne. @@ -269,6 +269,5 @@ ToolBar Icon ![](images/Macro_Arch_Axis_System_Repartition.png ) - [Macro\_PartsLibrary](Macro_PartsLibrary.md) Librairie FreeCAD - Github [Macro wood galaxy](https://github.com/wood-galaxy/FreeCAD-scripts) - - - +--- +[documentation index](../README.md) > Macro Arch Axis System Repartition/fr diff --git a/wiki/translations/fr/Macro_ArrayCopy.md b/wiki/translations/fr/Macro_ArrayCopy.md index 7be58ef479..870bd070b6 100644 --- a/wiki/translations/fr/Macro_ArrayCopy.md +++ b/wiki/translations/fr/Macro_ArrayCopy.md @@ -1,5 +1,5 @@ # Macro ArrayCopy/fr - {{Macro/fr +{{Macro/fr |Name=ArrayCopy |Icon=Macro_ArrayCopy.png |Description=Cette macro copie l'objet sélectionné plusieurs fois selon une matrice. @@ -83,3 +83,5 @@ dialog.show() }} +--- +[documentation index](../README.md) > Macro ArrayCopy/fr diff --git a/wiki/translations/fr/Macro_Assemblage_Imprimante_3D.md b/wiki/translations/fr/Macro_Assemblage_Imprimante_3D.md index 8132d89c85..1975ae2d83 100644 --- a/wiki/translations/fr/Macro_Assemblage_Imprimante_3D.md +++ b/wiki/translations/fr/Macro_Assemblage_Imprimante_3D.md @@ -1,5 +1,5 @@ # Macro Assemblage Imprimante 3D/fr - {{Macro/fr +{{Macro/fr |Name=Macro_Assemblage_Imprimante_3D |Icon=Macro_Assemblage_Imprimante_3D.png |Description=Simule le déplacement d'une imprimante 3D dans l'axe Z. @@ -111,4 +111,7 @@ animation = Animation() La discussion sur le forum : [Je galère pour tourner une pièce](http://forum.freecadweb.org/viewtopic.php?f=12&t=11782) -Le canal sur Youtube de l\'auteur de la macro [FreeCAD: Gear Animation Tutorial](https://www.youtube.com/watch?v=KynMmsLJXV0) and its [blog](http://linuxforanengineer.blogspot.com.es/p/me.html) +Le canal sur Youtube de l\'auteur de la macro [FreeCAD: Gear Animation Tutorial](https://www.youtube.com/watch?v=KynMmsLJXV0) and its [blog](http://linuxforanengineer.blogspot.com.es/p/me.html) + +--- +[documentation index](../README.md) > Macro Assemblage Imprimante 3D/fr diff --git a/wiki/translations/fr/Macro_Assembly.md b/wiki/translations/fr/Macro_Assembly.md index 1278bbc299..2154b1d261 100644 --- a/wiki/translations/fr/Macro_Assembly.md +++ b/wiki/translations/fr/Macro_Assembly.md @@ -1,5 +1,5 @@ # Macro Assembly/fr - {{Macro/fr +{{Macro/fr |Name=Assembly Simulation |Icon=Macro_Assembly.png |Description= Animation assemblage. @@ -296,4 +296,7 @@ startAnimation() La page de discussion sur le [FreeCad Python assembly animation](http://forum.freecadweb.org/viewtopic.php?f=22&t=7256) -[l\'animation sur YouTube.](http://youtu.be/5Ik2Bh4wXYg) +[l\'animation sur YouTube.](http://youtu.be/5Ik2Bh4wXYg) + +--- +[documentation index](../README.md) > Macro Assembly/fr diff --git a/wiki/translations/fr/Macro_Automatic_drawing.md b/wiki/translations/fr/Macro_Automatic_drawing.md index 2a1019a8aa..3b57faba9c 100644 --- a/wiki/translations/fr/Macro_Automatic_drawing.md +++ b/wiki/translations/fr/Macro_Automatic_drawing.md @@ -1,5 +1,5 @@ # Macro Automatic drawing/fr - {{Macro/fr +{{Macro/fr |Name=Automatic drawing |Icon=Macro_Automatic_drawing.png |Description=Ce script permet de générer une mise en plan avec 4 vues (face, dessus, iso et droite). Il requiert des modifications pour être parfaitement fonctionnel. @@ -109,3 +109,6 @@ App.activeDocument().AutoDrawing.addObject(App.activeDocument().IsoView) ## Links The forum [Automatic drawing](https://forum.freecadweb.org/viewtopic.php?f=8&t=3361) + +--- +[documentation index](../README.md) > Macro Automatic drawing/fr diff --git a/wiki/translations/fr/Macro_BOLTS.md b/wiki/translations/fr/Macro_BOLTS.md index b48233b919..6931c829fe 100644 --- a/wiki/translations/fr/Macro_BOLTS.md +++ b/wiki/translations/fr/Macro_BOLTS.md @@ -1,5 +1,5 @@ # Macro BOLTS/fr - {{Macro/fr +{{Macro/fr |Name=BOLTS |Icon=Macro_BOLTS.png |Description=BOLTS essaie de fournir une bibliothèque de pièces standards et communes pour FreeCAD @@ -36,3 +36,6 @@ Les instructions détaillées sur la [section documentation](https://github.com/ Une bibliothèque de pièces utiles pour un large éventail de personnes n\'est réalisable que par un effort collectif. Il existe de nombreuses possibilités et façons de [contribuer à BOLTS](https://boltsparts.github.io/en/contribute.html). + +--- +[documentation index](../README.md) > Macro BOLTS/fr diff --git a/wiki/translations/fr/Macro_BoundingBox_Tracing.md b/wiki/translations/fr/Macro_BoundingBox_Tracing.md index 4dcd222aaf..9edab8aab3 100644 --- a/wiki/translations/fr/Macro_BoundingBox_Tracing.md +++ b/wiki/translations/fr/Macro_BoundingBox_Tracing.md @@ -1,5 +1,5 @@ # Macro BoundingBox Tracing/fr - {{Macro/fr +{{Macro/fr |Icon=BoundBoxTracing.png |Name=Macro BoundingBox Tracing |Icon=BoundBoxTracing.png @@ -457,3 +457,6 @@ ver 0.6 le 08/08/2017: ajout de texte info dimension (annotation), conteneur pou ver 0.5 le 08/05/2017 : upgrade maintenant accepte le format \"mesh\" , \"Points\" merci wmayer [Makro Bounding-Box für STL importierte Teile und für Punktewolken](http://forum.freecadweb.org/viewtopic.php?f=13&t=22331) ver 0.4 le 04/06/2016 : test si une valeur = 0 alors ne crée pas de boundbox (ex: objet Draft) + +--- +[documentation index](../README.md) > Macro BoundingBox Tracing/fr diff --git a/wiki/translations/fr/Macro_Build_Utility.md b/wiki/translations/fr/Macro_Build_Utility.md index 01fd6716d4..1a758cddd9 100644 --- a/wiki/translations/fr/Macro_Build_Utility.md +++ b/wiki/translations/fr/Macro_Build_Utility.md @@ -1,5 +1,5 @@ # Macro Build Utility/fr - {{Macro/fr +{{Macro/fr |Name=Macro Build Utility |Description=Cette macro fournit un utilitaire de compilation permettant d'assembler plusieurs fichiers projets en un seul. |Author=Piffpoof @@ -278,6 +278,5 @@ metal``` ./externalModules/red/level3/yellow ``` - - - +--- +[documentation index](../README.md) > Macro Build Utility/fr diff --git a/wiki/translations/fr/Macro_Cabinets32.md b/wiki/translations/fr/Macro_Cabinets32.md index 51e001d669..a10ad4f88d 100644 --- a/wiki/translations/fr/Macro_Cabinets32.md +++ b/wiki/translations/fr/Macro_Cabinets32.md @@ -1,5 +1,5 @@ # Macro Cabinets32/fr - {{Macro/fr +{{Macro/fr |Name=Cabinets32 |Icon=Macro_Cabinets32.png |Description=Cette macro crée le Haut/Bas et les parois latérales d'une armoire avec la spécification System32. @@ -550,6 +550,5 @@ if guiok: - [Macro\_PartsLibrary](Macro_PartsLibrary.md) FreeCAD Library - - - +--- +[documentation index](../README.md) > Macro Cabinets32/fr diff --git a/wiki/translations/fr/Macro_CartoucheFC.md b/wiki/translations/fr/Macro_CartoucheFC.md index 56db077f46..93465a9184 100644 --- a/wiki/translations/fr/Macro_CartoucheFC.md +++ b/wiki/translations/fr/Macro_CartoucheFC.md @@ -1,5 +1,5 @@ # Macro CartoucheFC/fr - {{Macro/fr +{{Macro/fr |Name=Macro CartoucheFC |Icon=Macro_CartoucheFC.png |Description=Cette macro est une application complète, elle permet de remplir le cartouche de la feuille de dessin livrée avec FreeCAD (Seulement pour l'[atelier Drawing](Drawing_Workbench/fr.md)). @@ -953,6 +953,5 @@ Ce module travaille avec la feuille de mise en plan incluse dans FreeCAD cette f ver 0.3 le 02/07/2014 conversion pour utilisation avec **PyQt4** et **PySide** - - - +--- +[documentation index](../README.md) > Macro CartoucheFC/fr diff --git a/wiki/translations/fr/Macro_CartoucheFC_2.md b/wiki/translations/fr/Macro_CartoucheFC_2.md index 22efdfbdd3..d8236bbb13 100644 --- a/wiki/translations/fr/Macro_CartoucheFC_2.md +++ b/wiki/translations/fr/Macro_CartoucheFC_2.md @@ -1,5 +1,5 @@ # Macro CartoucheFC 2/fr - {{Macro/fr +{{Macro/fr |Name=Macro_CartoucheFC_2 |Icon=Macro_CartoucheFC_2.png |Description=Cette macro est une application complète, il permet de remplir le cartouche de la feuille de dessin avec texteditable (Seulement pour l'[atelier Drawing](Drawing_Workbench/fr.md)). @@ -705,3 +705,6 @@ MainWindow.show() ## Version 5.0 : 08/08/2014 + +--- +[documentation index](../README.md) > Macro CartoucheFC 2/fr diff --git a/wiki/translations/fr/Macro_CartoucheFC_Full.md b/wiki/translations/fr/Macro_CartoucheFC_Full.md index 2a4099dcea..1daf72f6a2 100644 --- a/wiki/translations/fr/Macro_CartoucheFC_Full.md +++ b/wiki/translations/fr/Macro_CartoucheFC_Full.md @@ -1,5 +1,5 @@ # Macro CartoucheFC Full/fr - {{Macro/fr +{{Macro/fr |Name=Macro_CartoucheFC_Full |Icon=Macro_CartoucheFC_Full.png |Description=Cette macro est une application complète, elle permet de remplir le cartouche de la feuille de dessin avec tous les champs textéditables (Pour l'[atelier Drawing](Drawing_Workbench/fr.md)). @@ -1187,6 +1187,5 @@ ver 00.06 : 13/10/2016 : sélection du format de la page et position automatique ver 5 : 08/08/2014 PyQt4 and PySide - - - +--- +[documentation index](../README.md) > Macro CartoucheFC Full/fr diff --git a/wiki/translations/fr/Macro_CenterFace.md b/wiki/translations/fr/Macro_CenterFace.md index d3bc132caa..6f1023d55a 100644 --- a/wiki/translations/fr/Macro_CenterFace.md +++ b/wiki/translations/fr/Macro_CenterFace.md @@ -1,5 +1,5 @@ # Macro CenterFace/fr - {{Macro/fr +{{Macro/fr |Name=Macro CenterFace |Icon=CenterFace.png |Description=Cette macro crée un point rouge (éditable) au centre (mass) de la face sélectionnée et affiche ses coordonnées dans la vue rapport. @@ -142,6 +142,5 @@ ver 0.2 07/10/2018 : mise à jour pour FC 017 \"getGlobalPlacement\" ver 0.1 29/04/2014 - - - +--- +[documentation index](../README.md) > Macro CenterFace/fr diff --git a/wiki/translations/fr/Macro_CenterOfMass.md b/wiki/translations/fr/Macro_CenterOfMass.md index 19a0a65a2a..bf8fd85e66 100644 --- a/wiki/translations/fr/Macro_CenterOfMass.md +++ b/wiki/translations/fr/Macro_CenterOfMass.md @@ -1,7 +1,4 @@ # Macro CenterOfMass/fr - - - {{Macro/fr |Name=Macro CenterOfMass |Description=Donne la masse totale et la position du centre de masse de l'ensemble des objets sélectionnés. @@ -69,3 +66,6 @@ La discussion sur le forum [Macro to compute center of mass](https://forum.freec 0.2.3 / 2018-11-22 : nouveaux nom pour les icônes 0.1.2 / 2018-11-10 : xx + +--- +[documentation index](../README.md) > Macro CenterOfMass/fr diff --git a/wiki/translations/fr/Macro_Center_Align_Objects_with_Faces_or_Edges.md b/wiki/translations/fr/Macro_Center_Align_Objects_with_Faces_or_Edges.md index 9b4ccba21a..c0f3795910 100644 --- a/wiki/translations/fr/Macro_Center_Align_Objects_with_Faces_or_Edges.md +++ b/wiki/translations/fr/Macro_Center_Align_Objects_with_Faces_or_Edges.md @@ -1,5 +1,5 @@ # Macro Center Align Objects with Faces or Edges/fr - **Cet outil est maintenant inclus dans l'atelier [Manipulator Workbench](Manipulator_Workbench/fr.md). Installez cet atelier pour bénéficier des dernières mises à ajours.** +**Cet outil est maintenant inclus dans l'atelier [Manipulator Workbench](Manipulator_Workbench/fr.md). Installez cet atelier pour bénéficier des dernières mises à ajours.** {{Macro/fr @@ -76,6 +76,5 @@ vous devez la coller dans votre répertoire de macros Forum : [Faces or Edges constraint among non cylindrical parts Macro](http://forum.freecadweb.org/viewtopic.php?f=22&t=18655) - - - +--- +[documentation index](../README.md) > Macro Center Align Objects with Faces or Edges/fr diff --git a/wiki/translations/fr/Macro_Circle.md b/wiki/translations/fr/Macro_Circle.md index 5702064946..477b309877 100644 --- a/wiki/translations/fr/Macro_Circle.md +++ b/wiki/translations/fr/Macro_Circle.md @@ -1,5 +1,5 @@ # Macro Circle/fr - {{Macro/fr +{{Macro/fr |Name=Macro Circle |Icon=Macro_Circle.png |Description=Crée un cercle en donnant différents paramètres (Sans GUI). Le nouveau cercle est créée dans les coordonnées réelles de l'objet et non dans celles du corps.
{{ColoredText|(Ligne de commande, collez cette macro complète dans la console Python)}}. @@ -165,3 +165,6 @@ ver 0.4 19/06/2019 : upgrade ver 0.19 ver 0.3 10/06/2018 : replace /2 to /2.0 (float) ver 0.2 24/02/2015 : adding function \"**placemObject**\" + +--- +[documentation index](../README.md) > Macro Circle/fr diff --git a/wiki/translations/fr/Macro_CirclePlus.md b/wiki/translations/fr/Macro_CirclePlus.md index 81a89ce142..1e3df15b02 100644 --- a/wiki/translations/fr/Macro_CirclePlus.md +++ b/wiki/translations/fr/Macro_CirclePlus.md @@ -1,5 +1,5 @@ # Macro CirclePlus/fr - {{Macro/fr +{{Macro/fr |Name=Macro CirclePlus |Icon=Macro_CirclePlus.png |Description=Crée un cercle ou un arc en indiquant le rayon, le diamètre, la circonférence, la surface, l'angle de départ, l'angle final, l'arc, le centre de l'angle, la corde, la flèche, le centre (point), l'objet de placement au choix (avec interface graphique). @@ -92,3 +92,6 @@ ver 0.1 , 2018-07-14 : ajout création segment ver 0.0 , 2018-07-10 : [Category:Macros Needing Review](Category:Macros_Needing_Review.md) + +--- +[documentation index](../README.md) > Macro CirclePlus/fr diff --git a/wiki/translations/fr/Macro_CircularText.md b/wiki/translations/fr/Macro_CircularText.md index c1af819af7..5c2a6b26c0 100644 --- a/wiki/translations/fr/Macro_CircularText.md +++ b/wiki/translations/fr/Macro_CircularText.md @@ -1,2 +1,5 @@ # Macro CircularText/fr 1. REDIRECT [Macro\_FCCircularText/fr](Macro_FCCircularText/fr.md) + +--- +[documentation index](../README.md) > Macro CircularText/fr diff --git a/wiki/translations/fr/Macro_CloneConvert.md b/wiki/translations/fr/Macro_CloneConvert.md index b0b87a536b..78cfa407f1 100644 --- a/wiki/translations/fr/Macro_CloneConvert.md +++ b/wiki/translations/fr/Macro_CloneConvert.md @@ -1,5 +1,5 @@ # Macro CloneConvert/fr - {{Macro/fr +{{Macro/fr |Name=Macro CloneConvert |Icon=Macro_CloneConvert.png |Description={{ColoredText|#ff0000|#ffffff|Dernière mise à jour : GUI modifiée pour le support HiDPI (QGridLayout). Fonctionne ≥v0.18 (PySide2 Qt5)}}

. @@ -143,3 +143,6 @@ ver 0.13 = 15/09/2019 remplacé le signe grec micro par \"um\" (trop de problèm 02/07/2014 ver. 0.3 = modification fonctionne avec PyQt4 et PySide 09/05/2014 ver. 0.2 = ajout de la fonction \"Copy\" + +--- +[documentation index](../README.md) > Macro CloneConvert/fr diff --git a/wiki/translations/fr/Macro_Compound_Plus.md b/wiki/translations/fr/Macro_Compound_Plus.md index 0f337af6d8..01ab3057f6 100644 --- a/wiki/translations/fr/Macro_Compound_Plus.md +++ b/wiki/translations/fr/Macro_Compound_Plus.md @@ -1,5 +1,5 @@ # Macro Compound Plus/fr - {{Macro/fr +{{Macro/fr |Name=Macro Compound Plus |Description = {{ColoredText|#ff0000|#ffffff|Nouvelle interface graphique modifiée pour le HD dpi (QGridLayout) exécutez uniquement la version FC 0.19 et plus (PySide2 Qt5)}}

Pour la version précédente, voir [https://gist.github.com/mario52a/7be361a8c489deec918f664fdcfc4394/11ae1a55229c84d9aab4e9a36099d90f52909958 Macro_Compound_Plus 00.02] et installez-le manuellement.

Commande Draft définie dans une petite macro pour l'exemple de fil 2D: travailler avec les fichiers DXF. La macro détecte: Ligne, Arc, Cercle, Ellipse, BSplineCurve et reproduit le fil DXF dans un objet Draft. Le texte est converti en ShapeString. @@ -1648,3 +1648,6 @@ Mes macros sur [Github](https://gist.github.com/mario52a) - 14/05/2020 ver 00.03: mise à niveau pySide2 et Qt5 et (police matPlotLib) et convertir Cercle, Arc, Ellipse, BezierCurve - 24/01/2018 ver 00.02: sup \"import PyQt4\" - 21/11/2016 ver 00.01: + +--- +[documentation index](../README.md) > Macro Compound Plus/fr diff --git a/wiki/translations/fr/Macro_Connect_And_Sweep.md b/wiki/translations/fr/Macro_Connect_And_Sweep.md index a0204c4f51..54848d02d3 100644 --- a/wiki/translations/fr/Macro_Connect_And_Sweep.md +++ b/wiki/translations/fr/Macro_Connect_And_Sweep.md @@ -1,5 +1,5 @@ # Macro Connect And Sweep/fr - {{Macro/fr +{{Macro/fr |Name= Macro Connect And Sweep |Icon=Macro_Connect_And_Sweep.png |Description={{ColoredText|#ff0000|#ffffff|Nouvelle version de l'interface graphique modifiée pour le dpi HD (QGridLayout) exécutez uniquement la version FC 0.18 et plus (PySide2 Qt5)}}

Cette macro crée facilement une connexion entre deux objets. Une fonction discretize permet de créer de point suivant le nombre de coupes du fil ou par dimension déterminée.
Une fonction de discrétisation est disponible pour créer des points marqueurs configurables pour couper des lignes en coupe ou une coupe avec une cote sur le point est créée pour toutes les coordonnées.
Une fonction de face ou de fil dupliquée à utiliser avec l'opération de balayage et de lissage
Opération de balayage et de lissage directement avec la macro.
Centrage de la poutrelle sur les faces @@ -197,6 +197,5 @@ Cette macro est basée sur le code de microelly2 voir sur le forum [Looking for Autre discussion sur le forum [Macro\_Connect\_And\_Sweep](https://forum.freecadweb.org/viewtopic.php?f=22&t=35432) - - - +--- +[documentation index](../README.md) > Macro Connect And Sweep/fr diff --git a/wiki/translations/fr/Macro_Constraint_Draft.md b/wiki/translations/fr/Macro_Constraint_Draft.md index e731027059..8c5aa8fde3 100644 --- a/wiki/translations/fr/Macro_Constraint_Draft.md +++ b/wiki/translations/fr/Macro_Constraint_Draft.md @@ -1,5 +1,5 @@ # Macro Constraint Draft/fr - {{Macro/fr +{{Macro/fr |Name=Constraint Draft |Icon=Macro_Constraint_Draft.png |Description=Crée une simulation en utilisant les [expressions](Expressions/fr.md) qui servent à lier les objets entre eux (La macro fonctionne avec FreeCAD version 16). @@ -72,3 +72,6 @@ else: ## Lien Discussion sur le forum [Sketch Feature to create linkage mechanism simulator](https://www.forum.freecadweb.org/viewtopic.php?f=22&t=21778&sid=28247565010ecdef0aa4f5c69e58f672) + +--- +[documentation index](../README.md) > Macro Constraint Draft/fr diff --git a/wiki/translations/fr/Macro_Copy3DViewToClipboard.md b/wiki/translations/fr/Macro_Copy3DViewToClipboard.md index 1f0cfcfde0..5337a0f070 100644 --- a/wiki/translations/fr/Macro_Copy3DViewToClipboard.md +++ b/wiki/translations/fr/Macro_Copy3DViewToClipboard.md @@ -1,5 +1,5 @@ # Macro Copy3DViewToClipboard/fr - {{Macro/fr +{{Macro/fr |Name=Macro Copy3DViewToClipboard |Icon=Macro_Copy3DViewToClipboard.png |Description=Cette macro copie le contenu de la vue 3D redimensionnée en 640 x 480 pixels dans la mémoire en image bitmap (BMP). La copie dans Gimp n'est pas possible Gimp utilise sa propre méthode pour la fonction copier. @@ -99,6 +99,5 @@ c = v.addEventCallback("SoKeyboardEvent",o.logPosition) }} - - - +--- +[documentation index](../README.md) > Macro Copy3DViewToClipboard/fr diff --git a/wiki/translations/fr/Macro_Corner_shapes_wizard.md b/wiki/translations/fr/Macro_Corner_shapes_wizard.md index 0af134ef8f..9736a8c4a1 100644 --- a/wiki/translations/fr/Macro_Corner_shapes_wizard.md +++ b/wiki/translations/fr/Macro_Corner_shapes_wizard.md @@ -1,5 +1,5 @@ # Macro Corner shapes wizard/update/fr - {{Macro/fr +{{Macro/fr |Icon=Macro_Corner_shapes_wizard.png |Name=Corner shapes wizard |Name/fr=Corner shapes wizard @@ -193,3 +193,6 @@ ToolBar Icon ![](images/Macro_Corner_shapes_wizard.png ) QtCore.QObject.connect(okbox, QtCore.SIGNAL("rejected()"), hide) QtCore.QMetaObject.connectSlotsByName(dialog) dialog.show() + +--- +[documentation index](../README.md) > Macro Corner shapes wizard/update/fr diff --git a/wiki/translations/fr/Macro_Creating_faces_from_a_DXF_file.md b/wiki/translations/fr/Macro_Creating_faces_from_a_DXF_file.md index 4e2ab244a7..1902810c51 100644 --- a/wiki/translations/fr/Macro_Creating_faces_from_a_DXF_file.md +++ b/wiki/translations/fr/Macro_Creating_faces_from_a_DXF_file.md @@ -1,5 +1,5 @@ # Macro Creating faces from a DXF file/fr - {{Macro/fr +{{Macro/fr |Name=Creating faces from a DXF file |Icon=Macro_Creating_faces_from_a_DXF_file.png |Description=Cette macro crée des faces à partir d'objets d'un fichier DXF. @@ -48,4 +48,7 @@ for group in doc.findObjects('App::DocumentObjectGroup'): La discussion sur le forum [Creating faces from a DXF file](http://forum.freecadweb.org/viewtopic.php?f=3&t=8144) -Ici un exemple d\'utilisation de transformation d\'une feuille 2D en objet 3D [Generate 3D solid from intersection of three imported 2D](http://forum.freecadweb.org/viewtopic.php?f=3&t=8280&p=67863#p67840) +Ici un exemple d\'utilisation de transformation d\'une feuille 2D en objet 3D [Generate 3D solid from intersection of three imported 2D](http://forum.freecadweb.org/viewtopic.php?f=3&t=8280&p=67863#p67840) + +--- +[documentation index](../README.md) > Macro Creating faces from a DXF file/fr diff --git a/wiki/translations/fr/Macro_Cut_Circle.md b/wiki/translations/fr/Macro_Cut_Circle.md index 39d752a2e6..15396d55de 100644 --- a/wiki/translations/fr/Macro_Cut_Circle.md +++ b/wiki/translations/fr/Macro_Cut_Circle.md @@ -1,5 +1,5 @@ # Macro Cut Circle/fr - {{Macro/fr +{{Macro/fr |Name=Macro Cut Circle |Name/fr=Macro Cut Circle |Icon=Macro_Cut_Circle.png @@ -117,3 +117,6 @@ ver 00.03 02/07/2019 : ajout \"App.ActiveDocument.recompute()\" ver 00.02 09/03/2015 : ajout de création des arcs colorés alternativement rouge et blanc ou non. ver 00.01 24/02/2015 : + +--- +[documentation index](../README.md) > Macro Cut Circle/fr diff --git a/wiki/translations/fr/Macro_Cut_Line.md b/wiki/translations/fr/Macro_Cut_Line.md index a3b7be5714..5b5f62b631 100644 --- a/wiki/translations/fr/Macro_Cut_Line.md +++ b/wiki/translations/fr/Macro_Cut_Line.md @@ -1,5 +1,5 @@ # Macro Cut Line/fr - {{Macro/fr +{{Macro/fr |Name=Macro Cut Line |Icon=Macro_Cut_Line.png |Description=Coupe une ligne en donnant comme argument le nombre de coupures, création de lignes ou non, biscolor, points. La nouvelle ligne est créée dans les coordonnées réelles de l'objet et non dans celles du corps.
{{ColoredText|(Ligne de commande, collez cette macro complète dans la console Python)}}. @@ -123,3 +123,6 @@ cutLine(4, createLine = 1, biColor = 1, createPoint = 0) ## Liens Cette macro utilise la fonction discretize [voir le code original](http://forum.freecadweb.org/viewtopic.php?f=3&t=4217&hilit=discretize) + +--- +[documentation index](../README.md) > Macro Cut Line/fr diff --git a/wiki/translations/fr/Macro_DXF_to_Face_and_Sketch.md b/wiki/translations/fr/Macro_DXF_to_Face_and_Sketch.md index ef5597ce24..61bcd3f7f0 100644 --- a/wiki/translations/fr/Macro_DXF_to_Face_and_Sketch.md +++ b/wiki/translations/fr/Macro_DXF_to_Face_and_Sketch.md @@ -1,5 +1,5 @@ # Macro DXF to Face and Sketch/fr - {{Macro/fr +{{Macro/fr |Name= DXF to Face and Sketch |Icon=Macro_DXF_to_Face_and_Sketch.png |Description=Cette macro crée une face et un sketch à partir d'un fichier DXF. @@ -254,6 +254,5 @@ else: - Macros\_recipes [Macro Creating faces from a DXF file](http://www.freecadweb.org/wiki/index.php?title=Macros_recipes) - Macro originelle [Macro Creating faces from a DXF file](Macro_Creating_faces_from_a_DXF_file.md) - - - +--- +[documentation index](../README.md) > Macro DXF to Face and Sketch/fr diff --git a/wiki/translations/fr/Macro_DeepCopy.md b/wiki/translations/fr/Macro_DeepCopy.md index 5a9934c9c8..78c72759a9 100644 --- a/wiki/translations/fr/Macro_DeepCopy.md +++ b/wiki/translations/fr/Macro_DeepCopy.md @@ -1,5 +1,5 @@ # Macro DeepCopy/fr - {{Macro/fr +{{Macro/fr |Name=Macro DeepCopy |Icon=Macro_DeepCopy.png |Description=Crée un compound avec les objets sélectionnés @@ -121,6 +121,5 @@ if __name__ == '__main__': [code on github](https://github.com/FreeCAD/FreeCAD-macros/blob/master/Conversion/DeepCopy.FCMacro) - - - +--- +[documentation index](../README.md) > Macro DeepCopy/fr diff --git a/wiki/translations/fr/Macro_Delta_xyz.md b/wiki/translations/fr/Macro_Delta_xyz.md index f3f088c2d0..1a51d56f00 100644 --- a/wiki/translations/fr/Macro_Delta_xyz.md +++ b/wiki/translations/fr/Macro_Delta_xyz.md @@ -1,5 +1,5 @@ # Macro Delta xyz/fr - {{Macro/fr +{{Macro/fr |Name=Macro Delta xyz |Icon=Macro_Delta_xyz.png |Description=Donne les valeurs Delta xyz de 2 points et donne la distance entre ces points.
Si la touche "SHIFT" est enfoncée, la valeur Delta commence sur la coordonnée 0,0,0 jusqu'au point cliqué (la coordonnée 0,0,0 est affichée en rouge).
Une option est possible pour que la macro reste résidente (continue) puis appuyez sur la touche "Q" pour quitter la macro, et l'option pour imposer le nombre de décimales ou utiliser le nombre de décimale(s) dans l'option des préférence. @@ -274,3 +274,6 @@ Version 0.2 2020-10-23 : ajout appuyez sur la touche **SHIFT**, cliquez sur un p Ajout d\'options configurables dans les préférence de FC Version 0.1 2013-11-29 : [view toolbar : measure distance tool](https://forum.freecadweb.org/viewtopic.php?f=3&t=5036) + +--- +[documentation index](../README.md) > Macro Delta xyz/fr diff --git a/wiki/translations/fr/Macro_Draft_Circle_3_Points.md b/wiki/translations/fr/Macro_Draft_Circle_3_Points.md index 13511ef68e..4b31a72e4d 100644 --- a/wiki/translations/fr/Macro_Draft_Circle_3_Points.md +++ b/wiki/translations/fr/Macro_Draft_Circle_3_Points.md @@ -1,5 +1,5 @@ # Macro Draft Circle 3 Points/fr - {{Macro/fr +{{Macro/fr |Name=Macro Make Circle 3 Points |Icon=Macro_Make_Circle_3_Points.png |Description=Crée un cercle à partir de 3 points ou trois objets sélectionnés. @@ -282,3 +282,6 @@ Regardez en alternance avec l\'oeil gauche et l\'oeil droit pour voir les vues s La genèse de la macro **Draft Circle 3 Points** [on the forum (PYTHON) coordonnées d\'un point](http://forum.freecadweb.org/viewtopic.php?f=12&t=3696&sid=17886f953113e162dc9a4a843e1fce94) avec l\'aide flachyjoe merci. La formule vient de [cercle\_3pts.pdf](http://www-obs.univ-lyon1.fr/labo/fc/Ateliers_archives/ateliers_2005-06/cercle_3pts.pdf) et utilisée avec l\'aimable permission de son auteur. + +--- +[documentation index](../README.md) > Macro Draft Circle 3 Points/fr diff --git a/wiki/translations/fr/Macro_Draft_Circle_3_Points_3D.md b/wiki/translations/fr/Macro_Draft_Circle_3_Points_3D.md index c7ff4f354c..f11f11800e 100644 --- a/wiki/translations/fr/Macro_Draft_Circle_3_Points_3D.md +++ b/wiki/translations/fr/Macro_Draft_Circle_3_Points_3D.md @@ -1,5 +1,5 @@ # Macro Draft Circle 3 Points 3D/fr - {{Macro/fr +{{Macro/fr |Name=Macro_Draft_Circle_3_Points_3D |Icon=Macro_Draft_Circle_3_Points.png |Description=Crée un cercle sur 3 points dans l'espace. @@ -133,3 +133,5 @@ else: }} +--- +[documentation index](../README.md) > Macro Draft Circle 3 Points 3D/fr diff --git a/wiki/translations/fr/Macro_Draw_2D_Function.md b/wiki/translations/fr/Macro_Draw_2D_Function.md index 01c70dea2e..f40c13c364 100644 --- a/wiki/translations/fr/Macro_Draw_2D_Function.md +++ b/wiki/translations/fr/Macro_Draw_2D_Function.md @@ -1,5 +1,5 @@ # Macro Draw 2D Function/fr - {{Macro/fr +{{Macro/fr |Name=Draw 2D Function |Icon=Macro_Draw_2D_Function.png |Description=Trace une fonction décrite par une équation [z=F(x)] (Z-X plan) @@ -82,3 +82,5 @@ Part.show(WWire) }} +--- +[documentation index](../README.md) > Macro Draw 2D Function/fr diff --git a/wiki/translations/fr/Macro_Draw_Parametric_2D_Function.md b/wiki/translations/fr/Macro_Draw_Parametric_2D_Function.md index 0fee1c88f3..98cf73bdc5 100644 --- a/wiki/translations/fr/Macro_Draw_Parametric_2D_Function.md +++ b/wiki/translations/fr/Macro_Draw_Parametric_2D_Function.md @@ -1,5 +1,5 @@ # Macro Draw Parametric 2D Function/fr - {{Macro/fr +{{Macro/fr |Name=Macro Draw Parametric 2D Function |Icon=Macro_Draw_Parametric_2D_Function.png |Description=Dessin 2-dimensions, et éventuellement paramétrique avec une équation polaire. @@ -76,3 +76,5 @@ draw2Dfunction(xFunction="0.5*n", yFunction="-0.75*n", n=0, nd=-math.pi, step=50 }} +--- +[documentation index](../README.md) > Macro Draw Parametric 2D Function/fr diff --git a/wiki/translations/fr/Macro_Dump_Objects.md b/wiki/translations/fr/Macro_Dump_Objects.md index da78c06a8f..529d83c8a1 100644 --- a/wiki/translations/fr/Macro_Dump_Objects.md +++ b/wiki/translations/fr/Macro_Dump_Objects.md @@ -1,5 +1,5 @@ # Macro Dump Objects/fr - {{Macro/fr +{{Macro/fr |Name=Macro Dump Objects |Description=Cette macro génère une liste de tous les objets du document courant, la liste peut être affichée dans une fenêtre ou dans la vue Rapport.. |Author=Piffpoof @@ -364,6 +364,5 @@ if FreeCAD.ActiveDocument != None: #thus ends the macro... }} - - - +--- +[documentation index](../README.md) > Macro Dump Objects/fr diff --git a/wiki/translations/fr/Macro_Duplicate_Selection.md b/wiki/translations/fr/Macro_Duplicate_Selection.md index 679b97e39a..132722f1ba 100644 --- a/wiki/translations/fr/Macro_Duplicate_Selection.md +++ b/wiki/translations/fr/Macro_Duplicate_Selection.md @@ -1,5 +1,5 @@ # Macro Duplicate Selection/fr - {{Macro/fr +{{Macro/fr |Name=Macro_Duplicate_Selection |Description= Cette macro change le curseur de la souris en "ForbiddenCursor" si une sélection est dupliquée. |Author=Mario52 @@ -87,6 +87,5 @@ FreeCADGui.Selection.addObserver(s) # installe la fonction en mode resident La discussion sur le forum [Duplicate Objects when more than one face selected](http://forum.freecadweb.org/viewtopic.php?f=3&t=15994) - - - +--- +[documentation index](../README.md) > Macro Duplicate Selection/fr diff --git a/wiki/translations/fr/Macro_Easy_cutouts_for_Enclosure_Design.md b/wiki/translations/fr/Macro_Easy_cutouts_for_Enclosure_Design.md index 045b06e618..7d0b75118c 100644 --- a/wiki/translations/fr/Macro_Easy_cutouts_for_Enclosure_Design.md +++ b/wiki/translations/fr/Macro_Easy_cutouts_for_Enclosure_Design.md @@ -1,5 +1,5 @@ # Macro Easy cutouts for Enclosure Design/fr - {{Macro/fr +{{Macro/fr |Name=Easy cutouts for Enclosure Design |Icon=Macro_Easy_cutouts_for_Enclosure_Design_icon.png |Description=Cette macro rend le découpage de logement très facilement
{{ColoredText|#ff0000|cette macro doit être upgraded}} @@ -256,6 +256,5 @@ else: Forum : [Easy cutouts for Enclosure Design Macro](http://forum.freecadweb.org/viewtopic.php?f=22&t=18488) - - - +--- +[documentation index](../README.md) > Macro Easy cutouts for Enclosure Design/fr diff --git a/wiki/translations/fr/Macro_EdgesToArc.md b/wiki/translations/fr/Macro_EdgesToArc.md index c8c26b4840..cf823353a2 100644 --- a/wiki/translations/fr/Macro_EdgesToArc.md +++ b/wiki/translations/fr/Macro_EdgesToArc.md @@ -1,5 +1,5 @@ # Macro EdgesToArc/fr - {{Macro/fr +{{Macro/fr |Name=EdgesToArc |Icon=Macro_EdgesToArc.png |Description=Transforme les arêtes sélectionnées si possible en un Arc circulaire. Utile pour restaurer des arcs discrétisés. @@ -95,6 +95,5 @@ if circular: FreeCAD.ActiveDocument.removeObject(shape.Name) }} - - - +--- +[documentation index](../README.md) > Macro EdgesToArc/fr diff --git a/wiki/translations/fr/Macro_Ellipse-Center+2Points.md b/wiki/translations/fr/Macro_Ellipse-Center+2Points.md index 2015c35c09..0d31eb002d 100644 --- a/wiki/translations/fr/Macro_Ellipse-Center+2Points.md +++ b/wiki/translations/fr/Macro_Ellipse-Center+2Points.md @@ -1,5 +1,5 @@ # Macro Ellipse-Center+2Points/fr - {{Macro/fr +{{Macro/fr |Name=Macro_Ellipse-Center+2Points |Icon=Macro_Ellipse-Center%2B2Points.png |Description=Fait une ellipse en sélectionnant trois points (dans cet ordre): centre, grand rayon et petit rayon. @@ -66,6 +66,5 @@ except: }} - - - +--- +[documentation index](../README.md) > Macro Ellipse-Center+2Points/fr diff --git a/wiki/translations/fr/Macro_ExpandTreeItem.md b/wiki/translations/fr/Macro_ExpandTreeItem.md index 9d0fb37c33..1bf0d327ee 100644 --- a/wiki/translations/fr/Macro_ExpandTreeItem.md +++ b/wiki/translations/fr/Macro_ExpandTreeItem.md @@ -1,5 +1,5 @@ # Macro ExpandTreeItem/fr - {{Macro/fr +{{Macro/fr |Name=Macro ExpandTreeItem |Icon=Macro_ExpandTreeItem.svg |Description=Cette macro déroule les item sélectionnés.S'il n'y a aucune sélection, tes items sont fermés False. @@ -88,3 +88,6 @@ for tree in trees: ## Liens [Objektbaum mit einem Klick komplett aufklappen?](https://forum.freecadweb.org/viewtopic.php?f=13&t=29406) + +--- +[documentation index](../README.md) > Macro ExpandTreeItem/fr diff --git a/wiki/translations/fr/Macro_Extract_Wires_from_Mesh.md b/wiki/translations/fr/Macro_Extract_Wires_from_Mesh.md index 18fd259a4f..a33c47173c 100644 --- a/wiki/translations/fr/Macro_Extract_Wires_from_Mesh.md +++ b/wiki/translations/fr/Macro_Extract_Wires_from_Mesh.md @@ -1,7 +1,4 @@ # Macro Extract Wires from Mesh/fr - - - {{Macro/fr |Name=Macro Extract Wires from Mesh |Icon=Macro_Extract_Wires_from_Mesh.png @@ -52,3 +49,5 @@ for obj in FreeCADGui.Selection.getSelection(): obj.ViewObject.hide() ``` +--- +[documentation index](../README.md) > Macro Extract Wires from Mesh/fr diff --git a/wiki/translations/fr/Macro_FCCamGroover.md b/wiki/translations/fr/Macro_FCCamGroover.md index ccc49c4247..e722ee23b5 100644 --- a/wiki/translations/fr/Macro_FCCamGroover.md +++ b/wiki/translations/fr/Macro_FCCamGroover.md @@ -1,5 +1,5 @@ # Macro FCCamGroover/fr - {{Macro/fr +{{Macro/fr |Name=FCCamGroover |Icon=Cam-groover-icon-32x32.png |Description=Créer une rainure sinusoïdale sur un cylindre.
L'objet créé est similaire à celui montré dans cette [https://youtu.be/io1JL1U7kUs vidéo]. @@ -312,3 +312,6 @@ diag.exec_() ## Lien La discussion sur le forum [FC Cam Groover Macro](https://forum.freecadweb.org/viewtopic.php?f=22&t=29816&sid=f6f9b946f015bc5072bf112d97b50256) + +--- +[documentation index](../README.md) > Macro FCCamGroover/fr diff --git a/wiki/translations/fr/Macro_FCCamera.md b/wiki/translations/fr/Macro_FCCamera.md index c5d4a3a94b..12812dc4dd 100644 --- a/wiki/translations/fr/Macro_FCCamera.md +++ b/wiki/translations/fr/Macro_FCCamera.md @@ -1,5 +1,5 @@ # Macro FCCamera/fr - {{Macro/fr +{{Macro/fr |Name=Macro FCCamera |Icon=FCCamera_00.png |Description={{ColoredText|#ff0000|#ffffff|New version GUI modifyed for the HD dpi (QGridLayout) run only FC version 0.18 and more (PySide2 Qt5)}}
For the precedent version see [https://gist.githubusercontent.com/mario52a/4aa545c23b323cf68824/raw/42dc3ef73dc8db463a03b175f5a7f1f6978e3293/Macro%2520FCCamera.FCMacro FCCamera] and install it manually.

@@ -212,3 +212,6 @@ App.Console.PrintMessage("Path locality to FCCamera.....images.png [ " +  - **ver 0.3 18/03/2015 :** modié line 492 remplacé \"**pl.Base = App.Vector(0,0,0)**\" par \"**pl.Base = sel\[0\].Placement.Base**\" maintenant ne se déplace plus la forme au point (0,0,0) mais à partir des coordonnées d\'origine - **ver 0.2 25/02/2015 :** correction des noms des fichiers (Linux est sensible à la casse) merci microelly2 + +--- +[documentation index](../README.md) > Macro FCCamera/fr diff --git a/wiki/translations/fr/Macro_FCCircularText.md b/wiki/translations/fr/Macro_FCCircularText.md index 2d68bff383..2cf17a3e5f 100644 --- a/wiki/translations/fr/Macro_FCCircularText.md +++ b/wiki/translations/fr/Macro_FCCircularText.md @@ -1,5 +1,5 @@ # Macro FCCircularText/fr - {{Macro/fr +{{Macro/fr |Name=Macro FCCircularText |Icon=FCCircularTextButtom.png |Description={{ColoredText|#ff0000|#ffffff|La dernière version de la macro prend en charge une disposition HiDPI (QGridLayout) et ne fonctionne que sur les versions 0.18 ou supérieures (nécessite PySide2/Qt5)}}

Pour une version rétrocompatible de la macro, voir @@ -867,8 +867,5 @@ replace La page dédiée sur le forum pour tout commentaires et signalisation d\'éventuelles erreurs [Extrude from curved surface of cylinder](http://forum.freecadweb.org/viewtopic.php?f=3&t=7384) - - - - - +--- +[documentation index](../README.md) > Macro FCCircularText/fr diff --git a/wiki/translations/fr/Macro_FCConvertLines.md b/wiki/translations/fr/Macro_FCConvertLines.md index 0c4c18ee63..dc51cb7207 100644 --- a/wiki/translations/fr/Macro_FCConvertLines.md +++ b/wiki/translations/fr/Macro_FCConvertLines.md @@ -1,2 +1,5 @@ # Macro FCConvertLines/fr 1. REDIRECT [Macro FC Convert Lines/fr](Macro_FC_Convert_Lines/fr.md) + +--- +[documentation index](../README.md) > Macro FCConvertLines/fr diff --git a/wiki/translations/fr/Macro_FCCreaLoft.md b/wiki/translations/fr/Macro_FCCreaLoft.md index 409924b1b2..471e12d2be 100644 --- a/wiki/translations/fr/Macro_FCCreaLoft.md +++ b/wiki/translations/fr/Macro_FCCreaLoft.md @@ -1,2 +1,5 @@ # Macro FCCreaLoft/fr 1. REDIRECT [Macro Loft/fr](Macro_Loft/fr.md) + +--- +[documentation index](../README.md) > Macro FCCreaLoft/fr diff --git a/wiki/translations/fr/Macro_FCGear.md b/wiki/translations/fr/Macro_FCGear.md index c808c2deab..b2207d2edb 100644 --- a/wiki/translations/fr/Macro_FCGear.md +++ b/wiki/translations/fr/Macro_FCGear.md @@ -1,5 +1,5 @@ # Macro FCGear/fr - **Cette macro a été convertie en atelier appelé [atelier FCGear](FCGear_Workbench/fr.md). Veuillez utiliser l'atelier au lieu de cette macro car il est maintenu.** +**Cette macro a été convertie en atelier appelé [atelier FCGear](FCGear_Workbench/fr.md). Veuillez utiliser l'atelier au lieu de cette macro car il est maintenu.** {{Macro/fr @@ -48,6 +48,5 @@ Vous devez ouvrir .Mod en mode administrateur et vous devez donner le - [FCGear](https://github.com/looooo/FCGear) - [Forum topic](http://forum.freecadweb.org/viewtopic.php?f=3&t=12878&start=20) - - - +--- +[documentation index](../README.md) > Macro FCGear/fr diff --git a/wiki/translations/fr/Macro_FCHoneycombMaker.md b/wiki/translations/fr/Macro_FCHoneycombMaker.md index 806a4ff7cb..5261a7e8ff 100644 --- a/wiki/translations/fr/Macro_FCHoneycombMaker.md +++ b/wiki/translations/fr/Macro_FCHoneycombMaker.md @@ -1,7 +1,4 @@ # Macro FCHoneycombMaker/fr - - - {{Macro/fr |Name=FCHoneycombMaker |Icon=FCHoneycombMakerIcon.png @@ -357,3 +354,6 @@ Autre similaire Honeycomb [Honeycomb Array](https://forum.freecadweb.org/viewtop ## Version 2019-07-04 : première version + +--- +[documentation index](../README.md) > Macro FCHoneycombMaker/fr diff --git a/wiki/translations/fr/Macro_FCInfo.md b/wiki/translations/fr/Macro_FCInfo.md index 227945641a..c75d590955 100644 --- a/wiki/translations/fr/Macro_FCInfo.md +++ b/wiki/translations/fr/Macro_FCInfo.md @@ -1,5 +1,5 @@ # Macro FCInfo/fr - {{Macro/fr +{{Macro/fr |Icon=FCInfo.png |Name=Macro FCInfo |Description=Donne une série d'informations sur la forme.
Version française[https://gist.githubusercontent.com/mario52a/6afc64081c4eb8be3b93/raw/c1dd823886fe2e75dc5c6dd490157c259051b651/FCInfo_fr_Ver_1-22-rmu_Docked.FCMacro] @@ -341,6 +341,5 @@ Voir aussi [Arch Prise de cotes](Arch_Survey/fr.md) Arch Survey Macro FCInfo/fr diff --git a/wiki/translations/fr/Macro_FCInfoGlass.md b/wiki/translations/fr/Macro_FCInfoGlass.md index 898bc333a8..a934c661f1 100644 --- a/wiki/translations/fr/Macro_FCInfoGlass.md +++ b/wiki/translations/fr/Macro_FCInfoGlass.md @@ -1,5 +1,5 @@ # Macro FCInfoGlass/fr - {{Macro/fr +{{Macro/fr |Name=Macro FCInfoGlass |Description=Donne une série d'informations sur l'objet avec affichage dans la vue 3D. |Author=Mario52 @@ -226,3 +226,6 @@ Mes macros sur [mario52a](https://gist.github.com/mario52a) gists **31/08/2015 Ver 0.03** : ajout d\'informations **04/08/2015 Ver 0.02** : ajout des switch et présentation + +--- +[documentation index](../README.md) > Macro FCInfoGlass/fr diff --git a/wiki/translations/fr/Macro_FCInfoToMouse.md b/wiki/translations/fr/Macro_FCInfoToMouse.md index b2320472ff..b003a6df0b 100644 --- a/wiki/translations/fr/Macro_FCInfoToMouse.md +++ b/wiki/translations/fr/Macro_FCInfoToMouse.md @@ -1,5 +1,5 @@ # Macro FCInfoToMouse/fr - {{Macro/fr +{{Macro/fr |Name=Macro FCInfoToMouse |Icon=FCInfoToMouse.png |Description=Fournit des informations sur les coordonnées, la longueur et les angles en temps réel à côté du pointeur de la souris. @@ -479,3 +479,6 @@ Mes macros sur [mario52a](https://gist.github.com/mario52a) Gists 23/01/2016 ver 00.02 : ajout de la fonction \"single\", replacé la touche \"H\" par la \"C\" et correction de bug d\'affichage ( , par + ) 02/01/2016 : ver 0.1 + +--- +[documentation index](../README.md) > Macro FCInfoToMouse/fr diff --git a/wiki/translations/fr/Macro_FCInfo_Alternate_Linux.md b/wiki/translations/fr/Macro_FCInfo_Alternate_Linux.md index cf5b645b57..e5b4c42bae 100644 --- a/wiki/translations/fr/Macro_FCInfo_Alternate_Linux.md +++ b/wiki/translations/fr/Macro_FCInfo_Alternate_Linux.md @@ -1,5 +1,5 @@ # Macro FCInfo Alternate Linux/fr - {{Macro/fr +{{Macro/fr |Name=Macro FCInfo Alternate |Icon=FCInfo.png |Description=Donne une série de renseignements sur la forme.(pour PyQt4) @@ -44,6 +44,5 @@ les fichiers sauvés avec cette version sont incompatibles avec les autres versi Les deux versions peuvent fonctionner indépendamment du système d\'exploitation utilisé. - - - +--- +[documentation index](../README.md) > Macro FCInfo Alternate Linux/fr diff --git a/wiki/translations/fr/Macro_FCSpreadSheet_Extract.md b/wiki/translations/fr/Macro_FCSpreadSheet_Extract.md index 9ebdc08b03..739fe0532f 100644 --- a/wiki/translations/fr/Macro_FCSpreadSheet_Extract.md +++ b/wiki/translations/fr/Macro_FCSpreadSheet_Extract.md @@ -1,5 +1,5 @@ # Macro FCSpreadSheet Extract/fr - {{Macro/fr +{{Macro/fr |Name=Macro_FCSpreadsheet_Extract |Icon=Macro_FCSpreadsheet_Extract.png |Description=Cette macro enregistre les données de la feuille de calcul dans un fichier csv avec la formule ou dans un fichier xml.

{{ColoredText|#ff0000|#ffffff|Nouvelle version tourne seulement avec FC version 0.18 and more (PySide2 Qt5)}}

Pour la version précédente voir [https://gist.githubusercontent.com/mario52a/29f7dce6934e8adf5d584bdddd2e469f/raw/ef0b0de56a65afc34a9a1a969969797910f3a004/Macro_FCSpreadSheet_Extract.FCMacro Macro_FCSpreadSheet_Extract.FCMacro] et installez la manuellement. @@ -236,3 +236,5 @@ except Exception: }} +--- +[documentation index](../README.md) > Macro FCSpreadSheet Extract/fr diff --git a/wiki/translations/fr/Macro_FCSpring_Helix_Variable.md b/wiki/translations/fr/Macro_FCSpring_Helix_Variable.md index 1ed21da5c2..e748be5066 100644 --- a/wiki/translations/fr/Macro_FCSpring_Helix_Variable.md +++ b/wiki/translations/fr/Macro_FCSpring_Helix_Variable.md @@ -1,5 +1,5 @@ # Macro FCSpring Helix Variable/fr - {{Macro/fr +{{Macro/fr |Name=Macro FCSpring Helix Variable |Icon=FCSpring Helix Variable.png |Description=Cette macro crée un ressort avec personnalisable, tout tour peut changer la configuration du ressort peut être enregistré dans un fichier avec l'extension '''.FCSpring'''.
Sont détectés: Surface (direction de la face), Cylindre (rayon), Ellipse (rayon mineur), Sphère (rayon), Tore (rayon1), Plan (direction), Ligne (suit la direction), point (Position XYZ du vertex)
Si aucun objet n'est détecté (pas de sélection), le ressort est créé au point XYZ 0., 0., 0.
Voir des [https://www.freecadweb.org/wiki/Macro_FCSpring_Helix_Variable/fr#Exemples exemples] @@ -368,4 +368,5 @@ Seul le cercle fonctionne bien - +--- +[documentation index](../README.md) > Macro FCSpring Helix Variable/fr diff --git a/wiki/translations/fr/Macro_FCSpring_On_Surface.md b/wiki/translations/fr/Macro_FCSpring_On_Surface.md index e39107da71..f24f6bda1b 100644 --- a/wiki/translations/fr/Macro_FCSpring_On_Surface.md +++ b/wiki/translations/fr/Macro_FCSpring_On_Surface.md @@ -1,5 +1,5 @@ # Macro FCSpring On Surface/fr - {{Macro/fr +{{Macro/fr |Name=Macro FCSpring On Surface |Icon=FCSpring_On_Surface.png |Description=Cette macro crée une hélice (ou ressort) autour d'un objet solide quelle que soit sa forme, l'hélice suit toute la surface de l'objet (Python2 est demandé)
Téléchargez l'[https://www.freecadweb.org/wiki/images/3/38/FCSpring_On_Surface.png icone pour votre barre d'outils] @@ -620,3 +620,6 @@ MainWindow.show() La genèse [Zwei Helix - ein Sweep](https://forum.freecadweb.org/viewtopic.php?f=13&t=41627) Le code original [How to intersect a line with a part](https://www.forum.freecadweb.org/viewtopic.php?f=22&t=5456#p44194) par wandererfan + +--- +[documentation index](../README.md) > Macro FCSpring On Surface/fr diff --git a/wiki/translations/fr/Macro_FCTexture.md b/wiki/translations/fr/Macro_FCTexture.md index 6fa29448d5..5aed9008a9 100644 --- a/wiki/translations/fr/Macro_FCTexture.md +++ b/wiki/translations/fr/Macro_FCTexture.md @@ -1,2 +1,5 @@ # Macro FCTexture/fr 1. REDIRECT [Macro Texture/fr](Macro_Texture/fr.md) + +--- +[documentation index](../README.md) > Macro FCTexture/fr diff --git a/wiki/translations/fr/Macro_FCTreeView.md b/wiki/translations/fr/Macro_FCTreeView.md index 81c92f5d0f..e0eb20611b 100644 --- a/wiki/translations/fr/Macro_FCTreeView.md +++ b/wiki/translations/fr/Macro_FCTreeView.md @@ -1,5 +1,5 @@ # Macro FCTreeView/fr - {{Macro/fr +{{Macro/fr |Name=Macro FCTreeView |Icon=Macro_FCTreeView.png |Description=Cette macro affiche tous les objets du projet dans une liste avec des options de tri avancées.

Pour la version précédente voir [https://gist.githubusercontent.com/mario52a/67517ef758ff20005d0a6adcfd8c9190/raw/0a92d7f591a0a179f84b2fc417046723b4d7b0e6/Macro_FCTreeView.FCMacro Macro_FCTreeView.FCMacro] et installez la manuellement. @@ -293,3 +293,6 @@ ver 00.03 (23/09/2017) : ajout recherche par type d\'objet ver 00.02 (11/09/2017) : modifié pour docker et limiter les multiples instances avec bouton flip/flop (macro caché/visible) ver 00.01 (08/09/2017) : + +--- +[documentation index](../README.md) > Macro FCTreeView/fr diff --git a/wiki/translations/fr/Macro_FCWire_To_Volume.md b/wiki/translations/fr/Macro_FCWire_To_Volume.md index 1da4158ea1..6ad3f51cfe 100644 --- a/wiki/translations/fr/Macro_FCWire_To_Volume.md +++ b/wiki/translations/fr/Macro_FCWire_To_Volume.md @@ -1,5 +1,5 @@ # Macro FCWire To Volume/fr - {{Macro/fr +{{Macro/fr |Name=Macro FCWire To Volume |Icon=Macro_FCWire_To_Volume.png |Description=Créez l'opération booléenne avec les fils sélectionnés. Appuyez sur le bouton 2d pour créer l'opération booléenne sur un fil 2D. @@ -691,3 +691,6 @@ ver 02b: 10/04/2020 : ajout d\'icônes et bouton d\'aide ver 02 : 07/04/2020 : conversion pour PySide2 Qt5 et mise en page, en ajoutant le fil 2D (contour) ver 01 : 10/10/2016 : + +--- +[documentation index](../README.md) > Macro FCWire To Volume/fr diff --git a/wiki/translations/fr/Macro_FC_Convert_Lines.md b/wiki/translations/fr/Macro_FC_Convert_Lines.md index c870ab4c57..8f2fdb985e 100644 --- a/wiki/translations/fr/Macro_FC_Convert_Lines.md +++ b/wiki/translations/fr/Macro_FC_Convert_Lines.md @@ -1,5 +1,5 @@ # Macro FC Convert Lines/fr - {{Macro/fr +{{Macro/fr |Name=Macro FC Convert Lines |Icon=Macro_FCConvertLines.png |Description=Cette macro convertit un objet ligne, fil en une ligne de Tirets ou Tiret-Points ou Tiret-Point-Points avec les dimensions données. @@ -198,3 +198,6 @@ ver 00.02 18/02/2016 ver 00.01 19/01/2016 ver 00.00 19/01/2016 + +--- +[documentation index](../README.md) > Macro FC Convert Lines/fr diff --git a/wiki/translations/fr/Macro_FC_element_selector.md b/wiki/translations/fr/Macro_FC_element_selector.md index 3a5b7ab97f..6dde301da8 100644 --- a/wiki/translations/fr/Macro_FC_element_selector.md +++ b/wiki/translations/fr/Macro_FC_element_selector.md @@ -1,5 +1,5 @@ # Macro FC element selector/fr - {{Macro/fr +{{Macro/fr |Name=Macro FC element selector |Icon=Macro_FC_element_selector.png |Description= Cette macro affiche tous les éléments sous le curseur (les éléments cachés seront aussi affichés). @@ -205,3 +205,6 @@ element_selector() La discussion sur le forum [Selecting internal faces of a pressure vessel](https://forum.freecadweb.org/viewtopic.php?f=18&t=12381&p=151950#p151950) Macro similaire [Macro Mouse over cb](Macro_Mouse_over_cb.md) + +--- +[documentation index](../README.md) > Macro FC element selector/fr diff --git a/wiki/translations/fr/Macro_FaceToSketch.md b/wiki/translations/fr/Macro_FaceToSketch.md index 9bbd5eab32..de545ee499 100644 --- a/wiki/translations/fr/Macro_FaceToSketch.md +++ b/wiki/translations/fr/Macro_FaceToSketch.md @@ -1,5 +1,5 @@ # Macro FaceToSketch/fr - {{Macro/fr +{{Macro/fr |Name=FaceToSketch |Icon=Macro_FaceToSketch.png |Description=Convertit une face en un sketch sans contraintes. @@ -35,6 +35,5 @@ for wire in wires: FreeCAD.ActiveDocument.removeObject(wire.Name) }} - - - +--- +[documentation index](../README.md) > Macro FaceToSketch/fr diff --git a/wiki/translations/fr/Macro_FlattenWire.md b/wiki/translations/fr/Macro_FlattenWire.md index 8db2714258..2f819f07f8 100644 --- a/wiki/translations/fr/Macro_FlattenWire.md +++ b/wiki/translations/fr/Macro_FlattenWire.md @@ -1,5 +1,5 @@ # Macro FlattenWire/fr - {{Macro/fr +{{Macro/fr |Name=FlattenWire |Icon=Macro_FlattenWire.png |Description=Cette macro aplatit les fils (Wire) du projet qui ne sont pas plan à la médiane de leurs coordonnées z @@ -33,6 +33,5 @@ obj.Points = newppoints }} - - - +--- +[documentation index](../README.md) > Macro FlattenWire/fr diff --git a/wiki/translations/fr/Macro_FlattenWire3Points.md b/wiki/translations/fr/Macro_FlattenWire3Points.md index 60972fdeb6..075f65ba71 100644 --- a/wiki/translations/fr/Macro_FlattenWire3Points.md +++ b/wiki/translations/fr/Macro_FlattenWire3Points.md @@ -1,5 +1,5 @@ # Macro FlattenWire3Points/fr - {{Macro/fr +{{Macro/fr |Name=FlattenWire3Points |Icon=Macro_FlattenWire3Points.png |Description=Cette macro aplatit les fils (Wire) du projet qui ne sont pas plan à la médiane de leurs coordonnées z @@ -55,3 +55,5 @@ Icône de la barre d\'outils ![](images/Macro_FlattenWire3Points.png ) sel.Object.Points = points }} +--- +[documentation index](../README.md) > Macro FlattenWire3Points/fr diff --git a/wiki/translations/fr/Macro_Fonts_Win10_PYMP.md b/wiki/translations/fr/Macro_Fonts_Win10_PYMP.md index b581666663..99ec09023e 100644 --- a/wiki/translations/fr/Macro_Fonts_Win10_PYMP.md +++ b/wiki/translations/fr/Macro_Fonts_Win10_PYMP.md @@ -1,7 +1,4 @@ # Macro Fonts Win10 PYMP/fr - - - {{Macro |Name=Macro Fonts Win10 PYMP |Icon=Macro_Fonts_Win10_PYMP.png @@ -1149,3 +1146,6 @@ Mes macros sur [mario52a](https://gist.github.com/mario52a) gists Version = \"2.0 Date = 2020/06/06 : Layout ajout du bouton et icônes Version = \"01.00\" Date = \"2019/05/10\" + +--- +[documentation index](../README.md) > Macro Fonts Win10 PYMP/fr diff --git a/wiki/translations/fr/Macro_ForceRecompute.md b/wiki/translations/fr/Macro_ForceRecompute.md index 0588facf55..ac6b538fbb 100644 --- a/wiki/translations/fr/Macro_ForceRecompute.md +++ b/wiki/translations/fr/Macro_ForceRecompute.md @@ -1,5 +1,5 @@ # Macro ForceRecompute/fr - {{Macro/fr +{{Macro/fr |Name=Macro Force Recompute |Icon=Force_Recompute.png |Description=Cette petite macro force un recalcul manuel du modèle.
Parfois, l'utilisateur applique des modifications au modèle dans FreeCAD.
Mais FreeCAD ne semble pas les reconnaître.
(À partir de {{Version/fr|0.17}} l'effet de cette macro peut être obtenu via l'interface graphique. Cliquez avec le bouton droit sur le projet dans l'arborescence du modèle et choisissez "Marquer pour recalculer" dans le menu contextuel. Ensuite, appuyez sur le bouton Recalculer.) @@ -39,6 +39,5 @@ FreeCAD.ActiveDocument.recompute() }} - - - +--- +[documentation index](../README.md) > Macro ForceRecompute/fr diff --git a/wiki/translations/fr/Macro_FreeCAD_to_Kerkythea.md b/wiki/translations/fr/Macro_FreeCAD_to_Kerkythea.md index 19a52d805d..536831f36f 100644 --- a/wiki/translations/fr/Macro_FreeCAD_to_Kerkythea.md +++ b/wiki/translations/fr/Macro_FreeCAD_to_Kerkythea.md @@ -1,5 +1,5 @@ # Macro FreeCAD to Kerkythea/fr - {{Macro/fr +{{Macro/fr |Name=FC to Kerkythea |Icon=Macro_FreeCAD_to_Kerkythea.png |Description=Exporte un fichier FreeCAD compatible avec Kerkythea @@ -598,6 +598,5 @@ exportKerkythea().exec_() }} - - - +--- +[documentation index](../README.md) > Macro FreeCAD to Kerkythea/fr diff --git a/wiki/translations/fr/Macro_GMSH.md b/wiki/translations/fr/Macro_GMSH.md index c69ca1befb..bc30ff5629 100644 --- a/wiki/translations/fr/Macro_GMSH.md +++ b/wiki/translations/fr/Macro_GMSH.md @@ -1,5 +1,5 @@ # Macro GMSH/fr - {{Macro/fr +{{Macro/fr |Name=GMSH Macro |Icon=Macro_GMSH.png |Description=Crée un maillage FEM avec un mailleur GMSH. Il est possible de créer une coquille et un volume linéaire ou bilinéaire (quadratique). @@ -36,4 +36,7 @@ Quand GMSH est installé, voir [gmsh.info](http://gmsh.info/). La macro fonction La page de discussion sur le forum [GMSH macro](http://forum.freecadweb.org/viewtopic.php?t=11182) -[Le fonctionnement de la macro sur YouTube.](https://www.youtube.com/watch?v=ZcG5EEUe3yc) +[Le fonctionnement de la macro sur YouTube.](https://www.youtube.com/watch?v=ZcG5EEUe3yc) + +--- +[documentation index](../README.md) > Macro GMSH/fr diff --git a/wiki/translations/fr/Macro_Geneva_Wheel.md b/wiki/translations/fr/Macro_Geneva_Wheel.md index f2e0e7d6b9..b204f40611 100644 --- a/wiki/translations/fr/Macro_Geneva_Wheel.md +++ b/wiki/translations/fr/Macro_Geneva_Wheel.md @@ -1,5 +1,5 @@ # Macro Geneva Wheel/fr - {{Macro/fr +{{Macro/fr |Name=Geneva Wheel |Icon=GW_Dim.png |Description=Cette macro crée un mécanisme de roue de Genève à partir de zéro. @@ -147,6 +147,5 @@ Part.show(driveCrank) Part.show(genevaWheel) }} - - - +--- +[documentation index](../README.md) > Macro Geneva Wheel/fr diff --git a/wiki/translations/fr/Macro_Geneva_Wheel_GUI.md b/wiki/translations/fr/Macro_Geneva_Wheel_GUI.md index a7059df74c..c599e4a5b0 100644 --- a/wiki/translations/fr/Macro_Geneva_Wheel_GUI.md +++ b/wiki/translations/fr/Macro_Geneva_Wheel_GUI.md @@ -1,5 +1,5 @@ # Macro Geneva Wheel GUI/fr - {{Macro/fr +{{Macro/fr |Name=Geneva Wheel GUI |Icon=GW_Dim.png |Description=Macro avec interface graphique qui permet à l'utilisateur de créer un mécanisme de roue de Genève à partir de zéro. Cette macro est basée sur la macro de [Drei](User:Drei.md) [Macro Geneva Wheel](Macro_Geneva_Wheel/fr.md) @@ -232,4 +232,7 @@ p() ## Liens -Cette macro est la version graphique de l\'original [Macro Geneva Wheel](Macro_Geneva_Wheel/fr.md) créé par [Drei](User:Drei.md) +Cette macro est la version graphique de l\'original [Macro Geneva Wheel](Macro_Geneva_Wheel/fr.md) créé par [Drei](User:Drei.md) + +--- +[documentation index](../README.md) > Macro Geneva Wheel GUI/fr diff --git a/wiki/translations/fr/Macro_Geodesic_Dome.md b/wiki/translations/fr/Macro_Geodesic_Dome.md index 28483645fb..fbc437a90c 100644 --- a/wiki/translations/fr/Macro_Geodesic_Dome.md +++ b/wiki/translations/fr/Macro_Geodesic_Dome.md @@ -1,5 +1,5 @@ # Macro Geodesic Dome/fr - {{Macro/fr +{{Macro/fr |Name=Macro Geodesic Dome |Icon=Macro_Geodesic_Dome.svg |Description=Cette macro crée un dôme géodésique paramétrique. @@ -345,6 +345,5 @@ ToolBar Icon ![](images/Macro_Geodesic_Dome.svg ) La discussion sur le Forum [Designing geodesic dome](https://forum.freecadweb.org/viewtopic.php?t=9174) - - - +--- +[documentation index](../README.md) > Macro Geodesic Dome/fr diff --git a/wiki/translations/fr/Macro_Global_Variable_Watcher.md b/wiki/translations/fr/Macro_Global_Variable_Watcher.md index 4f8f4e3f65..4988a08f72 100644 --- a/wiki/translations/fr/Macro_Global_Variable_Watcher.md +++ b/wiki/translations/fr/Macro_Global_Variable_Watcher.md @@ -1,5 +1,5 @@ # Macro Global Variable Watcher/fr - {{Macro/fr +{{Macro/fr |Name=Macro Global Variable Watcher |Description=Cette macro affiche les variables globales du système FreeCAD, (ex. FreeCAD.myVariable). |Author=Piffpoof @@ -340,6 +340,5 @@ form.exec_() #thus ends the macro... }} - - - +--- +[documentation index](../README.md) > Macro Global Variable Watcher/fr diff --git a/wiki/translations/fr/Macro_GuiResetToolbars.md b/wiki/translations/fr/Macro_GuiResetToolbars.md index c122a67ca8..8e61fd6541 100644 --- a/wiki/translations/fr/Macro_GuiResetToolbars.md +++ b/wiki/translations/fr/Macro_GuiResetToolbars.md @@ -1,7 +1,4 @@ # Macro GuiResetToolbars/fr - - - {{Macro/fr |Name=GuiResetToolbars |Name/fr=GuiResetToolbars @@ -81,3 +78,6 @@ for i in tb: ## Liens Discussion sur le forum d[Reset toolbar position](https://forum.freecadweb.org/viewtopic.php?f=3&t=45452&p=390034#p389404) + +--- +[documentation index](../README.md) > Macro GuiResetToolbars/fr diff --git a/wiki/translations/fr/Macro_Guitar_Nut.md b/wiki/translations/fr/Macro_Guitar_Nut.md index ea12d62d60..83b657916f 100644 --- a/wiki/translations/fr/Macro_Guitar_Nut.md +++ b/wiki/translations/fr/Macro_Guitar_Nut.md @@ -1,5 +1,5 @@ # Macro Guitar Nut/fr - {{Macro/fr +{{Macro/fr |Name=Macro Guitar Nut |Name/fr=Macro Guitar Nut |Icon=Macro_Guitar_Nut.png @@ -205,3 +205,6 @@ print("Finished creating nut") ## Liens Forum discussion [Guitar fretboard macro / guitar body](https://forum.freecadweb.org/viewtopic.php?f=24&t=5827&) + +--- +[documentation index](../README.md) > Macro Guitar Nut/fr diff --git a/wiki/translations/fr/Macro_Guitar_fretboard.md b/wiki/translations/fr/Macro_Guitar_fretboard.md index afd8c5c93b..634de11957 100644 --- a/wiki/translations/fr/Macro_Guitar_fretboard.md +++ b/wiki/translations/fr/Macro_Guitar_fretboard.md @@ -1,5 +1,5 @@ # Macro Guitar fretboard/fr - {{Macro/fr +{{Macro/fr |Name=Macro Guitar fretboard |Icon=Macro_Guitar_fretboard.png |Description=Crée un manche de guitare, le script Python est incroyable pour créer une forme complexe ....
Cette macro crée un manche conique composé (ou non) à plusieurs échelles (ou non) avec écrou et fente de frette ou zéro emplacement de frette pour exporter vers le logiciel CAM @@ -743,3 +743,6 @@ class Fretboard(): - Version 0.1 : 2012-03-16 - Version 0.2 : 2018-01-25 : conversion pour PySide - Version 0.4 : 2020-01-09: réfection majeure pour ajouter des frettes multi-échelles et frette zéro + +--- +[documentation index](../README.md) > Macro Guitar fretboard/fr diff --git a/wiki/translations/fr/Macro_Half-Hull_Model.md b/wiki/translations/fr/Macro_Half-Hull_Model.md index db4ef82411..e47f02e5c9 100644 --- a/wiki/translations/fr/Macro_Half-Hull_Model.md +++ b/wiki/translations/fr/Macro_Half-Hull_Model.md @@ -1,5 +1,5 @@ # Macro Half-Hull Model/fr - {{Macro/fr +{{Macro/fr |Name=Macro Half-Hull Model |Icon=Macro_Half_Hull_Model.png |Description=Cette macro génère des modèles tridimensionnels de demi-coque et de coque complète à partir d'une série de dessins au trait en 2D.
Cette macro réalise des modèles simples de coques de bateaux et de navires. Elle est destinée à aider les personnes qui modélisent ou conçoivent des coques en fournissant la surface de la coque d'une manière directe et opportune afin qu'elles puissent éviter le processus complet qui prend du temps. @@ -931,6 +931,5 @@ This script is running bug free. But due to the large range of possible inputs i The script is too long for the Wiki to display so it must be copied or downloaded from [unabbreviated script on pastebin.com](http://pastebin.com/raw.php?i=tZMpUi6F) - - - +--- +[documentation index](../README.md) > Macro Half-Hull Model/fr diff --git a/wiki/translations/fr/Macro_Half_turn_stairs.md b/wiki/translations/fr/Macro_Half_turn_stairs.md index ea9edc6063..dffb13aeea 100644 --- a/wiki/translations/fr/Macro_Half_turn_stairs.md +++ b/wiki/translations/fr/Macro_Half_turn_stairs.md @@ -1,5 +1,5 @@ # Macro Half turn stairs/fr - {{Macro/fr +{{Macro/fr |Name=Half_turn_stairs |Icon=Text-x-python.png |Description=Cette macro crée un escalier tournant à gauche ou à droite. La conception des escaliers est définie dans le fichier stairs.dat (vous devez copier les données qui se trouvent dans la page wiki) @@ -297,6 +297,5 @@ Sauvez les données dans un fichier nommé **stairs.dat** dans votre répertoire - [Macro\_PartsLibrary](Macro_PartsLibrary.md) FreeCAD Library - - - +--- +[documentation index](../README.md) > Macro Half turn stairs/fr diff --git a/wiki/translations/fr/Macro_HealArcs.md b/wiki/translations/fr/Macro_HealArcs.md index df4db91c49..6c78c0d2f6 100644 --- a/wiki/translations/fr/Macro_HealArcs.md +++ b/wiki/translations/fr/Macro_HealArcs.md @@ -1,5 +1,5 @@ # Macro HealArcs/fr - {{Macro/fr +{{Macro/fr |Name=HealArcs |Icon=Macro_HealArcs.png |Description=Parfois les arcs sont transformés en BSplines, par exemple, lorsqu'une opération d'échelle leurs ont été appliquées. Cette macro recrée des arcs valides. Utile avant l'exportation vers un fichier .dxf @@ -44,6 +44,5 @@ else: FreeCAD.ActiveDocument.removeObject(n) }} - - - +--- +[documentation index](../README.md) > Macro HealArcs/fr diff --git a/wiki/translations/fr/Macro_HiddenAlls.md b/wiki/translations/fr/Macro_HiddenAlls.md index ab7d5afe8e..7e71f38835 100644 --- a/wiki/translations/fr/Macro_HiddenAlls.md +++ b/wiki/translations/fr/Macro_HiddenAlls.md @@ -1,7 +1,4 @@ # Macro HiddenAlls/fr - - - {{Macro/fr |Name=Macro HiddenAlls |Icon=Macro_HiddenAlls.png @@ -42,6 +39,5 @@ except Exception: None ``` - - - +--- +[documentation index](../README.md) > Macro HiddenAlls/fr diff --git a/wiki/translations/fr/Macro_HighlightCommon.md b/wiki/translations/fr/Macro_HighlightCommon.md index 241dc90830..5719170708 100644 --- a/wiki/translations/fr/Macro_HighlightCommon.md +++ b/wiki/translations/fr/Macro_HighlightCommon.md @@ -1,5 +1,5 @@ # Macro HighlightCommon/fr - {{Macro/fr +{{Macro/fr |Name=HightlightCommon |Icon=Macro_HighlightCommon.png |Description=Crée un volume des parties communes des objets sélectionnés|See=[[http://linuxforanengineer.blogspot.com.es/ linuxforanengineer]] @@ -34,3 +34,6 @@ Le code est visible et téléchargeable sur Github: [Utility/HighlightCommon.FCM - Ici la macro complémentaire [Macro\_HighlightDifference](Macro_HighlightDifference/fr.md) - Mon blog [Linux for an engineer](http://linuxforanengineer.blogspot.com.es/) pour le code et d\'autres macros intéressantes pour FreeCAD - La discussion sur le forum [\"collision detection\", overlapping](http://forum.freecadweb.org/viewtopic.php?f=22&t=12426) + +--- +[documentation index](../README.md) > Macro HighlightCommon/fr diff --git a/wiki/translations/fr/Macro_HighlightDifference.md b/wiki/translations/fr/Macro_HighlightDifference.md index 541dcfe560..e9c8265e42 100644 --- a/wiki/translations/fr/Macro_HighlightDifference.md +++ b/wiki/translations/fr/Macro_HighlightDifference.md @@ -1,5 +1,5 @@ # Macro HighlightDifference/fr - {{Macro/fr +{{Macro/fr |Name=HighlightDifference |Description=Crée un objet(s) différence entre deux objets qui se chevauchent |Author=Gaël Ecorchard @@ -40,3 +40,6 @@ Le code est visible sur Github: [Utility/HighlightDifference.FCMacro](https://gi - Voir la macro complémentaire [Macro\_HighlightCommon](Macro_HighlightCommon/fr.md) - La discussion sur le forum [\"collision detection\", overlapping](http://forum.freecadweb.org/viewtopic.php?f=22&t=12426) + +--- +[documentation index](../README.md) > Macro HighlightDifference/fr diff --git a/wiki/translations/fr/Macro_HilbertCurve.md b/wiki/translations/fr/Macro_HilbertCurve.md index 9a04002786..d97c22b944 100644 --- a/wiki/translations/fr/Macro_HilbertCurve.md +++ b/wiki/translations/fr/Macro_HilbertCurve.md @@ -1,5 +1,5 @@ # Macro HilbertCurve/fr - {{Macro +{{Macro |Name=HilbertCurve |Description=Cette macro crée un fil courbe de Hilbert en 2 ou 3 dimensions avec de nombreuses itérations. |Author=Simone Bignetti @@ -290,3 +290,5 @@ hilbert_dialog = Hilbert_Dialog() hilbert_dialog.exec() }} +--- +[documentation index](../README.md) > Macro HilbertCurve/fr diff --git a/wiki/translations/fr/Macro_If_Selected_Stay_If_Not_Then_Delete.md b/wiki/translations/fr/Macro_If_Selected_Stay_If_Not_Then_Delete.md index 53e72c9396..14af5b7065 100644 --- a/wiki/translations/fr/Macro_If_Selected_Stay_If_Not_Then_Delete.md +++ b/wiki/translations/fr/Macro_If_Selected_Stay_If_Not_Then_Delete.md @@ -1,7 +1,4 @@ # Macro If Selected Stay If Not Then Delete/fr - - - {{Macro/fr |Name=Macro If Selected Stay If Not Then Delete |Icon=Macro_If_Selected_Stay_If_Not_Then_Delete.png @@ -47,6 +44,5 @@ except Exception: ``` - - - +--- +[documentation index](../README.md) > Macro If Selected Stay If Not Then Delete/fr diff --git a/wiki/translations/fr/Macro_Image_Scaling.md b/wiki/translations/fr/Macro_Image_Scaling.md index a7d08a2937..c941285c0e 100644 --- a/wiki/translations/fr/Macro_Image_Scaling.md +++ b/wiki/translations/fr/Macro_Image_Scaling.md @@ -1,5 +1,5 @@ # Macro Image Scaling/fr - {{Macro/fr +{{Macro/fr |Name=Image Scaling |Icon=Image_Scaling.svg |Description=Met une image à une échelle voulue @@ -175,6 +175,5 @@ ui.setupUi(d) - [téléchargez le zip](http://forum.freecadweb.org/download/file.php?id=19542) - [Movie created by microelly2](https://youtu.be/2iFE40uHrA8) - - - +--- +[documentation index](../README.md) > Macro Image Scaling/fr diff --git a/wiki/translations/fr/Macro_ImperialScales.md b/wiki/translations/fr/Macro_ImperialScales.md index 706d0d3305..33801f42e6 100644 --- a/wiki/translations/fr/Macro_ImperialScales.md +++ b/wiki/translations/fr/Macro_ImperialScales.md @@ -1,7 +1,4 @@ # Macro ImperialScales/fr - - - {{Macro |Name=ImperialScales |Description=Cette macro affiche une liste d'échelles d'arcs impériaux américains avec le facteur correspondant à appliquer aux pages ou vues TechDraw @@ -173,3 +170,5 @@ dlg.show() }} +--- +[documentation index](../README.md) > Macro ImperialScales/fr diff --git a/wiki/translations/fr/Macro_JointWire.md b/wiki/translations/fr/Macro_JointWire.md index 92932fb521..0ffbb86fc6 100644 --- a/wiki/translations/fr/Macro_JointWire.md +++ b/wiki/translations/fr/Macro_JointWire.md @@ -1,5 +1,5 @@ # Macro JointWire/fr - **!!! Cette macro doit être corrigée. !!!** +**!!! Cette macro doit être corrigée. !!!** {{Macro/fr @@ -90,6 +90,5 @@ Icône de la barre d\'outils ![](images/Macro_JointWire.png ) }} - - - +--- +[documentation index](../README.md) > Macro JointWire/fr diff --git a/wiki/translations/fr/Macro_Kerkythea.md b/wiki/translations/fr/Macro_Kerkythea.md index 0f12602c1f..3f9715c031 100644 --- a/wiki/translations/fr/Macro_Kerkythea.md +++ b/wiki/translations/fr/Macro_Kerkythea.md @@ -1,6 +1,4 @@ # Macro Kerkythea/fr - - ## Introduction @@ -48,3 +46,6 @@ Voir [Comment installer des Macros](How_to_install_macros/fr.md) [Category:Macros](Category:Macros.md) [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Macros](Category:Macros.md) > Macro Kerkythea/fr diff --git a/wiki/translations/fr/Macro_Line_Length.md b/wiki/translations/fr/Macro_Line_Length.md index a2bb1a5021..9130341cef 100644 --- a/wiki/translations/fr/Macro_Line_Length.md +++ b/wiki/translations/fr/Macro_Line_Length.md @@ -1,5 +1,5 @@ # Macro Line Length/fr - {{Macro/fr +{{Macro/fr |Name=Macro Line_Length |Icon=Macro_Line_Length.png |Description=Crée une ligne (en ligne de commande) en donnant les coordonnées XYZ, la longueur, et un angle.La nouvelle ligne est créée dans les coordonnées réelles de l'objet et non dans celles du corps.
{{ColoredText|(Ligne de commande, collez cette macro complète dans la console Python)}}. @@ -72,3 +72,5 @@ ou au choix >>> line_length(length = 50, angle = 45) ``` +--- +[documentation index](../README.md) > Macro Line Length/fr diff --git a/wiki/translations/fr/Macro_Loft.md b/wiki/translations/fr/Macro_Loft.md index dfcb226c11..c2c78db378 100644 --- a/wiki/translations/fr/Macro_Loft.md +++ b/wiki/translations/fr/Macro_Loft.md @@ -1,5 +1,5 @@ # Macro Loft/fr - {{Macro/fr +{{Macro/fr |Name=Macro Loft |Icon=FCCreaLoft.png |Description=Crée un lissage avec les fils sélectionnés. Spécialement écrit pour un lissage facile avec des lignes générées par la [https://www.freecadweb.org/wiki/Macro_Texture Macro Texture] (mais peut convenir et être utilisé pour les lofts courants) @@ -64,3 +64,6 @@ ver 00.02 : 09/02/2016 : Ajout du bouton \"Select all\" et petite option affich ver 00.03 : 09/02/2016 : minor (affichage sur le bouton Launch) ver 00.04 : 03/07/2019 : adapté pour Python 3 + +--- +[documentation index](../README.md) > Macro Loft/fr diff --git a/wiki/translations/fr/Macro_MacroMenu.md b/wiki/translations/fr/Macro_MacroMenu.md index 036f7368ba..82095498fd 100644 --- a/wiki/translations/fr/Macro_MacroMenu.md +++ b/wiki/translations/fr/Macro_MacroMenu.md @@ -1,5 +1,5 @@ # Macro MacroMenu/fr - {{Macro/fr +{{Macro/fr |Name=Macro MacroMenu |Icon=Macro_MacroMenu.png |Description=Ajoute les macros trouvées dans le dossier macros au menu Macros FreeCAD @@ -54,6 +54,5 @@ if macroPath and os.path.isdir(macroPath): }} - - - +--- +[documentation index](../README.md) > Macro MacroMenu/fr diff --git a/wiki/translations/fr/Macro_Make_Arc_3_Points.md b/wiki/translations/fr/Macro_Make_Arc_3_Points.md index 12d33a9b7f..854ee0bbcb 100644 --- a/wiki/translations/fr/Macro_Make_Arc_3_Points.md +++ b/wiki/translations/fr/Macro_Make_Arc_3_Points.md @@ -1,5 +1,5 @@ # Macro Make Arc 3 Points/fr - {{Macro/fr +{{Macro/fr |Name=Macro Make Arc 3 Points |Icon=Macro_Make_Arc_3_Points.png |Description=Crée un arc sur 3 points sélectionnés. @@ -71,3 +71,5 @@ FreeCADGui.Selection.addObserver(s) }} +--- +[documentation index](../README.md) > Macro Make Arc 3 Points/fr diff --git a/wiki/translations/fr/Macro_Make_Circle_3_Points.md b/wiki/translations/fr/Macro_Make_Circle_3_Points.md index 60cd087262..a76af2be61 100644 --- a/wiki/translations/fr/Macro_Make_Circle_3_Points.md +++ b/wiki/translations/fr/Macro_Make_Circle_3_Points.md @@ -1,5 +1,5 @@ # Macro Make Circle 3 Points/fr - {{Macro/fr +{{Macro/fr |Name=Macro Make Circle 3 Points |Icon=Macro_Make_Circle_3_Points.png |Description=Crée un cercle à partir de 3 points ou trois objets sélectionnés. @@ -636,3 +636,6 @@ Les programmes séparés se trouvent ici, [Macro\_Draft\_Circle\_3\_Points](Macro_Draft_Circle_3_Points/fr.md) [Macro\_Draft\_Circle\_3\_Points\_3D](Macro_Draft_Circle_3_Points_3D/fr.md) + +--- +[documentation index](../README.md) > Macro Make Circle 3 Points/fr diff --git a/wiki/translations/fr/Macro_Make_Cube.md b/wiki/translations/fr/Macro_Make_Cube.md index aa375970fe..8ff16de77e 100644 --- a/wiki/translations/fr/Macro_Make_Cube.md +++ b/wiki/translations/fr/Macro_Make_Cube.md @@ -1,7 +1,4 @@ # Macro Make Cube/fr - - - {{Macro/fr |Name=Make Cube |Icon=Macro_makeCube.png @@ -153,3 +150,5 @@ class myCommand(draftTools.Creator): myCommand() ``` +--- +[documentation index](../README.md) > Macro Make Cube/fr diff --git a/wiki/translations/fr/Macro_Manage_Navigational_Style.md b/wiki/translations/fr/Macro_Manage_Navigational_Style.md index 3f9a39aa96..0044760812 100644 --- a/wiki/translations/fr/Macro_Manage_Navigational_Style.md +++ b/wiki/translations/fr/Macro_Manage_Navigational_Style.md @@ -1,5 +1,5 @@ # Macro Manage Navigational Style/fr - {{Macro/fr +{{Macro/fr |Name=Macro Manage Navigational Styles |Description=Cette paire de macros vous permet de modifier le style de navigation tout restant le sketcher. |Author=PiffPoof @@ -46,6 +46,5 @@ p=App.ParamGet("User parameter:BaseApp/Preferences/View") p.SetString("NavigationStyle","Gui::CADNavigationStyle") }} - - - +--- +[documentation index](../README.md) > Macro Manage Navigational Style/fr diff --git a/wiki/translations/fr/Macro_Manage_Navigational_Style2.md b/wiki/translations/fr/Macro_Manage_Navigational_Style2.md index 569cc1d611..7e6435ff3e 100644 --- a/wiki/translations/fr/Macro_Manage_Navigational_Style2.md +++ b/wiki/translations/fr/Macro_Manage_Navigational_Style2.md @@ -1,5 +1,5 @@ # Macro Manage Navigational Style2/fr - {{Macro/fr +{{Macro/fr |Name=Macro Manage Navigational Styles2 |Icon=Macro_Manage_Navigational_Styles2.png |Description=Cette macro vous permet de modifier le style de navigation Inventor lors de l'utilisation de l'esquisse.
Lors de l'utilisation de l'esquisse, le menu du bouton droit est redéfini pour contenir les options pertinentes pour l'esquisse. Par conséquent, l'option permettant de modifier le style de navigation, qui est disponible en dehors de l'esquisse, n'est pas disponible dans l'esquisse. @@ -45,6 +45,5 @@ p=App.ParamGet("User parameter:BaseApp/Preferences/View") p.SetString("NavigationStyle","Gui::InventorNavigationStyle") }} - - - +--- +[documentation index](../README.md) > Macro Manage Navigational Style2/fr diff --git a/wiki/translations/fr/Macro_MatrixTransform.md b/wiki/translations/fr/Macro_MatrixTransform.md index c88614db10..3d25c8e2f2 100644 --- a/wiki/translations/fr/Macro_MatrixTransform.md +++ b/wiki/translations/fr/Macro_MatrixTransform.md @@ -1,5 +1,5 @@ # Macro MatrixTransform/fr - {{Macro/fr +{{Macro/fr |Name=MatrixTransform |Icon=Macro_MatrixTransform.png |Description=Transforme unobjet en modifiant la matrice 3x3 (parametrique).
{{ColoredText|#ff0000|#ffff00|Cette macro est composée de 2 macro: '''MatrixTransform.FCMacro''' (lanceur) et '''MatrixTransform.py''' (exécuteur).}}
Le '''.FCMacro''' est installé avec AddonManager vous devez installer la macro '''.py''' manuellement.
Lien des deux macros:
[https://github.com/DeepSOIC/FreeCAD-Macros/raw/master/MatrixTransform/MatrixTransform.FCMacro MatrixTransform.FCMacro] (lanceur)
[https://github.com/DeepSOIC/FreeCAD-Macros/raw/master/MatrixTransform/MatrixTransform.py MatrixTransform.py] (exécuteur) @@ -306,3 +306,6 @@ MatrixTransform.FCMacro: import MatrixTransform MatrixTransform.run() ``` + +--- +[documentation index](../README.md) > Macro MatrixTransform/fr diff --git a/wiki/translations/fr/Macro_MeasureCircle.md b/wiki/translations/fr/Macro_MeasureCircle.md index e41357e6fa..9bbcb5e7cb 100644 --- a/wiki/translations/fr/Macro_MeasureCircle.md +++ b/wiki/translations/fr/Macro_MeasureCircle.md @@ -1,5 +1,5 @@ # Macro MeasureCircle/fr - {{Macro/fr +{{Macro/fr |Name=Macro MeasureCircle |Icon=Macro_MeasureCircle.png |Description=Calcule le rayon d'un cercle sur 3 points ou une ligne circulaire @@ -33,6 +33,5 @@ ToolBar Icon ![](images/Macro_MeasureCircle.png ) **Macro\_MeasureCircle.FCMacro** - - - +--- +[documentation index](../README.md) > Macro MeasureCircle/fr diff --git a/wiki/translations/fr/Macro_Megaminx.md b/wiki/translations/fr/Macro_Megaminx.md index 32aa6384ab..5c5438570b 100644 --- a/wiki/translations/fr/Macro_Megaminx.md +++ b/wiki/translations/fr/Macro_Megaminx.md @@ -1,5 +1,5 @@ # Macro Megaminx/fr - {{Macro +{{Macro |Name=Macro_Megaminx |Name/fr=Macro_Megaminx |Icon=Macro_Megaminx.png @@ -34,3 +34,6 @@ ToolBar icon ## Utilisation Téléchargez le code de dans votre macro annuaire. Exécutez la macro pour créer un document Megaminx. Ensuite, vous pouvez jouer avec. Les fonctions d\'historique peuvent être utilisées construire et sauvegarder des opérateurs (alias algorithmes) qui effectuent des transformations utiles sur le Megaminx. Un ensemble approprié de ceux-ci vous donnera une solution complète. Le step\_history Cette fonction peut être utilisée pour vous aider à reproduire un opérateur sur un vrai Megaminx. + +--- +[documentation index](../README.md) > Macro Megaminx/fr diff --git a/wiki/translations/fr/Macro_MeshToPart.md b/wiki/translations/fr/Macro_MeshToPart.md index 223cf3ba88..3a90d0a883 100644 --- a/wiki/translations/fr/Macro_MeshToPart.md +++ b/wiki/translations/fr/Macro_MeshToPart.md @@ -1,5 +1,5 @@ # Macro MeshToPart/fr - {{Macro/fr +{{Macro/fr |Name=MeshToPart |Icon=Macro_MeshToPart.png |Description=Cette macro convertit certaines mailles en pièces. Il a une grande tolérance, donc utilisez le uniquement avec des objets qui n'ont aucunes courbes sinon vous obtiendrez un résultat inattendu. @@ -64,3 +64,6 @@ for obj in FreeCADGui.Selection.getSelection(): ## Lien La discussion sur le forum [Convert mesh to solid?](http://forum.freecadweb.org/viewtopic.php?f=3&t=253&hilit=getPlanarSegments) + +--- +[documentation index](../README.md) > Macro MeshToPart/fr diff --git a/wiki/translations/fr/Macro_MessageBox.md b/wiki/translations/fr/Macro_MessageBox.md index 08ea127816..c554aff885 100644 --- a/wiki/translations/fr/Macro_MessageBox.md +++ b/wiki/translations/fr/Macro_MessageBox.md @@ -1,5 +1,5 @@ # Macro MessageBox/fr - {{Macro/fr +{{Macro/fr |Name=MessageBox |Icon=Macro MessageBox.png |Description=Montre comment donner des informations à l'utilisateur dans les macros @@ -68,6 +68,5 @@ Exemple : "+str(z)+"\nRayon\t : "+str(r)) }} - - - +--- +[documentation index](../README.md) > Macro MessageBox/fr diff --git a/wiki/translations/fr/Macro_Mouse_Cross.md b/wiki/translations/fr/Macro_Mouse_Cross.md index 1ba2a985d5..eccc53db89 100644 --- a/wiki/translations/fr/Macro_Mouse_Cross.md +++ b/wiki/translations/fr/Macro_Mouse_Cross.md @@ -1,5 +1,5 @@ # Macro Mouse Cross/fr - {{Macro/fr +{{Macro/fr |Name=Macro_Mouse_Cross |Icon=Macro_Mouse_Cross.png |Translate=Macro Mouse Cross @@ -210,3 +210,6 @@ ArrowCursor, UpArrowCursor, CrossCursor, WaitCursor, IBeamCursor, SizeVerCursor, Le curseur peut changer d\'apparence suivant l\'établi utilisé, il faut alors répéter l'opération. Le curseur peut se substituer aux autre curseurs (ex: lors de l\'agrandissement d\'une fenêtre, coins\...). La grille est permanente. + +--- +[documentation index](../README.md) > Macro Mouse Cross/fr diff --git a/wiki/translations/fr/Macro_Mouse_over_cb.md b/wiki/translations/fr/Macro_Mouse_over_cb.md index e02eb1e377..f4a0cd2fe4 100644 --- a/wiki/translations/fr/Macro_Mouse_over_cb.md +++ b/wiki/translations/fr/Macro_Mouse_over_cb.md @@ -1,5 +1,5 @@ # Macro Mouse over cb/fr - {{Macro/fr +{{Macro/fr |Name=Macro Mouse over cb |Icon=Macro_Mouse_over_cb.png |Description= Cette macro affiche tous les éléments sous le curseur de la souris. @@ -58,3 +58,6 @@ mouse_over = view.addEventCallbackPivy( coin.SoLocation2Event.getClassTypeId(), La discussion sur le forum [finding/selecting all elements below cursor](https://forum.freecadweb.org/viewtopic.php?f=10&t=19072) Autre macro similaire [Selecting internal faces of a pressure vessel](https://forum.freecadweb.org/viewtopic.php?f=18&t=12381&p=151950#p151950) (téléchargez le fichier [FC\_element\_selector\_v1p1p1.py](https://forum.freecadweb.org/download/file.php?id=31041)) + +--- +[documentation index](../README.md) > Macro Mouse over cb/fr diff --git a/wiki/translations/fr/Macro_MoveToOrigin.md b/wiki/translations/fr/Macro_MoveToOrigin.md index 80a2bca97a..9ec34b99d1 100644 --- a/wiki/translations/fr/Macro_MoveToOrigin.md +++ b/wiki/translations/fr/Macro_MoveToOrigin.md @@ -1,5 +1,5 @@ # Macro MoveToOrigin/fr - {{Macro +{{Macro |Name=MoveToOrigin |Description=Déplace l'emplacement sélectionné d'un objet vers l'Origine.
Cette macro traduit le [https://wiki.freecadweb.org/Placement Placement/fr] d'un objet afin qu'un emplacement sélectionné devienne sa nouvelle origine. Cela peut être utile lorsque des objets importés à partir d'autres formats comme STL ou STEP sont mal situés pour être traités ultérieurement par FreeCAD. |Author=Edwilliams16 @@ -185,3 +185,6 @@ App.ActiveDocument.recompute() ## Lien La discussion sur le forum [MoveToOrigin Macro](https://forum.freecadweb.org/viewtopic.php?f=22&t=59450) + +--- +[documentation index](../README.md) > Macro MoveToOrigin/fr diff --git a/wiki/translations/fr/Macro_MultiCopy.md b/wiki/translations/fr/Macro_MultiCopy.md index 3d773ae120..f963ea98f3 100644 --- a/wiki/translations/fr/Macro_MultiCopy.md +++ b/wiki/translations/fr/Macro_MultiCopy.md @@ -1,5 +1,5 @@ # Macro MultiCopy/fr - {{Macro +{{Macro |Name=Macro MultiCopy |Icon=MultiCopy-reduced.png |Description=MultiCopy permet la duplication (copier-coller) de plusieurs objets FreeCAD qui peuvent être étiquetés séquentiellement et de manière personnalisée. @@ -353,3 +353,6 @@ __Files__ = "MultiCopy_UI_Files/MultiCopy_Main_Dialog.ui, "\ \[1\] [Dépôt Github de MultiCopy](https://github.com/melwyncarlo/MultiCopy) \[2\] [Dépôt Github des macros FreeCAD - MultiCopy](https://github.com/FreeCAD/FreeCAD-macros/tree/master/Conversion) \[3\] [Page de discussion du forum FreeCAD - MultiCopy](https://forum.freecadweb.org/viewtopic.php?f=22&t=56753) + +--- +[documentation index](../README.md) > Macro MultiCopy/fr diff --git a/wiki/translations/fr/Macro_Normal_Vector.md b/wiki/translations/fr/Macro_Normal_Vector.md index 1ee124cb54..84ba684382 100644 --- a/wiki/translations/fr/Macro_Normal_Vector.md +++ b/wiki/translations/fr/Macro_Normal_Vector.md @@ -1,7 +1,4 @@ # Macro Normal Vector/fr - - - {{Macro/fr |Name=Normal Vector Macro |Icon=Macro_Normal_Vector.png @@ -40,6 +37,5 @@ Gui.Selection.getSelectionEx()[0].SubObjects[0].Faces[0].normalAt(0,0) [Link to dicussion thread (german)](http://forum.freecadweb.org/viewtopic.php?f=13&t=10959) - - - +--- +[documentation index](../README.md) > Macro Normal Vector/fr diff --git a/wiki/translations/fr/Macro_ObjectInfo.md b/wiki/translations/fr/Macro_ObjectInfo.md index 88bf922f6d..f5b3ae62d5 100644 --- a/wiki/translations/fr/Macro_ObjectInfo.md +++ b/wiki/translations/fr/Macro_ObjectInfo.md @@ -1,5 +1,5 @@ # Macro ObjectInfo/fr - {{Macro/fr +{{Macro/fr |Name=Macro ObjectInfo |Description=Cet atelier vous permet de connaître la surface, le volume, le centre de masse et le moment d’inertie de l’objet sélectionné. |Author=keithsloan52 @@ -47,6 +47,5 @@ Un utilisateur FreeCAD créé un module convivial \"Info\" que vous pouvez obten Sur le Forum [Info Workbench - Help with icons please.](http://forum.freecadweb.org/viewtopic.php?f=10&t=3185) - - - +--- +[documentation index](../README.md) > Macro ObjectInfo/fr diff --git a/wiki/translations/fr/Macro_Overlap.md b/wiki/translations/fr/Macro_Overlap.md index eb29091b33..b2505d84fd 100644 --- a/wiki/translations/fr/Macro_Overlap.md +++ b/wiki/translations/fr/Macro_Overlap.md @@ -1,5 +1,5 @@ # Macro Overlap/fr - {{Macro/fr +{{Macro/fr |Name=Boolean Overlap |Icon=Macro_Overlap.png |Description=Outil booléen entre [Part Union](Part_Fuse/fr.md) et [Part Common](Part_Common/fr.md). Paramétrique. @@ -200,3 +200,5 @@ def run(): mb.exec_() }} +--- +[documentation index](../README.md) > Macro Overlap/fr diff --git a/wiki/translations/fr/Macro_Parametric_Curve_FP.md b/wiki/translations/fr/Macro_Parametric_Curve_FP.md index d427dac6bd..ae988772c1 100644 --- a/wiki/translations/fr/Macro_Parametric_Curve_FP.md +++ b/wiki/translations/fr/Macro_Parametric_Curve_FP.md @@ -1,7 +1,4 @@ # Macro Parametric Curve FP/fr - - - {{Macro |Name=Macro Parametric_Curve_FP |Icon=Parametric_Curve_FP.svg @@ -38,3 +35,5 @@ Icône de la barre d\'outils ![](images/Parametric_Curve_FP.svg ) {{CodeDownload|https://gist.github.com/mwganson/473920ad317fb2dc3e37638112874e2a|Parametric_Curve_FP.FCMacro}} +--- +[documentation index](../README.md) > Macro Parametric Curve FP/fr diff --git a/wiki/translations/fr/Macro_PartToVRML.md b/wiki/translations/fr/Macro_PartToVRML.md index 4ba961b586..adfdf643e3 100644 --- a/wiki/translations/fr/Macro_PartToVRML.md +++ b/wiki/translations/fr/Macro_PartToVRML.md @@ -1,5 +1,5 @@ # Macro PartToVRML/fr - {{Macro/fr +{{Macro/fr |Name=Macro Macro PartToVRML |Icon=PartToVRML.png |Description=Cette macro converti un objet Part en objet VRML meshe. @@ -237,3 +237,6 @@ L'icône pour votre barre d\'outils ![PartToVRML](images/PartToVRML.png ) La discussion forum [export VRML from FreeCAD with python for smaller size, kicad and Blender compatible](http://forum.freecadweb.org/viewtopic.php?f=22&t=14099) La macro inverse, [Macro\_MeshToPart](Macro_MeshToPart.md) + +--- +[documentation index](../README.md) > Macro PartToVRML/fr diff --git a/wiki/translations/fr/Macro_PartsLibrary.md b/wiki/translations/fr/Macro_PartsLibrary.md index 1732d433ab..527c093186 100644 --- a/wiki/translations/fr/Macro_PartsLibrary.md +++ b/wiki/translations/fr/Macro_PartsLibrary.md @@ -1,5 +1,5 @@ # Macro PartsLibrary/fr - {{Macro/fr +{{Macro/fr |Icon=FreeCAD Doc.png |Name=Parts Library |Description=Démarre le navigateur de la bibliothèque de composants FreeCAD @@ -26,3 +26,6 @@ Cette macro, qui est également incluse dans la bibliothèque, vous affichera un ToolBar Icon ![](images/FreeCAD_Doc.png ) [PartsLibrary.FCMacro](http://github.com/yorikvanhavre/FreeCAD-library/blob/master/PartsLibrary.FCMacro) + +--- +[documentation index](../README.md) > Macro PartsLibrary/fr diff --git a/wiki/translations/fr/Macro_Perpendicular_To_Wire.md b/wiki/translations/fr/Macro_Perpendicular_To_Wire.md index 651cff895e..456dbf0199 100644 --- a/wiki/translations/fr/Macro_Perpendicular_To_Wire.md +++ b/wiki/translations/fr/Macro_Perpendicular_To_Wire.md @@ -1,5 +1,5 @@ # Macro Perpendicular To Wire/fr - {{Macro/fr +{{Macro/fr |Name=Macro Perpendicular To Wire |Icon=Macro_Perpendicular_To_Wire.png |Description=Cette macro positionne un objet perpendiculairement au fil sélectionné. @@ -140,3 +140,6 @@ Les autres paramètres de `discretize()` sont les suivants: ## Version Ver 00.03 2020-03-21: Corrections de fautes dans le code source et de commentaires Ver 00.02 2019-04-06 : Python 3 + +--- +[documentation index](../README.md) > Macro Perpendicular To Wire/fr diff --git a/wiki/translations/fr/Macro_PlacementAbsolufy.md b/wiki/translations/fr/Macro_PlacementAbsolufy.md index 36098afbd8..8d569456d1 100644 --- a/wiki/translations/fr/Macro_PlacementAbsolufy.md +++ b/wiki/translations/fr/Macro_PlacementAbsolufy.md @@ -1,7 +1,4 @@ # Macro PlacementAbsolufy/fr - - - {{Macro |Name=PlacementAbsolufy |Name/fr=PlacementAbsolufy @@ -95,3 +92,6 @@ App.ActiveDocument.commitTransaction() #commit transaction ## Forum discussion Pour tout commentaire (bogue, demande de fonctionnalité, commentaires, \...), veuillez utiliser ce fil de discussion: [Preserving global position of Parts during export](https://forum.freecadweb.org/viewtopic.php?f=3&t=36869) + +--- +[documentation index](../README.md) > Macro PlacementAbsolufy/fr diff --git a/wiki/translations/fr/Macro_Polyhedrons.md b/wiki/translations/fr/Macro_Polyhedrons.md index ed9372aeb9..0640e993ff 100644 --- a/wiki/translations/fr/Macro_Polyhedrons.md +++ b/wiki/translations/fr/Macro_Polyhedrons.md @@ -1,5 +1,5 @@ # Macro Polyhedrons/fr - {{Macro/fr +{{Macro/fr |Name=Macro Polyhedrons |Name/fr=Macro Polyhedrons |Icon=Dodecahedron.svg @@ -867,3 +867,5 @@ mainaction = polyhedron_dialog() }} +--- +[documentation index](../README.md) > Macro Polyhedrons/fr diff --git a/wiki/translations/fr/Macro_Print_SceneGraph.md b/wiki/translations/fr/Macro_Print_SceneGraph.md index a3e16c32a7..af4d257c53 100644 --- a/wiki/translations/fr/Macro_Print_SceneGraph.md +++ b/wiki/translations/fr/Macro_Print_SceneGraph.md @@ -1,7 +1,4 @@ # Macro Print SceneGraph/fr - - - {{Macro/fr |Name=Macro_Print_SceneGraph |Icon=Macro_Print_SceneGraph.png @@ -118,3 +115,5 @@ else: QtGui.QApplication.restoreOverrideCursor() ``` +--- +[documentation index](../README.md) > Macro Print SceneGraph/fr diff --git a/wiki/translations/fr/Macro_PropertyMemo.md b/wiki/translations/fr/Macro_PropertyMemo.md index 5b5cdf5a02..61e0fc6798 100644 --- a/wiki/translations/fr/Macro_PropertyMemo.md +++ b/wiki/translations/fr/Macro_PropertyMemo.md @@ -1,5 +1,5 @@ # Macro PropertyMemo/fr - {{Macro/fr +{{Macro/fr |Name=Macro_PropertyMemo |Icon=PropertyMemo.png |Description={{ColoredText|#ff0000|#ffffff|Nouvelle interface graphique modifiée pour fonctionner en HD dpi (QGridLayout), uniquement la version FC 0.19 et plus (PySide2 Qt5)}}

@@ -402,3 +402,6 @@ Mes macros sur [mario52a](https://gist.github.com/mario52a) gists - ver 00.03 2020/05/17 : disposition de la grille pour 0.19 - ver 00.02 19/10/2015 : ajout d\'un checkBox pour mémo String ou mémo Liste + +--- +[documentation index](../README.md) > Macro PropertyMemo/fr diff --git a/wiki/translations/fr/Macro_Pyramid.md b/wiki/translations/fr/Macro_Pyramid.md index a7b545b88f..14ff33f556 100644 --- a/wiki/translations/fr/Macro_Pyramid.md +++ b/wiki/translations/fr/Macro_Pyramid.md @@ -1,5 +1,5 @@ # Macro Pyramid/fr - {{Macro/fr +{{Macro/fr |Name=Macro Pyramid |Icon=Pyramidicon.svg |Description=Cette macro crée un pyramide paramétrique. Le rayon et la hauteur seront définis au moment de la création, comme pour le cône partiel.. @@ -294,3 +294,6 @@ FreeCADGui.SendMsgToActiveView("ViewFit") ## Lien La discussion sur le forum [Macros for pyramids and polyhedrons](https://forum.freecadweb.org/viewtopic.php?f=22&t=40485&p=344116&hilit=Eddyverl#p344116) + +--- +[documentation index](../README.md) > Macro Pyramid/fr diff --git a/wiki/translations/fr/Macro_Python_Assistant_Window.md b/wiki/translations/fr/Macro_Python_Assistant_Window.md index aa7d6992ae..468c92389c 100644 --- a/wiki/translations/fr/Macro_Python_Assistant_Window.md +++ b/wiki/translations/fr/Macro_Python_Assistant_Window.md @@ -1,5 +1,5 @@ # Macro Python Assistant Window/fr - {{Macro/fr +{{Macro/fr |Name=Macro Python Assistant Window |Description=Cette macro fournit un espace de travail couper/copier/coller pour le code Python. Elle est segmentée afin de pouvoir sélectionner différentes sections et est persistante entre les sessions FreeCAD. |Author=Piffpoof @@ -633,6 +633,5 @@ ToolBar Icon ![](images/Macro_Python_Assistant_Window.png ) # #thus ends the macro... - - - +--- +[documentation index](../README.md) > Macro Python Assistant Window/fr diff --git a/wiki/translations/fr/Macro_Recompute_Profiler.md b/wiki/translations/fr/Macro_Recompute_Profiler.md index 0f34033053..ebc618ffa5 100644 --- a/wiki/translations/fr/Macro_Recompute_Profiler.md +++ b/wiki/translations/fr/Macro_Recompute_Profiler.md @@ -1,5 +1,5 @@ # Macro Recompute Profiler/fr - {{Macro/fr +{{Macro/fr |Name=Macro Recompute Profiler |icone=Macro_Recompute_Profiler.png |Description=Cette macro chronomètre le temps nécessaire pour recalculer chaque fonction. @@ -213,6 +213,5 @@ Coin version: 4.0.0a OCC version: 7.0.0 ``` - - - +--- +[documentation index](../README.md) > Macro Recompute Profiler/fr diff --git a/wiki/translations/fr/Macro_Rectellipse.md b/wiki/translations/fr/Macro_Rectellipse.md index 8c430b6745..9a7591b051 100644 --- a/wiki/translations/fr/Macro_Rectellipse.md +++ b/wiki/translations/fr/Macro_Rectellipse.md @@ -1,5 +1,5 @@ # Macro Rectellipse/fr - {{Macro/fr +{{Macro/fr |Name=Macro Rectellipse |Icon=Macro_Rectellipse.png |Description=Crée un Rectellipse paramétrique @@ -89,3 +89,6 @@ if __name__ == "__main__": ## Liens [Le code sur Github](https://github.com/FreeCAD/FreeCAD-macros/blob/master/ParametricObjectCreation/Rectellipse.FCMacro) + +--- +[documentation index](../README.md) > Macro Rectellipse/fr diff --git a/wiki/translations/fr/Macro_Remove_parametric_history.md b/wiki/translations/fr/Macro_Remove_parametric_history.md index 53725279f8..3f866cf51d 100644 --- a/wiki/translations/fr/Macro_Remove_parametric_history.md +++ b/wiki/translations/fr/Macro_Remove_parametric_history.md @@ -1,5 +1,5 @@ # Macro Remove parametric history/fr - {{Macro/fr +{{Macro/fr |Name=Remove parametric history |Icon=Macro_Remove_parametric_history.png |Description=Cela supprimera toutes les associativités paramétriques d'un objet, le transformant en une "simple" forme @@ -38,6 +38,5 @@ newObject.Shape = newShape }} - - - +--- +[documentation index](../README.md) > Macro Remove parametric history/fr diff --git a/wiki/translations/fr/Macro_Replace_Part_in_Assembly.md b/wiki/translations/fr/Macro_Replace_Part_in_Assembly.md index 827741bc1f..6fe6d506ec 100644 --- a/wiki/translations/fr/Macro_Replace_Part_in_Assembly.md +++ b/wiki/translations/fr/Macro_Replace_Part_in_Assembly.md @@ -1,5 +1,5 @@ # Macro Replace Part in Assembly/fr - {{Macro/fr +{{Macro/fr |Name=Macro Replace Part in Assembly |Icon=Replace_Part.png |Description=Remplace une pièce dans un assemblage par une autre. @@ -615,6 +615,5 @@ class replace(): }} - - - +--- +[documentation index](../README.md) > Macro Replace Part in Assembly/fr diff --git a/wiki/translations/fr/Macro_ReproWire.md b/wiki/translations/fr/Macro_ReproWire.md index 6e946619d6..77855baee5 100644 --- a/wiki/translations/fr/Macro_ReproWire.md +++ b/wiki/translations/fr/Macro_ReproWire.md @@ -1,2 +1,5 @@ # Macro ReproWire/fr 1. REDIRECT [Macro Repro Wire/fr](Macro_Repro_Wire/fr.md) + +--- +[documentation index](../README.md) > Macro ReproWire/fr diff --git a/wiki/translations/fr/Macro_Repro_Wire.md b/wiki/translations/fr/Macro_Repro_Wire.md index 677ccc832a..d260712213 100644 --- a/wiki/translations/fr/Macro_Repro_Wire.md +++ b/wiki/translations/fr/Macro_Repro_Wire.md @@ -1,5 +1,5 @@ # Macro Repro Wire/fr - {{Macro/fr +{{Macro/fr |Name=Macro Repro Wire |Icon= Macro_ReproWire.png |Description=Cette macro fait une copie de l'objet ou subObjet sélectionné.
(inclus dan FreeCAD à partir de la version 0.19 : Menu → Pièces → Créer une copie) @@ -145,6 +145,5 @@ except Exception: Le forum [are there any tools to extrude only selected surface from a sketch?](http://forum.freecadweb.org/viewtopic.php?f=3&t=12922) - - - +--- +[documentation index](../README.md) > Macro Repro Wire/fr diff --git a/wiki/translations/fr/Macro_Rotate_To_Point.md b/wiki/translations/fr/Macro_Rotate_To_Point.md index 7088ee5b5a..03b3366847 100644 --- a/wiki/translations/fr/Macro_Rotate_To_Point.md +++ b/wiki/translations/fr/Macro_Rotate_To_Point.md @@ -1,5 +1,5 @@ # Macro Rotate To Point/fr - {{Macro/fr +{{Macro/fr |Name=Macro Rotate To Point |Icon=Macro_Rotate_To_Point.svg |Description={{ColoredText|#ff0000|#ffffff|La version mise à jour de la macro a modifié l'interface graphique pour améliorer la prise en charge HiDPI (QGridLayout). Exécutez uniquement FC v0.18 ou supérieur (prenant en charge Qt5 et PySide2)}}

Macro pour faire tourner un objet sur lui-même sur un axe de rotation: centre de la boîte, centre de masse, direction du fil ou dernier point cliqué.
Vous pouvez sauvegarder les coordonnées travaillées dans un fichier coordonnées [(0.06,1.30,0.0),(85.0,0.0,0.0)] ou dans une macro complète pour créer une animation.

Pour la version précédente (Qt4), voir [https://gist.githubusercontent.com/mario52a/2fc48333deca5a31e6232c29a9db5e4c/raw/9231d5b1d218357305cc0404e46bf6c107509a0e/Macro%2520Rotate%2520To%2520Point.FCMacro Macro_Rotate_To_Point Macro_Rotate_To_Point] et installez la manuellement. @@ -2997,3 +2997,6 @@ myObject.Placement 05/03/2017 ver 00.01 : ajout de 3 boîtes de dialogue pour afficher les coordonnées X Y Z au clic de souris 04/03/2017 ver 00.00 + +--- +[documentation index](../README.md) > Macro Rotate To Point/fr diff --git a/wiki/translations/fr/Macro_Rotate_View.md b/wiki/translations/fr/Macro_Rotate_View.md index afb672534a..4f1fa94e48 100644 --- a/wiki/translations/fr/Macro_Rotate_View.md +++ b/wiki/translations/fr/Macro_Rotate_View.md @@ -1,5 +1,5 @@ # Macro Rotate View/fr - {{Macro/fr +{{Macro/fr |Name=Rotate View by 90° |Translate=Vue Rotation à 90° |Icon=Macro Rotate View view 90 Degrees.png @@ -37,6 +37,5 @@ nrot = cam.orientation.getValue() * rot cam.orientation = nrot }} - - - +--- +[documentation index](../README.md) > Macro Rotate View/fr diff --git a/wiki/translations/fr/Macro_Rotate_ViewAxonometric.md b/wiki/translations/fr/Macro_Rotate_ViewAxonometric.md index 29ec3ba3bb..a3a70e89b5 100644 --- a/wiki/translations/fr/Macro_Rotate_ViewAxonometric.md +++ b/wiki/translations/fr/Macro_Rotate_ViewAxonometric.md @@ -1,5 +1,5 @@ # Macro Rotate ViewAxonometric/fr - {{Macro +{{Macro |Name=Macro Rotate ViewAxonometric |Icon=Macro_Rotate_View_with_Y_pointing_upwards_.png |Description=Cette macro pivote la vue dans la position axonométrique (2 posibilités, Y et Z). @@ -64,6 +64,5 @@ cam.orientation = nrot Gui.SendMsgToActiveView("ViewFit") }} - - - +--- +[documentation index](../README.md) > Macro Rotate ViewAxonometric/fr diff --git a/wiki/translations/fr/Macro_Rotate_View_Free.md b/wiki/translations/fr/Macro_Rotate_View_Free.md index 0421523ebc..e286db1cb4 100644 --- a/wiki/translations/fr/Macro_Rotate_View_Free.md +++ b/wiki/translations/fr/Macro_Rotate_View_Free.md @@ -1,5 +1,5 @@ # Macro Rotate View Free/fr - {{Macro +{{Macro |Name=Rotate View Free |Translate=Rotation Libre |Icon=Text_console_python.png @@ -52,6 +52,5 @@ RotateView(0,1,0,45) si aucun document n\'est ouvert une erreur est retournée - - - +--- +[documentation index](../README.md) > Macro Rotate View Free/fr diff --git a/wiki/translations/fr/Macro_Rubik_Cube.md b/wiki/translations/fr/Macro_Rubik_Cube.md index 728473e773..f70590e5bd 100644 --- a/wiki/translations/fr/Macro_Rubik_Cube.md +++ b/wiki/translations/fr/Macro_Rubik_Cube.md @@ -1,5 +1,5 @@ # Macro Rubik Cube/fr - {{Macro/fr +{{Macro/fr |Name=Macro Rubik Cube |Icon=Macro_Rubik_Cube.png |Description=Macro qui affiche un Rubik cube permet faire interactivement des rotations de ses tranches. @@ -1674,3 +1674,6 @@ ToolBar Icon FreeCAD.Console.PrintLog("fix_reload() done\n") restoreCursor() + +--- +[documentation index](../README.md) > Macro Rubik Cube/fr diff --git a/wiki/translations/fr/Macro_Screen_Wiki.md b/wiki/translations/fr/Macro_Screen_Wiki.md index e8123c9262..d319e45477 100644 --- a/wiki/translations/fr/Macro_Screen_Wiki.md +++ b/wiki/translations/fr/Macro_Screen_Wiki.md @@ -1,7 +1,4 @@ # Macro Screen Wiki/fr - - - {{Macro/fr |Name=Macro Screen Wiki |Icon=Macro_Screen_Wiki.png @@ -277,3 +274,6 @@ Version=0.03: 2020/10/30 : creation d\'une barre d\'outils pour sauver une image Version=0.02: 2020/05/04 : correction de la couleur du bouton bug (self.PB\_01\_Color obsolete) Version = 00.01 : 2020/03/21 : + +--- +[documentation index](../README.md) > Macro Screen Wiki/fr diff --git a/wiki/translations/fr/Macro_Section.md b/wiki/translations/fr/Macro_Section.md index 4174ab8a00..3e6a4dc64b 100644 --- a/wiki/translations/fr/Macro_Section.md +++ b/wiki/translations/fr/Macro_Section.md @@ -1,5 +1,5 @@ # Macro Section/fr - (parametrique!) +(parametrique!) {{Macro/fr @@ -207,3 +207,5 @@ def run(): }} +--- +[documentation index](../README.md) > Macro Section/fr diff --git a/wiki/translations/fr/Macro_SelectVisible.md b/wiki/translations/fr/Macro_SelectVisible.md index a5a735f551..7367d295cf 100644 --- a/wiki/translations/fr/Macro_SelectVisible.md +++ b/wiki/translations/fr/Macro_SelectVisible.md @@ -1,5 +1,5 @@ # Macro SelectVisible/fr - {{Macro/fr +{{Macro/fr |Icon=SelectVisible.png |Name=Macro SelectVisible |Description=Sélectionne tous les objets visibles. @@ -53,4 +53,7 @@ else: for o in doc.Objects: if o.ViewObject.Visibility: Gui.Selection.addSelection(o) -}} +}} + +--- +[documentation index](../README.md) > Macro SelectVisible/fr diff --git a/wiki/translations/fr/Macro_Select_Hovering.md b/wiki/translations/fr/Macro_Select_Hovering.md index dc1dcb89eb..f3a9eb560b 100644 --- a/wiki/translations/fr/Macro_Select_Hovering.md +++ b/wiki/translations/fr/Macro_Select_Hovering.md @@ -1,5 +1,5 @@ # Macro Select Hovering/fr - {{Macro/fr +{{Macro/fr |Name=Macro Select Hovering |Icon=Macro_Select_Hovering.png |Description=Cette macro sélectionne au choix Face, Bord, Sommet juste en survolant la souris sur les objets.
PS: Pour désélectionner une face (ou autre) cliquez sur le bouton **Pause grab** et utiliser la procédure standard : CTRL + Click @@ -409,3 +409,6 @@ ver 00.01 (25/12/2017) : ## Lien [Multiple face selection to convert a shape to a solid](https://forum.freecadweb.org/viewtopic.php?f=3&t=26370) + +--- +[documentation index](../README.md) > Macro Select Hovering/fr diff --git a/wiki/translations/fr/Macro_Shake_Sketch.md b/wiki/translations/fr/Macro_Shake_Sketch.md index 0d1d362c25..5d71b37911 100644 --- a/wiki/translations/fr/Macro_Shake_Sketch.md +++ b/wiki/translations/fr/Macro_Shake_Sketch.md @@ -1,7 +1,4 @@ # Macro Shake Sketch/fr - - - {{Macro/fr |Name=Macro Shake Sketch |Icon=Macro_Shake_Sketch.png @@ -169,6 +166,5 @@ if do_move: move_points(sketch, i, sigma) ``` - - - +--- +[documentation index](../README.md) > Macro Shake Sketch/fr diff --git a/wiki/translations/fr/Macro_Sheet_Metal_Unfolder.md b/wiki/translations/fr/Macro_Sheet_Metal_Unfolder.md index d7082f6086..be41e60248 100644 --- a/wiki/translations/fr/Macro_Sheet_Metal_Unfolder.md +++ b/wiki/translations/fr/Macro_Sheet_Metal_Unfolder.md @@ -1,5 +1,5 @@ # Macro Sheet Metal Unfolder/fr - {{Macro/fr +{{Macro/fr |Name=Sheet Metal Unfolder |Icon=Macro_Sheet_Metal_Unfolder.png |Description=La macro peut déplier de simples pièces de tôle. Les pièces doivent avoir partout la même épaisseur de matériau que celle des pièces en tôle. @@ -1488,3 +1488,5 @@ else: }} +--- +[documentation index](../README.md) > Macro Sheet Metal Unfolder/fr diff --git a/wiki/translations/fr/Macro_SimpleProperties.md b/wiki/translations/fr/Macro_SimpleProperties.md index f67712e891..233e560334 100644 --- a/wiki/translations/fr/Macro_SimpleProperties.md +++ b/wiki/translations/fr/Macro_SimpleProperties.md @@ -1,5 +1,5 @@ # Macro SimpleProperties/fr - {{Macro/fr +{{Macro/fr |Name=SimpleProperties |Name/fr=SimpleProperties |Icon=Macro_SimpleProperties.png @@ -128,3 +128,5 @@ else: }} +--- +[documentation index](../README.md) > Macro SimpleProperties/fr diff --git a/wiki/translations/fr/Macro_Site_From_Contours.md b/wiki/translations/fr/Macro_Site_From_Contours.md index 8b66088364..2d89092552 100644 --- a/wiki/translations/fr/Macro_Site_From_Contours.md +++ b/wiki/translations/fr/Macro_Site_From_Contours.md @@ -1,7 +1,4 @@ # Macro Site From Contours/fr - - - {{Macro/fr |Name=Macro Site From Contours |Icon=Macro_Site_From_Contours.png @@ -102,3 +99,6 @@ FreeCAD.ActiveDocument.recompute() ## Liens La discussion sur le forum [Create Toposurface from DXF](https://forum.freecadweb.org/viewtopic.php?f=3&t=30569) + +--- +[documentation index](../README.md) > Macro Site From Contours/fr diff --git a/wiki/translations/fr/Macro_SketchUnmap.md b/wiki/translations/fr/Macro_SketchUnmap.md index 7b9b1148a5..77bc7f6d13 100644 --- a/wiki/translations/fr/Macro_SketchUnmap.md +++ b/wiki/translations/fr/Macro_SketchUnmap.md @@ -1,5 +1,5 @@ # Macro SketchUnmap/fr - {{Macro/fr +{{Macro/fr |Name=SketchUnmap |Description=Cette macro réinitialise un emplacement absolu de l’esquisse et crée éventuellement un plan de référence.
Cette macro a été écrite principalement pour contourner le problème de dénomination topologique susceptible de casser un modèle lorsqu'une esquisse a été attachée directement ou indirectement à une face ou à un objet. tout autre élément topologique.
Pour éviter les ruptures, une macro doit être appliquée lorsque le modèle est toujours correct. Il ne peut pas "réparer" un modèle cassé. Si vous venez de casser votre modèle, annulez les dernières modifications dans une bonne situation, appliquez la macro aux esquisses instables, puis recommencez l'opération précédente. @@ -195,6 +195,5 @@ else: Pour tout commentaire (bug, demande de fonctionnalité, commentaires, \...), veuillez utiliser ce fil de discussion : [(FR) macro to remap sketch to different reference](https://forum.freecadweb.org/viewtopic.php?f=22&t=36078) - - - +--- +[documentation index](../README.md) > Macro SketchUnmap/fr diff --git a/wiki/translations/fr/Macro_Snip.md b/wiki/translations/fr/Macro_Snip.md index e1b8cb0b6d..623e2f040b 100644 --- a/wiki/translations/fr/Macro_Snip.md +++ b/wiki/translations/fr/Macro_Snip.md @@ -1,5 +1,5 @@ # Macro Snip/fr - {{Macro/fr +{{Macro/fr |Name=Snip |Icon=Snip.png |Description=Utilisez cette macro pour poster facilement des captures d’écran sur le forum FreeCAD.
Il est préférable d’ajouter cette macro à votre barre d’outils de macros personnalisées globales pour un accès rapide et facile.
Lors de la publication sur le forum FreeCAD, il est souvent utile d'être en mesure d'inclure des captures d'écran. Le problème est que c'est une tâche un peu fastidieuse. Cette macro facilite un peu la tâche.
La macro peut prendre des captures d’écran ou utiliser des captures d’écran existantes déjà copiées dans le Presse-papiers du système. Pour ignorer l'image déjà dans le presse-papiers, appuyez sur la touche Maj tout en appelant la macro. Pour utiliser la macro afin de prendre la capture d'écran, ajustez la taille et l'emplacement de la boîte de dialogue qui apparaît, puis cliquez sur OK. En cliquant sur OK, la macro tentera de prendre une capture d'écran de la zone de l'écran couverte par la boîte de dialogue. La boîte de dialogue elle-même est semi-transparente, vous pouvez donc voir le contenu ci-dessous. @@ -324,3 +324,6 @@ if not userCanceled: ## Lien La discussion sur le forum [Snip macro](https://forum.freecadweb.org/viewtopic.php?f=9&t=38328&sid=385bf3174dcae7fb8bdf529f4e76dfed) + +--- +[documentation index](../README.md) > Macro Snip/fr diff --git a/wiki/translations/fr/Macro_Solid_Sweep.md b/wiki/translations/fr/Macro_Solid_Sweep.md index 05686f573e..b949db4073 100644 --- a/wiki/translations/fr/Macro_Solid_Sweep.md +++ b/wiki/translations/fr/Macro_Solid_Sweep.md @@ -1,5 +1,5 @@ # Macro Solid Sweep/fr - {{Macro/fr +{{Macro/fr |Name=Balayage solide |Icon=Macro_Solid_Sweep.png |Description=Créé un solide en balayant un profil le long d'une trajectoire. @@ -86,3 +86,6 @@ myObject.Shape = Sweep Merci à [Wmayer](User:Wmayer.md) sans l\'aide de qui je n\'aurais pu rédiger ce script. Deux exemples d\'utilisation peuvent être consultés dans [cette discussion du forum (en anglais)](http://forum.freecadweb.org/viewtopic.php?f=8&t=1222&start=50#p11120), ainsi que des liens de téléchargement des fichiers FCStd. En utilisant une hélice comme trajectoire, un balayage solide peut être utilisé pour créer un filet de vis. + +--- +[documentation index](../README.md) > Macro Solid Sweep/fr diff --git a/wiki/translations/fr/Macro_SplitPropEditor.md b/wiki/translations/fr/Macro_SplitPropEditor.md index 2e8cac413b..da53f419cc 100644 --- a/wiki/translations/fr/Macro_SplitPropEditor.md +++ b/wiki/translations/fr/Macro_SplitPropEditor.md @@ -1,5 +1,5 @@ # Macro SplitPropEditor/fr - {{Macro +{{Macro |Name=SplitPropEditor |Icon= |Description=Cette macro permet de séparer temporairement l'éditeur de propriétés de la vue combo vers un widget docké séparé. @@ -170,3 +170,5 @@ if __name__ == '__main__': # if macro called to run run() }} +--- +[documentation index](../README.md) > Macro SplitPropEditor/fr diff --git a/wiki/translations/fr/Macro_Spreadsheet2html.md b/wiki/translations/fr/Macro_Spreadsheet2html.md index a23f3e56e5..4bb1c5c1ea 100644 --- a/wiki/translations/fr/Macro_Spreadsheet2html.md +++ b/wiki/translations/fr/Macro_Spreadsheet2html.md @@ -1,7 +1,4 @@ # Macro Spreadsheet2html/fr - - - {{Macro |Name=Spreadsheet2html |Description=Exporte une feuille de calcul fc au format html. @@ -404,3 +401,6 @@ print('Exported spreadsheet as html.') ## Version v0.1 2021-08-09 : first release + +--- +[documentation index](../README.md) > Macro Spreadsheet2html/fr diff --git a/wiki/translations/fr/Macro_SpreadsheetTools.md b/wiki/translations/fr/Macro_SpreadsheetTools.md index 8af42f9f6c..e4d314fc23 100644 --- a/wiki/translations/fr/Macro_SpreadsheetTools.md +++ b/wiki/translations/fr/Macro_SpreadsheetTools.md @@ -1,5 +1,5 @@ # Macro SpreadsheetTools/fr - {{Macro/fr +{{Macro/fr |Name=Macro SpreadsheetTools |Icon=Macro_SpreadsheetTools.png |Description=Cette macro permet de gérer les cellules dans Spreadsheet-workbench de FreeCAD. @@ -504,6 +504,5 @@ form = Spreadsheet_Tools(MainWindow) form.show() }} - - - +--- +[documentation index](../README.md) > Macro SpreadsheetTools/fr diff --git a/wiki/translations/fr/Macro_Spring.md b/wiki/translations/fr/Macro_Spring.md index bf83d524af..ca8854c134 100644 --- a/wiki/translations/fr/Macro_Spring.md +++ b/wiki/translations/fr/Macro_Spring.md @@ -1,5 +1,5 @@ # Macro Spring/fr - {{Macro/fr +{{Macro/fr |Name=Spring Simul |Description=Simulation de la compression/décompression d'un ressort. |Author=Mario52 @@ -66,4 +66,7 @@ for ii2 in range(int(60)): ## Liens -La discussion du forum (en anglais) : [scripting animations](http://forum.freecadweb.org/viewtopic.php?f=22&t=7449#p62193) +La discussion du forum (en anglais) : [scripting animations](http://forum.freecadweb.org/viewtopic.php?f=22&t=7449#p62193) + +--- +[documentation index](../README.md) > Macro Spring/fr diff --git a/wiki/translations/fr/Macro_Stairs.md b/wiki/translations/fr/Macro_Stairs.md index be74474030..cebffc8fe1 100644 --- a/wiki/translations/fr/Macro_Stairs.md +++ b/wiki/translations/fr/Macro_Stairs.md @@ -1,5 +1,5 @@ # Macro Stairs/fr - {{Macro/fr +{{Macro/fr |Name=Macro Stairs |Icon=Macro_Stairs.png |Description=Crée un escalier en suivant une hélice. @@ -110,6 +110,5 @@ FreeCAD.ActiveDocument.recompute() La discussion sur le forum [Newbie question - spiral stairs reloaded](http://forum.freecadweb.org/viewtopic.php?f=3&t=9921) - - - +--- +[documentation index](../README.md) > Macro Stairs/fr diff --git a/wiki/translations/fr/Macro_SuperWire.md b/wiki/translations/fr/Macro_SuperWire.md index 32ce6e01b5..113b859ed1 100644 --- a/wiki/translations/fr/Macro_SuperWire.md +++ b/wiki/translations/fr/Macro_SuperWire.md @@ -1,7 +1,4 @@ # Macro SuperWire/fr - - - {{Macro/fr |Name=SuperWire |Icon=Macro_SuperWire.png @@ -50,6 +47,5 @@ else: ``` - - - +--- +[documentation index](../README.md) > Macro SuperWire/fr diff --git a/wiki/translations/fr/Macro_Texture.md b/wiki/translations/fr/Macro_Texture.md index bfce097778..0aa4a31ae4 100644 --- a/wiki/translations/fr/Macro_Texture.md +++ b/wiki/translations/fr/Macro_Texture.md @@ -1,7 +1,4 @@ # Macro Texture/fr - - - {{Macro/fr |Name=Macro Texture |Icon=FCTexture.png @@ -390,3 +387,6 @@ La macro FCCreaLoft [ - ver 0.4 : 08/08/2014 PyQt4 PySide ver 0.3 : 28/03/2014 :commenté la ligne \"**\# self.checkBox\_5.setAccessibleName(\_fromUtf8(\"\"))**\" qui a causé une erreur d\'exécution à partir de la version FreeCAD : Version: 0.14.3343 (Git), Python version: 2.7.6, Qt version: 4.8.5 + +--- +[documentation index](../README.md) > Macro Texture/fr diff --git a/wiki/translations/fr/Macro_Texture_Objects.md b/wiki/translations/fr/Macro_Texture_Objects.md index 1d503d1208..b1e00b2229 100644 --- a/wiki/translations/fr/Macro_Texture_Objects.md +++ b/wiki/translations/fr/Macro_Texture_Objects.md @@ -1,5 +1,5 @@ # Macro Texture Objects/fr - {{Macro/fr +{{Macro/fr |Name=Texture Objects |Icon=Macro_Texture_Objects.png |Description=Cette macro permet de mettre temporairement une image qui servira de texture sur les objets sélectionnés. Pour supprimer les textures, Fermez simplement le document et rouvrez le. @@ -45,6 +45,5 @@ for obj in FreeCADGui.Selection.getSelection(): [Script to map texture with environement checked](https://forum.freecadweb.org/viewtopic.php?f=3&t=28795) - - - +--- +[documentation index](../README.md) > Macro Texture Objects/fr diff --git a/wiki/translations/fr/Macro_Toggle_Drawstyle.md b/wiki/translations/fr/Macro_Toggle_Drawstyle.md index 58bce64a66..fd1cb4f006 100644 --- a/wiki/translations/fr/Macro_Toggle_Drawstyle.md +++ b/wiki/translations/fr/Macro_Toggle_Drawstyle.md @@ -1,5 +1,5 @@ # Macro Toggle Drawstyle/fr - {{Macro/fr +{{Macro/fr |Name=Macro Toggle Drawstyle |Description=Cette macro permet de basculer style d'affichage de l'objet sélectionné. |Author=Piffpoof @@ -127,6 +127,5 @@ else: The forum discussion [Keyboard shortcut, View toolbar - Wireframe](https://forum.freecadweb.org/viewtopic.php?f=3&t=14336) - - - +--- +[documentation index](../README.md) > Macro Toggle Drawstyle/fr diff --git a/wiki/translations/fr/Macro_Toggle_Drawstyle_Optimized.md b/wiki/translations/fr/Macro_Toggle_Drawstyle_Optimized.md index 3e158db49f..6cb1d7e360 100644 --- a/wiki/translations/fr/Macro_Toggle_Drawstyle_Optimized.md +++ b/wiki/translations/fr/Macro_Toggle_Drawstyle_Optimized.md @@ -1,5 +1,5 @@ # Macro Toggle Drawstyle Optimized/fr - {{Macro/fr +{{Macro/fr |Name=Macro Toggle Drawstyle Optimized |Description=Script optimisé pour toutes les langues et pour les objets sélectionnés ou tous les objets.
Lorsque vous travaillez avec FreeCAD, vous pouvez parfois changer rapidement le style de dessin de l'objet avec lequel vous travaillez. Ceci est disponible via le menu déroulant Drawstyle où n'importe quel style Drawstyle peut être sélectionné. Cette macro rend disponibles 2 des styles de dessin sous forme de bouton cliquable sur une barre d'outils sur laquelle l'utilisateur peut cliquer pour basculer entre les deux styles de dessin.
|Author=Piffpoof , triplus @@ -228,3 +228,6 @@ for o in obj: Le lien sur forum (2016-11-27 ver:1.0 FC =\< 0.17): [Keyboard shortcut, View toolbar - Wireframe](https://forum.freecadweb.org/viewtopic.php?f=3&t=14336&start=40#p146239) The Forum link (2020-29-01 ver:2.0 FC =\> 0.17) : [Keyboard shortcut, View toolbar - Wireframe](https://forum.freecadweb.org/viewtopic.php?f=3&t=14336&start=50#p364692) + +--- +[documentation index](../README.md) > Macro Toggle Drawstyle Optimized/fr diff --git a/wiki/translations/fr/Macro_Toggle_Panels_Visibility.md b/wiki/translations/fr/Macro_Toggle_Panels_Visibility.md index 46c64d2653..a7259233c6 100644 --- a/wiki/translations/fr/Macro_Toggle_Panels_Visibility.md +++ b/wiki/translations/fr/Macro_Toggle_Panels_Visibility.md @@ -1,5 +1,5 @@ # Macro Toggle Panels Visibility/fr - {{Macro/fr +{{Macro/fr |Icon=Macro_Toggle_Views_Visibility.png |Name=Macro Toggle Panels Visibility |Name/fr=Macro Toggle Panels Visibility @@ -63,6 +63,5 @@ else: }} - - - +--- +[documentation index](../README.md) > Macro Toggle Panels Visibility/fr diff --git a/wiki/translations/fr/Macro_Toggle_Visibility.md b/wiki/translations/fr/Macro_Toggle_Visibility.md index 4433c5ab84..34389c024c 100644 --- a/wiki/translations/fr/Macro_Toggle_Visibility.md +++ b/wiki/translations/fr/Macro_Toggle_Visibility.md @@ -1,5 +1,5 @@ # Macro Toggle Visibility/fr - {{Macro/fr +{{Macro/fr |Icon=Macro SelectVisible.png |Name=Toggle Visibility |Description=Flip/Flop Cache/Affiche tous les objets qui ne sont pas sélectionnés. @@ -78,3 +78,6 @@ La discussion sur le forum [Proposal: select one or more pieces, hide the others ## Version ver 00.02 12/11/2015 **macro Macro\_SelectVisible** : Si aucun objet n\'est sélectionné tous les objets seront cachés, si les objets sont cachés et qu\'aucun objet n\'est sélectionné dans la Vue combinée tous les objets seront visibles. Cette nouvelle version inclus les trois macros en une seule. + +--- +[documentation index](../README.md) > Macro Toggle Visibility/fr diff --git a/wiki/translations/fr/Macro_Toggle_Visibility2_1-2.md b/wiki/translations/fr/Macro_Toggle_Visibility2_1-2.md index cc36dd0c36..73fb33a679 100644 --- a/wiki/translations/fr/Macro_Toggle_Visibility2_1-2.md +++ b/wiki/translations/fr/Macro_Toggle_Visibility2_1-2.md @@ -1,5 +1,5 @@ # Macro Toggle Visibility2 1-2/fr - {{Macro/fr +{{Macro/fr |Name=Macro Toggle Visibility2 1-2 |Icon=Macro_SelectVisible2.png |Description={{ColoredParagraph|DarkRed|Yellow|Cette macro doit être utilisée avec '''Macro Toggle Visibility2 2-2'''}}
Cache tous les objets qui ne sont pas sélectionnés, le rappel permet de retourner à l'état original. @@ -88,3 +88,6 @@ Seconde macro [Macro Toggle Visibility2 2-2](Macro_Toggle_Visibility2_2-2/fr.md) La discussion sure forum [Re: Proposal: select one or more pieces, hide the others.](https://forum.freecadweb.org/viewtopic.php?f=8&t=13152&start=10#p184056) Idée Originale [Macro\_Toggle\_Visibility](https://www.freecadweb.org/wiki/index.php?title=Macro_Toggle_Visibility) + +--- +[documentation index](../README.md) > Macro Toggle Visibility2 1-2/fr diff --git a/wiki/translations/fr/Macro_Toggle_Visibility2_2-2.md b/wiki/translations/fr/Macro_Toggle_Visibility2_2-2.md index 96154fe230..f4fd7cc8ef 100644 --- a/wiki/translations/fr/Macro_Toggle_Visibility2_2-2.md +++ b/wiki/translations/fr/Macro_Toggle_Visibility2_2-2.md @@ -1,5 +1,5 @@ # Macro Toggle Visibility2 2-2/fr - {{Macro/fr +{{Macro/fr |Name=Macro Toggle Visibility2 2-2 |translate=Macro Toggle Visibility2 2-2 |Icon=Macro_VisibleAlls2.png @@ -49,3 +49,5 @@ try: except Exception: None }} +--- +[documentation index](../README.md) > Macro Toggle Visibility2 2-2/fr diff --git a/wiki/translations/fr/Macro_TreeToAscii.md b/wiki/translations/fr/Macro_TreeToAscii.md index f33860cab1..d9a964f1a4 100644 --- a/wiki/translations/fr/Macro_TreeToAscii.md +++ b/wiki/translations/fr/Macro_TreeToAscii.md @@ -1,5 +1,5 @@ # Macro TreeToAscii/fr - {{Macro +{{Macro |Name=TreeToAscii |Description=Cette macro génère une représentation graphique ASCII de l'arbre du ou des objets sélectionnés. |Author=OpenBrain @@ -249,3 +249,5 @@ dlg.exec_() }} +--- +[documentation index](../README.md) > Macro TreeToAscii/fr diff --git a/wiki/translations/fr/Macro_Triangle_AH.md b/wiki/translations/fr/Macro_Triangle_AH.md index 1087fa7539..048d005635 100644 --- a/wiki/translations/fr/Macro_Triangle_AH.md +++ b/wiki/translations/fr/Macro_Triangle_AH.md @@ -1,5 +1,5 @@ # Macro Triangle AH/fr - {{Macro/fr +{{Macro/fr |Name=Macro Triangle AH |Icon=Macro_Triangle_AH.png |Description=Cette macro crée un triangle isocèle en donnant comme argument , l'angle de tête et la hauteur du triangle.Le triangle est créé dans les coordonnées réelle.
{{ColoredText|(Ligne de commande, collez cette macro complète dans la console Python)}}. @@ -96,3 +96,6 @@ ver 00.03 2019/07/02 ajout \"App.ActiveDocument.recompute()\" et convert Py3 ver 00.02 03/05/2015 : ajout \"base=0.0\", \"hypo=0.0\" affichage des données du triangle ver 00.01 20/03/2015 : + +--- +[documentation index](../README.md) > Macro Triangle AH/fr diff --git a/wiki/translations/fr/Macro_Unbind_Numpad_Shortcuts.md b/wiki/translations/fr/Macro_Unbind_Numpad_Shortcuts.md index ba22d1fce7..ddd3e80c72 100644 --- a/wiki/translations/fr/Macro_Unbind_Numpad_Shortcuts.md +++ b/wiki/translations/fr/Macro_Unbind_Numpad_Shortcuts.md @@ -1,5 +1,5 @@ # Macro Unbind Numpad Shortcuts/fr - {{Macro/fr +{{Macro/fr |Name=Macro Unbind Numpad Shortcuts |Icon=Macro_Unbind_Numpad_Shortcuts.png |Description=redéfinit les commandes de vue standard des touches numériques à Ctrl + chiffre, afin qu'elles ne fassent pas tourner la vue par accident lors de la saisie de nombres. @@ -45,3 +45,5 @@ for (cmd, shortcut) in preset: App.ParamGet("User parameter:BaseApp/Preferences/Shortcut").SetString(cmd, shortcut) }} +--- +[documentation index](../README.md) > Macro Unbind Numpad Shortcuts/fr diff --git a/wiki/translations/fr/Macro_Unfold_Box.md b/wiki/translations/fr/Macro_Unfold_Box.md index 20daadd7ef..238f4a4ecc 100644 --- a/wiki/translations/fr/Macro_Unfold_Box.md +++ b/wiki/translations/fr/Macro_Unfold_Box.md @@ -1,5 +1,5 @@ # Macro Unfold Box/fr - {{Macro/fr +{{Macro/fr |Name=Macro Unfold Box |Icon=Macro_Unfold_Box.png |Description=La macro permet de déplier les surfaces d'un objet de n'importe quelle forme et la dessiner sur une page.
@@ -601,3 +601,5 @@ DialogBox.show() }} +--- +[documentation index](../README.md) > Macro Unfold Box/fr diff --git a/wiki/translations/fr/Macro_Unroll_Ruled_Surface.md b/wiki/translations/fr/Macro_Unroll_Ruled_Surface.md index 404f1476c3..5fb6d98d3d 100644 --- a/wiki/translations/fr/Macro_Unroll_Ruled_Surface.md +++ b/wiki/translations/fr/Macro_Unroll_Ruled_Surface.md @@ -1,5 +1,5 @@ # Macro Unroll Ruled Surface/fr - {{Macro/fr +{{Macro/fr |Name=Macro Unroll Ruled Surface |Description=La macro permet de dérouler la surface d'une forme et la placer dans une page. |Author=Hervé B. @@ -745,6 +745,5 @@ DialogBox.show() }} - - - +--- +[documentation index](../README.md) > Macro Unroll Ruled Surface/fr diff --git a/wiki/translations/fr/Macro_View_Rotation.md b/wiki/translations/fr/Macro_View_Rotation.md index 492d98af0b..d6ee3db97c 100644 --- a/wiki/translations/fr/Macro_View_Rotation.md +++ b/wiki/translations/fr/Macro_View_Rotation.md @@ -1,5 +1,5 @@ # Macro View Rotation/fr - {{Macro/fr +{{Macro/fr |Name=View Rotation |Icon=Macro View Rotation.png |Description=Cette macro fournit une interface graphique, afin de permettre une rotation précise des objets dans la vue. @@ -293,3 +293,6 @@ Les deux premiers arguments, (**droit-300, 0**) (ligne 91) fournissent la positi ## Page de discussion [View+Rotation](http://forum.freecadweb.org/viewtopic.php?f=3&t=1784&hilit=View+Rotation#p12012) + +--- +[documentation index](../README.md) > Macro View Rotation/fr diff --git a/wiki/translations/fr/Macro_Visibility_Manager.md b/wiki/translations/fr/Macro_Visibility_Manager.md index 1d00cb651b..e5cf6cd901 100644 --- a/wiki/translations/fr/Macro_Visibility_Manager.md +++ b/wiki/translations/fr/Macro_Visibility_Manager.md @@ -1,7 +1,4 @@ # Macro Visibility Manager/fr - - - {{Macro/fr |Name=Visibility_Manager |Icon=Macro_Visibility_Manager.png @@ -239,3 +236,5 @@ else: FreeCAD.Console.PrintWarning("Visibility Manager v"+str(__version__)+": no active document\n") ``` +--- +[documentation index](../README.md) > Macro Visibility Manager/fr diff --git a/wiki/translations/fr/Macro_VisibleAlls.md b/wiki/translations/fr/Macro_VisibleAlls.md index eb40aad8cb..b748a11466 100644 --- a/wiki/translations/fr/Macro_VisibleAlls.md +++ b/wiki/translations/fr/Macro_VisibleAlls.md @@ -1,7 +1,4 @@ # Macro VisibleAlls/fr - - - {{Macro/fr |Name=Macro VisibleAlls |Icon=Macro_VisibleAlls.png @@ -42,6 +39,5 @@ except Exception: None ``` - - - +--- +[documentation index](../README.md) > Macro VisibleAlls/fr diff --git a/wiki/translations/fr/Macro_WireXYZ.md b/wiki/translations/fr/Macro_WireXYZ.md index 0807e321e3..ba44316d77 100644 --- a/wiki/translations/fr/Macro_WireXYZ.md +++ b/wiki/translations/fr/Macro_WireXYZ.md @@ -1,5 +1,5 @@ # Macro WireXYZ/fr - {{Macro/fr +{{Macro/fr |Name=WireXYZ |Icon=Macro_WireXYZ.png |Description=Crée un wire avec les coordonnées x y z séparées par un espace. Les données sont extraites d'un fichier.
{{ColoredText|(Ligne de commande, collez cette macro complète dans la console Python)}}. @@ -132,3 +132,6 @@ La discussion sur le forum [How do I transform a point cloud to a line?](http:// 00.02 02/07/2019 : 00.01 21/02/2015 + +--- +[documentation index](../README.md) > Macro WireXYZ/fr diff --git a/wiki/translations/fr/Macro_Wiring_And_Hoses.md b/wiki/translations/fr/Macro_Wiring_And_Hoses.md index 15564d05c6..9eb478d528 100644 --- a/wiki/translations/fr/Macro_Wiring_And_Hoses.md +++ b/wiki/translations/fr/Macro_Wiring_And_Hoses.md @@ -1,5 +1,5 @@ # Macro Wiring And Hoses/fr - {{Macro/fr +{{Macro/fr |Name=Macro Wiring And Hoses |Description=Cette macro crée des câbles et des tubes. |Author=Piffpoof @@ -187,6 +187,5 @@ blah blah blah blah blah blah - - - +--- +[documentation index](../README.md) > Macro Wiring And Hoses/fr diff --git a/wiki/translations/fr/Macro_at_Startup.md b/wiki/translations/fr/Macro_at_Startup.md index 21553de7fb..3e60d7e99e 100644 --- a/wiki/translations/fr/Macro_at_Startup.md +++ b/wiki/translations/fr/Macro_at_Startup.md @@ -1,6 +1,4 @@ # Macro at Startup/fr - - ## Introduction @@ -113,3 +111,6 @@ Notez que si la macro originale a été téléchargée via le gestionnaire d'add }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macro at Startup/fr diff --git a/wiki/translations/fr/Macro_circle.md b/wiki/translations/fr/Macro_circle.md index f89f5b19ae..a1818539ab 100644 --- a/wiki/translations/fr/Macro_circle.md +++ b/wiki/translations/fr/Macro_circle.md @@ -1,2 +1,5 @@ # Macro circle/fr 1. REDIRECT [Macro Circle/fr](Macro_Circle/fr.md) + +--- +[documentation index](../README.md) > Macro circle/fr diff --git a/wiki/translations/fr/Macro_crank_simul.md b/wiki/translations/fr/Macro_crank_simul.md index c92f35b324..23f951c731 100644 --- a/wiki/translations/fr/Macro_crank_simul.md +++ b/wiki/translations/fr/Macro_crank_simul.md @@ -1,5 +1,5 @@ # Macro crank simul/fr - {{Macro/fr +{{Macro/fr |Name=Crank Simul |Description=Simulation de mouvement d'un vilebrequin. |Author=kwahoo @@ -79,6 +79,5 @@ La discussion sur le forum (en anglais) [Inline-four engine animation](http://fo Le blogue [freecad-tutorial.blogspot](http://freecad-tutorial.blogspot.be/) - - - +--- +[documentation index](../README.md) > Macro crank simul/fr diff --git a/wiki/translations/fr/Macro_cross_section.md b/wiki/translations/fr/Macro_cross_section.md index 1f88b994b2..adfdfb647d 100644 --- a/wiki/translations/fr/Macro_cross_section.md +++ b/wiki/translations/fr/Macro_cross_section.md @@ -1,5 +1,5 @@ # Macro cross section/fr - {{Macro/fr +{{Macro/fr |Name=Cross_section |Icon=Macro_cross_section.png |Description=Affiche de manière interactive une section transversale avec l'aide d'une barre coulissante. @@ -663,3 +663,6 @@ ver 00.07 17/09/2017 : upgrade multiple objets avec différentes couleurs par Gi ver 00.06 06/09/2017 : upgrade par Gift see [Optischer Schnitt durch Baugruppe, z.B. für Ventilgehäuse](https://www.forum.freecadweb.org/viewtopic.php?f=13&t=24130) accepte multiple objets avec différentes couleurs ver 00.05 17/08/2017 : upgrade pour la version 0.17 FreeCAD version par Sam voir [Sezione Dinamica](https://forum.freecadweb.org/viewtopic.php?f=28&t=15084&start=10#p187030) + +--- +[documentation index](../README.md) > Macro cross section/fr diff --git a/wiki/translations/fr/Macro_cutCircle.md b/wiki/translations/fr/Macro_cutCircle.md index 55df4ba765..fc0826e4a3 100644 --- a/wiki/translations/fr/Macro_cutCircle.md +++ b/wiki/translations/fr/Macro_cutCircle.md @@ -1,2 +1,5 @@ # Macro cutCircle/fr 1. REDIRECT [Macro Cut Circle/fr](Macro_Cut_Circle/fr.md) + +--- +[documentation index](../README.md) > Macro cutCircle/fr diff --git a/wiki/translations/fr/Macro_cutLine.md b/wiki/translations/fr/Macro_cutLine.md index 828134cac5..4626f43953 100644 --- a/wiki/translations/fr/Macro_cutLine.md +++ b/wiki/translations/fr/Macro_cutLine.md @@ -1,2 +1,5 @@ # Macro cutLine/fr 1. REDIRECT [Macro Cut Line/fr](Macro_Cut_Line/fr.md) + +--- +[documentation index](../README.md) > Macro cutLine/fr diff --git a/wiki/translations/fr/Macro_documentation.md b/wiki/translations/fr/Macro_documentation.md index 47648b1f11..fcf4ce1051 100644 --- a/wiki/translations/fr/Macro_documentation.md +++ b/wiki/translations/fr/Macro_documentation.md @@ -1,6 +1,4 @@ # Macro documentation/fr - - ## Description Toutes les macros doivent être correctement documentées de la même manière que les [commandes Gui](Gui_Command/fr.md) le sont. Elles doivent avoir leur propre page wiki et être répertoriées dans l\'une des catégories de la[Liste des Macros](Macros_recipes/fr.md). @@ -200,3 +198,6 @@ Pour rendre une macro installable à partir du [Gestionnaire d\'Addon](Addon_Man Pour y inclure la macro, elle doit d'abord être examinée par la communauté FreeCAD du sous-forum [Python scripting and macros](https://forum.freecadweb.org/viewforum.php?f=22). Une fois que cela est fait, le dépôt des FreeCAD-macros doit être divisé, la nouvelle macro doit être incluse dans une branche, puis la branche doit être poussée et fusionnée dans le dépôt en amont. [Category:Macros](Category:Macros.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [Macros](Category:Macros.md) > Macro documentation/fr diff --git a/wiki/translations/fr/Macro_export_transient_FEM_results.md b/wiki/translations/fr/Macro_export_transient_FEM_results.md index 93be798513..1f8370e35f 100644 --- a/wiki/translations/fr/Macro_export_transient_FEM_results.md +++ b/wiki/translations/fr/Macro_export_transient_FEM_results.md @@ -1,5 +1,5 @@ # Macro export transient FEM results/fr - {{Macro +{{Macro |Name=export transient FEM results |Description=Exporte plusieurs résultats FEM à partir d'une analyse transitoire pour le post-traitement dans ParaView. |Download=[https://drive.google.com/file/d/1MSBxLPlQ-TwzF-sFkgOeFb48zij5_scp/view?usp=sharing Macro file (3 kB)]
[https://drive.google.com/file/d/1m3RiJ-JM7QSJ6YDhZnafHIbyL92V6sYU/view?usp=sharing Example file without results (200 kB)]
[https://drive.google.com/file/d/157aIdVpIyfpVW9WxL-ReGz0FIsQebH_q/view?usp=sharing Example file with results (10 MB)]
[https://drive.google.com/file/d/1g-QOJtl3G5KaY2bSrw03NNQ8mnfBi03T/view?usp=sharing All example files, including the vtk-export folder (21 MB)] @@ -134,3 +134,6 @@ FreeCAD.Console.PrintMessage('\n<<<----------Macro finished\n') Exemple [Analyse FEM transitoire](https://www.freecadweb.org/wiki/Transient_FEM_analysis/fr). Discussion sur le forum [Export transient FEM results to vtk/vtu for ParaView](https://forum.freecadweb.org/viewtopic.php?f=22&t=37650) + +--- +[documentation index](../README.md) > Macro export transient FEM results/fr diff --git a/wiki/translations/fr/Macro_findConfigFiles.md b/wiki/translations/fr/Macro_findConfigFiles.md index c622e095ba..74c3819b3b 100644 --- a/wiki/translations/fr/Macro_findConfigFiles.md +++ b/wiki/translations/fr/Macro_findConfigFiles.md @@ -1,5 +1,5 @@ # Macro findConfigFiles/fr - {{Macro/fr +{{Macro/fr |Name=findConfigFiles |Name/fr=findConfigFiles |Icon=Macro_findConfigFiles.png @@ -107,3 +107,6 @@ if ok == QtGui.QMessageBox.Ok or ok==0: ## Lien [findConfigFiles macro](https://forum.freecadweb.org/viewtopic.php?f=22&t=29888) + +--- +[documentation index](../README.md) > Macro findConfigFiles/fr diff --git a/wiki/translations/fr/Macro_hinge.md b/wiki/translations/fr/Macro_hinge.md index 6cbe90b222..65e09e0771 100644 --- a/wiki/translations/fr/Macro_hinge.md +++ b/wiki/translations/fr/Macro_hinge.md @@ -1,5 +1,5 @@ # Macro hinge/fr - {{Macro/fr +{{Macro/fr |Name=Hinge Simul |Description=Simulation de mouvement d'une charnière. |Icon=Macro hinge.png @@ -59,4 +59,7 @@ for ii2 in range(180): ## Liens -La page de discussion sur le forum [Struggling with LinearPattern (again)](http://forum.freecadweb.org/viewtopic.php?f=3&t=7606&p=62086#p62086) +La page de discussion sur le forum [Struggling with LinearPattern (again)](http://forum.freecadweb.org/viewtopic.php?f=3&t=7606&p=62086#p62086) + +--- +[documentation index](../README.md) > Macro hinge/fr diff --git a/wiki/translations/fr/Macro_merge_duplicate_materials.md b/wiki/translations/fr/Macro_merge_duplicate_materials.md index d576ef8b70..a14ce696c5 100644 --- a/wiki/translations/fr/Macro_merge_duplicate_materials.md +++ b/wiki/translations/fr/Macro_merge_duplicate_materials.md @@ -1,7 +1,4 @@ # Macro merge duplicate materials/fr - - - {{Macro/fr |Name=Macro merge duplicate materials |Icon=Macro_merge_duplicate_materials.png @@ -54,6 +51,5 @@ for tod in todelete: ``` - - - +--- +[documentation index](../README.md) > Macro merge duplicate materials/fr diff --git a/wiki/translations/fr/Macro_screw_maker1_2.md b/wiki/translations/fr/Macro_screw_maker1_2.md index d4bb38832a..3598471ca1 100644 --- a/wiki/translations/fr/Macro_screw_maker1_2.md +++ b/wiki/translations/fr/Macro_screw_maker1_2.md @@ -1,5 +1,5 @@ # Macro screw maker1 2/fr - {{Macro/fr +{{Macro/fr |Name=Macro_screw_maker1_2 |Icon=Macro_screw_maker1_2.png |Description=Crée une vis, boulon ... avec ou sans filet @@ -4984,3 +4984,6 @@ if __name__ == '__main__': ## Liens Le forum [Screw Maker](https://forum.freecadweb.org/viewtopic.php?f=22&t=6558&start=30#p95929) + +--- +[documentation index](../README.md) > Macro screw maker1 2/fr diff --git a/wiki/translations/fr/Macro_triangleAH.md b/wiki/translations/fr/Macro_triangleAH.md index 18e780fc53..d8eab5d9af 100644 --- a/wiki/translations/fr/Macro_triangleAH.md +++ b/wiki/translations/fr/Macro_triangleAH.md @@ -1,2 +1,5 @@ # Macro triangleAH/fr 1. REDIRECT [Macro Triangle AH/fr](Macro_Triangle_AH/fr.md) + +--- +[documentation index](../README.md) > Macro triangleAH/fr diff --git a/wiki/translations/fr/Macros.md b/wiki/translations/fr/Macros.md index ecdf140aef..9f0eccb204 100644 --- a/wiki/translations/fr/Macros.md +++ b/wiki/translations/fr/Macros.md @@ -1,7 +1,4 @@ # Macros/fr - - - {{TOCright}} ## Introduction @@ -68,3 +65,6 @@ Vous pouvez installer manuellement des extensions, cependant, il est beaucoup pl }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/fr diff --git a/wiki/translations/fr/Main_Page.md b/wiki/translations/fr/Main_Page.md index 387a88667c..2c86032015 100644 --- a/wiki/translations/fr/Main_Page.md +++ b/wiki/translations/fr/Main_Page.md @@ -1,6 +1,4 @@ # Main Page/fr - - ## Introduction Ceci est la documentation wiki de [FreeCAD](http://www.freecadweb.org/?lang=fr_FR). Il existe plusieurs façons d\'utiliser cette documentation : en explorant les hubs, en suivant le manuel, ou en utilisant les entrées du menu Aide depuis FreeCAD. Il s\'agit d\'un travail en cours, rédigé par la communauté des utilisateurs et des développeurs de FreeCAD. Si vous trouvez une information erronée ou manquante, merci [d\'aider FreeCAD](Special:MyLanguage/help_FreeCAD.md)! @@ -67,3 +65,6 @@ Consultez la [feuille de route du développement](Development_roadmap/fr.md) pou [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/fr diff --git a/wiki/translations/fr/Main_view_area.md b/wiki/translations/fr/Main_view_area.md index ea1d6a7857..8f3071cd81 100644 --- a/wiki/translations/fr/Main_view_area.md +++ b/wiki/translations/fr/Main_view_area.md @@ -1,6 +1,4 @@ # Main view area/fr - - ## Introduction La [zone de vue principale](Main_view_area/fr.md) est le widget principal qui contient des sous-fenêtres dans [interface](interface/fr.md). Il s\'agit d\'une instance de [QMdiArea](https://doc.qt.io/qt-5/qmdiarea.html) de Qt. @@ -19,4 +17,7 @@ Les fenêtres de la zone d\'affichage principale peuvent être organisées avec {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Main view area/fr diff --git a/wiki/translations/fr/Manipulator.md b/wiki/translations/fr/Manipulator.md index eebefcdc96..bf12e3d98f 100644 --- a/wiki/translations/fr/Manipulator.md +++ b/wiki/translations/fr/Manipulator.md @@ -1,5 +1,5 @@ # Manipulator/fr - } +} ## Description @@ -13,3 +13,6 @@ Un **manipulateur** est une poignée qui peut être utilisée pour modifier l\'a [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Manipulator/fr diff --git a/wiki/translations/fr/Manipulator_Workbench.md b/wiki/translations/fr/Manipulator_Workbench.md index 787012d45d..67e674d6f8 100644 --- a/wiki/translations/fr/Manipulator_Workbench.md +++ b/wiki/translations/fr/Manipulator_Workbench.md @@ -1,7 +1,4 @@ -# Manipulator Workbench/fr - - -Icône de l\'atelier externe Manipulator +# Icône de l\'atelier externe Manipulator Manipulator Workbench/fr ## Introduction @@ -124,3 +121,6 @@ De nouveaux ateliers sont en développement, restez à l\'écoute ! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Manipulator Workbench/fr diff --git a/wiki/translations/fr/Manual.md b/wiki/translations/fr/Manual.md index 1d25ee2773..6f549a67b3 100644 --- a/wiki/translations/fr/Manual.md +++ b/wiki/translations/fr/Manual.md @@ -1,2 +1,5 @@ # Manual/fr 1. Redirect:[Manual:Introduction/fr](Manual:Introduction/fr.md) + +--- +[documentation index](../README.md) > Manual/fr diff --git a/wiki/translations/fr/Manual:A_gentle_introduction.md b/wiki/translations/fr/Manual:A_gentle_introduction.md index be7db89007..71a818d1be 100644 --- a/wiki/translations/fr/Manual:A_gentle_introduction.md +++ b/wiki/translations/fr/Manual:A_gentle_introduction.md @@ -1,10 +1,4 @@ # Manual:A gentle introduction/fr - - - - - - {{Manual:TOC/fr}} [Python](https://fr.wikipedia.org/wiki/Python_(langage)) est un langage populaire, open source, souvent embarqué et utilisé comme langage de script dans des applications, comme c\'est le cas dans FreeCAD. Il possède également des qualités qui le rendent particulièrement attractif pour nous, utilisateurs de FreeCAD: il est facile à apprendre, surtout pour les novices en programmation et il est embarqué dans d\'autres logiciels. Cela en fait un outil essentiel à apprendre puisqu\'il pourra être utilisé dans d\'autres applications tels que [Blender](http://www.blender.org), [Inkscape](http://www.inkscape.org) ou [GRASS](http://grass.osgeo.org/). @@ -121,3 +115,6 @@ box.Placement = otherpla }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:A gentle introduction/fr diff --git a/wiki/translations/fr/Manual:All_workbenches_at_a_glance.md b/wiki/translations/fr/Manual:All_workbenches_at_a_glance.md index a8c08f765e..5229611079 100644 --- a/wiki/translations/fr/Manual:All_workbenches_at_a_glance.md +++ b/wiki/translations/fr/Manual:All_workbenches_at_a_glance.md @@ -1,10 +1,4 @@ # Manual:All workbenches at a glance/fr - - - - - - {{Manual:TOC/fr}} L\'une des plus grandes difficultés pour les nouveaux utilisateurs de FreeCAD est de savoir dans quel atelier trouver un outil spécifique. Le tableau ci-dessous vous donnera un aperçu des ateliers les plus importants et leurs outils. Reportez-vous à chaque page [atelier](Workbenches/fr.md) dans la documentation FreeCAD pour une liste complète d\'informations. @@ -155,6 +149,5 @@ Un certain nombre d\'autres ateliers très utiles produits par les membres de la - [Atelier FEM](FEM_Workbench/fr.md) - [Le dépôt des greffons pour FreeCAD](https://github.com/FreeCAD/FreeCAD-addons) - - - +--- +[documentation index](../README.md) > Manual:All workbenches at a glance/fr diff --git a/wiki/translations/fr/Manual:BIM_modeling.md b/wiki/translations/fr/Manual:BIM_modeling.md index 81f1e61807..9274aa1c94 100644 --- a/wiki/translations/fr/Manual:BIM_modeling.md +++ b/wiki/translations/fr/Manual:BIM_modeling.md @@ -1,5 +1,5 @@ # Manual:BIM modeling/fr - } +} @@ -243,3 +243,6 @@ Notre page est maintenant prête, et nous pouvons l\'exporter vers les formats S }} [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Manual:BIM modeling/fr diff --git a/wiki/translations/fr/Manual:Creating_FEM_analyses.md b/wiki/translations/fr/Manual:Creating_FEM_analyses.md index deddaa25f4..ed7b4936c3 100644 --- a/wiki/translations/fr/Manual:Creating_FEM_analyses.md +++ b/wiki/translations/fr/Manual:Creating_FEM_analyses.md @@ -1,10 +1,4 @@ # Manual:Creating FEM analyses/fr - - - - - - {{Manual:TOC/fr}} FEM, en anglais Finite Element Method, signifie Méthode des éléments finis ([Méthode des éléments finis](https://fr.wikipedia.org/wiki/M%C3%A9thode_des_%C3%A9l%C3%A9ments_finis)). Il s\'agit d\'un vaste sujet mathématique que dans FreeCAD nous pouvons résumer par moyen de calculer les propagations à l\'intérieur d\'un objet 3D en le coupant en petits morceaux et en analysant l\'impact de chaque petit morceau sur ses voisins. Cela a plusieurs utilisations dans les domaines de l\'ingénierie et de l\'électromagnétisme. Nous examinerons plus en profondeur une seule utilisation déjà développée dans FreeCAD qui simule des déformations dans des objets soumis à des forces et à des poids. @@ -93,3 +87,6 @@ Les résultats affichés par l\'atelier FEM ne sont évidemment pas suffisantes {{Tutorials navi }} + +--- +[documentation index](../README.md) > Manual:Creating FEM analyses/fr diff --git a/wiki/translations/fr/Manual:Creating_and_manipulating_geometry.md b/wiki/translations/fr/Manual:Creating_and_manipulating_geometry.md index 43eca5f376..41442fd8b6 100644 --- a/wiki/translations/fr/Manual:Creating_and_manipulating_geometry.md +++ b/wiki/translations/fr/Manual:Creating_and_manipulating_geometry.md @@ -1,7 +1,4 @@ # Manual:Creating and manipulating geometry/fr - - - {{Manual:TOC/fr}} Dans les chapitres précédents, nous avons appris les différents ateliers de FreeCAD et chacun d\'entre eux met en œuvre ses propres outils et types de géométrie. Les mêmes concepts s\'appliquent lorsque vous travaillez à partir du code Python. @@ -231,3 +228,6 @@ Tout ce qui précède, et bien plus encore, est expliqué en détail sur la page }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating and manipulating geometry/fr diff --git a/wiki/translations/fr/Manual:Creating_interface_tools.md b/wiki/translations/fr/Manual:Creating_interface_tools.md index 5368fa611a..e96b7c6723 100644 --- a/wiki/translations/fr/Manual:Creating_interface_tools.md +++ b/wiki/translations/fr/Manual:Creating_interface_tools.md @@ -1,7 +1,4 @@ # Manual:Creating interface tools/fr - - - {{Manual:TOC/fr}} Dans les deux derniers chapitres, nous avons vu comment créer la géométrie Part ([Création et manipulation de la géométrie](Manual:Creating_and_manipulating_geometry/fr.md)) et créer des objets paramétriques ([Création d\'objets paramétriques](Manual:Creating_parametric_objects/fr.md)). Une dernière pièce manque pour avoir un contrôle total sur FreeCAD: créer des outils qui interagiront avec l\'utilisateur. @@ -132,3 +129,6 @@ Enfin, n\'oubliez pas qu\'il existe beaucoup plus de documentation sur l\'utilis }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating interface tools/fr diff --git a/wiki/translations/fr/Manual:Creating_parametric_objects.md b/wiki/translations/fr/Manual:Creating_parametric_objects.md index 048fafab10..61887fafe8 100644 --- a/wiki/translations/fr/Manual:Creating_parametric_objects.md +++ b/wiki/translations/fr/Manual:Creating_parametric_objects.md @@ -1,7 +1,4 @@ # Manual:Creating parametric objects/fr - - - {{Manual:TOC/fr}} Dans le [chapitre précédent](Manual:Creating_and_manipulating_geometry.md), nous avons vu comment créer la géométrie Part et comment l\'afficher sur l'écran, en l\'attachant à un objet de document \"dumb\" (non paramétrique). C\'est fastidieux quand nous voulons changer la forme de cet objet. Nous devrions créer une nouvelle forme, puis l'attribuer à nouveau à notre objet. @@ -126,3 +123,6 @@ Rappelez-vous, si vous souhaitez distribuer des fichiers créés avec ce nouvel }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating parametric objects/fr diff --git a/wiki/translations/fr/Manual:Creating_renderings.md b/wiki/translations/fr/Manual:Creating_renderings.md index 473534a702..42274543d3 100644 --- a/wiki/translations/fr/Manual:Creating_renderings.md +++ b/wiki/translations/fr/Manual:Creating_renderings.md @@ -1,7 +1,4 @@ # Manual:Creating renderings/fr - - - {{Manual:TOC/fr}} Dans le langage des ordinateurs, un rendu ([rendering](https://en.wikipedia.org/wiki/Rendering_%28computer_graphics%29)) est un mot utilisé pour décrire une belle image produite à partir d\'un modèle 3D. Bien sûr, nous pourrions dire que ce que vous voyez dans la vue 3D FreeCAD est déjà sympa. Mais quiconque a vu un film récent de Hollywood sait qu\'il est possible de produire des images avec un ordinateur qui ne se distinguent guère d\'une photographie. @@ -86,3 +83,6 @@ Vous pouvez étendre considérablement les possibilités de rendu de FreeCAD en {{Raytracing Tools navi}} [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials](Category:Tutorials.md) > Manual:Creating renderings/fr diff --git a/wiki/translations/fr/Manual:Generating_2D_drawings.md b/wiki/translations/fr/Manual:Generating_2D_drawings.md index b15dba994a..64a17fe6b7 100644 --- a/wiki/translations/fr/Manual:Generating_2D_drawings.md +++ b/wiki/translations/fr/Manual:Generating_2D_drawings.md @@ -1,10 +1,4 @@ # Manual:Generating 2D drawings/fr - - - - - - {{Manual:TOC/fr}} Lorsque votre modèle ne peut pas être imprimé ou fraisé directement par une machine, par exemple s\'il est trop grand (un bâtiment) ou qu\'il nécessite un assemblage manuel une fois les pièces prêtes, vous devrez généralement expliquer à une autre personne comment le faire. Dans les domaines techniques (ingénierie, architecture, etc.), cela se fait généralement avec des dessins. Les dessins sont remis à la personne responsable de l\'assemblage du produit final et vous expliquent comment procéder. @@ -108,3 +102,6 @@ Notre page peut maintenant être exportée au format SVG pour être plus dévelo [Catégorie:Tutoriels](Category:Tutorials/fr.md) + +--- +[documentation index](../README.md) > Manual:Generating 2D drawings/fr diff --git a/wiki/translations/fr/Manual:Import_and_export_to_other_filetypes.md b/wiki/translations/fr/Manual:Import_and_export_to_other_filetypes.md index a9818dc9b0..ac4296f766 100644 --- a/wiki/translations/fr/Manual:Import_and_export_to_other_filetypes.md +++ b/wiki/translations/fr/Manual:Import_and_export_to_other_filetypes.md @@ -1,7 +1,4 @@ # Manual:Import and export to other filetypes/fr - - - {{Manual:TOC/fr}} FreeCAD peut importer et exporter vers plusieurs types de fichiers. Voici une liste des plus importants avec une brève description des caractéristiques disponibles : @@ -43,3 +40,6 @@ Certains de ces formats de fichiers ont des options. Celles-ci peuvent être con [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Import and export to other filetypes/fr diff --git a/wiki/translations/fr/Manual:Installing.md b/wiki/translations/fr/Manual:Installing.md index 259fad74ce..dd15b659db 100644 --- a/wiki/translations/fr/Manual:Installing.md +++ b/wiki/translations/fr/Manual:Installing.md @@ -1,10 +1,4 @@ # Manual:Installing/fr - - - - - - {{Manual:TOC/fr}} FreeCAD utilise la licence [LGPL](https://fr.wikipedia.org/wiki/Licence_publique_g%C3%A9n%C3%A9rale_limit%C3%A9e_GNU), ce qui vous permet de télécharger, installer, redistribuer et utiliser FreeCAD comme vous le souhaitez, quel que soit le type de travail que vous allez faire avec (commercial ou non commercial). Vous n\'êtes lié à aucune clause ou restriction, et les fichiers que vous produirez avec sont entièrement à vous. La seule chose que la licence interdit, en réalité, est de prétendre que vous avez programmé FreeCAD vous-même ! @@ -99,3 +93,6 @@ Si vous utilisez Ubuntu, certains des greffons cités au-dessus sont disponibles [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Installing/fr diff --git a/wiki/translations/fr/Manual:Introduction.md b/wiki/translations/fr/Manual:Introduction.md index 363359449c..b9bc6559e9 100644 --- a/wiki/translations/fr/Manual:Introduction.md +++ b/wiki/translations/fr/Manual:Introduction.md @@ -1,10 +1,4 @@ # Manual:Introduction/fr - - - - - - {{Manual:TOC/fr}} ![150\|center](images/Crystal_Clear_manual.png ) @@ -19,6 +13,5 @@ Ce manuel est en cours d\'écriture pour la nouvelle version stable **0.18** de L\'ensemble du contenu de ce manuel est publié sous la licence [Creative Commons 4.0](http://creativecommons.org/licenses/by/4.0/), et peut être librement utilisé, téléchargé, copié et modifié. Les fichiers source de ce manuel sont hébergés sur ce [wiki](Main_Page/fr.md), et sur le compte [github](https://github.com/yorikvanhavre/FreeCAD-manual) utilisé pour écrire la première version de ce livre. Des versions HTML, PDF, MOBI and EPUB, plus faciles à lire, sont disponibles sur [GitBook](https://www.gitbook.com/book/yorikvanhavre/a-freecad-manual/details). Une version imprimée est en préparation. - - - +--- +[documentation index](../README.md) > Manual:Introduction/fr diff --git a/wiki/translations/fr/Manual:Modeling_for_product_design.md b/wiki/translations/fr/Manual:Modeling_for_product_design.md index a5dd8ddc08..725f75784a 100644 --- a/wiki/translations/fr/Manual:Modeling_for_product_design.md +++ b/wiki/translations/fr/Manual:Modeling_for_product_design.md @@ -1,7 +1,4 @@ # Manual:Modeling for product design/fr - - - {{Manual:TOC/fr}} [La Conception de produits](https://en.wikipedia.org/wiki/Product_design) est à l\'origine un terme commercial, mais dans le monde de la 3D, cela signifie souvent de modéliser quelque chose avec l\'idée d\'[impression 3D](https://en.wikipedia.org/wiki/3D_printing) ou, plus généralement, de le fabriquer avec une machine, imprimante 3D ou machine à commande numérique [CNC](https://en.wikipedia.org/wiki/Numerical_control). @@ -149,3 +146,6 @@ Mais le meilleur des deux mondes existe également, qui est l\'atelier Assembly2 [Category:Tutorials/fr](Category:Tutorials/fr.md) + +--- +[documentation index](../README.md) > Manual:Modeling for product design/fr diff --git a/wiki/translations/fr/Manual:Navigating_in_the_3D_view.md b/wiki/translations/fr/Manual:Navigating_in_the_3D_view.md index 621207929c..da2fa654a3 100644 --- a/wiki/translations/fr/Manual:Navigating_in_the_3D_view.md +++ b/wiki/translations/fr/Manual:Navigating_in_the_3D_view.md @@ -1,10 +1,4 @@ # Manual:Navigating in the 3D view/fr - - - - - - {{Manual:TOC/fr}} ### Un mot sur l\'espace 3D @@ -104,6 +98,5 @@ Vous pouvez également utiliser l\'affichage de sélection pour sélectionner de - [Les modes de navigation FreeCAD](Mouse_navigation/fr.md) - [Le cube de navigation](Navigation_Cube/fr.md) - - - +--- +[documentation index](../README.md) > Manual:Navigating in the 3D view/fr diff --git a/wiki/translations/fr/Manual:Parametric_objects.md b/wiki/translations/fr/Manual:Parametric_objects.md index d866a186b8..c24da2be49 100644 --- a/wiki/translations/fr/Manual:Parametric_objects.md +++ b/wiki/translations/fr/Manual:Parametric_objects.md @@ -1,10 +1,4 @@ # Manual:Parametric objects/fr - - - - - - {{Manual:TOC/fr}} FreeCAD est conçu pour la modélisation paramétrique. Cela signifie que la géométrie que vous créez, au lieu d\'être librement constructible, est produite par des règles et des paramètres. Par exemple, un cylindre pourrait être produit à partir d\'un rayon et d\'une hauteur. Avec ces deux paramètres, le programme contient suffisamment d\'informations pour construire le cylindre. @@ -41,3 +35,6 @@ Enfin, il convient de noter que les objets paramétriques personnalisés sont fa [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Parametric objects/fr diff --git a/wiki/translations/fr/Manual:Preparing_models_for_3D_printing.md b/wiki/translations/fr/Manual:Preparing_models_for_3D_printing.md index 911a0d22b2..3b4dd2586f 100644 --- a/wiki/translations/fr/Manual:Preparing_models_for_3D_printing.md +++ b/wiki/translations/fr/Manual:Preparing_models_for_3D_printing.md @@ -1,10 +1,4 @@ # Manual:Preparing models for 3D printing/fr - - - - - - {{Manual:TOC/fr}} L\'une des principales utilisations de FreeCAD est de produire des objets du monde réel. Ceux-ci peuvent être conçus dans FreeCAD puis fabriqués de différentes façons, par exemple transmis aux personnes qui les fabriqueront ou de plus en plus souvent envoyés directement à une imprimante 3D ([3D printer](https://en.wikipedia.org/wiki/3D_printing)) ou à une CNC ([CNC mill](https://en.wikipedia.org/wiki/Milling_%28machining%29)). Ce chapitre vous montrera comment préparer vos modèles à envoyer à ces machines. @@ -140,3 +134,6 @@ Il existe de nombreuses applications disponibles pour simuler l'usinage réel, l [Category:Path](Category:Path.md) [Category:Mesh](Category:Mesh.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Path](Category:Path.md) > Manual:Preparing models for 3D printing/fr diff --git a/wiki/translations/fr/Manual:Summary.md b/wiki/translations/fr/Manual:Summary.md index 6a12733611..bb952d071f 100644 --- a/wiki/translations/fr/Manual:Summary.md +++ b/wiki/translations/fr/Manual:Summary.md @@ -57,3 +57,6 @@ Il existe une autre table des matières pour le [Système d\'aide en ligne de Fr [Category:Manual](Category:Manual.md) + +--- +[documentation index](../README.md) > [Manual](Category:Manual.md) > Manual:Summary/fr diff --git a/wiki/translations/fr/Manual:The_Community.md b/wiki/translations/fr/Manual:The_Community.md index 8fa53e5846..c49110369b 100644 --- a/wiki/translations/fr/Manual:The_Community.md +++ b/wiki/translations/fr/Manual:The_Community.md @@ -1,7 +1,4 @@ # Manual:The Community/fr - - - {{Manual:TOC/fr}} Aucun manuel concernant les logiciels gratuits et open-source ne serait complet sans un chapitre sur la communauté. Comme la grande majorité des logiciels gratuits et open source, FreeCAD est créé par une communauté et maintenu par cette communauté. Au lieu de l\'entreprise opaque, inconnue, impersonnelle et inaccessible qui est plus que souvent trouvée derrière les logiciels commerciaux, les communautés de logiciels libres et open-source sont des espaces ouverts, où vous en tant qu\'utilisateur êtes le bienvenu et où vous pouvez obtenir des réponses très rapidement et même vous exprimer dans le développement du logiciel lui-même. Vous êtes également plus que bienvenu pour nous aider, il existe des tâches pour tous. @@ -38,6 +35,5 @@ Nous espérons que nous avons réussi à vous donner un bon aperçu de FreeCAD d - [Traduction de FreeCAD sur crowdin](https://crowdin.com/project/freecad) - [Le tracker des bugs FreeCAD](http://www.freecadweb.org/tracker) - - - +--- +[documentation index](../README.md) > Manual:The Community/fr diff --git a/wiki/translations/fr/Manual:The_FreeCAD_Interface.md b/wiki/translations/fr/Manual:The_FreeCAD_Interface.md index 476995893c..df9830ecee 100644 --- a/wiki/translations/fr/Manual:The_FreeCAD_Interface.md +++ b/wiki/translations/fr/Manual:The_FreeCAD_Interface.md @@ -1,10 +1,4 @@ # Manual:The FreeCAD Interface/fr - - - - - - {{Manual:TOC/fr}} FreeCAD utilise le [framework Qt](https://fr.wikipedia.org/wiki/Qt) pour dessiner et gérer son interface. Ce framework est utilisé par un large éventail d\'applications. Ainsi l\'interface FreeCAD est alors très classique et ne présente pas de difficulté particulière à comprendre. La plupart des boutons sont standards et vous les trouverez où vous les attendez **Fichier → Ouvrir, Modifier → Coller, etc.** Voici l\'apparence de FreeCAD lorsque vous l'ouvrez pour la première fois, juste après l\'installation : @@ -71,6 +65,5 @@ Ces options de personnalisation avancées sont disponibles à partir du menu ** - [Ateliers](Workbenches/fr.md) - [En savoir plus sur Python](https://www.python.org) - - - +--- +[documentation index](../README.md) > Manual:The FreeCAD Interface/fr diff --git a/wiki/translations/fr/Manual:The_FreeCAD_document.md b/wiki/translations/fr/Manual:The_FreeCAD_document.md index 9856eb74a9..b53b115534 100644 --- a/wiki/translations/fr/Manual:The_FreeCAD_document.md +++ b/wiki/translations/fr/Manual:The_FreeCAD_document.md @@ -1,10 +1,4 @@ # Manual:The FreeCAD document/fr - - - - - - {{Manual:TOC/fr}} Un document FreeCAD contient tous les objets de votre espace. Il peut contenir des groupes et des objets construits avec n\'importe quel atelier. Vous pouvez donc basculer entre les ateliers et travailler toujours sur le même document et / ou objets dans ce document. Le document est ce qui est enregistré sur le disque lorsque vous enregistrez votre travail. Vous pouvez également ouvrir plusieurs documents en même temps dans FreeCAD et ouvrir plusieurs vues du même document. @@ -26,6 +20,5 @@ Les documents FreeCAD sont enregistrés avec l\'extension .FcStd, qui est un com - [Le document FreeCAD](Document_structure.md) - [Le format de fichier FcStd](File_Format_FCStd.md) - - - +--- +[documentation index](../README.md) > Manual:The FreeCAD document/fr diff --git a/wiki/translations/fr/Manual:Traditional_2D_drafting.md b/wiki/translations/fr/Manual:Traditional_2D_drafting.md index e00778b76e..0e41c537a5 100644 --- a/wiki/translations/fr/Manual:Traditional_2D_drafting.md +++ b/wiki/translations/fr/Manual:Traditional_2D_drafting.md @@ -1,7 +1,4 @@ # Manual:Traditional 2D drafting/fr - - - {{Manual:TOC/fr}} Vous pouvez être intéressé par FreeCAD car vous avez déjà une expérience de dessin technique, par exemple avec un logiciel comme [AutoCAD](https://fr.wikipedia.org/wiki/AutoCAD). Ou vous savez déjà quelque chose dans le Design, ou vous préférez dessiner avant de construire. Dans les deux cas, FreeCAD propose un atelier avec des fonctionnalités plus traditionnelles, avec des outils que l'on trouve dans la plupart des applications CAO 2D : l\'[atelier Draft](Draft_Workbench/fr.md). @@ -114,3 +111,6 @@ Fondamentalement, ce que fait l'atelier Draft, c\'est fournir des moyens graphiq [Category:Tutorials](Category:Tutorials.md) [Category:Draft](Category:Draft.md) + +--- +[documentation index](../README.md) > [Tutorials](Category:Tutorials.md) > Manual:Traditional 2D drafting/fr diff --git a/wiki/translations/fr/Manual:Traditional_modeling,_the_CSG_way.md b/wiki/translations/fr/Manual:Traditional_modeling,_the_CSG_way.md index ef29fe0135..749031335a 100644 --- a/wiki/translations/fr/Manual:Traditional_modeling,_the_CSG_way.md +++ b/wiki/translations/fr/Manual:Traditional_modeling,_the_CSG_way.md @@ -1,7 +1,4 @@ # Manual:Traditional modeling, the CSG way/fr - - - {{Manual:TOC/fr}} La [géométrie de construction de solides](wikipedia:fr:Géométrie_de_construction_de_solides.md) (CSG en anglais : *Constructive Solid Geometry*) décrit la manière la plus simple de travailler avec la géométrie 3D des solides. Elle crée des objets complexes en ajoutant/enlevant des éléments de volumes en utilisant des opérations booléennes telles que l\'union, la soustraction ou l\'intersection de solides. @@ -132,3 +129,6 @@ Le fichier produit dans cet exercice: Manual:Traditional modeling, the CSG way/fr diff --git a/wiki/translations/fr/Manual:Using_spreadsheets.md b/wiki/translations/fr/Manual:Using_spreadsheets.md index 9d0ca84ceb..bdb77b17cf 100644 --- a/wiki/translations/fr/Manual:Using_spreadsheets.md +++ b/wiki/translations/fr/Manual:Using_spreadsheets.md @@ -1,7 +1,4 @@ # Manual:Using spreadsheets/fr - - - {{Manual:TOC/fr}} FreeCAD dispose d\'un autre atelier intéressant à explorer : l'atelier Feuilles de calcul ([Spreadsheet Workbench](Spreadsheet_Workbench/fr.md)). Cet atelier permet de créer des feuilles de calcul ([spreadsheets](https://en.wikipedia.org/wiki/Spreadsheet)) telles que celles réalisées avec [Excel](https://en.wikipedia.org/wiki/Microsoft_Excel) ou [LibreOffice](https://en.wikipedia.org/wiki/OpenOffice.org_Calc) directement dans FreeCAD. Ces feuilles de calcul peuvent ensuite être remplies avec des données extraites de votre modèle et peuvent également effectuer une série de calculs entre les valeurs. Les feuilles de calcul peuvent être exportées sous forme de fichiers CSV, qui peuvent être importés dans n\'importe quelle autre application de tableur. @@ -87,3 +84,6 @@ Vous pouvez également donner des alias aux contraintes dimensionnelles (horizon [Catégorie:Tutoriels](Category:Tutorials/fr.md) + +--- +[documentation index](../README.md) > Manual:Using spreadsheets/fr diff --git a/wiki/translations/fr/Manual:What_is_FreeCAD.md b/wiki/translations/fr/Manual:What_is_FreeCAD.md index 58098d0864..fb94e284c3 100644 --- a/wiki/translations/fr/Manual:What_is_FreeCAD.md +++ b/wiki/translations/fr/Manual:What_is_FreeCAD.md @@ -1,7 +1,4 @@ # Manual:What is FreeCAD/fr - - - {{Manual:TOC/fr}} ![](images/Freecad016_screenshot1.jpg ) @@ -22,6 +19,5 @@ Pour plus d\'informations: - [Fonctionnalités](Feature_list/fr.md) - \[\| Captures d\'écran et exemples\] - - - +--- +[documentation index](../README.md) > Manual:What is FreeCAD/fr diff --git a/wiki/translations/fr/Material.md b/wiki/translations/fr/Material.md index 8d69679472..a21200cfb2 100644 --- a/wiki/translations/fr/Material.md +++ b/wiki/translations/fr/Material.md @@ -1,5 +1,5 @@ # Material/fr - } +} ## Présentation @@ -173,3 +173,6 @@ Cette section définit les propriétés du matériau qui sont liées à l\'appar {{FEM Tools navi}} [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Roadmap](Category:Roadmap.md) [Category:BIM](Category:BIM.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Material/fr diff --git a/wiki/translations/fr/Material_data_model.md b/wiki/translations/fr/Material_data_model.md index 399b7a89c9..fbda142a68 100644 --- a/wiki/translations/fr/Material_data_model.md +++ b/wiki/translations/fr/Material_data_model.md @@ -1,7 +1,4 @@ # Material data model/fr - - - ** Ce plan de développement est probablement obsolète. Pour plus d'informations, voir [Plan de développement](Development_roadmap/fr.md).
Si vous n'êtes pas impliqué dans le développement discuté ici :
@@ -251,3 +248,6 @@ Code CSI/[MasterFormat](http://en.wikipedia.org/wiki/MasterFormat) (comme il exi [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Material](Material_Workbench.md) > Material data model/fr diff --git a/wiki/translations/fr/Material_editor.md b/wiki/translations/fr/Material_editor.md index efd8fceafd..bf1f7e8df5 100644 --- a/wiki/translations/fr/Material_editor.md +++ b/wiki/translations/fr/Material_editor.md @@ -9,6 +9,8 @@ SeeAlso:[Matériau](Material/fr.md), [Arch Matériaux](Arch_SetMaterial/fr.md), [Tutoriel FEM](FEM_tutorial/fr.md) --- +# Material editor/fr + ## Description L\'éditeur de matériaux alloue, édite ou sauve les informations contenues dans [matériaux](Material/fr.md). Le module matériaux est utilisé par les ateliers ** [FEM](FEM_Workbench/fr.md)** et ** [Arch](Arch_Workbench/fr.md)**. @@ -63,4 +65,7 @@ MaterialEditor.openEditor() {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Material](Material_Workbench.md) > Material editor/fr diff --git a/wiki/translations/fr/Matrix_API.md b/wiki/translations/fr/Matrix_API.md index 5b82c1d74a..d9a9a65dfc 100644 --- a/wiki/translations/fr/Matrix_API.md +++ b/wiki/translations/fr/Matrix_API.md @@ -1,5 +1,5 @@ # Matrix API/fr - **(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir [documentation Source](Source_documentation/fr.md).** +**(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir [documentation Source](Source_documentation/fr.md).** Les Matrices 4x4 sont utilisées partout dans FreeCAD et peuvent être créées par l\'une des façons suivantes : ```python @@ -17,3 +17,6 @@ print m.A21() # print m[1][0] [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Matrix API/fr diff --git a/wiki/translations/fr/Measurement_Of_Angles_On_Holes.md b/wiki/translations/fr/Measurement_Of_Angles_On_Holes.md index 12ca2d496a..c9ab27b8fd 100644 --- a/wiki/translations/fr/Measurement_Of_Angles_On_Holes.md +++ b/wiki/translations/fr/Measurement_Of_Angles_On_Holes.md @@ -1,7 +1,4 @@ # Measurement Of Angles On Holes/fr - - - {{TutorialInfo/fr |Topic=TechDraw |Level=Base @@ -41,4 +38,7 @@ La ligne médiane créée peut être modifiée. Sélectionnez la ligne centrale Sélection des points du quadrant avec depuis la barre d\'outils. Sélectionnez ensuite les points comme indiqué ci-dessous et utilisez à partir de la barre d\'outils pour créer l\'angle. Une autre succession crée d\'autres angles. S\'il n\'y a pas de point d\'accrochage sur la ligne centrale changer \"compte ISO\" dans les propriétés. -*Ci-dessus: succession de sélections|center* {{TechDraw Tools navi}} {{Tutorials navi}} +*Ci-dessus: succession de sélections|center* {{TechDraw Tools navi}} {{Tutorials navi}} + +--- +[documentation index](../README.md) > Measurement Of Angles On Holes/fr diff --git a/wiki/translations/fr/Mesh.md b/wiki/translations/fr/Mesh.md index bc7df6cd36..f0bf42b1d0 100644 --- a/wiki/translations/fr/Mesh.md +++ b/wiki/translations/fr/Mesh.md @@ -1,6 +1,4 @@ # Mesh/fr - - ## Introduction Dans FreeCAD, le mot \"[Mesh](Mesh/fr.md)\" est normalement utilisé pour désigner un [Mesh Object](Mesh_MeshObject/fr.md) (`Mesh::MeshObject` class), un type d\'objet qui définit les données 3D mais n\'est pas un solide \"[Shape](Shape/fr.md)\". @@ -42,3 +40,6 @@ Pour plus d\'informations, voir [Atelier FEM](FEM_Workbench/fr.md) et [FEM Mesh] }} {{FEM Tools navi}} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Mesh/fr diff --git a/wiki/translations/fr/MeshPart_CreateFlatFace.md b/wiki/translations/fr/MeshPart_CreateFlatFace.md index c0587c5c35..5917826cc3 100644 --- a/wiki/translations/fr/MeshPart_CreateFlatFace.md +++ b/wiki/translations/fr/MeshPart_CreateFlatFace.md @@ -7,6 +7,8 @@ SeeAlso:[MeshPart Développer un objet maillé](MeshPart_CreateFlatMesh/fr.md) --- +# MeshPart CreateFlatFace/fr + ## Description La commande **MeshPart Développer une face** crée une représentation à plat d\'une face d\'un objet de forme. Le contour créé est une [Part Feature](Part_Feature/fr.md). À ce stade, la commande crée presque toujours un contour rectangulaire. @@ -26,4 +28,7 @@ Voir: [Part Feature](Part_Feature/fr.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [MeshPart](MeshPart_Workbench.md) > MeshPart CreateFlatFace/fr diff --git a/wiki/translations/fr/MeshPart_CreateFlatMesh.md b/wiki/translations/fr/MeshPart_CreateFlatMesh.md index f5ac9ebb8b..7538e6b97b 100644 --- a/wiki/translations/fr/MeshPart_CreateFlatMesh.md +++ b/wiki/translations/fr/MeshPart_CreateFlatMesh.md @@ -7,6 +7,8 @@ SeeAlso:[MeshPart Développer une face](MeshPart_CreateFlatFace/fr.md) --- +# MeshPart CreateFlatMesh/fr + ## Description La commande **MeshPart Développer un objet maillé** crée une représentation plate d\'un objet maillé en le développant, en le dépliant. Le contour créé est une [Part Feature](Part_Feature/fr.md). @@ -28,4 +30,7 @@ Voir: [Part Feature](Part_Feature/fr.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [MeshPart](MeshPart_Workbench.md) > MeshPart CreateFlatMesh/fr diff --git a/wiki/translations/fr/Mesh_API.md b/wiki/translations/fr/Mesh_API.md index d48d324a25..1cd6ac4a12 100644 --- a/wiki/translations/fr/Mesh_API.md +++ b/wiki/translations/fr/Mesh_API.md @@ -1,7 +1,4 @@ # Mesh API/fr - - - **(novembre 2018) Ces informations peuvent être incomplètes et obsolètes. Pour la dernière version de l'API, consultez la [https://www.freecadweb.org/api documentation de l'auto-génération de l'API].** Les objets maillés peuvent être manipulés par l\'ajout de nouvelles facettes, suppression de facettes, l\'importation d\'un fichier STL, transformant le maillage et bien plus encore. Pour un aperçu complet de ce qui peut être fait voir aussi la documentation de l\'[atelier Mesh](Mesh_Workbench/fr.md). Un objet maillé ne peut pas être ajouté à un document existant directement. Par conséquent, le document doit créer un objet avec une classe propriété qui soutient les mailles. Exemple: @@ -236,3 +233,6 @@ d.recompute() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh API/fr diff --git a/wiki/translations/fr/Mesh_AddFacet.md b/wiki/translations/fr/Mesh_AddFacet.md index 333ef0bd62..471c760f10 100644 --- a/wiki/translations/fr/Mesh_AddFacet.md +++ b/wiki/translations/fr/Mesh_AddFacet.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Remplir les trous](Mesh_FillupHoles/fr.md), [Mesh Boucher un trou](Mesh_FillInteractiveHole/fr.md) --- +# Mesh AddFacet/fr + ## Description La commande **Mesh Ajouter un triangle** ajoute des faces le long d\'une limite d\'un objet maillé ouvert. Elle peut être utilisée pour remplir des trous. @@ -48,4 +50,7 @@ Pour une indication plus précise de l\'orientation des faces des objets maillé {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh AddFacet/fr diff --git a/wiki/translations/fr/Mesh_AddTriangle.md b/wiki/translations/fr/Mesh_AddTriangle.md index 074359c677..9555eeba36 100644 --- a/wiki/translations/fr/Mesh_AddTriangle.md +++ b/wiki/translations/fr/Mesh_AddTriangle.md @@ -1,2 +1,5 @@ # Mesh AddTriangle/fr 1. REDIRECT [Mesh\_AddFacet/fr](Mesh_AddFacet/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh AddTriangle/fr diff --git a/wiki/translations/fr/Mesh_BoundingBox.md b/wiki/translations/fr/Mesh_BoundingBox.md index 1f0b876ce6..9a4ad41fa0 100644 --- a/wiki/translations/fr/Mesh_BoundingBox.md +++ b/wiki/translations/fr/Mesh_BoundingBox.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/fr.md) --- +# Mesh BoundingBox/fr + ## Description La commande **Mesh Boîte englobante** affiche les coordonnées de la boîte englobante d\'un objet maillé. @@ -27,4 +29,7 @@ La commande **Mesh Boîte englobante** affiche les coordonnées de la boîte eng {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh BoundingBox/fr diff --git a/wiki/translations/fr/Mesh_BuildRegularSolid.md b/wiki/translations/fr/Mesh_BuildRegularSolid.md index f61af43b48..a530323e5a 100644 --- a/wiki/translations/fr/Mesh_BuildRegularSolid.md +++ b/wiki/translations/fr/Mesh_BuildRegularSolid.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/fr.md) --- +# Mesh BuildRegularSolid/fr + ## Description La commande **Mesh Solide régulier** crée un solide paramétrique, maillé régulier. @@ -153,4 +155,7 @@ Les objets maillés créés avec cette commande héritent de toutes les proprié {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh BuildRegularSolid/fr diff --git a/wiki/translations/fr/Mesh_Cone.md b/wiki/translations/fr/Mesh_Cone.md index de6cdc7d7a..562ac68f6b 100644 --- a/wiki/translations/fr/Mesh_Cone.md +++ b/wiki/translations/fr/Mesh_Cone.md @@ -1,2 +1,5 @@ # Mesh Cone/fr 1. REDIRECT [Mesh\_BuildRegularSolid/fr](Mesh_BuildRegularSolid/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cone/fr diff --git a/wiki/translations/fr/Mesh_CreateMeshSegment.md b/wiki/translations/fr/Mesh_CreateMeshSegment.md index 2e5ec72236..e0aabbb09b 100644 --- a/wiki/translations/fr/Mesh_CreateMeshSegment.md +++ b/wiki/translations/fr/Mesh_CreateMeshSegment.md @@ -1,2 +1,5 @@ # Mesh CreateMeshSegment/fr 1. REDIRECT [Mesh\_Segmentation/fr](Mesh_Segmentation/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CreateMeshSegment/fr diff --git a/wiki/translations/fr/Mesh_CrossSections.md b/wiki/translations/fr/Mesh_CrossSections.md index f6cde4abf5..f445796ae3 100644 --- a/wiki/translations/fr/Mesh_CrossSections.md +++ b/wiki/translations/fr/Mesh_CrossSections.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Section](Mesh_SectionByPlane/fr.md) --- +# Mesh CrossSections/fr + ## Description La commande **Mesh Coupes** crée plusieurs coupes transversales sur les objets maillés. Les coupes transversales sont prises parallèlement à l\'un des principaux plans globaux (XY, XZ ou YZ). Pour chaque ensemble de sections transversales, une seule [Part Feature](Part_Feature/fr.md) est créée. @@ -64,4 +66,7 @@ Voir: [Part Feature](Part_Feature/fr.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CrossSections/fr diff --git a/wiki/translations/fr/Mesh_Cube.md b/wiki/translations/fr/Mesh_Cube.md index 4ef01950c2..daaaf22d54 100644 --- a/wiki/translations/fr/Mesh_Cube.md +++ b/wiki/translations/fr/Mesh_Cube.md @@ -1,2 +1,5 @@ # Mesh Cube/fr 1. REDIRECT [Mesh\_BuildRegularSolid/fr](Mesh_BuildRegularSolid/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cube/fr diff --git a/wiki/translations/fr/Mesh_CurvatureInfo.md b/wiki/translations/fr/Mesh_CurvatureInfo.md index 734de24cd7..b654a99b62 100644 --- a/wiki/translations/fr/Mesh_CurvatureInfo.md +++ b/wiki/translations/fr/Mesh_CurvatureInfo.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Tracé de courbure](Mesh_VertexCurvature/fr.md) --- +# Mesh CurvatureInfo/fr + ## Description La commande **Mesh Info de courbures** affiche la courbure absolue du [Mesh Tracé de courbure](Mesh_VertexCurvature/fr.md) aux points sélectionnés. @@ -31,4 +33,7 @@ La commande **Mesh Info de courbures** affiche la courbure absolue du [Mesh Trac {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CurvatureInfo/fr diff --git a/wiki/translations/fr/Mesh_CurvaturePlot.md b/wiki/translations/fr/Mesh_CurvaturePlot.md index 43d4f8215a..fc8decf60e 100644 --- a/wiki/translations/fr/Mesh_CurvaturePlot.md +++ b/wiki/translations/fr/Mesh_CurvaturePlot.md @@ -1,2 +1,5 @@ # Mesh CurvaturePlot/fr 1. REDIRECT [Mesh\_VertexCurvature/fr](Mesh_VertexCurvature/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CurvaturePlot/fr diff --git a/wiki/translations/fr/Mesh_Cylinder.md b/wiki/translations/fr/Mesh_Cylinder.md index c8bf6996d8..ef420f4ad7 100644 --- a/wiki/translations/fr/Mesh_Cylinder.md +++ b/wiki/translations/fr/Mesh_Cylinder.md @@ -1,2 +1,5 @@ # Mesh Cylinder/fr 1. REDIRECT [Mesh\_BuildRegularSolid/fr](Mesh_BuildRegularSolid/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cylinder/fr diff --git a/wiki/translations/fr/Mesh_Decimating.md b/wiki/translations/fr/Mesh_Decimating.md index 9f4e81a95e..7820859c03 100644 --- a/wiki/translations/fr/Mesh_Decimating.md +++ b/wiki/translations/fr/Mesh_Decimating.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/fr.md) --- +# Mesh Decimating/fr + ## Description La commande **Mesh Décimation** réduit le nombre de faces dans les objets maillés. @@ -32,4 +34,7 @@ La commande **Mesh Décimation** réduit le nombre de faces dans les objets mail {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Decimating/fr diff --git a/wiki/translations/fr/Mesh_Difference.md b/wiki/translations/fr/Mesh_Difference.md index 50dc687282..84dd8c1506 100644 --- a/wiki/translations/fr/Mesh_Difference.md +++ b/wiki/translations/fr/Mesh_Difference.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Union](Mesh_Union/fr.md), [Mesh Intersection](Mesh_Intersection/fr.md) --- +# Mesh Difference/fr + ## Description La commande **Mesh Différence** crée un nouvel objet maillé non paramétrique, un [Mesh Feature](Mesh_Feature/fr.md), qui est la différence de deux objets maillé: un objet maillé est coupé de l\'autre. @@ -34,4 +36,7 @@ Voir: [Mesh Feature](Mesh_Feature/fr.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Difference/fr diff --git a/wiki/translations/fr/Mesh_Ellipsoid.md b/wiki/translations/fr/Mesh_Ellipsoid.md index 8974063cb7..c0c3b0ee98 100644 --- a/wiki/translations/fr/Mesh_Ellipsoid.md +++ b/wiki/translations/fr/Mesh_Ellipsoid.md @@ -1,2 +1,5 @@ # Mesh Ellipsoid/fr 1. REDIRECT [Mesh\_BuildRegularSolid/fr](Mesh_BuildRegularSolid/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Ellipsoid/fr diff --git a/wiki/translations/fr/Mesh_EvaluateCurvature.md b/wiki/translations/fr/Mesh_EvaluateCurvature.md index d445f998ee..dc1d1b6530 100644 --- a/wiki/translations/fr/Mesh_EvaluateCurvature.md +++ b/wiki/translations/fr/Mesh_EvaluateCurvature.md @@ -1,2 +1,5 @@ # Mesh EvaluateCurvature/fr 1. REDIRECT [Mesh\_CurvatureInfo/fr](Mesh_CurvatureInfo/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateCurvature/fr diff --git a/wiki/translations/fr/Mesh_EvaluateFacet.md b/wiki/translations/fr/Mesh_EvaluateFacet.md index 3ed1565260..12bf6435b3 100644 --- a/wiki/translations/fr/Mesh_EvaluateFacet.md +++ b/wiki/translations/fr/Mesh_EvaluateFacet.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/fr.md) --- +# Mesh EvaluateFacet/fr + ## Description La commande **Mesh Infos sur la face** affiche des informations sur les faces des objets maillés. @@ -41,4 +43,7 @@ Triangle: <[1.964574, 0.047063, 0.748046], [1.937166, 0.062461, 0.992797], {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateFacet/fr diff --git a/wiki/translations/fr/Mesh_EvaluateRepair.md b/wiki/translations/fr/Mesh_EvaluateRepair.md index 7de1f5a4cc..f83dee21f4 100644 --- a/wiki/translations/fr/Mesh_EvaluateRepair.md +++ b/wiki/translations/fr/Mesh_EvaluateRepair.md @@ -1,2 +1,5 @@ # Mesh EvaluateRepair/fr 1. REDIRECT [Mesh\_Evaluation/fr](Mesh_Evaluation/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateRepair/fr diff --git a/wiki/translations/fr/Mesh_EvaluateSolid.md b/wiki/translations/fr/Mesh_EvaluateSolid.md index 5c722f3868..fdcd2e1725 100644 --- a/wiki/translations/fr/Mesh_EvaluateSolid.md +++ b/wiki/translations/fr/Mesh_EvaluateSolid.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Sélection de maillages non-manifold](Arch_SelectNonSolidMeshes/fr.md) --- +# Mesh EvaluateSolid/fr + ## Description La commande **Mesh Vérification du maillage du solide** vérifie si un objet maillé est solide. Un objet maillé solide ne comporte aucun trou. @@ -27,4 +29,7 @@ La commande **Mesh Vérification du maillage du solide** vérifie si un objet ma {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateSolid/fr diff --git a/wiki/translations/fr/Mesh_Evaluation.md b/wiki/translations/fr/Mesh_Evaluation.md index b09390707d..fd00b4a9c0 100644 --- a/wiki/translations/fr/Mesh_Evaluation.md +++ b/wiki/translations/fr/Mesh_Evaluation.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/fr.md) --- +# Mesh Evaluation/fr + ## Description La commande **Mesh Evaluation** évalue et répare un objet maillé. @@ -61,4 +63,7 @@ La commande **Mesh Evaluation** évalue et répare un objet maillé. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Evaluation/fr diff --git a/wiki/translations/fr/Mesh_Export.md b/wiki/translations/fr/Mesh_Export.md index 71e1fd5451..670fd9509c 100644 --- a/wiki/translations/fr/Mesh_Export.md +++ b/wiki/translations/fr/Mesh_Export.md @@ -7,6 +7,8 @@ SeeAlso:[Std Exporter](Std_Export/fr.md), [Import Export](Import_Export/fr.md) --- +# Mesh Export/fr + ## Description La commande **Export de maillage** exporte un objet maillé dans un format de fichier maillé. Plusieurs formats de fichiers sont pris en charge. @@ -52,4 +54,7 @@ Mesh.export([doc.Cone, doc.Cylinder], 'D:/testfiles/mymodel.stl') {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Export/fr diff --git a/wiki/translations/fr/Mesh_Feature.md b/wiki/translations/fr/Mesh_Feature.md index 0645906382..a5e89ec66b 100644 --- a/wiki/translations/fr/Mesh_Feature.md +++ b/wiki/translations/fr/Mesh_Feature.md @@ -1,6 +1,4 @@ # Mesh Feature/fr - - ## Introduction @@ -161,3 +159,6 @@ obj.Label = "Custom label" }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Feature/fr diff --git a/wiki/translations/fr/Mesh_FillHoles.md b/wiki/translations/fr/Mesh_FillHoles.md index 7645b70a3a..480123090d 100644 --- a/wiki/translations/fr/Mesh_FillHoles.md +++ b/wiki/translations/fr/Mesh_FillHoles.md @@ -1,2 +1,5 @@ # Mesh FillHoles/fr 1. REDIRECT [Mesh\_FillupHoles/fr](Mesh_FillupHoles/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FillHoles/fr diff --git a/wiki/translations/fr/Mesh_FillInteractiveHole.md b/wiki/translations/fr/Mesh_FillInteractiveHole.md index da16dbf455..5614c05a62 100644 --- a/wiki/translations/fr/Mesh_FillInteractiveHole.md +++ b/wiki/translations/fr/Mesh_FillInteractiveHole.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Remplir les trous](Mesh_FillupHoles/fr.md), [Mesh Ajouter un triangle](Mesh_AddFacet/fr.md) --- +# Mesh FillInteractiveHole/fr + ## Description La commande **Mesh Boucher un trou** remplit les trous sélectionnés dans les objets maillés. @@ -34,4 +36,7 @@ La commande **Mesh Boucher un trou** remplit les trous sélectionnés dans les o {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FillInteractiveHole/fr diff --git a/wiki/translations/fr/Mesh_FillupHoles.md b/wiki/translations/fr/Mesh_FillupHoles.md index af1e1d787a..8766cc567f 100644 --- a/wiki/translations/fr/Mesh_FillupHoles.md +++ b/wiki/translations/fr/Mesh_FillupHoles.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Boucher un trou](Mesh_FillInteractiveHole.md), [Mesh Ajouter un triangle](Mesh_AddFacet.md) --- +# Mesh FillupHoles/fr + ## Description La commande **Mesh Remplir les trous** remplit les trous dans les objets maillés. @@ -28,4 +30,7 @@ La commande **Mesh Remplir les trous** remplit les trous dans les objets maillé {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FillupHoles/fr diff --git a/wiki/translations/fr/Mesh_FlipNormals.md b/wiki/translations/fr/Mesh_FlipNormals.md index 3e28053892..841044ab01 100644 --- a/wiki/translations/fr/Mesh_FlipNormals.md +++ b/wiki/translations/fr/Mesh_FlipNormals.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Harmoniser les normales](Mesh_HarmonizeNormals/fr.md) --- +# Mesh FlipNormals/fr + ## Description La commande **Mesh Inverser les normales‏‎** inverse, retourne, les normales des objets maillés. @@ -29,4 +31,7 @@ Pour une indication plus précise de l\'orientation des faces des objets maillé {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FlipNormals/fr diff --git a/wiki/translations/fr/Mesh_FromPartShape.md b/wiki/translations/fr/Mesh_FromPartShape.md index fce02b720a..409825d803 100644 --- a/wiki/translations/fr/Mesh_FromPartShape.md +++ b/wiki/translations/fr/Mesh_FromPartShape.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/fr.md) --- +# Mesh FromPartShape/fr + ## Description La commande **Créer un maillage** crée des objets [maillés](mesh/fr.md) non paramétriques, [Mesh Features](Mesh_Feature/fr.md), à partir de la [forme](shape/fr.md) d\'objets ([Part Features](Part_Feature/fr.md)). @@ -191,4 +193,7 @@ msh.ViewObject.DisplayMode = "Flat Lines" {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FromPartShape/fr diff --git a/wiki/translations/fr/Mesh_HarmonizeNormals.md b/wiki/translations/fr/Mesh_HarmonizeNormals.md index 189b0ce8ec..900214d644 100644 --- a/wiki/translations/fr/Mesh_HarmonizeNormals.md +++ b/wiki/translations/fr/Mesh_HarmonizeNormals.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Inverser les normales](Mesh_FlipNormals/fr.md) --- +# Mesh HarmonizeNormals/fr + ## Description La commande **Mesh Harmoniser les normales‎** harmonise les normales des objets maillés. @@ -30,4 +32,7 @@ La commande **Mesh Harmoniser les normales‎** harmonise les normales des objet {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh HarmonizeNormals/fr diff --git a/wiki/translations/fr/Mesh_Import.md b/wiki/translations/fr/Mesh_Import.md index a4a99e7691..f917de5abd 100644 --- a/wiki/translations/fr/Mesh_Import.md +++ b/wiki/translations/fr/Mesh_Import.md @@ -7,6 +7,8 @@ SeeAlso:[Std Importer](Std_Import/fr.md), [Std Ouvrir](Std_Open/fr.md), [Import Export](Import_Export.md) --- +# Mesh Import/fr + ## Description La commande **Importer un maillage** importe la géométrie d\'un format de fichier de maillage dans le document actif. Plusieurs formats de fichiers sont pris en charge. La commande crée un objet maillage non paramétrique, un [Mesh Feature](Mesh_Feature/fr.md). @@ -47,4 +49,7 @@ Mesh.insert('D:/testfiles/cylinder.stl') {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Import/fr diff --git a/wiki/translations/fr/Mesh_Intersection.md b/wiki/translations/fr/Mesh_Intersection.md index 9099314f05..de47b3b0df 100644 --- a/wiki/translations/fr/Mesh_Intersection.md +++ b/wiki/translations/fr/Mesh_Intersection.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Union](Mesh_Union.md), [Mesh Différence](Mesh_Difference.md) --- +# Mesh Intersection/fr + ## Description La commande **Mesh Intersection** crée un nouvel objet maillé non paramétrique, un [Mesh Feature](Mesh_Feature/fr.md), qui est l\'intersection (partie commune) de deux objets maillés. @@ -33,4 +35,7 @@ Voir: [Mesh Feature](Mesh_Feature/fr.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Intersection/fr diff --git a/wiki/translations/fr/Mesh_Merge.md b/wiki/translations/fr/Mesh_Merge.md index 11ce8c14a0..2b3fd9be22 100644 --- a/wiki/translations/fr/Mesh_Merge.md +++ b/wiki/translations/fr/Mesh_Merge.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Séparer](Mesh_SplitComponents/fr.md) --- +# Mesh Merge/fr + ## Description La commande **Mesh Fusionner** crée un nouvel objet maillé non paramétrique, un [Mesh Feature](Mesh_Feature/fr.md), en combinant les maillages d\'au moins deux objets maillés. La commande n\'effectue pas d\'union booléenne. Le nouvel objet contiendra des composants de maillage séparés. Pour une union booléenne, utilisez plutôt la commande [Mesh Union](Mesh_Union/fr.md). Cette commande est le pendant de la commande [Mesh Séparer](Mesh_SplitComponents/fr.md). @@ -29,4 +31,7 @@ Voir: [Mesh Feature](Mesh_Feature/fr.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Merge/fr diff --git a/wiki/translations/fr/Mesh_MeshObject.md b/wiki/translations/fr/Mesh_MeshObject.md index 7ebdbcbbbd..d4375f17fe 100644 --- a/wiki/translations/fr/Mesh_MeshObject.md +++ b/wiki/translations/fr/Mesh_MeshObject.md @@ -1,6 +1,4 @@ # Mesh MeshObject/fr - - ## Description Un [Mesh MeshObject](Mesh_MeshObject/fr.md), ou officiellement `Mesh::MeshObject`, est une classe qui définit une structure de données de maillage dans le logiciel. Ceci est similaire à la [Part TopoShape](Part_TopoShape/fr.md) mais pour [Mesh](Mesh/fr.md). @@ -58,4 +56,7 @@ obj.Mesh.write("my_file.stl") {{Mesh Tools navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh MeshObject/fr diff --git a/wiki/translations/fr/Mesh_Module.md b/wiki/translations/fr/Mesh_Module.md index b6844defe4..dc9dfb9ad0 100644 --- a/wiki/translations/fr/Mesh_Module.md +++ b/wiki/translations/fr/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/fr 1. REDIRECT [Mesh Workbench/fr](Mesh_Workbench/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/fr diff --git a/wiki/translations/fr/Mesh_PolyCut.md b/wiki/translations/fr/Mesh_PolyCut.md index f6dc677cff..fae4b0cdeb 100644 --- a/wiki/translations/fr/Mesh_PolyCut.md +++ b/wiki/translations/fr/Mesh_PolyCut.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Découper](Mesh_PolyTrim/fr.md), [Mesh Créer une section](Mesh_TrimByPlane/fr.md) --- +# Mesh PolyCut/fr + ## Description La commande **Mesh Couper un maillage** coupe des faces entières à partir d\'objets maillés. @@ -46,4 +48,7 @@ La commande **Mesh Couper un maillage** coupe des faces entières à partir d\'o {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh PolyCut/fr diff --git a/wiki/translations/fr/Mesh_PolyTrim.md b/wiki/translations/fr/Mesh_PolyTrim.md index a68047a535..04337f4921 100644 --- a/wiki/translations/fr/Mesh_PolyTrim.md +++ b/wiki/translations/fr/Mesh_PolyTrim.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Couper le maillage](Mesh_PolyCut/fr.md), [Mesh Créer une section](Mesh_TrimByPlane/fr.md) --- +# Mesh PolyTrim/fr + ## Description La commande **Mesh Découper** permet de découper les faces et parties de faces à partir d\'objets maillés. @@ -46,4 +48,7 @@ La commande **Mesh Découper** permet de découper les faces et parties de faces {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh PolyTrim/fr diff --git a/wiki/translations/fr/Mesh_RemeshGmsh.md b/wiki/translations/fr/Mesh_RemeshGmsh.md index ba841ae590..a76eb49eae 100644 --- a/wiki/translations/fr/Mesh_RemeshGmsh.md +++ b/wiki/translations/fr/Mesh_RemeshGmsh.md @@ -8,6 +8,8 @@ SeeAlso:[Mesh Tesselation](Mesh_FromPartShape/fr.md) --- +# Mesh RemeshGmsh/fr + ## Description La commande **Mesh Affinage** remet à nouveau un objet maillé en utilisant le mailleur [Gmsh](https://gmsh.info/). Le nouveau maillage peut être plus fin ou plus grossier. @@ -39,4 +41,7 @@ Voir: [Mesh Feature](Mesh_Feature/fr.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemeshGmsh/fr diff --git a/wiki/translations/fr/Mesh_RemoveCompByHand.md b/wiki/translations/fr/Mesh_RemoveCompByHand.md index 687a1f2dac..6cd2bef8ae 100644 --- a/wiki/translations/fr/Mesh_RemoveCompByHand.md +++ b/wiki/translations/fr/Mesh_RemoveCompByHand.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Supprimer des composants](Mesh_RemoveComponents/fr.md), [Arch Séparer un objet Mesh](Arch_SplitMesh/fr.md) --- +# Mesh RemoveCompByHand/fr + ## Description La commande **Mesh Suppression manuelle de composants** supprime des composants d\'objets maillés. @@ -30,4 +32,7 @@ La commande **Mesh Suppression manuelle de composants** supprime des composants {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemoveCompByHand/fr diff --git a/wiki/translations/fr/Mesh_RemoveComponents.md b/wiki/translations/fr/Mesh_RemoveComponents.md index 5ee7a759e4..5d1b3dcadd 100644 --- a/wiki/translations/fr/Mesh_RemoveComponents.md +++ b/wiki/translations/fr/Mesh_RemoveComponents.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Suppression manuelle de composants](Mesh_RemoveCompByHand/fr.md), [Arch Séparer un objet Mesh](Arch_SplitMesh/fr.md) --- +# Mesh RemoveComponents/fr + ## Description La commande **Mesh Supprimer des composants** supprime des composants d\'objets maillés. @@ -39,4 +41,7 @@ La commande **Mesh Supprimer des composants** supprime des composants d\'objets {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemoveComponents/fr diff --git a/wiki/translations/fr/Mesh_Scale.md b/wiki/translations/fr/Mesh_Scale.md index ae9d46f0aa..d3908a47f9 100644 --- a/wiki/translations/fr/Mesh_Scale.md +++ b/wiki/translations/fr/Mesh_Scale.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/fr.md) --- +# Mesh Scale/fr + ## Description La commande **Mesh Echelle** met à l\'échelle les objets maillés. @@ -27,4 +29,7 @@ La commande **Mesh Echelle** met à l\'échelle les objets maillés. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scale/fr diff --git a/wiki/translations/fr/Mesh_Scripting.md b/wiki/translations/fr/Mesh_Scripting.md index 09075d73f9..22a85cafa6 100644 --- a/wiki/translations/fr/Mesh_Scripting.md +++ b/wiki/translations/fr/Mesh_Scripting.md @@ -1,7 +1,4 @@ # Mesh Scripting/fr - - - {{TOCright}} ## Introduction @@ -99,3 +96,6 @@ Les scripts, bien que difficile à utiliser, de test unitaire du module `Mesh` c Voir aussi: [Mesh API](Mesh_API/fr.md). {{Top}} {{Powerdocnavi}} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scripting/fr diff --git a/wiki/translations/fr/Mesh_SectionByPlane.md b/wiki/translations/fr/Mesh_SectionByPlane.md index 50080907ad..96baba7d9f 100644 --- a/wiki/translations/fr/Mesh_SectionByPlane.md +++ b/wiki/translations/fr/Mesh_SectionByPlane.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Coupes](Mesh_CrossSections/fr.md) --- +# Mesh SectionByPlane/fr + ## Description La commande **Mesh Section** crée une coupe transversale à travers un objet maillé. La section transversale est une [Part Feature](Part_Feature/fr.md). @@ -28,4 +30,7 @@ Voir: [Part Feature](Part_Feature/fr.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh SectionByPlane/fr diff --git a/wiki/translations/fr/Mesh_Segmentation.md b/wiki/translations/fr/Mesh_Segmentation.md index 543aa76493..765d3ed445 100644 --- a/wiki/translations/fr/Mesh_Segmentation.md +++ b/wiki/translations/fr/Mesh_Segmentation.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Segmentation adaptée](Mesh_SegmentationBestFit/fr.md) --- +# Mesh Segmentation/fr + ## Description La commande **Mesh Division** crée des segments de maillage séparés pour les types de surface spécifiés d\'un objet maillé. @@ -52,4 +54,7 @@ La commande **Mesh Division** crée des segments de maillage séparés pour les {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Segmentation/fr diff --git a/wiki/translations/fr/Mesh_SegmentationBestFit.md b/wiki/translations/fr/Mesh_SegmentationBestFit.md index 4942e84f43..8a37bdaffb 100644 --- a/wiki/translations/fr/Mesh_SegmentationBestFit.md +++ b/wiki/translations/fr/Mesh_SegmentationBestFit.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Division](Mesh_Segmentation/fr.md) --- +# Mesh SegmentationBestFit/fr + ## Description La commande **Mesh Segmentation adaptée** crée des segments de maillage séparés pour les types de surface spécifiés d\'un objet maillé. La commande peut également identifier leurs paramètres, lesquels peuvent être utiles lors de la reconfiguration d\'un objet maillé. @@ -53,4 +55,7 @@ La commande **Mesh Segmentation adaptée** crée des segments de maillage sépar {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh SegmentationBestFit/fr diff --git a/wiki/translations/fr/Mesh_Smooth.md b/wiki/translations/fr/Mesh_Smooth.md index bc95bff70b..ccd729952c 100644 --- a/wiki/translations/fr/Mesh_Smooth.md +++ b/wiki/translations/fr/Mesh_Smooth.md @@ -1,2 +1,5 @@ # Mesh Smooth/fr 1. REDIRECT [Mesh\_Smoothing/fr](Mesh_Smoothing/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Smooth/fr diff --git a/wiki/translations/fr/Mesh_Smoothing.md b/wiki/translations/fr/Mesh_Smoothing.md index e2886f2285..8b33a37168 100644 --- a/wiki/translations/fr/Mesh_Smoothing.md +++ b/wiki/translations/fr/Mesh_Smoothing.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/fr.md) --- +# Mesh Smoothing/fr + ## Description La commande **Mesh Lissage** lisse les objets maillés en modifiant la position de leurs sommets. @@ -66,4 +68,7 @@ La commande **Mesh Lissage** lisse les objets maillés en modifiant la position {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Smoothing/fr diff --git a/wiki/translations/fr/Mesh_Sphere.md b/wiki/translations/fr/Mesh_Sphere.md index 6cd965c3f3..04e8399f06 100644 --- a/wiki/translations/fr/Mesh_Sphere.md +++ b/wiki/translations/fr/Mesh_Sphere.md @@ -1,2 +1,5 @@ # Mesh Sphere/fr 1. REDIRECT [Mesh\_BuildRegularSolid/fr](Mesh_BuildRegularSolid/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Sphere/fr diff --git a/wiki/translations/fr/Mesh_SplitComponents.md b/wiki/translations/fr/Mesh_SplitComponents.md index 2af4a2f196..c3fe5fba79 100644 --- a/wiki/translations/fr/Mesh_SplitComponents.md +++ b/wiki/translations/fr/Mesh_SplitComponents.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Fusionner](Mesh_Merge/fr.md) --- +# Mesh SplitComponents/fr + ## Description La commande **Mesh Séparer** divise un objet maillé en ses composants. Un composant de maillage est un groupe complet de faces connectées. Pour chaque composant, un nouvel objet maillage non paramétrique, un [Mesh Feature](Mesh_Feature/fr.md), est créé. Si l\'objet maillage d\'origine ne contient qu\'un seul composant, et c\'est généralement le cas, un seul nouvel objet maillage, en fait une copie, est créé. Cette commande est le pendant de la commande [Mesh Fusionner](Mesh_Merge/fr.md). @@ -29,4 +31,7 @@ Voir: [Mesh Feature](Mesh_Feature/fr.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh SplitComponents/fr diff --git a/wiki/translations/fr/Mesh_Torus.md b/wiki/translations/fr/Mesh_Torus.md index 190ef654bf..a8effdc580 100644 --- a/wiki/translations/fr/Mesh_Torus.md +++ b/wiki/translations/fr/Mesh_Torus.md @@ -1,2 +1,5 @@ # Mesh Torus/fr 1. REDIRECT [Mesh\_BuildRegularSolid/fr](Mesh_BuildRegularSolid/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Torus/fr diff --git a/wiki/translations/fr/Mesh_TrimByPlane.md b/wiki/translations/fr/Mesh_TrimByPlane.md index 8f55d5c8a8..4ae734f068 100644 --- a/wiki/translations/fr/Mesh_TrimByPlane.md +++ b/wiki/translations/fr/Mesh_TrimByPlane.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Couper le maillage](Mesh_PolyCut/fr.md), [Mesh Découper](Mesh_PolyTrim/fr.md) --- +# Mesh TrimByPlane/fr + ## Description La commande **Mesh Créer une section** permet de découper les faces et parties de faces d\'un côté d\'un plan à partir d\'un objet maillé. @@ -44,4 +46,7 @@ La commande **Mesh Créer une section** permet de découper les faces et parties {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh TrimByPlane/fr diff --git a/wiki/translations/fr/Mesh_TrimMesh.md b/wiki/translations/fr/Mesh_TrimMesh.md index 28776ec873..b9f5d15141 100644 --- a/wiki/translations/fr/Mesh_TrimMesh.md +++ b/wiki/translations/fr/Mesh_TrimMesh.md @@ -1,2 +1,5 @@ # Mesh TrimMesh/fr 1. REDIRECT [Mesh\_PolyTrim/fr](Mesh_PolyTrim/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh TrimMesh/fr diff --git a/wiki/translations/fr/Mesh_TrimMeshWithPlane.md b/wiki/translations/fr/Mesh_TrimMeshWithPlane.md index 2160f89399..a1c0be8ee8 100644 --- a/wiki/translations/fr/Mesh_TrimMeshWithPlane.md +++ b/wiki/translations/fr/Mesh_TrimMeshWithPlane.md @@ -1,2 +1,5 @@ # Mesh TrimMeshWithPlane/fr 1. REDIRECT [Mesh\_TrimByPlane/fr](Mesh_TrimByPlane/fr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh TrimMeshWithPlane/fr diff --git a/wiki/translations/fr/Mesh_Union.md b/wiki/translations/fr/Mesh_Union.md index 98f0d3b886..37bfdb7234 100644 --- a/wiki/translations/fr/Mesh_Union.md +++ b/wiki/translations/fr/Mesh_Union.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Intersection](Mesh_Intersection/fr.md), [Mesh Différence](Mesh_Difference/fr.md) --- +# Mesh Union/fr + ## Description La commande **Mesh Union** crée un nouvel objet maillé non paramétrique, un [Mesh Feature](Mesh_Feature/fr.md), qui est l\'Union (fusion) de deux objets maillés. @@ -33,4 +35,7 @@ Voir: [Mesh Feature](Mesh_Feature/fr.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Union/fr diff --git a/wiki/translations/fr/Mesh_VertexCurvature.md b/wiki/translations/fr/Mesh_VertexCurvature.md index e6371c4bda..9c0c7736ef 100644 --- a/wiki/translations/fr/Mesh_VertexCurvature.md +++ b/wiki/translations/fr/Mesh_VertexCurvature.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Info de courbures](Mesh_CurvatureInfo/fr.md) --- +# Mesh VertexCurvature/fr + ## Description La commande **Mesh Tracé de courbure** crée des objets maillés de courbure pour les objets maillés. Un objet de courbure affiche la courbure d\'un maillage en utilisant différentes couleurs pour les parties convexes, plates et concaves. @@ -75,4 +77,7 @@ Pour un objet maillé de courbure, les propriétés suivantes sont disponibles d {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh VertexCurvature/fr diff --git a/wiki/translations/fr/Mesh_Workbench.md b/wiki/translations/fr/Mesh_Workbench.md index ad88baed39..862d97dfb0 100644 --- a/wiki/translations/fr/Mesh_Workbench.md +++ b/wiki/translations/fr/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/fr - - - - - -Icône de l\'atelier Mesh +# Icône de l\'atelier Mesh Mesh Workbench/fr {{TOCright}} @@ -112,3 +106,6 @@ Les préférences de l\'atelier Mesh se trouvent dans les catégories suivantes }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/fr diff --git a/wiki/translations/fr/Mesh_to_Part.md b/wiki/translations/fr/Mesh_to_Part.md index 44d68ca5e1..eed5cba510 100644 --- a/wiki/translations/fr/Mesh_to_Part.md +++ b/wiki/translations/fr/Mesh_to_Part.md @@ -1,7 +1,4 @@ # Mesh to Part/fr - - - {{TOCright}} ## Conversion d\'objets Part en maillages @@ -110,3 +107,6 @@ Part.show(solid) }} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh to Part/fr diff --git a/wiki/translations/fr/Migrating_to_FreeCAD_from_Fusion360.md b/wiki/translations/fr/Migrating_to_FreeCAD_from_Fusion360.md index 94f7ebc91d..778dda975b 100644 --- a/wiki/translations/fr/Migrating_to_FreeCAD_from_Fusion360.md +++ b/wiki/translations/fr/Migrating_to_FreeCAD_from_Fusion360.md @@ -1,5 +1,5 @@ # Migrating to FreeCAD from Fusion360/fr - {{TOCright}} +{{TOCright}} ## Contexte @@ -55,5 +55,5 @@ Cette page wiki manque-t-elle quelque chose? Veuillez faire une demande de [perm - [Migrer de OnShape vers FreeCAD](Migrating_to_FreeCAD_from_OnShape/fr.md) - - +--- +[documentation index](../README.md) > Migrating to FreeCAD from Fusion360/fr diff --git a/wiki/translations/fr/Migrating_to_FreeCAD_from_OnShape.md b/wiki/translations/fr/Migrating_to_FreeCAD_from_OnShape.md index 02777ebc3f..610b86fc11 100644 --- a/wiki/translations/fr/Migrating_to_FreeCAD_from_OnShape.md +++ b/wiki/translations/fr/Migrating_to_FreeCAD_from_OnShape.md @@ -1,5 +1,5 @@ # Migrating to FreeCAD from OnShape/fr - {{TOCright}} +{{TOCright}} ## Contexte @@ -11,5 +11,5 @@ Cette page est destinée aux utilisateurs qui souhaitent travailler avec FreeCAD - [Migrer de Fusion360 vers FreeCAD](Migrating_to_FreeCAD_from_Fusion360/fr.md) - Joko Engineering [vidéo](https://youtu.be/oH8GOR8Jx88) Comparaison côte à côte entre FreeCAD et OnShape - - +--- +[documentation index](../README.md) > Migrating to FreeCAD from OnShape/fr diff --git a/wiki/translations/fr/Misc_templates.md b/wiki/translations/fr/Misc_templates.md index 38679fc3d3..591d182342 100644 --- a/wiki/translations/fr/Misc_templates.md +++ b/wiki/translations/fr/Misc_templates.md @@ -1,6 +1,4 @@ # Misc templates/fr - - Cette page répertorie quelques modèles mixtes. Tous les modèles sont au format SVG directement téléchargeable et utilisable avec ou sans modification. Tous les modèles et cartouches sont équipés de textes éditables en FreeCAD. @@ -86,3 +84,6 @@ CompassRose\_3D [Rose\_des\_vents\_3D.FCStd](http://forum.freecadweb.org/downloa [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Misc templates/fr diff --git a/wiki/translations/fr/Misc_templates_Full.md b/wiki/translations/fr/Misc_templates_Full.md index 09c3ca2242..d6e1277340 100644 --- a/wiki/translations/fr/Misc_templates_Full.md +++ b/wiki/translations/fr/Misc_templates_Full.md @@ -1,5 +1,5 @@ # Misc templates Full/fr - Ces feuilles de dessin ont tous les champs libres en écriture (22 champs) et sont dédiées à la [Macro\_CartoucheFC\_Full](Macro_CartoucheFC_Full/fr.md) +Ces feuilles de dessin ont tous les champs libres en écriture (22 champs) et sont dédiées à la [Macro\_CartoucheFC\_Full](Macro_CartoucheFC_Full/fr.md) Le même travail peut être réalisé directement dans FreeCAD @@ -31,3 +31,6 @@ Pour Linux : \"\" [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Macros](Category:Macros.md) > Misc templates Full/fr diff --git a/wiki/translations/fr/Model.md b/wiki/translations/fr/Model.md index d55bf7c2b0..0bb1c36056 100644 --- a/wiki/translations/fr/Model.md +++ b/wiki/translations/fr/Model.md @@ -1,6 +1,4 @@ # Model/fr - - ## Introduction Dans FreeCAD, le mot \"[Model](Model/fr.md)\" est normalement utilisé pour faire référence à n\'importe quel objet 3D ou une collection d\'objets créés dans la [Vue 3D](3D_view/fr.md). @@ -21,3 +19,6 @@ Dans un usage informel, le mot \"[Drawing](Drawing/fr.md)\" peut être utilisé }} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Model/fr diff --git a/wiki/translations/fr/ModernUI_Workbench.md b/wiki/translations/fr/ModernUI_Workbench.md index 1555284531..eb034e6817 100644 --- a/wiki/translations/fr/ModernUI_Workbench.md +++ b/wiki/translations/fr/ModernUI_Workbench.md @@ -1,5 +1,5 @@ # ModernUI Workbench/fr - } +} Modern UI workbench icon @@ -85,3 +85,6 @@ The uninstall sequence is as follows: [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > ModernUI Workbench/fr diff --git a/wiki/translations/fr/Module_Creation.md b/wiki/translations/fr/Module_Creation.md index 2b2eccbd0d..9954f0457f 100644 --- a/wiki/translations/fr/Module_Creation.md +++ b/wiki/translations/fr/Module_Creation.md @@ -1,2 +1,5 @@ # Module Creation/fr 1. REDIRECT [Workbench\_creation/fr](Workbench_creation/fr.md) + +--- +[documentation index](../README.md) > Module Creation/fr diff --git a/wiki/translations/fr/Mouse_Model.md b/wiki/translations/fr/Mouse_Model.md index a0df0371c7..bba931302d 100644 --- a/wiki/translations/fr/Mouse_Model.md +++ b/wiki/translations/fr/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/fr 1. REDIRECT [Mouse\_navigation/fr](Mouse_navigation/fr.md) + +--- +[documentation index](../README.md) > Mouse Model/fr diff --git a/wiki/translations/fr/Mouse_navigation.md b/wiki/translations/fr/Mouse_navigation.md index 1b162348ef..658a48e8ec 100644 --- a/wiki/translations/fr/Mouse_navigation.md +++ b/wiki/translations/fr/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/fr - - - - - - {{TOCright}} ## Présentation @@ -228,8 +222,5 @@ Sur les MacBooks équipés d\'un trackpad, la navigation par gestes fonctionne t Le tutoriel [Ajout d\'une nouvelle option de navigation à la souris à FreeCAD](Adding_a_new_mouse_navigation_option_to_FreeCAD/fr.md) oriente les développeurs qui souhaitent développer une option de navigation à la souris personnalisée. Une certaine familiarité avec la syntaxe C++ est requise. - - - - - +--- +[documentation index](../README.md) > Mouse navigation/fr diff --git a/wiki/translations/fr/Multithreading.md b/wiki/translations/fr/Multithreading.md index df54656149..301e177228 100644 --- a/wiki/translations/fr/Multithreading.md +++ b/wiki/translations/fr/Multithreading.md @@ -1,7 +1,4 @@ # Multithreading/fr - - - **Il s'agit d'un billet qui doit être développé.** ## Multithreading dans FreeCAD @@ -21,3 +18,6 @@ }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Multithreading/fr diff --git a/wiki/translations/fr/Naming_project.md b/wiki/translations/fr/Naming_project.md index 9ce7e0549a..2cb7811eaf 100644 --- a/wiki/translations/fr/Naming_project.md +++ b/wiki/translations/fr/Naming_project.md @@ -1,7 +1,4 @@ # Naming project/fr - - - ** Ce plan de développement est probablement obsolète. Pour plus d'informations, voir [Plan de développement](Development_roadmap/fr.md).
Si vous n'êtes pas impliqué dans le développement discuté ici :
@@ -109,3 +106,6 @@ Voir [ici](https://github.com/ezzieyguywuf/freecadTopoTesting/blob/master/TNamin [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Naming project/fr diff --git a/wiki/translations/fr/Navigation_Cube.md b/wiki/translations/fr/Navigation_Cube.md index c598598eca..7a2b7eb20f 100644 --- a/wiki/translations/fr/Navigation_Cube.md +++ b/wiki/translations/fr/Navigation_Cube.md @@ -1,10 +1,4 @@ # Navigation Cube/fr - - - - - - {{TOCright}} Le contrôle du cube de navigation, ou **cube de navigation**, est une aide graphique de l\'interface utilisateur permettant de réorienter la vue 3D. Par défaut, il est visible et réside dans le coin supérieur droit de l'affichage 3D. Si vous regardez la vue 3D standard, cela ressemble à ce qui suit : @@ -80,3 +74,6 @@ Pour une configuration plus avancée, consultez l\'[atelier externe](External_wo [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Navigation Cube/fr diff --git a/wiki/translations/fr/NumPy.md b/wiki/translations/fr/NumPy.md index d55ab0cc0a..0e712b6fe1 100644 --- a/wiki/translations/fr/NumPy.md +++ b/wiki/translations/fr/NumPy.md @@ -1,6 +1,4 @@ # NumPy/fr - - ## Introduction Cette page vise à documenter comment utiliser [NumPy](https://numpy.org/) avec FreeCAD. @@ -19,3 +17,6 @@ numpy est installé en tant que dépendance de FreeCAD, vous pouvez donc importe [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > NumPy/fr diff --git a/wiki/translations/fr/OSE_3D_Printer_Workbench.md b/wiki/translations/fr/OSE_3D_Printer_Workbench.md index c33f1a5dc6..511701810d 100644 --- a/wiki/translations/fr/OSE_3D_Printer_Workbench.md +++ b/wiki/translations/fr/OSE_3D_Printer_Workbench.md @@ -1,8 +1,9 @@ # OSE 3D Printer Workbench/fr - - Voir l\'atelier sur le wiki OSE: [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > OSE 3D Printer Workbench/fr diff --git a/wiki/translations/fr/OSE_Piping_Workbench.md b/wiki/translations/fr/OSE_Piping_Workbench.md index 40a397eacc..c51dd0eceb 100644 --- a/wiki/translations/fr/OSE_Piping_Workbench.md +++ b/wiki/translations/fr/OSE_Piping_Workbench.md @@ -1,6 +1,4 @@ # OSE Piping Workbench/fr - - ## Introduction @@ -43,3 +41,6 @@ Un sweep elbow est un coude spécial dont le rayon de courbure est plus grand. I [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > OSE Piping Workbench/fr diff --git a/wiki/translations/fr/Object_API.md b/wiki/translations/fr/Object_API.md index 750ed6ec66..7603765d16 100644 --- a/wiki/translations/fr/Object_API.md +++ b/wiki/translations/fr/Object_API.md @@ -1,5 +1,5 @@ # Object API/fr - **(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir [Source documentation](Source_documentation/fr.md).** +**(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir [Source documentation](Source_documentation/fr.md).** Êtant paramétrique, les Objets Documents dans FreeCAD peuvent avoir beaucoup de propriétés supplémentaires, mais ce sont celles de base, présentes dans chaque Objet Document FreeCAD document. Les objets peuvent être récupérés tout simplement par leur nom. Exemple: ```python @@ -59,3 +59,6 @@ print myObj.PropertiesList [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Object API/fr diff --git a/wiki/translations/fr/Object_name.md b/wiki/translations/fr/Object_name.md index 592565563c..3b4782ebda 100644 --- a/wiki/translations/fr/Object_name.md +++ b/wiki/translations/fr/Object_name.md @@ -1,6 +1,4 @@ # Object name/fr - - ## Introduction @@ -123,3 +121,6 @@ La fonction `addObject` a deux arguments de chaîne de base. Étant donné que `Label` n'est en général pas unique, la méthode `getObjectsByLabel` renvoie une liste avec tous les objets trouvés avec cette `Label`. Cependant, si `Label` est unique dans le document, le premier élément de cette liste doit être l'objet souhaité. {{Userdocnavi}} + +--- +[documentation index](../README.md) > Object name/fr diff --git a/wiki/translations/fr/Offsite_tutorials.md b/wiki/translations/fr/Offsite_tutorials.md index 5b040fd710..e575a82b6c 100644 --- a/wiki/translations/fr/Offsite_tutorials.md +++ b/wiki/translations/fr/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/fr - **Veuillez faire attention à la version de FreeCAD utilisée dans le tutoriel. Si un tutoriel utilise une ancienne version du programme, le processus de modélisation général peut toujours fonctionner mais certains outils peuvent avoir changé dans les versions plus récentes. N'ajoutez pas de tutoriels réalisés avec la version 0.16 ou antérieure, car ces versions sont considérées comme obsolètes.** +**Veuillez faire attention à la version de FreeCAD utilisée dans le tutoriel. Si un tutoriel utilise une ancienne version du programme, le processus de modélisation général peut toujours fonctionner mais certains outils peuvent avoir changé dans les versions plus récentes. N'ajoutez pas de tutoriels réalisés avec la version 0.16 ou antérieure, car ces versions sont considérées comme obsolètes.** Cette page recense les tutoriels FreeCAD disponibles sur d\'autres sites: @@ -19,4 +19,7 @@ Cette page recense les tutoriels FreeCAD disponibles sur d\'autres sites: {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/fr diff --git a/wiki/translations/fr/Online_Help_Startpage.md b/wiki/translations/fr/Online_Help_Startpage.md index f78d04c00e..13f7e9dd8e 100644 --- a/wiki/translations/fr/Online_Help_Startpage.md +++ b/wiki/translations/fr/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/fr - - ![150](images/Crystal_Clear_app_tutorials.png ) ## Bienvenue dans l\'aide en ligne de FreeCAD @@ -22,3 +20,6 @@ Comme vous avez pu le constater parfois, les programmeurs sont de très mauvais [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/fr diff --git a/wiki/translations/fr/Online_Help_Toc.md b/wiki/translations/fr/Online_Help_Toc.md index 8370e28b44..24566b1afb 100644 --- a/wiki/translations/fr/Online_Help_Toc.md +++ b/wiki/translations/fr/Online_Help_Toc.md @@ -1,6 +1,4 @@ # Online Help Toc/fr - - Ceci est la table des matières utilisée pour la construction automatique du **système d'aide en ligne** de FreeCAD. Une version imprimable de ce manuel est aussi disponible sur la page [diffusion de versions](https://github.com/FreeCAD/FreeCAD/releases). Si vous avez des questions ou avez besoin d\'aide pour FreeCAD, veuillez consulter la [page d\'aide](Help/fr.md), y compris les forums et les groupes de discussion. Il existe une autre table des matières pour le [MANUEL FreeCAD](Manual:Introduction/fr.md). @@ -115,3 +113,6 @@ Il existe une autre table des matières pour le [MANUEL FreeCAD](Manual:Introduc [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/fr diff --git a/wiki/translations/fr/OpenCASCADE.md b/wiki/translations/fr/OpenCASCADE.md index 6d91a3618a..06b6a2260d 100644 --- a/wiki/translations/fr/OpenCASCADE.md +++ b/wiki/translations/fr/OpenCASCADE.md @@ -1,7 +1,4 @@ # OpenCASCADE/fr - - - {{TOCright}} ## Description @@ -88,3 +85,6 @@ Ainsi, à partir de formes, vous pouvez créer des pièces très complexes ou, i }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > OpenCASCADE/fr diff --git a/wiki/translations/fr/OpenCamLib.md b/wiki/translations/fr/OpenCamLib.md index 44dbf09f6e..91524e0edb 100644 --- a/wiki/translations/fr/OpenCamLib.md +++ b/wiki/translations/fr/OpenCamLib.md @@ -1,6 +1,4 @@ # OpenCamLib/fr - - ## Description @@ -115,3 +113,6 @@ Merci au [Dr. Anders Wallin](http://www.anderswallin.net/about/) d\'avoir fourni [Category:User Documentation](Category:User_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > OpenCamLib/fr diff --git a/wiki/translations/fr/OpenCascade.md b/wiki/translations/fr/OpenCascade.md index d2c0fae489..54f5feab1e 100644 --- a/wiki/translations/fr/OpenCascade.md +++ b/wiki/translations/fr/OpenCascade.md @@ -1,2 +1,5 @@ # OpenCascade/fr 1. REDIRECT [OpenCASCADE/fr](OpenCASCADE/fr.md) + +--- +[documentation index](../README.md) > OpenCascade/fr diff --git a/wiki/translations/fr/OpenSCAD_AddOpenSCADElement.md b/wiki/translations/fr/OpenSCAD_AddOpenSCADElement.md index a546e6b928..59531954ac 100644 --- a/wiki/translations/fr/OpenSCAD_AddOpenSCADElement.md +++ b/wiki/translations/fr/OpenSCAD_AddOpenSCADElement.md @@ -6,6 +6,8 @@ Workbenches:[OpenSCAD](OpenSCAD_Workbench/fr.md) --- +# OpenSCAD AddOpenSCADElement/fr + ## Description Ajoute un élément OpenSCAD en entrant le code OpenSCAD dans le panneau des tâches et en exécutant le binaire OpenSCAD (nécessite OpenSCAD). @@ -51,4 +53,7 @@ Remarque: Il est également possible d\'ajouter un autre paramètre facultatif q {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD AddOpenSCADElement/fr diff --git a/wiki/translations/fr/OpenSCAD_CSG.md b/wiki/translations/fr/OpenSCAD_CSG.md index 3eb1a2d999..dde764e013 100644 --- a/wiki/translations/fr/OpenSCAD_CSG.md +++ b/wiki/translations/fr/OpenSCAD_CSG.md @@ -1,5 +1,5 @@ # OpenSCAD CSG/fr - {{TOCright}} +{{TOCright}} ## Importation @@ -40,3 +40,6 @@ Les objets dérivés de **Part::Feature** ne sont pas (encore) pris en charge, l {{OpenSCAD Tools navi}} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD CSG/fr diff --git a/wiki/translations/fr/OpenSCAD_CSG_tested_files.md b/wiki/translations/fr/OpenSCAD_CSG_tested_files.md index 1526dfabe0..583bfeba6d 100644 --- a/wiki/translations/fr/OpenSCAD_CSG_tested_files.md +++ b/wiki/translations/fr/OpenSCAD_CSG_tested_files.md @@ -1,6 +1,4 @@ # OpenSCAD CSG tested files/fr - - ## Ceci est une liste de fichiers OpenSCAD qui ne peuvent pas être ouverts dans FreeCAD --------------------------------- ------------------------------------------ ------------------------------------------------------------------ --------------------------------------------------------------------------------- ------------------------------------------ @@ -28,3 +26,6 @@ {{OpenSCAD Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD CSG tested files/fr diff --git a/wiki/translations/fr/OpenSCAD_ColorCodeShape.md b/wiki/translations/fr/OpenSCAD_ColorCodeShape.md index b919b18ada..20246e4a30 100644 --- a/wiki/translations/fr/OpenSCAD_ColorCodeShape.md +++ b/wiki/translations/fr/OpenSCAD_ColorCodeShape.md @@ -6,6 +6,8 @@ Workbenches:[OpenSCAD](OpenSCAD_Workbench/fr.md) --- +# OpenSCAD ColorCodeShape/fr + ## Description ## Utilisation @@ -20,4 +22,7 @@ {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ColorCodeShape/fr diff --git a/wiki/translations/fr/OpenSCAD_Edgestofaces.md b/wiki/translations/fr/OpenSCAD_Edgestofaces.md index a522613507..6d6b15dd1f 100644 --- a/wiki/translations/fr/OpenSCAD_Edgestofaces.md +++ b/wiki/translations/fr/OpenSCAD_Edgestofaces.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Mettre à niveau](Draft_Upgrade/fr.md) --- +# OpenSCAD Edgestofaces/fr + ## Description Converti les bords en faces. Utile pour préparer la géométrie DXF importée pour pouvoir l\'extruder. @@ -28,4 +30,7 @@ Voir aussi [Draft Mettre à niveau](Draft_Upgrade/fr.md) pour une solution alter {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Edgestofaces/fr diff --git a/wiki/translations/fr/OpenSCAD_ExpandPlacements.md b/wiki/translations/fr/OpenSCAD_ExpandPlacements.md index 2e9e798671..2020a473fc 100644 --- a/wiki/translations/fr/OpenSCAD_ExpandPlacements.md +++ b/wiki/translations/fr/OpenSCAD_ExpandPlacements.md @@ -6,6 +6,8 @@ ‏‎ Workbenches:[OpenSCAD](OpenSCAD_Workbench/fr.md) --- +# OpenSCAD ExpandPlacements/fr + ## Description Développe tous les emplacements dans l\'arboresence des entités. @@ -33,4 +35,7 @@ Marche avec: {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ExpandPlacements/fr diff --git a/wiki/translations/fr/OpenSCAD_ExplodeGroup.md b/wiki/translations/fr/OpenSCAD_ExplodeGroup.md index 6802c26410..9fcbbd8528 100644 --- a/wiki/translations/fr/OpenSCAD_ExplodeGroup.md +++ b/wiki/translations/fr/OpenSCAD_ExplodeGroup.md @@ -6,6 +6,8 @@ ‏‎ Workbenches:[OpenSCAD](OpenSCAD_Workbench.md) --- +# OpenSCAD ExplodeGroup/fr + ## Description Cette outil fait décompose une fusion ou un composé et le convertit en objets uniques en appliquant des couleurs aléatoires à ces objets. @@ -38,4 +40,7 @@ Pour les réseaux de l\'atelier de Draft, utilisez l\'outil [Draft Rétrograder] {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ExplodeGroup/fr diff --git a/wiki/translations/fr/OpenSCAD_Hull.md b/wiki/translations/fr/OpenSCAD_Hull.md index d7d6ca2a80..eb1b1ed0b8 100644 --- a/wiki/translations/fr/OpenSCAD_Hull.md +++ b/wiki/translations/fr/OpenSCAD_Hull.md @@ -6,6 +6,8 @@ ‏‎ Workbenches:[OpenSCAD](OpenSCAD_Workbench/fr.md) --- +# OpenSCAD Hull/fr + ## Description Applique une coque aux formes sélectionnées. @@ -31,4 +33,7 @@ La fonctionnalité nécessite qu\'OpenSCAD soit installé et configuré dans **E {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Hull/fr diff --git a/wiki/translations/fr/OpenSCAD_IncreaseTolerance.md b/wiki/translations/fr/OpenSCAD_IncreaseTolerance.md index 354d7c5f14..8ad84e1e1b 100644 --- a/wiki/translations/fr/OpenSCAD_IncreaseTolerance.md +++ b/wiki/translations/fr/OpenSCAD_IncreaseTolerance.md @@ -1,2 +1,5 @@ # OpenSCAD IncreaseTolerance/fr 1. REDIRECT [OpenSCAD\_IncreaseToleranceFeature/fr](OpenSCAD_IncreaseToleranceFeature/fr.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD IncreaseTolerance/fr diff --git a/wiki/translations/fr/OpenSCAD_IncreaseToleranceFeature.md b/wiki/translations/fr/OpenSCAD_IncreaseToleranceFeature.md index dfca92a85e..b3eb6ef441 100644 --- a/wiki/translations/fr/OpenSCAD_IncreaseToleranceFeature.md +++ b/wiki/translations/fr/OpenSCAD_IncreaseToleranceFeature.md @@ -6,6 +6,8 @@ Workbenches:[OpenSCAD](OpenSCAD_Workbench/fr.md) --- +# OpenSCAD IncreaseToleranceFeature/fr + ## Description Augmente la tolérance des arêtes/faces/sommets des objets sélectionnés. @@ -24,4 +26,7 @@ Augmente la tolérance des arêtes/faces/sommets des objets sélectionnés. {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD IncreaseToleranceFeature/fr diff --git a/wiki/translations/fr/OpenSCAD_MeshBoolean.md b/wiki/translations/fr/OpenSCAD_MeshBoolean.md index f8b17c7405..76a40ad078 100644 --- a/wiki/translations/fr/OpenSCAD_MeshBoolean.md +++ b/wiki/translations/fr/OpenSCAD_MeshBoolean.md @@ -6,6 +6,8 @@ Workbenches:[OpenSCAD](OpenSCAD_Workbench/fr.md) --- +# OpenSCAD MeshBoolean/fr + ## Description Crée un nouvel objet maillage par une opération booléenne à partir de formes. @@ -31,4 +33,7 @@ OpenSCAD doit être installé et configuré dans **Edition** → **Préférences {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD MeshBoolean/fr diff --git a/wiki/translations/fr/OpenSCAD_Minkowski.md b/wiki/translations/fr/OpenSCAD_Minkowski.md index 7281762594..f5b9df0504 100644 --- a/wiki/translations/fr/OpenSCAD_Minkowski.md +++ b/wiki/translations/fr/OpenSCAD_Minkowski.md @@ -6,6 +6,8 @@ ‏‎ Workbenches:[OpenSCAD](OpenSCAD_Workbench/fr.md) --- +# OpenSCAD Minkowski/fr + ## Description Applique une somme de Minkowski aux formes sélectionnées. @@ -39,4 +41,7 @@ OpenSCAD doit être installé et configuré dans **Edit** → **Préférences** {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Minkowski/fr diff --git a/wiki/translations/fr/OpenSCAD_MirrorMeshFeature.md b/wiki/translations/fr/OpenSCAD_MirrorMeshFeature.md index 3d5018dc48..a6b7ce282d 100644 --- a/wiki/translations/fr/OpenSCAD_MirrorMeshFeature.md +++ b/wiki/translations/fr/OpenSCAD_MirrorMeshFeature.md @@ -7,6 +7,8 @@ SeeAlso:[Part Mise en miroir](Part_Mirror/fr.md) --- +# OpenSCAD MirrorMeshFeature/fr + ## Description Crée un nouvel objet maillé en miroir, symmétrisé autour de l\'axe sélectionné. @@ -44,4 +46,7 @@ Mesh.show(mirrored_mesh) {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD MirrorMeshFeature/fr diff --git a/wiki/translations/fr/OpenSCAD_Module.md b/wiki/translations/fr/OpenSCAD_Module.md index 4f91e2995b..eb1cfd8e43 100644 --- a/wiki/translations/fr/OpenSCAD_Module.md +++ b/wiki/translations/fr/OpenSCAD_Module.md @@ -1,2 +1,5 @@ # OpenSCAD Module/fr 1. REDIRECT [OpenSCAD\_Workbench/fr](OpenSCAD_Workbench/fr.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Module/fr diff --git a/wiki/translations/fr/OpenSCAD_Preferences.md b/wiki/translations/fr/OpenSCAD_Preferences.md index ac53dc547a..af85955bc4 100644 --- a/wiki/translations/fr/OpenSCAD_Preferences.md +++ b/wiki/translations/fr/OpenSCAD_Preferences.md @@ -1,5 +1,5 @@ # OpenSCAD Preferences/fr - La fenêtre des préférences de l\'[atelier OpenSCAD](OpenSCAD_Workbench/fr.md) se trouve dans [Éditeur de Préférences](Preferences_Editor/fr.md), **Edit → Preferences → OpenSCAD**. +La fenêtre des préférences de l\'[atelier OpenSCAD](OpenSCAD_Workbench/fr.md) se trouve dans [Éditeur de Préférences](Preferences_Editor/fr.md), **Edit → Preferences → OpenSCAD**. Il n\'y a qu\'un seul onglet: Paramètres généraux. @@ -13,3 +13,6 @@ Il n\'y a qu\'un seul onglet: Paramètres généraux. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Preferences/fr diff --git a/wiki/translations/fr/OpenSCAD_RefineShapeFeature.md b/wiki/translations/fr/OpenSCAD_RefineShapeFeature.md index e97ec8e9e2..718e7f63b8 100644 --- a/wiki/translations/fr/OpenSCAD_RefineShapeFeature.md +++ b/wiki/translations/fr/OpenSCAD_RefineShapeFeature.md @@ -7,6 +7,8 @@ SeeAlso:[Part Affiner la forme](Part_RefineShape.md) --- +# OpenSCAD RefineShapeFeature/fr + ## Description Nettoie les arêtes résiduelles. Après une opération booléenne, certaines arêtes définissant les formes précédentes restent visibles, cet outil crée une copie de la totalité de l\'objet nettoyé. @@ -38,4 +40,7 @@ Nettoie les arêtes résiduelles. Après une opération booléenne, certaines ar {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD RefineShapeFeature/fr diff --git a/wiki/translations/fr/OpenSCAD_RemoveSubtree.md b/wiki/translations/fr/OpenSCAD_RemoveSubtree.md index e7d9e2db2a..bd4742db2d 100644 --- a/wiki/translations/fr/OpenSCAD_RemoveSubtree.md +++ b/wiki/translations/fr/OpenSCAD_RemoveSubtree.md @@ -6,6 +6,8 @@ Workbenches:[OpenSCAD](OpenSCAD_Workbench/fr.md) --- +# OpenSCAD RemoveSubtree/fr + ## Description Supprime les objets sélectionnés et tous les enfants qui ne sont pas référencés à partir d\'autres objets. @@ -25,4 +27,7 @@ Supprime les objets sélectionnés et tous les enfants qui ne sont pas référen {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD RemoveSubtree/fr diff --git a/wiki/translations/fr/OpenSCAD_ReplaceObject.md b/wiki/translations/fr/OpenSCAD_ReplaceObject.md index a48321708f..b60baec3b5 100644 --- a/wiki/translations/fr/OpenSCAD_ReplaceObject.md +++ b/wiki/translations/fr/OpenSCAD_ReplaceObject.md @@ -6,6 +6,8 @@ Workbenches:[OpenSCAD](OpenSCAD_Workbench/fr.md) --- +# OpenSCAD ReplaceObject/fr + ## Description Remplace un objet dans la [vue en arborescence](Tree_view/fr.md). @@ -27,4 +29,7 @@ Vous pouvez utiliser cette fonction par exemple pour remplacer une pièce dans u {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ReplaceObject/fr diff --git a/wiki/translations/fr/OpenSCAD_ResizeMeshFeature.md b/wiki/translations/fr/OpenSCAD_ResizeMeshFeature.md index 4b7e36d8a3..d79d0cec85 100644 --- a/wiki/translations/fr/OpenSCAD_ResizeMeshFeature.md +++ b/wiki/translations/fr/OpenSCAD_ResizeMeshFeature.md @@ -6,6 +6,8 @@ Workbenches:[OpenSCAD](OpenSCAD_Workbench/fr.md) --- +# OpenSCAD ResizeMeshFeature/fr + ## Description Crée un nouvel objet maillé redimensionné avec un dimensionnement indépendant pour chaque axe. @@ -44,4 +46,7 @@ Mesh.show(resized_mesh) {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ResizeMeshFeature/fr diff --git a/wiki/translations/fr/OpenSCAD_ScaleMeshFeature.md b/wiki/translations/fr/OpenSCAD_ScaleMeshFeature.md index eb1b3e8f92..16b8693a8e 100644 --- a/wiki/translations/fr/OpenSCAD_ScaleMeshFeature.md +++ b/wiki/translations/fr/OpenSCAD_ScaleMeshFeature.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh Échelle](Mesh_Scale/fr.md) --- +# OpenSCAD ScaleMeshFeature/fr + ## Description Crée un nouvel objet maillé mis à l\'échelle avec une mise à l\'échelle indépendante pour chaque axe. @@ -44,4 +46,7 @@ Mesh.show(scaled_mesh) {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ScaleMeshFeature/fr diff --git a/wiki/translations/fr/OpenSCAD_Workbench.md b/wiki/translations/fr/OpenSCAD_Workbench.md index 86156ad284..1968b36f57 100644 --- a/wiki/translations/fr/OpenSCAD_Workbench.md +++ b/wiki/translations/fr/OpenSCAD_Workbench.md @@ -1,10 +1,4 @@ -# OpenSCAD Workbench/fr - - - - - -Icône de l\'atelier OpenSCAD +# Icône de l\'atelier OpenSCAD OpenSCAD Workbench/fr ## Introduction @@ -98,3 +92,6 @@ Si FreeCAD se bloque lors de l\'importation de CSG, il est fortement recommandé }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/fr diff --git a/wiki/translations/fr/PCB_Workbench.md b/wiki/translations/fr/PCB_Workbench.md index eaf4892115..99d8895feb 100644 --- a/wiki/translations/fr/PCB_Workbench.md +++ b/wiki/translations/fr/PCB_Workbench.md @@ -1,6 +1,4 @@ # PCB Workbench/fr - - ## Introduction @@ -109,3 +107,6 @@ C:/Program Files/FreeCAD-0.18/Mod [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > PCB Workbench/fr diff --git a/wiki/translations/fr/PDF.md b/wiki/translations/fr/PDF.md index e5f85fa053..17777f9e22 100644 --- a/wiki/translations/fr/PDF.md +++ b/wiki/translations/fr/PDF.md @@ -1,7 +1,4 @@ # PDF/fr - - - {{TOCright}} ## Description @@ -30,3 +27,6 @@ L\'option d\'exportation au format PDF est disponible dans le menu **Fichier → [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > PDF/fr diff --git a/wiki/translations/fr/POV-Ray.md b/wiki/translations/fr/POV-Ray.md index d6daf9fec1..5f0e9b9c09 100644 --- a/wiki/translations/fr/POV-Ray.md +++ b/wiki/translations/fr/POV-Ray.md @@ -1,5 +1,5 @@ # POV-Ray/fr - **Le développement de POV-Ray semble être arrêté. La dernière version stable est 3.7.0.8 (2018-05-27), la dernière version de développement est 3.8.0-x (2019-02-19), le [https://github.com/POV-Ray/povray/ official project on GitHub] a été édité la dernière fois le 2019-03-08. Veuillez supprimer cet avertissement si la situation change** +**Le développement de POV-Ray semble être arrêté. La dernière version stable est 3.7.0.8 (2018-05-27), la dernière version de développement est 3.8.0-x (2019-02-19), le [https://github.com/POV-Ray/povray/ official project on GitHub] a été édité la dernière fois le 2019-03-08. Veuillez supprimer cet avertissement si la situation change** # Description @@ -97,3 +97,6 @@ After installing the Render Workbench and POV-Ray, launch FreeCAD, open the [Pre Set the POV-Ray executable path to point to your installation of POV-Ray, usually it is *C:/Program Files/POV-Ray/v3.7/bin/pvengine64.exe*, and apply. Then, before trying to render something, start POV-Ray separately and [set I/O restrictions according to POV-Ray documentation](https://wiki.povray.org/content/Documentation:Windows_Section_2.1), otherwise rendering will not work properly (or will not work at all). + +--- +[documentation index](../README.md) > POV-Ray/fr diff --git a/wiki/translations/fr/Packaging.md b/wiki/translations/fr/Packaging.md index 8e4517fd3d..fbc168ef53 100644 --- a/wiki/translations/fr/Packaging.md +++ b/wiki/translations/fr/Packaging.md @@ -1,6 +1,4 @@ # Packaging/fr - - Cette page recueille les informations sur le packaging de FreeCAD sur différentes plateformes. - [Linux packaging](Linux_packaging/fr.md). Informations sur AppImages, paquets Debian, instables et quotidiens, et autres. @@ -11,3 +9,6 @@ Cette page recueille les informations sur le packaging de FreeCAD sur différent [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Packaging/fr diff --git a/wiki/translations/fr/Parameter_editor.md b/wiki/translations/fr/Parameter_editor.md index f36d30be67..408936ae09 100644 --- a/wiki/translations/fr/Parameter_editor.md +++ b/wiki/translations/fr/Parameter_editor.md @@ -1,2 +1,5 @@ # Parameter editor/fr 1. REDIRECT [Std\_DlgParameter/fr](Std_DlgParameter/fr.md) + +--- +[documentation index](../README.md) > Parameter editor/fr diff --git a/wiki/translations/fr/Part.md b/wiki/translations/fr/Part.md index 1107aae56a..14f15ae7cf 100644 --- a/wiki/translations/fr/Part.md +++ b/wiki/translations/fr/Part.md @@ -1,6 +1,4 @@ # Part/fr - - ## Introduction @@ -34,3 +32,6 @@ Cependant, lorsque plus de précision est requise, la distinction doit être fai }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Part/fr diff --git a/wiki/translations/fr/PartDesign_AdditiveBox.md b/wiki/translations/fr/PartDesign_AdditiveBox.md index 76fcb31a70..f405c08cea 100644 --- a/wiki/translations/fr/PartDesign_AdditiveBox.md +++ b/wiki/translations/fr/PartDesign_AdditiveBox.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives additives](PartDesign_CompPrimitiveAdditive/fr.md) --- +# PartDesign AdditiveBox/fr + ## Description Insère un Cube primitif dans un corps actif (body) comme première fonction, ou le fusionne aux fonctions existantes. @@ -46,4 +48,7 @@ Le Cube peut être édité après sa création de deux façons: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveBox/fr diff --git a/wiki/translations/fr/PartDesign_AdditiveCone.md b/wiki/translations/fr/PartDesign_AdditiveCone.md index c228ea7df7..652f3c4b13 100644 --- a/wiki/translations/fr/PartDesign_AdditiveCone.md +++ b/wiki/translations/fr/PartDesign_AdditiveCone.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives additives](PartDesign_CompPrimitiveAdditive/fr.md), [PartDesign Cône soustractif](PartDesign_SubtractiveCone.md) --- +# PartDesign AdditiveCone/fr + ## Description Insere un Cône primitif dans un corps actif comme première fonction, ou le fusionne avec les fonctions existantes. @@ -48,4 +50,7 @@ Le Cône peut être éditée après sa création de deux façons: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCone/fr diff --git a/wiki/translations/fr/PartDesign_AdditiveCylinder.md b/wiki/translations/fr/PartDesign_AdditiveCylinder.md index 6277cc2303..48e1881b52 100644 --- a/wiki/translations/fr/PartDesign_AdditiveCylinder.md +++ b/wiki/translations/fr/PartDesign_AdditiveCylinder.md @@ -8,6 +8,8 @@ SeeAlso:[Créer une primitive d'addition](PartDesign_CompPrimitiveAdditive/fr.md), [Cylindre soustractif](PartDesign_SubtractiveCylinder/fr.md) --- +# PartDesign AdditiveCylinder/fr + ## Description Insère un Cylindre primitif dans un corps actif comme première fonction, ou le fusionne aux autres fonctions existantes. @@ -53,4 +55,7 @@ Le Cylindre peut être édité après sa création de deux façons : {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCylinder/fr diff --git a/wiki/translations/fr/PartDesign_AdditiveEllipsoid.md b/wiki/translations/fr/PartDesign_AdditiveEllipsoid.md index 510adcac03..518e2421b7 100644 --- a/wiki/translations/fr/PartDesign_AdditiveEllipsoid.md +++ b/wiki/translations/fr/PartDesign_AdditiveEllipsoid.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives additives](PartDesign_CompPrimitiveAdditive/fr.md) --- +# PartDesign AdditiveEllipsoid/fr + ## Description Insérer un Ellipsoïde primitif dans le Corps actif comme fonction de base, ou fusionne avec une existante. @@ -52,4 +54,7 @@ L\'Ellipsoïde peut être édité après sa création de deux façons : {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveEllipsoid/fr diff --git a/wiki/translations/fr/PartDesign_AdditiveHelix.md b/wiki/translations/fr/PartDesign_AdditiveHelix.md index 42e8473951..fc1de3bff3 100644 --- a/wiki/translations/fr/PartDesign_AdditiveHelix.md +++ b/wiki/translations/fr/PartDesign_AdditiveHelix.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Hélice soustractive](PartDesign_SubtractiveHelix/fr.md) --- +# PartDesign AdditiveHelix/fr + ## Description L\'outil **Hélice additive** crée un solide en balayant une esquisse ou un objet 2D sélectionné le long d\'une hélice. @@ -125,4 +127,7 @@ Si coché, l\'hélice sera affichée dans la vue et la mise à jour sera automat {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveHelix/fr diff --git a/wiki/translations/fr/PartDesign_AdditiveLoft.md b/wiki/translations/fr/PartDesign_AdditiveLoft.md index b417d7d20b..ef0ee503ac 100644 --- a/wiki/translations/fr/PartDesign_AdditiveLoft.md +++ b/wiki/translations/fr/PartDesign_AdditiveLoft.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Balayage additif](PartDesign_AdditivePipe/fr.md), [PartDesign Lissage soustractif](PartDesign_SubtractiveLoft/fr.md) --- +# PartDesign AdditiveLoft/fr + ## Description Le **Lissage additif** crée un solide dans le Corps actif en faisant une transition entre deux ou plusieurs esquisses (également appelées sections transversales). Si le corps contient déjà des éléments, le lissage additif sera fusionné avec eux. @@ -86,4 +88,7 @@ Le **Lissage additif** crée un solide dans le Corps actif en faisant une transi {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveLoft/fr diff --git a/wiki/translations/fr/PartDesign_AdditivePipe.md b/wiki/translations/fr/PartDesign_AdditivePipe.md index 0b07e04c8d..a5b0dc713b 100644 --- a/wiki/translations/fr/PartDesign_AdditivePipe.md +++ b/wiki/translations/fr/PartDesign_AdditivePipe.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Lissage additif](PartDesign_AdditiveLoft/fr.md), [PartDesign Balayage soustractif](PartDesign_SubtractivePipe/fr.md) --- +# PartDesign AdditivePipe/fr + ## Description Insère un **Balayage additif** dans un Corps actif par balayage d\'une ou plusieurs esquisses (également appelées sections transversales) le long d\'un chemin ouvert ou fermé. Si le Corps contient déjà un solide, le balayage additif sera fusionné avec lui. @@ -101,4 +103,7 @@ Pour utiliser plusieurs sections, commencez par la section comme décrit ci-dess {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePipe/fr diff --git a/wiki/translations/fr/PartDesign_AdditivePrism.md b/wiki/translations/fr/PartDesign_AdditivePrism.md index d6ecd019dd..b691f194cf 100644 --- a/wiki/translations/fr/PartDesign_AdditivePrism.md +++ b/wiki/translations/fr/PartDesign_AdditivePrism.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives additives](PartDesign_CompPrimitiveAdditive/fr.md), [PartDesign Prisme soustractif](PartDesign_SubtractivePrism/fr.md) --- +# PartDesign AdditivePrism/fr + ## Description Insére un Prisme primitif dans un corps actif comme fonction de base, ou le fusionne aux fonctions existantes. @@ -52,4 +54,7 @@ Le Prisme peut être éditée après sa création de deux façons : {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePrism/fr diff --git a/wiki/translations/fr/PartDesign_AdditiveSphere.md b/wiki/translations/fr/PartDesign_AdditiveSphere.md index d8ff627569..d59a0e29c7 100644 --- a/wiki/translations/fr/PartDesign_AdditiveSphere.md +++ b/wiki/translations/fr/PartDesign_AdditiveSphere.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives additives](PartDesign_CompPrimitiveAdditive/fr.md) --- +# PartDesign AdditiveSphere/fr + ## Description Insére une sphère primitive dans un corps actif (body) comme fonction de base, ou la fusionne avec les fonctions existantes. @@ -48,4 +50,7 @@ La Sphère peut être éditée après sa création de deux façons: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveSphere/fr diff --git a/wiki/translations/fr/PartDesign_AdditiveTorus.md b/wiki/translations/fr/PartDesign_AdditiveTorus.md index 02dc471a9e..a956899ba4 100644 --- a/wiki/translations/fr/PartDesign_AdditiveTorus.md +++ b/wiki/translations/fr/PartDesign_AdditiveTorus.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives additives](PartDesign_CompPrimitiveAdditive/fr.md) --- +# PartDesign AdditiveTorus/fr + ## Description Insérer un tore Primitif dans un corps actif (body) comme fonction de base, ou le fusionne aux fonctions existantes. @@ -50,4 +52,7 @@ Le Tore peut être éditée après sa création de deux façons : {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveTorus/fr diff --git a/wiki/translations/fr/PartDesign_AdditiveWedge.md b/wiki/translations/fr/PartDesign_AdditiveWedge.md index 0e098b50d0..92dfbbb268 100644 --- a/wiki/translations/fr/PartDesign_AdditiveWedge.md +++ b/wiki/translations/fr/PartDesign_AdditiveWedge.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives additives](PartDesign_CompPrimitiveAdditive/fr.md), [PartDesign Pyramide tronquée soustractive](PartDesign_SubtractiveWedge/fr.md) --- +# PartDesign AdditiveWedge/fr + ## Description Insère une pyramide tronquée primitive dans un Corps actif comme fonction de base, ou fusionne avec une existante. @@ -52,4 +54,7 @@ Les Pyramides tronquées peuvent être utilisées pour créer des pyramides en f {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveWedge/fr diff --git a/wiki/translations/fr/PartDesign_Bearingholder_Tutorial_I.md b/wiki/translations/fr/PartDesign_Bearingholder_Tutorial_I.md index d5173c6216..51a0ea95e0 100644 --- a/wiki/translations/fr/PartDesign_Bearingholder_Tutorial_I.md +++ b/wiki/translations/fr/PartDesign_Bearingholder_Tutorial_I.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial I/fr - - - - {{TutorialInfo |Topic=Modélisation |Level=Utilisateur expérimenté @@ -107,3 +103,6 @@ Nous avons modélisé le haut du support de roulement avec les dimensions qu\'il [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial I/fr diff --git a/wiki/translations/fr/PartDesign_Bearingholder_Tutorial_II.md b/wiki/translations/fr/PartDesign_Bearingholder_Tutorial_II.md index 79969b7eb5..ad94675365 100644 --- a/wiki/translations/fr/PartDesign_Bearingholder_Tutorial_II.md +++ b/wiki/translations/fr/PartDesign_Bearingholder_Tutorial_II.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial II/fr - - - - {{TutorialInfo |Topic=Modélisation |Level=Utilisateur expérimenté @@ -92,3 +88,6 @@ Pour le reste de l\'usinage, créer un nouveau corps. Le fond du support sera us [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial II/fr diff --git a/wiki/translations/fr/PartDesign_Body.md b/wiki/translations/fr/PartDesign_Body.md index 6f9b9661cf..ba4c551bea 100644 --- a/wiki/translations/fr/PartDesign_Body.md +++ b/wiki/translations/fr/PartDesign_Body.md @@ -8,6 +8,8 @@ SeeAlso:[Std Part](Std_Part/fr.md), [Édition de fonctions](Feature_editing/fr.md) --- +# PartDesign Body/fr + ## Description Un [PartDesign Corps (Body)](PartDesign_Body/fr.md) est l\'élément de base pour créer des formes solides avec l\'[atelier PartDesign](PartDesign_Workbench/fr.md). Il peut contenir des [esquisses](Sketch/fr.md), des [objets Datum](Datum/fr.md) et des [PartDesign Fonctionnalités (Features)](PartDesign_Feature/fr.md) afin de produire un [simple solide contigu](PartDesign_Body/fr#Solide_contigu_unique.md). @@ -290,4 +292,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Body/fr diff --git a/wiki/translations/fr/PartDesign_Boolean.md b/wiki/translations/fr/PartDesign_Boolean.md index 073eea2bf3..4c645747e3 100644 --- a/wiki/translations/fr/PartDesign_Boolean.md +++ b/wiki/translations/fr/PartDesign_Boolean.md @@ -7,6 +7,8 @@ Version:0.17 --- +# PartDesign Boolean/fr + ## Description L**\'opération Booléenne** importe un ou plusieurs [PartDesign Corps](PartDesign_Body/fr.md) ou [PartDesign Clones](PartDesign_Clone/fr.md) (désignés comme \"outils Corps\") dans un PartDesign Corps actif et applique une opération booléenne (fusion, soustraction ou intersection). @@ -62,4 +64,7 @@ Alternativement, un ou plusieurs corps peuvent être sélectionnés avant d\'app {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Boolean/fr diff --git a/wiki/translations/fr/PartDesign_Chamfer.md b/wiki/translations/fr/PartDesign_Chamfer.md index 49b363163d..0038f3a826 100644 --- a/wiki/translations/fr/PartDesign_Chamfer.md +++ b/wiki/translations/fr/PartDesign_Chamfer.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Congé](PartDesign_Fillet/fr.md), [Part Chanfrein](Part_Chamfer/fr.md) --- +# PartDesign Chamfer/fr + ## Description Cet outil crée des chanfreins sur les arêtes sélectionnées d\'un objet. Une nouvelle entrée distincte de chanfrein (suivie d\'un numéro consécutif s\'il existe déjà des chanfreins dans le document) est créée dans l\'arborescence du projet. @@ -36,4 +38,7 @@ Cet outil crée des chanfreins sur les arêtes sélectionnées d\'un objet. Une {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Chamfer/fr diff --git a/wiki/translations/fr/PartDesign_Clone.md b/wiki/translations/fr/PartDesign_Clone.md index d4d4bbb0a7..c7168ebc26 100644 --- a/wiki/translations/fr/PartDesign_Clone.md +++ b/wiki/translations/fr/PartDesign_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Clone](Draft_Clone/fr.md) --- +# PartDesign Clone/fr + ## Description **PartDesign Clone** crée une copie liée d\'un objet sélectionné, qui suivra toutes les modifications ultérieures apportées à l\'objet d\'origine (sauf le placement). Par exemple, un cas d\'utilisation survient lorsque vous souhaitez effectuer une opération [PartDesign Booléenne](PartDesign_Boolean/fr.md) sur un objet créé dans un autre atelier. La plupart des types d\'objets sont acceptés, à condition qu\'il s\'agisse de solides simples. Si vous avez besoin de cloner plusieurs objets (corps) ou un [Part](Std_Part/fr.md), vous pouvez utiliser l\'outil [Draft Clone](Draft_Clone/fr.md). Un inconvénient est que le clone de l\'atelier Part Design définit l\'emplacement en cours du clone à zéro (translation cartésienne et orientation spatiale). Tandis que le clone de l\'ateliers Draft calcule et définit les valeurs numériques du placement et de l\'orientation en cours des objets clonés par rapport au conteneur de l\'objet cloné. @@ -38,4 +40,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Clone/fr diff --git a/wiki/translations/fr/PartDesign_CompPrimitiveAdditive.md b/wiki/translations/fr/PartDesign_CompPrimitiveAdditive.md index 44eb034f43..54409e087a 100644 --- a/wiki/translations/fr/PartDesign_CompPrimitiveAdditive.md +++ b/wiki/translations/fr/PartDesign_CompPrimitiveAdditive.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives soustractives](PartDesign_CompPrimitiveSubtractive/fr.md) --- +# PartDesign CompPrimitiveAdditive/fr + ## Description Crée une primitive d\'addition dans le corps actif en tant que première entité ou la fusionne avec la ou les entités existantes. Si aucun corps n\'est trouvé dans le document, un corps sera automatiquement créé. @@ -29,4 +31,7 @@ Crée une primitive d\'addition dans le corps actif en tant que première entit {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveAdditive/fr diff --git a/wiki/translations/fr/PartDesign_CompPrimitiveSubtractive.md b/wiki/translations/fr/PartDesign_CompPrimitiveSubtractive.md index ab0d9ef87d..c592c8c1f8 100644 --- a/wiki/translations/fr/PartDesign_CompPrimitiveSubtractive.md +++ b/wiki/translations/fr/PartDesign_CompPrimitiveSubtractive.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives additives](PartDesign_CompPrimitiveAdditive/fr.md) --- +# PartDesign CompPrimitiveSubtractive/fr + ## Description Crée une primitive soustractive dans le corps actif, en soustrayant sa forme du solide existant. @@ -29,4 +31,7 @@ Crée une primitive soustractive dans le corps actif, en soustrayant sa forme du {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveSubtractive/fr diff --git a/wiki/translations/fr/PartDesign_CoordinateSystem.md b/wiki/translations/fr/PartDesign_CoordinateSystem.md index 798b67f4e7..32374dbfac 100644 --- a/wiki/translations/fr/PartDesign_CoordinateSystem.md +++ b/wiki/translations/fr/PartDesign_CoordinateSystem.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Point de référence](PartDesign_Point/fr.md), [PartDesign Ligne de référence](PartDesign_Line/fr.md), [PartDesign Plan de référence](PartDesign_Plane/fr.md) --- +# PartDesign CoordinateSystem/fr + ## Description Crée un **système de coordonnées local** qui peut être utilisé comme référence pour une autre géométrie de référence. Cela aide également à identifier l\'orientation de la géométrie de référence dans un espace 3D. ![](images/PartDesign_LocalCoordinateSystem_Example.png ) *Système de coordonnées local provenant de l'origine d'un plan de référence.* @@ -53,4 +55,7 @@ lcs = App.activeDocument().addObject( 'PartDesign::CoordinateSystem', 'LCS' ) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CoordinateSystem/fr diff --git a/wiki/translations/fr/PartDesign_Draft.md b/wiki/translations/fr/PartDesign_Draft.md index 76223f55de..a6b0b4e565 100644 --- a/wiki/translations/fr/PartDesign_Draft.md +++ b/wiki/translations/fr/PartDesign_Draft.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/fr.md) --- +# PartDesign Draft/fr + ### Description Cet outil crée une dépouille angulaire sur les faces sélectionnées d\'un objet. Une nouvelle dépouille distincte (suivie d\'un numéro séquentiel, s\'il y a déjà des dépouilles dans le document) est créée dans l\'arborescence du projet. @@ -51,4 +53,7 @@ Cet outil crée une dépouille angulaire sur les faces sélectionnées d\'un obj {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Draft/fr diff --git a/wiki/translations/fr/PartDesign_Feature.md b/wiki/translations/fr/PartDesign_Feature.md index 45c714b131..3600500396 100644 --- a/wiki/translations/fr/PartDesign_Feature.md +++ b/wiki/translations/fr/PartDesign_Feature.md @@ -1,6 +1,4 @@ # PartDesign Feature/fr - - ## Introduction [PartDesign Feature](PartDesign_Feature/fr.md) fait référence à une \"étape\" du processus de modélisation qui se produit à l\'intérieur d\'un [PartDesign Corps](PartDesign_Body/fr.md). Par exemple, chaque fois que vous ajoutez une boîte pleine avec [PartDesign Cube additif](PartDesign_AdditiveBox/fr.md), vous ajoutez une fonction. Lorsque vous ajoutez un chanfrein à une arête avec [PartDesign Chanfrein](PartDesign_Chamfer/fr.md), vous ajoutez une autre fonction. Lorsque vous découpez un trou à l\'aide d\'une [Esquisse](Sketch/fr.md) et [PartDesign Cavité](PartDesign_Pocket/fr.md), vous ajoutez une autre fonction. @@ -81,4 +79,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Feature/fr diff --git a/wiki/translations/fr/PartDesign_Fillet.md b/wiki/translations/fr/PartDesign_Fillet.md index a37d923b15..1c6103de3a 100644 --- a/wiki/translations/fr/PartDesign_Fillet.md +++ b/wiki/translations/fr/PartDesign_Fillet.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Chanfrein](PartDesign_Chamfer/fr.md), [Part Congé](Part_Fillet/fr.md) --- +# PartDesign Fillet/fr + ## Description Cet outil crée des congés (arrondis) sur les bords sélectionnés d\'un objet. Une nouvelle entrée de congé séparée (suivie d\'un numéro séquentiel s\'il existe déjà des congés dans le document) est créée dans l\'arborescence du projet. @@ -100,4 +102,7 @@ Part.show(Box) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Fillet/fr diff --git a/wiki/translations/fr/PartDesign_Groove.md b/wiki/translations/fr/PartDesign_Groove.md index 73905ccadd..615702bdba 100644 --- a/wiki/translations/fr/PartDesign_Groove.md +++ b/wiki/translations/fr/PartDesign_Groove.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/fr.md) --- +# PartDesign Groove/fr + ## Description L\'outil **Rainure** fait pivoter une esquisse ou un profil sélectionné autour d\'un axe donné en découpant la matière du support. @@ -74,4 +76,7 @@ Ci-dessous les propriétés qui peuvent être modifiées après la création de {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Groove/fr diff --git a/wiki/translations/fr/PartDesign_Hole.md b/wiki/translations/fr/PartDesign_Hole.md index 44814b17a3..37ab478de5 100644 --- a/wiki/translations/fr/PartDesign_Hole.md +++ b/wiki/translations/fr/PartDesign_Hole.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Cavité](PartDesign_Pocket/fr.md) --- +# PartDesign Hole/fr + ## Description La fonction **Perçage** crée un ou plusieurs trous à partir des cercles et des arcs d\'une esquisse sélectionnée. Si des arcs sont présents, ils doivent faire partie de contours fermés. Toutes les entités autres que des arcs ou des cercles sont ignorées mais elles doivent tout de même former des contours fermés. De nombreux paramètres peuvent être définis, tels que le filetage et la taille, l\'ajustement, le type de trou (fraise, lamage, droit) etc\... @@ -109,4 +111,7 @@ Exemple : {{Code|lang=json|code= {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Hole/fr diff --git a/wiki/translations/fr/PartDesign_InvoluteGear.md b/wiki/translations/fr/PartDesign_InvoluteGear.md index 102bd5de2e..10025a5308 100644 --- a/wiki/translations/fr/PartDesign_InvoluteGear.md +++ b/wiki/translations/fr/PartDesign_InvoluteGear.md @@ -7,6 +7,8 @@ SeeAlso:[Atelier FCGear](FCGear_Workbench/fr.md) --- +# PartDesign InvoluteGear/fr + ## Description Cet outil permet de créer un profil 2D d\'une roue d\'engrenage à développante. Ce profil 2D est pleinement paramétrique et peut être extrudé avec la fonction [PartDesign Protrusion](PartDesign_Pad/fr.md). @@ -43,4 +45,7 @@ Pour des informations plus détaillées, voir également [Engrenage](https://fr. {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign InvoluteGear/fr diff --git a/wiki/translations/fr/PartDesign_Legacy.md b/wiki/translations/fr/PartDesign_Legacy.md index f9f26c0aa4..c717a531c5 100644 --- a/wiki/translations/fr/PartDesign_Legacy.md +++ b/wiki/translations/fr/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/fr 1. REDIRECT [PartDesign\_Workbench/fr](PartDesign_Workbench/fr.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/fr diff --git a/wiki/translations/fr/PartDesign_Line.md b/wiki/translations/fr/PartDesign_Line.md index 4c8fd4641b..3adf905163 100644 --- a/wiki/translations/fr/PartDesign_Line.md +++ b/wiki/translations/fr/PartDesign_Line.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Point de référence](PartDesign_Point/fr.md), [Plan de référence](PartDesign_Plane/fr.md) --- +# PartDesign Line/fr + ## Description Crée une **droite de référence** qui peut être utilisée comme référence pour les esquisses, les autres géométries de référence ou les fonctions. Par exemple, elle peut être utilisée comme axe de révolution pour les fonctions Révolution et Rainure circulaire. @@ -43,4 +45,7 @@ Double-cliquez sur l\'étiquette DatumLine dans l\'arborescence du modèle ou cl {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Line/fr diff --git a/wiki/translations/fr/PartDesign_LinearPattern.md b/wiki/translations/fr/PartDesign_LinearPattern.md index 8e5f67d7c6..183aa5b67d 100644 --- a/wiki/translations/fr/PartDesign_LinearPattern.md +++ b/wiki/translations/fr/PartDesign_LinearPattern.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/fr.md) --- +# PartDesign LinearPattern/fr + ## Description L\'outil ** '''Répétition linéaire'''** créé des copies d\'une fonction espacées également le long d\'une droite. A partir de {{VersionPlus/fr|0.17}}, l\'outil de modèle linéaire peut modéliser plusieurs fonctions. @@ -87,4 +89,7 @@ Sélectionnez l\'un des axes standard de l\'origine du corps (X, Y ou Z) comme d {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign LinearPattern/fr diff --git a/wiki/translations/fr/PartDesign_Migrate.md b/wiki/translations/fr/PartDesign_Migrate.md index 8d43016b01..9e8bd7e99f 100644 --- a/wiki/translations/fr/PartDesign_Migrate.md +++ b/wiki/translations/fr/PartDesign_Migrate.md @@ -7,6 +7,8 @@ Version:0.17 --- +# PartDesign Migrate/fr + ## Description L\'atelier PartDesign dans FreeCAD V0.17 introduit de nouveaux outils et éléments qui ne sont pas reconnus par les anciennes versions FreeCAD (0.16 et plus anciennes). Les documents FreeCAD créés dans des versions plus anciennes peuvent toujours être ouverts et modifiés. Pour bénéficier des nouvelles fonctionnalités, vous devez les migrer via le menu PartDesign → Migrer. @@ -33,4 +35,7 @@ L\'atelier PartDesign dans FreeCAD V0.17 introduit de nouveaux outils et éléme {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Migrate/fr diff --git a/wiki/translations/fr/PartDesign_Mirrored.md b/wiki/translations/fr/PartDesign_Mirrored.md index 62e7c506cc..71eb5f32f7 100644 --- a/wiki/translations/fr/PartDesign_Mirrored.md +++ b/wiki/translations/fr/PartDesign_Mirrored.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/fr.md) --- +# PartDesign Mirrored/fr + ## Description L\'outil **Symétrie** copie symétriquement des fonctions par rapport à un plan. @@ -81,4 +83,7 @@ Le résultat de la symétrie peut être prévisualisé en temps réel avant de c {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Mirrored/fr diff --git a/wiki/translations/fr/PartDesign_MoveFeature.md b/wiki/translations/fr/PartDesign_MoveFeature.md index 72300a6052..b571ded44b 100644 --- a/wiki/translations/fr/PartDesign_MoveFeature.md +++ b/wiki/translations/fr/PartDesign_MoveFeature.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Fonction résultante](PartDesign_MoveTip/fr.md), [PartDesign Déplacer après un autre objet](PartDesign_MoveFeatureInTree/fr.md) --- +# PartDesign MoveFeature/fr + ## Description [Déplacer vers un autre corps](PartDesign_MoveFeature/fr.md), comme cette commande est étiquetée dans le menu contextuel, permet de déplacer des objets sous un corps vers un autre corps. L\'objet déplacé est placé juste en dessous de la fonction résultante de l\'autre corps. Les esquisses, la géométrie de référence et les fonctionnalités sont prises en charge. @@ -25,4 +27,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeature/fr diff --git a/wiki/translations/fr/PartDesign_MoveFeatureInTree.md b/wiki/translations/fr/PartDesign_MoveFeatureInTree.md index 0346380b0d..a51df39b7c 100644 --- a/wiki/translations/fr/PartDesign_MoveFeatureInTree.md +++ b/wiki/translations/fr/PartDesign_MoveFeatureInTree.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Désigner comme fonction résultante](PartDesign_MoveTip/fr.md), [PartDesign Déplacer vers un autre corps de pièce](PartDesign_MoveFeature/fr.md) --- +# PartDesign MoveFeatureInTree/fr + ## Description [Déplacer après un autre objet](PartDesign_MoveFeatureInTree/fr.md), comme cette commande est étiquetée dans le menu contextuel, elle permet de réorganiser les objets sous un Corps. Les esquisses, la géométrie de référence et les fonctionnalités sont prises en charge. @@ -31,4 +33,7 @@ Les trois images ci-dessous montrent le même modèle avec une cavité définie {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeatureInTree/fr diff --git a/wiki/translations/fr/PartDesign_MoveTip.md b/wiki/translations/fr/PartDesign_MoveTip.md index 55c0091f41..5fb87aa397 100644 --- a/wiki/translations/fr/PartDesign_MoveTip.md +++ b/wiki/translations/fr/PartDesign_MoveTip.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Déplacer vers un autre corps](PartDesign_MoveFeature/fr.md), [PartDesign Déplacer après un autre objet](PartDesign_MoveFeatureInTree/fr.md) --- +# PartDesign MoveTip/fr + ## Description [Désigner comme fonction résultante](PartDesign_MoveTip/fr.md), comme elle est appelée dans le menu contextuel, redéfinit la fonction résultante qui est la caractéristique exposée à l\'extérieur du corps. Par défaut, la fonction résultante est la dernière fonctionnalité ajoutée au corps mais parfois, il peut être utile de définir temporairement une fonction en amont dans l\'arborescence comme fonction résultante. Cela peut être fait pour ajouter une esquisse, une géométrie de référence ou une fonction qui, rétrospectivement, aurait dû être créée plus tôt dans l\'historique du corps. @@ -30,4 +32,7 @@ La fonction résultante se distingue visuellement dans l\'arborescence Modèle p {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveTip/fr diff --git a/wiki/translations/fr/PartDesign_MultiTransform.md b/wiki/translations/fr/PartDesign_MultiTransform.md index 9fd1af6739..85c3fe8f43 100644 --- a/wiki/translations/fr/PartDesign_MultiTransform.md +++ b/wiki/translations/fr/PartDesign_MultiTransform.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/fr.md) --- +# PartDesign MultiTransform/fr + ## Description \'Créer un motif à partir de combinaisons de transformations\' - L\'outil **![](images/)_[Transformation_multiple](PartDesign_MultiTransform/fr.md)** prend une partie (ou un ensemble de) \'fonctionnalités\' en entrée et permet à l\'utilisateur d\'appliquer progressivement plusieurs transformations à cette fonctionnalité (ou à cet ensemble de fonctionnalités), en séquence, créant ainsi une transformation combinée ou composée. @@ -147,4 +149,7 @@ Une fois lancé et complété de cette façon, **![](images/)_[Transformation_m {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MultiTransform/fr diff --git a/wiki/translations/fr/PartDesign_NewSketch.md b/wiki/translations/fr/PartDesign_NewSketch.md index bd660a5849..3a97a2b6a6 100644 --- a/wiki/translations/fr/PartDesign_NewSketch.md +++ b/wiki/translations/fr/PartDesign_NewSketch.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Nouvelle esquisse](Sketcher_NewSketch/fr.md) --- +# PartDesign NewSketch/fr + ## Description Cet outil crée une nouvelle esquisse. Il crée un nouveau [PartDesign Corps](PartDesign_Body/fr.md) destiné à contenir l\'esquisse s\'il n\'en existe aucun et ouvre automatiquement l\'[atelier Sketcher](Sketcher_Workbench/fr.md) après sa création. @@ -63,4 +65,7 @@ Pour référencer des éléments dans l\' [PartDesign](PartDesign_Workbench.md) > PartDesign NewSketch/fr diff --git a/wiki/translations/fr/PartDesign_Pad.md b/wiki/translations/fr/PartDesign_Pad.md index ffa2ad7e06..70e2868341 100644 --- a/wiki/translations/fr/PartDesign_Pad.md +++ b/wiki/translations/fr/PartDesign_Pad.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Cavité](PartDesign_Pocket/fr.md) --- +# PartDesign Pad/fr + ## Description L\'outil ** [PartDesign Protrusion](PartDesign_Pad/fr.md)** extrude une esquisse sélectionnée dans une direction normale au plan de l\'esquisse. À partir de la {{VersionPlus/fr|0.17}} les faces sur un solide peuvent également être utilisées. @@ -122,4 +124,7 @@ Inverse la direction de la protrusion. {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pad/fr diff --git a/wiki/translations/fr/PartDesign_Plane.md b/wiki/translations/fr/PartDesign_Plane.md index 4194310e49..5d55056706 100644 --- a/wiki/translations/fr/PartDesign_Plane.md +++ b/wiki/translations/fr/PartDesign_Plane.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Point de référence](PartDesign_Point/fr.md), [PartDesign Ligne de référence](PartDesign_Line/fr.md) --- +# PartDesign Plane/fr + ## Description Crée un **plan de référence** qui peut être utilisé comme référence pour les esquisses ou toute autre géométrie de référence. Les esquisses peuvent être attachées aux plans de référence. ![](images/Datum_plane.png ) *Plan de référence traversant les 3 coins du cube avec sur le dessus l\'esquisse d\'un cylindre en utilisant le plan de référence X-Y.* @@ -45,4 +47,7 @@ Double-cliquez sur l\'étiquette DatumPlane dans l\'arborescence du modèle ou c {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Plane/fr diff --git a/wiki/translations/fr/PartDesign_Pocket.md b/wiki/translations/fr/PartDesign_Pocket.md index a23648a716..56da04ebac 100644 --- a/wiki/translations/fr/PartDesign_Pocket.md +++ b/wiki/translations/fr/PartDesign_Pocket.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Protrusion](PartDesign_Pad/fr.md) --- +# PartDesign Pocket/fr + ## Description L\'outil **Cavité** découpe un solide en extrudant une esquisse (ou une face du solide) selon un tracé rectiligne et en le soustrayant du solide. @@ -63,4 +65,7 @@ Un [exemple pratique](http://forum.freecadweb.org/viewtopic.php?f=3&t=3733&start {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pocket/fr diff --git a/wiki/translations/fr/PartDesign_Point.md b/wiki/translations/fr/PartDesign_Point.md index 2ce54d3aa6..6a376e16aa 100644 --- a/wiki/translations/fr/PartDesign_Point.md +++ b/wiki/translations/fr/PartDesign_Point.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Droite de référence](PartDesign_Line/fr.md), [PartDesign Plan de référence](PartDesign_Plane/fr.md) --- +# PartDesign Point/fr + ## Description Crée un **point de référence** qui peut être utilisé comme référence pour les esquisses ou toute autre géométrie de référence. @@ -46,4 +48,7 @@ Double-cliquez sur l\'étiquette Point de référence dans l\'arborescence du mo {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Point/fr diff --git a/wiki/translations/fr/PartDesign_PolarPattern.md b/wiki/translations/fr/PartDesign_PolarPattern.md index e843cb8168..80d9c3f30d 100644 --- a/wiki/translations/fr/PartDesign_PolarPattern.md +++ b/wiki/translations/fr/PartDesign_PolarPattern.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/fr.md) --- +# PartDesign PolarPattern/fr + ## Description L\'outil *répétition circulaire* prend une fonction sélectionnée et produit à partir de celle-ci un ensemble de copies pivotées autour d\'un axe donné. À partir de la version 0.17, il peut copier plusieurs fonctions. @@ -129,4 +131,7 @@ Spécifie l\'angle qui sera couvert par la répétition circulaire, ainsi que le {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign PolarPattern/fr diff --git a/wiki/translations/fr/PartDesign_Preferences.md b/wiki/translations/fr/PartDesign_Preferences.md index e5589e8cd2..607a754987 100644 --- a/wiki/translations/fr/PartDesign_Preferences.md +++ b/wiki/translations/fr/PartDesign_Preferences.md @@ -1,10 +1,4 @@ # PartDesign Preferences/fr - - - - - - {{TOCright}} ## Introduction @@ -116,3 +110,6 @@ Cliquez avec le bouton droit de la souris sur **Mesh deviation** dans le menu co }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Preferences/fr diff --git a/wiki/translations/fr/PartDesign_Revolution.md b/wiki/translations/fr/PartDesign_Revolution.md index 9ca069875f..0c156ae587 100644 --- a/wiki/translations/fr/PartDesign_Revolution.md +++ b/wiki/translations/fr/PartDesign_Revolution.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/fr.md) --- +# PartDesign Revolution/fr + ## Description L\'outil **Révolution** produit un solide par révolution d\'une esquisse ou d\'un objet 2D sélectionné autour d\'un axe donné. @@ -76,4 +78,7 @@ Un [exemple](http://forum.freecadweb.org/viewtopic.php?f=3&t=3674) d\'utilisatio {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Revolution/fr diff --git a/wiki/translations/fr/PartDesign_Scaled.md b/wiki/translations/fr/PartDesign_Scaled.md index 98b8fb1adb..08026ee5a5 100644 --- a/wiki/translations/fr/PartDesign_Scaled.md +++ b/wiki/translations/fr/PartDesign_Scaled.md @@ -1,5 +1,5 @@ # PartDesign Scaled/fr - {{GuiCommand/fr +{{GuiCommand/fr |Name=PartDesign_Scaled |Name/fr=PartDesign Mise à l'échelle |Workbenches=[PartDesign](PartDesign_Workbench/fr.md), Complet @@ -50,4 +50,7 @@ Depuis FreeCAD 0.15, cette fonctionnalité n'est pas disponible directement, mai ![c\|center\|800px](images/mt_example2.png ) Le plus petit pad a d\'abord été configuré trois fois dans la direction X, puis redimensionné en deux (les trois occurrences ont donc les facteurs d\'échelle 1.0, 1.5 et 2.0). Ensuite, un motif polaire a été appliqué avec 8 occurrences. -Étant donné que la mise à l\'échelle est effectuée par rapport au centre de gravité, dans le cas d\'un pad, il est nécessaire que le pad pénètre également dans le corps principal, sinon les objets à mettre à l\'échelle flotteront, se détachent du corps. Pour avoir un pad qui coupe le corps principal, vous pouvez utiliser le type \"deux dimensions\" ou l\'option \"simmetric to plane\". +Étant donné que la mise à l\'échelle est effectuée par rapport au centre de gravité, dans le cas d\'un pad, il est nécessaire que le pad pénètre également dans le corps principal, sinon les objets à mettre à l\'échelle flotteront, se détachent du corps. Pour avoir un pad qui coupe le corps principal, vous pouvez utiliser le type \"deux dimensions\" ou l\'option \"simmetric to plane\". + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Scaled/fr diff --git a/wiki/translations/fr/PartDesign_ShapeBinder.md b/wiki/translations/fr/PartDesign_ShapeBinder.md index a9b9c375f7..73e8d96788 100644 --- a/wiki/translations/fr/PartDesign_ShapeBinder.md +++ b/wiki/translations/fr/PartDesign_ShapeBinder.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Sous forme liée](PartDesign_SubShapeBinder/fr.md), [PartDesign Clone](PartDesign_Clone/fr.md) --- +# PartDesign ShapeBinder/fr + ## Description Crée un datum **Forme Liée** à l\'intérieur du corps actif. Une Forme liée est un objet de référence lié à des arêtes ou des faces provenant d\'un autre corps. Elle peut également être utilisée pour relier une esquisse d\'un corps à un autre corps. L\'objet shape binder s\'affiche en jaune translucide dans la [vue 3D](3D_view/fr.md). @@ -106,4 +108,7 @@ Double-cliquez sur l\'étiquette de la Référence liée à une forme dans la [v {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign ShapeBinder/fr diff --git a/wiki/translations/fr/PartDesign_Sprocket.md b/wiki/translations/fr/PartDesign_Sprocket.md index af579a9b78..6b2ee6725f 100644 --- a/wiki/translations/fr/PartDesign_Sprocket.md +++ b/wiki/translations/fr/PartDesign_Sprocket.md @@ -7,6 +7,8 @@ Version:0.19 --- +# PartDesign Sprocket/fr + ## Description Cet outil vous permet de créer un profil 2D d\'un pignon (ou roue à chaîne). Il peut être extrudé avec la fonction [PartDesign Protrusion](PartDesign_Pad/fr.md). @@ -36,4 +38,7 @@ Cet outil vous permet de créer un profil 2D d\'un pignon (ou roue à chaîne). {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Sprocket/fr diff --git a/wiki/translations/fr/PartDesign_SubShapeBinder.md b/wiki/translations/fr/PartDesign_SubShapeBinder.md index 25d69ee426..c9b24c0c7f 100644 --- a/wiki/translations/fr/PartDesign_SubShapeBinder.md +++ b/wiki/translations/fr/PartDesign_SubShapeBinder.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Forme liée](PartDesign_ShapeBinder/fr.md), [PartDesign Clone](PartDesign_Clone.md) --- +# PartDesign SubShapeBinder/fr + ## Description [PartDesign Sous forme liée](PartDesign_SubShapeBinder/fr.md) importe un élément d\'un autre corps dans le [Corps](PartDesign_Body/fr.md) actif. Il peut prendre la [Shape](Shape/fr.md) de, ou être \"lié\" à un ou plusieurs objets ou sous-éléments (bords ou faces) d\'un autre objet. @@ -80,4 +82,7 @@ Voir [Part Fonctionnalité](Part_Feature/fr.md). {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubShapeBinder/fr diff --git a/wiki/translations/fr/PartDesign_SubtractiveBox.md b/wiki/translations/fr/PartDesign_SubtractiveBox.md index ca6881a531..369166e964 100644 --- a/wiki/translations/fr/PartDesign_SubtractiveBox.md +++ b/wiki/translations/fr/PartDesign_SubtractiveBox.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives soustractives](PartDesign_CompPrimitiveSubtractive/fr.md) --- +# PartDesign SubtractiveBox/fr + ## Description Insérer un Cube soustractif dans le Corps actif. Sa forme est soustraite du solide existant. @@ -46,4 +48,7 @@ Le Cube peut être édité après sa création de deux façons : {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveBox/fr diff --git a/wiki/translations/fr/PartDesign_SubtractiveCone.md b/wiki/translations/fr/PartDesign_SubtractiveCone.md index 79463c6670..5f5e3017ee 100644 --- a/wiki/translations/fr/PartDesign_SubtractiveCone.md +++ b/wiki/translations/fr/PartDesign_SubtractiveCone.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives soustractives](PartDesign_CompPrimitiveSubtractive/fr.md), [PartDesign Cône additif](PartDesign_AdditiveCone.md) --- +# PartDesign SubtractiveCone/fr + ## Description Insère un Cône primitif soustractif dans le Corps actif. Sa forme est soustraite du solide existant. @@ -50,4 +52,7 @@ Le Cône peut être édité après sa création de deux façons : {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCone/fr diff --git a/wiki/translations/fr/PartDesign_SubtractiveCylinder.md b/wiki/translations/fr/PartDesign_SubtractiveCylinder.md index 9e10f38ec9..a0546bb7d3 100644 --- a/wiki/translations/fr/PartDesign_SubtractiveCylinder.md +++ b/wiki/translations/fr/PartDesign_SubtractiveCylinder.md @@ -8,6 +8,8 @@ SeeAlso:[Créer une primitive soustractive](PartDesign_CompPrimitiveSubtractive/fr.md), [Cylindre additif](PartDesign_AdditiveCylinder/fr.md) --- +# PartDesign SubtractiveCylinder/fr + ## Description Insère un cylindre primitif soustractif dans le Corps actif. Sa forme est soustraite du solide existant. @@ -54,4 +56,7 @@ Le Cylindre peut être édité après sa création de deux façons : {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCylinder/fr diff --git a/wiki/translations/fr/PartDesign_SubtractiveEllipsoid.md b/wiki/translations/fr/PartDesign_SubtractiveEllipsoid.md index d64ad4bb38..21fc8738c8 100644 --- a/wiki/translations/fr/PartDesign_SubtractiveEllipsoid.md +++ b/wiki/translations/fr/PartDesign_SubtractiveEllipsoid.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives soustractives](PartDesign_CompPrimitiveSubtractive/fr.md) --- +# PartDesign SubtractiveEllipsoid/fr + ## Description Insérer un Ellipsoïde primitif soustractif dans le Corps actif. Sa forme est soustraite du solide existant. @@ -54,4 +56,7 @@ L\'Ellipsoïde peut être édité après sa création de deux façons : {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveEllipsoid/fr diff --git a/wiki/translations/fr/PartDesign_SubtractiveHelix.md b/wiki/translations/fr/PartDesign_SubtractiveHelix.md index cf36d596f2..9abd586cf2 100644 --- a/wiki/translations/fr/PartDesign_SubtractiveHelix.md +++ b/wiki/translations/fr/PartDesign_SubtractiveHelix.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Hélice additive](PartDesign_AdditiveHelix/fr.md) --- +# PartDesign SubtractiveHelix/fr + ## Description L\'outil **Hélice soustractive** modifie un solide en balayant une esquisse ou un objet 2D sélectionné le long d\'une trajectoire d\'hélice et le soustrayant au matériau. @@ -123,4 +125,7 @@ Si coché, l\'hélice sera affichée dans la vue et la mise à jour sera automat {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveHelix/fr diff --git a/wiki/translations/fr/PartDesign_SubtractiveLoft.md b/wiki/translations/fr/PartDesign_SubtractiveLoft.md index 25f69716d7..b4335e9b1f 100644 --- a/wiki/translations/fr/PartDesign_SubtractiveLoft.md +++ b/wiki/translations/fr/PartDesign_SubtractiveLoft.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Lissage additif](PartDesign_AdditiveLoft/fr.md), [PartDesign Balayage soustractif](PartDesign_SubtractivePipe/fr.md) --- +# PartDesign SubtractiveLoft/fr + ## Description Le **Lissage soustractif** crée un solide soustractif dans le corps actif en effectuant une transition entre deux esquisses ou plus (également appelés coupes transversales). Sa forme est ensuite soustraite du solide existant. @@ -72,4 +74,7 @@ Le **Lissage soustractif** crée un solide soustractif dans le corps actif en ef {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveLoft/fr diff --git a/wiki/translations/fr/PartDesign_SubtractivePipe.md b/wiki/translations/fr/PartDesign_SubtractivePipe.md index 10390ddde6..0ac38d46d0 100644 --- a/wiki/translations/fr/PartDesign_SubtractivePipe.md +++ b/wiki/translations/fr/PartDesign_SubtractivePipe.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Balayage additif](PartDesign_AdditivePipe/fr.md), [PartDesign Lissage soustractif](PartDesign_SubtractiveLoft/fr.md) --- +# PartDesign SubtractivePipe/fr + ## Description Le **Balayage soustractif** crée un solide soustractif dans le corps actif en balayant une ou plusieurs esquisses (également appelées coupes transversales) le long d\'un chemin ouvert ou fermé. Sa forme est ensuite soustraite du solide existant. Le balayage soustractif est souvent utilisé avec l\'[Part Hélice](Part_Helix/fr.md) et la [Part Forme liée](PartDesign_ShapeBinder/fr.md) pour créer un filetage. Voir le [Tutoriel Création de vis](Thread_for_Screw_Tutorial/fr.md) pour plus de détails. @@ -87,4 +89,7 @@ Le **Balayage soustractif** crée un solide soustractif dans le corps actif en b {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePipe/fr diff --git a/wiki/translations/fr/PartDesign_SubtractivePrism.md b/wiki/translations/fr/PartDesign_SubtractivePrism.md index 8a8c0f04ba..db68507fb9 100644 --- a/wiki/translations/fr/PartDesign_SubtractivePrism.md +++ b/wiki/translations/fr/PartDesign_SubtractivePrism.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives soustractives](PartDesign_CompPrimitiveSubtractive/fr.md), [PartDesign Prisme additif](PartDesign_AdditivePrism/fr.md) --- +# PartDesign SubtractivePrism/fr + ## Description Insérer un Prisme Primitif Soustractif dans le Corps actif. Sa forme est soustraite du solide existant. @@ -54,4 +56,7 @@ Le Prisme peut être éditée après sa création de deux façons : {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePrism/fr diff --git a/wiki/translations/fr/PartDesign_SubtractiveSphere.md b/wiki/translations/fr/PartDesign_SubtractiveSphere.md index a9f6d09860..bf0916a49d 100644 --- a/wiki/translations/fr/PartDesign_SubtractiveSphere.md +++ b/wiki/translations/fr/PartDesign_SubtractiveSphere.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives soustractives](PartDesign_CompPrimitiveSubtractive/fr.md) --- +# PartDesign SubtractiveSphere/fr + ## Description Insérer une sphère primitive soustractive dans le Corps actif. Sa forme est soustraite du solide existant. @@ -48,4 +50,7 @@ La Sphère peut être éditée après sa création de deux façons : {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveSphere/fr diff --git a/wiki/translations/fr/PartDesign_SubtractiveTorus.md b/wiki/translations/fr/PartDesign_SubtractiveTorus.md index 3664b51f87..5b09b0a12e 100644 --- a/wiki/translations/fr/PartDesign_SubtractiveTorus.md +++ b/wiki/translations/fr/PartDesign_SubtractiveTorus.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives soustractives](PartDesign_CompPrimitiveSubtractive/fr.md) --- +# PartDesign SubtractiveTorus/fr + ## Description Insère un Tore primitif soustractif dans le Corps actif. Sa forme est soustraite du solide existant. @@ -50,4 +52,7 @@ Le Tore peut être éditée après sa création de deux façons : {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveTorus/fr diff --git a/wiki/translations/fr/PartDesign_SubtractiveWedge.md b/wiki/translations/fr/PartDesign_SubtractiveWedge.md index b04c4b75cc..0b57543708 100644 --- a/wiki/translations/fr/PartDesign_SubtractiveWedge.md +++ b/wiki/translations/fr/PartDesign_SubtractiveWedge.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitives soustractives](PartDesign_CompPrimitiveSubtractive/fr.md), [PartDesign Pyramide tronquée additive](PartDesign_AdditiveWedge/fr.md) --- +# PartDesign SubtractiveWedge/fr + ## Description Insère une Pyramide tronquée soustractive dans le Corps actif. Sa forme est soustraite du solide existant. @@ -52,4 +54,7 @@ Les Pyramides tronquées peuvent être utilisées pour créer des pyramides en f {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveWedge/fr diff --git a/wiki/translations/fr/PartDesign_Thickness.md b/wiki/translations/fr/PartDesign_Thickness.md index b4963645ee..976a47815c 100644 --- a/wiki/translations/fr/PartDesign_Thickness.md +++ b/wiki/translations/fr/PartDesign_Thickness.md @@ -8,6 +8,8 @@ SeeAlso:[Part Épaisseur](Part_Thickness/fr.md) --- +# PartDesign Thickness/fr + ## Description L\'outil **Épaisseur** s\'applique sur un corps solide et le transforme en un objet creux à paroi épaisse avec au moins une face ouverte, donnant à chacune de ses faces restantes une épaisseur uniforme. Sur certains solides, cela permet d\'accélérer considérablement le travail et d\'éviter les extrusions et les poches. @@ -78,4 +80,7 @@ Résultat : ![](images/Brga-spessore.png ) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Thickness/fr diff --git a/wiki/translations/fr/PartDesign_WizardShaft.md b/wiki/translations/fr/PartDesign_WizardShaft.md index 518e47621d..0f6a8a7f26 100644 --- a/wiki/translations/fr/PartDesign_WizardShaft.md +++ b/wiki/translations/fr/PartDesign_WizardShaft.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/fr.md) --- +# PartDesign WizardShaft/fr + ## Description Cet outil vous permet de créer un arbre à partir d\'un tableau de valeurs et d\'analyser les forces et les moments. Vous pouvez démarrer l\'assistant par la commande **Conception de pièces → Shaft design wizard...**. @@ -61,4 +63,7 @@ Pour ajouter un nouveau segment d\'arbre, cliquez avec le bouton droit de la sou {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign WizardShaft/fr diff --git a/wiki/translations/fr/PartDesign_Workbench.md b/wiki/translations/fr/PartDesign_Workbench.md index c24055f3bd..f892a73d41 100644 --- a/wiki/translations/fr/PartDesign_Workbench.md +++ b/wiki/translations/fr/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/fr - - -Icône de l\'Atelier PartDesign +# Icône de l\'Atelier PartDesign PartDesign Workbench/fr {{TOCright}} @@ -200,3 +197,6 @@ Des fonctionnalités supplémentaires se trouvent dans le menu Part Design : {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/fr diff --git a/wiki/translations/fr/PartDesign_project.md b/wiki/translations/fr/PartDesign_project.md index 3e8903c5fb..68223c3b68 100644 --- a/wiki/translations/fr/PartDesign_project.md +++ b/wiki/translations/fr/PartDesign_project.md @@ -1,7 +1,4 @@ # PartDesign project/fr - - - ** Ce plan de développement est probablement obsolète. Pour plus d'informations, voir [Plan de développement](Development_roadmap/fr.md).
Si vous n'êtes pas impliqué dans le développement discuté ici :
@@ -165,3 +162,6 @@ Faire pivoter une esquisse sur un axe et un angle défini. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign project/fr diff --git a/wiki/translations/fr/PartDesign_tutorial.md b/wiki/translations/fr/PartDesign_tutorial.md index 7dfbcd3ad5..25a586d1b5 100644 --- a/wiki/translations/fr/PartDesign_tutorial.md +++ b/wiki/translations/fr/PartDesign_tutorial.md @@ -1,5 +1,5 @@ # PartDesign tutorial/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic= Sketcher |Level= Débutant |Time= 15 minutes @@ -109,3 +109,6 @@ Sinon, rééditer l\'opération MultiTransform en double-cliquant dessus dans l\ Vérifier les deux fonctions de motif pour détecter les modifications nécessaires, telles que l\'axe \'\' \'\' et si la \'\' \'Direction\' \'\' doit être inversée. C\'est maintenant terminé la routine de base pour le [PartDesign Workbench](PartDesign_Workbench.md). + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign tutorial/fr diff --git a/wiki/translations/fr/Part_API.md b/wiki/translations/fr/Part_API.md index ea0c7a7274..70f86c40a8 100644 --- a/wiki/translations/fr/Part_API.md +++ b/wiki/translations/fr/Part_API.md @@ -1,5 +1,5 @@ # Part API/fr - **(Novembre 2018) Ces informations peuvent être incomplètes et obsolètes. Pour la dernière API, voir l'[https://www.freecadweb.org/api auto-génération de la documentation de l'API].** +**(Novembre 2018) Ces informations peuvent être incomplètes et obsolètes. Pour la dernière API, voir l'[https://www.freecadweb.org/api auto-génération de la documentation de l'API].** Le module **Part** est une connexion directe entre **FreeCAD** et le noyau **OpenCasCade**. Il fournit principalement des [TopoShapes](TopoShape_API/fr.md) qui sont les types d\'objets principaux utilisés par OpenCascade. Le module **Part** contient également une variété de fonctions utiles pour créer et manipuler des **topoShapes**. Exemple : ```python @@ -93,3 +93,6 @@ Part.show(mycube) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part API/fr diff --git a/wiki/translations/fr/Part_Attachment.md b/wiki/translations/fr/Part_Attachment.md index 2fa412388a..3a48e5d111 100644 --- a/wiki/translations/fr/Part_Attachment.md +++ b/wiki/translations/fr/Part_Attachment.md @@ -1,2 +1,5 @@ # Part Attachment/fr 1. REDIRECT [Part\_EditAttachment/fr](Part_EditAttachment/fr.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Attachment/fr diff --git a/wiki/translations/fr/Part_Boolean.md b/wiki/translations/fr/Part_Boolean.md index f25b757b84..9b96050067 100644 --- a/wiki/translations/fr/Part_Boolean.md +++ b/wiki/translations/fr/Part_Boolean.md @@ -7,6 +7,8 @@ SeeAlso:[Part Soustraction](Part_Cut.md), [Part Union](Part_Fuse/fr.md), [Part Intersection](Part_Common/fr.md), [Part Section](Part_Section/fr.md) --- +# Part Boolean/fr + ## Description @@ -63,8 +65,5 @@ En cas de coplanarité, même si la première opération booléenne réussit, le *À gauche : formes qui partagent un visage, une union booléenne peut produire des résultats incorrects. À droite : des formes qui se croisent clairement, l'union booléenne réussira dans la plupart des cas.* - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Boolean/fr diff --git a/wiki/translations/fr/Part_BooleanFragments.md b/wiki/translations/fr/Part_BooleanFragments.md index 212f2373c4..1ac0738985 100644 --- a/wiki/translations/fr/Part_BooleanFragments.md +++ b/wiki/translations/fr/Part_BooleanFragments.md @@ -8,6 +8,8 @@ SeeAlso:[Part Trancher](Part_Slice/fr.md), [Part OU exclusif](Part_XOR/fr.md), [Part Joindre](Part_CompJoinFeatures/fr.md), [Part Opérations booléennes](Part_Boolean/fr.md) --- +# Part BooleanFragments/fr + ## Description Outil permettant de calculer tous les fragments pouvant résulter de l\'application d\'opérations booléennes entre des formes d\'entrée. Par exemple, pour deux sphères entrecroisées, trois solides non chevauchants mais touchants sont générés. @@ -86,8 +88,5 @@ L\'outil lui-même est implémenté en Python, voir /Mod/Part/BOPTools/SplitFeat L\'outil a été introduit dans FreeCAD v0.17.8053. FreeCAD doit être compilé avec OCC 6.9.0 ou version ultérieure, sinon l\'outil n\'est pas disponible. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part BooleanFragments/fr diff --git a/wiki/translations/fr/Part_Box.md b/wiki/translations/fr/Part_Box.md index cd7464e4b7..44b7796ca9 100644 --- a/wiki/translations/fr/Part_Box.md +++ b/wiki/translations/fr/Part_Box.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part Box/fr + ## Description La commande Cube de l\'[atelier Part](Part_Workbench/fr.md) insère un [parallélépipède droit](https://fr.wikipedia.org/wiki/Pav%C3%A9_droit) paramétrique dans le document actif. Par défaut, la commande insère un cube de 10x10x10 mm positionné à l\'origine avec l\'étiquette \"cube\". Ces paramètres peuvent être édités une fois que l\'objet a été ajouté. @@ -66,8 +68,5 @@ Vous pouvez changer son emplacement avec: FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6, 3), FreeCAD.Rotation(30, 45, 10)) ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Box/fr diff --git a/wiki/translations/fr/Part_BoxSelection.md b/wiki/translations/fr/Part_BoxSelection.md index 653f470c5b..60bc54eb59 100644 --- a/wiki/translations/fr/Part_BoxSelection.md +++ b/wiki/translations/fr/Part_BoxSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Std Sélection par boîte](Std_BoxSelection/fr.md), [Std Sélection d'éléments](Std_BoxElementSelection/fr.md), [Std Tout sélectionner](Std_SelectAll/fr.md) --- +# Part BoxSelection/fr + ## Description L\'outil ** [Part Sélection par boîte](Part_BoxSelection/fr.md)** vous permet de sélectionner les faces des objets à l\'écran qui sont touchées par la sélection rectangulaire. @@ -27,8 +29,5 @@ L\'outil ** [Part Sélection ## Script - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part BoxSelection/fr diff --git a/wiki/translations/fr/Part_Builder.md b/wiki/translations/fr/Part_Builder.md index c7a8af848e..41dc71344f 100644 --- a/wiki/translations/fr/Part_Builder.md +++ b/wiki/translations/fr/Part_Builder.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part Builder/fr + ## Description Outil pour créer des formes plus complexes à partir de diverses primitives géométriques paramétriques. @@ -70,8 +72,5 @@ Un flux de travail possible pourrait être: - Créer une \"coque à partir de faces\" - Créer un \"solide à partir d\'une coque\" - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Builder/fr diff --git a/wiki/translations/fr/Part_Chamfer.md b/wiki/translations/fr/Part_Chamfer.md index 3b7d32143d..f02ab7a513 100644 --- a/wiki/translations/fr/Part_Chamfer.md +++ b/wiki/translations/fr/Part_Chamfer.md @@ -7,6 +7,8 @@ SeeAlso:[Part Congé](Part_Fillet/fr.md) --- +# Part Chamfer/fr + ## Description Chanfreine le ou les bords sélectionnés d\'un objet. Une boîte de dialogue vous permet de choisir le ou les bords sur lesquels vous souhaitez travailler ainsi que de modifier divers paramètres de chanfrein. @@ -151,8 +153,5 @@ FreeCAD.ActiveDocument.recompute() - Recalcule tous les composants modifiés à l\'écran et actualise l\'affichage. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Chamfer/fr diff --git a/wiki/translations/fr/Part_CheckGeometry.md b/wiki/translations/fr/Part_CheckGeometry.md index 48ea509f86..f66b5c8a0a 100644 --- a/wiki/translations/fr/Part_CheckGeometry.md +++ b/wiki/translations/fr/Part_CheckGeometry.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/fr.md) --- +# Part CheckGeometry/fr + ## Description L\'outil ** [Part Vérifier la géométrie](Part_CheckGeometry/fr.md)** exécute une vérification et indique si la géométrie est un solide valide. L\'outil vérifie si la [Représentation par les Bords](https://fr.wikipedia.org/wiki/B-Rep) (BRep ou [B-rep](Glossary/fr#B.md)) du modèle est valide. @@ -36,8 +38,5 @@ Si cette case est cochée, une vérification supplémentaire des opérations boo Si cette case est cochée, toutes les erreurs trouvées sont également enregistrées dans la [Vue rapport](Report_view/fr.md). {{Version/fr|0.19}} - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CheckGeometry/fr diff --git a/wiki/translations/fr/Part_Circle.md b/wiki/translations/fr/Part_Circle.md index 04c6e05e9c..357eb4a5f3 100644 --- a/wiki/translations/fr/Part_Circle.md +++ b/wiki/translations/fr/Part_Circle.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/fr.md) --- +# Part Circle/fr + ## Description Cette commande va créer une ligne courbe circulaire. Avec les valeurs par défaut, la ligne circulaire sera fermée et sera donc un cercle. Si les propriétés Angle 0 ou Angle 1 sont modifiés par rapport aux valeurs par défaut (0 et 360), le bord sera une courbe ouverte ou arc. @@ -29,8 +31,5 @@ Une primitive géométrique Cercle est disponible dans la boîte de dialogue Cr - {{Parameter|Angle 1}}: Fin de la courbe, (en degrés anti-horaire), la valeur par défaut est de 360°. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Circle/fr diff --git a/wiki/translations/fr/Part_Common.md b/wiki/translations/fr/Part_Common.md index 28de8f6c93..2ee73e626f 100644 --- a/wiki/translations/fr/Part_Common.md +++ b/wiki/translations/fr/Part_Common.md @@ -7,6 +7,8 @@ SeeAlso:[Part Opération booléenne](Part_Boolean/fr.md), [Part Soustraction](Part_Cut/fr.md), [Part Union](Part_Fuse/fr.md) --- +# Part Common/fr + ## Description Extrait la partie commune (intersection) entre les objets Part sélectionnés. Cette opération est entièrement paramétrique et les composants peuvent être modifiés et le résultat recalculé. @@ -20,8 +22,5 @@ Extrait la partie commune (intersection) entre les objets Part sélectionnés. C L\'objet doit être un objet (forme) [OpenCascade](OpenCascade/fr.md). Exemples : les trucs faits avec un des ateliers Part, PartDesign, Sketcher. Pas de maillages (sauf s\'ils ont été convertis en formes) - pour les maillages, il existe des outils booléens spécifiques dans l\'atelier MeshDesign. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Common/fr diff --git a/wiki/translations/fr/Part_CompCompoundTools.md b/wiki/translations/fr/Part_CompCompoundTools.md index 0ac5c367a6..13afd91e92 100644 --- a/wiki/translations/fr/Part_CompCompoundTools.md +++ b/wiki/translations/fr/Part_CompCompoundTools.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/fr.md) --- +# Part CompCompoundTools/fr + ## Description Un ensemble de divers outils composés. @@ -16,8 +18,5 @@ Un ensemble de divers outils composés. - [Eclater le composé](Part_ExplodeCompound/fr.md) : Outil pour décomposer un objet composé. - [Filtre composé](Part_Compound‏‎Filter/fr.md) : L\'outil est utilisé pour extraire des pièces individuellement. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompCompoundTools/fr diff --git a/wiki/translations/fr/Part_CompJoinFeatures.md b/wiki/translations/fr/Part_CompJoinFeatures.md index 2af0e2464c..d2efe073d9 100644 --- a/wiki/translations/fr/Part_CompJoinFeatures.md +++ b/wiki/translations/fr/Part_CompJoinFeatures.md @@ -8,6 +8,8 @@ SeeAlso:[Part Connecter un objet](Part_JoinConnect/fr.md), [Part Intégrer l'objet](Part_JoinEmbed/fr.md), [Part Découpe de l'objet](Part_JoinCutout/fr.md), [Part Opérations Booléennes](Part_Boolean/fr.md), [Part Évidement ou coque](Part_Thickness/fr.md) --- +# Part CompJoinFeatures/fr + ## Description Cette commande est un bouton de la barre d\'outils déroulante contenant tous les outils de jointure. Voir les pages d\'outils individuelles pour plus d\'informations. @@ -23,8 +25,5 @@ Cette commande est un bouton de la barre d\'outils déroulante contenant tous le *Ci-dessus : montrant le résultat de chaque outil disponible* - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompJoinFeatures/fr diff --git a/wiki/translations/fr/Part_CompOffsetTools.md b/wiki/translations/fr/Part_CompOffsetTools.md index c8ca5ed534..11b1b7230a 100644 --- a/wiki/translations/fr/Part_CompOffsetTools.md +++ b/wiki/translations/fr/Part_CompOffsetTools.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/fr.md) --- +# Part CompOffsetTools/fr + ## Description Un ensemble d\'outils de décalage @@ -15,8 +17,5 @@ Un ensemble d\'outils de décalage - [Décalage 3D](Part_Offset/fr.md): Construit une forme parallèle à une certaine distance de l\'original. - [Décalage 2D](Part_Offset2D/fr.md): Construit un fil parallèle à une certaine distance de l\'original ou agrandit/rétrécit une face plane. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompOffsetTools/fr diff --git a/wiki/translations/fr/Part_CompSplittingTools.md b/wiki/translations/fr/Part_CompSplittingTools.md index fc19b69d61..9c37d9930f 100644 --- a/wiki/translations/fr/Part_CompSplittingTools.md +++ b/wiki/translations/fr/Part_CompSplittingTools.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/fr.md) --- +# Part CompSplittingTools/fr + ## Description Une collection d\'outils pour séparer. @@ -17,8 +19,5 @@ Une collection d\'outils pour séparer. - [Scinder](Part_Slice/fr.md) : divise un objet en morceaux par intersections avec un autre objet. - [OU exclusif](Part_XOR/fr.md) : supprime l'espace partagé (commun) par un nombre pair d'objets (version symétrique de [Soustraction (booléenne)](Part_Cut/fr.md)). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompSplittingTools/fr diff --git a/wiki/translations/fr/Part_Compound.md b/wiki/translations/fr/Part_Compound.md index cd6e5324c6..9f309d3dc7 100644 --- a/wiki/translations/fr/Part_Compound.md +++ b/wiki/translations/fr/Part_Compound.md @@ -8,6 +8,8 @@ SeeAlso:[Part Union](Part_Fuse/fr.md), [Part Filtre composé](Part_CompoundFilter/fr.md), [Part Éclater le composé](Part_ExplodeCompound/fr.md) --- +# Part Compound/fr + ## Description Cette commande crée un composé de toutes formes topologiques. Celles-ci peuvent être des solides des mailles ou tout autre type de forme topologique. @@ -25,8 +27,5 @@ Un composé contenant des pièces qui se croisent ou qui se touchent est **inval Pour activer cette vérification, allez sur **Outils → Éditer Paramètres... → Préférences → Mod → Part → CheckGeometry → RunBOPCheck** et réglez le paramètre sur `true`. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Compound/fr diff --git a/wiki/translations/fr/Part_CompoundFilter.md b/wiki/translations/fr/Part_CompoundFilter.md index 5d04d5c0c7..0bb1934058 100644 --- a/wiki/translations/fr/Part_CompoundFilter.md +++ b/wiki/translations/fr/Part_CompoundFilter.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Part CompoundFilter/fr + ![](images/CompoundFilter.png ) ## Description @@ -67,8 +69,5 @@ S\'il n\'y a qu\'une seule forme enfant dans le résultat, la sortie est l\'enfa - {{PropertyData/fr|items}}: Liste ou plage d\'éléments à sélectionner si le type de filtre est \"éléments spécifiques\". - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompoundFilter/fr diff --git a/wiki/translations/fr/Part_Cone.md b/wiki/translations/fr/Part_Cone.md index 9c9b04e70a..cd54df1401 100644 --- a/wiki/translations/fr/Part_Cone.md +++ b/wiki/translations/fr/Part_Cone.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part Cone/fr + ## Description Un cône paramétrique tronqué est une primitive disponible sur la barre d\'outils Part, ou dans le menu (primitives sub-menu) une boite de dialogue primitives géométriques est ouverte. @@ -35,8 +37,5 @@ Les propriétés du cône peuvent être éditées ultérieurement, soit dans l\' - {{PropertyData/fr|Angle}}: Nombre de degrés de l\'arc ou des cercles définissant les faces supérieure et inférieure du cône tronqué. La valeur par défaut de 360° crée des faces circulaires, une valeur inférieure créera une partie de cône définie par des faces supérieure et inférieure dont les bords sont définis par un arc du nombre de degrés et deux rayons. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cone/fr diff --git a/wiki/translations/fr/Part_CreatePrimitives.md b/wiki/translations/fr/Part_CreatePrimitives.md index 111635f9e9..72a84bb9c1 100644 --- a/wiki/translations/fr/Part_CreatePrimitives.md +++ b/wiki/translations/fr/Part_CreatePrimitives.md @@ -1,2 +1,5 @@ # Part CreatePrimitives/fr 1. REDIRECT [Part\_Primitives/fr](Part_Primitives/fr.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CreatePrimitives/fr diff --git a/wiki/translations/fr/Part_CrossSections.md b/wiki/translations/fr/Part_CrossSections.md index 3cc2387469..0eea4cab97 100644 --- a/wiki/translations/fr/Part_CrossSections.md +++ b/wiki/translations/fr/Part_CrossSections.md @@ -8,6 +8,8 @@ SeeAlso:[Part Section](Part_Section/fr.md) --- +# Part CrossSections/fr + ## Description L\'outil **Coupes** créé une ou plusieurs coupes à travers la forme sélectionnée. @@ -36,8 +38,5 @@ L\'outil **Coupes** créé une ou plusieurs coupes à travers la forme sélectio ![Résultat](images/SectionCross3.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CrossSections/fr diff --git a/wiki/translations/fr/Part_Cut.md b/wiki/translations/fr/Part_Cut.md index 4d63d8c27a..b8e138f911 100644 --- a/wiki/translations/fr/Part_Cut.md +++ b/wiki/translations/fr/Part_Cut.md @@ -7,6 +7,8 @@ SeeAlso:[Part Opération booléenne](Part_Boolean/fr.md), [Part Union](Part_Fuse/fr.md), [Part Intersection](Part_Common/fr.md), --- +# Part Cut/fr + ## Description Coupe (soustrait) un objet à un autre, le dernier sélectionné étant soustrait au premier. Cette opération est totalement paramétrique : les composants peuvent être modifiés et le résultat recalculé. @@ -26,8 +28,5 @@ Coupe (soustrait) un objet à un autre, le dernier sélectionné étant soustrai L\'objet doit être un objet (forme) [OpenCascade](OpenCascade/fr.md). Exemples: doit être créé avec un des ateliers Part, PartDesign, Sketcher. Ne peut pas être un objet Mesh (sauf s\'il est converti en forme (shape)) - pour les objets Mesh, utilisez l\'outil booléen spécifique dans l\'atelier MeshDesign. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cut/fr diff --git a/wiki/translations/fr/Part_Cylinder.md b/wiki/translations/fr/Part_Cylinder.md index 5904d6cfef..caf27afd75 100644 --- a/wiki/translations/fr/Part_Cylinder.md +++ b/wiki/translations/fr/Part_Cylinder.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part Cylinder/fr + ## Description Crée un simple cylindre paramétrique, avec sa position, son angle de remplissage, son rayon et sa hauteur. @@ -36,8 +38,5 @@ Les propriétés du cylindre peuvent être éditées ultérieurement, soit dans - {{PropertyData/fr|Second Angle}}: angle dans la seconde direction. {{Version/fr|0.20}} - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cylinder/fr diff --git a/wiki/translations/fr/Part_Defeaturing.md b/wiki/translations/fr/Part_Defeaturing.md index 940a563be3..861a0e8c8e 100644 --- a/wiki/translations/fr/Part_Defeaturing.md +++ b/wiki/translations/fr/Part_Defeaturing.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Part Defeaturing/fr + ## Description L\'outil **Supprimer la fonctionnalité** est destiné à supprimer des fonctionnalités sélectionnées sur le modèle. Dans ce contexte, les nouvelles caractéristiques sont conçues comme des trous, des saillies, des espaces, des chanfreins, des congés, etc\... que l\'on retrouve sur le modèle. @@ -34,8 +36,5 @@ Pour être disponible, cet outil nécessite que FreeCAD soit basé sur Open Casc - Annonce officielle sur le portail de développement collaboratif Open Cascade [3D Model Defeaturing](https://dev.opencascade.org/index.php?q=node/1211). - [Atelier Defeaturing](Defeaturing_Workbench/fr.md) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Defeaturing/fr diff --git a/wiki/translations/fr/Part_EditAttachment.md b/wiki/translations/fr/Part_EditAttachment.md index 96335f2c90..5b38a5a5b9 100644 --- a/wiki/translations/fr/Part_EditAttachment.md +++ b/wiki/translations/fr/Part_EditAttachment.md @@ -8,6 +8,8 @@ SeeAlso:[Placement](Placement/fr.md), [Tutoriel Les bases pour l'ancrage](Basic_Attachment_Tutorial/fr.md), [Part Part2DObject](Part_Part2DObject/fr.md) --- +# Part EditAttachment/fr + ## Description **Part Ancrage** est un utilitaire permettant d\'attacher un objet à un autre. L\'objet attaché est lié à l\'autre objet, ce qui signifie que si le placement de ce dernier est modifié par la suite, l\'objet attaché sera mis à jour à sa nouvelle position. @@ -304,4 +306,7 @@ Le décalage de l\'ancrage est utilisé pour appliquer un décalage linéaire ou {{Part_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part EditAttachment/fr diff --git a/wiki/translations/fr/Part_ElementCopy.md b/wiki/translations/fr/Part_ElementCopy.md index 140ef5d840..66d2d724b2 100644 --- a/wiki/translations/fr/Part_ElementCopy.md +++ b/wiki/translations/fr/Part_ElementCopy.md @@ -8,6 +8,8 @@ SeeAlso:[Part Copie simple](Part_SimpleCopy/fr.md), [Part Copie transformée](Part_TransformedCopy/fr.md), [Part Affiner la forme](Part_RefineShape/fr.md) --- +# Part ElementCopy/fr + ## Description [Part Copie d\'un élément](Part_ElementCopy/fr.md) produit une copie non paramétrique d\'un sous-élément d\'un objet particulier, c\'est-à-dire d\'un sommet, d\'une arête ou d\'une face. @@ -30,8 +32,5 @@ La copie a une simple propriété {{PropertyData/fr|Placement}} comme n\'importe La copie a des propriétés de vue comme toutes les autres [Part Features](Part_Feature/fr.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ElementCopy/fr diff --git a/wiki/translations/fr/Part_Ellipse.md b/wiki/translations/fr/Part_Ellipse.md index a0d330c1c5..6e5843a364 100644 --- a/wiki/translations/fr/Part_Ellipse.md +++ b/wiki/translations/fr/Part_Ellipse.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part Ellipse/fr + ## Description Cette commande va créer une ligne courbe elliptique. Avec les valeurs par défaut, la ligne courbe elliptique est fermée et donc sera une ellipse. Si les propriétés Angle 1 ou Angle 2 sont modifiés par rapport aux valeurs par défaut (0° et 360°), la ligne sera une courbe ouverte. @@ -22,8 +24,5 @@ La boîte de dialogue [Primitives](Part_Primitives/fr.md) est accessible en cliq - **Angle 1:** Début de la ligne de l\'ellipse ou courbe elliptique, (dans le sens anti horaire), la valeur par défaut est 0° - **Angle 2:** extrémité du bord de l\'ellipse ou du bord courbe elliptique, (degrés dans le sens inverse des aiguilles d\'une montre), la valeur par défaut est de 360° - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipse/fr diff --git a/wiki/translations/fr/Part_Ellipsoid.md b/wiki/translations/fr/Part_Ellipsoid.md index ea235f31cb..eb46d42d01 100644 --- a/wiki/translations/fr/Part_Ellipsoid.md +++ b/wiki/translations/fr/Part_Ellipsoid.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part Ellipsoid/fr + ## Description La commande [Part Ellipsoïde](Part_Ellipsoid/fr.md) crée un solide ellipsoïde paramétrique. @@ -36,8 +38,5 @@ Un solide ellipsoïde paramétrique est disponible à partir de la boîte de dia ![](images/Part_Ellipsoid_screenshot.jpg ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipsoid/fr diff --git a/wiki/translations/fr/Part_ExplodeCompound.md b/wiki/translations/fr/Part_ExplodeCompound.md index f74f074689..0acec48d9c 100644 --- a/wiki/translations/fr/Part_ExplodeCompound.md +++ b/wiki/translations/fr/Part_ExplodeCompound.md @@ -8,6 +8,8 @@ SeeAlso:[Part Composé](Part_Compound/fr.md), [Draft Rétrograder](Draft_Downgrade/fr.md) --- +# Part ExplodeCompound/fr + ## Description Outil permettant de fractionner des composés de formes afin de rendre chaque forme contenue (enfant) disponible en tant qu'objet distinct dans l'arborescence du modèle. Les enfants sont automatiquement placés dans un [Groupe](Std_Group/fr.md) s\'il y a plus d\'un enfant. @@ -31,8 +33,5 @@ L\'outil fera également exploser des formes non composées dans leurs constitua - Obtention des contours individuels à partir d\'esquisses et de faces à contours multiples. - Obtention d\'un solide pur à partir d\'un solide en composé pour une utilisation dans l\' [atelier FEM](FEM_Workbench/fr.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ExplodeCompound/fr diff --git a/wiki/translations/fr/Part_Export.md b/wiki/translations/fr/Part_Export.md index fe7e3590bb..8038621b3e 100644 --- a/wiki/translations/fr/Part_Export.md +++ b/wiki/translations/fr/Part_Export.md @@ -7,6 +7,8 @@ SeeAlso:[Part Importation](Part_Import/fr.md), [Std Exporter](Std_Export/fr.md), [Import Export](Import_Export/fr.md) --- +# Part Export/fr + ## Description l\'outil ** [Part Exportation](Part_Export/fr.md)** ouvre une boîte de dialogue vous permettant d'exporter des objets du document dans les formats de fichier CAO suivants : [.IGES](https://fr.wikipedia.org/wiki/Initial_Graphics_Exchange_Specification), [.STEP](https://fr.wikipedia.org/wiki/Standard_pour_l%27échange_de_données_de_produit) et [.BREP](https://fr.wikipedia.org/wiki/B-Rep). @@ -18,14 +20,5 @@ l\'outil ** [Part Exportation](Part 3. Aller dans le menu **Pièce → Exportation CAO...**. 4. Sélectionnez le format de fichier et le répertoire de sortie. - - - - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Export/fr diff --git a/wiki/translations/fr/Part_Extrude.md b/wiki/translations/fr/Part_Extrude.md index 7571564895..9c4a529489 100644 --- a/wiki/translations/fr/Part_Extrude.md +++ b/wiki/translations/fr/Part_Extrude.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Ajuster ou prolonger](Draft_Trimex/fr.md) --- +# Part Extrude/fr + ![600px](images/Part_Extrude_demo.png) ## Description @@ -112,8 +114,5 @@ Part Extrusion ne se soucie pas de savoir où il se trouve dans l\'arborescence Part Extrude peut extruder n\'importe quel objet ayant une Geometrie Part (OCC shape), à l\'exception des solides et des solides composés. Et il ne peut pas extruder les faces individuelles d\'autres objets. PartDesign Pad n\'accepte qu\'une esquisse en tant que profil (et une petite sélection d\'autres types d\'objets) ou une face d\'un solide. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Extrude/fr diff --git a/wiki/translations/fr/Part_FaceColors.md b/wiki/translations/fr/Part_FaceColors.md index 6ca8301c6e..2610205f6f 100644 --- a/wiki/translations/fr/Part_FaceColors.md +++ b/wiki/translations/fr/Part_FaceColors.md @@ -7,6 +7,8 @@ SeeAlso:[Std Apparence](Std_SetAppearance/fr.md) --- +# Part FaceColors/fr + ## Description La fonction **Définir les couleurs** vous permet de définir une couleur pour chaque face ou surface d\'un objet. De cette façon, vous pouvez attribuer plusieurs couleurs à une pièce. Pour colorer des pièces entières, utilisez à la place la fonction *[Std Apparence](Std_SetAppearance/fr.md)*. @@ -36,3 +38,6 @@ Pour réinitialiser toutes les couleurs de la face: [Category:User Documentation](Category:User_Documentation.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part FaceColors/fr diff --git a/wiki/translations/fr/Part_Feature.md b/wiki/translations/fr/Part_Feature.md index 5a55ba3c66..c5ec1ca7e8 100644 --- a/wiki/translations/fr/Part_Feature.md +++ b/wiki/translations/fr/Part_Feature.md @@ -1,6 +1,4 @@ # Part Feature/fr - - ## Introduction @@ -201,4 +199,7 @@ Si vous le souhaitez, l\'attribut `Label` peut être remplacé par un texte plus - Par défaut, `Label` est unique, tout comme `Name`. Ce comportement peut être modifié dans [Réglage des préférences](Preferences_Editor/fr.md), **Edition → Préférences → Général → Document → Autoriser la duplication des étiquettes dans un document**. Cela signifie qu\'en général, `Label` peut être répété dans le même document. Lors du test d\'un élément spécifique, l\'utilisateur doit s\'appuyer sur `Name` plutôt que sur `Label`. - {{Document objects navi}} + {{Document objects navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Feature/fr diff --git a/wiki/translations/fr/Part_Fillet.md b/wiki/translations/fr/Part_Fillet.md index 7067b6242d..be994f1fbc 100644 --- a/wiki/translations/fr/Part_Fillet.md +++ b/wiki/translations/fr/Part_Fillet.md @@ -7,6 +7,8 @@ SeeAlso:[Part Chanfrein](Part_Chamfer/fr.md) --- +# Part Fillet/fr + ## Description Cet outil crée un congé (arrondi) sur les arêtes sélectionnées d\'un objet. Une boîte de dialogue vous permet de choisir les objets et les arêtes à utiliser. @@ -39,8 +41,5 @@ L\'outil Congé échoue parfois lors de la tentative de congé sur des objets co Notez également que la fonction de congé de pièce est affectée par le [Problème de dénomination topologique](Topological_naming_problem/fr.md) lorsque toute modification est apportée à une étape de modélisation plus tôt dans la chaîne qui affecte le nombre de facettes ou de sommets. Cela pourrait entraîner des résultats imprévisibles. En attendant que cela soit résolu (éventuellement avec la V0.19), il est conseillé d'appliquer les opérations Chanfrein et [Congé](Part_Fillet/fr.md) aux dernières étapes de la chaîne. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fillet/fr diff --git a/wiki/translations/fr/Part_Fuse.md b/wiki/translations/fr/Part_Fuse.md index ffa9a36fd9..82116fe05d 100644 --- a/wiki/translations/fr/Part_Fuse.md +++ b/wiki/translations/fr/Part_Fuse.md @@ -7,6 +7,8 @@ SeeAlso:[Part Opération booléenne](Part_Boolean/fr.md), [Part Soustraction](Part_Cut/fr.md), [Part Intersection](Part_Common/fr.md), --- +# Part Fuse/fr + ## Description L\'outil **![](images/)_[Union](Part_Fuse/fr.md)** fusionne les objets Part sélectionnés en un seul. Cette opération est entièrement paramétrique et les composants peuvent être modifiés et le résultat recalculé. @@ -38,8 +40,5 @@ Les éléments peuvent être ajoutés et supprimés à partir de la fusion, en l Après que cette opération soit complète, il peut être nécessaire de nettoyer la forme avec [Affiner la forme](Part_RefineShape/fr.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fuse/fr diff --git a/wiki/translations/fr/Part_Helix.md b/wiki/translations/fr/Part_Helix.md index e42001ee2e..d1947b36e9 100644 --- a/wiki/translations/fr/Part_Helix.md +++ b/wiki/translations/fr/Part_Helix.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part Helix/fr + ## Description La primitive géométrique ** [Part Hélice](Part_Helix/fr.md)** crée une forme d\'hélice définie par un rayon, un pas et une hauteur totale. @@ -62,8 +64,5 @@ Une fois l\'hélice créé vous avez la possibilité de modifier ses paramètres | | | +----------------------------------------------------------+----------------------------------------------------------------------------------------------------------+ - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Helix/fr diff --git a/wiki/translations/fr/Part_Import.md b/wiki/translations/fr/Part_Import.md index 5afa18b722..e60d121ba8 100644 --- a/wiki/translations/fr/Part_Import.md +++ b/wiki/translations/fr/Part_Import.md @@ -7,6 +7,8 @@ SeeAlso:[Part Exportation](Part_Export/fr.md), [Std Importer](Std_Import/fr.md), [Import Export](Import_Export/fr.md) --- +# Part Import/fr + ## Description L\'outil ** [Part Importation](Part_Import/fr.md)** ouvre une boîte de dialogue vous permettant d\'importer les fichiers CAO de format suivant : [.IGES](https://fr.wikipedia.org/wiki/Initial_Graphics_Exchange_Specification), [.STEP](https://fr.wikipedia.org/wiki/Standard_pour_l%27échange_de_données_de_produit) et [.BREP](https://fr.wikipedia.org/wiki/B-Rep) dans le document courant. @@ -17,8 +19,5 @@ L\'outil ** [Part Importation](Part 2. Aller dans le menu **Pièce → Importation CAO...**. 3. Sélectionnez le fichier à importer. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Import/fr diff --git a/wiki/translations/fr/Part_JoinConnect.md b/wiki/translations/fr/Part_JoinConnect.md index e3f64bcf16..c134611d76 100644 --- a/wiki/translations/fr/Part_JoinConnect.md +++ b/wiki/translations/fr/Part_JoinConnect.md @@ -8,6 +8,8 @@ SeeAlso:[Part Intégrer des objets](Part_JoinEmbed/fr.md), [Part Découpe](Part_JoinCutout/fr.md), [Part Opération booléenne](Part_Boolean/fr.md), [Part Évidement](Part_Thickness/fr.md) --- +# Part JoinConnect/fr + ## Description Outil de connexion pour joindre deux objets creux (par exemple deux tuyaux). Peut aussi joindre des coques et des fils. @@ -90,8 +92,5 @@ j.Objects = FreeCADGui.Selection.getSelection() - L\'outil a été ré-implémenté pour fonctionner via generalFuse dans FreeCAD V0.17.8053 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinConnect/fr diff --git a/wiki/translations/fr/Part_JoinCutout.md b/wiki/translations/fr/Part_JoinCutout.md index a172e046c7..02db31b1ff 100644 --- a/wiki/translations/fr/Part_JoinCutout.md +++ b/wiki/translations/fr/Part_JoinCutout.md @@ -8,6 +8,8 @@ SeeAlso:[Part Connecter](Part_JoinConnect/fr.md), [Part Intégrer](Part_JoinEmbed/fr.md), [Part Opération booléenne](Part_Boolean/fr.md), [Part Évidement](Part_Thickness/fr.md) --- +# Part JoinCutout/fr + ## Description L\'outil [Part Découpe](Part_JoinCutout/fr.md) crée une découpe dans un objet muré (par exemple, un tuyau) pour s\'adapter à un autre objet à paroi. @@ -82,8 +84,5 @@ j.Tool = FreeCADGui.Selection.getSelection()[1] L\'outil lui-même est implémenté en Python, voir {{FileName|/Mod/Part/JoinFeatures.py}} ([Github link](https://github.com/FreeCAD/FreeCAD/blob/master/src/Mod/Part/JoinFeatures.py)) là où FreeCAD est installé. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinCutout/fr diff --git a/wiki/translations/fr/Part_JoinEmbed.md b/wiki/translations/fr/Part_JoinEmbed.md index f3f909601e..b8b6f762ed 100644 --- a/wiki/translations/fr/Part_JoinEmbed.md +++ b/wiki/translations/fr/Part_JoinEmbed.md @@ -8,6 +8,8 @@ SeeAlso:[Part Connecter un objet](Part_JoinConnect/fr.md), [Part Découpe](Part_JoinCutout/fr.md), [Part Opération booléenne](Part_Boolean/fr.md), [Part Évidement](Part_Thickness/fr.md) --- +# Part JoinEmbed/fr + ## Description L\'outil Intégrer un objet incorpore un objet à paroi (un tuyau, par exemple) dans un autre objet à paroi. @@ -86,8 +88,5 @@ j.Tool = FreeCADGui.Selection.getSelection()[1] L\'outil lui-même est implémenté en Python, voir {{FileName|/Mod/Part/JoinFeatures.py}} ([Github link](https://github.com/FreeCAD/FreeCAD/blob/master/src/Mod/Part/JoinFeatures.py)) là où FreeCAD est installé. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinEmbed/fr diff --git a/wiki/translations/fr/Part_Line.md b/wiki/translations/fr/Part_Line.md index 7a573b7e7c..b5ae7f8ddf 100644 --- a/wiki/translations/fr/Part_Line.md +++ b/wiki/translations/fr/Part_Line.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part Line/fr + ## Description ## Utilisation @@ -84,11 +86,5 @@ | | : | +--------------------------------------------------------+---------------------------------------------+ - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Line/fr diff --git a/wiki/translations/fr/Part_Loft.md b/wiki/translations/fr/Part_Loft.md index 8dda526c6a..6eae6c25f8 100644 --- a/wiki/translations/fr/Part_Loft.md +++ b/wiki/translations/fr/Part_Loft.md @@ -8,6 +8,8 @@ SeeAlso:[Part Balayage](Part_Sweep/fr.md) --- +# Part Loft/fr + ## Présentation L\'outil Lissage est utilisé pour créer une face, une coquille ou une forme solide à partir de deux ou plusieurs profils. Les profils peuvent être un point (sommet), ligne (Arête), un fil ou une face. Arêtes et fils peuvent être soit ouverts ou fermés. Il existe différents [limites et complications](Part_Loft/fr#Limitations_et_complications.md), voir ci-dessous, mais les profils peuvent provenir des primitives de l\'atelier Part, de fonctions de l\'atelier Draft et d\'une esquisse. @@ -103,8 +105,5 @@ Si vous souhaitez modifier la sélection des sections après la création du lof La séquence des sections dépend de la séquence des clics dans la liste. Si vous souhaitez apporter des modifications substantielles, il est recommandé de tout désélectionner en premier puis de recommencer la sélection dans le bon ordre. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Loft/fr diff --git a/wiki/translations/fr/Part_MakeCompound.md b/wiki/translations/fr/Part_MakeCompound.md index 21d73d1df1..df670cc455 100644 --- a/wiki/translations/fr/Part_MakeCompound.md +++ b/wiki/translations/fr/Part_MakeCompound.md @@ -1,2 +1,5 @@ # Part MakeCompound/fr 1. REDIRECT [Part\_Compound/fr](Part_Compound/fr.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeCompound/fr diff --git a/wiki/translations/fr/Part_MakeFace.md b/wiki/translations/fr/Part_MakeFace.md index 6023e4616b..9ec1d46352 100644 --- a/wiki/translations/fr/Part_MakeFace.md +++ b/wiki/translations/fr/Part_MakeFace.md @@ -8,6 +8,8 @@ SeeAlso:[Part Créer une surface réglée](Part_RuledSurface/fr.md) --- +# Part MakeFace/fr + ## Description Part Créer une face crée un [Part Plan](Part_Plane/fr.md) dans une forme personnalisée. La forme est définie par un contour d\'esquisse fermé. @@ -24,8 +26,5 @@ Il est possible d\'imbriquer des contours fermés, par exemple pour avoir des ce 1. Sélectionnez une esquisse définissant au moins un contour fermé. 2. Appuyez sur le bouton [Créer une face à partir de fils](Part_MakeFace/fr.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeFace/fr diff --git a/wiki/translations/fr/Part_MakeSolid.md b/wiki/translations/fr/Part_MakeSolid.md index 40764966a3..df71f59d65 100644 --- a/wiki/translations/fr/Part_MakeSolid.md +++ b/wiki/translations/fr/Part_MakeSolid.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/fr.md) --- +# Part MakeSolid/fr + ## Description Cette commande crée un objet solide à partir d\'un objet forme. @@ -21,8 +23,5 @@ Cette commande crée un objet solide à partir d\'un objet forme. - Il n\'y aura pas d\'analyse ou de validation de l\'objet forme. - Il est recommandé d\'utiliser [Part Affiner la forme](Part_RefineShape/fr.md) avant de convertir en solide. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeSolid/fr diff --git a/wiki/translations/fr/Part_Measure_Angular.md b/wiki/translations/fr/Part_Measure_Angular.md index 3e22f831db..a7cb9b0e73 100644 --- a/wiki/translations/fr/Part_Measure_Angular.md +++ b/wiki/translations/fr/Part_Measure_Angular.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/fr.md) --- +# Part Measure Angular/fr + ## Description Cet outil mesure l\'angle entre deux arêtes droites, deux faces planes ou une arête droite et une face plane, puis affiche la mesure dans la [vue 3D](3D_view/fr.md). @@ -21,11 +23,5 @@ Cet outil mesure l\'angle entre deux arêtes droites, deux faces planes ou une a 3. Alternativement, la commande peut être lancée sans sélection préalable. Une boîte de dialogue de sélection s\'ouvre alors dans le [Panneau des tâches](Task_Panel/fr.md). Un widget de contrôle propose également des boutons pour réinitialiser la sélection, basculer l\'affichage des mesures dans la [vue 3D](3D_view/fr.md) et effacer toutes les mesures. 4. Les mesures sont automatiquement ignorées lors de la fermeture du document. - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Angular/fr diff --git a/wiki/translations/fr/Part_Measure_Clear_All.md b/wiki/translations/fr/Part_Measure_Clear_All.md index 84d63c0e5f..551990a442 100644 --- a/wiki/translations/fr/Part_Measure_Clear_All.md +++ b/wiki/translations/fr/Part_Measure_Clear_All.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/fr.md) --- +# Part Measure Clear All/fr + ## Description Cet outil efface toutes les mesures de la vue 3D. @@ -16,11 +18,5 @@ Cet outil efface toutes les mesures de la vue 3D. - Appuyez sur le bouton ** [Tout effacer](Part_Measure_Clear_All/fr.md)**. - Utilisez **Mesure → Tout effacer**. - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Clear All/fr diff --git a/wiki/translations/fr/Part_Measure_Linear.md b/wiki/translations/fr/Part_Measure_Linear.md index 09ea03ff6a..c2b2c86b57 100644 --- a/wiki/translations/fr/Part_Measure_Linear.md +++ b/wiki/translations/fr/Part_Measure_Linear.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/fr.md) --- +# Part Measure Linear/fr + ## Description Cet outil mesure la distance entre deux éléments de topologie sélectionnés (sommet, arête, face) et affiche la mesure dans la [vue 3D](3D_view/fr.md). La distance la plus courte entre les deux éléments est indiquée en rouge et les mesures delta (distances parallèles aux axes X, Y et Z standard) sont indiquées en vert. @@ -21,8 +23,5 @@ Cet outil mesure la distance entre deux éléments de topologie sélectionnés ( 3. Alternativement, la commande peut être lancée sans sélection préalable. Une boîte de dialogue de sélection s\'ouvre alors dans le [Panneau des tâches](Task_Panel/fr.md). Un widget Contrôle propose également des boutons pour réinitialiser la sélection, basculer l\'affichage des mesures dans la [vue 3D](3D_view/fr.md) et effacer toutes les mesures. 4. Les mesures sont automatiquement ignorées lors de la fermeture du document. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Linear/fr diff --git a/wiki/translations/fr/Part_Measure_Menu.md b/wiki/translations/fr/Part_Measure_Menu.md index 9393894fed..febc154f29 100644 --- a/wiki/translations/fr/Part_Measure_Menu.md +++ b/wiki/translations/fr/Part_Measure_Menu.md @@ -6,6 +6,8 @@ SeeAlso:[Std Mesurer une distance](Std_MeasureDistance/fr.md), [Draft Cote](Draft_Dimension/fr.md), [Arch Prise de cotes](Arch_Survey/fr.md) --- +# Part Measure Menu/fr + {{StdMenu|Mesure}} @@ -35,3 +37,6 @@ [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Menu/fr diff --git a/wiki/translations/fr/Part_Measure_Refresh.md b/wiki/translations/fr/Part_Measure_Refresh.md index 521242c91a..36da372a9c 100644 --- a/wiki/translations/fr/Part_Measure_Refresh.md +++ b/wiki/translations/fr/Part_Measure_Refresh.md @@ -7,6 +7,8 @@ SeeAlso:[Part Mesure linéaire](Part_Measure_Linear/fr.md), [Part Mesure angulaire](Part_Measure_Angular/fr.md) --- +# Part Measure Refresh/fr + ## Description [Part Rafraîchir les mesures](Part_Measure_Refresh/fr.md) met à jour la [Vue 3D](3D_view.md) pour afficher toutes les mesures créées avec [Part Mesure linéaire](Part_Measure_Linear/fr.md) et [Part Mesure angulaire](Part_Measure_Angular/fr.md). @@ -17,8 +19,5 @@ - Appuyez sur le bouton ** [Rafraîchir les mesures](Part_Measure_Refresh/fr.md)**. - Allez dans le menu, **Mesure → Rafraîchir les mesures**. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Refresh/fr diff --git a/wiki/translations/fr/Part_Measure_Toggle_3d.md b/wiki/translations/fr/Part_Measure_Toggle_3d.md index 9955f971a0..54a9781f2b 100644 --- a/wiki/translations/fr/Part_Measure_Toggle_3d.md +++ b/wiki/translations/fr/Part_Measure_Toggle_3d.md @@ -7,6 +7,8 @@ SeeAlso:[Part Basculer Delta](Part_Measure_Toggle_Delta/fr.md) --- +# Part Measure Toggle 3d/fr + ## Description Cet outil bascule la visibilité des mesures linéaires (rouge) et angulaires (bleu). @@ -17,8 +19,5 @@ Cet outil bascule la visibilité des mesures linéaires (rouge) et angulaires (b - Appuyez sur le bouton ** '''Basculer 3D‏‎'''**. - Utilisez la **Mesure → Basculer 3D‏‎** - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle 3d/fr diff --git a/wiki/translations/fr/Part_Measure_Toggle_All.md b/wiki/translations/fr/Part_Measure_Toggle_All.md index e01a6158e5..b3b5df529d 100644 --- a/wiki/translations/fr/Part_Measure_Toggle_All.md +++ b/wiki/translations/fr/Part_Measure_Toggle_All.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/fr.md) --- +# Part Measure Toggle All/fr + ## Description Cet outil bascule la visibilité de toutes les mesures dans la [vue 3D](3D_view/fr.md). @@ -18,11 +20,5 @@ Cet outil bascule la visibilité de toutes les mesures dans la [vue 3D](3D_view/ - Appuyez sur le bouton ** '''Basculer tout'''**. - Utilisez la **Mesure → Basculer tout** - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle All/fr diff --git a/wiki/translations/fr/Part_Measure_Toggle_Delta.md b/wiki/translations/fr/Part_Measure_Toggle_Delta.md index 3a8251cfdc..b3496649aa 100644 --- a/wiki/translations/fr/Part_Measure_Toggle_Delta.md +++ b/wiki/translations/fr/Part_Measure_Toggle_Delta.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/fr.md) --- +# Part Measure Toggle Delta/fr + ## Description ## Description @@ -18,8 +20,5 @@ Cet outil permet d\'activer la visibilité des différences de mesures (vertes). - Appuyez sur le bouton ** '''Basculer Delta'''**. - Utilisez la **Mesure → Basculer Delta** - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle Delta/fr diff --git a/wiki/translations/fr/Part_Mirror.md b/wiki/translations/fr/Part_Mirror.md index b32c060680..a13a62f8ce 100644 --- a/wiki/translations/fr/Part_Mirror.md +++ b/wiki/translations/fr/Part_Mirror.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/fr.md) --- +# Part Mirror/fr + ## Description \'Miroir\' - Cet outil crée un nouvel objet (image) qui est la réflexion de l\'objet source sélectionné par rapport à un plan miroir. Le plan miroir peut être un plan standard (**XY**, **YZ**, ou **XZ**) ou n\'importe quel plan parallèle à un plan standard. @@ -44,8 +46,5 @@ Les cases **Point de base** peuvent être utilisées pour déplacer le miroir pl - Les plans de miroir arbitraires (c\'est-à-dire non parallèles à un plan standard) ne sont pas pris en charge. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Mirror/fr diff --git a/wiki/translations/fr/Part_Module.md b/wiki/translations/fr/Part_Module.md index cddf329bb1..e6aee2b202 100644 --- a/wiki/translations/fr/Part_Module.md +++ b/wiki/translations/fr/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/fr - - - - - -Icône de l\'Atelier Part +# Icône de l\'Atelier Part Part Module/fr {{TOCright}} @@ -201,3 +195,6 @@ Voir [Part Ecrire un script](Part_scripting/fr.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/fr diff --git a/wiki/translations/fr/Part_Offset.md b/wiki/translations/fr/Part_Offset.md index 5344bc5c1c..717f187870 100644 --- a/wiki/translations/fr/Part_Offset.md +++ b/wiki/translations/fr/Part_Offset.md @@ -7,6 +7,8 @@ SeeAlso:[Part Évidement](Part_Thickness/fr.md), [Part Décalage 2D](Part_Offset2D/fr.md) --- +# Part Offset/fr + ## Description L\'outil Décalage 3D de la pièce crée des copies parallèles d\'une forme sélectionnée à une certaine distance de la forme de base, créant ainsi un nouvel objet. @@ -56,10 +58,7 @@ La même forme avec un décalage 3D comme SKIN et un décalage \"rempli\". Décalage *rempli* avec 2 cylindres créant des coupes booléennes. Le cylindre A passe par le REMPLISSAGE tandis que le cylindre B ne traverse que le REMPLISSAGE et non la forme 2D source. - - - + - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset/fr diff --git a/wiki/translations/fr/Part_Offset2D.md b/wiki/translations/fr/Part_Offset2D.md index c7b2945eaf..e96250c7da 100644 --- a/wiki/translations/fr/Part_Offset2D.md +++ b/wiki/translations/fr/Part_Offset2D.md @@ -8,6 +8,8 @@ SeeAlso:[Part Décalage 3D](Part_Offset/fr.md), [Part Évidement](Part_Thickness/fr.md), [Draft Décalage](Draft_Offset/fr.md) --- +# Part Offset2D/fr + ## Description Part Décalage 2D génère un profil parallèle au profil d\'origine, à une distance définie de celui-ci. Il est également possible de d\'agrandir/réduire une face plane de la même façon. @@ -115,8 +117,5 @@ Part.show(enlarged_circle) # structure follows that of source shape. }} - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset2D/fr diff --git a/wiki/translations/fr/Part_Part2DObject.md b/wiki/translations/fr/Part_Part2DObject.md index ad49406ec1..fd86cc1624 100644 --- a/wiki/translations/fr/Part_Part2DObject.md +++ b/wiki/translations/fr/Part_Part2DObject.md @@ -1,6 +1,4 @@ # Part Part2DObject/fr - - ## Introduction @@ -121,5 +119,5 @@ obj.Label = "Custom label" Par exemple, la plupart des outils de [Atelier Draft](Draft_Workbench/fr.md), comme [Draft Ligne](Draft_Line/fr.md), [Draft Rectangle](Draft_Rectangle/fr.md), [Draft Polygone](Draft_Polygon/fr.md) etc\... sont des objets `Part::Part2DObjectPython` avec une icône personnalisée et des propriétés supplémentaires. - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Part2DObject/fr diff --git a/wiki/translations/fr/Part_Plane.md b/wiki/translations/fr/Part_Plane.md index 0b80e5db46..17f0e76f00 100644 --- a/wiki/translations/fr/Part_Plane.md +++ b/wiki/translations/fr/Part_Plane.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part Plane/fr + ## Description Créez un plan paramétrique simple de 10 x 10 mm, avec les paramètres de position, longueur et largeur. Par défaut, le plan est positionné à l\'origine (0,0,0). @@ -47,8 +49,5 @@ Les propriétés de l\'objet peuvent être modifiées, soit dans l\'[Éditeur de Vous avez la vue standard des propriétés. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Plane/fr diff --git a/wiki/translations/fr/Part_Point.md b/wiki/translations/fr/Part_Point.md index 106e258930..c3c1fba290 100644 --- a/wiki/translations/fr/Part_Point.md +++ b/wiki/translations/fr/Part_Point.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part Point/fr + ## Description Une primitive géométrique point (vertex). @@ -86,4 +88,7 @@ Une primitive géométrique point (vertex). {{Part_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Point/fr diff --git a/wiki/translations/fr/Part_PointsFromMesh.md b/wiki/translations/fr/Part_PointsFromMesh.md index fa7352a2e7..af427a7146 100644 --- a/wiki/translations/fr/Part_PointsFromMesh.md +++ b/wiki/translations/fr/Part_PointsFromMesh.md @@ -8,6 +8,8 @@ SeeAlso:[Part Forme à partir du maillage](Part_ShapeFromMesh/fr.md), [Part Convertir en solide](Part_MakeSolid/fr.md), [Part Affiner la forme](Part_RefineShape/fr.md) --- +# Part PointsFromMesh/fr + ## Description L\'outil ** [Part Points à partir de maillage](Part_PointsFromMesh/fr.md)** crée une forme à partir d\'un [objet mesh](Glossary/fr#Mesh.md) importé ou produit à partir de l\'** [atelier Mesh](Mesh_Workbench/fr.md)**. @@ -30,8 +32,5 @@ Il n\'y aura pas d\'analyse ou de validation de l\'objet maillé. L\'analyse et ## Script - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part PointsFromMesh/fr diff --git a/wiki/translations/fr/Part_Primitives.md b/wiki/translations/fr/Part_Primitives.md index 882e4f352b..8c26e5f1d6 100644 --- a/wiki/translations/fr/Part_Primitives.md +++ b/wiki/translations/fr/Part_Primitives.md @@ -7,6 +7,8 @@ SeeAlso:[Part Générateur de formes](Part_Builder/fr.md) --- +# Part Primitives/fr + ## Description [Part Primitives](Part_Primitives/fr.md) ouvre une boîte de dialogue pour créer l\'une des primitives géométriques paramétriques définies dans l\' [atelier Part](Part_Workbench/fr.md). @@ -85,8 +87,5 @@ Il peut également être utilisé comme entrée dans le programme. freecad $INSTALL_DIR/Mod/Part/parttests/part_test_objects.py ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Primitives/fr diff --git a/wiki/translations/fr/Part_Prism.md b/wiki/translations/fr/Part_Prism.md index 8b5314660c..d4a02f3b24 100644 --- a/wiki/translations/fr/Part_Prism.md +++ b/wiki/translations/fr/Part_Prism.md @@ -8,6 +8,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md), [Part Cube](Part_Box/fr.md) --- +# Part Prism/fr + ## Description Un prisme dans Part est un solide délimité par une section transversale polygonale régulière et une hauteur. @@ -30,10 +32,7 @@ Les propriétés du prisme peuvent être éditées ultérieurement, soit dans l\ - **First Angle**: Angle dans la première direction. (v0.19) -- **Second Angle**: Angle dans la seconde direction. (v0.19) - - +- **Second Angle**: Angle dans la seconde direction. (v0.19) - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Prism/fr diff --git a/wiki/translations/fr/Part_ProjectionOnSurface.md b/wiki/translations/fr/Part_ProjectionOnSurface.md index 6af84ac9d7..39c3113fd1 100644 --- a/wiki/translations/fr/Part_ProjectionOnSurface.md +++ b/wiki/translations/fr/Part_ProjectionOnSurface.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Part ProjectionOnSurface/fr + ## Description @@ -91,8 +93,5 @@ Si ça arrive: ## Exemples - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ProjectionOnSurface/fr diff --git a/wiki/translations/fr/Part_RefineShape.md b/wiki/translations/fr/Part_RefineShape.md index 7719b2d8ca..542a60251c 100644 --- a/wiki/translations/fr/Part_RefineShape.md +++ b/wiki/translations/fr/Part_RefineShape.md @@ -7,6 +7,8 @@ SeeAlso:[Part Copie simple](Part_SimpleCopy/fr.md), [Part Copie transformée](Part_TransformedCopy/fr.md), [Part Copie d'un élément](Part_ElementCopy/fr.md), [OpenSCAD Affinage de la forme](OpenSCAD_RefineShapeFeature/fr.md) --- +# Part RefineShape/fr + ## Description L\'outil ** [Part Affiner la forme](Part_RefineShape/fr.md)** produit une copie non paramétrique à la forme raffinée, c'est-à-dire que certains bords et certaines faces ont été nettoyés. @@ -54,8 +56,5 @@ La commande Python pour affiner une forme est la suivante: shape.removeSplitter() ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RefineShape/fr diff --git a/wiki/translations/fr/Part_RegularPolygon.md b/wiki/translations/fr/Part_RegularPolygon.md index 556d938b16..62b2dc13ab 100644 --- a/wiki/translations/fr/Part_RegularPolygon.md +++ b/wiki/translations/fr/Part_RegularPolygon.md @@ -8,6 +8,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part RegularPolygon/fr + ## Description Crée une primitive géométrique polygone régulier. @@ -26,8 +28,5 @@ Le Polygone régulier est disponible à partir de la boîte de dialogue Créer d - Polygone - Le nombre de faces du polygone - Rayon circonscrit - Le rayon de la circonférence du polygone en partant du centre jusqu'à l\'extrémité du vertex. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RegularPolygon/fr diff --git a/wiki/translations/fr/Part_ReverseShapes.md b/wiki/translations/fr/Part_ReverseShapes.md index b5d22251dd..ecc012b00e 100644 --- a/wiki/translations/fr/Part_ReverseShapes.md +++ b/wiki/translations/fr/Part_ReverseShapes.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/fr.md) --- +# Part ReverseShapes/fr + ## Description Inverse les normales de toutes les faces de l\'objet sélectionné. @@ -31,8 +33,5 @@ Vous pouvez le vérifier en ## Script - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ReverseShapes/fr diff --git a/wiki/translations/fr/Part_Revolve.md b/wiki/translations/fr/Part_Revolve.md index f22a3ae779..31ce8c483f 100644 --- a/wiki/translations/fr/Part_Revolve.md +++ b/wiki/translations/fr/Part_Revolve.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/fr.md) --- +# Part Revolve/fr + ## Description Fait pivoter l\'objet sélectionné autour d\'un axe donné. Les types de forme suivants sont autorisés et mènent aux formes de sortie énumérées ([Voir Remarques pour les exceptions](#Remarques.md)): @@ -31,8 +33,5 @@ Si vous sélectionnez un axe défini par l\'utilisateur, les nombres définissen - Si votre version de FreeCAD a une case à cocher pour Solide dans le dialogue de Révolution, vous pouvez faire des Solides à partir de filaires fermés et d\'Arêtes. - Si la révolution est effectuée à l\'aide d\'un axe qui coupe la face à pivoter et que vous souhaitez créer un solide, le résultat peut être invalide. Cela peut se produire pour diverses raisons, auto-intersection, direction, etc. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Revolve/fr diff --git a/wiki/translations/fr/Part_RuledSurface.md b/wiki/translations/fr/Part_RuledSurface.md index 6b430be6f2..9777c41614 100644 --- a/wiki/translations/fr/Part_RuledSurface.md +++ b/wiki/translations/fr/Part_RuledSurface.md @@ -7,6 +7,8 @@ SeeAlso:[Part Créer une face](Part_MakeFace/fr.md) --- +# Part RuledSurface/fr + ## Description Crée une surface réglée. @@ -19,8 +21,5 @@ Crée une surface réglée. - Appuyez sur le bouton [Créer un surface réglée à partir de\...](Part_RuledSurface/fr.md) - Utilisez l\'entrée **Pièce → Créer un surface réglée** dans le menu Part - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RuledSurface/fr diff --git a/wiki/translations/fr/Part_Section.md b/wiki/translations/fr/Part_Section.md index 65bdd98dd0..08a2d287f2 100644 --- a/wiki/translations/fr/Part_Section.md +++ b/wiki/translations/fr/Part_Section.md @@ -7,6 +7,8 @@ SeeAlso:[Part Coupes](Part_CrossSections/fr.md) --- +# Part Section/fr + ## Description Cet outil extrait une section de l\'intersection de deux formes sélectionnées, la seconde étant utilisée comme plan de coupe. Cette opération est pleinement paramétrique et ses composants peuvent être modifiés, le résultat sera recalculé. @@ -31,8 +33,5 @@ Dans cet exemple, un cube est coupé par un cylindre : Pour créer des coupes depuis un plan de coupe, voir [Coupes](Part_CrossSections/fr.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Section/fr diff --git a/wiki/translations/fr/Part_SectionCross.md b/wiki/translations/fr/Part_SectionCross.md index 9231e2850e..d71fff4b87 100644 --- a/wiki/translations/fr/Part_SectionCross.md +++ b/wiki/translations/fr/Part_SectionCross.md @@ -1,2 +1,5 @@ # Part SectionCross/fr 1. REDIRECT [Part\_CrossSections/fr](Part_CrossSections/fr.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SectionCross/fr diff --git a/wiki/translations/fr/Part_ShapeFromMesh.md b/wiki/translations/fr/Part_ShapeFromMesh.md index d29664e74f..0ae8d8f115 100644 --- a/wiki/translations/fr/Part_ShapeFromMesh.md +++ b/wiki/translations/fr/Part_ShapeFromMesh.md @@ -7,6 +7,8 @@ SeeAlso:[Part Convertir en solide](Part_MakeSolid/fr.md), [Part Affiner la forme](Part_RefineShape/fr.md), [Part Points à partir de maillage](Part_PointsFromMesh/fr.md) --- +# Part ShapeFromMesh/fr + ## Introduction Cette commande ** [Part Forme à partir du maillage](Part_ShapeFromMesh/fr.md)** crée une forme à partir d\'un [Maillage](Mesh/fr.md). Les objets maillés ont des capacités d\'édition limitées dans FreeCAD, les convertir en [shapes (formes)](Shape/fr.md) permettra leur utilisation avec de nombreux autres outils booléens et de modification. @@ -53,8 +55,5 @@ solid.purgeTouched() doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ShapeFromMesh/fr diff --git a/wiki/translations/fr/Part_Shapebuilder.md b/wiki/translations/fr/Part_Shapebuilder.md index 25d2c8cd92..4db52b7757 100644 --- a/wiki/translations/fr/Part_Shapebuilder.md +++ b/wiki/translations/fr/Part_Shapebuilder.md @@ -1,2 +1,5 @@ # Part Shapebuilder/fr 1. REDIRECT [Part\_Builder/fr](Part_Builder/fr.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Shapebuilder/fr diff --git a/wiki/translations/fr/Part_SimpleCopy.md b/wiki/translations/fr/Part_SimpleCopy.md index 74f4a25e79..50e37f0fd6 100644 --- a/wiki/translations/fr/Part_SimpleCopy.md +++ b/wiki/translations/fr/Part_SimpleCopy.md @@ -7,6 +7,8 @@ SeeAlso:[Std Copie](Std_Copy/fr.md), [Std Dupliquer la Sélection](Std_DuplicateSelection/fr.md), [Part Copie transformée](Part_TransformedCopy/fr.md), [Part Copie de l’élément](Part_ElementCopy/fr.md), [Part Affiner la forme](Part_RefineShape/fr.md) --- +# Part SimpleCopy/fr + ## Description @@ -31,8 +33,5 @@ La copie a une seule propriété {{PropertyData/fr|Placement}} comme n\'importe La copie a des propriétés de vue simples comme toutes les autres [Objet Part](Part_Feature/fr.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SimpleCopy/fr diff --git a/wiki/translations/fr/Part_Slice.md b/wiki/translations/fr/Part_Slice.md index a6dbfa1c98..3d9941abce 100644 --- a/wiki/translations/fr/Part_Slice.md +++ b/wiki/translations/fr/Part_Slice.md @@ -8,6 +8,8 @@ SeeAlso:[Part Fragments booléens](Part_BooleanFragments/fr.md), [Part OU exclusif](Part_XOR/fr.md), [Part Jointure](Part_CompJoinFeatures/fr.md), [Part Opérations booléennes](Part_Boolean/fr.md) --- +# Part Slice/fr + ## Description L\'outil [Part Scinder](Part_Slice/fr.md) aussi connue sous **Slice to compound** est utilisé pour diviser des formes par intersection avec d\'autres formes. Par exemple, pour une boîte et un plan, un composé de deux solides est créé. @@ -127,8 +129,5 @@ L\'outil lui-même est implémenté en Python, voir {{FileName|/Mod/Part/BOPTool - [FreeCAD Slice und Slice Apart und andere Tricks](https://www.youtube.com/watch?v=JJAL5JmqqKQ) (en allemand), auteur : Ha Gei - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Slice/fr diff --git a/wiki/translations/fr/Part_SliceApart.md b/wiki/translations/fr/Part_SliceApart.md index a61aaf756e..4f6fe84db4 100644 --- a/wiki/translations/fr/Part_SliceApart.md +++ b/wiki/translations/fr/Part_SliceApart.md @@ -8,6 +8,8 @@ SeeAlso:[Part Scinder](Part_Slice/fr.md), [Part Éclater le composé](Part_ExplodeCompound/fr.md) --- +# Part SliceApart/fr + ## Description Outil pour diviser des formes par intersection avec d\'autres formes. Par exemple, pour une boîte et un plan, deux solides sont créés. ![600px](images/Part_Slice_Demo.png) @@ -66,8 +68,5 @@ Séparer/exploser a été introduit dans FreeCAD v0.18.15506. FreeCAD doit être - : FreeCAD Slice und Slice Apart und andere Tricks (en allemand), auteur: Ha Gei - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SliceApart/fr diff --git a/wiki/translations/fr/Part_Sphere.md b/wiki/translations/fr/Part_Sphere.md index 799cc876d6..de98a9d7f9 100644 --- a/wiki/translations/fr/Part_Sphere.md +++ b/wiki/translations/fr/Part_Sphere.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part Sphere/fr + ## Description Crée une sphère paramétrique simple avec des paramètres de position angle1, angle2, angle3 et rayon. @@ -43,8 +45,5 @@ Comme il est assez difficile d'expliquer la signification des paramètres angle - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sphere/fr diff --git a/wiki/translations/fr/Part_Spiral.md b/wiki/translations/fr/Part_Spiral.md index 7b9d0f9d13..f628269d30 100644 --- a/wiki/translations/fr/Part_Spiral.md +++ b/wiki/translations/fr/Part_Spiral.md @@ -8,6 +8,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part Spiral/fr + ## Description ## Utilisation @@ -20,8 +22,5 @@ La boîte de dialogue [Primitives](Part_Primitives/fr.md) est accessible en cliq ![](images/Spiral_y45_it.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Spiral/fr diff --git a/wiki/translations/fr/Part_Sweep.md b/wiki/translations/fr/Part_Sweep.md index 567fc5e3df..86be82f5c4 100644 --- a/wiki/translations/fr/Part_Sweep.md +++ b/wiki/translations/fr/Part_Sweep.md @@ -7,6 +7,8 @@ SeeAlso:[Part Lissage](Part_Loft/fr.md) --- +# Part Sweep/fr + ## Description L\'outil [Part Balayage](Part_Sweep/fr.md) est utilisé pour créer une face, une enveloppe ou une forme solide à partir d\'un ou plusieurs profils (coupes) projetés le long d\'un chemin. @@ -83,8 +85,5 @@ Si \"Frenet\" est à \"true\", l\'orientation du profil est calculée à partir - Puisque la fonction Balayage est souvent utilisée pour créer des filets de vis, nous vous suggérons la lecture du [Tutoriel création de vis](Thread_for_Screw_Tutorial/fr.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sweep/fr diff --git a/wiki/translations/fr/Part_Thickness.md b/wiki/translations/fr/Part_Thickness.md index 788cbcb418..42e6cdbc02 100644 --- a/wiki/translations/fr/Part_Thickness.md +++ b/wiki/translations/fr/Part_Thickness.md @@ -7,6 +7,8 @@ SeeAlso:[Part Décalage](Part_Offset/fr.md) --- +# Part Thickness/fr + ## Description L\'outil [Évidement](Part_Thickness/fr.md) travaille sur une forme solide et le transforme en un objet creux, donnant à chacune de ses parois une épaisseur définie. Sur certains solides, il vous permet d\'accélérer considérablement le travail et évite de faire des extrusions et des cavités. @@ -71,8 +73,5 @@ Remarques: ![](images/ThicknessEsempio4.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Thickness/fr diff --git a/wiki/translations/fr/Part_TopoShape.md b/wiki/translations/fr/Part_TopoShape.md index f7f0b3f8a5..fe8759e980 100644 --- a/wiki/translations/fr/Part_TopoShape.md +++ b/wiki/translations/fr/Part_TopoShape.md @@ -1,5 +1,5 @@ # Part TopoShape/fr - {{TOCright}} +{{TOCright}} ## Introduction @@ -70,4 +70,7 @@ help(obj.Shape) ``` - {{Document objects navi}} + {{Document objects navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part TopoShape/fr diff --git a/wiki/translations/fr/Part_Torus.md b/wiki/translations/fr/Part_Torus.md index 588bf49545..583f351b9e 100644 --- a/wiki/translations/fr/Part_Torus.md +++ b/wiki/translations/fr/Part_Torus.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part Torus/fr + ## Description Crée un tore paramétrique simple avec les paramètres position angle1, angle2, angle3, rayon1 et rayon2. @@ -51,10 +53,7 @@ ainsi que l\'ensemble standard de paramètres de placement. Les images ci-dessou ![](images/TorusExampleAngle2.jpg ) Le paramètre Angle2 a une valeur de 90°. -![](images/TorusExampleAngle3.jpg ) Le paramètre Angle3 a une valeur de 90°. - - +![](images/TorusExampleAngle3.jpg ) Le paramètre Angle3 a une valeur de 90°. - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Torus/fr diff --git a/wiki/translations/fr/Part_TransformedCopy.md b/wiki/translations/fr/Part_TransformedCopy.md index 3a14e37278..0d0ff40cc5 100644 --- a/wiki/translations/fr/Part_TransformedCopy.md +++ b/wiki/translations/fr/Part_TransformedCopy.md @@ -8,6 +8,8 @@ SeeAlso:[Part Copie simple](Part_SimpleCopy/fr.md), [Part Copie élément](Part_ElementCopy/fr.md), [Part Affiner la forme](Part_RefineShape/fr.md) --- +# Part TransformedCopy/fr + ## Description [Part Copie transformée](Part_TransformedCopy/fr.md) produit une copie non paramétrique d\'un objet qui a été déplacé de sa position d\'origine. @@ -29,8 +31,5 @@ La copie a une simple propriété {{PropertyData/fr|Placement}} comme n\'importe La copie a des propriétés de vue simples comme toutes les autres [Part Feature](Part_Feature/fr.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part TransformedCopy/fr diff --git a/wiki/translations/fr/Part_Tube.md b/wiki/translations/fr/Part_Tube.md index f7dabd3c4b..734a885f0b 100644 --- a/wiki/translations/fr/Part_Tube.md +++ b/wiki/translations/fr/Part_Tube.md @@ -8,6 +8,8 @@ SeeAlso:[Part Primitives](Part_CreatePrimitives/fr.md) --- +# Part Tube/fr + ## Description La commande Tube permet d\'insérer un tube dans le document actif. Le tube est traité géométriquement comme la découpe d\'un petit cylindre en un plus grand. Par défaut, la commande insère un tube de 10 mm de hauteur avec un rayon extérieur de 5 mm et un rayon intérieur de 2 mm. Ces paramètres peuvent être modifiés après l\'ajout de l\'objet. @@ -37,8 +39,5 @@ Pour éditer le tube - **Placement:** Spécifie l\'orientation et la position de la boîte dans l\'espace 3D. Voir [Placement](Placement/fr.md). Le point de référence est le coin inférieur avant gauche de la boîte. - **Label:** L\'étiquette est le nom donné à l\'opération. Ce nom peut être changé à votre convenance. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Tube/fr diff --git a/wiki/translations/fr/Part_Union.md b/wiki/translations/fr/Part_Union.md index 175532383e..150f648cb5 100644 --- a/wiki/translations/fr/Part_Union.md +++ b/wiki/translations/fr/Part_Union.md @@ -1,2 +1,5 @@ # Part Union/fr 1. REDIRECT [Part\_Fuse/fr](Part_Fuse/fr.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Union/fr diff --git a/wiki/translations/fr/Part_Wedge.md b/wiki/translations/fr/Part_Wedge.md index 5c56d76665..1db52f4b7c 100644 --- a/wiki/translations/fr/Part_Wedge.md +++ b/wiki/translations/fr/Part_Wedge.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives/fr.md) --- +# Part Wedge/fr + ## Description Crée un objet Pyramide tronquée paramétrique. Par défaut, cette pyramide tronquée a une base carrée plus grande et un carré plus petit en sommet. @@ -68,8 +70,5 @@ Crée un objet Pyramide tronquée paramétrique. Par défaut, cette pyramide tro ![](images/Wedge_examples.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Wedge/fr diff --git a/wiki/translations/fr/Part_Workbench.md b/wiki/translations/fr/Part_Workbench.md index febe30b252..0eeea09933 100644 --- a/wiki/translations/fr/Part_Workbench.md +++ b/wiki/translations/fr/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/fr 1. REDIRECT [Part\_Module/fr](Part_Module/fr.md) + +--- +[documentation index](../README.md) > Part Workbench/fr diff --git a/wiki/translations/fr/Part_XOR.md b/wiki/translations/fr/Part_XOR.md index 97caa823f3..bf6a5cf4a3 100644 --- a/wiki/translations/fr/Part_XOR.md +++ b/wiki/translations/fr/Part_XOR.md @@ -8,6 +8,8 @@ SeeAlso:[Part Fragments booléens](Part_BooleanFragments/fr.md), [Part Scinder](Part_Slice/fr.md), [Part Jointure](Part_CompJoinFeatures/fr.md), [Part Opérations booléennes](Part_Boolean/fr.md) --- +# Part XOR/fr + ## Description ## Utilisation @@ -18,8 +20,5 @@ ## Script - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part XOR/fr diff --git a/wiki/translations/fr/Part_and_PartDesign.md b/wiki/translations/fr/Part_and_PartDesign.md index 9408cc6555..05e1663e93 100644 --- a/wiki/translations/fr/Part_and_PartDesign.md +++ b/wiki/translations/fr/Part_and_PartDesign.md @@ -1,5 +1,5 @@ # Part and PartDesign/fr - {{TOCright}} +{{TOCright}} ## Présentation @@ -172,4 +172,7 @@ Les ateliers Part et PartDesign peuvent être utilisés ensemble, avec un peu de {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part and PartDesign/fr diff --git a/wiki/translations/fr/Part_scripting.md b/wiki/translations/fr/Part_scripting.md index 8386f9f338..5b15caf95b 100644 --- a/wiki/translations/fr/Part_scripting.md +++ b/wiki/translations/fr/Part_scripting.md @@ -1,7 +1,4 @@ # Part scripting/fr - - - {{TOCright}} ## Introduction @@ -156,3 +153,6 @@ Rendez-vous sur la page [Scripts pour création topologique](Topological_data_sc }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part scripting/fr diff --git a/wiki/translations/fr/Parts_Library.md b/wiki/translations/fr/Parts_Library.md index ebfb46f171..82ed7a63b3 100644 --- a/wiki/translations/fr/Parts_Library.md +++ b/wiki/translations/fr/Parts_Library.md @@ -1,2 +1,5 @@ # Parts Library/fr 1. REDIRECT [Parts\_Library\_Workbench/fr](Parts_Library_Workbench/fr.md) + +--- +[documentation index](../README.md) > Parts Library/fr diff --git a/wiki/translations/fr/Parts_Library_Workbench.md b/wiki/translations/fr/Parts_Library_Workbench.md index 86b899d19e..2b293c54f0 100644 --- a/wiki/translations/fr/Parts_Library_Workbench.md +++ b/wiki/translations/fr/Parts_Library_Workbench.md @@ -1,6 +1,4 @@ # Parts Library Workbench/fr - - ## Introduction @@ -57,3 +55,6 @@ La bibliothèque est un simple conteneur pour les fichiers FreeCAD (.fcstd) et S [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Parts Library Workbench/fr diff --git a/wiki/translations/fr/Path_3DPocket.md b/wiki/translations/fr/Path_3DPocket.md index 24d9b03f70..f012c82f4d 100644 --- a/wiki/translations/fr/Path_3DPocket.md +++ b/wiki/translations/fr/Path_3DPocket.md @@ -1,2 +1,5 @@ # Path 3DPocket/fr 1. REDIRECT [Path\_Pocket\_3D/fr](Path_Pocket_3D/fr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path 3DPocket/fr diff --git a/wiki/translations/fr/Path_3DSurface.md b/wiki/translations/fr/Path_3DSurface.md index b85d968c2c..5a6be72bda 100644 --- a/wiki/translations/fr/Path_3DSurface.md +++ b/wiki/translations/fr/Path_3DSurface.md @@ -1,2 +1,5 @@ # Path 3DSurface/fr 1. REDIRECT [Path\_Surface/fr](Path_Surface/fr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path 3DSurface/fr diff --git a/wiki/translations/fr/Path_Adaptive.md b/wiki/translations/fr/Path_Adaptive.md index 274e63eeff..53b3900c7b 100644 --- a/wiki/translations/fr/Path_Adaptive.md +++ b/wiki/translations/fr/Path_Adaptive.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Adaptive/fr + ## Description L\'outil [Path Adaptation](Path_Adaptive/fr.md) utilise un algorithme adaptatif pour créer des chemins de compensation et de profilage qui gèrent l\'engagement des outils de coupe de manière à ce que l\'engagement et l\'enlèvement de matière ne dépassent jamais une valeur maximale. @@ -222,4 +224,7 @@ Remarque: il est conseillé de ne pas modifier la propriété Placement des opé {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Adaptive/fr diff --git a/wiki/translations/fr/Path_Area.md b/wiki/translations/fr/Path_Area.md index a390d1ae08..c70b71ed00 100644 --- a/wiki/translations/fr/Path_Area.md +++ b/wiki/translations/fr/Path_Area.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Area/fr + ## Description Vide @@ -162,4 +164,7 @@ Exemple: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Area/fr diff --git a/wiki/translations/fr/Path_Area_Workplane.md b/wiki/translations/fr/Path_Area_Workplane.md index 6a1be236bc..1564595883 100644 --- a/wiki/translations/fr/Path_Area_Workplane.md +++ b/wiki/translations/fr/Path_Area_Workplane.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Area Workplane/fr + ## Description Vide @@ -48,4 +50,7 @@ Exemple: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Area Workplane/fr diff --git a/wiki/translations/fr/Path_Array.md b/wiki/translations/fr/Path_Array.md index d33e5fbe51..face897564 100644 --- a/wiki/translations/fr/Path_Array.md +++ b/wiki/translations/fr/Path_Array.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Array/fr + ## Description Cet outil crée un nouveau chemin en duplicant un autre chemin plusieurs fois avec un intervale donné. @@ -50,4 +52,7 @@ Exemple : {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Array/fr diff --git a/wiki/translations/fr/Path_Comment.md b/wiki/translations/fr/Path_Comment.md index b7fe6f5168..9622b0def6 100644 --- a/wiki/translations/fr/Path_Comment.md +++ b/wiki/translations/fr/Path_Comment.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Comment/fr + ## Description Cet outil insère un commentaire. Lors de l\'export d\'un projet en G-Code, le commentaire sera inclus dans le programme G-Code et peut être lu par les personnes qui regardent le code. Certains contrôleurs de machine les affichent aussi sur leurs consoles. @@ -39,4 +41,7 @@ Exemple : {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Comment/fr diff --git a/wiki/translations/fr/Path_Contour.md b/wiki/translations/fr/Path_Contour.md index bd396e5947..704dd55f8e 100644 --- a/wiki/translations/fr/Path_Contour.md +++ b/wiki/translations/fr/Path_Contour.md @@ -1,2 +1,5 @@ # Path Contour/fr 1. REDIRECT [Path\_Profile/fr](Path_Profile/fr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Contour/fr diff --git a/wiki/translations/fr/Path_Copy.md b/wiki/translations/fr/Path_Copy.md index 6017c65a75..18e75d34db 100644 --- a/wiki/translations/fr/Path_Copy.md +++ b/wiki/translations/fr/Path_Copy.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Copy/fr + ## Description Cet outil crée une copie du chemin sélectionné @@ -32,4 +34,7 @@ La copie reste liée avec le chemin original. Si l\'original change, la copie au {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Copy/fr diff --git a/wiki/translations/fr/Path_Custom.md b/wiki/translations/fr/Path_Custom.md index 5608f0431a..6d081096f7 100644 --- a/wiki/translations/fr/Path_Custom.md +++ b/wiki/translations/fr/Path_Custom.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Custom/fr + ## Description Cet outil insère un objet chemin créé à partir de G-code personnalisé codé à la main. @@ -38,4 +40,7 @@ Notez que les taux d'alimentation seront correctement générés par le post-pro {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Custom/fr diff --git a/wiki/translations/fr/Path_Development_Roadmap.md b/wiki/translations/fr/Path_Development_Roadmap.md index a7c8efea50..56dcd4d901 100644 --- a/wiki/translations/fr/Path_Development_Roadmap.md +++ b/wiki/translations/fr/Path_Development_Roadmap.md @@ -1,10 +1,4 @@ # Path Development Roadmap/fr - - - - - - {{TOCright}} ## Purpose @@ -151,4 +145,7 @@ The following list is not individual bugs but shows how Path is inconsistent in {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Development Roadmap/fr diff --git a/wiki/translations/fr/Path_Dressup.md b/wiki/translations/fr/Path_Dressup.md index c23f2439fc..7135286d6e 100644 --- a/wiki/translations/fr/Path_Dressup.md +++ b/wiki/translations/fr/Path_Dressup.md @@ -1,2 +1,5 @@ # Path Dressup/fr 1. REDIRECT [Path\_Workbench/fr](Path_Workbench/fr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Dressup/fr diff --git a/wiki/translations/fr/Path_DressupBoundary.md b/wiki/translations/fr/Path_DressupBoundary.md index 380a1c52ad..eb98e2b827 100644 --- a/wiki/translations/fr/Path_DressupBoundary.md +++ b/wiki/translations/fr/Path_DressupBoundary.md @@ -1,2 +1,5 @@ # Path DressupBoundary/fr 1. REDIRECT [Path\_DressupPathBoundary/fr](Path_DressupPathBoundary/fr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupBoundary/fr diff --git a/wiki/translations/fr/Path_DressupDogbone.md b/wiki/translations/fr/Path_DressupDogbone.md index ae1504be9d..31ab674260 100644 --- a/wiki/translations/fr/Path_DressupDogbone.md +++ b/wiki/translations/fr/Path_DressupDogbone.md @@ -7,6 +7,8 @@ SeeAlso:[Path Balise d'attache](Path_DressupTag/fr.md), [Path Rampe d'entrée](Path_DressupRampEntry/fr.md), [Path Habillage pour lame rotative](Path_DressupDragKnife/fr.md) --- +# Path DressupDogbone/fr + ## Description Cet outil permet de rajouter des sur-découpes dans le cas d\'angles intérieurs d\'un profil ou pour la decoupe de coins. Une fraise cylindrique ne peut pas usiner un coin aigu sans entrer en collision avec le modèle. Dans certains cas, il peut être préférable de violer le modèle et de s\'assurer que le matériau du coin est enlevé. Ceci est particulièrement nécessaire si les pièces se croisent/s\'imbriquent les unes avec les autres. @@ -34,4 +36,7 @@ Pour déterminer le tracé de correction des coins, il faut un segment droit (G1 {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupDogbone/fr diff --git a/wiki/translations/fr/Path_DressupDragKnife.md b/wiki/translations/fr/Path_DressupDragKnife.md index 5c8640defc..52b786eb85 100644 --- a/wiki/translations/fr/Path_DressupDragKnife.md +++ b/wiki/translations/fr/Path_DressupDragKnife.md @@ -7,6 +7,8 @@ SeeAlso:[Path Balise d'attache](Path_DressupTag/fr.md), [Path Rampe d'entrée](Path_DressupRampEntry/fr.md), [Path Dégagement d'angles](Path_DressupDogbone/fr.md) --- +# Path DressupDragKnife/fr + ## Description Une lame rotative utilise un tranchant sur un pivot pour couper le matériau en feuille comme le vinyle, le carton et le cuir. Le point de coupe n\'est pas aligné avec le centre de la broche mais suit le mouvement de la broche. Parce que le point de coupe est décalé, le chemin doit être modifié pour dépasser le point d\'extrémité de chaque segment. En outre, la lame rotative est incapable de faire des virages extrêmement serrés. Pour compenser, une \'action de coin\' de pivot est insérée et soulève légèrement la lame puis pivote dans la nouvelle position. @@ -30,4 +32,7 @@ Cet outil ajoute au tracé existant des actions de coin et des extensions de bor {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupDragKnife/fr diff --git a/wiki/translations/fr/Path_DressupLeadInOut.md b/wiki/translations/fr/Path_DressupLeadInOut.md index 09c189e2f5..e604faa64c 100644 --- a/wiki/translations/fr/Path_DressupLeadInOut.md +++ b/wiki/translations/fr/Path_DressupLeadInOut.md @@ -7,6 +7,8 @@ SeeAlso:[Path Dégagement d'angles](Path_DressupDogbone/fr.md), [Path Languettes de maintien](Path_DressupTag/fr.md), [Path Rampe d'entrée](Path_DressupRampEntry/fr.md), [Path Habillage pour lame rotative](Path_DressupDragKnife/fr.md) --- +# Path DressupLeadInOut/fr + ## Description ## Utilisation @@ -32,4 +34,7 @@ Add python code here {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupLeadInOut/fr diff --git a/wiki/translations/fr/Path_DressupPathBoundary.md b/wiki/translations/fr/Path_DressupPathBoundary.md index c7d3a0ebf4..fd1e4ea40d 100644 --- a/wiki/translations/fr/Path_DressupPathBoundary.md +++ b/wiki/translations/fr/Path_DressupPathBoundary.md @@ -7,6 +7,8 @@ SeeAlso:[Path Saut de trajectoire](Path_DressupTag/fr.md), [Path Rampe d'entrée](Path_DressupRampEntry.md) --- +# Path DressupPathBoundary/fr + ## Description La limitation de zones permet de restreindre l\'étendue d\'un chemin à une plus petite partie de l\'objet. Par exemple, restreindre un tracé de profil à une seule face ou partie du modèle. @@ -33,4 +35,7 @@ La limitation de zones permet de restreindre l\'étendue d\'un chemin à une plu {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupPathBoundary/fr diff --git a/wiki/translations/fr/Path_DressupRampEntry.md b/wiki/translations/fr/Path_DressupRampEntry.md index 1a8ff4f488..7cfbb39227 100644 --- a/wiki/translations/fr/Path_DressupRampEntry.md +++ b/wiki/translations/fr/Path_DressupRampEntry.md @@ -7,6 +7,8 @@ SeeAlso:[Path Languettes de maintien](Path_DressupTag/fr.md), [Path Dégagement d'angles](Path_DressupDogbone/fr.md), [Path Lame rotative](Path_DressupDragKnife/fr.md) --- +# Path DressupRampEntry/fr + ## Description Cet outil ajoute au tracé existant une rampe d\'entrée à l\'usinage @@ -34,4 +36,7 @@ Cet outil ajoute au tracé existant une rampe d\'entrée à l\'usinage {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupRampEntry/fr diff --git a/wiki/translations/fr/Path_DressupTag.md b/wiki/translations/fr/Path_DressupTag.md index 54f262abc4..9875afef8d 100644 --- a/wiki/translations/fr/Path_DressupTag.md +++ b/wiki/translations/fr/Path_DressupTag.md @@ -7,6 +7,8 @@ SeeAlso:[Path Rampe d'entrée](Path_DressupRampEntry/fr.md), [Path Dégagement d'angles](Path_DressupDogbone/fr.md) , [Path Habillage pour lame rotative](Path_DressupDragKnife/fr.md) --- +# Path DressupTag/fr + ## Description Cet outil ajoute au tracé existant (généralement un tracé de découpe de contour 2D) un certains nombres d\'attaches qui maintiennent la pièce en place. Sans elles, une partie (qui n\'est pas fixée à la base) risque de s\'envoler de manière incontrôlable lors de la coupe finale. Les attaches sont destinées à être cassées à la main (ou à l'aide d'un ciseau) puis ébarbées à la lime. @@ -34,4 +36,7 @@ Les attaches sont automatiquement générées à intervalles réguliers le long {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupTag/fr diff --git a/wiki/translations/fr/Path_Drilling.md b/wiki/translations/fr/Path_Drilling.md index de3a65cfd2..8799afaea5 100644 --- a/wiki/translations/fr/Path_Drilling.md +++ b/wiki/translations/fr/Path_Drilling.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Drilling/fr + ## Description La commande Perçage génère une opération de perçage durant l\'opération. @@ -228,4 +230,7 @@ Exemple : {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Drilling/fr diff --git a/wiki/translations/fr/Path_EditToolsTable.md b/wiki/translations/fr/Path_EditToolsTable.md index cb3788b1d1..16552b8d15 100644 --- a/wiki/translations/fr/Path_EditToolsTable.md +++ b/wiki/translations/fr/Path_EditToolsTable.md @@ -1,2 +1,5 @@ # Path EditToolsTable/fr 1. REDIRECT [Path\_ToolLibraryEdit/fr](Path_ToolLibraryEdit/fr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path EditToolsTable/fr diff --git a/wiki/translations/fr/Path_Engrave.md b/wiki/translations/fr/Path_Engrave.md index 23aaf6fae4..4b2104b69b 100644 --- a/wiki/translations/fr/Path_Engrave.md +++ b/wiki/translations/fr/Path_Engrave.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Engrave/fr + ## Description L\'outil [Path Gravure](Path_Engrave/fr.md) sert principalement à graver une [Draft Forme à partir d\'un texte](Draft_ShapeString/fr.md) sur une pièce, il peut être utile pour d\'autres types de 2D. @@ -98,4 +100,7 @@ Exemple : {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Engrave/fr diff --git a/wiki/translations/fr/Path_ExportTemplate.md b/wiki/translations/fr/Path_ExportTemplate.md index 315970a416..412ada52f1 100644 --- a/wiki/translations/fr/Path_ExportTemplate.md +++ b/wiki/translations/fr/Path_ExportTemplate.md @@ -7,6 +7,8 @@ SeeAlso:[Path Feuille de configuration](Path_SetupSheet/fr.md) --- +# Path ExportTemplate/fr + ## Description L\'exportation des modèles de travail fournit un mécanisme pratique pour enregistrer les définitions de travail couramment utilisées à partir d\'un travail existant. Cela facilite la configuration des futurs travaux, qui sont en grande partie similaires, en permettant l\'importation de modèles de travail pendant le processus de création de travail. @@ -50,4 +52,7 @@ L\'onglet **Édition → Préférences... → Path → Job Preferences, Defaults {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ExportTemplate/fr diff --git a/wiki/translations/fr/Path_FAQ.md b/wiki/translations/fr/Path_FAQ.md index 6e839ed416..14dcd6682a 100644 --- a/wiki/translations/fr/Path_FAQ.md +++ b/wiki/translations/fr/Path_FAQ.md @@ -1,6 +1,4 @@ # Path FAQ/fr - - ## FAQ Atelier Path @@ -272,4 +270,7 @@ This is only a matter of displaying the path. You can change this in the prefere {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FAQ/fr diff --git a/wiki/translations/fr/Path_FacePocket.md b/wiki/translations/fr/Path_FacePocket.md index b2980ac50c..df69afc0ca 100644 --- a/wiki/translations/fr/Path_FacePocket.md +++ b/wiki/translations/fr/Path_FacePocket.md @@ -1,2 +1,5 @@ # Path FacePocket/fr 1. REDIRECT [Path\_Pocket\_Shape/fr](Path_Pocket_Shape/fr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FacePocket/fr diff --git a/wiki/translations/fr/Path_FaceProfile.md b/wiki/translations/fr/Path_FaceProfile.md index 1286e9821f..638e9291df 100644 --- a/wiki/translations/fr/Path_FaceProfile.md +++ b/wiki/translations/fr/Path_FaceProfile.md @@ -1,2 +1,5 @@ # Path FaceProfile/fr 1. REDIRECT [Path\_Profile/fr](Path_Profile/fr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FaceProfile/fr diff --git a/wiki/translations/fr/Path_Fixture.md b/wiki/translations/fr/Path_Fixture.md index 7be65b2c50..c14501ec18 100644 --- a/wiki/translations/fr/Path_Fixture.md +++ b/wiki/translations/fr/Path_Fixture.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Fixture/fr + ## Description Cet outil définit le dispositif de décalage de travail du contrôleur CNC de la machine. @@ -41,4 +43,7 @@ Le code G59 est utilisé pour étendre les capacités disponibles (nombre de poi {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Fixture/fr diff --git a/wiki/translations/fr/Path_FromShapes.md b/wiki/translations/fr/Path_FromShapes.md index e9715c7b5a..05e0021be5 100644 --- a/wiki/translations/fr/Path_FromShapes.md +++ b/wiki/translations/fr/Path_FromShapes.md @@ -1,2 +1,5 @@ # Path FromShapes/fr 1. REDIRECT [Path\_Shape/fr](Path_Shape/fr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FromShapes/fr diff --git a/wiki/translations/fr/Path_GcodeFromShape.md b/wiki/translations/fr/Path_GcodeFromShape.md index a038a48faa..3d24e76dc3 100644 --- a/wiki/translations/fr/Path_GcodeFromShape.md +++ b/wiki/translations/fr/Path_GcodeFromShape.md @@ -1,2 +1,5 @@ # Path GcodeFromShape/fr 1. REDIRECT [Path\_Shape/fr](Path_Shape/fr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path GcodeFromShape/fr diff --git a/wiki/translations/fr/Path_Helix.md b/wiki/translations/fr/Path_Helix.md index cb634f73ec..7f234640d1 100644 --- a/wiki/translations/fr/Path_Helix.md +++ b/wiki/translations/fr/Path_Helix.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Helix/fr + ## Description La commande [Path Parcours hélicoïdal](Path_Helix/fr.md) insère une opération d\'interpolation hélicoïdale à la tâche. L\'interpolation hélicoïdale dans le sens des aiguilles d\'une montre produit des commandes G-Code (G2). A l\'inverse, des commandes G-Code (G3). Pourcentage de dépassement spécifie le dépassement concentrique en pourcentage du diamètre de l\'outil. @@ -55,4 +57,7 @@ Exemple : {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Helix/fr diff --git a/wiki/translations/fr/Path_Inspect.md b/wiki/translations/fr/Path_Inspect.md index f5d9c63a84..b7fd02969c 100644 --- a/wiki/translations/fr/Path_Inspect.md +++ b/wiki/translations/fr/Path_Inspect.md @@ -7,6 +7,8 @@ Shortcut:**P** **I** --- +# Path Inspect/fr + ## Description Cet outil permet l\'inspection du G-code interne FreeCAD d\'une opération Path. @@ -32,4 +34,7 @@ Cet outil permet l\'inspection du G-code interne FreeCAD d\'une opération Path. {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Inspect/fr diff --git a/wiki/translations/fr/Path_Job.md b/wiki/translations/fr/Path_Job.md index e181c3a801..192a78fbff 100644 --- a/wiki/translations/fr/Path_Job.md +++ b/wiki/translations/fr/Path_Job.md @@ -7,6 +7,8 @@ Shortcut:**P** **J** --- +# Path Job/fr + ## Description L\'outil Travail (Tâche) crée un nouvel objet Travail dans le document actif. L\'objet Travail contient les informations suivantes: @@ -78,4 +80,7 @@ Si vous avez une tâche qui implique plus d\'une opération d\'usinage, vous pou {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Job/fr diff --git a/wiki/translations/fr/Path_MillFace.md b/wiki/translations/fr/Path_MillFace.md index 8986d537f4..616d4ebf25 100644 --- a/wiki/translations/fr/Path_MillFace.md +++ b/wiki/translations/fr/Path_MillFace.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path MillFace/fr + ## Description L\'outil [Path Surfaçage](Path_MillFace/fr.md) crée une trajectoire pour effectuer une opération de surfaçage sur une surface horizontale. Cette opération est généralement utilisée : @@ -216,4 +218,7 @@ Exemple : {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path MillFace/fr diff --git a/wiki/translations/fr/Path_OpActive.md b/wiki/translations/fr/Path_OpActive.md index bf5045754f..6bce54270e 100644 --- a/wiki/translations/fr/Path_OpActive.md +++ b/wiki/translations/fr/Path_OpActive.md @@ -1,2 +1,5 @@ # Path OpActive/fr 1. REDIRECT [Path\_OpActiveToggle/fr](Path_OpActiveToggle/fr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path OpActive/fr diff --git a/wiki/translations/fr/Path_OpActiveToggle.md b/wiki/translations/fr/Path_OpActiveToggle.md index 4881208a15..839edd9e64 100644 --- a/wiki/translations/fr/Path_OpActiveToggle.md +++ b/wiki/translations/fr/Path_OpActiveToggle.md @@ -7,6 +7,8 @@ Shortcut:**P** **X ** --- +# Path OpActiveToggle/fr + ## Description L\'outil ** [Path Activation de l'opération](Path_OpActiveToggle/fr.md)** dans l\'[Atelier Path](Path_Workbench/fr.md) est utilisé pour basculer l\'état actif d\'une opération de chemin existante. Cet outil n\'est pas disponible, icône gris clair, tant que vous n\'avez pas créé une ou plusieurs opérations de chemin. Une fois que votre [Path Tâche](Path_Job/fr.md) a au moins une opération de chemin, l\'icône passe colorée indiquant qu\'elle est disponible pour utilisation. @@ -64,4 +66,7 @@ Exemple : {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path OpActiveToggle/fr diff --git a/wiki/translations/fr/Path_Pocket_3D.md b/wiki/translations/fr/Path_Pocket_3D.md index 3035487ace..aff34bbfdd 100644 --- a/wiki/translations/fr/Path_Pocket_3D.md +++ b/wiki/translations/fr/Path_Pocket_3D.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Pocket 3D/fr + ## Description Cette commande insère un chemin [Poche 3D](Path_Pocket_3D/fr.md) dans la tâche. Cette opération prend en compte la surface inférieure de la poche, ainsi que les parois sélectionnées qui ne sont pas verticales. Dans son état actuel, cette opération est utilisée pour dégrossir une poche avec des parois non verticales et/ou un fond non horizontal. Une technique de finition courante consiste à utiliser une fraise à bout sphérique avec l\'opération expérimentale [Surface 3D](Path_3DSurface/fr.md). Exemple de l\'opération Poche 3D utilisée pour dégager un porte-piles cylindrique. @@ -211,4 +213,7 @@ Exemple : {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Pocket 3D/fr diff --git a/wiki/translations/fr/Path_Pocket_Shape.md b/wiki/translations/fr/Path_Pocket_Shape.md index 0d76b7600a..1dc3d4ebe9 100644 --- a/wiki/translations/fr/Path_Pocket_Shape.md +++ b/wiki/translations/fr/Path_Pocket_Shape.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Pocket Shape/fr + ## Description Cet outil crée une opération de poche à partir des faces inférieures ou des parois sélectionnées d\'une ou de plusieurs poches de l\'objet. @@ -231,4 +233,7 @@ Remarque: il est conseillé de ne pas modifier la propriété Placement des opé {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Pocket Shape/fr diff --git a/wiki/translations/fr/Path_Post.md b/wiki/translations/fr/Path_Post.md index d6122efd1c..66eb5f6d82 100644 --- a/wiki/translations/fr/Path_Post.md +++ b/wiki/translations/fr/Path_Post.md @@ -7,6 +7,8 @@ Shortcut:**P** **P** --- +# Path Post/fr + ## Description Le bouton ** [Post-traitement](Path_Post/fr.md)** exporte la ** [Path Tâche](Path_Job/fr.md)** sélectionnée vers un fichier G-code. @@ -117,4 +119,7 @@ N\'utilisez **pas** le menu **File** → **Export**\'\'\' pour exporter vers le {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Post/fr diff --git a/wiki/translations/fr/Path_Postprocessor_Customization.md b/wiki/translations/fr/Path_Postprocessor_Customization.md index 67e139678a..142ec0ed56 100644 --- a/wiki/translations/fr/Path_Postprocessor_Customization.md +++ b/wiki/translations/fr/Path_Postprocessor_Customization.md @@ -1,10 +1,4 @@ # Path Postprocessor Customization/fr - - - - - - {{TOCright}} ## Introduction @@ -109,4 +103,7 @@ Vous verrez que les deux fonctions appellent également la fonction \"linenumber {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Postprocessor Customization/fr diff --git a/wiki/translations/fr/Path_Preferences.md b/wiki/translations/fr/Path_Preferences.md index 510f8c9a31..28fa64ca8b 100644 --- a/wiki/translations/fr/Path_Preferences.md +++ b/wiki/translations/fr/Path_Preferences.md @@ -1,10 +1,4 @@ # Path Preferences/fr - - - - - - {{TOCright}} ## Vue d\'ensemble @@ -46,3 +40,6 @@ Il y a trois sections: Général, Post-processeur et Configuration. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Preferences/fr diff --git a/wiki/translations/fr/Path_Profile.md b/wiki/translations/fr/Path_Profile.md index 6ded477f14..13de2a22c9 100644 --- a/wiki/translations/fr/Path_Profile.md +++ b/wiki/translations/fr/Path_Profile.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Path Profile/fr + ## Description L\'outil ** [Profile](Path_Profile/fr.md)** crée une opération de contour basée sur les fonctions sélectionnées du modèle. L\'outil a été introduit dans la version 0.19. Il propose trois opérations qui étaient gérées par des outils distincts dans les versions précédentes. @@ -290,4 +292,7 @@ Exemple: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Profile/fr diff --git a/wiki/translations/fr/Path_ProfileEdges.md b/wiki/translations/fr/Path_ProfileEdges.md index c38c735582..c8ae6d2ffe 100644 --- a/wiki/translations/fr/Path_ProfileEdges.md +++ b/wiki/translations/fr/Path_ProfileEdges.md @@ -1,2 +1,5 @@ # Path ProfileEdges/fr 1. REDIRECT [Path\_Profile/fr](Path_Profile/fr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ProfileEdges/fr diff --git a/wiki/translations/fr/Path_ProfileFace.md b/wiki/translations/fr/Path_ProfileFace.md index 7c6c459aa7..4597d72697 100644 --- a/wiki/translations/fr/Path_ProfileFace.md +++ b/wiki/translations/fr/Path_ProfileFace.md @@ -1,2 +1,5 @@ # Path ProfileFace/fr 1. REDIRECT [Path\_Profile/fr](Path_Profile/fr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ProfileFace/fr diff --git a/wiki/translations/fr/Path_Project.md b/wiki/translations/fr/Path_Project.md index 73e39ad37a..e891143429 100644 --- a/wiki/translations/fr/Path_Project.md +++ b/wiki/translations/fr/Path_Project.md @@ -1,2 +1,5 @@ # Path Project/fr 1. REDIRECT [Path\_Job/fr](Path_Job/fr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Project/fr diff --git a/wiki/translations/fr/Path_Sanity.md b/wiki/translations/fr/Path_Sanity.md index f6588fb97b..2928eb38f8 100644 --- a/wiki/translations/fr/Path_Sanity.md +++ b/wiki/translations/fr/Path_Sanity.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Path Sanity/fr + ## Description De nombreux utilisateurs de Path sont des amateurs et des bricoleurs. En tant que tels, ils utilisent leurs machines CNC pour exécuter le G-code qu\'ils ont configuré et généré eux-mêmes. Ce n\'est pas le cas de la plupart des utilisateurs professionnels/commerciaux. Dans les ateliers professionnels, les personnes chargées de créer le G-code (programmeurs CNC) et celles qui l\'exécutent sur les machines (opérateurs CNC) sont différentes. @@ -80,4 +82,7 @@ Asciidoctor est un processeur de texte open-source rapide pour la conversion d\' {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Sanity/fr diff --git a/wiki/translations/fr/Path_SelectLoop.md b/wiki/translations/fr/Path_SelectLoop.md index 96812ae5a5..948c00987c 100644 --- a/wiki/translations/fr/Path_SelectLoop.md +++ b/wiki/translations/fr/Path_SelectLoop.md @@ -7,6 +7,8 @@ Shortcut:**P** **L** --- +# Path SelectLoop/fr + ## Description La commande ** [Terminer une boucle](Path_SelectLoop/fr.md)** complète une sélection d\'arêtes formant une boucle. @@ -30,4 +32,7 @@ La commande ** [Terminer une bo {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SelectLoop/fr diff --git a/wiki/translations/fr/Path_SetupSheet.md b/wiki/translations/fr/Path_SetupSheet.md index 628aa0b35a..570c0e36b3 100644 --- a/wiki/translations/fr/Path_SetupSheet.md +++ b/wiki/translations/fr/Path_SetupSheet.md @@ -1,10 +1,4 @@ # Path SetupSheet/fr - - - - - - {{TOCright}} ## Description @@ -65,4 +59,7 @@ Les autres valeurs de la Feuille de configuration peuvent être référencées d {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SetupSheet/fr diff --git a/wiki/translations/fr/Path_Shape.md b/wiki/translations/fr/Path_Shape.md index ca555f9799..a6b4717ba5 100644 --- a/wiki/translations/fr/Path_Shape.md +++ b/wiki/translations/fr/Path_Shape.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Shape/fr + ## Description Path Parcours à partir de formes (ou Path Shape) ne correspond pas au déroulement Path actuel. Pour cette raison, il est déplacé vers les fonctionnalités expérimentales. @@ -121,4 +123,7 @@ Path.fromShapes(shapes, start=Vector(), return_end=False arc_plane=1, sort_mode= {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Shape/fr diff --git a/wiki/translations/fr/Path_SimpleCopy.md b/wiki/translations/fr/Path_SimpleCopy.md index cd9a5577d6..ae94e78488 100644 --- a/wiki/translations/fr/Path_SimpleCopy.md +++ b/wiki/translations/fr/Path_SimpleCopy.md @@ -7,6 +7,8 @@ SeeAlso:[Path Copie](Path_Copy/fr.md) --- +# Path SimpleCopy/fr + ## Description Cet outil crée une copie non-paramétrique d\'un chemin donné. @@ -27,4 +29,7 @@ Cet outil crée une copie non-paramétrique d\'un chemin donné. {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SimpleCopy/fr diff --git a/wiki/translations/fr/Path_Simulator.md b/wiki/translations/fr/Path_Simulator.md index fcac67b481..506272e612 100644 --- a/wiki/translations/fr/Path_Simulator.md +++ b/wiki/translations/fr/Path_Simulator.md @@ -8,6 +8,8 @@ SeeAlso:[Path Inspecteur de G-code](Path_Inspect/fr.md) --- +# Path Simulator/fr + ## Description Cet outil permet de simuler la tâche Path en balayant les modèles 3D des outils utilisés dans chaque opération, le long des trajectoires du G-code, en soustrayant le matériau du stock, là où le stock et l\'outil se chevauchent, ce qui permet de visualiser le travail. Cela permet de détecter et d\'isoler les erreurs avant d\'exécuter le travail sur une fraiseuse. @@ -47,4 +49,7 @@ Cet outil permet de simuler la tâche Path en balayant les modèles 3D des outil {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Simulator/fr diff --git a/wiki/translations/fr/Path_Slot.md b/wiki/translations/fr/Path_Slot.md index e99293d744..ecd2c55aa6 100644 --- a/wiki/translations/fr/Path_Slot.md +++ b/wiki/translations/fr/Path_Slot.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Path Slot/fr + ## Description Cet outil crée une opération de rainurage simple en utilisant différentes méthodes de saisie. Les entrées comprennent: @@ -253,4 +255,7 @@ Exemple: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Slot/fr diff --git a/wiki/translations/fr/Path_Stop.md b/wiki/translations/fr/Path_Stop.md index f41ca8b6ac..797dc3ef30 100644 --- a/wiki/translations/fr/Path_Stop.md +++ b/wiki/translations/fr/Path_Stop.md @@ -6,6 +6,8 @@ Workbenches:[Path](Path_Workbench/fr.md) --- +# Path Stop/fr + ## Description Cet outil insère une commande d\'arrêt (M1). Cette commande suspendra le programme en cours d\'exécution sur le contrôleur CNC dans l\'attente d\'une nouvelle action de l\'utilisateur. @@ -27,4 +29,7 @@ Cet outil insère une commande d\'arrêt (M1). Cette commande suspendra le progr {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Stop/fr diff --git a/wiki/translations/fr/Path_Surface.md b/wiki/translations/fr/Path_Surface.md index 94ebd824f5..63b41c6013 100644 --- a/wiki/translations/fr/Path_Surface.md +++ b/wiki/translations/fr/Path_Surface.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Path Surface/fr + ## Description Cet outil crée une nouvelle opération ** [Surface 3D](Path_3DSurface/fr.md)** qui est capable de générer des trajectoires G-Code pour toute la surface supérieure d\'un modèle 3D (ou est capable de travailler avec des faces sélectionnées) et permet d\'éviter les faces. Cette opération offre plusieurs motifs de coupe: ligne, zigzag, circulaire, zigzag circulaire, décalage et spirale (similaire à un motif adaptatif). Depuis la version 0.19, cette opération propose de nombreuses personnalisations pour permettre une plus grande productivité. @@ -418,4 +420,7 @@ Remarque: il est conseillé de ne pas modifier la propriété Placement des opé {{Path Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Surface/fr diff --git a/wiki/translations/fr/Path_ToolBit.md b/wiki/translations/fr/Path_ToolBit.md index ac4ad5fe02..1cfbe6fb7a 100644 --- a/wiki/translations/fr/Path_ToolBit.md +++ b/wiki/translations/fr/Path_ToolBit.md @@ -1,10 +1,4 @@ # Path ToolBit/fr - - - - - - {{TOCright}} ## Description @@ -56,4 +50,7 @@ Dans l\'interface graphique de FreeCAD, le gestionnaire de bibliothèque Path to {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolBit/fr diff --git a/wiki/translations/fr/Path_ToolBitDock.md b/wiki/translations/fr/Path_ToolBitDock.md index 462aa9fb56..881759c615 100644 --- a/wiki/translations/fr/Path_ToolBitDock.md +++ b/wiki/translations/fr/Path_ToolBitDock.md @@ -9,6 +9,8 @@ SeeAlso:[Path Gestionnaire d'outils](Path_ToolBitLibraryOpen/fr.md), [Path Tools](Path_Tools/fr.md), [Path ToolBit](Path_ToolBit/fr.md) --- +# Path ToolBitDock/fr + ## Description ![](images/Toolbit_Dock.png ) @@ -45,4 +47,7 @@ Un bouton de gestion en haut à droite (4) permet à l\'utilisateur de lancer le {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolBitDock/fr diff --git a/wiki/translations/fr/Path_ToolBitLibraryOpen.md b/wiki/translations/fr/Path_ToolBitLibraryOpen.md index 82226be3e4..12d47d3d19 100644 --- a/wiki/translations/fr/Path_ToolBitLibraryOpen.md +++ b/wiki/translations/fr/Path_ToolBitLibraryOpen.md @@ -8,6 +8,8 @@ SeeAlso:[Path Sélecteur d'outil](Path_ToolBitDock/fr.md), [Path Outils](Path_Tools/fr.md), [Path ToolBit](Path_ToolBit/fr.md) --- +# Path ToolBitLibraryOpen/fr + ## Description Le ** [Tool xxxxx](Path_ToolBitLibraryOpen.md) @@ -88,4 +90,7 @@ C. Double-cliquez n\'importe où ailleurs dans la ligne pour ouvrir le panneau d {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolBitLibraryOpen/fr diff --git a/wiki/translations/fr/Path_ToolBit_Library.md b/wiki/translations/fr/Path_ToolBit_Library.md index e1d27561a7..76fdd23da2 100644 --- a/wiki/translations/fr/Path_ToolBit_Library.md +++ b/wiki/translations/fr/Path_ToolBit_Library.md @@ -1,10 +1,4 @@ # Path ToolBit Library/fr - - - - - - {{TOCright}} ## Description @@ -56,4 +50,7 @@ Une bibliothèque de toolbits peut être exportée pour créer une [LinuxCNC Tab {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolBit Library/fr diff --git a/wiki/translations/fr/Path_ToolController.md b/wiki/translations/fr/Path_ToolController.md index 0f1d51299a..d9e055d19b 100644 --- a/wiki/translations/fr/Path_ToolController.md +++ b/wiki/translations/fr/Path_ToolController.md @@ -1,10 +1,4 @@ # Path ToolController/fr - - - - - - {{TOCright}} ## Description @@ -29,4 +23,7 @@ Tool Number {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolController/fr diff --git a/wiki/translations/fr/Path_ToolLibraryEdit.md b/wiki/translations/fr/Path_ToolLibraryEdit.md index 61dedeaf14..85ba9a44b8 100644 --- a/wiki/translations/fr/Path_ToolLibraryEdit.md +++ b/wiki/translations/fr/Path_ToolLibraryEdit.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path ToolLibraryEdit/fr + ## Description Le ** [gestionnaire du magasin d'outils](Path_ToolLibraryEdit/fr.md)** permet d\'éditer les différents outils de la collection contenue dans l\'objet machine d\'une ** [Tâche](Path_Job/fr.md)**. Ce magasin d\'outils est utilisé par les différentes opérations contenues dans le projet pour obtenir les informations nécessaires sur l\'outil actuel. @@ -50,4 +52,7 @@ La manipulation est simple: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolLibraryEdit/fr diff --git a/wiki/translations/fr/Path_ToolShape.md b/wiki/translations/fr/Path_ToolShape.md index da02003b9c..37afafb43d 100644 --- a/wiki/translations/fr/Path_ToolShape.md +++ b/wiki/translations/fr/Path_ToolShape.md @@ -1,10 +1,4 @@ # Path ToolShape/fr - - - - - - {{TOCright}} ## Description @@ -95,4 +89,7 @@ Remarques importantes : {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolShape/fr diff --git a/wiki/translations/fr/Path_Tools.md b/wiki/translations/fr/Path_Tools.md index e5ae3096f1..6424fe4417 100644 --- a/wiki/translations/fr/Path_Tools.md +++ b/wiki/translations/fr/Path_Tools.md @@ -1,10 +1,4 @@ # Path Tools/fr - - - - - - {{TOCright}} ## Description @@ -135,4 +129,7 @@ Une fois que la forme de l\'outil (profil) souhaitée existe, vous devez créer {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Tools/fr diff --git a/wiki/translations/fr/Path_Vcarve.md b/wiki/translations/fr/Path_Vcarve.md index 984e20f5c1..77cbef166c 100644 --- a/wiki/translations/fr/Path_Vcarve.md +++ b/wiki/translations/fr/Path_Vcarve.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Path Vcarve/fr + ## Description L\'outil [Path Gravure en V](Path_Vcarve/fr.md) est principalement destiné à la gravure de la ligne centrale d\'une [Draft Formes à partir texte](Draft_ShapeString/fr.md) sur une pièce. Cependant, cela peut être utile pour d\'autres types de 2D. @@ -154,4 +156,7 @@ Exemple : {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Vcarve/fr diff --git a/wiki/translations/fr/Path_Walkthrough_for_the_Impatient.md b/wiki/translations/fr/Path_Walkthrough_for_the_Impatient.md index b45b3e5ac6..5352bdfeb7 100644 --- a/wiki/translations/fr/Path_Walkthrough_for_the_Impatient.md +++ b/wiki/translations/fr/Path_Walkthrough_for_the_Impatient.md @@ -1,7 +1,4 @@ # Path Walkthrough for the Impatient/fr - - - {{TutorialInfo/fr |Topic=Atelier Path |Level=Débutant/modéré @@ -152,4 +149,7 @@ La dernière étape pour générer le G-code pour la fraiseuse cible consiste à {{Tutorials navi -}} {{Path Tools navi}} +}} {{Path Tools navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Walkthrough for the Impatient/fr diff --git a/wiki/translations/fr/Path_Waterline.md b/wiki/translations/fr/Path_Waterline.md index 4f1fa0261a..ead51fdecb 100644 --- a/wiki/translations/fr/Path_Waterline.md +++ b/wiki/translations/fr/Path_Waterline.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Path Waterline/fr + ## Description Cet outil crée une nouvelle opération Lignes de niveau. A partir de 0.19\_pre, l\'opération Lignes de niveau fonctionne sur l\'ensemble du modèle pour générer le G-code de la tâche. Actuellement, dans les paramètres de l\'opération, il n\'y a pas de fonctionnalité pour sélectionner des zones, des faces ou des régions spécifiques du modèle. @@ -260,4 +262,7 @@ Remarque : il est conseillé de ne pas modifier la propriété Placement des op {{Path Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Waterline/fr diff --git a/wiki/translations/fr/Path_Workbench.md b/wiki/translations/fr/Path_Workbench.md index 6ec9b9603f..15b52f8ded 100644 --- a/wiki/translations/fr/Path_Workbench.md +++ b/wiki/translations/fr/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/fr - - - - - -Icône de l\'atelier Path +# Icône de l\'atelier Path Path Workbench/fr {{TOCright}} @@ -225,3 +219,6 @@ Voir la page [Path Ecrire un script](Path_scripting/fr.md). }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench/fr diff --git a/wiki/translations/fr/Path_experimental.md b/wiki/translations/fr/Path_experimental.md index e6f2449a24..03e5c38b39 100644 --- a/wiki/translations/fr/Path_experimental.md +++ b/wiki/translations/fr/Path_experimental.md @@ -1,7 +1,4 @@ # Path experimental/fr - - - {{TOCright}} ## Description @@ -41,3 +38,6 @@ En savoir plus sur les commandes expérimentales spécifiques sur les [pages du {{Path Tools navi}} [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path experimental/fr diff --git a/wiki/translations/fr/Path_fourth_axis.md b/wiki/translations/fr/Path_fourth_axis.md index fe2aeb4068..5692a8b523 100644 --- a/wiki/translations/fr/Path_fourth_axis.md +++ b/wiki/translations/fr/Path_fourth_axis.md @@ -1,10 +1,4 @@ # Path fourth axis/fr - - - - - - {{TOCright}} ## Description @@ -69,4 +63,7 @@ Il n\'y a actuellement aucune intégration GUI des paramètres de rotation du 4 {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path fourth axis/fr diff --git a/wiki/translations/fr/Path_scripting.md b/wiki/translations/fr/Path_scripting.md index e2f99f90b1..6c25223df1 100644 --- a/wiki/translations/fr/Path_scripting.md +++ b/wiki/translations/fr/Path_scripting.md @@ -1,10 +1,4 @@ # Path scripting/fr - - - - - - {{TOCright}} ## Introduction @@ -447,3 +441,6 @@ doc.recompute() }} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path scripting/fr diff --git a/wiki/translations/fr/Pivy.md b/wiki/translations/fr/Pivy.md index 751e1bc680..6cb95a0b0f 100644 --- a/wiki/translations/fr/Pivy.md +++ b/wiki/translations/fr/Pivy.md @@ -1,7 +1,4 @@ # Pivy/fr - - - {{TOCright}} ## Introduction @@ -169,3 +166,6 @@ Ces liens fournissent une documentation de référence pour Coin v3.x. Les diff }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Pivy/fr diff --git a/wiki/translations/fr/Placement.md b/wiki/translations/fr/Placement.md index c322e10700..61b7f27cc3 100644 --- a/wiki/translations/fr/Placement.md +++ b/wiki/translations/fr/Placement.md @@ -1,6 +1,4 @@ # Placement/fr - - ## Description **Placement** (positionnement en français) est la manière dont FreeCAD spécifie l\'emplacement et la position (orientation) d\'un objet dans l\'espace. Le placement peut être spécifié sous plusieurs formes et manipulé via un [script](Python_scripting_tutorial/fr#Vecteurs_et_placements.md), l\'[Éditeur de propriétés](Property_editor/fr.md) ou en sélectionnant **Edition → Positionnement...** pour ouvrir le [Panneau des tâches de placement](Std_Placement/fr.md). @@ -236,5 +234,5 @@ Pour rendre le placement de \"Sketch\" égal à celui de \"Cylinder\", vous deve - Ce tutoriel : [Aéroplane](Aeroplane/fr.md) traite largement des mécanismes de modifications de position d\'un objet. - - +--- +[documentation index](../README.md) > Placement/fr diff --git a/wiki/translations/fr/Placement_API.md b/wiki/translations/fr/Placement_API.md index 60bd6ef85b..5c6c4e1b85 100644 --- a/wiki/translations/fr/Placement_API.md +++ b/wiki/translations/fr/Placement_API.md @@ -1,5 +1,5 @@ # Placement API/fr - **(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir [Source documentation](Source_documentation/fr.md).** +**(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir [Source documentation](Source_documentation/fr.md).** Dans FreeCAD,le Placement définit la position et la rotation d\'un objet. Le concept de placement est expliqué en détail ici: [ Placement](Placement.md). @@ -23,3 +23,6 @@ myObj.Placement = pl [[Category:API\]\] [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Placement API/fr diff --git a/wiki/translations/fr/Plot_Axes.md b/wiki/translations/fr/Plot_Axes.md index b602babc1c..d3156d4770 100644 --- a/wiki/translations/fr/Plot_Axes.md +++ b/wiki/translations/fr/Plot_Axes.md @@ -6,6 +6,8 @@ Workbenches:[Plot](Plot_Module/fr.md) --- +# Plot Axes/fr + ## Description Le module standard graphique fournit déjà un outil de base pour contrôler les axes du tracé mais cet outil est clairement insuffisant lorsque des tracés multi-axes doivent être manipulés, comme c\'est le cas dans le [Tutoriel graphique à plusieurs axes](Plot_MultiAxes_tutorial/fr.md). Pour surmonter cette limitation, vous pouvez installer l\' [atelier Plot](Plot_Workbench/fr.md) en utilisant le [Gestionnaire d\'Addon](Std_AddonMgr/fr.md), ainsi un outil plus complet pour éditer les axes du tracé sera disponible. @@ -47,3 +49,6 @@ Enfin, vous pouvez définir les valeurs minimales et maximales prises en compte }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Axes/fr diff --git a/wiki/translations/fr/Plot_Basic_tutorial.md b/wiki/translations/fr/Plot_Basic_tutorial.md index 189aa2841b..5759d6332f 100644 --- a/wiki/translations/fr/Plot_Basic_tutorial.md +++ b/wiki/translations/fr/Plot_Basic_tutorial.md @@ -1,7 +1,4 @@ # Plot Basic tutorial/fr - - -
@@ -398,3 +395,6 @@ Vous pouvez définir la taille de l\'image de sortie en pouces (inches), par exe }} {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Basic tutorial/fr diff --git a/wiki/translations/fr/Plot_Grid.md b/wiki/translations/fr/Plot_Grid.md index aaa081c738..355961c458 100644 --- a/wiki/translations/fr/Plot_Grid.md +++ b/wiki/translations/fr/Plot_Grid.md @@ -6,6 +6,8 @@ Workbenches:[Plot](Plot_Module/fr.md) --- +# Plot Grid/fr + ## Description Cet outil permet à l\'utilisateur d\'activer/désactiver les lignes de grille sur un graphique spécifique. @@ -27,3 +29,6 @@ Cet outil agit sur le jeu d\'axes actif. Dans le cas de tracés multi-axes, vous }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Grid/fr diff --git a/wiki/translations/fr/Plot_Labels.md b/wiki/translations/fr/Plot_Labels.md index 837e2e8681..5a13280b79 100644 --- a/wiki/translations/fr/Plot_Labels.md +++ b/wiki/translations/fr/Plot_Labels.md @@ -6,6 +6,8 @@ Workbenches:[Plot](Plot_Module/fr.md) --- +# Plot Labels/fr + ## Description Cet outil permet à l\'utilisateur de modifier les étiquettes du titre et des axes, ainsi que leur taille de police. @@ -36,3 +38,6 @@ Sélectionnez l\'onglet du tracé que vous souhaitez modifier, puis exécutez ce }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Labels/fr diff --git a/wiki/translations/fr/Plot_Legend.md b/wiki/translations/fr/Plot_Legend.md index 48e46633bb..00e1d1b3d9 100644 --- a/wiki/translations/fr/Plot_Legend.md +++ b/wiki/translations/fr/Plot_Legend.md @@ -6,6 +6,8 @@ Workbenches:[Plot](Plot_Module/fr.md) --- +# Plot Legend/fr + ## Description Cet outil permet à l\'utilisateur d\'activer/désactiver la légende des séries de données sur un graphique spécifique. @@ -27,3 +29,6 @@ N\'oubliez pas que les styles et les étiquettes des séries de données peuvent }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Legend/fr diff --git a/wiki/translations/fr/Plot_Module.md b/wiki/translations/fr/Plot_Module.md index 692b52b854..b458cfda9b 100644 --- a/wiki/translations/fr/Plot_Module.md +++ b/wiki/translations/fr/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/fr - - -Icône de l\'atelier Plot +# Icône de l\'atelier Plot Plot Module/fr {{TOCright}} @@ -64,3 +61,6 @@ Puisque l\'atelier Plot est une couche sur `matplotlib`, vous êtes libre d\'uti }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/fr diff --git a/wiki/translations/fr/Plot_MultiAxes_tutorial.md b/wiki/translations/fr/Plot_MultiAxes_tutorial.md index 6babce32e6..46cc8d2d44 100644 --- a/wiki/translations/fr/Plot_MultiAxes_tutorial.md +++ b/wiki/translations/fr/Plot_MultiAxes_tutorial.md @@ -1,7 +1,4 @@ # Plot MultiAxes tutorial/fr - - - {{TutorialInfo/fr |Topic=Atelier Plot |Level=Intermediaire @@ -345,3 +342,6 @@ Vous pouvez maintenant enregistrer votre travail. Voir [tutoriel précédent](Pl }} {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot MultiAxes tutorial/fr diff --git a/wiki/translations/fr/Plot_Positions.md b/wiki/translations/fr/Plot_Positions.md index 3179feeaa9..ba9a155b90 100644 --- a/wiki/translations/fr/Plot_Positions.md +++ b/wiki/translations/fr/Plot_Positions.md @@ -6,6 +6,8 @@ Workbenches:[Plot](Plot_Module/fr.md) --- +# Plot Positions/fr + ## Description Cet outil permet à l\'utilisateur de modifier la position de certains éléments comme les titres, les étiquettes des axes et la légende. @@ -32,3 +34,6 @@ Sélectionnez l\'onglet du graphique que vous souhaitez modifier, puis exécutez }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Positions/fr diff --git a/wiki/translations/fr/Plot_Save.md b/wiki/translations/fr/Plot_Save.md index 9a70a6af34..c195cc3331 100644 --- a/wiki/translations/fr/Plot_Save.md +++ b/wiki/translations/fr/Plot_Save.md @@ -6,6 +6,8 @@ Workbenches:[Plot](Plot_Module/fr.md) --- +# Plot Save/fr + ## Description Le module standard plot fournit déjà un outil minimal pour sauvegarder les graphiques . Si vous installez l\' [atelier Plot](Plot_Workbench/fr.md) en utilisant le [Gestionnaire d\'Addon](Std_AddonMgr/fr.md), un outil plus complet pour sauvegarder le graphe actif sera disponible. Avec cet outil, vous pouvez également sélectionner la taille et la résolution de l\'image de sortie. @@ -33,3 +35,6 @@ Sélectionnez l\'onglet du graphique que vous voulez sauvegarder, et lancez cet }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Save/fr diff --git a/wiki/translations/fr/Plot_Series.md b/wiki/translations/fr/Plot_Series.md index 76cc6ea5f2..9a31497e64 100644 --- a/wiki/translations/fr/Plot_Series.md +++ b/wiki/translations/fr/Plot_Series.md @@ -6,6 +6,8 @@ Workbenches:[Plot](Plot_Module/fr.md) --- +# Plot Series/fr + ## Description Le module plot standard fournit déjà un outil permettant de modifier le style des séries du graphique . Mais si vous installez l\' [atelier Plot](Plot_Workbench/fr.md) en utilisant le [Gestionnaire d\'Addon](Std_AddonMgr.md), un outil plus complet et plus simple sera disponible. @@ -37,3 +39,6 @@ Sélectionnez l\'onglet du graphique que vous voulez modifier et exécutez cet o }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Series/fr diff --git a/wiki/translations/fr/Plot_Workbench.md b/wiki/translations/fr/Plot_Workbench.md index 6391a385cb..810dc9e3a3 100644 --- a/wiki/translations/fr/Plot_Workbench.md +++ b/wiki/translations/fr/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/fr 1. REDIRECT [Plot Module/fr](Plot_Module/fr.md) + +--- +[documentation index](../README.md) > Plot Workbench/fr diff --git a/wiki/translations/fr/Plugin_Loader.md b/wiki/translations/fr/Plugin_Loader.md index 3a45f069aa..aab5009b79 100644 --- a/wiki/translations/fr/Plugin_Loader.md +++ b/wiki/translations/fr/Plugin_Loader.md @@ -1,2 +1,5 @@ # Plugin Loader/fr 1. REDIRECT [Std\_AddonMgr/fr](Std_AddonMgr/fr.md) + +--- +[documentation index](../README.md) > Plugin Loader/fr diff --git a/wiki/translations/fr/Points_Convert.md b/wiki/translations/fr/Points_Convert.md index 0ad84bce40..a06bd80ee3 100644 --- a/wiki/translations/fr/Points_Convert.md +++ b/wiki/translations/fr/Points_Convert.md @@ -6,6 +6,8 @@ Workbenches:[Points](Points_Workbench/fr.md) --- +# Points Convert/fr + ## Description La commande **Points Conversion** crée des nuages de points à partir d\'objets de forme ou d\'objets maillés. @@ -55,4 +57,7 @@ Les objets nuage de points sont des objets [App GeoFeature](App_GeoFeature/fr.md {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Convert/fr diff --git a/wiki/translations/fr/Points_Export.md b/wiki/translations/fr/Points_Export.md index a9cbe798cc..8a5306f32c 100644 --- a/wiki/translations/fr/Points_Export.md +++ b/wiki/translations/fr/Points_Export.md @@ -7,6 +7,8 @@ SeeAlso:[Import Export](Import_Export/fr.md) --- +# Points Export/fr + ## Description La commande **Points Exporter** exporte un nuage de points vers \'un fichier. @@ -26,4 +28,7 @@ La commande **Points Exporter** exporte un nuage de points vers \'un fichier. {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Export/fr diff --git a/wiki/translations/fr/Points_Import.md b/wiki/translations/fr/Points_Import.md index 01a2740e07..64ac5bc970 100644 --- a/wiki/translations/fr/Points_Import.md +++ b/wiki/translations/fr/Points_Import.md @@ -8,6 +8,8 @@ SeeAlso:[Points Exporter](Points_Export/fr.md) --- +# Points Import/fr + ## Description La commande **Points Importer** importe un nuage de points à partir d\'un fichier. @@ -45,4 +47,7 @@ Pour tester, vous pouvez utiliser ce fichier [Ce fichier](https://raw.githubuser {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Import/fr diff --git a/wiki/translations/fr/Points_Merge.md b/wiki/translations/fr/Points_Merge.md index 57ee87dbd0..0ff49428b1 100644 --- a/wiki/translations/fr/Points_Merge.md +++ b/wiki/translations/fr/Points_Merge.md @@ -6,6 +6,8 @@ Workbenches:[Points](Points_Workbench/fr.md) --- +# Points Merge/fr + ## Description La commande **Points Fusion** crée un nuage de points en combinant les points de deux ou plusieurs nuages de points. @@ -25,4 +27,7 @@ Voir [Points Conversion](Points_Convert/fr.md). {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Merge/fr diff --git a/wiki/translations/fr/Points_Module.md b/wiki/translations/fr/Points_Module.md index 7e97a6d6f2..e9927b1f1a 100644 --- a/wiki/translations/fr/Points_Module.md +++ b/wiki/translations/fr/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/fr 1. REDIRECT [Points\_Workbench/fr](Points_Workbench/fr.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/fr diff --git a/wiki/translations/fr/Points_PolyCut.md b/wiki/translations/fr/Points_PolyCut.md index 3d1cd2b746..e618e550d1 100644 --- a/wiki/translations/fr/Points_PolyCut.md +++ b/wiki/translations/fr/Points_PolyCut.md @@ -6,6 +6,8 @@ Workbenches:[Points](Points_Workbench/fr.md) --- +# Points PolyCut/fr + ## Description La commande *Points Couper par polygone* coupe des points de nuages de points. @@ -40,4 +42,7 @@ La commande *Points Couper par polygone* coupe des points de nuages de points. {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points PolyCut/fr diff --git a/wiki/translations/fr/Points_Structure.md b/wiki/translations/fr/Points_Structure.md index bdd33151e9..5c87c81fc6 100644 --- a/wiki/translations/fr/Points_Structure.md +++ b/wiki/translations/fr/Points_Structure.md @@ -6,6 +6,8 @@ Workbenches:[Points](Points_Workbench/fr.md) --- +# Points Structure/fr + ## Description La commande **Structure des points** crée un nuage de points structuré à partir des points d\'un nuage de points dispersé existant. Un nuage de points structuré présente l\'avantage que la tessellation est beaucoup plus facile. @@ -28,4 +30,7 @@ Voir [Points Conversion](Points_Convert/fr.md). {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Structure/fr diff --git a/wiki/translations/fr/Points_Workbench.md b/wiki/translations/fr/Points_Workbench.md index 2f2f366a48..090608772b 100644 --- a/wiki/translations/fr/Points_Workbench.md +++ b/wiki/translations/fr/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/fr - - - - - -Icône de l\'atelier Points +# Icône de l\'atelier Points Points Workbench/fr ## Introduction @@ -51,3 +45,6 @@ Tous les outils de l\'atelier Points sont accessibles depuis le menu **Points**. }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/fr diff --git a/wiki/translations/fr/Post-Processing_of_FEM_Results_with_Paraview.md b/wiki/translations/fr/Post-Processing_of_FEM_Results_with_Paraview.md index 6a0f02a363..48a98d4fbf 100644 --- a/wiki/translations/fr/Post-Processing_of_FEM_Results_with_Paraview.md +++ b/wiki/translations/fr/Post-Processing_of_FEM_Results_with_Paraview.md @@ -1,5 +1,5 @@ # Post-Processing of FEM Results with Paraview/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic= Post-traitement des résultats FEM avec Paraview |Level= Intermédiaire |Time= 120 minutes @@ -351,4 +351,7 @@ Le résultat final montre les vecteurs de contrainte principaux majeurs et mineu ## Exportation des résultats graphiques -Pour exporter une fenêtre RenderView, mettez-la en surbrillance et utilisez l\'option de menu **File > Save Screenshot** {{Tutorials navi}} {{FEM Tools navi}} +Pour exporter une fenêtre RenderView, mettez-la en surbrillance et utilisez l\'option de menu **File > Save Screenshot** {{Tutorials navi}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Post-Processing of FEM Results with Paraview/fr diff --git a/wiki/translations/fr/Power_users_hub.md b/wiki/translations/fr/Power_users_hub.md index d7440a2167..fc5e1a6377 100644 --- a/wiki/translations/fr/Power_users_hub.md +++ b/wiki/translations/fr/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/fr - +# Power users hub/fr ------------------------------------------------------------------------ @@ -135,3 +134,6 @@ Sur le [Portail communautaire FreeCAD](FreeCAD_Community_Portal/fr.md), vous pou }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/fr diff --git a/wiki/translations/fr/Preferences_Editor.md b/wiki/translations/fr/Preferences_Editor.md index 98b649bfd4..aaa5459b51 100644 --- a/wiki/translations/fr/Preferences_Editor.md +++ b/wiki/translations/fr/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/fr - - - - - - {{TOCright}} ## Introduction @@ -700,3 +694,6 @@ Pour un exemple de script, voir [Std Éditeur des paramètres](Std_DlgParameter/ [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/fr diff --git a/wiki/translations/fr/Preselection.md b/wiki/translations/fr/Preselection.md index 9cfba0dab7..7a0b642c8c 100644 --- a/wiki/translations/fr/Preselection.md +++ b/wiki/translations/fr/Preselection.md @@ -10,3 +10,6 @@ La couleur de l\'objet présélectionné peut être choisie à partir du menu ** [Category:User Documentation/fr](Category:User_Documentation/fr.md) + +--- +[documentation index](../README.md) > Preselection/fr diff --git a/wiki/translations/fr/Profiling.md b/wiki/translations/fr/Profiling.md index 56cdb1bcec..777755e352 100644 --- a/wiki/translations/fr/Profiling.md +++ b/wiki/translations/fr/Profiling.md @@ -1,6 +1,4 @@ # Profiling/fr - - ## Description Le profilage du code de FreeCAD permet de trouver des goulots d\'étranglement dans les algorithmes utilisés pour créer ou manipuler des objets. @@ -41,3 +39,6 @@ kcachegrind /tmp/callgrind.out }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Profiling/fr diff --git a/wiki/translations/fr/Project_template.md b/wiki/translations/fr/Project_template.md index 53bcff2f53..9a643e8190 100644 --- a/wiki/translations/fr/Project_template.md +++ b/wiki/translations/fr/Project_template.md @@ -1,5 +1,5 @@ # Project template/fr - Ce modèle est la ligne directrice pour un projet de développement FreeCAD. Il suit les règles de la [Getting Things Done (GTD)](http://fr.wikipedia.org/wiki/Getting_Things_Done). Les projets sont collectées dans le feuille [de route de développement](Development_roadmap/fr.md). +Ce modèle est la ligne directrice pour un projet de développement FreeCAD. Il suit les règles de la [Getting Things Done (GTD)](http://fr.wikipedia.org/wiki/Getting_Things_Done). Les projets sont collectées dans le feuille [de route de développement](Development_roadmap/fr.md). *Commençons par regarder le modèle de planification naturelle. Le modèle de planification naturelle n\'est vraiment rien de nouveau. Ce n\'est pas un modèle fantastique nouvellement mis au point par [David Allen](http://fr.wikipedia.org/wiki/David_Allen_(auteur)) pour nous aider à planifier et à gérer nos projets. C\'est cependant le modèle de planification, qui est recommandée par David dans son livre Getting Things Done. Le modèle de planification naturelle est basée sur la planification que nous faisons sur une base quotidienne, en utilisant seulement notre cerveau. Par exemple, pensez à combien de tâches, nous prévoyons sur la base de jour en jour, nous n\'avons même pas pris la peine d\'écrire, que ceux-ci sont normalement classés comme des tâches banales. Par exemple, s\'habiller, ou se rendre au travail. Tous ces éléments peuvent être considérés comme des tâches, mais nous avons juste aller de l\'avant et de les planifier sans aucune pensée que ce soit. Nous utilisons les aspects de la planification de notre cerveau qui sont conditionnées, pour ce type naturel de planification.* @@ -28,3 +28,6 @@ [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Project template/fr diff --git a/wiki/translations/fr/Project_utility.md b/wiki/translations/fr/Project_utility.md index cc677c1dae..68d86f4fbd 100644 --- a/wiki/translations/fr/Project_utility.md +++ b/wiki/translations/fr/Project_utility.md @@ -1,2 +1,5 @@ # Project utility/fr 1. REDIRECT [Std\_ProjectUtil/fr](Std_ProjectUtil/fr.md) + +--- +[documentation index](../README.md) > Project utility/fr diff --git a/wiki/translations/fr/Property.md b/wiki/translations/fr/Property.md index a05b1d8c9e..8a0f1d60fd 100644 --- a/wiki/translations/fr/Property.md +++ b/wiki/translations/fr/Property.md @@ -1,6 +1,4 @@ # Property/fr - - ## Introduction Une [propriété](Property/fr.md) est une information, telle qu\'un nombre ou une chaîne de texte, attachée à un document FreeCAD ou à un objet d\'un document. Les propriétés peuvent être visualisées et modifiées avec l\'[éditeur de propriétés](Property_editor/fr.md). @@ -115,3 +113,6 @@ Ils sont importés et initialisés dans `[https://github.com/FreeCAD/FreeCAD/blo }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/fr diff --git a/wiki/translations/fr/PropertyLink:_InList_and_OutList.md b/wiki/translations/fr/PropertyLink:_InList_and_OutList.md index fa5eafdf33..7b5bee417e 100644 --- a/wiki/translations/fr/PropertyLink:_InList_and_OutList.md +++ b/wiki/translations/fr/PropertyLink:_InList_and_OutList.md @@ -1,6 +1,4 @@ # PropertyLink: InList and OutList/fr - - Voir [Propriétés des objets](Property/fr.md) avant de lire cette section. # PropertyLink @@ -79,3 +77,6 @@ On peut accéder aux objets `PropertyLink` à l\'aide d\'une propriété Python - De même, une liste `OutList` est une liste de toutes les fonctions qui *dépendent* de l\'objet courant. C\'est-à-dire que `box.OutList` sera une liste contenant notre objet `dim`. Remarquez que `InList` et `OutList` n\'ont *rien à voir* avec l\'arborescence du modèle de document qui est présentée dans l\'interface graphique. À tout moment, un parent dans cette arborescence peut contenir des enfants qui font partie de la `InList`, de la `OutList` ou d\'aucune des deux. + +--- +[documentation index](../README.md) > PropertyLink: InList and OutList/fr diff --git a/wiki/translations/fr/Property_editor.md b/wiki/translations/fr/Property_editor.md index d6463f18b8..4d313c9515 100644 --- a/wiki/translations/fr/Property_editor.md +++ b/wiki/translations/fr/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/fr - - - - - - {{TOCright}} ## Description @@ -245,4 +239,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/fr diff --git a/wiki/translations/fr/PySide.md b/wiki/translations/fr/PySide.md index 88516b35a9..e6e8b9b314 100644 --- a/wiki/translations/fr/PySide.md +++ b/wiki/translations/fr/PySide.md @@ -1,7 +1,4 @@ # PySide/fr - - - {{TOCright}} ## Introduction @@ -75,3 +72,6 @@ La documentation PySide fait référence aux classes de style Python; cependant, }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide/fr diff --git a/wiki/translations/fr/PySide_Advanced_Examples.md b/wiki/translations/fr/PySide_Advanced_Examples.md index fb673dbab8..65f8c06adc 100644 --- a/wiki/translations/fr/PySide_Advanced_Examples.md +++ b/wiki/translations/fr/PySide_Advanced_Examples.md @@ -1,7 +1,4 @@ # PySide Advanced Examples/fr - - - {{TOCright}} ## Introduction @@ -106,3 +103,6 @@ self.dialog = FreeCADGui.PySideUic.loadUi(os.path.join(os.path.dirname(__file__) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Advanced Examples/fr diff --git a/wiki/translations/fr/PySide_Beginner_Examples.md b/wiki/translations/fr/PySide_Beginner_Examples.md index 67f892bc45..75307e55bd 100644 --- a/wiki/translations/fr/PySide_Beginner_Examples.md +++ b/wiki/translations/fr/PySide_Beginner_Examples.md @@ -1,6 +1,4 @@ # PySide Beginner Examples/fr - - ## Introduction Le but de cette page est de couvrir les exemples de niveau débutant du gestionnaire de l\'interface graphique utilisateur [PySide](PySide/fr.md) (voir ensuite les pages [Exemples intermédiaires PySide](PySide_Intermediate_Examples/fr.md) et [Exemples avancés PySide](PySide_Advanced_Examples/fr.md)). @@ -167,3 +165,6 @@ buttonBox = QtGui.QDialogButtonBox(QtCore.Qt.Vertical) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Beginner Examples/fr diff --git a/wiki/translations/fr/PySide_Intermediate_Examples.md b/wiki/translations/fr/PySide_Intermediate_Examples.md index 5b594dd2c0..3494c74ee6 100644 --- a/wiki/translations/fr/PySide_Intermediate_Examples.md +++ b/wiki/translations/fr/PySide_Intermediate_Examples.md @@ -1,6 +1,4 @@ # PySide Intermediate Examples/fr - - ## Introduction @@ -754,3 +752,6 @@ Ces mêmes commandes peuvent être exécutées sur une fenêtre générée par l }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Intermediate Examples/fr diff --git a/wiki/translations/fr/PySide_usage_snippets.md b/wiki/translations/fr/PySide_usage_snippets.md index 9f1e134d62..855de9279c 100644 --- a/wiki/translations/fr/PySide_usage_snippets.md +++ b/wiki/translations/fr/PySide_usage_snippets.md @@ -1,6 +1,4 @@ # PySide usage snippets/fr - - ## Introduction Ce sont des extraits de code utiles lors de [création d\'interfaces](Dialog_creation/fr.md) avec [PySide](PySide/fr.md). @@ -132,3 +130,6 @@ print(unicode(uniteSs, 'iso8859')) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide usage snippets/fr diff --git a/wiki/translations/fr/Pyramids_and_polyhedrons_Workbench.md b/wiki/translations/fr/Pyramids_and_polyhedrons_Workbench.md index 50c2181260..5fd4736040 100644 --- a/wiki/translations/fr/Pyramids_and_polyhedrons_Workbench.md +++ b/wiki/translations/fr/Pyramids_and_polyhedrons_Workbench.md @@ -1,6 +1,4 @@ # Pyramids and polyhedrons Workbench/fr - - ## Description Icône de l\'atelier externe Pyramids-and-Polyhedrons @@ -44,3 +42,6 @@ Veuillez diriger vos commentaires, idées, réflexions sur cet atelier vers le f [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Pyramids and polyhedrons Workbench/fr diff --git a/wiki/translations/fr/Pyrate_Workbench.md b/wiki/translations/fr/Pyrate_Workbench.md index 6dbdb23672..41022cb465 100644 --- a/wiki/translations/fr/Pyrate_Workbench.md +++ b/wiki/translations/fr/Pyrate_Workbench.md @@ -1,9 +1,4 @@ # Pyrate Workbench/fr - - - - - ## Introduction @@ -18,3 +13,6 @@ Cet atelier est un nouveau style d\'atelier. Cela signifie qu\'il est prévu de [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Pyrate Workbench/fr diff --git a/wiki/translations/fr/Python.md b/wiki/translations/fr/Python.md index f3b8dd1c4e..fd9c161300 100644 --- a/wiki/translations/fr/Python.md +++ b/wiki/translations/fr/Python.md @@ -1,5 +1,5 @@ # Python/fr - **FreeCAD a été conçu à l'origine pour fonctionner avec Python 2.x. Cette série s'est terminée avec la version 2.7.18 du 20 avril 2020 et a été remplacée par Python 3. Le développement futur de FreeCAD se fera exclusivement avec Python 3, et la rétrocompatibilité ne sera pas supportée.** +**FreeCAD a été conçu à l'origine pour fonctionner avec Python 2.x. Cette série s'est terminée avec la version 2.7.18 du 20 avril 2020 et a été remplacée par Python 3. Le développement futur de FreeCAD se fera exclusivement avec Python 3, et la rétrocompatibilité ne sera pas supportée.** ## Description @@ -127,3 +127,6 @@ Structure = Arch.make_structure(Wire, name="Big pillar") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:API Documentation](Category:API_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python/fr diff --git a/wiki/translations/fr/PythonOCC.md b/wiki/translations/fr/PythonOCC.md index 119529d0cf..6829295bf9 100644 --- a/wiki/translations/fr/PythonOCC.md +++ b/wiki/translations/fr/PythonOCC.md @@ -1,6 +1,4 @@ # PythonOCC/fr - - ## Description [PythonOCC](PythonOCC/fr.md) est un projet qui vise à fournir toute la gamme des fonctions [OpenCASCADE Technology](OpenCASCADE/fr.md) (OCCT) via le module [Python](Python/fr.md) `OCC`. C\'est une approche différente de celle de FreeCAD, où seuls certains composants d\'OCCT sont exposés via l\'[atelier Part](Part_Workbench/fr.md). @@ -45,3 +43,6 @@ Vous pouvez également compiler vous-même pythonOCC (voir [instructions](https: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PythonOCC/fr diff --git a/wiki/translations/fr/Python_3.md b/wiki/translations/fr/Python_3.md index 9353c0b5e8..4b0b830d9c 100644 --- a/wiki/translations/fr/Python_3.md +++ b/wiki/translations/fr/Python_3.md @@ -1,7 +1,4 @@ # Python 3/fr - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -154,3 +151,6 @@ conda build . --python=3.6 --dirty [Category:User Documentation](Category:User_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Python 3/fr diff --git a/wiki/translations/fr/Python_Development_Environment.md b/wiki/translations/fr/Python_Development_Environment.md index bc4b7b0b0e..8e21269916 100644 --- a/wiki/translations/fr/Python_Development_Environment.md +++ b/wiki/translations/fr/Python_Development_Environment.md @@ -1,5 +1,5 @@ # Python Development Environment/fr - {{TOCright}} +{{TOCright}} ## A Simplistic Development Environment for Python within FreeCAD @@ -552,3 +552,6 @@ Some other links about IDEs for Python which might be of interest are: [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Python Development Environment/fr diff --git a/wiki/translations/fr/Python_console.md b/wiki/translations/fr/Python_console.md index 566cb637d1..5f3ef3c837 100644 --- a/wiki/translations/fr/Python_console.md +++ b/wiki/translations/fr/Python_console.md @@ -1,5 +1,5 @@ # Python console/fr - **(Janvier 2020) FreeCAD a été initialement conçu pour fonctionner avec Python 2. Étant donné que Python 2 est en fin de vie, son développement futur se fera exclusivement avec Python 3, et la compatibilité avec les versions antérieures ne sera pas prise en charge.** +**(Janvier 2020) FreeCAD a été initialement conçu pour fonctionner avec Python 2. Étant donné que Python 2 est en fin de vie, son développement futur se fera exclusivement avec Python 3, et la compatibilité avec les versions antérieures ne sera pas prise en charge.** ## Introduction @@ -86,4 +86,7 @@ Un clic droit sur la console Python affiche certaines commandes: {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Python console/fr diff --git a/wiki/translations/fr/Python_scripting_tutorial.md b/wiki/translations/fr/Python_scripting_tutorial.md index c2d8d47caf..516bd1f944 100644 --- a/wiki/translations/fr/Python_scripting_tutorial.md +++ b/wiki/translations/fr/Python_scripting_tutorial.md @@ -1,7 +1,4 @@ # Python scripting tutorial/fr - - - {{TOCright}} ## Introduction @@ -292,3 +289,6 @@ Vous êtes maintenant prêt pour des scripts FreeCAD plus approfondis. Alors ren }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python scripting tutorial/fr diff --git a/wiki/translations/fr/Qt_Example.md b/wiki/translations/fr/Qt_Example.md index c31b488e1c..d8439644d3 100644 --- a/wiki/translations/fr/Qt_Example.md +++ b/wiki/translations/fr/Qt_Example.md @@ -1,5 +1,5 @@ # Qt Example/fr - {{Macro/fr +{{Macro/fr |Name=Macro Qt Example |Icon=MEPlan.png |Name/fr=Macro Qt Example @@ -798,3 +798,6 @@ MainWindow.show() Bon amusement. [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Qt Example/fr diff --git a/wiki/translations/fr/Quality_project.md b/wiki/translations/fr/Quality_project.md index 1f934ebde2..64add36538 100644 --- a/wiki/translations/fr/Quality_project.md +++ b/wiki/translations/fr/Quality_project.md @@ -1,7 +1,4 @@ # Quality project/fr - - - ** Ce plan de développement est probablement obsolète. Pour plus d'informations, voir [Plan de développement](Development_roadmap/fr.md).
Si vous n'êtes pas impliqué dans le développement discuté ici :
@@ -46,3 +43,6 @@ Travailler à travers toutes les commandes et établir une documentation : [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Quality project/fr diff --git a/wiki/translations/fr/Quantity.md b/wiki/translations/fr/Quantity.md index 355db06771..620680251b 100644 --- a/wiki/translations/fr/Quantity.md +++ b/wiki/translations/fr/Quantity.md @@ -1,5 +1,5 @@ # Quantity/fr - Quantity est une combinaison d\'un nombre à virgule flottante et d\'une unité. Quantity est utilisé dans l\'ensemble de FreeCAD pour gérer les paramètres et toutes sortes d\'autres entrées/sorties. +Quantity est une combinaison d\'un nombre à virgule flottante et d\'une unité. Quantity est utilisé dans l\'ensemble de FreeCAD pour gérer les paramètres et toutes sortes d\'autres entrées/sorties. ## Généralité @@ -285,3 +285,6 @@ from FreeCAD import Units }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Quantity/fr diff --git a/wiki/translations/fr/Ray_Tracing_Workbench.md b/wiki/translations/fr/Ray_Tracing_Workbench.md index 3191f31bf8..35c8a2e698 100644 --- a/wiki/translations/fr/Ray_Tracing_Workbench.md +++ b/wiki/translations/fr/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/fr 1. REDIRECT [Raytracing\_Workbench/fr](Raytracing_Workbench/fr.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/fr diff --git a/wiki/translations/fr/Ray_tracing_Module.md b/wiki/translations/fr/Ray_tracing_Module.md index 4c5fdfdef2..2995d758b9 100644 --- a/wiki/translations/fr/Ray_tracing_Module.md +++ b/wiki/translations/fr/Ray_tracing_Module.md @@ -1,2 +1,5 @@ # Ray tracing Module/fr 1. REDIRECT [Raytracing\_Module/fr](Raytracing_Module/fr.md) + +--- +[documentation index](../README.md) > Ray tracing Module/fr diff --git a/wiki/translations/fr/Raytracing_API_example.md b/wiki/translations/fr/Raytracing_API_example.md index 5c36ddab2d..62f18ee0b4 100644 --- a/wiki/translations/fr/Raytracing_API_example.md +++ b/wiki/translations/fr/Raytracing_API_example.md @@ -1,6 +1,4 @@ # Raytracing API example/fr - - ## Introduction Les modules `Raytracing` et `RaytracingGui` fournissent plusieurs méthodes pour écrire le contenu d\'une scène sous forme de données povray ou luxrender. @@ -53,3 +51,6 @@ myCustomRenderObject.Result = "// Hello from python!" }} {{Raytracing Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing API example/fr diff --git a/wiki/translations/fr/Raytracing_ExportProject.md b/wiki/translations/fr/Raytracing_ExportProject.md index 73777dc78f..0f9f7d328b 100644 --- a/wiki/translations/fr/Raytracing_ExportProject.md +++ b/wiki/translations/fr/Raytracing_ExportProject.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing ExportProject/fr +
@@ -36,4 +38,7 @@ Exporte le projet de tracé de rayons sélectionné dans un fichier. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing ExportProject/fr diff --git a/wiki/translations/fr/Raytracing_InsertPart.md b/wiki/translations/fr/Raytracing_InsertPart.md index f98e6d8756..857f8a2c55 100644 --- a/wiki/translations/fr/Raytracing_InsertPart.md +++ b/wiki/translations/fr/Raytracing_InsertPart.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing InsertPart/fr + @@ -38,4 +40,7 @@ Insére une vue d\'une pièce dans un projet de Lancer de rayons. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing InsertPart/fr diff --git a/wiki/translations/fr/Raytracing_Lux.md b/wiki/translations/fr/Raytracing_Lux.md index cc67308ec8..93396a883f 100644 --- a/wiki/translations/fr/Raytracing_Lux.md +++ b/wiki/translations/fr/Raytracing_Lux.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing Lux/fr + @@ -40,4 +42,7 @@ Insère un nouveau projet LuxRender dans le document. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Lux/fr diff --git a/wiki/translations/fr/Raytracing_Module.md b/wiki/translations/fr/Raytracing_Module.md index dbf500f2d1..d91749be56 100644 --- a/wiki/translations/fr/Raytracing_Module.md +++ b/wiki/translations/fr/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/fr 1. REDIRECT [Raytracing\_Workbench/fr](Raytracing_Workbench/fr.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/fr diff --git a/wiki/translations/fr/Raytracing_New.md b/wiki/translations/fr/Raytracing_New.md index b5dd5a135e..a4646ccd34 100644 --- a/wiki/translations/fr/Raytracing_New.md +++ b/wiki/translations/fr/Raytracing_New.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing New/fr + @@ -40,4 +42,7 @@ Insère un nouveau projet PovRay dans le document. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing New/fr diff --git a/wiki/translations/fr/Raytracing_Preferences.md b/wiki/translations/fr/Raytracing_Preferences.md index b2c3417401..36a3c02e78 100644 --- a/wiki/translations/fr/Raytracing_Preferences.md +++ b/wiki/translations/fr/Raytracing_Preferences.md @@ -1,5 +1,5 @@ # Raytracing Preferences/fr - L\'écran de préférences de l\'[atelier Raytracing](Raytracing_Workbench/fr.md) se trouve dans la fenêtre [Préférences](Preferences_Editor/fr.md) **Édit → Préférences → Raytracing**. +L\'écran de préférences de l\'[atelier Raytracing](Raytracing_Workbench/fr.md) se trouve dans la fenêtre [Préférences](Preferences_Editor/fr.md) **Édit → Préférences → Raytracing**. Il n\'y a qu\'un seul onglet: Raytracing. @@ -13,3 +13,6 @@ Il n\'y a qu\'un seul onglet: Raytracing. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Preferences/fr diff --git a/wiki/translations/fr/Raytracing_Render.md b/wiki/translations/fr/Raytracing_Render.md index 3209f9dd75..3b8351981e 100644 --- a/wiki/translations/fr/Raytracing_Render.md +++ b/wiki/translations/fr/Raytracing_Render.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing Render/fr + @@ -38,4 +40,7 @@ Actuellement, seuls POV-Ray et Luxrender sont pris en charge. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Render/fr diff --git a/wiki/translations/fr/Raytracing_ResetCamera.md b/wiki/translations/fr/Raytracing_ResetCamera.md index ec69f2022d..5b97bd5287 100644 --- a/wiki/translations/fr/Raytracing_ResetCamera.md +++ b/wiki/translations/fr/Raytracing_ResetCamera.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing ResetCamera/fr + @@ -56,4 +58,7 @@ Définit la caméra du projet raytracing sélectionné pour correspondre à la v {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing ResetCamera/fr diff --git a/wiki/translations/fr/Raytracing_Workbench.md b/wiki/translations/fr/Raytracing_Workbench.md index 1049c72dd9..42727c7bde 100644 --- a/wiki/translations/fr/Raytracing_Workbench.md +++ b/wiki/translations/fr/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/fr - - - **L'atelier Raytracing est essentiellement obsolète. Un nouveau développement est en cours dans le [https://github.com/FreeCAD/FreeCAD-render atelier Render] qui est destiné à le remplacer. Cet atelier est entièrement programmé en Python, il est donc beaucoup plus facile à étendre. Néanmoins, les informations de cette page sont généralement utiles pour le nouvel atelier, car les deux modules fonctionnent essentiellement de la même manière. @@ -155,3 +152,6 @@ Ces pages font référence à un plan de travail de remplacement, programmé en }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/fr diff --git a/wiki/translations/fr/Raytracing_WriteCamera.md b/wiki/translations/fr/Raytracing_WriteCamera.md index 74a7f4f6bd..348dde0e83 100644 --- a/wiki/translations/fr/Raytracing_WriteCamera.md +++ b/wiki/translations/fr/Raytracing_WriteCamera.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing WriteCamera/fr + @@ -36,4 +38,7 @@ Exporte les propriétés actuelles de la caméra dans un fichier pov à utiliser {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteCamera/fr diff --git a/wiki/translations/fr/Raytracing_WritePart.md b/wiki/translations/fr/Raytracing_WritePart.md index b9ad1f0bad..b4ffe2ca03 100644 --- a/wiki/translations/fr/Raytracing_WritePart.md +++ b/wiki/translations/fr/Raytracing_WritePart.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing WritePart/fr + @@ -36,4 +38,7 @@ Exporte la pièce sélectionnée dans un fichier pov à utiliser dans un projet {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WritePart/fr diff --git a/wiki/translations/fr/Raytracing_WriteView.md b/wiki/translations/fr/Raytracing_WriteView.md index 1bf298654f..7f27a40618 100644 --- a/wiki/translations/fr/Raytracing_WriteView.md +++ b/wiki/translations/fr/Raytracing_WriteView.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing WriteView/fr + @@ -36,4 +38,7 @@ Exporte les propriétés de la vue actuelle vers un fichier pov à utiliser dans {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteView/fr diff --git a/wiki/translations/fr/Raytracing_project.md b/wiki/translations/fr/Raytracing_project.md index 91823620ac..879b518cd4 100644 --- a/wiki/translations/fr/Raytracing_project.md +++ b/wiki/translations/fr/Raytracing_project.md @@ -1,7 +1,4 @@ # Raytracing project/fr - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -134,3 +131,6 @@ Ici en vedette, une pièce qui a été créée à l\'aide **PartDesign/Sketcher* [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing project/fr diff --git a/wiki/translations/fr/Raytracing_templates.md b/wiki/translations/fr/Raytracing_templates.md index b855d0efe2..ce8f925010 100644 --- a/wiki/translations/fr/Raytracing_templates.md +++ b/wiki/translations/fr/Raytracing_templates.md @@ -1,6 +1,4 @@ # Raytracing templates/fr - - ## Introduction L\'[atelier raytracing](Raytracing_Workbench/fr.md) est livré avec quelques modèles pour Povray et Luxrender, mais vous pouvez facilement créer les vôtres. Tout ce que vous avez à faire est de créer un fichier de scène pour le rendu donné, puis de le modifier manuellement avec un éditeur de texte pour insérer des balises spéciales que FreeCAD reconnaîtra et où il insérera son contenu (données de caméra et d\'objets). @@ -60,3 +58,5 @@ Notez que dans luxrender, les objets stockés dans un fichier de scène peuvent {{Userdocnavi/fr}} +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing templates/fr diff --git a/wiki/translations/fr/Raytracing_tutorial.md b/wiki/translations/fr/Raytracing_tutorial.md index 6e209d5d37..990042ee80 100644 --- a/wiki/translations/fr/Raytracing_tutorial.md +++ b/wiki/translations/fr/Raytracing_tutorial.md @@ -1,6 +1,4 @@ # Raytracing tutorial/fr - - ## Atelier Raytracing @@ -98,4 +96,7 @@ Nous avons terminé avec le travail de base pour le [Module Raytracing](Raytraci {{Tutorials navi -}} {{Raytracing Tools navi}} +}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing tutorial/fr diff --git a/wiki/translations/fr/Recompute.md b/wiki/translations/fr/Recompute.md index f3104af4d9..c6bf8e5634 100644 --- a/wiki/translations/fr/Recompute.md +++ b/wiki/translations/fr/Recompute.md @@ -1,2 +1,5 @@ # Recompute/fr 1. REDIRECT [Std Refresh/fr](Std_Refresh/fr.md) + +--- +[documentation index](../README.md) > Recompute/fr diff --git a/wiki/translations/fr/Reinforcement_API.md b/wiki/translations/fr/Reinforcement_API.md index 485095caac..fe95baca28 100644 --- a/wiki/translations/fr/Reinforcement_API.md +++ b/wiki/translations/fr/Reinforcement_API.md @@ -1,5 +1,5 @@ # Reinforcement API/fr - **(Novembre 2018) Le [Addon Reinforcement](Reinforcement_Addon/fr.md) est développé séparément de l'[atelier Arch](Arch_Workbench/fr.md). Son code et son API sont hébergés dans le dépôt [https://github.com/amrit3701/FreeCAD-Reinforcement FreeCAD-Reinforcement], distinct du dépôt principal FreeCAD.** +**(Novembre 2018) Le [Addon Reinforcement](Reinforcement_Addon/fr.md) est développé séparément de l'[atelier Arch](Arch_Workbench/fr.md). Son code et son API sont hébergés dans le dépôt [https://github.com/amrit3701/FreeCAD-Reinforcement FreeCAD-Reinforcement], distinct du dépôt principal FreeCAD.** Voir aussi [Arch API](Arch_API/fr.md) pour les principales fonctions de l\'[atelier Arch](Arch_Workbench/fr.md). @@ -17,3 +17,6 @@ import HelicalRebar [Category:API](Category:API.md) [Category:Reinforcement](Category:Reinforcement.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Reinforcement API/fr diff --git a/wiki/translations/fr/Reinforcement_Addon.md b/wiki/translations/fr/Reinforcement_Addon.md index 3fd2994779..c38a5a506e 100644 --- a/wiki/translations/fr/Reinforcement_Addon.md +++ b/wiki/translations/fr/Reinforcement_Addon.md @@ -1,6 +1,4 @@ # Reinforcement Addon/fr - - ## Introduction L\'[Addon Reinforcement](Reinforcement_Addon/fr.md) augmente l\'[atelier Arch](Arch_Workbench/fr.md) en fournissant de nouvelles interfaces et de nouveaux préréglages pour la création de types de barres d'arc commun à utiliser avec les [structures Arch](Arch_Structure/fr.md). @@ -43,3 +41,6 @@ De nouveaux ateliers sont en développement alors tenez vous au jus! [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Reinforcement](Category:Reinforcement.md) > Reinforcement Addon/fr diff --git a/wiki/translations/fr/Reinforcement_Bar_Bending_Schedule.md b/wiki/translations/fr/Reinforcement_Bar_Bending_Schedule.md index c88f020b4e..930f318bf9 100644 --- a/wiki/translations/fr/Reinforcement_Bar_Bending_Schedule.md +++ b/wiki/translations/fr/Reinforcement_Bar_Bending_Schedule.md @@ -8,6 +8,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench/fr.md), [Arch Rebar Nomenclature](Arch_Rebar_BOM/fr.md), [Arch Rebar Dessins](Arch_Rebar_Drawing_Dimensioning/fr.md) --- +# Reinforcement Bar Bending Schedule/fr + ## Description L\'outil [Tableau des armatures](Reinforcement_Bar_Bending_Schedule/fr.md) permet à l\'utilisateur de créer la nomenclature de pliage des barres d\'armature. @@ -357,3 +359,6 @@ BBSfunc.getBarBendingSchedule( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Reinforcement Bar Bending Schedule/fr diff --git a/wiki/translations/fr/Reinforcement_Bar_Shape_Cut_List.md b/wiki/translations/fr/Reinforcement_Bar_Shape_Cut_List.md index 7aa4f95274..5357f33900 100644 --- a/wiki/translations/fr/Reinforcement_Bar_Shape_Cut_List.md +++ b/wiki/translations/fr/Reinforcement_Bar_Shape_Cut_List.md @@ -8,6 +8,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench/fr.md), [Arch Rebar Dimensions dessins](Arch_Rebar_Drawing_Dimensioning/fr.md), [Arch Rebar Nomenclature](Arch_Rebar_BOM/fr.md) --- +# Reinforcement Bar Shape Cut List/fr + ## Description L\'outil [Rebar Shape Cut List](Reinforcement_Bar_Shape_Cut_List/fr.md) permet à l\'utilisateur de créer une nomenclature de façonnage des armatures. @@ -400,3 +402,6 @@ RebarShapeCutListfunc.getRebarShapeCutList( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Reinforcement Bar Shape Cut List/fr diff --git a/wiki/translations/fr/Reinforcement_Workbench.md b/wiki/translations/fr/Reinforcement_Workbench.md index 7a4b868f75..9133c89c40 100644 --- a/wiki/translations/fr/Reinforcement_Workbench.md +++ b/wiki/translations/fr/Reinforcement_Workbench.md @@ -1,7 +1,4 @@ -# Reinforcement Workbench/fr - - -Icône de l\'atelier Reinforcement +# Icône de l\'atelier Reinforcement Reinforcement Workbench/fr {{TOCright}} @@ -60,3 +57,6 @@ L\'atelier Reinforcement n\'est pas fourni avec le package FreeCAD par défaut m [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > Reinforcement Workbench/fr diff --git a/wiki/translations/fr/Release_notes_0.11.md b/wiki/translations/fr/Release_notes_0.11.md index c7915b7c88..a666900596 100644 --- a/wiki/translations/fr/Release_notes_0.11.md +++ b/wiki/translations/fr/Release_notes_0.11.md @@ -70,3 +70,6 @@ Une capture d\'écran de la version 0.11 {{languages/fr | {{en|Release_notes_0.11}} {{de|Release_notes_0.11/de}} {{es|Release_notes_0.11/es}} {{it|Release_notes_0.11/it}} {{pl|Release_notes_0.11/pl}} {{ru|Release_notes_0.11/ru}} }} [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.11/fr diff --git a/wiki/translations/fr/Release_notes_0.12.md b/wiki/translations/fr/Release_notes_0.12.md index 78f1aeab2f..fa7a7b35f2 100644 --- a/wiki/translations/fr/Release_notes_0.12.md +++ b/wiki/translations/fr/Release_notes_0.12.md @@ -51,3 +51,6 @@ Versions antérieures : [0.11](Release_notes_0.11.md) {{languages/fr | {{en|Release_notes_0.12}} {{es|Release_notes_0.12/es}} {{it|Release_notes_0.12/it}} {{pl|Release_notes_0.12/pl}} {{ru|Release_notes_0.12/ru}} }} [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.12/fr diff --git a/wiki/translations/fr/Release_notes_0.13.md b/wiki/translations/fr/Release_notes_0.13.md index 4bc8829255..74ef048ea7 100644 --- a/wiki/translations/fr/Release_notes_0.13.md +++ b/wiki/translations/fr/Release_notes_0.13.md @@ -1,5 +1,5 @@ # Release notes 0.13/fr - Ceci est un résumé des changements les plus intéressants survenus dans FreeCAD depuis la dernière version. Voyez [ici (en anglais)](http://www.freecadweb.org/tracker/changelog_page.php) la liste complète des changements. +Ceci est un résumé des changements les plus intéressants survenus dans FreeCAD depuis la dernière version. Voyez [ici (en anglais)](http://www.freecadweb.org/tracker/changelog_page.php) la liste complète des changements. Les versions plus anciennes : [0.12](Release_notes_0.12/fr.md) - [0.11](Release_notes_0.11/fr.md) @@ -145,3 +145,6 @@ Les géométrie (points, lignes et courbes) peuvent être sélectionnés en fais - Pour plus d\'informations, consultez la page du wiki FreeCAD [Module OpenSCAD](OpenSCAD_Workbench/fr.md) [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.13/fr diff --git a/wiki/translations/fr/Release_notes_0.14.md b/wiki/translations/fr/Release_notes_0.14.md index 70e445f426..52e8f50226 100644 --- a/wiki/translations/fr/Release_notes_0.14.md +++ b/wiki/translations/fr/Release_notes_0.14.md @@ -1,6 +1,4 @@ # Release notes 0.14/fr - - FreeCAD 0.14 a été publié le 1er juillet 2014. Ceci est un résumé des changements les plus intéressants survenus dans FreeCAD depuis la dernière version. Voir [sur Mantis (en anglais)](http://www.freecadweb.org/tracker/changelog_page.php) pour la liste complète des changements. Versions plus anciennes : [0.13](Release_notes_0.13/fr.md) - [0.12](Release_notes_0.12/fr.md) - [0.11](Release_notes_0.11/fr.md) @@ -232,3 +230,6 @@ Beaucoup de travail a été accompli à la fois sur FreeCAD et [IfcOpenShell](ht La liste complète des corrections de bogues et des nouvelles fonctionnalités peut être consultée sur [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.14/fr diff --git a/wiki/translations/fr/Release_notes_0.15.md b/wiki/translations/fr/Release_notes_0.15.md index 281d2caca1..d339133cb2 100644 --- a/wiki/translations/fr/Release_notes_0.15.md +++ b/wiki/translations/fr/Release_notes_0.15.md @@ -1,5 +1,5 @@ # Release notes 0.15/fr - FreeCAD 0.15 a été publié le 8 avril 2015. Ceci est un résumé des changements les plus intéressants survenus dans FreeCAD depuis la dernière version. Voir [sur Mantis (en anglais)](http://www.freecadweb.org/tracker/changelog_page.php) pour la liste complète des changements. Les versions plus anciennes : [0.14](Release_notes_0.14/fr.md) - [0.13](Release_notes_0.13/fr.md) - [0.12](Release_notes_0.12/fr.md) - [0.11](Release_notes_0.11/fr.md) +FreeCAD 0.15 a été publié le 8 avril 2015. Ceci est un résumé des changements les plus intéressants survenus dans FreeCAD depuis la dernière version. Voir [sur Mantis (en anglais)](http://www.freecadweb.org/tracker/changelog_page.php) pour la liste complète des changements. Les versions plus anciennes : [0.14](Release_notes_0.14/fr.md) - [0.13](Release_notes_0.13/fr.md) - [0.12](Release_notes_0.12/fr.md) - [0.11](Release_notes_0.11/fr.md) @@ -152,3 +152,6 @@ Les [fonctions de construction macro](https://github.com/Rentlau/WorkFeature) aj [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.15/fr diff --git a/wiki/translations/fr/Release_notes_0.16.md b/wiki/translations/fr/Release_notes_0.16.md index 4a4ac58b08..6f6b3bef0f 100644 --- a/wiki/translations/fr/Release_notes_0.16.md +++ b/wiki/translations/fr/Release_notes_0.16.md @@ -1,5 +1,5 @@ # Release notes 0.16/fr - FreeCAD 0.16 a été publié le 18 avril 2016, obtenez la depuis la page [Github](https://github.com/FreeCAD/FreeCAD/releases). Ceci est un résumé des changements les plus intéressants. La liste complète des changements peut être trouvée dans [sur Mantis (en anglais)](http://www.freecadweb.org/tracker/changelog_page.php). Les versions plus anciennes : [0.15](Release_notes_0.15/fr.md) - [0.14](Release_notes_0.14/fr.md) - [0.13](Release_notes_0.13/fr.md) - [0.12](Release_notes_0.12/fr.md) - [0.11](Release_notes_0.11/fr.md) +FreeCAD 0.16 a été publié le 18 avril 2016, obtenez la depuis la page [Github](https://github.com/FreeCAD/FreeCAD/releases). Ceci est un résumé des changements les plus intéressants. La liste complète des changements peut être trouvée dans [sur Mantis (en anglais)](http://www.freecadweb.org/tracker/changelog_page.php). Les versions plus anciennes : [0.15](Release_notes_0.15/fr.md) - [0.14](Release_notes_0.14/fr.md) - [0.13](Release_notes_0.13/fr.md) - [0.12](Release_notes_0.12/fr.md) - [0.11](Release_notes_0.11/fr.md) @@ -121,3 +121,6 @@ Plusieurs nouveaux [ateliers complémentaires](https://github.com/FreeCAD/FreeCA ![](images/Macro_installer_02.jpg ) [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.16/fr diff --git a/wiki/translations/fr/Release_notes_0.17.md b/wiki/translations/fr/Release_notes_0.17.md index 0152749898..1e8041aea0 100644 --- a/wiki/translations/fr/Release_notes_0.17.md +++ b/wiki/translations/fr/Release_notes_0.17.md @@ -1,7 +1,4 @@ # Release notes 0.17/fr - - -
*Cette version de FreeCAD est dédiée à notre ami Roland Frank [qui nous a quittés en 2017](https://forum.freecadweb.org/viewtopic.php?f=8&t=25673). Il était un membre actif et apprécié du forum FreeCAD, et ses tutoriels vidéo sur les chaînes Youtube [Learn FreeCAD](https://www.youtube.com/watch?v=_HEvhclR4-o&list=PL6fZ68Cq3L8k0JhxnIVjZQN26cn9idJrj) et [BPLFRE](https://www.youtube.com/watch?v=m49z0weonog&list=PLsrwVwvqYb8G4Ri0iz1JIebsOXkgoytAY) ont aidé de nombreuses personnes à démarrer avec FreeCAD.* @@ -297,3 +294,6 @@ Certains des nouveaux modules de la communauté qui ont été créés. - [Kicad StepUp Workbench](https://www.freecadweb.org/wiki/KicadStepUp_Workbench) est destiné à aider les utilisateurs de KiCad et FreeCAD dans la collaboration ECAD et MCAD. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.17/fr diff --git a/wiki/translations/fr/Release_notes_0.18.md b/wiki/translations/fr/Release_notes_0.18.md index b6edafab8e..4cf6f8a690 100644 --- a/wiki/translations/fr/Release_notes_0.18.md +++ b/wiki/translations/fr/Release_notes_0.18.md @@ -1,6 +1,4 @@ # Release notes 0.18/fr - - FreeCAD 0.18 est sorti le 12 mars 2019, à télécharger sur la page [Téléchargements](Download/fr.md). Ceci est un résumé des changements les plus intéressants. La liste complète des modifications est disponible sur [MantisBT bugtracker FC 0.18 - Liste des changements](https://www.freecadweb.org/tracker/changelog_page.php?version_id=78). Les notes de versions de FreeCAD sont disponibles dans la [liste des fonctionnalités](Feature_list/fr#Notes_de_versions.md). @@ -220,3 +218,6 @@ Certains des nouveaux modules communautaires activement développés au cours du - L\'[atelier Defeaturing](Defeaturing_Workbench/fr.md) est destiné à l\'édition de modèles STEP importés, à la suppression d\'éléments sélectionnés du modèle. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.18/fr diff --git a/wiki/translations/fr/Release_notes_0.19.md b/wiki/translations/fr/Release_notes_0.19.md index 843ec37b44..b87c44a273 100644 --- a/wiki/translations/fr/Release_notes_0.19.md +++ b/wiki/translations/fr/Release_notes_0.19.md @@ -1,5 +1,5 @@ # Release notes 0.19/fr - {{TOCright}} +{{TOCright}} **FreeCAD 0.19** a été publié le **20 mars 2021** et est disponible sur la page de [téléchargement](Download/fr.md). Ceci est un résumé des changements les plus intéressants. La liste complète des modifications est disponible dans le [journal des modifications MantisBT bugtracker FC 0.19](https://www.freecadweb.org/tracker/changelog_page.php?version_id=122). @@ -788,3 +788,6 @@ ce sont les nouveaux ateliers créés dans ce cycle de développement ou les anc +-------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.19/fr diff --git a/wiki/translations/fr/Release_notes_011.md b/wiki/translations/fr/Release_notes_011.md index 8afcd9f6e0..7f4be05194 100644 --- a/wiki/translations/fr/Release_notes_011.md +++ b/wiki/translations/fr/Release_notes_011.md @@ -1,2 +1,5 @@ # Release notes 011/fr 1. REDIRECT [Release notes 0.11/fr](Release_notes_0.11/fr.md) + +--- +[documentation index](../README.md) > Release notes 011/fr diff --git a/wiki/translations/fr/Release_notes_012.md b/wiki/translations/fr/Release_notes_012.md index 310c2e9aa5..0be2b0f7ac 100644 --- a/wiki/translations/fr/Release_notes_012.md +++ b/wiki/translations/fr/Release_notes_012.md @@ -1,2 +1,5 @@ # Release notes 012/fr 1. REDIRECT [Release notes 0.12/fr](Release_notes_0.12/fr.md) + +--- +[documentation index](../README.md) > Release notes 012/fr diff --git a/wiki/translations/fr/Release_notes_013.md b/wiki/translations/fr/Release_notes_013.md index c3165d2334..27068dee5d 100644 --- a/wiki/translations/fr/Release_notes_013.md +++ b/wiki/translations/fr/Release_notes_013.md @@ -1,2 +1,5 @@ # Release notes 013/fr 1. REDIRECT [Release\_notes\_0.13/fr](Release_notes_0.13/fr.md) + +--- +[documentation index](../README.md) > Release notes 013/fr diff --git a/wiki/translations/fr/Render_project.md b/wiki/translations/fr/Render_project.md index d438961833..67d7d259a6 100644 --- a/wiki/translations/fr/Render_project.md +++ b/wiki/translations/fr/Render_project.md @@ -1,5 +1,5 @@ # Render project/fr - **(2020) Cette page fait référence à une tentative de mise à jour de l'[Atelier Raytracing](Raytracing_Workbench/fr.md), proposé vers 2012. Son auteur d'origine n'ayant jamais terminé la mise en œuvre, ces informations sont obsolètes et ne doivent pas être considérées comme actuelles. +**(2020) Cette page fait référence à une tentative de mise à jour de l'[Atelier Raytracing](Raytracing_Workbench/fr.md), proposé vers 2012. Son auteur d'origine n'ayant jamais terminé la mise en œuvre, ces informations sont obsolètes et ne doivent pas être considérées comme actuelles. Un nouveau développement est en cours dans l'[https://github.com/FreeCAD/FreeCAD-render Atelier Render], un remplacement complet en Python pour l'[Atelier Raytracing](Raytracing_Workbench/fr.md). @@ -127,3 +127,6 @@ Voir aussi [Tutoriel Raytracing](Raytracing_tutorial/fr.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Render](Category:Render.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Render project/fr diff --git a/wiki/translations/fr/Report_view.md b/wiki/translations/fr/Report_view.md index ded06138a8..fe9753971d 100644 --- a/wiki/translations/fr/Report_view.md +++ b/wiki/translations/fr/Report_view.md @@ -1,6 +1,4 @@ # Report view/fr - - ## Introduction La [Vue rapport](Report_view/fr.md) est un panneau qui affiche les messages texte des processus FreeCAD. Il est disponible dans **Affichage → Panneaux → Vue rapport**. @@ -53,4 +51,7 @@ Un clic droit sur la vue du rapport montre quelques commandes: {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Report view/fr diff --git a/wiki/translations/fr/Resource_framework_project.md b/wiki/translations/fr/Resource_framework_project.md index 4527c936e0..dd458add09 100644 --- a/wiki/translations/fr/Resource_framework_project.md +++ b/wiki/translations/fr/Resource_framework_project.md @@ -1,7 +1,4 @@ # Resource framework project/fr - - - ** Ce plan de développement est probablement obsolète. Pour plus d'informations, voir [Plan de développement](Development_roadmap/fr.md).
Si vous n'êtes pas impliqué dans le développement discuté ici :
@@ -127,3 +124,6 @@ Une **class design** pour le Resource framwork. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Resource framework project/fr diff --git a/wiki/translations/fr/Reverse_Engineering_Workbench.md b/wiki/translations/fr/Reverse_Engineering_Workbench.md index 999f01872f..9526a8e045 100644 --- a/wiki/translations/fr/Reverse_Engineering_Workbench.md +++ b/wiki/translations/fr/Reverse_Engineering_Workbench.md @@ -1,10 +1,4 @@ -# Reverse Engineering Workbench/fr - - - - - -Icône de l\'atelier Ingénierie inverse +# Icône de l\'atelier Ingénierie inverse Reverse Engineering Workbench/fr ## Introduction @@ -37,3 +31,6 @@ Lien vers les fils de discussion appropriés sur cet atelier [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench/fr diff --git a/wiki/translations/fr/Robot_API_example.md b/wiki/translations/fr/Robot_API_example.md index 7024ee16ae..c2f64281fb 100644 --- a/wiki/translations/fr/Robot_API_example.md +++ b/wiki/translations/fr/Robot_API_example.md @@ -1,6 +1,4 @@ # Robot API example/fr - - ## Introduction Cet exemple est basé sur l\'exemple [RobotExample.py](https://github.com/FreeCAD/FreeCAD_sf_master/blob/master/src/Mod/Robot/RobotExample.py). @@ -193,3 +191,6 @@ for w in App.activeDocument().Trajectory.Trajectory.Waypoints: {{Userdocnavi/fr}} [Category:Robot API](Category:Robot_API.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot API example/fr diff --git a/wiki/translations/fr/Robot_CreateRobot.md b/wiki/translations/fr/Robot_CreateRobot.md index ee2ba126d5..ac4766d7f1 100644 --- a/wiki/translations/fr/Robot_CreateRobot.md +++ b/wiki/translations/fr/Robot_CreateRobot.md @@ -6,6 +6,8 @@ MenuLocation:Robot → Insérer des robots --- +# Robot CreateRobot/fr +
@@ -73,4 +75,7 @@ Les robots prédéfinis sont: {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateRobot/fr diff --git a/wiki/translations/fr/Robot_CreateTrajectory.md b/wiki/translations/fr/Robot_CreateTrajectory.md index 55699335ed..5dca640ea4 100644 --- a/wiki/translations/fr/Robot_CreateTrajectory.md +++ b/wiki/translations/fr/Robot_CreateTrajectory.md @@ -6,6 +6,8 @@ MenuLocation:Robot → Créer une trajectoire --- +# Robot CreateTrajectory/fr + @@ -49,4 +51,7 @@ Cliquez sur +# Icône de l\'atelier Rocket Rocket Workbench/fr {{TOCright}} @@ -53,3 +50,6 @@ Les composants créés à l\'aide de Rocket Workbench sont essentiellement des p [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Rocket Workbench/fr diff --git a/wiki/translations/fr/STEP_project.md b/wiki/translations/fr/STEP_project.md index 564798beba..a08a0420a2 100644 --- a/wiki/translations/fr/STEP_project.md +++ b/wiki/translations/fr/STEP_project.md @@ -1,7 +1,4 @@ # STEP project/fr - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -78,3 +75,6 @@ The ISO 10303 (STEP) is very important in this field. Its the only good standard [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > STEP project/fr diff --git a/wiki/translations/fr/SVG.md b/wiki/translations/fr/SVG.md index 53c8bbb1e4..77fffa8c9b 100644 --- a/wiki/translations/fr/SVG.md +++ b/wiki/translations/fr/SVG.md @@ -1,5 +1,5 @@ # SVG/fr - {{TOCright}} +{{TOCright}} ## Description @@ -24,3 +24,6 @@ FreeCAD est principalement une application de modélisation 3D et ne dispose don [Category:Draft](Category:Draft.md) [Category:TechDraw](Category:TechDraw.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Category:Draft.md) > SVG/fr diff --git a/wiki/translations/fr/Sandbox:Mario52.md b/wiki/translations/fr/Sandbox:Mario52.md index 64cfafe0b4..6abd468f8e 100644 --- a/wiki/translations/fr/Sandbox:Mario52.md +++ b/wiki/translations/fr/Sandbox:Mario52.md @@ -1,5 +1,4 @@ # Sandbox:Mario52/fr - **'''my personal Sanbox Mario52/fr'''
'''Not For Release - Do not Translate - Do not change - Not to read - Not to look'''** @@ -9,3 +8,6 @@ {{PAGELANGUAGE}} [Category:Sandbox](Category:Sandbox.md) + +--- +[documentation index](../README.md) > Sandbox:Mario52/fr diff --git a/wiki/translations/fr/Scenegraph.md b/wiki/translations/fr/Scenegraph.md index 79a514221d..4d7dcf6fef 100644 --- a/wiki/translations/fr/Scenegraph.md +++ b/wiki/translations/fr/Scenegraph.md @@ -1,7 +1,4 @@ # Scenegraph/fr - - - {{TOCright}} ## Introduction @@ -77,3 +74,6 @@ Voir les [Coin3d snippets](Coin3d_snippets/fr.md) grâce aux recherches de Mariw }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scenegraph/fr diff --git a/wiki/translations/fr/Scientific_literature.md b/wiki/translations/fr/Scientific_literature.md index 546f2e0d4b..2d834af22a 100644 --- a/wiki/translations/fr/Scientific_literature.md +++ b/wiki/translations/fr/Scientific_literature.md @@ -1,6 +1,4 @@ # Scientific literature/fr - - ## Description Cette page rassemble quelques articles publiés qui font référence ou utilisent le système FreeCAD. @@ -17,3 +15,6 @@ La plupart de ces articles sont en libre accès. }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Scientific literature/fr diff --git a/wiki/translations/fr/Screenshots.md b/wiki/translations/fr/Screenshots.md index 7f0623a941..e4f21b2e2b 100644 --- a/wiki/translations/fr/Screenshots.md +++ b/wiki/translations/fr/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/fr - {{TOCright}} +{{TOCright}} Vous trouverez ici des vues d\'écran montrant différentes parties de FreeCAD. Elles n\'ont pas d\'ordre particulier, donc les images peuvent être différentes de votre version actuelle. Voir d\'autre vues d\'écrans proposées par des utilisateurs de FreeCAD sur le [sujet call for screenshot](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) et sur le sujet [\"Show your project here!\" de la partie Users Showcase du forum](http://forum.freecadweb.org/viewforum.php?f=24). @@ -202,3 +202,6 @@ FreeCAD s\'exécutant en mode console (sans interface graphique) La boîte de dialogue pour sauvegarder une image avec des dimensions personnalisées. [Category:User Documentation/fr](Category:User_Documentation/fr.md) [Category:Screenshots/fr](Category:Screenshots/fr.md) + +--- +[documentation index](../README.md) > Screenshots/fr diff --git a/wiki/translations/fr/Scripted_Parts:_Ball_Bearing_-_Part_1.md b/wiki/translations/fr/Scripted_Parts:_Ball_Bearing_-_Part_1.md index 8e78e5793e..b20472d24b 100644 --- a/wiki/translations/fr/Scripted_Parts:_Ball_Bearing_-_Part_1.md +++ b/wiki/translations/fr/Scripted_Parts:_Ball_Bearing_-_Part_1.md @@ -1,5 +1,5 @@ # Scripted Parts: Ball Bearing - Part 1/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic= Part : écrire un script - Roulement à bille #1 |Level= Débutant |Time= 30 min @@ -142,3 +142,6 @@ Gui.SendMsgToActiveView("ViewFit") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted Parts: Ball Bearing - Part 1/fr diff --git a/wiki/translations/fr/Scripted_Parts:_Ball_Bearing_-_Part_2.md b/wiki/translations/fr/Scripted_Parts:_Ball_Bearing_-_Part_2.md index d4c27f8e72..0e00f308df 100644 --- a/wiki/translations/fr/Scripted_Parts:_Ball_Bearing_-_Part_2.md +++ b/wiki/translations/fr/Scripted_Parts:_Ball_Bearing_-_Part_2.md @@ -1,5 +1,5 @@ # Scripted Parts: Ball Bearing - Part 2/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic= Part : écrire un script - Roulement à bille #2 |Level= Débutant |Time= 30 min @@ -177,3 +177,6 @@ Gui.SendMsgToActiveView("ViewFit") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted Parts: Ball Bearing - Part 2/fr diff --git a/wiki/translations/fr/Scripted_objects.md b/wiki/translations/fr/Scripted_objects.md index 4dea0249ed..06e6aa1762 100644 --- a/wiki/translations/fr/Scripted_objects.md +++ b/wiki/translations/fr/Scripted_objects.md @@ -1,7 +1,4 @@ # Scripted objects/fr - - - {{TOCright}} ## Introduction @@ -896,3 +893,6 @@ En plus de ces exemples, vous pouvez voir dans le code source de FreeCAD [src/Mo }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects/fr diff --git a/wiki/translations/fr/Scripted_objects_saving_attributes.md b/wiki/translations/fr/Scripted_objects_saving_attributes.md index e4b0cfc409..fdadfb37b5 100644 --- a/wiki/translations/fr/Scripted_objects_saving_attributes.md +++ b/wiki/translations/fr/Scripted_objects_saving_attributes.md @@ -1,7 +1,4 @@ # Scripted objects saving attributes/fr - - - {{TOCright}} ## Introduction @@ -191,3 +188,6 @@ class CustomObject: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects saving attributes/fr diff --git a/wiki/translations/fr/Scripted_objects_with_attachment.md b/wiki/translations/fr/Scripted_objects_with_attachment.md index 8510f54c9c..4160cdcfce 100644 --- a/wiki/translations/fr/Scripted_objects_with_attachment.md +++ b/wiki/translations/fr/Scripted_objects_with_attachment.md @@ -1,5 +1,5 @@ # Scripted objects with attachment/fr - {{TOCright}} +{{TOCright}} ## Introduction @@ -155,3 +155,6 @@ Remarque : pour FreeCAD 0.19, ce tutoriel nécessite une mise à jour mineure : }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects with attachment/fr diff --git a/wiki/translations/fr/Scripting.md b/wiki/translations/fr/Scripting.md index 269a4004cd..12790c5b38 100644 --- a/wiki/translations/fr/Scripting.md +++ b/wiki/translations/fr/Scripting.md @@ -1,2 +1,5 @@ # Scripting/fr 1. REDIRECT [Power\_users\_hub/fr](Power_users_hub/fr.md) + +--- +[documentation index](../README.md) > Scripting/fr diff --git a/wiki/translations/fr/Scripting_and_macros.md b/wiki/translations/fr/Scripting_and_macros.md index 38390e06aa..df7132dba6 100644 --- a/wiki/translations/fr/Scripting_and_macros.md +++ b/wiki/translations/fr/Scripting_and_macros.md @@ -1,9 +1,4 @@ # Scripting and macros/fr - - - - - ## Présentation des pages de script Python - Pages relatives à Python dans le manuel : @@ -96,3 +91,6 @@ }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripting and macros/fr diff --git a/wiki/translations/fr/Scripting_examples.md b/wiki/translations/fr/Scripting_examples.md index 4f21f3785b..cc006c22ff 100644 --- a/wiki/translations/fr/Scripting_examples.md +++ b/wiki/translations/fr/Scripting_examples.md @@ -1,2 +1,5 @@ # Scripting examples/fr 1. REDIRECT [Scripting\_and\_macros/fr](Scripting_and_macros/fr.md) + +--- +[documentation index](../README.md) > Scripting examples/fr diff --git a/wiki/translations/fr/Scripts.md b/wiki/translations/fr/Scripts.md index 78a80e5441..aa08d8763f 100644 --- a/wiki/translations/fr/Scripts.md +++ b/wiki/translations/fr/Scripts.md @@ -1,5 +1,5 @@ # Scripts/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic=Scripting |Level=Base |Time= @@ -312,3 +312,6 @@ C\'est le sens du mot \"maladroit\" que j\'ai utilisé pour définir la proprié }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripts/fr diff --git a/wiki/translations/fr/Selection_API.md b/wiki/translations/fr/Selection_API.md index d89c8642fa..90eec6961b 100644 --- a/wiki/translations/fr/Selection_API.md +++ b/wiki/translations/fr/Selection_API.md @@ -1,5 +1,5 @@ # Selection API/fr - **(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir [Source documentation](Source_documentation/fr.md).** +**(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir [Source documentation](Source_documentation/fr.md).** Le sous-module de sélection fait partie du module FreeCADGui. Exemple: ```python @@ -22,3 +22,6 @@ sel = FreeCADGui.Selection.getSelection() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Selection API/fr diff --git a/wiki/translations/fr/Selection_methods.md b/wiki/translations/fr/Selection_methods.md index aaccf45785..3a0ea447da 100644 --- a/wiki/translations/fr/Selection_methods.md +++ b/wiki/translations/fr/Selection_methods.md @@ -1,10 +1,4 @@ # Selection methods/fr - - - - - - {{TOCright}} ## Présentation @@ -86,8 +80,5 @@ Gui.Selection.addSelectionGate("SELECT Part::Feature SUBELEMENT Edge") Voir la [Documentation du code source](Source_documentation/fr.md) et la [Std Documentation des modules Python](Std_PythonHelp/fr.md) pour plus d\'aide sur l\'utilisation de ces outils. - - - - - +--- +[documentation index](../README.md) > Selection methods/fr diff --git a/wiki/translations/fr/Selection_view.md b/wiki/translations/fr/Selection_view.md index f1e495e362..3ef33c5ba8 100644 --- a/wiki/translations/fr/Selection_view.md +++ b/wiki/translations/fr/Selection_view.md @@ -1,6 +1,4 @@ # Selection view/fr - - ## Introduction @@ -82,4 +80,7 @@ Depuis la v0.19, la case **picked object list** est disponible. Si cette case es {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Selection view/fr diff --git a/wiki/translations/fr/Shape.md b/wiki/translations/fr/Shape.md index 73e3012987..87a326093e 100644 --- a/wiki/translations/fr/Shape.md +++ b/wiki/translations/fr/Shape.md @@ -1,6 +1,4 @@ # Shape/fr - - ## Introduction Dans FreeCAD, le mot \"[Shape](Shape/fr.md)\" est normalement utilisé pour faire référence à une classe [ Part TopoShape](Part_TopoShape.md) (`Part::TopoShape`), un type d\'objet qui donne un élément sa représentation géométrique et paramétrique 3D (cube, pyramide, sphère, cylindre, fusion, etc.). @@ -36,3 +34,6 @@ Cependant, lorsque plus de précision est requise, la distinction doit être fai {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Shape/fr diff --git a/wiki/translations/fr/SheetMetal_AddBase.md b/wiki/translations/fr/SheetMetal_AddBase.md index 69d88c9e9d..0b0e257fb7 100644 --- a/wiki/translations/fr/SheetMetal_AddBase.md +++ b/wiki/translations/fr/SheetMetal_AddBase.md @@ -7,6 +7,8 @@ Shortcut:**C** **B** --- +# SheetMetal AddBase/fr + ## Description La commande *SheetMetal AddBase* crée une paroi en tôle à partir d\'une esquisse. @@ -58,3 +60,6 @@ Un objet SheetMetal Tôle de base est dérivé d\'un objet [Part Feature](Part_F [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddBase/fr diff --git a/wiki/translations/fr/SheetMetal_AddBend.md b/wiki/translations/fr/SheetMetal_AddBend.md index 2eb3f707c4..600c5af398 100644 --- a/wiki/translations/fr/SheetMetal_AddBend.md +++ b/wiki/translations/fr/SheetMetal_AddBend.md @@ -7,6 +7,8 @@ Shortcut:**S** **B** --- +# SheetMetal AddBend/fr + ## Description La commande **SheetMetal AddBend** plie une tôle selon une ligne choisie. @@ -43,3 +45,6 @@ Un objet SheetMetal Transformation en pli est dérivé d\'un objet [Part Feature [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddBend/fr diff --git a/wiki/translations/fr/SheetMetal_AddCornerRelief.md b/wiki/translations/fr/SheetMetal_AddCornerRelief.md index c2388d4e7e..76aa38b691 100644 --- a/wiki/translations/fr/SheetMetal_AddCornerRelief.md +++ b/wiki/translations/fr/SheetMetal_AddCornerRelief.md @@ -7,6 +7,8 @@ Shortcut:**C** **R** --- +# SheetMetal AddCornerRelief/fr + ## Description La commande **SheetMetal AddCornerRelief** ajoute un perçage circulaire pour gruger un coin. @@ -56,3 +58,6 @@ Un objet SheetMetal Grugeage rond du coin est dérivé d\'un objet [Part Feature [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddCornerRelief/fr diff --git a/wiki/translations/fr/SheetMetal_AddFoldWall.md b/wiki/translations/fr/SheetMetal_AddFoldWall.md index 3985f64d18..995c9f64a1 100644 --- a/wiki/translations/fr/SheetMetal_AddFoldWall.md +++ b/wiki/translations/fr/SheetMetal_AddFoldWall.md @@ -7,6 +7,8 @@ Shortcut:**C** **F** --- +# SheetMetal AddFoldWall/fr + ## Description La commande **SheetMetal AddFoldWall** permet de plier une tôle selon une ligne choisie avec un rayon de courbure spécifié. @@ -120,3 +122,6 @@ Remarque : dans la vie réelle, le pliage vers le haut doit être effectué avan [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddFoldWall/fr diff --git a/wiki/translations/fr/SheetMetal_AddJunction.md b/wiki/translations/fr/SheetMetal_AddJunction.md index d83e902957..3bfad4213a 100644 --- a/wiki/translations/fr/SheetMetal_AddJunction.md +++ b/wiki/translations/fr/SheetMetal_AddJunction.md @@ -7,6 +7,8 @@ Shortcut:**S** **J** --- +# SheetMetal AddJunction/fr + ## Description La commande **SheetMetal AddJunction**\... @@ -78,3 +80,6 @@ Un objet SheetMetal Découpe d\'angle est dérivé d\'un objet [Part Feature](Pa [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddJunction/fr diff --git a/wiki/translations/fr/SheetMetal_AddRelief.md b/wiki/translations/fr/SheetMetal_AddRelief.md index d36baa2dac..b88f35bbcc 100644 --- a/wiki/translations/fr/SheetMetal_AddRelief.md +++ b/wiki/translations/fr/SheetMetal_AddRelief.md @@ -7,6 +7,8 @@ Shortcut:**S** **R** --- +# SheetMetal AddRelief/fr + ## Description La commande **SheetMetal AddRelief**\... @@ -78,3 +80,6 @@ Un objet SheetMetal Grugeage carré est dérivé d\'un objet [Part Feature](Part [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddRelief/fr diff --git a/wiki/translations/fr/SheetMetal_AddWall.md b/wiki/translations/fr/SheetMetal_AddWall.md index 13e99bed7a..ef9b498534 100644 --- a/wiki/translations/fr/SheetMetal_AddWall.md +++ b/wiki/translations/fr/SheetMetal_AddWall.md @@ -7,6 +7,8 @@ Shortcut:**W** --- +# SheetMetal AddWall/fr + ## Description La commande **SheetMetal AddWall** crée un pli sur le bord sélectionné. @@ -244,3 +246,6 @@ C\'est fait! [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddWall/fr diff --git a/wiki/translations/fr/SheetMetal_Extrude.md b/wiki/translations/fr/SheetMetal_Extrude.md index 39070428df..dfd81922e5 100644 --- a/wiki/translations/fr/SheetMetal_Extrude.md +++ b/wiki/translations/fr/SheetMetal_Extrude.md @@ -7,6 +7,8 @@ Shortcut:**E** --- +# SheetMetal Extrude/fr + ## Description La commande **SheetMetal Extrude** étend une face de tôle. @@ -92,3 +94,6 @@ Un objet SheetMetal Prolonger une face est dérivé d\'un objet [Part Feature](P [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal Extrude/fr diff --git a/wiki/translations/fr/SheetMetal_Forming.md b/wiki/translations/fr/SheetMetal_Forming.md index d8dce42253..b1acb657c3 100644 --- a/wiki/translations/fr/SheetMetal_Forming.md +++ b/wiki/translations/fr/SheetMetal_Forming.md @@ -7,6 +7,8 @@ Shortcut:**M** **F** --- +# SheetMetal Forming/fr + ## Description @@ -188,3 +190,6 @@ No need to work with coplanar sketches here. [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal Forming/fr diff --git a/wiki/translations/fr/SheetMetal_SketchOnSheet.md b/wiki/translations/fr/SheetMetal_SketchOnSheet.md index 3b1b9ffca2..8a68259489 100644 --- a/wiki/translations/fr/SheetMetal_SketchOnSheet.md +++ b/wiki/translations/fr/SheetMetal_SketchOnSheet.md @@ -7,6 +7,8 @@ Shortcut:**M** **S** --- +# SheetMetal SketchOnSheet/fr + ## Description La commande [Perçage de paroi](SheetMetal_SketchOnSheet/fr.md) découpe des trous le long des parois pliées d\'un objet en tôle. Pour la disposition des trous, une [esquisse](Sketcher_Workbench/fr.md) est utilisée. @@ -135,3 +137,6 @@ Ce bidule est constitué d\'un objet en tôle pliée auquel on a ajouté des tro [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal SketchOnSheet/fr diff --git a/wiki/translations/fr/SheetMetal_UnattendedUnfold.md b/wiki/translations/fr/SheetMetal_UnattendedUnfold.md index 21f3b1c5f0..de53b747a1 100644 --- a/wiki/translations/fr/SheetMetal_UnattendedUnfold.md +++ b/wiki/translations/fr/SheetMetal_UnattendedUnfold.md @@ -8,6 +8,8 @@ SeeAlso:[SheetMetal Déplier](SheetMetal_Unfold/fr.md) --- +# SheetMetal UnattendedUnfold/fr + ## Description La commande [Unattended Unfold](SheetMetal_UnattendedUnfold/fr.md) déplie un objet en tôle. @@ -53,3 +55,6 @@ Voir [Déplie [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal UnattendedUnfold/fr diff --git a/wiki/translations/fr/SheetMetal_Unfold.md b/wiki/translations/fr/SheetMetal_Unfold.md index 35c50dbbb0..c9e9ed65ac 100644 --- a/wiki/translations/fr/SheetMetal_Unfold.md +++ b/wiki/translations/fr/SheetMetal_Unfold.md @@ -8,6 +8,8 @@ SeeAlso:[Déplier sans assistance](SheetMetal_UnattendedUnfold/fr.md) --- +# SheetMetal Unfold/fr + ## Description La commande **SheetMetal Unfold** permet de déplier un objet en tôle. @@ -50,3 +52,6 @@ L\'objet *Unfold*, quant à lui, est dérivé d\'un objet [Part Feature](Part_Fe [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal Unfold/fr diff --git a/wiki/translations/fr/SheetMetal_Workbench.md b/wiki/translations/fr/SheetMetal_Workbench.md index 1026776b98..eeed2aef4c 100644 --- a/wiki/translations/fr/SheetMetal_Workbench.md +++ b/wiki/translations/fr/SheetMetal_Workbench.md @@ -1,8 +1,4 @@ # SheetMetal Workbench/fr - - - -
Icône de l\'atelier externe Sheet Metal @@ -417,3 +413,6 @@ Comment faire ? - Code source sur github: [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > SheetMetal Workbench/fr diff --git a/wiki/translations/fr/Ship_Area.md b/wiki/translations/fr/Ship_Area.md index cd61838e76..c84ed4850a 100644 --- a/wiki/translations/fr/Ship_Area.md +++ b/wiki/translations/fr/Ship_Area.md @@ -1,3 +1,4 @@ +# Ship Area/fr --- - GuiCommand:/fr Name:Ship Area Name/fr:Ship Area MenuLocation:Ship design → Areas curve |Workbenches:[[Ship Workbench/fr Ship]]|Shortcut: SeeAlso:--- @@ -24,4 +25,7 @@ Plot the transversal areas curve {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Area/fr diff --git a/wiki/translations/fr/Ship_Geometries_Examples.md b/wiki/translations/fr/Ship_Geometries_Examples.md index 4820c5b240..39318923a1 100644 --- a/wiki/translations/fr/Ship_Geometries_Examples.md +++ b/wiki/translations/fr/Ship_Geometries_Examples.md @@ -1,3 +1,4 @@ +# Ship Geometries Examples/fr --- - GuiCommand:/fr Name:Ship Load‏‎ Example Name/fr:Ship Load‏‎ Example MenuLocation:Ship design → Load‏‎ an example ship geometry |Workbenches:[[Ship Workbench/fr Ship]]|Shortcut: SeeAlso:--- @@ -50,4 +51,7 @@ In order to help new users, Ship includes a geometries examples loader, with the {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Geometries Examples/fr diff --git a/wiki/translations/fr/Ship_Hydrostatics.md b/wiki/translations/fr/Ship_Hydrostatics.md index 080f5fd6b4..f6b813a33f 100644 --- a/wiki/translations/fr/Ship_Hydrostatics.md +++ b/wiki/translations/fr/Ship_Hydrostatics.md @@ -1,3 +1,4 @@ +# Ship Hydrostatics/fr --- - GuiCommand:/fr Name:Ship Hydrostatics Name/fr:Ship Hydrostatics MenuLocation:Ship design → Hydrostatics |Workbenches:[[Ship Workbench/fr Ship]]|Shortcut: SeeAlso:--- @@ -29,4 +30,7 @@ When the Hydrostatics tool is executed, a task dialog is shown. Usually Hydrosta {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Hydrostatics/fr diff --git a/wiki/translations/fr/Ship_Loading.md b/wiki/translations/fr/Ship_Loading.md index 60a5b177f0..85e69d603a 100644 --- a/wiki/translations/fr/Ship_Loading.md +++ b/wiki/translations/fr/Ship_Loading.md @@ -1,3 +1,4 @@ +# Ship Loading/fr --- - GuiCommand:/fr Name:Ship Loading Name/fr:Ship Loading MenuLocation:Weights → Create a new loading condition |Workbenches:[[Ship Workbench/fr Ship]]|Shortcut: SeeAlso:--- @@ -16,9 +17,5 @@ TODO {{Ship Tools navi/fr}} - - - - - - +--- +[documentation index](../README.md) > Ship Loading/fr diff --git a/wiki/translations/fr/Ship_New.md b/wiki/translations/fr/Ship_New.md index ac6004817b..7306a6b897 100644 --- a/wiki/translations/fr/Ship_New.md +++ b/wiki/translations/fr/Ship_New.md @@ -1,3 +1,4 @@ +# Ship New/fr --- - GuiCommand:/fr Name:Ship New‏‎ Name/fr:Ship New‏‎ MenuLocation:Ship design → Create a new ship |Workbenches:[[Ship Workbench/fr Ship]]|Shortcut: SeeAlso:--- @@ -46,4 +47,7 @@ Note: From here onward, you must have **Ship** selected before you execute any S {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship New/fr diff --git a/wiki/translations/fr/Ship_Outline.md b/wiki/translations/fr/Ship_Outline.md index c6f5a89905..c2561fc2fd 100644 --- a/wiki/translations/fr/Ship_Outline.md +++ b/wiki/translations/fr/Ship_Outline.md @@ -1,3 +1,4 @@ +# Ship Outline/fr --- - GuiCommand:/fr Name:Ship Outline Name/fr:Ship Outline MenuLocation:Ship design → Outline draw |Workbenches:[[Ship Workbench/fr Ship]]|Shortcut: SeeAlso:--- @@ -102,4 +103,7 @@ Outline draw plot. {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Outline/fr diff --git a/wiki/translations/fr/Ship_PlotGZ.md b/wiki/translations/fr/Ship_PlotGZ.md index e61b6a823c..c751ae55e3 100644 --- a/wiki/translations/fr/Ship_PlotGZ.md +++ b/wiki/translations/fr/Ship_PlotGZ.md @@ -1,3 +1,4 @@ +# Ship PlotGZ/fr --- - GuiCommand:/fr Name:Ship PlotGZ Name/fr:Ship PlotGZ MenuLocation:Weights → GZ curve computation |Workbenches:[[Ship Workbench/fr Ship]]|Shortcut: SeeAlso:--- @@ -16,9 +17,5 @@ TODO {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship PlotGZ/fr diff --git a/wiki/translations/fr/Ship_TankCapacity.md b/wiki/translations/fr/Ship_TankCapacity.md index d16e96de50..52c97ba200 100644 --- a/wiki/translations/fr/Ship_TankCapacity.md +++ b/wiki/translations/fr/Ship_TankCapacity.md @@ -1,3 +1,4 @@ +# Ship TankCapacity/fr --- - GuiCommand:/fr Name:Ship TankCapacity MenuLocation:Weights → Tank capacity curve |Workbenches:[[Ship Workbench/fr Ship]]|Shortcut: SeeAlso:--- @@ -16,9 +17,5 @@ TODO {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship TankCapacity/fr diff --git a/wiki/translations/fr/Ship_TankNew.md b/wiki/translations/fr/Ship_TankNew.md index bdf76c5d20..e58b0b4ba4 100644 --- a/wiki/translations/fr/Ship_TankNew.md +++ b/wiki/translations/fr/Ship_TankNew.md @@ -1,3 +1,4 @@ +# Ship TankNew/fr --- - GuiCommand:/fr Name:Ship TankNew Name/fr:Ship TankNew MenuLocation:Weights → Create a new tank |Workbenches:[[Ship Workbench/fr Ship]]|Shortcut: SeeAlso:--- @@ -16,9 +17,5 @@ TODO {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship TankNew/fr diff --git a/wiki/translations/fr/Ship_Weight.md b/wiki/translations/fr/Ship_Weight.md index 954d456f54..e1d2f5ca11 100644 --- a/wiki/translations/fr/Ship_Weight.md +++ b/wiki/translations/fr/Ship_Weight.md @@ -1,3 +1,4 @@ +# Ship Weight/fr --- - GuiCommand:/fr Name:Ship Weight Name/fr:Ship Weight MenuLocation:Weights → Create a new ship weight |Workbenches:[[Ship Workbench/fr Ship]]|Shortcut: SeeAlso:--- @@ -16,9 +17,5 @@ TODO {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship Weight/fr diff --git a/wiki/translations/fr/Ship_Workbench.md b/wiki/translations/fr/Ship_Workbench.md index bd9018082d..9ba78c12b8 100644 --- a/wiki/translations/fr/Ship_Workbench.md +++ b/wiki/translations/fr/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/fr - - -Icône de l\'atelier Ship +# Icône de l\'atelier Ship Ship Workbench/fr {{TOCright}} @@ -67,3 +64,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/fr diff --git a/wiki/translations/fr/Silk_Workbench.md b/wiki/translations/fr/Silk_Workbench.md index 4846919006..37b5913243 100644 --- a/wiki/translations/fr/Silk_Workbench.md +++ b/wiki/translations/fr/Silk_Workbench.md @@ -1,5 +1,5 @@ # Silk Workbench/fr - } +} *align=center|L'icône de l'atelier externe Silk* ## Description @@ -27,3 +27,6 @@ L\'installation recommandée se fait par Silk Workbench/fr diff --git a/wiki/translations/fr/Sketch.md b/wiki/translations/fr/Sketch.md index 01d93c19d1..ac148d9116 100644 --- a/wiki/translations/fr/Sketch.md +++ b/wiki/translations/fr/Sketch.md @@ -1,6 +1,4 @@ # Sketch/fr - - ## Introduction @@ -39,3 +37,6 @@ Néanmoins, une esquisse peut toujours être créée à toute autre fin. Elle ne }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Sketch/fr diff --git a/wiki/translations/fr/Sketcher_BSplineApproximate.md b/wiki/translations/fr/Sketcher_BSplineApproximate.md index 400dee751b..6e11779c9e 100644 --- a/wiki/translations/fr/Sketcher_BSplineApproximate.md +++ b/wiki/translations/fr/Sketcher_BSplineApproximate.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Créer une B-spline](Sketcher_CompCreateBSpline/fr.md) --- +# Sketcher BSplineApproximate/fr + ## Description Convertit une géométrie compatible, arêtes et courbes, en une B-spline. (voir [cette page](B-Splines/fr.md) pour plus d\'informations sur les B-splines). @@ -30,4 +32,7 @@ Assurez-vous d\'avoir soit le [Degré d\'une BSpline](Sketcher_BSplineDegree/fr. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineApproximate/fr diff --git a/wiki/translations/fr/Sketcher_BSplineComb.md b/wiki/translations/fr/Sketcher_BSplineComb.md index 16ec50fb38..da955d6d71 100644 --- a/wiki/translations/fr/Sketcher_BSplineComb.md +++ b/wiki/translations/fr/Sketcher_BSplineComb.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher B-spline](Sketcher_CompCreateBSpline/fr.md) --- +# Sketcher BSplineComb/fr + ## Description Montre ou masque l\'affichage du peigne de courbure d\'une courbe B-spline (voir [cette page](B-Splines/fr.md) pour plus d\'informations sur les B-splines). @@ -27,4 +29,7 @@ Le peigne de courbure indique la courbure (valeur de la dérivée de second ordr {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineComb/fr diff --git a/wiki/translations/fr/Sketcher_BSplineConvertToNURB.md b/wiki/translations/fr/Sketcher_BSplineConvertToNURB.md index 93198a8d17..339b84c3cb 100644 --- a/wiki/translations/fr/Sketcher_BSplineConvertToNURB.md +++ b/wiki/translations/fr/Sketcher_BSplineConvertToNURB.md @@ -1,2 +1,5 @@ # Sketcher BSplineConvertToNURB/fr 1. REDIRECT [Sketcher\_BSplineApproximate/fr](Sketcher_BSplineApproximate/fr.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineConvertToNURB/fr diff --git a/wiki/translations/fr/Sketcher_BSplineDecreaseDegree.md b/wiki/translations/fr/Sketcher_BSplineDecreaseDegree.md index 22a4e646af..93e90b900b 100644 --- a/wiki/translations/fr/Sketcher_BSplineDecreaseDegree.md +++ b/wiki/translations/fr/Sketcher_BSplineDecreaseDegree.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Afficher/masquer degré d'une B-spline](Sketcher_BSplineDegree/fr.md), [Sketcher Augmenter le degré d'une B-spline](Sketcher_BSplineIncreaseDegree/fr.md) --- +# Sketcher BSplineDecreaseDegree/fr + ## Description Diminue le degré (ordre) de la B-spline (voir [cette page](B-Splines/fr.md) pour plus d\'informations sur les B-splines). @@ -42,4 +44,7 @@ Si vous prenez ce résultat et augmentez le degré, vous ne pouvez pas obtenir l {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineDecreaseDegree/fr diff --git a/wiki/translations/fr/Sketcher_BSplineDecreaseKnotMultiplicity.md b/wiki/translations/fr/Sketcher_BSplineDecreaseKnotMultiplicity.md index 93d7b8b183..1a60d4c464 100644 --- a/wiki/translations/fr/Sketcher_BSplineDecreaseKnotMultiplicity.md +++ b/wiki/translations/fr/Sketcher_BSplineDecreaseKnotMultiplicity.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Multiplicité des nœuds d'une B-spline](Sketcher_BSplineKnotMultiplicity/fr.md), [Sketcher Plus de nœuds d'une B-spline](Sketcher_BSplineIncreaseKnotMultiplicity/fr.md) --- +# Sketcher BSplineDecreaseKnotMultiplicity/fr + ## Description Diminue la multiplicité de nœud d\'un nœud de courbe B-spline (voir [cette page](B-Splines/fr.md) pour plus d\'informations sur les B-splines). @@ -46,4 +48,7 @@ On peut voir que la spline de multiplicité de nœud 1 est complètement modifi {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineDecreaseKnotMultiplicity/fr diff --git a/wiki/translations/fr/Sketcher_BSplineDegree.md b/wiki/translations/fr/Sketcher_BSplineDegree.md index 7d77d1add1..51f8247b6f 100644 --- a/wiki/translations/fr/Sketcher_BSplineDegree.md +++ b/wiki/translations/fr/Sketcher_BSplineDegree.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Créer une B-spline](Sketcher_CompCreateBSpline/fr.md) --- +# Sketcher BSplineDegree/fr + ## Description Montre ou masque l\'affichage du **degré** d\'une courbe B-spline (voir [cette page](B-Splines/fr.md) pour plus d\'informations sur les B-splines). @@ -24,4 +26,7 @@ Montre ou masque l\'affichage du **degré** d\'une courbe B-spline (voir [cette {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineDegree/fr diff --git a/wiki/translations/fr/Sketcher_BSplineIncreaseDegree.md b/wiki/translations/fr/Sketcher_BSplineIncreaseDegree.md index 7cf1cf58c1..044b362151 100644 --- a/wiki/translations/fr/Sketcher_BSplineIncreaseDegree.md +++ b/wiki/translations/fr/Sketcher_BSplineIncreaseDegree.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Afficher/masquer degré d'une B-spline](Sketcher_BSplineDegree/fr.md), [Sketcher Diminuer le degré d'une B-spline](Sketcher_BSplineDecreaseDegree/fr.md) --- +# Sketcher BSplineIncreaseDegree/fr + ## Description Augmente le degré (ordre) d\'une B-spline (voir [cette page](B-Splines/fr.md) pour plus d\'informations sur les B-splines). @@ -44,4 +46,7 @@ Vous pouvez voir que maintenant chaque segment a 2 points de contrôle et les n {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineIncreaseDegree/fr diff --git a/wiki/translations/fr/Sketcher_BSplineIncreaseKnotMultiplicity.md b/wiki/translations/fr/Sketcher_BSplineIncreaseKnotMultiplicity.md index ebe0f688f9..7d115da867 100644 --- a/wiki/translations/fr/Sketcher_BSplineIncreaseKnotMultiplicity.md +++ b/wiki/translations/fr/Sketcher_BSplineIncreaseKnotMultiplicity.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Multiplicité des nœuds d'une B-spline](Sketcher_BSplineKnotMultiplicity/fr.md), [Sketcher Moins de nœuds d'une B-spline](Sketcher_BSplineDecreaseKnotMultiplicity/fr.md) --- +# Sketcher BSplineIncreaseKnotMultiplicity/fr + ## Description Augmente la multiplicité de nœud d\'un nœud de courbe B-spline (voir [cette page](B-Splines/fr.md) pour plus d\'informations sur les B-splines). @@ -42,4 +44,7 @@ On peut voir que la spline de multiplicité de nœud 1 est complètement modifi {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineIncreaseKnotMultiplicity/fr diff --git a/wiki/translations/fr/Sketcher_BSplineKnotMultiplicity.md b/wiki/translations/fr/Sketcher_BSplineKnotMultiplicity.md index 499c6a8913..bcc18f55a8 100644 --- a/wiki/translations/fr/Sketcher_BSplineKnotMultiplicity.md +++ b/wiki/translations/fr/Sketcher_BSplineKnotMultiplicity.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Créer une B-spline](Sketcher_CompCreateBSpline/fr.md) --- +# Sketcher BSplineKnotMultiplicity/fr + ## Description Montre ou masque l\'affichage de la multiplicité des nœuds d\'une courbe B-spline. Voir [cette page](Sketcher_BSplineDecreaseKnotMultiplicity/fr#Description.md) pour une explication de la multiplicité. La multiplicité est indiquée entre accolades à côté du nœud. @@ -25,4 +27,7 @@ Montre ou masque l\'affichage de la multiplicité des nœuds d\'une courbe B-spl {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineKnotMultiplicity/fr diff --git a/wiki/translations/fr/Sketcher_BSplinePoleWeight.md b/wiki/translations/fr/Sketcher_BSplinePoleWeight.md index 75ec18f3dc..d6f6c13615 100644 --- a/wiki/translations/fr/Sketcher_BSplinePoleWeight.md +++ b/wiki/translations/fr/Sketcher_BSplinePoleWeight.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher B-spline](Sketcher_CompCreateBSpline/fr.md) --- +# Sketcher BSplinePoleWeight/fr + ## Description Affiche ou masque l\'affichage des **poids** pour les points de contrôle d\'une courbe B-spline (voir [ci-dessous](#Explication_de_poids.md) pour une explication des poids). @@ -59,4 +61,7 @@ La façon de modifier les poids est décrite dans [cette page Wiki](B-Splines#Ch {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplinePoleWeight/fr diff --git a/wiki/translations/fr/Sketcher_BSplinePolygon.md b/wiki/translations/fr/Sketcher_BSplinePolygon.md index 8710d87335..633794eeaa 100644 --- a/wiki/translations/fr/Sketcher_BSplinePolygon.md +++ b/wiki/translations/fr/Sketcher_BSplinePolygon.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Créer une B-spline](Sketcher_CompCreateBSpline/fr.md) --- +# Sketcher BSplinePolygon/fr + ## Description Montre ou masque l\'affichage du polygone de définition d\'une courbe B-spline (voir [cette page](B-Splines/fr.md) pour plus d\'informations sur les B-splines). @@ -24,4 +26,7 @@ Montre ou masque l\'affichage du polygone de définition d\'une courbe B-spline {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplinePolygon/fr diff --git a/wiki/translations/fr/Sketcher_CarbonCopy.md b/wiki/translations/fr/Sketcher_CarbonCopy.md index 244bdf90e0..fb55e93a7f 100644 --- a/wiki/translations/fr/Sketcher_CarbonCopy.md +++ b/wiki/translations/fr/Sketcher_CarbonCopy.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Sketcher CarbonCopy/fr + ## Description L\'outil ** [Sketcher Copie carbone](Sketcher_CarbonCopy/fr.md)** copie toutes les géométries et contraintes d\'une autre esquisse dans l\'esquisse active. @@ -38,4 +40,7 @@ Les contraintes dimensionnelles qui existaient avant la fonction de copie resten {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CarbonCopy/fr diff --git a/wiki/translations/fr/Sketcher_Clone.md b/wiki/translations/fr/Sketcher_Clone.md index 0265cca8ba..70e04da1be 100644 --- a/wiki/translations/fr/Sketcher_Clone.md +++ b/wiki/translations/fr/Sketcher_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Copie](Sketcher_Copy/fr.md), [Sketcher Déplacer](Sketcher_Move/fr.md) --- +# Sketcher Clone/fr + ## Description Clone les éléments d\'esquisse sélectionnés d\'un point à un autre en utilisant le dernier point sélectionné comme référence. Si des contraintes font partie des éléments source, les nouvelles contraintes sont liées aux contraintes source. si les contraintes du source sont modifiées, les contraintes du clone le sont également. Pour éviter ce lien, voir ** [Sketcher Copie](Sketcher_Copy/fr.md)**. @@ -28,4 +30,7 @@ Aucune contrainte supplémentaire pour le comportement clone n\'est ajoutée. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Clone/fr diff --git a/wiki/translations/fr/Sketcher_CloseShape.md b/wiki/translations/fr/Sketcher_CloseShape.md index 36d562586f..425873eb04 100644 --- a/wiki/translations/fr/Sketcher_CloseShape.md +++ b/wiki/translations/fr/Sketcher_CloseShape.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher CloseShape/fr + ## Description Cet outil peut être utilisé pour fermer un contour sélectionné dans l\'esquisse en faisant coïncider une extrémité d\'un élément d\'esquisse avec l\'extrémité de l\'élément d\'esquisse sélectionné ensuite. @@ -30,4 +32,7 @@ L\'outil va connecter les éléments dans l\'ordre de leur sélection, alors ass {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CloseShape/fr diff --git a/wiki/translations/fr/Sketcher_CompConstrainRadDia.md b/wiki/translations/fr/Sketcher_CompConstrainRadDia.md index a13e1c3583..c96d4fbe4b 100644 --- a/wiki/translations/fr/Sketcher_CompConstrainRadDia.md +++ b/wiki/translations/fr/Sketcher_CompConstrainRadDia.md @@ -1,5 +1,5 @@ # Sketcher CompConstrainRadDia/fr - {{GuiCommand/fr +{{GuiCommand/fr |Name=Sketcher constraindre un arc or un cercle |Workbenches=[Atelier Sketcher](Sketcher_Workbench/fr.md) |MenuLocation=Aucun (barre d'outils seulement) @@ -17,4 +17,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompConstrainRadDia/fr diff --git a/wiki/translations/fr/Sketcher_CompCopy.md b/wiki/translations/fr/Sketcher_CompCopy.md index 3a8df78715..49e815d502 100644 --- a/wiki/translations/fr/Sketcher_CompCopy.md +++ b/wiki/translations/fr/Sketcher_CompCopy.md @@ -1,5 +1,5 @@ # Sketcher CompCopy/fr - {{GuiCommand/fr +{{GuiCommand/fr |Name=Cloner, copier ou déplacer une géométrie |Workbenches=[Atelier Sketcher](Sketcher_Workbench/fr.md) |MenuLocation=Aucun (barre d'outils uniquement) @@ -18,4 +18,7 @@ Cloner, copier ou déplacer une géométrie. Cliquez sur la flèche vers le bas {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCopy/fr diff --git a/wiki/translations/fr/Sketcher_CompCreateArc.md b/wiki/translations/fr/Sketcher_CompCreateArc.md index 728d241d27..0042ef363d 100644 --- a/wiki/translations/fr/Sketcher_CompCreateArc.md +++ b/wiki/translations/fr/Sketcher_CompCreateArc.md @@ -7,6 +7,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/fr.md) --- +# Sketcher CompCreateArc/fr + ## Description **Créer un arc** est un bouton d\'icône dans la barre d\'outils Géométries d\'esquisse qui regroupe les outils pour créer un arc de cercle. Il suffit de cliquer sur la flèche bas à sa droite pour dérouler les icônes qu\'il regroupe et sélectionner un outil. @@ -22,4 +24,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateArc/fr diff --git a/wiki/translations/fr/Sketcher_CompCreateBSpline.md b/wiki/translations/fr/Sketcher_CompCreateBSpline.md index f2d0a9cb22..96f495da5f 100644 --- a/wiki/translations/fr/Sketcher_CompCreateBSpline.md +++ b/wiki/translations/fr/Sketcher_CompCreateBSpline.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Sketcher CompCreateBSpline/fr + ## Description **Créer une B-spline** est un bouton d\'icône dans la barre d\'outils Géométries d\'esquisse qui regroupe les outils pour créer une courbe B-spline. Il suffit de cliquer sur la flèche bas à sa droite pour dérouler les icônes qu\'il regroupe et sélectionner un outil. @@ -23,4 +25,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateBSpline/fr diff --git a/wiki/translations/fr/Sketcher_CompCreateCircle.md b/wiki/translations/fr/Sketcher_CompCreateCircle.md index dde507e5a3..35be3d5311 100644 --- a/wiki/translations/fr/Sketcher_CompCreateCircle.md +++ b/wiki/translations/fr/Sketcher_CompCreateCircle.md @@ -7,6 +7,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/fr.md) --- +# Sketcher CompCreateCircle/fr + ## Description **Créer un cercle** est un bouton d\'icône de la barre d\'outils Géométries d\'esquisse qui regroupe les outils pour créer un cercle. Cliquez sur la flèche vers le bas à sa droite pour développer les icônes en dessous et sélectionner un outil. @@ -22,4 +24,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateCircle/fr diff --git a/wiki/translations/fr/Sketcher_CompCreateConic.md b/wiki/translations/fr/Sketcher_CompCreateConic.md index d2f0769fb0..18683ee556 100644 --- a/wiki/translations/fr/Sketcher_CompCreateConic.md +++ b/wiki/translations/fr/Sketcher_CompCreateConic.md @@ -7,6 +7,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/fr.md) --- +# Sketcher CompCreateConic/fr + ## Description **Créer une conique** est un bouton d\'icône dans la barre d\'outils Géométries d\'esquisse qui regroupe les outils de création de courbes basées sur la section d\'un cône. Il suffit de cliquer sur la flèche bas à sa droite pour dérouler les icônes qu\'il regroupe et sélectionner un outil. @@ -25,4 +27,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateConic/fr diff --git a/wiki/translations/fr/Sketcher_CompCreateRectangles.md b/wiki/translations/fr/Sketcher_CompCreateRectangles.md index 5c176bcec1..2161e27e10 100644 --- a/wiki/translations/fr/Sketcher_CompCreateRectangles.md +++ b/wiki/translations/fr/Sketcher_CompCreateRectangles.md @@ -8,6 +8,8 @@ Version:0.20 --- +# Sketcher CompCreateRectangles/fr + ## Description **Créer des rectangles** est un bouton-icône de la barre d\'outils géométries de Sketcher qui regroupe les outils permettant de créer des rectangles. Cliquez sur la flèche vers le bas à sa droite pour développer les icônes situées en dessous et sélectionner un outil. @@ -24,4 +26,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateRectangles/fr diff --git a/wiki/translations/fr/Sketcher_CompCreateRegularPolygon.md b/wiki/translations/fr/Sketcher_CompCreateRegularPolygon.md index 355636bc77..8e691112b3 100644 --- a/wiki/translations/fr/Sketcher_CompCreateRegularPolygon.md +++ b/wiki/translations/fr/Sketcher_CompCreateRegularPolygon.md @@ -7,6 +7,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/fr.md) --- +# Sketcher CompCreateRegularPolygon/fr + ## Description **Créer un polygone régulier** est un bouton d\'icône de la barre d\'outils Géométries d\'esquisse qui regroupe les outils de création de polygones réguliers. Cliquer sur la flèche vers le bas à sa droite pour dérouler les icônes se trouvant dessous et sélectionner un outil. @@ -27,4 +29,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateRegularPolygon/fr diff --git a/wiki/translations/fr/Sketcher_ConnectLines.md b/wiki/translations/fr/Sketcher_ConnectLines.md index 9cef276aa4..58124d2a7c 100644 --- a/wiki/translations/fr/Sketcher_ConnectLines.md +++ b/wiki/translations/fr/Sketcher_ConnectLines.md @@ -9,6 +9,8 @@ SeeAlso:[Sketcher Contrainte de coïncidence](Sketcher_ConstrainCoincident/fr.md) --- +# Sketcher ConnectLines/fr + ## Description Applique des [Contraintes de coïncidence](Sketcher_ConstrainCoincident/fr.md) aux points de terminaison avec les mêmes coordonnées que les éléments sélectionnés. @@ -31,4 +33,7 @@ Avant d\'utiliser cette commande, assurez-vous que des contraintes évidentes (h {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConnectLines/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainAngle.md b/wiki/translations/fr/Sketcher_ConstrainAngle.md index ec205f987d..a617dce5fb 100644 --- a/wiki/translations/fr/Sketcher_ConstrainAngle.md +++ b/wiki/translations/fr/Sketcher_ConstrainAngle.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Contrainte dimensionnelle](Sketcher_ConstrainDistance/fr.md), [Sketcher Contrainte perpendiculaire](Sketcher_ConstrainPerpendicular/fr.md) --- +# Sketcher ConstrainAngle/fr + ## Description La Contrainte d\'Angle est une [Donnée de contrainte](Sketcher_Workbench/fr#Contraintes_d'esquisse.md) destinée à fixer les angles sur le croquis. Elle est capable de fixer des pentes de lignes individuelles, les angles entre les lignes, les angles des intersections de courbes, et l\'espace d\'angles d\'arcs circulaires @@ -105,4 +107,7 @@ La page [Sketcher : Écrire des scripts](Sketcher_scripting/fr.md) explique les {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainAngle/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainBlock.md b/wiki/translations/fr/Sketcher_ConstrainBlock.md index 2beee85bf5..f75334022e 100644 --- a/wiki/translations/fr/Sketcher_ConstrainBlock.md +++ b/wiki/translations/fr/Sketcher_ConstrainBlock.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Contrainte fixe](Sketcher_ConstrainLock/fr.md) --- +# Sketcher ConstrainBlock/fr + ## Description La **Contrainte de blocage** permet de bloquer un élément en place à l\'aide d\'une seule contrainte. @@ -34,4 +36,7 @@ La page [Sketcher : Écrire des scripts](Sketcher_scripting/fr.md) explique les {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainBlock/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainCoincident.md b/wiki/translations/fr/Sketcher_ConstrainCoincident.md index fd4f4b1c3b..0806f4e8f6 100644 --- a/wiki/translations/fr/Sketcher_ConstrainCoincident.md +++ b/wiki/translations/fr/Sketcher_ConstrainCoincident.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Contrainte fixe](Sketcher_ConstrainLock/fr.md), [Sketcher Contrainte point sur objet](Sketcher_ConstrainPointOnObject/fr.md) --- +# Sketcher ConstrainCoincident/fr + ## Description Créer une contrainte de coïncidence entre les éléments sélectionnés. @@ -81,4 +83,7 @@ La page [Sketcher : Écrire un script](Sketcher_scripting/fr.md) explique les va {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainCoincident/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainDiameter.md b/wiki/translations/fr/Sketcher_ConstrainDiameter.md index 6d82adf7d2..2159a87f32 100644 --- a/wiki/translations/fr/Sketcher_ConstrainDiameter.md +++ b/wiki/translations/fr/Sketcher_ConstrainDiameter.md @@ -8,6 +8,8 @@ Version:0.18 --- +# Sketcher ConstrainDiameter/fr + ## Description Cette contrainte contraint la valeur du diamètre d\'un cercle ou d\'un arc à avoir une valeur spécifique. Si plus d\'un cercle ou d\'un arc est sélectionné avant de lancer la commande : @@ -41,4 +43,7 @@ La page [Sketcher : Écrire des scripts](Sketcher_scripting/fr.md) explique les {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDiameter/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainDistance.md b/wiki/translations/fr/Sketcher_ConstrainDistance.md index 65238b555d..40ecca01d5 100644 --- a/wiki/translations/fr/Sketcher_ConstrainDistance.md +++ b/wiki/translations/fr/Sketcher_ConstrainDistance.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Contrainte distance horizontale](Sketcher_ConstrainDistanceX/fr.md), [Sketcher Contrainte distance verticale](Sketcher_ConstrainDistanceY/fr.md) --- +# Sketcher ConstrainDistance/fr + ## Description La **contrainte dimensionnelle** spécifie par une valeur la longueur d\'une ligne, la distance perpendiculaire entre un point et une ligne, ou la distance entre deux points. @@ -59,4 +61,7 @@ La page [Sketcher : Écrire des scripts](Sketcher_scripting/fr.md) explique les {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistance/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainDistanceX.md b/wiki/translations/fr/Sketcher_ConstrainDistanceX.md index 869e718765..0eb7fbe206 100644 --- a/wiki/translations/fr/Sketcher_ConstrainDistanceX.md +++ b/wiki/translations/fr/Sketcher_ConstrainDistanceX.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Contrainte dimensionnelle](Sketcher_ConstrainDistance/fr.md), [Sketcher Contrainte distance verticale](Sketcher_ConstrainDistanceY/fr.md) --- +# Sketcher ConstrainDistanceX/fr + ## Description Fixe la distance verticale entre 2 points ou fin de lignes. Si un seul point est sélectionné, la distance sera définie par rapport à l\'origine de l\'esquisse. @@ -50,4 +52,7 @@ La page [Sketcher : Écrire des scripts](Sketcher_scripting/fr.md) explique les {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceX/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainDistanceY.md b/wiki/translations/fr/Sketcher_ConstrainDistanceY.md index 24f2a1a5c8..3e7ca56432 100644 --- a/wiki/translations/fr/Sketcher_ConstrainDistanceY.md +++ b/wiki/translations/fr/Sketcher_ConstrainDistanceY.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Contrainte distance horizontale](Sketcher_ConstrainDistanceX/fr.md), [Sketcher Contrainte dimensionnelle](Sketcher_ConstrainDistance/fr.md) --- +# Sketcher ConstrainDistanceY/fr + ## Description Fixe la distance verticale entre 2 points ou extrémités de lignes. Si un seul point est sélectionné, la distance est définie par rapport à l\'origine de l\'esquisse. @@ -50,4 +52,7 @@ La page [Sketcher : Écrire des scripts](Sketcher_scripting/fr.md) explique les {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceY/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainEqual.md b/wiki/translations/fr/Sketcher_ConstrainEqual.md index 33231b7ac5..0bd359a664 100644 --- a/wiki/translations/fr/Sketcher_ConstrainEqual.md +++ b/wiki/translations/fr/Sketcher_ConstrainEqual.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Contrainte rayon](Sketcher_ConstrainRadius/fr.md) --- +# Sketcher ConstrainEqual/fr + ## Description La **Contrainte d\'égalité** contraint deux ou plusieurs segments de ligne, polyligne ou de rectangle d\'avoir une longueur égale. Si elle est appliquée à des arcs de cercles ou des cercles, leurs rayons sont contraints à devenir égaux. La contrainte ne peut pas être appliquée à des primitives géométriques qui ne sont pas du même type (par exemple des segments de ligne et des arcs). @@ -63,4 +65,7 @@ La page [Sketcher Scripts](Sketcher_scripting/fr.md) explique les valeurs qui pe {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainEqual/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainHorizontal.md b/wiki/translations/fr/Sketcher_ConstrainHorizontal.md index f979181f1b..224e6b3b51 100644 --- a/wiki/translations/fr/Sketcher_ConstrainHorizontal.md +++ b/wiki/translations/fr/Sketcher_ConstrainHorizontal.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Contrainte verticale](Sketcher_ConstrainVertical/fr.md) --- +# Sketcher ConstrainHorizontal/fr + ## Description La contrainte horizontale oblige une ligne sélectionnée ou des lignes dans l\'esquisse à être parallèles à l\'axe horizontal de l\'esquisse. @@ -42,4 +44,7 @@ La page [Sketcher : Écrire des scripts](Sketcher_scripting/fr.md) explique les {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainHorizontal/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainInternalAlignment.md b/wiki/translations/fr/Sketcher_ConstrainInternalAlignment.md index d4ecf3c54c..cb7a0e5261 100644 --- a/wiki/translations/fr/Sketcher_ConstrainInternalAlignment.md +++ b/wiki/translations/fr/Sketcher_ConstrainInternalAlignment.md @@ -9,6 +9,8 @@ SeeAlso:[Sketcher Basculer géométrie interne](Sketcher_RestoreInternalAlignmentGeometry/fr.md), [Sketcher Ellipse](Sketcher_CreateEllipseByCenter/fr.md) --- +# Sketcher ConstrainInternalAlignment/fr + ## Description Cette **Contrainte d\'alignement interne** aligne les lignes et les points à des endroits particuliers d\'un élément complexe d\'esquisse (il y a juste un élément \"complexe\" jusqu\'à présent, l\'[Ellipse](Sketcher_CreateEllipseByCenter/fr.md)). @@ -58,4 +60,7 @@ La page [Sketcher : Ecrire un script](Sketcher_scripting/fr.md) explique les val {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainInternalAlignment/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainLock.md b/wiki/translations/fr/Sketcher_ConstrainLock.md index 1e14590a3b..17b5912840 100644 --- a/wiki/translations/fr/Sketcher_ConstrainLock.md +++ b/wiki/translations/fr/Sketcher_ConstrainLock.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Contrainte de blocage](Sketcher_ConstrainBlock/fr.md) --- +# Sketcher ConstrainLock/fr + ## Description La **Contrainte fixe** applique des contraintes ** [distance verticale](Sketcher_ConstrainDistanceY/fr.md)** aux sommets (points) sélectionnés dans l\'esquisse. Si un seul sommet est sélectionné, les contraintes de distance horizontale et verticale se référeront au point d\'origine de l\'esquisse. Si deux points ou plus sont sélectionnés, des contraintes de distance horizontale et verticale seront ajoutées pour chaque paire de points. Il n\'y a pas d\'invite automatique pour modifier les valeurs des contraintes, elles doivent être modifiées manuellement. @@ -29,4 +31,7 @@ La [Cont {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainLock/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainParallel.md b/wiki/translations/fr/Sketcher_ConstrainParallel.md index 75c923c4a2..c7333d7291 100644 --- a/wiki/translations/fr/Sketcher_ConstrainParallel.md +++ b/wiki/translations/fr/Sketcher_ConstrainParallel.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Contrainte verticale](Sketcher_ConstrainVertical/fr.md), [Sketcher Contrainte horizontale](Sketcher_ConstrainHorizontal/fr.md) --- +# Sketcher ConstrainParallel/fr + ## Description La **Contrainte parallèle** force deux éléments sélectionnés, lignes droites ou arêtes à devenir parallèles. @@ -47,4 +49,7 @@ La page [Sketcher : Écrire des scripts](Sketcher_scripting/fr.md) explique les {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainParallel/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainPerpendicular.md b/wiki/translations/fr/Sketcher_ConstrainPerpendicular.md index 95d23a20df..f3a9d5c102 100644 --- a/wiki/translations/fr/Sketcher_ConstrainPerpendicular.md +++ b/wiki/translations/fr/Sketcher_ConstrainPerpendicular.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Contrainte angulaire](Sketcher_ConstrainAngle/fr.md) --- +# Sketcher ConstrainPerpendicular/fr + ## Description La contrainte perpendiculaire fait que deux lignes soient perpendiculaires (càd orthognales) l\'une à l\'autre, ou deux courbes soit perpendiculaires à leur intersection. Les lignes sont traitées infinie, et des arcs sont traités comme des cercles pleins/ellipses. La contrainte est également capable de connecter deux courbes, les forçant perpendiculaire à la jointure, de manière similaire à la ** [Contrainte tangente](Sketcher_ConstrainTangent/fr.md)**. @@ -112,4 +114,7 @@ La page [Sketcher : Écrire des scripts](Sketcher_scripting/fr.md) explique les {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPerpendicular/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainPointOnObject.md b/wiki/translations/fr/Sketcher_ConstrainPointOnObject.md index a9497a7c3a..4ab06f6215 100644 --- a/wiki/translations/fr/Sketcher_ConstrainPointOnObject.md +++ b/wiki/translations/fr/Sketcher_ConstrainPointOnObject.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Constraint Coincident](Sketcher_ConstrainCoincident/fr.md) --- +# Sketcher ConstrainPointOnObject/fr + ## Description Appose un point sur un autre objet tel qu\'une ligne, un arc ou un axe d\'esquisse. @@ -46,4 +48,7 @@ La page [Sketcher : Écrire des scripts](Sketcher_scripting/fr.md) explique comm {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPointOnObject/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainRadiam.md b/wiki/translations/fr/Sketcher_ConstrainRadiam.md index 94d5d652fe..ca8fab353c 100644 --- a/wiki/translations/fr/Sketcher_ConstrainRadiam.md +++ b/wiki/translations/fr/Sketcher_ConstrainRadiam.md @@ -8,6 +8,8 @@ Version:0.20 --- +# Sketcher ConstrainRadiam/fr + ## Description Cette contrainte contraint automatiquement la valeur du rayon/diamètre d\'un cercle ou d\'un arc à avoir une valeur spécifique. Les règles suivantes sont appliquées : @@ -44,4 +46,7 @@ Aucun script spécifique ne s\'applique. Voir la page [Sketcher Scripts](Sketche {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadiam/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainRadius.md b/wiki/translations/fr/Sketcher_ConstrainRadius.md index bc77c3702d..37ffcd7ba6 100644 --- a/wiki/translations/fr/Sketcher_ConstrainRadius.md +++ b/wiki/translations/fr/Sketcher_ConstrainRadius.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Contrainte dimensionnelle](Sketcher_ConstrainDistance/fr.md), [Sketcher Contrainte distance horizontale ](Sketcher_ConstrainDistanceX/fr.md), [Sketcher Contrainte distance verticale](Sketcher_ConstrainDistanceY/fr.md) --- +# Sketcher ConstrainRadius/fr + ## Description Cette contrainte contraint la valeur du rayon d\'un cercle ou d\'un arc à avoir une valeur spécifique. Si plus d\'un cercle ou d\'un arc est sélectionné avant de lancer la commande : @@ -42,4 +44,7 @@ La page [Sketcher : Écrire des scripts](Sketcher_scripting/fr.md) explique les {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadius/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainSnellsLaw.md b/wiki/translations/fr/Sketcher_ConstrainSnellsLaw.md index 7e8b755817..271e7abc92 100644 --- a/wiki/translations/fr/Sketcher_ConstrainSnellsLaw.md +++ b/wiki/translations/fr/Sketcher_ConstrainSnellsLaw.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher ConstrainSnellsLaw/fr + ## Description Contraint deux lignes à suivre la loi de la réfraction de la lumière qui pénètre à travers une interface, où deux matériaux de différents indices de réfraction se rencontrent. Voir [Loi de Snell](http://fr.wikipedia.org/wiki/Loi_de_Snell_Descartes) sur Wikipedia pour plus d\'info. @@ -96,4 +98,7 @@ App.ActiveDocument.recompute() {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSnellsLaw/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainSymmetric.md b/wiki/translations/fr/Sketcher_ConstrainSymmetric.md index 8ee5875b09..6dd2882030 100644 --- a/wiki/translations/fr/Sketcher_ConstrainSymmetric.md +++ b/wiki/translations/fr/Sketcher_ConstrainSymmetric.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Contrainte parallèle](Sketcher_ConstrainParallel/fr.md) --- +# Sketcher ConstrainSymmetric/fr + ## Description La **contrainte symétrique** contraint deux points sélectionnés à devenir symétriques à une ligne donnée, à savoir, deux points sélectionnés sont contraints de se situer sur une normale (ligne) passant par les deux points et sont contraints d\'être équidistants à la normale (ligne). Alternativement, elle peut contraindre deux points à être symétriques par rapport à un troisième. @@ -61,4 +63,7 @@ La page [Sketcher : Écrire des scripts](Sketcher_scripting/fr.md) explique les {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSymmetric/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainTangent.md b/wiki/translations/fr/Sketcher_ConstrainTangent.md index 5b8274206f..d78f607c58 100644 --- a/wiki/translations/fr/Sketcher_ConstrainTangent.md +++ b/wiki/translations/fr/Sketcher_ConstrainTangent.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Contrainte point sur objet](Sketcher_ConstrainPointOnObject/fr.md) --- +# Sketcher ConstrainTangent/fr + ## Description La Contrainte tangente fait se toucher deux courbes (devant être tangente). Les lignes sont traitées comme infinie, et les arcs sont traités comme des cercles pleins/ellipses. La contrainte est également capable de connecter deux courbes, les forçant à tangenter au niveau du joint, ce qui rend le joint lisse et continu. @@ -123,4 +125,7 @@ La page [Sketcher : Écrire des scripts](Sketcher_scripting/fr.md) explique les {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainTangent/fr diff --git a/wiki/translations/fr/Sketcher_ConstrainVertical.md b/wiki/translations/fr/Sketcher_ConstrainVertical.md index e837bb061b..bd20d78a20 100644 --- a/wiki/translations/fr/Sketcher_ConstrainVertical.md +++ b/wiki/translations/fr/Sketcher_ConstrainVertical.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Contrainte horizontale](Sketcher_ConstrainHorizontal/fr.md) --- +# Sketcher ConstrainVertical/fr + ## Description Permet de créér une contrainte de verticalité sur les lignes ou segments de polylignes sélectionnés. {{VersionPlus/fr|0.17}}on peut aussi contraindre des sommets verticalement. Plus d\'un élément peut être sélectionné. @@ -35,4 +37,7 @@ La page [Sketcher : Écrire des scripts](Sketcher_scripting/fr.md) explique les {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainVertical/fr diff --git a/wiki/translations/fr/Sketcher_ConvertToNURB.md b/wiki/translations/fr/Sketcher_ConvertToNURB.md index e2e4bf0468..02209c8226 100644 --- a/wiki/translations/fr/Sketcher_ConvertToNURB.md +++ b/wiki/translations/fr/Sketcher_ConvertToNURB.md @@ -1,2 +1,5 @@ # Sketcher ConvertToNURB/fr 1. REDIRECT [Sketcher\_BSplineApproximate/fr](Sketcher_BSplineApproximate/fr.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConvertToNURB/fr diff --git a/wiki/translations/fr/Sketcher_Copy.md b/wiki/translations/fr/Sketcher_Copy.md index 6f39d6cf1f..09aada0f75 100644 --- a/wiki/translations/fr/Sketcher_Copy.md +++ b/wiki/translations/fr/Sketcher_Copy.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Clone](Sketcher_Clone/fr.md), [Sketcher Déplacer](Sketcher_Move/fr.md) --- +# Sketcher Copy/fr + ## Description Copie les éléments d'esquisse sélectionnés d'un point à un autre, en utilisant le dernier point sélectionné comme référence. Lorsqu\'une copie est faite, aucun lien n\'est établi entre la copie et l\'original, voir ** [Sketcher Clone](Sketcher_Clone/fr.md)**. @@ -26,4 +28,7 @@ Aucune contrainte supplémentaire n\'est ajoutée. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Copy/fr diff --git a/wiki/translations/fr/Sketcher_Create3PointArc.md b/wiki/translations/fr/Sketcher_Create3PointArc.md index 4b755f0361..e074e3d91e 100644 --- a/wiki/translations/fr/Sketcher_Create3PointArc.md +++ b/wiki/translations/fr/Sketcher_Create3PointArc.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Sketcher Create3PointArc/fr + ## Description Cet outil créé un arc par trois : le point de départ, le point de fin et un point sur l\'arc @@ -25,4 +27,7 @@ Quand cet outil est activé, le pointeur de la souris change en une croix blanch {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Create3PointArc/fr diff --git a/wiki/translations/fr/Sketcher_Create3PointCircle.md b/wiki/translations/fr/Sketcher_Create3PointCircle.md index 309fafa239..93edfba120 100644 --- a/wiki/translations/fr/Sketcher_Create3PointCircle.md +++ b/wiki/translations/fr/Sketcher_Create3PointCircle.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Sketcher Create3PointCircle/fr + ## Description Cet outil dessine un cercle en choisissant trois points. Lors du démarrage de l\'outil, le pointeur de la souris passe à une croix blanche avec une icône de cercle rouge. En outre, les coordonnées sont affichées en temps réel. @@ -23,4 +25,7 @@ Cet outil \_\_TOC\_\_ @@ -217,4 +211,7 @@ Vous pouvez définir les options suivantes : {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Dialog/fr diff --git a/wiki/translations/fr/Sketcher_EditSketch.md b/wiki/translations/fr/Sketcher_EditSketch.md index 6ef8e28e1c..81aa1e481e 100644 --- a/wiki/translations/fr/Sketcher_EditSketch.md +++ b/wiki/translations/fr/Sketcher_EditSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Quitter l'esquisse](Sketcher_LeaveSketch/fr.md) --- +# Sketcher EditSketch/fr + ## Description Cette commande permet de modifier une esquisse existante. Cela ouvre la [boite de dialogue de Sketcher](Sketcher_Dialog/fr.md). @@ -30,4 +32,7 @@ Il existe plusieurs façons d\'appeler la commande Modifier l\'esquisse: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher EditSketch/fr diff --git a/wiki/translations/fr/Sketcher_Extend.md b/wiki/translations/fr/Sketcher_Extend.md index 0aed8d1b54..4014ba3909 100644 --- a/wiki/translations/fr/Sketcher_Extend.md +++ b/wiki/translations/fr/Sketcher_Extend.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Ajuster l'arête](Sketcher_Trimming/fr.md) --- +# Sketcher Extend/fr + ## Description L\'outil **prolonger l\'arête** prolonge une arête vers une position arbitraire dans l\'esquisse, ou vers une autre arête. @@ -34,4 +36,7 @@ L\'outil **prolonger l\'arête** prolonge une arête vers une position arbitrair {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Extend/fr diff --git a/wiki/translations/fr/Sketcher_External.md b/wiki/translations/fr/Sketcher_External.md index 2a9e71bd93..93419c6cfa 100644 --- a/wiki/translations/fr/Sketcher_External.md +++ b/wiki/translations/fr/Sketcher_External.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Basculer en géométrie de construction](Sketcher_ToggleConstruction/fr.md) --- +# Sketcher External/fr + ## Description L\'outil ** [Géométrie externe](Sketcher_External/fr.md)** est utile lorsque vous avez besoin de créer une contrainte entre un élément de l\'esquisse et un élément hors de l\'esquisse. Il fonctionne en insérant une géométrie de construction liée dans l\'esquisse. La couleur par défaut des arêtes externes liés est magenta. Comme pour les géométries de construction non liée (bleu), la géométrie externe liée est visible uniquement lorsque l\'esquisse est en mode d\'édition, et n\'est pas utilisée directement dans le résultat subséquent. Les deux types de géométrie de construction sont utilisés en tant que référence pour les contraintes dans l\'esquisse. @@ -77,4 +79,7 @@ Lorsque l\'esquisse est fermée, les lignes de géométrie externe ne sont pas v {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher External/fr diff --git a/wiki/translations/fr/Sketcher_LeaveSketch.md b/wiki/translations/fr/Sketcher_LeaveSketch.md index 2cd2e3199e..38f9e81b14 100644 --- a/wiki/translations/fr/Sketcher_LeaveSketch.md +++ b/wiki/translations/fr/Sketcher_LeaveSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Modifier l'esquisse](Sketcher_EditSketch/fr.md) --- +# Sketcher LeaveSketch/fr + ## Description La commande **Quitter l\'esquisse** quitte le mode d\'édition d\'esquisse et libère le [Panneau des tâches](Task_Panel/fr.md). @@ -23,4 +25,7 @@ La commande **Quitter l\'esquisse** quitte le mode d\'édition d\'esquisse et li {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher LeaveSketch/fr diff --git a/wiki/translations/fr/Sketcher_MapSketch.md b/wiki/translations/fr/Sketcher_MapSketch.md index 47da2ca111..b85165d3a1 100644 --- a/wiki/translations/fr/Sketcher_MapSketch.md +++ b/wiki/translations/fr/Sketcher_MapSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Créer une esquisse](Sketcher_NewSketch/fr.md) --- +# Sketcher MapSketch/fr + ## Description Cet outil applique une esquisse existante sur la face d\'une forme. Les fonctions PartDesign créées à partir de l\'esquisse seront fusionnées au solide sous-jacent dans le case de fonctions d\'ajout de matière (Protrusion, Révolution) ou seront soustraites du solide sous-jacent dans le cas de fonctions d\'enlèvement de matière (Cavité, Enlèvement de matière par révolution). @@ -54,4 +56,7 @@ Maintenant, nous sélectionnons la face de dessus de la protrusion (Pad) puis cl {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MapSketch/fr diff --git a/wiki/translations/fr/Sketcher_MergeSketches.md b/wiki/translations/fr/Sketcher_MergeSketches.md index ddc900ac51..fe0ecbf374 100644 --- a/wiki/translations/fr/Sketcher_MergeSketches.md +++ b/wiki/translations/fr/Sketcher_MergeSketches.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher MergeSketches/fr + ## Description Fusionne deux esquisses ou plus en une seule. @@ -23,4 +25,7 @@ Fusionne deux esquisses ou plus en une seule. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MergeSketches/fr diff --git a/wiki/translations/fr/Sketcher_Micro_Tutorial_-_Constraint_Practices.md b/wiki/translations/fr/Sketcher_Micro_Tutorial_-_Constraint_Practices.md index bffefb16ae..3161026956 100644 --- a/wiki/translations/fr/Sketcher_Micro_Tutorial_-_Constraint_Practices.md +++ b/wiki/translations/fr/Sketcher_Micro_Tutorial_-_Constraint_Practices.md @@ -1,7 +1,4 @@ # Sketcher Micro Tutorial - Constraint Practices/fr - - - {{TutorialInfo/fr |Topic=Sketcher |Level=Débutant @@ -127,4 +124,7 @@ En regardant la section **Constraints** du [Panneau des tâches](Task_Panel/fr.m {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Micro Tutorial - Constraint Practices/fr diff --git a/wiki/translations/fr/Sketcher_MirrorSketch.md b/wiki/translations/fr/Sketcher_MirrorSketch.md index 8df6ac8fcc..58325d5cec 100644 --- a/wiki/translations/fr/Sketcher_MirrorSketch.md +++ b/wiki/translations/fr/Sketcher_MirrorSketch.md @@ -7,6 +7,8 @@ Version:0.16 --- +# Sketcher MirrorSketch/fr + ## Description Met en miroir une esquisse le long de l\'axe x, de l\'axe y ou de l\'origine. Cette commande est lancée lorsque vous n\'éditez pas d\'esquisse. Elle crée une nouvelle esquisse qui contient la géométrie réfléchie. @@ -27,4 +29,7 @@ Remarques: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MirrorSketch/fr diff --git a/wiki/translations/fr/Sketcher_Module.md b/wiki/translations/fr/Sketcher_Module.md index af8c3c1730..ec8273f963 100644 --- a/wiki/translations/fr/Sketcher_Module.md +++ b/wiki/translations/fr/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/fr 1. REDIRECT [Sketcher Workbench/fr](Sketcher_Workbench/fr.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/fr diff --git a/wiki/translations/fr/Sketcher_Move.md b/wiki/translations/fr/Sketcher_Move.md index c48ed66af5..0d72a6178f 100644 --- a/wiki/translations/fr/Sketcher_Move.md +++ b/wiki/translations/fr/Sketcher_Move.md @@ -9,6 +9,8 @@ SeeAlso:[Sketcher Clone](Sketcher_Clone/fr.md), [Sketcher Copie](Sketcher_Copy/fr.md) --- +# Sketcher Move/fr + ## Description Déplace les éléments d\'esquisse sélectionnés d\'un point à un autre, en utilisant le dernier point sélectionné comme référence. @@ -31,4 +33,7 @@ Déplace les éléments d\'esquisse sélectionnés d\'un point à un autre, en u {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Move/fr diff --git a/wiki/translations/fr/Sketcher_NewSketch.md b/wiki/translations/fr/Sketcher_NewSketch.md index 829895af12..66279d20c3 100644 --- a/wiki/translations/fr/Sketcher_NewSketch.md +++ b/wiki/translations/fr/Sketcher_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Nouvelle esquisse](PartDesign_NewSketch/fr.md), [Sketcher Appliquer une esquisse sur une face](Sketcher_MapSketch/fr.md), [Sketcher Réorienter l'esquisse](Sketcher_ReorientSketch/fr.md) --- +# Sketcher NewSketch/fr + ## Description Cela créera une nouvelle [esquisse](Sketcher_Workbench/fr.md). @@ -37,4 +39,7 @@ L\'esquisse peut être déplacée dans la [vue 3D](3D_view/fr.md) en utilisant [ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher NewSketch/fr diff --git a/wiki/translations/fr/Sketcher_Preferences.md b/wiki/translations/fr/Sketcher_Preferences.md index 3701f251a4..6a0ecbed34 100644 --- a/wiki/translations/fr/Sketcher_Preferences.md +++ b/wiki/translations/fr/Sketcher_Preferences.md @@ -1,7 +1,4 @@ # Sketcher Preferences/fr - - - {{TOCright}} La fenêtre des préférences de l\' [atelier Sketcher](Sketcher_Workbench/fr.md) se trouve dans [Éditeur des Préférences](Preferences_Editor.md), **Menu Édition → Préférences → Sketcher**. @@ -246,3 +243,6 @@ Dans l\'onglet *Couleurs*, vous pouvez spécifier les éléments suivants: }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Preferences/fr diff --git a/wiki/translations/fr/Sketcher_RectangularArray.md b/wiki/translations/fr/Sketcher_RectangularArray.md index a1a0da4cb3..cd35c56c12 100644 --- a/wiki/translations/fr/Sketcher_RectangularArray.md +++ b/wiki/translations/fr/Sketcher_RectangularArray.md @@ -7,6 +7,8 @@ Version:0.16 --- +# Sketcher RectangularArray/fr + ## Description Créer un réseau à partir d\'éléments du sketcher . @@ -29,4 +31,7 @@ Créer un réseau à partir d\'éléments du sketcher . {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RectangularArray/fr diff --git a/wiki/translations/fr/Sketcher_RemoveAxesAlignment.md b/wiki/translations/fr/Sketcher_RemoveAxesAlignment.md index 5bb042a805..6e6cf4d286 100644 --- a/wiki/translations/fr/Sketcher_RemoveAxesAlignment.md +++ b/wiki/translations/fr/Sketcher_RemoveAxesAlignment.md @@ -7,6 +7,8 @@ Version:0.20 --- +# Sketcher RemoveAxesAlignment/fr + ## Description Cet outil supprime les alignements d\'axe ( [Horizontal](Sketcher_ConstrainHorizontal/fr.md), [Vertical](Sketcher_ConstrainVertical/fr.md)) des éléments sélectionnés en essayant de préserver la relation de contrainte. @@ -30,4 +32,7 @@ Le résultat est que les contraintes (horizontales et verticales) seront supprim {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RemoveAxesAlignment/fr diff --git a/wiki/translations/fr/Sketcher_Reorient.md b/wiki/translations/fr/Sketcher_Reorient.md index 21e2ad191a..bdc49ece23 100644 --- a/wiki/translations/fr/Sketcher_Reorient.md +++ b/wiki/translations/fr/Sketcher_Reorient.md @@ -1,2 +1,5 @@ # Sketcher Reorient/fr 1. REDIRECT [Sketcher\_ReorientSketch/fr](Sketcher_ReorientSketch/fr.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Reorient/fr diff --git a/wiki/translations/fr/Sketcher_ReorientSketch.md b/wiki/translations/fr/Sketcher_ReorientSketch.md index 5e7fa462ca..213b0225f4 100644 --- a/wiki/translations/fr/Sketcher_ReorientSketch.md +++ b/wiki/translations/fr/Sketcher_ReorientSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Appliquer une esquisse sur une face](Sketcher_MapSketch/fr.md), [Sketcher Créer une esquisse](Sketcher_NewSketch/fr.md) --- +# Sketcher ReorientSketch/fr + ## Description Vous permet de détacher une esquisse d'une face et de la lier à l'un des plans principaux (avec un décalage). @@ -31,4 +33,7 @@ Vous permet de détacher une esquisse d'une face et de la lier à l'un des plans {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ReorientSketch/fr diff --git a/wiki/translations/fr/Sketcher_RestoreInternalAlignmentGeometry.md b/wiki/translations/fr/Sketcher_RestoreInternalAlignmentGeometry.md index 55dd7ac87b..d47da591b1 100644 --- a/wiki/translations/fr/Sketcher_RestoreInternalAlignmentGeometry.md +++ b/wiki/translations/fr/Sketcher_RestoreInternalAlignmentGeometry.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Ellipse](Sketcher_CreateEllipseByCenter/fr.md), [Sketcher Contrainte d'alignement interne](Sketcher_ConstrainInternalAlignment/fr.md) --- +# Sketcher RestoreInternalAlignmentGeometry/fr + ## Description La commande supprime les éléments inutilisés alignés sur la géométrie interne ou recrée les éléments manquants. @@ -34,4 +36,7 @@ S\'il existe des emplacements d\'alignement libres pour l\'élément sélectionn {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RestoreInternalAlignmentGeometry/fr diff --git a/wiki/translations/fr/Sketcher_SelectConflictingConstraints.md b/wiki/translations/fr/Sketcher_SelectConflictingConstraints.md index 6ebc6303a3..5711deb3a0 100644 --- a/wiki/translations/fr/Sketcher_SelectConflictingConstraints.md +++ b/wiki/translations/fr/Sketcher_SelectConflictingConstraints.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectConflictingConstraints/fr + ## Description Sélectionne les contraintes conflictuelles d\'une esquisse. @@ -24,4 +26,7 @@ Sélectionne les contraintes conflictuelles d\'une esquisse. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConflictingConstraints/fr diff --git a/wiki/translations/fr/Sketcher_SelectConstraints.md b/wiki/translations/fr/Sketcher_SelectConstraints.md index bb4d4e136f..7e55a3b8ce 100644 --- a/wiki/translations/fr/Sketcher_SelectConstraints.md +++ b/wiki/translations/fr/Sketcher_SelectConstraints.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectConstraints/fr + ## Description Sélectionne les contraintes d\'un élément d\'esquisse. @@ -31,4 +33,7 @@ Sélectionne les contraintes d\'un élément d\'esquisse. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConstraints/fr diff --git a/wiki/translations/fr/Sketcher_SelectElementsAssociatedWithConstraints.md b/wiki/translations/fr/Sketcher_SelectElementsAssociatedWithConstraints.md index 0651c23edf..e86b6c6801 100644 --- a/wiki/translations/fr/Sketcher_SelectElementsAssociatedWithConstraints.md +++ b/wiki/translations/fr/Sketcher_SelectElementsAssociatedWithConstraints.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectElementsAssociatedWithConstraints/fr + ## Description Selection sketcher Elements associés avec constraintes. @@ -24,4 +26,7 @@ Selection sketcher Elements associés avec constraintes. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsAssociatedWithConstraints/fr diff --git a/wiki/translations/fr/Sketcher_SelectElementsWithDoFs.md b/wiki/translations/fr/Sketcher_SelectElementsWithDoFs.md index c7f2557665..163585d382 100644 --- a/wiki/translations/fr/Sketcher_SelectElementsWithDoFs.md +++ b/wiki/translations/fr/Sketcher_SelectElementsWithDoFs.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Sketcher SelectElementsWithDoFs/fr + ## Description Cet outil a pour but d\'aider à contraindre complètement une esquisse en mettant en surbrillance en vert les éléments d'esquisse avec des degrés de liberté restants (DoF, ou «degrees of freedom»). @@ -34,4 +36,7 @@ où \"X\" est le nombre de degrés de liberté restant dans l\'esquiss. Plus d\' {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsWithDoFs/fr diff --git a/wiki/translations/fr/Sketcher_SelectHorizontalAxis.md b/wiki/translations/fr/Sketcher_SelectHorizontalAxis.md index 63df977458..343716b746 100644 --- a/wiki/translations/fr/Sketcher_SelectHorizontalAxis.md +++ b/wiki/translations/fr/Sketcher_SelectHorizontalAxis.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectHorizontalAxis/fr + ## Description Sélectionne l\'axe horizontal d\'une esquisse. @@ -24,4 +26,7 @@ Sélectionne l\'axe horizontal d\'une esquisse. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectHorizontalAxis/fr diff --git a/wiki/translations/fr/Sketcher_SelectOrigin.md b/wiki/translations/fr/Sketcher_SelectOrigin.md index ccfae2628b..fb382b616d 100644 --- a/wiki/translations/fr/Sketcher_SelectOrigin.md +++ b/wiki/translations/fr/Sketcher_SelectOrigin.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectOrigin/fr + ## Description Sélectionne l\'origine d\'une esquisse. @@ -24,4 +26,7 @@ Sélectionne l\'origine d\'une esquisse. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectOrigin/fr diff --git a/wiki/translations/fr/Sketcher_SelectRedundantConstraints.md b/wiki/translations/fr/Sketcher_SelectRedundantConstraints.md index c8274e13ea..96e21558ea 100644 --- a/wiki/translations/fr/Sketcher_SelectRedundantConstraints.md +++ b/wiki/translations/fr/Sketcher_SelectRedundantConstraints.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectRedundantConstraints/fr + ## Description Sélectionne les contraintes conflictuelles d\'une esquisse. @@ -24,4 +26,7 @@ Sélectionne les contraintes conflictuelles d\'une esquisse. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectRedundantConstraints/fr diff --git a/wiki/translations/fr/Sketcher_SelectVerticalAxis.md b/wiki/translations/fr/Sketcher_SelectVerticalAxis.md index ffd242c2c0..3db173fa43 100644 --- a/wiki/translations/fr/Sketcher_SelectVerticalAxis.md +++ b/wiki/translations/fr/Sketcher_SelectVerticalAxis.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectVerticalAxis/fr + ## Description Sélectionne l\'axe vertical d\'une esquisse. @@ -24,4 +26,7 @@ Sélectionne l\'axe vertical d\'une esquisse. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectVerticalAxis/fr diff --git a/wiki/translations/fr/Sketcher_Sketch.md b/wiki/translations/fr/Sketcher_Sketch.md index eb84a8b233..8260bed96e 100644 --- a/wiki/translations/fr/Sketcher_Sketch.md +++ b/wiki/translations/fr/Sketcher_Sketch.md @@ -1,6 +1,4 @@ # Sketcher Sketch/fr - - Cette page devrait contenir la description de l\'outil esquisse faisant partie du [Atelier Sketcher](Sketcher_Workbench/fr.md) et de l\'[atelier PartDesign](PartDesign_Workbench/fr.md). Ce travail est en cours de réalisation. En attendant, consultez: @@ -11,4 +9,7 @@ Ce travail est en cours de réalisation. En attendant, consultez: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Sketch/fr diff --git a/wiki/translations/fr/Sketcher_SketchObject.md b/wiki/translations/fr/Sketcher_SketchObject.md index b7491da98e..2d8ceb8fef 100644 --- a/wiki/translations/fr/Sketcher_SketchObject.md +++ b/wiki/translations/fr/Sketcher_SketchObject.md @@ -1,6 +1,4 @@ # Sketcher SketchObject/fr - - ## Introduction @@ -141,4 +139,7 @@ obj.Label = "Custom label" {{Sketcher Tools navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SketchObject/fr diff --git a/wiki/translations/fr/Sketcher_Split.md b/wiki/translations/fr/Sketcher_Split.md index c3589cc86c..a0110a1376 100644 --- a/wiki/translations/fr/Sketcher_Split.md +++ b/wiki/translations/fr/Sketcher_Split.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Ajuster une arête](Sketcher_Trimming/fr.md) --- +# Sketcher Split/fr + ## Description Cet outil permet de diviser une arête en deux arêtes identiques, la plupart des contraintes étant dupliquées, les deux parties restent donc contraintes à l\'exception de la position du point de division. Dans le cas particulier d\'un cercle, celui-ci est converti en un arc de bouts libres, les contraintes existantes du cercle étant transférées au nouvel arc. @@ -45,4 +47,7 @@ Cet outil permet de diviser une arête en deux arêtes identiques, la plupart de {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Split/fr diff --git a/wiki/translations/fr/Sketcher_StopOperation.md b/wiki/translations/fr/Sketcher_StopOperation.md index 1cc88deb57..c4bca5d476 100644 --- a/wiki/translations/fr/Sketcher_StopOperation.md +++ b/wiki/translations/fr/Sketcher_StopOperation.md @@ -6,6 +6,8 @@ MenuLocation:Sketch → Arrêter l'opération --- +# Sketcher StopOperation/fr + ## Description @@ -25,4 +27,7 @@ Cela revient à appuyer sur la touche **Esc**. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher StopOperation/fr diff --git a/wiki/translations/fr/Sketcher_SwitchVirtualSpace.md b/wiki/translations/fr/Sketcher_SwitchVirtualSpace.md index 35421d5c5c..953c15c2cc 100644 --- a/wiki/translations/fr/Sketcher_SwitchVirtualSpace.md +++ b/wiki/translations/fr/Sketcher_SwitchVirtualSpace.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Sketcher SwitchVirtualSpace/fr + ## Description FreeCAD Sketcher comporte deux espaces virtuels sur lesquels des contraintes peuvent être définies. Habituellement, toutes les contraintes sont définies sur l'espace virtuel un. Vous pouvez déplacer certaines contraintes vers l\'espace virtuel deux. Cela peut aider à ne contrôler que quelques contraintes à la fois. @@ -34,4 +36,7 @@ Si vous décidez de définir des contraintes sur le deuxième espace virtuel, ne {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SwitchVirtualSpace/fr diff --git a/wiki/translations/fr/Sketcher_Symmetry.md b/wiki/translations/fr/Sketcher_Symmetry.md index fd955d2b46..2892d6e430 100644 --- a/wiki/translations/fr/Sketcher_Symmetry.md +++ b/wiki/translations/fr/Sketcher_Symmetry.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Esquisse miroir](Sketcher_MirrorSketch/fr.md) --- +# Sketcher Symmetry/fr + ## Description Symétrise la géométrie de l\'esquisse par rapport à une ligne ou à un axe d\'esquisse choisi. @@ -26,4 +28,7 @@ Remarquez qu\'aucune contrainte de symétrie supplémentaire ne sera ajoutée. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Symmetry/fr diff --git a/wiki/translations/fr/Sketcher_ToggleActiveConstraint.md b/wiki/translations/fr/Sketcher_ToggleActiveConstraint.md index d4b28d7250..dd70e7d574 100644 --- a/wiki/translations/fr/Sketcher_ToggleActiveConstraint.md +++ b/wiki/translations/fr/Sketcher_ToggleActiveConstraint.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Sketcher ToggleActiveConstraint/fr + ## Description @@ -62,4 +64,7 @@ sketch.toggleActive(3) {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleActiveConstraint/fr diff --git a/wiki/translations/fr/Sketcher_ToggleConstruction.md b/wiki/translations/fr/Sketcher_ToggleConstruction.md index f85dd684e7..427bf6b020 100644 --- a/wiki/translations/fr/Sketcher_ToggleConstruction.md +++ b/wiki/translations/fr/Sketcher_ToggleConstruction.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/fr.md) --- +# Sketcher ToggleConstruction/fr + ## Description Cet outil permet de basculer les géométries sélectionnées de/à mode de construction. Il peut être utilisé sur n\'importe quel type de géométrie : ligne, arc, ou un cercle. @@ -47,4 +49,7 @@ puis une fois que vous quittez le ** [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleConstruction/fr diff --git a/wiki/translations/fr/Sketcher_ToggleDrivingConstraint.md b/wiki/translations/fr/Sketcher_ToggleDrivingConstraint.md index d962e9131c..4f491cda43 100644 --- a/wiki/translations/fr/Sketcher_ToggleDrivingConstraint.md +++ b/wiki/translations/fr/Sketcher_ToggleDrivingConstraint.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Basculer en mode construction](Sketcher_ToggleConstruction/fr.md) --- +# Sketcher ToggleDrivingConstraint/fr + ## Description L\'icône ** [Basculer en mode contrainte pilotante...](Sketcher_ToggleDrivingConstraint/fr.md)** met les contraintes dimensionnelles (Verrou, Distance horizontale/verticale, Longueur, Rayon et Angle) en mode référence et inversement. Les icônes de la barre d\'outils deviennent bleues et, plutôt que des contraintes dimensionnelles, des cotes de référence sont créées. Les cotes de référence ne contraignent pas l\'esquisse. Il peut être utile de créer des cotes de référence dans une esquisse pour vérifier les mesures. lorsqu\'elles reçoivent un nom, elles peuvent également être utilisées pour définir des contraintes dans une autre esquisse via [expressions](Expressions/fr.md). @@ -29,4 +31,7 @@ L\'icône ** [Sketcher](Sketcher_Workbench.md) > Sketcher ValidateSketch/fr diff --git a/wiki/translations/fr/Sketcher_ViewSection.md b/wiki/translations/fr/Sketcher_ViewSection.md index 47b68d5392..2854ef8690 100644 --- a/wiki/translations/fr/Sketcher_ViewSection.md +++ b/wiki/translations/fr/Sketcher_ViewSection.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Sketcher ViewSection/fr + ## Description L\'outil **Vue en section** créé un plan de coupe qui masque temporairement la matière devant le plan d\'esquisse. @@ -27,4 +29,7 @@ Plusieurs façons d\'appeler cette commande: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSection/fr diff --git a/wiki/translations/fr/Sketcher_ViewSketch.md b/wiki/translations/fr/Sketcher_ViewSketch.md index 404ac4e0e8..9fa295ace8 100644 --- a/wiki/translations/fr/Sketcher_ViewSketch.md +++ b/wiki/translations/fr/Sketcher_ViewSketch.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/fr.md), [PartDesign](PartDesign_Workbench/fr.md) --- +# Sketcher ViewSketch/fr + ## Description Cet outil définit la vue de l\'objet perpendiculairement au plan de l\'esquisse. Il est utile, lorsque l\'utilisateur a modifié l\'orientation de la vue de l\'objet, pour examiner un autre aspect de l\'objet, et revenir à la vue normale de l\'esquisse. @@ -23,4 +25,7 @@ En mode de modification d\'esquisse, soit {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSketch/fr diff --git a/wiki/translations/fr/Sketcher_Workbench.md b/wiki/translations/fr/Sketcher_Workbench.md index 5bf840983f..bbf333cfa9 100644 --- a/wiki/translations/fr/Sketcher_Workbench.md +++ b/wiki/translations/fr/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/fr - - - - - -Icône de l\'atelier Sketcher +# Icône de l\'atelier Sketcher Sketcher Workbench/fr {{TOCright}} @@ -329,3 +323,6 @@ La page [Sketcher : Ecrire des scripts](Sketcher_scripting/fr.md) contient des e }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/fr diff --git a/wiki/translations/fr/Sketcher_helper_constraint.md b/wiki/translations/fr/Sketcher_helper_constraint.md index f02b68415a..69f12db605 100644 --- a/wiki/translations/fr/Sketcher_helper_constraint.md +++ b/wiki/translations/fr/Sketcher_helper_constraint.md @@ -1,6 +1,4 @@ # Sketcher helper constraint/fr - - ## Présentation Exemple d\'une contrainte d\'aide (Contrainte5 - point sur le cercle) pour une contrainte de tangence (Contrainte6 ; en mode tangent-via-point). Une seule contrainte d\'aide est utilisée dans ce cas, puisque le point de tangence est le point d\'extrémité du diamètre principal de l\'ellipse, qui se trouve par nature sur l\'ellipse. @@ -39,4 +37,7 @@ Les Aides pour contraindre ont été introduites en v0.15.4387 {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher helper constraint/fr diff --git a/wiki/translations/fr/Sketcher_project.md b/wiki/translations/fr/Sketcher_project.md index ffcdea352f..2453ce12f4 100644 --- a/wiki/translations/fr/Sketcher_project.md +++ b/wiki/translations/fr/Sketcher_project.md @@ -1,7 +1,4 @@ # Sketcher project/fr - - - ** Ce plan de développement est probablement obsolète. Pour plus d'informations, voir [Plan de développement](Development_roadmap/fr.md).
Si vous n'êtes pas impliqué dans le développement discuté ici :
@@ -177,3 +174,6 @@ Interface utilisateur : }} [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher project/fr diff --git a/wiki/translations/fr/Sketcher_reference.md b/wiki/translations/fr/Sketcher_reference.md index 12a2c4e46d..8e5ab83e89 100644 --- a/wiki/translations/fr/Sketcher_reference.md +++ b/wiki/translations/fr/Sketcher_reference.md @@ -1,6 +1,4 @@ # Sketcher reference/fr - - ## Introduction L\'utilisateur **chrisb** a rédigé un long manuel de référence de 70 pages pour l\'[atelier Sketcher](Sketcher_Workbench/fr.md) qui couvre de nombreux sujets relatifs à l\'utilisation de cet atelier. Pour les utilisateurs inexpérimentés, il s\'agit d\'une introduction qui couvre l\'utilisation de base de Sketcher, puis aborde de nombreux détails concernant la création d\'éléments géométriques et l\'utilisation de chaque type de contrainte. @@ -64,4 +62,7 @@ La structure générale du manuel est la suivante : {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher reference/fr diff --git a/wiki/translations/fr/Sketcher_requirement_for_a_sketch.md b/wiki/translations/fr/Sketcher_requirement_for_a_sketch.md index 19fdc4aca1..9c5156b612 100644 --- a/wiki/translations/fr/Sketcher_requirement_for_a_sketch.md +++ b/wiki/translations/fr/Sketcher_requirement_for_a_sketch.md @@ -1,7 +1,4 @@ # Sketcher requirement for a sketch/fr - - - {{TutorialInfo/fr |Topic=Sketcher |Level=Débutant @@ -43,4 +40,7 @@ Si vous créez accidentellement une \"surmodulation\", un avertissement apparaî {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher requirement for a sketch/fr diff --git a/wiki/translations/fr/Sketcher_scripting.md b/wiki/translations/fr/Sketcher_scripting.md index f3356e4496..c0eb2d5de9 100644 --- a/wiki/translations/fr/Sketcher_scripting.md +++ b/wiki/translations/fr/Sketcher_scripting.md @@ -1,5 +1,5 @@ # Sketcher scripting/fr - {{TOCright}} +{{TOCright}} ## Créer une contrainte en Python @@ -200,4 +200,7 @@ La commande `Sketch.addConstraint(Sketcher.Constraint('Coincident',0,2,2,2))` do {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher scripting/fr diff --git a/wiki/translations/fr/Source_code_management.md b/wiki/translations/fr/Source_code_management.md index b82df48289..9370ca736d 100644 --- a/wiki/translations/fr/Source_code_management.md +++ b/wiki/translations/fr/Source_code_management.md @@ -1,5 +1,5 @@ # Source code management/fr - {{TOCright}} +{{TOCright}} ## Introduction @@ -962,3 +962,6 @@ Dirigez vous vers la section de développement du [forum FreeCAD](https://forum. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source code management/fr diff --git a/wiki/translations/fr/Source_documentation.md b/wiki/translations/fr/Source_documentation.md index 1ce2cf0544..908699c574 100644 --- a/wiki/translations/fr/Source_documentation.md +++ b/wiki/translations/fr/Source_documentation.md @@ -1,10 +1,4 @@ # Source documentation/fr - - - - - - {{TOCright}} ## Présentation @@ -131,3 +125,6 @@ void removeTaskWatcher(void); [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source documentation/fr diff --git a/wiki/translations/fr/Sphinx.md b/wiki/translations/fr/Sphinx.md index 08d0ae6f14..be99f7fe56 100644 --- a/wiki/translations/fr/Sphinx.md +++ b/wiki/translations/fr/Sphinx.md @@ -1,6 +1,4 @@ # Sphinx/fr - - ## Introduction [Sphinx](Sphinx/fr.md) est un système de documentation similaire à [Doxygen](Doxygen/fr.md), conçu principalement pour documenter le code [Python](Python/fr.md). Avec l\'utilisation de [\"Breathe\"](https://github.com/michaeljones/breathe), il peut également être utilisé pour analyser du code C++, afin qu\'il puisse être utilisé dans des projets qui mélangent C++ et Python. @@ -33,3 +31,6 @@ Résultats encourageants de David\_D: - [Forum FreeCAD](https://forum.freecadweb.org/viewtopic.php?p=411563#p411563) - [Category:Developer\_Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Sphinx/fr diff --git a/wiki/translations/fr/Spinning.md b/wiki/translations/fr/Spinning.md index 0ddd278807..669cad40dc 100644 --- a/wiki/translations/fr/Spinning.md +++ b/wiki/translations/fr/Spinning.md @@ -1,2 +1,5 @@ # Spinning/fr 1. REDIRECT [Std\_DemoMode/fr](Std_DemoMode/fr.md) + +--- +[documentation index](../README.md) > Spinning/fr diff --git a/wiki/translations/fr/Splash_screen.md b/wiki/translations/fr/Splash_screen.md index 5bff5279e6..b072236d24 100644 --- a/wiki/translations/fr/Splash_screen.md +++ b/wiki/translations/fr/Splash_screen.md @@ -1,4 +1,7 @@ # Splash screen/fr - L**\'écran de démarrage** est l\'image qui apparaît lors du démarrage de FreeCAD. Vous pouvez désactiver l\'écran de démarrage dans le menu Préférences de FreeCAD en désactivant l\'option \"Activer l\'écran de démarrage au démarrage\". +L**\'écran de démarrage** est l\'image qui apparaît lors du démarrage de FreeCAD. Vous pouvez désactiver l\'écran de démarrage dans le menu Préférences de FreeCAD en désactivant l\'option \"Activer l\'écran de démarrage au démarrage\". [Category:User Documentation/fr](Category:User_Documentation/fr.md) + +--- +[documentation index](../README.md) > Splash screen/fr diff --git a/wiki/translations/fr/Spreadsheet.md b/wiki/translations/fr/Spreadsheet.md index 8e1e2861d8..0b28e395bb 100644 --- a/wiki/translations/fr/Spreadsheet.md +++ b/wiki/translations/fr/Spreadsheet.md @@ -1,6 +1,4 @@ # Spreadsheet/fr - - ## Description Une [feuille de calcul](spreadsheet/fr.md) est une page qui contient des lignes et des colonnes qui vous permet de stocker du texte arbitraire dans des cellules. Plus important encore, il vous permet d\'utiliser les cellules avec [expressions](Expressions/fr.md) pour calculer des valeurs qui dépendent des valeurs entrées précédemment; il peut s\'agir de longueurs, d\'angles, de zones, de volumes et d\'autres types. @@ -12,5 +10,5 @@ Une [feuille de calcul](spreadsheet/fr.md) est une page qui contient des lignes 3. Modifiez le contenu des cellules. 4. Fermez l\'onglet de la feuille de calcul lorsque vous avez terminé, les valeurs sont enregistrées automatiquement lorsque vous les tapez. - - +--- +[documentation index](../README.md) > Spreadsheet/fr diff --git a/wiki/translations/fr/Spreadsheet_AlignBottom.md b/wiki/translations/fr/Spreadsheet_AlignBottom.md index e27ddeb33f..d7a41d3266 100644 --- a/wiki/translations/fr/Spreadsheet_AlignBottom.md +++ b/wiki/translations/fr/Spreadsheet_AlignBottom.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignBottom/fr + ## Description L\'outil ** [Spreadsheet Alignement en bas](Spreadsheet_AlignBottom/fr.md)** aligne le texte à l\'intérieur de la cellule sur le bas de la cellule. @@ -23,4 +25,7 @@ L\'outil ** [Spre {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignBottom/fr diff --git a/wiki/translations/fr/Spreadsheet_AlignCenter.md b/wiki/translations/fr/Spreadsheet_AlignCenter.md index 43ae695539..a077628f27 100644 --- a/wiki/translations/fr/Spreadsheet_AlignCenter.md +++ b/wiki/translations/fr/Spreadsheet_AlignCenter.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignCenter/fr + ## Description L\'outil ** [Spreadsheet Alignement au centre](Spreadsheet_AlignCenter/fr.md)** aligne le texte à l\'intérieur de la cellule au centre. @@ -23,4 +25,7 @@ L\'outil ** [Spre {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignCenter/fr diff --git a/wiki/translations/fr/Spreadsheet_AlignLeft.md b/wiki/translations/fr/Spreadsheet_AlignLeft.md index cfc6e9ac91..6e5d45ce3a 100644 --- a/wiki/translations/fr/Spreadsheet_AlignLeft.md +++ b/wiki/translations/fr/Spreadsheet_AlignLeft.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignLeft/fr + ## Description L\'outil ** [Spreadsheet Alignement à gauche](Spreadsheet_AlignLeft/fr.md)** aligne le texte à l\'intérieur de la cellule à gauche. @@ -23,4 +25,7 @@ L\'outil ** [Spread {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignLeft/fr diff --git a/wiki/translations/fr/Spreadsheet_AlignRight.md b/wiki/translations/fr/Spreadsheet_AlignRight.md index 705da4dd53..34513453bd 100644 --- a/wiki/translations/fr/Spreadsheet_AlignRight.md +++ b/wiki/translations/fr/Spreadsheet_AlignRight.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignRight/fr + ## Description L\'outil ** [Spreadsheet Alignement à gauche](Spreadsheet_AlignRight/fr.md)** aligne le texte à l\'intérieur de la cellule à droite. @@ -23,4 +25,7 @@ L\'outil ** [Sprea {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignRight/fr diff --git a/wiki/translations/fr/Spreadsheet_AlignTop.md b/wiki/translations/fr/Spreadsheet_AlignTop.md index 5cb4177eda..450e61a920 100644 --- a/wiki/translations/fr/Spreadsheet_AlignTop.md +++ b/wiki/translations/fr/Spreadsheet_AlignTop.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignTop/fr + ## Description L\'outil ** [Spreadsheet Alignement en bas](Spreadsheet_AlignTop/fr.md)** aligne le texte à l\'intérieur de la cellule en haut de la cellule. @@ -23,4 +25,7 @@ L\'outil ** [Spreads {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignTop/fr diff --git a/wiki/translations/fr/Spreadsheet_AlignVCenter.md b/wiki/translations/fr/Spreadsheet_AlignVCenter.md index 8e4cf44e8c..35d166b044 100644 --- a/wiki/translations/fr/Spreadsheet_AlignVCenter.md +++ b/wiki/translations/fr/Spreadsheet_AlignVCenter.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignVCenter/fr + ## Description L\'outil ** [Spreadsheet Alignement vertical au centre](Spreadsheet_AlignVCenter/fr.md)** fait en sorte que le texte à l\'intérieur de la cellule s\'aligne verticalement sur le centre de la cellule. @@ -23,4 +25,7 @@ L\'outil ** [Spr {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignVCenter/fr diff --git a/wiki/translations/fr/Spreadsheet_CSV.md b/wiki/translations/fr/Spreadsheet_CSV.md index bebdef42ef..62c64e85ad 100644 --- a/wiki/translations/fr/Spreadsheet_CSV.md +++ b/wiki/translations/fr/Spreadsheet_CSV.md @@ -1,5 +1,5 @@ # Spreadsheet CSV/fr - Le[format CSV](https://fr.wikipedia.org/wiki/Comma-separated_values) (comma-separated values) est un format texte brut pour échanger des données de tableur. Il peut généralement être importé et exporté par n\'importe quel tableur tel que LibreOffice ou Microsoft Excel. La lecture et l\'écriture au format csv se fait avec le module csv intégré dans Python [module csv](http://docs.python.org/2/library/csv.html). +Le[format CSV](https://fr.wikipedia.org/wiki/Comma-separated_values) (comma-separated values) est un format texte brut pour échanger des données de tableur. Il peut généralement être importé et exporté par n\'importe quel tableur tel que LibreOffice ou Microsoft Excel. La lecture et l\'écriture au format csv se fait avec le module csv intégré dans Python [module csv](http://docs.python.org/2/library/csv.html). ## Importation @@ -13,3 +13,6 @@ L\'exportation d\'un objet [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet CSV/fr diff --git a/wiki/translations/fr/Spreadsheet_Controller.md b/wiki/translations/fr/Spreadsheet_Controller.md index 93029798e0..d524cb2e77 100644 --- a/wiki/translations/fr/Spreadsheet_Controller.md +++ b/wiki/translations/fr/Spreadsheet_Controller.md @@ -1,2 +1,5 @@ # Spreadsheet Controller/fr 1. REDIRECT [Arch\_Schedule/fr](Arch_Schedule/fr.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Controller/fr diff --git a/wiki/translations/fr/Spreadsheet_Create.md b/wiki/translations/fr/Spreadsheet_Create.md index efac390ecd..c08d0a9c6b 100644 --- a/wiki/translations/fr/Spreadsheet_Create.md +++ b/wiki/translations/fr/Spreadsheet_Create.md @@ -1,2 +1,5 @@ # Spreadsheet Create/fr 1. REDIRECT [Spreadsheet\_CreateSheet/fr](Spreadsheet_CreateSheet/fr.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Create/fr diff --git a/wiki/translations/fr/Spreadsheet_CreateSheet.md b/wiki/translations/fr/Spreadsheet_CreateSheet.md index b69992162c..9af3121131 100644 --- a/wiki/translations/fr/Spreadsheet_CreateSheet.md +++ b/wiki/translations/fr/Spreadsheet_CreateSheet.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet CreateSheet/fr + ## Description L\'outil ** [Spreadsheet Création d'une feuille de calcul](Spreadsheet_CreateSheet.md)** ajoute un nouvel objet de feuille de calcul au document actif qui sera ouvert dans un nouvel onglet dans la [Zone de vue principale](main_view_area/fr.md). @@ -23,4 +25,7 @@ L\'outil ** [Spre {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet CreateSheet/fr diff --git a/wiki/translations/fr/Spreadsheet_Export.md b/wiki/translations/fr/Spreadsheet_Export.md index 3476bda908..9a2faedaca 100644 --- a/wiki/translations/fr/Spreadsheet_Export.md +++ b/wiki/translations/fr/Spreadsheet_Export.md @@ -8,6 +8,8 @@ SeeAlso:[Spreadsheet Importer](Spreadsheet_Import/fr.md) --- +# Spreadsheet Export/fr + ## Description L\'outil ** [Spreadsheet Exporter](Spreadsheet_Export/fr.md)** vous permet d\'exporter une feuille de calcul sous la forme d\'un fichier de valeurs séparées par des tabulations (généralement désigné en CSV), qui peut ensuite être ouverte et utilisée dans d\'autres applications. @@ -23,4 +25,7 @@ L\'outil ** [Spreadshe {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Export/fr diff --git a/wiki/translations/fr/Spreadsheet_Import.md b/wiki/translations/fr/Spreadsheet_Import.md index 0fb278aa2e..1eb992a189 100644 --- a/wiki/translations/fr/Spreadsheet_Import.md +++ b/wiki/translations/fr/Spreadsheet_Import.md @@ -8,6 +8,8 @@ SeeAlso:[Spreadsheet Exporter](Spreadsheet_Export/fr.md) --- +# Spreadsheet Import/fr + ## Description L\'outil ** [Spreadsheet Importer](Spreadsheet_Import/fr.md)** vous permet d\'importer dans une feuille de calcul un fichier de valeurs séparées par des tabulations (généralement désigné en CSV) pour être modifiée et utilisée avec des [expressions](expressions/fr.md). @@ -27,4 +29,7 @@ L\'outil ** [Spreadshe {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Import/fr diff --git a/wiki/translations/fr/Spreadsheet_MergeCells.md b/wiki/translations/fr/Spreadsheet_MergeCells.md index 05c9316370..675abf9636 100644 --- a/wiki/translations/fr/Spreadsheet_MergeCells.md +++ b/wiki/translations/fr/Spreadsheet_MergeCells.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet MergeCells/fr + ## Description L\'outil ** [Fusionner les cellules sélectionnées](Spreadsheet_MergeCells/fr.md)** fusionne au moins deux cellules sélectionnées dans une feuille de calcul existante dans le document actif. @@ -23,4 +25,7 @@ L\'outil ** [Fusio {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet MergeCells/fr diff --git a/wiki/translations/fr/Spreadsheet_Module.md b/wiki/translations/fr/Spreadsheet_Module.md index e082a63e20..f90bfc9250 100644 --- a/wiki/translations/fr/Spreadsheet_Module.md +++ b/wiki/translations/fr/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module/fr 1. REDIRECT [Spreadsheet Workbench/fr](Spreadsheet_Workbench/fr.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module/fr diff --git a/wiki/translations/fr/Spreadsheet_SetAlias.md b/wiki/translations/fr/Spreadsheet_SetAlias.md index dac950d9ab..4f554b4c15 100644 --- a/wiki/translations/fr/Spreadsheet_SetAlias.md +++ b/wiki/translations/fr/Spreadsheet_SetAlias.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet SetAlias/fr + ## Description L\'outil ** [Spreadsheet Alias](Spreadsheet_SetAlias/fr.md)** ouvre une boîte de dialogue pour configurer un alias pour une cellule. Au lieu d\'utiliser le nom de cellule exact comme A2, B3 ou C4, un nom personnalisé peut être utilisé. @@ -24,4 +26,7 @@ L\'outil ** [Spreads {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet SetAlias/fr diff --git a/wiki/translations/fr/Spreadsheet_SplitCell.md b/wiki/translations/fr/Spreadsheet_SplitCell.md index 2350edc856..a422863936 100644 --- a/wiki/translations/fr/Spreadsheet_SplitCell.md +++ b/wiki/translations/fr/Spreadsheet_SplitCell.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet SplitCell/fr + ## Description L\'outil ** [Spreadsheet Diviser une cellule](Spreadsheet_SplitCell/fr.md)** sépare une cellule qui a été fusionnée en une seule dans une feuille de calcul existante du document actif. @@ -23,4 +25,7 @@ L\'outil ** [Spread {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet SplitCell/fr diff --git a/wiki/translations/fr/Spreadsheet_StyleBold.md b/wiki/translations/fr/Spreadsheet_StyleBold.md index 245e7fb0a0..53a4cb53b2 100644 --- a/wiki/translations/fr/Spreadsheet_StyleBold.md +++ b/wiki/translations/fr/Spreadsheet_StyleBold.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet StyleBold/fr + ## Description L\'outil ** [Spreadsheet Texte en gras](Spreadsheet_StyleBold/fr.md)** fait que le texte à l\'intérieur de la cellule adopte le style **gras**. @@ -23,4 +25,7 @@ L\'outil ** [Spread {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleBold/fr diff --git a/wiki/translations/fr/Spreadsheet_StyleItalic.md b/wiki/translations/fr/Spreadsheet_StyleItalic.md index a1e41e8981..364860032e 100644 --- a/wiki/translations/fr/Spreadsheet_StyleItalic.md +++ b/wiki/translations/fr/Spreadsheet_StyleItalic.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet StyleItalic/fr + ## Description L\'outil ** [Spreadsheet Texte en italique](Spreadsheet_StyleItalic/fr.md)** fait que le texte à l\'intérieur de la cellule adopte le style *italique*. @@ -23,4 +25,7 @@ L\'outil ** [Spre {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleItalic/fr diff --git a/wiki/translations/fr/Spreadsheet_StyleUnderline.md b/wiki/translations/fr/Spreadsheet_StyleUnderline.md index 750ad2d301..67d46e2b48 100644 --- a/wiki/translations/fr/Spreadsheet_StyleUnderline.md +++ b/wiki/translations/fr/Spreadsheet_StyleUnderline.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet StyleUnderline/fr + ## Description L\'outil souligné. @@ -23,4 +25,7 @@ L\'outil souligné. {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleUnderline/fr diff --git a/wiki/translations/fr/Spreadsheet_Workbench.md b/wiki/translations/fr/Spreadsheet_Workbench.md index 5225c6beea..a44e1967ae 100644 --- a/wiki/translations/fr/Spreadsheet_Workbench.md +++ b/wiki/translations/fr/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/fr - {{Page_in_progress}} @@ -235,3 +234,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/fr diff --git a/wiki/translations/fr/Spreadsheet_legacy.md b/wiki/translations/fr/Spreadsheet_legacy.md index fa1a9a0c87..35772105f9 100644 --- a/wiki/translations/fr/Spreadsheet_legacy.md +++ b/wiki/translations/fr/Spreadsheet_legacy.md @@ -1,2 +1,5 @@ # Spreadsheet legacy/fr 1. REDIRECT [Spreadsheet\_Workbench/fr](Spreadsheet_Workbench/fr.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet legacy/fr diff --git a/wiki/translations/fr/Standard_Menu.md b/wiki/translations/fr/Standard_Menu.md index dc1c12d525..282335b3b5 100644 --- a/wiki/translations/fr/Standard_Menu.md +++ b/wiki/translations/fr/Standard_Menu.md @@ -1,5 +1,5 @@ # Standard Menu/fr - {{TOCright}} +{{TOCright}} ## Introduction @@ -47,4 +47,7 @@ Le menu standard est composé de 7 sous-menus: {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Standard Menu/fr diff --git a/wiki/translations/fr/Start_Preferences.md b/wiki/translations/fr/Start_Preferences.md index 2b25dd7091..23e868cbe5 100644 --- a/wiki/translations/fr/Start_Preferences.md +++ b/wiki/translations/fr/Start_Preferences.md @@ -1,6 +1,4 @@ # Start Preferences/fr - - L\'écran des préférences de l\'[Atelier Start](Start_Workbench.md) se trouve dans les [Préférences de l\'éditeur](Preferences_Editor/fr.md), **Édition → Préférences → Start**. Il n\'y a qu\'un seul onglet Start. @@ -114,3 +112,6 @@ Dans l\'onglet \"Start\" vous pouvez spécifiez: }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start Preferences/fr diff --git a/wiki/translations/fr/Start_Workbench.md b/wiki/translations/fr/Start_Workbench.md index cdc8d31a38..1d0a48ad54 100644 --- a/wiki/translations/fr/Start_Workbench.md +++ b/wiki/translations/fr/Start_Workbench.md @@ -1,10 +1,4 @@ -# Start Workbench/fr - - - - - -Icône de l\'Atelier Start +# Icône de l\'Atelier Start Start Workbench/fr L\' [atelier Start](Start_Workbench/fr.md) n\'est pas vraiment un atelier. C\'est simplement la page qui est présentée lorsque vous ouvrez FreeCAD sans document chargé. @@ -23,3 +17,6 @@ Depuis cette interface, vous pouvez voir des informations utiles et accéder aux [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench/fr diff --git a/wiki/translations/fr/Start_up_and_Configuration.md b/wiki/translations/fr/Start_up_and_Configuration.md index de12dba947..50df060c9c 100644 --- a/wiki/translations/fr/Start_up_and_Configuration.md +++ b/wiki/translations/fr/Start_up_and_Configuration.md @@ -1,10 +1,4 @@ # Start up and Configuration/fr - - - - - - {{TOCright}} ## Présentation @@ -421,3 +415,6 @@ Maintenant, double-cliquez sur le fichier de commandes pour démarrer FreeCAD. ( [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start up and Configuration/fr diff --git a/wiki/translations/fr/Status_bar.md b/wiki/translations/fr/Status_bar.md index 3dd353c15e..d2f864a512 100644 --- a/wiki/translations/fr/Status_bar.md +++ b/wiki/translations/fr/Status_bar.md @@ -1,6 +1,4 @@ # Status bar/fr - - ## Introduction La [barre d\'état](Status_bar/fr.md) est un simple ruban qui apparaît au bas de l\'[interface](interface/fr.md) de FreeCAD. @@ -20,4 +18,7 @@ La barre d\'état affiche également le dernier objet présélectionné (tout ob {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Status bar/fr diff --git a/wiki/translations/fr/Std_About.md b/wiki/translations/fr/Std_About.md index 5c42e47a61..344bd69598 100644 --- a/wiki/translations/fr/Std_About.md +++ b/wiki/translations/fr/Std_About.md @@ -6,6 +6,8 @@ MenuLocation:Aide → À propos de FreeCAD --- +# Std About/fr + ## Description La commande **A propos** ouvre une boîte de dialogue qui affiche des informations sur le programme FreeCAD. @@ -69,3 +71,6 @@ L\'onglet Bibliothèques affiche une liste des bibliothèques externes utilisée {{Std Base navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Std About/fr diff --git a/wiki/translations/fr/Std_ActivateNextWindow.md b/wiki/translations/fr/Std_ActivateNextWindow.md index 3b5f827cf7..efe88cf804 100644 --- a/wiki/translations/fr/Std_ActivateNextWindow.md +++ b/wiki/translations/fr/Std_ActivateNextWindow.md @@ -8,6 +8,8 @@ SeeAlso:[Std Précédente](Std_ActivatePrevWindow/fr.md), [Std Fenêtre](Std_Windows/fr.md) --- +# Std ActivateNextWindow/fr + ## Description La commande **Std Suivante** active la fenêtre suivante dans [Zone de vue principale](Main_view_area/fr.md). La fenêtre suivante est déterminée par l\'ordre dans lequel les fenêtres de la zone d\'affichage principal ont été activées pour la dernière fois. @@ -29,4 +31,7 @@ La commande **Std Suivante** active la fenêtre suivante dans [Zone de vue princ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ActivateNextWindow/fr diff --git a/wiki/translations/fr/Std_ActivatePrevWindow.md b/wiki/translations/fr/Std_ActivatePrevWindow.md index d51223112b..2c17af2258 100644 --- a/wiki/translations/fr/Std_ActivatePrevWindow.md +++ b/wiki/translations/fr/Std_ActivatePrevWindow.md @@ -8,6 +8,8 @@ SeeAlso:[Std Suivante](Std_ActivateNextWindow/fr.md), [Std Fenêtre](Std_Windows/fr.md) --- +# Std ActivatePrevWindow/fr + ## Description La commande **Std Précédente** ne fonctionne pas correctement [1](https://forum.freecadweb.org/viewtopic.php?f=3&t=45157). @@ -29,4 +31,7 @@ La commande **Std Précédente** ne fonctionne pas correctement [1](https://foru {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ActivatePrevWindow/fr diff --git a/wiki/translations/fr/Std_AddonMgr.md b/wiki/translations/fr/Std_AddonMgr.md index 2b7470625c..1b8c37a1d1 100644 --- a/wiki/translations/fr/Std_AddonMgr.md +++ b/wiki/translations/fr/Std_AddonMgr.md @@ -8,6 +8,8 @@ SeeAlso:[Ateliers externes](External_workbenches/fr.md), [Macros](Macros/fr.md) --- +# Std AddonMgr/fr + ## Description La commande **Gestionnaire d\'Addon** ouvre le gestionnaire de modules complémentaires. Avec l\'Addon Manager, vous pouvez installer et gérer [ateliers complémentaires](external_workbenches/fr.md) et des [macros](macros/fr.md) fournis par la communauté FreeCAD. Les ateliers et les macros disponibles proviennent de deux dépôts [FreeCAD-addons](https://github.com/FreeCAD/FreeCAD-addons/) et [FreeCAD-macros](https://github.com/FreeCAD/FreeCAD-macros/) et à partir de la page [Liste des macros](Macros_recipes/fr.md). @@ -78,4 +80,7 @@ Si vous développez un atelier en C++, il ne peut pas être exécuté directemen {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std AddonMgr/fr diff --git a/wiki/translations/fr/Std_Alignment.md b/wiki/translations/fr/Std_Alignment.md index e214de1733..655a922e93 100644 --- a/wiki/translations/fr/Std_Alignment.md +++ b/wiki/translations/fr/Std_Alignment.md @@ -7,6 +7,8 @@ SeeAlso:[Std Positionnement](Std_Placement/fr.md) --- +# Std Alignment/fr + ## Description La commande **Std Alignement** aligne un objet par rapport à un objet de référence fixe en utilisant une ou plusieurs paires de points. @@ -37,4 +39,7 @@ Les options supplémentaires suivantes sont disponibles dans le menu contextuel {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Alignment/fr diff --git a/wiki/translations/fr/Std_ArrangeIcons.md b/wiki/translations/fr/Std_ArrangeIcons.md index 330e27b63b..f3a712157a 100644 --- a/wiki/translations/fr/Std_ArrangeIcons.md +++ b/wiki/translations/fr/Std_ArrangeIcons.md @@ -8,6 +8,8 @@ SeeAlso:[Std Mosaïque](Std_TileWindows/fr.md) --- +# Std ArrangeIcons/fr + ## Description La commande **Std Organiser les icônes** ne fonctionne pas correctement. Elle a le même effet que la commande [Std Mosaïque](Std_TileWindows/fr.md). Voir là. @@ -18,4 +20,7 @@ La commande **Std Organiser les icônes** ne fonctionne pas correctement. Elle a {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ArrangeIcons/fr diff --git a/wiki/translations/fr/Std_AxisCross.md b/wiki/translations/fr/Std_AxisCross.md index c6ec71f47d..ad4a27bad0 100644 --- a/wiki/translations/fr/Std_AxisCross.md +++ b/wiki/translations/fr/Std_AxisCross.md @@ -7,6 +7,8 @@ Shortcut:**A** **C** --- +# Std AxisCross/fr + ## Description La commande **Std Axes** bascule les axes du repère dans la [vue 3D](3D_view/fr.md) active. @@ -53,4 +55,7 @@ FreeCADGui.ActiveDocument.ActiveView.hasAxisCross() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std AxisCross/fr diff --git a/wiki/translations/fr/Std_Base.md b/wiki/translations/fr/Std_Base.md index 1f0be59f58..ceb7518236 100644 --- a/wiki/translations/fr/Std_Base.md +++ b/wiki/translations/fr/Std_Base.md @@ -1,10 +1,4 @@ -# Std Base/fr - - - - - -Icône de Std Base +# Icône de Std Base Std Base/fr {{TOCright}} @@ -67,3 +61,6 @@ Le menu standard est composé de 7 sous-menus. Chaque sous-menu a une page dédi }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Base/fr diff --git a/wiki/translations/fr/Std_BoxElementSelection.md b/wiki/translations/fr/Std_BoxElementSelection.md index 22bddb9883..3b14e83569 100644 --- a/wiki/translations/fr/Std_BoxElementSelection.md +++ b/wiki/translations/fr/Std_BoxElementSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Std Sélection par boîte](Std_BoxSelection/fr.md), [Std Tout sélectionner](Std_SelectAll/fr.md) --- +# Std BoxElementSelection/fr + ## Description La commande **Std BoxElementSelection** sélectionne des faces dans une zone rectangulaire définie par l\'utilisateur, une boîte, dans la [vue 3D](3D_view/fr.md). @@ -31,4 +33,7 @@ La commande **Std BoxElementSelection** sélectionne des faces dans une zone rec {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std BoxElementSelection/fr diff --git a/wiki/translations/fr/Std_BoxSelection.md b/wiki/translations/fr/Std_BoxSelection.md index bd2d2226c7..805c6df21a 100644 --- a/wiki/translations/fr/Std_BoxSelection.md +++ b/wiki/translations/fr/Std_BoxSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Std Sélection d'éléments par boîte](Std_BoxElementSelection/fr.md), [Std Tout sélectionner](Std_SelectAll/fr.md) --- +# Std BoxSelection/fr + ## Description La commande **Std Sélection par boîte** sélectionne des objets dans une zone rectangulaire définie par l\'utilisateur, une boîte, dans [vue 3D](3D_view/fr.md). @@ -36,4 +38,7 @@ La commande **Std Sélection par boîte** sélectionne des objets dans une zone {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std BoxSelection/fr diff --git a/wiki/translations/fr/Std_CascadeWindows.md b/wiki/translations/fr/Std_CascadeWindows.md index 822f71a7ad..4c36017b2c 100644 --- a/wiki/translations/fr/Std_CascadeWindows.md +++ b/wiki/translations/fr/Std_CascadeWindows.md @@ -7,6 +7,8 @@ SeeAlso:[Std Mosaïque](Std_TileWindows/fr.md) --- +# Std CascadeWindows/fr + ## Description La commande **Std Cascade** réorganise les fenêtres dans la [Zone de vue principale](Main_view_area/fr.md) afin qu\'elles soient toutes visibles mais se chevauchent. Le résultat est déterminé par l\'ordre dans lequel les fenêtres ont été activées pour la dernière fois. @@ -25,4 +27,7 @@ La commande **Std Cascade** réorganise les fenêtres dans la [Zone de vue princ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CascadeWindows/fr diff --git a/wiki/translations/fr/Std_CloseActiveWindow.md b/wiki/translations/fr/Std_CloseActiveWindow.md index 86992d9a29..bd6e42b4a4 100644 --- a/wiki/translations/fr/Std_CloseActiveWindow.md +++ b/wiki/translations/fr/Std_CloseActiveWindow.md @@ -8,6 +8,8 @@ SeeAlso:[Std Fermer tout](Std_CloseAllWindows/fr.md) --- +# Std CloseActiveWindow/fr + ## Description La commande \'\' \'Std Fermer\'\'\' ferme la fenêtre active. Pour fermer un document, toutes ses fenêtres doivent être fermées. @@ -50,4 +52,7 @@ Pour fermer un document, utilisez la méthode `closeDocument` de l\'application {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CloseActiveWindow/fr diff --git a/wiki/translations/fr/Std_CloseAllWindows.md b/wiki/translations/fr/Std_CloseAllWindows.md index f32867cca9..b1de6d3c95 100644 --- a/wiki/translations/fr/Std_CloseAllWindows.md +++ b/wiki/translations/fr/Std_CloseAllWindows.md @@ -7,6 +7,8 @@ SeeAlso:[Std Fermer](Std_CloseActiveWindow/fr.md) --- +# Std CloseAllWindows/fr + ## Description La commande **Std Fermer tout** ferme toutes les fenêtres, fermant ainsi tous les documents. @@ -46,4 +48,7 @@ Pour fermer un document, utilisez la méthode `closeDocument` de l\'application {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CloseAllWindows/fr diff --git a/wiki/translations/fr/Std_Copy.md b/wiki/translations/fr/Std_Copy.md index 2db9f0e0ee..62dd8477ca 100644 --- a/wiki/translations/fr/Std_Copy.md +++ b/wiki/translations/fr/Std_Copy.md @@ -8,6 +8,8 @@ SeeAlso:[Std Couper](Std_Cut/fr.md), [Std Coller](Std_Paste/fr.md), [Std Dupliquer la sélection](Std_DuplicateSelection/fr.md) --- +# Std Copy/fr + ## Description La commande **Std Copie** copie les objets dans le presse-papiers. @@ -33,4 +35,7 @@ La commande **Std Copie** copie les objets dans le presse-papiers. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Copy/fr diff --git a/wiki/translations/fr/Std_Cut.md b/wiki/translations/fr/Std_Cut.md index 637b9b1e9f..8d2e91f3f3 100644 --- a/wiki/translations/fr/Std_Cut.md +++ b/wiki/translations/fr/Std_Cut.md @@ -8,6 +8,8 @@ SeeAlso:[Std Copier](Std_Copy/fr.md), [Std Coller](Std_Paste/fr.md), [Std Dupliquer une sélection](Std_DuplicateSelection/fr.md) --- +# Std Cut/fr + ## Description La commande **Std Couper** est limitée: elle ne peut être utilisée que pour [Cellules de tableur](Spreadsheet_Workbench/fr.md). La commande copie le contenu et les propriétés des cellules dans le presse-papiers puis les efface. @@ -31,4 +33,7 @@ Pour couper d\'autres objets, vous pouvez utiliser la commande [Std Copier](Std_ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Cut/fr diff --git a/wiki/translations/fr/Std_Delete.md b/wiki/translations/fr/Std_Delete.md index 61bd9cf84c..bbdaae51f1 100644 --- a/wiki/translations/fr/Std_Delete.md +++ b/wiki/translations/fr/Std_Delete.md @@ -7,6 +7,8 @@ Shortcut:**Suppr** --- +# Std Delete/fr + ## Description La commande **Std Effacer** supprime les objets sélectionnés. @@ -41,4 +43,7 @@ FreeCAD.ActiveDocument.removeObject("myObjectName") {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Delete/fr diff --git a/wiki/translations/fr/Std_DemoMode.md b/wiki/translations/fr/Std_DemoMode.md index f1c4c63d2c..b3c8953c1e 100644 --- a/wiki/translations/fr/Std_DemoMode.md +++ b/wiki/translations/fr/Std_DemoMode.md @@ -6,6 +6,8 @@ Workbenches:Tous --- +# Std DemoMode/fr + ## Description La commande **Std Vue en rotation** fera tourner la caméra en continu dans une [vue 3D](3D_view/fr.md). @@ -36,4 +38,7 @@ La commande **Std Vue en rotation** fera tourner la caméra en continu dans une {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DemoMode/fr diff --git a/wiki/translations/fr/Std_DependencyGraph.md b/wiki/translations/fr/Std_DependencyGraph.md index 6ab550bb2b..1b3c854939 100644 --- a/wiki/translations/fr/Std_DependencyGraph.md +++ b/wiki/translations/fr/Std_DependencyGraph.md @@ -6,6 +6,8 @@ Workbenches:Tous --- +# Std DependencyGraph/fr + ## Description La commande **Std Graphique de dépendances** affiche les dépendances entre les objets du document actif dans un\' graphique de dépendance \'. Contrairement à la [Vue en arborescence](Tree_view/fr.md), les objets sont répertoriés dans l\'ordre chronologique inverse, avec le premier objet créé en bas. @@ -94,3 +96,6 @@ Vous pouvez enregistrer un graphique de dépendance : }} [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > Std DependencyGraph/fr diff --git a/wiki/translations/fr/Std_DlgCustomize.md b/wiki/translations/fr/Std_DlgCustomize.md index b3572dffbb..442b962a64 100644 --- a/wiki/translations/fr/Std_DlgCustomize.md +++ b/wiki/translations/fr/Std_DlgCustomize.md @@ -7,6 +7,8 @@ SeeAlso:[Personnaliser l'interface](Interface_Customization/fr.md) --- +# Std DlgCustomize/fr + ## Description La commande **Std Personnalisation** ouvre la boîte de dialogue Personnaliser donnant accès à plusieurs options de personnalisation. @@ -32,4 +34,7 @@ La commande **Std Personnalisation** ouvre la boîte de dialogue Personnaliser d {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgCustomize/fr diff --git a/wiki/translations/fr/Std_DlgMacroExecute.md b/wiki/translations/fr/Std_DlgMacroExecute.md index 4f3082bc87..0a2bfdb65c 100644 --- a/wiki/translations/fr/Std_DlgMacroExecute.md +++ b/wiki/translations/fr/Std_DlgMacroExecute.md @@ -7,6 +7,8 @@ SeeAlso:[Std Lancer la macro](Std_DlgMacroExecuteDirect/fr.md) --- +# Std DlgMacroExecute/fr + ## Description La commande **Std Exécuter la macro** ouvre la boîte de dialogue Execute macro. À partir de cette boîte de dialogue, les macros peuvent être exécutées, modifiées et gérées. @@ -108,4 +110,7 @@ La commande **Std Exécuter la macro** ouvre la boîte de dialogue Execute macro {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgMacroExecute/fr diff --git a/wiki/translations/fr/Std_DlgMacroExecuteDirect.md b/wiki/translations/fr/Std_DlgMacroExecuteDirect.md index be7c4542b6..ca6840a216 100644 --- a/wiki/translations/fr/Std_DlgMacroExecuteDirect.md +++ b/wiki/translations/fr/Std_DlgMacroExecuteDirect.md @@ -8,6 +8,8 @@ SeeAlso:[Std Exécuter une macro](Std_DlgMacroExecute/fr.md) --- +# Std DlgMacroExecuteDirect/fr + ## Description La commande **Std Exécuter la macro dans l\'éditeur** exécute la macro dans la fenêtre actuelle de l\'éditeur de macro. @@ -32,4 +34,7 @@ La commande **Std Exécuter la macro dans l\'éditeur** exécute la macro dans l {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgMacroExecuteDirect/fr diff --git a/wiki/translations/fr/Std_DlgMacroRecord.md b/wiki/translations/fr/Std_DlgMacroRecord.md index becd192a12..f4afb138bb 100644 --- a/wiki/translations/fr/Std_DlgMacroRecord.md +++ b/wiki/translations/fr/Std_DlgMacroRecord.md @@ -7,6 +7,8 @@ SeeAlso:[Std Arrêt enregistrement macro](Std_MacroStopRecord/fr.md) --- +# Std DlgMacroRecord/fr + ## Description La commande **Std Enregistrement de macro** démarre une session d\'enregistrement de [macro](Macros/fr.md) pendant laquelle les actions de l\'utilisateur sont stockées dans une macro FreeCAD, un fichier avec l\'extension {{FileName|.FCMacro}}. Une macro peut ensuite être rejouée, exécutée, pour répéter les actions enregistrées. @@ -50,4 +52,7 @@ La commande **Std Enregistrement de macro** démarre une session d\'enregistreme {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgMacroRecord/fr diff --git a/wiki/translations/fr/Std_DlgParameter.md b/wiki/translations/fr/Std_DlgParameter.md index cfb8c8d7c8..1c90a96d96 100644 --- a/wiki/translations/fr/Std_DlgParameter.md +++ b/wiki/translations/fr/Std_DlgParameter.md @@ -7,6 +7,8 @@ SeeAlso:[Réglage des préférences](Preferences_Editor/fr.md) --- +# Std DlgParameter/fr + ## Description La commande **Std Éditeur des paramètres** ouvre l\'éditeur de paramètres. Dans l\'éditeur de paramètres, les paramètres qui contrôlent le comportement de FreeCAD et de ses ateliers peuvent être inspectés et éventuellement supprimés, ajoutés ou modifiés. Les paramètres sont stockés dans un fichier appelé {{FileName|user.cfg}}, l\'emplacement de ce fichier dépend de votre système d\'exploitation. @@ -170,4 +172,7 @@ C\'est probablement une mauvaise idée de modifier les préférences d\'autres p {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgParameter/fr diff --git a/wiki/translations/fr/Std_DlgPreferences.md b/wiki/translations/fr/Std_DlgPreferences.md index 601316f34a..a70a787673 100644 --- a/wiki/translations/fr/Std_DlgPreferences.md +++ b/wiki/translations/fr/Std_DlgPreferences.md @@ -7,6 +7,8 @@ SeeAlso:[Réglage des préférences](Preferences_Editor/fr.md) --- +# Std DlgPreferences/fr + ## Description La commande **Std Préférences** ouvre le [Réglage des préférences](Preferences_Editor/fr.md). @@ -26,4 +28,7 @@ La commande **Std Préférences** ouvre le [Réglage des préférences](Preferen {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgPreferences/fr diff --git a/wiki/translations/fr/Std_DrawStyle.md b/wiki/translations/fr/Std_DrawStyle.md index de36f67e50..3140d43448 100644 --- a/wiki/translations/fr/Std_DrawStyle.md +++ b/wiki/translations/fr/Std_DrawStyle.md @@ -8,6 +8,8 @@ SeeAlso:[Std Boîte de délimitation](Std_SelBoundingBox/fr.md) --- +# Std DrawStyle/fr + ## Description La commande **Std DrawStyle** peut remplacer l\'effet de la [propriété](Property_editor/fr.md) du {{PropertyView/fr|Mode d'affichage}} des objets dans une [vue 3D](3D_view/fr.md). @@ -75,4 +77,7 @@ Le style **Lignes plates** remplace le {{PropertyView/fr|Display Mode}} des obje {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DrawStyle/fr diff --git a/wiki/translations/fr/Std_DuplicateSelection.md b/wiki/translations/fr/Std_DuplicateSelection.md index b25d504274..e5a9229e43 100644 --- a/wiki/translations/fr/Std_DuplicateSelection.md +++ b/wiki/translations/fr/Std_DuplicateSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std Copier](Std_Copy/fr.md), [Std Coller](Std_Paste/fr.md) --- +# Std DuplicateSelection/fr + ## Description La commande **Std Dupliquer la sélection** duplique les objets dans le document actif. @@ -31,4 +33,7 @@ La commande **Std Dupliquer la sélection** duplique les objets dans le document {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DuplicateSelection/fr diff --git a/wiki/translations/fr/Std_Edit.md b/wiki/translations/fr/Std_Edit.md index 5f42c7f136..aac348b4a0 100644 --- a/wiki/translations/fr/Std_Edit.md +++ b/wiki/translations/fr/Std_Edit.md @@ -6,6 +6,8 @@ Workbenches:Tous --- +# Std Edit/fr + ## Description La commande **Std Édition** active ou désactive le mode d\'édition d\'un objet. @@ -65,4 +67,7 @@ FreeCADGui.ActiveDocument.resetEdit() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Edit/fr diff --git a/wiki/translations/fr/Std_Edit_Menu.md b/wiki/translations/fr/Std_Edit_Menu.md index e62a5941dc..37ab746e55 100644 --- a/wiki/translations/fr/Std_Edit_Menu.md +++ b/wiki/translations/fr/Std_Edit_Menu.md @@ -1,10 +1,4 @@ -# Std Edit Menu/fr - - - - - -Icône de Std Base +# Icône de Std Base Std Edit Menu/fr {{TOCright}} @@ -81,3 +75,6 @@ Les outils suivants sont disponibles dans ce menu : }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Edit Menu/fr diff --git a/wiki/translations/fr/Std_Exit.md b/wiki/translations/fr/Std_Exit.md index 779b2ccbab..239c773008 100644 --- a/wiki/translations/fr/Std_Exit.md +++ b/wiki/translations/fr/Std_Exit.md @@ -1,2 +1,5 @@ # Std Exit/fr 1. REDIRECT [Std Quit/fr](Std_Quit/fr.md) + +--- +[documentation index](../README.md) > Std Exit/fr diff --git a/wiki/translations/fr/Std_Export.md b/wiki/translations/fr/Std_Export.md index a114829c5a..f88637a511 100644 --- a/wiki/translations/fr/Std_Export.md +++ b/wiki/translations/fr/Std_Export.md @@ -8,6 +8,8 @@ SeeAlso:[Std Générer un pdf](Std_PrintPdf/fr.md), [Std Importer](Std_Import/fr.md), [Préférences d'Import Export](Import_Export_Preferences/fr.md) --- +# Std Export/fr + ## Description La commande **Std Exporter** exporte les objets sélectionnés vers un format de fichier différent. De nombreux formats de fichiers sont pris en charge et pour certains formats, plusieurs options d\'exportation existent. Voir [Import Export](Import_Export/fr.md) pour plus d\'informations. @@ -51,3 +53,6 @@ La commande **Std Exporter** exporte les objets sélectionnés vers un format de }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Export/fr diff --git a/wiki/translations/fr/Std_ExportGraphviz.md b/wiki/translations/fr/Std_ExportGraphviz.md index b6bca2aad7..8a9c229bd6 100644 --- a/wiki/translations/fr/Std_ExportGraphviz.md +++ b/wiki/translations/fr/Std_ExportGraphviz.md @@ -1,2 +1,5 @@ # Std ExportGraphviz/fr 1. REDIRECT [Std\_DependencyGraph/fr](Std_DependencyGraph/fr.md) + +--- +[documentation index](../README.md) > Std ExportGraphviz/fr diff --git a/wiki/translations/fr/Std_File_Menu.md b/wiki/translations/fr/Std_File_Menu.md index b93bc8e386..b4faea9594 100644 --- a/wiki/translations/fr/Std_File_Menu.md +++ b/wiki/translations/fr/Std_File_Menu.md @@ -1,10 +1,4 @@ -# Std File Menu/fr - - - - - -Icône de Base +# Icône de Base Std File Menu/fr {{TOCright}} @@ -82,3 +76,6 @@ Les outils suivants sont disponibles dans ce menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std File Menu/fr diff --git a/wiki/translations/fr/Std_FreeCADFAQ.md b/wiki/translations/fr/Std_FreeCADFAQ.md index 7b4703f9d3..57a9f3046f 100644 --- a/wiki/translations/fr/Std_FreeCADFAQ.md +++ b/wiki/translations/fr/Std_FreeCADFAQ.md @@ -7,6 +7,8 @@ SeeAlso:[Std Site Web de FreeCAD](Std_FreeCADWebsite/fr.md), [Std Documentation utilisateurs](Std_FreeCADUserHub/fr.md), [Std Documentation pour scripter en Python](Std_FreeCADPowerUserHub/fr.md), [Std Forum de FreeCAD](Std_FreeCADForum/fr.md) --- +# Std FreeCADFAQ/fr + ## Description La commande **Std FAQ FreeCAD** ouvre la page FAQ FreeCAD dans le navigateur Internet par défaut du système. La commande nécessite une connexion Internet fonctionnelle. @@ -23,4 +25,7 @@ Actuellement cette commande pointe vers []( {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADFAQ/fr diff --git a/wiki/translations/fr/Std_FreeCADForum.md b/wiki/translations/fr/Std_FreeCADForum.md index a3f1b8fd49..914f2dcb8e 100644 --- a/wiki/translations/fr/Std_FreeCADForum.md +++ b/wiki/translations/fr/Std_FreeCADForum.md @@ -7,6 +7,8 @@ SeeAlso:[Std Site Web de FreeCAD](Std_FreeCADWebsite/fr.md), [Std Documentation utilisateurs](Std_FreeCADUserHub/fr.md), [Std Documentation pour scripter en Python](Std_FreeCADPowerUserHub/fr.md), [Std FAQ FreeCAD](Std_FreeCADFAQ/fr.md) --- +# Std FreeCADForum/fr + ## Description La commande **Std Forum de FreeCAD** ouvre le site Web du forum FreeCAD dans le navigateur Internet par défaut du système. La commande nécessite une connexion Internet fonctionnelle. @@ -23,4 +25,7 @@ Actuellement, cette commande pointe vers [](https: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADForum/fr diff --git a/wiki/translations/fr/Std_FreeCADPowerUserHub.md b/wiki/translations/fr/Std_FreeCADPowerUserHub.md index c5dde26d3a..e060021ae3 100644 --- a/wiki/translations/fr/Std_FreeCADPowerUserHub.md +++ b/wiki/translations/fr/Std_FreeCADPowerUserHub.md @@ -7,6 +7,8 @@ SeeAlso:[Std Site Web de FreeCAD](Std_FreeCADWebsite/fr.md), [Std Documentation utilisateurs](Std_FreeCADUserHub/fr.md), [Std Forum de FreeCAD](Std_FreeCADForum/fr.md), [Std FAQ FreeCAD](Std_FreeCADFAQ/fr.md) --- +# Std FreeCADPowerUserHub/fr + ## Description La commande **Std Documentation pour scripter en Python** ouvre la page de Documentation pour utilisateurs expérimentés dans le navigateur Internet par défaut du système. La commande nécessite une connexion Internet fonctionnelle. @@ -23,4 +25,7 @@ Actuellement, la commande pointe vers [ Std FreeCADPowerUserHub/fr diff --git a/wiki/translations/fr/Std_FreeCADUserHub.md b/wiki/translations/fr/Std_FreeCADUserHub.md index 9cca393c72..97db059ba9 100644 --- a/wiki/translations/fr/Std_FreeCADUserHub.md +++ b/wiki/translations/fr/Std_FreeCADUserHub.md @@ -7,6 +7,8 @@ SeeAlso:[Std Site Web de FreeCAD](Std_FreeCADWebsite/fr.md), [Std Documentation pour scripter en Python](Std_FreeCADPowerUserHub/fr.md), [Std Forum de FreeCAD](Std_FreeCADForum/fr.md), [Std FAQ FreeCAD](Std_FreeCADFAQ/fr.md) --- +# Std FreeCADUserHub/fr + ## Description La commande **Std Documentation utilisateurs** ouvre la page de documentation des utilisateurs FreeCAD dans le navigateur Internet par défaut du système. La commande nécessite une connexion Internet fonctionnelle. @@ -23,4 +25,7 @@ Actuellement, la commande pointe vers [ Std FreeCADUserHub/fr diff --git a/wiki/translations/fr/Std_FreeCADWebsite.md b/wiki/translations/fr/Std_FreeCADWebsite.md index ab8b9245c6..a42f8aad55 100644 --- a/wiki/translations/fr/Std_FreeCADWebsite.md +++ b/wiki/translations/fr/Std_FreeCADWebsite.md @@ -7,6 +7,8 @@ SeeAlso:[Std Documentation utilisateurs](Std_FreeCADUserHub.md), [Std Documentation pour scripter en Python](Std_FreeCADPowerUserHub/fr.md), [Std Forum de FreeCAD](Std_FreeCADForum/fr.md), [Std FAQ FreeCAD](Std_FreeCADFAQ/fr.md) --- +# Std FreeCADWebsite/fr + ## Description La commande **Std Site Web de FreeCAD** ouvre le site Web principal du projet FreeCAD dans le navigateur Internet par défaut du système. La commande nécessite une connexion Internet fonctionnelle. @@ -23,4 +25,7 @@ Actuellement, cette commande pointe vers [](https:// {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADWebsite/fr diff --git a/wiki/translations/fr/Std_FreezeViews.md b/wiki/translations/fr/Std_FreezeViews.md index 5a6f588cca..249a433577 100644 --- a/wiki/translations/fr/Std_FreezeViews.md +++ b/wiki/translations/fr/Std_FreezeViews.md @@ -8,6 +8,8 @@ SeeAlso:[Std Position de la caméra](Std_ViewIvIssueCamPos/fr.md) --- +# Std FreezeViews/fr + ## Introduction FreeCAD peut stocker les paramètres de la caméra dans jusqu\'à 50 «vues figées». Les options de menu relatives aux vues figées se trouvent dans le sous-menu **Affichage → Figer l'affichage**. Les vues figées ne sont pas stockées dans le document et si elles ne sont pas enregistrées avec l\'option de menu **[Enregistrer les vues](#Enregistrer_les_vues.md)** seront perdues à la fermeture de l\'application FreeCAD. @@ -88,4 +90,7 @@ Pour chaque vue figée, une option **Vue de restauration** est ajoutée avec laq {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreezeViews/fr diff --git a/wiki/translations/fr/Std_Group.md b/wiki/translations/fr/Std_Group.md index 97133314a6..7b742b7d4f 100644 --- a/wiki/translations/fr/Std_Group.md +++ b/wiki/translations/fr/Std_Group.md @@ -9,6 +9,8 @@ SeeAlso:[Std Part](Std_Part/fr.md), [Draft Sélectionner un groupe](Draft_SelectGroup/fr.md), [Draft Ajouter au groupe](Draft_AddToGroup/fr.md) --- +# Std Group/fr + ## Description [Std Group](Std_Group/fr.md) (appelé en interne [App DocumentObjectGroup](App_DocumentObjectGroup/fr.md)) est un conteneur à usage général qui vous permet de regrouper différents types d\'objets dans la [vue par aborescence](tree_view/fr.md), quel que soit leur type de données. Il est utilisé comme un simple dossier pour classer et organiser les objets dans votre modèle afin de conserver une structure logique. Les Std Groupes peuvent être imbriqués dans d\'autres Std Groupes. @@ -128,4 +130,7 @@ Par exemple, [Analyse FEM](FEM_Analysis/fr.md) est un objet `App::DocumentObject {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Group/fr diff --git a/wiki/translations/fr/Std_Help.md b/wiki/translations/fr/Std_Help.md index 2b0cb5a7ed..fcb3834d3d 100644 --- a/wiki/translations/fr/Std_Help.md +++ b/wiki/translations/fr/Std_Help.md @@ -1,2 +1,5 @@ # Std Help/fr 1. REDIRECT [Std\_Help\_Menu/fr](Std_Help_Menu/fr.md) + +--- +[documentation index](../README.md) > Std Help/fr diff --git a/wiki/translations/fr/Std_Help_Menu.md b/wiki/translations/fr/Std_Help_Menu.md index d0911c68d7..fa040476b0 100644 --- a/wiki/translations/fr/Std_Help_Menu.md +++ b/wiki/translations/fr/Std_Help_Menu.md @@ -1,10 +1,4 @@ -# Std Help Menu/fr - - - - - -Icône de Base +# Icône de Base Std Help Menu/fr {{TOCright}} @@ -64,3 +58,6 @@ Les outils suivants sont disponibles dans ce menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Help Menu/fr diff --git a/wiki/translations/fr/Std_HideObjects.md b/wiki/translations/fr/Std_HideObjects.md index d2868b7ad1..267903ed87 100644 --- a/wiki/translations/fr/Std_HideObjects.md +++ b/wiki/translations/fr/Std_HideObjects.md @@ -7,6 +7,8 @@ SeeAlso:[Std Basculer visibilité](Std_ToggleVisibility/fr.md), [Std Afficher la sélection](Std_ShowSelection/fr.md), [Std Masquer la sélection](Std_HideSelection/fr.md), [Std Basculer tous les objets](Std_ToggleObjects/fr.md), [Std Afficher les objets](Std_ShowObjects/fr.md) --- +# Std HideObjects/fr + ## Description La commande **Std Masquer tous les objets** masque tous les objets appartenant au document actif dans la [vue 3D](3D_view/fr.md). @@ -36,4 +38,7 @@ Pour un exemple de script, voir [Std Basculer la visibilité](Std_ToggleVisibili {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std HideObjects/fr diff --git a/wiki/translations/fr/Std_HideSelection.md b/wiki/translations/fr/Std_HideSelection.md index 6718d8023a..db2bd00bf2 100644 --- a/wiki/translations/fr/Std_HideSelection.md +++ b/wiki/translations/fr/Std_HideSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std Basculer la visibilité](Std_ToggleVisibility/fr.md), [Std Afficher la sélection](Std_ShowSelection/fr.md), [Std Basculer tous les objets](Std_ToggleObjects/fr.md), [Std Afficher les objets](Std_ShowObjects/fr.md), [Std Masquer tous les objets](Std_HideObjects.md) --- +# Std HideSelection/fr + ## Description La commande **Std Masquer la sélection** masque les objets sélectionnés dans la [Vues 3D](3D_view/fr.md). @@ -41,4 +43,7 @@ Pour un exemple de script, voir [Std Basculer la visibilité](Std_ToggleVisibili {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std HideSelection/fr diff --git a/wiki/translations/fr/Std_Import.md b/wiki/translations/fr/Std_Import.md index afa272fdc9..68836e0632 100644 --- a/wiki/translations/fr/Std_Import.md +++ b/wiki/translations/fr/Std_Import.md @@ -8,6 +8,8 @@ SeeAlso:[Std Ouvrir](Std_Open/fr.md), [Import Export](Import_Export/fr.md), [Préférences d'Import Export](Import_Export_Preferences/fr.md) --- +# Std Import/fr + ## Description La commande **Std Importer** importe la géométrie d\'un format de fichier différent dans le document actif. De nombreux formats de fichiers sont pris en charge et pour certains formats, plusieurs options d\'importation existent. Voir [Import Export](Import_Export/fr.md) pour plus d\'informations. @@ -46,3 +48,6 @@ La commande **Std Importer** importe la géométrie d\'un format de fichier diff }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Import/fr diff --git a/wiki/translations/fr/Std_InterfaceCustomization.md b/wiki/translations/fr/Std_InterfaceCustomization.md index ee78d194b7..f64b7f774f 100644 --- a/wiki/translations/fr/Std_InterfaceCustomization.md +++ b/wiki/translations/fr/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/fr 1. REDIRECT [Interface\_Customization/fr](Interface_Customization/fr.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/fr diff --git a/wiki/translations/fr/Std_LinkImport.md b/wiki/translations/fr/Std_LinkImport.md index 800f5c2036..b3cd1a52e0 100644 --- a/wiki/translations/fr/Std_LinkImport.md +++ b/wiki/translations/fr/Std_LinkImport.md @@ -8,6 +8,8 @@ SeeAlso:[Std Créer un lien](Std_LinkMake/fr.md), [Std Créer un lien relatif](Std_LinkMakeRelative/fr.md), [Std Importer tous les liens](Std_LinkImportAll/fr.md) --- +# Std LinkImport/fr + ## Description @@ -38,4 +40,7 @@ Une copie de l\'original ** [Std {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkImport/fr diff --git a/wiki/translations/fr/Std_LinkImportAll.md b/wiki/translations/fr/Std_LinkImportAll.md index 82688b6822..4cb6452a2e 100644 --- a/wiki/translations/fr/Std_LinkImportAll.md +++ b/wiki/translations/fr/Std_LinkImportAll.md @@ -8,6 +8,8 @@ SeeAlso:[Std Créer un lien](Std_LinkMake/fr.md), [Std Créer un lien relatif](Std_LinkMakeRelative/fr.md), [Std Importer des liens](Std_LinkImport/fr.md) --- +# Std LinkImportAll/fr + ## Description @@ -33,4 +35,7 @@ Cette commande exécute essentiellement ** Std LinkImportAll/fr diff --git a/wiki/translations/fr/Std_LinkMake.md b/wiki/translations/fr/Std_LinkMake.md index ebd1d37394..1ec7f1a5ab 100644 --- a/wiki/translations/fr/Std_LinkMake.md +++ b/wiki/translations/fr/Std_LinkMake.md @@ -8,6 +8,8 @@ SeeAlso:[Std Part](Std_Part/fr.md), [Std Groupe](Std_Group/fr.md), [PartDesign Corps](PartDesign_Body/fr.md) --- +# Std LinkMake/fr + ## Description @@ -380,4 +382,7 @@ D\'autres \"liens\" divers à propos de Link incluent : {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkMake/fr diff --git a/wiki/translations/fr/Std_LinkMakeRelative.md b/wiki/translations/fr/Std_LinkMakeRelative.md index 95b014cb60..279cb2c665 100644 --- a/wiki/translations/fr/Std_LinkMakeRelative.md +++ b/wiki/translations/fr/Std_LinkMakeRelative.md @@ -8,6 +8,8 @@ SeeAlso:[Std Part](Std_Part/fr.md), [Std Groupe](Std_Group/fr.md), [Std Créer un lien](Std_LinkMake/fr.md) --- +# Std LinkMakeRelative/fr + ## Description @@ -64,4 +66,7 @@ App.ActiveDocument.recompute() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkMakeRelative/fr diff --git a/wiki/translations/fr/Std_LinkReplace.md b/wiki/translations/fr/Std_LinkReplace.md index c42e2463ce..05d9ea1040 100644 --- a/wiki/translations/fr/Std_LinkReplace.md +++ b/wiki/translations/fr/Std_LinkReplace.md @@ -8,6 +8,8 @@ SeeAlso:[Std Créer un lien](Std_LinkMake/fr.md), [Std Créer un lien relatif](Std_LinkMakeRelative/fr.md), [Std Délier](Std_LinkUnlink/fr.md) --- +# Std LinkReplace/fr + ## Description @@ -49,4 +51,7 @@ Cette commande crée un nouveau {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkUnlink/fr diff --git a/wiki/translations/fr/Std_MacroAttachDebugger.md b/wiki/translations/fr/Std_MacroAttachDebugger.md index dee3fede7a..0e586478bd 100644 --- a/wiki/translations/fr/Std_MacroAttachDebugger.md +++ b/wiki/translations/fr/Std_MacroAttachDebugger.md @@ -7,6 +7,8 @@ Workbenches:Tous --- +# Std MacroAttachDebugger/fr + ## Description A faire. @@ -21,4 +23,7 @@ A faire. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MacroAttachDebugger/fr diff --git a/wiki/translations/fr/Std_MacroStartDebug.md b/wiki/translations/fr/Std_MacroStartDebug.md index 1ab5f54594..b005078c60 100644 --- a/wiki/translations/fr/Std_MacroStartDebug.md +++ b/wiki/translations/fr/Std_MacroStartDebug.md @@ -8,6 +8,8 @@ SeeAlso:[Std Arrêt du débogage de macro](Std_MacroStopDebug/fr.md) --- +# Std MacroStartDebug/fr + ## Description Cette commande ne fonctionne pas pour le moment. @@ -18,4 +20,7 @@ Cette commande ne fonctionne pas pour le moment. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MacroStartDebug/fr diff --git a/wiki/translations/fr/Std_MacroStepInto.md b/wiki/translations/fr/Std_MacroStepInto.md index 2b75b37c7c..2438633428 100644 --- a/wiki/translations/fr/Std_MacroStepInto.md +++ b/wiki/translations/fr/Std_MacroStepInto.md @@ -9,6 +9,8 @@ SeeAlso:[Std Passer outre](Std_MacroStepOver/fr.md), [Std Basculer le point d'arrêt](Std_ToggleBreakpoint/fr.md) --- +# Std MacroStepInto/fr + ## Description Cette commande ne fonctionne pas pour le moment. @@ -19,4 +21,7 @@ Cette commande ne fonctionne pas pour le moment. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MacroStepInto/fr diff --git a/wiki/translations/fr/Std_MacroStepOver.md b/wiki/translations/fr/Std_MacroStepOver.md index 7caf455e75..87fdb1cd87 100644 --- a/wiki/translations/fr/Std_MacroStepOver.md +++ b/wiki/translations/fr/Std_MacroStepOver.md @@ -9,6 +9,8 @@ SeeAlso:[Std Pénétrer dans](Std_MacroStepInto/fr.md), [Std Basculer le point d'arrêt](Std_ToggleBreakpoint/fr.md) --- +# Std MacroStepOver/fr + ## Description Cette commande ne fonctionne pas pour le moment. @@ -19,4 +21,7 @@ Cette commande ne fonctionne pas pour le moment. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MacroStepOver/fr diff --git a/wiki/translations/fr/Std_MacroStopDebug.md b/wiki/translations/fr/Std_MacroStopDebug.md index 2a174f1249..7cb0a6ad4e 100644 --- a/wiki/translations/fr/Std_MacroStopDebug.md +++ b/wiki/translations/fr/Std_MacroStopDebug.md @@ -8,6 +8,8 @@ SeeAlso:[Std Débogage de macro](Std_MacroStartDebug/fr.md) --- +# Std MacroStopDebug/fr + ## Description Cette commande ne fonctionne pas pour le moment. @@ -18,4 +20,7 @@ Cette commande ne fonctionne pas pour le moment. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MacroStopDebug/fr diff --git a/wiki/translations/fr/Std_MacroStopRecord.md b/wiki/translations/fr/Std_MacroStopRecord.md index 4a39079a86..8e342e6722 100644 --- a/wiki/translations/fr/Std_MacroStopRecord.md +++ b/wiki/translations/fr/Std_MacroStopRecord.md @@ -7,6 +7,8 @@ SeeAlso:[Std Enregistrement de macro](Std_DlgMacroRecord/fr.md) --- +# Std MacroStopRecord/fr + ## Description La commande **Std Arrêt enregistrement macro** met fin à une session d\'enregistrement de macro. @@ -28,4 +30,7 @@ La commande **Std Arrêt enregistrement macro** met fin à une session d\'enregi {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MacroStopRecord/fr diff --git a/wiki/translations/fr/Std_Macro_Menu.md b/wiki/translations/fr/Std_Macro_Menu.md index e3837f7fb0..5d258bb81f 100644 --- a/wiki/translations/fr/Std_Macro_Menu.md +++ b/wiki/translations/fr/Std_Macro_Menu.md @@ -1,10 +1,4 @@ -# Std Macro Menu/fr - - - - - -Icône de Base +# Icône de Base Std Macro Menu/fr {{TOCright}} @@ -68,3 +62,6 @@ Les outils suivants sont disponibles dans ce menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Macro Menu/fr diff --git a/wiki/translations/fr/Std_MainFullscreen.md b/wiki/translations/fr/Std_MainFullscreen.md index 6bfe352aae..5dbc3554fb 100644 --- a/wiki/translations/fr/Std_MainFullscreen.md +++ b/wiki/translations/fr/Std_MainFullscreen.md @@ -8,6 +8,8 @@ SeeAlso:[Std Plein écran](Std_ViewFullscreen/fr.md) --- +# Std MainFullscreen/fr + ## Description La commande **Std Plein écran principal** bascule le mode plein écran de la fenêtre principale de FreeCAD. @@ -24,4 +26,7 @@ La commande **Std Plein écran principal** bascule le mode plein écran de la fe {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MainFullscreen/fr diff --git a/wiki/translations/fr/Std_MeasureDistance.md b/wiki/translations/fr/Std_MeasureDistance.md index 8e485cf9f8..44711b180f 100644 --- a/wiki/translations/fr/Std_MeasureDistance.md +++ b/wiki/translations/fr/Std_MeasureDistance.md @@ -7,6 +7,8 @@ SeeAlso:[Part Menu des mesures](Part_Measure_Menu/fr.md), [Draft Cote](Draft_Dimension/fr.md), [Arch Prise de cotes](Arch_Survey/fr.md) --- +# Std MeasureDistance/fr + ## Description La commande **Std Mesurer une distance** crée un objet distance qui mesure et affiche la distance entre deux points. @@ -62,4 +64,7 @@ La commande **Std Mesurer une distance** crée un objet distance qui mesure et a {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MeasureDistance/fr diff --git a/wiki/translations/fr/Std_MergeProject.md b/wiki/translations/fr/Std_MergeProject.md index c7daaa07bc..1c2c274548 100644 --- a/wiki/translations/fr/Std_MergeProject.md +++ b/wiki/translations/fr/Std_MergeProject.md @@ -1,2 +1,5 @@ # Std MergeProject/fr 1. REDIRECT [Std\_MergeProjects/fr](Std_MergeProjects/fr.md) + +--- +[documentation index](../README.md) > Std MergeProject/fr diff --git a/wiki/translations/fr/Std_MergeProjects.md b/wiki/translations/fr/Std_MergeProjects.md index 14cc991257..9f966dba1c 100644 --- a/wiki/translations/fr/Std_MergeProjects.md +++ b/wiki/translations/fr/Std_MergeProjects.md @@ -6,6 +6,8 @@ Workbenches:Tous --- +# Std MergeProjects/fr + ## Description La commande **Std Fusion de projets** ajoute le contenu d\'un fichier FreeCAD dans le document actif. @@ -36,4 +38,7 @@ La commande **Std Fusion de projets** ajoute le contenu d\'un fichier FreeCAD da {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MergeProjects/fr diff --git a/wiki/translations/fr/Std_New.md b/wiki/translations/fr/Std_New.md index 62709e80ef..85122e69db 100644 --- a/wiki/translations/fr/Std_New.md +++ b/wiki/translations/fr/Std_New.md @@ -8,6 +8,8 @@ SeeAlso:[Std Ouvrir](Std_Open/fr.md), [Std Importer](Std_Import/fr.md) --- +# Std New/fr + ## Description La commande **Std Nouveau** crée un nouveau document vide et en fait le document actif. @@ -97,4 +99,7 @@ FreeCAD.closeDocument(doc.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std New/fr diff --git a/wiki/translations/fr/Std_OnlineHelp.md b/wiki/translations/fr/Std_OnlineHelp.md index 2c9522a77a..f93a9dfb0d 100644 --- a/wiki/translations/fr/Std_OnlineHelp.md +++ b/wiki/translations/fr/Std_OnlineHelp.md @@ -8,6 +8,8 @@ SeeAlso:[Std Qu'est-ce que c'est?](Std_WhatsThis/fr.md) --- +# Std OnlineHelp/fr + ## Description La commande **Std Aide** ouvre la documentation d\'aide. Pour ouvrir la documentation avec une page d\'aide de commande prédéfinie, utilisez l\'outil [Std Qu\'est-ce que c\'est?](Std_WhatsThis/fr.md). @@ -31,4 +33,7 @@ La commande **Std Aide** ouvre la documentation d\'aide. Pour ouvrir la document {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std OnlineHelp/fr diff --git a/wiki/translations/fr/Std_Open.md b/wiki/translations/fr/Std_Open.md index d48d78468b..2e1837720a 100644 --- a/wiki/translations/fr/Std_Open.md +++ b/wiki/translations/fr/Std_Open.md @@ -8,6 +8,8 @@ SeeAlso:[Std Importer](Std_Import/fr.md), [Std Nouveau](Std_New/fr.md) --- +# Std Open/fr + ## Description La commande **Std Ouvrir** ouvre un fichier. Si le fichier n\'est pas un fichier FreeCAD natif (\*.FCStd), sa géométrie sera importée dans un nouveau document. Voir [Std Importer](Std_Import/fr.md) pour plus d\'informations. @@ -49,4 +51,7 @@ Pour un exemple de script, voir [Std Nouveau](Std_New/fr#Script.md). {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Open/fr diff --git a/wiki/translations/fr/Std_OrthographicCamera.md b/wiki/translations/fr/Std_OrthographicCamera.md index 28ab3c3ce9..ab399be7fa 100644 --- a/wiki/translations/fr/Std_OrthographicCamera.md +++ b/wiki/translations/fr/Std_OrthographicCamera.md @@ -8,6 +8,8 @@ SeeAlso:[Std Vue en perspective](Std_PerspectiveCamera/fr.md) --- +# Std OrthographicCamera/fr + ## Description La commande **Std Vue orthographique** fait passer la vision du mode actif [vue 3D](3D_view/fr.md) en mode de vue orthographique. Dans ce mode, les objets qui sont plus éloignés de l\'appareil photo n\'apparaissent pas plus petits que ceux qui sont plus proches. @@ -51,4 +53,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std OrthographicCamera/fr diff --git a/wiki/translations/fr/Std_Part.md b/wiki/translations/fr/Std_Part.md index 50827d9503..6386521e60 100644 --- a/wiki/translations/fr/Std_Part.md +++ b/wiki/translations/fr/Std_Part.md @@ -8,6 +8,8 @@ SeeAlso:[Std Groupe](Std_Group/fr.md), [PartDesign Corps](PartDesign_Body/fr.md) --- +# Std Part/fr + ## Description @@ -273,4 +275,7 @@ App.ActiveDocument.addObject('Part::FeaturePython', 'Group', group.MyGroup(), gr {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Part/fr diff --git a/wiki/translations/fr/Std_Paste.md b/wiki/translations/fr/Std_Paste.md index f0ef73d5c9..90fc01b44b 100644 --- a/wiki/translations/fr/Std_Paste.md +++ b/wiki/translations/fr/Std_Paste.md @@ -8,6 +8,8 @@ SeeAlso:[Std Couper](Std_Cut/fr.md), [Std Copier](Std_Copy/fr.md), [Std Dupliquer une sélection](Std_DuplicateSelection/fr.md) --- +# Std Paste/fr + ## Description La commande **Std Coller** colle les objets du Presse-papiers dans le document actif. @@ -37,4 +39,7 @@ La commande **Std Coller** colle les objets du Presse-papiers dans le document a {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Paste/fr diff --git a/wiki/translations/fr/Std_PerspectiveCamera.md b/wiki/translations/fr/Std_PerspectiveCamera.md index 50dd1ca810..b5f491b333 100644 --- a/wiki/translations/fr/Std_PerspectiveCamera.md +++ b/wiki/translations/fr/Std_PerspectiveCamera.md @@ -8,6 +8,8 @@ SeeAlso:[Std Vue orthographique](Std_OrthographicCamera/fr.md) --- +# Std PerspectiveCamera/fr + ## Description La commande **Std Vue en perspective** fait passer la vision du mode actif [vue 3D](3D_view/fr.md) en mode de vue en perspective. Dans ce mode, les objets qui sont plus éloignés de l\'appareil photo apparaissent plus petits que ceux qui sont plus proches. @@ -51,4 +53,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PerspectiveCamera/fr diff --git a/wiki/translations/fr/Std_Placement.md b/wiki/translations/fr/Std_Placement.md index 1d7b4ba229..7ed9f696e3 100644 --- a/wiki/translations/fr/Std_Placement.md +++ b/wiki/translations/fr/Std_Placement.md @@ -7,6 +7,8 @@ SeeAlso:[Std Alignement](Std_Alignment/fr.md), [Placement](Placement/fr.md) --- +# Std Placement/fr + ## Description La commande **Std Positionnement** affiche le [Panneau des tâches](Task_Panel/fr.md) Placement pour un objet sélectionné. @@ -84,4 +86,7 @@ print(obj.Placement.Matrix) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Placement/fr diff --git a/wiki/translations/fr/Std_Print.md b/wiki/translations/fr/Std_Print.md index e64ba23b4a..bc4a50503f 100644 --- a/wiki/translations/fr/Std_Print.md +++ b/wiki/translations/fr/Std_Print.md @@ -8,6 +8,8 @@ SeeAlso:[Std Aperçu Impression](Std_PrintPreview/fr.md), [Std Générer un pdf](Std_PrintPdf/fr.md), [Std Exporter](Std_Export/fr.md), [Std Capture d'écran](Std_ViewScreenShot/fr.md) --- +# Std Print/fr + ## Description La commande **Std Imprimer** est principalement destinée à imprimer des pages de l\'[atelier TechDraw](TechDraw_Workbench/fr.md) mais peut également être utilisée pour imprimer ce qui est actuellement visible dans la [vue 3D](3D_view/fr.md). @@ -31,4 +33,7 @@ La commande **Std Imprimer** est principalement destinée à imprimer des pages {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Print/fr diff --git a/wiki/translations/fr/Std_PrintPdf.md b/wiki/translations/fr/Std_PrintPdf.md index da2655540b..4f9ac3dc00 100644 --- a/wiki/translations/fr/Std_PrintPdf.md +++ b/wiki/translations/fr/Std_PrintPdf.md @@ -7,6 +7,8 @@ SeeAlso:[Std Imprimer](Std_Print/fr.md), [Exporter](Std_Export/fr.md), [Std Capture d'écran](Std_ViewScreenShot.md) --- +# Std PrintPdf/fr + ## Description La commande **Std Exporter au format PDF** est principalement destinée à créer des fichiers [PDF](PDF/fr.md) à partir des pages de l\'[atelier TechDraw](TechDraw_Workbench/fr.md) mais peut également être utilisée pour créer un PDF à partir de ce qui est actuellement visible dans la [vue 3D](3D_view/fr.md). @@ -37,4 +39,7 @@ La commande **Std Exporter au format PDF** est principalement destinée à crée {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PrintPdf/fr diff --git a/wiki/translations/fr/Std_PrintPreview.md b/wiki/translations/fr/Std_PrintPreview.md index 0b169cea5e..c9ca18e3f7 100644 --- a/wiki/translations/fr/Std_PrintPreview.md +++ b/wiki/translations/fr/Std_PrintPreview.md @@ -7,6 +7,8 @@ SeeAlso:[Std Imprimer](Std_Print/fr.md) --- +# Std PrintPreview/fr + ## Description La commande **Std Aperçu avant impression** affichera un aperçu du résultat de la commande [Std Imprimer](Std_Print/fr.md). Vous pouvez également imprimer directement à partir de la boîte de dialogue d\'aperçu. @@ -28,4 +30,7 @@ La commande **Std Aperçu avant impression** affichera un aperçu du résultat d {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PrintPreview/fr diff --git a/wiki/translations/fr/Std_ProjectInfo.md b/wiki/translations/fr/Std_ProjectInfo.md index 129f408b7c..d42bb74354 100644 --- a/wiki/translations/fr/Std_ProjectInfo.md +++ b/wiki/translations/fr/Std_ProjectInfo.md @@ -7,6 +7,8 @@ SeeAlso:[Std Nouveau](Std_New.md) --- +# Std ProjectInfo/fr + ## Description La commande **Information sur le projet** affiche une boîte de dialogue avec des informations sur le projet appartenant au document actif. Certaines de ces informations peuvent être modifiées. @@ -42,4 +44,7 @@ La commande **Information sur le projet** affiche une boîte de dialogue avec de {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ProjectInfo/fr diff --git a/wiki/translations/fr/Std_ProjectUtil.md b/wiki/translations/fr/Std_ProjectUtil.md index d111f69b83..6dcb914b50 100644 --- a/wiki/translations/fr/Std_ProjectUtil.md +++ b/wiki/translations/fr/Std_ProjectUtil.md @@ -6,6 +6,8 @@ Workbenches:Tous --- +# Std ProjectUtil/fr + ## Description La commande **Std Utilitaire de projet** vous permet d\'extraire des fichiers à partir d\'un fichier de projet FreeCAD ({{FileName|*.FCStd}}) qui est en fait un [ZIP](https://fr.wikipedia.org/wiki/ZIP_(format_de_fichier)) et, après les modifications manuelles, crée un nouveau fichier de projet à partir d\'eux. @@ -52,4 +54,7 @@ Il est important de réaliser que les fichiers contenus dans un fichier de proje {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ProjectUtil/fr diff --git a/wiki/translations/fr/Std_ProjectUtility.md b/wiki/translations/fr/Std_ProjectUtility.md index 33313bf158..289c9e8d50 100644 --- a/wiki/translations/fr/Std_ProjectUtility.md +++ b/wiki/translations/fr/Std_ProjectUtility.md @@ -1,2 +1,5 @@ # Std ProjectUtility/fr 1. REDIRECT [Std\_ProjectUtil/fr](Std_ProjectUtil/fr.md) + +--- +[documentation index](../README.md) > Std ProjectUtility/fr diff --git a/wiki/translations/fr/Std_PythonHelp.md b/wiki/translations/fr/Std_PythonHelp.md index ebf0adb2f0..71d4496967 100644 --- a/wiki/translations/fr/Std_PythonHelp.md +++ b/wiki/translations/fr/Std_PythonHelp.md @@ -7,6 +7,8 @@ SeeAlso:[Std Documentation pour scripter en Python](Std_FreeCADPowerUserHub/fr.md) --- +# Std PythonHelp/fr + ## Description La commande **Std Documentation des modules Python** démarre un serveur Web qui communique avec le navigateur Internet par défaut du système via un socket local. Le serveur Web affiche des informations sur les modules, classes et fonctions [Python](Python/fr.md) disponibles de FreeCAD. Les pages requises sont générées automatiquement. @@ -24,4 +26,7 @@ Le serveur Web est basé sur le module [pydoc](https://docs.python.org/3.8/libra {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PythonHelp/fr diff --git a/wiki/translations/fr/Std_Quit.md b/wiki/translations/fr/Std_Quit.md index bb87655f80..70db73c28b 100644 --- a/wiki/translations/fr/Std_Quit.md +++ b/wiki/translations/fr/Std_Quit.md @@ -8,6 +8,8 @@ SeeAlso:[Std Fermer](Std_CloseActiveWindow/fr.md) --- +# Std Quit/fr + ## Description La commande **Std Quitter** ferme l\'application FreeCAD et enregistre éventuellement les documents non enregistrés. @@ -36,4 +38,7 @@ La commande **Std Quitter** ferme l\'application FreeCAD et enregistre éventuel {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Quit/fr diff --git a/wiki/translations/fr/Std_RandomColor.md b/wiki/translations/fr/Std_RandomColor.md index 903311658b..8463034c9e 100644 --- a/wiki/translations/fr/Std_RandomColor.md +++ b/wiki/translations/fr/Std_RandomColor.md @@ -6,6 +6,8 @@ Workbenches:Tous --- +# Std RandomColor/fr + ## Description La commande **Std Couleur aléatoire** applique une {{PropertyView/fr|Shape Color}} aléatoire (Couleur de la forme) aux objets sélectionnés. @@ -27,4 +29,7 @@ La commande **Std Couleur aléatoire** applique une {{PropertyView/fr|Shape Colo {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std RandomColor/fr diff --git a/wiki/translations/fr/Std_RecentFiles.md b/wiki/translations/fr/Std_RecentFiles.md index 4928153c94..6353ea8f24 100644 --- a/wiki/translations/fr/Std_RecentFiles.md +++ b/wiki/translations/fr/Std_RecentFiles.md @@ -8,6 +8,8 @@ SeeAlso:[Std Ouvrir](Std_Open/fr.md), [Std Importer](Std_Import/fr.md) --- +# Std RecentFiles/fr + ## Description L\'option de menu **Std Fichiers récents** affiche une liste des fichiers récents qui peuvent être ouverts. @@ -32,4 +34,7 @@ L\'option de menu **Std Fichiers récents** affiche une liste des fichiers réce {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std RecentFiles/fr diff --git a/wiki/translations/fr/Std_Redo.md b/wiki/translations/fr/Std_Redo.md index 1cf384b7b7..236bdceffa 100644 --- a/wiki/translations/fr/Std_Redo.md +++ b/wiki/translations/fr/Std_Redo.md @@ -8,6 +8,8 @@ SeeAlso:[Std Annuler](Std_Undo/fr.md) --- +# Std Redo/fr + ## Description La commande **Std Rétablir** inverse l\'action de la commande [Std Annuler](Std_Undo/fr.md). @@ -50,4 +52,7 @@ FreeCAD.ActiveDocument.redo() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Redo/fr diff --git a/wiki/translations/fr/Std_Refresh.md b/wiki/translations/fr/Std_Refresh.md index 9cc707fdc3..94c1527f27 100644 --- a/wiki/translations/fr/Std_Refresh.md +++ b/wiki/translations/fr/Std_Refresh.md @@ -7,6 +7,8 @@ Shortcut:**F5** --- +# Std Refresh/fr + ## Description La commande **Std Rafraîchir** recalcule le document actif. La commande est désactivée si le document ne nécessite pas de recalcul. @@ -50,4 +52,7 @@ doc.recompute() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Refresh/fr diff --git a/wiki/translations/fr/Std_Revert.md b/wiki/translations/fr/Std_Revert.md index 6fcb1aaa99..bce77dd590 100644 --- a/wiki/translations/fr/Std_Revert.md +++ b/wiki/translations/fr/Std_Revert.md @@ -6,6 +6,8 @@ Workbenches:Tous --- +# Std Revert/fr + ## Description La commande **Std Rétablir** ferme le document actif et rouvre la dernière version enregistrée du document. @@ -25,4 +27,7 @@ La commande **Std Rétablir** ferme le document actif et rouvre la dernière ver {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Revert/fr diff --git a/wiki/translations/fr/Std_Save.md b/wiki/translations/fr/Std_Save.md index 3059dd89b4..0b46b9e825 100644 --- a/wiki/translations/fr/Std_Save.md +++ b/wiki/translations/fr/Std_Save.md @@ -8,6 +8,8 @@ SeeAlso:[Std Enregistrer sous](Std_SaveAs/fr.md), [Std Enregistrer une copie](Std_SaveCopy.md), [Std Tout enregistrer](Std_SaveAll.md) --- +# Std Save/fr + ## Description La commande **Std Enregistrer** enregistre le document actif. @@ -47,4 +49,7 @@ Pour enregistrer un document, utilisez la méthode `save` de l\'objet document. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Save/fr diff --git a/wiki/translations/fr/Std_SaveAll.md b/wiki/translations/fr/Std_SaveAll.md index 8c233b21a4..6ebdd47c71 100644 --- a/wiki/translations/fr/Std_SaveAll.md +++ b/wiki/translations/fr/Std_SaveAll.md @@ -7,6 +7,8 @@ SeeAlso:[Std Enregistrer](Std_Save/fr.md) --- +# Std SaveAll/fr + ## Description La commande **Std Tout enregistrer** enregistre tous les documents actifs. @@ -39,4 +41,7 @@ Pour enregistrer un document, utilisez la méthode `save` de l\'objet document. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveAll/fr diff --git a/wiki/translations/fr/Std_SaveAs.md b/wiki/translations/fr/Std_SaveAs.md index 120f7c5445..c3d40bdec4 100644 --- a/wiki/translations/fr/Std_SaveAs.md +++ b/wiki/translations/fr/Std_SaveAs.md @@ -7,6 +7,8 @@ SeeAlso:[Std Enregistrer une copie](Std_SaveCopy.md), [Std Enregistrer](Std_Save/fr.md) --- +# Std SaveAs/fr + ## Description La commande **Std Enregistrer sous** enregistre le document actif sous un nouveau nom de fichier. @@ -44,4 +46,7 @@ Pour enregistrer un document sous un nouveau nom, utilisez la méthode `saveAs` {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveAs/fr diff --git a/wiki/translations/fr/Std_SaveCopy.md b/wiki/translations/fr/Std_SaveCopy.md index 5c578dc07e..394fa72d75 100644 --- a/wiki/translations/fr/Std_SaveCopy.md +++ b/wiki/translations/fr/Std_SaveCopy.md @@ -7,6 +7,8 @@ SeeAlso:[Std Enregistrer sous](Std_SaveAs/fr.md), [Std Enregistrer](Std_Save/fr.md) --- +# Std SaveCopy/fr + ## Description La commande **Std Enregistrer une copie** enregistre une copie du document actif sous un nouveau nom de fichier. @@ -56,4 +58,7 @@ doc.saveCopy(fnm) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveCopy/fr diff --git a/wiki/translations/fr/Std_SceneInspector.md b/wiki/translations/fr/Std_SceneInspector.md index b48a8c3d11..aa37d8eac9 100644 --- a/wiki/translations/fr/Std_SceneInspector.md +++ b/wiki/translations/fr/Std_SceneInspector.md @@ -6,6 +6,8 @@ Workbenches:Tous --- +# Std SceneInspector/fr + ## Description La commande **Std Inspecteur de scène‏‎** ouvre une boîte de dialogue affichant une vue d\'ensemble de tous les nœuds de la [Scène graphique](Scenegraph/fr.md) de la [vue 3D](3D_view/fr.md) active. C\'est plus un utilitaire pour les programmeurs que pour les utilisateurs moyens. Il peut être utilisé pour découvrir pourquoi le rendu est lent ou pourquoi quelque chose n\'est pas rendu correctement. @@ -24,4 +26,7 @@ La commande **Std Inspecteur de scène‏‎** ouvre une boîte de dialogue affi {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SceneInspector/fr diff --git a/wiki/translations/fr/Std_SelBack.md b/wiki/translations/fr/Std_SelBack.md index 8d7077a7e6..f6a82baaba 100644 --- a/wiki/translations/fr/Std_SelBack.md +++ b/wiki/translations/fr/Std_SelBack.md @@ -8,6 +8,8 @@ SeeAlso:[Std Lien objet lié](Std_LinkSelectLinked/fr.md), [Std Lien objet lié primaire](Std_LinkSelectLinkedFinal/fr.md), [Std Tous les liens](Std_LinkSelectAllLinks/fr.md), [Std Etablir](Std_SelForward/fr.md) --- +# Std SelBack/fr + ## Description La commande **Std Rétablir** restaure la sélection précédente enregistrée de la [Vue en arborescence](Tree_view/fr.md). Notez que les sélections ne sont enregistrées que si [Enregistrer la sélection](Std_TreeRecordSelection/fr.md) est activé. @@ -28,4 +30,7 @@ La commande **Std Rétablir** restaure la sélection précédente enregistrée d {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelBack/fr diff --git a/wiki/translations/fr/Std_SelBoundingBox.md b/wiki/translations/fr/Std_SelBoundingBox.md index 8cdcf0eb1a..cffc42e079 100644 --- a/wiki/translations/fr/Std_SelBoundingBox.md +++ b/wiki/translations/fr/Std_SelBoundingBox.md @@ -8,6 +8,8 @@ SeeAlso:[Std Style de représentation](Std_DrawStyle/fr.md) --- +# Std SelBoundingBox/fr + ## Description La commande **Std Boîte de délimitation** bascule le mode de surbrillance du cadre de sélection global. Si ce mode est activé, les objets sélectionnés sont marqués dans une [vue 3D](3D_view/fr.md) avec un cadre de sélection en surbrillance même si leur **Selection Style** est défini sur \'Shape\' (Forme). @@ -50,4 +52,7 @@ FreeCADGui.updateCommands() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelBoundingBox/fr diff --git a/wiki/translations/fr/Std_SelForward.md b/wiki/translations/fr/Std_SelForward.md index 85d0ba1512..af62c240b2 100644 --- a/wiki/translations/fr/Std_SelForward.md +++ b/wiki/translations/fr/Std_SelForward.md @@ -8,6 +8,8 @@ SeeAlso:[Std Lien objet lié](Std_LinkSelectLinked/fr.md), [Std Lien objet lié primaire](Std_LinkSelectLinkedFinal/fr.md), [Std Tous les liens](Std_LinkSelectAllLinks/fr.md), [Std Rétablir](Std_SelBack/fr.md) --- +# Std SelForward/fr + ## Description La commande **Std Établir** restaure la sélection suivante enregistrée de la [Vue en arborescence](Tree_view/fr.md). Notez que les sélections ne sont enregistrées que si [Enregistrer la sélection](Std_TreeRecordSelection/fr.md) est activé. @@ -28,4 +30,7 @@ La commande **Std Établir** restaure la sélection suivante enregistrée de la {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelForward/fr diff --git a/wiki/translations/fr/Std_SelectAll.md b/wiki/translations/fr/Std_SelectAll.md index 7e1b3efff6..cd2ce22127 100644 --- a/wiki/translations/fr/Std_SelectAll.md +++ b/wiki/translations/fr/Std_SelectAll.md @@ -7,6 +7,8 @@ SeeAlso:[Sélection par boîte](Std_BoxSelection/fr.md), [Sélection d'éléments](Std_BoxElementSelection/fr.md) --- +# Std SelectAll/fr + ## Description La commande **Std Tout Sélectionner** sélectionne tous les objets dans la [vue en arborescence](tree_view/fr.md). @@ -25,4 +27,7 @@ La commande **Std Tout Sélectionner** sélectionne tous les objets dans la [vue {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelectAll/fr diff --git a/wiki/translations/fr/Std_SelectVisibleObjects.md b/wiki/translations/fr/Std_SelectVisibleObjects.md index fdd1296430..7392644d0d 100644 --- a/wiki/translations/fr/Std_SelectVisibleObjects.md +++ b/wiki/translations/fr/Std_SelectVisibleObjects.md @@ -6,6 +6,8 @@ Workbenches:Tous --- +# Std SelectVisibleObjects/fr + ## Description La commande **Std Sélection objets visibles** sélectionne tous les objets visibles. Notez que pour chaque [PartDesign Corps](PartDesign_Body/fr.md), généralement deux objets seront sélectionnés: le corps lui-même et son objet **Tip**. @@ -20,4 +22,7 @@ La commande **Std Sélection objets visibles** sélectionne tous les objets visi {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelectVisibleObjects/fr diff --git a/wiki/translations/fr/Std_SendToPythonConsole.md b/wiki/translations/fr/Std_SendToPythonConsole.md index 29f2f76c73..ac13388679 100644 --- a/wiki/translations/fr/Std_SendToPythonConsole.md +++ b/wiki/translations/fr/Std_SendToPythonConsole.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Std SendToPythonConsole/fr + ## Description La commande **Std Vers la console Python** crée une variable dans la [console Python](Python_console/fr.md) référençant un objet sélectionné. Si une sous-forme de l\'objet est sélectionnée, deux variables supplémentaires sont créées, l\'une faisant référence à la forme de l\'objet et l\'autre faisant référence à la sous-forme elle-même. Les variables et le code impliqués peuvent être utilisés pour développer du code Python. @@ -35,4 +37,7 @@ La commande **Std Vers la console Python** crée une variable dans la [console P {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SendToPythonConsole/fr diff --git a/wiki/translations/fr/Std_SetAppearance.md b/wiki/translations/fr/Std_SetAppearance.md index f27e9e0d67..44b6c75baa 100644 --- a/wiki/translations/fr/Std_SetAppearance.md +++ b/wiki/translations/fr/Std_SetAppearance.md @@ -8,6 +8,8 @@ SeeAlso:[Part Définir les couleurs](Part_FaceColors/fr.md) --- +# Std SetAppearance/fr + ## Description La commande **Std Apparence** affiche les propriétés d\'affichage du [Panneau des tâches](Task_Panel/fr.md) pour les objets sélectionnés. @@ -54,4 +56,7 @@ La commande **Std Apparence** affiche les propriétés d\'affichage du [Panneau {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SetAppearance/fr diff --git a/wiki/translations/fr/Std_SetColors.md b/wiki/translations/fr/Std_SetColors.md index 23c95fc6e0..6029f34546 100644 --- a/wiki/translations/fr/Std_SetColors.md +++ b/wiki/translations/fr/Std_SetColors.md @@ -1,2 +1,5 @@ # Std SetColors/fr 1. REDIRECT [Part\_FaceColors/fr](Part_FaceColors/fr.md) + +--- +[documentation index](../README.md) > Std SetColors/fr diff --git a/wiki/translations/fr/Std_ShowObjects.md b/wiki/translations/fr/Std_ShowObjects.md index 467519a10b..2cf32986b7 100644 --- a/wiki/translations/fr/Std_ShowObjects.md +++ b/wiki/translations/fr/Std_ShowObjects.md @@ -7,6 +7,8 @@ SeeAlso:[Std Basculer visibilité](Std_ToggleVisibility/fr.md), [Std Afficher la sélection](Std_ShowSelection/fr.md), [Std Masquer la sélection](Std_HideSelection/fr.md), [Std Basculer tous les objets](Std_ToggleObjects/fr.md), [Std Masquer tous les objets](Std_HideObjects/fr.md) --- +# Std ShowObjects/fr + ## Description La commande **Std Afficher les objets** affiche tous les objets appartenant au document actif dans la [vue 3D](3D_view/fr.md). Soyez prudent lorsque vous utilisez cette commande car elle affichera également des sous-éléments du [PartDesign Corps](PartDesign_Body/fr.md) et des objets utilisés par les [Part Opérations booléennes](Part_Boolean/fr.md). Dans la plupart des cas, ceux-ci doivent rester invisibles. @@ -35,4 +37,7 @@ Pour un exemple de script, voir [Std Basculer la visibilité](Std_ToggleVisibili {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ShowObjects/fr diff --git a/wiki/translations/fr/Std_ShowSelection.md b/wiki/translations/fr/Std_ShowSelection.md index 874860426e..3453a695f1 100644 --- a/wiki/translations/fr/Std_ShowSelection.md +++ b/wiki/translations/fr/Std_ShowSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std Basculer la visibilité](Std_ToggleVisibility/fr.md), [Std Masquer la sélection](Std_HideSelection/fr.md), [Std Basculer tous les objets](Std_ToggleObjects/fr.md), [Std Afficher tous les objets](Std_ShowObjects/fr.md), [Std Masquer tous les objets](Std_HideObjects/fr.md) --- +# Std ShowSelection/fr + ## Description La commande **Std Afficher la sélection** masque les objets sélectionnés dans la [Vues 3D](3D_view/fr.md). @@ -44,4 +46,7 @@ Pour un exemple de script, voir [Std Basculer la visibilité](Std_ToggleVisibili {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ShowSelection/fr diff --git a/wiki/translations/fr/Std_TextDocument.md b/wiki/translations/fr/Std_TextDocument.md index 4e294697ab..01780cde23 100644 --- a/wiki/translations/fr/Std_TextDocument.md +++ b/wiki/translations/fr/Std_TextDocument.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Formes à partir de texte](Draft_ShapeString/fr.md), [Draft Texte](Draft_Text.md) --- +# Std TextDocument/fr + ## Description La commande **Std Ajouter un document texte** crée un objet capable de contenir du texte arbitraire. Cet élément peut être utilisé pour écrire des informations générales ou de la documentation sur le modèle. @@ -65,4 +67,7 @@ App.ActiveDocument.recompute() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TextDocument/fr diff --git a/wiki/translations/fr/Std_TextureMapping.md b/wiki/translations/fr/Std_TextureMapping.md index 1159cead9d..6114d34696 100644 --- a/wiki/translations/fr/Std_TextureMapping.md +++ b/wiki/translations/fr/Std_TextureMapping.md @@ -6,6 +6,8 @@ Workbenches:Tous --- +# Std TextureMapping/fr + ## Description La commande **Std Mappage de textures** applique temporairement une texture sur tous les objets dans la [vue 3D](3D_view/fr.md). @@ -26,4 +28,7 @@ La commande **Std Mappage de textures** applique temporairement une texture sur {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TextureMapping/fr diff --git a/wiki/translations/fr/Std_TileWindows.md b/wiki/translations/fr/Std_TileWindows.md index 1a7664deae..d9b9a86d1b 100644 --- a/wiki/translations/fr/Std_TileWindows.md +++ b/wiki/translations/fr/Std_TileWindows.md @@ -7,6 +7,8 @@ SeeAlso:[Std Fenêtre en cascade](Std_CascadeWindows/fr.md) --- +# Std TileWindows/fr + ## Description La commande **Std Mosaïque** réorganise les fenêtres dans la [Zone de vue principale](Main_view_area/fr.md) afin qu\'elles soient toutes visibles et ne se chevauchent pas. Le résultat est déterminé par l\'ordre dans lequel les fenêtres ont été activées pour la dernière fois. @@ -25,4 +27,7 @@ La commande **Std Mosaïque** réorganise les fenêtres dans la [Zone de vue pri {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TileWindows/fr diff --git a/wiki/translations/fr/Std_ToggleBreakpoint.md b/wiki/translations/fr/Std_ToggleBreakpoint.md index ced4209bba..3a9c7d994e 100644 --- a/wiki/translations/fr/Std_ToggleBreakpoint.md +++ b/wiki/translations/fr/Std_ToggleBreakpoint.md @@ -9,6 +9,8 @@ SeeAlso:[Std Passer outre](Std_MacroStepOver/fr.md), [Std Pénétrer dans](Std_MacroStepInto/fr.md), --- +# Std ToggleBreakpoint/fr + ## Description Cette commande ne fonctionne pas pour le moment. @@ -19,4 +21,7 @@ Cette commande ne fonctionne pas pour le moment. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleBreakpoint/fr diff --git a/wiki/translations/fr/Std_ToggleClipPlane.md b/wiki/translations/fr/Std_ToggleClipPlane.md index 749c952278..12ca034801 100644 --- a/wiki/translations/fr/Std_ToggleClipPlane.md +++ b/wiki/translations/fr/Std_ToggleClipPlane.md @@ -6,6 +6,8 @@ Workbenches:Tous --- +# Std ToggleClipPlane/fr + ## Description La commande **Std Basculer le plan de coupe** masque temporairement les objets et parties d\'objets sur un côté de trois plans virtuels maximum dans la [vue 3D](3D_view/fr.md) active. @@ -40,4 +42,7 @@ La commande **Std Basculer le plan de coupe** masque temporairement les objets e {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleClipPlane/fr diff --git a/wiki/translations/fr/Std_ToggleNavigation.md b/wiki/translations/fr/Std_ToggleNavigation.md index ff879ef662..394ffdbbd2 100644 --- a/wiki/translations/fr/Std_ToggleNavigation.md +++ b/wiki/translations/fr/Std_ToggleNavigation.md @@ -7,6 +7,8 @@ Shortcut:**Echap** --- +# Std ToggleNavigation/fr + ## Description La commande **Std Bascule en mode navigation** est destinée à certaines opérations d\'inspection et à certaines opérations d\'édition de maillage interactif. Ces opérations sont assez «coûteuses» et reposent donc sur un mode d\'édition au cours duquel la plupart des options de navigation sont désactivées. Avec cette commande, il est possible de passer temporairement du mode édition au mode navigation et après avoir changé la [vue 3D](3D_view/fr.md) de revenir en mode édition. @@ -49,4 +51,7 @@ Ne confondez pas cette commande avec la commande [Std Mode édition](Std_Edit/fr {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleNavigation/fr diff --git a/wiki/translations/fr/Std_ToggleObjects.md b/wiki/translations/fr/Std_ToggleObjects.md index 1b55bbfb37..9c79b00697 100644 --- a/wiki/translations/fr/Std_ToggleObjects.md +++ b/wiki/translations/fr/Std_ToggleObjects.md @@ -7,6 +7,8 @@ SeeAlso:[Std Basculer visibilité](Std_ToggleVisibility/fr.md), [Std Afficher la sélection](Std_ShowSelection/fr.md), [Std Masquer la sélection](Std_HideSelection/fr.md), [Std Afficher tous les objets](Std_ShowObjects/fr.md), [Std Masquer tous les objets](Std_HideObjects/fr.md) --- +# Std ToggleObjects/fr + ## Description La commande **Std Basculer tous les objets** bascule la visibilité de tous les objets appartenant au document actif dans la [vue 3D](3D_view/fr.md). Soyez prudent lorsque vous utilisez cette commande car elle affichera également des sous-éléments du [PartDesign Corps](PartDesign_Body/fr.md) et des objets utilisés par les [Part Opérations booléennes](Part_Boolean/fr.md). Dans la plupart des cas, ceux-ci doivent rester invisibles. @@ -38,4 +40,7 @@ Pour un exemple de script, voir [Std Basculer la visibilité](Std_ToggleVisibili {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleObjects/fr diff --git a/wiki/translations/fr/Std_ToggleSelectability.md b/wiki/translations/fr/Std_ToggleSelectability.md index 3ef1d369e8..efbd372fe0 100644 --- a/wiki/translations/fr/Std_ToggleSelectability.md +++ b/wiki/translations/fr/Std_ToggleSelectability.md @@ -6,6 +6,8 @@ Workbenches:Tous --- +# Std ToggleSelectability/fr + ## Description La commande **Std Basculer la sélectivité** bascule la sélectionnabilité des objets dans la [Vues 3D](3D_view/fr.md). @@ -49,4 +51,7 @@ else: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleSelectability/fr diff --git a/wiki/translations/fr/Std_ToggleVisibility.md b/wiki/translations/fr/Std_ToggleVisibility.md index 007b31970c..06c1b63a6f 100644 --- a/wiki/translations/fr/Std_ToggleVisibility.md +++ b/wiki/translations/fr/Std_ToggleVisibility.md @@ -8,6 +8,8 @@ SeeAlso:[Std Afficher la sélection](Std_ShowSelection/fr.md), [Std Masquer la sélection](Std_HideSelection/fr.md), [Std Basculer tous les objets](Std_ToggleObjects/fr.md), [Std Afficher tous les objets](Std_ShowObjects/fr.md), [Std Masquer tous les objets](Std_HideObjects/fr.md) --- +# Std ToggleVisibility/fr + ## Description La commande **Std Basculer la visibilité** bascule la visibilité des objets dans la [Vues 3D](3D_view/fr.md). @@ -60,4 +62,7 @@ else: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleVisibility/fr diff --git a/wiki/translations/fr/Std_Tools_Menu.md b/wiki/translations/fr/Std_Tools_Menu.md index c14dcfca3e..a1939a06e6 100644 --- a/wiki/translations/fr/Std_Tools_Menu.md +++ b/wiki/translations/fr/Std_Tools_Menu.md @@ -1,10 +1,4 @@ -# Std Tools Menu/fr - - - - - -Icône de Base +# Icône de Base Std Tools Menu/fr {{TOCright}} @@ -68,3 +62,6 @@ Les outils suivants sont disponibles dans ce menu : }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Tools Menu/fr diff --git a/wiki/translations/fr/Std_Transform.md b/wiki/translations/fr/Std_Transform.md index 8416699a7f..937d52d14c 100644 --- a/wiki/translations/fr/Std_Transform.md +++ b/wiki/translations/fr/Std_Transform.md @@ -1,2 +1,5 @@ # Std Transform/fr 1. REDIRECT [Std\_TransformManip/fr](Std_TransformManip/fr.md) + +--- +[documentation index](../README.md) > Std Transform/fr diff --git a/wiki/translations/fr/Std_TransformManip.md b/wiki/translations/fr/Std_TransformManip.md index 7f3422695c..552acc5364 100644 --- a/wiki/translations/fr/Std_TransformManip.md +++ b/wiki/translations/fr/Std_TransformManip.md @@ -8,6 +8,8 @@ SeeAlso:[Std Base](Std_Base/fr.md) --- +# Std TransformManip/fr + ## Description Cet outil vous permet d\'appliquer des incréments de rotation ou des incréments de traduction à un objet. @@ -35,4 +37,7 @@ Cet outil vous permet d\'appliquer des incréments de rotation ou des incrément {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TransformManip/fr diff --git a/wiki/translations/fr/Std_TreeCollapseDocument.md b/wiki/translations/fr/Std_TreeCollapseDocument.md index e1d3c5ea82..15e0bce822 100644 --- a/wiki/translations/fr/Std_TreeCollapseDocument.md +++ b/wiki/translations/fr/Std_TreeCollapseDocument.md @@ -8,6 +8,8 @@ SeeAlso:[Std Arborescence Document unique](Std_TreeSingleDocument/fr.md), [Std Arborescence Document multiple](Std_TreeMultiDocument/fr.md) --- +# Std TreeCollapseDocument/fr + ## Description La commande **Std Réduire développer** bascule la [vue en arborescence](tree_view/fr.md) du mode document (DocumentMode) au mode réduction document (CollapseDocument). Dans ce mode, l\'activation de la [vue 3D](3D_view/fr.md) d\'un document développera automatiquement ce document dans l\'arborescence et réduira tous les autres documents. Les autres modes sont [Un seul document arborescence](Std_TreeSingleDocument/fr.md) et [Plusieurs documents arborescence](Std_TreeMultiDocument/fr.md). @@ -28,4 +30,7 @@ Le mode de l\'arborescence est enregistré: **Outils → Editer paramètres... {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeCollapseDocument/fr diff --git a/wiki/translations/fr/Std_TreeDrag.md b/wiki/translations/fr/Std_TreeDrag.md index 83e479730f..55df17af15 100644 --- a/wiki/translations/fr/Std_TreeDrag.md +++ b/wiki/translations/fr/Std_TreeDrag.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Std TreeDrag/fr + ## Description La commande **Std Commencer un déplacement** lance une opération de glissement pour les objets sélectionnés dans la [vue en arborescence](tree_view/fr.md). Cette commande est utile lorsque les objets, que vous souhaitez faire glisser et déposer, et le conteneur cible ne sont pas visibles en même temps dans l\'arborescence. @@ -28,4 +30,7 @@ La commande **Std Commencer un déplacement** lance une opération de glissement {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeDrag/fr diff --git a/wiki/translations/fr/Std_TreeMultiDocument.md b/wiki/translations/fr/Std_TreeMultiDocument.md index 69f928a503..7cb0d36e23 100644 --- a/wiki/translations/fr/Std_TreeMultiDocument.md +++ b/wiki/translations/fr/Std_TreeMultiDocument.md @@ -8,6 +8,8 @@ SeeAlso:[Std Arborescence Document unique](Std_TreeSingleDocument/fr.md), [Std Arborescence Réduire développer](Std_TreeCollapseDocument/fr.md) --- +# Std TreeMultiDocument/fr + ## Description La commande **Std Document multiple** bascule la [vue en arborescence](tree_view/fr.md) du mode Document (DocumentMode) au mode Document multiple (MultiDocument). Dans ce mode, tous les documents sont visibles dans l\'arborescence et plusieurs documents peuvent être développés. Les autres modes sont [Document unique](Std_TreeSingleDocument/fr.md) et [Réduire développer](Std_TreeCollapseDocument/fr.md). @@ -28,4 +30,7 @@ Le mode de l\'arborescence est enregistré: **Outils → Editer paramètres... {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeMultiDocument/fr diff --git a/wiki/translations/fr/Std_TreePreSelection.md b/wiki/translations/fr/Std_TreePreSelection.md index 7241737fe3..d27509e3c6 100644 --- a/wiki/translations/fr/Std_TreePreSelection.md +++ b/wiki/translations/fr/Std_TreePreSelection.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Std TreePreSelection/fr + ## Description La commande **Std Pré-sélection** active ou pas le mode Préselection de la [vue en arborescence](tree_view/fr.md). Si ce mode est activé, un objet sur lequel la souris se trouve dans l\'arborescence sera présélectionné (temporairement mis en surbrillance) dans toutes les [vues 3D](3D_view/fr.md) appartenant au document de cet objet. @@ -29,4 +31,7 @@ Le mode de présélection de l\'arborescence peut également être défini dans {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreePreSelection/fr diff --git a/wiki/translations/fr/Std_TreeRecordSelection.md b/wiki/translations/fr/Std_TreeRecordSelection.md index 1f5c30fc6a..d790783bc0 100644 --- a/wiki/translations/fr/Std_TreeRecordSelection.md +++ b/wiki/translations/fr/Std_TreeRecordSelection.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Std TreeRecordSelection/fr + ## Description La commande **Std Enregistrer la sélection** bascule le mode RecordSelection de la [vue en arborescence](tree_view/fr.md). Si ce mode est activé, chaque sélection de l\'arborescence est stockée pour une utilisation future. Avec les boutons **** et ****, vous pouvez avancer et reculer dans ces sélections et les restaurer. @@ -29,4 +31,7 @@ Le mode Enregistrer l\'arborescence peut également être défini dans le [Régl {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeRecordSelection/fr diff --git a/wiki/translations/fr/Std_TreeSelection.md b/wiki/translations/fr/Std_TreeSelection.md index 560b49f60b..237c33178a 100644 --- a/wiki/translations/fr/Std_TreeSelection.md +++ b/wiki/translations/fr/Std_TreeSelection.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Std TreeSelection/fr + ## Description La commande **Std Aller à la sélection** fait défiler la [vue en arborescence](tree_view/fr.md) jusqu\'au premier objet créé dans une sélection [vue 3D](3D_view/fr.md). @@ -29,4 +31,7 @@ Si le mode de la vue en arborescence [Synchroniser la sélection](Std_TreeSyncSe {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSelection/fr diff --git a/wiki/translations/fr/Std_TreeSingleDocument.md b/wiki/translations/fr/Std_TreeSingleDocument.md index 531a2fb80f..f946f56baa 100644 --- a/wiki/translations/fr/Std_TreeSingleDocument.md +++ b/wiki/translations/fr/Std_TreeSingleDocument.md @@ -8,6 +8,8 @@ SeeAlso:[Std Arborescence Document multiple](Std_TreeMultiDocument/fr.md), [Std Arborescence Réduire développer](Std_TreeCollapseDocument/fr.md) --- +# Std TreeSingleDocument/fr + ## Description La commande **Std Document unique** bascule la [vue en arborescence](tree_view/fr.md) du mode Document (DocumentMode) au mode Document unique (SingleDocument). Dans ce mode, un seul document est visible dans l\'arborescence. Les autres modes sont [Arborescence Document multiple](Std_TreeMultiDocument/fr.md) et [Arborescence Réduire développer](Std_TreeCollapseDocument/fr.md). @@ -30,4 +32,7 @@ Le mode de l\'arborescence est enregistré: **Outils → Editer paramètres... {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSingleDocument/fr diff --git a/wiki/translations/fr/Std_TreeSyncPlacement.md b/wiki/translations/fr/Std_TreeSyncPlacement.md index fb709598bd..23d5b3100c 100644 --- a/wiki/translations/fr/Std_TreeSyncPlacement.md +++ b/wiki/translations/fr/Std_TreeSyncPlacement.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Std TreeSyncPlacement/fr + ## Description La commande **Std Synchroniser le placement** bascule la [vue en arborescence](tree_view/fr.md) dans le mode SyncPlacement. Si ce mode est activé, {{PropertyData/fr|Placement}} des objets est automatiquement ajusté lorsqu\'ils sont glissés et déposés d\'un conteneur dans un autre conteneur avec un système de coordonnées différent, en préservant leur placement par rapport au système de coordonnées global. @@ -29,4 +31,7 @@ Le mode Synchronisation placement arborescence est stocké: **Outils → Editer {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSyncPlacement/fr diff --git a/wiki/translations/fr/Std_TreeSyncSelection.md b/wiki/translations/fr/Std_TreeSyncSelection.md index 345457ebc5..1e2f71dc11 100644 --- a/wiki/translations/fr/Std_TreeSyncSelection.md +++ b/wiki/translations/fr/Std_TreeSyncSelection.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Std TreeSyncSelection/fr + ## Description La commande **Std Synchroniser la sélection** bascule le mode SyncSelection de la [vue en arborescence](tree_view/fr.md). Si ce mode est activé, la sélection d\'un objet dans une [vue 3D](3D_view/fr.md) étendra automatiquement l\'arborescence pour afficher cet objet. @@ -29,4 +31,7 @@ Le mode Expansion synchrone de l\'arborescence peut également être défini dan {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSyncSelection/fr diff --git a/wiki/translations/fr/Std_TreeSyncView.md b/wiki/translations/fr/Std_TreeSyncView.md index f448da7cfb..805028c833 100644 --- a/wiki/translations/fr/Std_TreeSyncView.md +++ b/wiki/translations/fr/Std_TreeSyncView.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Std TreeSyncView/fr + ## Description La commande **Std Vue synchronisation** bascule le mode SyncView de la [vue en arborescence](tree_view/fr.md). Si ce mode est activé, la sélection d\'un objet dans un autre document dans l\'arborescence active automatiquement la dernière [vue 3D](3D_view/fr.md) ancrée et utilisée de ce document. @@ -29,4 +31,7 @@ Le mode Synchronisation de vue de l\'arborescence peut également être défini {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSyncView/fr diff --git a/wiki/translations/fr/Std_Undo.md b/wiki/translations/fr/Std_Undo.md index dd2519d887..1c30afc58d 100644 --- a/wiki/translations/fr/Std_Undo.md +++ b/wiki/translations/fr/Std_Undo.md @@ -8,6 +8,8 @@ SeeAlso:[Std Rétablir](Std_Redo/fr.md) --- +# Std Undo/fr + ## Description La commande **Std Annuler** annule la dernière action. @@ -50,4 +52,7 @@ FreeCAD.ActiveDocument.undo() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Undo/fr diff --git a/wiki/translations/fr/Std_UnitsCalculator.md b/wiki/translations/fr/Std_UnitsCalculator.md index 9f87ea50a9..aea44dbb10 100644 --- a/wiki/translations/fr/Std_UnitsCalculator.md +++ b/wiki/translations/fr/Std_UnitsCalculator.md @@ -6,6 +6,8 @@ Workbenches:Tous --- +# Std UnitsCalculator/fr + ## Description La commande **Std Convertisseur d\'unités** ouvre la boîte de dialogue calculatrice d\'unités. Le calculateur d\'unités peut être utilisé pour convertir des valeurs d\'un système d\'unités à un autre. @@ -58,4 +60,7 @@ La commande **Std Convertisseur d\'unités** ouvre la boîte de dialogue calcula {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std UnitsCalculator/fr diff --git a/wiki/translations/fr/Std_ViewBottom.md b/wiki/translations/fr/Std_ViewBottom.md index e0f09aa7de..ef055ee17a 100644 --- a/wiki/translations/fr/Std_ViewBottom.md +++ b/wiki/translations/fr/Std_ViewBottom.md @@ -8,6 +8,8 @@ SeeAlso:[Std Vue de l'arrière](Std_ViewRear/fr.md), [Std Vue gauche](Std_ViewLeft/fr.md) --- +# Std ViewBottom/fr + ## Description La **Std Vue de dessous** place la caméra dans la [vue 3D](3D_view/fr.md) dans la direction de l\'axe des Z positifs. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewBottom/fr diff --git a/wiki/translations/fr/Std_ViewBoxZoom.md b/wiki/translations/fr/Std_ViewBoxZoom.md index 1a3dc7e7af..cd29f58ee3 100644 --- a/wiki/translations/fr/Std_ViewBoxZoom.md +++ b/wiki/translations/fr/Std_ViewBoxZoom.md @@ -8,6 +8,8 @@ SeeAlso:[Std Zoom avant](Std_ViewZoomIn/fr.md), [Std Zoom arrière](Std_ViewZoomOut/fr.md) --- +# Std ViewBoxZoom/fr + ## Description La commande **Std Zoom fenêtre** effectue un zoom avant sur une zone rectangulaire définie par l\'utilisateur, une boîte, dans la [vue 3D](3D_view/fr.md) active. @@ -25,4 +27,7 @@ La commande **Std Zoom fenêtre** effectue un zoom avant sur une zone rectangula {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewBoxZoom/fr diff --git a/wiki/translations/fr/Std_ViewCreate.md b/wiki/translations/fr/Std_ViewCreate.md index d0fb700a72..92bd6f6227 100644 --- a/wiki/translations/fr/Std_ViewCreate.md +++ b/wiki/translations/fr/Std_ViewCreate.md @@ -7,6 +7,8 @@ SeeAlso:[Std Fenêtre du document](Std_ViewDockUndockFullscreen/fr.md), [Std Plein écran](Std_ViewFullscreen/fr.md) --- +# Std ViewCreate/fr + ## Description La commande **Std Créer une nouvelle vue‏‎** crée une nouvelle [vue 3D](3D_view/fr.md) pour le document actif. Des vues 3D supplémentaires peuvent être utiles si vous souhaitez inspecter le modèle dans plusieurs directions ou à différents niveaux de zoom. @@ -27,4 +29,7 @@ La commande **Std Créer une nouvelle vue‏‎** crée une nouvelle [vue 3D](3D {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewCreate/fr diff --git a/wiki/translations/fr/Std_ViewDimetric.md b/wiki/translations/fr/Std_ViewDimetric.md index 5827b6db06..45665bdd5b 100644 --- a/wiki/translations/fr/Std_ViewDimetric.md +++ b/wiki/translations/fr/Std_ViewDimetric.md @@ -7,6 +7,8 @@ SeeAlso:[Std Vue isométrique](Std_ViewIsometric/fr.md), [Std Vue trimétrique](Std_ViewTrimetric/fr.md) --- +# Std ViewDimetric/fr + ## Description La commande **Std Vue dimétrique** réaligne la caméra dans la [vue 3D](3D_view/fr.md) active pour obtenir une vue [dimetrique](https://en.wikipedia.org/wiki/Axonometric_projection#Three_types). Pour une vue vraiment dimétrique, la vue 3D doit être en [mode orthographique](Std_OrthographicCamera/fr.md) mais la commande fonctionne également si la vue est en [mode perspective](Std_PerspectiveCamera/fr.md). @@ -40,4 +42,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewDimetric/fr diff --git a/wiki/translations/fr/Std_ViewDockUndockFullscreen.md b/wiki/translations/fr/Std_ViewDockUndockFullscreen.md index 8a7c73dd64..7ce4c46fba 100644 --- a/wiki/translations/fr/Std_ViewDockUndockFullscreen.md +++ b/wiki/translations/fr/Std_ViewDockUndockFullscreen.md @@ -9,6 +9,8 @@ SeeAlso:[Std Plein écran](Std_ViewFullscreen/fr.md), [Std Plein écran principal](Std_MainFullscreen/fr.md) --- +# Std ViewDockUndockFullscreen/fr + ## Introduction La [Vues 3D](3D_view/fr.md) peut être déconnecté de l\'[interface de FreeCAD](Interface/fr.md) principale et déplacée vers un affichage différent par exemple. @@ -54,4 +56,7 @@ L\'option de menu **Undocked** sépare la [vue 3D](3D_view/fr.md) active de l\'i {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewDockUndockFullscreen/fr diff --git a/wiki/translations/fr/Std_ViewFitAll.md b/wiki/translations/fr/Std_ViewFitAll.md index 14812f9223..da1656f1b4 100644 --- a/wiki/translations/fr/Std_ViewFitAll.md +++ b/wiki/translations/fr/Std_ViewFitAll.md @@ -8,6 +8,8 @@ SeeAlso:[Std Affichage de la sélection](Std_ViewFitSelection/fr.md) --- +# Std ViewFitAll/fr + ## Description La commande **Std Tout afficher** effectue un zoom et un panoramique afin que tous les objets visibles tiennent dans la [vue 3D](3D_view/fr.md) active. @@ -55,4 +57,7 @@ FreeCADGui.SendMsgToActiveView('ViewFit') {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFitAll/fr diff --git a/wiki/translations/fr/Std_ViewFitSelection.md b/wiki/translations/fr/Std_ViewFitSelection.md index d98070e089..e0d83af1f0 100644 --- a/wiki/translations/fr/Std_ViewFitSelection.md +++ b/wiki/translations/fr/Std_ViewFitSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Std Tout afficher](Std_ViewFitAll/fr.md) --- +# Std ViewFitSelection/fr + ## Description La commande **Std Affiche la sélection** effectue un zoom et un panoramique sur la vue de sorte que tous les objets sélectionnés tiennent à l\'intérieur de la [vue 3D](3D_view/fr.md) active. @@ -43,4 +45,7 @@ FreeCADGui.SendMsgToActiveView('ViewSelection') {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFitSelection/fr diff --git a/wiki/translations/fr/Std_ViewFront.md b/wiki/translations/fr/Std_ViewFront.md index c968b74dbf..cafb66af29 100644 --- a/wiki/translations/fr/Std_ViewFront.md +++ b/wiki/translations/fr/Std_ViewFront.md @@ -8,6 +8,8 @@ SeeAlso:[Std Vue de dessus](Std_ViewTop/fr.md), [Std Vue droite](Std_ViewRight/fr.md) --- +# Std ViewFront/fr + ## Description La **Std Vue de face** place la caméra dans la [vue 3D](3D_view/fr.md) dans la direction de l\'axe des Y positifs. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFront/fr diff --git a/wiki/translations/fr/Std_ViewFullscreen.md b/wiki/translations/fr/Std_ViewFullscreen.md index ae818cf39d..167d5926cb 100644 --- a/wiki/translations/fr/Std_ViewFullscreen.md +++ b/wiki/translations/fr/Std_ViewFullscreen.md @@ -8,6 +8,8 @@ SeeAlso:[Std Fenêtre document plein écran](Std_ViewDockUndockFullscreen/fr.md), [Std Plein écran principal](Std_MainFullscreen/fr.md) --- +# Std ViewFullscreen/fr + ## Description La commande **Std Plein écran** bascule la [vue 3D](3D_view/fr.md) vers et depuis le mode plein écran. Les vues 3D sont automatiquement [détachée](Std_ViewDockUndockFullscreen/fr.md) dans le mode plein écran. @@ -31,4 +33,7 @@ La commande **Std Plein écran** bascule la [vue 3D](3D_view/fr.md) vers et depu {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFullscreen/fr diff --git a/wiki/translations/fr/Std_ViewHome.md b/wiki/translations/fr/Std_ViewHome.md index 5c1c1e3f2c..b52c6df47c 100644 --- a/wiki/translations/fr/Std_ViewHome.md +++ b/wiki/translations/fr/Std_ViewHome.md @@ -9,6 +9,8 @@ SeeAlso:[Std Tout afficher](Std_ViewFitAll/fr.md) --- +# Std ViewHome/fr + ## Description La commande **Std Accueil** change la caméra dans la [vue 3D](3D_view/fr.md) selon l\'orientation par défaut de la caméra. Elle combine les fonctionnalités des commandes [Std Vue de dessus](Std_ViewTop/fr.md) et [Std Tout afficher](Std_ViewFitAll/fr.md). @@ -30,4 +32,7 @@ La commande **Std Accueil** change la caméra dans la [vue 3D](3D_view/fr.md) se {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewHome/fr diff --git a/wiki/translations/fr/Std_ViewIsometric.md b/wiki/translations/fr/Std_ViewIsometric.md index bd99a1bc43..6f5d70dd81 100644 --- a/wiki/translations/fr/Std_ViewIsometric.md +++ b/wiki/translations/fr/Std_ViewIsometric.md @@ -8,6 +8,8 @@ SeeAlso:[Std Vue orthographique](Std_OrthographicCamera/fr.md), [Std Vue dimétrique](Std_ViewDimetric/fr.md), [Std Vue trimétrique](Std_ViewTrimetric/fr.md) --- +# Std ViewIsometric/fr + ## Description La commande **Std Vue isométrique** réaligne la caméra dans la [vue 3D](3D_view/fr.md) active pour obtenir une vue [isométrique](https://fr.wikipedia.org/wiki/Perspective_isom%C3%A9trique). Pour une vue vraiment isométrique, la vue 3D doit être en [mode orthographique](Std_OrthographicCamera/fr.md) mais la commande fonctionne également si la vue est en [mode perspective](Std_PerspectiveCamera/fr.md). @@ -49,4 +51,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIsometric/fr diff --git a/wiki/translations/fr/Std_ViewIvIssueCamPos.md b/wiki/translations/fr/Std_ViewIvIssueCamPos.md index 30554067af..544133ebe1 100644 --- a/wiki/translations/fr/Std_ViewIvIssueCamPos.md +++ b/wiki/translations/fr/Std_ViewIvIssueCamPos.md @@ -7,6 +7,8 @@ Workbenches:[Std Figer l'affichage](Std_FreezeViews/fr.md) --- +# Std ViewIvIssueCamPos/fr + ## Description La commande **Std Position de la caméra** affiche les paramètres de la caméra de la [vue 3D](3D_view/fr.md) active dans la [Vue rapport](Report_view/fr.md) et la [console Python](Python_console/fr.md). @@ -48,4 +50,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCamera() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvIssueCamPos/fr diff --git a/wiki/translations/fr/Std_ViewIvStereoInterleavedColumns.md b/wiki/translations/fr/Std_ViewIvStereoInterleavedColumns.md index 954e4c1212..b7e64dcc4f 100644 --- a/wiki/translations/fr/Std_ViewIvStereoInterleavedColumns.md +++ b/wiki/translations/fr/Std_ViewIvStereoInterleavedColumns.md @@ -7,6 +7,8 @@ SeeAlso:[Std Stéréo rouge cyan](Std_ViewIvStereoRedGreen/fr.md), [Std Tampon stéréo quadruple](Std_ViewIvStereoQuadBuff/fr.md), [Std Lignes stéréo entrelacées](Std_ViewIvStereoInterleavedRows/fr.md), [Std Stéréo désactivée](Std_ViewIvStereoOff/fr.md) --- +# Std ViewIvStereoInterleavedColumns/fr + ## Description La commande **Std Colonnes stéréo entrelacées** change le mode actif de la [vue 3D](3D_view/fr.md) en mode d\'affichage stéréo des colonnes entrelacées. Pour utiliser ce mode stéréo, une carte graphique spéciale, un écran spécial et des lunettes [avec verres polarisés](https://en.wikipedia.org/wiki/Polarized_3D_system) sont nécessaires. @@ -42,4 +44,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoInterleavedColumns/fr diff --git a/wiki/translations/fr/Std_ViewIvStereoInterleavedRows.md b/wiki/translations/fr/Std_ViewIvStereoInterleavedRows.md index b37c91b348..9bdf5c2255 100644 --- a/wiki/translations/fr/Std_ViewIvStereoInterleavedRows.md +++ b/wiki/translations/fr/Std_ViewIvStereoInterleavedRows.md @@ -7,6 +7,8 @@ SeeAlso:[Std Stéréo rouge cyan](Std_ViewIvStereoRedGreen/fr.md), [Std Tampon stéréo quadruple](Std_ViewIvStereoQuadBuff/fr.md), [Std Colonnes stéréo entrelacées](Std_ViewIvStereoInterleavedColumns/fr.md), [Std Stéréo désactivée](Std_ViewIvStereoOff/fr.md) --- +# Std ViewIvStereoInterleavedRows/fr + ## Description La commande **Std Lignes stéréo entrelacées** change le mode actif de la [vue 3D](3D_view/fr.md) en mode d\'affichage stéréo des lignes entrelacées. Pour utiliser ce mode stéréo, une carte graphique spéciale, un écran spécial et des lunettes [avec verres polarisés](https://en.wikipedia.org/wiki/Polarized_3D_system) sont nécessaires. @@ -42,4 +44,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoInterleavedRows/fr diff --git a/wiki/translations/fr/Std_ViewIvStereoOff.md b/wiki/translations/fr/Std_ViewIvStereoOff.md index cdd93d2d6f..6b6b549550 100644 --- a/wiki/translations/fr/Std_ViewIvStereoOff.md +++ b/wiki/translations/fr/Std_ViewIvStereoOff.md @@ -7,6 +7,8 @@ SeeAlso:[Std Stéréo rouge cyan](Std_ViewIvStereoRedGreen/fr.md), [Std Tampon stéréo quadruple](Std_ViewIvStereoQuadBuff/fr.md), [Std Lignes stéréo entrelacées](Std_ViewIvStereoInterleavedRows/fr.md), [Std Colonnes stéréo entrelacées](Std_ViewIvStereoInterleavedColumns/fr.md) --- +# Std ViewIvStereoOff/fr + ## Description La commande **Std Stéréo désactivée** désactive le mode stéréo dans la [vue 3D](3D_view/fr.md) active. @@ -38,4 +40,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoOff/fr diff --git a/wiki/translations/fr/Std_ViewIvStereoQuadBuff.md b/wiki/translations/fr/Std_ViewIvStereoQuadBuff.md index 65f565efff..947e1fcbd4 100644 --- a/wiki/translations/fr/Std_ViewIvStereoQuadBuff.md +++ b/wiki/translations/fr/Std_ViewIvStereoQuadBuff.md @@ -7,6 +7,8 @@ SeeAlso:[Std Stéréo rouge cyan](Std_ViewIvStereoRedGreen/fr.md), [Std Lignes stéréo entrelacées](Std_ViewIvStereoInterleavedRows/fr.md), [Std Colonnes stéréo entrelacées](Std_ViewIvStereoInterleavedColumns/fr.md), [Std Stéréo désactivée](Std_ViewIvStereoOff/fr.md) --- +# Std ViewIvStereoQuadBuff/fr + ## Description La commande **Std Tampon stéréo quadruple** change le mode actif de la [vue 3D](3D_view/fr.md) en mode de visualisation stéréo à quadruple tampon. Pour utiliser ce mode stéréo, une carte graphique spéciale, un écran spécial et des lunettes [avec verres polarisés](https://en.wikipedia.org/wiki/Polarized_3D_system) sont nécessaires. @@ -42,4 +44,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoQuadBuff/fr diff --git a/wiki/translations/fr/Std_ViewIvStereoRedGreen.md b/wiki/translations/fr/Std_ViewIvStereoRedGreen.md index d3c8251950..7d6f4c044e 100644 --- a/wiki/translations/fr/Std_ViewIvStereoRedGreen.md +++ b/wiki/translations/fr/Std_ViewIvStereoRedGreen.md @@ -7,6 +7,8 @@ SeeAlso:[Std Tampon stéréo quadruple](Std_ViewIvStereoQuadBuff/fr.md), [Std Lignes stéréo entrelacées](Std_ViewIvStereoInterleavedRows/fr.md), [Std Colonnes stéréo entrelacées](Std_ViewIvStereoInterleavedColumns/fr.md), [Std Stéréo désactivée](Std_ViewIvStereoOff/fr.md) --- +# Std ViewIvStereoRedGreen/fr + ## Description La commande **Std Stéréo rouge cyan** change la [vue 3D](3D_view/fr.md) active en rouge/cyan, [Anaglyphe](https://fr.wikipedia.org/wiki/Anaglyphe), mode d\'affichage stéréo. Pour utiliser ce mode stéréo, des lunettes avec des lentilles colorées sont nécessaires. @@ -42,4 +44,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoRedGreen/fr diff --git a/wiki/translations/fr/Std_ViewLeft.md b/wiki/translations/fr/Std_ViewLeft.md index bee93a9ad9..06656d683b 100644 --- a/wiki/translations/fr/Std_ViewLeft.md +++ b/wiki/translations/fr/Std_ViewLeft.md @@ -8,6 +8,8 @@ SeeAlso:[Std Vue arrière](Std_ViewRear/fr.md), [Std Vue de dessous](Std_ViewBottom/fr.md) --- +# Std ViewLeft/fr + ## Description La **Std Vue de gauche** place la caméra dans la [vue 3D](3D_view/fr.md) dans la direction de l\'axe des X positifs. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewLeft/fr diff --git a/wiki/translations/fr/Std_ViewRear.md b/wiki/translations/fr/Std_ViewRear.md index 00adbcac7a..0f5075bb29 100644 --- a/wiki/translations/fr/Std_ViewRear.md +++ b/wiki/translations/fr/Std_ViewRear.md @@ -8,6 +8,8 @@ SeeAlso:[Std Vue de dessous](Std_ViewBottom/fr.md), [Std Vue de gauche](Std_ViewLeft/fr.md) --- +# Std ViewRear/fr + ## Description La **Std Vue de l\'arrière** place la caméra dans la [vue 3D](3D_view/fr.md) dans la direction de l\'axe des Y négatifs. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRear/fr diff --git a/wiki/translations/fr/Std_ViewRight.md b/wiki/translations/fr/Std_ViewRight.md index 59acfaf475..fc66bbeee5 100644 --- a/wiki/translations/fr/Std_ViewRight.md +++ b/wiki/translations/fr/Std_ViewRight.md @@ -8,6 +8,8 @@ SeeAlso:[Std Vue de face](Std_ViewFront/fr.md), [Std Vue de dessus](Std_ViewTop/fr.md) --- +# Std ViewRight/fr + ## Description La **Std Vue de droite** place la caméra dans la [vue 3D](3D_view/fr.md) dans la direction de l\'axe des X négatifs. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRight/fr diff --git a/wiki/translations/fr/Std_ViewRotateLeft.md b/wiki/translations/fr/Std_ViewRotateLeft.md index 61d605fe81..d1c86b11c5 100644 --- a/wiki/translations/fr/Std_ViewRotateLeft.md +++ b/wiki/translations/fr/Std_ViewRotateLeft.md @@ -8,6 +8,8 @@ SeeAlso:[Std Rotation à droite](Std_ViewRotateRight/fr.md) --- +# Std ViewRotateLeft/fr + ## Description La commande **Std Rotation à gauche** fait pivoter la caméra dans la [vue 3D](3D_view/fr.md) active dans la direction de la vue par incréments de 90 degrés vers la gauche (dans le sens antihoraire). @@ -42,4 +44,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRotateLeft/fr diff --git a/wiki/translations/fr/Std_ViewRotateRight.md b/wiki/translations/fr/Std_ViewRotateRight.md index 66881c42ff..b6e03dd2be 100644 --- a/wiki/translations/fr/Std_ViewRotateRight.md +++ b/wiki/translations/fr/Std_ViewRotateRight.md @@ -8,6 +8,8 @@ SeeAlso:[Std Rotation à gauche](Std_ViewRotateLeft/fr.md) --- +# Std ViewRotateRight/fr + ## Description La commande **Std Rotation à droite** fait pivoter la caméra dans la [vue 3D](3D_view/fr.md) active dans la direction de la vue par incréments de 90 degrés vers la droite (dans le sens horaire). @@ -42,4 +44,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRotateRight/fr diff --git a/wiki/translations/fr/Std_ViewScreenShot.md b/wiki/translations/fr/Std_ViewScreenShot.md index 50eef267d5..816410c404 100644 --- a/wiki/translations/fr/Std_ViewScreenShot.md +++ b/wiki/translations/fr/Std_ViewScreenShot.md @@ -7,6 +7,8 @@ SeeAlso: SeeAlso:[Std Imprimer](Std_Print/fr.md), [Std Exporter au format PDF](Std_PrintPdf/fr.md) --- +# Std ViewScreenShot/fr + ## Description La commande **Std Capture d\'écran** ouvre une boîte de dialogue pour créer un fichier image, une capture d\'écran, à partir de la [vue 3D](3D_view/fr.md) active. @@ -124,4 +126,7 @@ App.closeDocument(App.ActiveDocument.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewScreenShot/fr diff --git a/wiki/translations/fr/Std_ViewStatusBar.md b/wiki/translations/fr/Std_ViewStatusBar.md index 54b7fc8c1f..4f78a77677 100644 --- a/wiki/translations/fr/Std_ViewStatusBar.md +++ b/wiki/translations/fr/Std_ViewStatusBar.md @@ -7,6 +7,8 @@ Workbenches:Tous --- +# Std ViewStatusBar/fr + ## Description La commande **Std Barre d\'état** bascule l\'affichage de la [Barre d\'état](Status_bar/fr.md). @@ -21,4 +23,7 @@ La commande **Std Barre d\'état** bascule l\'affichage de la [Barre d\'état](S {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewStatusBar/fr diff --git a/wiki/translations/fr/Std_ViewTop.md b/wiki/translations/fr/Std_ViewTop.md index e336509224..09e1eb3147 100644 --- a/wiki/translations/fr/Std_ViewTop.md +++ b/wiki/translations/fr/Std_ViewTop.md @@ -8,6 +8,8 @@ SeeAlso:[Std Vue de face](Std_ViewFront/fr.md), [Std Vue droite](Std_ViewRight/fr.md) --- +# Std ViewTop/fr + ## Description La **Std Vue de dessus** place la caméra dans la [vue 3D](3D_view/fr.md) dans la direction de l\'axe des Z négatifs. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewTop/fr diff --git a/wiki/translations/fr/Std_ViewTrimetric.md b/wiki/translations/fr/Std_ViewTrimetric.md index b31ac40e68..090c35427b 100644 --- a/wiki/translations/fr/Std_ViewTrimetric.md +++ b/wiki/translations/fr/Std_ViewTrimetric.md @@ -7,6 +7,8 @@ SeeAlso:[Std Vue isométrique](Std_ViewIsometric/fr.md), [Std Vue dimétrique](Std_ViewDimetric/fr.md) --- +# Std ViewTrimetric/fr + ## Description La commande **Std Vue trimétrique** réaligne la caméra dans la [vue 3D](3D_view/fr.md) active pour obtenir une vue [trimétrique](https://en.wikipedia.org/wiki/Axonometric_projection#Three_types). Pour une vue vraiment dimétrique, la vue 3D doit être en [mode orthographique](Std_OrthographicCamera/fr.md) mais la commande fonctionne également si la vue est en [mode perspective](Std_PerspectiveCamera/fr.md). @@ -40,4 +42,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewTrimetric/fr diff --git a/wiki/translations/fr/Std_ViewZoomIn.md b/wiki/translations/fr/Std_ViewZoomIn.md index 90dfeefbc3..e33c121c56 100644 --- a/wiki/translations/fr/Std_ViewZoomIn.md +++ b/wiki/translations/fr/Std_ViewZoomIn.md @@ -8,6 +8,8 @@ SeeAlso:[Std Zoom arrière](Std_ViewZoomOut/fr.md), [Std Zoom de sélection](Std_ViewBoxZoom/fr.md) --- +# Std ViewZoomIn/fr + ## Description La commande **Std Zoom avant** effectue un zoom avant dans la [vue 3D](3D_view/fr.md) active. @@ -48,4 +50,7 @@ FreeCADGui.ActiveDocument.ActiveView.zoomIn() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewZoomIn/fr diff --git a/wiki/translations/fr/Std_ViewZoomOut.md b/wiki/translations/fr/Std_ViewZoomOut.md index de4eb7bee1..ab59180b15 100644 --- a/wiki/translations/fr/Std_ViewZoomOut.md +++ b/wiki/translations/fr/Std_ViewZoomOut.md @@ -8,6 +8,8 @@ SeeAlso:[Std Zoom avant](Std_ViewZoomIn/fr.md), [Std Zoom de sélection](Std_ViewBoxZoom/fr.md) --- +# Std ViewZoomOut/fr + ## Description La commande **Std Zoom arrière** effectue un zoom arrière dans la [vue 3D](3D_view/fr.md) active. @@ -48,4 +50,7 @@ FreeCADGui.ActiveDocument.ActiveView.zoomOut() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewZoomOut/fr diff --git a/wiki/translations/fr/Std_View_Menu.md b/wiki/translations/fr/Std_View_Menu.md index cc495d647a..39ae7d9136 100644 --- a/wiki/translations/fr/Std_View_Menu.md +++ b/wiki/translations/fr/Std_View_Menu.md @@ -1,10 +1,4 @@ -# Std View Menu/fr - - - - - -Icône de Base +# Icône de Base Std View Menu/fr {{TOCright}} @@ -165,3 +159,6 @@ Les outils suivants sont disponibles dans ce menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std View Menu/fr diff --git a/wiki/translations/fr/Std_WhatsThis.md b/wiki/translations/fr/Std_WhatsThis.md index 8a6a1eddfd..9ef9f7f6a9 100644 --- a/wiki/translations/fr/Std_WhatsThis.md +++ b/wiki/translations/fr/Std_WhatsThis.md @@ -8,6 +8,8 @@ SeeAlso:[Std Aide](Std_OnlineHelp/fr.md) --- +# Std WhatsThis/fr + ## Description La commande **Std Qu\'est-ce que c\'est?** ouvre la documentation d\'aide pour une commande spécifiée. @@ -37,4 +39,7 @@ Lisez cet article pour comprendre comment les commandes doivent être nommées d {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std WhatsThis/fr diff --git a/wiki/translations/fr/Std_Windows.md b/wiki/translations/fr/Std_Windows.md index a60347d1b7..a36ddadbf2 100644 --- a/wiki/translations/fr/Std_Windows.md +++ b/wiki/translations/fr/Std_Windows.md @@ -7,6 +7,8 @@ SeeAlso:[Std Suivante](Std_ActivateNextWindow/fr.md), [Std Précédente](Std_ActivatePrevWindow/fr.md) --- +# Std Windows/fr + ## Description La commande **Std Fenêtres** ouvre une boîte de dialogue avec une liste de fenêtres [Zone d\'affichage principale](Main_view_area/fr.md). Dans cette liste, une fenêtre sélectionnée peut être activée. @@ -37,4 +39,7 @@ La commande **Std Fenêtres** ouvre une boîte de dialogue avec une liste de fen {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Windows/fr diff --git a/wiki/translations/fr/Std_Windows_Menu.md b/wiki/translations/fr/Std_Windows_Menu.md index b4c1e0714a..93e7020b45 100644 --- a/wiki/translations/fr/Std_Windows_Menu.md +++ b/wiki/translations/fr/Std_Windows_Menu.md @@ -1,10 +1,4 @@ -# Std Windows Menu/fr - - - - - -Icône de Base +# Icône de Base Std Windows Menu/fr {{TOCright}} @@ -58,3 +52,6 @@ Les outils suivants sont disponibles dans ce menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Windows Menu/fr diff --git a/wiki/translations/fr/Std_Workbench.md b/wiki/translations/fr/Std_Workbench.md index 3f7008129a..0fe35728a4 100644 --- a/wiki/translations/fr/Std_Workbench.md +++ b/wiki/translations/fr/Std_Workbench.md @@ -7,6 +7,8 @@ Workbenches:[Ateliers](Workbenches/fr.md) --- +# Std Workbench/fr + ## Description La commande **Std Atelier** active l\'un des [ateliers](Workbenches/fr.md) sélectionné y compris son interface utilisateur graphique (GUI). @@ -50,4 +52,7 @@ FreeCADGui.activateWorkbench("PartDesignWorkbench") {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Std Workbench/fr diff --git a/wiki/translations/fr/Surface_CurveOnMesh.md b/wiki/translations/fr/Surface_CurveOnMesh.md index 28754940d1..9f68497a8e 100644 --- a/wiki/translations/fr/Surface_CurveOnMesh.md +++ b/wiki/translations/fr/Surface_CurveOnMesh.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Surface CurveOnMesh/fr + ## Description @@ -87,4 +89,7 @@ Outre les propriétés décrites dans [Part Feature](Part_Feature/fr.md), Part S {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface CurveOnMesh/fr diff --git a/wiki/translations/fr/Surface_ExtendFace.md b/wiki/translations/fr/Surface_ExtendFace.md index d24ce1f63f..2ccb540dcb 100644 --- a/wiki/translations/fr/Surface_ExtendFace.md +++ b/wiki/translations/fr/Surface_ExtendFace.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Surface ExtendFace/fr + ## Description @@ -127,4 +129,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface ExtendFace/fr diff --git a/wiki/translations/fr/Surface_Filling.md b/wiki/translations/fr/Surface_Filling.md index 2aad3846ea..9b39c6e310 100644 --- a/wiki/translations/fr/Surface_Filling.md +++ b/wiki/translations/fr/Surface_Filling.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Surface Filling/fr + ## Description @@ -195,4 +197,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Filling/fr diff --git a/wiki/translations/fr/Surface_GeomFillSurface.md b/wiki/translations/fr/Surface_GeomFillSurface.md index 78380602f4..7a59a57dca 100644 --- a/wiki/translations/fr/Surface_GeomFillSurface.md +++ b/wiki/translations/fr/Surface_GeomFillSurface.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Surface GeomFillSurface/fr + ## Description @@ -146,4 +148,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface GeomFillSurface/fr diff --git a/wiki/translations/fr/Surface_Module.md b/wiki/translations/fr/Surface_Module.md index 0e432312c1..1e473a5d1f 100644 --- a/wiki/translations/fr/Surface_Module.md +++ b/wiki/translations/fr/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/fr 1. REDIRECT [Surface\_Workbench/fr](Surface_Workbench/fr.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/fr diff --git a/wiki/translations/fr/Surface_Sections.md b/wiki/translations/fr/Surface_Sections.md index 4a2d6d046e..0b00d18d99 100644 --- a/wiki/translations/fr/Surface_Sections.md +++ b/wiki/translations/fr/Surface_Sections.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Surface Sections/fr + ## Description @@ -116,4 +118,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Sections/fr diff --git a/wiki/translations/fr/Surface_Workbench.md b/wiki/translations/fr/Surface_Workbench.md index db462f3a1d..ab118bd034 100644 --- a/wiki/translations/fr/Surface_Workbench.md +++ b/wiki/translations/fr/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/fr - - - - - -Icône de l\'atelier Surface +# Icône de l\'atelier Surface Surface Workbench/fr {{TOCright}} @@ -57,3 +51,6 @@ La surface générée ne peut pas être placée dans un ** Surface Workbench/fr diff --git a/wiki/translations/fr/Svg_Namespace.md b/wiki/translations/fr/Svg_Namespace.md index c2e4a7c122..e9415b2356 100644 --- a/wiki/translations/fr/Svg_Namespace.md +++ b/wiki/translations/fr/Svg_Namespace.md @@ -1,7 +1,4 @@ # Svg Namespace/fr - - - **Le développement de l'[atelier Mise en plan](Drawing_Workbench/fr.md) s'est arrêté, et un nouvel atelier [Techdraw](TechDraw_Workbench/fr.md) visant à le remplacer sera introduit dans la version 0.17. Les deux ateliers seront fournis dans la version v0.17, mais l'atelier Mise en plan peut être supprimé dans les versions ultérieures.** @@ -225,3 +222,6 @@ Voir [Drawing Modèles](Drawing_templates/fr.md) }} [Category:Poweruser\_Documentation](Category:Poweruser_Documentation.md) [Category:Developer](Category:Developer.md) [Category:Python\_Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Poweruser_Documentation](Category:Poweruser_Documentation.md) > Svg Namespace/fr diff --git a/wiki/translations/fr/SweetHome3D.md b/wiki/translations/fr/SweetHome3D.md index 97c89ffd20..cc19bda09b 100644 --- a/wiki/translations/fr/SweetHome3D.md +++ b/wiki/translations/fr/SweetHome3D.md @@ -1,5 +1,5 @@ # SweetHome3D/fr - ![](images/SweetHome3DLogo.png ) +![](images/SweetHome3DLogo.png ) ## A propos @@ -16,3 +16,6 @@ [Category:3rd Party](Category:3rd_Party.md) [Category:Arch](Category:Arch.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > SweetHome3D/fr diff --git a/wiki/translations/fr/Symbols_Library_Workbench.md b/wiki/translations/fr/Symbols_Library_Workbench.md index fa3ee0c74e..9a0a101ad3 100644 --- a/wiki/translations/fr/Symbols_Library_Workbench.md +++ b/wiki/translations/fr/Symbols_Library_Workbench.md @@ -1,6 +1,4 @@ # Symbols Library Workbench/fr - - ## Introduction @@ -51,3 +49,6 @@ La bibliothèque est un simple conteneur pour les fichiers SVG. Vous pouvez le t [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Symbols Library Workbench/fr diff --git a/wiki/translations/fr/Task_Panel.md b/wiki/translations/fr/Task_Panel.md index da5f468417..35cd64dfad 100644 --- a/wiki/translations/fr/Task_Panel.md +++ b/wiki/translations/fr/Task_Panel.md @@ -1,2 +1,5 @@ # Task Panel/fr 1. REDIRECT [Task panel/fr](Task_panel/fr.md) + +--- +[documentation index](../README.md) > Task Panel/fr diff --git a/wiki/translations/fr/Task_panel.md b/wiki/translations/fr/Task_panel.md index f3e5e6d210..d69d980402 100644 --- a/wiki/translations/fr/Task_panel.md +++ b/wiki/translations/fr/Task_panel.md @@ -1,5 +1,5 @@ # Task panel/fr - {{TOCright}} +{{TOCright}} ## Introduction @@ -54,4 +54,7 @@ Gui::Control().closeDialog(); {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Task panel/fr diff --git a/wiki/translations/fr/Tasks_Placement.md b/wiki/translations/fr/Tasks_Placement.md index c5c6d957d1..ee5c3de6f5 100644 --- a/wiki/translations/fr/Tasks_Placement.md +++ b/wiki/translations/fr/Tasks_Placement.md @@ -1,6 +1,4 @@ # Tasks Placement/fr - - ## Description Commande pour modifier le **positionnement**. Ces options ne concernent que la position et l\'orientation de l\'objet dans l\'espace, ils n\'affectent pas les autres attributs de la forme. Le positionnement est enregistré en interne sous forme de position et une rotation (autour d\'un axe ou d\'un angle, transformé en un quaternion [1](https://fr.wikipedia.org/wiki/Quaternions_et_rotation_dans_l'espace)). Alors qu\'il existe plusieurs méthodes pour spécifier une rotation, par exemple autour d\'un centre, cela n\'affecte que les calculs de rotation et il n\'y a pas d\'enregistrement pour des opérations suivantes. De même, si un axe de rotation (1,1,1) est spécifié, il peut être normalisé lorsqu\'il est enregistré dans le quaternion et apparaît comme (0.58, 0.58, 0.58) lorsque l\'on navigue sur l\'objet par la suite. @@ -118,3 +116,6 @@ Autres explications sur le [Placement](Placement/fr.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Command_Reference](Category:Command_Reference.md) > Tasks Placement/fr diff --git a/wiki/translations/fr/TechDrawGui_API.md b/wiki/translations/fr/TechDrawGui_API.md index bd2d858dc5..2b9b5a8e1f 100644 --- a/wiki/translations/fr/TechDrawGui_API.md +++ b/wiki/translations/fr/TechDrawGui_API.md @@ -1,5 +1,5 @@ # TechDrawGui API/fr - **(Novembre 2018) Ces informations peuvent être incomplètes et obsolètes. Pour la dernière API, consultez [https://www.freecadweb.org/api autogenerated API documentation].** Ces fonctions font partie de l\'[Atelier TechDraw](TechDraw_Workbench/fr.md) et peuvent être utilisées dans [macros](macros/fr.md) et à partir de la console [Python](Python/fr.md) une fois que le module `TechDrawGui` a été importé. +**(Novembre 2018) Ces informations peuvent être incomplètes et obsolètes. Pour la dernière API, consultez [https://www.freecadweb.org/api autogenerated API documentation].** Ces fonctions font partie de l\'[Atelier TechDraw](TechDraw_Workbench/fr.md) et peuvent être utilisées dans [macros](macros/fr.md) et à partir de la console [Python](Python/fr.md) une fois que le module `TechDrawGui` a été importé. Voir [TechDraw API](API_TechDraw/fr.md) pour plus de fonctions. @@ -44,3 +44,6 @@ Options: }} [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > TechDrawGui API/fr diff --git a/wiki/translations/fr/TechDraw_2LineCenterLine.md b/wiki/translations/fr/TechDraw_2LineCenterLine.md index f29fe62c9a..07333d3c6e 100644 --- a/wiki/translations/fr/TechDraw_2LineCenterLine.md +++ b/wiki/translations/fr/TechDraw_2LineCenterLine.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Ligne centrale à une surface](TechDraw_FaceCenterLine/fr.md), [TechDraw Ligne centrale entre 2 sommets](TechDraw_2PointCenterLine.md) --- +# TechDraw 2LineCenterLine/fr + ## Description L\'outil Ligne centrale entre 2 lignes ajoute une ligne centrale entre deux arêtes. @@ -71,4 +73,7 @@ Les lignes centrales ne sont pas accessibles à partir des [macros](Macros/fr.md {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2LineCenterLine/fr diff --git a/wiki/translations/fr/TechDraw_2PointCenterLine.md b/wiki/translations/fr/TechDraw_2PointCenterLine.md index e11e25e629..dbe76a3fbe 100644 --- a/wiki/translations/fr/TechDraw_2PointCenterLine.md +++ b/wiki/translations/fr/TechDraw_2PointCenterLine.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Ligne centrale à une face](TechDraw_FaceCenterLine/fr.md), [TechDraw Ligne centrale entre 2 arêtes](TechDraw_2LineCenterLine/fr.md) --- +# TechDraw 2PointCenterLine/fr + ## Description L\'outil Ligne centrale entre 2 points ajoute une ligne centrale entre deux sommets (points). @@ -66,4 +68,7 @@ Les lignes centrales ne sont pas accessibles à partir des [macros](Macros/fr.md {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2PointCenterLine/fr diff --git a/wiki/translations/fr/TechDraw_2PointCosmeticLine.md b/wiki/translations/fr/TechDraw_2PointCosmeticLine.md index e94e14d1b6..2dd3532668 100644 --- a/wiki/translations/fr/TechDraw_2PointCosmeticLine.md +++ b/wiki/translations/fr/TechDraw_2PointCosmeticLine.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Ligne centrale à une face](TechDraw_FaceCenterLine/fr.md), [TechDraw Ligne centrale entre 2 lignes](TechDraw_2LineCenterLine/fr.md) --- +# TechDraw 2PointCosmeticLine/fr + ## Description L\'outil Ligne cosmétique ajoute une ligne cosmétique par deux points. Les points peuvent être 2D ou 3D. La ligne résultante peut être utilisée pour la cotation. L\'apparence de la ligne peut être modifiée à l\'aide de l\'outil [TechDraw Gomme](TechDraw_CosmeticEraser/fr.md). @@ -56,4 +58,7 @@ Les lignes cosmétiques peuvent être créées à l\'aide des méthodes makeCosm {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2PointCosmeticLine/fr diff --git a/wiki/translations/fr/TechDraw_3PtAngleDimension.md b/wiki/translations/fr/TechDraw_3PtAngleDimension.md index 7c9ac84a60..64e3a280db 100644 --- a/wiki/translations/fr/TechDraw_3PtAngleDimension.md +++ b/wiki/translations/fr/TechDraw_3PtAngleDimension.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Cote angulaire](TechDraw_AngleDimension/fr.md) --- +# TechDraw 3PtAngleDimension/fr + ## Description L\'outil Mesure d\'angle par 3 points ajoute une cote angulaire à une vue. La dimension peut être spécifiée en sélectionnant trois sommets dans une vue. **Notez que le second des trois sommets est le sommet de l\'angle**. La Mesure d\'angle par 3 pts sera initialement l\'angle projeté (c\'est-à-dire, comme indiqué sur le dessin) mais peut être remplacé par la distance 3D réelle à l\'aide de l\'outil ** [TechDraw Lier une dimension](TechDraw_LinkDimension/fr.md)**. @@ -55,4 +57,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 3PtAngleDimension/fr diff --git a/wiki/translations/fr/TechDraw_API.md b/wiki/translations/fr/TechDraw_API.md index ba9062ed62..7270301a9d 100644 --- a/wiki/translations/fr/TechDraw_API.md +++ b/wiki/translations/fr/TechDraw_API.md @@ -1,5 +1,5 @@ # TechDraw API/fr - **(Novembre 2018) Ces informations peuvent être incomplètes et obsolètes. Pour la dernière API, consultez [https://www.freecadweb.org/api autogenerated API documentation].** Ces fonctions font partie de l\'[Atelier TechDraw](TechDraw_Workbench/fr.md) et peuvent être utilisées dans [macros](macros/fr.md) et à partir de la console [Python](Python/fr.md) une fois que le module `TechDraw` a été importé. +**(Novembre 2018) Ces informations peuvent être incomplètes et obsolètes. Pour la dernière API, consultez [https://www.freecadweb.org/api autogenerated API documentation].** Ces fonctions font partie de l\'[Atelier TechDraw](TechDraw_Workbench/fr.md) et peuvent être utilisées dans [macros](macros/fr.md) et à partir de la console [Python](Python/fr.md) une fois que le module `TechDraw` a été importé. Good examples of basic TechDraw scripting can be found in the [unit test scripts](https://github.com/FreeCAD/FreeCAD/tree/master/src/Mod/TechDraw/TDTest). @@ -353,3 +353,6 @@ dvp.requestPaint() Redraw the graphic for this View. }} [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw API/fr diff --git a/wiki/translations/fr/TechDraw_ActiveView.md b/wiki/translations/fr/TechDraw_ActiveView.md index dd1d8e3c5a..04fb01895b 100644 --- a/wiki/translations/fr/TechDraw_ActiveView.md +++ b/wiki/translations/fr/TechDraw_ActiveView.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Symbole SVG](TechDraw_Symbol/fr.md) --- +# TechDraw ActiveView/fr + ## Description L\'outil Vue active insère une copie d\'une fenêtre 3D dans une page de dessin. @@ -78,4 +80,7 @@ TechDrawGui.copyActiveViewToSvgFile(Gui.ActiveDocument.ActiveView,"myFile.svg") {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ActiveView/fr diff --git a/wiki/translations/fr/TechDraw_AngleDimension.md b/wiki/translations/fr/TechDraw_AngleDimension.md index 3fae3b2c93..b1f0859c2b 100644 --- a/wiki/translations/fr/TechDraw_AngleDimension.md +++ b/wiki/translations/fr/TechDraw_AngleDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Cote angulaire par 3 points](TechDraw_Dimension_Angle3Pt/fr.md) --- +# TechDraw AngleDimension/fr + ## Description L\'outil Cote angulaire ajoute une dimension angulaire à une vue. La dimension peut être l\'angle intérieur entre deux bords rectilignes quelconques. La dimension sera initialement l\'angle projeté (c.-à-d. comme indiqué sur le dessin), mais elle peut être remplacée par la distance 3D réel à l\'aide de l\'outil ** [TechDraw Lier une dimension](TechDraw_LinkDimension/fr.md) @@ -56,4 +58,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw AngleDimension/fr diff --git a/wiki/translations/fr/TechDraw_Annotation.md b/wiki/translations/fr/TechDraw_Annotation.md index 5d30e24c93..d785549f9f 100644 --- a/wiki/translations/fr/TechDraw_Annotation.md +++ b/wiki/translations/fr/TechDraw_Annotation.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Texte](Draft_Text/fr.md), [Draft Formes à partir texte](Draft_ShapeString/fr.md) --- +# TechDraw Annotation/fr + ## Description L\'outil Annotation ajoute un bloc de texte à une page de dessin. @@ -72,4 +74,7 @@ rc = page.addView(anno) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Annotation/fr diff --git a/wiki/translations/fr/TechDraw_ArchView.md b/wiki/translations/fr/TechDraw_ArchView.md index fe77dd56f5..da78dd95d4 100644 --- a/wiki/translations/fr/TechDraw_ArchView.md +++ b/wiki/translations/fr/TechDraw_ArchView.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Plan de section](Arch_SectionPlane/fr.md) --- +# TechDraw ArchView/fr + ## Description L\'outil Vue Arch insère une vue d\'un ** [Arch Plan de section](Arch_SectionPlane/fr.md)** dans une [TechDraw Page](TechDraw_PageDefault/fr.md). @@ -77,4 +79,7 @@ rc = page.addView(dv) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ArchView/fr diff --git a/wiki/translations/fr/TechDraw_Balloon.md b/wiki/translations/fr/TechDraw_Balloon.md index 8e42aa89b5..7a2cda0ece 100644 --- a/wiki/translations/fr/TechDraw_Balloon.md +++ b/wiki/translations/fr/TechDraw_Balloon.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Annotation](TechDraw_Annotation/fr.md) --- +# TechDraw Balloon/fr + ## Description L\'outil Annotation bulle peut ajouter des bulles avec une ligne de repère dans un dessin. @@ -89,4 +91,7 @@ rc = page.addView(bal1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Balloon/fr diff --git a/wiki/translations/fr/TechDraw_Clip.md b/wiki/translations/fr/TechDraw_Clip.md index 7a362b5c02..ad9d5e8d0c 100644 --- a/wiki/translations/fr/TechDraw_Clip.md +++ b/wiki/translations/fr/TechDraw_Clip.md @@ -1,2 +1,5 @@ # TechDraw Clip/fr 1. REDIRECT [TechDraw\_ClipGroup/fr](TechDraw_ClipGroup/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Clip/fr diff --git a/wiki/translations/fr/TechDraw_ClipGroup.md b/wiki/translations/fr/TechDraw_ClipGroup.md index 2890f81477..04ab0ffbea 100644 --- a/wiki/translations/fr/TechDraw_ClipGroup.md +++ b/wiki/translations/fr/TechDraw_ClipGroup.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Ajout vue dans une fenêtre de rognage](TechDraw_ClipGroupAdd/fr.md), [TechDraw Suppression vue d'une fenêtre de rognage](TechDraw_ClipGroupRemove/fr.md) --- +# TechDraw ClipGroup/fr + ## Description Cet outil crée une fenêtre de rognage qui peut contenir des vues. @@ -35,4 +37,7 @@ Cet outil crée une fenêtre de rognage qui peut contenir des vues. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroup/fr diff --git a/wiki/translations/fr/TechDraw_ClipGroupAdd.md b/wiki/translations/fr/TechDraw_ClipGroupAdd.md index d4132ddf50..844f7cf52a 100644 --- a/wiki/translations/fr/TechDraw_ClipGroupAdd.md +++ b/wiki/translations/fr/TechDraw_ClipGroupAdd.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Fenêtre de rognage](TechDraw_ClipGroup/fr.md), [TechDraw Suppression vue à une fenêtre de rognage](TechDraw_ClipGroupRemove/fr.md) --- +# TechDraw ClipGroupAdd/fr + ## Description Cet outil ajoute une vue à une fenêtre de rognage existante. @@ -23,4 +25,7 @@ Cet outil ajoute une vue à une fenêtre de rognage existante. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroupAdd/fr diff --git a/wiki/translations/fr/TechDraw_ClipGroupRemove.md b/wiki/translations/fr/TechDraw_ClipGroupRemove.md index 2fac3bbd73..6573acb401 100644 --- a/wiki/translations/fr/TechDraw_ClipGroupRemove.md +++ b/wiki/translations/fr/TechDraw_ClipGroupRemove.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Fenêtre de rognage](TechDraw_ClipGroup/fr.md), [TechDraw Ajout vue dans une fenêtre de rognage](TechDraw_ClipGroupAdd/fr.md) --- +# TechDraw ClipGroupRemove/fr + ## Description Cet outil supprime une vue d\'un fenêtre de rognage existante et la renvoie dans la zone Page. @@ -23,4 +25,7 @@ Cet outil supprime une vue d\'un fenêtre de rognage existante et la renvoie dan {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroupRemove/fr diff --git a/wiki/translations/fr/TechDraw_ClipMinus.md b/wiki/translations/fr/TechDraw_ClipMinus.md index 307fd721ca..c26e976406 100644 --- a/wiki/translations/fr/TechDraw_ClipMinus.md +++ b/wiki/translations/fr/TechDraw_ClipMinus.md @@ -1,2 +1,5 @@ # TechDraw ClipMinus/fr 1. REDIRECT [TechDraw\_ClipGroupRemove/fr](TechDraw_ClipGroupRemove/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipMinus/fr diff --git a/wiki/translations/fr/TechDraw_ClipPlus.md b/wiki/translations/fr/TechDraw_ClipPlus.md index 72cb0544d6..2139dd70ab 100644 --- a/wiki/translations/fr/TechDraw_ClipPlus.md +++ b/wiki/translations/fr/TechDraw_ClipPlus.md @@ -1,2 +1,5 @@ # TechDraw ClipPlus/fr 1. REDIRECT [TechDraw\_ClipGroupAdd/fr](TechDraw_ClipGroupAdd/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipPlus/fr diff --git a/wiki/translations/fr/TechDraw_CosmeticEraser.md b/wiki/translations/fr/TechDraw_CosmeticEraser.md index 3db2dcafd5..7a4ea8807b 100644 --- a/wiki/translations/fr/TechDraw_CosmeticEraser.md +++ b/wiki/translations/fr/TechDraw_CosmeticEraser.md @@ -7,6 +7,8 @@ Version:0.19 --- +# TechDraw CosmeticEraser/fr + ## Description L\'outil Gomme efface les objets cosmétiques de la page. Les objets cosmétiques sont: @@ -43,4 +45,7 @@ Gomme n\'est pas accessible à partir de [macro](Macros/fr.md) ou de la console {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw CosmeticEraser/fr diff --git a/wiki/translations/fr/TechDraw_CosmeticVertex.md b/wiki/translations/fr/TechDraw_CosmeticVertex.md index 35064e1fbb..9f96ff59d1 100644 --- a/wiki/translations/fr/TechDraw_CosmeticVertex.md +++ b/wiki/translations/fr/TechDraw_CosmeticVertex.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Point milieu](TechDraw_Midpoints/fr.md), [TechDraw Sommets quadrants](TechDraw_Quadrants/fr.md) --- +# TechDraw CosmeticVertex/fr + ## Description L\'outil Point cosmétique ajoute un [Vertex](Glossary/fr#V.md) (sommet) qui ne fait pas partie de la géométrie d\'origine à une vue. Ce point se comporte comme n\'importe quel autre point et peut être utilisé pour le dimensionnement. @@ -60,4 +62,7 @@ dvp.makeCosmeticLine(start,end,style, weight, pyGreen) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw CosmeticVertex/fr diff --git a/wiki/translations/fr/TechDraw_DecorateLine.md b/wiki/translations/fr/TechDraw_DecorateLine.md index 9378f9fe0c..87805741d4 100644 --- a/wiki/translations/fr/TechDraw_DecorateLine.md +++ b/wiki/translations/fr/TechDraw_DecorateLine.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Ligne centrale à une face](TechDraw_FaceCenterLine/fr.md), [TechDraw Gomme](TechDraw_CosmeticEraser/fr.md) --- +# TechDraw DecorateLine/fr + ## Description L\'outil Apparence des lignes modifie l\'apparence des lignes (Edges). @@ -47,4 +49,7 @@ DecorateLine n\'est pas accessible à partir de [macro](Macros/fr.md) ou de la c {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DecorateLine/fr diff --git a/wiki/translations/fr/TechDraw_DetailView.md b/wiki/translations/fr/TechDraw_DetailView.md index f622089e7e..04bb5312f6 100644 --- a/wiki/translations/fr/TechDraw_DetailView.md +++ b/wiki/translations/fr/TechDraw_DetailView.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Vue](TechDraw_View/fr.md), [TechDraw Groupe de projection](TechDraw_ProjectionGroup/fr.md) --- +# TechDraw DetailView/fr + ## Description L\'outil Détail crée une vue d\'une petite zone d\'une vue existante. @@ -89,4 +91,7 @@ Pour ce faire, placez la vue Détails dans une [Fenêtre de rognage](TechDraw_Cl {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DetailView/fr diff --git a/wiki/translations/fr/TechDraw_DiameterDimension.md b/wiki/translations/fr/TechDraw_DiameterDimension.md index 2c2871c3b6..540423c4ff 100644 --- a/wiki/translations/fr/TechDraw_DiameterDimension.md +++ b/wiki/translations/fr/TechDraw_DiameterDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Cote de rayon](TechDraw_RadiusDimension/fr.md) --- +# TechDraw DiameterDimension/fr + ## Description L\'outil Cote de diamètre ajoute une dimension de diamètre à une vue. La cote peut être appliquée à n\'importe quelle entité circulaire dans le dessin. La dimension sera initialement la distance projetée (c.-à-d. comme indiqué sur le dessin), mais elle peut être remplacée par la distance 3D réelle en utilisant l\'outil ** [TechDraw Lier une dimension](TechDraw_LinkDimension/fr.md) @@ -56,4 +58,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DiameterDimension/fr diff --git a/wiki/translations/fr/TechDraw_Dimension_Angle.md b/wiki/translations/fr/TechDraw_Dimension_Angle.md index f5992315f2..11c3fffe97 100644 --- a/wiki/translations/fr/TechDraw_Dimension_Angle.md +++ b/wiki/translations/fr/TechDraw_Dimension_Angle.md @@ -1,2 +1,5 @@ # TechDraw Dimension Angle/fr 1. REDIRECT [TechDraw\_AngleDimension/fr](TechDraw_AngleDimension/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Angle/fr diff --git a/wiki/translations/fr/TechDraw_Dimension_Angle3Pt.md b/wiki/translations/fr/TechDraw_Dimension_Angle3Pt.md index c2dc5bffa6..7f83f93578 100644 --- a/wiki/translations/fr/TechDraw_Dimension_Angle3Pt.md +++ b/wiki/translations/fr/TechDraw_Dimension_Angle3Pt.md @@ -1,2 +1,5 @@ # TechDraw Dimension Angle3Pt/fr 1. REDIRECT [TechDraw\_3PtAngleDimension/fr](TechDraw_3PtAngleDimension/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Angle3Pt/fr diff --git a/wiki/translations/fr/TechDraw_Dimension_Diameter.md b/wiki/translations/fr/TechDraw_Dimension_Diameter.md index 08ec640aba..06afb8f220 100644 --- a/wiki/translations/fr/TechDraw_Dimension_Diameter.md +++ b/wiki/translations/fr/TechDraw_Dimension_Diameter.md @@ -1,2 +1,5 @@ # TechDraw Dimension Diameter/fr 1. REDIRECT [TechDraw\_DiameterDimension/fr](TechDraw_DiameterDimension/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Diameter/fr diff --git a/wiki/translations/fr/TechDraw_Dimension_Horizontal.md b/wiki/translations/fr/TechDraw_Dimension_Horizontal.md index 99b5054f70..b8a9e3b1c0 100644 --- a/wiki/translations/fr/TechDraw_Dimension_Horizontal.md +++ b/wiki/translations/fr/TechDraw_Dimension_Horizontal.md @@ -1,2 +1,5 @@ # TechDraw Dimension Horizontal/fr 1. REDIRECT [TechDraw\_HorizontalDimension/fr](TechDraw_HorizontalDimension/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Horizontal/fr diff --git a/wiki/translations/fr/TechDraw_Dimension_Horizontal_Extent.md b/wiki/translations/fr/TechDraw_Dimension_Horizontal_Extent.md index 4e345f7b4b..656f2f6f5f 100644 --- a/wiki/translations/fr/TechDraw_Dimension_Horizontal_Extent.md +++ b/wiki/translations/fr/TechDraw_Dimension_Horizontal_Extent.md @@ -1,2 +1,5 @@ # TechDraw Dimension Horizontal Extent/fr 1. REDIRECT [TechDraw\_HorizontalExtentDimension/fr](TechDraw_HorizontalExtentDimension/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Horizontal Extent/fr diff --git a/wiki/translations/fr/TechDraw_Dimension_Landmark.md b/wiki/translations/fr/TechDraw_Dimension_Landmark.md index 17879a3187..135228b52f 100644 --- a/wiki/translations/fr/TechDraw_Dimension_Landmark.md +++ b/wiki/translations/fr/TechDraw_Dimension_Landmark.md @@ -1,2 +1,5 @@ # TechDraw Dimension Landmark/fr 1. REDIRECT [TechDraw\_LandmarkDimension/fr](TechDraw_LandmarkDimension/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Landmark/fr diff --git a/wiki/translations/fr/TechDraw_Dimension_Length.md b/wiki/translations/fr/TechDraw_Dimension_Length.md index 786677a392..d55ceb54c1 100644 --- a/wiki/translations/fr/TechDraw_Dimension_Length.md +++ b/wiki/translations/fr/TechDraw_Dimension_Length.md @@ -1,2 +1,5 @@ # TechDraw Dimension Length/fr 1. REDIRECT [TechDraw\_LengthDimension/fr](TechDraw_LengthDimension/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Length/fr diff --git a/wiki/translations/fr/TechDraw_Dimension_Link.md b/wiki/translations/fr/TechDraw_Dimension_Link.md index a977f504f0..97f3c8c024 100644 --- a/wiki/translations/fr/TechDraw_Dimension_Link.md +++ b/wiki/translations/fr/TechDraw_Dimension_Link.md @@ -1,2 +1,5 @@ # TechDraw Dimension Link/fr 1. REDIRECT [TechDraw\_LinkDimension/fr](TechDraw_LinkDimension/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Link/fr diff --git a/wiki/translations/fr/TechDraw_Dimension_Radius.md b/wiki/translations/fr/TechDraw_Dimension_Radius.md index 3a977d3778..6f093d6e4d 100644 --- a/wiki/translations/fr/TechDraw_Dimension_Radius.md +++ b/wiki/translations/fr/TechDraw_Dimension_Radius.md @@ -1,2 +1,5 @@ # TechDraw Dimension Radius/fr 1. REDIRECT [TechDraw\_RadiusDimension/fr](TechDraw_RadiusDimension/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Radius/fr diff --git a/wiki/translations/fr/TechDraw_Dimension_Vertical.md b/wiki/translations/fr/TechDraw_Dimension_Vertical.md index 8c311cfa55..2cefa37818 100644 --- a/wiki/translations/fr/TechDraw_Dimension_Vertical.md +++ b/wiki/translations/fr/TechDraw_Dimension_Vertical.md @@ -1,2 +1,5 @@ # TechDraw Dimension Vertical/fr 1. REDIRECT [TechDraw\_VerticalDimension/fr](TechDraw_VerticalDimension/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Vertical/fr diff --git a/wiki/translations/fr/TechDraw_Dimension_Vertical_Extent.md b/wiki/translations/fr/TechDraw_Dimension_Vertical_Extent.md index 8a1f8c72d7..a1652d9682 100644 --- a/wiki/translations/fr/TechDraw_Dimension_Vertical_Extent.md +++ b/wiki/translations/fr/TechDraw_Dimension_Vertical_Extent.md @@ -1,2 +1,5 @@ # TechDraw Dimension Vertical Extent/fr 1. REDIRECT [TechDraw\_VerticalExtentDimension/fr](TechDraw_VerticalExtentDimension/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Vertical Extent/fr diff --git a/wiki/translations/fr/TechDraw_DraftView.md b/wiki/translations/fr/TechDraw_DraftView.md index d512d92929..8014c43a3e 100644 --- a/wiki/translations/fr/TechDraw_DraftView.md +++ b/wiki/translations/fr/TechDraw_DraftView.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Vue Arch](TechDraw_ArchView/fr.md) --- +# TechDraw DraftView/fr + ## Description L\'outil [Vue Draft](TechDraw_DraftView/fr.md) insère une vue d\'un objet basé sur [Part](Part_Workbench/fr.md) ou Groupe sélectionné dans une page de dessin. Contrairement à l\'outil [Vue](TechDraw_View/fr.md), les vues créées avec cet outil sont gérées par [atelier Draft](Draft_Workbench/fr.md) et spécialement conçues pour montrer des objets 2D. Voir Remarques. @@ -74,4 +76,7 @@ rc = page.addView(dv) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DraftView/fr diff --git a/wiki/translations/fr/TechDraw_ExportPageDXF.md b/wiki/translations/fr/TechDraw_ExportPageDXF.md index 24745dc8cd..1d7e5fec48 100644 --- a/wiki/translations/fr/TechDraw_ExportPageDXF.md +++ b/wiki/translations/fr/TechDraw_ExportPageDXF.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Exporter au format SVG](TechDraw_ExportPageSVG/fr.md), [Draft DXF](Draft_DXF/fr.md) --- +# TechDraw ExportPageDXF/fr + ## Description L\'outil Exporter la page en Dxf enregistre une page de dessin en un fichier au format [DXF](DXF/fr.md) @@ -69,4 +71,7 @@ TechDraw.writeDXFPage(page,filename) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ExportPageDXF/fr diff --git a/wiki/translations/fr/TechDraw_ExportPageSVG.md b/wiki/translations/fr/TechDraw_ExportPageSVG.md index f03ffda49a..01e7e44d8a 100644 --- a/wiki/translations/fr/TechDraw_ExportPageSVG.md +++ b/wiki/translations/fr/TechDraw_ExportPageSVG.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Modèles](TechDraw_Templates/fr.md), [Draft SVG](Draft_SVG/fr.md) --- +# TechDraw ExportPageSVG/fr + ## Description L\'outil Exporter la page enregistre la page de dessin en cours sous forme de fichier [SVG](SVG/fr.md). @@ -44,4 +46,7 @@ Notez que le module FreeCADGui doit être actif pour utiliser cette fonction. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ExportPageSVG/fr diff --git a/wiki/translations/fr/TechDraw_FaceCenterLine.md b/wiki/translations/fr/TechDraw_FaceCenterLine.md index 68aeac6fe4..08fdb6e5c7 100644 --- a/wiki/translations/fr/TechDraw_FaceCenterLine.md +++ b/wiki/translations/fr/TechDraw_FaceCenterLine.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Point cosmétique](TechDraw_CosmeticVertex/fr.md), [TechDrawAdd Ligne centrale entre 2 lignes](TechDraw_2LineCenterLine/fr.md), [TechDraw Ligne centrale entre 2 sommets](TechDraw_2PointCenterLine/fr.md), [TechDraw Gomme](TechDraw_CosmeticEraser/fr.md) --- +# TechDraw FaceCenterLine/fr + ## Description L\'outil FaceCenterLine ajoute une ligne médiane à une ou plusieurs faces. @@ -77,4 +79,7 @@ Les lignes centrales ne sont pas accessibles à partir de [macro](Macros/fr.md) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw FaceCenterLine/fr diff --git a/wiki/translations/fr/TechDraw_GeomHatch.md b/wiki/translations/fr/TechDraw_GeomHatch.md index 3b3b721760..b0bfccfc4e 100644 --- a/wiki/translations/fr/TechDraw_GeomHatch.md +++ b/wiki/translations/fr/TechDraw_GeomHatch.md @@ -1,2 +1,5 @@ # TechDraw GeomHatch/fr 1. REDIRECT [TechDraw\_GeometricHatch/fr](TechDraw_GeometricHatch/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw GeomHatch/fr diff --git a/wiki/translations/fr/TechDraw_GeometricHatch.md b/wiki/translations/fr/TechDraw_GeometricHatch.md index b220df005a..2396c7a1cb 100644 --- a/wiki/translations/fr/TechDraw_GeometricHatch.md +++ b/wiki/translations/fr/TechDraw_GeometricHatch.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Hachures par motifs](TechDraw_Hatch/fr.md), [TechDraw Hachures](TechDraw_Hatching/fr.md) --- +# TechDraw GeometricHatch/fr + ## Description L\'outil Hachures géométriques remplit une région fermée dans une vue avec un motif basé sur une spécification de hachures AutoDesk PAT. **Alternativement**, l\'outil [TechDraw Hachures par motifs](TechDraw_Hatch/fr.md) utilise un fichier [SVG](SVG/fr.md) ou [bitmap](bitmap/fr.md) comme motif de hachures, voir [TechDraw Hachures](TechDraw_Hatching/fr.md) pour plus de détails. @@ -93,4 +95,7 @@ Part.show(hatch) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw GeometricHatch/fr diff --git a/wiki/translations/fr/TechDraw_Geometric_dimensioning_and_tolerancing.md b/wiki/translations/fr/TechDraw_Geometric_dimensioning_and_tolerancing.md index a4265fe696..0edc7631ef 100644 --- a/wiki/translations/fr/TechDraw_Geometric_dimensioning_and_tolerancing.md +++ b/wiki/translations/fr/TechDraw_Geometric_dimensioning_and_tolerancing.md @@ -1,10 +1,4 @@ # TechDraw Geometric dimensioning and tolerancing/fr - - - - - - {{TOCright}} ## Concept @@ -341,4 +335,7 @@ Les points de référence au sens de la GD&T sont des surfaces auxquelles votre {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Geometric dimensioning and tolerancing/fr diff --git a/wiki/translations/fr/TechDraw_Hatch.md b/wiki/translations/fr/TechDraw_Hatch.md index c70bd2201a..b986e0d970 100644 --- a/wiki/translations/fr/TechDraw_Hatch.md +++ b/wiki/translations/fr/TechDraw_Hatch.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Hachures géométriques](TechDraw_GeometricHatch/fr.md), [TechDraw Hachures](TechDraw_Hatching/fr.md) --- +# TechDraw Hatch/fr + ## Description L\'outil Hachures remplit une région fermée dans une vue avec un motif de hachures, qui peut être des fichiers [SVG](SVG/fr.md) ou [bitmap](bitmap/fr.md). Au contraire, l\'outil [TechDraw Hachures géométriques](TechDraw_GeometricHatch/fr.md) utilise un fichier de modèle PAT spécifique, voir [Hachures](TechDraw_Hatching/fr.md) pour plus de détails. @@ -71,4 +73,7 @@ rc = page.addView(hatch) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Hatch/fr diff --git a/wiki/translations/fr/TechDraw_Hatching.md b/wiki/translations/fr/TechDraw_Hatching.md index eb9da8a6da..b3e8e8a62e 100644 --- a/wiki/translations/fr/TechDraw_Hatching.md +++ b/wiki/translations/fr/TechDraw_Hatching.md @@ -1,10 +1,4 @@ # TechDraw Hatching/fr - - - - - - {{TOCright}} ## Description @@ -78,4 +72,7 @@ Le fichier `FCPAT.pat` peut être trouvé à l\'emplacement suivant : {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Hatching/fr diff --git a/wiki/translations/fr/TechDraw_HorizontalDimension.md b/wiki/translations/fr/TechDraw_HorizontalDimension.md index 71ac455aac..79ed096135 100644 --- a/wiki/translations/fr/TechDraw_HorizontalDimension.md +++ b/wiki/translations/fr/TechDraw_HorizontalDimension.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Cote de longueur](TechDraw_LengthDimension/fr.md), [TechDraw Cote verticale](TechDraw_VerticalDimension/fr.md) --- +# TechDraw HorizontalDimension/fr + ## Description L\'outil Cote horizontale ajoute une dimension horizontale à une vue. La dimension peut être entre deux sommets, la longueur d\'un bord ou la distance horizontale entre deux bords. La dimension sera initialement la distance projetée (c.-à-d. comme indiqué sur le dessin), mais elle peut être remplacée par la distance 3D réelle en utilisant l\'outil ** [TechDraw Lier une dimension](TechDraw_LinkDimension/fr.md) @@ -57,4 +59,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HorizontalDimension/fr diff --git a/wiki/translations/fr/TechDraw_HorizontalExtentDimension.md b/wiki/translations/fr/TechDraw_HorizontalExtentDimension.md index 7227e4b664..592ac648c4 100644 --- a/wiki/translations/fr/TechDraw_HorizontalExtentDimension.md +++ b/wiki/translations/fr/TechDraw_HorizontalExtentDimension.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Cote de longueur](TechDraw_LengthDimension/fr.md), [TechDraw Extension verticale](TechDraw_VerticalExtentDimension/fr.md) --- +# TechDraw HorizontalExtentDimension/fr + ## Description L\'outil Extension horizontale ajoute une dimension linéaire à une vue. La cote s\'étend du point le plus à gauche sur les objets sélectionnés au point le plus à droite. Un CosmeticVertex (point cosmétique) sera placé à chaque point. @@ -56,4 +58,7 @@ rc = page.addView(hExtentDim) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HorizontalExtentDimension/fr diff --git a/wiki/translations/fr/TechDraw_HowTo_Page.md b/wiki/translations/fr/TechDraw_HowTo_Page.md index b7c987aac1..53db2dd328 100644 --- a/wiki/translations/fr/TechDraw_HowTo_Page.md +++ b/wiki/translations/fr/TechDraw_HowTo_Page.md @@ -1,5 +1,5 @@ # TechDraw HowTo Page/fr - Retour aux [Tutoriels TechDraw](TechDraw_Workbench/fr#Tutoriels.md) +Retour aux [Tutoriels TechDraw](TechDraw_Workbench/fr#Tutoriels.md) {{TutorialInfo/fr @@ -50,4 +50,7 @@ Voir aussi [Mesure des angles sur les axes des trous](Measurement_Of_Angles_On_H {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HowTo Page/fr diff --git a/wiki/translations/fr/TechDraw_Image.md b/wiki/translations/fr/TechDraw_Image.md index 6155220553..1b34c9b228 100644 --- a/wiki/translations/fr/TechDraw_Image.md +++ b/wiki/translations/fr/TechDraw_Image.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Symbole SVG](TechDraw_Symbol/fr.md) --- +# TechDraw Image/fr + ## Description L\'outil Image insère une image [bitmap](bitmap/fr.md) (png, jpeg, jpg, bmp, etc.) à partir d\'un fichier dans la page en tant que vue. @@ -48,4 +50,7 @@ dvi.Width = 200 {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Image/fr diff --git a/wiki/translations/fr/TechDraw_LandmarkDimension.md b/wiki/translations/fr/TechDraw_LandmarkDimension.md index f173ab6f87..f826976856 100644 --- a/wiki/translations/fr/TechDraw_LandmarkDimension.md +++ b/wiki/translations/fr/TechDraw_LandmarkDimension.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Dimension horizontale](TechDraw_HorizontalDimension/fr.md), [TechDraw Dimension verticale](TechDraw_VerticalDimension/fr.md) --- +# TechDraw LandmarkDimension/fr + ## Description L\'outil Dimension de repère ajoute une cote linéaire à une vue. La cote est basée sur deux points **feature** (Draft.Point ou Part.Vertex) du modèle 3D. Remarquez que les points doivent être des objets **feature** qui apparaissent dans le modèle de la [vue en arborescence](Tree_view/fr.md). Les sommets aléatoires d\'une forme ne fonctionneront pas. @@ -59,4 +61,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LandmarkDimension/fr diff --git a/wiki/translations/fr/TechDraw_LeaderLine.md b/wiki/translations/fr/TechDraw_LeaderLine.md index dc1212344e..1fb9e1a1d1 100644 --- a/wiki/translations/fr/TechDraw_LeaderLine.md +++ b/wiki/translations/fr/TechDraw_LeaderLine.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Annotation en texte enrichi](TechDraw_RichTextAnnotation/fr.md), [TechDraw Symbole de soudure](TechDraw_WeldSymbol/fr.md), [TechDraw Groupes de lignes](TechDraw_LineGroup/fr.md) --- +# TechDraw LeaderLine/fr + ## Description L\'outil Ligne de référence ajoute une ligne à une vue. D\'autres objets d\'annotation (tels que [Annotation par texte enrichi](TechDraw_RichTextAnnotation/fr.md)) peuvent être connectés à Ligne de référence pour former des annotations complexes. @@ -92,4 +94,7 @@ leaderObj.Y = 5 {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LeaderLine/fr diff --git a/wiki/translations/fr/TechDraw_LengthDimension.md b/wiki/translations/fr/TechDraw_LengthDimension.md index cbd15a1891..9737c19346 100644 --- a/wiki/translations/fr/TechDraw_LengthDimension.md +++ b/wiki/translations/fr/TechDraw_LengthDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Cote horizontale](TechDraw_HorizontalDimension/fr.md), [TechDraw Cote verticale](TechDraw_VerticalDimension/fr.md) --- +# TechDraw LengthDimension/fr + ## Description L\'outil Cote de longueur ajoute une dimension linéaire à une vue. La dimension peut être la distance entre deux sommets, la longueur d\'un bord ou la distance entre deux arêtes. La dimension sera initialement la distance projetée (c.-à-d. comme indiqué sur le dessin), mais elle peut être remplacée par la distance 3D réelle en utilisant l\'outil ** [TechDraw Lier une dimension](TechDraw_LinkDimension/fr.md) @@ -260,4 +262,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LengthDimension/fr diff --git a/wiki/translations/fr/TechDraw_LineGroup.md b/wiki/translations/fr/TechDraw_LineGroup.md index 086eca4995..6d81c6ffcf 100644 --- a/wiki/translations/fr/TechDraw_LineGroup.md +++ b/wiki/translations/fr/TechDraw_LineGroup.md @@ -1,10 +1,4 @@ # TechDraw LineGroup/fr - - - - - - {{TOCright}} ## Présentation @@ -79,4 +73,7 @@ Remarque: une nouvelle préférence a été ajoutée pour vous permettre d\'util {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LineGroup/fr diff --git a/wiki/translations/fr/TechDraw_LinkDimension.md b/wiki/translations/fr/TechDraw_LinkDimension.md index 2b83aec01c..dcf3d5f2a7 100644 --- a/wiki/translations/fr/TechDraw_LinkDimension.md +++ b/wiki/translations/fr/TechDraw_LinkDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Vue](TechDraw_View/fr.md), [TechDraw Groupe de projection](TechDraw_ProjectionGroup/fr.md) --- +# TechDraw LinkDimension/fr + ## Description L\'outil Lier une dimension crée un lien entre la géométrie 3D et une ou plusieurs dimensions projetées existantes sur une page. Ce lien permet à la dimension d\'utiliser des valeurs 3D réelles au lieu de valeurs projetées 2D. @@ -63,4 +65,7 @@ to be defined {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LinkDimension/fr diff --git a/wiki/translations/fr/TechDraw_Midpoints.md b/wiki/translations/fr/TechDraw_Midpoints.md index cda9e74b3e..0bb4673810 100644 --- a/wiki/translations/fr/TechDraw_Midpoints.md +++ b/wiki/translations/fr/TechDraw_Midpoints.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Point cosmétique](TechDraw_CosmeticVertex/fr.md), [TechDraw Sommets quadrants](TechDraw_Quadrants/fr.md) --- +# TechDraw Midpoints/fr + ## Description L\'outil Points médians ajoute des [Vertices](Glossary/fr#V.md) (sommets) cosmétiques au milieu d\'une ou plusieurs arêtes. @@ -49,4 +51,7 @@ Les points cosmétiques ne sont pas accessibles par [macros](Macros/fr.md) ni pa {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Midpoints/fr diff --git a/wiki/translations/fr/TechDraw_Module.md b/wiki/translations/fr/TechDraw_Module.md index 8c167c41ea..2f45d432b4 100644 --- a/wiki/translations/fr/TechDraw_Module.md +++ b/wiki/translations/fr/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/fr 1. REDIRECT [TechDraw\_Workbench/fr](TechDraw_Workbench/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/fr diff --git a/wiki/translations/fr/TechDraw_NewAnnotation.md b/wiki/translations/fr/TechDraw_NewAnnotation.md index 0d7c06e32a..7146267873 100644 --- a/wiki/translations/fr/TechDraw_NewAnnotation.md +++ b/wiki/translations/fr/TechDraw_NewAnnotation.md @@ -1,2 +1,5 @@ # TechDraw NewAnnotation/fr 1. REDIRECT [TechDraw\_Annotation/fr](TechDraw_Annotation/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewAnnotation/fr diff --git a/wiki/translations/fr/TechDraw_NewArch.md b/wiki/translations/fr/TechDraw_NewArch.md index 07eec10c14..da2dcdb3a8 100644 --- a/wiki/translations/fr/TechDraw_NewArch.md +++ b/wiki/translations/fr/TechDraw_NewArch.md @@ -1,2 +1,5 @@ # TechDraw NewArch/fr 1. REDIRECT [TechDraw\_ArchView/fr](TechDraw_ArchView/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewArch/fr diff --git a/wiki/translations/fr/TechDraw_NewDetail.md b/wiki/translations/fr/TechDraw_NewDetail.md index e6d9fc902e..b5fd5e5977 100644 --- a/wiki/translations/fr/TechDraw_NewDetail.md +++ b/wiki/translations/fr/TechDraw_NewDetail.md @@ -1,2 +1,5 @@ # TechDraw NewDetail/fr 1. REDIRECT [TechDraw\_DetailView/fr](TechDraw_DetailView/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewDetail/fr diff --git a/wiki/translations/fr/TechDraw_NewDraft.md b/wiki/translations/fr/TechDraw_NewDraft.md index 152b7e71cc..d409228797 100644 --- a/wiki/translations/fr/TechDraw_NewDraft.md +++ b/wiki/translations/fr/TechDraw_NewDraft.md @@ -1,2 +1,5 @@ # TechDraw NewDraft/fr 1. REDIRECT [TechDraw\_DraftView/fr](TechDraw_DraftView/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewDraft/fr diff --git a/wiki/translations/fr/TechDraw_NewMulti.md b/wiki/translations/fr/TechDraw_NewMulti.md index 5542846a8a..5cccc79f99 100644 --- a/wiki/translations/fr/TechDraw_NewMulti.md +++ b/wiki/translations/fr/TechDraw_NewMulti.md @@ -1,2 +1,5 @@ # TechDraw NewMulti/fr 1. REDIRECT [TechDraw\_ProjectionGroup/fr](TechDraw_ProjectionGroup/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewMulti/fr diff --git a/wiki/translations/fr/TechDraw_NewProjGroup.md b/wiki/translations/fr/TechDraw_NewProjGroup.md index 44c92254a4..a61aca7bf8 100644 --- a/wiki/translations/fr/TechDraw_NewProjGroup.md +++ b/wiki/translations/fr/TechDraw_NewProjGroup.md @@ -1,2 +1,5 @@ # TechDraw NewProjGroup/fr 1. REDIRECT [TechDraw\_ProjectionGroup/fr](TechDraw_ProjectionGroup/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewProjGroup/fr diff --git a/wiki/translations/fr/TechDraw_NewSection.md b/wiki/translations/fr/TechDraw_NewSection.md index f61f3fd148..08da1d2f66 100644 --- a/wiki/translations/fr/TechDraw_NewSection.md +++ b/wiki/translations/fr/TechDraw_NewSection.md @@ -1,2 +1,5 @@ # TechDraw NewSection/fr 1. REDIRECT [TechDraw\_SectionView/fr](TechDraw_SectionView/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewSection/fr diff --git a/wiki/translations/fr/TechDraw_New_Default.md b/wiki/translations/fr/TechDraw_New_Default.md index bf834b01d1..679840dca5 100644 --- a/wiki/translations/fr/TechDraw_New_Default.md +++ b/wiki/translations/fr/TechDraw_New_Default.md @@ -1,2 +1,5 @@ # TechDraw New Default/fr 1. REDIRECT [TechDraw\_PageDefault/fr](TechDraw_PageDefault/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw New Default/fr diff --git a/wiki/translations/fr/TechDraw_New_Pick.md b/wiki/translations/fr/TechDraw_New_Pick.md index b166a7c402..1b3f4130fd 100644 --- a/wiki/translations/fr/TechDraw_New_Pick.md +++ b/wiki/translations/fr/TechDraw_New_Pick.md @@ -1,2 +1,5 @@ # TechDraw New Pick/fr 1. REDIRECT [TechDraw\_PageTemplate/fr](TechDraw_PageTemplate/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw New Pick/fr diff --git a/wiki/translations/fr/TechDraw_PageDefault.md b/wiki/translations/fr/TechDraw_PageDefault.md index e80283edd5..8603d99bfb 100644 --- a/wiki/translations/fr/TechDraw_PageDefault.md +++ b/wiki/translations/fr/TechDraw_PageDefault.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Page à partir d'un modèle](TechDraw_PageTemplate/fr.md), [TechDraw Modèles](TechDraw_Templates/fr.md) --- +# TechDraw PageDefault/fr + ## Description L\'outil Nouvelle Page par défaut crée un nouvel objet Page à l\'aide du fichier de modèle spécifié dans les [TechDraw Préférences](TechDraw_Preferences/fr.md). @@ -88,4 +90,7 @@ page.Template.EditableTexts = texts {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw PageDefault/fr diff --git a/wiki/translations/fr/TechDraw_PageTemplate.md b/wiki/translations/fr/TechDraw_PageTemplate.md index f6574ee248..484ef4af19 100644 --- a/wiki/translations/fr/TechDraw_PageTemplate.md +++ b/wiki/translations/fr/TechDraw_PageTemplate.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Page par défaut](TechDraw_PageDefault/fr.md), [TechDraw Modèles](TechDraw_Templates/fr.md) --- +# TechDraw PageTemplate/fr + ## Description L\'outil Page à partir d\'un modèle crée un nouvel objet Page à l\'aide du fichier de modèle sélectionné dans une boîte de dialogue. @@ -64,4 +66,7 @@ Voir les informations dans [TechDraw Nouvelle page par défaut](TechDraw_New_Def {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw PageTemplate/fr diff --git a/wiki/translations/fr/TechDraw_Preferences.md b/wiki/translations/fr/TechDraw_Preferences.md index e47bb04228..254bd5d734 100644 --- a/wiki/translations/fr/TechDraw_Preferences.md +++ b/wiki/translations/fr/TechDraw_Preferences.md @@ -1,10 +1,4 @@ # TechDraw Preferences/fr - - - - - - {{TOCright}} ## Introduction @@ -201,3 +195,6 @@ Certains paramètres de préférences ne sont accessibles que via [Std Editeur d }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Preferences/fr diff --git a/wiki/translations/fr/TechDraw_ProjectionGroup.md b/wiki/translations/fr/TechDraw_ProjectionGroup.md index 1cc1ab1428..2c9ceb42dc 100644 --- a/wiki/translations/fr/TechDraw_ProjectionGroup.md +++ b/wiki/translations/fr/TechDraw_ProjectionGroup.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Vue active](TechDraw_View/fr.md), [TechDraw Vue de coupe](TechDraw_SectionView/fr.md) --- +# TechDraw ProjectionGroup/fr + ## Description L\'outil [Groupe de projection](TechDraw_ProjectionGroup/fr.md) crée une [projection multi-vue](https://en.wikipedia.org/wiki/Multiview_projection) d\'un ou plusieurs objets 3D. Les vues isométriques des 4 coins de devant peuvent également être incluses. @@ -97,4 +99,7 @@ Remarque de programmation: le groupe de projection doit toujours être ajouté {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ProjectionGroup/fr diff --git a/wiki/translations/fr/TechDraw_Quadrants.md b/wiki/translations/fr/TechDraw_Quadrants.md index 82992e206d..ff4e5f83f6 100644 --- a/wiki/translations/fr/TechDraw_Quadrants.md +++ b/wiki/translations/fr/TechDraw_Quadrants.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Point cosmétique](TechDraw_CosmeticVertex/fr.md), [TechDraw Point milieu](TechDraw_Midpoints/fr.md) --- +# TechDraw Quadrants/fr + ## Description L\'outil Sommets quadrants ajoute des [Sommets cosmétiques](TechDraw_CosmeticVertex/fr.md) aux points 90/180/270° d\'un bord circulaire. Le sommet 0° devrait déjà figurer sous forme de sommet géométrique. @@ -51,4 +53,7 @@ Les points cosmétiques ne sont pas accessibles par [macros](Macros/fr.md) ni pa {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Quadrants/fr diff --git a/wiki/translations/fr/TechDraw_RadiusDimension.md b/wiki/translations/fr/TechDraw_RadiusDimension.md index 5d670bb031..fb51d14a87 100644 --- a/wiki/translations/fr/TechDraw_RadiusDimension.md +++ b/wiki/translations/fr/TechDraw_RadiusDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Cote de diamètre](TechDraw_DiameterDimension/fr.md) --- +# TechDraw RadiusDimension/fr + ## Description L\'outil Cote de rayon ajoute une dimension de rayon à une vue. La cote peut être appliquée à n\'importe quel bord du dessin, que ce soit un cercle ou un arc de cercle. La distance sera initialement la distance projetée (c\'est-à-dire, comme indiqué sur le dessin), mais elle peut être remplacée par la distance 3D réelle à l\'aide de l\'outil ** [TechDraw Lier une dimension](TechDraw_LinkDimension/fr.md)**. @@ -55,4 +57,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RadiusDimension/fr diff --git a/wiki/translations/fr/TechDraw_Redraw.md b/wiki/translations/fr/TechDraw_Redraw.md index 011bfc4e02..b2633e3177 100644 --- a/wiki/translations/fr/TechDraw_Redraw.md +++ b/wiki/translations/fr/TechDraw_Redraw.md @@ -1,2 +1,5 @@ # TechDraw Redraw/fr 1. REDIRECT [TechDraw\_RedrawPage/fr](TechDraw_RedrawPage/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Redraw/fr diff --git a/wiki/translations/fr/TechDraw_RedrawPage.md b/wiki/translations/fr/TechDraw_RedrawPage.md index f5bb869ddc..336c2706c1 100644 --- a/wiki/translations/fr/TechDraw_RedrawPage.md +++ b/wiki/translations/fr/TechDraw_RedrawPage.md @@ -7,6 +7,8 @@ Version:0.19 --- +# TechDraw RedrawPage/fr + ## Description L\'outil Redessiner force la mise à jour de la page malgré les paramètres contraires de KeepUpdated (propriété de la page), de la mise à jour avec la 3D (paramètre) ou de l\'option Autoriser le remplacement de la page (paramètre). @@ -40,4 +42,7 @@ La commande Redessiner n\'est pas directement disponible dans les scripts. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RedrawPage/fr diff --git a/wiki/translations/fr/TechDraw_RichTextAnnotation.md b/wiki/translations/fr/TechDraw_RichTextAnnotation.md index 4697efcb31..eaa87b659a 100644 --- a/wiki/translations/fr/TechDraw_RichTextAnnotation.md +++ b/wiki/translations/fr/TechDraw_RichTextAnnotation.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Modèles](TechDraw_Templates/fr.md), [Draft SVG](Draft_SVG/fr.md), [TechDraw Ligne de référence](TechDraw_LeaderLine/fr.md) --- +# TechDraw RichTextAnnotation/fr + ## Description L\'outil Insérer une annotation de texte enrichi ajoute un bloc d\'annotation formaté à une [Ligne de référence](TechDraw_LeaderLine/fr.md) ou à une vue. @@ -61,4 +63,7 @@ blockObj.AnnoText = myHTMLText {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RichTextAnnotation/fr diff --git a/wiki/translations/fr/TechDraw_Roadmap.md b/wiki/translations/fr/TechDraw_Roadmap.md index f9e4c58861..25d771911d 100644 --- a/wiki/translations/fr/TechDraw_Roadmap.md +++ b/wiki/translations/fr/TechDraw_Roadmap.md @@ -1,5 +1,4 @@ -# TechDraw Roadmap/fr - +# TechDraw Roadmap/fr L\'atelier [Techdraw](TechDraw_Workbench/fr.md) a été officiellement introduit dans FreeCAD en version 0.17. Il est relativement nouveau et n\'a pas eu les années de développement qui ont profité à d\'autres établis. Néanmoins, TechDraw remplit désormais son objectif de conception initial et peut désormais \"produire des dessins techniques de base basés sur le modèle 3D\". @@ -81,3 +80,6 @@ Voir le traqueur de bogues pour des informations à jour. }} [Category:User Documentation](Category:User_Documentation.md) [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Roadmap/fr diff --git a/wiki/translations/fr/TechDraw_SaveDXF.md b/wiki/translations/fr/TechDraw_SaveDXF.md index 10cc985971..149753f773 100644 --- a/wiki/translations/fr/TechDraw_SaveDXF.md +++ b/wiki/translations/fr/TechDraw_SaveDXF.md @@ -1,2 +1,5 @@ # TechDraw SaveDXF/fr 1. REDIRECT [TechDraw\_ExportPageDXF/fr](TechDraw_ExportPageDXF/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SaveDXF/fr diff --git a/wiki/translations/fr/TechDraw_SaveSVG.md b/wiki/translations/fr/TechDraw_SaveSVG.md index 719c7f331e..dbe8619a35 100644 --- a/wiki/translations/fr/TechDraw_SaveSVG.md +++ b/wiki/translations/fr/TechDraw_SaveSVG.md @@ -1,2 +1,5 @@ # TechDraw SaveSVG/fr 1. REDIRECT [TechDraw\_ExportPageSVG/fr](TechDraw_ExportPageSVG/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SaveSVG/fr diff --git a/wiki/translations/fr/TechDraw_SectionView.md b/wiki/translations/fr/TechDraw_SectionView.md index 6c4008cc33..b8ea1b659c 100644 --- a/wiki/translations/fr/TechDraw_SectionView.md +++ b/wiki/translations/fr/TechDraw_SectionView.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Vue](TechDraw_View/fr.md), [TechDraw Groupe de projection](TechDraw_ProjectionGroup/fr.md) --- +# TechDraw SectionView/fr + ## Description L\'outil Coupe crée une vue en coupe en fonction d\'une vue existante d\'une pièce. @@ -117,4 +119,7 @@ section.SectionOrigin = (5.0,5.0,5.0) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SectionView/fr diff --git a/wiki/translations/fr/TechDraw_ShowAll.md b/wiki/translations/fr/TechDraw_ShowAll.md index c012711211..effc117bd0 100644 --- a/wiki/translations/fr/TechDraw_ShowAll.md +++ b/wiki/translations/fr/TechDraw_ShowAll.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Apparence des lignes](TechDraw_DecorateLine/fr.md) --- +# TechDraw ShowAll/fr + ## Description L\'outil Montrer tout affiche ou masque les lignes invisibles dans une vue. Notez que \"invisible\" est un état esthétique, à ne pas confondre avec les lignes cachées qui sont des constructions géométriques. @@ -43,4 +45,7 @@ Les effets de l\'outil Montrer tout peut être dupliqué dans la [macro](Macros/ {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ShowAll/fr diff --git a/wiki/translations/fr/TechDraw_Spreadsheet.md b/wiki/translations/fr/TechDraw_Spreadsheet.md index 4d101474c5..bd7a35b484 100644 --- a/wiki/translations/fr/TechDraw_Spreadsheet.md +++ b/wiki/translations/fr/TechDraw_Spreadsheet.md @@ -1,2 +1,5 @@ # TechDraw Spreadsheet/fr 1. REDIRECT [TechDraw\_SpreadsheetView/fr](TechDraw_SpreadsheetView/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Spreadsheet/fr diff --git a/wiki/translations/fr/TechDraw_SpreadsheetView.md b/wiki/translations/fr/TechDraw_SpreadsheetView.md index e9909e0c59..ef7c38c7b4 100644 --- a/wiki/translations/fr/TechDraw_SpreadsheetView.md +++ b/wiki/translations/fr/TechDraw_SpreadsheetView.md @@ -6,6 +6,8 @@ Workbenches:[TechDraw](TechDraw_Workbench/fr.md), [Spreadsheet](Spreadsheet_Workbench/fr.md) --- +# TechDraw SpreadsheetView/fr + ## Description Cet outil vous permet de placer une vue d\'une [feuille de calcul](Spreadsheet_Workbench/fr.md) sélectionnée dans une [page](TechDraw_Workbench/fr.md). @@ -40,4 +42,7 @@ Cet outil vous permet de placer une vue d\'une [feuille de calcul](Spreadsheet_W {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SpreadsheetView/fr diff --git a/wiki/translations/fr/TechDraw_Symbol.md b/wiki/translations/fr/TechDraw_Symbol.md index 5a06455091..1ef49a0431 100644 --- a/wiki/translations/fr/TechDraw_Symbol.md +++ b/wiki/translations/fr/TechDraw_Symbol.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Modèles](TechDraw_Templates/fr.md), [Draft SVG](Draft_SVG/fr.md) --- +# TechDraw Symbol/fr + ## Description L\'outil Symbole insère un fichier [SVG](SVG/fr.md) dans la page. Ce symbole peut être tout ce qui peut aider à annoter votre dessin et ne nécessite aucune modification supplémentaire. @@ -54,4 +56,7 @@ rc = page.addView(sym) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Symbol/fr diff --git a/wiki/translations/fr/TechDraw_TemplateHowTo.md b/wiki/translations/fr/TechDraw_TemplateHowTo.md index dbb17f65b9..d0a53baa43 100644 --- a/wiki/translations/fr/TechDraw_TemplateHowTo.md +++ b/wiki/translations/fr/TechDraw_TemplateHowTo.md @@ -1,7 +1,4 @@ # TechDraw TemplateHowTo/fr - - - {{TutorialInfo/fr |Topic=Dessin |Level=Intermédiaire @@ -120,4 +117,7 @@ Si vous ne voyez pas les cases vertes pour vos textes modifiables, il se peut qu {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw TemplateHowTo/fr diff --git a/wiki/translations/fr/TechDraw_Templates.md b/wiki/translations/fr/TechDraw_Templates.md index c479736ea5..0d903b94e0 100644 --- a/wiki/translations/fr/TechDraw_Templates.md +++ b/wiki/translations/fr/TechDraw_Templates.md @@ -1,10 +1,4 @@ # TechDraw Templates/fr - - - - - - {{TOCright}} ## Vue d\'ensemble @@ -77,4 +71,7 @@ Voir aussi [Comment créer un modèle TechDraw personnalisé](TechDraw_TemplateH {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Templates/fr diff --git a/wiki/translations/fr/TechDraw_TextLeader.md b/wiki/translations/fr/TechDraw_TextLeader.md index 7b5f47102c..a0d9979f4c 100644 --- a/wiki/translations/fr/TechDraw_TextLeader.md +++ b/wiki/translations/fr/TechDraw_TextLeader.md @@ -1,2 +1,5 @@ # TechDraw TextLeader/fr 1. REDIRECT [TechDraw\_RichTextAnnotation/fr](TechDraw_RichTextAnnotation/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw TextLeader/fr diff --git a/wiki/translations/fr/TechDraw_Toggle.md b/wiki/translations/fr/TechDraw_Toggle.md index 82d9ec6656..c1f0137a10 100644 --- a/wiki/translations/fr/TechDraw_Toggle.md +++ b/wiki/translations/fr/TechDraw_Toggle.md @@ -1,2 +1,5 @@ # TechDraw Toggle/fr 1. REDIRECT [TechDraw\_ToggleFrame/fr](TechDraw_ToggleFrame/fr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Toggle/fr diff --git a/wiki/translations/fr/TechDraw_ToggleFrame.md b/wiki/translations/fr/TechDraw_ToggleFrame.md index e56b2b373e..eb2598756e 100644 --- a/wiki/translations/fr/TechDraw_ToggleFrame.md +++ b/wiki/translations/fr/TechDraw_ToggleFrame.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Vue](TechDraw_View/fr.md), [TechDraw Projection de groupe](TechDraw_ProjectionGroup/fr.md) --- +# TechDraw ToggleFrame/fr + ## Description L\'outil Basculer l\'affichage des cadres active ou désactive l\'affichage des cadres de vue, des étiquettes et des sommets. @@ -45,4 +47,7 @@ L\'outil Basculer l\'affichage des cadres n\'a actuellement pas d\'interface de {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ToggleFrame/fr diff --git a/wiki/translations/fr/TechDraw_VerticalDimension.md b/wiki/translations/fr/TechDraw_VerticalDimension.md index 0e620cfede..ee49c65e94 100644 --- a/wiki/translations/fr/TechDraw_VerticalDimension.md +++ b/wiki/translations/fr/TechDraw_VerticalDimension.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Cote de longueur](TechDraw_LengthDimension/fr.md), [TechDraw Cote horizontale](TechDraw_HorizontalDimension/fr.md) --- +# TechDraw VerticalDimension/fr + ## Description L\'outil Cote verticale ajoute une dimension verticale à une vue. La dimension peut être entre deux sommets, la longueur d\'un bord ou la distance verticale entre deux bords. La dimension sera initialement la distance projetée (c.-à-d. comme indiqué sur le dessin), mais elle peut être remplacée par la distance 3D réelle en utilisant l\'outil ** [TechDraw Lier une dimension](TechDraw_LinkDimension/fr.md) @@ -57,4 +59,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw VerticalDimension/fr diff --git a/wiki/translations/fr/TechDraw_VerticalExtentDimension.md b/wiki/translations/fr/TechDraw_VerticalExtentDimension.md index c327b6851a..3e6a7096ad 100644 --- a/wiki/translations/fr/TechDraw_VerticalExtentDimension.md +++ b/wiki/translations/fr/TechDraw_VerticalExtentDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Cote de longueur](TechDraw_LengthDimension/fr.md), [TechDraw Extension horizontale](TechDraw_HorizontalExtentDimension/fr.md) --- +# TechDraw VerticalExtentDimension/fr + ## Description L\'outil Extension verticale ajoute une dimension linéaire à une vue. La dimension s\'étend du point le plus bas sur les objets sélectionnés au point le plus haut. Un CosmeticVertex (point cosmétique) sera placé à chaque point. @@ -54,4 +56,7 @@ rc = page.addView(hExtentDim) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw VerticalExtentDimension/fr diff --git a/wiki/translations/fr/TechDraw_View.md b/wiki/translations/fr/TechDraw_View.md index 6f25f77e08..f16b0497bc 100644 --- a/wiki/translations/fr/TechDraw_View.md +++ b/wiki/translations/fr/TechDraw_View.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Projection de groupe](TechDraw_ProjectionGroup/fr.md), [TechDraw Vue de coupe](TechDraw_SectionView/fr.md) --- +# TechDraw View/fr + ## Description L\'outil Vue ajoute une représentation d\'un ou plusieurs objets à une Page de dessin. C\'est le bloc de construction de base de l\'atelier TechDraw. La plupart des autres vues sont dérivées d\'une manière ou d\'une autre de Nouvelle Vue. @@ -127,4 +129,7 @@ FreeCAD.ActiveDocument.View.Direction = (0.0,0.0,1.0) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw View/fr diff --git a/wiki/translations/fr/TechDraw_WeldSymbol.md b/wiki/translations/fr/TechDraw_WeldSymbol.md index 108e08300a..45d8ec4cd5 100644 --- a/wiki/translations/fr/TechDraw_WeldSymbol.md +++ b/wiki/translations/fr/TechDraw_WeldSymbol.md @@ -9,6 +9,8 @@ SeeAlso:[TechDraw Ligne de référence](TechDraw_LeaderLine/fr.md) --- +# TechDraw WeldSymbol/fr + ## Description L\'outil Symbole de soudure ajoute les spécifications de soudage à une ligne directrice existante. @@ -113,4 +115,7 @@ Les symboles particuliers sont formés par des fichiers SVG de 64x64 pixels. Des {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw WeldSymbol/fr diff --git a/wiki/translations/fr/TechDraw_Workbench.md b/wiki/translations/fr/TechDraw_Workbench.md index d2c73d8ed3..6f80e82fa3 100644 --- a/wiki/translations/fr/TechDraw_Workbench.md +++ b/wiki/translations/fr/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/fr - - - - - -Icône de l\'atelier TechDraw +# Icône de l\'atelier TechDraw TechDraw Workbench/fr ## Introduction @@ -208,3 +202,6 @@ Tutoriels video par sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/fr diff --git a/wiki/translations/fr/TechDraw_pitch_circle_tutorial.md b/wiki/translations/fr/TechDraw_pitch_circle_tutorial.md index a8e5ad27d7..68424bf1d1 100644 --- a/wiki/translations/fr/TechDraw_pitch_circle_tutorial.md +++ b/wiki/translations/fr/TechDraw_pitch_circle_tutorial.md @@ -1,7 +1,4 @@ # TechDraw pitch circle tutorial/fr - - - {{TutorialInfo/fr |Topic=TechDraw |Level=Débutant @@ -44,4 +41,7 @@ Ce tutoriel explique comment ajouter un cercle imaginaire à une vue [TechDraw](TechDraw_Workbench.md) > TechDraw pitch circle tutorial/fr diff --git a/wiki/translations/fr/Test_Framework_Workbench.md b/wiki/translations/fr/Test_Framework_Workbench.md index 4e65c8a7be..0cca7dd28a 100644 --- a/wiki/translations/fr/Test_Framework_Workbench.md +++ b/wiki/translations/fr/Test_Framework_Workbench.md @@ -1,2 +1,5 @@ # Test Framework Workbench/fr 1. REDIRECT [Testing/fr](Testing/fr.md) + +--- +[documentation index](../README.md) > Test Framework Workbench/fr diff --git a/wiki/translations/fr/Testing.md b/wiki/translations/fr/Testing.md index 2fc6055394..2919fc11d9 100644 --- a/wiki/translations/fr/Testing.md +++ b/wiki/translations/fr/Testing.md @@ -1,10 +1,4 @@ -# Testing/fr - - - - - -Icône de l\'atelier Test +# Icône de l\'atelier Test Testing/fr {{TOCright}} @@ -162,3 +156,6 @@ r.run(suite) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Test Framework](Category:Test_Framework.md) [Category:Workbenches](Category:Workbenches.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Testing/fr diff --git a/wiki/translations/fr/The_FreeCAD_source_code.md b/wiki/translations/fr/The_FreeCAD_source_code.md index 3558cf28d3..d1fb657c73 100644 --- a/wiki/translations/fr/The_FreeCAD_source_code.md +++ b/wiki/translations/fr/The_FreeCAD_source_code.md @@ -1,5 +1,5 @@ # The FreeCAD source code/fr - Le [FreeCAD source code](https://github.com/FreeCAD/FreeCAD) est géré avec git et est public, ouvert et disponible sous la [licence LGPL](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License). Il peut être copié, téléchargé, lu, analysé, redistribué et modifié par n\'importe qui. Si vous prévoyez d\'apporter des modifications que vous souhaitez voir incluses dans le code officiel lui-même, n\'oubliez pas que vos modifications devront être approuvées par les développeurs de FreeCAD, il est donc sage de discuter d\'abord de vos intentions et de vos idées sur le [forum](http://forum.freecadweb.org), pour éviter le risque de voir vos modifications rejetées pour une raison que vous n\'aviez pas prévue. +Le [FreeCAD source code](https://github.com/FreeCAD/FreeCAD) est géré avec git et est public, ouvert et disponible sous la [licence LGPL](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License). Il peut être copié, téléchargé, lu, analysé, redistribué et modifié par n\'importe qui. Si vous prévoyez d\'apporter des modifications que vous souhaitez voir incluses dans le code officiel lui-même, n\'oubliez pas que vos modifications devront être approuvées par les développeurs de FreeCAD, il est donc sage de discuter d\'abord de vos intentions et de vos idées sur le [forum](http://forum.freecadweb.org), pour éviter le risque de voir vos modifications rejetées pour une raison que vous n\'aviez pas prévue. Vous trouverez ci-dessous quelques indices et informations utiles pour vous mettre sur les rails si vous souhaitez explorer le code FreeCAD. @@ -33,3 +33,6 @@ Vous trouverez ci-dessous quelques indices et informations utiles pour vous mett - [FCStd](File_Format_FCStd/fr.md) - le format de fichier FreeCAD [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > The FreeCAD source code/fr diff --git a/wiki/translations/fr/Third_Party_Libraries.md b/wiki/translations/fr/Third_Party_Libraries.md index 6bff296f47..abc95e100b 100644 --- a/wiki/translations/fr/Third_Party_Libraries.md +++ b/wiki/translations/fr/Third_Party_Libraries.md @@ -1,10 +1,4 @@ # Third Party Libraries/fr - - - - - - {{TOCright}} ## Vue d\'ensemble @@ -282,3 +276,6 @@ Cela inclut entre autres : Boost 1,67, Coin3D 4.0.0a, Eigen3, Open CASCADE Techn [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Libraries/fr diff --git a/wiki/translations/fr/Third_Party_Tools.md b/wiki/translations/fr/Third_Party_Tools.md index 249c321041..5112a44e17 100644 --- a/wiki/translations/fr/Third_Party_Tools.md +++ b/wiki/translations/fr/Third_Party_Tools.md @@ -1,10 +1,4 @@ # Third Party Tools/fr - - - - - - {{TOCright}} ## Tool Page @@ -167,3 +161,6 @@ A venir. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Tools/fr diff --git a/wiki/translations/fr/ThreadProfile_Workbench.md b/wiki/translations/fr/ThreadProfile_Workbench.md index b3224544f4..a7722bafea 100644 --- a/wiki/translations/fr/ThreadProfile_Workbench.md +++ b/wiki/translations/fr/ThreadProfile_Workbench.md @@ -1,8 +1,9 @@ # ThreadProfile Workbench/fr - - L\'atelier ThreadProfile est un atelier permettant de créer un profil de fil, qui peut être balayé le long d\'une hélice pour produire un fil. Ce atelier est actuellement en cours de développement. La documentation complète peut être trouvée sur Github: [ThreadProfile Workbench sur Github](https://github.com/mwganson/ThreadProfile) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > ThreadProfile Workbench/fr diff --git a/wiki/translations/fr/Thread_for_Screw_Tutorial.md b/wiki/translations/fr/Thread_for_Screw_Tutorial.md index 15adf32286..e7e1d5f89a 100644 --- a/wiki/translations/fr/Thread_for_Screw_Tutorial.md +++ b/wiki/translations/fr/Thread_for_Screw_Tutorial.md @@ -1,7 +1,4 @@ # Thread for Screw Tutorial/fr - - - {{TutorialInfo/fr |Topic= Conception de produit |Level= Avancé @@ -238,4 +235,7 @@ Les filets ISO et autres ont été allégés, c\'est-à-dire que les bords inté ![761PX](images/Threadform.PNG ) -Cette méthode produit des solides fiables qui \"booléen\" correctement. Bien qu\'il ne produise pas de filetage de vis \"paramétrique\" dans les tailles standard, c\'est-à-dire qu\'il permet d\'accéder facilement à la forme par taille de fixation, il constitue un moyen simple de produire une bibliothèque précise à réutiliser, ainsi que des modèles de formes spécialisées telles que ACME ou des vis Archimédien. , sont également simples comme des one-offs. {{Tutorials navi}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +Cette méthode produit des solides fiables qui \"booléen\" correctement. Bien qu\'il ne produise pas de filetage de vis \"paramétrique\" dans les tailles standard, c\'est-à-dire qu\'il permet d\'accéder facilement à la forme par taille de fixation, il constitue un moyen simple de produire une bibliothèque précise à réutiliser, ainsi que des modèles de formes spécialisées telles que ACME ou des vis Archimédien. , sont également simples comme des one-offs. {{Tutorials navi}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Thread for Screw Tutorial/fr diff --git a/wiki/translations/fr/Timber_Workbench.md b/wiki/translations/fr/Timber_Workbench.md index 5f1c0b8b8e..d1d34af7b1 100644 --- a/wiki/translations/fr/Timber_Workbench.md +++ b/wiki/translations/fr/Timber_Workbench.md @@ -1,5 +1,5 @@ # Timber Workbench/fr - **Cet établi n'est plus développé ni maintenu.** +**Cet établi n'est plus développé ni maintenu.** ## Introduction @@ -73,3 +73,6 @@ See [How to install macros](How_to_install_macros.md) [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Timber Workbench/fr diff --git a/wiki/translations/fr/Toothbrush_Head_Stand.md b/wiki/translations/fr/Toothbrush_Head_Stand.md index 52746c03a2..9c00b1b14b 100644 --- a/wiki/translations/fr/Toothbrush_Head_Stand.md +++ b/wiki/translations/fr/Toothbrush_Head_Stand.md @@ -1,5 +1,5 @@ # Toothbrush Head Stand/fr - {{TutorialInfo/fr|Topic=Modélisation|Level=Débutant|Author=[EmmanuelG](User:EmmanuelG.md)|Time=1 heure|FCVersion=0.16 ou ultérieure|Files=[https://www.thingiverse.com/thing:2403310 Thingiverse 2403310]}} +{{TutorialInfo/fr|Topic=Modélisation|Level=Débutant|Author=[EmmanuelG](User:EmmanuelG.md)|Time=1 heure|FCVersion=0.16 ou ultérieure|Files=[https://www.thingiverse.com/thing:2403310 Thingiverse 2403310]}} ## Un problème de la vie courante @@ -424,4 +424,7 @@ Parfait ! {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Toothbrush Head Stand/fr diff --git a/wiki/translations/fr/TopoShape_API.md b/wiki/translations/fr/TopoShape_API.md index 8b91915c30..f451c77ee6 100644 --- a/wiki/translations/fr/TopoShape_API.md +++ b/wiki/translations/fr/TopoShape_API.md @@ -1,5 +1,5 @@ # TopoShape API/fr - {{VeryImportantMessage | (novembre 2018) Ces informations peuvent être incomplètes et obsolètes. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement].}} +{{VeryImportantMessage | (novembre 2018) Ces informations peuvent être incomplètes et obsolètes. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement].}} L\'objet TopoShape est l\'objet principal du Module Part. Tous les types de formes (fil, face, solide, etc\...) du module part sont des TopoShapes, et, partagent les attributs, et, méthodes suivantes. ```python @@ -231,3 +231,6 @@ Ces points s\'appliquent aux bords (TopoShapeEdge). [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > TopoShape API/fr diff --git a/wiki/translations/fr/Topological_Naming_Project.md b/wiki/translations/fr/Topological_Naming_Project.md index 8917e7d5d1..2f02bd9efa 100644 --- a/wiki/translations/fr/Topological_Naming_Project.md +++ b/wiki/translations/fr/Topological_Naming_Project.md @@ -1,6 +1,4 @@ # Topological Naming Project/fr - - Cette page est consacrée à la description de l\'idée du projet Google Summer of Code concernant la dénomination topologique. Pour le sujet en lui-même, veuillez consulter [Projet de dénomination](Naming_project/fr.md). La page wiki liée peut également servir de point de départ pour aborder le problème de dénomination. ## Aperçu @@ -42,3 +40,6 @@ Difficile ### Information Supplémentaire [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > Topological Naming Project/fr diff --git a/wiki/translations/fr/Topological_data_scripting.md b/wiki/translations/fr/Topological_data_scripting.md index 5a35ffc269..cc430928ce 100644 --- a/wiki/translations/fr/Topological_data_scripting.md +++ b/wiki/translations/fr/Topological_data_scripting.md @@ -1,7 +1,4 @@ # Topological data scripting/fr - - - {{TOCright}} ## Introduction @@ -938,3 +935,6 @@ s.read("test.stp") ```{{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting/fr diff --git a/wiki/translations/fr/Topological_naming_problem.md b/wiki/translations/fr/Topological_naming_problem.md index 216f511740..1d30b15cd4 100644 --- a/wiki/translations/fr/Topological_naming_problem.md +++ b/wiki/translations/fr/Topological_naming_problem.md @@ -1,6 +1,4 @@ # Topological naming problem/fr - - ## Introduction @@ -129,3 +127,6 @@ Les objets de référence, [points](PartDesign_Point/fr.md), [lignes](PartDesign {{TechDraw Tools navi}} {{PartDesign Tools navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Topological naming problem/fr diff --git a/wiki/translations/fr/Tracker.md b/wiki/translations/fr/Tracker.md index 05400c1062..3c97d94c82 100644 --- a/wiki/translations/fr/Tracker.md +++ b/wiki/translations/fr/Tracker.md @@ -1,10 +1,4 @@ # Tracker/fr - - - - - - {{TOCright}} ![](images/Mantis_logo_262x90.png ) @@ -186,3 +180,6 @@ Pour les curieux, voici le regex que MantisBT utilise pour cette opération: [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Tracker/fr diff --git a/wiki/translations/fr/Transient_FEM_analysis.md b/wiki/translations/fr/Transient_FEM_analysis.md index 38191993a7..9c74cd6d4f 100644 --- a/wiki/translations/fr/Transient_FEM_analysis.md +++ b/wiki/translations/fr/Transient_FEM_analysis.md @@ -1,5 +1,5 @@ # Transient FEM analysis/fr - } +} {{TutorialInfo/fr @@ -92,4 +92,7 @@ Dans FreeCAD, nous pouvons utiliser Transient FEM analysis/fr diff --git a/wiki/translations/fr/Translating_an_external_workbench.md b/wiki/translations/fr/Translating_an_external_workbench.md index 22417100c8..0e6f0345ad 100644 --- a/wiki/translations/fr/Translating_an_external_workbench.md +++ b/wiki/translations/fr/Translating_an_external_workbench.md @@ -1,6 +1,4 @@ # Translating an external workbench/fr - - Dans les notes suivantes, `"context"` doit être le nom de votre addon ou de votre atelier, par exemple, `"MySuperAddon"` ou `"DraftPlus"`, etc. Ce contexte permet de regrouper toutes les traductions de votre code sous le même nom, afin qu\'elles soient plus facilement identifiables par les traducteurs. C\'est-à-dire qu\'ils sauront exactement à quel addon ou atelier une chaîne particulière appartient. **Remarque** : Voici un script tout-en-un qui automatise la procédure complète mentionnée ci-dessous (il est tout de même conseillé de lire la procédure pour savoir ce que le script doit faire) : . @@ -222,3 +220,6 @@ Yorik maintient un script pratique pour l\'atelier BIM, qui peut rassembler, cha [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Translating an external workbench/fr diff --git a/wiki/translations/fr/Transportation_Workbench.md b/wiki/translations/fr/Transportation_Workbench.md index 71cfad332b..aa25e4b124 100644 --- a/wiki/translations/fr/Transportation_Workbench.md +++ b/wiki/translations/fr/Transportation_Workbench.md @@ -1,6 +1,4 @@ # Transportation Workbench/fr - - ## Description Un sous-ensemble de l\'[atelier Génie civil](Civil_Engineering_Workbench/fr.md) @@ -19,3 +17,6 @@ Un sous-ensemble de l\'[atelier Génie civil](Civil_Engineering_Workbench/fr.md) [Category:Documentation](Category:Documentation.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Transportation Workbench/fr diff --git a/wiki/translations/fr/Tree_view.md b/wiki/translations/fr/Tree_view.md index 6fe79717c0..fbe85b1660 100644 --- a/wiki/translations/fr/Tree_view.md +++ b/wiki/translations/fr/Tree_view.md @@ -1,5 +1,5 @@ # Tree view/fr - {{TOCright}} +{{TOCright}} ## Introduction @@ -147,4 +147,7 @@ Cela indique que l\'objet présente une erreur qui doit être corrigée. Après {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Tree view/fr diff --git a/wiki/translations/fr/Tutorial_FreeCAD_POV_ray.md b/wiki/translations/fr/Tutorial_FreeCAD_POV_ray.md index 6584842079..15d4f6d520 100644 --- a/wiki/translations/fr/Tutorial_FreeCAD_POV_ray.md +++ b/wiki/translations/fr/Tutorial_FreeCAD_POV_ray.md @@ -1,7 +1,4 @@ # Tutorial FreeCAD POV ray/fr - - - **L'[atelier Raytracing](Raytracing_Workbench/fr.md) a été remplacé par le nouvel [https://github.com/FreeCAD/FreeCAD-render atelier Render], qui est destiné à le remplacer. Il ne doit pas être confondu avec [Le module de rendus](Render_project.md), arrêté et dépassé. Le Render Workbench peut être installé via le [Gestionnaire d'Addon](Std_AddonMgr/fr.md). L'information ici est fournie parce que par défaut FreeCAD est toujours livré (à partir de 0.19-24276) avec l'atelier Raytracing et parce que le nouveau atelier devrait fondamentalement fonctionner de la même manière** . @@ -840,4 +837,7 @@ Il est conseillé à l\'utilisateur de lire la documentation de POV-Ray, ainsi q {{Tutorials navi -}} {{Raytracing Tools navi}} +}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > Tutorial FreeCAD POV ray/fr diff --git a/wiki/translations/fr/Tutorial_Render_with_Blender.md b/wiki/translations/fr/Tutorial_Render_with_Blender.md index 65169fe114..5bedc2f5ae 100644 --- a/wiki/translations/fr/Tutorial_Render_with_Blender.md +++ b/wiki/translations/fr/Tutorial_Render_with_Blender.md @@ -1,7 +1,4 @@ # Tutorial Render with Blender/fr - - - {{TutorialInfo/fr |Topic=Rendering |Level=Intermédiaire @@ -336,4 +333,7 @@ D\'autre part, Cycles est un véritable moteur de rendu par lancer de rayons, ce Les deux moteurs de rendu peuvent être utilisés pour tirer parti des avantages de chacun. Dans de nombreux cas, la scène peut être rapidement préparée et testée avec EEVEE pour obtenir des rendus préliminaires; Ensuite, la même scène peut être utilisée avec des modifications mineures avec Cycles afin de produire un rendu final de meilleure qualité. En particulier, lorsqu\'une scène configurée avec EEVEE sera utilisée avec Cycles, la valeur et la position des lumières peuvent devoir être ajustées car les deux moteurs de rendu traitent la lumière de différentes manières. -L\'obtention de bons résultats dépend fortement des options de rendu, des matériaux et de l\'éclairage. Le shader de matériau `Principled BSDF` est une solution générique qui fonctionne bien dans de nombreux cas, cependant, pour produire des résultats vraiment photoréalistes, l\'utilisation de textures et de textures normales, ainsi que d\'un éclairage soigné de la scène est toujours très importante . {{Tutorials navi}} {{Raytracing Tools navi}} +L\'obtention de bons résultats dépend fortement des options de rendu, des matériaux et de l\'éclairage. Le shader de matériau `Principled BSDF` est une solution générique qui fonctionne bien dans de nombreux cas, cependant, pour produire des résultats vraiment photoréalistes, l\'utilisation de textures et de textures normales, ainsi que d\'un éclairage soigné de la scène est toujours très importante . {{Tutorials navi}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > Tutorial Render with Blender/fr diff --git a/wiki/translations/fr/Tutorial_custom_placing_of_windows_and_doors.md b/wiki/translations/fr/Tutorial_custom_placing_of_windows_and_doors.md index f07ddd62b9..29cde95937 100644 --- a/wiki/translations/fr/Tutorial_custom_placing_of_windows_and_doors.md +++ b/wiki/translations/fr/Tutorial_custom_placing_of_windows_and_doors.md @@ -1,5 +1,5 @@ # Tutorial custom placing of windows and doors/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic=Architecture |Level=Intermédiaire |Time=60 minutes @@ -328,4 +328,7 @@ abs(N) = 1 = sqrt(sin^2(angle) + cos^2(angle) + z^2) {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Tutorial custom placing of windows and doors/fr diff --git a/wiki/translations/fr/Tutorial_for_open_windows.md b/wiki/translations/fr/Tutorial_for_open_windows.md index 1d402afa25..94d54426d5 100644 --- a/wiki/translations/fr/Tutorial_for_open_windows.md +++ b/wiki/translations/fr/Tutorial_for_open_windows.md @@ -1,7 +1,4 @@ # Tutorial for open windows/fr - - - {{TutorialInfo/fr |Topic=Architecture |Level=Débutant @@ -246,4 +243,7 @@ Une interaction plus étroite entre les ateliers est prévue pour les futures ve {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Tutorial for open windows/fr diff --git a/wiki/translations/fr/Tutorials.md b/wiki/translations/fr/Tutorials.md index 9038113627..f378b28e36 100644 --- a/wiki/translations/fr/Tutorials.md +++ b/wiki/translations/fr/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/fr - - - - - - {{TOCright}} Cette page présente une sélection de tutoriels écrits de bonne qualité. Une liste complète et non triée des tutoriels peut être trouvée dans [:Category:Tutorials/fr](:Category:Tutorials/fr.md), une liste complète et triable peut être trouvée dans le [tableau ci-dessous](Tutorials/fr#Tutoriels_-_liste_complète.md). @@ -339,3 +333,6 @@ Voici une liste de tous les tutoriels qui ne figurent pas dans le manuel **quell [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials/fr]], une liste complète et triable peut être trouvée dans le ](Category:Tutorials/fr]], une liste complète et triable peut être trouvée dans le .md) > Tutorials/fr diff --git a/wiki/translations/fr/UTF_Project.md b/wiki/translations/fr/UTF_Project.md index 171a92e79f..0a2264c101 100644 --- a/wiki/translations/fr/UTF_Project.md +++ b/wiki/translations/fr/UTF_Project.md @@ -1,7 +1,4 @@ # UTF Project/fr - - - ** Ce plan de développement est probablement obsolète. Pour plus d'informations, voir [Plan de développement](Development_roadmap/fr.md).
Si vous n'êtes pas impliqué dans le développement discuté ici :
@@ -44,3 +41,6 @@ Migrer des modules pour exploiter de nouveaux nœuds à l\'aide de [SoText2](htt [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > UTF Project/fr diff --git a/wiki/translations/fr/Ubuntu_Snap.md b/wiki/translations/fr/Ubuntu_Snap.md index 1531063905..3621cf66fe 100644 --- a/wiki/translations/fr/Ubuntu_Snap.md +++ b/wiki/translations/fr/Ubuntu_Snap.md @@ -1,6 +1,4 @@ # Ubuntu Snap/fr - - ## Introduction Un package [Ubuntu Snap](Ubuntu_Snap/.md), ou simplement [Snap](Ubuntu_Snap/fr.md) est un format de distribution similaire à [AppImage](AppImage/fr.md) en ce qu\'il est destiné à être un \"package installable universel\" pour déployer le logiciel pour les systèmes Linux. Les snaps ont été introduits par Ubuntu mais ils sont destinés à fonctionner dans toutes les distributions Linux tant que le démon Snap, ou `snapd`, est disponible dans le système cible. @@ -37,5 +35,5 @@ Plus d\'informations sur les efforts en cours pour gérer Snaps. - [0.19 Snap Preview a besoin de \"testeurs\"](https://forum.freecadweb.org/viewtopic.php?f=4&t=46044), ancien Snap de **vejmarie** - [Discussion: Discussion: état du composant logiciel Snap (Snap Packaging)](https://forum.freecadweb.org/viewtopic.php?f=42&t=46853), version plus récente du Snap par **ppd** - - +--- +[documentation index](../README.md) > Ubuntu Snap/fr diff --git a/wiki/translations/fr/Units.md b/wiki/translations/fr/Units.md index 669bfdde24..b1026a3638 100644 --- a/wiki/translations/fr/Units.md +++ b/wiki/translations/fr/Units.md @@ -1,6 +1,4 @@ # Units/fr - - Un peu de lecture sur les unités : - [Métrologie](https://fr.wikipedia.org/wiki/M%C3%A9trologie) @@ -305,4 +303,7 @@ Il devient ainsi très facile, de gérer un grand nombre de propriétés avec n\ {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Units/fr diff --git a/wiki/translations/fr/Units_project.md b/wiki/translations/fr/Units_project.md index 42aea84072..ac077de69d 100644 --- a/wiki/translations/fr/Units_project.md +++ b/wiki/translations/fr/Units_project.md @@ -1,7 +1,4 @@ # Units project/fr - - - ** Ce plan de développement est probablement obsolète. Pour plus d'informations, voir [Plan de développement](Development_roadmap/fr.md).
Si vous n'êtes pas impliqué dans le développement discuté ici :
@@ -55,3 +52,6 @@ Finalement, créer un éditeur de propriétés pour **PropertyUntit** gérable p [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Units project/fr diff --git a/wiki/translations/fr/User_hub.md b/wiki/translations/fr/User_hub.md index ef143fb5f9..6838e7cb43 100644 --- a/wiki/translations/fr/User_hub.md +++ b/wiki/translations/fr/User_hub.md @@ -1,5 +1,4 @@ -# User hub/fr - +# User hub/fr ------------------------------------------------------------------------ @@ -122,3 +121,6 @@ Il s\'agit de l\'aide en ligne officielle de FreeCAD. Veuillez noter que l\'ense [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/fr diff --git a/wiki/translations/fr/VRML_Preparation_for_Robot_Simulation.md b/wiki/translations/fr/VRML_Preparation_for_Robot_Simulation.md index db3208efc9..de6726d9c8 100644 --- a/wiki/translations/fr/VRML_Preparation_for_Robot_Simulation.md +++ b/wiki/translations/fr/VRML_Preparation_for_Robot_Simulation.md @@ -1,7 +1,4 @@ # VRML Preparation for Robot Simulation/fr - - -
@@ -457,3 +454,6 @@ Voici un **patch** pour obtenir un fichier **vrml** convenant à la simulation d [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > VRML Preparation for Robot Simulation/fr diff --git a/wiki/translations/fr/Vector_API.md b/wiki/translations/fr/Vector_API.md index f61f25a391..1ff809274d 100644 --- a/wiki/translations/fr/Vector_API.md +++ b/wiki/translations/fr/Vector_API.md @@ -1,5 +1,5 @@ # Vector API/fr - {{VeryImportantMessage |(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir [Source documentation](Source_documentation/fr.md).}} +{{VeryImportantMessage |(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir [Source documentation](Source_documentation/fr.md).}} Les vecteurs sont utilisés partout dans FreeCAD. @@ -68,3 +68,6 @@ print v3.Length [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Vector API/fr diff --git a/wiki/translations/fr/Video_tutorials.md b/wiki/translations/fr/Video_tutorials.md index 57eb4c76b9..4fadcaa953 100644 --- a/wiki/translations/fr/Video_tutorials.md +++ b/wiki/translations/fr/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials/fr - - - **Faites attention à la version de FreeCAD utilisée dans le tutoriel. Si un didacticiel utilise une version plus ancienne du programme, le processus de modélisation général peut toujours fonctionner, mais certains outils peuvent avoir changé dans les nouvelles versions. N'ajoutez pas de vidéos créées avec la version 0.16 ou antérieure, ces versions étant considérées comme obsolètes.** Ci-dessous vous trouverez une collection de tutoriels vidéos faite par les utilisateurs et développeurs de FreeCAD. Consultez le sujet [Tutorials and videos (EN)](https://forum.freecadweb.org/viewforum.php?f=36) du forum pour plus de liens. [YouTube](https://YouTube.com) est une source intéressante de didacticiels vidéo. @@ -95,3 +92,6 @@ Pour plus à voir [Tutoriels vidéo obsolètes](Video_tutorials_obsolete/fr.md). }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Video tutorials/fr diff --git a/wiki/translations/fr/Video_tutorials_for_architectural_design.md b/wiki/translations/fr/Video_tutorials_for_architectural_design.md index a2931b5147..1f10739e4e 100644 --- a/wiki/translations/fr/Video_tutorials_for_architectural_design.md +++ b/wiki/translations/fr/Video_tutorials_for_architectural_design.md @@ -1,5 +1,5 @@ # Video tutorials for architectural design/fr - **Faites attention à la version de FreeCAD utilisée dans le tutoriel. Si un didacticiel utilise une version plus ancienne du programme, le processus de modélisation général peut toujours fonctionner, mais certains outils peuvent avoir changé dans les nouvelles versions. N'ajoutez pas de vidéos créées avec la version 0.16 ou antérieure, ces versions étant considérées comme obsolètes.** +**Faites attention à la version de FreeCAD utilisée dans le tutoriel. Si un didacticiel utilise une version plus ancienne du programme, le processus de modélisation général peut toujours fonctionner, mais certains outils peuvent avoir changé dans les nouvelles versions. N'ajoutez pas de vidéos créées avec la version 0.16 ou antérieure, ces versions étant considérées comme obsolètes.** ## Introduction @@ -47,4 +47,7 @@ Vidéos montrant la modélisation de pièces, de maisons, d\'immeubles de bureau {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Video tutorials for architectural design/fr diff --git a/wiki/translations/fr/Video_tutorials_for_product_design.md b/wiki/translations/fr/Video_tutorials_for_product_design.md index 4ecd4d3f31..ab2d897571 100644 --- a/wiki/translations/fr/Video_tutorials_for_product_design.md +++ b/wiki/translations/fr/Video_tutorials_for_product_design.md @@ -1,5 +1,5 @@ # Video tutorials for product design/fr - **Faites attention à la version de FreeCAD utilisée dans le tutoriel. Si un tutoriel utilise une version plus ancienne du programme, le processus de modélisation général peut toujours fonctionner mais certains outils peuvent avoir changé dans les nouvelles versions. N'ajoutez pas de vidéos créées avec la version 0.16 ou antérieure, ces versions étant considérées comme obsolètes.** +**Faites attention à la version de FreeCAD utilisée dans le tutoriel. Si un tutoriel utilise une version plus ancienne du programme, le processus de modélisation général peut toujours fonctionner mais certains outils peuvent avoir changé dans les nouvelles versions. N'ajoutez pas de vidéos créées avec la version 0.16 ou antérieure, ces versions étant considérées comme obsolètes.** ## Introduction @@ -80,3 +80,6 @@ Bien que cette liste se concentre sur le contenu allemand, bon nombre de ces cha {{Userdocnavi }} + +--- +[documentation index](../README.md) > Video tutorials for product design/fr diff --git a/wiki/translations/fr/Video_tutorials_obsolete.md b/wiki/translations/fr/Video_tutorials_obsolete.md index 0bf0b471f3..af667827af 100644 --- a/wiki/translations/fr/Video_tutorials_obsolete.md +++ b/wiki/translations/fr/Video_tutorials_obsolete.md @@ -1,5 +1,5 @@ # Video tutorials obsolete/fr - **Dans FreeCAD 0.17, l'[atelier PartDesign](PartDesign_Workbench/fr.md) a reçu des mises à jour importantes qui modifient la façon dont les solides sont créés par rapport aux versions précédentes. Les nouveaux utilisateurs doivent regarder des vidéos pour les versions 0.17 et supérieures pour comprendre le concept de travail avec un [PartDesign Corps](PartDesign_Body/fr.md) et des objets de référence.** **Ces vidéos sont considérées comme obsolètes car elles utilisent la v0.16 ou des versions antérieures du programme.** +**Dans FreeCAD 0.17, l'[atelier PartDesign](PartDesign_Workbench/fr.md) a reçu des mises à jour importantes qui modifient la façon dont les solides sont créés par rapport aux versions précédentes. Les nouveaux utilisateurs doivent regarder des vidéos pour les versions 0.17 et supérieures pour comprendre le concept de travail avec un [PartDesign Corps](PartDesign_Body/fr.md) et des objets de référence.** **Ces vidéos sont considérées comme obsolètes car elles utilisent la v0.16 ou des versions antérieures du programme.** ## Introduction @@ -56,4 +56,7 @@ For up-to-date videos on different topics, see the [video tutorials](video_tutor {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Video tutorials obsolete/fr diff --git a/wiki/translations/fr/ViewObject_API.md b/wiki/translations/fr/ViewObject_API.md index 4addb83fbb..53f9016bf2 100644 --- a/wiki/translations/fr/ViewObject_API.md +++ b/wiki/translations/fr/ViewObject_API.md @@ -1,5 +1,5 @@ # ViewObject API/fr - **(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir[Source documentation](Source_documentation/fr.md).** +**(Octobre 2019) Ne modifiez pas cette page. L'information est incomplète et obsolète. Pour la dernière API, consultez la [https://www.freecadweb.org/api documentation de l'API générée automatiquement], ou générez la documentation vous-même, voir[Source documentation](Source_documentation/fr.md).** Lorsque l\'interface graphique est en place, chaque objet dans le document FreeCAD a une ViewObject associé, qui réside dans le document homologue FreeCAD Gui. Un ViewObject peut être récupéré par deux moyens. Exemple: ```python @@ -84,3 +84,6 @@ print myViewObj.IV [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > ViewObject API/fr diff --git a/wiki/translations/fr/View_Measure_Clear_All.md b/wiki/translations/fr/View_Measure_Clear_All.md index 575bea1f7b..d0b278f52a 100644 --- a/wiki/translations/fr/View_Measure_Clear_All.md +++ b/wiki/translations/fr/View_Measure_Clear_All.md @@ -7,6 +7,8 @@ SeeAlso:[Affichage Afficher les mesures](View_Measure_Toggle_All/fr.md), [Part Basculer tout](Part_Measure_Toggle_All/fr.md), [Part Effacer toute mesure](Part_Measure_Clear_All/fr.md) --- +# View Measure Clear All/fr + ## Description La commande **Affichage Supprimer les mesures** efface les mesures de la [vue 3D](3D_view/fr.md) active de [Part](Part_Workbench/fr.md). @@ -27,4 +29,7 @@ La commande **Affichage Supprimer les mesures** efface les mesures de la [vue 3D {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > View Measure Clear All/fr diff --git a/wiki/translations/fr/View_Measure_Toggle_All.md b/wiki/translations/fr/View_Measure_Toggle_All.md index 30158fb0ec..19c57cd365 100644 --- a/wiki/translations/fr/View_Measure_Toggle_All.md +++ b/wiki/translations/fr/View_Measure_Toggle_All.md @@ -7,6 +7,8 @@ SeeAlso:[Affichage Supprimer les mesures](View_Measure_Clear_All/fr.md), [Part Basculer tout](Part_Measure_Toggle_All/fr.md), [Part Effacer toute mesure](Part_Measure_Clear_All/fr.md) --- +# View Measure Toggle All/fr + ## Description La commande **Affichage Affichage les mesures** active/désactive les mesures de la [vue 3D](3D_view/fr.md) active de [Part](Part_Workbench/fr.md). @@ -27,4 +29,7 @@ La commande **Affichage Affichage les mesures** active/désactive les mesures de {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > View Measure Toggle All/fr diff --git a/wiki/translations/fr/Viewprovider.md b/wiki/translations/fr/Viewprovider.md index 74b18164cc..864db8fa03 100644 --- a/wiki/translations/fr/Viewprovider.md +++ b/wiki/translations/fr/Viewprovider.md @@ -1,6 +1,4 @@ # Viewprovider/fr - - ## Introduction Les [Viewproviders](Viewprovider/fr.md) sont des classes qui définissent l\'apparence des objets dans la [vue en arborescence](tree_view/fr.md) et la [vue 3D](3D_view/fr.md) et comment ces derniers interagiront avec certaines actions graphiques telles que la [sélection](selection/fr.md). @@ -140,3 +138,6 @@ Voir divers exemples dans [Icône personnalisée dans l\'arborescence](Custom_ic }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Viewprovider/fr diff --git a/wiki/translations/fr/WebTools_BimServer.md b/wiki/translations/fr/WebTools_BimServer.md index 50cc855c2c..19f6862670 100644 --- a/wiki/translations/fr/WebTools_BimServer.md +++ b/wiki/translations/fr/WebTools_BimServer.md @@ -6,6 +6,8 @@ Workbenches:[WebTools](WebTools_Workbench/fr.md) --- +# WebTools BimServer/fr + **A partir de FreeCAD v0.17, cet outil a été enlevé de l'atelier Arch et fait maintenant partie de l'[atelier externe WebTools](WebTools_Workbench/fr.md) qui peut être installé depuis le menu Outils → [Gestionnaire d'Addons](Addon_Manager/fr.md). ** @@ -49,3 +51,6 @@ Pentru a utiliza această comandă, trebuie îndeplinite următoarele condiții: - Choisissez l\'objet **Objet racine** que vous souhaitez télécharger. Il doit s\'agir d\'un [Arch Site](Arch_Site/fr.md) ou d\'un [Arch Bâtiment](Arch_Building/fr.md). Seuls les objets appartenant à cet objet racine seront téléchargés. - Ecrivez un **Commentaire**, ce sera la description (nom) de la révision. - Appuyez sur le bouton **Upload**. Une boîte de dialogue s\'ouvre pour vous permettre de sauvegarder le fichier IFC produit à l\'emplacement de votre choix avant de le télécharger. Si vous appuyez sur **Annuler**, le fichier sera enregistré sous un nom temporaire dans le répertoire temporaire du système. + +--- +[documentation index](../README.md) > WebTools BimServer/fr diff --git a/wiki/translations/fr/WebTools_Git.md b/wiki/translations/fr/WebTools_Git.md index 3015c29912..3add744ad1 100644 --- a/wiki/translations/fr/WebTools_Git.md +++ b/wiki/translations/fr/WebTools_Git.md @@ -7,6 +7,8 @@ Version:0.17 --- +# WebTools Git/fr + **A partir de FreeCAD v0.17, cet outil a été enlevé de l'atelier Arch et fait maintenant partie de l'[atelier externe WebTools](WebTools_Workbench/fr.md) qui peut être installé depuis le menu Outils → [Gestionnaire d'Addons](Addon_Manager/fr.md). ** @@ -120,3 +122,6 @@ Alternativement, si vous souhaitez invoquer fcinfo avec des arguments (par exemp [diff "fcinfo"] textconv = sh -c '/path/to/fcinfo --gui "$0"' + +--- +[documentation index](../README.md) > WebTools Git/fr diff --git a/wiki/translations/fr/WebTools_Sketchfab.md b/wiki/translations/fr/WebTools_Sketchfab.md index ccb1542475..bf5d70c323 100644 --- a/wiki/translations/fr/WebTools_Sketchfab.md +++ b/wiki/translations/fr/WebTools_Sketchfab.md @@ -9,6 +9,8 @@ SeeAlso: --- +# WebTools Sketchfab/fr + ## Description Cet outil permet l\'exportation et le téléchargement d\'objets vers votre compte [SketchFab](http://www.sketchfab.com). {{Version/fr|0.17}} @@ -31,3 +33,6 @@ Cet outil permet l\'exportation et le téléchargement d\'objets vers votre comp - Une fois votre modèle chargé, Sketchfab offre une interface assez avancée permettant de configurer davantage les matériaux, l'éclairage et l'environnement. - Lorsque vous appuyez sur le bouton \"Télécharger\", une fois le téléchargement terminé, si tout s\'est bien passé, le bouton se transforme en bouton \"Afficher votre modèle en ligne\". Ce bouton vous permet d\'accéder directement à la page du modèle de Sketchfab. - Certains formats, comme OBJ, sont interprétés différemment par Sketchfab et FreeCAD. FreeCAD considère que l\'axe Z est dirigé vers le haut, tandis que Sketchfab considère qu\'il pointe vers la personne derrière l\'écran. Pour remédier à cela, une fois le téléchargement terminé, l\'exportateur utilisera l\'API Sketchfab pour faire pivoter le modèle à sa position correcte. Si cette opération échoue, vous en serez averti, mais votre modèle sera toujours correctement téléchargé. Vous pouvez le faire pivoter manuellement dans l\'interface Sketchfab en appuyant sur la flèche à droite de l\'axe \"X\" dans l\'onglet d\'orientation du modèle. + +--- +[documentation index](../README.md) > WebTools Sketchfab/fr diff --git a/wiki/translations/fr/WebTools_Workbench.md b/wiki/translations/fr/WebTools_Workbench.md index 6ba6a6b66e..fdef0d7bc0 100644 --- a/wiki/translations/fr/WebTools_Workbench.md +++ b/wiki/translations/fr/WebTools_Workbench.md @@ -1,5 +1,4 @@ -# WebTools Workbench/fr - Icône de l\'atelier externe WebTools +# Icône de l\'atelier externe WebTools WebTools Workbench/fr ## Vue d\'ensemble @@ -23,3 +22,6 @@ Cet atelier peut être installé à partir du [Gestionnaire d\'Addon](Std_AddonM [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > WebTools Workbench/fr diff --git a/wiki/translations/fr/Web_Workbench.md b/wiki/translations/fr/Web_Workbench.md index ff4c68a48a..4d6132b575 100644 --- a/wiki/translations/fr/Web_Workbench.md +++ b/wiki/translations/fr/Web_Workbench.md @@ -1,10 +1,4 @@ -# Web Workbench/fr - - - - - -Icône de l\'atelier Web +# Icône de l\'atelier Web Web Workbench/fr ## Introduction @@ -19,3 +13,6 @@ L\'[atelier Web](Web_Workbench/fr.md) n\'est pas vraiment un atelier de modélis [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/fr diff --git a/wiki/translations/fr/Whiffle_Ball_tutorial.md b/wiki/translations/fr/Whiffle_Ball_tutorial.md index eb2b6cbbb7..f27624a695 100644 --- a/wiki/translations/fr/Whiffle_Ball_tutorial.md +++ b/wiki/translations/fr/Whiffle_Ball_tutorial.md @@ -1,5 +1,5 @@ # Whiffle Ball tutorial/fr - {{TutorialInfo/fr +{{TutorialInfo/fr |Topic= Conception de produits |Level= Débutant |Time=30 minutes @@ -246,4 +246,7 @@ Nous dupliquerons à nouveau les deux objets précédents pour les utiliser à n {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Whiffle Ball tutorial/fr diff --git a/wiki/translations/fr/WikiPages.md b/wiki/translations/fr/WikiPages.md index debe5dc0f8..8cc562efd4 100644 --- a/wiki/translations/fr/WikiPages.md +++ b/wiki/translations/fr/WikiPages.md @@ -1,5 +1,5 @@ # WikiPages/fr - {{TOCright}} +{{TOCright}} Cette page est une prolongation de la page [Help:Editing](Help:Editing.md) et donne des directives communes pour la rédaction et la mise à jour de la documentation du wiki FreeCAD. Elle résume plusieurs discussions et séances de réflexion. @@ -528,3 +528,6 @@ Voir [Glossaire](Glossary/fr.md). - [Deutsch](German_Translation.md) [Category:Documentation](Category:Documentation.md) [Category:Wiki](Category:Wiki.md) [Category:Wiki Documentation](Category:Wiki_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > WikiPages/fr diff --git a/wiki/translations/fr/WikiRobots.md b/wiki/translations/fr/WikiRobots.md index add5df37ee..053c635835 100644 --- a/wiki/translations/fr/WikiRobots.md +++ b/wiki/translations/fr/WikiRobots.md @@ -1,5 +1,5 @@ # WikiRobots/fr - **Les robots sont intrinsèquement dangereux car ils peuvent automatiquement faire beaucoup de dégâts. Utilisez-les avec une extrême prudence!** +**Les robots sont intrinsèquement dangereux car ils peuvent automatiquement faire beaucoup de dégâts. Utilisez-les avec une extrême prudence!** ## Présentation @@ -154,3 +154,6 @@ Remplacer une chaîne dans toutes les pages listées dans la catégorie Arch (co {{SystemInput|python3 pwb.py replace.py -cat:Arch}} [Category:Arch](Category:Arch.md) [Category:Administration](Category:Administration.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > WikiRobots/fr diff --git a/wiki/translations/fr/Wikihouse_porting_tutorial.md b/wiki/translations/fr/Wikihouse_porting_tutorial.md index 520b6178d5..a04dedc9c1 100644 --- a/wiki/translations/fr/Wikihouse_porting_tutorial.md +++ b/wiki/translations/fr/Wikihouse_porting_tutorial.md @@ -1,7 +1,4 @@ # Wikihouse porting tutorial/fr - - - {{TutorialInfo/fr |Topic= Tutoriel de portage Wikihouse |Level= Intermediaire/Avancé @@ -135,3 +132,6 @@ The last step is simply to select all the sheets, then export them to DXF from m ![](images/Arch_Wikihouse_04.jpg ) These files are ready to send to the shops that will do the actual cut. It would be possible to generate the G-Code to be sent to the CNC machine directly from FreeCAD too, but that is matter for another tutorial. + +--- +[documentation index](../README.md) > Wikihouse porting tutorial/fr diff --git a/wiki/translations/fr/Wished_tools.md b/wiki/translations/fr/Wished_tools.md index 83abea91ae..eecfb54448 100644 --- a/wiki/translations/fr/Wished_tools.md +++ b/wiki/translations/fr/Wished_tools.md @@ -1,5 +1,5 @@ # Wished tools/fr - Je commence cette page pour tenter de recueillir les souhaits des utilisateurs finaux sur les outils spécifiques qu\'ils aimeraient trouver dans FreeCAD. Plusieurs utilisateurs de CAO ont déjà discuté avec moi des outils de CAO, de ce qu\'ils utilisent le plus, de ce qu\'ils aimeraient voir dans FreeCAD, de ce dont ils ne pourraient pas se passer, etc\... Bien que FreeCAD ne soit pas destiné à remplacer spécifiquement tout autre logiciel de CAO célèbre (en particulier celui qui commence par Auto et se termine par la CAO), je pense que cela peut devenir une bonne référence pour connaître les attentes des utilisateurs finaux, et peut-être pour donner la priorité à certaines choses par rapport à d\'autres dans le développement. +Je commence cette page pour tenter de recueillir les souhaits des utilisateurs finaux sur les outils spécifiques qu\'ils aimeraient trouver dans FreeCAD. Plusieurs utilisateurs de CAO ont déjà discuté avec moi des outils de CAO, de ce qu\'ils utilisent le plus, de ce qu\'ils aimeraient voir dans FreeCAD, de ce dont ils ne pourraient pas se passer, etc\... Bien que FreeCAD ne soit pas destiné à remplacer spécifiquement tout autre logiciel de CAO célèbre (en particulier celui qui commence par Auto et se termine par la CAO), je pense que cela peut devenir une bonne référence pour connaître les attentes des utilisateurs finaux, et peut-être pour donner la priorité à certaines choses par rapport à d\'autres dans le développement. Si vous êtes un utilisateur de CAO et que vous souhaitez ajouter des éléments ici, n\'hésitez pas à les éditer, nous serions heureux d\'avoir votre avis ici. @@ -79,3 +79,6 @@ Si vous êtes un utilisateur de CAO et que vous souhaitez ajouter des éléments - Assemblies [Category:Hubs](Category:Hubs.md) [Category:Roadmap](Category:Roadmap.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Wished tools/fr diff --git a/wiki/translations/fr/Workbench_Concept.md b/wiki/translations/fr/Workbench_Concept.md index 2e85e546e7..c89047b382 100644 --- a/wiki/translations/fr/Workbench_Concept.md +++ b/wiki/translations/fr/Workbench_Concept.md @@ -1,2 +1,5 @@ # Workbench Concept/fr 1. REDIRECT [Workbenches/fr](Workbenches/fr.md) + +--- +[documentation index](../README.md) > Workbench Concept/fr diff --git a/wiki/translations/fr/Workbench_creation.md b/wiki/translations/fr/Workbench_creation.md index 0717a15305..7856d21578 100644 --- a/wiki/translations/fr/Workbench_creation.md +++ b/wiki/translations/fr/Workbench_creation.md @@ -1,10 +1,4 @@ # Workbench creation/fr - - - - - - {{TOCright}} ## Introduction @@ -350,3 +344,6 @@ os.remove(qrc_filename) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > Workbench creation/fr diff --git a/wiki/translations/fr/Workbenches.md b/wiki/translations/fr/Workbenches.md index 63e83504cd..549e723529 100644 --- a/wiki/translations/fr/Workbenches.md +++ b/wiki/translations/fr/Workbenches.md @@ -1,9 +1,4 @@ # Workbenches/fr - - - - - FreeCAD, à l\'instar de nombreuses applications de conception modernes telles que [Revit](wikipedia:Revit.md) ou [CATIA](wikipedia:CATIA.md), est basé sur le concept d\'[Atelier](https://fr.wikipedia.org/wiki/Établi). Un atelier peut être considéré comme un ensemble d'outils spécialement regroupés pour une tâche donnée. Dans un atelier de fabrication de meubles traditionnels, vous disposerez d\'une table de travail pour la personne qui travaille le bois, d\'une autre pour celui qui travaille avec des pièces métalliques et peut-être d\'une troisième pour le gars qui monte toutes les pièces ensemble. Le même principe s\'applique dans FreeCAD. Les outils sont regroupés sous des ateliers, selon les tâches auxquelles ils sont destinés. @@ -85,3 +80,6 @@ Vous pouvez activer un atelier par le menu **Vue → Atelier**. [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/fr diff --git a/wiki/translations/fr/Workfeature_Workbench.md b/wiki/translations/fr/Workfeature_Workbench.md index 9ff6f6d240..693fd3fbce 100644 --- a/wiki/translations/fr/Workfeature_Workbench.md +++ b/wiki/translations/fr/Workfeature_Workbench.md @@ -1,7 +1,4 @@ -# Workfeature Workbench/fr - - -Icône de l\'atelier Workfeature +# Icône de l\'atelier Workfeature Workfeature Workbench/fr {{Note|Note|Fusionner avec [Macro WorkFeatures](Macro_WorkFeatures/fr.md)??}} @@ -78,3 +75,6 @@ Cet atelier peut être installé à partir du [Gestionnaire d\'Addon](Std_AddonM - [Ateliers externes](External_workbenches/fr.md) [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Workfeature Workbench/fr diff --git a/wiki/translations/fr/Wrapping_a_Cplusplus_class_in_Python.md b/wiki/translations/fr/Wrapping_a_Cplusplus_class_in_Python.md index da741a5893..b7592c54ad 100644 --- a/wiki/translations/fr/Wrapping_a_Cplusplus_class_in_Python.md +++ b/wiki/translations/fr/Wrapping_a_Cplusplus_class_in_Python.md @@ -1,7 +1,4 @@ # Wrapping a Cplusplus class in Python/fr - - - **Cet article est un article en cours. Merci d'y apporter vos connaissances!** @@ -141,3 +138,6 @@ PyAPI_FUNC(int) PyArg_VaParseTupleAndKeywords (PyObject *, PyObject *, const cha }} [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Wrapping a Cplusplus class in Python/fr diff --git a/wiki/translations/hr/About_FreeCAD.md b/wiki/translations/hr/About_FreeCAD.md index ecd94e53fb..f725faae72 100644 --- a/wiki/translations/hr/About_FreeCAD.md +++ b/wiki/translations/hr/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/hr - - - +# About FreeCAD/hr
@@ -40,3 +37,6 @@ FreeCAD je podržavan i razvijan od zajednice oduševljenih programera i korisni [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/hr diff --git a/wiki/translations/hr/Arch_3Views.md b/wiki/translations/hr/Arch_3Views.md index 6e664fa18b..03f473d06c 100644 --- a/wiki/translations/hr/Arch_3Views.md +++ b/wiki/translations/hr/Arch_3Views.md @@ -6,6 +6,8 @@ SeeAlso:[[Arch SplitMesh]], [[Arch MeshToShape]] --- +# Arch 3Views/hr +
@@ -80,8 +82,5 @@ mesh_obj.ViewObject.Visibility = False
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3Views/hr diff --git a/wiki/translations/hr/Arch_API.md b/wiki/translations/hr/Arch_API.md index 3f5a726c4d..0ceea90eb5 100644 --- a/wiki/translations/hr/Arch_API.md +++ b/wiki/translations/hr/Arch_API.md @@ -1,5 +1,5 @@ # Arch API/hr - **(November 2018) The Arch API is listed in the [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) The Arch API is listed in the [https://www.freecadweb.org/api autogenerated API documentation].** The functions of the API are part of the [Arch Workbench](Arch_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `Arch` module has been imported. The [Reinforcement Addon](Reinforcement_Addon.md) has its own [Reinforcement API](Reinforcement_API.md). @@ -18,3 +18,6 @@ Arch.makeWall(baseline, length=None, width=200, height=2000) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch API/hr diff --git a/wiki/translations/hr/Arch_Door.md b/wiki/translations/hr/Arch_Door.md index 63276a33ea..a94a031b4a 100644 --- a/wiki/translations/hr/Arch_Door.md +++ b/wiki/translations/hr/Arch_Door.md @@ -8,6 +8,8 @@ Icon:Arch_Window.svg --- +# Arch Door/hr +
@@ -32,5 +34,5 @@ All properties are described in the [Arch Window](Arch_Window.md) tool. Door *Door being constructed from a [Sketch](Sketcher_Workbench.md)* - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Door/hr diff --git a/wiki/translations/hr/Arch_Module.md b/wiki/translations/hr/Arch_Module.md index d95ef729c1..32d7b28e73 100644 --- a/wiki/translations/hr/Arch_Module.md +++ b/wiki/translations/hr/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/hr 1. REDIRECT [Arch\_Workbench/hr](Arch_Workbench/hr.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/hr diff --git a/wiki/translations/hr/Arch_Preferences.md b/wiki/translations/hr/Arch_Preferences.md index d4d8cd86e7..1ed50d60d2 100644 --- a/wiki/translations/hr/Arch_Preferences.md +++ b/wiki/translations/hr/Arch_Preferences.md @@ -1,6 +1,4 @@ # Arch Preferences/hr - - The preferences for the [Arch Workbench](Arch_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), in the menu **Edit → Preferences → Arch**. There are two tabs: General settings, and Defaults. @@ -17,3 +15,6 @@ There are two tabs: General settings, and Defaults. [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Preferences/hr diff --git a/wiki/translations/hr/Arch_Reference.md b/wiki/translations/hr/Arch_Reference.md index fa06ffdb67..5235dae53e 100644 --- a/wiki/translations/hr/Arch_Reference.md +++ b/wiki/translations/hr/Arch_Reference.md @@ -1,3 +1,4 @@ +# Arch Reference/hr --- - GuiCommand:/hr Name:Arch Reference Name/hr:Arch Reference Workbenches:[MenuLocation:Arch → Reference Shortcut: SeeAlso:[[Arch BuildingPart](Arch_Workbench___Arch]].md)--- @@ -48,8 +49,5 @@ import Arch Arch.makeReference("/path/to/some/file.FSCtd","myPart") ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Reference/hr diff --git a/wiki/translations/hr/Arch_Structure.md b/wiki/translations/hr/Arch_Structure.md index 404c7e7427..07307fced7 100644 --- a/wiki/translations/hr/Arch_Structure.md +++ b/wiki/translations/hr/Arch_Structure.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Rebar](Arch_Rebar.md) --- +# Arch Structure/hr + @@ -128,8 +130,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/hr diff --git a/wiki/translations/hr/Arch_Workbench.md b/wiki/translations/hr/Arch_Workbench.md index 788989c8e6..533d3bf76d 100644 --- a/wiki/translations/hr/Arch_Workbench.md +++ b/wiki/translations/hr/Arch_Workbench.md @@ -1,7 +1,4 @@ # Arch Workbench/hr - - - {{docnav/hr|[Workbenches/hr](Workbenches/hr.md)|[Nacrt 2D Moduli](Draft_Workbench/hr.md)|IconL=|IconR=Workbench_Draft.svg}} Arch workbench icon @@ -144,3 +141,6 @@ The Arch module can be used in [Python](Python.md) scripts and [macros](macros.m [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/hr diff --git a/wiki/translations/hr/BIM_Classification.md b/wiki/translations/hr/BIM_Classification.md index 8e05fe5627..31cfa4b675 100644 --- a/wiki/translations/hr/BIM_Classification.md +++ b/wiki/translations/hr/BIM_Classification.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Classification --- +# BIM Classification/hr + ## Opis @@ -23,3 +25,6 @@ The classifications manager allows you to attribute a standard class to a BIM ob - Install one or more classification standard XML or IFC files as explained above - If you wish to add or edit a class for an object, select that object and press the BIM Classification button - If you wish to add or edit a class for a material, don\'t select anything and press the BIM Classification button. You will be able to browse the materials directly from the classification manager window + +--- +[documentation index](../README.md) > BIM Classification/hr diff --git a/wiki/translations/hr/BIM_Copy.md b/wiki/translations/hr/BIM_Copy.md index 02228a0b6c..eb583f2725 100644 --- a/wiki/translations/hr/BIM_Copy.md +++ b/wiki/translations/hr/BIM_Copy.md @@ -7,6 +7,11 @@ SeeAlso:[Draft Move](Draft_Move.md) --- +# BIM Copy/hr + ## Opis The BIM Copy tool is a shortcut to the standard [Draft Move](Draft_Move.md) tool, but starting with its **Copy** option turned on, therefore allowing to create a copy of an object and place it at a given location, in one go. + +--- +[documentation index](../README.md) > BIM Copy/hr diff --git a/wiki/translations/hr/BIM_IfcElements.md b/wiki/translations/hr/BIM_IfcElements.md index 218db44eb3..08fc398274 100644 --- a/wiki/translations/hr/BIM_IfcElements.md +++ b/wiki/translations/hr/BIM_IfcElements.md @@ -7,6 +7,8 @@ SeeAlso:[[BIM IfcProperties]],[[BIM IfcQuantities]] --- +# BIM IfcElements/hr + ## Opis @@ -19,3 +21,6 @@ With it, you can: - Rename objects by double-clicking their name - Change their IFC type either by clicking an individual type or, if more than one is selected, using the \"change type to:\" drop-down menu - Change their material either by clicking an individual material or, if more than one is selected, using the \"change material to:\" drop-down menu + +--- +[documentation index](../README.md) > BIM IfcElements/hr diff --git a/wiki/translations/hr/BIM_Levels.md b/wiki/translations/hr/BIM_Levels.md index c67a8abee1..68765d25f5 100644 --- a/wiki/translations/hr/BIM_Levels.md +++ b/wiki/translations/hr/BIM_Levels.md @@ -1,2 +1,5 @@ # BIM Levels/hr 1. REDIRECT [BIM\_Views/hr](BIM_Views/hr.md) + +--- +[documentation index](../README.md) > BIM Levels/hr diff --git a/wiki/translations/hr/BIM_Views.md b/wiki/translations/hr/BIM_Views.md index 970b6ffee0..452eb28dfb 100644 --- a/wiki/translations/hr/BIM_Views.md +++ b/wiki/translations/hr/BIM_Views.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Views --- +# BIM Views/hr + ## Opis The BIM views and levels manager is a dockable window that opens below the normal tree view, that contains all the [BuildingParts](Arch_BuildingPart.md) and [Working Plane Proxies](Draft_WorkingPlaneProxy.md) of your model. @@ -36,3 +38,6 @@ The BIM views manager will show all the levels (building parts) and working plan }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > BIM Views/hr diff --git a/wiki/translations/hr/BIM_Windows.md b/wiki/translations/hr/BIM_Windows.md index d302264504..77ca744512 100644 --- a/wiki/translations/hr/BIM_Windows.md +++ b/wiki/translations/hr/BIM_Windows.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Windows --- +# BIM Windows/hr + ## Opis The BIM windows manager dialog allows you to browse and modify all the [windows and doors](Arch_Window.md) of your project together. This is often more convenient than editing them one by one, and allows you to make sure that they all have the parameters you require correctly set, such as tag, dimensions, description or material. @@ -20,3 +22,6 @@ The BIM windows manager dialog allows you to browse and modify all the [windows }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > BIM Windows/hr diff --git a/wiki/translations/hr/BIM_Workbench.md b/wiki/translations/hr/BIM_Workbench.md index 2467c09e5e..6fd8c8d5cd 100644 --- a/wiki/translations/hr/BIM_Workbench.md +++ b/wiki/translations/hr/BIM_Workbench.md @@ -1,8 +1,4 @@ -# BIM Workbench/hr - - - -BIM External Workbench icon +# BIM External Workbench icon BIM Workbench/hr {{TOCright}} @@ -187,3 +183,6 @@ New workbenches are in development, stay tuned! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > BIM Workbench/hr diff --git a/wiki/translations/hr/Basic_Part_Design_Tutorial.md b/wiki/translations/hr/Basic_Part_Design_Tutorial.md index 4fc6283e01..a057e2b348 100644 --- a/wiki/translations/hr/Basic_Part_Design_Tutorial.md +++ b/wiki/translations/hr/Basic_Part_Design_Tutorial.md @@ -1,7 +1,4 @@ # Basic Part Design Tutorial/hr - - -
@@ -151,4 +148,7 @@ This tutorial and your model are complete. {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Part Design Tutorial/hr diff --git a/wiki/translations/hr/Basic_Part_Design_Tutorial_017.md b/wiki/translations/hr/Basic_Part_Design_Tutorial_017.md index 9163d0899e..cfa725b346 100644 --- a/wiki/translations/hr/Basic_Part_Design_Tutorial_017.md +++ b/wiki/translations/hr/Basic_Part_Design_Tutorial_017.md @@ -1,2 +1,5 @@ # Basic Part Design Tutorial 017/hr 1. REDIRECT [Basic\_Part\_Design\_Tutorial/hr](Basic_Part_Design_Tutorial/hr.md) + +--- +[documentation index](../README.md) > Basic Part Design Tutorial 017/hr diff --git a/wiki/translations/hr/Branding.md b/wiki/translations/hr/Branding.md index 168c6e3484..a4f7afe50f 100644 --- a/wiki/translations/hr/Branding.md +++ b/wiki/translations/hr/Branding.md @@ -1,10 +1,4 @@ # Branding/hr - - - - - - {{TOCright}} ## Pregled @@ -100,3 +94,6 @@ All listed tags are optional. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Branding/hr diff --git a/wiki/translations/hr/CadQuery_Workbench.md b/wiki/translations/hr/CadQuery_Workbench.md index 479ead3b37..055a97368d 100644 --- a/wiki/translations/hr/CadQuery_Workbench.md +++ b/wiki/translations/hr/CadQuery_Workbench.md @@ -1,5 +1,4 @@ -# CadQuery Workbench/hr - CadQuery workbench icon +# CadQuery workbench icon CadQuery Workbench/hr **(January 2021) @@ -58,3 +57,6 @@ The latest version of CadQuery is no longer using FreeCAD and is not compatible [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > CadQuery Workbench/hr diff --git a/wiki/translations/hr/Category:API.md b/wiki/translations/hr/Category:API.md index 86ba9f6884..24241b83ee 100644 --- a/wiki/translations/hr/Category:API.md +++ b/wiki/translations/hr/Category:API.md @@ -1,5 +1,4 @@ # Category:API/hr - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** This category gathers articles that list objects and methods available for [Python](Python.md) programming. @@ -9,3 +8,6 @@ This category gathers articles that list objects and methods available for [Pyth [Arch API/hr](Arch_API/hr.md) [Category:Categories/hr](Category:Categories/hr.md) + +--- +[documentation index](../README.md) > Category:API/hr diff --git a/wiki/translations/hr/Category:Addons.md b/wiki/translations/hr/Category:Addons.md index 08e60d8536..4185d76645 100644 --- a/wiki/translations/hr/Category:Addons.md +++ b/wiki/translations/hr/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/hr - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [BIM Workbench/hr](BIM_Workbench/hr.md) , [CadQuery Workbench/hr](CadQuery_Workbench/hr.md) , [Cfd Workbench/hr](Cfd_Workbench/hr.md) , [Civil Engineering Workbench/hr](Civil_Engineering_Workbench/hr.md) , [ExplodedAssembly Workbench/hr](ExplodedAssembly_Workbench/hr.md) , [Flamingo Workbench/hr](Flamingo_Workbench/hr.md) , [KicadStepUp Workbench/hr](KicadStepUp_Workbench/hr.md) , [Manipulator Workbench/hr](Manipulator_Workbench/hr.md) , [PCB Workbench/hr](PCB_Workbench/hr.md) , [Plot Module/hr](Plot_Module/hr.md) , [SheetMetal Workbench/hr](SheetMetal_Workbench/hr.md) , [Ship Workbench/hr](Ship_Workbench/hr.md) , [Symbols Library Workbench/hr](Symbols_Library_Workbench/hr.md) , [Timber Workbench/hr](Timber_Workbench/hr.md) , [Workfeature Workbench/hr](Workfeature_Workbench/hr.md) , [Category:Categories](Category:Categories.md) [Category:External Workbenches/hr](Category:External_Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Addons/hr diff --git a/wiki/translations/hr/Category:Administration.md b/wiki/translations/hr/Category:Administration.md index 2e46a3e43d..98186fec46 100644 --- a/wiki/translations/hr/Category:Administration.md +++ b/wiki/translations/hr/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/hr](Template:Arch_Tools_navi/hr.md) , [Template:Drawing Tools navi/hr](Template:Drawing_Tools_navi/hr.md) , [Template:FEM Tools navi/hr](Template:FEM_Tools_navi/hr.md) , [Template:Mesh Tools navi/hr](Template:Mesh_Tools_navi/hr.md) , [Template:OpenSCAD Tools navi/hr](Template:OpenSCAD_Tools_navi/hr.md) , [Organization chart/hr](Organization_chart/hr.md) , [Template:Part Tools navi/hr](Template:Part_Tools_navi/hr.md) , [Template:PartDesign Tools navi/hr](Template:PartDesign_Tools_navi/hr.md) , [Template:Path Tools navi/hr](Template:Path_Tools_navi/hr.md) , [Template:Plot Tools navi/hr](Template:Plot_Tools_navi/hr.md) , [Template:Raytracing Tools navi/hr](Template:Raytracing_Tools_navi/hr.md) , [Template:Robot Tools navi/hr](Template:Robot_Tools_navi/hr.md) , [Template:Ship Tools navi/hr](Template:Ship_Tools_navi/hr.md) , [Template:Sketcher Tools navi/hr](Template:Sketcher_Tools_navi/hr.md) , , [Category:Categories/hr](Category:Categories/hr.md) [Category:UnfinishedDocu/hr](Category:UnfinishedDocu/hr.md) [Category:Wiki/hr](Category:Wiki/hr.md) + +--- +[documentation index](../README.md) > Category:Administration/hr diff --git a/wiki/translations/hr/Category:Arch.md b/wiki/translations/hr/Category:Arch.md index 52c2b21326..5d04c56b15 100644 --- a/wiki/translations/hr/Category:Arch.md +++ b/wiki/translations/hr/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Arch 3Views/hr](Arch_3Views/hr.md) , [Arch API/hr](Arch_API/hr.md) , [Arch Door/hr](Arch_Door/hr.md) , [Arch Preferences/hr](Arch_Preferences/hr.md) , [Arch Reference/hr](Arch_Reference/hr.md) , [Arch Structure/hr](Arch_Structure/hr.md) , [Template:Arch Tools navi/hr](Template:Arch_Tools_navi/hr.md) , [Arch Workbench/hr](Arch_Workbench/hr.md) , [Manual:BIM modeling/hr](Manual:BIM_modeling/hr.md) , [Tutorial for open windows/hr](Tutorial_for_open_windows/hr.md) [Category:User Documentation/hr](Category:User_Documentation/hr.md) [Category:BIM/hr](Category:BIM/hr.md) + +--- +[documentation index](../README.md) > Category:Arch/hr diff --git a/wiki/translations/hr/Category:BIM.md b/wiki/translations/hr/Category:BIM.md index 84a07ee6c0..e07bd80659 100644 --- a/wiki/translations/hr/Category:BIM.md +++ b/wiki/translations/hr/Category:BIM.md @@ -6,3 +6,6 @@ This category is for pages related to building information management (BIM). [BIM Workbench/hr](BIM_Workbench/hr.md) , [Manual:BIM modeling/hr](Manual:BIM_modeling/hr.md) , [Category:User Documentation/hr](Category:User_Documentation/hr.md) [Category:Arch/hr](Category:Arch/hr.md) + +--- +[documentation index](../README.md) > Category:BIM/hr diff --git a/wiki/translations/hr/Category:Categories.md b/wiki/translations/hr/Category:Categories.md index 0321918c0d..cee417a770 100644 --- a/wiki/translations/hr/Category:Categories.md +++ b/wiki/translations/hr/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , , , , , , , , [Category:Categories/hr](Category:Categories/hr.md) [Category:Addons/hr](Category:Addons/hr.md) [Category:Administration/hr](Category:Administration/hr.md) [Category:API/hr](Category:API/hr.md) [Category:Categories/hr](Category:Categories/hr.md) [Category:Command Reference/hr](Category:Command_Reference/hr.md) [Category:Developer Documentation/hr](Category:Developer_Documentation/hr.md) [Category:Developer/hr](Category:Developer/hr.md) [Category:Documentation/hr](Category:Documentation/hr.md) [Category:Hubs/hr](Category:Hubs/hr.md) [Category:Macros/hr](Category:Macros/hr.md) [Category:News/hr](Category:News/hr.md) [Category:Template/hr](Category:Template/hr.md) [Category:Tutorials/hr](Category:Tutorials/hr.md) [Category:UnfinishedDocu/hr](Category:UnfinishedDocu/hr.md) [Category:Wiki/hr](Category:Wiki/hr.md) + +--- +[documentation index](../README.md) > Category:Categories/hr diff --git a/wiki/translations/hr/Category:Command_Reference.md b/wiki/translations/hr/Category:Command_Reference.md index 2e27d1b34d..4c7732e2af 100644 --- a/wiki/translations/hr/Category:Command_Reference.md +++ b/wiki/translations/hr/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD [Command](Command.md). [Arch 3Views/hr](Arch_3Views/hr.md) , [Arch Door/hr](Arch_Door/hr.md) , [Arch Reference/hr](Arch_Reference/hr.md) , [Arch Structure/hr](Arch_Structure/hr.md) , [BIM Classification/hr](BIM_Classification/hr.md) , [BIM Copy/hr](BIM_Copy/hr.md) , [BIM IfcElements/hr](BIM_IfcElements/hr.md) , [BIM Views/hr](BIM_Views/hr.md) , [BIM Windows/hr](BIM_Windows/hr.md) , [Draft Draft2Sketch/hr](Draft_Draft2Sketch/hr.md) , [Template:GuiCommand/hr](Template:GuiCommand/hr.md) , [Part CrossSections/hr](Part_CrossSections/hr.md) , [PartDesign NewSketch/hr](PartDesign_NewSketch/hr.md) , [PartDesign Pad/hr](PartDesign_Pad/hr.md) , [PartDesign PolarPattern/hr](PartDesign_PolarPattern/hr.md) , [Path Shape/hr](Path_Shape/hr.md) , [Sketcher CarbonCopy/hr](Sketcher_CarbonCopy/hr.md) , [Sketcher Clone/hr](Sketcher_Clone/hr.md) , [Sketcher CloseShape/hr](Sketcher_CloseShape/hr.md) , [Sketcher ConnectLines/hr](Sketcher_ConnectLines/hr.md) , [Sketcher Copy/hr](Sketcher_Copy/hr.md) , [Sketcher CreateArc/hr](Sketcher_CreateArc/hr.md) , [Sketcher CreateCircle/hr](Sketcher_CreateCircle/hr.md) , [Sketcher CreateFillet/hr](Sketcher_CreateFillet/hr.md) , [Sketcher CreateLine/hr](Sketcher_CreateLine/hr.md) , [Sketcher CreatePeriodicBSpline/hr](Sketcher_CreatePeriodicBSpline/hr.md) , [Sketcher CreatePoint/hr](Sketcher_CreatePoint/hr.md) , [Sketcher CreateSquare/hr](Sketcher_CreateSquare/hr.md) , [Sketcher DeleteAllConstraints/hr](Sketcher_DeleteAllConstraints/hr.md) , [Sketcher DeleteAllGeometry/hr](Sketcher_DeleteAllGeometry/hr.md) , [Sketcher EditSketch/hr](Sketcher_EditSketch/hr.md) , [Sketcher MapSketch/hr](Sketcher_MapSketch/hr.md) , [Sketcher Move/hr](Sketcher_Move/hr.md) , [Sketcher NewSketch/hr](Sketcher_NewSketch/hr.md) , [Sketcher RectangularArray/hr](Sketcher_RectangularArray/hr.md) , [Sketcher ReorientSketch/hr](Sketcher_ReorientSketch/hr.md) , [Sketcher RestoreInternalAlignmentGeometry/hr](Sketcher_RestoreInternalAlignmentGeometry/hr.md) , [Sketcher SelectConstraints/hr](Sketcher_SelectConstraints/hr.md) , [Sketcher StopOperation/hr](Sketcher_StopOperation/hr.md) , [Sketcher Symmetry/hr](Sketcher_Symmetry/hr.md) , [Sketcher Trimming/hr](Sketcher_Trimming/hr.md) , [Sketcher ValidateSketch/hr](Sketcher_ValidateSketch/hr.md) , [Sketcher ViewSection/hr](Sketcher_ViewSection/hr.md) , [Sketcher ViewSketch/hr](Sketcher_ViewSketch/hr.md) , [Std About/hr](Std_About/hr.md) , [Std AddonMgr/hr](Std_AddonMgr/hr.md) , [Std Quit/hr](Std_Quit/hr.md) , [Std WhatsThis/hr](Std_WhatsThis/hr.md) , [Surface CurveOnMesh/hr](Surface_CurveOnMesh/hr.md) , [Surface ExtendFace/hr](Surface_ExtendFace/hr.md) , [Surface Filling/hr](Surface_Filling/hr.md) , [Surface GeomFillSurface/hr](Surface_GeomFillSurface/hr.md) , [TechDraw 3PtAngleDimension/hr](TechDraw_3PtAngleDimension/hr.md) [Category:Categories/hr](Category:Categories/hr.md) + +--- +[documentation index](../README.md) > Category:Command Reference/hr diff --git a/wiki/translations/hr/Category:Common_Questions.md b/wiki/translations/hr/Category:Common_Questions.md index 4b970b61c7..cf36f4e939 100644 --- a/wiki/translations/hr/Category:Common_Questions.md +++ b/wiki/translations/hr/Category:Common_Questions.md @@ -4,3 +4,6 @@ This category has links to common questions on how to do something in FC. This i ### Contents: [Feature editing/hr](Feature_editing/hr.md) , [Help FreeCAD/hr](Help_FreeCAD/hr.md) , [Installing on Linux/hr](Installing_on_Linux/hr.md) , [Std About/hr](Std_About/hr.md) , [Video tutorials/hr](Video_tutorials/hr.md) + +--- +[documentation index](../README.md) > Category:Common Questions/hr diff --git a/wiki/translations/hr/Category:Developer.md b/wiki/translations/hr/Category:Developer.md index 6ac1a8c67c..bf1029cb55 100644 --- a/wiki/translations/hr/Category:Developer.md +++ b/wiki/translations/hr/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Compile on MacOS/hr](Compile_on_MacOS/hr.md) , [Compile on Windows/hr](Compile_on_Windows/hr.md) , [Compiling (Speeding up)/hr](Compiling_(Speeding_up)/hr.md) , [Compiling/hr](Compiling/hr.md) , [Organization chart/hr](Organization_chart/hr.md) [Category:Categories/hr](Category:Categories/hr.md) + +--- +[documentation index](../README.md) > Category:Developer/hr diff --git a/wiki/translations/hr/Category:Developer_Documentation.md b/wiki/translations/hr/Category:Developer_Documentation.md index e950ba1e10..329c7d526a 100644 --- a/wiki/translations/hr/Category:Developer_Documentation.md +++ b/wiki/translations/hr/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Branding/hr](Branding/hr.md) , [Compile on MacOS/hr](Compile_on_MacOS/hr.md) , [Compile on Windows/hr](Compile_on_Windows/hr.md) , [Compiling (Speeding up)/hr](Compiling_(Speeding_up)/hr.md) , [Compiling/hr](Compiling/hr.md) , [Debugging/hr](Debugging/hr.md) , [Developer hub/hr](Developer_hub/hr.md) , [Help FreeCAD/hr](Help_FreeCAD/hr.md) , [How to install macros/hr](How_to_install_macros/hr.md) , [Installing on Linux/hr](Installing_on_Linux/hr.md) , [Localisation Sidebar/hr](Localisation_Sidebar/hr.md) , [Localisation/hr](Localisation/hr.md) , [Source documentation/hr](Source_documentation/hr.md) [Category:Documentation/hr](Category:Documentation/hr.md) [Category:Categories/hr](Category:Categories/hr.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/hr diff --git a/wiki/translations/hr/Category:Documentation.md b/wiki/translations/hr/Category:Documentation.md index f67d409bc4..868f298857 100644 --- a/wiki/translations/hr/Category:Documentation.md +++ b/wiki/translations/hr/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [Civil Engineering Workbench/hr](Civil_Engineering_Workbench/hr.md) , [Frequently asked questions/hr](Frequently_asked_questions/hr.md) , [Help FreeCAD/hr](Help_FreeCAD/hr.md) , [Main Page/hr](Main_Page/hr.md) , [Online Help Toc/hr](Online_Help_Toc/hr.md) , [Release notes 0.17/hr](Release_notes_0.17/hr.md) , , , , [Category:Categories/hr](Category:Categories/hr.md) [Category:Developer Documentation/hr](Category:Developer_Documentation/hr.md) [Category:Poweruser Documentation/hr](Category:Poweruser_Documentation/hr.md) [Category:User Documentation/hr](Category:User_Documentation/hr.md) [Category:Wiki/hr](Category:Wiki/hr.md) + +--- +[documentation index](../README.md) > Category:Documentation/hr diff --git a/wiki/translations/hr/Category:Draft.md b/wiki/translations/hr/Category:Draft.md index cd2c71a220..4f7f88a6bc 100644 --- a/wiki/translations/hr/Category:Draft.md +++ b/wiki/translations/hr/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/hr\" and \"Workben [Draft Draft2Sketch/hr](Draft_Draft2Sketch/hr.md) , [Draft Preferences/hr](Draft_Preferences/hr.md) , [Draft Workbench/hr](Draft_Workbench/hr.md) , [Tutorial for open windows/hr](Tutorial_for_open_windows/hr.md) [Category:User Documentation/hr](Category:User_Documentation/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Draft/hr diff --git a/wiki/translations/hr/Category:Drawing.md b/wiki/translations/hr/Category:Drawing.md index f41678cc42..29bd9cf3a8 100644 --- a/wiki/translations/hr/Category:Drawing.md +++ b/wiki/translations/hr/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/hr](Drawing_Workbenc [Template:Drawing Tools navi/hr](Template:Drawing_Tools_navi/hr.md) , [Drawing Workbench/hr](Drawing_Workbench/hr.md) [Category:Obsolete Workbenches/hr](Category:Obsolete_Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Drawing/hr diff --git a/wiki/translations/hr/Category:External_Workbenches.md b/wiki/translations/hr/Category:External_Workbenches.md index cc3f405f24..9d3c45e5c2 100644 --- a/wiki/translations/hr/Category:External_Workbenches.md +++ b/wiki/translations/hr/Category:External_Workbenches.md @@ -4,3 +4,6 @@ [BIM Workbench/hr](BIM_Workbench/hr.md) , [CadQuery Workbench/hr](CadQuery_Workbench/hr.md) , [Cfd Workbench/hr](Cfd_Workbench/hr.md) , [ExplodedAssembly Workbench/hr](ExplodedAssembly_Workbench/hr.md) , [Flamingo Workbench/hr](Flamingo_Workbench/hr.md) , [KicadStepUp Workbench/hr](KicadStepUp_Workbench/hr.md) , [Manipulator Workbench/hr](Manipulator_Workbench/hr.md) , [PCB Workbench/hr](PCB_Workbench/hr.md) , [Plot Module/hr](Plot_Module/hr.md) , [Ship Workbench/hr](Ship_Workbench/hr.md) , [Symbols Library Workbench/hr](Symbols_Library_Workbench/hr.md) , [Timber Workbench/hr](Timber_Workbench/hr.md) , [Workfeature Workbench/hr](Workfeature_Workbench/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) [Category:Addons/hr](Category:Addons/hr.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/hr diff --git a/wiki/translations/hr/Category:FEM.md b/wiki/translations/hr/Category:FEM.md index 37d419f23b..8a1230c449 100644 --- a/wiki/translations/hr/Category:FEM.md +++ b/wiki/translations/hr/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/hr](FEM_Workbench/hr.md) [FEM Solver/hr](FEM_Solver/hr.md) , [Template:FEM Tools navi/hr](Template:FEM_Tools_navi/hr.md) , [FEM Workbench/hr](FEM_Workbench/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:FEM/hr diff --git a/wiki/translations/hr/Category:File_Formats.md b/wiki/translations/hr/Category:File_Formats.md index eebcde44f3..a06975a5f9 100644 --- a/wiki/translations/hr/Category:File_Formats.md +++ b/wiki/translations/hr/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [FreeCAD and DXF Import/hr](FreeCAD_and_DXF_Import/hr.md) , [Import Export/hr](Import_Export/hr.md) + +--- +[documentation index](../README.md) > Category:File Formats/hr diff --git a/wiki/translations/hr/Category:Glossary.md b/wiki/translations/hr/Category:Glossary.md index b6c20f359e..7eb1fa43e3 100644 --- a/wiki/translations/hr/Category:Glossary.md +++ b/wiki/translations/hr/Category:Glossary.md @@ -4,3 +4,6 @@ This category tracks pages that explain definitions of words related to FreeCAD ### Contents: [Glossary/hr](Glossary/hr.md) + +--- +[documentation index](../README.md) > Category:Glossary/hr diff --git a/wiki/translations/hr/Category:Hubs.md b/wiki/translations/hr/Category:Hubs.md index d3e3b9cee6..436b7c59c2 100644 --- a/wiki/translations/hr/Category:Hubs.md +++ b/wiki/translations/hr/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Developer hub/hr](Developer_hub/hr.md) , [Power users hub/hr](Power_users_hub/hr.md) , [User hub/hr](User_hub/hr.md) [Category:Categories/hr](Category:Categories/hr.md) + +--- +[documentation index](../README.md) > Category:Hubs/hr diff --git a/wiki/translations/hr/Category:Image.md b/wiki/translations/hr/Category:Image.md index fda721a3a2..1d424c8a5e 100644 --- a/wiki/translations/hr/Category:Image.md +++ b/wiki/translations/hr/Category:Image.md @@ -6,3 +6,6 @@ This category lists pages related to the [Image Workbench/hr](Image_Workbench/hr [Image Workbench/hr](Image_Workbench/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Image/hr diff --git a/wiki/translations/hr/Category:Inspection.md b/wiki/translations/hr/Category:Inspection.md index 127e1d2c26..635967db5d 100644 --- a/wiki/translations/hr/Category:Inspection.md +++ b/wiki/translations/hr/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Inspection Workbench/hr](Inspection_Workbench/hr.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection/hr diff --git a/wiki/translations/hr/Category:Macros.md b/wiki/translations/hr/Category:Macros.md index bb23b36049..04b08a69cb 100644 --- a/wiki/translations/hr/Category:Macros.md +++ b/wiki/translations/hr/Category:Macros.md @@ -6,3 +6,6 @@ This category contains macros to extend your FreeCAD installation with new funct [Macro Apothem Based Prism GUI/hr](Macro_Apothem_Based_Prism_GUI/hr.md) , [Macro Automatic drawing/hr](Macro_Automatic_drawing/hr.md) , [Macro Center Align Objects with Faces or Edges/hr](Macro_Center_Align_Objects_with_Faces_or_Edges/hr.md) , [Macro CenterOfMass/hr](Macro_CenterOfMass/hr.md) , [Macro cross section/hr](Macro_cross_section/hr.md) , [Macro Delta xyz/hr](Macro_Delta_xyz/hr.md) , [Macro FC element selector/hr](Macro_FC_element_selector/hr.md) , [Macro FCSpring Helix Variable/hr](Macro_FCSpring_Helix_Variable/hr.md) , [Macro FCTreeView/hr](Macro_FCTreeView/hr.md) , [Macro Mouse over cb/hr](Macro_Mouse_over_cb/hr.md) , [Macro PropertyMemo/hr](Macro_PropertyMemo/hr.md) , [Macro Section/hr](Macro_Section/hr.md) , [Macro Select Hovering/hr](Macro_Select_Hovering/hr.md) , [Macro Unbind Numpad Shortcuts/hr](Macro_Unbind_Numpad_Shortcuts/hr.md) , [Template:Macro/hr](Template:Macro/hr.md) , [Macros recipes/hr](Macros_recipes/hr.md) [Category:Categories/hr](Category:Categories/hr.md) + +--- +[documentation index](../README.md) > Category:Macros/hr diff --git a/wiki/translations/hr/Category:Mesh.md b/wiki/translations/hr/Category:Mesh.md index d5d1c720c4..7cc252de46 100644 --- a/wiki/translations/hr/Category:Mesh.md +++ b/wiki/translations/hr/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/hr](Mesh_Workbench/hr. [Template:Mesh Tools navi/hr](Template:Mesh_Tools_navi/hr.md) , [Mesh Workbench/hr](Mesh_Workbench/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Mesh/hr diff --git a/wiki/translations/hr/Category:News.md b/wiki/translations/hr/Category:News.md index c5c751d594..ed6d2b38db 100644 --- a/wiki/translations/hr/Category:News.md +++ b/wiki/translations/hr/Category:News.md @@ -6,3 +6,6 @@ This category contains articles with news and messages about FreeCAD. [Release notes 0.17/hr](Release_notes_0.17/hr.md) [Category:Categories/hr](Category:Categories/hr.md) + +--- +[documentation index](../README.md) > Category:News/hr diff --git a/wiki/translations/hr/Category:Obsolete_Workbenches.md b/wiki/translations/hr/Category:Obsolete_Workbenches.md index 16845e2859..9525f60eb3 100644 --- a/wiki/translations/hr/Category:Obsolete_Workbenches.md +++ b/wiki/translations/hr/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/hr](Drawing_Workbenc [Complete Workbench/hr](Complete_Workbench/hr.md) , [Drawing Workbench/hr](Drawing_Workbench/hr.md) , , [Category:Obsolete Workbenches/hr](Category:Obsolete_Workbenches/hr.md) [Category:Drawing/hr](Category:Drawing/hr.md) [Category:Obsolete Workbenches/hr](Category:Obsolete_Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/hr diff --git a/wiki/translations/hr/Category:OpenSCAD.md b/wiki/translations/hr/Category:OpenSCAD.md index 1986c6983b..721841992e 100644 --- a/wiki/translations/hr/Category:OpenSCAD.md +++ b/wiki/translations/hr/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/hr](OpenSCAD_Workb [OpenSCAD Preferences/hr](OpenSCAD_Preferences/hr.md) , [Template:OpenSCAD Tools navi/hr](Template:OpenSCAD_Tools_navi/hr.md) , [OpenSCAD Workbench/hr](OpenSCAD_Workbench/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/hr diff --git a/wiki/translations/hr/Category:Part.md b/wiki/translations/hr/Category:Part.md index 38f0390172..8206c46320 100644 --- a/wiki/translations/hr/Category:Part.md +++ b/wiki/translations/hr/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/hr](Part_Workbench/hr.m [Part CrossSections/hr](Part_CrossSections/hr.md) , [Part Loft Technical Details/hr](Part_Loft_Technical_Details/hr.md) , [Part Module/hr](Part_Module/hr.md) , [Template:Part Tools navi/hr](Template:Part_Tools_navi/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Part/hr diff --git a/wiki/translations/hr/Category:PartDesign.md b/wiki/translations/hr/Category:PartDesign.md index bc1857fc6b..81782378bd 100644 --- a/wiki/translations/hr/Category:PartDesign.md +++ b/wiki/translations/hr/Category:PartDesign.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/hr](PartDesign_Wo [Basic Part Design Tutorial/hr](Basic_Part_Design_Tutorial/hr.md) , [Feature editing/hr](Feature_editing/hr.md) , [PartDesign NewSketch/hr](PartDesign_NewSketch/hr.md) , [PartDesign Pad/hr](PartDesign_Pad/hr.md) , [PartDesign PolarPattern/hr](PartDesign_PolarPattern/hr.md) , [PartDesign Preferences/hr](PartDesign_Preferences/hr.md) , [Template:PartDesign Tools navi/hr](Template:PartDesign_Tools_navi/hr.md) , [PartDesign Workbench/hr](PartDesign_Workbench/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:PartDesign/hr diff --git a/wiki/translations/hr/Category:Path.md b/wiki/translations/hr/Category:Path.md index a0450d67ea..6c8d021da3 100644 --- a/wiki/translations/hr/Category:Path.md +++ b/wiki/translations/hr/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/hr](PartDesign_Wo [Path Preferences/hr](Path_Preferences/hr.md) , [Path Shape/hr](Path_Shape/hr.md) , [Template:Path Tools navi/hr](Template:Path_Tools_navi/hr.md) , [Path Workbench/hr](Path_Workbench/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Path/hr diff --git a/wiki/translations/hr/Category:Plot.md b/wiki/translations/hr/Category:Plot.md index 0ca9a6d3ca..dadcfa1ffd 100644 --- a/wiki/translations/hr/Category:Plot.md +++ b/wiki/translations/hr/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/hr](Plot_Workbench/hr.m [Plot Module/hr](Plot_Module/hr.md) , [Template:Plot Tools navi/hr](Template:Plot_Tools_navi/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Plot/hr diff --git a/wiki/translations/hr/Category:Points.md b/wiki/translations/hr/Category:Points.md index 1836870ddd..e155bd799d 100644 --- a/wiki/translations/hr/Category:Points.md +++ b/wiki/translations/hr/Category:Points.md @@ -4,3 +4,6 @@ This category lists pages related to the [Points Workbench/hr](Points_Workbench/ ### Contents: [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Points/hr diff --git a/wiki/translations/hr/Category:Poweruser_Documentation.md b/wiki/translations/hr/Category:Poweruser_Documentation.md index 710b274899..bf6c12b95c 100644 --- a/wiki/translations/hr/Category:Poweruser_Documentation.md +++ b/wiki/translations/hr/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Arch API/hr](Arch_API/hr.md) [Category:Documentation/hr](Category:Documentation/hr.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/hr diff --git a/wiki/translations/hr/Category:Preferences.md b/wiki/translations/hr/Category:Preferences.md index e413c02d47..96934b3d17 100644 --- a/wiki/translations/hr/Category:Preferences.md +++ b/wiki/translations/hr/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Arch Preferences/hr](Arch_Preferences/hr.md) , [Customize Toolbars/hr](Customize_Toolbars/hr.md) , [Draft Preferences/hr](Draft_Preferences/hr.md) , [OpenSCAD Preferences/hr](OpenSCAD_Preferences/hr.md) , [PartDesign Preferences/hr](PartDesign_Preferences/hr.md) , [Path Preferences/hr](Path_Preferences/hr.md) , [Preferences Editor/hr](Preferences_Editor/hr.md) , [Sketcher Preferences/hr](Sketcher_Preferences/hr.md) , [TechDraw Preferences/hr](TechDraw_Preferences/hr.md) + +--- +[documentation index](../README.md) > Category:Preferences/hr diff --git a/wiki/translations/hr/Category:Raytracing.md b/wiki/translations/hr/Category:Raytracing.md index df10998b98..1e3410ca7a 100644 --- a/wiki/translations/hr/Category:Raytracing.md +++ b/wiki/translations/hr/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/hr](Raytracing_Wo [Template:Raytracing Tools navi/hr](Template:Raytracing_Tools_navi/hr.md) , [Raytracing Workbench/hr](Raytracing_Workbench/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Raytracing/hr diff --git a/wiki/translations/hr/Category:Robot.md b/wiki/translations/hr/Category:Robot.md index 218d8c5899..f450bcd43f 100644 --- a/wiki/translations/hr/Category:Robot.md +++ b/wiki/translations/hr/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/hr](Robot_Workbench/hr [Template:Robot Tools navi/hr](Template:Robot_Tools_navi/hr.md) , [Robot Workbench/hr](Robot_Workbench/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Robot/hr diff --git a/wiki/translations/hr/Category:Ship.md b/wiki/translations/hr/Category:Ship.md index 8e770442c0..0968c66849 100644 --- a/wiki/translations/hr/Category:Ship.md +++ b/wiki/translations/hr/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/hr](Ship_Workbench/hr.m [Template:Ship Tools navi/hr](Template:Ship_Tools_navi/hr.md) , [Ship Workbench/hr](Ship_Workbench/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Ship/hr diff --git a/wiki/translations/hr/Category:Sketcher.md b/wiki/translations/hr/Category:Sketcher.md index 124d1a98aa..b741507e26 100644 --- a/wiki/translations/hr/Category:Sketcher.md +++ b/wiki/translations/hr/Category:Sketcher.md @@ -6,3 +6,6 @@ This category lists pages related to the [Sketcher Workbench/hr](Sketcher_Workbe [Basic Part Design Tutorial/hr](Basic_Part_Design_Tutorial/hr.md) , [Sketcher CarbonCopy/hr](Sketcher_CarbonCopy/hr.md) , [Sketcher Clone/hr](Sketcher_Clone/hr.md) , [Sketcher CloseShape/hr](Sketcher_CloseShape/hr.md) , [Sketcher ConnectLines/hr](Sketcher_ConnectLines/hr.md) , [Sketcher Copy/hr](Sketcher_Copy/hr.md) , [Sketcher CreateArc/hr](Sketcher_CreateArc/hr.md) , [Sketcher CreateCircle/hr](Sketcher_CreateCircle/hr.md) , [Sketcher CreateFillet/hr](Sketcher_CreateFillet/hr.md) , [Sketcher CreateLine/hr](Sketcher_CreateLine/hr.md) , [Sketcher CreatePeriodicBSpline/hr](Sketcher_CreatePeriodicBSpline/hr.md) , [Sketcher CreatePoint/hr](Sketcher_CreatePoint/hr.md) , [Sketcher CreateSquare/hr](Sketcher_CreateSquare/hr.md) , [Sketcher DeleteAllConstraints/hr](Sketcher_DeleteAllConstraints/hr.md) , [Sketcher DeleteAllGeometry/hr](Sketcher_DeleteAllGeometry/hr.md) , [Sketcher EditSketch/hr](Sketcher_EditSketch/hr.md) , [Sketcher MapSketch/hr](Sketcher_MapSketch/hr.md) , [Sketcher Micro Tutorial - Constraint Practices/hr](Sketcher_Micro_Tutorial_-_Constraint_Practices/hr.md) , [Sketcher Move/hr](Sketcher_Move/hr.md) , [Sketcher NewSketch/hr](Sketcher_NewSketch/hr.md) , [Sketcher Preferences/hr](Sketcher_Preferences/hr.md) , [Sketcher RectangularArray/hr](Sketcher_RectangularArray/hr.md) , [Sketcher ReorientSketch/hr](Sketcher_ReorientSketch/hr.md) , [Sketcher requirement for a sketch/hr](Sketcher_requirement_for_a_sketch/hr.md) , [Sketcher RestoreInternalAlignmentGeometry/hr](Sketcher_RestoreInternalAlignmentGeometry/hr.md) , [Sketcher SelectConstraints/hr](Sketcher_SelectConstraints/hr.md) , [Sketcher StopOperation/hr](Sketcher_StopOperation/hr.md) , [Sketcher Symmetry/hr](Sketcher_Symmetry/hr.md) , [Template:Sketcher Tools navi/hr](Template:Sketcher_Tools_navi/hr.md) , [Sketcher Trimming/hr](Sketcher_Trimming/hr.md) , [Sketcher Tutorial/hr](Sketcher_Tutorial/hr.md) , [Sketcher ValidateSketch/hr](Sketcher_ValidateSketch/hr.md) , [Sketcher ViewSection/hr](Sketcher_ViewSection/hr.md) , [Sketcher ViewSketch/hr](Sketcher_ViewSketch/hr.md) , [Sketcher Workbench/hr](Sketcher_Workbench/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Sketcher/hr diff --git a/wiki/translations/hr/Category:Surface.md b/wiki/translations/hr/Category:Surface.md index 0dc7cef8c7..48940a5966 100644 --- a/wiki/translations/hr/Category:Surface.md +++ b/wiki/translations/hr/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/hr](Surface_Workbenc [Surface CurveOnMesh/hr](Surface_CurveOnMesh/hr.md) , [Surface ExtendFace/hr](Surface_ExtendFace/hr.md) , [Surface Filling/hr](Surface_Filling/hr.md) , [Surface GeomFillSurface/hr](Surface_GeomFillSurface/hr.md) , [Surface Workbench/hr](Surface_Workbench/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:Surface/hr diff --git a/wiki/translations/hr/Category:TechDraw.md b/wiki/translations/hr/Category:TechDraw.md index 6224777e7a..2ceba7147a 100644 --- a/wiki/translations/hr/Category:TechDraw.md +++ b/wiki/translations/hr/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/hr](TechDraw_Workbe [TechDraw 3PtAngleDimension/hr](TechDraw_3PtAngleDimension/hr.md) , [TechDraw Preferences/hr](TechDraw_Preferences/hr.md) , [TechDraw Templates/hr](TechDraw_Templates/hr.md) , [TechDraw Workbench/hr](TechDraw_Workbench/hr.md) , [Tutorial for open windows/hr](Tutorial_for_open_windows/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:TechDraw/hr diff --git a/wiki/translations/hr/Category:Template.md b/wiki/translations/hr/Category:Template.md index 6880c1c25d..6159a959e3 100644 --- a/wiki/translations/hr/Category:Template.md +++ b/wiki/translations/hr/Category:Template.md @@ -8,3 +8,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) , [Category:Categories/hr](Category:Categories/hr.md) [Category:Template:Doc/hr](Category:Template:Doc/hr.md) [Category:Template:Navigation/hr](Category:Template:Navigation/hr.md) + +--- +[documentation index](../README.md) > Category:Template/hr diff --git a/wiki/translations/hr/Category:Template:Doc.md b/wiki/translations/hr/Category:Template:Doc.md index d34dfd3969..f335bfd2b5 100644 --- a/wiki/translations/hr/Category:Template:Doc.md +++ b/wiki/translations/hr/Category:Template:Doc.md @@ -6,3 +6,6 @@ This category lists templates that produce text boxes used for documenting comma [Template:Macro/hr](Template:Macro/hr.md) [Category:Template/hr](Category:Template/hr.md) + +--- +[documentation index](../README.md) > Category:Template:Doc/hr diff --git a/wiki/translations/hr/Category:Template:Navigation.md b/wiki/translations/hr/Category:Template:Navigation.md index 11a49d6813..a81a0ded0c 100644 --- a/wiki/translations/hr/Category:Template:Navigation.md +++ b/wiki/translations/hr/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/hr](Template:Arch_Tools_navi/hr.md) , [Template:Drawing Tools navi/hr](Template:Drawing_Tools_navi/hr.md) , [Template:FEM Tools navi/hr](Template:FEM_Tools_navi/hr.md) , [Template:Mesh Tools navi/hr](Template:Mesh_Tools_navi/hr.md) , [Template:OpenSCAD Tools navi/hr](Template:OpenSCAD_Tools_navi/hr.md) , [Template:Part Tools navi/hr](Template:Part_Tools_navi/hr.md) , [Template:PartDesign Tools navi/hr](Template:PartDesign_Tools_navi/hr.md) , [Template:Path Tools navi/hr](Template:Path_Tools_navi/hr.md) , [Template:Plot Tools navi/hr](Template:Plot_Tools_navi/hr.md) , [Template:Raytracing Tools navi/hr](Template:Raytracing_Tools_navi/hr.md) , [Template:Robot Tools navi/hr](Template:Robot_Tools_navi/hr.md) , [Template:Ship Tools navi/hr](Template:Ship_Tools_navi/hr.md) , [Template:Sketcher Tools navi/hr](Template:Sketcher_Tools_navi/hr.md) [Category:Template/hr](Category:Template/hr.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/hr diff --git a/wiki/translations/hr/Category:Tutorials.md b/wiki/translations/hr/Category:Tutorials.md index b652bbd151..792000ed97 100644 --- a/wiki/translations/hr/Category:Tutorials.md +++ b/wiki/translations/hr/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials](Offsite_tutorials.md) and [Video tutorials [Basic Part Design Tutorial/hr](Basic_Part_Design_Tutorial/hr.md) , [Customize Toolbars/hr](Customize_Toolbars/hr.md) , [Dxf Importer Install/hr](Dxf_Importer_Install/hr.md) , [FEM Beginner tutorial/hr](FEM_Beginner_tutorial/hr.md) , [How to install macros/hr](How_to_install_macros/hr.md) , [Part Loft Technical Details/hr](Part_Loft_Technical_Details/hr.md) , [Sketcher Micro Tutorial - Constraint Practices/hr](Sketcher_Micro_Tutorial_-_Constraint_Practices/hr.md) , [Sketcher requirement for a sketch/hr](Sketcher_requirement_for_a_sketch/hr.md) , [Sketcher Tutorial/hr](Sketcher_Tutorial/hr.md) , [Tutorial for open windows/hr](Tutorial_for_open_windows/hr.md) , [Template:TutorialInfo/hr](Template:TutorialInfo/hr.md) , [Tutorials/hr](Tutorials/hr.md) [Category:Categories/hr](Category:Categories/hr.md) + +--- +[documentation index](../README.md) > Category:Tutorials/hr diff --git a/wiki/translations/hr/Category:UnfinishedDocu.md b/wiki/translations/hr/Category:UnfinishedDocu.md index 97a14e9c68..66a0acf611 100644 --- a/wiki/translations/hr/Category:UnfinishedDocu.md +++ b/wiki/translations/hr/Category:UnfinishedDocu.md @@ -4,3 +4,6 @@ This category contains all Unfinished Documents ### Contents: [Category:Administration/hr](Category:Administration/hr.md) [Category:Categories/hr](Category:Categories/hr.md) + +--- +[documentation index](../README.md) > Category:UnfinishedDocu/hr diff --git a/wiki/translations/hr/Category:User_Documentation.md b/wiki/translations/hr/Category:User_Documentation.md index feafb4568c..071ab8cfbe 100644 --- a/wiki/translations/hr/Category:User_Documentation.md +++ b/wiki/translations/hr/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [About FreeCAD/hr](About_FreeCAD/hr.md) , [Arch 3Views/hr](Arch_3Views/hr.md) , [Arch API/hr](Arch_API/hr.md) , [Arch Door/hr](Arch_Door/hr.md) , [Arch Preferences/hr](Arch_Preferences/hr.md) , [Arch Reference/hr](Arch_Reference/hr.md) , [Arch Structure/hr](Arch_Structure/hr.md) , [Arch Workbench/hr](Arch_Workbench/hr.md) , [Basic Part Design Tutorial/hr](Basic_Part_Design_Tutorial/hr.md) , [BIM Classification/hr](BIM_Classification/hr.md) , [BIM Copy/hr](BIM_Copy/hr.md) , [BIM IfcElements/hr](BIM_IfcElements/hr.md) , [BIM Views/hr](BIM_Views/hr.md) , [BIM Windows/hr](BIM_Windows/hr.md) , [BIM Workbench/hr](BIM_Workbench/hr.md) , [Branding/hr](Branding/hr.md) , [CadQuery Workbench/hr](CadQuery_Workbench/hr.md) , [Cfd Workbench/hr](Cfd_Workbench/hr.md) , [Civil Engineering Workbench/hr](Civil_Engineering_Workbench/hr.md) , [Compile on MacOS/hr](Compile_on_MacOS/hr.md) , [Compile on Windows/hr](Compile_on_Windows/hr.md) , [Compiling (Speeding up)/hr](Compiling_(Speeding_up)/hr.md) , [Compiling/hr](Compiling/hr.md) , [Complete Workbench/hr](Complete_Workbench/hr.md) , [Customize Toolbars/hr](Customize_Toolbars/hr.md) , [Developer hub/hr](Developer_hub/hr.md) , [Document structure/hr](Document_structure/hr.md) , [Download/hr](Download/hr.md) , [Draft Draft2Sketch/hr](Draft_Draft2Sketch/hr.md) , [Draft Preferences/hr](Draft_Preferences/hr.md) , [Draft Workbench/hr](Draft_Workbench/hr.md) , [Drawing Workbench/hr](Drawing_Workbench/hr.md) , [Dxf Importer Install/hr](Dxf_Importer_Install/hr.md) , [ExplodedAssembly Workbench/hr](ExplodedAssembly_Workbench/hr.md) , [Feature editing/hr](Feature_editing/hr.md) , [Feature list/hr](Feature_list/hr.md) , [FEM Beginner tutorial/hr](FEM_Beginner_tutorial/hr.md) , [FEM Solver/hr](FEM_Solver/hr.md) , [FEM Workbench/hr](FEM_Workbench/hr.md) , [Flamingo Workbench/hr](Flamingo_Workbench/hr.md) , [FreeCAD and DXF Import/hr](FreeCAD_and_DXF_Import/hr.md) , [Frequently asked questions/hr](Frequently_asked_questions/hr.md) , [Getting started/hr](Getting_started/hr.md) , [Glossary/hr](Glossary/hr.md) , [Template:GuiCommand/hr](Template:GuiCommand/hr.md) , [Help FreeCAD/hr](Help_FreeCAD/hr.md) , [How to install macros/hr](How_to_install_macros/hr.md) , [Image Workbench/hr](Image_Workbench/hr.md) , [Import Export/hr](Import_Export/hr.md) , [Inspection Workbench/hr](Inspection_Workbench/hr.md) , [Installing additional components/hr](Installing_additional_components/hr.md) , [Installing on Linux/hr](Installing_on_Linux/hr.md) , [Installing on Mac/hr](Installing_on_Mac/hr.md) , [Installing on Windows/hr](Installing_on_Windows/hr.md) , [Interface Customization/hr](Interface_Customization/hr.md) , [KicadStepUp Workbench/hr](KicadStepUp_Workbench/hr.md) , [Localisation/hr](Localisation/hr.md) , [Macro Apothem Based Prism GUI/hr](Macro_Apothem_Based_Prism_GUI/hr.md) , [Macro Automatic drawing/hr](Macro_Automatic_drawing/hr.md) , [Macro Center Align Objects with Faces or Edges/hr](Macro_Center_Align_Objects_with_Faces_or_Edges/hr.md) , [Macro CenterOfMass/hr](Macro_CenterOfMass/hr.md) , [Macro cross section/hr](Macro_cross_section/hr.md) , [Macro Delta xyz/hr](Macro_Delta_xyz/hr.md) , [Macro FC element selector/hr](Macro_FC_element_selector/hr.md) , [Macro FCSpring Helix Variable/hr](Macro_FCSpring_Helix_Variable/hr.md) , [Macro FCTreeView/hr](Macro_FCTreeView/hr.md) , [Macro Mouse over cb/hr](Macro_Mouse_over_cb/hr.md) , [Macro PropertyMemo/hr](Macro_PropertyMemo/hr.md) , [Macro Section/hr](Macro_Section/hr.md) , [Macro Select Hovering/hr](Macro_Select_Hovering/hr.md) , [Macro Unbind Numpad Shortcuts/hr](Macro_Unbind_Numpad_Shortcuts/hr.md) , [Template:Macro/hr](Template:Macro/hr.md) , [Main Page/hr](Main_Page/hr.md) , [Manipulator Workbench/hr](Manipulator_Workbench/hr.md) , [Mesh Workbench/hr](Mesh_Workbench/hr.md) , [Mouse navigation/hr](Mouse_navigation/hr.md) , [Navigation Cube/hr](Navigation_Cube/hr.md) , [Offsite tutorials/hr](Offsite_tutorials/hr.md) , [Online Help Startpage/hr](Online_Help_Startpage/hr.md) , [Online Help Toc/hr](Online_Help_Toc/hr.md) , [OpenSCAD Preferences/hr](OpenSCAD_Preferences/hr.md) , [OpenSCAD Workbench/hr](OpenSCAD_Workbench/hr.md) , [Part CrossSections/hr](Part_CrossSections/hr.md) , [Part Loft Technical Details/hr](Part_Loft_Technical_Details/hr.md) , [Part Module/hr](Part_Module/hr.md) , [PartDesign NewSketch/hr](PartDesign_NewSketch/hr.md) , [PartDesign Pad/hr](PartDesign_Pad/hr.md) , [PartDesign PolarPattern/hr](PartDesign_PolarPattern/hr.md) , [PartDesign Preferences/hr](PartDesign_Preferences/hr.md) , [PartDesign Workbench/hr](PartDesign_Workbench/hr.md) , [Path Preferences/hr](Path_Preferences/hr.md) , [Path Shape/hr](Path_Shape/hr.md) , [Path Workbench/hr](Path_Workbench/hr.md) , [PCB Workbench/hr](PCB_Workbench/hr.md) , [Plot Module/hr](Plot_Module/hr.md) , [Preferences Editor/hr](Preferences_Editor/hr.md) , [Property editor/hr](Property_editor/hr.md) , [Raytracing Workbench/hr](Raytracing_Workbench/hr.md) , [Robot Workbench/hr](Robot_Workbench/hr.md) , [Screenshots/hr](Screenshots/hr.md) , [Ship Workbench/hr](Ship_Workbench/hr.md) , [Sketcher CarbonCopy/hr](Sketcher_CarbonCopy/hr.md) , [Sketcher Clone/hr](Sketcher_Clone/hr.md) , [Sketcher CloseShape/hr](Sketcher_CloseShape/hr.md) , [Sketcher ConnectLines/hr](Sketcher_ConnectLines/hr.md) , [Sketcher Copy/hr](Sketcher_Copy/hr.md) , [Sketcher CreateArc/hr](Sketcher_CreateArc/hr.md) , [Sketcher CreateCircle/hr](Sketcher_CreateCircle/hr.md) , [Sketcher CreateFillet/hr](Sketcher_CreateFillet/hr.md) , [Sketcher CreateLine/hr](Sketcher_CreateLine/hr.md) , [Sketcher CreatePeriodicBSpline/hr](Sketcher_CreatePeriodicBSpline/hr.md) , [Sketcher CreatePoint/hr](Sketcher_CreatePoint/hr.md) , [Sketcher CreateSquare/hr](Sketcher_CreateSquare/hr.md) , [Sketcher DeleteAllConstraints/hr](Sketcher_DeleteAllConstraints/hr.md) , [Sketcher DeleteAllGeometry/hr](Sketcher_DeleteAllGeometry/hr.md) , [Sketcher EditSketch/hr](Sketcher_EditSketch/hr.md) , [Sketcher MapSketch/hr](Sketcher_MapSketch/hr.md) , [Sketcher Micro Tutorial - Constraint Practices/hr](Sketcher_Micro_Tutorial_-_Constraint_Practices/hr.md) , [Sketcher Move/hr](Sketcher_Move/hr.md) , [Sketcher NewSketch/hr](Sketcher_NewSketch/hr.md) , [Sketcher Preferences/hr](Sketcher_Preferences/hr.md) , [Sketcher RectangularArray/hr](Sketcher_RectangularArray/hr.md) , [Sketcher ReorientSketch/hr](Sketcher_ReorientSketch/hr.md) , [Sketcher requirement for a sketch/hr](Sketcher_requirement_for_a_sketch/hr.md) , [Sketcher RestoreInternalAlignmentGeometry/hr](Sketcher_RestoreInternalAlignmentGeometry/hr.md) , [Sketcher SelectConstraints/hr](Sketcher_SelectConstraints/hr.md) , [Sketcher StopOperation/hr](Sketcher_StopOperation/hr.md) , [Sketcher Symmetry/hr](Sketcher_Symmetry/hr.md) , [Sketcher Trimming/hr](Sketcher_Trimming/hr.md) , [Sketcher Tutorial/hr](Sketcher_Tutorial/hr.md) , [Sketcher ValidateSketch/hr](Sketcher_ValidateSketch/hr.md) , [Sketcher ViewSection/hr](Sketcher_ViewSection/hr.md) , [Sketcher ViewSketch/hr](Sketcher_ViewSketch/hr.md) , [Sketcher Workbench/hr](Sketcher_Workbench/hr.md) , [Source documentation/hr](Source_documentation/hr.md) , [Spreadsheet Workbench/hr](Spreadsheet_Workbench/hr.md) , [Std About/hr](Std_About/hr.md) , [Std AddonMgr/hr](Std_AddonMgr/hr.md) , [Std Quit/hr](Std_Quit/hr.md) , [Std WhatsThis/hr](Std_WhatsThis/hr.md) , [Surface CurveOnMesh/hr](Surface_CurveOnMesh/hr.md) , [Surface ExtendFace/hr](Surface_ExtendFace/hr.md) , [Surface Filling/hr](Surface_Filling/hr.md) , [Surface GeomFillSurface/hr](Surface_GeomFillSurface/hr.md) , [Surface Workbench/hr](Surface_Workbench/hr.md) , [Symbols Library Workbench/hr](Symbols_Library_Workbench/hr.md) , [TechDraw 3PtAngleDimension/hr](TechDraw_3PtAngleDimension/hr.md) , [TechDraw Preferences/hr](TechDraw_Preferences/hr.md) , [TechDraw Templates/hr](TechDraw_Templates/hr.md) , [TechDraw Workbench/hr](TechDraw_Workbench/hr.md) , [Timber Workbench/hr](Timber_Workbench/hr.md) , [Tutorial for open windows/hr](Tutorial_for_open_windows/hr.md) , [Template:TutorialInfo/hr](Template:TutorialInfo/hr.md) , [Tutorials/hr](Tutorials/hr.md) , [User hub/hr](User_hub/hr.md) , [Video tutorials/hr](Video_tutorials/hr.md) , [Workbenches/hr](Workbenches/hr.md) , [Workfeature Workbench/hr](Workfeature_Workbench/hr.md) , , , , , [Category:Documentation/hr](Category:Documentation/hr.md) [Category:Arch/hr](Category:Arch/hr.md) [Category:BIM/hr](Category:BIM/hr.md) [Category:Draft/hr](Category:Draft/hr.md) [Category:Inspection/hr](Category:Inspection/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) + +--- +[documentation index](../README.md) > Category:User Documentation/hr diff --git a/wiki/translations/hr/Category:Wiki.md b/wiki/translations/hr/Category:Wiki.md index ee12d53bf9..2933cd0a52 100644 --- a/wiki/translations/hr/Category:Wiki.md +++ b/wiki/translations/hr/Category:Wiki.md @@ -6,3 +6,6 @@ This category contains all documents that relate to the Wiki. [Glossary/hr](Glossary/hr.md) , [Localisation Sidebar/hr](Localisation_Sidebar/hr.md) , [Localisation/hr](Localisation/hr.md) [Category:Administration/hr](Category:Administration/hr.md) [Category:Categories/hr](Category:Categories/hr.md) [Category:Documentation/hr](Category:Documentation/hr.md) + +--- +[documentation index](../README.md) > Category:Wiki/hr diff --git a/wiki/translations/hr/Category:Workbenches.md b/wiki/translations/hr/Category:Workbenches.md index 46eed145a5..ae37bc8518 100644 --- a/wiki/translations/hr/Category:Workbenches.md +++ b/wiki/translations/hr/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/hr](Arch_Workbench/hr.md) , [Draft Workbench/hr](Draft_Workbench/hr.md) , [FEM Workbench/hr](FEM_Workbench/hr.md) , [Image Workbench/hr](Image_Workbench/hr.md) , [Inspection Workbench/hr](Inspection_Workbench/hr.md) , [Mesh Workbench/hr](Mesh_Workbench/hr.md) , [OpenSCAD Workbench/hr](OpenSCAD_Workbench/hr.md) , [Part Module/hr](Part_Module/hr.md) , [PartDesign Workbench/hr](PartDesign_Workbench/hr.md) , [Path Workbench/hr](Path_Workbench/hr.md) , [Raytracing Workbench/hr](Raytracing_Workbench/hr.md) , [Robot Workbench/hr](Robot_Workbench/hr.md) , [Sketcher Workbench/hr](Sketcher_Workbench/hr.md) , [Spreadsheet Workbench/hr](Spreadsheet_Workbench/hr.md) , [Surface Workbench/hr](Surface_Workbench/hr.md) , [TechDraw Workbench/hr](TechDraw_Workbench/hr.md) , [Workbenches/hr](Workbenches/hr.md) , , , , , , , , , , , , , , , , , , [Category:User Documentation/hr](Category:User_Documentation/hr.md) [Category:Draft/hr](Category:Draft/hr.md) [Category:External Workbenches/hr](Category:External_Workbenches/hr.md) [Category:FEM/hr](Category:FEM/hr.md) [Category:Image/hr](Category:Image/hr.md) [Category:Inspection/hr](Category:Inspection/hr.md) [Category:Mesh/hr](Category:Mesh/hr.md) [Category:OpenSCAD/hr](Category:OpenSCAD/hr.md) [Category:Part/hr](Category:Part/hr.md) [Category:PartDesign/hr](Category:PartDesign/hr.md) [Category:Path/hr](Category:Path/hr.md) [Category:Plot/hr](Category:Plot/hr.md) [Category:Points/hr](Category:Points/hr.md) [Category:Raytracing/hr](Category:Raytracing/hr.md) [Category:Robot/hr](Category:Robot/hr.md) [Category:Ship/hr](Category:Ship/hr.md) [Category:Sketcher/hr](Category:Sketcher/hr.md) [Category:Surface/hr](Category:Surface/hr.md) [Category:TechDraw/hr](Category:TechDraw/hr.md) + +--- +[documentation index](../README.md) > Category:Workbenches/hr diff --git a/wiki/translations/hr/Cfd_Workbench.md b/wiki/translations/hr/Cfd_Workbench.md index 72df2858d5..b4f60a25d0 100644 --- a/wiki/translations/hr/Cfd_Workbench.md +++ b/wiki/translations/hr/Cfd_Workbench.md @@ -1,6 +1,4 @@ # Cfd Workbench/hr - - ## Introduction @@ -61,3 +59,6 @@ To use CFD for FreeCAD [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Cfd Workbench/hr diff --git a/wiki/translations/hr/Civil_Engineering_Workbench.md b/wiki/translations/hr/Civil_Engineering_Workbench.md index a681e2ca6c..f5c0f80478 100644 --- a/wiki/translations/hr/Civil_Engineering_Workbench.md +++ b/wiki/translations/hr/Civil_Engineering_Workbench.md @@ -1,6 +1,4 @@ # Civil Engineering Workbench/hr - - ## Opis Civil Engineering is a broad category of engineering and covers several subjects, primarily environmental (wastewater), geotechnical, transportation, and structural. At present, the primary focus of the civil engineering effort in FreeCAD is focused on transportation engineering, or more specifically 3D Highway design. @@ -33,3 +31,6 @@ The Rebar tools are currently part of the [Arch Workbench](Arch_Workbench.md) [Category:Documentation](Category:Documentation.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Civil Engineering Workbench/hr diff --git a/wiki/translations/hr/CompileOnWindows.md b/wiki/translations/hr/CompileOnWindows.md index 6c46f670c0..6cb5dcd423 100644 --- a/wiki/translations/hr/CompileOnWindows.md +++ b/wiki/translations/hr/CompileOnWindows.md @@ -1,2 +1,5 @@ # CompileOnWindows/hr 1. REDIRECT [Compile on Windows/hr](Compile_on_Windows/hr.md) + +--- +[documentation index](../README.md) > CompileOnWindows/hr diff --git a/wiki/translations/hr/Compile_on_MacOS.md b/wiki/translations/hr/Compile_on_MacOS.md index e938fe0924..9b60e0f5a9 100644 --- a/wiki/translations/hr/Compile_on_MacOS.md +++ b/wiki/translations/hr/Compile_on_MacOS.md @@ -1,10 +1,4 @@ # Compile on MacOS/hr - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -200,3 +194,6 @@ FreeCAD can be built against the latest git master hosted on github, and launche [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS/hr diff --git a/wiki/translations/hr/Compile_on_Windows.md b/wiki/translations/hr/Compile_on_Windows.md index 29f20e71a0..f8d1ac1e7b 100644 --- a/wiki/translations/hr/Compile_on_Windows.md +++ b/wiki/translations/hr/Compile_on_Windows.md @@ -1,10 +1,4 @@ # Compile on Windows/hr - - - - - - {{TOCright}} @@ -477,3 +471,6 @@ See also [Category:Developer Documentation/hr](Category:Developer_Documentation/hr.md) [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows/hr diff --git a/wiki/translations/hr/Compiling.md b/wiki/translations/hr/Compiling.md index c328153d85..cafa3d90f7 100644 --- a/wiki/translations/hr/Compiling.md +++ b/wiki/translations/hr/Compiling.md @@ -1,7 +1,4 @@ # Compiling/hr - - -
Svaki operacijski sistem ima svoju stranicu za kompiliranje FreeCAD programa [Online Help Documentacija](Online_Help_Toc/hr.md). @@ -34,3 +31,6 @@ To learn to use revision control system and contribute code see [Source code man [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling/hr diff --git a/wiki/translations/hr/Compiling_(Speeding_up).md b/wiki/translations/hr/Compiling_(Speeding_up).md index 31c4720e16..25f38ca35b 100644 --- a/wiki/translations/hr/Compiling_(Speeding_up).md +++ b/wiki/translations/hr/Compiling_(Speeding_up).md @@ -1,10 +1,4 @@ # Compiling (Speeding up)/hr - - - - - - {{TOCright}} ## Pregled @@ -64,3 +58,6 @@ The `distcc` program can be used to perform distributed compilation of C and C++ [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling (Speeding up)/hr diff --git a/wiki/translations/hr/Complete_Workbench.md b/wiki/translations/hr/Complete_Workbench.md index 7f9236ec2d..dc7ec30ea2 100644 --- a/wiki/translations/hr/Complete_Workbench.md +++ b/wiki/translations/hr/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/hr - - - **The [[Complete Workbench]] is deprecated.** @@ -14,3 +11,6 @@ See [Interface Customization](Interface_Customization.md) if you\'d like to adap [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/hr diff --git a/wiki/translations/hr/Customize_Toolbars.md b/wiki/translations/hr/Customize_Toolbars.md index 8a2350edba..91db38884f 100644 --- a/wiki/translations/hr/Customize_Toolbars.md +++ b/wiki/translations/hr/Customize_Toolbars.md @@ -1,5 +1,5 @@ # Customize Toolbars/hr - {{TutorialInfo/hr|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} +{{TutorialInfo/hr|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} ## Synopsis @@ -116,3 +116,6 @@ See also [Interface Customization](Interface_Customization.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Customize Toolbars/hr diff --git a/wiki/translations/hr/Debugging.md b/wiki/translations/hr/Debugging.md index 56f1446f26..63bed04e3a 100644 --- a/wiki/translations/hr/Debugging.md +++ b/wiki/translations/hr/Debugging.md @@ -1,10 +1,4 @@ # Debugging/hr - - - - - - {{TOCright}} ## Test First @@ -336,3 +330,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/hr diff --git a/wiki/translations/hr/Developer_hub.md b/wiki/translations/hr/Developer_hub.md index 7eec6bd791..5e27009b24 100644 --- a/wiki/translations/hr/Developer_hub.md +++ b/wiki/translations/hr/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/hr - - ![150](images/Crystal_Clear_app_tutorials.png ) Ovo je mjesto gdje ste pozvani da razvijate i uređujete FreeCAD software. @@ -126,3 +124,6 @@ FreeCAD, though usable in certain areas, is at the beginning of a long way into [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/hr diff --git a/wiki/translations/hr/Document_structure.md b/wiki/translations/hr/Document_structure.md index af9c2465ae..574d5a6376 100644 --- a/wiki/translations/hr/Document_structure.md +++ b/wiki/translations/hr/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/hr - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) A FreeCAD document contains all the objects of your scene. It can contain groups, and objects made with any workbench. You can therefore switch between workbenches, and still work on the same document. The document is what gets saved to disk when you save your work. You can also open several documents at the same time in FreeCAD, and open several views of the same document. @@ -51,5 +45,5 @@ FreeCADGui.ActiveDocument.ActiveView
- - +--- +[documentation index](../README.md) > Document structure/hr diff --git a/wiki/translations/hr/Download.md b/wiki/translations/hr/Download.md index fd4c45ca40..b7984d4ad2 100644 --- a/wiki/translations/hr/Download.md +++ b/wiki/translations/hr/Download.md @@ -1,5 +1,5 @@ # Download/hr - {{TOCright}} +{{TOCright}}
@@ -65,5 +65,5 @@ FreeCAD\'s development is active. FreeCAD zajednica pruža mnogo dodatnih modula i makronaredbi. Od 0.17 mogu se lako instalirati iz sustava FreeCAD pomoću [Uređivač Dodataka](Addon_Manager/hr.md). - - +--- +[documentation index](../README.md) > Download/hr diff --git a/wiki/translations/hr/Draft_Draft2Sketch.md b/wiki/translations/hr/Draft_Draft2Sketch.md index 9ba4db1086..e8e8b6d256 100644 --- a/wiki/translations/hr/Draft_Draft2Sketch.md +++ b/wiki/translations/hr/Draft_Draft2Sketch.md @@ -5,6 +5,8 @@ Workbenches:[Draft](Draft_Workbench.md), [Arch](Arch_Workbench.md) --- +# Draft Draft2Sketch/hr + ## Description The **Draft Draft2Sketch** command converts [Draft](Draft_Workbench.md) objects to [Sketcher Sketches](Sketcher_NewSketch.md) and vice versa. @@ -92,8 +94,5 @@ draft_from_sketch = Draft.draftify(sketch_from_draft, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Draft2Sketch/hr diff --git a/wiki/translations/hr/Draft_Module.md b/wiki/translations/hr/Draft_Module.md index 8ded01c9a6..9a1816ec85 100644 --- a/wiki/translations/hr/Draft_Module.md +++ b/wiki/translations/hr/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/hr 1. REDIRECT [Draft\_Workbench/hr](Draft_Workbench/hr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/hr diff --git a/wiki/translations/hr/Draft_Preferences.md b/wiki/translations/hr/Draft_Preferences.md index 5039732284..db42888a5f 100644 --- a/wiki/translations/hr/Draft_Preferences.md +++ b/wiki/translations/hr/Draft_Preferences.md @@ -1,10 +1,4 @@ # Draft Preferences/hr - - - - - - {{TOCright}} The preferences for the [Draft Workbench](Draft_Workbench.md) can be found in the [Preferences Editor](Preferences_Editor.md). In the menu select **Edit → Preferences...** and then **Draft**. @@ -490,3 +484,6 @@ On the *Texts and dimensions* tab you can specify the following: [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Preferences/hr diff --git a/wiki/translations/hr/Draft_Workbench.md b/wiki/translations/hr/Draft_Workbench.md index deb1f028c1..a592a9943b 100644 --- a/wiki/translations/hr/Draft_Workbench.md +++ b/wiki/translations/hr/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/hr - - - - - -Draft workbench icon +# Draft workbench icon Draft Workbench/hr {{TOCright}} @@ -353,3 +347,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/hr diff --git a/wiki/translations/hr/Drawing_Module.md b/wiki/translations/hr/Drawing_Module.md index 3f03b8ad64..dac94964c5 100644 --- a/wiki/translations/hr/Drawing_Module.md +++ b/wiki/translations/hr/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/hr 1. REDIRECT [Drawing\_Workbench/hr](Drawing_Workbench/hr.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/hr diff --git a/wiki/translations/hr/Drawing_Workbench.md b/wiki/translations/hr/Drawing_Workbench.md index b26dc33310..f9e7017ef7 100644 --- a/wiki/translations/hr/Drawing_Workbench.md +++ b/wiki/translations/hr/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/hr - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** Drawing workbench icon @@ -84,3 +81,6 @@ Some notes on the programming side of the drawing module will be added to the [D }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/hr diff --git a/wiki/translations/hr/Dxf_Importer_Install.md b/wiki/translations/hr/Dxf_Importer_Install.md index 3f74a40acc..561d6bee04 100644 --- a/wiki/translations/hr/Dxf_Importer_Install.md +++ b/wiki/translations/hr/Dxf_Importer_Install.md @@ -1,7 +1,4 @@ # Dxf Importer Install/hr - - -
@@ -185,3 +182,6 @@ Using Teigha. Teigha is a full program and you can use it without FreeCAD ### Links Video tutorial [FreeCAD Tutorial 24 - DXF/DWG Import](https://www.youtube.com/watch?v=wHxTWuDhc3M) + +--- +[documentation index](../README.md) > Dxf Importer Install/hr diff --git a/wiki/translations/hr/ExplodedAssembly_Workbench.md b/wiki/translations/hr/ExplodedAssembly_Workbench.md index 850e4aaa7e..6796b704ae 100644 --- a/wiki/translations/hr/ExplodedAssembly_Workbench.md +++ b/wiki/translations/hr/ExplodedAssembly_Workbench.md @@ -1,6 +1,4 @@ # ExplodedAssembly Workbench/hr - - ## Introduction @@ -67,3 +65,6 @@ That\'s all, the next time you launch FreeCAD the workbench should be incorporat [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > ExplodedAssembly Workbench/hr diff --git a/wiki/translations/hr/FAQ.md b/wiki/translations/hr/FAQ.md index c265d821c9..079889be2a 100644 --- a/wiki/translations/hr/FAQ.md +++ b/wiki/translations/hr/FAQ.md @@ -1,2 +1,5 @@ # FAQ/hr 1. REDIRECT [Frequently\_asked\_questions/hr](Frequently_asked_questions/hr.md) + +--- +[documentation index](../README.md) > FAQ/hr diff --git a/wiki/translations/hr/FEM_Beginner_tutorial.md b/wiki/translations/hr/FEM_Beginner_tutorial.md index 8a7e041848..5fa245df1d 100644 --- a/wiki/translations/hr/FEM_Beginner_tutorial.md +++ b/wiki/translations/hr/FEM_Beginner_tutorial.md @@ -1,5 +1,5 @@ # FEM Beginner tutorial/hr - {{TutorialInfo/hr +{{TutorialInfo/hr |Topic= FEM Beginner tutorial |Level= Beginner |Time= @@ -40,7 +40,5 @@ ToDo ToDo - - - - +--- +[documentation index](../README.md) > FEM Beginner tutorial/hr diff --git a/wiki/translations/hr/FEM_Module.md b/wiki/translations/hr/FEM_Module.md index bbc1fc3a52..9e813f6b6b 100644 --- a/wiki/translations/hr/FEM_Module.md +++ b/wiki/translations/hr/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/hr 1. REDIRECT [FEM\_Workbench/hr](FEM_Workbench/hr.md) + +--- +[documentation index](../README.md) > FEM Module/hr diff --git a/wiki/translations/hr/FEM_Solver.md b/wiki/translations/hr/FEM_Solver.md index ac9c80c007..deb146276e 100644 --- a/wiki/translations/hr/FEM_Solver.md +++ b/wiki/translations/hr/FEM_Solver.md @@ -1,6 +1,4 @@ # FEM Solver/hr - - ## Preface @@ -215,4 +213,7 @@ Technog was successfully used in FreeCAD as a substitute of CalculiX, although t {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Solver/hr diff --git a/wiki/translations/hr/FEM_Workbench.md b/wiki/translations/hr/FEM_Workbench.md index a96562f064..4bab4f7f57 100644 --- a/wiki/translations/hr/FEM_Workbench.md +++ b/wiki/translations/hr/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/hr - - - - - -FEM workbench icon +# FEM workbench icon FEM Workbench/hr {{TOCright}} @@ -278,3 +272,6 @@ A developer\'s guide has been written to help power users in understanding the c }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/hr diff --git a/wiki/translations/hr/Feature_editing.md b/wiki/translations/hr/Feature_editing.md index 22454f5a49..f0e61b5062 100644 --- a/wiki/translations/hr/Feature_editing.md +++ b/wiki/translations/hr/Feature_editing.md @@ -1,5 +1,5 @@ # Feature editing/hr - {{TOCright}} +{{TOCright}} ## Predstavljanje @@ -170,3 +170,6 @@ The [tutorials](Tutorials.md) page provides some examples of using the [feature }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Feature editing/hr diff --git a/wiki/translations/hr/Feature_list.md b/wiki/translations/hr/Feature_list.md index 9d3671e54d..59cc9d627a 100644 --- a/wiki/translations/hr/Feature_list.md +++ b/wiki/translations/hr/Feature_list.md @@ -1,7 +1,4 @@ # Feature list/hr - - -
@@ -132,3 +129,6 @@ Napredni korisnici stvorili su razne prilagođene [vanjske radne površine](exte [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/hr diff --git a/wiki/translations/hr/Flamingo_Workbench.md b/wiki/translations/hr/Flamingo_Workbench.md index 5d416cda36..13f14d5060 100644 --- a/wiki/translations/hr/Flamingo_Workbench.md +++ b/wiki/translations/hr/Flamingo_Workbench.md @@ -1,5 +1,5 @@ # Flamingo Workbench/hr - **Flamingo Workbench (Python2/Qt4) has been superseded by the Dodo Workbench (Python3/Qt5). This wiki page will highlight the differences between these two workbenches. Currently [Dodo Workbench](Dodo_Workbench.md) links here.** +**Flamingo Workbench (Python2/Qt4) has been superseded by the Dodo Workbench (Python3/Qt5). This wiki page will highlight the differences between these two workbenches. Currently [Dodo Workbench](Dodo_Workbench.md) links here.** ## Introduction @@ -520,3 +520,6 @@ New workbenches are in development, stay tuned! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Flamingo Workbench/hr diff --git a/wiki/translations/hr/FreeCAD_and_DXF_Import.md b/wiki/translations/hr/FreeCAD_and_DXF_Import.md index fca810330c..8c17433d5b 100644 --- a/wiki/translations/hr/FreeCAD_and_DXF_Import.md +++ b/wiki/translations/hr/FreeCAD_and_DXF_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DXF Import/hr - {{TOCright}} +{{TOCright}} ## Background @@ -52,3 +52,6 @@ You can also try: For an overview of all DXF related preferences see [Import Export Preferences](Import_Export_Preferences#DXF.md). [Category:User\_Documentation](Category:User_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > FreeCAD and DXF Import/hr diff --git a/wiki/translations/hr/Frequently_asked_questions.md b/wiki/translations/hr/Frequently_asked_questions.md index a9ae71fa7b..779080a42f 100644 --- a/wiki/translations/hr/Frequently_asked_questions.md +++ b/wiki/translations/hr/Frequently_asked_questions.md @@ -1,9 +1,4 @@ # Frequently asked questions/hr - - - - - This page attempts to answer the most common questions asked on the FreeCAD forums. If you have a problem or question regarding FreeCAD, check below first. Then, if you cannot find an answer for your specific question, head to the [FreeCAD forum](http://forum.freecadweb.org/viewforum.php?f=3)! ## Instalacija @@ -279,3 +274,6 @@ Yes, you can use the core parts of FreeCAD in other applications as long as you [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Frequently asked questions/hr diff --git a/wiki/translations/hr/Getting_started.md b/wiki/translations/hr/Getting_started.md index 0fb16a425c..27dd52f51d 100644 --- a/wiki/translations/hr/Getting_started.md +++ b/wiki/translations/hr/Getting_started.md @@ -1,7 +1,4 @@ # Getting started/hr - - -
@@ -301,3 +298,6 @@ I na kraju, jedna od najmoćnijih značajki FreeCAD-a je [skriptiranje](scriptin {{Userdocnavi/hr}} [Category:User Documentation/hr](Category:User_Documentation/hr.md) + +--- +[documentation index](../README.md) > Getting started/hr diff --git a/wiki/translations/hr/Glossary.md b/wiki/translations/hr/Glossary.md index 7d54054fae..a3cc7c75c4 100644 --- a/wiki/translations/hr/Glossary.md +++ b/wiki/translations/hr/Glossary.md @@ -1,9 +1,4 @@ # Glossary/hr - - - - - This page is a glossary of common FreeCAD terms and definitions. Jump to letter: {{CompactTOC|center=yes}} @@ -1140,3 +1135,6 @@ Jump to letter: {{CompactTOC|center=yes}} [Category:Wiki](Category:Wiki.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Wiki](Category:Wiki.md) > Glossary/hr diff --git a/wiki/translations/hr/Help_FreeCAD.md b/wiki/translations/hr/Help_FreeCAD.md index 10c1815005..50caf44caa 100644 --- a/wiki/translations/hr/Help_FreeCAD.md +++ b/wiki/translations/hr/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/hr - - ## Introduction @@ -107,3 +105,6 @@ Kod za pisanje za FreeCAD nije težak i ne trebate nikakvo dopuštenje, odmah mo [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command Reference/hr]] su popisane i dokumentirane sve FreeCAD ](Category:Command Reference/hr]] su popisane i dokumentirane sve FreeCAD .md) > Help FreeCAD/hr diff --git a/wiki/translations/hr/How_to_install_macros.md b/wiki/translations/hr/How_to_install_macros.md index fc4b5feb4f..c95465a76f 100644 --- a/wiki/translations/hr/How_to_install_macros.md +++ b/wiki/translations/hr/How_to_install_macros.md @@ -1,7 +1,4 @@ # How to install macros/hr - - -
@@ -475,3 +472,6 @@ and then press the **OK** button. }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > How to install macros/hr diff --git a/wiki/translations/hr/Image_Module.md b/wiki/translations/hr/Image_Module.md index 8d37d533b1..e3bbe4628e 100644 --- a/wiki/translations/hr/Image_Module.md +++ b/wiki/translations/hr/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/hr 1. REDIRECT [Image\_Workbench/hr](Image_Workbench/hr.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/hr diff --git a/wiki/translations/hr/Image_Workbench.md b/wiki/translations/hr/Image_Workbench.md index 5a951aa510..15d7dd9173 100644 --- a/wiki/translations/hr/Image_Workbench.md +++ b/wiki/translations/hr/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/hr - - -Image workbench icon +# Image workbench icon Image Workbench/hr ## Introduction @@ -39,3 +36,6 @@ The offset of the image can be set during import, or changed later through its p }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/hr diff --git a/wiki/translations/hr/Import_Export.md b/wiki/translations/hr/Import_Export.md index c044d48744..ec88ec0013 100644 --- a/wiki/translations/hr/Import_Export.md +++ b/wiki/translations/hr/Import_Export.md @@ -1,9 +1,4 @@ # Import Export/hr - - - - - ## Introduction This page lists the various file formats that FreeCAD can import and export. For completeness the FreeCAD native format is included in the list. Some formats have a related wiki page that can be reached by clicking on the extension in the first column. @@ -144,3 +139,6 @@ See the following pages for additional information: [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export/hr diff --git a/wiki/translations/hr/Inspection_Workbench.md b/wiki/translations/hr/Inspection_Workbench.md index 12e1b0b7d0..4b0f42376c 100644 --- a/wiki/translations/hr/Inspection_Workbench.md +++ b/wiki/translations/hr/Inspection_Workbench.md @@ -1,7 +1,4 @@ -# Inspection Workbench/hr - - -Inspection workbench icon +# Inspection workbench icon Inspection Workbench/hr ## Introduction @@ -33,3 +30,6 @@ Alternatively, use the macro Inspection Workbench/hr diff --git a/wiki/translations/hr/Install_on_Linux.md b/wiki/translations/hr/Install_on_Linux.md index b2c2085fcf..297dfdf89a 100644 --- a/wiki/translations/hr/Install_on_Linux.md +++ b/wiki/translations/hr/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/hr 1. REDIRECT [Installing\_on\_Linux/hr](Installing_on_Linux/hr.md) + +--- +[documentation index](../README.md) > Install on Linux/hr diff --git a/wiki/translations/hr/Install_on_Mac.md b/wiki/translations/hr/Install_on_Mac.md index 748c6ba9bb..25648cd6fb 100644 --- a/wiki/translations/hr/Install_on_Mac.md +++ b/wiki/translations/hr/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/hr 1. REDIRECT [Installing\_on\_Mac/hr](Installing_on_Mac/hr.md) + +--- +[documentation index](../README.md) > Install on Mac/hr diff --git a/wiki/translations/hr/Install_on_Unix.md b/wiki/translations/hr/Install_on_Unix.md index 8a9f2a4e33..164240950f 100644 --- a/wiki/translations/hr/Install_on_Unix.md +++ b/wiki/translations/hr/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/hr 1. REDIRECT [Installing\_on\_Linux/hr](Installing_on_Linux/hr.md) + +--- +[documentation index](../README.md) > Install on Unix/hr diff --git a/wiki/translations/hr/Install_on_Windows.md b/wiki/translations/hr/Install_on_Windows.md index 4e4ece9963..23eb29aefc 100644 --- a/wiki/translations/hr/Install_on_Windows.md +++ b/wiki/translations/hr/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/hr 1. REDIRECT [Installing\_on\_Windows/hr](Installing_on_Windows/hr.md) + +--- +[documentation index](../README.md) > Install on Windows/hr diff --git a/wiki/translations/hr/Installing.md b/wiki/translations/hr/Installing.md index 63cdd0f22d..2e2089a29e 100644 --- a/wiki/translations/hr/Installing.md +++ b/wiki/translations/hr/Installing.md @@ -1,2 +1,5 @@ # Installing/hr 1. REDIRECT [Installing\_additional\_components/hr](Installing_additional_components/hr.md) + +--- +[documentation index](../README.md) > Installing/hr diff --git a/wiki/translations/hr/Installing_additional_components.md b/wiki/translations/hr/Installing_additional_components.md index 69438d9f27..dafdd533ac 100644 --- a/wiki/translations/hr/Installing_additional_components.md +++ b/wiki/translations/hr/Installing_additional_components.md @@ -1,7 +1,4 @@ # Installing additional components/hr - - -
@@ -143,3 +140,6 @@ The [ODA File Converter](https://www.opendesign.com/guestfiles/oda_file_converte
[Category:User Documentation/hr](Category:User_Documentation/hr.md) + +--- +[documentation index](../README.md) > Installing additional components/hr diff --git a/wiki/translations/hr/Installing_on_Linux.md b/wiki/translations/hr/Installing_on_Linux.md index d4d18b44f0..2665721ce1 100644 --- a/wiki/translations/hr/Installing_on_Linux.md +++ b/wiki/translations/hr/Installing_on_Linux.md @@ -1,9 +1,4 @@ # Installing on Linux/hr - - - - - ## Overview @@ -377,3 +372,6 @@ Once you\'ve got FreeCAD installed, it\'s time to [get started](Getting_started. [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/hr diff --git a/wiki/translations/hr/Installing_on_Mac.md b/wiki/translations/hr/Installing_on_Mac.md index 9858ebea05..6f4996c936 100644 --- a/wiki/translations/hr/Installing_on_Mac.md +++ b/wiki/translations/hr/Installing_on_Mac.md @@ -1,9 +1,4 @@ # Installing on Mac/hr - - - - - FreeCAD can be installed on macOS from a .dmg package which you can drag and drop into your Applications folder: @@ -50,8 +45,5 @@ There currently isn\'t an uninstaller for FreeCAD installed with dmg package. To If you installed FreeCAD with homebrew simply use the `brew uninstall freecad` command. That\'s it. - - - - - +--- +[documentation index](../README.md) > Installing on Mac/hr diff --git a/wiki/translations/hr/Installing_on_Windows.md b/wiki/translations/hr/Installing_on_Windows.md index 8edbf398ed..1ddb0d283a 100644 --- a/wiki/translations/hr/Installing_on_Windows.md +++ b/wiki/translations/hr/Installing_on_Windows.md @@ -1,9 +1,4 @@ # Installing on Windows/hr - - - - - You can install FreeCAD on Windows by downloading one of the installers below: @@ -193,5 +188,5 @@ FreeCAD is running, but it has been reported that the OpenGL display does not wo
- - +--- +[documentation index](../README.md) > Installing on Windows/hr diff --git a/wiki/translations/hr/Interface_Customization.md b/wiki/translations/hr/Interface_Customization.md index e9244b302c..60d18f5719 100644 --- a/wiki/translations/hr/Interface_Customization.md +++ b/wiki/translations/hr/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/hr - - - - - - {{TOCright}} ## Introduction @@ -291,4 +285,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/hr diff --git a/wiki/translations/hr/KicadStepUp_Workbench.md b/wiki/translations/hr/KicadStepUp_Workbench.md index 00cd852a31..cca0d1d5a4 100644 --- a/wiki/translations/hr/KicadStepUp_Workbench.md +++ b/wiki/translations/hr/KicadStepUp_Workbench.md @@ -1,7 +1,4 @@ -# KicadStepUp Workbench/hr - - -KicadStepUp External workbench icon +# KicadStepUp External workbench icon KicadStepUp Workbench/hr {{TOCright}} @@ -141,3 +138,6 @@ New workbenches are in development, stay tuned! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > KicadStepUp Workbench/hr diff --git a/wiki/translations/hr/List_of_Commands.md b/wiki/translations/hr/List_of_Commands.md index ce247a8e91..a1ebfdc5b3 100644 --- a/wiki/translations/hr/List_of_Commands.md +++ b/wiki/translations/hr/List_of_Commands.md @@ -1,2 +1,5 @@ # List of Commands/hr 1. REDIRECT [:Category:Command Reference/hr](:Category:Command_Reference/hr.md) + +--- +[documentation index](../README.md) > List of Commands/hr diff --git a/wiki/translations/hr/Localisation.md b/wiki/translations/hr/Localisation.md index 145c8e65d4..c682367502 100644 --- a/wiki/translations/hr/Localisation.md +++ b/wiki/translations/hr/Localisation.md @@ -1,7 +1,4 @@ # Localisation/hr - - -
@@ -267,3 +264,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/hr diff --git a/wiki/translations/hr/Localisation_Sidebar.md b/wiki/translations/hr/Localisation_Sidebar.md index 7c9015e59e..1062a4da0c 100644 --- a/wiki/translations/hr/Localisation_Sidebar.md +++ b/wiki/translations/hr/Localisation_Sidebar.md @@ -1,5 +1,5 @@ # Localisation Sidebar/hr - [Localisation](Localisation.md) is the process of providing software with a multiple language user interface. The documentation wiki can also be localized, as described in section [Translate the FreeCAD wiki](Localisation#Translate_the_FreeCAD_wiki.md). +[Localisation](Localisation.md) is the process of providing software with a multiple language user interface. The documentation wiki can also be localized, as described in section [Translate the FreeCAD wiki](Localisation#Translate_the_FreeCAD_wiki.md). The sidebar is an important navigation tool in the wiki world, see [Manual:Interface/Sidebar](http://www.mediawiki.org/wiki/Manual:Interface/Sidebar) for more information. @@ -32,3 +32,6 @@ Do not add the language codes \"/fr\", \"/de\", \"/es\", \"/ru\", etc., if the t [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation Sidebar/hr diff --git a/wiki/translations/hr/Macro_Apothem_Based_Prism_GUI.md b/wiki/translations/hr/Macro_Apothem_Based_Prism_GUI.md index 057d605da7..a9ecb33e5e 100644 --- a/wiki/translations/hr/Macro_Apothem_Based_Prism_GUI.md +++ b/wiki/translations/hr/Macro_Apothem_Based_Prism_GUI.md @@ -1,5 +1,5 @@ # Macro Apothem Based Prism GUI/hr - {{Macro +{{Macro |Name=Apothem Based Prism |Translate=Prizma utemeljena na apotemu |Icon=Part Prism Apothem.svg @@ -127,4 +127,7 @@ SVG ikona za korištenje u prečacima prilagođene alatne trake. ## Zahvale -Zahvaljujući glavnom programeru FreeCAD-a [shoogen](http://forum.freecadweb.org/memberlist.php?mode=viewprofile&u=765) and FreeCAD programmer [wandererfan](http://forum.freecadweb.org/memberlist.php?mode=viewprofile&u=1375) za njihovu neprocjenjivu pomoć i savjete u izradi ovog makroa. +Zahvaljujući glavnom programeru FreeCAD-a [shoogen](http://forum.freecadweb.org/memberlist.php?mode=viewprofile&u=765) and FreeCAD programmer [wandererfan](http://forum.freecadweb.org/memberlist.php?mode=viewprofile&u=1375) za njihovu neprocjenjivu pomoć i savjete u izradi ovog makroa. + +--- +[documentation index](../README.md) > Macro Apothem Based Prism GUI/hr diff --git a/wiki/translations/hr/Macro_Automatic_drawing.md b/wiki/translations/hr/Macro_Automatic_drawing.md index 0635cb2b01..abde4da375 100644 --- a/wiki/translations/hr/Macro_Automatic_drawing.md +++ b/wiki/translations/hr/Macro_Automatic_drawing.md @@ -1,5 +1,5 @@ # Macro Automatic drawing/hr - {{Macro/hr +{{Macro/hr |Name=Automatic drawing |Translate=Automatsko crtanje |Icon=Macro_Automatic_drawing.png @@ -123,3 +123,6 @@ App.activeDocument().AutoDrawing.addObject(App.activeDocument().IsoView) ## Poveznice Forum [Automatic drawing](https://forum.freecadweb.org/viewtopic.php?f=8&t=3361) + +--- +[documentation index](../README.md) > Macro Automatic drawing/hr diff --git a/wiki/translations/hr/Macro_CenterOfMass.md b/wiki/translations/hr/Macro_CenterOfMass.md index 73442f37f8..1db32288dd 100644 --- a/wiki/translations/hr/Macro_CenterOfMass.md +++ b/wiki/translations/hr/Macro_CenterOfMass.md @@ -1,7 +1,4 @@ # Macro CenterOfMass/hr - - -
@@ -92,3 +89,6 @@ Raspravu na forumu [Macro to compute center of mass](https://forum.freecadweb.or
0.1.2 / 2018-11-10 : xx + +--- +[documentation index](../README.md) > Macro CenterOfMass/hr diff --git a/wiki/translations/hr/Macro_Center_Align_Objects_with_Faces_or_Edges.md b/wiki/translations/hr/Macro_Center_Align_Objects_with_Faces_or_Edges.md index d4846ca9a7..2f215631ce 100644 --- a/wiki/translations/hr/Macro_Center_Align_Objects_with_Faces_or_Edges.md +++ b/wiki/translations/hr/Macro_Center_Align_Objects_with_Faces_or_Edges.md @@ -1,5 +1,5 @@ # Macro Center Align Objects with Faces or Edges/hr - **Ovi su alati sada uključeni u [Manipulator Workbench](Manipulator_Workbench/hr.md). Instalirajte ovu radnu površinu za najnovija ažuriranja tih alata.** +**Ovi su alati sada uključeni u [Manipulator Workbench](Manipulator_Workbench/hr.md). Instalirajte ovu radnu površinu za najnovija ažuriranja tih alata.**
@@ -111,6 +111,5 @@ you need to copy the file to your macro directory. Forum : [Faces or Edges constraint among non cylindrical parts Macro](http://forum.freecadweb.org/viewtopic.php?f=22&t=18655) - - - +--- +[documentation index](../README.md) > Macro Center Align Objects with Faces or Edges/hr diff --git a/wiki/translations/hr/Macro_Delta_xyz.md b/wiki/translations/hr/Macro_Delta_xyz.md index 303573a367..6967ee6033 100644 --- a/wiki/translations/hr/Macro_Delta_xyz.md +++ b/wiki/translations/hr/Macro_Delta_xyz.md @@ -1,5 +1,5 @@ # Macro Delta xyz/hr - {{Macro +{{Macro |Name=Macro Delta xyz |Icon=Macro_Delta_xyz.png |Description=Gives the Delta values and distance between 2 points.
Start the macro
Select the first point in 3D view
Select the second point in 3D view
If the "SHIFT" key is pressed, the Delta value begin on coordinate 0,0,0 to point clicked (the coordinate 0,0,0 is displayed in red).
One option is possible for the macro stay resident (continuous) then push "Q" key to quit the macro, and option for impose the number of decimals or use the decimal in the preference option. @@ -274,3 +274,6 @@ Version 0.2 2020-10-23 : adding push the key **SHIFT**, click one point and the Adding options configurable in preference FC Version 0.1 2013-11-29 : [view toolbar : measure distance tool](https://forum.freecadweb.org/viewtopic.php?f=3&t=5036) + +--- +[documentation index](../README.md) > Macro Delta xyz/hr diff --git a/wiki/translations/hr/Macro_FCSpring_Helix_Variable.md b/wiki/translations/hr/Macro_FCSpring_Helix_Variable.md index 7cd22ce7a3..bb2cff4bcc 100644 --- a/wiki/translations/hr/Macro_FCSpring_Helix_Variable.md +++ b/wiki/translations/hr/Macro_FCSpring_Helix_Variable.md @@ -1,5 +1,5 @@ # Macro FCSpring Helix Variable/hr - {{Macro/hr +{{Macro/hr |Name=Macro FCSpring Helix Variable |Translate=Makro FCSpring Helix Variable |Icon=FCSpring Helix Variable.png @@ -375,4 +375,5 @@ Only circle work well - +--- +[documentation index](../README.md) > Macro FCSpring Helix Variable/hr diff --git a/wiki/translations/hr/Macro_FCTreeView.md b/wiki/translations/hr/Macro_FCTreeView.md index e027d1993f..0da103370e 100644 --- a/wiki/translations/hr/Macro_FCTreeView.md +++ b/wiki/translations/hr/Macro_FCTreeView.md @@ -1,7 +1,4 @@ # Macro FCTreeView/hr - - -
@@ -310,3 +307,6 @@ ver 00.03 (23/09/2017) : add search by type object ver 00.02 (11/09/2017) : modify for docked and prevent many instance the clic on button are effect flip/flop (macro hide/visible) ver 00.01 (08/09/2017) : + +--- +[documentation index](../README.md) > Macro FCTreeView/hr diff --git a/wiki/translations/hr/Macro_FC_element_selector.md b/wiki/translations/hr/Macro_FC_element_selector.md index 2790dbaeb9..f41683908c 100644 --- a/wiki/translations/hr/Macro_FC_element_selector.md +++ b/wiki/translations/hr/Macro_FC_element_selector.md @@ -1,5 +1,5 @@ # Macro FC element selector/hr - {{Macro +{{Macro |Name=Macro FC element selector |Icon=Macro_FC_element_selector.png |Translate=Odabir elementa za makro FC @@ -212,3 +212,6 @@ element_selector() Rasprava na forumu [Selecting internal faces of a pressure vessel](https://forum.freecadweb.org/viewtopic.php?f=18&t=12381&p=151950#p151950) Drugi slični makro [Macro Mouse over cb](Macro_Mouse_over_cb/hr.md) + +--- +[documentation index](../README.md) > Macro FC element selector/hr diff --git a/wiki/translations/hr/Macro_Mouse_over_cb.md b/wiki/translations/hr/Macro_Mouse_over_cb.md index a48c48913a..4b9cf6ec3a 100644 --- a/wiki/translations/hr/Macro_Mouse_over_cb.md +++ b/wiki/translations/hr/Macro_Mouse_over_cb.md @@ -1,5 +1,5 @@ # Macro Mouse over cb/hr - {{Macro +{{Macro |Name=Macro Mouse over cb |Icon=Macro_Mouse_over_cb.png |Translate=Makro Miš iznad cb @@ -65,3 +65,6 @@ mouse_over = view.addEventCallbackPivy( coin.SoLocation2Event.getClassTypeId(), Rasprava na forumu [finding/selecting all elements below cursor](https://forum.freecadweb.org/viewtopic.php?f=10&t=19072) Drugi slični makro [Selecting internal faces of a pressure vessel](https://forum.freecadweb.org/viewtopic.php?f=18&t=12381&p=151950#p151950) (preuzmite datoteku [FC\_element\_selector\_v1p1p1.py](https://forum.freecadweb.org/download/file.php?id=31041)) + +--- +[documentation index](../README.md) > Macro Mouse over cb/hr diff --git a/wiki/translations/hr/Macro_PropertyMemo.md b/wiki/translations/hr/Macro_PropertyMemo.md index 96b9d5852c..0d10d19931 100644 --- a/wiki/translations/hr/Macro_PropertyMemo.md +++ b/wiki/translations/hr/Macro_PropertyMemo.md @@ -1,7 +1,4 @@ # Macro PropertyMemo/hr - - -
@@ -420,3 +417,5 @@ Moji makroi na [mario52a](https://gist.github.com/mario52a) gists
+--- +[documentation index](../README.md) > Macro PropertyMemo/hr diff --git a/wiki/translations/hr/Macro_Section.md b/wiki/translations/hr/Macro_Section.md index ae54de2f14..4b98a698b8 100644 --- a/wiki/translations/hr/Macro_Section.md +++ b/wiki/translations/hr/Macro_Section.md @@ -1,5 +1,5 @@ # Macro Section/hr - (parametarski!) +(parametarski!) {{Macro/hr @@ -208,3 +208,5 @@ def run(): }} +--- +[documentation index](../README.md) > Macro Section/hr diff --git a/wiki/translations/hr/Macro_Select_Hovering.md b/wiki/translations/hr/Macro_Select_Hovering.md index 9b4453066b..11ae64c394 100644 --- a/wiki/translations/hr/Macro_Select_Hovering.md +++ b/wiki/translations/hr/Macro_Select_Hovering.md @@ -1,5 +1,5 @@ # Macro Select Hovering/hr - {{Macro +{{Macro |Name=Macro Select Hovering |Icon=Macro_Select_Hovering.png |Description=This macro select a choice Face, Edge, Vertex hovering by the mouse.
PS: For unselected one face (or other) click the **Pause grab** and use the standard procedure : CTRL + Click @@ -409,3 +409,6 @@ ver 00.01 (25/12/2017) : ## Poveznica [Multiple face selection to convert a shape to a solid](https://forum.freecadweb.org/viewtopic.php?f=3&t=26370) + +--- +[documentation index](../README.md) > Macro Select Hovering/hr diff --git a/wiki/translations/hr/Macro_Unbind_Numpad_Shortcuts.md b/wiki/translations/hr/Macro_Unbind_Numpad_Shortcuts.md index 7e95ad1f8b..986b9d33bd 100644 --- a/wiki/translations/hr/Macro_Unbind_Numpad_Shortcuts.md +++ b/wiki/translations/hr/Macro_Unbind_Numpad_Shortcuts.md @@ -1,5 +1,5 @@ # Macro Unbind Numpad Shortcuts/hr - {{Macro/hr +{{Macro/hr |Name=Macro Unbind Numpad Shortcuts |Translate=Makro Razdvoji Numpad prečace |Icon=Macro_Unbind_Numpad_Shortcuts.png @@ -46,3 +46,5 @@ for (cmd, shortcut) in preset: App.ParamGet("User parameter:BaseApp/Preferences/Shortcut").SetString(cmd, shortcut) }} +--- +[documentation index](../README.md) > Macro Unbind Numpad Shortcuts/hr diff --git a/wiki/translations/hr/Macro_cross_section.md b/wiki/translations/hr/Macro_cross_section.md index 393e995806..f44e59cd7f 100644 --- a/wiki/translations/hr/Macro_cross_section.md +++ b/wiki/translations/hr/Macro_cross_section.md @@ -1,7 +1,4 @@ # Macro cross section/hr - - -
@@ -673,3 +670,6 @@ ver 00.07 17/09/2017 : upgrade multiple objects with different colors by Gift ver 00.06 06/09/2017 : upgrade by Gift see [Optischer Schnitt durch Baugruppe, z.B. für Ventilgehäuse](https://www.forum.freecadweb.org/viewtopic.php?f=13&t=24130) accept the multiple objects with different colors ver 00.05 17/08/2017 : upgrade for 0.17 FreeCAD version by Sam see [Sezione Dinamica](https://forum.freecadweb.org/viewtopic.php?f=28&t=15084&start=10#p187030) + +--- +[documentation index](../README.md) > Macro cross section/hr diff --git a/wiki/translations/hr/Main_Page.md b/wiki/translations/hr/Main_Page.md index febd9298ef..208d5288b5 100644 --- a/wiki/translations/hr/Main_Page.md +++ b/wiki/translations/hr/Main_Page.md @@ -1,7 +1,4 @@ # Main Page/hr - - -
## Uvod @@ -93,3 +90,6 @@ Provjerite [Development roadmap](Development_roadmap.md) za vijesti o onom što [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/hr diff --git a/wiki/translations/hr/Manipulator_Workbench.md b/wiki/translations/hr/Manipulator_Workbench.md index 979b348cff..fcc630bf77 100644 --- a/wiki/translations/hr/Manipulator_Workbench.md +++ b/wiki/translations/hr/Manipulator_Workbench.md @@ -1,7 +1,4 @@ -# Manipulator Workbench/hr - - -Manipulator workbench icon +# Manipulator workbench icon Manipulator Workbench/hr ## Predstavljanje @@ -131,3 +128,6 @@ New workbenches are in development, stay tuned! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Manipulator Workbench/hr diff --git a/wiki/translations/hr/Manual:BIM_modeling.md b/wiki/translations/hr/Manual:BIM_modeling.md index f5d60ca3ad..8226ca6838 100644 --- a/wiki/translations/hr/Manual:BIM_modeling.md +++ b/wiki/translations/hr/Manual:BIM_modeling.md @@ -1,5 +1,5 @@ # Manual:BIM modeling/hr - } +} @@ -243,3 +243,6 @@ Our page is now ready, and we can export it to SVG or DXF formats, or print it. }} [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Manual:BIM modeling/hr diff --git a/wiki/translations/hr/Manual:Introduction.md b/wiki/translations/hr/Manual:Introduction.md index 1792fff4b0..c785b5aee3 100644 --- a/wiki/translations/hr/Manual:Introduction.md +++ b/wiki/translations/hr/Manual:Introduction.md @@ -1,10 +1,4 @@ # Manual:Introduction/hr - - - - - -
@@ -27,6 +21,5 @@ This manual is being written for the newest stable version of FreeCAD, version * The contents of this manual are published under the [Creative Commons 4.0](http://creativecommons.org/licenses/by/4.0/) license, and can be freely used, downloaded, copied, and modified. The source files for this manual are hosted on this [wiki](Main_Page.md), and on the original [github](https://github.com/yorikvanhavre/FreeCAD-manual) account used to write the first version of this book. Easier to read HTML, PDF, MOBI and EPUB versions are available on [GitBook](https://www.gitbook.com/book/yorikvanhavre/a-freecad-manual/details). A printed version is being prepared. - - - +--- +[documentation index](../README.md) > Manual:Introduction/hr diff --git a/wiki/translations/hr/Mesh_Module.md b/wiki/translations/hr/Mesh_Module.md index 493436efcd..566953cc6d 100644 --- a/wiki/translations/hr/Mesh_Module.md +++ b/wiki/translations/hr/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/hr 1. REDIRECT [Mesh Workbench/hr](Mesh_Workbench/hr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/hr diff --git a/wiki/translations/hr/Mesh_Workbench.md b/wiki/translations/hr/Mesh_Workbench.md index 2fd8f6786c..484dc2e214 100644 --- a/wiki/translations/hr/Mesh_Workbench.md +++ b/wiki/translations/hr/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/hr - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench/hr {{TOCright}} @@ -111,3 +105,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/hr diff --git a/wiki/translations/hr/Mouse_Model.md b/wiki/translations/hr/Mouse_Model.md index 831283bfed..fcb59fa02c 100644 --- a/wiki/translations/hr/Mouse_Model.md +++ b/wiki/translations/hr/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/hr 1. REDIRECT [Mouse\_navigation/hr](Mouse_navigation/hr.md) + +--- +[documentation index](../README.md) > Mouse Model/hr diff --git a/wiki/translations/hr/Mouse_navigation.md b/wiki/translations/hr/Mouse_navigation.md index e08bf939a8..2be6013917 100644 --- a/wiki/translations/hr/Mouse_navigation.md +++ b/wiki/translations/hr/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/hr - - - - - - {{TOCright}} ## Overview @@ -338,5 +332,5 @@ The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mous [FreeCAD struktura Dokumenta](Document_structure/hr.md) }} - - +--- +[documentation index](../README.md) > Mouse navigation/hr diff --git a/wiki/translations/hr/Navigation_Cube.md b/wiki/translations/hr/Navigation_Cube.md index fc9fdd84a2..32d2c57b7e 100644 --- a/wiki/translations/hr/Navigation_Cube.md +++ b/wiki/translations/hr/Navigation_Cube.md @@ -1,7 +1,4 @@ # Navigation Cube/hr - - -
@@ -92,3 +89,6 @@ For more advanced configuration, refer to the [CubeMenu](Interface_Customization [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Navigation Cube/hr diff --git a/wiki/translations/hr/Offsite_tutorials.md b/wiki/translations/hr/Offsite_tutorials.md index 2b7e0a88b7..3a54b3576d 100644 --- a/wiki/translations/hr/Offsite_tutorials.md +++ b/wiki/translations/hr/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/hr - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** Ova stranica sadrži popis uputa za FreeCAD na drugim stranicama na web-u. @@ -18,4 +18,7 @@ Ova stranica sadrži popis uputa za FreeCAD na drugim stranicama na web-u. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/hr diff --git a/wiki/translations/hr/Online_Help_Startpage.md b/wiki/translations/hr/Online_Help_Startpage.md index c7cb670a88..19d56e5024 100644 --- a/wiki/translations/hr/Online_Help_Startpage.md +++ b/wiki/translations/hr/Online_Help_Startpage.md @@ -1,7 +1,4 @@ # Online Help Startpage/hr - - -
@@ -55,3 +52,6 @@ Kao što ste možda ponekad doživjeli, programeri su stvarno loši pisci pomoć [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/hr diff --git a/wiki/translations/hr/Online_Help_Toc.md b/wiki/translations/hr/Online_Help_Toc.md index aee1ee1390..9e6042372c 100644 --- a/wiki/translations/hr/Online_Help_Toc.md +++ b/wiki/translations/hr/Online_Help_Toc.md @@ -1,6 +1,4 @@ # Online Help Toc/hr - - Ovo je sadržaj koji se koristi za automatsku izgradnju sustava pomoći u FreeCAD-u. Verzija za ispis (printanje) ovog priručnika je dostupna na [releases page](https://github.com/FreeCAD/FreeCAD/releases) na Engleskom jeziku. Ako imate bilo kakvih pitanja ili vam je potrebna pomoć sa FreeCAD-om, molimo pogledajte [Stranica pomoći](Help/hr.md), uključujući forume i grupe za chat. Postoji još jedna tablica sadržaja za[FreeCAD Uputstva](Manual:Introduction/hr.md). @@ -164,3 +162,6 @@ Postoji još jedna tablica sadržaja za[FreeCAD Uputstva](Manual:Introduction/hr [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/hr diff --git a/wiki/translations/hr/OpenSCAD_Module.md b/wiki/translations/hr/OpenSCAD_Module.md index c4e55259de..f7b33f6441 100644 --- a/wiki/translations/hr/OpenSCAD_Module.md +++ b/wiki/translations/hr/OpenSCAD_Module.md @@ -1,2 +1,5 @@ # OpenSCAD Module/hr 1. REDIRECT [OpenSCAD\_Workbench/hr](OpenSCAD_Workbench/hr.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Module/hr diff --git a/wiki/translations/hr/OpenSCAD_Preferences.md b/wiki/translations/hr/OpenSCAD_Preferences.md index 27d90136c2..717e65c8fb 100644 --- a/wiki/translations/hr/OpenSCAD_Preferences.md +++ b/wiki/translations/hr/OpenSCAD_Preferences.md @@ -1,5 +1,5 @@ # OpenSCAD Preferences/hr - The preferences screen of the [OpenSCAD Workbench](OpenSCAD_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → OpenSCAD**. +The preferences screen of the [OpenSCAD Workbench](OpenSCAD_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → OpenSCAD**. There is only one tab: General settings. @@ -13,3 +13,6 @@ There is only one tab: General settings. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Preferences/hr diff --git a/wiki/translations/hr/OpenSCAD_Workbench.md b/wiki/translations/hr/OpenSCAD_Workbench.md index 5c82abfafb..746432d999 100644 --- a/wiki/translations/hr/OpenSCAD_Workbench.md +++ b/wiki/translations/hr/OpenSCAD_Workbench.md @@ -1,10 +1,4 @@ -# OpenSCAD Workbench/hr - - - - - -OpenSCAD workbench icon +# OpenSCAD workbench icon OpenSCAD Workbench/hr ## Introduction @@ -95,3 +89,6 @@ If FreeCAD crashes when importing CSG, it is strongly recommended that you enabl }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/hr diff --git a/wiki/translations/hr/PCB_Workbench.md b/wiki/translations/hr/PCB_Workbench.md index 462a43e647..7ee77b5b82 100644 --- a/wiki/translations/hr/PCB_Workbench.md +++ b/wiki/translations/hr/PCB_Workbench.md @@ -1,6 +1,4 @@ # PCB Workbench/hr - - ## Introduction @@ -111,3 +109,6 @@ Security → Edit → Users and mark all checkboxes under \'Allow\' option. [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > PCB Workbench/hr diff --git a/wiki/translations/hr/PartDesign_NewSketch.md b/wiki/translations/hr/PartDesign_NewSketch.md index 193360ece4..889ea82ba7 100644 --- a/wiki/translations/hr/PartDesign_NewSketch.md +++ b/wiki/translations/hr/PartDesign_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher NewSketch](Sketcher_NewSketch.md) --- +# PartDesign NewSketch/hr + ## Description This tool creates a new sketch, creates a new [PartDesign Body](PartDesign_Body.md) to contain the sketch if one does not exist and automatically opens the [Sketcher workbench](Sketcher_Workbench.md) after creation. @@ -62,4 +64,7 @@ To reference any items in the [PartDesign Pad](PartDesign_Pad.md)** tool extrudes a sketch into a solid in a direction normal to the sketch plane. As of (v0.17) faces on the solid can also be used. @@ -119,4 +121,7 @@ Reverses the direction of the pad. {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pad/hr diff --git a/wiki/translations/hr/PartDesign_PolarPattern.md b/wiki/translations/hr/PartDesign_PolarPattern.md index afac1ccda9..1269c42692 100644 --- a/wiki/translations/hr/PartDesign_PolarPattern.md +++ b/wiki/translations/hr/PartDesign_PolarPattern.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign PolarPattern/hr + ## Opis The **polar pattern** tool takes a selected feature and creates a set of copies rotated around a chosen axis. Starting with v0.17, it can pattern multiple features. @@ -135,4 +137,7 @@ Specifies the angle to be covered by the pattern, and the total number of patter {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign PolarPattern/hr diff --git a/wiki/translations/hr/PartDesign_Preferences.md b/wiki/translations/hr/PartDesign_Preferences.md index b500fe1827..da79abac4b 100644 --- a/wiki/translations/hr/PartDesign_Preferences.md +++ b/wiki/translations/hr/PartDesign_Preferences.md @@ -1,10 +1,4 @@ # PartDesign Preferences/hr - - - - - - {{TOCright}} ## Introduction @@ -122,3 +116,6 @@ Right click on **Mesh deviation** choose in the context menu **Change value**. S }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Preferences/hr diff --git a/wiki/translations/hr/PartDesign_Workbench.md b/wiki/translations/hr/PartDesign_Workbench.md index e05276b64d..753ca7d409 100644 --- a/wiki/translations/hr/PartDesign_Workbench.md +++ b/wiki/translations/hr/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/hr - - -PartDesign workbench icon +# PartDesign workbench icon PartDesign Workbench/hr {{TOCright}} @@ -222,3 +219,6 @@ Some additional functionality found in the Part Design menu: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/hr diff --git a/wiki/translations/hr/Part_CrossSections.md b/wiki/translations/hr/Part_CrossSections.md index 84df674b57..584bc2bd3a 100644 --- a/wiki/translations/hr/Part_CrossSections.md +++ b/wiki/translations/hr/Part_CrossSections.md @@ -6,6 +6,8 @@ SeeAlso:[Part Section](Part_Section.md) --- +# Part CrossSections/hr + ## Opis The **Cross-sections** utility creates one or more cross-sections through the selected shape. @@ -34,8 +36,5 @@ The **Cross-sections** utility creates one or more cross-sections through the se ![Result](images/SectionCross3.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CrossSections/hr diff --git a/wiki/translations/hr/Part_Loft_Technical_Details.md b/wiki/translations/hr/Part_Loft_Technical_Details.md index d54d6ce5ec..bf1e8469e2 100644 --- a/wiki/translations/hr/Part_Loft_Technical_Details.md +++ b/wiki/translations/hr/Part_Loft_Technical_Details.md @@ -1,5 +1,5 @@ # Part Loft Technical Details/hr - This page explains the details of how the [Loft](Part_Loft.md) surface is created. This is also relevant to [Part Sweep](Part_Sweep.md) done along a straight path, although there are differences. +This page explains the details of how the [Loft](Part_Loft.md) surface is created. This is also relevant to [Part Sweep](Part_Sweep.md) done along a straight path, although there are differences. The information provided is implementation specific, and may change. Current state is relevant to FreeCAD 0.15.4119, OCC version: 6.7.0. @@ -73,3 +73,6 @@ Note that Loft has a \"Ruled\" property. If it is set to true, ruled surfaces ar [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Loft Technical Details/hr diff --git a/wiki/translations/hr/Part_Module.md b/wiki/translations/hr/Part_Module.md index 2e5f5ccf48..f206704afe 100644 --- a/wiki/translations/hr/Part_Module.md +++ b/wiki/translations/hr/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/hr - - - - - -Part workbench icon +# Part workbench icon Part Module/hr {{TOCright}} @@ -207,3 +201,6 @@ See [Part scripting](Part_scripting.md). [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/hr diff --git a/wiki/translations/hr/Part_SectionCross.md b/wiki/translations/hr/Part_SectionCross.md index af26491446..cb11ac6b4a 100644 --- a/wiki/translations/hr/Part_SectionCross.md +++ b/wiki/translations/hr/Part_SectionCross.md @@ -1,2 +1,5 @@ # Part SectionCross/hr 1. REDIRECT [Part\_CrossSections/hr](Part_CrossSections/hr.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SectionCross/hr diff --git a/wiki/translations/hr/Part_Workbench.md b/wiki/translations/hr/Part_Workbench.md index 3b3695d125..89c6a77d13 100644 --- a/wiki/translations/hr/Part_Workbench.md +++ b/wiki/translations/hr/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/hr 1. REDIRECT [Part\_Module/hr](Part_Module/hr.md) + +--- +[documentation index](../README.md) > Part Workbench/hr diff --git a/wiki/translations/hr/Path_FromShapes.md b/wiki/translations/hr/Path_FromShapes.md index 05ba848617..5d5f8cf1c5 100644 --- a/wiki/translations/hr/Path_FromShapes.md +++ b/wiki/translations/hr/Path_FromShapes.md @@ -1,2 +1,5 @@ # Path FromShapes/hr 1. REDIRECT [Path\_Shape/hr](Path_Shape/hr.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FromShapes/hr diff --git a/wiki/translations/hr/Path_Preferences.md b/wiki/translations/hr/Path_Preferences.md index d1c0ac3fa1..8dd29d479c 100644 --- a/wiki/translations/hr/Path_Preferences.md +++ b/wiki/translations/hr/Path_Preferences.md @@ -1,10 +1,4 @@ # Path Preferences/hr - - - - - - {{TOCright}} ## Overview @@ -46,3 +40,6 @@ There are three sections: General, Post processor, and Setup. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Preferences/hr diff --git a/wiki/translations/hr/Path_Shape.md b/wiki/translations/hr/Path_Shape.md index 294de525f3..0f94225398 100644 --- a/wiki/translations/hr/Path_Shape.md +++ b/wiki/translations/hr/Path_Shape.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Shape/hr + ## Description Path Shape doesn\'t match the current Path workflow. For that reason it\'s moved to the experimental features. @@ -119,4 +121,7 @@ Path.fromShapes(shapes, start=Vector(), return_end=False arc_plane=1, sort_mode= {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Shape/hr diff --git a/wiki/translations/hr/Path_Workbench.md b/wiki/translations/hr/Path_Workbench.md index fc5e1a1039..ba96ae8a27 100644 --- a/wiki/translations/hr/Path_Workbench.md +++ b/wiki/translations/hr/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/hr - - - - - -Path workbench icon +# Path workbench icon Path Workbench/hr {{TOCright}} @@ -231,3 +225,6 @@ See [Path scripting](Path_scripting.md). }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench/hr diff --git a/wiki/translations/hr/Plot_Module.md b/wiki/translations/hr/Plot_Module.md index 908163aa36..11ecd38ce9 100644 --- a/wiki/translations/hr/Plot_Module.md +++ b/wiki/translations/hr/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/hr - - -Plot workbench icon +# Plot workbench icon Plot Module/hr {{TOCright}} @@ -64,3 +61,6 @@ Since the Plot Workbench is a layer on top of `matplotlib`, you are free to use }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/hr diff --git a/wiki/translations/hr/Plot_Workbench.md b/wiki/translations/hr/Plot_Workbench.md index 030b4df7ab..eef3572e64 100644 --- a/wiki/translations/hr/Plot_Workbench.md +++ b/wiki/translations/hr/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/hr 1. REDIRECT [Plot\_Module/hr](Plot_Module/hr.md) + +--- +[documentation index](../README.md) > Plot Workbench/hr diff --git a/wiki/translations/hr/Power_users_hub.md b/wiki/translations/hr/Power_users_hub.md index 76d5f1b694..1d263efb77 100644 --- a/wiki/translations/hr/Power_users_hub.md +++ b/wiki/translations/hr/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/hr - +# Power users hub/hr ------------------------------------------------------------------------ @@ -135,3 +134,6 @@ On the [Community portal](FreeCAD_Community_Portal.md), you can find other FreeC }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/hr diff --git a/wiki/translations/hr/Preferences_Editor.md b/wiki/translations/hr/Preferences_Editor.md index 50f11a3173..a75dd92bbf 100644 --- a/wiki/translations/hr/Preferences_Editor.md +++ b/wiki/translations/hr/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/hr - - - - - - {{TOCright}} ## Introduction @@ -697,3 +691,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/hr diff --git a/wiki/translations/hr/Property_editor.md b/wiki/translations/hr/Property_editor.md index 21eb395f5e..3a00136077 100644 --- a/wiki/translations/hr/Property_editor.md +++ b/wiki/translations/hr/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/hr - - - - - - {{TOCright}} @@ -396,4 +390,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/hr diff --git a/wiki/translations/hr/Ray_Tracing_Workbench.md b/wiki/translations/hr/Ray_Tracing_Workbench.md index d7fdf1dbf2..631df53635 100644 --- a/wiki/translations/hr/Ray_Tracing_Workbench.md +++ b/wiki/translations/hr/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/hr 1. REDIRECT [Raytracing\_Workbench/hr](Raytracing_Workbench/hr.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/hr diff --git a/wiki/translations/hr/Raytracing_Module.md b/wiki/translations/hr/Raytracing_Module.md index 0c6b50dc06..4803432ccc 100644 --- a/wiki/translations/hr/Raytracing_Module.md +++ b/wiki/translations/hr/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/hr 1. REDIRECT [Raytracing\_Workbench/hr](Raytracing_Workbench/hr.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/hr diff --git a/wiki/translations/hr/Raytracing_Workbench.md b/wiki/translations/hr/Raytracing_Workbench.md index 49ba4ab4f5..81e6e612e9 100644 --- a/wiki/translations/hr/Raytracing_Workbench.md +++ b/wiki/translations/hr/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/hr - - - **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. Nevertheless, the information in this page is generally useful for the new workbench, as both modules work basically in the same way. @@ -149,3 +146,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/hr diff --git a/wiki/translations/hr/Release_notes_0.17.md b/wiki/translations/hr/Release_notes_0.17.md index 5faa3b875a..8d7f22feed 100644 --- a/wiki/translations/hr/Release_notes_0.17.md +++ b/wiki/translations/hr/Release_notes_0.17.md @@ -1,7 +1,4 @@ # Release notes 0.17/hr - - -
*This release of FreeCAD is dedicated to our friend Roland Frank [who left us in 2017](https://forum.freecadweb.org/viewtopic.php?f=8&t=25673). He was an active and well-appreciated member of the FreeCAD forum, and his video tutorials on the [Learn FreeCAD](https://www.youtube.com/watch?v=_HEvhclR4-o&list=PL6fZ68Cq3L8k0JhxnIVjZQN26cn9idJrj) and [BPLFRE](https://www.youtube.com/watch?v=m49z0weonog&list=PLsrwVwvqYb8G4Ri0iz1JIebsOXkgoytAY) Youtube channels helped many people get started with FreeCAD.* @@ -299,3 +296,6 @@ Some of the new community modules that were created. - [Kicad StepUp Workbench](https://www.freecadweb.org/wiki/KicadStepUp_Workbench) is aimed to help KiCad and FreeCAD users in ECAD and MCAD collaboration. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.17/hr diff --git a/wiki/translations/hr/Robot_Workbench.md b/wiki/translations/hr/Robot_Workbench.md index 411e8cb231..2140b6d099 100644 --- a/wiki/translations/hr/Robot_Workbench.md +++ b/wiki/translations/hr/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/hr - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. @@ -81,3 +75,6 @@ See the [Robot API example](Robot_API_example.md) for a description of the funct }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/hr diff --git a/wiki/translations/hr/Screenshots.md b/wiki/translations/hr/Screenshots.md index 2fc57dc1b1..04e951fc61 100644 --- a/wiki/translations/hr/Screenshots.md +++ b/wiki/translations/hr/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/hr - {{TOCright}} +{{TOCright}} Here are a few screenshots showing different parts of FreeCAD. They are not ordered in any particular timeline, so the images may differ from your actual version. See more screenshots submitted by FreeCAD users on the [screenshot forum thread](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) and on the [\"Show your project here!\" Users Showcase forum part](http://forum.freecadweb.org/viewforum.php?f=24). @@ -202,3 +202,6 @@ FreeCAD runs in console mode (without gui) Dialog to save a picture with arbitrary sizes. [Category:User Documentation/hr](Category:User_Documentation/hr.md) [Category:Screenshots](Category:Screenshots.md) + +--- +[documentation index](../README.md) > Screenshots/hr diff --git a/wiki/translations/hr/SheetMetal_Workbench.md b/wiki/translations/hr/SheetMetal_Workbench.md index b8e44921fb..9a8fab1fc7 100644 --- a/wiki/translations/hr/SheetMetal_Workbench.md +++ b/wiki/translations/hr/SheetMetal_Workbench.md @@ -1,8 +1,4 @@ -# SheetMetal Workbench/hr - - - -Sheet Metal External workbench icon +# Sheet Metal External workbench icon SheetMetal Workbench/hr {{TOCright}} @@ -249,3 +245,6 @@ How to do ? - Source code on github: [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > SheetMetal Workbench/hr diff --git a/wiki/translations/hr/Ship_Workbench.md b/wiki/translations/hr/Ship_Workbench.md index 78d418970f..6e0c8a6597 100644 --- a/wiki/translations/hr/Ship_Workbench.md +++ b/wiki/translations/hr/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/hr - - -Ship workbench icon +# Ship workbench icon Ship Workbench/hr {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/hr diff --git a/wiki/translations/hr/Sketcher_BSplineConvertToNURB.md b/wiki/translations/hr/Sketcher_BSplineConvertToNURB.md index 498c02b1e1..107966f00e 100644 --- a/wiki/translations/hr/Sketcher_BSplineConvertToNURB.md +++ b/wiki/translations/hr/Sketcher_BSplineConvertToNURB.md @@ -1,2 +1,5 @@ # Sketcher BSplineConvertToNURB/hr 1. REDIRECT [Sketcher\_BSplineApproximate](Sketcher_BSplineApproximate.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineConvertToNURB/hr diff --git a/wiki/translations/hr/Sketcher_CarbonCopy.md b/wiki/translations/hr/Sketcher_CarbonCopy.md index 3a4b2a2023..1a0e6ec6de 100644 --- a/wiki/translations/hr/Sketcher_CarbonCopy.md +++ b/wiki/translations/hr/Sketcher_CarbonCopy.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Sketcher CarbonCopy/hr + ## Description The ** [Sketcher CarbonCopy](Sketcher_CarbonCopy.md)** tool copies all the geometry and constraints from another sketch into the active sketch. @@ -37,4 +39,7 @@ Dimensional constraints which exist before the copy function remain linked to th {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CarbonCopy/hr diff --git a/wiki/translations/hr/Sketcher_Clone.md b/wiki/translations/hr/Sketcher_Clone.md index 95abfae83e..1d0960ed9f 100644 --- a/wiki/translations/hr/Sketcher_Clone.md +++ b/wiki/translations/hr/Sketcher_Clone.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Copy](Sketcher_Copy.md), [Sketcher Move](Sketcher_Move.md) --- +# Sketcher Clone/hr + ## Opis Clones the selected sketch elements from one point to another, using the last selected point as reference. If any constraints are part of the source elements, then the new constraints are linked to the source constraints; if the constraints in the source are changed, the constraints in the clone are also changed. To avoid this linking see ** [Sketcher Copy](Sketcher_Copy.md)**. @@ -33,4 +35,7 @@ No extra constraints for clone-behaviour are added. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Clone/hr diff --git a/wiki/translations/hr/Sketcher_CloseShape.md b/wiki/translations/hr/Sketcher_CloseShape.md index e6fbec9c04..b845975fcc 100644 --- a/wiki/translations/hr/Sketcher_CloseShape.md +++ b/wiki/translations/hr/Sketcher_CloseShape.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher CloseShape/hr + ## Description This tool can be used to make a selected contour in sketcher closed by making an endpoint of a sketcher element coincident with the endpoint of the sketcher element selected next. @@ -29,4 +31,7 @@ The tool will connect the elements in the order of their selection, so make sure {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CloseShape/hr diff --git a/wiki/translations/hr/Sketcher_ConnectLines.md b/wiki/translations/hr/Sketcher_ConnectLines.md index 62e675a982..04e3ab4b95 100644 --- a/wiki/translations/hr/Sketcher_ConnectLines.md +++ b/wiki/translations/hr/Sketcher_ConnectLines.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher ConstrainCoincident](Sketcher_ConstrainCoincident.md) --- +# Sketcher ConnectLines/hr + ## Description Applies [Coincident constraints](Sketcher_ConstrainCoincident.md) to endpoints with the same coordinates of the selected elements. @@ -30,4 +32,7 @@ Before using this command make sure that obvious constraints (horizontal, vertic {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConnectLines/hr diff --git a/wiki/translations/hr/Sketcher_Copy.md b/wiki/translations/hr/Sketcher_Copy.md index 6b64fbdaf6..69c6d61e38 100644 --- a/wiki/translations/hr/Sketcher_Copy.md +++ b/wiki/translations/hr/Sketcher_Copy.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Clone](Sketcher_Clone.md), [Sketcher Move](Sketcher_Move.md) --- +# Sketcher Copy/hr + ## Opis Copies the selected sketch elements from one point to another, using the last selected point as reference. When a copy is made, there is no link established between the copy and the original, see ** [Sketcher Clone](Sketcher_Clone.md)**. @@ -31,4 +33,7 @@ No extra constraints are added. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Copy/hr diff --git a/wiki/translations/hr/Sketcher_CreateArc.md b/wiki/translations/hr/Sketcher_CreateArc.md index 2eeb4bff54..7318fb0960 100644 --- a/wiki/translations/hr/Sketcher_CreateArc.md +++ b/wiki/translations/hr/Sketcher_CreateArc.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher Circle](Sketcher_CompCreateCircle.md) --- +# Sketcher CreateArc/hr + ## Description This tool draws an arc by picking three points: the center, the start angle along the radius, and the end angle. @@ -25,4 +27,7 @@ When starting the tool, the mouse pointer changes to a white cross with a red ar {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateArc/hr diff --git a/wiki/translations/hr/Sketcher_CreateCircle.md b/wiki/translations/hr/Sketcher_CreateCircle.md index 1046c5f60a..c5b46c8f09 100644 --- a/wiki/translations/hr/Sketcher_CreateCircle.md +++ b/wiki/translations/hr/Sketcher_CreateCircle.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher Arc](Sketcher_CompCreateArc.md) --- +# Sketcher CreateCircle/hr + ## Description This tool draws a circle by picking two points: the center, and a point along the radius. When starting the tool, the mouse pointer changes to a white cross with a red circle icon. Besides are coordinates shown in real time. @@ -23,4 +25,7 @@ This tool draws a circle by picking two points: the center, and a point along th {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateCircle/hr diff --git a/wiki/translations/hr/Sketcher_CreateFillet.md b/wiki/translations/hr/Sketcher_CreateFillet.md index ff5ee5c152..5f63fca007 100644 --- a/wiki/translations/hr/Sketcher_CreateFillet.md +++ b/wiki/translations/hr/Sketcher_CreateFillet.md @@ -6,6 +6,8 @@ Shortcut:F --- +# Sketcher CreateFillet/hr + ## Description This tool creates a fillet between two lines joined at one point. Activate the tool, then select both lines or click on the corner point. @@ -26,4 +28,7 @@ When starting the tool, selections are cleared and the mouse pointer changes to {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateFillet/hr diff --git a/wiki/translations/hr/Sketcher_CreateLine.md b/wiki/translations/hr/Sketcher_CreateLine.md index ddd86e473a..a0a617b541 100644 --- a/wiki/translations/hr/Sketcher_CreateLine.md +++ b/wiki/translations/hr/Sketcher_CreateLine.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Polyline](Sketcher_CreatePolyline.md) --- +# Sketcher CreateLine/hr + ## Description This tool draws a line by picking two points in the 3D view. When starting the tool, the mouse pointer changes to a white cross with a red line icon. Besides are coordinates shown in real time. @@ -26,4 +28,7 @@ The created line object starts and ends at the given points, but the line is inf {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateLine/hr diff --git a/wiki/translations/hr/Sketcher_CreatePeriodicBSpline.md b/wiki/translations/hr/Sketcher_CreatePeriodicBSpline.md index 5442cc1171..8b10536f17 100644 --- a/wiki/translations/hr/Sketcher_CreatePeriodicBSpline.md +++ b/wiki/translations/hr/Sketcher_CreatePeriodicBSpline.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher B-spline](Sketcher_CreateBSpline.md) --- +# Sketcher CreatePeriodicBSpline/hr + ## Description This tool traces a periodic (closed) B-spline curve from its control points. (See [this page](B-Splines.md) for more info about B-splines.) @@ -39,4 +41,7 @@ This tool traces a periodic (closed) B-spline curve from its control points. (Se {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreatePeriodicBSpline/hr diff --git a/wiki/translations/hr/Sketcher_CreatePoint.md b/wiki/translations/hr/Sketcher_CreatePoint.md index 4df7dfb380..9079b82384 100644 --- a/wiki/translations/hr/Sketcher_CreatePoint.md +++ b/wiki/translations/hr/Sketcher_CreatePoint.md @@ -5,6 +5,8 @@ Workbenches:[Sketcher](Sketcher_Workbench.md) --- +# Sketcher CreatePoint/hr + ## Description The Point tool creates a point in the current sketch, which can be used for constructing geometry elements. The point is always an construction element and does not show up in the 3D-view. @@ -31,4 +33,7 @@ The created point is not available outside of the sketch. In case a point is nee {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreatePoint/hr diff --git a/wiki/translations/hr/Sketcher_CreateSquare.md b/wiki/translations/hr/Sketcher_CreateSquare.md index 3036d8684b..06a3884089 100644 --- a/wiki/translations/hr/Sketcher_CreateSquare.md +++ b/wiki/translations/hr/Sketcher_CreateSquare.md @@ -6,6 +6,8 @@ Version:0.15 --- +# Sketcher CreateSquare/hr + ## Description Draws a square inscribed in a construction geometry circle. When starting the tool, the mouse pointer changes to a white cross with a red hexagon icon. The coordinates of the pointer are shown beside it in blue in real time. @@ -27,4 +29,7 @@ The circumscribed circle is construction geometry, which is only visible when ed {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateSquare/hr diff --git a/wiki/translations/hr/Sketcher_DeleteAllConstraints.md b/wiki/translations/hr/Sketcher_DeleteAllConstraints.md index bfaa9d06ae..de29b132c0 100644 --- a/wiki/translations/hr/Sketcher_DeleteAllConstraints.md +++ b/wiki/translations/hr/Sketcher_DeleteAllConstraints.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Delete All Geometry](Sketcher_DeleteAllGeometry.md) --- +# Sketcher DeleteAllConstraints/hr + ## Opis This tool deletes all constraints from the sketch being edited, and leaves the geometry intact. @@ -28,4 +30,7 @@ This tool deletes all constraints from the sketch being edited, and leaves the g {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher DeleteAllConstraints/hr diff --git a/wiki/translations/hr/Sketcher_DeleteAllGeometry.md b/wiki/translations/hr/Sketcher_DeleteAllGeometry.md index c7fd36ce4a..1f81c2d102 100644 --- a/wiki/translations/hr/Sketcher_DeleteAllGeometry.md +++ b/wiki/translations/hr/Sketcher_DeleteAllGeometry.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Delete All Constraints](Sketcher_DeleteAllConstraints.md) --- +# Sketcher DeleteAllGeometry/hr + ## Opis This tool deletes all geometry from the sketch being edited. @@ -22,4 +24,7 @@ This tool deletes all geometry from the sketch being edited. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher DeleteAllGeometry/hr diff --git a/wiki/translations/hr/Sketcher_EditSketch.md b/wiki/translations/hr/Sketcher_EditSketch.md index 2d11de94e2..7e1764c536 100644 --- a/wiki/translations/hr/Sketcher_EditSketch.md +++ b/wiki/translations/hr/Sketcher_EditSketch.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher LeaveSketch](Sketcher_LeaveSketch.md) --- +# Sketcher EditSketch/hr + ## Description This command will let you edit an existing sketch. It will open the [Sketcher Dialog](Sketcher_Dialog.md). @@ -29,4 +31,7 @@ There are several ways to invoke the Edit Sketch command: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher EditSketch/hr diff --git a/wiki/translations/hr/Sketcher_MapSketch.md b/wiki/translations/hr/Sketcher_MapSketch.md index 76c00490fe..39fc11b5ed 100644 --- a/wiki/translations/hr/Sketcher_MapSketch.md +++ b/wiki/translations/hr/Sketcher_MapSketch.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher New sketch](Sketcher_NewSketch.md) --- +# Sketcher MapSketch/hr + ## Description This tool maps an existing sketch onto the face of a shape. PartDesign features created from this sketch will be fused with the underlying solid for additive features (Pad, Revolution) or be subtracted from the underlying solid in case of subtractive features (Pocket, Groove). @@ -53,4 +55,7 @@ Now we select the top face of Pad and then select the Map A Sketch To A Face too {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MapSketch/hr diff --git a/wiki/translations/hr/Sketcher_Micro_Tutorial_-_Constraint_Practices.md b/wiki/translations/hr/Sketcher_Micro_Tutorial_-_Constraint_Practices.md index 833c0ee83b..176651b44c 100644 --- a/wiki/translations/hr/Sketcher_Micro_Tutorial_-_Constraint_Practices.md +++ b/wiki/translations/hr/Sketcher_Micro_Tutorial_-_Constraint_Practices.md @@ -1,7 +1,4 @@ # Sketcher Micro Tutorial - Constraint Practices/hr - - -
@@ -125,4 +122,7 @@ This is the best way to constrain this sketch, as we only used one datum (dimens {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Micro Tutorial - Constraint Practices/hr diff --git a/wiki/translations/hr/Sketcher_Move.md b/wiki/translations/hr/Sketcher_Move.md index 29ffa9a524..42f09e4efe 100644 --- a/wiki/translations/hr/Sketcher_Move.md +++ b/wiki/translations/hr/Sketcher_Move.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Clone](Sketcher_Clone.md), [Sketcher Copy](Sketcher_Copy.md) --- +# Sketcher Move/hr + ## Description Moves the selected sketch elements from one point to another, using the last selected point as reference. @@ -30,4 +32,7 @@ Moves the selected sketch elements from one point to another, using the last sel {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Move/hr diff --git a/wiki/translations/hr/Sketcher_NewSketch.md b/wiki/translations/hr/Sketcher_NewSketch.md index 4e74addcd1..cca0635f74 100644 --- a/wiki/translations/hr/Sketcher_NewSketch.md +++ b/wiki/translations/hr/Sketcher_NewSketch.md @@ -6,6 +6,8 @@ SeeAlso:[PartDesign NewSketch](PartDesign_NewSketch.md), [Sketcher MapSketch](Sketcher_MapSketch.md), [Sketcher Reorient](Sketcher_ReorientSketch.md) --- +# Sketcher NewSketch/hr + ## Description This will create a new [sketch](Sketcher_Workbench.md). @@ -36,4 +38,7 @@ The sketch can be moved in the [3D view](3D_view.md) using [Placement](Placement {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher NewSketch/hr diff --git a/wiki/translations/hr/Sketcher_Preferences.md b/wiki/translations/hr/Sketcher_Preferences.md index ac555f3462..7f261bc59c 100644 --- a/wiki/translations/hr/Sketcher_Preferences.md +++ b/wiki/translations/hr/Sketcher_Preferences.md @@ -1,7 +1,4 @@ # Sketcher Preferences/hr - - - {{TOCright}} The preferences screen of the [Sketcher Workbench](Sketcher_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → Sketcher**. @@ -246,3 +243,6 @@ In the *Colors* tab you can specify the following: }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Preferences/hr diff --git a/wiki/translations/hr/Sketcher_RectangularArray.md b/wiki/translations/hr/Sketcher_RectangularArray.md index 46c0098727..5503ff2afe 100644 --- a/wiki/translations/hr/Sketcher_RectangularArray.md +++ b/wiki/translations/hr/Sketcher_RectangularArray.md @@ -6,6 +6,8 @@ Version:0.16 --- +# Sketcher RectangularArray/hr + ## Opis Creates an array of selected sketcher elements. @@ -34,4 +36,7 @@ Creates an array of selected sketcher elements. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RectangularArray/hr diff --git a/wiki/translations/hr/Sketcher_ReorientSketch.md b/wiki/translations/hr/Sketcher_ReorientSketch.md index 80981ddbbb..226f7fd282 100644 --- a/wiki/translations/hr/Sketcher_ReorientSketch.md +++ b/wiki/translations/hr/Sketcher_ReorientSketch.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher Map sketch](Sketcher_MapSketch.md), [Sketcher New Sketch](Sketcher_NewSketch.md) --- +# Sketcher ReorientSketch/hr + ## Description Allows you to detach a sketch from a face and attach it to one of the main planes (with an offset). @@ -30,4 +32,7 @@ Allows you to detach a sketch from a face and attach it to one of the main plane {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ReorientSketch/hr diff --git a/wiki/translations/hr/Sketcher_RestoreInternalAlignmentGeometry.md b/wiki/translations/hr/Sketcher_RestoreInternalAlignmentGeometry.md index bd7918fd93..4ad4bfd57d 100644 --- a/wiki/translations/hr/Sketcher_RestoreInternalAlignmentGeometry.md +++ b/wiki/translations/hr/Sketcher_RestoreInternalAlignmentGeometry.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Ellipse](Sketcher_CreateEllipseByCenter.md), [Sketcher Internal Alignment Constraint](Sketcher_ConstrainInternalAlignment.md) --- +# Sketcher RestoreInternalAlignmentGeometry/hr + ## Description The command deletes unused elements aligned to internal geometry, or recreates the missing ones. @@ -33,4 +35,7 @@ If there are free alignment places for the selected element, new construction ge {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RestoreInternalAlignmentGeometry/hr diff --git a/wiki/translations/hr/Sketcher_SelectConstraints.md b/wiki/translations/hr/Sketcher_SelectConstraints.md index a15e696455..647b3c92c3 100644 --- a/wiki/translations/hr/Sketcher_SelectConstraints.md +++ b/wiki/translations/hr/Sketcher_SelectConstraints.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectConstraints/hr + ## Description Selects the constraints of a sketcher element. @@ -30,4 +32,7 @@ Selects the constraints of a sketcher element. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConstraints/hr diff --git a/wiki/translations/hr/Sketcher_StopOperation.md b/wiki/translations/hr/Sketcher_StopOperation.md index 964a0cc9df..9b83145911 100644 --- a/wiki/translations/hr/Sketcher_StopOperation.md +++ b/wiki/translations/hr/Sketcher_StopOperation.md @@ -5,6 +5,8 @@ MenuLocation:Sketch → Stop operation --- +# Sketcher StopOperation/hr + ## Opis @@ -24,4 +26,7 @@ This is similar to pressing the **Esc** key. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher StopOperation/hr diff --git a/wiki/translations/hr/Sketcher_Symmetry.md b/wiki/translations/hr/Sketcher_Symmetry.md index 0fe77c74f3..0444a8d0c5 100644 --- a/wiki/translations/hr/Sketcher_Symmetry.md +++ b/wiki/translations/hr/Sketcher_Symmetry.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher MirrorSketch](Sketcher_MirrorSketch.md) --- +# Sketcher Symmetry/hr + ## Opis Mirrors sketcher geometry in reference to a chosen line or sketch axis. @@ -25,4 +27,7 @@ Note that no extra symmetry constraint will be added. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Symmetry/hr diff --git a/wiki/translations/hr/Sketcher_Trimming.md b/wiki/translations/hr/Sketcher_Trimming.md index b03ce586fd..8ee4b9f8c5 100644 --- a/wiki/translations/hr/Sketcher_Trimming.md +++ b/wiki/translations/hr/Sketcher_Trimming.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Extend edge](Sketcher_Extend.md) --- +# Sketcher Trimming/hr + ## Description This tool trims an edge to the nearest overlapping edge. @@ -30,4 +32,7 @@ This tool trims an edge to the nearest overlapping edge. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Trimming/hr diff --git a/wiki/translations/hr/Sketcher_ValidateSketch.md b/wiki/translations/hr/Sketcher_ValidateSketch.md index 94d47715f1..54b2592320 100644 --- a/wiki/translations/hr/Sketcher_ValidateSketch.md +++ b/wiki/translations/hr/Sketcher_ValidateSketch.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher ConstrainCoincident](Sketcher_ConstrainCoincident.md), [Topological naming problem](Topological_naming_problem.md) --- +# Sketcher ValidateSketch/hr + ## Description The **Validate sketch** utility can be used to analyze and repair a sketch that is no longer editable or has invalid constraints, or to add missing [coincident constraints](Sketcher_ConstrainCoincident.md) to a sketch created from imported geometry such as DXF files. It can also be useful to locate a missing coincidence in a native sketch that generates a \"can\'t validate broken face\" error when trying to apply a PartDesign feature. @@ -77,4 +79,7 @@ The locking mechanism typically works well and this tool should not be needed. * {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ValidateSketch/hr diff --git a/wiki/translations/hr/Sketcher_ViewSection.md b/wiki/translations/hr/Sketcher_ViewSection.md index 65c2e6548b..06085b9067 100644 --- a/wiki/translations/hr/Sketcher_ViewSection.md +++ b/wiki/translations/hr/Sketcher_ViewSection.md @@ -6,6 +6,8 @@ Version:0.18 --- +# Sketcher ViewSection/hr + ## Description The **View section** tool creates a section plane that temporarily hides any matter in front of the sketch plane. @@ -26,4 +28,7 @@ Several ways to invoke this command: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSection/hr diff --git a/wiki/translations/hr/Sketcher_ViewSketch.md b/wiki/translations/hr/Sketcher_ViewSketch.md index 062ce37272..1997d6205c 100644 --- a/wiki/translations/hr/Sketcher_ViewSketch.md +++ b/wiki/translations/hr/Sketcher_ViewSketch.md @@ -5,6 +5,8 @@ Workbenches:[Sketcher](Sketcher_Workbench.md), [PartDesign](PartDesign_Workbench.md) --- +# Sketcher ViewSketch/hr + ## Description This tool sets the model view perpendicular to the sketch plane. It is useful when the user has changed the model view orientation to examine another aspect of the model and wants to return to a view normal to the sketch. @@ -22,4 +24,7 @@ While in sketch edit mode, either {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSketch/hr diff --git a/wiki/translations/hr/Sketcher_Workbench.md b/wiki/translations/hr/Sketcher_Workbench.md index 81ab0c8b57..9a710ad942 100644 --- a/wiki/translations/hr/Sketcher_Workbench.md +++ b/wiki/translations/hr/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/hr - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/hr {{TOCright}} @@ -333,3 +327,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [Category:Sketcher/hr](Category:Sketcher/hr.md) [Category:Workbenches/hr](Category:Workbenches/hr.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/hr diff --git a/wiki/translations/hr/Sketcher_requirement_for_a_sketch.md b/wiki/translations/hr/Sketcher_requirement_for_a_sketch.md index 1ef48ce2f4..920c481830 100644 --- a/wiki/translations/hr/Sketcher_requirement_for_a_sketch.md +++ b/wiki/translations/hr/Sketcher_requirement_for_a_sketch.md @@ -1,7 +1,4 @@ # Sketcher requirement for a sketch/hr - - - {{TutorialInfo/hr |Topic=Sketch |Level=Beginner @@ -44,4 +41,7 @@ If you accidentally create an \"overmodulation\", a warning appears in the combo {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher requirement for a sketch/hr diff --git a/wiki/translations/hr/Source_documentation.md b/wiki/translations/hr/Source_documentation.md index b89f02dc5e..611cb4a172 100644 --- a/wiki/translations/hr/Source_documentation.md +++ b/wiki/translations/hr/Source_documentation.md @@ -1,10 +1,4 @@ # Source documentation/hr - - - - - - {{TOCright}} ## Overview @@ -137,3 +131,6 @@ void removeTaskWatcher(void); [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source documentation/hr diff --git a/wiki/translations/hr/Spreadsheet_Module.md b/wiki/translations/hr/Spreadsheet_Module.md index 4138f2a522..1b279f0ecf 100644 --- a/wiki/translations/hr/Spreadsheet_Module.md +++ b/wiki/translations/hr/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module/hr 1. REDIRECT [Spreadsheet Workbench/hr](Spreadsheet_Workbench/hr.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module/hr diff --git a/wiki/translations/hr/Spreadsheet_Workbench.md b/wiki/translations/hr/Spreadsheet_Workbench.md index cbb8b535c1..7e12c5e67d 100644 --- a/wiki/translations/hr/Spreadsheet_Workbench.md +++ b/wiki/translations/hr/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/hr - {{Page_in_progress}} @@ -235,3 +234,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/hr diff --git a/wiki/translations/hr/Spreadsheet_legacy.md b/wiki/translations/hr/Spreadsheet_legacy.md index 1a734ccae5..f6f32adb01 100644 --- a/wiki/translations/hr/Spreadsheet_legacy.md +++ b/wiki/translations/hr/Spreadsheet_legacy.md @@ -1,2 +1,5 @@ # Spreadsheet legacy/hr 1. REDIRECT [Spreadsheet\_Workbench/hr](Spreadsheet_Workbench/hr.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet legacy/hr diff --git a/wiki/translations/hr/Std_About.md b/wiki/translations/hr/Std_About.md index 69fe91e10b..d218bc3e7b 100644 --- a/wiki/translations/hr/Std_About.md +++ b/wiki/translations/hr/Std_About.md @@ -5,6 +5,8 @@ MenuLocation:Help → About FreeCAD --- +# Std About/hr + ## Description The **Std About** command opens a dialog box that shows information about the FreeCAD program. @@ -68,3 +70,6 @@ The Libraries tab shows a list of the external libraries used by the program, an {{Std Base navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Std About/hr diff --git a/wiki/translations/hr/Std_AddonMgr.md b/wiki/translations/hr/Std_AddonMgr.md index 935e7982fe..5397cb2ee0 100644 --- a/wiki/translations/hr/Std_AddonMgr.md +++ b/wiki/translations/hr/Std_AddonMgr.md @@ -7,6 +7,8 @@ SeeAlso:[External workbenches](External_workbenches.md), [Macros](Macros.md) --- +# Std AddonMgr/hr + ## Description The **Std AddonMgr** command opens the Addon manager. With the Addon manager you can install and manage [external workbenches](external_workbenches.md) and [macros](macros.md) provided by the FreeCAD community. The available workbenches and macros are taken from two repositories, [FreeCAD-addons](https://github.com/FreeCAD/FreeCAD-addons/) and [FreeCAD-macros](https://github.com/FreeCAD/FreeCAD-macros/), and from the [Macros recipes](Macros_recipes.md) page. @@ -77,4 +79,7 @@ If you develop a workbench in C++, it cannot be run directly by users and must b {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std AddonMgr/hr diff --git a/wiki/translations/hr/Std_InterfaceCustomization.md b/wiki/translations/hr/Std_InterfaceCustomization.md index 176dfee562..8691551910 100644 --- a/wiki/translations/hr/Std_InterfaceCustomization.md +++ b/wiki/translations/hr/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/hr 1. REDIRECT [Interface\_Customization/hr](Interface_Customization/hr.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/hr diff --git a/wiki/translations/hr/Std_Quit.md b/wiki/translations/hr/Std_Quit.md index e6fdababcc..8b6da96f17 100644 --- a/wiki/translations/hr/Std_Quit.md +++ b/wiki/translations/hr/Std_Quit.md @@ -7,6 +7,8 @@ SeeAlso:[Std Close](Std_CloseActiveWindow.md) --- +# Std Quit/hr + ## Opis The **Std Quit** command closes the FreeCAD application and optionally saves unsaved documents. @@ -35,4 +37,7 @@ The **Std Quit** command closes the FreeCAD application and optionally saves uns {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Quit/hr diff --git a/wiki/translations/hr/Std_WhatsThis.md b/wiki/translations/hr/Std_WhatsThis.md index 7b83f54417..9808b25ac8 100644 --- a/wiki/translations/hr/Std_WhatsThis.md +++ b/wiki/translations/hr/Std_WhatsThis.md @@ -7,6 +7,8 @@ SeeAlso:[Std OnlineHelp](Std_OnlineHelp.md) --- +# Std WhatsThis/hr + ## Description The **Std WhatsThis** command opens the help documentation for a specified command. @@ -36,4 +38,7 @@ Read this post to understand how the commands must be named in the code to match {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std WhatsThis/hr diff --git a/wiki/translations/hr/Surface_CurveOnMesh.md b/wiki/translations/hr/Surface_CurveOnMesh.md index 9d3aff0cfd..5243bd29d7 100644 --- a/wiki/translations/hr/Surface_CurveOnMesh.md +++ b/wiki/translations/hr/Surface_CurveOnMesh.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Surface CurveOnMesh/hr + ## Opis @@ -95,4 +97,7 @@ In addition to the properties described in [Part Feature](Part_Feature.md), the {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface CurveOnMesh/hr diff --git a/wiki/translations/hr/Surface_ExtendFace.md b/wiki/translations/hr/Surface_ExtendFace.md index bafbef23ad..6e926dfb42 100644 --- a/wiki/translations/hr/Surface_ExtendFace.md +++ b/wiki/translations/hr/Surface_ExtendFace.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Surface ExtendFace/hr + ## Opis @@ -126,4 +128,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface ExtendFace/hr diff --git a/wiki/translations/hr/Surface_Filling.md b/wiki/translations/hr/Surface_Filling.md index f75d7cbd49..b27b8b8e4d 100644 --- a/wiki/translations/hr/Surface_Filling.md +++ b/wiki/translations/hr/Surface_Filling.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Surface Filling/hr + ## Opis @@ -205,4 +207,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Filling/hr diff --git a/wiki/translations/hr/Surface_GeomFillSurface.md b/wiki/translations/hr/Surface_GeomFillSurface.md index 91ba44f0c3..426b02804a 100644 --- a/wiki/translations/hr/Surface_GeomFillSurface.md +++ b/wiki/translations/hr/Surface_GeomFillSurface.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Surface GeomFillSurface/hr + ## Description @@ -151,4 +153,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface GeomFillSurface/hr diff --git a/wiki/translations/hr/Surface_Module.md b/wiki/translations/hr/Surface_Module.md index 983728343c..b110c02998 100644 --- a/wiki/translations/hr/Surface_Module.md +++ b/wiki/translations/hr/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/hr 1. REDIRECT [Surface\_Workbench/hr](Surface_Workbench/hr.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/hr diff --git a/wiki/translations/hr/Surface_Workbench.md b/wiki/translations/hr/Surface_Workbench.md index c956ff1b6c..0a83d18468 100644 --- a/wiki/translations/hr/Surface_Workbench.md +++ b/wiki/translations/hr/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/hr - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/hr {{TOCright}} @@ -60,3 +54,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/hr diff --git a/wiki/translations/hr/Symbols_Library_Workbench.md b/wiki/translations/hr/Symbols_Library_Workbench.md index bef1019f57..3f37865e9a 100644 --- a/wiki/translations/hr/Symbols_Library_Workbench.md +++ b/wiki/translations/hr/Symbols_Library_Workbench.md @@ -1,6 +1,4 @@ # Symbols Library Workbench/hr - - ## Introduction @@ -51,3 +49,6 @@ The library is a simple container for SVG files. You can download it anywhere an [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Symbols Library Workbench/hr diff --git a/wiki/translations/hr/TechDraw_3PtAngleDimension.md b/wiki/translations/hr/TechDraw_3PtAngleDimension.md index 257d3af98d..ba18c5cd26 100644 --- a/wiki/translations/hr/TechDraw_3PtAngleDimension.md +++ b/wiki/translations/hr/TechDraw_3PtAngleDimension.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw AngleDimension](TechDraw_AngleDimension.md) --- +# TechDraw 3PtAngleDimension/hr + ## Description The 3-Point Angle Dimension tool adds a angular dimension to a View. The dimension may be specified by selecting three Vertices on a View. **Note that the second of the three Vertices is the apex of the angle**. The Angle3Pt will initially be the projected angle (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -54,4 +56,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 3PtAngleDimension/hr diff --git a/wiki/translations/hr/TechDraw_Dimension_Angle3Pt.md b/wiki/translations/hr/TechDraw_Dimension_Angle3Pt.md index 7b9fb614ee..cc3d9ad5fe 100644 --- a/wiki/translations/hr/TechDraw_Dimension_Angle3Pt.md +++ b/wiki/translations/hr/TechDraw_Dimension_Angle3Pt.md @@ -1,2 +1,5 @@ # TechDraw Dimension Angle3Pt/hr 1. REDIRECT [TechDraw\_3PtAngleDimension/hr](TechDraw_3PtAngleDimension/hr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Angle3Pt/hr diff --git a/wiki/translations/hr/TechDraw_Module.md b/wiki/translations/hr/TechDraw_Module.md index 52cd36b545..3d5dc53f58 100644 --- a/wiki/translations/hr/TechDraw_Module.md +++ b/wiki/translations/hr/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/hr 1. REDIRECT [TechDraw\_Workbench/hr](TechDraw_Workbench/hr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/hr diff --git a/wiki/translations/hr/TechDraw_Preferences.md b/wiki/translations/hr/TechDraw_Preferences.md index 5d3c63d3b6..c533cc4155 100644 --- a/wiki/translations/hr/TechDraw_Preferences.md +++ b/wiki/translations/hr/TechDraw_Preferences.md @@ -1,10 +1,4 @@ # TechDraw Preferences/hr - - - - - - {{TOCright}} ## Introduction @@ -213,3 +207,6 @@ Some preference settings are only accessible through the [Parameter editor](Std_ }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Preferences/hr diff --git a/wiki/translations/hr/TechDraw_SaveDXF.md b/wiki/translations/hr/TechDraw_SaveDXF.md index 8defbf0556..6ee58b3ad5 100644 --- a/wiki/translations/hr/TechDraw_SaveDXF.md +++ b/wiki/translations/hr/TechDraw_SaveDXF.md @@ -1,2 +1,5 @@ # TechDraw SaveDXF/hr 1. REDIRECT [TechDraw\_ExportPageDXF](TechDraw_ExportPageDXF.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SaveDXF/hr diff --git a/wiki/translations/hr/TechDraw_Templates.md b/wiki/translations/hr/TechDraw_Templates.md index 4449710141..d15d1da6a7 100644 --- a/wiki/translations/hr/TechDraw_Templates.md +++ b/wiki/translations/hr/TechDraw_Templates.md @@ -1,7 +1,4 @@ # TechDraw Templates/hr - - -
@@ -89,4 +86,7 @@ See also [How to make a custom TechDraw template](TechDraw_TemplateHowTo.md). {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Templates/hr diff --git a/wiki/translations/hr/TechDraw_Workbench.md b/wiki/translations/hr/TechDraw_Workbench.md index b3a096438e..277ede8cac 100644 --- a/wiki/translations/hr/TechDraw_Workbench.md +++ b/wiki/translations/hr/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/hr - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/hr ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/hr diff --git a/wiki/translations/hr/Timber_Workbench.md b/wiki/translations/hr/Timber_Workbench.md index 90c9fa3669..189530f56b 100644 --- a/wiki/translations/hr/Timber_Workbench.md +++ b/wiki/translations/hr/Timber_Workbench.md @@ -1,5 +1,5 @@ # Timber Workbench/hr - **This workbench is no longer developed or maintained.** +**This workbench is no longer developed or maintained.** ## Introduction @@ -73,3 +73,6 @@ See [How to install macros](How_to_install_macros.md) [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Timber Workbench/hr diff --git a/wiki/translations/hr/Tutorial_for_open_windows.md b/wiki/translations/hr/Tutorial_for_open_windows.md index d84ff93908..3a9af9fb44 100644 --- a/wiki/translations/hr/Tutorial_for_open_windows.md +++ b/wiki/translations/hr/Tutorial_for_open_windows.md @@ -1,7 +1,4 @@ # Tutorial for open windows/hr - - - {{TutorialInfo/hr |Topic=Architecture |Level=Beginner @@ -246,4 +243,7 @@ A closer interaction between the workbenches is planed for future versions of Fr {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Tutorial for open windows/hr diff --git a/wiki/translations/hr/User_hub.md b/wiki/translations/hr/User_hub.md index 063879c98e..a4b1c3182e 100644 --- a/wiki/translations/hr/User_hub.md +++ b/wiki/translations/hr/User_hub.md @@ -1,5 +1,4 @@ -# User hub/hr - +# User hub/hr ------------------------------------------------------------------------ @@ -133,3 +132,6 @@ This is the official FreeCAD online help. Please note that the whole online help [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/hr diff --git a/wiki/translations/hr/Video_tutorials.md b/wiki/translations/hr/Video_tutorials.md index 74d9dc19c5..32f0b59e49 100644 --- a/wiki/translations/hr/Video_tutorials.md +++ b/wiki/translations/hr/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials/hr - - - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** This page presents a selection of video tutorials made by FreeCAD users and developers. Visit the [Tutorials and videos](https://forum.freecadweb.org/viewforum.php?f=36) subforum for more links. A useful source of video tutorials is [YouTube](https://YouTube.com). @@ -95,3 +92,6 @@ For more see [Video tutorials obsolete](Video_tutorials_obsolete.md). }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Video tutorials/hr diff --git a/wiki/translations/hr/Workbenches.md b/wiki/translations/hr/Workbenches.md index a31bbc28d6..0c03937985 100644 --- a/wiki/translations/hr/Workbenches.md +++ b/wiki/translations/hr/Workbenches.md @@ -1,7 +1,4 @@ # Workbenches/hr - - -
@@ -95,3 +92,6 @@ New workbenches are always in development, stay tuned! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/hr diff --git a/wiki/translations/hr/Workfeature_Workbench.md b/wiki/translations/hr/Workfeature_Workbench.md index 758b847b36..c44a1973f2 100644 --- a/wiki/translations/hr/Workfeature_Workbench.md +++ b/wiki/translations/hr/Workfeature_Workbench.md @@ -1,7 +1,4 @@ -# Workfeature Workbench/hr - - -Workfeature workbench icon +# Workfeature workbench icon Workfeature Workbench/hr {{Note|Note|Merge with [[Macro_WorkFeatures]]??}} @@ -78,3 +75,6 @@ This workbench can be installed from the [Addon Manager](Std_AddonMgr.md). - [External workbenches](External_workbenches.md) [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Workfeature Workbench/hr diff --git a/wiki/translations/hu/Category:API.md b/wiki/translations/hu/Category:API.md index c30f9a0e9c..55b975efac 100644 --- a/wiki/translations/hu/Category:API.md +++ b/wiki/translations/hu/Category:API.md @@ -1,5 +1,4 @@ # Category:API/hu - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** This category gathers articles that list objects and methods available for [Python](Python.md) programming. @@ -9,3 +8,6 @@ This category gathers articles that list objects and methods available for [Pyth [Mesh API/hu](Mesh_API/hu.md) [Category:Categories/hu](Category:Categories/hu.md) + +--- +[documentation index](../README.md) > Category:API/hu diff --git a/wiki/translations/hu/Category:Addons.md b/wiki/translations/hu/Category:Addons.md index 38eb126663..06fbeb26a9 100644 --- a/wiki/translations/hu/Category:Addons.md +++ b/wiki/translations/hu/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/hu - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [Plot Module/hu](Plot_Module/hu.md) , [Ship Workbench/hu](Ship_Workbench/hu.md) , [Category:Categories](Category:Categories.md) [Category:External Workbenches/hu](Category:External_Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:Addons/hu diff --git a/wiki/translations/hu/Category:Administration.md b/wiki/translations/hu/Category:Administration.md index c19a9ef4a3..3582f16e99 100644 --- a/wiki/translations/hu/Category:Administration.md +++ b/wiki/translations/hu/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/hu](Template:Arch_Tools_navi/hu.md) , [Template:Mesh Tools navi/hu](Template:Mesh_Tools_navi/hu.md) , [Template:OpenSCAD Tools navi/hu](Template:OpenSCAD_Tools_navi/hu.md) , [Template:Part Tools navi/hu](Template:Part_Tools_navi/hu.md) , [Template:PartDesign Tools navi/hu](Template:PartDesign_Tools_navi/hu.md) , [Template:Path Tools navi/hu](Template:Path_Tools_navi/hu.md) , [Template:Plot Tools navi/hu](Template:Plot_Tools_navi/hu.md) , [Template:Raytracing Tools navi/hu](Template:Raytracing_Tools_navi/hu.md) , [Template:Robot Tools navi/hu](Template:Robot_Tools_navi/hu.md) , [Template:Ship Tools navi/hu](Template:Ship_Tools_navi/hu.md) , [Template:Sketcher Tools navi/hu](Template:Sketcher_Tools_navi/hu.md) [Category:Categories/hu](Category:Categories/hu.md) + +--- +[documentation index](../README.md) > Category:Administration/hu diff --git a/wiki/translations/hu/Category:Arch.md b/wiki/translations/hu/Category:Arch.md index ce1756c9a9..ed4d50cc58 100644 --- a/wiki/translations/hu/Category:Arch.md +++ b/wiki/translations/hu/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Template:Arch Tools navi/hu](Template:Arch_Tools_navi/hu.md) [Category:User Documentation/hu](Category:User_Documentation/hu.md) [Category:BIM/hu](Category:BIM/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:Arch/hu diff --git a/wiki/translations/hu/Category:Artwork.md b/wiki/translations/hu/Category:Artwork.md index 376efec13f..6e04a56dc6 100644 --- a/wiki/translations/hu/Category:Artwork.md +++ b/wiki/translations/hu/Category:Artwork.md @@ -4,3 +4,6 @@ This category collects pages related to artwork existing in the program, like ic ### Contents: [Category:Developer Documentation/hu](Category:Developer_Documentation/hu.md) [Category:Icon/hu](Category:Icon/hu.md) + +--- +[documentation index](../README.md) > Category:Artwork/hu diff --git a/wiki/translations/hu/Category:BIM.md b/wiki/translations/hu/Category:BIM.md index 88d5429f7a..fc5eacbb74 100644 --- a/wiki/translations/hu/Category:BIM.md +++ b/wiki/translations/hu/Category:BIM.md @@ -4,3 +4,6 @@ This category is for pages related to building information management (BIM). ### Contents: [Category:User Documentation/hu](Category:User_Documentation/hu.md) [Category:Arch/hu](Category:Arch/hu.md) + +--- +[documentation index](../README.md) > Category:BIM/hu diff --git a/wiki/translations/hu/Category:Categories.md b/wiki/translations/hu/Category:Categories.md index 9522220a10..4dad0657b5 100644 --- a/wiki/translations/hu/Category:Categories.md +++ b/wiki/translations/hu/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , [Category:Categories/hu](Category:Categories/hu.md) [Category:Addons/hu](Category:Addons/hu.md) [Category:Administration/hu](Category:Administration/hu.md) [Category:API/hu](Category:API/hu.md) [Category:Categories/hu](Category:Categories/hu.md) [Category:Documentation/hu](Category:Documentation/hu.md) [Category:Help/hu](Category:Help/hu.md) [Category:Hubs/hu](Category:Hubs/hu.md) [Category:Template/hu](Category:Template/hu.md) + +--- +[documentation index](../README.md) > Category:Categories/hu diff --git a/wiki/translations/hu/Category:Developer_Documentation.md b/wiki/translations/hu/Category:Developer_Documentation.md index 59d54b13b9..3f30f2bf93 100644 --- a/wiki/translations/hu/Category:Developer_Documentation.md +++ b/wiki/translations/hu/Category:Developer_Documentation.md @@ -4,3 +4,6 @@ This category gathers documentation article mostly aimed at programmers ### Contents: [Category:Documentation/hu](Category:Documentation/hu.md) [Category:Artwork/hu](Category:Artwork/hu.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/hu diff --git a/wiki/translations/hu/Category:Documentation.md b/wiki/translations/hu/Category:Documentation.md index 22cf17516c..fcf6caf24f 100644 --- a/wiki/translations/hu/Category:Documentation.md +++ b/wiki/translations/hu/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [Online Help Toc/hu](Online_Help_Toc/hu.md) , , , [Category:Categories/hu](Category:Categories/hu.md) [Category:Developer Documentation/hu](Category:Developer_Documentation/hu.md) [Category:Poweruser Documentation/hu](Category:Poweruser_Documentation/hu.md) [Category:User Documentation/hu](Category:User_Documentation/hu.md) + +--- +[documentation index](../README.md) > Category:Documentation/hu diff --git a/wiki/translations/hu/Category:Draft.md b/wiki/translations/hu/Category:Draft.md index 98e8a82d24..12a9173dd7 100644 --- a/wiki/translations/hu/Category:Draft.md +++ b/wiki/translations/hu/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/hu\" and \"Workben [Draft Workbench/hu](Draft_Workbench/hu.md) [Category:User Documentation/hu](Category:User_Documentation/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:Draft/hu diff --git a/wiki/translations/hu/Category:External_Workbenches.md b/wiki/translations/hu/Category:External_Workbenches.md index edc4dd4028..2c6c09b352 100644 --- a/wiki/translations/hu/Category:External_Workbenches.md +++ b/wiki/translations/hu/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [Plot Module/hu](Plot_Module/hu.md) , [Ship Workbench/hu](Ship_Workbench/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) [Category:Addons/hu](Category:Addons/hu.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/hu diff --git a/wiki/translations/hu/Category:Help.md b/wiki/translations/hu/Category:Help.md index 68d66cea1c..f3158c7542 100644 --- a/wiki/translations/hu/Category:Help.md +++ b/wiki/translations/hu/Category:Help.md @@ -4,3 +4,6 @@ This category lists pages that contain helpfull information on MediaWiki and edi ### Contents: [Category:Categories/hu](Category:Categories/hu.md) + +--- +[documentation index](../README.md) > Category:Help/hu diff --git a/wiki/translations/hu/Category:Hubs.md b/wiki/translations/hu/Category:Hubs.md index f25df6a4af..a46e5ce389 100644 --- a/wiki/translations/hu/Category:Hubs.md +++ b/wiki/translations/hu/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [User hub/hu](User_hub/hu.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Hubs/hu diff --git a/wiki/translations/hu/Category:Icon.md b/wiki/translations/hu/Category:Icon.md index c50dae5b46..8aebbc1b62 100644 --- a/wiki/translations/hu/Category:Icon.md +++ b/wiki/translations/hu/Category:Icon.md @@ -4,3 +4,6 @@ This category contains icon images, and buttons, which can be placed in document ### Contents: [Category:Artwork/hu](Category:Artwork/hu.md) + +--- +[documentation index](../README.md) > Category:Icon/hu diff --git a/wiki/translations/hu/Category:Mesh.md b/wiki/translations/hu/Category:Mesh.md index 3d42f2e9b3..3b8deec774 100644 --- a/wiki/translations/hu/Category:Mesh.md +++ b/wiki/translations/hu/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/hu](Mesh_Workbench/hu. [Mesh BuildRegularSolid/hu](Mesh_BuildRegularSolid/hu.md) , [Mesh Export/hu](Mesh_Export/hu.md) , [Mesh HarmonizeNormals/hu](Mesh_HarmonizeNormals/hu.md) , [Mesh Import/hu](Mesh_Import/hu.md) , [Template:Mesh Tools navi/hu](Template:Mesh_Tools_navi/hu.md) , [Mesh Workbench/hu](Mesh_Workbench/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:Mesh/hu diff --git a/wiki/translations/hu/Category:OpenSCAD.md b/wiki/translations/hu/Category:OpenSCAD.md index 45ea6813e3..1c4b7f524f 100644 --- a/wiki/translations/hu/Category:OpenSCAD.md +++ b/wiki/translations/hu/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/hu](OpenSCAD_Workb [Template:OpenSCAD Tools navi/hu](Template:OpenSCAD_Tools_navi/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/hu diff --git a/wiki/translations/hu/Category:Part.md b/wiki/translations/hu/Category:Part.md index 88faeaa9b9..dc4d1f71be 100644 --- a/wiki/translations/hu/Category:Part.md +++ b/wiki/translations/hu/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/hu](Part_Workbench/hu.m [Template:Part Tools navi/hu](Template:Part_Tools_navi/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:Part/hu diff --git a/wiki/translations/hu/Category:PartDesign.md b/wiki/translations/hu/Category:PartDesign.md index 9594ab4de7..1bc2b6eed0 100644 --- a/wiki/translations/hu/Category:PartDesign.md +++ b/wiki/translations/hu/Category:PartDesign.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/hu](PartDesign_Wo [Template:PartDesign Tools navi/hu](Template:PartDesign_Tools_navi/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:PartDesign/hu diff --git a/wiki/translations/hu/Category:Path.md b/wiki/translations/hu/Category:Path.md index ddb7d973da..ac5e54d774 100644 --- a/wiki/translations/hu/Category:Path.md +++ b/wiki/translations/hu/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/hu](PartDesign_Wo [Template:Path Tools navi/hu](Template:Path_Tools_navi/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:Path/hu diff --git a/wiki/translations/hu/Category:Plot.md b/wiki/translations/hu/Category:Plot.md index 2ac327c9ff..718675120c 100644 --- a/wiki/translations/hu/Category:Plot.md +++ b/wiki/translations/hu/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/hu](Plot_Workbench/hu.m [Plot Module/hu](Plot_Module/hu.md) , [Template:Plot Tools navi/hu](Template:Plot_Tools_navi/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:Plot/hu diff --git a/wiki/translations/hu/Category:Points.md b/wiki/translations/hu/Category:Points.md index 9557ea7ed7..f9b3637b03 100644 --- a/wiki/translations/hu/Category:Points.md +++ b/wiki/translations/hu/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/hu](Points_Workbench/ [Points Workbench/hu](Points_Workbench/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:Points/hu diff --git a/wiki/translations/hu/Category:Poweruser_Documentation.md b/wiki/translations/hu/Category:Poweruser_Documentation.md index a606031a53..dd0490e04f 100644 --- a/wiki/translations/hu/Category:Poweruser_Documentation.md +++ b/wiki/translations/hu/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Mesh API/hu](Mesh_API/hu.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/hu diff --git a/wiki/translations/hu/Category:Raytracing.md b/wiki/translations/hu/Category:Raytracing.md index 2ca405504a..bc3167dff2 100644 --- a/wiki/translations/hu/Category:Raytracing.md +++ b/wiki/translations/hu/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/hu](Raytracing_Wo [Template:Raytracing Tools navi/hu](Template:Raytracing_Tools_navi/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:Raytracing/hu diff --git a/wiki/translations/hu/Category:Robot.md b/wiki/translations/hu/Category:Robot.md index 336fae6e4b..3accd157df 100644 --- a/wiki/translations/hu/Category:Robot.md +++ b/wiki/translations/hu/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/hu](Robot_Workbench/hu [Template:Robot Tools navi/hu](Template:Robot_Tools_navi/hu.md) , [Robot Workbench/hu](Robot_Workbench/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:Robot/hu diff --git a/wiki/translations/hu/Category:Ship.md b/wiki/translations/hu/Category:Ship.md index 192c9182b8..6d9798cea3 100644 --- a/wiki/translations/hu/Category:Ship.md +++ b/wiki/translations/hu/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/hu](Ship_Workbench/hu.m [Template:Ship Tools navi/hu](Template:Ship_Tools_navi/hu.md) , [Ship Workbench/hu](Ship_Workbench/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:Ship/hu diff --git a/wiki/translations/hu/Category:Sketcher.md b/wiki/translations/hu/Category:Sketcher.md index 7348e4fa9d..fc2a06a3f6 100644 --- a/wiki/translations/hu/Category:Sketcher.md +++ b/wiki/translations/hu/Category:Sketcher.md @@ -6,3 +6,6 @@ This category lists pages related to the [Sketcher Workbench/hu](Sketcher_Workbe [Template:Sketcher Tools navi/hu](Template:Sketcher_Tools_navi/hu.md) , [Sketcher Workbench/hu](Sketcher_Workbench/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:Sketcher/hu diff --git a/wiki/translations/hu/Category:Surface.md b/wiki/translations/hu/Category:Surface.md index 0d2a04bf18..b58e8abaf8 100644 --- a/wiki/translations/hu/Category:Surface.md +++ b/wiki/translations/hu/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/hu](Surface_Workbenc [Surface Workbench/hu](Surface_Workbench/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:Surface/hu diff --git a/wiki/translations/hu/Category:TechDraw.md b/wiki/translations/hu/Category:TechDraw.md index 966e374d04..b02186ad30 100644 --- a/wiki/translations/hu/Category:TechDraw.md +++ b/wiki/translations/hu/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/hu](TechDraw_Workbe [TechDraw Workbench/hu](TechDraw_Workbench/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:TechDraw/hu diff --git a/wiki/translations/hu/Category:Template.md b/wiki/translations/hu/Category:Template.md index 44f3f0745f..6ae383256a 100644 --- a/wiki/translations/hu/Category:Template.md +++ b/wiki/translations/hu/Category:Template.md @@ -6,3 +6,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates/hu.md). ### Contents: [Category:Categories/hu](Category:Categories/hu.md) [Category:Template:Navigation/hu](Category:Template:Navigation/hu.md) + +--- +[documentation index](../README.md) > Category:Template/hu diff --git a/wiki/translations/hu/Category:Template:Navigation.md b/wiki/translations/hu/Category:Template:Navigation.md index 57a99a7778..54df2bb97e 100644 --- a/wiki/translations/hu/Category:Template:Navigation.md +++ b/wiki/translations/hu/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/hu](Template:Arch_Tools_navi/hu.md) , [Template:Mesh Tools navi/hu](Template:Mesh_Tools_navi/hu.md) , [Template:OpenSCAD Tools navi/hu](Template:OpenSCAD_Tools_navi/hu.md) , [Template:Part Tools navi/hu](Template:Part_Tools_navi/hu.md) , [Template:PartDesign Tools navi/hu](Template:PartDesign_Tools_navi/hu.md) , [Template:Path Tools navi/hu](Template:Path_Tools_navi/hu.md) , [Template:Plot Tools navi/hu](Template:Plot_Tools_navi/hu.md) , [Template:Raytracing Tools navi/hu](Template:Raytracing_Tools_navi/hu.md) , [Template:Robot Tools navi/hu](Template:Robot_Tools_navi/hu.md) , [Template:Ship Tools navi/hu](Template:Ship_Tools_navi/hu.md) , [Template:Sketcher Tools navi/hu](Template:Sketcher_Tools_navi/hu.md) [Category:Template/hu](Category:Template/hu.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/hu diff --git a/wiki/translations/hu/Category:User_Documentation.md b/wiki/translations/hu/Category:User_Documentation.md index 5c208e0bbc..317550639b 100644 --- a/wiki/translations/hu/Category:User_Documentation.md +++ b/wiki/translations/hu/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [Draft Workbench/hu](Draft_Workbench/hu.md) , [Mesh API/hu](Mesh_API/hu.md) , [Mesh BuildRegularSolid/hu](Mesh_BuildRegularSolid/hu.md) , [Mesh Export/hu](Mesh_Export/hu.md) , [Mesh HarmonizeNormals/hu](Mesh_HarmonizeNormals/hu.md) , [Mesh Import/hu](Mesh_Import/hu.md) , [Mesh Workbench/hu](Mesh_Workbench/hu.md) , [Online Help Toc/hu](Online_Help_Toc/hu.md) , [Plot Module/hu](Plot_Module/hu.md) , [Points Workbench/hu](Points_Workbench/hu.md) , [Robot Workbench/hu](Robot_Workbench/hu.md) , [Ship Workbench/hu](Ship_Workbench/hu.md) , [Sketcher Workbench/hu](Sketcher_Workbench/hu.md) , [Surface Workbench/hu](Surface_Workbench/hu.md) , [TechDraw Workbench/hu](TechDraw_Workbench/hu.md) , [User hub/hu](User_hub/hu.md) , [Workbenches/hu](Workbenches/hu.md) , , , , [Category:Documentation/hu](Category:Documentation/hu.md) [Category:Arch/hu](Category:Arch/hu.md) [Category:BIM/hu](Category:BIM/hu.md) [Category:Draft/hu](Category:Draft/hu.md) [Category:Workbenches/hu](Category:Workbenches/hu.md) + +--- +[documentation index](../README.md) > Category:User Documentation/hu diff --git a/wiki/translations/hu/Category:Workbenches.md b/wiki/translations/hu/Category:Workbenches.md index 46e9f656be..7f0467a73b 100644 --- a/wiki/translations/hu/Category:Workbenches.md +++ b/wiki/translations/hu/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Draft Workbench/hu](Draft_Workbench/hu.md) , [Mesh Workbench/hu](Mesh_Workbench/hu.md) , [Points Workbench/hu](Points_Workbench/hu.md) , [Robot Workbench/hu](Robot_Workbench/hu.md) , [Sketcher Workbench/hu](Sketcher_Workbench/hu.md) , [Surface Workbench/hu](Surface_Workbench/hu.md) , [TechDraw Workbench/hu](TechDraw_Workbench/hu.md) , [Workbenches/hu](Workbenches/hu.md) , , , , , , , , , , , , , , , , [Category:User Documentation/hu](Category:User_Documentation/hu.md) [Category:Arch/hu](Category:Arch/hu.md) [Category:Draft/hu](Category:Draft/hu.md) [Category:External Workbenches/hu](Category:External_Workbenches/hu.md) [Category:Mesh/hu](Category:Mesh/hu.md) [Category:OpenSCAD/hu](Category:OpenSCAD/hu.md) [Category:Part/hu](Category:Part/hu.md) [Category:PartDesign/hu](Category:PartDesign/hu.md) [Category:Path/hu](Category:Path/hu.md) [Category:Plot/hu](Category:Plot/hu.md) [Category:Points/hu](Category:Points/hu.md) [Category:Raytracing/hu](Category:Raytracing/hu.md) [Category:Robot/hu](Category:Robot/hu.md) [Category:Ship/hu](Category:Ship/hu.md) [Category:Sketcher/hu](Category:Sketcher/hu.md) [Category:Surface/hu](Category:Surface/hu.md) [Category:TechDraw/hu](Category:TechDraw/hu.md) + +--- +[documentation index](../README.md) > Category:Workbenches/hu diff --git a/wiki/translations/hu/Draft_Workbench.md b/wiki/translations/hu/Draft_Workbench.md index 30d5aa3e5f..25484e9cf1 100644 --- a/wiki/translations/hu/Draft_Workbench.md +++ b/wiki/translations/hu/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/hu - - - - - -Draft workbench icon +# Draft workbench icon Draft Workbench/hu {{TOCright}} @@ -353,3 +347,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/hu diff --git a/wiki/translations/hu/Mesh_API.md b/wiki/translations/hu/Mesh_API.md index 61ba8d399b..d6eda5f7b2 100644 --- a/wiki/translations/hu/Mesh_API.md +++ b/wiki/translations/hu/Mesh_API.md @@ -1,7 +1,4 @@ # Mesh API/hu - - - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** The Mesh objects can be manipulated by adding new facets, deleting facets, importing from an STL file, transforming the mesh and much more. For a complete overview of what can be done see also the [Mesh Workbench](Mesh_Workbench.md) documentation. A mesh object cannot be added to an existing document directly. Therefore the document must create an object with a property class that supports meshes. Example: @@ -236,3 +233,6 @@ d.recompute() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh API/hu diff --git a/wiki/translations/hu/Mesh_BuildRegularSolid.md b/wiki/translations/hu/Mesh_BuildRegularSolid.md index eec98bec10..76d62d1217 100644 --- a/wiki/translations/hu/Mesh_BuildRegularSolid.md +++ b/wiki/translations/hu/Mesh_BuildRegularSolid.md @@ -1,3 +1,4 @@ +# Mesh BuildRegularSolid/hu --- - GuiCommand: Name:Mesh BuildRegularSolid Workbenches:[[Mesh Workbench/hu Háló]]|MenuLocation:Hálók → Szabályos tömör test… Shortcut: SeeAlso:--- @@ -136,4 +137,7 @@ Mesh objects created with this command inherit all [Mesh Feature](Mesh_Feature.m {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh BuildRegularSolid/hu diff --git a/wiki/translations/hu/Mesh_Export.md b/wiki/translations/hu/Mesh_Export.md index 4c9113fb14..8c0327b436 100644 --- a/wiki/translations/hu/Mesh_Export.md +++ b/wiki/translations/hu/Mesh_Export.md @@ -6,6 +6,8 @@ SeeAlso:[Std Export](Std_Export.md), [Import Export](Import_Export.md) --- +# Mesh Export/hu + ## Description The **Mesh Export** command exports a mesh object to a mesh file format. Several file formats are supported. @@ -51,4 +53,7 @@ Mesh.export([doc.Cone, doc.Cylinder], 'D:/testfiles/mymodel.stl') {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Export/hu diff --git a/wiki/translations/hu/Mesh_HarmonizeNormals.md b/wiki/translations/hu/Mesh_HarmonizeNormals.md index 22c5356f56..56f0cc2fb3 100644 --- a/wiki/translations/hu/Mesh_HarmonizeNormals.md +++ b/wiki/translations/hu/Mesh_HarmonizeNormals.md @@ -1,3 +1,4 @@ +# Mesh HarmonizeNormals/hu --- - GuiCommand: Name:Mesh HarmonizeNormals‏‎ MenuLocation:Hálók → Normálisok kiegyenlítése Workbenches:[[Mesh Workbench/hu Háló]]|Shortcut: SeeAlso:--- @@ -46,4 +47,7 @@ A kijelölt hálók normálisainak kiegyenlítése. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh HarmonizeNormals/hu diff --git a/wiki/translations/hu/Mesh_Import.md b/wiki/translations/hu/Mesh_Import.md index 08dbd7311f..417f1ac60e 100644 --- a/wiki/translations/hu/Mesh_Import.md +++ b/wiki/translations/hu/Mesh_Import.md @@ -1,3 +1,4 @@ +# Mesh Import/hu --- - GuiCommand: Name:Mesh ImportMesh MenuLocation:Hálók → Háló importálása Workbenches:[SeeAlso:[[Std_Import|Std Import](Mesh_Workbench___Háló]].md)--- @@ -63,4 +64,7 @@ Mesh.insert('D:/testfiles/cylinder.stl') {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Import/hu diff --git a/wiki/translations/hu/Mesh_Workbench.md b/wiki/translations/hu/Mesh_Workbench.md index 27794c9f92..617355615d 100644 --- a/wiki/translations/hu/Mesh_Workbench.md +++ b/wiki/translations/hu/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/hu - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench/hu {{TOCright}} @@ -138,3 +132,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/hu diff --git a/wiki/translations/hu/Online_Help_Toc.md b/wiki/translations/hu/Online_Help_Toc.md index 09d2548516..d4d9d5c7ea 100644 --- a/wiki/translations/hu/Online_Help_Toc.md +++ b/wiki/translations/hu/Online_Help_Toc.md @@ -1,6 +1,4 @@ # Online Help Toc/hu - - This is the table of contents used for the automatic building of the **Online Help** system in FreeCAD. A printable version of this manual is also available on the [releases page](https://github.com/FreeCAD/FreeCAD/releases). If you have any questions or need help with FreeCAD please consult the [help page](Help.md) including the forums and chat groups. There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction.md). @@ -114,3 +112,6 @@ There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction. [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/hu diff --git a/wiki/translations/hu/Plot_Module.md b/wiki/translations/hu/Plot_Module.md index 8c18d8e12d..a973632304 100644 --- a/wiki/translations/hu/Plot_Module.md +++ b/wiki/translations/hu/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/hu - - -Plot workbench icon +# Plot workbench icon Plot Module/hu {{TOCright}} @@ -64,3 +61,6 @@ Since the Plot Workbench is a layer on top of `matplotlib`, you are free to use }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/hu diff --git a/wiki/translations/hu/Plot_Workbench.md b/wiki/translations/hu/Plot_Workbench.md index ca4d773957..884bdfea5d 100644 --- a/wiki/translations/hu/Plot_Workbench.md +++ b/wiki/translations/hu/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/hu 1. REDIRECT [Plot\_Module/hu](Plot_Module/hu.md) + +--- +[documentation index](../README.md) > Plot Workbench/hu diff --git a/wiki/translations/hu/Points_Module.md b/wiki/translations/hu/Points_Module.md index 6f329ba742..b4eb963cea 100644 --- a/wiki/translations/hu/Points_Module.md +++ b/wiki/translations/hu/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/hu 1. REDIRECT [Points\_Workbench/hu](Points_Workbench/hu.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/hu diff --git a/wiki/translations/hu/Points_Workbench.md b/wiki/translations/hu/Points_Workbench.md index 761665dcd0..07877d4318 100644 --- a/wiki/translations/hu/Points_Workbench.md +++ b/wiki/translations/hu/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/hu - - - - - -Points workbench icon +# Points workbench icon Points Workbench/hu ## Introduction @@ -51,3 +45,6 @@ All Points Workbench tools can be accessed from the **Points** menu. Some tools }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/hu diff --git a/wiki/translations/hu/Ray_Tracing_Workbench.md b/wiki/translations/hu/Ray_Tracing_Workbench.md index a7707de780..02eed26b1a 100644 --- a/wiki/translations/hu/Ray_Tracing_Workbench.md +++ b/wiki/translations/hu/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/hu 1. REDIRECT [Raytracing\_Workbench/hu](Raytracing_Workbench/hu.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/hu diff --git a/wiki/translations/hu/Robot_Workbench.md b/wiki/translations/hu/Robot_Workbench.md index 23a22d05c3..c58b500d55 100644 --- a/wiki/translations/hu/Robot_Workbench.md +++ b/wiki/translations/hu/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/hu - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. @@ -81,3 +75,6 @@ See the [Robot API example](Robot_API_example.md) for a description of the funct }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/hu diff --git a/wiki/translations/hu/Ship_Workbench.md b/wiki/translations/hu/Ship_Workbench.md index 8e28bd41c2..4b9c983a6e 100644 --- a/wiki/translations/hu/Ship_Workbench.md +++ b/wiki/translations/hu/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/hu - - -Ship workbench icon +# Ship workbench icon Ship Workbench/hu {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/hu diff --git a/wiki/translations/hu/Sketcher_Workbench.md b/wiki/translations/hu/Sketcher_Workbench.md index 672c0ecd36..5a969886d2 100644 --- a/wiki/translations/hu/Sketcher_Workbench.md +++ b/wiki/translations/hu/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/hu - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/hu {{TOCright}} @@ -319,3 +313,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/hu diff --git a/wiki/translations/hu/Surface_Module.md b/wiki/translations/hu/Surface_Module.md index a17c6b633d..aec8dee9c3 100644 --- a/wiki/translations/hu/Surface_Module.md +++ b/wiki/translations/hu/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/hu 1. REDIRECT [Surface\_Workbench/hu](Surface_Workbench/hu.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/hu diff --git a/wiki/translations/hu/Surface_Workbench.md b/wiki/translations/hu/Surface_Workbench.md index 607ddb1ddf..01ab80676f 100644 --- a/wiki/translations/hu/Surface_Workbench.md +++ b/wiki/translations/hu/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/hu - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/hu {{TOCright}} @@ -57,3 +51,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/hu diff --git a/wiki/translations/hu/TechDraw_Module.md b/wiki/translations/hu/TechDraw_Module.md index 47354ed0d3..2e0b22c57b 100644 --- a/wiki/translations/hu/TechDraw_Module.md +++ b/wiki/translations/hu/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/hu 1. REDIRECT [TechDraw\_Workbench/hu](TechDraw_Workbench/hu.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/hu diff --git a/wiki/translations/hu/TechDraw_Workbench.md b/wiki/translations/hu/TechDraw_Workbench.md index 4f014fe1ad..b2ce35e5b3 100644 --- a/wiki/translations/hu/TechDraw_Workbench.md +++ b/wiki/translations/hu/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/hu - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/hu ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/hu diff --git a/wiki/translations/hu/User_hub.md b/wiki/translations/hu/User_hub.md index 0ea7af43a7..461df979b8 100644 --- a/wiki/translations/hu/User_hub.md +++ b/wiki/translations/hu/User_hub.md @@ -1,5 +1,4 @@ -# User hub/hu - +# User hub/hu ------------------------------------------------------------------------ @@ -122,3 +121,6 @@ This is the official FreeCAD online help. Please note that the whole online help [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/hu diff --git a/wiki/translations/hu/Workbenches.md b/wiki/translations/hu/Workbenches.md index c9f2db438c..89a6dc5010 100644 --- a/wiki/translations/hu/Workbenches.md +++ b/wiki/translations/hu/Workbenches.md @@ -1,9 +1,4 @@ # Workbenches/hu - - - - - FreeCAD, like many modern design applications such as [Revit](wikipedia:Revit.md) or [CATIA](wikipedia:CATIA.md), is based on the concept of [Workbench](wikipedia:Workbench.md). 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. @@ -83,3 +78,6 @@ New workbenches are always in development, stay tuned! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/hu diff --git a/wiki/translations/id/API_documentation.md b/wiki/translations/id/API_documentation.md index 39206c3419..b623bf7ae2 100644 --- a/wiki/translations/id/API_documentation.md +++ b/wiki/translations/id/API_documentation.md @@ -5,3 +5,6 @@ This category gathers article that list objects and methods available to the pyt **This section contains obsolete data, and is in the process of being transferred to autogenerated API documentation on http://www.freecadweb.org/api** [Category:Categories/id](Category:Categories/id.md) + +--- +[documentation index](../README.md) > API documentation/id diff --git a/wiki/translations/id/About_FreeCAD.md b/wiki/translations/id/About_FreeCAD.md index 7101dc4ba6..07049eb6e5 100644 --- a/wiki/translations/id/About_FreeCAD.md +++ b/wiki/translations/id/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/id - - - +# About FreeCAD/id
@@ -41,3 +38,6 @@ FreeCAD is maintained and developed by a community of enthusiastic developers an [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/id diff --git a/wiki/translations/id/Arch_Module.md b/wiki/translations/id/Arch_Module.md index 0eee5f4338..d67d182f97 100644 --- a/wiki/translations/id/Arch_Module.md +++ b/wiki/translations/id/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/id 1. REDIRECT [Arch\_Workbench/id](Arch_Workbench/id.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/id diff --git a/wiki/translations/id/Arch_Workbench.md b/wiki/translations/id/Arch_Workbench.md index 23a71f764b..4c4aeff16c 100644 --- a/wiki/translations/id/Arch_Workbench.md +++ b/wiki/translations/id/Arch_Workbench.md @@ -1,7 +1,4 @@ # Arch Workbench/id - - - {{docnav/id|[Workbenches/id](Workbenches/id.md)|[Draft Workbench/id](Draft_Workbench/id.md)|IconL=|IconR=Workbench_Draft.svg}} Arch workbench icon @@ -144,3 +141,6 @@ The Arch module can be used in [Python](Python.md) scripts and [macros](macros.m [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/id diff --git a/wiki/translations/id/Assembly_project.md b/wiki/translations/id/Assembly_project.md index 97fd64c0d0..d28e0f4f1d 100644 --- a/wiki/translations/id/Assembly_project.md +++ b/wiki/translations/id/Assembly_project.md @@ -1,7 +1,4 @@ # Assembly project/id - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -156,3 +153,6 @@ Interface to allow (external) (multi)physics simulation software to take control - \... [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Assembly project/id diff --git a/wiki/translations/id/Category:Addons.md b/wiki/translations/id/Category:Addons.md index 8469086593..d155d94543 100644 --- a/wiki/translations/id/Category:Addons.md +++ b/wiki/translations/id/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/id - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [Plot Module/id](Plot_Module/id.md) , [Ship Workbench/id](Ship_Workbench/id.md) , , [Category:Categories](Category:Categories.md) [Category:External Workbenches/id](Category:External_Workbenches/id.md) [Category:Macros/id](Category:Macros/id.md) + +--- +[documentation index](../README.md) > Category:Addons/id diff --git a/wiki/translations/id/Category:Administration.md b/wiki/translations/id/Category:Administration.md index 76cd8afe71..55f56d3c54 100644 --- a/wiki/translations/id/Category:Administration.md +++ b/wiki/translations/id/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/id](Template:Arch_Tools_navi/id.md) , [Template:Drawing Tools navi/id](Template:Drawing_Tools_navi/id.md) , [Template:FEM Tools navi/id](Template:FEM_Tools_navi/id.md) , [Template:Mesh Tools navi/id](Template:Mesh_Tools_navi/id.md) , [Template:OpenSCAD Tools navi/id](Template:OpenSCAD_Tools_navi/id.md) , [Template:Part Tools navi/id](Template:Part_Tools_navi/id.md) , [Template:PartDesign Tools navi/id](Template:PartDesign_Tools_navi/id.md) , [Template:Path Tools navi/id](Template:Path_Tools_navi/id.md) , [Template:Plot Tools navi/id](Template:Plot_Tools_navi/id.md) , [Template:Raytracing Tools navi/id](Template:Raytracing_Tools_navi/id.md) , [Template:Robot Tools navi/id](Template:Robot_Tools_navi/id.md) , [Template:Ship Tools navi/id](Template:Ship_Tools_navi/id.md) , [Template:Sketcher Tools navi/id](Template:Sketcher_Tools_navi/id.md) [Category:Categories/id](Category:Categories/id.md) + +--- +[documentation index](../README.md) > Category:Administration/id diff --git a/wiki/translations/id/Category:Arch.md b/wiki/translations/id/Category:Arch.md index ea30be0fe4..2c2dcb6aeb 100644 --- a/wiki/translations/id/Category:Arch.md +++ b/wiki/translations/id/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Template:Arch Tools navi/id](Template:Arch_Tools_navi/id.md) , [Arch Workbench/id](Arch_Workbench/id.md) [Category:User Documentation/id](Category:User_Documentation/id.md) [Category:BIM/id](Category:BIM/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Arch/id diff --git a/wiki/translations/id/Category:BIM.md b/wiki/translations/id/Category:BIM.md index a57af04742..0ec4311456 100644 --- a/wiki/translations/id/Category:BIM.md +++ b/wiki/translations/id/Category:BIM.md @@ -4,3 +4,6 @@ This category is for pages related to building information management (BIM). ### Contents: [Category:User Documentation/id](Category:User_Documentation/id.md) [Category:Arch/id](Category:Arch/id.md) + +--- +[documentation index](../README.md) > Category:BIM/id diff --git a/wiki/translations/id/Category:Base.md b/wiki/translations/id/Category:Base.md index 4f87893cc8..350059e91c 100644 --- a/wiki/translations/id/Category:Base.md +++ b/wiki/translations/id/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/id](Category:User_Documentation/id.md) + +--- +[documentation index](../README.md) > Category:Base/id diff --git a/wiki/translations/id/Category:Categories.md b/wiki/translations/id/Category:Categories.md index e5ff83a192..66fb740c7d 100644 --- a/wiki/translations/id/Category:Categories.md +++ b/wiki/translations/id/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w [API documentation/id](API_documentation/id.md) , , , , , , , , , , , , [Category:Categories/id](Category:Categories/id.md) [Category:Addons/id](Category:Addons/id.md) [Category:Administration/id](Category:Administration/id.md) [Category:Categories/id](Category:Categories/id.md) [Category:Command Reference/id](Category:Command_Reference/id.md) [Category:Developer/id](Category:Developer/id.md) [Category:Hubs/id](Category:Hubs/id.md) [Category:Macros/id](Category:Macros/id.md) [Category:News/id](Category:News/id.md) [Category:Python Code/id](Category:Python_Code/id.md) [Category:Roadmap/id](Category:Roadmap/id.md) [Category:Template/id](Category:Template/id.md) [Category:Tutorials/id](Category:Tutorials/id.md) + +--- +[documentation index](../README.md) > Category:Categories/id diff --git a/wiki/translations/id/Category:Command_Reference.md b/wiki/translations/id/Category:Command_Reference.md index 8b74fef04a..09bd69c3c7 100644 --- a/wiki/translations/id/Category:Command_Reference.md +++ b/wiki/translations/id/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD command. [Template:GuiCommand/id](Template:GuiCommand/id.md) [Category:Categories/id](Category:Categories/id.md) + +--- +[documentation index](../README.md) > Category:Command Reference/id diff --git a/wiki/translations/id/Category:Developer.md b/wiki/translations/id/Category:Developer.md index da847afa25..dec189298a 100644 --- a/wiki/translations/id/Category:Developer.md +++ b/wiki/translations/id/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [File Format FCStd/id](File_Format_FCStd/id.md) [Category:Categories/id](Category:Categories/id.md) + +--- +[documentation index](../README.md) > Category:Developer/id diff --git a/wiki/translations/id/Category:Developer_Documentation.md b/wiki/translations/id/Category:Developer_Documentation.md index 8081139ce8..ffff19f026 100644 --- a/wiki/translations/id/Category:Developer_Documentation.md +++ b/wiki/translations/id/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Code snippets/id](Code_snippets/id.md) , [Embedding FreeCAD/id](Embedding_FreeCAD/id.md) , [File Format FCStd/id](File_Format_FCStd/id.md) , [FreeCAD Scripting Basics/id](FreeCAD_Scripting_Basics/id.md) , [Installing on Linux/id](Installing_on_Linux/id.md) , [Introduction to Python/id](Introduction_to_Python/id.md) , [Line drawing function/id](Line_drawing_function/id.md) , [Localisation/id](Localisation/id.md) , [Macros/id](Macros/id.md) , [Mesh Scripting/id](Mesh_Scripting/id.md) , [Mesh to Part/id](Mesh_to_Part/id.md) , [Pivy/id](Pivy/id.md) , [Property/id](Property/id.md) , [PySide/id](PySide/id.md) , [Python scripting tutorial/id](Python_scripting_tutorial/id.md) , [Scenegraph/id](Scenegraph/id.md) , [Scripted objects/id](Scripted_objects/id.md) , [Topological data scripting/id](Topological_data_scripting/id.md) [Category:Documentation/id](Category:Documentation/id.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/id diff --git a/wiki/translations/id/Category:Documentation.md b/wiki/translations/id/Category:Documentation.md index aeec21d155..52611d8189 100644 --- a/wiki/translations/id/Category:Documentation.md +++ b/wiki/translations/id/Category:Documentation.md @@ -8,3 +8,6 @@ Kategori ini berisi artikel tentang penggunaan FreeCAD. Hal ini juga daftar pusa [Online Help Toc/id](Online_Help_Toc/id.md) , [Release notes 0.13/id](Release_notes_0.13/id.md) , , , , [Category:Documentation/id](Category:Documentation/id.md) [Category:Developer Documentation/id](Category:Developer_Documentation/id.md) [Category:Documentation/id](Category:Documentation/id.md) [Category:Poweruser Documentation/id](Category:Poweruser_Documentation/id.md) [Category:User Documentation/id](Category:User_Documentation/id.md) + +--- +[documentation index](../README.md) > Category:Documentation/id diff --git a/wiki/translations/id/Category:Draft.md b/wiki/translations/id/Category:Draft.md index b460558343..7290f72eae 100644 --- a/wiki/translations/id/Category:Draft.md +++ b/wiki/translations/id/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/id\" and \"Workben [Draft Workbench/id](Draft_Workbench/id.md) [Category:User Documentation/id](Category:User_Documentation/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Draft/id diff --git a/wiki/translations/id/Category:Drawing.md b/wiki/translations/id/Category:Drawing.md index 50d3737a14..1e968045d9 100644 --- a/wiki/translations/id/Category:Drawing.md +++ b/wiki/translations/id/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/id](Drawing_Workbenc [Template:Drawing Tools navi/id](Template:Drawing_Tools_navi/id.md) , [Drawing Workbench/id](Drawing_Workbench/id.md) [Category:Obsolete Workbenches/id](Category:Obsolete_Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Drawing/id diff --git a/wiki/translations/id/Category:External_Workbenches.md b/wiki/translations/id/Category:External_Workbenches.md index af6f7eec92..e533968c41 100644 --- a/wiki/translations/id/Category:External_Workbenches.md +++ b/wiki/translations/id/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [Plot Module/id](Plot_Module/id.md) , [Ship Workbench/id](Ship_Workbench/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) [Category:Addons/id](Category:Addons/id.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/id diff --git a/wiki/translations/id/Category:FEM.md b/wiki/translations/id/Category:FEM.md index 5cd750dc52..8447b933d7 100644 --- a/wiki/translations/id/Category:FEM.md +++ b/wiki/translations/id/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/id](FEM_Workbench/id.md) [Template:FEM Tools navi/id](Template:FEM_Tools_navi/id.md) , [FEM Workbench/id](FEM_Workbench/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:FEM/id diff --git a/wiki/translations/id/Category:File_Formats.md b/wiki/translations/id/Category:File_Formats.md index 3e9677c667..282f124300 100644 --- a/wiki/translations/id/Category:File_Formats.md +++ b/wiki/translations/id/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [File Format FCStd/id](File_Format_FCStd/id.md) + +--- +[documentation index](../README.md) > Category:File Formats/id diff --git a/wiki/translations/id/Category:Glossary.md b/wiki/translations/id/Category:Glossary.md index f9ca62afe9..c8d9f167c0 100644 --- a/wiki/translations/id/Category:Glossary.md +++ b/wiki/translations/id/Category:Glossary.md @@ -4,3 +4,6 @@ This category tracks pages that explain definitions of words related to FreeCAD ### Contents: [Manipulator/id](Manipulator/id.md) + +--- +[documentation index](../README.md) > Category:Glossary/id diff --git a/wiki/translations/id/Category:Hubs.md b/wiki/translations/id/Category:Hubs.md index 800d41fb50..483f7c3bf4 100644 --- a/wiki/translations/id/Category:Hubs.md +++ b/wiki/translations/id/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Power users hub/id](Power_users_hub/id.md) , [User hub/id](User_hub/id.md) [Category:Categories/id](Category:Categories/id.md) + +--- +[documentation index](../README.md) > Category:Hubs/id diff --git a/wiki/translations/id/Category:Image.md b/wiki/translations/id/Category:Image.md index 7290b0e38b..e252428768 100644 --- a/wiki/translations/id/Category:Image.md +++ b/wiki/translations/id/Category:Image.md @@ -6,3 +6,6 @@ This category lists pages related to the [Image Workbench/id](Image_Workbench/id [Image Workbench/id](Image_Workbench/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Image/id diff --git a/wiki/translations/id/Category:Macros.md b/wiki/translations/id/Category:Macros.md index 4a1aa647b7..e4f04fb1cb 100644 --- a/wiki/translations/id/Category:Macros.md +++ b/wiki/translations/id/Category:Macros.md @@ -6,3 +6,6 @@ This category contains macros to extend your FreeCAD installation with new funct [Macros/id](Macros/id.md) [Category:Addons](Category:Addons.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Macros/id diff --git a/wiki/translations/id/Category:Mesh.md b/wiki/translations/id/Category:Mesh.md index b42fdfdeed..c5a590db92 100644 --- a/wiki/translations/id/Category:Mesh.md +++ b/wiki/translations/id/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/id](Mesh_Workbench/id. [Mesh Scripting/id](Mesh_Scripting/id.md) , [Mesh to Part/id](Mesh_to_Part/id.md) , [Template:Mesh Tools navi/id](Template:Mesh_Tools_navi/id.md) , [Mesh Workbench/id](Mesh_Workbench/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Mesh/id diff --git a/wiki/translations/id/Category:News.md b/wiki/translations/id/Category:News.md index 032b7acaf8..9042dc9d61 100644 --- a/wiki/translations/id/Category:News.md +++ b/wiki/translations/id/Category:News.md @@ -6,3 +6,6 @@ This category contains articles with news and messages about FreeCAD. [Release notes 0.13/id](Release_notes_0.13/id.md) [Category:Categories/id](Category:Categories/id.md) + +--- +[documentation index](../README.md) > Category:News/id diff --git a/wiki/translations/id/Category:Obsolete_Workbenches.md b/wiki/translations/id/Category:Obsolete_Workbenches.md index 4fd7ce4661..dfe14d2b0b 100644 --- a/wiki/translations/id/Category:Obsolete_Workbenches.md +++ b/wiki/translations/id/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/id](Drawing_Workbenc [Drawing Workbench/id](Drawing_Workbench/id.md) , , [Category:Obsolete Workbenches/id](Category:Obsolete_Workbenches/id.md) [Category:Drawing/id](Category:Drawing/id.md) [Category:Obsolete Workbenches/id](Category:Obsolete_Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/id diff --git a/wiki/translations/id/Category:OpenSCAD.md b/wiki/translations/id/Category:OpenSCAD.md index 6de6ea8bcc..bea3b15e22 100644 --- a/wiki/translations/id/Category:OpenSCAD.md +++ b/wiki/translations/id/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/id](OpenSCAD_Workb [Template:OpenSCAD Tools navi/id](Template:OpenSCAD_Tools_navi/id.md) , [OpenSCAD Workbench/id](OpenSCAD_Workbench/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/id diff --git a/wiki/translations/id/Category:Part.md b/wiki/translations/id/Category:Part.md index 90a8003b3b..bd7a041cca 100644 --- a/wiki/translations/id/Category:Part.md +++ b/wiki/translations/id/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/id](Part_Workbench/id.m [Part Module/id](Part_Module/id.md) , [Template:Part Tools navi/id](Template:Part_Tools_navi/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Part/id diff --git a/wiki/translations/id/Category:PartDesign.md b/wiki/translations/id/Category:PartDesign.md index 03ab4a4a0a..7a633ca712 100644 --- a/wiki/translations/id/Category:PartDesign.md +++ b/wiki/translations/id/Category:PartDesign.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/id](PartDesign_Wo [Template:PartDesign Tools navi/id](Template:PartDesign_Tools_navi/id.md) , [PartDesign Workbench/id](PartDesign_Workbench/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:PartDesign/id diff --git a/wiki/translations/id/Category:Path.md b/wiki/translations/id/Category:Path.md index 7c8d766a1a..8c7be3a803 100644 --- a/wiki/translations/id/Category:Path.md +++ b/wiki/translations/id/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/id](PartDesign_Wo [Template:Path Tools navi/id](Template:Path_Tools_navi/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Path/id diff --git a/wiki/translations/id/Category:Plot.md b/wiki/translations/id/Category:Plot.md index a9cda41b27..0c9707900e 100644 --- a/wiki/translations/id/Category:Plot.md +++ b/wiki/translations/id/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/id](Plot_Workbench/id.m [Plot Module/id](Plot_Module/id.md) , [Template:Plot Tools navi/id](Template:Plot_Tools_navi/id.md) [Category:User\_Documentation/id](Category:User_Documentation/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Plot/id diff --git a/wiki/translations/id/Category:Points.md b/wiki/translations/id/Category:Points.md index e0bb262497..ac0cd5d31b 100644 --- a/wiki/translations/id/Category:Points.md +++ b/wiki/translations/id/Category:Points.md @@ -4,3 +4,6 @@ This category lists pages related to the [Points Workbench/id](Points_Workbench/ ### Contents: [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Points/id diff --git a/wiki/translations/id/Category:Poweruser_Documentation.md b/wiki/translations/id/Category:Poweruser_Documentation.md index a33ee921c4..08c6de930c 100644 --- a/wiki/translations/id/Category:Poweruser_Documentation.md +++ b/wiki/translations/id/Category:Poweruser_Documentation.md @@ -4,3 +4,6 @@ This category shows documentation articles dealing with python scripting, which ### Contents: [Category:Documentation/id](Category:Documentation/id.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/id diff --git a/wiki/translations/id/Category:Preferences.md b/wiki/translations/id/Category:Preferences.md index 9e169aae96..a328fc96c2 100644 --- a/wiki/translations/id/Category:Preferences.md +++ b/wiki/translations/id/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Preferences Editor/id](Preferences_Editor/id.md) + +--- +[documentation index](../README.md) > Category:Preferences/id diff --git a/wiki/translations/id/Category:Python_Code.md b/wiki/translations/id/Category:Python_Code.md index acefd145be..575741b102 100644 --- a/wiki/translations/id/Category:Python_Code.md +++ b/wiki/translations/id/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Code snippets/id](Code_snippets/id.md) , [Embedding FreeCAD/id](Embedding_FreeCAD/id.md) , [FreeCAD Scripting Basics/id](FreeCAD_Scripting_Basics/id.md) , [Introduction to Python/id](Introduction_to_Python/id.md) , [Line drawing function/id](Line_drawing_function/id.md) , [Macros/id](Macros/id.md) , [Mesh Scripting/id](Mesh_Scripting/id.md) , [Mesh to Part/id](Mesh_to_Part/id.md) , [Pivy/id](Pivy/id.md) , [Property/id](Property/id.md) , [PySide/id](PySide/id.md) , [Python scripting tutorial/id](Python_scripting_tutorial/id.md) , [Scripted objects/id](Scripted_objects/id.md) , [Topological data scripting/id](Topological_data_scripting/id.md) [Category:Categories/id](Category:Categories/id.md) + +--- +[documentation index](../README.md) > Category:Python Code/id diff --git a/wiki/translations/id/Category:Raytracing.md b/wiki/translations/id/Category:Raytracing.md index be84cc3879..b027499c8b 100644 --- a/wiki/translations/id/Category:Raytracing.md +++ b/wiki/translations/id/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/id](Raytracing_Wo [Template:Raytracing Tools navi/id](Template:Raytracing_Tools_navi/id.md) , [Raytracing Workbench/id](Raytracing_Workbench/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Raytracing/id diff --git a/wiki/translations/id/Category:Roadmap.md b/wiki/translations/id/Category:Roadmap.md index c88fe9abc3..a137e31e8f 100644 --- a/wiki/translations/id/Category:Roadmap.md +++ b/wiki/translations/id/Category:Roadmap.md @@ -6,3 +6,6 @@ This category gathers all articles documenting what is planned in the Roadmap of [Assembly project/id](Assembly_project/id.md) , [Development roadmap/id](Development_roadmap/id.md) [Category:Categories/id](Category:Categories/id.md) + +--- +[documentation index](../README.md) > Category:Roadmap/id diff --git a/wiki/translations/id/Category:Robot.md b/wiki/translations/id/Category:Robot.md index 466c89294f..760e9ff2c2 100644 --- a/wiki/translations/id/Category:Robot.md +++ b/wiki/translations/id/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/id](Robot_Workbench/id [Template:Robot Tools navi/id](Template:Robot_Tools_navi/id.md) , [Robot Workbench/id](Robot_Workbench/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Robot/id diff --git a/wiki/translations/id/Category:Ship.md b/wiki/translations/id/Category:Ship.md index 4874546e2b..28ecf1571e 100644 --- a/wiki/translations/id/Category:Ship.md +++ b/wiki/translations/id/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/id](Ship_Workbench/id.m [Template:Ship Tools navi/id](Template:Ship_Tools_navi/id.md) , [Ship Workbench/id](Ship_Workbench/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Ship/id diff --git a/wiki/translations/id/Category:Sketcher.md b/wiki/translations/id/Category:Sketcher.md index 5cfc48d37f..85307f1827 100644 --- a/wiki/translations/id/Category:Sketcher.md +++ b/wiki/translations/id/Category:Sketcher.md @@ -6,3 +6,6 @@ This category lists pages related to the [Sketcher Workbench/id](Sketcher_Workbe [Template:Sketcher Tools navi/id](Template:Sketcher_Tools_navi/id.md) , [Sketcher Workbench/id](Sketcher_Workbench/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Sketcher/id diff --git a/wiki/translations/id/Category:Surface.md b/wiki/translations/id/Category:Surface.md index 85ff519f81..0eada7b935 100644 --- a/wiki/translations/id/Category:Surface.md +++ b/wiki/translations/id/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/id](Surface_Workbenc [Surface Workbench/id](Surface_Workbench/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:Surface/id diff --git a/wiki/translations/id/Category:TechDraw.md b/wiki/translations/id/Category:TechDraw.md index 1bf755aea0..e312c27aa5 100644 --- a/wiki/translations/id/Category:TechDraw.md +++ b/wiki/translations/id/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/id](TechDraw_Workbe [TechDraw Workbench/id](TechDraw_Workbench/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:TechDraw/id diff --git a/wiki/translations/id/Category:Template.md b/wiki/translations/id/Category:Template.md index 36a52da982..2fba789413 100644 --- a/wiki/translations/id/Category:Template.md +++ b/wiki/translations/id/Category:Template.md @@ -6,3 +6,6 @@ This category contains all the Templates [Template:Languages/id](Template:Languages/id.md) , [Template:Sketcher Tools/id](Template:Sketcher_Tools/id.md) , [Category:Categories/id](Category:Categories/id.md) [Category:Template:Navigation/id](Category:Template:Navigation/id.md) + +--- +[documentation index](../README.md) > Category:Template/id diff --git a/wiki/translations/id/Category:Template:Navigation.md b/wiki/translations/id/Category:Template:Navigation.md index 33912527e5..272e66ebd4 100644 --- a/wiki/translations/id/Category:Template:Navigation.md +++ b/wiki/translations/id/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/id](Template:Arch_Tools_navi/id.md) , [Template:Drawing Tools navi/id](Template:Drawing_Tools_navi/id.md) , [Template:FEM Tools navi/id](Template:FEM_Tools_navi/id.md) , [Template:Mesh Tools navi/id](Template:Mesh_Tools_navi/id.md) , [Template:OpenSCAD Tools navi/id](Template:OpenSCAD_Tools_navi/id.md) , [Template:Part Tools navi/id](Template:Part_Tools_navi/id.md) , [Template:PartDesign Tools navi/id](Template:PartDesign_Tools_navi/id.md) , [Template:Path Tools navi/id](Template:Path_Tools_navi/id.md) , [Template:Plot Tools navi/id](Template:Plot_Tools_navi/id.md) , [Template:Raytracing Tools navi/id](Template:Raytracing_Tools_navi/id.md) , [Template:Robot Tools navi/id](Template:Robot_Tools_navi/id.md) , [Template:Ship Tools navi/id](Template:Ship_Tools_navi/id.md) , [Template:Sketcher Tools navi/id](Template:Sketcher_Tools_navi/id.md) [Category:Template/id](Category:Template/id.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/id diff --git a/wiki/translations/id/Category:Tutorials.md b/wiki/translations/id/Category:Tutorials.md index 01419fcd76..91e90db6cd 100644 --- a/wiki/translations/id/Category:Tutorials.md +++ b/wiki/translations/id/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials/id](Offsite_tutorials/id.md) and [Video tut [Template:TutorialInfo/id](Template:TutorialInfo/id.md) , [Tutorials/id](Tutorials/id.md) [Category:Categories/id](Category:Categories/id.md) + +--- +[documentation index](../README.md) > Category:Tutorials/id diff --git a/wiki/translations/id/Category:User_Documentation.md b/wiki/translations/id/Category:User_Documentation.md index 0ab02a0022..4df64e2160 100644 --- a/wiki/translations/id/Category:User_Documentation.md +++ b/wiki/translations/id/Category:User_Documentation.md @@ -8,3 +8,6 @@ Kategori ini berisi artikel tentang penggunaan FreeCAD. Hal ini juga daftar pusa [About FreeCAD/id](About_FreeCAD/id.md) , [Template:About/id](Template:About/id.md) , [Arch Workbench/id](Arch_Workbench/id.md) , [Document structure/id](Document_structure/id.md) , [Draft Workbench/id](Draft_Workbench/id.md) , [Drawing Workbench/id](Drawing_Workbench/id.md) , [Feature list/id](Feature_list/id.md) , [FEM Workbench/id](FEM_Workbench/id.md) , [File Format FCStd/id](File_Format_FCStd/id.md) , [Getting started/id](Getting_started/id.md) , [Template:GuiCommand/id](Template:GuiCommand/id.md) , [Image Workbench/id](Image_Workbench/id.md) , [Installing additional components/id](Installing_additional_components/id.md) , [Installing on Linux/id](Installing_on_Linux/id.md) , [Installing on Mac/id](Installing_on_Mac/id.md) , [Installing on Windows/id](Installing_on_Windows/id.md) , [Interface Customization/id](Interface_Customization/id.md) , [Localisation/id](Localisation/id.md) , [Manipulator/id](Manipulator/id.md) , [Mesh Workbench/id](Mesh_Workbench/id.md) , [Mouse navigation/id](Mouse_navigation/id.md) , [Offsite tutorials/id](Offsite_tutorials/id.md) , [Online Help Startpage/id](Online_Help_Startpage/id.md) , [Online Help Toc/id](Online_Help_Toc/id.md) , [OpenSCAD Workbench/id](OpenSCAD_Workbench/id.md) , [Part Module/id](Part_Module/id.md) , [PartDesign Workbench/id](PartDesign_Workbench/id.md) , [Plot Module/id](Plot_Module/id.md) , [Preferences Editor/id](Preferences_Editor/id.md) , [Property editor/id](Property_editor/id.md) , [Raytracing Workbench/id](Raytracing_Workbench/id.md) , [Robot Workbench/id](Robot_Workbench/id.md) , [Screenshots/id](Screenshots/id.md) , [Ship Workbench/id](Ship_Workbench/id.md) , [Sketcher Workbench/id](Sketcher_Workbench/id.md) , [Spreadsheet Workbench/id](Spreadsheet_Workbench/id.md) , [Standard Menu/id](Standard_Menu/id.md) , [Surface Workbench/id](Surface_Workbench/id.md) , [TechDraw Workbench/id](TechDraw_Workbench/id.md) , [Template:TutorialInfo/id](Template:TutorialInfo/id.md) , [Tutorials/id](Tutorials/id.md) , [User hub/id](User_hub/id.md) , [Video tutorials/id](Video_tutorials/id.md) , [Workbenches/id](Workbenches/id.md) , , , , , , , [Category:Documentation/id](Category:Documentation/id.md) [Category:Arch/id](Category:Arch/id.md) [Category:Base/id](Category:Base/id.md) [Category:BIM/id](Category:BIM/id.md) [Category:Draft/id](Category:Draft/id.md) [Category:Macros/id](Category:Macros/id.md) [Category:Plot/id](Category:Plot/id.md) [Category:Workbenches/id](Category:Workbenches/id.md) + +--- +[documentation index](../README.md) > Category:User Documentation/id diff --git a/wiki/translations/id/Category:Workbenches.md b/wiki/translations/id/Category:Workbenches.md index bfe4573fc3..6556124360 100644 --- a/wiki/translations/id/Category:Workbenches.md +++ b/wiki/translations/id/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/id](Arch_Workbench/id.md) , [Draft Workbench/id](Draft_Workbench/id.md) , [FEM Workbench/id](FEM_Workbench/id.md) , [Image Workbench/id](Image_Workbench/id.md) , [Mesh Workbench/id](Mesh_Workbench/id.md) , [OpenSCAD Workbench/id](OpenSCAD_Workbench/id.md) , [Part Module/id](Part_Module/id.md) , [PartDesign Workbench/id](PartDesign_Workbench/id.md) , [Raytracing Workbench/id](Raytracing_Workbench/id.md) , [Robot Workbench/id](Robot_Workbench/id.md) , [Sketcher Workbench/id](Sketcher_Workbench/id.md) , [Spreadsheet Workbench/id](Spreadsheet_Workbench/id.md) , [Surface Workbench/id](Surface_Workbench/id.md) , [TechDraw Workbench/id](TechDraw_Workbench/id.md) , [Workbenches/id](Workbenches/id.md) , , , , , , , , , , , , , , , , , , [Category:User Documentation/id](Category:User_Documentation/id.md) [Category:Arch/id](Category:Arch/id.md) [Category:Draft/id](Category:Draft/id.md) [Category:External Workbenches/id](Category:External_Workbenches/id.md) [Category:FEM/id](Category:FEM/id.md) [Category:Image/id](Category:Image/id.md) [Category:Mesh/id](Category:Mesh/id.md) [Category:OpenSCAD/id](Category:OpenSCAD/id.md) [Category:Part/id](Category:Part/id.md) [Category:PartDesign/id](Category:PartDesign/id.md) [Category:Path/id](Category:Path/id.md) [Category:Plot/id](Category:Plot/id.md) [Category:Points/id](Category:Points/id.md) [Category:Raytracing/id](Category:Raytracing/id.md) [Category:Robot/id](Category:Robot/id.md) [Category:Ship/id](Category:Ship/id.md) [Category:Sketcher/id](Category:Sketcher/id.md) [Category:Surface/id](Category:Surface/id.md) [Category:TechDraw/id](Category:TechDraw/id.md) + +--- +[documentation index](../README.md) > Category:Workbenches/id diff --git a/wiki/translations/id/Code_snippets.md b/wiki/translations/id/Code_snippets.md index 401140ad51..5b80df218e 100644 --- a/wiki/translations/id/Code_snippets.md +++ b/wiki/translations/id/Code_snippets.md @@ -1,7 +1,4 @@ # Code snippets/id - - - {{TOCright}} ## Introduction @@ -1773,3 +1770,6 @@ See [Coin3d snippets](Coin3d_snippets.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Code snippets/id diff --git a/wiki/translations/id/Development_roadmap.md b/wiki/translations/id/Development_roadmap.md index 1fb38c3574..37a1d6c746 100644 --- a/wiki/translations/id/Development_roadmap.md +++ b/wiki/translations/id/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/id - **Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** +**Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** FreeCAD - though usable in many applications - is at the beginning of a long journey into CAD mainstream. There is still a lot to do to reach a state where we can compete with commercial software. @@ -44,3 +44,6 @@ Like in the most [FLOSS](http://en.wikipedia.org/wiki/FLOSS) projects a release [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/id diff --git a/wiki/translations/id/Document_structure.md b/wiki/translations/id/Document_structure.md index 2444c65e5c..4cc8b36a0d 100644 --- a/wiki/translations/id/Document_structure.md +++ b/wiki/translations/id/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/id - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) A FreeCAD document contains all the objects of your scene. It can contain groups, and objects made with any workbench. You can therefore switch between workbenches, and still work on the same document. The document is what gets saved to disk when you save your work. You can also open several documents at the same time in FreeCAD, and open several views of the same document. @@ -42,8 +36,5 @@ FreeCADGui.ActiveDocument.Blob FreeCADGui.ActiveDocument.ActiveView ``` Will return the current view - - - - - +--- +[documentation index](../README.md) > Document structure/id diff --git a/wiki/translations/id/Draft_Module.md b/wiki/translations/id/Draft_Module.md index 0b9e937f87..6822e17306 100644 --- a/wiki/translations/id/Draft_Module.md +++ b/wiki/translations/id/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/id 1. REDIRECT [Draft\_Workbench/id](Draft_Workbench/id.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/id diff --git a/wiki/translations/id/Draft_Workbench.md b/wiki/translations/id/Draft_Workbench.md index 0e6e1783b6..19a77480f0 100644 --- a/wiki/translations/id/Draft_Workbench.md +++ b/wiki/translations/id/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/id - - - - - -Draft workbench icon +# Draft workbench icon Draft Workbench/id {{TOCright}} @@ -353,3 +347,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/id diff --git a/wiki/translations/id/Drawing_Module.md b/wiki/translations/id/Drawing_Module.md index 8b0bf16917..a78b5d786c 100644 --- a/wiki/translations/id/Drawing_Module.md +++ b/wiki/translations/id/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/id 1. REDIRECT [Drawing\_Workbench/id](Drawing_Workbench/id.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/id diff --git a/wiki/translations/id/Drawing_Workbench.md b/wiki/translations/id/Drawing_Workbench.md index 9ec1449e94..d14294b47a 100644 --- a/wiki/translations/id/Drawing_Workbench.md +++ b/wiki/translations/id/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/id - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** Drawing workbench icon @@ -84,3 +81,6 @@ Some notes on the programming side of the drawing module will be added to the [D }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/id diff --git a/wiki/translations/id/Embedding_FreeCAD.md b/wiki/translations/id/Embedding_FreeCAD.md index a1c4d86bc5..aae153c449 100644 --- a/wiki/translations/id/Embedding_FreeCAD.md +++ b/wiki/translations/id/Embedding_FreeCAD.md @@ -1,7 +1,4 @@ # Embedding FreeCAD/id - - - {{TOCright}} ## Introduction @@ -134,3 +131,6 @@ Since the FreeCAD Python module is compiled from C++ (rather than being a pure P }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCAD/id diff --git a/wiki/translations/id/FEM_Module.md b/wiki/translations/id/FEM_Module.md index 192b4dc7d0..5d8b82170a 100644 --- a/wiki/translations/id/FEM_Module.md +++ b/wiki/translations/id/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/id 1. REDIRECT [FEM\_Workbench/id](FEM_Workbench/id.md) + +--- +[documentation index](../README.md) > FEM Module/id diff --git a/wiki/translations/id/FEM_Workbench.md b/wiki/translations/id/FEM_Workbench.md index b238fddcf7..7791b36e24 100644 --- a/wiki/translations/id/FEM_Workbench.md +++ b/wiki/translations/id/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/id - - - - - -FEM workbench icon +# FEM workbench icon FEM Workbench/id {{TOCright}} @@ -278,3 +272,6 @@ A developer\'s guide has been written to help power users in understanding the c }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/id diff --git a/wiki/translations/id/Fcstd_file_format.md b/wiki/translations/id/Fcstd_file_format.md index 59172c3845..c6ed392efc 100644 --- a/wiki/translations/id/Fcstd_file_format.md +++ b/wiki/translations/id/Fcstd_file_format.md @@ -1,2 +1,5 @@ # Fcstd file format/id 1. REDIRECT [File\_Format\_FCStd/id](File_Format_FCStd/id.md) + +--- +[documentation index](../README.md) > Fcstd file format/id diff --git a/wiki/translations/id/Feature_list.md b/wiki/translations/id/Feature_list.md index dab63bdc9b..1ee4e41253 100644 --- a/wiki/translations/id/Feature_list.md +++ b/wiki/translations/id/Feature_list.md @@ -1,7 +1,4 @@ # Feature list/id - - -
Ini luas, belum sepenuhnya lengkap, daftar implementasi dari fitur - fitur FreeCAD. Jika kamu ingin mengetahui FreeCAD kedepan seperti apa, lihat pada [Development roadmap](Development_roadmap/id.md), untuk sekilas gambaran [Screenshots](Screenshots/id.md) adalah halaman yang bagus untuk dilihat. @@ -277,3 +274,6 @@ Power users have created various custom [external workbenches](external_workbenc [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/id diff --git a/wiki/translations/id/File_Format_FCStd.md b/wiki/translations/id/File_Format_FCStd.md index bfc4c32057..25622da8a0 100644 --- a/wiki/translations/id/File_Format_FCStd.md +++ b/wiki/translations/id/File_Format_FCStd.md @@ -1,5 +1,5 @@ # File Format FCStd/id - {{TOCright}} +{{TOCright}} ## Overview @@ -167,3 +167,6 @@ See the forum thread, [PDF inside the project](https://forum.freecadweb.org/view [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > File Format FCStd/id diff --git a/wiki/translations/id/FreeCADShip_Workbench.md b/wiki/translations/id/FreeCADShip_Workbench.md index 70e22c576e..af3939aca1 100644 --- a/wiki/translations/id/FreeCADShip_Workbench.md +++ b/wiki/translations/id/FreeCADShip_Workbench.md @@ -1,2 +1,5 @@ # FreeCADShip Workbench/id 1. REDIRECT [Ship\_Workbench/id](Ship_Workbench/id.md) + +--- +[documentation index](../README.md) > FreeCADShip Workbench/id diff --git a/wiki/translations/id/FreeCAD_Scripting_Basics.md b/wiki/translations/id/FreeCAD_Scripting_Basics.md index bf3b43ea9e..dbdab56e22 100644 --- a/wiki/translations/id/FreeCAD_Scripting_Basics.md +++ b/wiki/translations/id/FreeCAD_Scripting_Basics.md @@ -1,7 +1,4 @@ # FreeCAD Scripting Basics/id - - - {{TOCright}} ## Python scripting in FreeCAD @@ -211,3 +208,6 @@ Now you can really start playing with FreeCAD! For a complete list of available }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Scripting Basics/id diff --git a/wiki/translations/id/Getting_started.md b/wiki/translations/id/Getting_started.md index 5f20c982a6..cdf7e6f4b2 100644 --- a/wiki/translations/id/Getting_started.md +++ b/wiki/translations/id/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/id - - - - - - {{TOCright}} ## Pendahuluan @@ -280,3 +274,6 @@ And finally, one of the most powerful features of FreeCAD is the [scripting](scr [Category:User Documentation/id](Category:User_Documentation/id.md) + +--- +[documentation index](../README.md) > Getting started/id diff --git a/wiki/translations/id/Image_Module.md b/wiki/translations/id/Image_Module.md index ca9cbc0c56..0ac5d65ee4 100644 --- a/wiki/translations/id/Image_Module.md +++ b/wiki/translations/id/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/id 1. REDIRECT [Image\_Workbench/id](Image_Workbench/id.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/id diff --git a/wiki/translations/id/Image_Workbench.md b/wiki/translations/id/Image_Workbench.md index 1600c355bb..94abc12859 100644 --- a/wiki/translations/id/Image_Workbench.md +++ b/wiki/translations/id/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/id - - -Image workbench icon +# Image workbench icon Image Workbench/id ## Introduction @@ -39,3 +36,6 @@ The offset of the image can be set during import, or changed later through its p }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/id diff --git a/wiki/translations/id/Install_on_Linux.md b/wiki/translations/id/Install_on_Linux.md index 8fcef66c78..ee4dad8cfc 100644 --- a/wiki/translations/id/Install_on_Linux.md +++ b/wiki/translations/id/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/id 1. REDIRECT [Installing\_on\_Linux/id](Installing_on_Linux/id.md) + +--- +[documentation index](../README.md) > Install on Linux/id diff --git a/wiki/translations/id/Install_on_Mac.md b/wiki/translations/id/Install_on_Mac.md index fb07266432..28680fc002 100644 --- a/wiki/translations/id/Install_on_Mac.md +++ b/wiki/translations/id/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/id 1. REDIRECT [Installing\_on\_Mac/id](Installing_on_Mac/id.md) + +--- +[documentation index](../README.md) > Install on Mac/id diff --git a/wiki/translations/id/Install_on_Unix.md b/wiki/translations/id/Install_on_Unix.md index e433d8bada..0428da596d 100644 --- a/wiki/translations/id/Install_on_Unix.md +++ b/wiki/translations/id/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/id 1. REDIRECT [Installing\_on\_Linux/id](Installing_on_Linux/id.md) + +--- +[documentation index](../README.md) > Install on Unix/id diff --git a/wiki/translations/id/Install_on_Windows.md b/wiki/translations/id/Install_on_Windows.md index 9f93dcdd5d..16a0bd719c 100644 --- a/wiki/translations/id/Install_on_Windows.md +++ b/wiki/translations/id/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/id 1. REDIRECT [Installing\_on\_Windows/id](Installing_on_Windows/id.md) + +--- +[documentation index](../README.md) > Install on Windows/id diff --git a/wiki/translations/id/Installing.md b/wiki/translations/id/Installing.md index d77d343636..4a6812ad64 100644 --- a/wiki/translations/id/Installing.md +++ b/wiki/translations/id/Installing.md @@ -1,2 +1,5 @@ # Installing/id 1. REDIRECT [Installing\_additional\_components/id](Installing_additional_components/id.md) + +--- +[documentation index](../README.md) > Installing/id diff --git a/wiki/translations/id/Installing_additional_components.md b/wiki/translations/id/Installing_additional_components.md index ef210b9b91..386b7c1ccf 100644 --- a/wiki/translations/id/Installing_additional_components.md +++ b/wiki/translations/id/Installing_additional_components.md @@ -1,10 +1,4 @@ # Installing additional components/id - - - - - - {{TOCright}} # Introduction @@ -142,3 +136,6 @@ The [ODA File Converter](https://www.opendesign.com/guestfiles/oda_file_converte
[Category:User Documentation/id](Category:User_Documentation/id.md) + +--- +[documentation index](../README.md) > Installing additional components/id diff --git a/wiki/translations/id/Installing_on_Linux.md b/wiki/translations/id/Installing_on_Linux.md index f910dbdee8..b593af31ae 100644 --- a/wiki/translations/id/Installing_on_Linux.md +++ b/wiki/translations/id/Installing_on_Linux.md @@ -1,9 +1,4 @@ # Installing on Linux/id - - - - - ## Overview @@ -377,3 +372,6 @@ Once you\'ve got FreeCAD installed, it\'s time to [get started](Getting_started. [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/id diff --git a/wiki/translations/id/Installing_on_Mac.md b/wiki/translations/id/Installing_on_Mac.md index b861534be7..7a019df266 100644 --- a/wiki/translations/id/Installing_on_Mac.md +++ b/wiki/translations/id/Installing_on_Mac.md @@ -1,9 +1,4 @@ # Installing on Mac/id - - - - - FreeCAD can be installed on macOS from a .dmg package which you can drag and drop into your Applications folder: @@ -59,5 +54,5 @@ If you installed FreeCAD with homebrew simply use the `brew uninstall freecad` c
- - +--- +[documentation index](../README.md) > Installing on Mac/id diff --git a/wiki/translations/id/Installing_on_Windows.md b/wiki/translations/id/Installing_on_Windows.md index e8c4845f8c..625ed1a4e3 100644 --- a/wiki/translations/id/Installing_on_Windows.md +++ b/wiki/translations/id/Installing_on_Windows.md @@ -1,9 +1,4 @@ # Installing on Windows/id - - - - - Cara termudah untuk menginstal FreeCAD di Windows adalam dengan mengunduh installer dibawah ini. @@ -189,8 +184,5 @@ msiexec /i Y:\\software\\FreeCAD.msi FreeCAD is running, but it has been reported that the OpenGL display does not work, like with other programs running under [Wine](wikipedia:Wine_(software).md) i.e. Google [SketchUp](wikipedia:SketchUp.md). - - - - - +--- +[documentation index](../README.md) > Installing on Windows/id diff --git a/wiki/translations/id/Interface_Customization.md b/wiki/translations/id/Interface_Customization.md index 7f0c728a81..b35f7787b4 100644 --- a/wiki/translations/id/Interface_Customization.md +++ b/wiki/translations/id/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/id - - - - - - {{TOCright}} ## Introduction @@ -291,4 +285,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/id diff --git a/wiki/translations/id/Introduction_to_Python.md b/wiki/translations/id/Introduction_to_Python.md index a8a4bebf7b..6a9fd6ed3f 100644 --- a/wiki/translations/id/Introduction_to_Python.md +++ b/wiki/translations/id/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/id - - - {{TOCright}} ## Introduction @@ -501,3 +498,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/id diff --git a/wiki/translations/id/Line_drawing_function.md b/wiki/translations/id/Line_drawing_function.md index 26e1368918..f9e1c6f944 100644 --- a/wiki/translations/id/Line_drawing_function.md +++ b/wiki/translations/id/Line_drawing_function.md @@ -1,7 +1,4 @@ # Line drawing function/id - - - {{TOCright}} ## Introduction @@ -269,3 +266,6 @@ If you liked this exercise, why not try to improve this little tool? There are m Don\'t hesitate to ask questions or share ideas on the [forum](https://forum.freecadweb.org/)! {{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Line drawing function/id diff --git a/wiki/translations/id/List_of_Commands.md b/wiki/translations/id/List_of_Commands.md index 431b7f9f61..13a1fdc7b4 100644 --- a/wiki/translations/id/List_of_Commands.md +++ b/wiki/translations/id/List_of_Commands.md @@ -1,2 +1,5 @@ # List of Commands/id 1. REDIRECT [:Category:Command Reference/id](:Category:Command_Reference/id.md) + +--- +[documentation index](../README.md) > List of Commands/id diff --git a/wiki/translations/id/Localisation.md b/wiki/translations/id/Localisation.md index ba621df0c2..c78e7b26c9 100644 --- a/wiki/translations/id/Localisation.md +++ b/wiki/translations/id/Localisation.md @@ -1,10 +1,4 @@ # Localisation/id - - - - - - {{TOCright}} ## Overview @@ -239,3 +233,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/id diff --git a/wiki/translations/id/Macros.md b/wiki/translations/id/Macros.md index 6b7550d308..38593220f0 100644 --- a/wiki/translations/id/Macros.md +++ b/wiki/translations/id/Macros.md @@ -1,7 +1,4 @@ # Macros/id - - - {{TOCright}} ## Introduction @@ -80,3 +77,6 @@ You can manually install extensions, however, it is much simpler to just use the }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/id diff --git a/wiki/translations/id/Manipulator.md b/wiki/translations/id/Manipulator.md index 6ff77faa83..d2a7d3067d 100644 --- a/wiki/translations/id/Manipulator.md +++ b/wiki/translations/id/Manipulator.md @@ -1,5 +1,5 @@ # Manipulator/id - } +} ## Description @@ -13,3 +13,6 @@ A **manipulator** can be used to modify an object\'s appearance, shape, or other [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Manipulator/id diff --git a/wiki/translations/id/Mesh_Module.md b/wiki/translations/id/Mesh_Module.md index d6ea2d0a84..a6af091279 100644 --- a/wiki/translations/id/Mesh_Module.md +++ b/wiki/translations/id/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/id 1. REDIRECT [Mesh Workbench/id](Mesh_Workbench/id.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/id diff --git a/wiki/translations/id/Mesh_Scripting.md b/wiki/translations/id/Mesh_Scripting.md index 1a82dba17c..bc8777d859 100644 --- a/wiki/translations/id/Mesh_Scripting.md +++ b/wiki/translations/id/Mesh_Scripting.md @@ -1,7 +1,4 @@ # Mesh Scripting/id - - - {{TOCright}} ## Introduction @@ -99,3 +96,6 @@ An extensive, though hard to use, source of mesh related scripting are the unit See also: [Mesh API](Mesh_API.md). {{Top}} {{Powerdocnavi}} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scripting/id diff --git a/wiki/translations/id/Mesh_Workbench.md b/wiki/translations/id/Mesh_Workbench.md index ac069fb1ad..2b21be55dc 100644 --- a/wiki/translations/id/Mesh_Workbench.md +++ b/wiki/translations/id/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/id - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench/id {{TOCright}} @@ -117,3 +111,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/id diff --git a/wiki/translations/id/Mesh_to_Part.md b/wiki/translations/id/Mesh_to_Part.md index 0acd98d76c..eac23aeaa8 100644 --- a/wiki/translations/id/Mesh_to_Part.md +++ b/wiki/translations/id/Mesh_to_Part.md @@ -1,7 +1,4 @@ # Mesh to Part/id - - - {{TOCright}} ## Convert Part objects to meshes @@ -110,3 +107,6 @@ Part.show(solid) }} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh to Part/id diff --git a/wiki/translations/id/Mouse_Model.md b/wiki/translations/id/Mouse_Model.md index 24d2294d30..62e3d039c1 100644 --- a/wiki/translations/id/Mouse_Model.md +++ b/wiki/translations/id/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/id 1. REDIRECT [Mouse\_navigation/id](Mouse_navigation/id.md) + +--- +[documentation index](../README.md) > Mouse Model/id diff --git a/wiki/translations/id/Mouse_navigation.md b/wiki/translations/id/Mouse_navigation.md index 042f29df0e..63cf46ccbf 100644 --- a/wiki/translations/id/Mouse_navigation.md +++ b/wiki/translations/id/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/id - - - - - - {{TOCright}} ## Overview @@ -376,5 +370,5 @@ The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mous {{docnav|Getting started|Document structure}} - - +--- +[documentation index](../README.md) > Mouse navigation/id diff --git a/wiki/translations/id/Offsite_tutorials.md b/wiki/translations/id/Offsite_tutorials.md index c8ba51142b..e5f82784ed 100644 --- a/wiki/translations/id/Offsite_tutorials.md +++ b/wiki/translations/id/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/id - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** This page lists FreeCAD tutorials found on other sites on the web. @@ -18,4 +18,7 @@ This page lists FreeCAD tutorials found on other sites on the web. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/id diff --git a/wiki/translations/id/Online_Help_Startpage.md b/wiki/translations/id/Online_Help_Startpage.md index 5f7805b563..dea2d1af02 100644 --- a/wiki/translations/id/Online_Help_Startpage.md +++ b/wiki/translations/id/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/id - - ![150](images/Crystal_Clear_app_tutorials.png ) ## Welcome to the FreeCAD on-line help @@ -46,3 +44,6 @@ Mungkin kamu mempunyai beberapa pengalaman, para programer sungguh tidak sempat [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/id diff --git a/wiki/translations/id/Online_Help_Toc.md b/wiki/translations/id/Online_Help_Toc.md index 91fffe46d4..83198fa015 100644 --- a/wiki/translations/id/Online_Help_Toc.md +++ b/wiki/translations/id/Online_Help_Toc.md @@ -1,7 +1,4 @@ # Online Help Toc/id - - -
Berikut ini adalah daftar isi dari Bantuan on-line sistem FreeCAD. Artikel yang direferensikan disini secara otomatis dimasukan di file FreeCAD.chm melalui aplikasi wiki2chm.py. Kamu bisa mencari aplikasi tersebut di src/Tools/wiki2chm.py. [printable version](Manual.md) dari artikel ini juga tersedia. @@ -164,3 +161,6 @@ There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction. [Category:Documentation/id](Category:Documentation/id.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/id diff --git a/wiki/translations/id/OpenSCAD_Module.md b/wiki/translations/id/OpenSCAD_Module.md index a61e764783..8a87312fe3 100644 --- a/wiki/translations/id/OpenSCAD_Module.md +++ b/wiki/translations/id/OpenSCAD_Module.md @@ -1,2 +1,5 @@ # OpenSCAD Module/id 1. REDIRECT [OpenSCAD\_Workbench/id](OpenSCAD_Workbench/id.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Module/id diff --git a/wiki/translations/id/OpenSCAD_Workbench.md b/wiki/translations/id/OpenSCAD_Workbench.md index 73dffb9356..2f1f619e24 100644 --- a/wiki/translations/id/OpenSCAD_Workbench.md +++ b/wiki/translations/id/OpenSCAD_Workbench.md @@ -1,10 +1,4 @@ -# OpenSCAD Workbench/id - - - - - -OpenSCAD workbench icon +# OpenSCAD workbench icon OpenSCAD Workbench/id ## Introduction @@ -114,3 +108,6 @@ If FreeCAD crashes when importing CSG, it is strongly recommended that you enabl }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/id diff --git a/wiki/translations/id/PartDesign_Legacy.md b/wiki/translations/id/PartDesign_Legacy.md index 6812abbe78..3736f2fc25 100644 --- a/wiki/translations/id/PartDesign_Legacy.md +++ b/wiki/translations/id/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/id 1. REDIRECT [PartDesign\_Workbench/id](PartDesign_Workbench/id.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/id diff --git a/wiki/translations/id/PartDesign_Workbench.md b/wiki/translations/id/PartDesign_Workbench.md index a31b7fa4a4..54fb4b57ed 100644 --- a/wiki/translations/id/PartDesign_Workbench.md +++ b/wiki/translations/id/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/id - - -PartDesign workbench icon +# PartDesign workbench icon PartDesign Workbench/id {{TOCright}} @@ -223,3 +220,6 @@ Some additional functionality found in the Part Design menu: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/id diff --git a/wiki/translations/id/Part_Module.md b/wiki/translations/id/Part_Module.md index dfd225b181..df6ef53cac 100644 --- a/wiki/translations/id/Part_Module.md +++ b/wiki/translations/id/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/id - - - - - -Part workbench icon +# Part workbench icon Part Module/id {{TOCright}} @@ -219,3 +213,6 @@ See [Part scripting](Part_scripting.md). [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/id diff --git a/wiki/translations/id/Part_Workbench.md b/wiki/translations/id/Part_Workbench.md index 8c8608206e..19a3fc26bf 100644 --- a/wiki/translations/id/Part_Workbench.md +++ b/wiki/translations/id/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/id 1. REDIRECT [Part\_Module/id](Part_Module/id.md) + +--- +[documentation index](../README.md) > Part Workbench/id diff --git a/wiki/translations/id/Pivy.md b/wiki/translations/id/Pivy.md index 1a88e1283f..9d19993b91 100644 --- a/wiki/translations/id/Pivy.md +++ b/wiki/translations/id/Pivy.md @@ -1,7 +1,4 @@ # Pivy/id - - - {{TOCright}} ## Introduction @@ -168,3 +165,6 @@ These links provide reference documentation for Coin v3.x. The differences with }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Pivy/id diff --git a/wiki/translations/id/Plot_Module.md b/wiki/translations/id/Plot_Module.md index fc8b3401a8..873b41df48 100644 --- a/wiki/translations/id/Plot_Module.md +++ b/wiki/translations/id/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/id - - -Plot workbench icon +# Plot workbench icon Plot Module/id {{TOCright}} @@ -64,3 +61,6 @@ Since the Plot Workbench is a layer on top of `matplotlib`, you are free to use }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/id diff --git a/wiki/translations/id/Plot_Workbench.md b/wiki/translations/id/Plot_Workbench.md index 7a4db39bea..8680a77f44 100644 --- a/wiki/translations/id/Plot_Workbench.md +++ b/wiki/translations/id/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/id 1. REDIRECT [Plot\_Module/id](Plot_Module/id.md) + +--- +[documentation index](../README.md) > Plot Workbench/id diff --git a/wiki/translations/id/Power_users_hub.md b/wiki/translations/id/Power_users_hub.md index 9b6801b2c6..c4a37b31e7 100644 --- a/wiki/translations/id/Power_users_hub.md +++ b/wiki/translations/id/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/id - +# Power users hub/id ------------------------------------------------------------------------ @@ -135,3 +134,6 @@ On the [Community portal](FreeCAD_Community_Portal.md), you can find other FreeC }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/id diff --git a/wiki/translations/id/Preferences_Editor.md b/wiki/translations/id/Preferences_Editor.md index a2b7a2e702..588c7066a1 100644 --- a/wiki/translations/id/Preferences_Editor.md +++ b/wiki/translations/id/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/id - - - - - - {{TOCright}} ## Introduction @@ -697,3 +691,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/id diff --git a/wiki/translations/id/Property.md b/wiki/translations/id/Property.md index 487db3468e..66abdd1823 100644 --- a/wiki/translations/id/Property.md +++ b/wiki/translations/id/Property.md @@ -1,6 +1,4 @@ # Property/id - - ## Introduction @@ -158,3 +156,6 @@ They are imported and initialized in `[https://github.com/FreeCAD/FreeCAD/blob/9 }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/id diff --git a/wiki/translations/id/Property_editor.md b/wiki/translations/id/Property_editor.md index 4c407745d7..739413d358 100644 --- a/wiki/translations/id/Property_editor.md +++ b/wiki/translations/id/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/id - - - - - - {{TOCright}} ## Introduction @@ -388,4 +382,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/id diff --git a/wiki/translations/id/PySide.md b/wiki/translations/id/PySide.md index aaa6eabafe..f9246a0479 100644 --- a/wiki/translations/id/PySide.md +++ b/wiki/translations/id/PySide.md @@ -1,7 +1,4 @@ # PySide/id - - - {{TOCright}} ## Introduction @@ -75,3 +72,6 @@ The PySide documentation refers to the Python-style classes; however, since Qt i }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide/id diff --git a/wiki/translations/id/Python_scripting_tutorial.md b/wiki/translations/id/Python_scripting_tutorial.md index ef7e8ca2f2..5465b26917 100644 --- a/wiki/translations/id/Python_scripting_tutorial.md +++ b/wiki/translations/id/Python_scripting_tutorial.md @@ -1,7 +1,4 @@ # Python scripting tutorial/id - - - {{TOCright}} ## Introduction @@ -292,3 +289,6 @@ Now you are ready for more in-depth FreeCAD scripting. So head on to the [Power }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python scripting tutorial/id diff --git a/wiki/translations/id/Ray_Tracing_Workbench.md b/wiki/translations/id/Ray_Tracing_Workbench.md index a714edefc1..6482f7d68b 100644 --- a/wiki/translations/id/Ray_Tracing_Workbench.md +++ b/wiki/translations/id/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/id 1. REDIRECT [Raytracing\_Workbench/id](Raytracing_Workbench/id.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/id diff --git a/wiki/translations/id/Raytracing_Module.md b/wiki/translations/id/Raytracing_Module.md index 8c88d249ff..378c9843f2 100644 --- a/wiki/translations/id/Raytracing_Module.md +++ b/wiki/translations/id/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/id 1. REDIRECT [Raytracing\_Workbench/id](Raytracing_Workbench/id.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/id diff --git a/wiki/translations/id/Raytracing_Workbench.md b/wiki/translations/id/Raytracing_Workbench.md index 4c1712ff19..e8283478e9 100644 --- a/wiki/translations/id/Raytracing_Workbench.md +++ b/wiki/translations/id/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/id - - - **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. Nevertheless, the information in this page is generally useful for the new workbench, as both modules work basically in the same way. @@ -149,3 +146,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/id diff --git a/wiki/translations/id/Release_notes_0.13.md b/wiki/translations/id/Release_notes_0.13.md index d3b8bf1305..7c4278ad21 100644 --- a/wiki/translations/id/Release_notes_0.13.md +++ b/wiki/translations/id/Release_notes_0.13.md @@ -1,5 +1,5 @@ # Release notes 0.13/id - This is a summary of the most interesting changes occured in FreeCAD since latest version. See [the Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php) on SourceForge for the complete list of changes. +This is a summary of the most interesting changes occured in FreeCAD since latest version. See [the Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php) on SourceForge for the complete list of changes. Older versions: [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -144,3 +144,6 @@ Geometry (Points, Lines and Curves) may be selected by dragging on the backgroun - For more information see the [OpenSCAD Workbench](OpenSCAD_Workbench.md) page on the FreeCAD wiki [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.13/id diff --git a/wiki/translations/id/Release_notes_013.md b/wiki/translations/id/Release_notes_013.md index cf7f9b8021..fe8e523c73 100644 --- a/wiki/translations/id/Release_notes_013.md +++ b/wiki/translations/id/Release_notes_013.md @@ -1,2 +1,5 @@ # Release notes 013/id 1. REDIRECT [Release\_notes\_0.13/id](Release_notes_0.13/id.md) + +--- +[documentation index](../README.md) > Release notes 013/id diff --git a/wiki/translations/id/Robot_Module.md b/wiki/translations/id/Robot_Module.md index f04747ea97..0acf31ad97 100644 --- a/wiki/translations/id/Robot_Module.md +++ b/wiki/translations/id/Robot_Module.md @@ -1,2 +1,5 @@ # Robot Module/id 1. REDIRECT [Robot Workbench/id](Robot_Workbench/id.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Module/id diff --git a/wiki/translations/id/Robot_Workbench.md b/wiki/translations/id/Robot_Workbench.md index b53a238e06..6d8817232a 100644 --- a/wiki/translations/id/Robot_Workbench.md +++ b/wiki/translations/id/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/id - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. @@ -87,3 +81,6 @@ See the [Robot API example](Robot_API_example.md) for a description of the funct }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/id diff --git a/wiki/translations/id/Scenegraph.md b/wiki/translations/id/Scenegraph.md index 5b803597a4..9b21919a0e 100644 --- a/wiki/translations/id/Scenegraph.md +++ b/wiki/translations/id/Scenegraph.md @@ -1,7 +1,4 @@ # Scenegraph/id - - - {{TOCright}} ## Introduction @@ -73,3 +70,6 @@ See [Coin3d snippets](Coin3d_snippets.md) courtesy of MariwanJ\'s research for t }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scenegraph/id diff --git a/wiki/translations/id/Screenshots.md b/wiki/translations/id/Screenshots.md index d2c2ea53cd..8ee1b28c60 100644 --- a/wiki/translations/id/Screenshots.md +++ b/wiki/translations/id/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/id - {{TOCright}} +{{TOCright}} Here are a few screenshots showing different parts of FreeCAD. They are not ordered in any particular timeline, so the images may differ from your actual version. See more screenshots submitted by FreeCAD users on the [screenshot forum thread](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) and on the [\"Show your project here!\" Users Showcase forum part](http://forum.freecadweb.org/viewforum.php?f=24). @@ -202,3 +202,6 @@ FreeCAD runs in console mode (without gui) Dialog to save a picture with arbitrary sizes. [Category:User Documentation/id](Category:User_Documentation/id.md) [Category:Screenshots](Category:Screenshots.md) + +--- +[documentation index](../README.md) > Screenshots/id diff --git a/wiki/translations/id/Scripted_objects.md b/wiki/translations/id/Scripted_objects.md index 98c02173e0..fa122ed4e9 100644 --- a/wiki/translations/id/Scripted_objects.md +++ b/wiki/translations/id/Scripted_objects.md @@ -1,7 +1,4 @@ # Scripted objects/id - - - {{TOCright}} ## Introduction @@ -897,3 +894,6 @@ In addition to the examples presented here have a look at FreeCAD source code [s }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects/id diff --git a/wiki/translations/id/Scripting.md b/wiki/translations/id/Scripting.md index 410da2cdce..26192ddfab 100644 --- a/wiki/translations/id/Scripting.md +++ b/wiki/translations/id/Scripting.md @@ -1,2 +1,5 @@ # Scripting/id 1. REDIRECT [Power users hub/id](Power_users_hub/id.md) + +--- +[documentation index](../README.md) > Scripting/id diff --git a/wiki/translations/id/Ship_Workbench.md b/wiki/translations/id/Ship_Workbench.md index 0622ce4c6a..e80b965e3d 100644 --- a/wiki/translations/id/Ship_Workbench.md +++ b/wiki/translations/id/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/id - - -Ship workbench icon +# Ship workbench icon Ship Workbench/id {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/id diff --git a/wiki/translations/id/Sketcher_Module.md b/wiki/translations/id/Sketcher_Module.md index 14c9e8aac3..3ce52d5db4 100644 --- a/wiki/translations/id/Sketcher_Module.md +++ b/wiki/translations/id/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/id 1. REDIRECT [Sketcher Workbench/id](Sketcher_Workbench/id.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/id diff --git a/wiki/translations/id/Sketcher_Workbench.md b/wiki/translations/id/Sketcher_Workbench.md index ed1b2f1214..5c24ed38e4 100644 --- a/wiki/translations/id/Sketcher_Workbench.md +++ b/wiki/translations/id/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/id - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/id {{TOCright}} @@ -322,3 +316,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [Category:User Documentation/id](Category:User_Documentation/id.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/id diff --git a/wiki/translations/id/Spreadsheet_Module.md b/wiki/translations/id/Spreadsheet_Module.md index 67d6331b0f..28d2279d86 100644 --- a/wiki/translations/id/Spreadsheet_Module.md +++ b/wiki/translations/id/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module/id 1. REDIRECT [Spreadsheet Workbench/id](Spreadsheet_Workbench/id.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module/id diff --git a/wiki/translations/id/Spreadsheet_Workbench.md b/wiki/translations/id/Spreadsheet_Workbench.md index 2513f43488..37a0271b6f 100644 --- a/wiki/translations/id/Spreadsheet_Workbench.md +++ b/wiki/translations/id/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/id - {{Page_in_progress}} @@ -235,3 +234,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/id diff --git a/wiki/translations/id/Standard_Menu.md b/wiki/translations/id/Standard_Menu.md index 2f0161ad30..bf316d8762 100644 --- a/wiki/translations/id/Standard_Menu.md +++ b/wiki/translations/id/Standard_Menu.md @@ -1,5 +1,5 @@ # Standard Menu/id - {{TOCright}} +{{TOCright}} ## Introduction @@ -47,4 +47,7 @@ The standard menu is composed of 7 sub-menus: {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Standard Menu/id diff --git a/wiki/translations/id/Std_InterfaceCustomization.md b/wiki/translations/id/Std_InterfaceCustomization.md index e36e0b208b..6a95b19d25 100644 --- a/wiki/translations/id/Std_InterfaceCustomization.md +++ b/wiki/translations/id/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/id 1. REDIRECT [Interface\_Customization/id](Interface_Customization/id.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/id diff --git a/wiki/translations/id/Surface_Module.md b/wiki/translations/id/Surface_Module.md index 7e4569f767..6071ad2dab 100644 --- a/wiki/translations/id/Surface_Module.md +++ b/wiki/translations/id/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/id 1. REDIRECT [Surface\_Workbench/id](Surface_Workbench/id.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/id diff --git a/wiki/translations/id/Surface_Workbench.md b/wiki/translations/id/Surface_Workbench.md index 08f5031557..5821c7150c 100644 --- a/wiki/translations/id/Surface_Workbench.md +++ b/wiki/translations/id/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/id - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/id {{TOCright}} @@ -57,3 +51,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/id diff --git a/wiki/translations/id/TechDraw_Module.md b/wiki/translations/id/TechDraw_Module.md index 6d0ac8421a..2c058a5788 100644 --- a/wiki/translations/id/TechDraw_Module.md +++ b/wiki/translations/id/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/id 1. REDIRECT [TechDraw\_Workbench/id](TechDraw_Workbench/id.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/id diff --git a/wiki/translations/id/TechDraw_Workbench.md b/wiki/translations/id/TechDraw_Workbench.md index e616e499c2..0772ed96a5 100644 --- a/wiki/translations/id/TechDraw_Workbench.md +++ b/wiki/translations/id/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/id - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/id ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/id diff --git a/wiki/translations/id/Topological_data_scripting.md b/wiki/translations/id/Topological_data_scripting.md index 28c790ce22..70a5c2e13e 100644 --- a/wiki/translations/id/Topological_data_scripting.md +++ b/wiki/translations/id/Topological_data_scripting.md @@ -1,7 +1,4 @@ # Topological data scripting/id - - - {{TOCright}} ## Introduction @@ -938,3 +935,6 @@ s.read("test.stp") ```{{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting/id diff --git a/wiki/translations/id/Tutorials.md b/wiki/translations/id/Tutorials.md index 412b07443c..bc0f619f6e 100644 --- a/wiki/translations/id/Tutorials.md +++ b/wiki/translations/id/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/id - - - - - - {{TOCright}} This page presents a selection of high quality written tutorials. A complete, unsorted list of tutorials can be found in [:Category:Tutorials](:Category:Tutorials.md), a complete and sortable one can be found in the [table below](Tutorials#Tutorials_-_Comprehensive_list.md). @@ -283,3 +277,6 @@ Here are listed all the tutorials that are not in the manual **regardless of the [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials]], a complete and sortable one can be found in the ](Category:Tutorials]], a complete and sortable one can be found in the .md) > Tutorials/id diff --git a/wiki/translations/id/User_hub.md b/wiki/translations/id/User_hub.md index b6da313e6c..279dc1f126 100644 --- a/wiki/translations/id/User_hub.md +++ b/wiki/translations/id/User_hub.md @@ -1,5 +1,4 @@ -# User hub/id - +# User hub/id ------------------------------------------------------------------------ @@ -122,3 +121,6 @@ This is the official FreeCAD online help. Please note that the whole online help [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/id diff --git a/wiki/translations/id/Video_tutorials.md b/wiki/translations/id/Video_tutorials.md index 5a4186e108..e5a460601e 100644 --- a/wiki/translations/id/Video_tutorials.md +++ b/wiki/translations/id/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials/id - - - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** This page presents a selection of video tutorials made by FreeCAD users and developers. Visit the [Tutorials and videos](https://forum.freecadweb.org/viewforum.php?f=36) subforum for more links. A useful source of video tutorials is [YouTube](https://YouTube.com). @@ -95,3 +92,6 @@ For more see [Video tutorials obsolete](Video_tutorials_obsolete.md). }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Video tutorials/id diff --git a/wiki/translations/id/Workbenches.md b/wiki/translations/id/Workbenches.md index f727e74222..2b03405479 100644 --- a/wiki/translations/id/Workbenches.md +++ b/wiki/translations/id/Workbenches.md @@ -1,9 +1,4 @@ # Workbenches/id - - - - - FreeCAD, like many modern design applications such as [Revit](wikipedia:Revit.md) or [CATIA](wikipedia:CATIA.md), is based on the concept of [Workbench](wikipedia:Workbench.md). 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. @@ -89,3 +84,6 @@ New workbenches are always in development, stay tuned! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/id diff --git a/wiki/translations/it/3D_input_devices.md b/wiki/translations/it/3D_input_devices.md index 80a07e9bb8..21cd27d058 100644 --- a/wiki/translations/it/3D_input_devices.md +++ b/wiki/translations/it/3D_input_devices.md @@ -1,5 +1,5 @@ # 3D input devices/it - FreeCAD supporta alcuni dispositivi di input specializzati, come il mouse 3D. Esso consente all\'utente di ruotare, traslare ed ingrandire gli oggetti in tre dimensioni. +FreeCAD supporta alcuni dispositivi di input specializzati, come il mouse 3D. Esso consente all\'utente di ruotare, traslare ed ingrandire gli oggetti in tre dimensioni. ## Hardware supportato @@ -7,3 +7,6 @@ - Istruzioni di installazione [3D connexion input devices](3Dconnexion_input_devices.md) [category:Documentation](category:Documentation.md) + +--- +[documentation index](../README.md) > 3D input devices/it diff --git a/wiki/translations/it/3D_view.md b/wiki/translations/it/3D_view.md index 3f90283bf4..c014032a8c 100644 --- a/wiki/translations/it/3D_view.md +++ b/wiki/translations/it/3D_view.md @@ -1,6 +1,4 @@ # 3D view/it - - ## Introduzione @@ -99,4 +97,7 @@ Per ulteriori informazioni, consultare la documentazione per utenti esperti: {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > 3D view/it diff --git a/wiki/translations/it/3Dconnexion_input_devices.md b/wiki/translations/it/3Dconnexion_input_devices.md index 97f192214b..29182be0ca 100644 --- a/wiki/translations/it/3Dconnexion_input_devices.md +++ b/wiki/translations/it/3Dconnexion_input_devices.md @@ -1,5 +1,4 @@ -# 3Dconnexion input devices/it - 3Dconnexion SpaceNavigator {{TOCright}} +# 3Dconnexion SpaceNavigator {{TOCright}} 3Dconnexion input devices/it ### Installare i driver @@ -304,3 +303,6 @@ Per collegare alcuni comando con un pulsante, selezionare il pulsante sul lato s - Forum thread [Space navigator axis confusion](https://forum.freecadweb.org/viewtopic.php?f=8&t=57188) [Category:User Documentation](Category:User_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > 3Dconnexion input devices/it diff --git a/wiki/translations/it/A2plus_Workbench.md b/wiki/translations/it/A2plus_Workbench.md index 4e6641342e..9d1f29d0ec 100644 --- a/wiki/translations/it/A2plus_Workbench.md +++ b/wiki/translations/it/A2plus_Workbench.md @@ -1,5 +1,4 @@ -# A2plus Workbench/it - L\'icona di A2plus +# L\'icona di A2plus A2plus Workbench/it ## Introduzione @@ -640,3 +639,6 @@ This is an A2plus-specific command. It solves the assembly constraints of the as [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > A2plus Workbench/it diff --git a/wiki/translations/it/ANSI_templates.md b/wiki/translations/it/ANSI_templates.md index c82a3bdb92..190967c58f 100644 --- a/wiki/translations/it/ANSI_templates.md +++ b/wiki/translations/it/ANSI_templates.md @@ -1,5 +1,5 @@ # ANSI templates/it - Questa pagina propone i modelli standard [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) secondo il American National Standards Institute +Questa pagina propone i modelli standard [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) secondo il American National Standards Institute ### ANSI A @@ -62,3 +62,6 @@ Questi modelli sono stati disegnati da [Quick61](User:Quick61.md) e sono disponibili in [FreeCAD-Drawing-Templates](https://github.com/quick61/FreeCAD-Drawing-Templates). [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > ANSI templates/it diff --git a/wiki/translations/it/API_documentation.md b/wiki/translations/it/API_documentation.md index 977f2c72af..d46e02cc3a 100644 --- a/wiki/translations/it/API_documentation.md +++ b/wiki/translations/it/API_documentation.md @@ -1,2 +1,5 @@ # API documentation/it 1. REDIRECT [:Category:API/it](:Category:API/it.md) + +--- +[documentation index](../README.md) > API documentation/it diff --git a/wiki/translations/it/About_FreeCAD.md b/wiki/translations/it/About_FreeCAD.md index 448c07c55a..584c99032c 100644 --- a/wiki/translations/it/About_FreeCAD.md +++ b/wiki/translations/it/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/it - - - +# About FreeCAD/it **FreeCAD** è un modellatore 3D parametrico di uso generale [**CAD**](http://en.wikipedia.org/wiki/CAD), il cui sviluppo è completamente [open source](http://en.wikipedia.org/wiki/Open_source) ([LGPL License](https://www.gnu.org/licenses/lgpl-3.0.en.html)). FreeCAD si rivolge direttamente a [mechanical engineering](http://en.wikipedia.org/wiki/Mechanical_engineering) e [product design](http://en.wikipedia.org/wiki/Product_design) ma si adatta anche ad una gamma più ampia di usi in ambito ingegneristico, come l\'architettura, l\'analisi ad elementi finiti, la stampa 3D, e altri compiti. @@ -28,3 +25,6 @@ FreeCAD è mantenuto e sviluppato da una comunità di sviluppatori appassionati [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/it diff --git a/wiki/translations/it/Add_FEM_Constraint_Tutorial.md b/wiki/translations/it/Add_FEM_Constraint_Tutorial.md index c95c23d3a5..b92c4f7d73 100644 --- a/wiki/translations/it/Add_FEM_Constraint_Tutorial.md +++ b/wiki/translations/it/Add_FEM_Constraint_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Constraint Tutorial/it 1. REDIRECT [Add\_FEM\_constraint\_tutorial/it](Add_FEM_constraint_tutorial/it.md) + +--- +[documentation index](../README.md) > Add FEM Constraint Tutorial/it diff --git a/wiki/translations/it/Add_FEM_Equation_Tutorial.md b/wiki/translations/it/Add_FEM_Equation_Tutorial.md index e33f914480..07e636fc48 100644 --- a/wiki/translations/it/Add_FEM_Equation_Tutorial.md +++ b/wiki/translations/it/Add_FEM_Equation_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Equation Tutorial/it 1. REDIRECT [Add\_FEM\_equation\_tutorial/it](Add_FEM_equation_tutorial/it.md) + +--- +[documentation index](../README.md) > Add FEM Equation Tutorial/it diff --git a/wiki/translations/it/Add_FEM_constraint_tutorial.md b/wiki/translations/it/Add_FEM_constraint_tutorial.md index ba4de14fbd..d970a0c721 100644 --- a/wiki/translations/it/Add_FEM_constraint_tutorial.md +++ b/wiki/translations/it/Add_FEM_constraint_tutorial.md @@ -1,7 +1,4 @@ # Add FEM constraint tutorial/it - - -
@@ -318,3 +315,6 @@ def _handleFlowBndConditions(self): ``` [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM constraint tutorial/it diff --git a/wiki/translations/it/Add_FEM_equation_tutorial.md b/wiki/translations/it/Add_FEM_equation_tutorial.md index 76c10927b6..395cf77f49 100644 --- a/wiki/translations/it/Add_FEM_equation_tutorial.md +++ b/wiki/translations/it/Add_FEM_equation_tutorial.md @@ -1,7 +1,4 @@ # Add FEM equation tutorial/it - - - {{TutorialInfo/it |Topic=Aggiungere equazioni FEM |Level= @@ -186,3 +183,6 @@ We now finished the function part of the new equation. Next we\'ll connect the n We have just created a new equation class. To access it from the FEM GUI, we need to create a button and link it to the new equation class. Here is a tutorial: [Add button to FEM toolbar tutorial](Add_button_to_FEM_toolbar_tutorial.md). [Category:FEM](Category:FEM.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM equation tutorial/it diff --git a/wiki/translations/it/Addon.md b/wiki/translations/it/Addon.md index e3cc72fce0..06eb359d45 100644 --- a/wiki/translations/it/Addon.md +++ b/wiki/translations/it/Addon.md @@ -1,6 +1,4 @@ # Addon/it - - ## Introduzione In FreeCAD e in questa documentazione, un addon è un componente che non fa parte dell\'installazione di base di FreeCAD, ma che può essere aggiunto al sistema con determinati metodi. @@ -37,3 +35,6 @@ L\'installazione manuale è ancora possibile. [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Addon/it diff --git a/wiki/translations/it/AddonManager.md b/wiki/translations/it/AddonManager.md index 729ff933a2..70ab137686 100644 --- a/wiki/translations/it/AddonManager.md +++ b/wiki/translations/it/AddonManager.md @@ -1,2 +1,5 @@ # AddonManager/it 1. REDIRECT [Std AddonMgr/it](Std_AddonMgr/it.md) + +--- +[documentation index](../README.md) > AddonManager/it diff --git a/wiki/translations/it/Addon_Manager.md b/wiki/translations/it/Addon_Manager.md index 67a1b4531d..f7062f8832 100644 --- a/wiki/translations/it/Addon_Manager.md +++ b/wiki/translations/it/Addon_Manager.md @@ -1,2 +1,5 @@ # Addon Manager/it 1. REDIRECT [Std AddonMgr/it](Std_AddonMgr/it.md) + +--- +[documentation index](../README.md) > Addon Manager/it diff --git a/wiki/translations/it/Addon_manager.md b/wiki/translations/it/Addon_manager.md index 2ab01d6e88..82bb7e2653 100644 --- a/wiki/translations/it/Addon_manager.md +++ b/wiki/translations/it/Addon_manager.md @@ -1,2 +1,5 @@ # Addon manager/it 1. REDIRECT [Std AddonMgr/it](Std_AddonMgr/it.md) + +--- +[documentation index](../README.md) > Addon manager/it diff --git a/wiki/translations/it/Advanced_TechDraw_Tutorial.md b/wiki/translations/it/Advanced_TechDraw_Tutorial.md index 26cc0a7ee1..7400977dd3 100644 --- a/wiki/translations/it/Advanced_TechDraw_Tutorial.md +++ b/wiki/translations/it/Advanced_TechDraw_Tutorial.md @@ -1,10 +1,4 @@ # Advanced TechDraw Tutorial/it - - - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -92,4 +86,7 @@ However, the described path could represent the starting point (or the idea) to {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Advanced TechDraw Tutorial/it diff --git a/wiki/translations/it/Aeroplane.md b/wiki/translations/it/Aeroplane.md index f616006667..45b99196e5 100644 --- a/wiki/translations/it/Aeroplane.md +++ b/wiki/translations/it/Aeroplane.md @@ -1,5 +1,5 @@ # Aeroplane/it - {{TutorialInfo/it +{{TutorialInfo/it |Topic=Part |Level=Base |Time=10 minuti @@ -150,4 +150,7 @@ Spero che questo piccolo tutorial sia di aiuto per gestire le rotazioni. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Aeroplane/it diff --git a/wiki/translations/it/Analysis_of_reinforced_concrete_with_FEM.md b/wiki/translations/it/Analysis_of_reinforced_concrete_with_FEM.md index 91bbc67dd3..8afe5bd0c4 100644 --- a/wiki/translations/it/Analysis_of_reinforced_concrete_with_FEM.md +++ b/wiki/translations/it/Analysis_of_reinforced_concrete_with_FEM.md @@ -1,7 +1,4 @@ # Analysis of reinforced concrete with FEM/it - - -
@@ -192,4 +189,7 @@ The tensile stress pattern suggests an alternative design concept using pre-stre {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Analysis of reinforced concrete with FEM/it diff --git a/wiki/translations/it/Animation_Workbench.md b/wiki/translations/it/Animation_Workbench.md index 3538b5067c..1f5ae6fdbe 100644 --- a/wiki/translations/it/Animation_Workbench.md +++ b/wiki/translations/it/Animation_Workbench.md @@ -1,5 +1,4 @@ # Animation Workbench/it - {{Template:UnfinishedDocu }} @@ -101,3 +100,6 @@ Other - [External workbenches](External_workbenches.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Animation Workbench/it diff --git a/wiki/translations/it/AppImage.md b/wiki/translations/it/AppImage.md index 4395a42306..fdd642cc21 100644 --- a/wiki/translations/it/AppImage.md +++ b/wiki/translations/it/AppImage.md @@ -1,5 +1,5 @@ # AppImage/it - **A partire dal 7 luglio 2019, la comunità di FreeCAD ha segnalato che il download di AppImages da Github sembra terminare prima del completamento. Non sappiamo perché accade questo. In questo caso, provare a scaricare di nuovo. Ci vogliono alcuni tentativi. Una pratica consigliata è quella di utilizzare la [https://wiki.freecadweb.org/AppImage/it#Aggiornamento_automatico funzione di aggiornamento automatico] di AppImage, che ripristina il download dal punto in cui si è interrotto. +**A partire dal 7 luglio 2019, la comunità di FreeCAD ha segnalato che il download di AppImages da Github sembra terminare prima del completamento. Non sappiamo perché accade questo. In questo caso, provare a scaricare di nuovo. Ci vogliono alcuni tentativi. Una pratica consigliata è quella di utilizzare la [https://wiki.freecadweb.org/AppImage/it#Aggiornamento_automatico funzione di aggiornamento automatico] di AppImage, che ripristina il download dal punto in cui si è interrotto. ** @@ -183,3 +183,6 @@ The repository for these scripts is at [realthunder/FreeCADMakeImage](https://gi [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > AppImage/it diff --git a/wiki/translations/it/App_DocumentObject.md b/wiki/translations/it/App_DocumentObject.md index a32f153562..8aa5fd065c 100644 --- a/wiki/translations/it/App_DocumentObject.md +++ b/wiki/translations/it/App_DocumentObject.md @@ -1,5 +1,5 @@ # App DocumentObject/it - {{TOCright}} +{{TOCright}} ## Introduzione @@ -69,4 +69,7 @@ obj.Label = "Custom label" {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App DocumentObject/it diff --git a/wiki/translations/it/App_DocumentObjectGroup.md b/wiki/translations/it/App_DocumentObjectGroup.md index 5e58252849..1522cec30a 100644 --- a/wiki/translations/it/App_DocumentObjectGroup.md +++ b/wiki/translations/it/App_DocumentObjectGroup.md @@ -1,6 +1,4 @@ # App DocumentObjectGroup/it - - ## Introduzione @@ -31,4 +29,7 @@ Vedere le proprietà nella pagina [Gruppo](Std_Group/it.md). {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App DocumentObjectGroup/it diff --git a/wiki/translations/it/App_FeaturePython.md b/wiki/translations/it/App_FeaturePython.md index 0d3abd9a3c..60a8d7e2dc 100644 --- a/wiki/translations/it/App_FeaturePython.md +++ b/wiki/translations/it/App_FeaturePython.md @@ -1,6 +1,4 @@ # App FeaturePython/it - - ## Introduzione Un oggetto [App FeaturePython](App_FeaturePython/it.md), o formalmente un `App::FeaturePython`, è una semplice istanza di [App DocumentObject](App_DocumentObject/it.md) in [Python](Python/it.md). @@ -101,4 +99,7 @@ Se l\'oggetto desiderato deve avere un posizionamento, una forma, un allegato o {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App FeaturePython/it diff --git a/wiki/translations/it/App_GeoFeature.md b/wiki/translations/it/App_GeoFeature.md index c26faa324d..e9fec33b35 100644 --- a/wiki/translations/it/App_GeoFeature.md +++ b/wiki/translations/it/App_GeoFeature.md @@ -1,6 +1,4 @@ # App GeoFeature/it - - ## Introduzione @@ -144,4 +142,7 @@ For example, the [Arch BuildingPart](Arch_BuildingPart.md) element of the [Arch {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App GeoFeature/it diff --git a/wiki/translations/it/App_Link.md b/wiki/translations/it/App_Link.md index 92f5117722..3c5af17e96 100644 --- a/wiki/translations/it/App_Link.md +++ b/wiki/translations/it/App_Link.md @@ -1,5 +1,5 @@ # App Link/it - {{TOCright}} +{{TOCright}} ## Introduzione @@ -28,4 +28,7 @@ Vedere l\'elenco completo delle proprietà nella pagina [Crea link](Std_LinkMake {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Link/it diff --git a/wiki/translations/it/App_Part.md b/wiki/translations/it/App_Part.md index abdc880775..a90370135e 100644 --- a/wiki/translations/it/App_Part.md +++ b/wiki/translations/it/App_Part.md @@ -1,6 +1,4 @@ # App Part/it - - ## Introduzione @@ -31,4 +29,7 @@ Vedere l\'elenco completo delle proprietà nella pagina [Std Part](Std_Part/it.m {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Part/it diff --git a/wiki/translations/it/Arch_3DS.md b/wiki/translations/it/Arch_3DS.md index 7cc6f04422..c9c54d09c3 100644 --- a/wiki/translations/it/Arch_3DS.md +++ b/wiki/translations/it/Arch_3DS.md @@ -1,7 +1,4 @@ # Arch 3DS/it - - -
@@ -25,3 +22,6 @@ L\'ambiente Arch supporta l\'importazione dei file [3DS](https://en.wikipedia.or [Category:User Documentation](Category:User_Documentation.md) [Category:Arch](Category:Arch.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3DS/it diff --git a/wiki/translations/it/Arch_3Views.md b/wiki/translations/it/Arch_3Views.md index 98e85689b6..1b6fa4073e 100644 --- a/wiki/translations/it/Arch_3Views.md +++ b/wiki/translations/it/Arch_3Views.md @@ -7,6 +7,8 @@ SeeAlso:[Dividi Mesh](Arch_SplitMesh/it.md), [Da Mesh a Forma](Arch_MeshToShape/it.md) --- +# Arch 3Views/it +
@@ -106,8 +108,5 @@ mesh_obj.ViewObject.Visibility = False
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3Views/it diff --git a/wiki/translations/it/Arch_API.md b/wiki/translations/it/Arch_API.md index 1d668822e0..83826cd34d 100644 --- a/wiki/translations/it/Arch_API.md +++ b/wiki/translations/it/Arch_API.md @@ -1,5 +1,5 @@ # Arch API/it - **(Novembre 2018) Le API di Arch sono elencate in [https://www.freecadweb.org/api autogenerated API documentation].** +**(Novembre 2018) Le API di Arch sono elencate in [https://www.freecadweb.org/api autogenerated API documentation].** Le funzioni API fanno parte dell\'ambiente [Arch](Arch_Workbench/it.md) e possono essere usate nelle [macro](macros/it.md) e dalla console [Python](Python/it.md) dopo che il modulo `Arch/it|Arch` è stato importato. L\'addon [Reinforcement](Reinforcement_Addon/it.md) ha le sue [Reinforcement API](Reinforcement_API/it.md). @@ -18,3 +18,6 @@ Arch.makeWall(baseline, length=None, width=200, height=2000) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch API/it diff --git a/wiki/translations/it/Arch_Add.md b/wiki/translations/it/Arch_Add.md index 83093c8326..2dfba2448a 100644 --- a/wiki/translations/it/Arch_Add.md +++ b/wiki/translations/it/Arch_Add.md @@ -7,6 +7,8 @@ SeeAlso:[Rimuovi](Arch_Remove/it.md) --- +# Arch Add/it +
@@ -104,8 +106,5 @@ FreeCAD.ActiveDocument.recompute()
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Add/it diff --git a/wiki/translations/it/Arch_Axis.md b/wiki/translations/it/Arch_Axis.md index 587ddbdf99..2a2a1df39f 100644 --- a/wiki/translations/it/Arch_Axis.md +++ b/wiki/translations/it/Arch_Axis.md @@ -1,3 +1,4 @@ +# Arch Axis/it --- - GuiCommand:/it Name:Arch Axis @@ -105,5 +106,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Axis/it diff --git a/wiki/translations/it/Arch_AxisSystem.md b/wiki/translations/it/Arch_AxisSystem.md index 821b2974da..3fd4eda8c4 100644 --- a/wiki/translations/it/Arch_AxisSystem.md +++ b/wiki/translations/it/Arch_AxisSystem.md @@ -8,6 +8,8 @@ SeeAlso:[Assi](Arch_Axis/it.md), [Griglia](Arch_Grid/it.md) --- +# Arch AxisSystem/it +
@@ -87,5 +89,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch AxisSystem/it diff --git a/wiki/translations/it/Arch_BimServer.md b/wiki/translations/it/Arch_BimServer.md index d0515e81e6..0f4d2b43bc 100644 --- a/wiki/translations/it/Arch_BimServer.md +++ b/wiki/translations/it/Arch_BimServer.md @@ -1,2 +1,5 @@ # Arch BimServer/it 1. REDIRECT [WebTools\_BimServer/it](WebTools_BimServer/it.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BimServer/it diff --git a/wiki/translations/it/Arch_Building.md b/wiki/translations/it/Arch_Building.md index 09b623bec9..7106b3ef09 100644 --- a/wiki/translations/it/Arch_Building.md +++ b/wiki/translations/it/Arch_Building.md @@ -8,6 +8,8 @@ SeeAlso:[Parte di edificio](Arch_BuildingPart/it.md), [Sito](Arch_Site/it.md) --- +# Arch Building/it +
@@ -74,5 +76,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Building/it diff --git a/wiki/translations/it/Arch_BuildingPart.md b/wiki/translations/it/Arch_BuildingPart.md index 4c3279a13d..3349edb376 100644 --- a/wiki/translations/it/Arch_BuildingPart.md +++ b/wiki/translations/it/Arch_BuildingPart.md @@ -9,6 +9,8 @@ SeeAlso:[Edificio](Arch_Building/it.md), [Sito](Arch_Site/it.md) --- +# Arch BuildingPart/it +
@@ -146,5 +148,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BuildingPart/it diff --git a/wiki/translations/it/Arch_Check.md b/wiki/translations/it/Arch_Check.md index 6d199c8fe6..ecabfd4129 100644 --- a/wiki/translations/it/Arch_Check.md +++ b/wiki/translations/it/Arch_Check.md @@ -7,6 +7,8 @@ SeeAlso:[ Chiudi fori](Arch_CloseHoles/it.md) --- +# Arch Check/it +
@@ -72,8 +74,5 @@ print(list_bad)
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Check/it diff --git a/wiki/translations/it/Arch_CloneComponent.md b/wiki/translations/it/Arch_CloneComponent.md index 288644c8c5..12d4e7e2a7 100644 --- a/wiki/translations/it/Arch_CloneComponent.md +++ b/wiki/translations/it/Arch_CloneComponent.md @@ -9,6 +9,8 @@ SeeAlso:[Clona componente](Draft_Clone/it.md) di Draft, [Componente](Arch_Component/it.md) --- +# Arch CloneComponent/it +
@@ -47,5 +49,5 @@ Il componente clone ha semplicemente la sua proprietà **CloneOf** impostata sul
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloneComponent/it diff --git a/wiki/translations/it/Arch_CloseHoles.md b/wiki/translations/it/Arch_CloseHoles.md index 602faac689..8820d60023 100644 --- a/wiki/translations/it/Arch_CloseHoles.md +++ b/wiki/translations/it/Arch_CloseHoles.md @@ -6,6 +6,8 @@ MenuLocation:Arch → Utilità → Chiudi fori SeeAlso:[Controlla](Arch_Check/it.md) --- +# Arch CloseHoles/it +
@@ -75,8 +77,5 @@ solid = Arch.closeHole(Wall.Shape)
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloseHoles/it diff --git a/wiki/translations/it/Arch_CompAxis.md b/wiki/translations/it/Arch_CompAxis.md index fdf25923b8..f104ea1407 100644 --- a/wiki/translations/it/Arch_CompAxis.md +++ b/wiki/translations/it/Arch_CompAxis.md @@ -8,6 +8,8 @@ SeeAlso:[Assi](Arch_Axis/it.md), [Sistema di assi](Arch_AxisSystem/it.md), [Griglia](Arch_Grid/it.md) --- +# Arch CompAxis/it +
@@ -30,5 +32,5 @@ Crea un asse.
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompAxis/it diff --git a/wiki/translations/it/Arch_CompPanel.md b/wiki/translations/it/Arch_CompPanel.md index b510d7cce0..583e924ece 100644 --- a/wiki/translations/it/Arch_CompPanel.md +++ b/wiki/translations/it/Arch_CompPanel.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch CompPanel/it +
@@ -37,5 +39,5 @@ Raggruppamento di numerosi strumenti relativi al pannello.
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompPanel/it diff --git a/wiki/translations/it/Arch_CompPipe.md b/wiki/translations/it/Arch_CompPipe.md index c446f1fd3f..ba77864365 100644 --- a/wiki/translations/it/Arch_CompPipe.md +++ b/wiki/translations/it/Arch_CompPipe.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch CompPipe/it + @@ -34,5 +36,5 @@ - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompPipe/it diff --git a/wiki/translations/it/Arch_CompRebarStraight.md b/wiki/translations/it/Arch_CompRebarStraight.md index 073966c4f8..14870b97a7 100644 --- a/wiki/translations/it/Arch_CompRebarStraight.md +++ b/wiki/translations/it/Arch_CompRebarStraight.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch CompRebarStraight/it + ## Descrizione L\'Addon Reinforcement migliora [Arch](Arch_Workbench/it.md) fornendo nuove interfacce e preimpostazioni per la creazione di tipi di armature comuni da utilizzare con le [Strutture](Arch_Structure/it.md) di Arch. È anche integrato nell\'ambiente esterno [BIM](BIM_Workbench/it.md). @@ -48,5 +50,5 @@ Torna alla pagina [Ambienti](Workbenches/it#Ambienti_aggiuntivi.md) o alla pagin - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompRebarStraight/it diff --git a/wiki/translations/it/Arch_CompSetMaterial.md b/wiki/translations/it/Arch_CompSetMaterial.md index 95e7d72019..abd1c0c94b 100644 --- a/wiki/translations/it/Arch_CompSetMaterial.md +++ b/wiki/translations/it/Arch_CompSetMaterial.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch CompSetMaterial/it + @@ -29,5 +31,5 @@ Gli strumenti Materiale consentono di aggiungere materiali al documento attivo. - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompSetMaterial/it diff --git a/wiki/translations/it/Arch_Component.md b/wiki/translations/it/Arch_Component.md index f00b116650..1245bd7efa 100644 --- a/wiki/translations/it/Arch_Component.md +++ b/wiki/translations/it/Arch_Component.md @@ -7,6 +7,8 @@ Shortcut:**C** **M**‏‎‏‎ --- +# Arch Component/it + @@ -101,8 +103,5 @@ L\'oggetto Componente di Arch è anche una base condivisa da tutti gli altri ogg - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Component/it diff --git a/wiki/translations/it/Arch_Concept.md b/wiki/translations/it/Arch_Concept.md index cd72d26690..3bdf044fd0 100644 --- a/wiki/translations/it/Arch_Concept.md +++ b/wiki/translations/it/Arch_Concept.md @@ -1,7 +1,4 @@ # Arch Concept/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -197,3 +194,6 @@ Oggetti per catturare la conoscenza della costruzione: Oggetti per catturare la conoscenza della costruzione [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Concept/it diff --git a/wiki/translations/it/Arch_CurtainWall.md b/wiki/translations/it/Arch_CurtainWall.md index 979af9af50..b0e118b01c 100644 --- a/wiki/translations/it/Arch_CurtainWall.md +++ b/wiki/translations/it/Arch_CurtainWall.md @@ -9,6 +9,8 @@ SeeAlso:[Muro](Arch_Wall/it.md), [Griglia](Arch_Grid/it.md) --- +# Arch CurtainWall/it + @@ -166,8 +168,5 @@ curtainWall.VerticalSections = 6 FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CurtainWall/it diff --git a/wiki/translations/it/Arch_CutLine.md b/wiki/translations/it/Arch_CutLine.md index c4b53bc8b1..f61e891357 100644 --- a/wiki/translations/it/Arch_CutLine.md +++ b/wiki/translations/it/Arch_CutLine.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch CutLine/it + @@ -47,8 +49,5 @@ Lo strumento [Taglia con una linea](Arch_CutLine/it.md) consente di tagliare un - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutLine/it diff --git a/wiki/translations/it/Arch_CutPlane.md b/wiki/translations/it/Arch_CutPlane.md index 9f888172e9..9cdb92ea2b 100644 --- a/wiki/translations/it/Arch_CutPlane.md +++ b/wiki/translations/it/Arch_CutPlane.md @@ -6,6 +6,8 @@ SeeAlso:[Taglia con una linea](Arch_CutLine/it.md), [Rimuovi](Arch_Remove/it.md) --- +# Arch CutPlane/it + @@ -104,5 +106,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutPlane/it diff --git a/wiki/translations/it/Arch_DAE.md b/wiki/translations/it/Arch_DAE.md index 0f1ac391a7..dd26adc346 100644 --- a/wiki/translations/it/Arch_DAE.md +++ b/wiki/translations/it/Arch_DAE.md @@ -1,7 +1,4 @@ # Arch DAE/it - - -
@@ -53,3 +50,6 @@ La funzionalità di importazione di Collada nel modulo Architettura dipende da [ [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch DAE/it diff --git a/wiki/translations/it/Arch_Door.md b/wiki/translations/it/Arch_Door.md index a4e9eedef6..fc228be2c0 100644 --- a/wiki/translations/it/Arch_Door.md +++ b/wiki/translations/it/Arch_Door.md @@ -9,6 +9,8 @@ Icon:Arch_Window.svg --- +# Arch Door/it +
@@ -27,5 +29,5 @@ Tutte le proprietà sono descritte nello strumento [Finestra](Arch_Window/it.md) Door *Porta costruita da uno [Schizzo](Sketcher_Workbench/it.md)* - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Door/it diff --git a/wiki/translations/it/Arch_Equipment.md b/wiki/translations/it/Arch_Equipment.md index 6fb39b5db5..d663421355 100644 --- a/wiki/translations/it/Arch_Equipment.md +++ b/wiki/translations/it/Arch_Equipment.md @@ -8,6 +8,8 @@ SeeAlso:[3 viste da mesh](Arch_3Views/it.md) --- +# Arch Equipment/it + @@ -90,8 +92,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Equipment/it diff --git a/wiki/translations/it/Arch_Fence.md b/wiki/translations/it/Arch_Fence.md index 3dc4525ce6..9e1761a614 100644 --- a/wiki/translations/it/Arch_Fence.md +++ b/wiki/translations/it/Arch_Fence.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Fence/it + @@ -147,5 +149,5 @@ Fence = Arch.buildFence(fence_section, post, sketch) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Fence/it diff --git a/wiki/translations/it/Arch_Floor.md b/wiki/translations/it/Arch_Floor.md index e6b810e86b..fbfa64fcbf 100644 --- a/wiki/translations/it/Arch_Floor.md +++ b/wiki/translations/it/Arch_Floor.md @@ -8,6 +8,8 @@ SeeAlso:[Edificio](Arch_Building/it.md), [Sito](Arch_Site/it.md) --- +# Arch Floor/it + @@ -85,8 +87,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor/it diff --git a/wiki/translations/it/Arch_Frame.md b/wiki/translations/it/Arch_Frame.md index 1d30a8e8ba..da1d7e1439 100644 --- a/wiki/translations/it/Arch_Frame.md +++ b/wiki/translations/it/Arch_Frame.md @@ -8,6 +8,8 @@ SeeAlso:[Parete](Arch_Wall/it.md), [Struttura](Arch_Structure/it.md) --- +# Arch Frame/it + @@ -139,8 +141,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Frame/it diff --git a/wiki/translations/it/Arch_Git.md b/wiki/translations/it/Arch_Git.md index 25cddf7ec0..20e8891575 100644 --- a/wiki/translations/it/Arch_Git.md +++ b/wiki/translations/it/Arch_Git.md @@ -1,2 +1,5 @@ # Arch Git/it 1. REDIRECT [WebTools\_Git/it](WebTools_Git/it.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Git/it diff --git a/wiki/translations/it/Arch_Grid.md b/wiki/translations/it/Arch_Grid.md index d297302ae8..fc17f643b6 100644 --- a/wiki/translations/it/Arch_Grid.md +++ b/wiki/translations/it/Arch_Grid.md @@ -7,6 +7,8 @@ SeeAlso:[Asse](Arch_Axis/it.md), [Sistema di assi](Arch_AxisSystem/it.md) --- +# Arch Grid/it + @@ -140,5 +142,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Grid/it diff --git a/wiki/translations/it/Arch_IFC.md b/wiki/translations/it/Arch_IFC.md index 58c44903f0..fa38a43ea3 100644 --- a/wiki/translations/it/Arch_IFC.md +++ b/wiki/translations/it/Arch_IFC.md @@ -1,7 +1,4 @@ # Arch IFC/it - - -
@@ -96,3 +93,6 @@ Se la forma degli oggetti esportati si basa su una estrusione o una operazione b [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IFC/it diff --git a/wiki/translations/it/Arch_IfcExplorer.md b/wiki/translations/it/Arch_IfcExplorer.md index c1c1b2b877..88c602f8b3 100644 --- a/wiki/translations/it/Arch_IfcExplorer.md +++ b/wiki/translations/it/Arch_IfcExplorer.md @@ -8,6 +8,8 @@ SeeAlso:[Arch IFC](Arch_IFC/it.md) --- +# Arch IfcExplorer/it +
@@ -45,3 +47,6 @@ Lo scopo di questo explorer è semplicemente quello di permettere di controllare [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcExplorer/it diff --git a/wiki/translations/it/Arch_IfcSpreadsheet.md b/wiki/translations/it/Arch_IfcSpreadsheet.md index 9b746bb2b2..7e1466904a 100644 --- a/wiki/translations/it/Arch_IfcSpreadsheet.md +++ b/wiki/translations/it/Arch_IfcSpreadsheet.md @@ -9,6 +9,8 @@ SeeAlso:[File IFC](Arch_IFC/it.md), [Esplora Ifc](Arch_IfcExplorer/it.md) --- +# Arch IfcSpreadsheet/it + @@ -71,5 +73,5 @@ spreadsheet = Arch.makeIfcSpreadsheet(Wall) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcSpreadsheet/it diff --git a/wiki/translations/it/Arch_JSON.md b/wiki/translations/it/Arch_JSON.md index 45d475a7b3..005ae2af25 100644 --- a/wiki/translations/it/Arch_JSON.md +++ b/wiki/translations/it/Arch_JSON.md @@ -1,7 +1,4 @@ # Arch JSON/it - - -
@@ -43,3 +40,6 @@ Nota che le faccette formano triangoli e i loro valori di riferimento delle valo [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch JSON/it diff --git a/wiki/translations/it/Arch_MakeIfcSpreadsheet.md b/wiki/translations/it/Arch_MakeIfcSpreadsheet.md index d6857f4866..c015826180 100644 --- a/wiki/translations/it/Arch_MakeIfcSpreadsheet.md +++ b/wiki/translations/it/Arch_MakeIfcSpreadsheet.md @@ -1,2 +1,5 @@ # Arch MakeIfcSpreadsheet/it 1. REDIRECT [Arch\_IfcSpreadsheet/it](Arch_IfcSpreadsheet/it.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MakeIfcSpreadsheet/it diff --git a/wiki/translations/it/Arch_MergeWalls.md b/wiki/translations/it/Arch_MergeWalls.md index 1a012a95e6..e579baa265 100644 --- a/wiki/translations/it/Arch_MergeWalls.md +++ b/wiki/translations/it/Arch_MergeWalls.md @@ -8,6 +8,8 @@ SeeAlso:[Parete](Arch_Wall/it.md) --- +# Arch MergeWalls/it +
@@ -74,5 +76,5 @@ base = Arch.joinWalls([Wall1, Wall2]) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MergeWalls/it diff --git a/wiki/translations/it/Arch_MeshToShape.md b/wiki/translations/it/Arch_MeshToShape.md index 541ef9527d..beafa90431 100644 --- a/wiki/translations/it/Arch_MeshToShape.md +++ b/wiki/translations/it/Arch_MeshToShape.md @@ -7,6 +7,8 @@ SeeAlso:[Dividi mesh](Arch_SplitMesh/it.md), [Rimuovi Forma](Arch_RemoveShape/it.md) --- +# Arch MeshToShape/it + @@ -77,5 +79,5 @@ new_obj = Arch.meshToShape(Box) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MeshToShape/it diff --git a/wiki/translations/it/Arch_Module.md b/wiki/translations/it/Arch_Module.md index 66adebeb6b..ae4a6b0009 100644 --- a/wiki/translations/it/Arch_Module.md +++ b/wiki/translations/it/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/it 1. REDIRECT [Arch\_Workbench/it](Arch_Workbench/it.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/it diff --git a/wiki/translations/it/Arch_MultiMaterial.md b/wiki/translations/it/Arch_MultiMaterial.md index 1bd8218e9a..77c8e8dbd9 100644 --- a/wiki/translations/it/Arch_MultiMaterial.md +++ b/wiki/translations/it/Arch_MultiMaterial.md @@ -7,6 +7,8 @@ SeeAlso:[Imposta materiale](Arch_SetMaterial/it.md), [Multimateriale](Arch_CompSetMaterial/it.md) --- +# Arch MultiMaterial/it + @@ -74,5 +76,5 @@ Ciò corrisponde approssimativamente a una combinazione di [IfcMaterialLayerSet] - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MultiMaterial/it diff --git a/wiki/translations/it/Arch_Nest.md b/wiki/translations/it/Arch_Nest.md index a841e08d78..17a81acb55 100644 --- a/wiki/translations/it/Arch_Nest.md +++ b/wiki/translations/it/Arch_Nest.md @@ -7,6 +7,8 @@ SeeAlso:[Pannello](Arch_Panel/it.md), [Foglio pannello](Arch_Panel_Sheet/it.md) --- +# Arch Nest/it + @@ -64,5 +66,5 @@ L\'algoritmo sottostante allo strumento Nido è in continua evoluzione e al mome - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Nest/it diff --git a/wiki/translations/it/Arch_OBJ.md b/wiki/translations/it/Arch_OBJ.md index cfdbe97c0e..60394fa525 100644 --- a/wiki/translations/it/Arch_OBJ.md +++ b/wiki/translations/it/Arch_OBJ.md @@ -1,7 +1,4 @@ # Arch OBJ/it - - -
@@ -71,3 +68,6 @@ mesh.write(Filename="new_example.obj", Material=face_colors, Format="obj") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch OBJ/it diff --git a/wiki/translations/it/Arch_Panel.md b/wiki/translations/it/Arch_Panel.md index 5d68ef23d4..60e4cc7ccd 100644 --- a/wiki/translations/it/Arch_Panel.md +++ b/wiki/translations/it/Arch_Panel.md @@ -9,6 +9,8 @@ SeeAlso:[Sagoma pannello](Arch_Panel_Cut/it.md), [Foglio pannello](Arch_Panel_Sheet/it.md) --- +# Arch Panel/it +
@@ -109,5 +111,5 @@ Panel = Arch.makePanel(Rect, thickness=36) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel/it diff --git a/wiki/translations/it/Arch_Panel_Cut.md b/wiki/translations/it/Arch_Panel_Cut.md index 6c9fc0372d..b2c8d3c00a 100644 --- a/wiki/translations/it/Arch_Panel_Cut.md +++ b/wiki/translations/it/Arch_Panel_Cut.md @@ -8,6 +8,8 @@ SeeAlso:[Pannello](Arch_Panel/it.md), [Foglio pannello](Arch_Panel_Sheet/it.md), [Nido](Arch_Nest/it.md), [Ambiente Path](Path_Workbench/it.md) --- +# Arch Panel Cut/it + @@ -147,5 +149,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Cut/it diff --git a/wiki/translations/it/Arch_Panel_Sheet.md b/wiki/translations/it/Arch_Panel_Sheet.md index 772c2c2136..6d4e6be728 100644 --- a/wiki/translations/it/Arch_Panel_Sheet.md +++ b/wiki/translations/it/Arch_Panel_Sheet.md @@ -8,6 +8,8 @@ SeeAlso:[Pannello](Arch_Panel/it.md), [Sagoma pannello](Arch_Panel_Cut/it.md), [Nido](Arch_Nest/it.md) --- +# Arch Panel Sheet/it + @@ -156,5 +158,5 @@ Sheet = Arch.makePanelSheet([Cut1, Cut2, Cut3]) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Sheet/it diff --git a/wiki/translations/it/Arch_Pipe.md b/wiki/translations/it/Arch_Pipe.md index 3bc2458535..fb703ab824 100644 --- a/wiki/translations/it/Arch_Pipe.md +++ b/wiki/translations/it/Arch_Pipe.md @@ -9,6 +9,8 @@ SeeAlso:[Raccordo](Arch_PipeConnector/it.md), [Arredo](Arch_Equipment/it.md) --- +# Arch Pipe/it + @@ -140,5 +142,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Pipe/it diff --git a/wiki/translations/it/Arch_PipeConnector.md b/wiki/translations/it/Arch_PipeConnector.md index 27e486db0d..524496f613 100644 --- a/wiki/translations/it/Arch_PipeConnector.md +++ b/wiki/translations/it/Arch_PipeConnector.md @@ -9,6 +9,8 @@ SeeAlso:[Tubo](Arch_Pipe/it.md), [Arredo](Arch_Equipment/it.md) --- +# Arch PipeConnector/it + @@ -99,8 +101,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch PipeConnector/it diff --git a/wiki/translations/it/Arch_Preferences.md b/wiki/translations/it/Arch_Preferences.md index 283e9511b8..b977b62442 100644 --- a/wiki/translations/it/Arch_Preferences.md +++ b/wiki/translations/it/Arch_Preferences.md @@ -1,6 +1,4 @@ # Arch Preferences/it - - Le preferenze per l\'ambiente [Arch](Arch_Workbench/it.md) si trovano nel [Editor delle preferenze](Preferences_Editor/it.md), nel menu **Modifica → Preferenze → Arch**. Sono disponibili due schede: Impostazioni generali e Defaults. @@ -17,3 +15,6 @@ Sono disponibili due schede: Impostazioni generali e Defaults. [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Preferences/it diff --git a/wiki/translations/it/Arch_Profile.md b/wiki/translations/it/Arch_Profile.md index c9dba9122b..d9cbe2510d 100644 --- a/wiki/translations/it/Arch_Profile.md +++ b/wiki/translations/it/Arch_Profile.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Profile/it + @@ -92,8 +94,5 @@ Arch.makeProfile([0,'REC','REC100x100','R',100,100]) Dove il primo elemento della lista è un numero d\'ordine non ancora utilizzato. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Profile/it diff --git a/wiki/translations/it/Arch_Project.md b/wiki/translations/it/Arch_Project.md index c5664db92f..f5ef768cba 100644 --- a/wiki/translations/it/Arch_Project.md +++ b/wiki/translations/it/Arch_Project.md @@ -8,6 +8,8 @@ SeeAlso:[Sito](Arch_Site/it.md), [Edificio](Arch_Building/it.md) --- +# Arch Project/it + @@ -51,5 +53,5 @@ Notare che, sebbene a un Progetto possa essere aggiunto qualsiasi altro oggetto - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Project/it diff --git a/wiki/translations/it/Arch_Rebar.md b/wiki/translations/it/Arch_Rebar.md index b7f47db694..6ccba45414 100644 --- a/wiki/translations/it/Arch_Rebar.md +++ b/wiki/translations/it/Arch_Rebar.md @@ -8,6 +8,8 @@ SeeAlso:[Struttura](Arch_Structure/it.md), [Ambiente Reinforcement](Reinforcement_Workbench/it.md) --- +# Arch Rebar/it + @@ -130,3 +132,6 @@ FreeCAD.ActiveDocument.recompute() [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar/it diff --git a/wiki/translations/it/Arch_Rebar_BOM.md b/wiki/translations/it/Arch_Rebar_BOM.md index b0c67cee72..5766b7422c 100644 --- a/wiki/translations/it/Arch_Rebar_BOM.md +++ b/wiki/translations/it/Arch_Rebar_BOM.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar BOM/it + @@ -534,3 +536,6 @@ BillOfMaterial_SVG.makeBillOfMaterialSVG( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BOM/it diff --git a/wiki/translations/it/Arch_Rebar_BeamReinforcement.md b/wiki/translations/it/Arch_Rebar_BeamReinforcement.md index 9aecd45000..eb0ced1084 100644 --- a/wiki/translations/it/Arch_Rebar_BeamReinforcement.md +++ b/wiki/translations/it/Arch_Rebar_BeamReinforcement.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar BeamReinforcement/it + @@ -382,3 +384,6 @@ RebarGroup = TwoLeggedBeam.makeReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BeamReinforcement/it diff --git a/wiki/translations/it/Arch_Rebar_BentShape.md b/wiki/translations/it/Arch_Rebar_BentShape.md index f012132246..cff6cdc6d1 100644 --- a/wiki/translations/it/Arch_Rebar_BentShape.md +++ b/wiki/translations/it/Arch_Rebar_BentShape.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch Rebar BentShape/it + @@ -162,3 +164,6 @@ BentShapeRebar.editBentShapeRebar(Rebar2, 50, 35, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BentShape/it diff --git a/wiki/translations/it/Arch_Rebar_Circular_ColumnReinforcement.md b/wiki/translations/it/Arch_Rebar_Circular_ColumnReinforcement.md index baea7f963f..4e0903d395 100644 --- a/wiki/translations/it/Arch_Rebar_Circular_ColumnReinforcement.md +++ b/wiki/translations/it/Arch_Rebar_Circular_ColumnReinforcement.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar Circular ColumnReinforcement/it + @@ -223,3 +225,6 @@ rebar_group = CircularColumn.editReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Circular ColumnReinforcement/it diff --git a/wiki/translations/it/Arch_Rebar_ColumnReinforcement.md b/wiki/translations/it/Arch_Rebar_ColumnReinforcement.md index 46311a807c..c64c171e7a 100644 --- a/wiki/translations/it/Arch_Rebar_ColumnReinforcement.md +++ b/wiki/translations/it/Arch_Rebar_ColumnReinforcement.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar ColumnReinforcement/it + @@ -573,3 +575,6 @@ rebar_group = SingleTieMultipleRebars.editSingleTieMultipleRebars( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar ColumnReinforcement/it diff --git a/wiki/translations/it/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md b/wiki/translations/it/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md index e0dc9c5d3f..328e344bd2 100644 --- a/wiki/translations/it/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md +++ b/wiki/translations/it/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar ColumnReinforcement TwoTiesSixRebars/it + ## Descrizione Lo strumento [Armatura di pilastro con due staffe e sei barre](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/it.md) consente all\'utente di creare delle barre di rinforzo all\'interno di un oggetto [Struttura](Arch_Structure/it.md) Pilastro. @@ -343,3 +345,6 @@ rebar_group = TwoTiesSixRebars.editTwoTiesSixRebars( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar ColumnReinforcement TwoTiesSixRebars/it diff --git a/wiki/translations/it/Arch_Rebar_Dimensioning.md b/wiki/translations/it/Arch_Rebar_Dimensioning.md index 671bc7024f..62356915a7 100644 --- a/wiki/translations/it/Arch_Rebar_Dimensioning.md +++ b/wiki/translations/it/Arch_Rebar_Dimensioning.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar Dimensioning/it + @@ -362,3 +364,6 @@ for visible_rebar in visible_rebars: [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Dimensioning/it diff --git a/wiki/translations/it/Arch_Rebar_Drawing.md b/wiki/translations/it/Arch_Rebar_Drawing.md index 21ac3bf92a..930c32fd25 100644 --- a/wiki/translations/it/Arch_Rebar_Drawing.md +++ b/wiki/translations/it/Arch_Rebar_Drawing.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar Drawing/it + @@ -395,3 +397,6 @@ for drawing_view in ("Front", "Rear", "Left", "Right", "Top", "Bottom"): [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Drawing/it diff --git a/wiki/translations/it/Arch_Rebar_Drawing_Dimensioning.md b/wiki/translations/it/Arch_Rebar_Drawing_Dimensioning.md index ca854118bd..b2499f0c07 100644 --- a/wiki/translations/it/Arch_Rebar_Drawing_Dimensioning.md +++ b/wiki/translations/it/Arch_Rebar_Drawing_Dimensioning.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar Drawing Dimensioning/it + @@ -1104,3 +1106,6 @@ for visible_rebar in visible_rebars: [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Drawing Dimensioning/it diff --git a/wiki/translations/it/Arch_Rebar_Helical.md b/wiki/translations/it/Arch_Rebar_Helical.md index a387420463..6fd31deb42 100644 --- a/wiki/translations/it/Arch_Rebar_Helical.md +++ b/wiki/translations/it/Arch_Rebar_Helical.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch Rebar Helical/it + @@ -136,3 +138,6 @@ HelicalRebar.editHelicalRebar(Rebar, 20, 100, 20, 20, 100) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Helical/it diff --git a/wiki/translations/it/Arch_Rebar_LShape.md b/wiki/translations/it/Arch_Rebar_LShape.md index c57a159b80..b4744b7d44 100644 --- a/wiki/translations/it/Arch_Rebar_LShape.md +++ b/wiki/translations/it/Arch_Rebar_LShape.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch Rebar LShape/it + @@ -160,3 +162,6 @@ LShapeRebar.editLShapeRebar(Rebar2, 50, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar LShape/it diff --git a/wiki/translations/it/Arch_Rebar_Stirrup.md b/wiki/translations/it/Arch_Rebar_Stirrup.md index 01c0ca2780..29767727be 100644 --- a/wiki/translations/it/Arch_Rebar_Stirrup.md +++ b/wiki/translations/it/Arch_Rebar_Stirrup.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch Rebar Stirrup/it + @@ -155,3 +157,6 @@ Stirrup.editStirrup(Rebar, 20, 20, 20, 20, 50, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Stirrup/it diff --git a/wiki/translations/it/Arch_Rebar_Straight.md b/wiki/translations/it/Arch_Rebar_Straight.md index 2a862c4a29..eb4af0b657 100644 --- a/wiki/translations/it/Arch_Rebar_Straight.md +++ b/wiki/translations/it/Arch_Rebar_Straight.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch Rebar Straight/it + ## Descrizione Lo strumento [Armatura dritta](Arch_Rebar_Straight.md) consente all\'utente di creare un set di staffe d\'armatura all\'interno di un oggetto [Struttura](Arch_Structure/it.md). @@ -213,3 +215,6 @@ StraightRebar.editStraightRebar(Rebar4, 50, ("Right Side", 50), 100, 100, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Straight/it diff --git a/wiki/translations/it/Arch_Rebar_UShape.md b/wiki/translations/it/Arch_Rebar_UShape.md index b2e58e0635..f290205f95 100644 --- a/wiki/translations/it/Arch_Rebar_UShape.md +++ b/wiki/translations/it/Arch_Rebar_UShape.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch Rebar UShape/it + ## Descrizione Lo strumento [Armatura ad U](Arch_Rebar_UShape/it.md) consente all\'utente di creare un set di barre d\'armatura a forma di U all\'interno di un oggetto [Struttura](Arch_Structure/it.md). @@ -154,3 +156,6 @@ UShapeRebar.editUShapeRebar(Rebar2, 70, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar UShape/it diff --git a/wiki/translations/it/Arch_Reference.md b/wiki/translations/it/Arch_Reference.md index c2a438129a..703affdbc9 100644 --- a/wiki/translations/it/Arch_Reference.md +++ b/wiki/translations/it/Arch_Reference.md @@ -8,6 +8,8 @@ SeeAlso:[Parte di edificio](Arch_BuildingPart/it.md) --- +# Arch Reference/it + @@ -70,5 +72,5 @@ Arch.makeReference("/path/to/some/file.FSCtd","myPart") - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Reference/it diff --git a/wiki/translations/it/Arch_Remove.md b/wiki/translations/it/Arch_Remove.md index 1c4053b830..e8af0f3741 100644 --- a/wiki/translations/it/Arch_Remove.md +++ b/wiki/translations/it/Arch_Remove.md @@ -7,6 +7,8 @@ SeeAlso:[Taglia con una linea](Arch_CutLine/it.md), [Taglia con un piano](Arch_CutPlane/it.md), [Aggiungi](Arch_Add/it.md) --- +# Arch Remove/it + @@ -114,8 +116,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove/it diff --git a/wiki/translations/it/Arch_RemoveShape.md b/wiki/translations/it/Arch_RemoveShape.md index 92ba173856..43e44f9664 100644 --- a/wiki/translations/it/Arch_RemoveShape.md +++ b/wiki/translations/it/Arch_RemoveShape.md @@ -7,6 +7,8 @@ SeeAlso:[Dividi mesh](Arch_SplitMesh/it.md), [Da Mesh a Forma](Arch_MeshToShape/it.md) --- +# Arch RemoveShape/it + @@ -72,5 +74,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch RemoveShape/it diff --git a/wiki/translations/it/Arch_Roof.md b/wiki/translations/it/Arch_Roof.md index 40d8105385..ccc9a7b760 100644 --- a/wiki/translations/it/Arch_Roof.md +++ b/wiki/translations/it/Arch_Roof.md @@ -8,6 +8,8 @@ SeeAlso:[Struttura](Arch_Structure/it.md), [Muro](Arch_Wall/it.md) --- +# Arch Roof/it + @@ -125,5 +127,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Roof/it diff --git a/wiki/translations/it/Arch_SHP.md b/wiki/translations/it/Arch_SHP.md index 34ed0e2474..3958d01891 100644 --- a/wiki/translations/it/Arch_SHP.md +++ b/wiki/translations/it/Arch_SHP.md @@ -1,5 +1,5 @@ # Arch SHP/it - FreeCAD è in grado di importare [shapefiles](https://en.wikipedia.org/wiki/Shapefile) +FreeCAD è in grado di importare [shapefiles](https://en.wikipedia.org/wiki/Shapefile) L\'importatore utilizza la libreria shapefile.py da , che non si trova nel proprio sistema al primo avvio, ma che l\'importatore proporrà di scaricare e installare. @@ -21,3 +21,6 @@ Notare che al momento non viene trattata tutta la questione delle unità georefe [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SHP/it diff --git a/wiki/translations/it/Arch_Schedule.md b/wiki/translations/it/Arch_Schedule.md index 12edb33a32..a3304139ca 100644 --- a/wiki/translations/it/Arch_Schedule.md +++ b/wiki/translations/it/Arch_Schedule.md @@ -1,3 +1,4 @@ +# Arch Schedule/it --- - GuiCommand:/it Name:Arch Schedule Name/it:Scheda Workbenches:[MenuLocation:Arch → Scheda SeeAlso:[[Arch Equipment/it|Arredo](Arch_Workbench/it___Arch]].md)--- @@ -78,8 +79,5 @@ Dall\'ambiente Spreadsheet il foglio di calcolo può quindi essere esportato nor It is possible to add your own properties to objects. These are called [Dynamic properties](Property_editor#Actions.md). If they have been added with the **Prefix group name** option selected, their names will indeed start with the group name, but this prefix is not displayed in the [Property editor](Property_editor.md). Their names have this form: `NameOfGroup_NameOfProperty`. To reference them in a schedule this full name must be used. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Schedule/it diff --git a/wiki/translations/it/Arch_SectionPlane.md b/wiki/translations/it/Arch_SectionPlane.md index b48ac2bb48..7b45f3014b 100644 --- a/wiki/translations/it/Arch_SectionPlane.md +++ b/wiki/translations/it/Arch_SectionPlane.md @@ -1,3 +1,4 @@ +# Arch SectionPlane/it --- - GuiCommand:/it Name:Arch SectionPlane @@ -138,8 +139,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane/it diff --git a/wiki/translations/it/Arch_SelectNonSolidMeshes.md b/wiki/translations/it/Arch_SelectNonSolidMeshes.md index af49cdd54e..9f4be7d73c 100644 --- a/wiki/translations/it/Arch_SelectNonSolidMeshes.md +++ b/wiki/translations/it/Arch_SelectNonSolidMeshes.md @@ -8,6 +8,8 @@ SeeAlso:[Dividi mesh](Arch_SplitMesh/it.md),[Da mesh a forma](Arch_MeshToShape/it.md) --- +# Arch SelectNonSolidMeshes/it + @@ -35,5 +37,5 @@ Questo strumento identifica e seleziona i mesh non-solido, non-[manifold](http:/ - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SelectNonSolidMeshes/it diff --git a/wiki/translations/it/Arch_SetMaterial.md b/wiki/translations/it/Arch_SetMaterial.md index 2a7b98ef00..43ab91c74a 100644 --- a/wiki/translations/it/Arch_SetMaterial.md +++ b/wiki/translations/it/Arch_SetMaterial.md @@ -8,6 +8,8 @@ SeeAlso:[Materiali](Arch_CompSetMaterial/it.md), [Multimateriali](Arch_MultiMaterial/it.md) --- +# Arch SetMaterial/it + @@ -68,5 +70,5 @@ Questo corrisponde approssimativamente a [IfcMaterial](https://standards.buildin - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SetMaterial/it diff --git a/wiki/translations/it/Arch_Site.md b/wiki/translations/it/Arch_Site.md index e9b60c83c6..005be6f05b 100644 --- a/wiki/translations/it/Arch_Site.md +++ b/wiki/translations/it/Arch_Site.md @@ -8,6 +8,8 @@ SeeAlso:[Piano](Arch_Floor/it.md), [Edificio](Arch_Building/it.md) --- +# Arch Site/it + @@ -177,5 +179,5 @@ FreeCAD.Gui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Site/it diff --git a/wiki/translations/it/Arch_Space.md b/wiki/translations/it/Arch_Space.md index 85a4dcc1b7..eba44f1ada 100644 --- a/wiki/translations/it/Arch_Space.md +++ b/wiki/translations/it/Arch_Space.md @@ -9,6 +9,8 @@ Version:0.14 --- +# Arch Space/it + @@ -153,5 +155,5 @@ Arch.removeSpaceBoundaries(Space, selection) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Space/it diff --git a/wiki/translations/it/Arch_SplitMesh.md b/wiki/translations/it/Arch_SplitMesh.md index 545b02c3f6..43e67a1c36 100644 --- a/wiki/translations/it/Arch_SplitMesh.md +++ b/wiki/translations/it/Arch_SplitMesh.md @@ -7,6 +7,8 @@ SeeAlso:[Seleziona mesh non solidi](Arch_SelectNonSolidMeshes/it.md), [Da Mesh a Forma](Arch_MeshToShape/it.md) --- +# Arch SplitMesh/it + @@ -86,8 +88,5 @@ new_list = Arch.splitMesh(mesh_obj) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SplitMesh/it diff --git a/wiki/translations/it/Arch_Stairs.md b/wiki/translations/it/Arch_Stairs.md index 656688ccdf..768014ee89 100644 --- a/wiki/translations/it/Arch_Stairs.md +++ b/wiki/translations/it/Arch_Stairs.md @@ -9,6 +9,8 @@ Version:0.14 --- +# Arch Stairs/it + @@ -127,5 +129,5 @@ Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Stairs/it diff --git a/wiki/translations/it/Arch_Structure.md b/wiki/translations/it/Arch_Structure.md index 00f47f9cfc..8da0a008f5 100644 --- a/wiki/translations/it/Arch_Structure.md +++ b/wiki/translations/it/Arch_Structure.md @@ -8,6 +8,8 @@ SeeAlso:[Muro](Arch_Wall/it.md), [Armature](Arch_Rebar/it.md) --- +# Arch Structure/it + @@ -137,8 +139,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/it diff --git a/wiki/translations/it/Arch_Survey.md b/wiki/translations/it/Arch_Survey.md index dc0eb959c1..351f911786 100644 --- a/wiki/translations/it/Arch_Survey.md +++ b/wiki/translations/it/Arch_Survey.md @@ -7,6 +7,8 @@ SeeAlso: [FCInfo (macro)](Macro_FCInfo/it.md)
[Macro SimpleProperties (macro)](Macro_SimpleProperties.md) --- +# Arch Survey/it + @@ -100,5 +102,5 @@ for obj in selection: - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Survey/it diff --git a/wiki/translations/it/Arch_ToggleIfcBrepFlag.md b/wiki/translations/it/Arch_ToggleIfcBrepFlag.md index dce55655ee..27de54fe72 100644 --- a/wiki/translations/it/Arch_ToggleIfcBrepFlag.md +++ b/wiki/translations/it/Arch_ToggleIfcBrepFlag.md @@ -8,6 +8,8 @@ SeeAlso:[Esplora Ifc](Arch_IfcExplorer/it.md), [IFC](Arch_IFC/it.md) --- +# Arch ToggleIfcBrepFlag/it + @@ -41,8 +43,5 @@ Questo strumento attiva o disattiva il contrassegno Ifc BREP di un oggetto [Arch - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleIfcBrepFlag/it diff --git a/wiki/translations/it/Arch_ToggleSubs.md b/wiki/translations/it/Arch_ToggleSubs.md index bb1a0b5f8c..6e61ce57ad 100644 --- a/wiki/translations/it/Arch_ToggleSubs.md +++ b/wiki/translations/it/Arch_ToggleSubs.md @@ -8,6 +8,8 @@ SeeAlso:[Componente](Arch_Component/it.md) --- +# Arch ToggleSubs/it + @@ -63,5 +65,5 @@ Lo stile [Costruzione](Draft_ToggleConstructionMode/it.md) di Draft può essere - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleSubs/it diff --git a/wiki/translations/it/Arch_Truss.md b/wiki/translations/it/Arch_Truss.md index 78d8c1a4e7..a7d5af9295 100644 --- a/wiki/translations/it/Arch_Truss.md +++ b/wiki/translations/it/Arch_Truss.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Truss/it + @@ -128,5 +130,5 @@ truss.HeightEnd = 400 - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Truss/it diff --git a/wiki/translations/it/Arch_Wall.md b/wiki/translations/it/Arch_Wall.md index b6a7f55ab4..a5c5a62083 100644 --- a/wiki/translations/it/Arch_Wall.md +++ b/wiki/translations/it/Arch_Wall.md @@ -8,6 +8,8 @@ SeeAlso:[Struttura](Arch_Structure/it.md) --- +# Arch Wall/it + @@ -173,8 +175,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/it diff --git a/wiki/translations/it/Arch_Window.md b/wiki/translations/it/Arch_Window.md index ba024a80f3..e0403764d0 100644 --- a/wiki/translations/it/Arch_Window.md +++ b/wiki/translations/it/Arch_Window.md @@ -1,3 +1,4 @@ +# Arch Window/it --- - GuiCommand:/it Name:Arch Window Name/it:Finestra Workbenches:[MenuLocation:Arch → Finestra Shortcut:**W** **I** SeeAlso:[[Arch Wall/it|Muro](Arch_Workbench/it___Architettura]].md), [Aggiungi componente](Arch_Add/it.md)--- @@ -230,8 +231,5 @@ Door = Arch.makeWindowPreset("Simple door", {{docnav/it|[Riferimento esterno](Arch_Reference/it.md)|[Piano di sezione](Arch_SectionPlane/it.md)|[Arch](Arch_Workbench/it.md)|IconL=Arch_Reference.svg |IconC=Workbench_Arch.svg |IconR=Arch_SectionPlane.svg}} - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Window/it diff --git a/wiki/translations/it/Arch_Workbench.md b/wiki/translations/it/Arch_Workbench.md index a9eac2cb75..b73c58e694 100644 --- a/wiki/translations/it/Arch_Workbench.md +++ b/wiki/translations/it/Arch_Workbench.md @@ -1,10 +1,4 @@ -# Arch Workbench/it - - - - - -L\'icona di Arch +# L\'icona di Arch Arch Workbench/it {{TOCright}} @@ -145,3 +139,6 @@ Il Modulo Arch può essere usato negli [Python](Python/it.md) e [macro](macros/i [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/it diff --git a/wiki/translations/it/Arch_panel_tutorial.md b/wiki/translations/it/Arch_panel_tutorial.md index c170e9b526..9302fcab7b 100644 --- a/wiki/translations/it/Arch_panel_tutorial.md +++ b/wiki/translations/it/Arch_panel_tutorial.md @@ -1,7 +1,4 @@ # Arch panel tutorial/it - - - {{TutorialInfo/it |Topic= Modellare un pannello in Arch |Level= Base @@ -198,4 +195,7 @@ Entrambi gli strumenti Ruota e Sposta di Draft usano il sistema di Aggancio di D {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch panel tutorial/it diff --git a/wiki/translations/it/Arch_templates.md b/wiki/translations/it/Arch_templates.md index 56120000da..d059bdc2fa 100644 --- a/wiki/translations/it/Arch_templates.md +++ b/wiki/translations/it/Arch_templates.md @@ -1,7 +1,4 @@ # Arch templates/it - - -
Questa pagina contiene i modelli conformi allo standard [Arch](http://en.wikipedia.org/wiki/American_National_Standards_Institute) del American National Standards Institute @@ -100,3 +97,6 @@ Questa pagina contiene i modelli conformi allo standard [Arch](http://en.wikiped Questi modelli sono stati disegnati da [Quick61](User:Quick61.md) e sono disponibili in [FreeCAD-Drawing-Templates](https://github.com/quick61/FreeCAD-Drawing-Templates). [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch templates/it diff --git a/wiki/translations/it/Arch_tutorial.md b/wiki/translations/it/Arch_tutorial.md index 8e749ff496..5402a41f98 100644 --- a/wiki/translations/it/Arch_tutorial.md +++ b/wiki/translations/it/Arch_tutorial.md @@ -1,7 +1,4 @@ # Arch tutorial/it - - -
@@ -651,4 +648,7 @@ Il file creato durante questo tutorial è disponibile [qui](http://yorik.uncreat {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch tutorial/it diff --git a/wiki/translations/it/Artwork.md b/wiki/translations/it/Artwork.md index bdf566b49e..eff669a159 100644 --- a/wiki/translations/it/Artwork.md +++ b/wiki/translations/it/Artwork.md @@ -1,5 +1,5 @@ # Artwork/it - Questi oggetti grafici sono stati creati per FreeCAD. Sono utilizzabili liberamente anche in altre applicazioni. +Questi oggetti grafici sono stati creati per FreeCAD. Sono utilizzabili liberamente anche in altre applicazioni. Per contribuire alla realizzazione di icone, si prega di leggere prima le [linee guida per le opere grafiche](Artwork_Guidelines/it.md). @@ -165,3 +165,6 @@ See [Artwork Erroneous](Artwork_Erroneous.md). }} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork/it diff --git a/wiki/translations/it/Artwork_Arch.md b/wiki/translations/it/Artwork_Arch.md index 99b084d81b..11ea8c8ba8 100644 --- a/wiki/translations/it/Artwork_Arch.md +++ b/wiki/translations/it/Artwork_Arch.md @@ -1,5 +1,5 @@ # Artwork Arch/it - These icons are in the indicated source path. +These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -19,3 +19,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Arch](Category:Arch.md) + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Artwork Arch/it diff --git a/wiki/translations/it/Artwork_Assembly.md b/wiki/translations/it/Artwork_Assembly.md index 45f7c82e3e..842f0ff6ce 100644 --- a/wiki/translations/it/Artwork_Assembly.md +++ b/wiki/translations/it/Artwork_Assembly.md @@ -1,6 +1,4 @@ # Artwork Assembly/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -25,3 +23,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Assembly](Category:Assembly.md) + +--- +[documentation index](../README.md) > [Assembly](Category:Assembly.md) > Artwork Assembly/it diff --git a/wiki/translations/it/Artwork_Complete.md b/wiki/translations/it/Artwork_Complete.md index a20f426b6e..bbec5c81a3 100644 --- a/wiki/translations/it/Artwork_Complete.md +++ b/wiki/translations/it/Artwork_Complete.md @@ -1,6 +1,4 @@ # Artwork Complete/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,5 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork/it}} +--- +[documentation index](../README.md) > Artwork Complete/it diff --git a/wiki/translations/it/Artwork_Draft.md b/wiki/translations/it/Artwork_Draft.md index d476644a38..6e4927d2dc 100644 --- a/wiki/translations/it/Artwork_Draft.md +++ b/wiki/translations/it/Artwork_Draft.md @@ -1,6 +1,4 @@ # Artwork Draft/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -21,3 +19,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Draft](Category:Draft.md) + +--- +[documentation index](../README.md) > [Draft](Category:Draft.md) > Artwork Draft/it diff --git a/wiki/translations/it/Artwork_Drawing.md b/wiki/translations/it/Artwork_Drawing.md index 44187a505a..88d2fa76f3 100644 --- a/wiki/translations/it/Artwork_Drawing.md +++ b/wiki/translations/it/Artwork_Drawing.md @@ -1,6 +1,4 @@ # Artwork Drawing/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -46,3 +44,5 @@ The following image is \"A4\_Simple.svg\". It is an empty page. {{Artwork/it}} +--- +[documentation index](../README.md) > Artwork Drawing/it diff --git a/wiki/translations/it/Artwork_Erroneous.md b/wiki/translations/it/Artwork_Erroneous.md index aad99a430c..79f0a8c4ab 100644 --- a/wiki/translations/it/Artwork_Erroneous.md +++ b/wiki/translations/it/Artwork_Erroneous.md @@ -1,6 +1,4 @@ # Artwork Erroneous/it - - Per tutte le icone nell\'albero del codice sorgente, vedere [Oggetti grafici](Artwork/it.md) @@ -26,3 +24,6 @@ Per tutte le icone nell\'albero del codice sorgente, vedere [Oggetti grafici](Ar }} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork Erroneous/it diff --git a/wiki/translations/it/Artwork_Fem.md b/wiki/translations/it/Artwork_Fem.md index db74baeda9..eb80c86ca3 100644 --- a/wiki/translations/it/Artwork_Fem.md +++ b/wiki/translations/it/Artwork_Fem.md @@ -1,6 +1,4 @@ # Artwork Fem/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -23,3 +21,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Artwork Fem/it diff --git a/wiki/translations/it/Artwork_Gui.md b/wiki/translations/it/Artwork_Gui.md index ad68b8b967..fde373b99e 100644 --- a/wiki/translations/it/Artwork_Gui.md +++ b/wiki/translations/it/Artwork_Gui.md @@ -1,5 +1,5 @@ # Artwork Gui/it - These icons are in the indicated source path. +These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -22,4 +22,7 @@ Queste immagini sono più grandi delle icone. {{Artwork -}} +}} + +--- +[documentation index](../README.md) > Artwork Gui/it diff --git a/wiki/translations/it/Artwork_Gui_Icons.md b/wiki/translations/it/Artwork_Gui_Icons.md index 66a6a2b3a4..ced6fe9faf 100644 --- a/wiki/translations/it/Artwork_Gui_Icons.md +++ b/wiki/translations/it/Artwork_Gui_Icons.md @@ -1,2 +1,5 @@ # Artwork Gui Icons/it 1. REDIRECT [Artwork Gui/it](Artwork_Gui/it.md) + +--- +[documentation index](../README.md) > Artwork Gui Icons/it diff --git a/wiki/translations/it/Artwork_Guidelines.md b/wiki/translations/it/Artwork_Guidelines.md index fb72b38eed..9b74c62f03 100644 --- a/wiki/translations/it/Artwork_Guidelines.md +++ b/wiki/translations/it/Artwork_Guidelines.md @@ -1,6 +1,4 @@ # Artwork Guidelines/it - - ## Introduzione @@ -173,3 +171,6 @@ A grayscale image allows you to more easily identify problems in contrast, as on {{Artwork/it}} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Artwork Guidelines/it diff --git a/wiki/translations/it/Artwork_Image.md b/wiki/translations/it/Artwork_Image.md index a3bcdf813e..9f11dc023e 100644 --- a/wiki/translations/it/Artwork_Image.md +++ b/wiki/translations/it/Artwork_Image.md @@ -1,6 +1,4 @@ # Artwork Image/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Image](Category:Image.md) + +--- +[documentation index](../README.md) > [Image](Category:Image.md) > Artwork Image/it diff --git a/wiki/translations/it/Artwork_Inspection.md b/wiki/translations/it/Artwork_Inspection.md index 2104005176..5569ef7751 100644 --- a/wiki/translations/it/Artwork_Inspection.md +++ b/wiki/translations/it/Artwork_Inspection.md @@ -1,6 +1,4 @@ # Artwork Inspection/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Inspection](Category:Inspection.md) + +--- +[documentation index](../README.md) > [Inspection](Category:Inspection.md) > Artwork Inspection/it diff --git a/wiki/translations/it/Artwork_Material.md b/wiki/translations/it/Artwork_Material.md index f01a0c5da1..0c95a447b3 100644 --- a/wiki/translations/it/Artwork_Material.md +++ b/wiki/translations/it/Artwork_Material.md @@ -1,6 +1,4 @@ # Artwork Material/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -15,3 +13,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork }} + +--- +[documentation index](../README.md) > Artwork Material/it diff --git a/wiki/translations/it/Artwork_Mesh.md b/wiki/translations/it/Artwork_Mesh.md index c8a736a39c..b58fd1d05a 100644 --- a/wiki/translations/it/Artwork_Mesh.md +++ b/wiki/translations/it/Artwork_Mesh.md @@ -1,6 +1,4 @@ # Artwork Mesh/it - - Queste icone si trovano nel percorso origine indicato. Per tutte le icone nell\'albero del codice sorgente, vedere [Oggetti grafici](Artwork/it.md) @@ -21,3 +19,6 @@ Per tutte le icone nell\'albero del codice sorgente, vedere [Oggetti grafici](Ar }} [Category:Mesh](Category:Mesh.md) + +--- +[documentation index](../README.md) > [Mesh](Category:Mesh.md) > Artwork Mesh/it diff --git a/wiki/translations/it/Artwork_MeshPart.md b/wiki/translations/it/Artwork_MeshPart.md index 5610f84bf1..71b781385d 100644 --- a/wiki/translations/it/Artwork_MeshPart.md +++ b/wiki/translations/it/Artwork_MeshPart.md @@ -1,6 +1,4 @@ # Artwork MeshPart/it - - Queste icone si trovano nel percorso origine indicato. Per tutte le icone nell\'albero del codice sorgente, vedere [Oggetti grafici](Artwork/it.md) @@ -31,3 +29,6 @@ Per tutte le icone nell\'albero del codice sorgente, vedere [Oggetti grafici](Ar {{Artwork }} {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > Artwork MeshPart/it diff --git a/wiki/translations/it/Artwork_OpenSCAD.md b/wiki/translations/it/Artwork_OpenSCAD.md index dd0d746d87..b294f56a01 100644 --- a/wiki/translations/it/Artwork_OpenSCAD.md +++ b/wiki/translations/it/Artwork_OpenSCAD.md @@ -1,6 +1,4 @@ # Artwork OpenSCAD/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:OpenSCAD](Category:OpenSCAD.md) + +--- +[documentation index](../README.md) > [OpenSCAD](Category:OpenSCAD.md) > Artwork OpenSCAD/it diff --git a/wiki/translations/it/Artwork_Part.md b/wiki/translations/it/Artwork_Part.md index 19e4278c29..42c95a7915 100644 --- a/wiki/translations/it/Artwork_Part.md +++ b/wiki/translations/it/Artwork_Part.md @@ -1,6 +1,4 @@ # Artwork Part/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -34,4 +32,7 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork -}} +}} + +--- +[documentation index](../README.md) > Artwork Part/it diff --git a/wiki/translations/it/Artwork_PartDesign.md b/wiki/translations/it/Artwork_PartDesign.md index 86a24e217b..679bd9c40c 100644 --- a/wiki/translations/it/Artwork_PartDesign.md +++ b/wiki/translations/it/Artwork_PartDesign.md @@ -1,6 +1,4 @@ # Artwork PartDesign/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -25,3 +23,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:PartDesign](Category:PartDesign.md) + +--- +[documentation index](../README.md) > [PartDesign](Category:PartDesign.md) > Artwork PartDesign/it diff --git a/wiki/translations/it/Artwork_Path.md b/wiki/translations/it/Artwork_Path.md index b06b77496c..4e608d207e 100644 --- a/wiki/translations/it/Artwork_Path.md +++ b/wiki/translations/it/Artwork_Path.md @@ -1,6 +1,4 @@ # Artwork Path/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Path](Category:Path.md) + +--- +[documentation index](../README.md) > [Path](Category:Path.md) > Artwork Path/it diff --git a/wiki/translations/it/Artwork_Plot.md b/wiki/translations/it/Artwork_Plot.md index 81c3240461..cb548acd7d 100644 --- a/wiki/translations/it/Artwork_Plot.md +++ b/wiki/translations/it/Artwork_Plot.md @@ -1,6 +1,4 @@ # Artwork Plot/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -29,3 +27,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Plot](Category:Plot.md) + +--- +[documentation index](../README.md) > [Plot](Category:Plot.md) > Artwork Plot/it diff --git a/wiki/translations/it/Artwork_Points.md b/wiki/translations/it/Artwork_Points.md index 08223380b7..0f1ad326a6 100644 --- a/wiki/translations/it/Artwork_Points.md +++ b/wiki/translations/it/Artwork_Points.md @@ -1,6 +1,4 @@ # Artwork Points/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Points](Category:Points.md) + +--- +[documentation index](../README.md) > [Points](Category:Points.md) > Artwork Points/it diff --git a/wiki/translations/it/Artwork_Raytracing.md b/wiki/translations/it/Artwork_Raytracing.md index ca2d9a9f38..e955c0a5e1 100644 --- a/wiki/translations/it/Artwork_Raytracing.md +++ b/wiki/translations/it/Artwork_Raytracing.md @@ -1,6 +1,4 @@ # Artwork Raytracing/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Raytracing](Category:Raytracing.md) + +--- +[documentation index](../README.md) > [Raytracing](Category:Raytracing.md) > Artwork Raytracing/it diff --git a/wiki/translations/it/Artwork_Reinforcement.md b/wiki/translations/it/Artwork_Reinforcement.md index 6edf396b84..ffc0dc95ec 100644 --- a/wiki/translations/it/Artwork_Reinforcement.md +++ b/wiki/translations/it/Artwork_Reinforcement.md @@ -1,6 +1,4 @@ # Artwork Reinforcement/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,5 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork/it}} +--- +[documentation index](../README.md) > Artwork Reinforcement/it diff --git a/wiki/translations/it/Artwork_ReverseEngineering.md b/wiki/translations/it/Artwork_ReverseEngineering.md index 126416e62f..b6327e241a 100644 --- a/wiki/translations/it/Artwork_ReverseEngineering.md +++ b/wiki/translations/it/Artwork_ReverseEngineering.md @@ -1,6 +1,4 @@ # Artwork ReverseEngineering/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -21,3 +19,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Reverse Engineering](Category:Reverse_Engineering.md) + +--- +[documentation index](../README.md) > [Reverse Engineering](Category:Reverse Engineering.md) > Artwork ReverseEngineering/it diff --git a/wiki/translations/it/Artwork_Robot.md b/wiki/translations/it/Artwork_Robot.md index d003bdf559..948f0dac29 100644 --- a/wiki/translations/it/Artwork_Robot.md +++ b/wiki/translations/it/Artwork_Robot.md @@ -1,6 +1,4 @@ # Artwork Robot/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > Artwork Robot/it diff --git a/wiki/translations/it/Artwork_Ship.md b/wiki/translations/it/Artwork_Ship.md index 8509bddf79..694a594eba 100644 --- a/wiki/translations/it/Artwork_Ship.md +++ b/wiki/translations/it/Artwork_Ship.md @@ -1,6 +1,4 @@ # Artwork Ship/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -29,3 +27,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Ship](Category:Ship.md) + +--- +[documentation index](../README.md) > [Ship](Category:Ship.md) > Artwork Ship/it diff --git a/wiki/translations/it/Artwork_Sketcher.md b/wiki/translations/it/Artwork_Sketcher.md index dcf9f91c52..e9dc3fac9b 100644 --- a/wiki/translations/it/Artwork_Sketcher.md +++ b/wiki/translations/it/Artwork_Sketcher.md @@ -1,6 +1,4 @@ # Artwork Sketcher/it - - Queste icone si trovano nel percorso origine indicato. For all icons in the source tree, see [Artwork](Artwork.md). @@ -59,3 +57,6 @@ In the past, the `.xpm` icons were used as overlays when displaying constraints {{Artwork }} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Artwork Sketcher/it diff --git a/wiki/translations/it/Artwork_Splash_screen.md b/wiki/translations/it/Artwork_Splash_screen.md index deffc8b1aa..ac0a856c39 100644 --- a/wiki/translations/it/Artwork_Splash_screen.md +++ b/wiki/translations/it/Artwork_Splash_screen.md @@ -1,6 +1,4 @@ # Artwork Splash screen/it - - Queste sono le schermate iniziali che sono state utilizzate per ogni versione del programma. ![](images/Splashscreen09.png ) @@ -27,3 +25,6 @@ Queste sono le schermate iniziali che sono state utilizzate per ogni versione de {{Artwork }} + +--- +[documentation index](../README.md) > Artwork Splash screen/it diff --git a/wiki/translations/it/Artwork_Spreadsheet.md b/wiki/translations/it/Artwork_Spreadsheet.md index 881a51362f..a2bfd88c51 100644 --- a/wiki/translations/it/Artwork_Spreadsheet.md +++ b/wiki/translations/it/Artwork_Spreadsheet.md @@ -1,6 +1,4 @@ # Artwork Spreadsheet/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -17,3 +15,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Spreadsheet](Category:Spreadsheet.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Category:Spreadsheet.md) > Artwork Spreadsheet/it diff --git a/wiki/translations/it/Artwork_Start.md b/wiki/translations/it/Artwork_Start.md index b5736e037e..56bd93a946 100644 --- a/wiki/translations/it/Artwork_Start.md +++ b/wiki/translations/it/Artwork_Start.md @@ -1,6 +1,4 @@ # Artwork Start/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -35,3 +33,6 @@ The following image has been re-sized to a display width of 480 pixels: }} [Category:Start](Category:Start.md) + +--- +[documentation index](../README.md) > [Start](Category:Start.md) > Artwork Start/it diff --git a/wiki/translations/it/Artwork_Surface.md b/wiki/translations/it/Artwork_Surface.md index 29f3d834cc..909400e712 100644 --- a/wiki/translations/it/Artwork_Surface.md +++ b/wiki/translations/it/Artwork_Surface.md @@ -1,6 +1,4 @@ # Artwork Surface/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -15,3 +13,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Surface Tools navi }} {{Artwork}} + +--- +[documentation index](../README.md) > Artwork Surface/it diff --git a/wiki/translations/it/Artwork_TechDraw.md b/wiki/translations/it/Artwork_TechDraw.md index 44f3862593..2a42c171cd 100644 --- a/wiki/translations/it/Artwork_TechDraw.md +++ b/wiki/translations/it/Artwork_TechDraw.md @@ -1,6 +1,4 @@ # Artwork TechDraw/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -33,3 +31,6 @@ The [TechDraw Workbench](TechDraw_Workbench.md) comes with a number of default t }} [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [TechDraw](Category:TechDraw.md) > Artwork TechDraw/it diff --git a/wiki/translations/it/Artwork_Test.md b/wiki/translations/it/Artwork_Test.md index 9c324ef440..155ab48ef4 100644 --- a/wiki/translations/it/Artwork_Test.md +++ b/wiki/translations/it/Artwork_Test.md @@ -1,6 +1,4 @@ # Artwork Test/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,5 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork/it}} +--- +[documentation index](../README.md) > Artwork Test/it diff --git a/wiki/translations/it/Artwork_Tux.md b/wiki/translations/it/Artwork_Tux.md index 6300c716f2..fb1b63f496 100644 --- a/wiki/translations/it/Artwork_Tux.md +++ b/wiki/translations/it/Artwork_Tux.md @@ -1,6 +1,4 @@ # Artwork Tux/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -14,3 +12,5 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork/it}} +--- +[documentation index](../README.md) > Artwork Tux/it diff --git a/wiki/translations/it/Artwork_Web.md b/wiki/translations/it/Artwork_Web.md index f6b24a86c7..1087d65365 100644 --- a/wiki/translations/it/Artwork_Web.md +++ b/wiki/translations/it/Artwork_Web.md @@ -1,6 +1,4 @@ # Artwork Web/it - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -21,3 +19,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Web](Category:Web.md) + +--- +[documentation index](../README.md) > [Web](Category:Web.md) > Artwork Web/it diff --git a/wiki/translations/it/Artwork_project.md b/wiki/translations/it/Artwork_project.md index 7e1770db06..da98128e0d 100644 --- a/wiki/translations/it/Artwork_project.md +++ b/wiki/translations/it/Artwork_project.md @@ -1,7 +1,4 @@ # Artwork project/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -101,3 +98,6 @@ The current color palette is captured in google drive: [Roadmap](Category:Roadmap.md) > Artwork project/it diff --git a/wiki/translations/it/Assembly.md b/wiki/translations/it/Assembly.md index e3d9705129..604c3e6cb8 100644 --- a/wiki/translations/it/Assembly.md +++ b/wiki/translations/it/Assembly.md @@ -1,6 +1,4 @@ # Assembly/it - - ## Introduzione @@ -59,3 +57,6 @@ Gli ambienti di assemblaggio continuano ad essere sviluppati, e ci si aspetta ch }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Assembly/it diff --git a/wiki/translations/it/Assembly2_Workbench.md b/wiki/translations/it/Assembly2_Workbench.md index ade4aec3ea..6a0ed30e74 100644 --- a/wiki/translations/it/Assembly2_Workbench.md +++ b/wiki/translations/it/Assembly2_Workbench.md @@ -1,7 +1,4 @@ # Assembly2 Workbench/it - - - **The Assembly2 workbench is obsolete. Its author no longer maintains it, so it may not work with FreeCAD versions 0.17 and above. The information in this page is not maintained; it is just kept for historical purposes.** @@ -146,3 +143,6 @@ To update to the latest version, delete the assembly2 folder and redownload the [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Assembly2 Workbench/it diff --git a/wiki/translations/it/Assembly3_Workbench.md b/wiki/translations/it/Assembly3_Workbench.md index 95f4a234f7..14ffc23e9d 100644 --- a/wiki/translations/it/Assembly3_Workbench.md +++ b/wiki/translations/it/Assembly3_Workbench.md @@ -1,7 +1,4 @@ -# Assembly3 Workbench/it - - -Assembly3 workbench icon +# Assembly3 workbench icon Assembly3 Workbench/it {{TOCright}} @@ -728,3 +725,6 @@ Un modo per risolvere questo problema è quello di eliminare tutti i vincoli e g [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Assembly3 Workbench/it diff --git a/wiki/translations/it/Assembly4_Workbench.md b/wiki/translations/it/Assembly4_Workbench.md index 2b9a4553b2..b5c0bfe1c0 100644 --- a/wiki/translations/it/Assembly4_Workbench.md +++ b/wiki/translations/it/Assembly4_Workbench.md @@ -1,7 +1,4 @@ -# Assembly4 Workbench/it - - -External workbench icon +# External workbench icon Assembly4 Workbench/it ## Introduzione @@ -47,3 +44,6 @@ Il montaggio4 è stato ispirato da Assembly4 Workbench/it diff --git a/wiki/translations/it/Assembly_Workbench.md b/wiki/translations/it/Assembly_Workbench.md index 85a10a2ea9..955fb98a12 100644 --- a/wiki/translations/it/Assembly_Workbench.md +++ b/wiki/translations/it/Assembly_Workbench.md @@ -1,2 +1,5 @@ # Assembly Workbench/it 1. REDIRECT [Assembly project/it](Assembly_project/it.md) + +--- +[documentation index](../README.md) > Assembly Workbench/it diff --git a/wiki/translations/it/Assembly_project.md b/wiki/translations/it/Assembly_project.md index 0af9b32264..03a374580f 100644 --- a/wiki/translations/it/Assembly_project.md +++ b/wiki/translations/it/Assembly_project.md @@ -1,7 +1,4 @@ # Assembly project/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -172,3 +169,6 @@ Interfaccia per consentire a un (esterno) (multi) software di simulazione fisica - \... [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Assembly project/it diff --git a/wiki/translations/it/Asymptote.md b/wiki/translations/it/Asymptote.md index 34faaec3a5..527a301a70 100644 --- a/wiki/translations/it/Asymptote.md +++ b/wiki/translations/it/Asymptote.md @@ -1,7 +1,4 @@ # Asymptote/it - - - {{TOCright}} ## Descrizione @@ -46,3 +43,6 @@ The following videos are in Spanish: }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Asymptote/it diff --git a/wiki/translations/it/BIM_Box.md b/wiki/translations/it/BIM_Box.md index da474c81cf..7cba318602 100644 --- a/wiki/translations/it/BIM_Box.md +++ b/wiki/translations/it/BIM_Box.md @@ -8,6 +8,8 @@ SeeAlso:[Box di Parte](Part_Box/it.md) --- +# BIM Box/it + ## Descrizione @@ -22,3 +24,6 @@ Lo strumento Box di BIM consente di creare un [Cuboide](Part_Box/it.md) standard 3. Fare clic su un secondo punto per definire un primo bordo della scatola, iniziando dal primo punto 4. Fare clic su un terzo punto per definire una prima faccia della scatola, ortogonale al primo bordo 5. Fare clic su un quarto punto per definire la distanza di estrusione della prima faccia, formando la scatola difinitiva + +--- +[documentation index](../README.md) > BIM Box/it diff --git a/wiki/translations/it/BIM_Classification.md b/wiki/translations/it/BIM_Classification.md index 2ee1b91f7c..1a60141ab0 100644 --- a/wiki/translations/it/BIM_Classification.md +++ b/wiki/translations/it/BIM_Classification.md @@ -7,6 +7,8 @@ MenuLocation:Gestione → Classificazione --- +# BIM Classification/it + ## Descrizione @@ -18,3 +20,6 @@ Il gestore delle classificazioni consente di attribuire una classe standard a un - Installare uno o più file XML o IFC standard di classificazione come spiegato sopra - Se si desidera aggiungere o modificare una classe per un oggetto, selezionare tale oggetto e premere il pulsante Classificazione BIM - Se si desidera aggiungere o modificare una classe per un materiale, non selezionare nulla e premere il pulsante Classificazione BIM. Si potrà sfogliare i materiali direttamente dalla finestra del manager di classificazione + +--- +[documentation index](../README.md) > BIM Classification/it diff --git a/wiki/translations/it/BIM_Clone.md b/wiki/translations/it/BIM_Clone.md index 81bef7cb5f..e7fd965cb0 100644 --- a/wiki/translations/it/BIM_Clone.md +++ b/wiki/translations/it/BIM_Clone.md @@ -8,6 +8,11 @@ SeeAlso:[Clone di Draft](Draft_Clone/it.md) --- +# BIM Clone/it + ## Descrizione Lo strumento Clone di BIM è una scorciatoia allo strumento standard [Clone](Draft_Clone/it.md) di Draft, ma lancia un comando [Sposta](Draft_Move/it.md) di Draft subito dopo la clonazione, consentendo così di clonare e posizionare in una sola volta l\'oggetto clonato. + +--- +[documentation index](../README.md) > BIM Clone/it diff --git a/wiki/translations/it/BIM_Copy.md b/wiki/translations/it/BIM_Copy.md index 2f2e1a2245..44047c2edb 100644 --- a/wiki/translations/it/BIM_Copy.md +++ b/wiki/translations/it/BIM_Copy.md @@ -8,6 +8,11 @@ SeeAlso:[Sposta di Draft](Draft_Move/it.md) --- +# BIM Copy/it + ## Descrizione Lo strumento Copia di BIM è una scorciatoia per lo strumento standard [Sposta di Draft](Draft_Move/it.md), ma partendo dalla sua opzione **Copia** attivata, e consente quindi di creare una copia di un oggetto e di posizionarla in una determinata posizione, in un colpo solo. + +--- +[documentation index](../README.md) > BIM Copy/it diff --git a/wiki/translations/it/BIM_IfcElements.md b/wiki/translations/it/BIM_IfcElements.md index 153667502f..9762adf4f4 100644 --- a/wiki/translations/it/BIM_IfcElements.md +++ b/wiki/translations/it/BIM_IfcElements.md @@ -8,6 +8,8 @@ SeeAlso:[Gestione delle proprietà IFC](BIM_IfcProperties/it.md),[Gestione delle quantità IFC](BIM_IfcQuantities/it.md) --- +# BIM IfcElements/it + ## Descrizione @@ -20,3 +22,6 @@ Con esso si può: - Rinominare gli oggetti facendo doppio clic sul loro nome - Cambiare il loro tipo di IFC facendo clic su un singolo tipo o, se ce nè più di uno selezionato, utilizzando il menu a discesa \"cambia tipo in:\" - Cambiare il loro materiale facendo clic su un singolo materiale o, se ce nè più di uno selezionato, utilizzando il menu a discesa \"Cambia materiale in:\" + +--- +[documentation index](../README.md) > BIM IfcElements/it diff --git a/wiki/translations/it/BIM_IfcProperties.md b/wiki/translations/it/BIM_IfcProperties.md index 0a8be98329..93df0ea434 100644 --- a/wiki/translations/it/BIM_IfcProperties.md +++ b/wiki/translations/it/BIM_IfcProperties.md @@ -8,6 +8,8 @@ SeeAlso:[Gestione elementi IFC](BIM_IfcElements/it.md),[Gestione delle quantità IFC](BIM_IfcQuantities/it.md) --- +# BIM IfcProperties/it + ## Descrizione @@ -31,3 +33,6 @@ Inside the CSV file, each line represents a different property set, beginning wi Pset_FreeCAD;Name;IfcLabel;Version;IfcReal would define a property set named \"FreeCAD\" (the Pset\_ prefix is not mandatory but is a common practice) that contains two properties: one called \"Name\" which is an IfcLabel (a piece of text), and another called \"Version\" which is an IfcReal (a numeric value with decimals) + +--- +[documentation index](../README.md) > BIM IfcProperties/it diff --git a/wiki/translations/it/BIM_IfcQuantities.md b/wiki/translations/it/BIM_IfcQuantities.md index 22cc31c7fe..28c217299f 100644 --- a/wiki/translations/it/BIM_IfcQuantities.md +++ b/wiki/translations/it/BIM_IfcQuantities.md @@ -7,6 +7,8 @@ SeeAlso:[[BIM IfcElements]],[[BIM IfcProperties]] --- +# BIM IfcQuantities/it + ## Description @@ -20,3 +22,6 @@ The idea behind explicit quantities is to make them available to applications th By default, when exporting an IFC file from FreeCAD, no explicit quantities are exported. With the IFC quantities manager, you are able to mark which quantities should be exported, and check their values. Warning signs will be displayed next to zero values, notifying you of possible problems you might want to fix before exporting. You can also use the quantities manager to change or fix the actual **Height**, **Width** and **Length** values of objects. But this will affect the object geometry in FreeCAD. + +--- +[documentation index](../README.md) > BIM IfcQuantities/it diff --git a/wiki/translations/it/BIM_Layers.md b/wiki/translations/it/BIM_Layers.md index 6a4203abcf..f1d048fa14 100644 --- a/wiki/translations/it/BIM_Layers.md +++ b/wiki/translations/it/BIM_Layers.md @@ -7,6 +7,8 @@ MenuLocation:Gestione → Strati --- +# BIM Layers/it +
@@ -19,3 +21,6 @@ The layers manager allows you to manage [layers](Draft_Layer.md). Layers are a s Layers are imported and exported from/to [IFC](Arch_IFC.md) and [DXF/DWG](Draft_DXF.md). The layers manager allow you to manage your layers, add or remove layers, or change their visual properties. To add objects to a layer, simply drag them into the layer in the tree view. To remove them, drag them from the layer and drop them into the document root. + +--- +[documentation index](../README.md) > BIM Layers/it diff --git a/wiki/translations/it/BIM_Levels.md b/wiki/translations/it/BIM_Levels.md index e0af6b06df..eeda66d806 100644 --- a/wiki/translations/it/BIM_Levels.md +++ b/wiki/translations/it/BIM_Levels.md @@ -1,2 +1,5 @@ # BIM Levels/it 1. REDIRECT [BIM\_Views/it](BIM_Views/it.md) + +--- +[documentation index](../README.md) > BIM Levels/it diff --git a/wiki/translations/it/BIM_Library.md b/wiki/translations/it/BIM_Library.md index 1a7feaec46..1cdfaee12b 100644 --- a/wiki/translations/it/BIM_Library.md +++ b/wiki/translations/it/BIM_Library.md @@ -8,6 +8,8 @@ SeeAlso:[Arredo](Arch_Equipment/it.md) --- +# BIM Library/it + ## Descrizione Lo strumento Libreria BIM consente di posizionare nel modello corrente un oggetto della [Libreria di parti di FreeCAD](Parts_Library/it.md), che deve essere installata tramite [Addon manager](Addon_Manager/it.md) per essere disponibile con questo strumento. @@ -36,3 +38,6 @@ Lo strumento Libreria BIM consente di posizionare nel modello corrente un oggett [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM Library/it diff --git a/wiki/translations/it/BIM_Preflight.md b/wiki/translations/it/BIM_Preflight.md index 2294c2cfa0..5c9c9f5718 100644 --- a/wiki/translations/it/BIM_Preflight.md +++ b/wiki/translations/it/BIM_Preflight.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Preflight check --- +# BIM Preflight/it + ## Description @@ -85,3 +87,6 @@ def myCustomTest():    # text if the test failed. The string or text will be displayed    # to the user when they press the "Failed" button.    return result + +--- +[documentation index](../README.md) > BIM Preflight/it diff --git a/wiki/translations/it/BIM_Project.md b/wiki/translations/it/BIM_Project.md index 5fa3cecddc..e20c3083c0 100644 --- a/wiki/translations/it/BIM_Project.md +++ b/wiki/translations/it/BIM_Project.md @@ -7,6 +7,8 @@ MenuLocation:Gestione → Gestione progetto... --- +# BIM Project/it + ## Descrizione @@ -29,3 +31,6 @@ Lo strumento Progetto supporta due tipi di modelli: Dopo aver riempito le diverse opzioni, il contenuto della procedura guidata di installazione del progetto BIM può essere **salvato** come modello. Questi modelli possono essere \"ripristinati\" e adattati in un secondo momento. I modelli di progetto sono memorizzati come file di testo nella cartella utente di FreeCAD. In alternativa, si può salvare il contenuto del documento corrente come modello. Ciò salva il documento attualmente aperto come un file standard **.FCStd**, ma include anche le impostazioni BIM aggiuntive come il piano di lavoro corrente o le unità correnti. Utilizzando in qualsiasi momento l\'opzione **ripristina**, il contenuto di quel file modello verrà unito al documento attivo e verranno applicate tutte le impostazioni in esso contenute. + +--- +[documentation index](../README.md) > BIM Project/it diff --git a/wiki/translations/it/BIM_Setup.md b/wiki/translations/it/BIM_Setup.md index e86b135f04..9a5c3501ef 100644 --- a/wiki/translations/it/BIM_Setup.md +++ b/wiki/translations/it/BIM_Setup.md @@ -7,6 +7,8 @@ MenuLocation:Gestione → Setup --- +# BIM Setup/it + ## Descrizione @@ -14,3 +16,6 @@ Il sistema di preferenze di FreeCAD, che si trova nel menu **Modifica -\> Preferenze**, è molto complesso. La finestra di dialogo di configurazione **BIM** ne offre una versione semplificata, raccogliendo sotto un\'unica schermata alcune delle impostazioni delle preferenze più comunemente utilizzate per il lavoro BIM. La modifica di qualsiasi opzione di preferenza ha lo stesso effetto della modifica dell\'impostazione corrispondente in Modifica -\> Preferenze. Passando il mouse sopra ogni impostazione, viene mostrato un suggerimento che spiega a cosa serve e la posizione delle impostazioni corrispondenti nel sistema delle preferenze di FreeCAD. + +--- +[documentation index](../README.md) > BIM Setup/it diff --git a/wiki/translations/it/BIM_Views.md b/wiki/translations/it/BIM_Views.md index 8b88f8cce0..a75d34ca75 100644 --- a/wiki/translations/it/BIM_Views.md +++ b/wiki/translations/it/BIM_Views.md @@ -7,6 +7,8 @@ MenuLocation:Gestione → Viste --- +# BIM Views/it + ## Descrizione @@ -43,3 +45,6 @@ The BIM views manager will show all the levels (building parts) and working plan }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > BIM Views/it diff --git a/wiki/translations/it/BIM_Windows.md b/wiki/translations/it/BIM_Windows.md index f88dd54c97..a42342b9d1 100644 --- a/wiki/translations/it/BIM_Windows.md +++ b/wiki/translations/it/BIM_Windows.md @@ -7,6 +7,8 @@ MenuLocation:Gestione → Finestre --- +# BIM Windows/it + ## Descrizione La finestra di dialogo Gestione finestre BIM consente di sfogliare e modificare tutte le [finestre e porte](Arch_Window/it.md) del progetto insieme. Questo è spesso più conveniente che modificarle una per una, e permette di accertarsi che abbiano tutti i parametri e che questi siano impostati correttamenti, come tag, dimensioni, descrizione o materiale. @@ -21,3 +23,6 @@ La finestra di dialogo Gestione finestre BIM consente di sfogliare e modificare }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > BIM Windows/it diff --git a/wiki/translations/it/BIM_Workbench.md b/wiki/translations/it/BIM_Workbench.md index b5dd3c363a..c4476f1e30 100644 --- a/wiki/translations/it/BIM_Workbench.md +++ b/wiki/translations/it/BIM_Workbench.md @@ -1,8 +1,4 @@ -# BIM Workbench/it - - - -Icona dell\'ambiente aggiuntivo BIM +# Icona dell\'ambiente aggiuntivo BIM BIM Workbench/it {{TOCright}} @@ -274,3 +270,6 @@ Sono in fase di sviluppo ulteriori nuovi ambienti. [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > BIM Workbench/it diff --git a/wiki/translations/it/BIM_application_compatibility_table.md b/wiki/translations/it/BIM_application_compatibility_table.md index 2f1ca806a0..ed83e769be 100644 --- a/wiki/translations/it/BIM_application_compatibility_table.md +++ b/wiki/translations/it/BIM_application_compatibility_table.md @@ -1,6 +1,5 @@ # BIM application compatibility table/it - - Questa pagina offre una panoramica generale di come i diversi strumenti e concetti trovati in altre principali applicazioni BIM siano paragonabili a FreeCAD, in particolare quelli di [BIM](BIM_Workbench/it.md). +Questa pagina offre una panoramica generale di come i diversi strumenti e concetti trovati in altre principali applicazioni BIM siano paragonabili a FreeCAD, in particolare quelli di [BIM](BIM_Workbench/it.md). **DAFARE:** Aggiungi altre applicazioni BIM: Allplan, Tekla, Vectorworks, BricsCAD, che altro? @@ -16,3 +15,6 @@ **Elementi standard BIM** Walls, structures (beams, columns and slabs), windows (doors and windows), roofs, stairs, frames (railings), equipment (furniture, appliances, etc) Walls, beams, columns, floors, ceilings, windows, doors, roofs, stairs, railings, components (furniture, appliances, etc) Walls, beams, columns, slabs, windows, doors, roofs, stairs, railings, curtain walls, objects (furniture, appliances, etc) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM application compatibility table/it diff --git a/wiki/translations/it/BIM_ingame_tutorial.md b/wiki/translations/it/BIM_ingame_tutorial.md index ab2efa9e9b..d923b4e26c 100644 --- a/wiki/translations/it/BIM_ingame_tutorial.md +++ b/wiki/translations/it/BIM_ingame_tutorial.md @@ -1,8 +1,4 @@ -# BIM ingame tutorial/it - - - - +# BIM ingame tutorial/it {{BIMTutorialAction|descr=This is the in-game tutorial of the [BIM Workbench](BIM_Workbench.md). It is not meant to be read here on the wiki, but rather to be started from inside FreeCAD, in the BIM workbench, under menu '''Help -> BIM tutorial'''. It includes a series of steps to be completed by the user. Each step is terminated by an instance of the [{{BIMTutorialAction|descr|goal1|test1|goal2|test2}}](Template:BIMTutorialAction.md) template, which informs of the condition that need to be met. Images should be 300px wide. No SVG images should be used on this page, as they are not supported by the QTextBrowser widget}} @@ -509,3 +505,6 @@ FreeCAD is free software, developed by an enthusiast community of users, some of {{BIMTutorialAction|descr=No action to perform for this step}} [Category:BIM](Category:BIM.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM ingame tutorial/it diff --git a/wiki/translations/it/BOLTSFC_Workbench.md b/wiki/translations/it/BOLTSFC_Workbench.md index 0af9142de1..f69a6f3a9a 100644 --- a/wiki/translations/it/BOLTSFC_Workbench.md +++ b/wiki/translations/it/BOLTSFC_Workbench.md @@ -1,5 +1,5 @@ # BOLTSFC Workbench/it - } The FreeCAD BOLTS External Workbench Icon +} The FreeCAD BOLTS External Workbench Icon ## Introduzione @@ -72,3 +72,6 @@ is required. [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > BOLTSFC Workbench/it diff --git a/wiki/translations/it/Base_API.md b/wiki/translations/it/Base_API.md index be8b0db624..690af56752 100644 --- a/wiki/translations/it/Base_API.md +++ b/wiki/translations/it/Base_API.md @@ -1,5 +1,5 @@ # Base API/it - **(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** +**(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** Il modulo Base è contenuto all\'interno del modulo FreeCAD e contiene i costruttori per i diversi tipi di oggetti intensamente utilizzati in FreeCAD. @@ -19,3 +19,6 @@ Il modulo Base è contenuto all\'interno del modulo FreeCAD e contiene i costrut [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Base API/it diff --git a/wiki/translations/it/Basic_Attachment_Tutorial.md b/wiki/translations/it/Basic_Attachment_Tutorial.md index d9cfc6fa62..bd1c121d14 100644 --- a/wiki/translations/it/Basic_Attachment_Tutorial.md +++ b/wiki/translations/it/Basic_Attachment_Tutorial.md @@ -1,7 +1,4 @@ # Basic Attachment Tutorial/it - - - {{TutorialInfo |Topic=Attachment |Level=Beginner/Intermediate @@ -301,3 +298,6 @@ Happy Attaching! }} {{PartDesign_Tools_navi}} {{Sketcher_Tools_navi}} [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > Basic Attachment Tutorial/it diff --git a/wiki/translations/it/Basic_Part_Design_Tutorial.md b/wiki/translations/it/Basic_Part_Design_Tutorial.md index 2b1f0e4598..daf0fa21bc 100644 --- a/wiki/translations/it/Basic_Part_Design_Tutorial.md +++ b/wiki/translations/it/Basic_Part_Design_Tutorial.md @@ -1,7 +1,4 @@ # Basic Part Design Tutorial/it - - -
@@ -163,4 +160,7 @@ Questo tutorial e il vostro modello sono terminati. {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Part Design Tutorial/it diff --git a/wiki/translations/it/Basic_Part_Design_Tutorial_017.md b/wiki/translations/it/Basic_Part_Design_Tutorial_017.md index 50148966b9..bf13fbefd7 100644 --- a/wiki/translations/it/Basic_Part_Design_Tutorial_017.md +++ b/wiki/translations/it/Basic_Part_Design_Tutorial_017.md @@ -1,2 +1,5 @@ # Basic Part Design Tutorial 017/it 1. REDIRECT [Basic\_Part\_Design\_Tutorial/it](Basic_Part_Design_Tutorial/it.md) + +--- +[documentation index](../README.md) > Basic Part Design Tutorial 017/it diff --git a/wiki/translations/it/Basic_Sketcher_Tutorial.md b/wiki/translations/it/Basic_Sketcher_Tutorial.md index 74c00ebcf1..b48c15976b 100644 --- a/wiki/translations/it/Basic_Sketcher_Tutorial.md +++ b/wiki/translations/it/Basic_Sketcher_Tutorial.md @@ -1,7 +1,4 @@ # Basic Sketcher Tutorial/it - - - {{TutorialInfo/it |Topic= Sketcher |Level= Base @@ -314,3 +311,6 @@ Constraining a sketch can be done in many different ways. In general, it is reco }} {{Sketcher Tools navi}} [Category:Sketcher/it](Category:Sketcher/it.md) + +--- +[documentation index](../README.md) > Basic Sketcher Tutorial/it diff --git a/wiki/translations/it/Basic_TechDraw_Tutorial.md b/wiki/translations/it/Basic_TechDraw_Tutorial.md index 1ea8298a35..7eb258165d 100644 --- a/wiki/translations/it/Basic_TechDraw_Tutorial.md +++ b/wiki/translations/it/Basic_TechDraw_Tutorial.md @@ -1,5 +1,5 @@ # Basic TechDraw Tutorial/it - {{TutorialInfo/it|Topic=Modellazione|Level=Base|Author=[WandererFan](User:WandererFan.md)|Time=Meno di un'ora|FCVersion=0.17 o superiore|Files=[https://github.com/FreeCAD/Examples/blob/master/Basic_Part_Design_Tutorial_Example_017_Files/Basic_Part_Design_Tutorial_017.fcstd Basic Part Design for v0.17 Sample]
[https://github.com/FreeCAD/Examples/blob/master/Basic_TechDraw_Tutorial_Example_Files/Basic_TechDraw_Tutorial.fcstd Basic TechDraw Tutorial Sample]}} +{{TutorialInfo/it|Topic=Modellazione|Level=Base|Author=[WandererFan](User:WandererFan.md)|Time=Meno di un'ora|FCVersion=0.17 o superiore|Files=[https://github.com/FreeCAD/Examples/blob/master/Basic_Part_Design_Tutorial_Example_017_Files/Basic_Part_Design_Tutorial_017.fcstd Basic Part Design for v0.17 Sample]
[https://github.com/FreeCAD/Examples/blob/master/Basic_TechDraw_Tutorial_Example_Files/Basic_TechDraw_Tutorial.fcstd Basic TechDraw Tutorial Sample]}}
@@ -179,4 +179,7 @@ TechDraw offre molte altre funzionalità da esplorare: viste di sezione, viste d {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Basic TechDraw Tutorial/it diff --git a/wiki/translations/it/Basic_modeling_tutorial.md b/wiki/translations/it/Basic_modeling_tutorial.md index 6cd5d64388..e63beb89d1 100644 --- a/wiki/translations/it/Basic_modeling_tutorial.md +++ b/wiki/translations/it/Basic_modeling_tutorial.md @@ -1,5 +1,5 @@ # Basic modeling tutorial/it - {{TutorialInfo/it +{{TutorialInfo/it |Topic= Introduzione alla modellazione |Level= Base |Time= 15 minuti @@ -139,4 +139,7 @@ Le istruzioni di cui sopra funzionano comunque, non importa quale etichetta comp {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Basic modeling tutorial/it diff --git a/wiki/translations/it/Bitmap.md b/wiki/translations/it/Bitmap.md index 9be683c50b..4f144f00b8 100644 --- a/wiki/translations/it/Bitmap.md +++ b/wiki/translations/it/Bitmap.md @@ -1,6 +1,4 @@ # Bitmap/it - - ## Descrizione [Bitmaps](https://en.wikipedia.org/wiki/Bitmap) o [raster graphics](http://en.wikipedia.org/wiki/Raster_graphics) sono immagini 2D che sono raccolte di pixel dipinte di diverse sfumature di colore. Insieme, migliaia o milioni di questi pixel sono in grado di rappresentare un\'immagine o un\'immagine a colori per l\'occhio umano. @@ -17,3 +15,6 @@ FreeCAD può importare le immagini bitmap usando il\'ambiente [Immagine](Image_W [Category:User Documentation](Category:User_Documentation.md) [Category:TechDraw](Category:TechDraw.md) [Category:Image](Category:Image.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Bitmap/it diff --git a/wiki/translations/it/Body.md b/wiki/translations/it/Body.md index 61deed9bf3..5a726a719b 100644 --- a/wiki/translations/it/Body.md +++ b/wiki/translations/it/Body.md @@ -1,6 +1,4 @@ # Body/it - - ## Introduzione In FreeCAD la parola \"Body\" (Corpo) viene normalmente utilizzata per fare riferimento a un oggetto [PartDesign Body](PartDesign_Body/it.md) (classe `PartDesign::Body`) definito dall\'ambiente [PartDesign](PartDesign_Workbench/it.md). Si tratta di un oggetto contenitore che può contenere degli [Schizzi 2D](Sketch/it.md) e delle [funzioni geometriche 3D](PartDesign_Feature/it.md) per creare una forma solida. @@ -29,3 +27,6 @@ Non è necessario un Corpo quando si utilizza [Part](Part_Workbench/it.md), poic }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Body/it diff --git a/wiki/translations/it/Branding.md b/wiki/translations/it/Branding.md index b5c59b324d..6ed48f0dcf 100644 --- a/wiki/translations/it/Branding.md +++ b/wiki/translations/it/Branding.md @@ -1,7 +1,4 @@ # Branding/it - - -
@@ -154,3 +151,6 @@ Tutti i tag elencati sono opzionali. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Branding/it diff --git a/wiki/translations/it/Bug_Triage.md b/wiki/translations/it/Bug_Triage.md index 4c278164f7..a483cada5a 100644 --- a/wiki/translations/it/Bug_Triage.md +++ b/wiki/translations/it/Bug_Triage.md @@ -1,7 +1,4 @@ # Bug Triage/it - - -
@@ -167,3 +164,6 @@ An important methodology to track tickets by a certain subject/theme/category. I [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Bug Triage/it diff --git a/wiki/translations/it/Builtin_modules.md b/wiki/translations/it/Builtin_modules.md index 219f21dde8..7562f7de8e 100644 --- a/wiki/translations/it/Builtin_modules.md +++ b/wiki/translations/it/Builtin_modules.md @@ -1,5 +1,5 @@ # Builtin modules/it - **(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente seguendo [Documentazione del codice sorgente](Source_documentation/it.md).** +**(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente seguendo [Documentazione del codice sorgente](Source_documentation/it.md).** Questa pagina presenta le informazioni più approfondite sui moduli incorporati in FreeCAD, e quali sono le funzioni e le proprietà disponibili per voi. Questa pagina non è un elenco completo di tutti i contenuti di questi moduli. @@ -27,3 +27,6 @@ A causa della rapida evoluzione di FreeCAD, le informazioni presentate qui potre }} [Category:API](Category:API.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Builtin modules/it diff --git a/wiki/translations/it/CAM_project.md b/wiki/translations/it/CAM_project.md index 2e058ae669..29527074f3 100644 --- a/wiki/translations/it/CAM_project.md +++ b/wiki/translations/it/CAM_project.md @@ -1,7 +1,10 @@ # CAM project/it - L\'ambiente e il progetto CAM sono sconsigliati. Vedere invece l\'ambiente [Path](Path_Workbench/it.md) +L\'ambiente e il progetto CAM sono sconsigliati. Vedere invece l\'ambiente [Path](Path_Workbench/it.md) [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > CAM project/it diff --git a/wiki/translations/it/CadQuery_Workbench.md b/wiki/translations/it/CadQuery_Workbench.md index c15fb374e4..2c9f6837fb 100644 --- a/wiki/translations/it/CadQuery_Workbench.md +++ b/wiki/translations/it/CadQuery_Workbench.md @@ -1,5 +1,4 @@ -# CadQuery Workbench/it - CadQuery workbench icon +# CadQuery workbench icon CadQuery Workbench/it **(January 2021) @@ -58,3 +57,6 @@ The latest version of CadQuery is no longer using FreeCAD and is not compatible [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > CadQuery Workbench/it diff --git a/wiki/translations/it/Category:3rd_Party.md b/wiki/translations/it/Category:3rd_Party.md index c978c131af..8a7b16edcc 100644 --- a/wiki/translations/it/Category:3rd_Party.md +++ b/wiki/translations/it/Category:3rd_Party.md @@ -4,3 +4,6 @@ External aka 3rd-Party applications/libraries that FreeCAD depends on or are of ### Contents: [3Dconnexion input devices/it](3Dconnexion_input_devices/it.md) , [Developing FreeCAD with GitKraken/it](Developing_FreeCAD_with_GitKraken/it.md) , [Developing FreeCAD with KDevelop/it](Developing_FreeCAD_with_KDevelop/it.md) , [Doxygen/it](Doxygen/it.md) , [IfcOpenShell/it](IfcOpenShell/it.md) , [Import/Export IFC - compiling IfcOpenShell/it](Import/Export_IFC_-_compiling_IfcOpenShell/it.md) , [NumPy/it](NumPy/it.md) , [OpenCamLib/it](OpenCamLib/it.md) , [Std DependencyGraph/it](Std_DependencyGraph/it.md) , [SweetHome3D/it](SweetHome3D/it.md) + +--- +[documentation index](../README.md) > Category:3rd Party/it diff --git a/wiki/translations/it/Category:API.md b/wiki/translations/it/Category:API.md index 2173a85435..a4078432b9 100644 --- a/wiki/translations/it/Category:API.md +++ b/wiki/translations/it/Category:API.md @@ -10,3 +10,6 @@ Questa categoria raccoglie articoli che riportano gli oggetti e i metodi disponi [Arch API/it](Arch_API/it.md) , [Base API/it](Base_API/it.md) , [Builtin modules/it](Builtin_modules/it.md) , [Console API/it](Console_API/it.md) , [Draft API/it](Draft_API/it.md) , [FeaturePython Custom Properties/it](FeaturePython_Custom_Properties/it.md) , [FreeCAD API/it](FreeCAD_API/it.md) , [FreeCADGui API/it](FreeCADGui_API/it.md) , [Matrix API/it](Matrix_API/it.md) , [Mesh API/it](Mesh_API/it.md) , [Object API/it](Object_API/it.md) , [Part API/it](Part_API/it.md) , [Placement API/it](Placement_API/it.md) , [Reinforcement API/it](Reinforcement_API/it.md) , [Selection API/it](Selection_API/it.md) , [TechDraw API/it](TechDraw_API/it.md) , [TechDrawGui API/it](TechDrawGui_API/it.md) , [TopoShape API/it](TopoShape_API/it.md) , [Vector API/it](Vector_API/it.md) , [ViewObject API/it](ViewObject_API/it.md) , [Category:Categories/it](Category:Categories/it.md) [Category:Robot API/it](Category:Robot_API/it.md) + +--- +[documentation index](../README.md) > Category:API/it diff --git a/wiki/translations/it/Category:API_Documentation.md b/wiki/translations/it/Category:API_Documentation.md index 68e1f7559a..4965fb7004 100644 --- a/wiki/translations/it/Category:API_Documentation.md +++ b/wiki/translations/it/Category:API_Documentation.md @@ -6,3 +6,6 @@ This category gathers all articles documenting the python API of FreeCAD and its [Python/it](Python/it.md) [Category:Documentation/it](Category:Documentation/it.md) + +--- +[documentation index](../README.md) > Category:API Documentation/it diff --git a/wiki/translations/it/Category:Addons.md b/wiki/translations/it/Category:Addons.md index 2f98118a25..0f552a2126 100644 --- a/wiki/translations/it/Category:Addons.md +++ b/wiki/translations/it/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/it - - Questa pagina elenca i componenti aggiuntivi esterni che hanno una pagina in questo wiki. I componenti aggiuntivi sono moduli o ambienti di lavoro forniti dalla comunità e non fanno parte di FreeCAD standard. ### Contents: @@ -8,3 +6,6 @@ Questa pagina elenca i componenti aggiuntivi esterni che hanno una pagina in que [A2plus Workbench/it](A2plus_Workbench/it.md) , [Addon/it](Addon/it.md) , [Animation Workbench/it](Animation_Workbench/it.md) , [Assembly2 Workbench/it](Assembly2_Workbench/it.md) , [Assembly3 Workbench/it](Assembly3_Workbench/it.md) , [Assembly4 Workbench/it](Assembly4_Workbench/it.md) , [BIM Workbench/it](BIM_Workbench/it.md) , [BOLTSFC Workbench/it](BOLTSFC_Workbench/it.md) , [CadQuery Workbench/it](CadQuery_Workbench/it.md) , [Cfd Workbench/it](Cfd_Workbench/it.md) , [Civil Engineering Workbench/it](Civil_Engineering_Workbench/it.md) , [CurvedShapes Workbench/it](CurvedShapes_Workbench/it.md) , [Curves Workbench/it](Curves_Workbench/it.md) , [Defeaturing Workbench/it](Defeaturing_Workbench/it.md) , [Defeaturing/it](Defeaturing/it.md) , [Drawing Dimensioning Addon/it](Drawing_Dimensioning_Addon/it.md) , [DynamicData Workbench/it](DynamicData_Workbench/it.md) , [ExplodedAssembly Workbench/it](ExplodedAssembly_Workbench/it.md) , [External workbenches/it](External_workbenches/it.md) , [Fasteners Workbench/it](Fasteners_Workbench/it.md) , [FCGear BevelGear/it](FCGear_BevelGear/it.md) , [FCGear CrownGear/it](FCGear_CrownGear/it.md) , [FCGear CycloideGear/it](FCGear_CycloideGear/it.md) , [FCGear InvoluteGear/it](FCGear_InvoluteGear/it.md) , [FCGear InvoluteRack/it](FCGear_InvoluteRack/it.md) , [FCGear LanternGear/it](FCGear_LanternGear/it.md) , [FCGear TimingGear/it](FCGear_TimingGear/it.md) , [FCGear Workbench/it](FCGear_Workbench/it.md) , [FCGear WormGear/it](FCGear_WormGear/it.md) , [Flamingo Workbench/it](Flamingo_Workbench/it.md) , [How to install additional workbenches/it](How_to_install_additional_workbenches/it.md) , [KicadStepUp Workbench/it](KicadStepUp_Workbench/it.md) , [Lattice2 Workbench/it](Lattice2_Workbench/it.md) , [Macro Kerkythea/it](Macro_Kerkythea/it.md) , [Macro WorkFeatures/it](Macro_WorkFeatures/it.md) , [Manipulator Workbench/it](Manipulator_Workbench/it.md) , [MOOC Workbench/it](MOOC_Workbench/it.md) , [OSE 3D Printer Workbench/it](OSE_3D_Printer_Workbench/it.md) , [OSE Piping Workbench/it](OSE_Piping_Workbench/it.md) , [Parts Library Workbench/it](Parts_Library_Workbench/it.md) , [PCB Workbench/it](PCB_Workbench/it.md) , [Plot Axes/it](Plot_Axes/it.md) , [Plot Basic tutorial/it](Plot_Basic_tutorial/it.md) , [Plot Grid/it](Plot_Grid/it.md) , [Plot Labels/it](Plot_Labels/it.md) , [Plot Legend/it](Plot_Legend/it.md) , [Plot Module/it](Plot_Module/it.md) , [Plot MultiAxes tutorial/it](Plot_MultiAxes_tutorial/it.md) , [Plot Positions/it](Plot_Positions/it.md) , [Plot Save/it](Plot_Save/it.md) , [Plot Series/it](Plot_Series/it.md) , [Pyramids and polyhedrons Workbench/it](Pyramids_and_polyhedrons_Workbench/it.md) , [Pyrate Workbench/it](Pyrate_Workbench/it.md) , [Reinforcement Workbench/it](Reinforcement_Workbench/it.md) , [Render project/it](Render_project/it.md) , [SheetMetal AddJunction/it](SheetMetal_AddJunction/it.md) , [SheetMetal AddRelief/it](SheetMetal_AddRelief/it.md) , [SheetMetal AddWall/it](SheetMetal_AddWall/it.md) , [SheetMetal Extrude/it](SheetMetal_Extrude/it.md) , [SheetMetal Unfold/it](SheetMetal_Unfold/it.md) , [SheetMetal Workbench/it](SheetMetal_Workbench/it.md) , [Ship Workbench/it](Ship_Workbench/it.md) , [Silk Workbench/it](Silk_Workbench/it.md) , [Symbols Library Workbench/it](Symbols_Library_Workbench/it.md) , [ThreadProfile Workbench/it](ThreadProfile_Workbench/it.md) , [Timber Workbench/it](Timber_Workbench/it.md) , [WebTools Workbench/it](WebTools_Workbench/it.md) , [Workfeature Workbench/it](Workfeature_Workbench/it.md) , , , [Category:Categories](Category:Categories.md) [Category:External Workbenches/it](Category:External_Workbenches/it.md) [Category:FCGear/it](Category:FCGear/it.md) [Category:Macros/it](Category:Macros/it.md) + +--- +[documentation index](../README.md) > Category:Addons/it diff --git a/wiki/translations/it/Category:Administration.md b/wiki/translations/it/Category:Administration.md index 20cdbc53e8..20b0b5968e 100644 --- a/wiki/translations/it/Category:Administration.md +++ b/wiki/translations/it/Category:Administration.md @@ -8,3 +8,6 @@ Questa categoria contiene articoli e categorie su argomenti amministrativi del w [Template:APIFunction/it](Template:APIFunction/it.md) , [Template:Arch Tools navi/it](Template:Arch_Tools_navi/it.md) , [Template:Artwork/it](Template:Artwork/it.md) , [Bug Triage/it](Bug_Triage/it.md) , [Changelog/it](Changelog/it.md) , [Crowdin Administration/it](Crowdin_Administration/it.md) , [Crowdin Scripts/it](Crowdin_Scripts/it.md) , [Template:Document objects navi/it](Template:Document_objects_navi/it.md) , [Template:Draft Tools navi/it](Template:Draft_Tools_navi/it.md) , [Template:Drawing Tools navi/it](Template:Drawing_Tools_navi/it.md) , [Template:EM Tools navi/it](Template:EM_Tools_navi/it.md) , [Template:FEM Tools navi/it](Template:FEM_Tools_navi/it.md) , [Template:Interface navi/it](Template:Interface_navi/it.md) , [Template:It](Template:It.md) , [Template:MenuCommand/it](Template:MenuCommand/it.md) , [Template:Mesh Tools navi/it](Template:Mesh_Tools_navi/it.md) , [Template:OpenSCAD Tools navi/it](Template:OpenSCAD_Tools_navi/it.md) , [Organization chart/it](Organization_chart/it.md) , [Template:Part Tools navi/it](Template:Part_Tools_navi/it.md) , [Template:PartDesign Tools navi/it](Template:PartDesign_Tools_navi/it.md) , [Template:Path Tools navi/it](Template:Path_Tools_navi/it.md) , [Template:Plot Tools navi/it](Template:Plot_Tools_navi/it.md) , [Template:Powerdocnavi/it](Template:Powerdocnavi/it.md) , [Template:Property Tab View/it](Template:Property_Tab_View/it.md) , [Template:PropertyData/it](Template:PropertyData/it.md) , [Template:PropertyView/it](Template:PropertyView/it.md) , [Template:ProprietaDati](Template:ProprietaDati.md) , [Template:ProprietaVista](Template:ProprietaVista.md) , [Python 3/it](Python_3/it.md) , [Template:Raytracing Tools navi/it](Template:Raytracing_Tools_navi/it.md) , [Template:Raytracing Tools/it](Template:Raytracing_Tools/it.md) , [Template:Robot Tools navi/it](Template:Robot_Tools_navi/it.md) , [Template:Ship Tools navi/it](Template:Ship_Tools_navi/it.md) , [Template:Sketcher Tools navi/it](Template:Sketcher_Tools_navi/it.md) , [Template:Sketcher Tools/it](Template:Sketcher_Tools/it.md) , [Template:Spreadsheet Tools navi/it](Template:Spreadsheet_Tools_navi/it.md) , [Template:Start Tools navi/it](Template:Start_Tools_navi/it.md) , [Template:Std Base navi/it](Template:Std_Base_navi/it.md) , [Template:TasksTag/it](Template:TasksTag/it.md) , [Template:TechDraw Tools navi/it](Template:TechDraw_Tools_navi/it.md) , [Tracker/it](Tracker/it.md) , [Template:Tutorials navi/it](Template:Tutorials_navi/it.md) , [Template:UnfinishedDocu/it](Template:UnfinishedDocu/it.md) , [WikiRobots/it](WikiRobots/it.md) , , [Category:Categories/it](Category:Categories/it.md) [Category:UnfinishedDocu/it](Category:UnfinishedDocu/it.md) [Category:Wiki/it](Category:Wiki/it.md) + +--- +[documentation index](../README.md) > Category:Administration/it diff --git a/wiki/translations/it/Category:Arch.md b/wiki/translations/it/Category:Arch.md index 3f59f0c1eb..80ae78af8b 100644 --- a/wiki/translations/it/Category:Arch.md +++ b/wiki/translations/it/Category:Arch.md @@ -6,3 +6,6 @@ This category list pages related to the [Arch Workbench](Arch_Workbench/it.md), [Arch 3DS/it](Arch_3DS/it.md) , [Arch 3Views/it](Arch_3Views/it.md) , [Arch Add/it](Arch_Add/it.md) , [Arch API/it](Arch_API/it.md) , [Arch Axis/it](Arch_Axis/it.md) , [Arch AxisSystem/it](Arch_AxisSystem/it.md) , [Arch Building/it](Arch_Building/it.md) , [Arch BuildingPart/it](Arch_BuildingPart/it.md) , [Arch Check/it](Arch_Check/it.md) , [Arch CloneComponent/it](Arch_CloneComponent/it.md) , [Arch CloseHoles/it](Arch_CloseHoles/it.md) , [Arch CompAxis/it](Arch_CompAxis/it.md) , [Arch Component/it](Arch_Component/it.md) , [Arch CompPanel/it](Arch_CompPanel/it.md) , [Arch CompPipe/it](Arch_CompPipe/it.md) , [Arch CompRebarStraight/it](Arch_CompRebarStraight/it.md) , [Arch CompSetMaterial/it](Arch_CompSetMaterial/it.md) , [Arch CurtainWall/it](Arch_CurtainWall/it.md) , [Arch CutLine/it](Arch_CutLine/it.md) , [Arch CutPlane/it](Arch_CutPlane/it.md) , [Arch DAE/it](Arch_DAE/it.md) , [Arch Door/it](Arch_Door/it.md) , [Arch Equipment/it](Arch_Equipment/it.md) , [Arch Fence/it](Arch_Fence/it.md) , [Arch Floor/it](Arch_Floor/it.md) , [Arch Frame/it](Arch_Frame/it.md) , [Arch Grid/it](Arch_Grid/it.md) , [Arch IFC/it](Arch_IFC/it.md) , [Arch IfcExplorer/it](Arch_IfcExplorer/it.md) , [Arch IfcSpreadsheet/it](Arch_IfcSpreadsheet/it.md) , [Arch JSON/it](Arch_JSON/it.md) , [Arch MergeWalls/it](Arch_MergeWalls/it.md) , [Arch MeshToShape/it](Arch_MeshToShape/it.md) , [Arch MultiMaterial/it](Arch_MultiMaterial/it.md) , [Arch Nest/it](Arch_Nest/it.md) , [Arch OBJ/it](Arch_OBJ/it.md) , [Arch Panel Cut/it](Arch_Panel_Cut/it.md) , [Arch Panel Sheet/it](Arch_Panel_Sheet/it.md) , [Arch panel tutorial/it](Arch_panel_tutorial/it.md) , [Arch Panel/it](Arch_Panel/it.md) , [Arch Pipe/it](Arch_Pipe/it.md) , [Arch PipeConnector/it](Arch_PipeConnector/it.md) , [Arch Preferences/it](Arch_Preferences/it.md) , [Arch Profile/it](Arch_Profile/it.md) , [Arch Project/it](Arch_Project/it.md) , [Arch Rebar BeamReinforcement/it](Arch_Rebar_BeamReinforcement/it.md) , [Arch Rebar BentShape/it](Arch_Rebar_BentShape/it.md) , [Arch Rebar Circular ColumnReinforcement/it](Arch_Rebar_Circular_ColumnReinforcement/it.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/it](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/it.md) , [Arch Rebar ColumnReinforcement/it](Arch_Rebar_ColumnReinforcement/it.md) , [Arch Rebar Dimensioning/it](Arch_Rebar_Dimensioning/it.md) , [Arch Rebar Drawing Dimensioning/it](Arch_Rebar_Drawing_Dimensioning/it.md) , [Arch Rebar Drawing/it](Arch_Rebar_Drawing/it.md) , [Arch Rebar Helical/it](Arch_Rebar_Helical/it.md) , [Arch Rebar LShape/it](Arch_Rebar_LShape/it.md) , [Arch Rebar Stirrup/it](Arch_Rebar_Stirrup/it.md) , [Arch Rebar Straight/it](Arch_Rebar_Straight/it.md) , [Arch Rebar UShape/it](Arch_Rebar_UShape/it.md) , [Arch Rebar/it](Arch_Rebar/it.md) , [Arch Reference/it](Arch_Reference/it.md) , [Arch Remove/it](Arch_Remove/it.md) , [Arch RemoveShape/it](Arch_RemoveShape/it.md) , [Arch Roof/it](Arch_Roof/it.md) , [Arch Schedule/it](Arch_Schedule/it.md) , [Arch SectionPlane/it](Arch_SectionPlane/it.md) , [Arch SelectNonSolidMeshes/it](Arch_SelectNonSolidMeshes/it.md) , [Arch SetMaterial/it](Arch_SetMaterial/it.md) , [Arch SHP/it](Arch_SHP/it.md) , [Arch Site/it](Arch_Site/it.md) , [Arch Space/it](Arch_Space/it.md) , [Arch SplitMesh/it](Arch_SplitMesh/it.md) , [Arch Stairs/it](Arch_Stairs/it.md) , [Arch Structure/it](Arch_Structure/it.md) , [Arch Survey/it](Arch_Survey/it.md) , [Arch ToggleIfcBrepFlag/it](Arch_ToggleIfcBrepFlag/it.md) , [Arch ToggleSubs/it](Arch_ToggleSubs/it.md) , [Template:Arch Tools navi/it](Template:Arch_Tools_navi/it.md) , [Arch Truss/it](Arch_Truss/it.md) , [Arch tutorial/it](Arch_tutorial/it.md) , [Arch Wall/it](Arch_Wall/it.md) , [Arch Window/it](Arch_Window/it.md) , [Arch Workbench/it](Arch_Workbench/it.md) , [Artwork Arch/it](Artwork_Arch/it.md) , [BIM Library/it](BIM_Library/it.md) , [Custom Spacing/it](Custom_Spacing/it.md) , [IfcOpenShell/it](IfcOpenShell/it.md) , [IfcPlusPlus/it](IfcPlusPlus/it.md) , [Import/Export IFC - compiling IfcOpenShell/it](Import/Export_IFC_-_compiling_IfcOpenShell/it.md) , [Manual:BIM modeling/it](Manual:BIM_modeling/it.md) , [ManualArch/it](ManualArch/it.md) , [Material editor/it](Material_editor/it.md) , [Material/it](Material/it.md) , [Reinforcement Addon/it](Reinforcement_Addon/it.md) , [Reinforcement API/it](Reinforcement_API/it.md) , [SweetHome3D/it](SweetHome3D/it.md) , [Tutorial custom placing of windows and doors/it](Tutorial_custom_placing_of_windows_and_doors/it.md) , [Tutorial for open windows/it](Tutorial_for_open_windows/it.md) , [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User Documentation/it](Category:User_Documentation/it.md) [Category:BIM/it](Category:BIM/it.md) [Category:Reinforcement/it](Category:Reinforcement/it.md) + +--- +[documentation index](../README.md) > Category:Arch/it diff --git a/wiki/translations/it/Category:Artwork.md b/wiki/translations/it/Category:Artwork.md index 2b35bc8f12..e1e7c04442 100644 --- a/wiki/translations/it/Category:Artwork.md +++ b/wiki/translations/it/Category:Artwork.md @@ -2,3 +2,6 @@ ### Contents: [Artwork Arch/it](Artwork_Arch/it.md) , [Artwork Assembly/it](Artwork_Assembly/it.md) , [Artwork Complete/it](Artwork_Complete/it.md) , [Artwork Draft/it](Artwork_Draft/it.md) , [Artwork Drawing/it](Artwork_Drawing/it.md) , [Artwork Erroneous/it](Artwork_Erroneous/it.md) , [Artwork Fem/it](Artwork_Fem/it.md) , [Artwork Gui/it](Artwork_Gui/it.md) , [Artwork Guidelines/it](Artwork_Guidelines/it.md) , [Artwork Image/it](Artwork_Image/it.md) , [Artwork Inspection/it](Artwork_Inspection/it.md) , [Artwork Material/it](Artwork_Material/it.md) , [Artwork Mesh/it](Artwork_Mesh/it.md) , [Artwork MeshPart/it](Artwork_MeshPart/it.md) , [Artwork OpenSCAD/it](Artwork_OpenSCAD/it.md) , [Artwork Part/it](Artwork_Part/it.md) , [Artwork PartDesign/it](Artwork_PartDesign/it.md) , [Artwork Path/it](Artwork_Path/it.md) , [Artwork Plot/it](Artwork_Plot/it.md) , [Artwork Points/it](Artwork_Points/it.md) , [Artwork Raytracing/it](Artwork_Raytracing/it.md) , [Artwork Reinforcement/it](Artwork_Reinforcement/it.md) , [Artwork ReverseEngineering/it](Artwork_ReverseEngineering/it.md) , [Artwork Robot/it](Artwork_Robot/it.md) , [Artwork Ship/it](Artwork_Ship/it.md) , [Artwork Sketcher/it](Artwork_Sketcher/it.md) , [Artwork Splash screen/it](Artwork_Splash_screen/it.md) , [Artwork Spreadsheet/it](Artwork_Spreadsheet/it.md) , [Artwork Start/it](Artwork_Start/it.md) , [Artwork Surface/it](Artwork_Surface/it.md) , [Artwork TechDraw/it](Artwork_TechDraw/it.md) , [Artwork Test/it](Artwork_Test/it.md) , [Artwork Tux/it](Artwork_Tux/it.md) , [Artwork Web/it](Artwork_Web/it.md) , [Artwork/it](Artwork/it.md) , [Template:Artwork/it](Template:Artwork/it.md) + +--- +[documentation index](../README.md) > Category:Artwork/it diff --git a/wiki/translations/it/Category:BIM.md b/wiki/translations/it/Category:BIM.md index a78381bcf5..72641ac71c 100644 --- a/wiki/translations/it/Category:BIM.md +++ b/wiki/translations/it/Category:BIM.md @@ -6,3 +6,6 @@ This category is for pages related to building information management (BIM). [Arch IfcExplorer/it](Arch_IfcExplorer/it.md) , [BIM application compatibility table/it](BIM_application_compatibility_table/it.md) , [BIM ingame tutorial/it](BIM_ingame_tutorial/it.md) , [BIM Library/it](BIM_Library/it.md) , [BIM Workbench/it](BIM_Workbench/it.md) , [IfcOpenShell/it](IfcOpenShell/it.md) , [Import/Export IFC - compiling IfcOpenShell/it](Import/Export_IFC_-_compiling_IfcOpenShell/it.md) , [Manual:BIM modeling/it](Manual:BIM_modeling/it.md) , [Material/it](Material/it.md) , [Category:User Documentation/it](Category:User_Documentation/it.md) [Category:Arch/it](Category:Arch/it.md) + +--- +[documentation index](../README.md) > Category:BIM/it diff --git a/wiki/translations/it/Category:Base.md b/wiki/translations/it/Category:Base.md index 6eb76cb3b0..3c0ed26ea4 100644 --- a/wiki/translations/it/Category:Base.md +++ b/wiki/translations/it/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Base/it diff --git a/wiki/translations/it/Category:Categories.md b/wiki/translations/it/Category:Categories.md index 632e4e6dcd..93095af121 100644 --- a/wiki/translations/it/Category:Categories.md +++ b/wiki/translations/it/Category:Categories.md @@ -19,3 +19,6 @@ Per visualizzare l\'elenco di , , , , , , , , , , , , , , , , , , , , [Category:Categories/it](Category:Categories/it.md) [Category:Addons/it](Category:Addons/it.md) [Category:Administration/it](Category:Administration/it.md) [Category:API/it](Category:API/it.md) [Category:Categories/it](Category:Categories/it.md) [Category:Command Reference/it](Category:Command_Reference/it.md) [Category:Developer/it](Category:Developer/it.md) [Category:Documentation/it](Category:Documentation/it.md) [Category:Help/it](Category:Help/it.md) [Category:Hubs/it](Category:Hubs/it.md) [Category:Image/it](Category:Image/it.md) [Category:Macros/it](Category:Macros/it.md) [Category:News/it](Category:News/it.md) [Category:Poweruser Documentation/it](Category:Poweruser_Documentation/it.md) [Category:Python Code/it](Category:Python_Code/it.md) [Category:Repository/it](Category:Repository/it.md) [Category:Roadmap/it](Category:Roadmap/it.md) [Category:Template/it](Category:Template/it.md) [Category:Tutorials/it](Category:Tutorials/it.md) [Category:UnfinishedDocu/it](Category:UnfinishedDocu/it.md) [Category:User Documentation/it](Category:User_Documentation/it.md) [Category:Wiki/it](Category:Wiki/it.md) + +--- +[documentation index](../README.md) > Category:Categories/it diff --git a/wiki/translations/it/Category:Command_Reference.md b/wiki/translations/it/Category:Command_Reference.md index bc334613c7..bd4df7e708 100644 --- a/wiki/translations/it/Category:Command_Reference.md +++ b/wiki/translations/it/Category:Command_Reference.md @@ -8,3 +8,6 @@ Questa categoria recensisce le pagine di aiuto di tutti i comandi di FreeCAD. [Arch 3Views/it](Arch_3Views/it.md) , [Arch Add/it](Arch_Add/it.md) , [Arch Axis/it](Arch_Axis/it.md) , [Arch AxisSystem/it](Arch_AxisSystem/it.md) , [Arch Building/it](Arch_Building/it.md) , [Arch BuildingPart/it](Arch_BuildingPart/it.md) , [Arch Check/it](Arch_Check/it.md) , [Arch CloneComponent/it](Arch_CloneComponent/it.md) , [Arch CloseHoles/it](Arch_CloseHoles/it.md) , [Arch CompAxis/it](Arch_CompAxis/it.md) , [Arch Component/it](Arch_Component/it.md) , [Arch CompPanel/it](Arch_CompPanel/it.md) , [Arch CompPipe/it](Arch_CompPipe/it.md) , [Arch CompRebarStraight/it](Arch_CompRebarStraight/it.md) , [Arch CompSetMaterial/it](Arch_CompSetMaterial/it.md) , [Arch CurtainWall/it](Arch_CurtainWall/it.md) , [Arch CutLine/it](Arch_CutLine/it.md) , [Arch CutPlane/it](Arch_CutPlane/it.md) , [Arch Door/it](Arch_Door/it.md) , [Arch Equipment/it](Arch_Equipment/it.md) , [Arch Fence/it](Arch_Fence/it.md) , [Arch Floor/it](Arch_Floor/it.md) , [Arch Frame/it](Arch_Frame/it.md) , [Arch Grid/it](Arch_Grid/it.md) , [Arch IfcExplorer/it](Arch_IfcExplorer/it.md) , [Arch IfcSpreadsheet/it](Arch_IfcSpreadsheet/it.md) , [Arch MergeWalls/it](Arch_MergeWalls/it.md) , [Arch MeshToShape/it](Arch_MeshToShape/it.md) , [Arch MultiMaterial/it](Arch_MultiMaterial/it.md) , [Arch Nest/it](Arch_Nest/it.md) , [Arch Panel Cut/it](Arch_Panel_Cut/it.md) , [Arch Panel Sheet/it](Arch_Panel_Sheet/it.md) , [Arch Panel/it](Arch_Panel/it.md) , [Arch Pipe/it](Arch_Pipe/it.md) , [Arch PipeConnector/it](Arch_PipeConnector/it.md) , [Arch Profile/it](Arch_Profile/it.md) , [Arch Project/it](Arch_Project/it.md) , [Arch Rebar BeamReinforcement/it](Arch_Rebar_BeamReinforcement/it.md) , [Arch Rebar BentShape/it](Arch_Rebar_BentShape/it.md) , [Arch Rebar BOM/it](Arch_Rebar_BOM/it.md) , [Arch Rebar Circular ColumnReinforcement/it](Arch_Rebar_Circular_ColumnReinforcement/it.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/it](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/it.md) , [Arch Rebar ColumnReinforcement/it](Arch_Rebar_ColumnReinforcement/it.md) , [Arch Rebar Dimensioning/it](Arch_Rebar_Dimensioning/it.md) , [Arch Rebar Drawing Dimensioning/it](Arch_Rebar_Drawing_Dimensioning/it.md) , [Arch Rebar Drawing/it](Arch_Rebar_Drawing/it.md) , [Arch Rebar Helical/it](Arch_Rebar_Helical/it.md) , [Arch Rebar LShape/it](Arch_Rebar_LShape/it.md) , [Arch Rebar Stirrup/it](Arch_Rebar_Stirrup/it.md) , [Arch Rebar Straight/it](Arch_Rebar_Straight/it.md) , [Arch Rebar UShape/it](Arch_Rebar_UShape/it.md) , [Arch Rebar/it](Arch_Rebar/it.md) , [Arch Reference/it](Arch_Reference/it.md) , [Arch Remove/it](Arch_Remove/it.md) , [Arch RemoveShape/it](Arch_RemoveShape/it.md) , [Arch Roof/it](Arch_Roof/it.md) , [Arch Schedule/it](Arch_Schedule/it.md) , [Arch SectionPlane/it](Arch_SectionPlane/it.md) , [Arch SelectNonSolidMeshes/it](Arch_SelectNonSolidMeshes/it.md) , [Arch SetMaterial/it](Arch_SetMaterial/it.md) , [Arch Site/it](Arch_Site/it.md) , [Arch Space/it](Arch_Space/it.md) , [Arch SplitMesh/it](Arch_SplitMesh/it.md) , [Arch Stairs/it](Arch_Stairs/it.md) , [Arch Structure/it](Arch_Structure/it.md) , [Arch Survey/it](Arch_Survey/it.md) , [Arch ToggleIfcBrepFlag/it](Arch_ToggleIfcBrepFlag/it.md) , [Arch ToggleSubs/it](Arch_ToggleSubs/it.md) , [Arch Truss/it](Arch_Truss/it.md) , [Arch Wall/it](Arch_Wall/it.md) , [Arch Window/it](Arch_Window/it.md) , [BIM Box/it](BIM_Box/it.md) , [BIM Classification/it](BIM_Classification/it.md) , [BIM Clone/it](BIM_Clone/it.md) , [BIM Copy/it](BIM_Copy/it.md) , [BIM IfcElements/it](BIM_IfcElements/it.md) , [BIM IfcProperties/it](BIM_IfcProperties/it.md) , [BIM IfcQuantities/it](BIM_IfcQuantities/it.md) , [BIM Layers/it](BIM_Layers/it.md) , [BIM Library/it](BIM_Library/it.md) , [BIM Preflight/it](BIM_Preflight/it.md) , [BIM Project/it](BIM_Project/it.md) , [BIM Setup/it](BIM_Setup/it.md) , [BIM Views/it](BIM_Views/it.md) , [BIM Windows/it](BIM_Windows/it.md) , [CurvedShapes CurvedArray/it](CurvedShapes_CurvedArray/it.md) , [Curves ExtendCurve/it](Curves_ExtendCurve/it.md) , [Curves GordonSurface/it](Curves_GordonSurface/it.md) , [Curves IsoCurve/it](Curves_IsoCurve/it.md) , [Curves JoinCurve/it](Curves_JoinCurve/it.md) , [Curves MultiLoft/it](Curves_MultiLoft/it.md) , [Curves ParametricComb/it](Curves_ParametricComb/it.md) , [Curves ParametricSolid/it](Curves_ParametricSolid/it.md) , [Curves PasteSVG/it](Curves_PasteSVG/it.md) , [Curves Pipeshell/it](Curves_Pipeshell/it.md) , [Curves SketchOnSurface/it](Curves_SketchOnSurface/it.md) , [Curves SplitCurve/it](Curves_SplitCurve/it.md) , [Curves ToConsole/it](Curves_ToConsole/it.md) , [Curves ZebraTool/it](Curves_ZebraTool/it.md) , [Draft AddConstruction/it](Draft_AddConstruction/it.md) , [Draft AddToGroup/it](Draft_AddToGroup/it.md) , [Draft AnnotationStyleEditor/it](Draft_AnnotationStyleEditor/it.md) , [Draft ApplyStyle/it](Draft_ApplyStyle/it.md) , [Draft Arc 3Points/it](Draft_Arc_3Points/it.md) , [Draft Arc/it](Draft_Arc/it.md) , [Draft Array/it](Draft_Array/it.md) , [Draft AutoGroup/it](Draft_AutoGroup/it.md) , [Draft BezCurve/it](Draft_BezCurve/it.md) , [Draft BSpline/it](Draft_BSpline/it.md) , [Draft Circle/it](Draft_Circle/it.md) , [Draft CircularArray/it](Draft_CircularArray/it.md) , [Draft Clone/it](Draft_Clone/it.md) , [Draft CubicBezCurve/it](Draft_CubicBezCurve/it.md) , [Draft Dimension/it](Draft_Dimension/it.md) , [Draft Downgrade/it](Draft_Downgrade/it.md) , [Draft Draft2Sketch/it](Draft_Draft2Sketch/it.md) , [Draft Drawing/it](Draft_Drawing/it.md) , [Draft Edit/it](Draft_Edit/it.md) , [Draft Ellipse/it](Draft_Ellipse/it.md) , [Draft Facebinder/it](Draft_Facebinder/it.md) , [Draft Fillet/it](Draft_Fillet/it.md) , [Draft FlipDimension/it](Draft_FlipDimension/it.md) , [Draft Heal/it](Draft_Heal/it.md) , [Draft Join/it](Draft_Join/it.md) , [Draft Label/it](Draft_Label/it.md) , [Draft Layer/it](Draft_Layer/it.md) , [Draft Line/it](Draft_Line/it.md) , [Draft Mirror/it](Draft_Mirror/it.md) , [Draft Move/it](Draft_Move/it.md) , [Draft Offset/it](Draft_Offset/it.md) , [Draft OrthoArray/it](Draft_OrthoArray/it.md) , [Draft PathArray/it](Draft_PathArray/it.md) , [Draft PathLinkArray/it](Draft_PathLinkArray/it.md) , [Draft Point/it](Draft_Point/it.md) , [Draft PointArray/it](Draft_PointArray/it.md) , [Draft PointLinkArray/it](Draft_PointLinkArray/it.md) , [Draft PolarArray/it](Draft_PolarArray/it.md) , [Draft Polygon/it](Draft_Polygon/it.md) , [Draft Rectangle/it](Draft_Rectangle/it.md) , [Draft Rotate/it](Draft_Rotate/it.md) , [Draft Scale/it](Draft_Scale/it.md) , [Draft SelectGroup/it](Draft_SelectGroup/it.md) , [Draft SelectPlane/it](Draft_SelectPlane/it.md) , [Draft Shape2DView/it](Draft_Shape2DView/it.md) , [Draft ShapeString/it](Draft_ShapeString/it.md) , [Draft ShowSnapBar/it](Draft_ShowSnapBar/it.md) , [Draft Slope/it](Draft_Slope/it.md) , [Draft Snap Angle/it](Draft_Snap_Angle/it.md) , [Draft Snap Center/it](Draft_Snap_Center/it.md) , [Draft Snap Dimensions/it](Draft_Snap_Dimensions/it.md) , [Draft Snap Endpoint/it](Draft_Snap_Endpoint/it.md) , [Draft Snap Extension/it](Draft_Snap_Extension/it.md) , [Draft Snap Grid/it](Draft_Snap_Grid/it.md) , [Draft Snap Intersection/it](Draft_Snap_Intersection/it.md) , [Draft Snap Lock/it](Draft_Snap_Lock/it.md) , [Draft Snap Midpoint/it](Draft_Snap_Midpoint/it.md) , [Draft Snap Near/it](Draft_Snap_Near/it.md) , [Draft Snap Ortho/it](Draft_Snap_Ortho/it.md) , [Draft Snap Parallel/it](Draft_Snap_Parallel/it.md) , [Draft Snap Perpendicular/it](Draft_Snap_Perpendicular/it.md) , [Draft Snap Special/it](Draft_Snap_Special/it.md) , [Draft Snap WorkingPlane/it](Draft_Snap_WorkingPlane/it.md) , [Draft Split/it](Draft_Split/it.md) , [Draft Stretch/it](Draft_Stretch/it.md) , [Draft SubelementHighlight/it](Draft_SubelementHighlight/it.md) , [Draft Text/it](Draft_Text/it.md) , [Draft ToggleConstructionMode/it](Draft_ToggleConstructionMode/it.md) , [Draft ToggleContinueMode/it](Draft_ToggleContinueMode/it.md) , [Draft ToggleDisplayMode/it](Draft_ToggleDisplayMode/it.md) , [Draft ToggleGrid/it](Draft_ToggleGrid/it.md) , [Draft Trimex/it](Draft_Trimex/it.md) , [Draft Upgrade/it](Draft_Upgrade/it.md) , [Draft Wire/it](Draft_Wire/it.md) , [Draft WireToBSpline/it](Draft_WireToBSpline/it.md) , [Draft WorkingPlaneProxy/it](Draft_WorkingPlaneProxy/it.md) , [Drawing Annotation/it](Drawing_Annotation/it.md) , [Drawing Clip/it](Drawing_Clip/it.md) , [Drawing Landscape A3/it](Drawing_Landscape_A3/it.md) , [Drawing Open SVG/it](Drawing_Open_SVG/it.md) , [Drawing Openbrowser/it](Drawing_Openbrowser/it.md) , [Drawing Orthoviews/it](Drawing_Orthoviews/it.md) , [Drawing ProjectShape/it](Drawing_ProjectShape/it.md) , [Drawing Save/it](Drawing_Save/it.md) , [Drawing SpreadsheetView/it](Drawing_SpreadsheetView/it.md) , [Drawing Symbol/it](Drawing_Symbol/it.md) , [Drawing View/it](Drawing_View/it.md) , [EM FHEquiv/it](EM_FHEquiv/it.md) , [EM FHInputFile/it](EM_FHInputFile/it.md) , [EM FHNode/it](EM_FHNode/it.md) , [EM FHPath/it](EM_FHPath/it.md) , [EM FHPlane/it](EM_FHPlane/it.md) , [EM FHPlaneAddRemoveNodeHole/it](EM_FHPlaneAddRemoveNodeHole/it.md) , [EM FHPlaneHole/it](EM_FHPlaneHole/it.md) , [EM FHPort/it](EM_FHPort/it.md) , [EM FHSegment/it](EM_FHSegment/it.md) , [EM FHSolver/it](EM_FHSolver/it.md) , [Fasteners BOM/it](Fasteners_BOM/it.md) , [FCGear BevelGear/it](FCGear_BevelGear/it.md) , [FCGear CrownGear/it](FCGear_CrownGear/it.md) , [FCGear CycloideGear/it](FCGear_CycloideGear/it.md) , [FCGear InvoluteGear/it](FCGear_InvoluteGear/it.md) , [FCGear InvoluteRack/it](FCGear_InvoluteRack/it.md) , [FCGear LanternGear/it](FCGear_LanternGear/it.md) , [FCGear TimingGear/it](FCGear_TimingGear/it.md) , [FCGear WormGear/it](FCGear_WormGear/it.md) , [FEM Analysis/it](FEM_Analysis/it.md) , [FEM ClippingPlaneAdd/it](FEM_ClippingPlaneAdd/it.md) , [FEM ClippingPlaneRemoveAll/it](FEM_ClippingPlaneRemoveAll/it.md) , [FEM ConstantVacuumPermittivity/it](FEM_ConstantVacuumPermittivity/it.md) , [FEM ConstraintBearing/it](FEM_ConstraintBearing/it.md) , [FEM ConstraintBodyHeatSource/it](FEM_ConstraintBodyHeatSource/it.md) , [FEM ConstraintContact/it](FEM_ConstraintContact/it.md) , [FEM ConstraintDisplacement/it](FEM_ConstraintDisplacement/it.md) , [FEM ConstraintElectrostaticPotential/it](FEM_ConstraintElectrostaticPotential/it.md) , [FEM ConstraintFixed/it](FEM_ConstraintFixed/it.md) , [FEM ConstraintFlowVelocity/it](FEM_ConstraintFlowVelocity/it.md) , [FEM ConstraintFluidBoundary/it](FEM_ConstraintFluidBoundary/it.md) , [FEM ConstraintForce/it](FEM_ConstraintForce/it.md) , [FEM ConstraintGear/it](FEM_ConstraintGear/it.md) , [FEM ConstraintHeatflux/it](FEM_ConstraintHeatflux/it.md) , [FEM ConstraintInitialFlowVelocity/it](FEM_ConstraintInitialFlowVelocity/it.md) , [FEM ConstraintInitialTemperature/it](FEM_ConstraintInitialTemperature/it.md) , [FEM ConstraintPlaneRotation/it](FEM_ConstraintPlaneRotation/it.md) , [FEM ConstraintPressure/it](FEM_ConstraintPressure/it.md) , [FEM ConstraintPulley/it](FEM_ConstraintPulley/it.md) , [FEM ConstraintSectionPrint/it](FEM_ConstraintSectionPrint/it.md) , [FEM ConstraintSelfWeight/it](FEM_ConstraintSelfWeight/it.md) , [FEM ConstraintTemperature/it](FEM_ConstraintTemperature/it.md) , [FEM ConstraintTie/it](FEM_ConstraintTie/it.md) , [FEM ConstraintTransform/it](FEM_ConstraintTransform/it.md) , [FEM CreateNodesSet/it](FEM_CreateNodesSet/it.md) , [FEM ElementFluid1D/it](FEM_ElementFluid1D/it.md) , [FEM ElementGeometry1D/it](FEM_ElementGeometry1D/it.md) , [FEM ElementGeometry2D/it](FEM_ElementGeometry2D/it.md) , [FEM ElementRotation1D/it](FEM_ElementRotation1D/it.md) , [FEM EquationElasticity/it](FEM_EquationElasticity/it.md) , [FEM EquationElectrostatic/it](FEM_EquationElectrostatic/it.md) , [FEM EquationFlow/it](FEM_EquationFlow/it.md) , [FEM EquationFlux/it](FEM_EquationFlux/it.md) , [FEM EquationHeat/it](FEM_EquationHeat/it.md) , [FEM Examples/it](FEM_Examples/it.md) , [FEM FemMesh2Mesh/it](FEM_FemMesh2Mesh/it.md) , [FEM MaterialFluid/it](FEM_MaterialFluid/it.md) , [FEM MaterialMechanicalNonlinear/it](FEM_MaterialMechanicalNonlinear/it.md) , [FEM MaterialReinforced/it](FEM_MaterialReinforced/it.md) , [FEM MaterialSolid/it](FEM_MaterialSolid/it.md) , [FEM MeshBoundaryLayer/it](FEM_MeshBoundaryLayer/it.md) , [FEM MeshClear/it](FEM_MeshClear/it.md) , [FEM MeshDisplayInfo/it](FEM_MeshDisplayInfo/it.md) , [FEM MeshGmshFromShape/it](FEM_MeshGmshFromShape/it.md) , [FEM MeshGroup/it](FEM_MeshGroup/it.md) , [FEM MeshNetgenFromShape/it](FEM_MeshNetgenFromShape/it.md) , [FEM MeshRegion/it](FEM_MeshRegion/it.md) , [FEM PostApplyChanges/it](FEM_PostApplyChanges/it.md) , [FEM PostCreateFunctions/it](FEM_PostCreateFunctions/it.md) , [FEM PostFilterClipRegion/it](FEM_PostFilterClipRegion/it.md) , [FEM PostFilterClipScalar/it](FEM_PostFilterClipScalar/it.md) , [FEM PostFilterCutFunction/it](FEM_PostFilterCutFunction/it.md) , [FEM PostFilterDataAlongLine/it](FEM_PostFilterDataAlongLine/it.md) , [FEM PostFilterDataAtPoint/it](FEM_PostFilterDataAtPoint/it.md) , [FEM PostFilterLinearizedStresses/it](FEM_PostFilterLinearizedStresses/it.md) , [FEM PostFilterWarp/it](FEM_PostFilterWarp/it.md) , [FEM PostPipelineFromResult/it](FEM_PostPipelineFromResult/it.md) , [FEM ResultShow/it](FEM_ResultShow/it.md) , [FEM ResultsPurge/it](FEM_ResultsPurge/it.md) , [FEM SolverCalculiX/it](FEM_SolverCalculiX/it.md) , [FEM SolverCalculixCxxtools/it](FEM_SolverCalculixCxxtools/it.md) , [FEM SolverControl/it](FEM_SolverControl/it.md) , [FEM SolverElmer/it](FEM_SolverElmer/it.md) , [FEM SolverRun/it](FEM_SolverRun/it.md) , [FEM SolverZ88/it](FEM_SolverZ88/it.md) , [GuiCommand model/it](GuiCommand_model/it.md) , [Template:GuiCommand/it](Template:GuiCommand/it.md) , [Template:GuiCommandAddon/it](Template:GuiCommandAddon/it.md) , [Image CreateImagePlane/it](Image_CreateImagePlane/it.md) , [Image Open/it](Image_Open/it.md) , [Image Scaling/it](Image_Scaling/it.md) , [Lattice2 AttachablePlacement/it](Lattice2_AttachablePlacement/it.md) , [ManualArch/it](ManualArch/it.md) , [ManualDraft/it](ManualDraft/it.md) , [ManualDrawing/it](ManualDrawing/it.md) , [ManualPartDesign/it](ManualPartDesign/it.md) , [ManualSketcher/it](ManualSketcher/it.md) , [Material editor/it](Material_editor/it.md) , [Mesh AddFacet/it](Mesh_AddFacet/it.md) , [Mesh BoundingBox/it](Mesh_BoundingBox/it.md) , [Mesh BuildRegularSolid/it](Mesh_BuildRegularSolid/it.md) , [Mesh CrossSections/it](Mesh_CrossSections/it.md) , [Mesh CurvatureInfo/it](Mesh_CurvatureInfo/it.md) , [Mesh Decimating/it](Mesh_Decimating/it.md) , [Mesh Difference/it](Mesh_Difference/it.md) , [Mesh EvaluateFacet/it](Mesh_EvaluateFacet/it.md) , [Mesh EvaluateSolid/it](Mesh_EvaluateSolid/it.md) , [Mesh Evaluation/it](Mesh_Evaluation/it.md) , [Mesh Export/it](Mesh_Export/it.md) , [Mesh FillInteractiveHole/it](Mesh_FillInteractiveHole/it.md) , [Mesh FillupHoles/it](Mesh_FillupHoles/it.md) , [Mesh FlipNormals/it](Mesh_FlipNormals/it.md) , [Mesh FromPartShape/it](Mesh_FromPartShape/it.md) , [Mesh HarmonizeNormals/it](Mesh_HarmonizeNormals/it.md) , [Mesh Import/it](Mesh_Import/it.md) , [Mesh Intersection/it](Mesh_Intersection/it.md) , [Mesh Merge/it](Mesh_Merge/it.md) , [Mesh PolyCut/it](Mesh_PolyCut/it.md) , [Mesh PolyTrim/it](Mesh_PolyTrim/it.md) , [Mesh RemeshGmsh/it](Mesh_RemeshGmsh/it.md) , [Mesh RemoveCompByHand/it](Mesh_RemoveCompByHand/it.md) , [Mesh RemoveComponents/it](Mesh_RemoveComponents/it.md) , [Mesh Scale/it](Mesh_Scale/it.md) , [Mesh SectionByPlane/it](Mesh_SectionByPlane/it.md) , [Mesh Segmentation/it](Mesh_Segmentation/it.md) , [Mesh SegmentationBestFit/it](Mesh_SegmentationBestFit/it.md) , [Mesh Smoothing/it](Mesh_Smoothing/it.md) , [Mesh SplitComponents/it](Mesh_SplitComponents/it.md) , [Mesh TrimByPlane/it](Mesh_TrimByPlane/it.md) , [Mesh Union/it](Mesh_Union/it.md) , [Mesh VertexCurvature/it](Mesh_VertexCurvature/it.md) , [MeshPart CreateFlatFace/it](MeshPart_CreateFlatFace/it.md) , [MeshPart CreateFlatMesh/it](MeshPart_CreateFlatMesh/it.md) , [OpenSCAD AddOpenSCADElement/it](OpenSCAD_AddOpenSCADElement/it.md) , [OpenSCAD ColorCodeShape/it](OpenSCAD_ColorCodeShape/it.md) , [OpenSCAD Edgestofaces/it](OpenSCAD_Edgestofaces/it.md) , [OpenSCAD ExpandPlacements/it](OpenSCAD_ExpandPlacements/it.md) , [OpenSCAD ExplodeGroup/it](OpenSCAD_ExplodeGroup/it.md) , [OpenSCAD Hull/it](OpenSCAD_Hull/it.md) , [OpenSCAD IncreaseToleranceFeature/it](OpenSCAD_IncreaseToleranceFeature/it.md) , [OpenSCAD MeshBoolean/it](OpenSCAD_MeshBoolean/it.md) , [OpenSCAD Minkowski/it](OpenSCAD_Minkowski/it.md) , [OpenSCAD MirrorMeshFeature/it](OpenSCAD_MirrorMeshFeature/it.md) , [OpenSCAD RefineShapeFeature/it](OpenSCAD_RefineShapeFeature/it.md) , [OpenSCAD RemoveSubtree/it](OpenSCAD_RemoveSubtree/it.md) , [OpenSCAD ReplaceObject/it](OpenSCAD_ReplaceObject/it.md) , [OpenSCAD ResizeMeshFeature/it](OpenSCAD_ResizeMeshFeature/it.md) , [OpenSCAD ScaleMeshFeature/it](OpenSCAD_ScaleMeshFeature/it.md) , [Part Boolean/it](Part_Boolean/it.md) , [Part BooleanFragments/it](Part_BooleanFragments/it.md) , [Part Box/it](Part_Box/it.md) , [Part BoxSelection/it](Part_BoxSelection/it.md) , [Part Builder/it](Part_Builder/it.md) , [Part Chamfer/it](Part_Chamfer/it.md) , [Part CheckGeometry/it](Part_CheckGeometry/it.md) , [Part Circle/it](Part_Circle/it.md) , [Part Common/it](Part_Common/it.md) , [Part CompCompoundTools/it](Part_CompCompoundTools/it.md) , [Part CompJoinFeatures/it](Part_CompJoinFeatures/it.md) , [Part CompOffsetTools/it](Part_CompOffsetTools/it.md) , [Part Compound/it](Part_Compound/it.md) , [Part CompoundFilter/it](Part_CompoundFilter/it.md) , [Part CompSplittingTools/it](Part_CompSplittingTools/it.md) , [Part Cone/it](Part_Cone/it.md) , [Part CrossSections/it](Part_CrossSections/it.md) , [Part Cut/it](Part_Cut/it.md) , [Part Cylinder/it](Part_Cylinder/it.md) , [Part Defeaturing/it](Part_Defeaturing/it.md) , [Part EditAttachment/it](Part_EditAttachment/it.md) , [Part ElementCopy/it](Part_ElementCopy/it.md) , [Part Ellipse/it](Part_Ellipse/it.md) , [Part Ellipsoid/it](Part_Ellipsoid/it.md) , [Part ExplodeCompound/it](Part_ExplodeCompound/it.md) , [Part Export/it](Part_Export/it.md) , [Part Extrude/it](Part_Extrude/it.md) , [Part FaceColors/it](Part_FaceColors/it.md) , [Part Fillet/it](Part_Fillet/it.md) , [Part Fuse/it](Part_Fuse/it.md) , [Part Helix/it](Part_Helix/it.md) , [Part Import/it](Part_Import/it.md) , [Part JoinConnect/it](Part_JoinConnect/it.md) , [Part JoinCutout/it](Part_JoinCutout/it.md) , [Part JoinEmbed/it](Part_JoinEmbed/it.md) , [Part Line/it](Part_Line/it.md) , [Part Loft/it](Part_Loft/it.md) , [Part MakeFace/it](Part_MakeFace/it.md) , [Part MakeSolid/it](Part_MakeSolid/it.md) , [Part Measure Angular/it](Part_Measure_Angular/it.md) , [Part Measure Clear All/it](Part_Measure_Clear_All/it.md) , [Part Measure Linear/it](Part_Measure_Linear/it.md) , [Part Measure Menu/it](Part_Measure_Menu/it.md) , [Part Measure Refresh/it](Part_Measure_Refresh/it.md) , [Part Measure Toggle 3d/it](Part_Measure_Toggle_3d/it.md) , [Part Measure Toggle All/it](Part_Measure_Toggle_All/it.md) , [Part Measure Toggle Delta/it](Part_Measure_Toggle_Delta/it.md) , [Part Mirror/it](Part_Mirror/it.md) , [Part Offset/it](Part_Offset/it.md) , [Part Offset2D/it](Part_Offset2D/it.md) , [Part Plane/it](Part_Plane/it.md) , [Part Point/it](Part_Point/it.md) , [Part PointsFromMesh/it](Part_PointsFromMesh/it.md) , [Part Primitives/it](Part_Primitives/it.md) , [Part Prism/it](Part_Prism/it.md) , [Part ProjectionOnSurface/it](Part_ProjectionOnSurface/it.md) , [Part RefineShape/it](Part_RefineShape/it.md) , [Part RegularPolygon/it](Part_RegularPolygon/it.md) , [Part ReverseShapes/it](Part_ReverseShapes/it.md) , [Part Revolve/it](Part_Revolve/it.md) , [Part RuledSurface/it](Part_RuledSurface/it.md) , [Part Section/it](Part_Section/it.md) , [Part ShapeFromMesh/it](Part_ShapeFromMesh/it.md) , [Part SimpleCopy/it](Part_SimpleCopy/it.md) , [Part Slice/it](Part_Slice/it.md) , [Part SliceApart/it](Part_SliceApart/it.md) , [Part Sphere/it](Part_Sphere/it.md) , [Part Spiral/it](Part_Spiral/it.md) , [Part Sweep/it](Part_Sweep/it.md) , [Part Thickness/it](Part_Thickness/it.md) , [Part Torus/it](Part_Torus/it.md) , [Part TransformedCopy/it](Part_TransformedCopy/it.md) , [Part Tube/it](Part_Tube/it.md) , [Part Wedge/it](Part_Wedge/it.md) , [Part XOR/it](Part_XOR/it.md) , [PartDesign AdditiveBox/it](PartDesign_AdditiveBox/it.md) , [PartDesign AdditiveCone/it](PartDesign_AdditiveCone/it.md) , [PartDesign AdditiveCylinder/it](PartDesign_AdditiveCylinder/it.md) , [PartDesign AdditiveEllipsoid/it](PartDesign_AdditiveEllipsoid/it.md) , [PartDesign AdditiveHelix/it](PartDesign_AdditiveHelix/it.md) , [PartDesign AdditiveLoft/it](PartDesign_AdditiveLoft/it.md) , [PartDesign AdditivePipe/it](PartDesign_AdditivePipe/it.md) , [PartDesign AdditivePrism/it](PartDesign_AdditivePrism/it.md) , [PartDesign AdditiveSphere/it](PartDesign_AdditiveSphere/it.md) , [PartDesign AdditiveTorus/it](PartDesign_AdditiveTorus/it.md) , [PartDesign AdditiveWedge/it](PartDesign_AdditiveWedge/it.md) , [PartDesign Body/it](PartDesign_Body/it.md) , [PartDesign Boolean/it](PartDesign_Boolean/it.md) , [PartDesign Chamfer/it](PartDesign_Chamfer/it.md) , [PartDesign Clone/it](PartDesign_Clone/it.md) , [PartDesign CompPrimitiveAdditive/it](PartDesign_CompPrimitiveAdditive/it.md) , [PartDesign CompPrimitiveSubtractive/it](PartDesign_CompPrimitiveSubtractive/it.md) , [PartDesign CoordinateSystem/it](PartDesign_CoordinateSystem/it.md) , [PartDesign Draft/it](PartDesign_Draft/it.md) , [PartDesign Fillet/it](PartDesign_Fillet/it.md) , [PartDesign Groove/it](PartDesign_Groove/it.md) , [PartDesign Hole/it](PartDesign_Hole/it.md) , [PartDesign InvoluteGear/it](PartDesign_InvoluteGear/it.md) , [PartDesign Line/it](PartDesign_Line/it.md) , [PartDesign LinearPattern/it](PartDesign_LinearPattern/it.md) , [PartDesign Migrate/it](PartDesign_Migrate/it.md) , [PartDesign Mirrored/it](PartDesign_Mirrored/it.md) , [PartDesign MoveFeature/it](PartDesign_MoveFeature/it.md) , [PartDesign MoveFeatureInTree/it](PartDesign_MoveFeatureInTree/it.md) , [PartDesign MoveTip/it](PartDesign_MoveTip/it.md) , [PartDesign MultiTransform/it](PartDesign_MultiTransform/it.md) , [PartDesign NewSketch/it](PartDesign_NewSketch/it.md) , [PartDesign Pad/it](PartDesign_Pad/it.md) , [PartDesign Plane/it](PartDesign_Plane/it.md) , [PartDesign Pocket/it](PartDesign_Pocket/it.md) , [PartDesign Point/it](PartDesign_Point/it.md) , [PartDesign PolarPattern/it](PartDesign_PolarPattern/it.md) , [PartDesign Revolution/it](PartDesign_Revolution/it.md) , [PartDesign Scaled/it](PartDesign_Scaled/it.md) , [PartDesign ShapeBinder/it](PartDesign_ShapeBinder/it.md) , [PartDesign Sprocket/it](PartDesign_Sprocket/it.md) , [PartDesign SubShapeBinder/it](PartDesign_SubShapeBinder/it.md) , [PartDesign SubtractiveBox/it](PartDesign_SubtractiveBox/it.md) , [PartDesign SubtractiveCone/it](PartDesign_SubtractiveCone/it.md) , [PartDesign SubtractiveCylinder/it](PartDesign_SubtractiveCylinder/it.md) , [PartDesign SubtractiveEllipsoid/it](PartDesign_SubtractiveEllipsoid/it.md) , [PartDesign SubtractiveHelix/it](PartDesign_SubtractiveHelix/it.md) , [PartDesign SubtractiveLoft/it](PartDesign_SubtractiveLoft/it.md) , [PartDesign SubtractivePipe/it](PartDesign_SubtractivePipe/it.md) , [PartDesign SubtractivePrism/it](PartDesign_SubtractivePrism/it.md) , [PartDesign SubtractiveSphere/it](PartDesign_SubtractiveSphere/it.md) , [PartDesign SubtractiveTorus/it](PartDesign_SubtractiveTorus/it.md) , [PartDesign SubtractiveWedge/it](PartDesign_SubtractiveWedge/it.md) , [PartDesign Thickness/it](PartDesign_Thickness/it.md) , [PartDesign WizardShaft/it](PartDesign_WizardShaft/it.md) , [Path Adaptive/it](Path_Adaptive/it.md) , [Path Area Workplane/it](Path_Area_Workplane/it.md) , [Path Area/it](Path_Area/it.md) , [Path Array/it](Path_Array/it.md) , [Path Comment/it](Path_Comment/it.md) , [Path Copy/it](Path_Copy/it.md) , [Path Custom/it](Path_Custom/it.md) , [Path DressupDogbone/it](Path_DressupDogbone/it.md) , [Path DressupDragKnife/it](Path_DressupDragKnife/it.md) , [Path DressupLeadInOut/it](Path_DressupLeadInOut/it.md) , [Path DressupPathBoundary/it](Path_DressupPathBoundary/it.md) , [Path DressupRampEntry/it](Path_DressupRampEntry/it.md) , [Path DressupTag/it](Path_DressupTag/it.md) , [Path Drilling/it](Path_Drilling/it.md) , [Path Engrave/it](Path_Engrave/it.md) , [Path ExportTemplate/it](Path_ExportTemplate/it.md) , [Path Fixture/it](Path_Fixture/it.md) , [Path Helix/it](Path_Helix/it.md) , [Path Inspect/it](Path_Inspect/it.md) , [Path Job/it](Path_Job/it.md) , [Path MillFace/it](Path_MillFace/it.md) , [Path OpActiveToggle/it](Path_OpActiveToggle/it.md) , [Path Pocket 3D/it](Path_Pocket_3D/it.md) , [Path Pocket Shape/it](Path_Pocket_Shape/it.md) , [Path Post/it](Path_Post/it.md) , [Path Profile/it](Path_Profile/it.md) , [Path Sanity/it](Path_Sanity/it.md) , [Path SelectLoop/it](Path_SelectLoop/it.md) , [Path Shape/it](Path_Shape/it.md) , [Path SimpleCopy/it](Path_SimpleCopy/it.md) , [Path Simulator/it](Path_Simulator/it.md) , [Path Slot/it](Path_Slot/it.md) , [Path Stop/it](Path_Stop/it.md) , [Path Surface/it](Path_Surface/it.md) , [Path ToolLibraryEdit/it](Path_ToolLibraryEdit/it.md) , [Path Vcarve/it](Path_Vcarve/it.md) [Category:Categories/it](Category:Categories/it.md) + +--- +[documentation index](../README.md) > Category:Command Reference/it diff --git a/wiki/translations/it/Category:Common_Questions.md b/wiki/translations/it/Category:Common_Questions.md index e9a4706a13..9185359604 100644 --- a/wiki/translations/it/Category:Common_Questions.md +++ b/wiki/translations/it/Category:Common_Questions.md @@ -4,3 +4,6 @@ This category has links to common questions on how to do something in FC. This i ### Contents: [Constructive solid geometry/it](Constructive_solid_geometry/it.md) , [Feature editing/it](Feature_editing/it.md) , [FreeCAD and DWG Import/it](FreeCAD_and_DWG_Import/it.md) , [Help FreeCAD/it](Help_FreeCAD/it.md) , [Import Export Preferences/it](Import_Export_Preferences/it.md) , [Importing From Sketchup/it](Importing_From_Sketchup/it.md) , [Installing on Linux/it](Installing_on_Linux/it.md) , [Std About/it](Std_About/it.md) , [Topological naming problem/it](Topological_naming_problem/it.md) , [Video tutorials/it](Video_tutorials/it.md) + +--- +[documentation index](../README.md) > Category:Common Questions/it diff --git a/wiki/translations/it/Category:Complete.md b/wiki/translations/it/Category:Complete.md index 80c81028d3..e0b8449e2e 100644 --- a/wiki/translations/it/Category:Complete.md +++ b/wiki/translations/it/Category:Complete.md @@ -6,3 +6,6 @@ This category lists pages related to the [Complete Workbench/it](Complete_Workbe [Complete Workbench/it](Complete_Workbench/it.md) [Category:Obsolete Workbenches/it](Category:Obsolete_Workbenches/it.md) + +--- +[documentation index](../README.md) > Category:Complete/it diff --git a/wiki/translations/it/Category:Curves.md b/wiki/translations/it/Category:Curves.md index 5d64f387ad..ecdf0ccaa9 100644 --- a/wiki/translations/it/Category:Curves.md +++ b/wiki/translations/it/Category:Curves.md @@ -4,3 +4,6 @@ Pagine rilevanti per l\'ambiente [Curves](Curves_Workbench/it.md) che fa parte d ### Contents: [Curves ExtendCurve/it](Curves_ExtendCurve/it.md) , [Curves GordonSurface/it](Curves_GordonSurface/it.md) , [Curves IsoCurve/it](Curves_IsoCurve/it.md) , [Curves JoinCurve/it](Curves_JoinCurve/it.md) , [Curves MultiLoft/it](Curves_MultiLoft/it.md) , [Curves ParametricComb/it](Curves_ParametricComb/it.md) , [Curves ParametricSolid/it](Curves_ParametricSolid/it.md) , [Curves PasteSVG/it](Curves_PasteSVG/it.md) , [Curves Pipeshell/it](Curves_Pipeshell/it.md) , [Curves SketchOnSurface/it](Curves_SketchOnSurface/it.md) , [Curves SplitCurve/it](Curves_SplitCurve/it.md) , [Curves ToConsole/it](Curves_ToConsole/it.md) , [Template:Curves Tools navi/it](Template:Curves_Tools_navi/it.md) , [Curves Workbench/it](Curves_Workbench/it.md) , [Curves ZebraTool/it](Curves_ZebraTool/it.md) + +--- +[documentation index](../README.md) > Category:Curves/it diff --git a/wiki/translations/it/Category:Developer.md b/wiki/translations/it/Category:Developer.md index 545d5937a6..d2fc00f108 100644 --- a/wiki/translations/it/Category:Developer.md +++ b/wiki/translations/it/Category:Developer.md @@ -8,3 +8,6 @@ Questa categoria contiene gli articoli che sono importanti per gli sviluppatori. [Changelog/it](Changelog/it.md) , [Compile on Cygwin/it](Compile_on_Cygwin/it.md) , [Compile on Docker/it](Compile_on_Docker/it.md) , [Compile on Linux/it](Compile_on_Linux/it.md) , [Compile on MacOS/it](Compile_on_MacOS/it.md) , [Compile on MinGW/it](Compile_on_MinGW/it.md) , [Compile on Windows with VS2013/it](Compile_on_Windows_with_VS2013/it.md) , [Compile on Windows/it](Compile_on_Windows/it.md) , [Compiling (Speeding up)/it](Compiling_(Speeding_up)/it.md) , [Compiling/it](Compiling/it.md) , [Conda/it](Conda/it.md) , [Contributors/it](Contributors/it.md) , [Developing FreeCAD with GitKraken/it](Developing_FreeCAD_with_GitKraken/it.md) , [Doxygen/it](Doxygen/it.md) , [FEM CalculiX/it](FEM_CalculiX/it.md) , [FEM Element Types/it](FEM_Element_Types/it.md) , [FEM Mesh CalculiX/it](FEM_Mesh_CalculiX/it.md) , [FEM Python Scripting/it](FEM_Python_Scripting/it.md) , [File Format FCStd/it](File_Format_FCStd/it.md) , [ImageConv/it](ImageConv/it.md) , [InputField/it](InputField/it.md) , [Land Survey Workbench Blueprint/it](Land_Survey_Workbench_Blueprint/it.md) , [LGTM/it](LGTM/it.md) , [Material/it](Material/it.md) , [Organization chart/it](Organization_chart/it.md) , [Svg Namespace/it](Svg_Namespace/it.md) , [WikiRobots/it](WikiRobots/it.md) , [Wished tools/it](Wished_tools/it.md) [Category:Developer Documentation/it](Category:Developer_Documentation/it.md) [Category:Categories/it](Category:Categories/it.md) + +--- +[documentation index](../README.md) > Category:Developer/it diff --git a/wiki/translations/it/Category:Developer_Documentation.md b/wiki/translations/it/Category:Developer_Documentation.md index a5de8b870f..4e449ed976 100644 --- a/wiki/translations/it/Category:Developer_Documentation.md +++ b/wiki/translations/it/Category:Developer_Documentation.md @@ -8,3 +8,6 @@ Questa categoria raccoglie articoli e documentazione per lo più rivolti a progr [Add FEM equation tutorial/it](Add_FEM_equation_tutorial/it.md) , [ANSI templates/it](ANSI_templates/it.md) , [AppImage/it](AppImage/it.md) , [Arch templates/it](Arch_templates/it.md) , [Artwork Erroneous/it](Artwork_Erroneous/it.md) , [Artwork Guidelines/it](Artwork_Guidelines/it.md) , [Artwork/it](Artwork/it.md) , [Branding/it](Branding/it.md) , [Bug Triage/it](Bug_Triage/it.md) , [Code snippets/it](Code_snippets/it.md) , [Command/it](Command/it.md) , [Compile on Cygwin/it](Compile_on_Cygwin/it.md) , [Compile on Docker/it](Compile_on_Docker/it.md) , [Compile on Linux/it](Compile_on_Linux/it.md) , [Compile on MacOS/it](Compile_on_MacOS/it.md) , [Compile on MinGW/it](Compile_on_MinGW/it.md) , [Compile on Windows with VS2013/it](Compile_on_Windows_with_VS2013/it.md) , [Compile on Windows/it](Compile_on_Windows/it.md) , [CompileOnWindows - Reducing Disk Footprint/it](CompileOnWindows_-_Reducing_Disk_Footprint/it.md) , [Compiling (Speeding up)/it](Compiling_(Speeding_up)/it.md) , [Compiling/it](Compiling/it.md) , [Conda/it](Conda/it.md) , [Continuous Integration/it](Continuous_Integration/it.md) , [Create a FeaturePython object part I/it](Create_a_FeaturePython_object_part_I/it.md) , [Create a FeaturePython object part II/it](Create_a_FeaturePython_object_part_II/it.md) , [Crowdin Scripts/it](Crowdin_Scripts/it.md) , [Custom icon in tree view/it](Custom_icon_in_tree_view/it.md) , [Debian development/it](Debian_development/it.md) , [Debian Unstable/it](Debian_Unstable/it.md) , [Debugging/it](Debugging/it.md) , [Developer hub/it](Developer_hub/it.md) , [Developing FreeCAD with GitKraken/it](Developing_FreeCAD_with_GitKraken/it.md) , [Developing FreeCAD with KDevelop/it](Developing_FreeCAD_with_KDevelop/it.md) , [Dialog creation image and animated GIF/it](Dialog_creation_image_and_animated_GIF/it.md) , [Dialog creation reading and writing files/it](Dialog_creation_reading_and_writing_files/it.md) , [Dialog creation setting colors/it](Dialog_creation_setting_colors/it.md) , [Dialog creation with various widgets/it](Dialog_creation_with_various_widgets/it.md) , [Dialog creation/it](Dialog_creation/it.md) , [Doxygen/it](Doxygen/it.md) , [Drawing API example/it](Drawing_API_example/it.md) , [Drawing Documentation/it](Drawing_Documentation/it.md) , [Drawing templates/it](Drawing_templates/it.md) , [Embedding FreeCAD/it](Embedding_FreeCAD/it.md) , [Embedding FreeCADGui/it](Embedding_FreeCADGui/it.md) , [Extra python modules/it](Extra_python_modules/it.md) , [FeaturePython Custom Properties/it](FeaturePython_Custom_Properties/it.md) , [FeaturePython methods/it](FeaturePython_methods/it.md) , [File Format FCStd/it](File_Format_FCStd/it.md) , [Fine-tuning/it](Fine-tuning/it.md) , [FreeCAD Build Tool/it](FreeCAD_Build_Tool/it.md) , [FreeCAD Scripting Basics/it](FreeCAD_Scripting_Basics/it.md) , [FreeCAD vector math library/it](FreeCAD_vector_math_library/it.md) , [Git buildpackage/it](Git_buildpackage/it.md) , [Help FreeCAD/it](Help_FreeCAD/it.md) , [How to install macros/it](How_to_install_macros/it.md) , [Installing more workbenches/it](Installing_more_workbenches/it.md) , [Installing on Linux/it](Installing_on_Linux/it.md) , [Interface creation/it](Interface_creation/it.md) , [Introduction to Python/it](Introduction_to_Python/it.md) , [Key ASCII/it](Key_ASCII/it.md) , [LGTM/it](LGTM/it.md) , [Licence/it](Licence/it.md) , [Line drawing function/it](Line_drawing_function/it.md) , [Linux packaging/it](Linux_packaging/it.md) , [Localisation Sidebar/it](Localisation_Sidebar/it.md) , [Localisation/it](Localisation/it.md) , [Localization Older Methods/it](Localization_Older_Methods/it.md) , [Macro at Startup/it](Macro_at_Startup/it.md) , [Macros/it](Macros/it.md) , [Manual:A gentle introduction/it](Manual:A_gentle_introduction/it.md) , [Manual:Creating and manipulating geometry/it](Manual:Creating_and_manipulating_geometry/it.md) , [Manual:Creating interface tools/it](Manual:Creating_interface_tools/it.md) , [Manual:Creating parametric objects/it](Manual:Creating_parametric_objects/it.md) , [ManualDrawing/it](ManualDrawing/it.md) , [Material/it](Material/it.md) , [Mesh Scripting/it](Mesh_Scripting/it.md) , [Mesh to Part/it](Mesh_to_Part/it.md) , [Misc templates/it](Misc_templates/it.md) , [OpenCASCADE/it](OpenCASCADE/it.md) , [OpenSCAD CSG tested files/it](OpenSCAD_CSG_tested_files/it.md) , [Packaging/it](Packaging/it.md) , [Part scripting/it](Part_scripting/it.md) , [Path scripting/it](Path_scripting/it.md) , [Pivy/it](Pivy/it.md) , [Profiling/it](Profiling/it.md) , [Property/it](Property/it.md) , [PySide Advanced Examples/it](PySide_Advanced_Examples/it.md) , [PySide Beginner Examples/it](PySide_Beginner_Examples/it.md) , [PySide Intermediate Examples/it](PySide_Intermediate_Examples/it.md) , [PySide usage snippets/it](PySide_usage_snippets/it.md) , [PySide/it](PySide/it.md) , [Python scripting tutorial/it](Python_scripting_tutorial/it.md) , [Python/it](Python/it.md) , [PythonOCC/it](PythonOCC/it.md) , [Quantity/it](Quantity/it.md) , [Raytracing API example/it](Raytracing_API_example/it.md) , [Scenegraph/it](Scenegraph/it.md) , [Scripted objects migration/it](Scripted_objects_migration/it.md) , [Scripted objects saving attributes/it](Scripted_objects_saving_attributes/it.md) , [Scripted objects with attachment/it](Scripted_objects_with_attachment/it.md) , [Scripted objects/it](Scripted_objects/it.md) , [Scripted Parts: Ball Bearing - Part 1/it](Scripted_Parts:_Ball_Bearing_-_Part_1/it.md) , [Scripted Parts: Ball Bearing - Part 2/it](Scripted_Parts:_Ball_Bearing_-_Part_2/it.md) , [Scripting and macros/it](Scripting_and_macros/it.md) , [Scripts/it](Scripts/it.md) , [Source code management/it](Source_code_management/it.md) , [Source documentation/it](Source_documentation/it.md) , [Sphinx/it](Sphinx/it.md) , [Start up and Configuration/it](Start_up_and_Configuration/it.md) , [Testing/it](Testing/it.md) , [The FreeCAD source code/it](The_FreeCAD_source_code/it.md) , [Third Party Libraries/it](Third_Party_Libraries/it.md) , [Third Party Tools/it](Third_Party_Tools/it.md) , [Topological data scripting/it](Topological_data_scripting/it.md) , [Tracker/it](Tracker/it.md) , [Translating an external workbench/it](Translating_an_external_workbench/it.md) , [Viewprovider/it](Viewprovider/it.md) , [Workbench creation/it](Workbench_creation/it.md) , , [Category:Documentation/it](Category:Documentation/it.md) [Category:Developer/it](Category:Developer/it.md) [Category:Packaging/it](Category:Packaging/it.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/it diff --git a/wiki/translations/it/Category:Document_object.md b/wiki/translations/it/Category:Document_object.md index f40dfb1e85..aeece6620f 100644 --- a/wiki/translations/it/Category:Document_object.md +++ b/wiki/translations/it/Category:Document_object.md @@ -6,3 +6,6 @@ Questa categoria elenca le pagine relative agli oggetti derivati dalla base [App [App DocumentObject/it](App_DocumentObject/it.md) , [App DocumentObjectGroup/it](App_DocumentObjectGroup/it.md) , [App FeaturePython/it](App_FeaturePython/it.md) , [App GeoFeature/it](App_GeoFeature/it.md) , [App Link/it](App_Link/it.md) , [App Part/it](App_Part/it.md) , [Assembly/it](Assembly/it.md) , [Body/it](Body/it.md) , [Constraint/it](Constraint/it.md) , [Datum/it](Datum/it.md) , [Drawing/it](Drawing/it.md) , [Feature/it](Feature/it.md) , [Mesh Feature/it](Mesh_Feature/it.md) , [Mesh MeshObject/it](Mesh_MeshObject/it.md) , [Mesh/it](Mesh/it.md) , [Model/it](Model/it.md) , [Part Feature/it](Part_Feature/it.md) , [Part TopoShape/it](Part_TopoShape/it.md) , [Part/it](Part/it.md) , [PartDesign Feature/it](PartDesign_Feature/it.md) , [Shape/it](Shape/it.md) , [Sketch/it](Sketch/it.md) , [Sketcher SketchObject/it](Sketcher_SketchObject/it.md) [Category:User Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Document object/it diff --git a/wiki/translations/it/Category:Documentation.md b/wiki/translations/it/Category:Documentation.md index e41899d156..5560712c6f 100644 --- a/wiki/translations/it/Category:Documentation.md +++ b/wiki/translations/it/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [3D input devices/it](3D_input_devices/it.md) , [ANSI templates/it](ANSI_templates/it.md) , [Arch templates/it](Arch_templates/it.md) , [Civil Engineering Workbench/it](Civil_Engineering_Workbench/it.md) , [Drawing templates/it](Drawing_templates/it.md) , [Esercitazioni](Esercitazioni.md) , [FreeCAD Community Portal/it](FreeCAD_Community_Portal/it.md) , [Frequently asked questions/it](Frequently_asked_questions/it.md) , [Help FreeCAD/it](Help_FreeCAD/it.md) , [Interesting links/it](Interesting_links/it.md) , [Main Page/it](Main_Page/it.md) , [ManualDrawing/it](ManualDrawing/it.md) , [Misc templates/it](Misc_templates/it.md) , [Online Help Toc/it](Online_Help_Toc/it.md) , [Part Measure Menu/it](Part_Measure_Menu/it.md) , [Release notes 0.11/it](Release_notes_0.11/it.md) , [Release notes 0.12/it](Release_notes_0.12/it.md) , [Release notes 0.13/it](Release_notes_0.13/it.md) , [Release notes 0.14/it](Release_notes_0.14/it.md) , [Release notes 0.15/it](Release_notes_0.15/it.md) , [Release notes 0.16/it](Release_notes_0.16/it.md) , [Release notes 0.17/it](Release_notes_0.17/it.md) , [Release notes 0.18/it](Release_notes_0.18/it.md) , [Release notes 0.19/it](Release_notes_0.19/it.md) , [Release notes 0.20/it](Release_notes_0.20/it.md) , [Sandbox:TestWikiPage/it](Sandbox:TestWikiPage/it.md) , [Soluzione1](Soluzione1.md) , [Soluzione2](Soluzione2.md) , [Transportation Workbench/it](Transportation_Workbench/it.md) , , , , , , , [Category:Categories/it](Category:Categories/it.md) [Category:API Documentation/it](Category:API_Documentation/it.md) [Category:Developer Documentation/it](Category:Developer_Documentation/it.md) [Category:Poweruser Documentation/it](Category:Poweruser_Documentation/it.md) [Category:Screenshots/it](Category:Screenshots/it.md) [Category:User Documentation/it](Category:User_Documentation/it.md) [Category:Wiki Documentation/it](Category:Wiki_Documentation/it.md) [Category:Wiki/it](Category:Wiki/it.md) + +--- +[documentation index](../README.md) > Category:Documentation/it diff --git a/wiki/translations/it/Category:Draft.md b/wiki/translations/it/Category:Draft.md index 335d23cbe1..137cda5e8d 100644 --- a/wiki/translations/it/Category:Draft.md +++ b/wiki/translations/it/Category:Draft.md @@ -4,3 +4,6 @@ [Arch panel tutorial/it](Arch_panel_tutorial/it.md) , [Artwork Draft/it](Artwork_Draft/it.md) , [Draft AddConstruction/it](Draft_AddConstruction/it.md) , [Draft AddToGroup/it](Draft_AddToGroup/it.md) , [Draft AnnotationStyleEditor/it](Draft_AnnotationStyleEditor/it.md) , [Draft API/it](Draft_API/it.md) , [Draft ApplyStyle/it](Draft_ApplyStyle/it.md) , [Draft Arc 3Points/it](Draft_Arc_3Points/it.md) , [Draft Arc/it](Draft_Arc/it.md) , [Draft Array/it](Draft_Array/it.md) , [Draft AutoGroup/it](Draft_AutoGroup/it.md) , [Draft BezCurve/it](Draft_BezCurve/it.md) , [Draft BSpline/it](Draft_BSpline/it.md) , [Draft Circle/it](Draft_Circle/it.md) , [Draft CircularArray/it](Draft_CircularArray/it.md) , [Draft Clone/it](Draft_Clone/it.md) , [Draft Constrain/it](Draft_Constrain/it.md) , [Draft CubicBezCurve/it](Draft_CubicBezCurve/it.md) , [Draft DAT/it](Draft_DAT/it.md) , [Draft Dimension/it](Draft_Dimension/it.md) , [Draft Downgrade/it](Draft_Downgrade/it.md) , [Draft Draft2Sketch/it](Draft_Draft2Sketch/it.md) , [Draft Drawing/it](Draft_Drawing/it.md) , [Draft DXF/it](Draft_DXF/it.md) , [Draft Edit/it](Draft_Edit/it.md) , [Draft Ellipse/it](Draft_Ellipse/it.md) , [Draft Facebinder/it](Draft_Facebinder/it.md) , [Draft Fillet/it](Draft_Fillet/it.md) , [Draft FlipDimension/it](Draft_FlipDimension/it.md) , [Draft Heal/it](Draft_Heal/it.md) , [Draft Join/it](Draft_Join/it.md) , [Draft Label/it](Draft_Label/it.md) , [Draft Layer/it](Draft_Layer/it.md) , [Draft Line/it](Draft_Line/it.md) , [Draft Mirror/it](Draft_Mirror/it.md) , [Draft Move/it](Draft_Move/it.md) , [Draft OCA/it](Draft_OCA/it.md) , [Draft Offset/it](Draft_Offset/it.md) , [Draft OrthoArray/it](Draft_OrthoArray/it.md) , [Draft PathArray/it](Draft_PathArray/it.md) , [Draft PathLinkArray/it](Draft_PathLinkArray/it.md) , [Draft Pattern/it](Draft_Pattern/it.md) , [Draft Point/it](Draft_Point/it.md) , [Draft PointArray/it](Draft_PointArray/it.md) , [Draft PointLinkArray/it](Draft_PointLinkArray/it.md) , [Draft PolarArray/it](Draft_PolarArray/it.md) , [Draft Polygon/it](Draft_Polygon/it.md) , [Draft Preferences/it](Draft_Preferences/it.md) , [Draft Rectangle/it](Draft_Rectangle/it.md) , [Draft Rotate/it](Draft_Rotate/it.md) , [Draft Scale/it](Draft_Scale/it.md) , [Draft SelectGroup/it](Draft_SelectGroup/it.md) , [Draft SelectPlane/it](Draft_SelectPlane/it.md) , [Draft Shape2DView/it](Draft_Shape2DView/it.md) , [Draft ShapeString/it](Draft_ShapeString/it.md) , [Draft ShowSnapBar/it](Draft_ShowSnapBar/it.md) , [Draft Slope/it](Draft_Slope/it.md) , [Draft Snap Angle/it](Draft_Snap_Angle/it.md) , [Draft Snap Center/it](Draft_Snap_Center/it.md) , [Draft Snap Dimensions/it](Draft_Snap_Dimensions/it.md) , [Draft Snap Endpoint/it](Draft_Snap_Endpoint/it.md) , [Draft Snap Extension/it](Draft_Snap_Extension/it.md) , [Draft Snap Grid/it](Draft_Snap_Grid/it.md) , [Draft Snap Intersection/it](Draft_Snap_Intersection/it.md) , [Draft Snap Lock/it](Draft_Snap_Lock/it.md) , [Draft Snap Midpoint/it](Draft_Snap_Midpoint/it.md) , [Draft Snap Near/it](Draft_Snap_Near/it.md) , [Draft Snap Ortho/it](Draft_Snap_Ortho/it.md) , [Draft Snap Parallel/it](Draft_Snap_Parallel/it.md) , [Draft Snap Perpendicular/it](Draft_Snap_Perpendicular/it.md) , [Draft Snap Special/it](Draft_Snap_Special/it.md) , [Draft Snap WorkingPlane/it](Draft_Snap_WorkingPlane/it.md) , [Draft Snap/it](Draft_Snap/it.md) , [Draft Split/it](Draft_Split/it.md) , [Draft Stretch/it](Draft_Stretch/it.md) , [Draft SubelementHighlight/it](Draft_SubelementHighlight/it.md) , [Draft SVG/it](Draft_SVG/it.md) , [Draft Text/it](Draft_Text/it.md) , [Draft ToggleConstructionMode/it](Draft_ToggleConstructionMode/it.md) , [Draft ToggleContinueMode/it](Draft_ToggleContinueMode/it.md) , [Draft ToggleDisplayMode/it](Draft_ToggleDisplayMode/it.md) , [Draft ToggleGrid/it](Draft_ToggleGrid/it.md) , [Template:Draft Tools navi/it](Template:Draft_Tools_navi/it.md) , [Draft Tray/it](Draft_Tray/it.md) , [Draft Trimex/it](Draft_Trimex/it.md) , [Draft tutorial/it](Draft_tutorial/it.md) , [Draft Upgrade/it](Draft_Upgrade/it.md) , [Draft Wire/it](Draft_Wire/it.md) , [Draft WireToBSpline/it](Draft_WireToBSpline/it.md) , [Draft Workbench/it](Draft_Workbench/it.md) , [Draft WorkingPlaneProxy/it](Draft_WorkingPlaneProxy/it.md) , [DXF/it](DXF/it.md) , [FreeCAD and DWG Import/it](FreeCAD_and_DWG_Import/it.md) , [Macro FCCircularText/it](Macro_FCCircularText/it.md) , [Manual:Traditional 2D drafting/it](Manual:Traditional_2D_drafting/it.md) , [ManualDraft/it](ManualDraft/it.md) , [SVG/it](SVG/it.md) , [Tutorial custom placing of windows and doors/it](Tutorial_custom_placing_of_windows_and_doors/it.md) , [Tutorial for open windows/it](Tutorial_for_open_windows/it.md) [Category:User Documentation/it](Category:User_Documentation/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) + +--- +[documentation index](../README.md) > Category:Draft/it diff --git a/wiki/translations/it/Category:Drawing.md b/wiki/translations/it/Category:Drawing.md index c7517e3323..7782aee018 100644 --- a/wiki/translations/it/Category:Drawing.md +++ b/wiki/translations/it/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/it](Drawing_Workbenc [ANSI templates/it](ANSI_templates/it.md) , [Arch templates/it](Arch_templates/it.md) , [Drawing Annotation/it](Drawing_Annotation/it.md) , [Drawing API example/it](Drawing_API_example/it.md) , [Drawing Clip/it](Drawing_Clip/it.md) , [Drawing Dimensioning Addon/it](Drawing_Dimensioning_Addon/it.md) , [Drawing Documentation/it](Drawing_Documentation/it.md) , [Drawing Landscape A3/it](Drawing_Landscape_A3/it.md) , [Drawing Open SVG/it](Drawing_Open_SVG/it.md) , [Drawing Openbrowser/it](Drawing_Openbrowser/it.md) , [Drawing Orthoviews/it](Drawing_Orthoviews/it.md) , [Drawing ProjectShape/it](Drawing_ProjectShape/it.md) , [Drawing Save/it](Drawing_Save/it.md) , [Drawing SpreadsheetView/it](Drawing_SpreadsheetView/it.md) , [Drawing Symbol/it](Drawing_Symbol/it.md) , [Drawing Template HowTo/it](Drawing_Template_HowTo/it.md) , [Drawing templates/it](Drawing_templates/it.md) , [Template:Drawing Tools navi/it](Template:Drawing_Tools_navi/it.md) , [Drawing tutorial/it](Drawing_tutorial/it.md) , [Drawing View/it](Drawing_View/it.md) , [Drawing Workbench/it](Drawing_Workbench/it.md) , [ManualDrawing/it](ManualDrawing/it.md) , [Misc templates/it](Misc_templates/it.md) , [Svg Namespace/it](Svg_Namespace/it.md) [Category:Obsolete Workbenches/it](Category:Obsolete_Workbenches/it.md) + +--- +[documentation index](../README.md) > Category:Drawing/it diff --git a/wiki/translations/it/Category:EM.md b/wiki/translations/it/Category:EM.md index f433de99f2..77f20f42a8 100644 --- a/wiki/translations/it/Category:EM.md +++ b/wiki/translations/it/Category:EM.md @@ -6,3 +6,6 @@ This category list pages related to the [EM Workbench/it](EM_Workbench/it.md) wh [EM FHEquiv/it](EM_FHEquiv/it.md) , [EM FHInputFile/it](EM_FHInputFile/it.md) , [EM FHNode/it](EM_FHNode/it.md) , [EM FHPath/it](EM_FHPath/it.md) , [EM FHPlane/it](EM_FHPlane/it.md) , [EM FHPlaneAddRemoveNodeHole/it](EM_FHPlaneAddRemoveNodeHole/it.md) , [EM FHPlaneHole/it](EM_FHPlaneHole/it.md) , [EM FHPort/it](EM_FHPort/it.md) , [EM FHSegment/it](EM_FHSegment/it.md) , [EM FHSolver/it](EM_FHSolver/it.md) , [Template:EM Tools navi/it](Template:EM_Tools_navi/it.md) , [EM Workbench/it](EM_Workbench/it.md) [Category:External Workbenches/it](Category:External_Workbenches/it.md) [Category:User Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:EM/it diff --git a/wiki/translations/it/Category:External_Command_Reference.md b/wiki/translations/it/Category:External_Command_Reference.md index dc7e307ce6..64063a0a16 100644 --- a/wiki/translations/it/Category:External_Command_Reference.md +++ b/wiki/translations/it/Category:External_Command_Reference.md @@ -4,3 +4,6 @@ This categorizes all **external** workbench commands separate from the internal ### Contents: [Arch Rebar BOM/it](Arch_Rebar_BOM/it.md) , [Arch Rebar Dimensioning/it](Arch_Rebar_Dimensioning/it.md) , [Arch Rebar Drawing Dimensioning/it](Arch_Rebar_Drawing_Dimensioning/it.md) , [Arch Rebar Drawing/it](Arch_Rebar_Drawing/it.md) , [Arch Rebar/it](Arch_Rebar/it.md) , [BIM Views/it](BIM_Views/it.md) , [BIM Windows/it](BIM_Windows/it.md) , [CurvedShapes CurvedArray/it](CurvedShapes_CurvedArray/it.md) , [Curves ExtendCurve/it](Curves_ExtendCurve/it.md) , [Curves GordonSurface/it](Curves_GordonSurface/it.md) , [Curves IsoCurve/it](Curves_IsoCurve/it.md) , [Curves JoinCurve/it](Curves_JoinCurve/it.md) , [Curves MultiLoft/it](Curves_MultiLoft/it.md) , [Curves ParametricComb/it](Curves_ParametricComb/it.md) , [Curves ParametricSolid/it](Curves_ParametricSolid/it.md) , [Curves PasteSVG/it](Curves_PasteSVG/it.md) , [Curves Pipeshell/it](Curves_Pipeshell/it.md) , [Curves SketchOnSurface/it](Curves_SketchOnSurface/it.md) , [Curves SplitCurve/it](Curves_SplitCurve/it.md) , [Curves ToConsole/it](Curves_ToConsole/it.md) , [Template:Curves Tools navi/it](Template:Curves_Tools_navi/it.md) , [Curves Workbench/it](Curves_Workbench/it.md) , [Curves ZebraTool/it](Curves_ZebraTool/it.md) , [Fasteners BOM/it](Fasteners_BOM/it.md) , [Fasteners Workbench/it](Fasteners_Workbench/it.md) , [FCGear BevelGear/it](FCGear_BevelGear/it.md) , [FCGear CrownGear/it](FCGear_CrownGear/it.md) , [FCGear CycloideGear/it](FCGear_CycloideGear/it.md) , [FCGear InvoluteGear/it](FCGear_InvoluteGear/it.md) , [FCGear InvoluteRack/it](FCGear_InvoluteRack/it.md) , [FCGear LanternGear/it](FCGear_LanternGear/it.md) , [FCGear TimingGear/it](FCGear_TimingGear/it.md) , [FCGear WormGear/it](FCGear_WormGear/it.md) , [Lattice2 AttachablePlacement/it](Lattice2_AttachablePlacement/it.md) , [ManualArch/it](ManualArch/it.md) , [Reinforcement Bar Bending Schedule/it](Reinforcement_Bar_Bending_Schedule/it.md) , [Reinforcement Bar Shape Cut List/it](Reinforcement_Bar_Shape_Cut_List/it.md) , [SheetMetal AddJunction/it](SheetMetal_AddJunction/it.md) , [SheetMetal AddRelief/it](SheetMetal_AddRelief/it.md) , [SheetMetal AddWall/it](SheetMetal_AddWall/it.md) , [SheetMetal Extrude/it](SheetMetal_Extrude/it.md) , [SheetMetal Unfold/it](SheetMetal_Unfold/it.md) , [SheetMetal Workbench/it](SheetMetal_Workbench/it.md) + +--- +[documentation index](../README.md) > Category:External Command Reference/it diff --git a/wiki/translations/it/Category:External_Workbenches.md b/wiki/translations/it/Category:External_Workbenches.md index 04a4fb2075..c498420ef9 100644 --- a/wiki/translations/it/Category:External_Workbenches.md +++ b/wiki/translations/it/Category:External_Workbenches.md @@ -4,3 +4,6 @@ [External workbenches/it](External_workbenches/it.md) , [A2plus Workbench/it](A2plus_Workbench/it.md) , [Animation Workbench/it](Animation_Workbench/it.md) , [Assembly2 Workbench/it](Assembly2_Workbench/it.md) , [Assembly3 Workbench/it](Assembly3_Workbench/it.md) , [Assembly4 Workbench/it](Assembly4_Workbench/it.md) , [BIM Workbench/it](BIM_Workbench/it.md) , [BOLTSFC Workbench/it](BOLTSFC_Workbench/it.md) , [CadQuery Workbench/it](CadQuery_Workbench/it.md) , [Cfd Workbench/it](Cfd_Workbench/it.md) , [CurvedShapes Workbench/it](CurvedShapes_Workbench/it.md) , [Curves Workbench/it](Curves_Workbench/it.md) , [Defeaturing Workbench/it](Defeaturing_Workbench/it.md) , [Defeaturing/it](Defeaturing/it.md) , [DynamicData Workbench/it](DynamicData_Workbench/it.md) , [EM FHEquiv/it](EM_FHEquiv/it.md) , [EM FHInputFile/it](EM_FHInputFile/it.md) , [EM FHNode/it](EM_FHNode/it.md) , [EM FHPath/it](EM_FHPath/it.md) , [EM FHPlane/it](EM_FHPlane/it.md) , [EM FHPlaneAddRemoveNodeHole/it](EM_FHPlaneAddRemoveNodeHole/it.md) , [EM FHPlaneHole/it](EM_FHPlaneHole/it.md) , [EM FHPort/it](EM_FHPort/it.md) , [EM FHSegment/it](EM_FHSegment/it.md) , [EM FHSolver/it](EM_FHSolver/it.md) , [EM Workbench/it](EM_Workbench/it.md) , [ExplodedAssembly Workbench/it](ExplodedAssembly_Workbench/it.md) , [Fasteners Workbench/it](Fasteners_Workbench/it.md) , [FCGear Workbench/it](FCGear_Workbench/it.md) , [Flamingo Workbench/it](Flamingo_Workbench/it.md) , [How to install additional workbenches/it](How_to_install_additional_workbenches/it.md) , [KicadStepUp Workbench/it](KicadStepUp_Workbench/it.md) , [Lattice2 Workbench/it](Lattice2_Workbench/it.md) , [Macro Kerkythea/it](Macro_Kerkythea/it.md) , [Manipulator Workbench/it](Manipulator_Workbench/it.md) , [MOOC Workbench/it](MOOC_Workbench/it.md) , [OSE 3D Printer Workbench/it](OSE_3D_Printer_Workbench/it.md) , [OSE Piping Workbench/it](OSE_Piping_Workbench/it.md) , [Parts Library Workbench/it](Parts_Library_Workbench/it.md) , [PCB Workbench/it](PCB_Workbench/it.md) , [Plot Axes/it](Plot_Axes/it.md) , [Plot Basic tutorial/it](Plot_Basic_tutorial/it.md) , [Plot Grid/it](Plot_Grid/it.md) , [Plot Labels/it](Plot_Labels/it.md) , [Plot Legend/it](Plot_Legend/it.md) , [Plot Module/it](Plot_Module/it.md) , [Plot MultiAxes tutorial/it](Plot_MultiAxes_tutorial/it.md) , [Plot Positions/it](Plot_Positions/it.md) , [Plot Save/it](Plot_Save/it.md) , [Plot Series/it](Plot_Series/it.md) , [Pyramids and polyhedrons Workbench/it](Pyramids_and_polyhedrons_Workbench/it.md) , [Pyrate Workbench/it](Pyrate_Workbench/it.md) , [Reinforcement Workbench/it](Reinforcement_Workbench/it.md) , [Render project/it](Render_project/it.md) , [Ship Workbench/it](Ship_Workbench/it.md) , [Silk Workbench/it](Silk_Workbench/it.md) , [Symbols Library Workbench/it](Symbols_Library_Workbench/it.md) , [Timber Workbench/it](Timber_Workbench/it.md) , [WebTools Workbench/it](WebTools_Workbench/it.md) , [Workfeature Workbench/it](Workfeature_Workbench/it.md) , , , , [Category:Workbenches/it](Category:Workbenches/it.md) [Category:Addons/it](Category:Addons/it.md) [Category:EM/it](Category:EM/it.md) [Category:Fasteners/it](Category:Fasteners/it.md) [Category:FCGear/it](Category:FCGear/it.md) [Category:SheetMetal/it](Category:SheetMetal/it.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/it diff --git a/wiki/translations/it/Category:FCGear.md b/wiki/translations/it/Category:FCGear.md index c313b9eb6b..505e1c9a24 100644 --- a/wiki/translations/it/Category:FCGear.md +++ b/wiki/translations/it/Category:FCGear.md @@ -6,3 +6,6 @@ All relevant pages to the [FCGear workbench](FCGear_Workbench/it.md) (an [extern [FCGear BevelGear/it](FCGear_BevelGear/it.md) , [FCGear CrownGear/it](FCGear_CrownGear/it.md) , [FCGear CycloideGear/it](FCGear_CycloideGear/it.md) , [FCGear InvoluteGear/it](FCGear_InvoluteGear/it.md) , [FCGear InvoluteRack/it](FCGear_InvoluteRack/it.md) , [FCGear LanternGear/it](FCGear_LanternGear/it.md) , [FCGear TimingGear/it](FCGear_TimingGear/it.md) , [FCGear Workbench/it](FCGear_Workbench/it.md) , [FCGear WormGear/it](FCGear_WormGear/it.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Category:FCGear/it diff --git a/wiki/translations/it/Category:FEM.md b/wiki/translations/it/Category:FEM.md index 24a8121748..f34ea29b4d 100644 --- a/wiki/translations/it/Category:FEM.md +++ b/wiki/translations/it/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/it](FEM_Workbench/it.md) [Add FEM constraint tutorial/it](Add_FEM_constraint_tutorial/it.md) , [Add FEM equation tutorial/it](Add_FEM_equation_tutorial/it.md) , [Analysis of reinforced concrete with FEM/it](Analysis_of_reinforced_concrete_with_FEM/it.md) , [Artwork Fem/it](Artwork_Fem/it.md) , [Extend FEM Module/it](Extend_FEM_Module/it.md) , [FEM Analysis/it](FEM_Analysis/it.md) , [FEM CalculiX Cantilever 3D/it](FEM_CalculiX_Cantilever_3D/it.md) , [FEM CalculiX/it](FEM_CalculiX/it.md) , [FEM ClippingPlaneAdd/it](FEM_ClippingPlaneAdd/it.md) , [FEM ClippingPlaneRemoveAll/it](FEM_ClippingPlaneRemoveAll/it.md) , [FEM Concrete/it](FEM_Concrete/it.md) , [FEM ConstantVacuumPermittivity/it](FEM_ConstantVacuumPermittivity/it.md) , [FEM ConstraintBearing/it](FEM_ConstraintBearing/it.md) , [FEM ConstraintBodyHeatSource/it](FEM_ConstraintBodyHeatSource/it.md) , [FEM ConstraintContact/it](FEM_ConstraintContact/it.md) , [FEM ConstraintDisplacement/it](FEM_ConstraintDisplacement/it.md) , [FEM ConstraintElectrostaticPotential/it](FEM_ConstraintElectrostaticPotential/it.md) , [FEM ConstraintFixed/it](FEM_ConstraintFixed/it.md) , [FEM ConstraintFlowVelocity/it](FEM_ConstraintFlowVelocity/it.md) , [FEM ConstraintFluidBoundary/it](FEM_ConstraintFluidBoundary/it.md) , [FEM ConstraintForce/it](FEM_ConstraintForce/it.md) , [FEM ConstraintGear/it](FEM_ConstraintGear/it.md) , [FEM ConstraintHeatflux/it](FEM_ConstraintHeatflux/it.md) , [FEM ConstraintInitialFlowVelocity/it](FEM_ConstraintInitialFlowVelocity/it.md) , [FEM ConstraintInitialTemperature/it](FEM_ConstraintInitialTemperature/it.md) , [FEM ConstraintPlaneRotation/it](FEM_ConstraintPlaneRotation/it.md) , [FEM ConstraintPressure/it](FEM_ConstraintPressure/it.md) , [FEM ConstraintPulley/it](FEM_ConstraintPulley/it.md) , [FEM ConstraintSectionPrint/it](FEM_ConstraintSectionPrint/it.md) , [FEM ConstraintSelfWeight/it](FEM_ConstraintSelfWeight/it.md) , [FEM ConstraintTemperature/it](FEM_ConstraintTemperature/it.md) , [FEM ConstraintTie/it](FEM_ConstraintTie/it.md) , [FEM ConstraintTransform/it](FEM_ConstraintTransform/it.md) , [FEM CreateNodesSet/it](FEM_CreateNodesSet/it.md) , [FEM Element Types/it](FEM_Element_Types/it.md) , [FEM ElementFluid1D/it](FEM_ElementFluid1D/it.md) , [FEM ElementGeometry1D/it](FEM_ElementGeometry1D/it.md) , [FEM ElementGeometry2D/it](FEM_ElementGeometry2D/it.md) , [FEM ElementRotation1D/it](FEM_ElementRotation1D/it.md) , [FEM EquationElasticity/it](FEM_EquationElasticity/it.md) , [FEM EquationElectrostatic/it](FEM_EquationElectrostatic/it.md) , [FEM EquationFlow/it](FEM_EquationFlow/it.md) , [FEM EquationFlux/it](FEM_EquationFlux/it.md) , [FEM EquationHeat/it](FEM_EquationHeat/it.md) , [FEM Example Capacitance Two Balls/it](FEM_Example_Capacitance_Two_Balls/it.md) , [FEM Examples/it](FEM_Examples/it.md) , [FEM FemMesh2Mesh/it](FEM_FemMesh2Mesh/it.md) , [FEM Install/it](FEM_Install/it.md) , [FEM MaterialFluid/it](FEM_MaterialFluid/it.md) , [FEM MaterialMechanicalNonlinear/it](FEM_MaterialMechanicalNonlinear/it.md) , [FEM MaterialReinforced/it](FEM_MaterialReinforced/it.md) , [FEM MaterialSolid/it](FEM_MaterialSolid/it.md) , [FEM Mesh CalculiX/it](FEM_Mesh_CalculiX/it.md) , [FEM Mesh/it](FEM_Mesh/it.md) , [FEM MeshBoundaryLayer/it](FEM_MeshBoundaryLayer/it.md) , [FEM MeshClear/it](FEM_MeshClear/it.md) , [FEM MeshDisplayInfo/it](FEM_MeshDisplayInfo/it.md) , [FEM MeshGmshFromShape/it](FEM_MeshGmshFromShape/it.md) , [FEM MeshGroup/it](FEM_MeshGroup/it.md) , [FEM MeshNetgenFromShape/it](FEM_MeshNetgenFromShape/it.md) , [FEM MeshRegion/it](FEM_MeshRegion/it.md) , [FEM PostApplyChanges/it](FEM_PostApplyChanges/it.md) , [FEM PostCreateFunctions/it](FEM_PostCreateFunctions/it.md) , [FEM PostFilterClipRegion/it](FEM_PostFilterClipRegion/it.md) , [FEM PostFilterClipScalar/it](FEM_PostFilterClipScalar/it.md) , [FEM PostFilterCutFunction/it](FEM_PostFilterCutFunction/it.md) , [FEM PostFilterDataAlongLine/it](FEM_PostFilterDataAlongLine/it.md) , [FEM PostFilterDataAtPoint/it](FEM_PostFilterDataAtPoint/it.md) , [FEM PostFilterLinearizedStresses/it](FEM_PostFilterLinearizedStresses/it.md) , [FEM PostFilterWarp/it](FEM_PostFilterWarp/it.md) , [FEM PostPipelineFromResult/it](FEM_PostPipelineFromResult/it.md) , [FEM Preferences/it](FEM_Preferences/it.md) , [FEM project/it](FEM_project/it.md) , [FEM ResultShow/it](FEM_ResultShow/it.md) , [FEM ResultsPurge/it](FEM_ResultsPurge/it.md) , [FEM Shear of a Composite Block/it](FEM_Shear_of_a_Composite_Block/it.md) , [FEM Solver/it](FEM_Solver/it.md) , [FEM SolverCalculiX/it](FEM_SolverCalculiX/it.md) , [FEM SolverCalculixCxxtools/it](FEM_SolverCalculixCxxtools/it.md) , [FEM SolverControl/it](FEM_SolverControl/it.md) , [FEM SolverElmer/it](FEM_SolverElmer/it.md) , [FEM SolverRun/it](FEM_SolverRun/it.md) , [FEM SolverZ88/it](FEM_SolverZ88/it.md) , [Template:FEM Tools navi/it](Template:FEM_Tools_navi/it.md) , [FEM Tutorial Python/it](FEM_Tutorial_Python/it.md) , [FEM tutorial/it](FEM_tutorial/it.md) , [FEM Workbench/it](FEM_Workbench/it.md) , [IfcOpenShell/it](IfcOpenShell/it.md) , [IfcPlusPlus/it](IfcPlusPlus/it.md) , [Material editor/it](Material_editor/it.md) , [Material/it](Material/it.md) , [Mesh/it](Mesh/it.md) , [Post-Processing of FEM Results with Paraview/it](Post-Processing_of_FEM_Results_with_Paraview/it.md) , [Transient FEM analysis/it](Transient_FEM_analysis/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:FEM/it diff --git a/wiki/translations/it/Category:Fasteners.md b/wiki/translations/it/Category:Fasteners.md index ac73c5cc64..2968a1b704 100644 --- a/wiki/translations/it/Category:Fasteners.md +++ b/wiki/translations/it/Category:Fasteners.md @@ -6,3 +6,6 @@ This page collects the documentation pages for the [Fasteners Workbench](Fastene [Fasteners Workbench/it](Fasteners_Workbench/it.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Category:Fasteners/it diff --git a/wiki/translations/it/Category:File_Formats.md b/wiki/translations/it/Category:File_Formats.md index d2f3a645f2..3c34d344d8 100644 --- a/wiki/translations/it/Category:File_Formats.md +++ b/wiki/translations/it/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [Arch 3DS/it](Arch_3DS/it.md) , [Arch DAE/it](Arch_DAE/it.md) , [Arch IFC/it](Arch_IFC/it.md) , [Arch JSON/it](Arch_JSON/it.md) , [Arch OBJ/it](Arch_OBJ/it.md) , [Arch SHP/it](Arch_SHP/it.md) , [Asymptote/it](Asymptote/it.md) , [Draft DAT/it](Draft_DAT/it.md) , [Draft DXF/it](Draft_DXF/it.md) , [Draft OCA/it](Draft_OCA/it.md) , [Draft SVG/it](Draft_SVG/it.md) , [DXF/it](DXF/it.md) , [Export to STL or OBJ/it](Export_to_STL_or_OBJ/it.md) , [FCStd/it](FCStd/it.md) , [File Format FCStd/it](File_Format_FCStd/it.md) , [FreeCAD and DWG Import/it](FreeCAD_and_DWG_Import/it.md) , [FreeCAD and DXF Import/it](FreeCAD_and_DXF_Import/it.md) , [FreeCAD and Mesh Import/it](FreeCAD_and_Mesh_Import/it.md) , [Import Export Preferences/it](Import_Export_Preferences/it.md) , [Import Export/it](Import_Export/it.md) , [Import from STL or OBJ/it](Import_from_STL_or_OBJ/it.md) , [Import/Export IFC - compiling IfcOpenShell/it](Import/Export_IFC_-_compiling_IfcOpenShell/it.md) , [Importing From Sketchup/it](Importing_From_Sketchup/it.md) , [Material/it](Material/it.md) , [OpenSCAD CSG tested files/it](OpenSCAD_CSG_tested_files/it.md) , [OpenSCAD CSG/it](OpenSCAD_CSG/it.md) , [PDF/it](PDF/it.md) , [Spreadsheet CSV/it](Spreadsheet_CSV/it.md) , [Std Export/it](Std_Export/it.md) , [Std Import/it](Std_Import/it.md) , [SVG/it](SVG/it.md) + +--- +[documentation index](../README.md) > Category:File Formats/it diff --git a/wiki/translations/it/Category:Glossary.md b/wiki/translations/it/Category:Glossary.md index 4fb744e485..cf2ca5b428 100644 --- a/wiki/translations/it/Category:Glossary.md +++ b/wiki/translations/it/Category:Glossary.md @@ -4,3 +4,6 @@ This category tracks pages that explain definitions of words related to FreeCAD ### Contents: [Assembly/it](Assembly/it.md) , [Body/it](Body/it.md) , [Command/it](Command/it.md) , [Constraint/it](Constraint/it.md) , [Datum/it](Datum/it.md) , [Drawing/it](Drawing/it.md) , [Feature/it](Feature/it.md) , [Glossary/it](Glossary/it.md) , [Manipulator/it](Manipulator/it.md) , [Mesh Feature/it](Mesh_Feature/it.md) , [Mesh/it](Mesh/it.md) , [Model/it](Model/it.md) , [Part/it](Part/it.md) , [Python/it](Python/it.md) , [Shape/it](Shape/it.md) , [Sketch/it](Sketch/it.md) + +--- +[documentation index](../README.md) > Category:Glossary/it diff --git a/wiki/translations/it/Category:Help.md b/wiki/translations/it/Category:Help.md index 9ddf55364a..c3cbf61917 100644 --- a/wiki/translations/it/Category:Help.md +++ b/wiki/translations/it/Category:Help.md @@ -8,3 +8,6 @@ Questa categoria elenca le pagine che contengono informazioni utili su MediaWiki [Help:Editing/it](Help:Editing/it.md) , [Help/it](Help/it.md) , [Key ASCII/it](Key_ASCII/it.md) [Category:Categories/it](Category:Categories/it.md) + +--- +[documentation index](../README.md) > Category:Help/it diff --git a/wiki/translations/it/Category:Hubs.md b/wiki/translations/it/Category:Hubs.md index 8deac8b2e5..121988da73 100644 --- a/wiki/translations/it/Category:Hubs.md +++ b/wiki/translations/it/Category:Hubs.md @@ -8,3 +8,6 @@ Questa categoria raccoglie e riunisce i punti di incontro delle 3 grandi categor [Developer hub/it](Developer_hub/it.md) , [Power users hub/it](Power_users_hub/it.md) , [Scientific literature/it](Scientific_literature/it.md) , [User hub/it](User_hub/it.md) , [Wished tools/it](Wished_tools/it.md) [Category:Categories/it](Category:Categories/it.md) + +--- +[documentation index](../README.md) > Category:Hubs/it diff --git a/wiki/translations/it/Category:Icon.md b/wiki/translations/it/Category:Icon.md index de1227ee09..86f3874de1 100644 --- a/wiki/translations/it/Category:Icon.md +++ b/wiki/translations/it/Category:Icon.md @@ -6,3 +6,6 @@ Questa categoria contiene le **immagini icone**. [Artwork Erroneous/it](Artwork_Erroneous/it.md) , [Artwork/it](Artwork/it.md) , [Key ASCII/it](Key_ASCII/it.md) [Category:Image/it](Category:Image/it.md) + +--- +[documentation index](../README.md) > Category:Icon/it diff --git a/wiki/translations/it/Category:Image.md b/wiki/translations/it/Category:Image.md index d87ac080f4..4d5303ddb0 100644 --- a/wiki/translations/it/Category:Image.md +++ b/wiki/translations/it/Category:Image.md @@ -6,3 +6,6 @@ This category is the top level category for **images**. It should not contain an [Artwork Image/it](Artwork_Image/it.md) , [Bitmap/it](Bitmap/it.md) , [Image CreateImagePlane/it](Image_CreateImagePlane/it.md) , [Image Open/it](Image_Open/it.md) , [Image Scaling/it](Image_Scaling/it.md) , [Image Workbench/it](Image_Workbench/it.md) , [Category:Categories/it](Category:Categories/it.md) [Category:Icon/it](Category:Icon/it.md) + +--- +[documentation index](../README.md) > Category:Image/it diff --git a/wiki/translations/it/Category:Inspection.md b/wiki/translations/it/Category:Inspection.md index 2cce89ac10..b00e21ee3c 100644 --- a/wiki/translations/it/Category:Inspection.md +++ b/wiki/translations/it/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench/it](Inspection_Wo [Artwork Inspection/it](Artwork_Inspection/it.md) , [Inspection Workbench/it](Inspection_Workbench/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Inspection/it diff --git a/wiki/translations/it/Category:Interface.md b/wiki/translations/it/Category:Interface.md index dd655a83b7..8f91321d64 100644 --- a/wiki/translations/it/Category:Interface.md +++ b/wiki/translations/it/Category:Interface.md @@ -4,3 +4,6 @@ This category lists pages that describe the FreeCAD interface. ### Contents: [3D view/it](3D_view/it.md) , [Combo view/it](Combo_view/it.md) , [DAG view/it](DAG_view/it.md) , [Interface Customization/it](Interface_Customization/it.md) , [Template:Interface navi/it](Template:Interface_navi/it.md) , [Interface/it](Interface/it.md) , [Main view area/it](Main_view_area/it.md) , [Property editor/it](Property_editor/it.md) , [Python console/it](Python_console/it.md) , [Report view/it](Report_view/it.md) , [Selection view/it](Selection_view/it.md) , [Standard Menu/it](Standard_Menu/it.md) , [Status bar/it](Status_bar/it.md) , [Std Workbench/it](Std_Workbench/it.md) , [Task panel/it](Task_panel/it.md) , [Tree view/it](Tree_view/it.md) + +--- +[documentation index](../README.md) > Category:Interface/it diff --git a/wiki/translations/it/Category:Macros.md b/wiki/translations/it/Category:Macros.md index 038cb22608..177878ef90 100644 --- a/wiki/translations/it/Category:Macros.md +++ b/wiki/translations/it/Category:Macros.md @@ -6,3 +6,6 @@ Questa categoria contiene le macro per estendere l\'installazione FreeCAD con nu [Macro 3D Parametric Curve/it](Macro_3D_Parametric_Curve/it.md) , [Macro 3d Printer Slicer Individual Parts/it](Macro_3d_Printer_Slicer_Individual_Parts/it.md) , [Macro 3d Printer Slicer/it](Macro_3d_Printer_Slicer/it.md) , [Macro Airfoil Import & Scale/it](Macro_Airfoil_Import_&_Scale/it.md) , [Macro Alias Manager/it](Macro_Alias_Manager/it.md) , [Macro Align Camera to Working Plane/it](Macro_Align_Camera_to_Working_Plane/it.md) , [Macro Align Face Object to View/it](Macro_Align_Face_Object_to_View/it.md) , [Macro Align Object to View/it](Macro_Align_Object_to_View/it.md) , [Macro Align View to Face/it](Macro_Align_View_to_Face/it.md) , [Macro Align Working Plane to Camera/it](Macro_Align_Working_Plane_to_Camera/it.md) , [Macro Animated Constrain/it](Macro_Animated_Constrain/it.md) , [Macro Apothem Based Prism GUI/it](Macro_Apothem_Based_Prism_GUI/it.md) , [Macro Arch Axis System Repartition/it](Macro_Arch_Axis_System_Repartition/it.md) , [Macro ArrayCopy/it](Macro_ArrayCopy/it.md) , [Macro Assemblage Imprimante 3D/it](Macro_Assemblage_Imprimante_3D/it.md) , [Macro Assembly/it](Macro_Assembly/it.md) , [Macro at Startup/it](Macro_at_Startup/it.md) , [Macro Automatic drawing/it](Macro_Automatic_drawing/it.md) , [Macro BOLTS/it](Macro_BOLTS/it.md) , [Macro BoundingBox Tracing/it](Macro_BoundingBox_Tracing/it.md) , [Macro Build Utility/it](Macro_Build_Utility/it.md) , [Macro Cabinets32/it](Macro_Cabinets32/it.md) , [Macro CartoucheFC 2/it](Macro_CartoucheFC_2/it.md) , [Macro CartoucheFC Full/it](Macro_CartoucheFC_Full/it.md) , [Macro CartoucheFC/it](Macro_CartoucheFC/it.md) , [Macro Center Align Objects with Faces or Edges/it](Macro_Center_Align_Objects_with_Faces_or_Edges/it.md) , [Macro CenterFace/it](Macro_CenterFace/it.md) , [Macro CenterOfMass/it](Macro_CenterOfMass/it.md) , [Macro Circle/it](Macro_Circle/it.md) , [Macro CirclePlus/it](Macro_CirclePlus/it.md) , [Macro CloneConvert/it](Macro_CloneConvert/it.md) , [Macro Compound Plus/it](Macro_Compound_Plus/it.md) , [Macro Connect And Sweep/it](Macro_Connect_And_Sweep/it.md) , [Macro Constraint Draft/it](Macro_Constraint_Draft/it.md) , [Macro Copy3DViewToClipboard/it](Macro_Copy3DViewToClipboard/it.md) , [Macro Corner shapes wizard/it](Macro_Corner_shapes_wizard/it.md) , [Macro Corner shapes wizard/update/it](Macro_Corner_shapes_wizard/update/it.md) , [Macro crank simul/it](Macro_crank_simul/it.md) , [Macro Creating faces from a DXF file/it](Macro_Creating_faces_from_a_DXF_file/it.md) , [Macro cross section/it](Macro_cross_section/it.md) , [Macro Cut Circle/it](Macro_Cut_Circle/it.md) , [Macro Cut Line/it](Macro_Cut_Line/it.md) , [Macro DeepCopy/it](Macro_DeepCopy/it.md) , [Macro Delta xyz/it](Macro_Delta_xyz/it.md) , [Macro documentation/it](Macro_documentation/it.md) , [Macro Draft Circle 3 Points 3D/it](Macro_Draft_Circle_3_Points_3D/it.md) , [Macro Draft Circle 3 Points/it](Macro_Draft_Circle_3_Points/it.md) , [Macro Draw 2D Function/it](Macro_Draw_2D_Function/it.md) , [Macro Draw Parametric 2D Function/it](Macro_Draw_Parametric_2D_Function/it.md) , [Macro Dump Objects/it](Macro_Dump_Objects/it.md) , [Macro Duplicate Selection/it](Macro_Duplicate_Selection/it.md) , [Macro DXF to Face and Sketch/it](Macro_DXF_to_Face_and_Sketch/it.md) , [Macro Easy cutouts for Enclosure Design/it](Macro_Easy_cutouts_for_Enclosure_Design/it.md) , [Macro EdgesToArc/it](Macro_EdgesToArc/it.md) , [Macro Ellipse-Center+2Points/it](Macro_Ellipse-Center+2Points/it.md) , [Macro ExpandTreeItem/it](Macro_ExpandTreeItem/it.md) , [Macro export transient FEM results/it](Macro_export_transient_FEM_results/it.md) , [Macro Extract Wires from Mesh/it](Macro_Extract_Wires_from_Mesh/it.md) , [Macro FaceToSketch/it](Macro_FaceToSketch/it.md) , [Macro FC Convert Lines/it](Macro_FC_Convert_Lines/it.md) , [Macro FC element selector/it](Macro_FC_element_selector/it.md) , [Macro FCCamera/it](Macro_FCCamera/it.md) , [Macro FCCamGroover/it](Macro_FCCamGroover/it.md) , [Macro FCCircularText/it](Macro_FCCircularText/it.md) , [Macro FCGear/it](Macro_FCGear/it.md) , [Macro FCHoneycombMaker/it](Macro_FCHoneycombMaker/it.md) , [Macro FCInfo Alternate Linux/it](Macro_FCInfo_Alternate_Linux/it.md) , [Macro FCInfo/it](Macro_FCInfo/it.md) , [Macro FCInfoGlass/it](Macro_FCInfoGlass/it.md) , [Macro FCInfoToMouse/it](Macro_FCInfoToMouse/it.md) , [Macro FCSpreadSheet Extract/it](Macro_FCSpreadSheet_Extract/it.md) , [Macro FCSpring Helix Variable/it](Macro_FCSpring_Helix_Variable/it.md) , [Macro FCSpring On Surface/it](Macro_FCSpring_On_Surface/it.md) , [Macro FCTreeView/it](Macro_FCTreeView/it.md) , [Macro FCWire To Volume/it](Macro_FCWire_To_Volume/it.md) , [Macro findConfigFiles/it](Macro_findConfigFiles/it.md) , [Macro FlattenWire/it](Macro_FlattenWire/it.md) , [Macro FlattenWire3Points/it](Macro_FlattenWire3Points/it.md) , [Macro Fonts Win10 PYMP/it](Macro_Fonts_Win10_PYMP/it.md) , [Macro ForceRecompute/it](Macro_ForceRecompute/it.md) , [Macro FreeCAD to Kerkythea/it](Macro_FreeCAD_to_Kerkythea/it.md) , [Macro Geneva Wheel GUI/it](Macro_Geneva_Wheel_GUI/it.md) , [Macro Geneva Wheel/it](Macro_Geneva_Wheel/it.md) , [Macro Geodesic Dome/it](Macro_Geodesic_Dome/it.md) , [Macro Global Variable Watcher/it](Macro_Global_Variable_Watcher/it.md) , [Macro GMSH/it](Macro_GMSH/it.md) , [Macro GuiResetToolbars/it](Macro_GuiResetToolbars/it.md) , [Macro Guitar fretboard/it](Macro_Guitar_fretboard/it.md) , [Macro Guitar Nut/it](Macro_Guitar_Nut/it.md) , [Macro Half turn stairs/it](Macro_Half_turn_stairs/it.md) , [Macro Half-Hull Model/it](Macro_Half-Hull_Model/it.md) , [Macro HealArcs/it](Macro_HealArcs/it.md) , [Macro HiddenAlls/it](Macro_HiddenAlls/it.md) , [Macro HighlightCommon/it](Macro_HighlightCommon/it.md) , [Macro HighlightDifference/it](Macro_HighlightDifference/it.md) , [Macro HilbertCurve/it](Macro_HilbertCurve/it.md) , [Macro hinge/it](Macro_hinge/it.md) , [Macro If Selected Stay If Not Then Delete/it](Macro_If_Selected_Stay_If_Not_Then_Delete/it.md) , [Macro Image Scaling/it](Macro_Image_Scaling/it.md) , [Macro JointWire/it](Macro_JointWire/it.md) , [Macro Kerkythea/it](Macro_Kerkythea/it.md) , [Macro Line Length/it](Macro_Line_Length/it.md) , [Macro Loft/it](Macro_Loft/it.md) , [Macro MacroMenu/it](Macro_MacroMenu/it.md) , [Macro Make Arc 3 Points/it](Macro_Make_Arc_3_Points/it.md) , [Macro Make Circle 3 Points/it](Macro_Make_Circle_3_Points/it.md) , [Macro Make Cube/it](Macro_Make_Cube/it.md) , [Macro Manage Navigational Style/it](Macro_Manage_Navigational_Style/it.md) , [Macro Manage Navigational Style2/it](Macro_Manage_Navigational_Style2/it.md) , [Macro MatrixTransform/it](Macro_MatrixTransform/it.md) , [Macro MeasureCircle/it](Macro_MeasureCircle/it.md) , [Macro Megaminx/it](Macro_Megaminx/it.md) , [Macro merge duplicate materials/it](Macro_merge_duplicate_materials/it.md) , [Macro MeshToPart/it](Macro_MeshToPart/it.md) , [Macro MessageBox/it](Macro_MessageBox/it.md) , [Macro Mouse Cross/it](Macro_Mouse_Cross/it.md) , [Macro Mouse over cb/it](Macro_Mouse_over_cb/it.md) , [Macro Normal Vector/it](Macro_Normal_Vector/it.md) , [Macro ObjectInfo/it](Macro_ObjectInfo/it.md) , [Macro Overlap/it](Macro_Overlap/it.md) , [Macro PartsLibrary/it](Macro_PartsLibrary/it.md) , [Macro PartToVRML/it](Macro_PartToVRML/it.md) , [Macro Perpendicular To Wire/it](Macro_Perpendicular_To_Wire/it.md) , [Macro PlacementAbsolufy/it](Macro_PlacementAbsolufy/it.md) , [Macro Polyhedrons/it](Macro_Polyhedrons/it.md) , [Macro Print SceneGraph/it](Macro_Print_SceneGraph/it.md) , [Macro PropertyMemo/it](Macro_PropertyMemo/it.md) , [Macro Pyramid/it](Macro_Pyramid/it.md) , [Macro Python Assistant Window/it](Macro_Python_Assistant_Window/it.md) , [Macro Recompute Profiler/it](Macro_Recompute_Profiler/it.md) , [Macro Rectellipse/it](Macro_Rectellipse/it.md) , [Macro Remove parametric history/it](Macro_Remove_parametric_history/it.md) , [Macro Replace Part in Assembly/it](Macro_Replace_Part_in_Assembly/it.md) , [Macro Repro Wire/it](Macro_Repro_Wire/it.md) , [Macro Rotate To Point/it](Macro_Rotate_To_Point/it.md) , [Macro Rotate View Free/it](Macro_Rotate_View_Free/it.md) , [Macro Rotate View/it](Macro_Rotate_View/it.md) , [Macro Rotate ViewAxonometric/it](Macro_Rotate_ViewAxonometric/it.md) , [Macro Rubik Cube/it](Macro_Rubik_Cube/it.md) , [Macro Screen Wiki/it](Macro_Screen_Wiki/it.md) , [Macro screw maker1 2/it](Macro_screw_maker1_2/it.md) , [Macro Section/it](Macro_Section/it.md) , [Macro Select Hovering/it](Macro_Select_Hovering/it.md) , [Macro SelectVisible/it](Macro_SelectVisible/it.md) , [Macro Shake Sketch/it](Macro_Shake_Sketch/it.md) , [Macro Sheet Metal Unfolder/it](Macro_Sheet_Metal_Unfolder/it.md) , [Macro SimpleProperties/it](Macro_SimpleProperties/it.md) , [Macro Site From Contours/it](Macro_Site_From_Contours/it.md) , [Macro SketchUnmap/it](Macro_SketchUnmap/it.md) , [Macro Snip/it](Macro_Snip/it.md) , [Macro Solid Sweep/it](Macro_Solid_Sweep/it.md) , [Macro SplitPropEditor/it](Macro_SplitPropEditor/it.md) , [Macro SpreadsheetTools/it](Macro_SpreadsheetTools/it.md) , [Macro Spring/it](Macro_Spring/it.md) , [Macro Stairs/it](Macro_Stairs/it.md) , [Macro StraightenObject/it](Macro_StraightenObject/it.md) , [Macro SuperWire/it](Macro_SuperWire/it.md) , [Macro Texture Objects/it](Macro_Texture_Objects/it.md) , [Macro Texture/it](Macro_Texture/it.md) , [Macro Toggle Drawstyle Optimized/it](Macro_Toggle_Drawstyle_Optimized/it.md) , [Macro Toggle Drawstyle/it](Macro_Toggle_Drawstyle/it.md) , [Macro Toggle Panels Visibility/it](Macro_Toggle_Panels_Visibility/it.md) , [Macro Toggle Visibility/it](Macro_Toggle_Visibility/it.md) , [Macro Toggle Visibility2 1-2/it](Macro_Toggle_Visibility2_1-2/it.md) , [Macro Toggle Visibility2 2-2/it](Macro_Toggle_Visibility2_2-2/it.md) , [Macro TreeToAscii/it](Macro_TreeToAscii/it.md) , [Macro Triangle AH/it](Macro_Triangle_AH/it.md) , [Macro Unbind Numpad Shortcuts/it](Macro_Unbind_Numpad_Shortcuts/it.md) , [Macro Unfold Box/it](Macro_Unfold_Box/it.md) , [Macro Unroll Ruled Surface/it](Macro_Unroll_Ruled_Surface/it.md) , [Macro View Rotation/it](Macro_View_Rotation/it.md) , [Macro Visibility Manager/it](Macro_Visibility_Manager/it.md) , [Macro VisibleAlls/it](Macro_VisibleAlls/it.md) , [Macro WireXYZ/it](Macro_WireXYZ/it.md) , [Macro Wiring And Hoses/it](Macro_Wiring_And_Hoses/it.md) , [Macro WorkFeatures/it](Macro_WorkFeatures/it.md) , [Template:Macro/it](Template:Macro/it.md) , [Macros recipes/it](Macros_recipes/it.md) , [Macros/it](Macros/it.md) , [Misc templates Full/it](Misc_templates_Full/it.md) , [Qt Example/it](Qt_Example/it.md) , [Standard Parts/it](Standard_Parts/it.md) , [Svg Namespace/it](Svg_Namespace/it.md) [Category:Addons/it](Category:Addons/it.md) [Category:User Documentation/it](Category:User_Documentation/it.md) [Category:Categories/it](Category:Categories/it.md) + +--- +[documentation index](../README.md) > Category:Macros/it diff --git a/wiki/translations/it/Category:Manual.md b/wiki/translations/it/Category:Manual.md index 36313bf66b..4fe91c41bf 100644 --- a/wiki/translations/it/Category:Manual.md +++ b/wiki/translations/it/Category:Manual.md @@ -4,3 +4,6 @@ Questa categoria contiene tutte le pagine del manuale di FreeCAD ### Contents: [Manual:A gentle introduction/it](Manual:A_gentle_introduction/it.md) , [Manual:All workbenches at a glance/it](Manual:All_workbenches_at_a_glance/it.md) , [Manual:BIM modeling/it](Manual:BIM_modeling/it.md) , [Manual:Creating and manipulating geometry/it](Manual:Creating_and_manipulating_geometry/it.md) , [Manual:Creating FEM analyses/it](Manual:Creating_FEM_analyses/it.md) , [Manual:Creating interface tools/it](Manual:Creating_interface_tools/it.md) , [Manual:Creating parametric objects/it](Manual:Creating_parametric_objects/it.md) , [Manual:Creating renderings/it](Manual:Creating_renderings/it.md) , [Manual:Generating 2D drawings/it](Manual:Generating_2D_drawings/it.md) , [Manual:Import and export to other filetypes/it](Manual:Import_and_export_to_other_filetypes/it.md) , [Manual:Installing/it](Manual:Installing/it.md) , [Manual:Introduction/it](Manual:Introduction/it.md) , [Manual:Modeling for product design/it](Manual:Modeling_for_product_design/it.md) , [Manual:Navigating in the 3D view/it](Manual:Navigating_in_the_3D_view/it.md) , [Manual:Parametric objects/it](Manual:Parametric_objects/it.md) , [Manual:Preparing models for 3D printing/it](Manual:Preparing_models_for_3D_printing/it.md) , [Manual:Summary/it](Manual:Summary/it.md) , [Manual:The Community/it](Manual:The_Community/it.md) , [Manual:The FreeCAD document/it](Manual:The_FreeCAD_document/it.md) , [Manual:The FreeCAD Interface/it](Manual:The_FreeCAD_Interface/it.md) , [Template:Manual:TOC/it](Template:Manual:TOC/it.md) , [Manual:Traditional 2D drafting/it](Manual:Traditional_2D_drafting/it.md) , [Manual:Traditional modeling, the CSG way/it](Manual:Traditional_modeling,_the_CSG_way/it.md) , [Manual:Using spreadsheets/it](Manual:Using_spreadsheets/it.md) , [Manual:What is FreeCAD/it](Manual:What_is_FreeCAD/it.md) + +--- +[documentation index](../README.md) > Category:Manual/it diff --git a/wiki/translations/it/Category:Mesh.md b/wiki/translations/it/Category:Mesh.md index 9512c97e4e..e483feb7a2 100644 --- a/wiki/translations/it/Category:Mesh.md +++ b/wiki/translations/it/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/it](Mesh_Workbench/it. [Artwork Mesh/it](Artwork_Mesh/it.md) , [Artwork MeshPart/it](Artwork_MeshPart/it.md) , [Asymptote/it](Asymptote/it.md) , [Manual:Preparing models for 3D printing/it](Manual:Preparing_models_for_3D_printing/it.md) , [Mesh AddFacet/it](Mesh_AddFacet/it.md) , [Mesh BoundingBox/it](Mesh_BoundingBox/it.md) , [Mesh BuildRegularSolid/it](Mesh_BuildRegularSolid/it.md) , [Mesh CrossSections/it](Mesh_CrossSections/it.md) , [Mesh CurvatureInfo/it](Mesh_CurvatureInfo/it.md) , [Mesh Decimating/it](Mesh_Decimating/it.md) , [Mesh Difference/it](Mesh_Difference/it.md) , [Mesh EvaluateFacet/it](Mesh_EvaluateFacet/it.md) , [Mesh EvaluateSolid/it](Mesh_EvaluateSolid/it.md) , [Mesh Evaluation/it](Mesh_Evaluation/it.md) , [Mesh Export/it](Mesh_Export/it.md) , [Mesh Feature/it](Mesh_Feature/it.md) , [Mesh FillInteractiveHole/it](Mesh_FillInteractiveHole/it.md) , [Mesh FillupHoles/it](Mesh_FillupHoles/it.md) , [Mesh FlipNormals/it](Mesh_FlipNormals/it.md) , [Mesh FromPartShape/it](Mesh_FromPartShape/it.md) , [Mesh HarmonizeNormals/it](Mesh_HarmonizeNormals/it.md) , [Mesh Import/it](Mesh_Import/it.md) , [Mesh Intersection/it](Mesh_Intersection/it.md) , [Mesh Merge/it](Mesh_Merge/it.md) , [Mesh MeshObject/it](Mesh_MeshObject/it.md) , [Mesh PolyCut/it](Mesh_PolyCut/it.md) , [Mesh PolyTrim/it](Mesh_PolyTrim/it.md) , [Mesh RemeshGmsh/it](Mesh_RemeshGmsh/it.md) , [Mesh RemoveCompByHand/it](Mesh_RemoveCompByHand/it.md) , [Mesh RemoveComponents/it](Mesh_RemoveComponents/it.md) , [Mesh Scale/it](Mesh_Scale/it.md) , [Mesh Scripting/it](Mesh_Scripting/it.md) , [Mesh SectionByPlane/it](Mesh_SectionByPlane/it.md) , [Mesh Segmentation/it](Mesh_Segmentation/it.md) , [Mesh SegmentationBestFit/it](Mesh_SegmentationBestFit/it.md) , [Mesh Smoothing/it](Mesh_Smoothing/it.md) , [Mesh SplitComponents/it](Mesh_SplitComponents/it.md) , [Mesh to Part/it](Mesh_to_Part/it.md) , [Template:Mesh Tools navi/it](Template:Mesh_Tools_navi/it.md) , [Mesh TrimByPlane/it](Mesh_TrimByPlane/it.md) , [Mesh Union/it](Mesh_Union/it.md) , [Mesh VertexCurvature/it](Mesh_VertexCurvature/it.md) , [Mesh Workbench/it](Mesh_Workbench/it.md) , [Mesh/it](Mesh/it.md) , [MeshPart CreateFlatFace/it](MeshPart_CreateFlatFace/it.md) , [MeshPart CreateFlatMesh/it](MeshPart_CreateFlatMesh/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Mesh/it diff --git a/wiki/translations/it/Category:News.md b/wiki/translations/it/Category:News.md index 20cad18641..e26df6ca08 100644 --- a/wiki/translations/it/Category:News.md +++ b/wiki/translations/it/Category:News.md @@ -8,3 +8,6 @@ Questa categoria contiene gli articoli con notizie e informazioni relative a Fre [History/it](History/it.md) , [Release notes 0.11/it](Release_notes_0.11/it.md) , [Release notes 0.12/it](Release_notes_0.12/it.md) , [Release notes 0.13/it](Release_notes_0.13/it.md) , [Release notes 0.14/it](Release_notes_0.14/it.md) , [Release notes 0.15/it](Release_notes_0.15/it.md) , [Release notes 0.16/it](Release_notes_0.16/it.md) , [Release notes 0.17/it](Release_notes_0.17/it.md) , [Release notes 0.18/it](Release_notes_0.18/it.md) , [Release notes 0.19/it](Release_notes_0.19/it.md) , [Release notes 0.20/it](Release_notes_0.20/it.md) [Category:Categories/it](Category:Categories/it.md) + +--- +[documentation index](../README.md) > Category:News/it diff --git a/wiki/translations/it/Category:Obsolete_Workbenches.md b/wiki/translations/it/Category:Obsolete_Workbenches.md index 8451c03607..767ebd74ff 100644 --- a/wiki/translations/it/Category:Obsolete_Workbenches.md +++ b/wiki/translations/it/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/it](Drawing_Workbenc [Complete Workbench/it](Complete_Workbench/it.md) , [Drawing Workbench/it](Drawing_Workbench/it.md) , [ManualDrawing/it](ManualDrawing/it.md) , , , [Category:Obsolete Workbenches/it](Category:Obsolete_Workbenches/it.md) [Category:Complete/it](Category:Complete/it.md) [Category:Drawing/it](Category:Drawing/it.md) [Category:Obsolete Workbenches/it](Category:Obsolete_Workbenches/it.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/it diff --git a/wiki/translations/it/Category:Obsolete_page.md b/wiki/translations/it/Category:Obsolete_page.md index 3ba4b25e02..4bc63dcd23 100644 --- a/wiki/translations/it/Category:Obsolete_page.md +++ b/wiki/translations/it/Category:Obsolete_page.md @@ -1,6 +1,7 @@ # Category:Obsolete page/it - - Questa categoria elenca le pagine che sono obsolete rispetto alla versione corrente di FreeCAD. Sono candidate alla cancellazione, dopo aver discusso sul forum di FreeCAD \... ### Contents: + +--- +[documentation index](../README.md) > Category:Obsolete page/it diff --git a/wiki/translations/it/Category:OpenSCAD.md b/wiki/translations/it/Category:OpenSCAD.md index 6d621b34e7..7f259b4a85 100644 --- a/wiki/translations/it/Category:OpenSCAD.md +++ b/wiki/translations/it/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/it](OpenSCAD_Workb [Artwork OpenSCAD/it](Artwork_OpenSCAD/it.md) , [Import OpenSCAD code/it](Import_OpenSCAD_code/it.md) , [OpenSCAD AddOpenSCADElement/it](OpenSCAD_AddOpenSCADElement/it.md) , [OpenSCAD ColorCodeShape/it](OpenSCAD_ColorCodeShape/it.md) , [OpenSCAD CSG tested files/it](OpenSCAD_CSG_tested_files/it.md) , [OpenSCAD CSG/it](OpenSCAD_CSG/it.md) , [OpenSCAD Edgestofaces/it](OpenSCAD_Edgestofaces/it.md) , [OpenSCAD ExpandPlacements/it](OpenSCAD_ExpandPlacements/it.md) , [OpenSCAD ExplodeGroup/it](OpenSCAD_ExplodeGroup/it.md) , [OpenSCAD Hull/it](OpenSCAD_Hull/it.md) , [OpenSCAD IncreaseToleranceFeature/it](OpenSCAD_IncreaseToleranceFeature/it.md) , [OpenSCAD MeshBoolean/it](OpenSCAD_MeshBoolean/it.md) , [OpenSCAD Minkowski/it](OpenSCAD_Minkowski/it.md) , [OpenSCAD MirrorMeshFeature/it](OpenSCAD_MirrorMeshFeature/it.md) , [OpenSCAD Preferences/it](OpenSCAD_Preferences/it.md) , [OpenSCAD RefineShapeFeature/it](OpenSCAD_RefineShapeFeature/it.md) , [OpenSCAD RemoveSubtree/it](OpenSCAD_RemoveSubtree/it.md) , [OpenSCAD ReplaceObject/it](OpenSCAD_ReplaceObject/it.md) , [OpenSCAD ResizeMeshFeature/it](OpenSCAD_ResizeMeshFeature/it.md) , [OpenSCAD ScaleMeshFeature/it](OpenSCAD_ScaleMeshFeature/it.md) , [Template:OpenSCAD Tools navi/it](Template:OpenSCAD_Tools_navi/it.md) , [OpenSCAD Workbench/it](OpenSCAD_Workbench/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/it diff --git a/wiki/translations/it/Category:Packaging.md b/wiki/translations/it/Category:Packaging.md index 7e31cec7f6..d553129c3a 100644 --- a/wiki/translations/it/Category:Packaging.md +++ b/wiki/translations/it/Category:Packaging.md @@ -6,3 +6,6 @@ This category collects pages related to packing FreeCAD for different platforms, [AppImage/it](AppImage/it.md) , [Debian development/it](Debian_development/it.md) , [Debian Unstable/it](Debian_Unstable/it.md) , [Git buildpackage/it](Git_buildpackage/it.md) , [Linux packaging/it](Linux_packaging/it.md) , [Packaging/it](Packaging/it.md) [Category:Developer\_Documentation/it](Category:Developer_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Packaging/it diff --git a/wiki/translations/it/Category:Part.md b/wiki/translations/it/Category:Part.md index e1dbffd3a7..29cda8922b 100644 --- a/wiki/translations/it/Category:Part.md +++ b/wiki/translations/it/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/it](Part_Workbench/it.m [Aeroplane/it](Aeroplane/it.md) , [Artwork Part/it](Artwork_Part/it.md) , [Basic modeling tutorial/it](Basic_modeling_tutorial/it.md) , [Constructive solid geometry/it](Constructive_solid_geometry/it.md) , [Draft ShapeString tutorial/it](Draft_ShapeString_tutorial/it.md) , [Feature/it](Feature/it.md) , [Part and PartDesign/it](Part_and_PartDesign/it.md) , [Part Boolean/it](Part_Boolean/it.md) , [Part BooleanFragments/it](Part_BooleanFragments/it.md) , [Part Box/it](Part_Box/it.md) , [Part BoxSelection/it](Part_BoxSelection/it.md) , [Part Builder/it](Part_Builder/it.md) , [Part Chamfer/it](Part_Chamfer/it.md) , [Part CheckGeometry/it](Part_CheckGeometry/it.md) , [Part Circle/it](Part_Circle/it.md) , [Part Common/it](Part_Common/it.md) , [Part CompCompoundTools/it](Part_CompCompoundTools/it.md) , [Part CompJoinFeatures/it](Part_CompJoinFeatures/it.md) , [Part CompOffsetTools/it](Part_CompOffsetTools/it.md) , [Part Compound/it](Part_Compound/it.md) , [Part CompoundFilter/it](Part_CompoundFilter/it.md) , [Part CompSplittingTools/it](Part_CompSplittingTools/it.md) , [Part Cone/it](Part_Cone/it.md) , [Part CrossSections/it](Part_CrossSections/it.md) , [Part Cut/it](Part_Cut/it.md) , [Part Cylinder/it](Part_Cylinder/it.md) , [Part Defeaturing/it](Part_Defeaturing/it.md) , [Part EditAttachment/it](Part_EditAttachment/it.md) , [Part ElementCopy/it](Part_ElementCopy/it.md) , [Part Ellipse/it](Part_Ellipse/it.md) , [Part Ellipsoid/it](Part_Ellipsoid/it.md) , [Part ExplodeCompound/it](Part_ExplodeCompound/it.md) , [Part Export/it](Part_Export/it.md) , [Part Extrude/it](Part_Extrude/it.md) , [Part Feature/it](Part_Feature/it.md) , [Part Fillet/it](Part_Fillet/it.md) , [Part Fuse/it](Part_Fuse/it.md) , [Part Helix/it](Part_Helix/it.md) , [Part Import/it](Part_Import/it.md) , [Part JoinConnect/it](Part_JoinConnect/it.md) , [Part JoinCutout/it](Part_JoinCutout/it.md) , [Part JoinEmbed/it](Part_JoinEmbed/it.md) , [Part Line/it](Part_Line/it.md) , [Part Loft Technical Details/it](Part_Loft_Technical_Details/it.md) , [Part Loft/it](Part_Loft/it.md) , [Part MakeFace/it](Part_MakeFace/it.md) , [Part MakeSolid/it](Part_MakeSolid/it.md) , [Part Measure Angular/it](Part_Measure_Angular/it.md) , [Part Measure Clear All/it](Part_Measure_Clear_All/it.md) , [Part Measure Linear/it](Part_Measure_Linear/it.md) , [Part Measure Menu/it](Part_Measure_Menu/it.md) , [Part Measure Refresh/it](Part_Measure_Refresh/it.md) , [Part Measure Toggle 3d/it](Part_Measure_Toggle_3d/it.md) , [Part Measure Toggle All/it](Part_Measure_Toggle_All/it.md) , [Part Measure Toggle Delta/it](Part_Measure_Toggle_Delta/it.md) , [Part Mirror/it](Part_Mirror/it.md) , [Part Module/it](Part_Module/it.md) , [Part Offset/it](Part_Offset/it.md) , [Part Offset2D/it](Part_Offset2D/it.md) , [Part Part2DObject/it](Part_Part2DObject/it.md) , [Part Plane/it](Part_Plane/it.md) , [Part Point/it](Part_Point/it.md) , [Part PointsFromMesh/it](Part_PointsFromMesh/it.md) , [Part Primitives/it](Part_Primitives/it.md) , [Part Prism/it](Part_Prism/it.md) , [Part ProjectionOnSurface/it](Part_ProjectionOnSurface/it.md) , [Part RefineShape/it](Part_RefineShape/it.md) , [Part RegularPolygon/it](Part_RegularPolygon/it.md) , [Part ReverseShapes/it](Part_ReverseShapes/it.md) , [Part Revolve/it](Part_Revolve/it.md) , [Part RuledSurface/it](Part_RuledSurface/it.md) , [Part scripting/it](Part_scripting/it.md) , [Part Section/it](Part_Section/it.md) , [Part ShapeFromMesh/it](Part_ShapeFromMesh/it.md) , [Part SimpleCopy/it](Part_SimpleCopy/it.md) , [Part Slice/it](Part_Slice/it.md) , [Part SliceApart/it](Part_SliceApart/it.md) , [Part Sphere/it](Part_Sphere/it.md) , [Part Spiral/it](Part_Spiral/it.md) , [Part Sweep/it](Part_Sweep/it.md) , [Part Thickness/it](Part_Thickness/it.md) , [Template:Part Tools navi/it](Template:Part_Tools_navi/it.md) , [Part TopoShape/it](Part_TopoShape/it.md) , [Part Torus/it](Part_Torus/it.md) , [Part TransformedCopy/it](Part_TransformedCopy/it.md) , [Part Tube/it](Part_Tube/it.md) , [Part Wedge/it](Part_Wedge/it.md) , [Part XOR/it](Part_XOR/it.md) , [Shape/it](Shape/it.md) , [Thread for Screw Tutorial/it](Thread_for_Screw_Tutorial/it.md) , [Topological naming problem/it](Topological_naming_problem/it.md) , [Whiffle Ball tutorial/it](Whiffle_Ball_tutorial/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Part/it diff --git a/wiki/translations/it/Category:PartDesign.md b/wiki/translations/it/Category:PartDesign.md index 67308b44c3..d7e52b507a 100644 --- a/wiki/translations/it/Category:PartDesign.md +++ b/wiki/translations/it/Category:PartDesign.md @@ -6,3 +6,6 @@ This category includes FreeCAD pages related to [PartDesign Workbench/it](PartDe [Artwork PartDesign/it](Artwork_PartDesign/it.md) , [Basic Attachment Tutorial/it](Basic_Attachment_Tutorial/it.md) , [Basic Part Design Tutorial/it](Basic_Part_Design_Tutorial/it.md) , [Body/it](Body/it.md) , [Creating a simple part with PartDesign/it](Creating_a_simple_part_with_PartDesign/it.md) , [Datum/it](Datum/it.md) , [Draft ShapeString tutorial/it](Draft_ShapeString_tutorial/it.md) , [Feature editing/it](Feature_editing/it.md) , [Feature/it](Feature/it.md) , [ManualPartDesign/it](ManualPartDesign/it.md) , [Part and PartDesign/it](Part_and_PartDesign/it.md) , [PartDesign AdditiveBox/it](PartDesign_AdditiveBox/it.md) , [PartDesign AdditiveCone/it](PartDesign_AdditiveCone/it.md) , [PartDesign AdditiveCylinder/it](PartDesign_AdditiveCylinder/it.md) , [PartDesign AdditiveEllipsoid/it](PartDesign_AdditiveEllipsoid/it.md) , [PartDesign AdditiveHelix/it](PartDesign_AdditiveHelix/it.md) , [PartDesign AdditiveLoft/it](PartDesign_AdditiveLoft/it.md) , [PartDesign AdditivePipe/it](PartDesign_AdditivePipe/it.md) , [PartDesign AdditivePrism/it](PartDesign_AdditivePrism/it.md) , [PartDesign AdditiveSphere/it](PartDesign_AdditiveSphere/it.md) , [PartDesign AdditiveTorus/it](PartDesign_AdditiveTorus/it.md) , [PartDesign AdditiveWedge/it](PartDesign_AdditiveWedge/it.md) , [PartDesign Body/it](PartDesign_Body/it.md) , [PartDesign Boolean/it](PartDesign_Boolean/it.md) , [PartDesign Chamfer/it](PartDesign_Chamfer/it.md) , [PartDesign Clone/it](PartDesign_Clone/it.md) , [PartDesign CompPrimitiveAdditive/it](PartDesign_CompPrimitiveAdditive/it.md) , [PartDesign CompPrimitiveSubtractive/it](PartDesign_CompPrimitiveSubtractive/it.md) , [PartDesign CoordinateSystem/it](PartDesign_CoordinateSystem/it.md) , [PartDesign Draft/it](PartDesign_Draft/it.md) , [PartDesign Feature/it](PartDesign_Feature/it.md) , [PartDesign Fillet/it](PartDesign_Fillet/it.md) , [PartDesign Groove/it](PartDesign_Groove/it.md) , [PartDesign Hole/it](PartDesign_Hole/it.md) , [PartDesign InvoluteGear/it](PartDesign_InvoluteGear/it.md) , [PartDesign Line/it](PartDesign_Line/it.md) , [PartDesign LinearPattern/it](PartDesign_LinearPattern/it.md) , [PartDesign Migrate/it](PartDesign_Migrate/it.md) , [PartDesign Mirrored/it](PartDesign_Mirrored/it.md) , [PartDesign MoveFeature/it](PartDesign_MoveFeature/it.md) , [PartDesign MoveFeatureInTree/it](PartDesign_MoveFeatureInTree/it.md) , [PartDesign MoveTip/it](PartDesign_MoveTip/it.md) , [PartDesign MultiTransform/it](PartDesign_MultiTransform/it.md) , [PartDesign NewSketch/it](PartDesign_NewSketch/it.md) , [PartDesign Pad/it](PartDesign_Pad/it.md) , [PartDesign Plane/it](PartDesign_Plane/it.md) , [PartDesign Pocket/it](PartDesign_Pocket/it.md) , [PartDesign Point/it](PartDesign_Point/it.md) , [PartDesign PolarPattern/it](PartDesign_PolarPattern/it.md) , [PartDesign Preferences/it](PartDesign_Preferences/it.md) , [PartDesign Revolution/it](PartDesign_Revolution/it.md) , [PartDesign ShapeBinder/it](PartDesign_ShapeBinder/it.md) , [PartDesign Sprocket/it](PartDesign_Sprocket/it.md) , [PartDesign SubShapeBinder/it](PartDesign_SubShapeBinder/it.md) , [PartDesign SubtractiveBox/it](PartDesign_SubtractiveBox/it.md) , [PartDesign SubtractiveCone/it](PartDesign_SubtractiveCone/it.md) , [PartDesign SubtractiveCylinder/it](PartDesign_SubtractiveCylinder/it.md) , [PartDesign SubtractiveEllipsoid/it](PartDesign_SubtractiveEllipsoid/it.md) , [PartDesign SubtractiveHelix/it](PartDesign_SubtractiveHelix/it.md) , [PartDesign SubtractiveLoft/it](PartDesign_SubtractiveLoft/it.md) , [PartDesign SubtractivePipe/it](PartDesign_SubtractivePipe/it.md) , [PartDesign SubtractivePrism/it](PartDesign_SubtractivePrism/it.md) , [PartDesign SubtractiveSphere/it](PartDesign_SubtractiveSphere/it.md) , [PartDesign SubtractiveTorus/it](PartDesign_SubtractiveTorus/it.md) , [PartDesign SubtractiveWedge/it](PartDesign_SubtractiveWedge/it.md) , [PartDesign Thickness/it](PartDesign_Thickness/it.md) , [Template:PartDesign Tools navi/it](Template:PartDesign_Tools_navi/it.md) , [PartDesign WizardShaft/it](PartDesign_WizardShaft/it.md) , [PartDesign Workbench/it](PartDesign_Workbench/it.md) , [Thread for Screw Tutorial/it](Thread_for_Screw_Tutorial/it.md) , [Toothbrush Head Stand/it](Toothbrush_Head_Stand/it.md) , [Topological naming problem/it](Topological_naming_problem/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:PartDesign/it diff --git a/wiki/translations/it/Category:Path.md b/wiki/translations/it/Category:Path.md index d8c1f5ac60..b86d20c869 100644 --- a/wiki/translations/it/Category:Path.md +++ b/wiki/translations/it/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/it](PartDesign_Wo [Artwork Path/it](Artwork_Path/it.md) , [Template:Depths/Heights/it](Template:Depths/Heights/it.md) , [Manual:Preparing models for 3D printing/it](Manual:Preparing_models_for_3D_printing/it.md) , [Path Adaptive/it](Path_Adaptive/it.md) , [Path Area Workplane/it](Path_Area_Workplane/it.md) , [Path Area/it](Path_Area/it.md) , [Path Array/it](Path_Array/it.md) , [Path Comment/it](Path_Comment/it.md) , [Path Copy/it](Path_Copy/it.md) , [Path Custom/it](Path_Custom/it.md) , [Path DressupDogbone/it](Path_DressupDogbone/it.md) , [Path DressupDragKnife/it](Path_DressupDragKnife/it.md) , [Path DressupLeadInOut/it](Path_DressupLeadInOut/it.md) , [Path DressupPathBoundary/it](Path_DressupPathBoundary/it.md) , [Path DressupRampEntry/it](Path_DressupRampEntry/it.md) , [Path DressupTag/it](Path_DressupTag/it.md) , [Path Drilling/it](Path_Drilling/it.md) , [Path Engrave/it](Path_Engrave/it.md) , [Path experimental/it](Path_experimental/it.md) , [Path ExportTemplate/it](Path_ExportTemplate/it.md) , [Path FAQ/it](Path_FAQ/it.md) , [Path Fixture/it](Path_Fixture/it.md) , [Path fourth axis/it](Path_fourth_axis/it.md) , [Path Helix/it](Path_Helix/it.md) , [Path Inspect/it](Path_Inspect/it.md) , [Path Job/it](Path_Job/it.md) , [Path MillFace/it](Path_MillFace/it.md) , [Path OpActiveToggle/it](Path_OpActiveToggle/it.md) , [Path Pocket 3D/it](Path_Pocket_3D/it.md) , [Path Pocket Shape/it](Path_Pocket_Shape/it.md) , [Path Post/it](Path_Post/it.md) , [Path Postprocessor Customization/it](Path_Postprocessor_Customization/it.md) , [Path Preferences/it](Path_Preferences/it.md) , [Path Profile/it](Path_Profile/it.md) , [Path Sanity/it](Path_Sanity/it.md) , [Path scripting/it](Path_scripting/it.md) , [Path SelectLoop/it](Path_SelectLoop/it.md) , [Path SetupSheet/it](Path_SetupSheet/it.md) , [Path Shape/it](Path_Shape/it.md) , [Path SimpleCopy/it](Path_SimpleCopy/it.md) , [Path Simulator/it](Path_Simulator/it.md) , [Path Slot/it](Path_Slot/it.md) , [Path Stop/it](Path_Stop/it.md) , [Path Surface/it](Path_Surface/it.md) , [Path ToolController/it](Path_ToolController/it.md) , [Path ToolLibraryEdit/it](Path_ToolLibraryEdit/it.md) , [Template:Path Tools navi/it](Template:Path_Tools_navi/it.md) , [Path Vcarve/it](Path_Vcarve/it.md) , [Path Walkthrough for the Impatient/it](Path_Walkthrough_for_the_Impatient/it.md) , [Path Waterline/it](Path_Waterline/it.md) , [Path Workbench/it](Path_Workbench/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Path/it diff --git a/wiki/translations/it/Category:Plot.md b/wiki/translations/it/Category:Plot.md index 850a5647e7..b84168c0fb 100644 --- a/wiki/translations/it/Category:Plot.md +++ b/wiki/translations/it/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/it](Plot_Workbench/it.m [Artwork Plot/it](Artwork_Plot/it.md) , [Plot Axes/it](Plot_Axes/it.md) , [Plot Basic tutorial/it](Plot_Basic_tutorial/it.md) , [Plot Grid/it](Plot_Grid/it.md) , [Plot Labels/it](Plot_Labels/it.md) , [Plot Legend/it](Plot_Legend/it.md) , [Plot Module/it](Plot_Module/it.md) , [Plot MultiAxes tutorial/it](Plot_MultiAxes_tutorial/it.md) , [Plot Positions/it](Plot_Positions/it.md) , [Plot Save/it](Plot_Save/it.md) , [Plot Series/it](Plot_Series/it.md) , [Template:Plot Tools navi/it](Template:Plot_Tools_navi/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Plot/it diff --git a/wiki/translations/it/Category:Points.md b/wiki/translations/it/Category:Points.md index 8379662527..02a5b61b4b 100644 --- a/wiki/translations/it/Category:Points.md +++ b/wiki/translations/it/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/it](Points_Workbench/ [Artwork Points/it](Artwork_Points/it.md) , [Points Convert/it](Points_Convert/it.md) , [Points Export/it](Points_Export/it.md) , [Points Import/it](Points_Import/it.md) , [Points Merge/it](Points_Merge/it.md) , [Points PolyCut/it](Points_PolyCut/it.md) , [Points Structure/it](Points_Structure/it.md) , [Points Workbench/it](Points_Workbench/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Points/it diff --git a/wiki/translations/it/Category:Poweruser_Documentation.md b/wiki/translations/it/Category:Poweruser_Documentation.md index a2a4355d7d..2b7e3bcefb 100644 --- a/wiki/translations/it/Category:Poweruser_Documentation.md +++ b/wiki/translations/it/Category:Poweruser_Documentation.md @@ -8,3 +8,6 @@ Questa categoria contiene articoli di documentazione sui file di script Python, [Arch API/it](Arch_API/it.md) , [Base API/it](Base_API/it.md) , [Builtin modules/it](Builtin_modules/it.md) , [Code snippets/it](Code_snippets/it.md) , [Command/it](Command/it.md) , [Console API/it](Console_API/it.md) , [Create a FeaturePython object part I/it](Create_a_FeaturePython_object_part_I/it.md) , [Create a FeaturePython object part II/it](Create_a_FeaturePython_object_part_II/it.md) , [Custom icon in tree view/it](Custom_icon_in_tree_view/it.md) , [Debugging/it](Debugging/it.md) , [Dialog creation image and animated GIF/it](Dialog_creation_image_and_animated_GIF/it.md) , [Dialog creation reading and writing files/it](Dialog_creation_reading_and_writing_files/it.md) , [Dialog creation setting colors/it](Dialog_creation_setting_colors/it.md) , [Dialog creation with various widgets/it](Dialog_creation_with_various_widgets/it.md) , [Dialog creation/it](Dialog_creation/it.md) , [Draft API/it](Draft_API/it.md) , [Drawing API example/it](Drawing_API_example/it.md) , [Embedding FreeCAD/it](Embedding_FreeCAD/it.md) , [Embedding FreeCADGui/it](Embedding_FreeCADGui/it.md) , [Expressions/it](Expressions/it.md) , [FeaturePython methods/it](FeaturePython_methods/it.md) , [FEM CalculiX/it](FEM_CalculiX/it.md) , [FEM Element Types/it](FEM_Element_Types/it.md) , [FEM Mesh CalculiX/it](FEM_Mesh_CalculiX/it.md) , [FEM Python Scripting/it](FEM_Python_Scripting/it.md) , [FreeCAD API/it](FreeCAD_API/it.md) , [FreeCAD Scripting Basics/it](FreeCAD_Scripting_Basics/it.md) , [FreeCAD vector math library/it](FreeCAD_vector_math_library/it.md) , [FreeCADGui API/it](FreeCADGui_API/it.md) , [Gui Command/it](Gui_Command/it.md) , [How to install additional workbenches/it](How_to_install_additional_workbenches/it.md) , [How to install macros/it](How_to_install_macros/it.md) , [Installing more workbenches/it](Installing_more_workbenches/it.md) , [Interface creation/it](Interface_creation/it.md) , [Introduction to Python/it](Introduction_to_Python/it.md) , [Line drawing function/it](Line_drawing_function/it.md) , [LinkSub/it](LinkSub/it.md) , [LinkSubList/it](LinkSubList/it.md) , [Macro at Startup/it](Macro_at_Startup/it.md) , [Macros/it](Macros/it.md) , [Manual:A gentle introduction/it](Manual:A_gentle_introduction/it.md) , [Manual:Creating and manipulating geometry/it](Manual:Creating_and_manipulating_geometry/it.md) , [Manual:Creating interface tools/it](Manual:Creating_interface_tools/it.md) , [Manual:Creating parametric objects/it](Manual:Creating_parametric_objects/it.md) , [Manual:Import and export to other filetypes/it](Manual:Import_and_export_to_other_filetypes/it.md) , [Manual:Installing/it](Manual:Installing/it.md) , [Manual:Parametric objects/it](Manual:Parametric_objects/it.md) , [Matrix API/it](Matrix_API/it.md) , [Mesh API/it](Mesh_API/it.md) , [Mesh Scripting/it](Mesh_Scripting/it.md) , [Mesh to Part/it](Mesh_to_Part/it.md) , [Object API/it](Object_API/it.md) , [OpenCASCADE/it](OpenCASCADE/it.md) , [Part API/it](Part_API/it.md) , [Part scripting/it](Part_scripting/it.md) , [Path experimental/it](Path_experimental/it.md) , [Path scripting/it](Path_scripting/it.md) , [Pivy/it](Pivy/it.md) , [Placement API/it](Placement_API/it.md) , [Power users hub/it](Power_users_hub/it.md) , [Profiling/it](Profiling/it.md) , [Property/it](Property/it.md) , [PySide Advanced Examples/it](PySide_Advanced_Examples/it.md) , [PySide Beginner Examples/it](PySide_Beginner_Examples/it.md) , [PySide Intermediate Examples/it](PySide_Intermediate_Examples/it.md) , [PySide usage snippets/it](PySide_usage_snippets/it.md) , [PySide/it](PySide/it.md) , [Python Development Environment/it](Python_Development_Environment/it.md) , [Python scripting tutorial/it](Python_scripting_tutorial/it.md) , [Python/it](Python/it.md) , [PythonOCC/it](PythonOCC/it.md) , [Qt Example/it](Qt_Example/it.md) , [Quantity/it](Quantity/it.md) , [Raytracing API example/it](Raytracing_API_example/it.md) , [Reinforcement API/it](Reinforcement_API/it.md) , [Scenegraph/it](Scenegraph/it.md) , [Scientific literature/it](Scientific_literature/it.md) , [Scripted objects migration/it](Scripted_objects_migration/it.md) , [Scripted objects saving attributes/it](Scripted_objects_saving_attributes/it.md) , [Scripted objects with attachment/it](Scripted_objects_with_attachment/it.md) , [Scripted objects/it](Scripted_objects/it.md) , [Scripted Parts: Ball Bearing - Part 1/it](Scripted_Parts:_Ball_Bearing_-_Part_1/it.md) , [Scripted Parts: Ball Bearing - Part 2/it](Scripted_Parts:_Ball_Bearing_-_Part_2/it.md) , [Scripting and macros/it](Scripting_and_macros/it.md) , [Scripts/it](Scripts/it.md) , [Selection API/it](Selection_API/it.md) , [Svg Namespace/it](Svg_Namespace/it.md) , [TechDraw API/it](TechDraw_API/it.md) , [TechDrawGui API/it](TechDrawGui_API/it.md) , [Topological data scripting/it](Topological_data_scripting/it.md) , [TopoShape API/it](TopoShape_API/it.md) , [Units/it](Units/it.md) , [Vector API/it](Vector_API/it.md) , [ViewObject API/it](ViewObject_API/it.md) , [Viewprovider/it](Viewprovider/it.md) , [Workbench creation/it](Workbench_creation/it.md) , [Category:Documentation/it](Category:Documentation/it.md) [Category:Categories/it](Category:Categories/it.md) [Category:Python Code/it](Category:Python_Code/it.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/it diff --git a/wiki/translations/it/Category:Preferences.md b/wiki/translations/it/Category:Preferences.md index 08453dff00..7db14f7b8d 100644 --- a/wiki/translations/it/Category:Preferences.md +++ b/wiki/translations/it/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Arch Preferences/it](Arch_Preferences/it.md) , [Customize Toolbars/it](Customize_Toolbars/it.md) , [Draft Preferences/it](Draft_Preferences/it.md) , [FEM Preferences/it](FEM_Preferences/it.md) , [Import Export Preferences/it](Import_Export_Preferences/it.md) , [OpenSCAD Preferences/it](OpenSCAD_Preferences/it.md) , [PartDesign Preferences/it](PartDesign_Preferences/it.md) , [Path Preferences/it](Path_Preferences/it.md) , [Preferences Editor/it](Preferences_Editor/it.md) , [Raytracing Preferences/it](Raytracing_Preferences/it.md) , [Sketcher Preferences/it](Sketcher_Preferences/it.md) , [Start Preferences/it](Start_Preferences/it.md) , [TechDraw Preferences/it](TechDraw_Preferences/it.md) + +--- +[documentation index](../README.md) > Category:Preferences/it diff --git a/wiki/translations/it/Category:Python_Code.md b/wiki/translations/it/Category:Python_Code.md index 410830d4e1..2bea7ae3cd 100644 --- a/wiki/translations/it/Category:Python_Code.md +++ b/wiki/translations/it/Category:Python_Code.md @@ -6,3 +6,6 @@ Questa categoria contiene esempi di codice Python per FreeCAD [Code snippets/it](Code_snippets/it.md) , [Command/it](Command/it.md) , [Create a FeaturePython object part I/it](Create_a_FeaturePython_object_part_I/it.md) , [Create a FeaturePython object part II/it](Create_a_FeaturePython_object_part_II/it.md) , [Custom icon in tree view/it](Custom_icon_in_tree_view/it.md) , [Debugging/it](Debugging/it.md) , [Dialog creation image and animated GIF/it](Dialog_creation_image_and_animated_GIF/it.md) , [Dialog creation reading and writing files/it](Dialog_creation_reading_and_writing_files/it.md) , [Dialog creation setting colors/it](Dialog_creation_setting_colors/it.md) , [Dialog creation with various widgets/it](Dialog_creation_with_various_widgets/it.md) , [Dialog creation/it](Dialog_creation/it.md) , [Drawing API example/it](Drawing_API_example/it.md) , [Embedding FreeCAD/it](Embedding_FreeCAD/it.md) , [Embedding FreeCADGui/it](Embedding_FreeCADGui/it.md) , [Extra python modules/it](Extra_python_modules/it.md) , [FeaturePython methods/it](FeaturePython_methods/it.md) , [FEM Python Scripting/it](FEM_Python_Scripting/it.md) , [FEM Tutorial Python/it](FEM_Tutorial_Python/it.md) , [FreeCAD Scripting Basics/it](FreeCAD_Scripting_Basics/it.md) , [FreeCAD vector math library/it](FreeCAD_vector_math_library/it.md) , [How to install macros/it](How_to_install_macros/it.md) , [Interface creation/it](Interface_creation/it.md) , [Introduction to Python/it](Introduction_to_Python/it.md) , [Line drawing function/it](Line_drawing_function/it.md) , [Macro at Startup/it](Macro_at_Startup/it.md) , [Macros recipes/it](Macros_recipes/it.md) , [Macros/it](Macros/it.md) , [Manual:A gentle introduction/it](Manual:A_gentle_introduction/it.md) , [Manual:Creating and manipulating geometry/it](Manual:Creating_and_manipulating_geometry/it.md) , [Manual:Creating interface tools/it](Manual:Creating_interface_tools/it.md) , [Manual:Creating parametric objects/it](Manual:Creating_parametric_objects/it.md) , [Mesh Scripting/it](Mesh_Scripting/it.md) , [Mesh to Part/it](Mesh_to_Part/it.md) , [Part scripting/it](Part_scripting/it.md) , [Path scripting/it](Path_scripting/it.md) , [Pivy/it](Pivy/it.md) , [Profiling/it](Profiling/it.md) , [Property/it](Property/it.md) , [PySide Advanced Examples/it](PySide_Advanced_Examples/it.md) , [PySide Beginner Examples/it](PySide_Beginner_Examples/it.md) , [PySide Intermediate Examples/it](PySide_Intermediate_Examples/it.md) , [PySide usage snippets/it](PySide_usage_snippets/it.md) , [PySide/it](PySide/it.md) , [Python Development Environment/it](Python_Development_Environment/it.md) , [Python scripting tutorial/it](Python_scripting_tutorial/it.md) , [Python/it](Python/it.md) , [PythonOCC/it](PythonOCC/it.md) , [Qt Example/it](Qt_Example/it.md) , [Quantity/it](Quantity/it.md) , [Raytracing API example/it](Raytracing_API_example/it.md) , [Scripted objects migration/it](Scripted_objects_migration/it.md) , [Scripted objects saving attributes/it](Scripted_objects_saving_attributes/it.md) , [Scripted objects with attachment/it](Scripted_objects_with_attachment/it.md) , [Scripted objects/it](Scripted_objects/it.md) , [Scripted Parts: Ball Bearing - Part 1/it](Scripted_Parts:_Ball_Bearing_-_Part_1/it.md) , [Scripted Parts: Ball Bearing - Part 2/it](Scripted_Parts:_Ball_Bearing_-_Part_2/it.md) , [Scripting and macros/it](Scripting_and_macros/it.md) , [Scripts/it](Scripts/it.md) , [Svg Namespace/it](Svg_Namespace/it.md) , [Topological data scripting/it](Topological_data_scripting/it.md) , [Viewprovider/it](Viewprovider/it.md) , [Workbench creation/it](Workbench_creation/it.md) [Category:Poweruser Documentation/it](Category:Poweruser_Documentation/it.md) [Category:Categories/it](Category:Categories/it.md) + +--- +[documentation index](../README.md) > Category:Python Code/it diff --git a/wiki/translations/it/Category:Raytracing.md b/wiki/translations/it/Category:Raytracing.md index ed2542cba4..89bf61125b 100644 --- a/wiki/translations/it/Category:Raytracing.md +++ b/wiki/translations/it/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/it](Raytracing_Wo [Artwork Raytracing/it](Artwork_Raytracing/it.md) , [Manual:Creating renderings/it](Manual:Creating_renderings/it.md) , [Raytracing API example/it](Raytracing_API_example/it.md) , [Raytracing ExportProject/it](Raytracing_ExportProject/it.md) , [Raytracing InsertPart/it](Raytracing_InsertPart/it.md) , [Raytracing Lux/it](Raytracing_Lux/it.md) , [Raytracing New/it](Raytracing_New/it.md) , [Raytracing Preferences/it](Raytracing_Preferences/it.md) , [Raytracing Render/it](Raytracing_Render/it.md) , [Raytracing ResetCamera/it](Raytracing_ResetCamera/it.md) , [Raytracing templates/it](Raytracing_templates/it.md) , [Template:Raytracing Tools navi/it](Template:Raytracing_Tools_navi/it.md) , [Raytracing tutorial/it](Raytracing_tutorial/it.md) , [Raytracing Workbench/it](Raytracing_Workbench/it.md) , [Raytracing WriteCamera/it](Raytracing_WriteCamera/it.md) , [Raytracing WritePart/it](Raytracing_WritePart/it.md) , [Raytracing WriteView/it](Raytracing_WriteView/it.md) , [Tutorial FreeCAD POV ray/it](Tutorial_FreeCAD_POV_ray/it.md) , [Tutorial Render with Blender/it](Tutorial_Render_with_Blender/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Raytracing/it diff --git a/wiki/translations/it/Category:Reinforcement.md b/wiki/translations/it/Category:Reinforcement.md index 7e95333f05..7a9e56168d 100644 --- a/wiki/translations/it/Category:Reinforcement.md +++ b/wiki/translations/it/Category:Reinforcement.md @@ -4,3 +4,6 @@ [Arch Rebar BeamReinforcement/it](Arch_Rebar_BeamReinforcement/it.md) , [Arch Rebar BentShape/it](Arch_Rebar_BentShape/it.md) , [Arch Rebar BOM/it](Arch_Rebar_BOM/it.md) , [Arch Rebar Circular ColumnReinforcement/it](Arch_Rebar_Circular_ColumnReinforcement/it.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/it](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/it.md) , [Arch Rebar ColumnReinforcement/it](Arch_Rebar_ColumnReinforcement/it.md) , [Arch Rebar Dimensioning/it](Arch_Rebar_Dimensioning/it.md) , [Arch Rebar Drawing Dimensioning/it](Arch_Rebar_Drawing_Dimensioning/it.md) , [Arch Rebar Drawing/it](Arch_Rebar_Drawing/it.md) , [Arch Rebar Helical/it](Arch_Rebar_Helical/it.md) , [Arch Rebar LShape/it](Arch_Rebar_LShape/it.md) , [Arch Rebar Stirrup/it](Arch_Rebar_Stirrup/it.md) , [Arch Rebar Straight/it](Arch_Rebar_Straight/it.md) , [Arch Rebar UShape/it](Arch_Rebar_UShape/it.md) , [Arch Rebar/it](Arch_Rebar/it.md) , [Custom Spacing/it](Custom_Spacing/it.md) , [ManualArch/it](ManualArch/it.md) , [Reinforcement Addon/it](Reinforcement_Addon/it.md) , [Reinforcement API/it](Reinforcement_API/it.md) , [Reinforcement Bar Bending Schedule/it](Reinforcement_Bar_Bending_Schedule/it.md) , [Reinforcement Bar Shape Cut List/it](Reinforcement_Bar_Shape_Cut_List/it.md) , [Reinforcement Workbench/it](Reinforcement_Workbench/it.md) [Category:Arch/it](Category:Arch/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) + +--- +[documentation index](../README.md) > Category:Reinforcement/it diff --git a/wiki/translations/it/Category:Repository.md b/wiki/translations/it/Category:Repository.md index 0360a1066f..7335446451 100644 --- a/wiki/translations/it/Category:Repository.md +++ b/wiki/translations/it/Category:Repository.md @@ -6,3 +6,6 @@ Questa categoria raccoglie le pagine che costituiscono un repositorio di risorse ### Contents: [Category:Categories/it](Category:Categories/it.md) + +--- +[documentation index](../README.md) > Category:Repository/it diff --git a/wiki/translations/it/Category:Reverse_Engineering.md b/wiki/translations/it/Category:Reverse_Engineering.md index 8bdf4a7a68..3e9d196f2f 100644 --- a/wiki/translations/it/Category:Reverse_Engineering.md +++ b/wiki/translations/it/Category:Reverse_Engineering.md @@ -6,3 +6,6 @@ This category lists pages related to the [Reverse Engineering Workbench/it](Reve [Artwork ReverseEngineering/it](Artwork_ReverseEngineering/it.md) , [Reverse Engineering Workbench/it](Reverse_Engineering_Workbench/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Reverse Engineering/it diff --git a/wiki/translations/it/Category:Roadmap.md b/wiki/translations/it/Category:Roadmap.md index 820b05d706..c82fcef608 100644 --- a/wiki/translations/it/Category:Roadmap.md +++ b/wiki/translations/it/Category:Roadmap.md @@ -8,3 +8,6 @@ Questa categoria raccoglie tutti gli articoli che documentano ciò che è previs [Arch Concept/it](Arch_Concept/it.md) , [Artwork project/it](Artwork_project/it.md) , [Assembly project/it](Assembly_project/it.md) , [CAM project/it](CAM_project/it.md) , [Development roadmap/it](Development_roadmap/it.md) , [FEM project/it](FEM_project/it.md) , [FreeCAD development model project/it](FreeCAD_development_model_project/it.md) , [HiDPI support/it](HiDPI_support/it.md) , [Land Survey Workbench Blueprint/it](Land_Survey_Workbench_Blueprint/it.md) , [Material data model/it](Material_data_model/it.md) , [Material/it](Material/it.md) , [Naming project/it](Naming_project/it.md) , [PartDesign project/it](PartDesign_project/it.md) , [Project template/it](Project_template/it.md) , [Quality project/it](Quality_project/it.md) , [Raytracing project/it](Raytracing_project/it.md) , [Release process/it](Release_process/it.md) , [Resource framework project/it](Resource_framework_project/it.md) , [Robot project/it](Robot_project/it.md) , [Sketcher project/it](Sketcher_project/it.md) , [STEP project/it](STEP_project/it.md) , [Tolerancing/it](Tolerancing/it.md) , [Units project/it](Units_project/it.md) , [UTF Project/it](UTF_Project/it.md) , [Wished tools/it](Wished_tools/it.md) [Category:Categories/it](Category:Categories/it.md) + +--- +[documentation index](../README.md) > Category:Roadmap/it diff --git a/wiki/translations/it/Category:Robot.md b/wiki/translations/it/Category:Robot.md index a096a37817..1ca9c2be73 100644 --- a/wiki/translations/it/Category:Robot.md +++ b/wiki/translations/it/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/it](Robot_Workbench/it [Artwork Robot/it](Artwork_Robot/it.md) , [Robot 6-Axis/it](Robot_6-Axis/it.md) , [Robot API example/it](Robot_API_example/it.md) , [Robot CreateRobot/it](Robot_CreateRobot/it.md) , [Robot CreateTrajectory/it](Robot_CreateTrajectory/it.md) , [Robot Edge2Trac/it](Robot_Edge2Trac/it.md) , [Robot Export/it](Robot_Export/it.md) , [Robot InsertWaypoint/it](Robot_InsertWaypoint/it.md) , [Robot InsertWaypointPre/it](Robot_InsertWaypointPre/it.md) , [Robot RestoreHomePos/it](Robot_RestoreHomePos/it.md) , [Robot SetDefaultOrientation/it](Robot_SetDefaultOrientation/it.md) , [Robot SetDefaultValues/it](Robot_SetDefaultValues/it.md) , [Robot SetHomePos/it](Robot_SetHomePos/it.md) , [Robot Simulate/it](Robot_Simulate/it.md) , [Template:Robot Tools navi/it](Template:Robot_Tools_navi/it.md) , [Robot TrajectoryCompound/it](Robot_TrajectoryCompound/it.md) , [Robot TrajectoryDressUp/it](Robot_TrajectoryDressUp/it.md) , [Robot tutorial/it](Robot_tutorial/it.md) , [Robot Workbench/it](Robot_Workbench/it.md) , [VRML Preparation for Robot Simulation/it](VRML_Preparation_for_Robot_Simulation/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Robot/it diff --git a/wiki/translations/it/Category:Robot_API.md b/wiki/translations/it/Category:Robot_API.md index eacea29079..2bc29d10a2 100644 --- a/wiki/translations/it/Category:Robot_API.md +++ b/wiki/translations/it/Category:Robot_API.md @@ -6,3 +6,6 @@ This page collects the programming interface (API) and examples for the [Robot W [Robot API example/it](Robot_API_example/it.md) [Category:API/it](Category:API/it.md) + +--- +[documentation index](../README.md) > Category:Robot API/it diff --git a/wiki/translations/it/Category:Screenshots.md b/wiki/translations/it/Category:Screenshots.md index 775a23a7ac..f7f6b1692e 100644 --- a/wiki/translations/it/Category:Screenshots.md +++ b/wiki/translations/it/Category:Screenshots.md @@ -6,3 +6,6 @@ This category lists pages with screenshots. [Screenshots/it](Screenshots/it.md) [Category:Documentation/it](Category:Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Screenshots/it diff --git a/wiki/translations/it/Category:SheetMetal.md b/wiki/translations/it/Category:SheetMetal.md index 9d2f5ac1cb..11a275c14b 100644 --- a/wiki/translations/it/Category:SheetMetal.md +++ b/wiki/translations/it/Category:SheetMetal.md @@ -6,3 +6,6 @@ This page collects the documentation pages for the [SheetMetal Workbench/it](She [SheetMetal AddJunction/it](SheetMetal_AddJunction/it.md) , [SheetMetal AddRelief/it](SheetMetal_AddRelief/it.md) , [SheetMetal AddWall/it](SheetMetal_AddWall/it.md) , [SheetMetal Extrude/it](SheetMetal_Extrude/it.md) , [SheetMetal Unfold/it](SheetMetal_Unfold/it.md) , [SheetMetal Workbench/it](SheetMetal_Workbench/it.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Category:SheetMetal/it diff --git a/wiki/translations/it/Category:Ship.md b/wiki/translations/it/Category:Ship.md index 5dc33471dd..88bbb1cd67 100644 --- a/wiki/translations/it/Category:Ship.md +++ b/wiki/translations/it/Category:Ship.md @@ -6,3 +6,6 @@ Questa categoria elenca le pagine relative a [Ship Workbench/it](Ship_Workbench/ [Artwork Ship/it](Artwork_Ship/it.md) , [FreeCAD-Ship s60 tutorial (II)/it](FreeCAD-Ship_s60_tutorial_(II)/it.md) , [FreeCAD-Ship s60 tutorial/it](FreeCAD-Ship_s60_tutorial/it.md) , [Ship Area/it](Ship_Area/it.md) , [Ship Geometries Examples/it](Ship_Geometries_Examples/it.md) , [Ship Hydrostatics/it](Ship_Hydrostatics/it.md) , [Ship Loading/it](Ship_Loading/it.md) , [Ship New/it](Ship_New/it.md) , [Ship Outline/it](Ship_Outline/it.md) , [Template:Ship Tools navi/it](Template:Ship_Tools_navi/it.md) , [Ship Workbench/it](Ship_Workbench/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Ship/it diff --git a/wiki/translations/it/Category:Sketcher.md b/wiki/translations/it/Category:Sketcher.md index bc7b4d3eb9..1e3ab4c1f9 100644 --- a/wiki/translations/it/Category:Sketcher.md +++ b/wiki/translations/it/Category:Sketcher.md @@ -6,3 +6,6 @@ This category includes FreeCAD pages related to Sketcher [Arch panel tutorial/it](Arch_panel_tutorial/it.md) , [Artwork Sketcher/it](Artwork_Sketcher/it.md) , [Basic Attachment Tutorial/it](Basic_Attachment_Tutorial/it.md) , [Basic Part Design Tutorial/it](Basic_Part_Design_Tutorial/it.md) , [Basic Sketcher Tutorial/it](Basic_Sketcher_Tutorial/it.md) , [Constraint/it](Constraint/it.md) , [Creating a simple part with PartDesign/it](Creating_a_simple_part_with_PartDesign/it.md) , [Draft ShapeString tutorial/it](Draft_ShapeString_tutorial/it.md) , [ManualSketcher/it](ManualSketcher/it.md) , [Part and PartDesign/it](Part_and_PartDesign/it.md) , [Sketch/it](Sketch/it.md) , [Sketcher BSplineApproximate/it](Sketcher_BSplineApproximate/it.md) , [Sketcher BSplineComb/it](Sketcher_BSplineComb/it.md) , [Sketcher BSplineDecreaseKnotMultiplicity/it](Sketcher_BSplineDecreaseKnotMultiplicity/it.md) , [Sketcher BSplineDegree/it](Sketcher_BSplineDegree/it.md) , [Sketcher BSplineIncreaseDegree/it](Sketcher_BSplineIncreaseDegree/it.md) , [Sketcher BSplineIncreaseKnotMultiplicity/it](Sketcher_BSplineIncreaseKnotMultiplicity/it.md) , [Sketcher BSplineKnotMultiplicity/it](Sketcher_BSplineKnotMultiplicity/it.md) , [Sketcher BSplinePoleWeight/it](Sketcher_BSplinePoleWeight/it.md) , [Sketcher BSplinePolygon/it](Sketcher_BSplinePolygon/it.md) , [Sketcher CarbonCopy/it](Sketcher_CarbonCopy/it.md) , [Sketcher Clone/it](Sketcher_Clone/it.md) , [Sketcher CloseShape/it](Sketcher_CloseShape/it.md) , [Sketcher CompConstrainRadDia/it](Sketcher_CompConstrainRadDia/it.md) , [Sketcher CompCopy/it](Sketcher_CompCopy/it.md) , [Sketcher CompCreateArc/it](Sketcher_CompCreateArc/it.md) , [Sketcher CompCreateBSpline/it](Sketcher_CompCreateBSpline/it.md) , [Sketcher CompCreateCircle/it](Sketcher_CompCreateCircle/it.md) , [Sketcher CompCreateConic/it](Sketcher_CompCreateConic/it.md) , [Sketcher CompCreateRegularPolygon/it](Sketcher_CompCreateRegularPolygon/it.md) , [Sketcher ConnectLines/it](Sketcher_ConnectLines/it.md) , [Sketcher ConstrainAngle/it](Sketcher_ConstrainAngle/it.md) , [Sketcher ConstrainBlock/it](Sketcher_ConstrainBlock/it.md) , [Sketcher ConstrainCoincident/it](Sketcher_ConstrainCoincident/it.md) , [Sketcher ConstrainDiameter/it](Sketcher_ConstrainDiameter/it.md) , [Sketcher ConstrainDistance/it](Sketcher_ConstrainDistance/it.md) , [Sketcher ConstrainDistanceX/it](Sketcher_ConstrainDistanceX/it.md) , [Sketcher ConstrainDistanceY/it](Sketcher_ConstrainDistanceY/it.md) , [Sketcher ConstrainEqual/it](Sketcher_ConstrainEqual/it.md) , [Sketcher ConstrainHorizontal/it](Sketcher_ConstrainHorizontal/it.md) , [Sketcher ConstrainInternalAlignment/it](Sketcher_ConstrainInternalAlignment/it.md) , [Sketcher ConstrainLock/it](Sketcher_ConstrainLock/it.md) , [Sketcher ConstrainParallel/it](Sketcher_ConstrainParallel/it.md) , [Sketcher ConstrainPerpendicular/it](Sketcher_ConstrainPerpendicular/it.md) , [Sketcher ConstrainPointOnObject/it](Sketcher_ConstrainPointOnObject/it.md) , [Sketcher ConstrainRadius/it](Sketcher_ConstrainRadius/it.md) , [Sketcher ConstrainSnellsLaw/it](Sketcher_ConstrainSnellsLaw/it.md) , [Sketcher ConstrainSymmetric/it](Sketcher_ConstrainSymmetric/it.md) , [Sketcher ConstrainTangent/it](Sketcher_ConstrainTangent/it.md) , [Sketcher ConstrainVertical/it](Sketcher_ConstrainVertical/it.md) , [Sketcher Copy/it](Sketcher_Copy/it.md) , [Sketcher Create3PointArc/it](Sketcher_Create3PointArc/it.md) , [Sketcher Create3PointCircle/it](Sketcher_Create3PointCircle/it.md) , [Sketcher CreateArc/it](Sketcher_CreateArc/it.md) , [Sketcher CreateArcOfEllipse/it](Sketcher_CreateArcOfEllipse/it.md) , [Sketcher CreateArcOfHyperbola/it](Sketcher_CreateArcOfHyperbola/it.md) , [Sketcher CreateArcOfParabola/it](Sketcher_CreateArcOfParabola/it.md) , [Sketcher CreateBSpline/it](Sketcher_CreateBSpline/it.md) , [Sketcher CreateCircle/it](Sketcher_CreateCircle/it.md) , [Sketcher CreateEllipseBy3Points/it](Sketcher_CreateEllipseBy3Points/it.md) , [Sketcher CreateEllipseByCenter/it](Sketcher_CreateEllipseByCenter/it.md) , [Sketcher CreateFillet/it](Sketcher_CreateFillet/it.md) , [Sketcher CreateHeptagon/it](Sketcher_CreateHeptagon/it.md) , [Sketcher CreateHexagon/it](Sketcher_CreateHexagon/it.md) , [Sketcher CreateLine/it](Sketcher_CreateLine/it.md) , [Sketcher CreateOctagon/it](Sketcher_CreateOctagon/it.md) , [Sketcher CreatePentagon/it](Sketcher_CreatePentagon/it.md) , [Sketcher CreatePeriodicBSpline/it](Sketcher_CreatePeriodicBSpline/it.md) , [Sketcher CreatePoint/it](Sketcher_CreatePoint/it.md) , [Sketcher CreatePolyline/it](Sketcher_CreatePolyline/it.md) , [Sketcher CreateRectangle/it](Sketcher_CreateRectangle/it.md) , [Sketcher CreateRegularPolygon/it](Sketcher_CreateRegularPolygon/it.md) , [Sketcher CreateSlot/it](Sketcher_CreateSlot/it.md) , [Sketcher CreateSquare/it](Sketcher_CreateSquare/it.md) , [Sketcher CreateTriangle/it](Sketcher_CreateTriangle/it.md) , [Sketcher DeleteAllConstraints/it](Sketcher_DeleteAllConstraints/it.md) , [Sketcher DeleteAllGeometry/it](Sketcher_DeleteAllGeometry/it.md) , [Sketcher Dialog/it](Sketcher_Dialog/it.md) , [Sketcher EditSketch/it](Sketcher_EditSketch/it.md) , [Sketcher Extend/it](Sketcher_Extend/it.md) , [Sketcher External/it](Sketcher_External/it.md) , [Sketcher helper constraint/it](Sketcher_helper_constraint/it.md) , [Sketcher LeaveSketch/it](Sketcher_LeaveSketch/it.md) , [Sketcher MapSketch/it](Sketcher_MapSketch/it.md) , [Sketcher MergeSketches/it](Sketcher_MergeSketches/it.md) , [Sketcher Micro Tutorial - Constraint Practices/it](Sketcher_Micro_Tutorial_-_Constraint_Practices/it.md) , [Sketcher MirrorSketch/it](Sketcher_MirrorSketch/it.md) , [Sketcher Move/it](Sketcher_Move/it.md) , [Sketcher NewSketch/it](Sketcher_NewSketch/it.md) , [Sketcher Preferences/it](Sketcher_Preferences/it.md) , [Sketcher project/it](Sketcher_project/it.md) , [Sketcher RectangularArray/it](Sketcher_RectangularArray/it.md) , [Sketcher reference/it](Sketcher_reference/it.md) , [Sketcher ReorientSketch/it](Sketcher_ReorientSketch/it.md) , [Sketcher requirement for a sketch/it](Sketcher_requirement_for_a_sketch/it.md) , [Sketcher RestoreInternalAlignmentGeometry/it](Sketcher_RestoreInternalAlignmentGeometry/it.md) , [Sketcher scripting/it](Sketcher_scripting/it.md) , [Sketcher SelectConflictingConstraints/it](Sketcher_SelectConflictingConstraints/it.md) , [Sketcher SelectConstraints/it](Sketcher_SelectConstraints/it.md) , [Sketcher SelectElementsAssociatedWithConstraints/it](Sketcher_SelectElementsAssociatedWithConstraints/it.md) , [Sketcher SelectElementsWithDoFs/it](Sketcher_SelectElementsWithDoFs/it.md) , [Sketcher SelectHorizontalAxis/it](Sketcher_SelectHorizontalAxis/it.md) , [Sketcher SelectOrigin/it](Sketcher_SelectOrigin/it.md) , [Sketcher SelectRedundantConstraints/it](Sketcher_SelectRedundantConstraints/it.md) , [Sketcher SelectVerticalAxis/it](Sketcher_SelectVerticalAxis/it.md) , [Sketcher Sketch/it](Sketcher_Sketch/it.md) , [Sketcher SketchObject/it](Sketcher_SketchObject/it.md) , [Sketcher Split/it](Sketcher_Split/it.md) , [Sketcher StopOperation/it](Sketcher_StopOperation/it.md) , [Sketcher SwitchVirtualSpace/it](Sketcher_SwitchVirtualSpace/it.md) , [Sketcher Symmetry/it](Sketcher_Symmetry/it.md) , [Sketcher ToggleActiveConstraint/it](Sketcher_ToggleActiveConstraint/it.md) , [Sketcher ToggleConstruction/it](Sketcher_ToggleConstruction/it.md) , [Sketcher ToggleDrivingConstraint/it](Sketcher_ToggleDrivingConstraint/it.md) , [Template:Sketcher Tools navi/it](Template:Sketcher_Tools_navi/it.md) , [Sketcher Trimming/it](Sketcher_Trimming/it.md) , [Sketcher Tutorial/it](Sketcher_Tutorial/it.md) , [Sketcher ValidateSketch/it](Sketcher_ValidateSketch/it.md) , [Sketcher ViewSection/it](Sketcher_ViewSection/it.md) , [Sketcher ViewSketch/it](Sketcher_ViewSketch/it.md) , [Sketcher Workbench/it](Sketcher_Workbench/it.md) , [Thread for Screw Tutorial/it](Thread_for_Screw_Tutorial/it.md) , [Toothbrush Head Stand/it](Toothbrush_Head_Stand/it.md) , [Tutorial custom placing of windows and doors/it](Tutorial_custom_placing_of_windows_and_doors/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Sketcher/it diff --git a/wiki/translations/it/Category:Spreadsheet.md b/wiki/translations/it/Category:Spreadsheet.md index b26a337668..cea2f4fb16 100644 --- a/wiki/translations/it/Category:Spreadsheet.md +++ b/wiki/translations/it/Category:Spreadsheet.md @@ -6,3 +6,6 @@ This category lists pages related to the [Spreadsheet Workbench/it](Spreadsheet_ [Artwork Spreadsheet/it](Artwork_Spreadsheet/it.md) , [Expressions/it](Expressions/it.md) , [Spreadsheet AlignBottom/it](Spreadsheet_AlignBottom/it.md) , [Spreadsheet AlignCenter/it](Spreadsheet_AlignCenter/it.md) , [Spreadsheet AlignLeft/it](Spreadsheet_AlignLeft/it.md) , [Spreadsheet AlignRight/it](Spreadsheet_AlignRight/it.md) , [Spreadsheet AlignTop/it](Spreadsheet_AlignTop/it.md) , [Spreadsheet AlignVCenter/it](Spreadsheet_AlignVCenter/it.md) , [Spreadsheet CreateSheet/it](Spreadsheet_CreateSheet/it.md) , [Spreadsheet CSV/it](Spreadsheet_CSV/it.md) , [Spreadsheet Export/it](Spreadsheet_Export/it.md) , [Spreadsheet Import/it](Spreadsheet_Import/it.md) , [Spreadsheet MergeCells/it](Spreadsheet_MergeCells/it.md) , [Spreadsheet SetAlias/it](Spreadsheet_SetAlias/it.md) , [Spreadsheet SplitCell/it](Spreadsheet_SplitCell/it.md) , [Spreadsheet StyleBold/it](Spreadsheet_StyleBold/it.md) , [Spreadsheet StyleItalic/it](Spreadsheet_StyleItalic/it.md) , [Spreadsheet StyleUnderline/it](Spreadsheet_StyleUnderline/it.md) , [Template:Spreadsheet Tools navi/it](Template:Spreadsheet_Tools_navi/it.md) , [Spreadsheet Workbench/it](Spreadsheet_Workbench/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Spreadsheet/it diff --git a/wiki/translations/it/Category:Start.md b/wiki/translations/it/Category:Start.md index 4623091c8a..24f3bc9658 100644 --- a/wiki/translations/it/Category:Start.md +++ b/wiki/translations/it/Category:Start.md @@ -6,3 +6,6 @@ This category lists pages related to the [Start Workbench/it](Start_Workbench/it [Artwork Start/it](Artwork_Start/it.md) , [Start Preferences/it](Start_Preferences/it.md) , [Template:Start Tools navi/it](Template:Start_Tools_navi/it.md) , [Start Workbench/it](Start_Workbench/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Start/it diff --git a/wiki/translations/it/Category:Std_Base.md b/wiki/translations/it/Category:Std_Base.md index 6f4bc0a7ed..1e7382f3fd 100644 --- a/wiki/translations/it/Category:Std_Base.md +++ b/wiki/translations/it/Category:Std_Base.md @@ -6,3 +6,6 @@ This category list pages related to the [Std Base](Std_Base/it.md), which collec [App DocumentObjectGroup/it](App_DocumentObjectGroup/it.md) , [App Link/it](App_Link/it.md) , [App Part/it](App_Part/it.md) , [Assembly/it](Assembly/it.md) , [Combo view/it](Combo_view/it.md) , [DAG view/it](DAG_view/it.md) , [Interface Customization/it](Interface_Customization/it.md) , [Part/it](Part/it.md) , [Property editor/it](Property_editor/it.md) , [Python console/it](Python_console/it.md) , [Report view/it](Report_view/it.md) , [Selection view/it](Selection_view/it.md) , [Standard Menu/it](Standard_Menu/it.md) , [Std About/it](Std_About/it.md) , [Std ActivateNextWindow/it](Std_ActivateNextWindow/it.md) , [Std ActivatePrevWindow/it](Std_ActivatePrevWindow/it.md) , [Std AddonMgr/it](Std_AddonMgr/it.md) , [Std Alignment/it](Std_Alignment/it.md) , [Std ArrangeIcons/it](Std_ArrangeIcons/it.md) , [Std AxisCross/it](Std_AxisCross/it.md) , [Template:Std Base navi/it](Template:Std_Base_navi/it.md) , [Std Base/it](Std_Base/it.md) , [Std BoxElementSelection/it](Std_BoxElementSelection/it.md) , [Std BoxSelection/it](Std_BoxSelection/it.md) , [Std CascadeWindows/it](Std_CascadeWindows/it.md) , [Std CloseActiveWindow/it](Std_CloseActiveWindow/it.md) , [Std CloseAllWindows/it](Std_CloseAllWindows/it.md) , [Std Copy/it](Std_Copy/it.md) , [Std Cut/it](Std_Cut/it.md) , [Std Delete/it](Std_Delete/it.md) , [Std DemoMode/it](Std_DemoMode/it.md) , [Std DependencyGraph/it](Std_DependencyGraph/it.md) , [Std DlgCustomize/it](Std_DlgCustomize/it.md) , [Std DlgMacroExecute/it](Std_DlgMacroExecute/it.md) , [Std DlgMacroExecuteDirect/it](Std_DlgMacroExecuteDirect/it.md) , [Std DlgMacroRecord/it](Std_DlgMacroRecord/it.md) , [Std DlgParameter/it](Std_DlgParameter/it.md) , [Std DlgPreferences/it](Std_DlgPreferences/it.md) , [Std DrawStyle/it](Std_DrawStyle/it.md) , [Std DuplicateSelection/it](Std_DuplicateSelection/it.md) , [Std Edit Menu/it](Std_Edit_Menu/it.md) , [Std Edit/it](Std_Edit/it.md) , [Std Export/it](Std_Export/it.md) , [Std File Menu/it](Std_File_Menu/it.md) , [Std FreeCADFAQ/it](Std_FreeCADFAQ/it.md) , [Std FreeCADForum/it](Std_FreeCADForum/it.md) , [Std FreeCADPowerUserHub/it](Std_FreeCADPowerUserHub/it.md) , [Std FreeCADUserHub/it](Std_FreeCADUserHub/it.md) , [Std FreeCADWebsite/it](Std_FreeCADWebsite/it.md) , [Std FreezeViews/it](Std_FreezeViews/it.md) , [Std Group/it](Std_Group/it.md) , [Std Help Menu/it](Std_Help_Menu/it.md) , [Std HideObjects/it](Std_HideObjects/it.md) , [Std HideSelection/it](Std_HideSelection/it.md) , [Std Import/it](Std_Import/it.md) , [Std LinkImport/it](Std_LinkImport/it.md) , [Std LinkImportAll/it](Std_LinkImportAll/it.md) , [Std LinkMake/it](Std_LinkMake/it.md) , [Std LinkMakeRelative/it](Std_LinkMakeRelative/it.md) , [Std LinkReplace/it](Std_LinkReplace/it.md) , [Std LinkSelectLinked/it](Std_LinkSelectLinked/it.md) , [Std LinkSelectLinkedFinal/it](Std_LinkSelectLinkedFinal/it.md) , [Std LinkUnlink/it](Std_LinkUnlink/it.md) , [Std Macro Menu/it](Std_Macro_Menu/it.md) , [Std MacroAttachDebugger/it](Std_MacroAttachDebugger/it.md) , [Std MacroStartDebug/it](Std_MacroStartDebug/it.md) , [Std MacroStepInto/it](Std_MacroStepInto/it.md) , [Std MacroStepOver/it](Std_MacroStepOver/it.md) , [Std MacroStopDebug/it](Std_MacroStopDebug/it.md) , [Std MacroStopRecord/it](Std_MacroStopRecord/it.md) , [Std MainFullscreen/it](Std_MainFullscreen/it.md) , [Std MeasureDistance/it](Std_MeasureDistance/it.md) , [Std MergeProjects/it](Std_MergeProjects/it.md) , [Std New/it](Std_New/it.md) , [Std OnlineHelp/it](Std_OnlineHelp/it.md) , [Std Open/it](Std_Open/it.md) , [Std OrthographicCamera/it](Std_OrthographicCamera/it.md) , [Std Part/it](Std_Part/it.md) , [Std Paste/it](Std_Paste/it.md) , [Std PerspectiveCamera/it](Std_PerspectiveCamera/it.md) , [Std Placement/it](Std_Placement/it.md) , [Std Print/it](Std_Print/it.md) , [Std PrintPdf/it](Std_PrintPdf/it.md) , [Std PrintPreview/it](Std_PrintPreview/it.md) , [Std ProjectInfo/it](Std_ProjectInfo/it.md) , [Std ProjectUtil/it](Std_ProjectUtil/it.md) , [Std PythonHelp/it](Std_PythonHelp/it.md) , [Std Quit/it](Std_Quit/it.md) , [Std RandomColor/it](Std_RandomColor/it.md) , [Std RecentFiles/it](Std_RecentFiles/it.md) , [Std Redo/it](Std_Redo/it.md) , [Std Refresh/it](Std_Refresh/it.md) , [Std Revert/it](Std_Revert/it.md) , [Std Save/it](Std_Save/it.md) , [Std SaveAll/it](Std_SaveAll/it.md) , [Std SaveAs/it](Std_SaveAs/it.md) , [Std SaveCopy/it](Std_SaveCopy/it.md) , [Std SceneInspector/it](Std_SceneInspector/it.md) , [Std SelBoundingBox/it](Std_SelBoundingBox/it.md) , [Std SelectAll/it](Std_SelectAll/it.md) , [Std SelectVisibleObjects/it](Std_SelectVisibleObjects/it.md) , [Std SendToPythonConsole/it](Std_SendToPythonConsole/it.md) , [Std SetAppearance/it](Std_SetAppearance/it.md) , [Std ShowObjects/it](Std_ShowObjects/it.md) , [Std ShowSelection/it](Std_ShowSelection/it.md) , [Std TextDocument/it](Std_TextDocument/it.md) , [Std TextureMapping/it](Std_TextureMapping/it.md) , [Std TileWindows/it](Std_TileWindows/it.md) , [Std ToggleBreakpoint/it](Std_ToggleBreakpoint/it.md) , [Std ToggleClipPlane/it](Std_ToggleClipPlane/it.md) , [Std ToggleNavigation/it](Std_ToggleNavigation/it.md) , [Std ToggleObjects/it](Std_ToggleObjects/it.md) , [Std ToggleSelectability/it](Std_ToggleSelectability/it.md) , [Std ToggleVisibility/it](Std_ToggleVisibility/it.md) , [Std Tools Menu/it](Std_Tools_Menu/it.md) , [Std TransformManip/it](Std_TransformManip/it.md) , [Std TreeCollapseDocument/it](Std_TreeCollapseDocument/it.md) , [Std TreeDrag/it](Std_TreeDrag/it.md) , [Std TreeMultiDocument/it](Std_TreeMultiDocument/it.md) , [Std TreePreSelection/it](Std_TreePreSelection/it.md) , [Std TreeRecordSelection/it](Std_TreeRecordSelection/it.md) , [Std TreeSelection/it](Std_TreeSelection/it.md) , [Std TreeSingleDocument/it](Std_TreeSingleDocument/it.md) , [Std TreeSyncPlacement/it](Std_TreeSyncPlacement/it.md) , [Std TreeSyncSelection/it](Std_TreeSyncSelection/it.md) , [Std TreeSyncView/it](Std_TreeSyncView/it.md) , [Std Undo/it](Std_Undo/it.md) , [Std UnitsCalculator/it](Std_UnitsCalculator/it.md) , [Std View Menu/it](Std_View_Menu/it.md) , [Std ViewBottom/it](Std_ViewBottom/it.md) , [Std ViewBoxZoom/it](Std_ViewBoxZoom/it.md) , [Std ViewCreate/it](Std_ViewCreate/it.md) , [Std ViewDimetric/it](Std_ViewDimetric/it.md) , [Std ViewDockUndockFullscreen/it](Std_ViewDockUndockFullscreen/it.md) , [Std ViewFitAll/it](Std_ViewFitAll/it.md) , [Std ViewFitSelection/it](Std_ViewFitSelection/it.md) , [Std ViewFront/it](Std_ViewFront/it.md) , [Std ViewFullscreen/it](Std_ViewFullscreen/it.md) , [Std ViewIsometric/it](Std_ViewIsometric/it.md) , [Std ViewIvIssueCamPos/it](Std_ViewIvIssueCamPos/it.md) , [Std ViewIvStereoInterleavedColumns/it](Std_ViewIvStereoInterleavedColumns/it.md) , [Std ViewIvStereoInterleavedRows/it](Std_ViewIvStereoInterleavedRows/it.md) , [Std ViewIvStereoOff/it](Std_ViewIvStereoOff/it.md) , [Std ViewIvStereoQuadBuff/it](Std_ViewIvStereoQuadBuff/it.md) , [Std ViewIvStereoRedGreen/it](Std_ViewIvStereoRedGreen/it.md) , [Std ViewLeft/it](Std_ViewLeft/it.md) , [Std ViewRear/it](Std_ViewRear/it.md) , [Std ViewRight/it](Std_ViewRight/it.md) , [Std ViewRotateLeft/it](Std_ViewRotateLeft/it.md) , [Std ViewRotateRight/it](Std_ViewRotateRight/it.md) , [Std ViewScreenShot/it](Std_ViewScreenShot/it.md) , [Std ViewStatusBar/it](Std_ViewStatusBar/it.md) , [Std ViewTop/it](Std_ViewTop/it.md) , [Std ViewTrimetric/it](Std_ViewTrimetric/it.md) , [Std ViewZoomIn/it](Std_ViewZoomIn/it.md) , [Std ViewZoomOut/it](Std_ViewZoomOut/it.md) , [Std WhatsThis/it](Std_WhatsThis/it.md) , [Std Windows Menu/it](Std_Windows_Menu/it.md) , [Std Windows/it](Std_Windows/it.md) , [Std Workbench/it](Std_Workbench/it.md) , [Tree view/it](Tree_view/it.md) , [View Measure Clear All/it](View_Measure_Clear_All/it.md) , [View Measure Toggle All/it](View_Measure_Toggle_All/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Std Base/it diff --git a/wiki/translations/it/Category:Surface.md b/wiki/translations/it/Category:Surface.md index 6580290071..102221acd0 100644 --- a/wiki/translations/it/Category:Surface.md +++ b/wiki/translations/it/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/it](Surface_Workbenc [Artwork Surface/it](Artwork_Surface/it.md) , [Surface CurveOnMesh/it](Surface_CurveOnMesh/it.md) , [Surface ExtendFace/it](Surface_ExtendFace/it.md) , [Surface Filling/it](Surface_Filling/it.md) , [Surface GeomFillSurface/it](Surface_GeomFillSurface/it.md) , [Surface Sections/it](Surface_Sections/it.md) , [Surface Workbench/it](Surface_Workbench/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Surface/it diff --git a/wiki/translations/it/Category:TechDraw.md b/wiki/translations/it/Category:TechDraw.md index c463de21ff..96b1ca66f6 100644 --- a/wiki/translations/it/Category:TechDraw.md +++ b/wiki/translations/it/Category:TechDraw.md @@ -6,3 +6,6 @@ Questa categoria elenca le pagine relative a [TechDraw Workbench/it](TechDraw_Wo [Advanced TechDraw Tutorial/it](Advanced_TechDraw_Tutorial/it.md) , [Artwork TechDraw/it](Artwork_TechDraw/it.md) , [Basic TechDraw Tutorial/it](Basic_TechDraw_Tutorial/it.md) , [Bitmap/it](Bitmap/it.md) , [Drawing/it](Drawing/it.md) , [DXF/it](DXF/it.md) , [Measurement Of Angles On Holes/it](Measurement_Of_Angles_On_Holes/it.md) , [SVG/it](SVG/it.md) , [TechDraw 2LineCenterLine/it](TechDraw_2LineCenterLine/it.md) , [TechDraw 2PointCenterLine/it](TechDraw_2PointCenterLine/it.md) , [TechDraw 2PointCosmeticLine/it](TechDraw_2PointCosmeticLine/it.md) , [TechDraw 3PtAngleDimension/it](TechDraw_3PtAngleDimension/it.md) , [TechDraw ActiveView/it](TechDraw_ActiveView/it.md) , [TechDraw AngleDimension/it](TechDraw_AngleDimension/it.md) , [TechDraw Annotation/it](TechDraw_Annotation/it.md) , [TechDraw API/it](TechDraw_API/it.md) , [TechDraw ArchView/it](TechDraw_ArchView/it.md) , [TechDraw Balloon/it](TechDraw_Balloon/it.md) , [TechDraw ClipGroup/it](TechDraw_ClipGroup/it.md) , [TechDraw ClipGroupAdd/it](TechDraw_ClipGroupAdd/it.md) , [TechDraw ClipGroupRemove/it](TechDraw_ClipGroupRemove/it.md) , [TechDraw CosmeticEraser/it](TechDraw_CosmeticEraser/it.md) , [TechDraw CosmeticVertex/it](TechDraw_CosmeticVertex/it.md) , [TechDraw DecorateLine/it](TechDraw_DecorateLine/it.md) , [TechDraw DetailView/it](TechDraw_DetailView/it.md) , [TechDraw DiameterDimension/it](TechDraw_DiameterDimension/it.md) , [TechDraw DraftView/it](TechDraw_DraftView/it.md) , [TechDraw ExportPageDXF/it](TechDraw_ExportPageDXF/it.md) , [TechDraw ExportPageSVG/it](TechDraw_ExportPageSVG/it.md) , [TechDraw FaceCenterLine/it](TechDraw_FaceCenterLine/it.md) , [TechDraw Geometric dimensioning and tolerancing/it](TechDraw_Geometric_dimensioning_and_tolerancing/it.md) , [TechDraw GeometricHatch/it](TechDraw_GeometricHatch/it.md) , [TechDraw Hatch/it](TechDraw_Hatch/it.md) , [TechDraw Hatching/it](TechDraw_Hatching/it.md) , [TechDraw HorizontalDimension/it](TechDraw_HorizontalDimension/it.md) , [TechDraw HorizontalExtentDimension/it](TechDraw_HorizontalExtentDimension/it.md) , [TechDraw HowTo Page/it](TechDraw_HowTo_Page/it.md) , [TechDraw Image/it](TechDraw_Image/it.md) , [TechDraw LandmarkDimension/it](TechDraw_LandmarkDimension/it.md) , [TechDraw LeaderLine/it](TechDraw_LeaderLine/it.md) , [TechDraw LengthDimension/it](TechDraw_LengthDimension/it.md) , [TechDraw LineGroup/it](TechDraw_LineGroup/it.md) , [TechDraw LinkDimension/it](TechDraw_LinkDimension/it.md) , [TechDraw Midpoints/it](TechDraw_Midpoints/it.md) , [TechDraw PageDefault/it](TechDraw_PageDefault/it.md) , [TechDraw PageTemplate/it](TechDraw_PageTemplate/it.md) , [TechDraw Preferences/it](TechDraw_Preferences/it.md) , [TechDraw ProjectionGroup/it](TechDraw_ProjectionGroup/it.md) , [TechDraw Quadrants/it](TechDraw_Quadrants/it.md) , [TechDraw RadiusDimension/it](TechDraw_RadiusDimension/it.md) , [TechDraw RedrawPage/it](TechDraw_RedrawPage/it.md) , [TechDraw RichTextAnnotation/it](TechDraw_RichTextAnnotation/it.md) , [TechDraw Roadmap/it](TechDraw_Roadmap/it.md) , [TechDraw SectionView/it](TechDraw_SectionView/it.md) , [TechDraw ShowAll/it](TechDraw_ShowAll/it.md) , [TechDraw SpreadsheetView/it](TechDraw_SpreadsheetView/it.md) , [TechDraw Symbol/it](TechDraw_Symbol/it.md) , [TechDraw TemplateHowTo/it](TechDraw_TemplateHowTo/it.md) , [TechDraw Templates/it](TechDraw_Templates/it.md) , [TechDraw ToggleFrame/it](TechDraw_ToggleFrame/it.md) , [Template:TechDraw Tools navi/it](Template:TechDraw_Tools_navi/it.md) , [TechDraw VerticalDimension/it](TechDraw_VerticalDimension/it.md) , [TechDraw VerticalExtentDimension/it](TechDraw_VerticalExtentDimension/it.md) , [TechDraw View/it](TechDraw_View/it.md) , [TechDraw WeldSymbol/it](TechDraw_WeldSymbol/it.md) , [TechDraw Workbench/it](TechDraw_Workbench/it.md) , [TechDrawGui API/it](TechDrawGui_API/it.md) , [Tolerancing/it](Tolerancing/it.md) , [Topological naming problem/it](Topological_naming_problem/it.md) , [Tutorial for open windows/it](Tutorial_for_open_windows/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:TechDraw/it diff --git a/wiki/translations/it/Category:Template.md b/wiki/translations/it/Category:Template.md index 5f8cdf841a..ab43dee984 100644 --- a/wiki/translations/it/Category:Template.md +++ b/wiki/translations/it/Category:Template.md @@ -10,3 +10,6 @@ Vedere anche [UncategorizedTemplates](Special:UncategorizedTemplates.md) [Template:APIFunction/it](Template:APIFunction/it.md) , [Template:It](Template:It.md) , [Template:MenuCommand/it](Template:MenuCommand/it.md) , [Template:Property Tab View/it](Template:Property_Tab_View/it.md) , [Template:ProprietaDati](Template:ProprietaDati.md) , [Template:ProprietaVista](Template:ProprietaVista.md) , [Template:Raytracing Tools/it](Template:Raytracing_Tools/it.md) , [Template:Sketcher Tools/it](Template:Sketcher_Tools/it.md) , [Template:TasksTag/it](Template:TasksTag/it.md) , [Template:UnfinishedDocu/it](Template:UnfinishedDocu/it.md) , , , , [Category:Categories/it](Category:Categories/it.md) [Category:Template:Doc/it](Category:Template:Doc/it.md) [Category:Template:Text Format/it](Category:Template:Text_Format/it.md) [Category:Template:Text Long/it](Category:Template:Text_Long/it.md) [Category:Template:Text/it](Category:Template:Text/it.md) + +--- +[documentation index](../README.md) > Category:Template/it diff --git a/wiki/translations/it/Category:Template:Doc.md b/wiki/translations/it/Category:Template:Doc.md index 6f900fb8f0..39590597a9 100644 --- a/wiki/translations/it/Category:Template:Doc.md +++ b/wiki/translations/it/Category:Template:Doc.md @@ -6,3 +6,6 @@ Questa categoria elenca i modelli che producono caselle di testo utilizzate per [Template:Macro/it](Template:Macro/it.md) [Category:Template/it](Category:Template/it.md) + +--- +[documentation index](../README.md) > Category:Template:Doc/it diff --git a/wiki/translations/it/Category:Template:Navigation.md b/wiki/translations/it/Category:Template:Navigation.md index a6e4d2f410..b06107ba1b 100644 --- a/wiki/translations/it/Category:Template:Navigation.md +++ b/wiki/translations/it/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/it](Template:Arch_Tools_navi/it.md) , [Template:Artwork/it](Template:Artwork/it.md) , [Template:Document objects navi/it](Template:Document_objects_navi/it.md) , [Template:Draft Tools navi/it](Template:Draft_Tools_navi/it.md) , [Template:Drawing Tools navi/it](Template:Drawing_Tools_navi/it.md) , [Template:EM Tools navi/it](Template:EM_Tools_navi/it.md) , [Template:FEM Tools navi/it](Template:FEM_Tools_navi/it.md) , [Template:Interface navi/it](Template:Interface_navi/it.md) , [Template:Mesh Tools navi/it](Template:Mesh_Tools_navi/it.md) , [Template:OpenSCAD Tools navi/it](Template:OpenSCAD_Tools_navi/it.md) , [Template:Part Tools navi/it](Template:Part_Tools_navi/it.md) , [Template:PartDesign Tools navi/it](Template:PartDesign_Tools_navi/it.md) , [Template:Path Tools navi/it](Template:Path_Tools_navi/it.md) , [Template:Plot Tools navi/it](Template:Plot_Tools_navi/it.md) , [Template:Powerdocnavi/it](Template:Powerdocnavi/it.md) , [Template:Raytracing Tools navi/it](Template:Raytracing_Tools_navi/it.md) , [Template:Robot Tools navi/it](Template:Robot_Tools_navi/it.md) , [Template:Ship Tools navi/it](Template:Ship_Tools_navi/it.md) , [Template:Sketcher Tools navi/it](Template:Sketcher_Tools_navi/it.md) , [Template:Spreadsheet Tools navi/it](Template:Spreadsheet_Tools_navi/it.md) , [Template:Start Tools navi/it](Template:Start_Tools_navi/it.md) , [Template:Std Base navi/it](Template:Std_Base_navi/it.md) , [Template:TechDraw Tools navi/it](Template:TechDraw_Tools_navi/it.md) , [Template:Tutorials navi/it](Template:Tutorials_navi/it.md) [Category:Template](Category:Template.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/it diff --git a/wiki/translations/it/Category:Template:Text.md b/wiki/translations/it/Category:Template:Text.md index fec75ca890..78831d0931 100644 --- a/wiki/translations/it/Category:Template:Text.md +++ b/wiki/translations/it/Category:Template:Text.md @@ -10,3 +10,6 @@ Longer pieces of text should be placed in the page itself so that they are trans [Template:Obsolete/it](Template:Obsolete/it.md) , [Template:Version/it](Template:Version/it.md) , [Template:VersionMinus/it](Template:VersionMinus/it.md) , [Template:VersionPlus/it](Template:VersionPlus/it.md) [Category:Template/it](Category:Template/it.md) + +--- +[documentation index](../README.md) > Category:Template:Text/it diff --git a/wiki/translations/it/Category:Template:Text_Format.md b/wiki/translations/it/Category:Template:Text_Format.md index 2c8d4345ea..2ff8d3cc35 100644 --- a/wiki/translations/it/Category:Template:Text_Format.md +++ b/wiki/translations/it/Category:Template:Text_Format.md @@ -6,3 +6,6 @@ Questa categoria elenca i modelli di formato testo forniti come input. [Template:PropertyData/it](Template:PropertyData/it.md) , [Template:PropertyView/it](Template:PropertyView/it.md) [Category:Template/it](Category:Template/it.md) + +--- +[documentation index](../README.md) > Category:Template:Text Format/it diff --git a/wiki/translations/it/Category:Template:Text_Long.md b/wiki/translations/it/Category:Template:Text_Long.md index 62e97eebd2..f5cd0d034b 100644 --- a/wiki/translations/it/Category:Template:Text_Long.md +++ b/wiki/translations/it/Category:Template:Text_Long.md @@ -10,3 +10,6 @@ These long pages should not be transcluded; rather, the information should be pl [Template:Blender Navigation/it](Template:Blender_Navigation/it.md) [Category:Template/it](Category:Template/it.md) + +--- +[documentation index](../README.md) > Category:Template:Text Long/it diff --git a/wiki/translations/it/Category:Test_Framework.md b/wiki/translations/it/Category:Test_Framework.md index fef3c6d074..259a108c9c 100644 --- a/wiki/translations/it/Category:Test_Framework.md +++ b/wiki/translations/it/Category:Test_Framework.md @@ -6,3 +6,6 @@ This category lists pages related to the [Test Framework Workbench/it](Test_Fram [Testing/it](Testing/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) [Category:Testing/it](Category:Testing/it.md) + +--- +[documentation index](../README.md) > Category:Test Framework/it diff --git a/wiki/translations/it/Category:Testing.md b/wiki/translations/it/Category:Testing.md index 5174c16b0a..5a24b2283e 100644 --- a/wiki/translations/it/Category:Testing.md +++ b/wiki/translations/it/Category:Testing.md @@ -6,3 +6,6 @@ Pages related to testing in regards to unit testing, continuous integration, qua [AppImage/it](AppImage/it.md) , [Continuous Integration/it](Continuous_Integration/it.md) , [LGTM/it](LGTM/it.md) , [Testing/it](Testing/it.md) , [Category:Test Framework/it](Category:Test_Framework/it.md) + +--- +[documentation index](../README.md) > Category:Testing/it diff --git a/wiki/translations/it/Category:Tutorials.md b/wiki/translations/it/Category:Tutorials.md index 89293b75c4..42fec8f3ec 100644 --- a/wiki/translations/it/Category:Tutorials.md +++ b/wiki/translations/it/Category:Tutorials.md @@ -10,3 +10,6 @@ Guide a FreeCAD . Contribuisci ad aggiungerne altre! [Add FEM constraint tutorial/it](Add_FEM_constraint_tutorial/it.md) , [Add FEM equation tutorial/it](Add_FEM_equation_tutorial/it.md) , [Advanced TechDraw Tutorial/it](Advanced_TechDraw_Tutorial/it.md) , [Aeroplane/it](Aeroplane/it.md) , [Analysis of reinforced concrete with FEM/it](Analysis_of_reinforced_concrete_with_FEM/it.md) , [Arch panel tutorial/it](Arch_panel_tutorial/it.md) , [Arch tutorial/it](Arch_tutorial/it.md) , [Basic Attachment Tutorial/it](Basic_Attachment_Tutorial/it.md) , [Basic modeling tutorial/it](Basic_modeling_tutorial/it.md) , [Basic Part Design Tutorial/it](Basic_Part_Design_Tutorial/it.md) , [Basic Sketcher Tutorial/it](Basic_Sketcher_Tutorial/it.md) , [Basic TechDraw Tutorial/it](Basic_TechDraw_Tutorial/it.md) , [BIM ingame tutorial/it](BIM_ingame_tutorial/it.md) , [Creating a simple part with PartDesign/it](Creating_a_simple_part_with_PartDesign/it.md) , [Customize Toolbars/it](Customize_Toolbars/it.md) , [Draft ShapeString tutorial/it](Draft_ShapeString_tutorial/it.md) , [Draft tutorial/it](Draft_tutorial/it.md) , [Drawing Template HowTo/it](Drawing_Template_HowTo/it.md) , [Drawing tutorial/it](Drawing_tutorial/it.md) , [Dxf Importer Install/it](Dxf_Importer_Install/it.md) , [Engine Block Tutorial/it](Engine_Block_Tutorial/it.md) , [Esercitazioni](Esercitazioni.md) , [Export to STL or OBJ/it](Export_to_STL_or_OBJ/it.md) , [Extend FEM Module/it](Extend_FEM_Module/it.md) , [FEM Beginner tutorial/it](FEM_Beginner_tutorial/it.md) , [FEM CalculiX Cantilever 3D/it](FEM_CalculiX_Cantilever_3D/it.md) , [FEM Example Capacitance Two Balls/it](FEM_Example_Capacitance_Two_Balls/it.md) , [FEM Shear of a Composite Block/it](FEM_Shear_of_a_Composite_Block/it.md) , [FEM Tutorial Python/it](FEM_Tutorial_Python/it.md) , [FEM tutorial/it](FEM_tutorial/it.md) , [FreeCAD-Ship s60 tutorial (II)/it](FreeCAD-Ship_s60_tutorial_(II)/it.md) , [FreeCAD-Ship s60 tutorial/it](FreeCAD-Ship_s60_tutorial/it.md) , [How to install additional workbenches/it](How_to_install_additional_workbenches/it.md) , [How to install macros/it](How_to_install_macros/it.md) , [Import from STL or OBJ/it](Import_from_STL_or_OBJ/it.md) , [Import OpenSCAD code/it](Import_OpenSCAD_code/it.md) , [Import text and geometry from Inkscape/it](Import_text_and_geometry_from_Inkscape/it.md) , [Import/Export IFC - compiling IfcOpenShell/it](Import/Export_IFC_-_compiling_IfcOpenShell/it.md) , [Manual:BIM modeling/it](Manual:BIM_modeling/it.md) , [Manual:Creating FEM analyses/it](Manual:Creating_FEM_analyses/it.md) , [Manual:Creating renderings/it](Manual:Creating_renderings/it.md) , [Manual:Generating 2D drawings/it](Manual:Generating_2D_drawings/it.md) , [Manual:Import and export to other filetypes/it](Manual:Import_and_export_to_other_filetypes/it.md) , [Manual:Installing/it](Manual:Installing/it.md) , [Manual:Modeling for product design/it](Manual:Modeling_for_product_design/it.md) , [Manual:Parametric objects/it](Manual:Parametric_objects/it.md) , [Manual:Preparing models for 3D printing/it](Manual:Preparing_models_for_3D_printing/it.md) , [Manual:Traditional 2D drafting/it](Manual:Traditional_2D_drafting/it.md) , [Manual:Traditional modeling, the CSG way/it](Manual:Traditional_modeling,_the_CSG_way/it.md) , [Manual:Using spreadsheets/it](Manual:Using_spreadsheets/it.md) , [Measurement Of Angles On Holes/it](Measurement_Of_Angles_On_Holes/it.md) , [Offsite tutorials/it](Offsite_tutorials/it.md) , [Part and PartDesign/it](Part_and_PartDesign/it.md) , [Part Loft Technical Details/it](Part_Loft_Technical_Details/it.md) , [PartDesign Bearingholder Tutorial I/it](PartDesign_Bearingholder_Tutorial_I/it.md) , [PartDesign Bearingholder Tutorial II/it](PartDesign_Bearingholder_Tutorial_II/it.md) , [PartDesign tutorial/it](PartDesign_tutorial/it.md) , [Path Walkthrough for the Impatient/it](Path_Walkthrough_for_the_Impatient/it.md) , [Plot Basic tutorial/it](Plot_Basic_tutorial/it.md) , [Plot MultiAxes tutorial/it](Plot_MultiAxes_tutorial/it.md) , [Post-Processing of FEM Results with Paraview/it](Post-Processing_of_FEM_Results_with_Paraview/it.md) , [Raytracing tutorial/it](Raytracing_tutorial/it.md) , [Robot 6-Axis/it](Robot_6-Axis/it.md) , [Robot tutorial/it](Robot_tutorial/it.md) , [Scripted Parts: Ball Bearing - Part 1/it](Scripted_Parts:_Ball_Bearing_-_Part_1/it.md) , [Scripted Parts: Ball Bearing - Part 2/it](Scripted_Parts:_Ball_Bearing_-_Part_2/it.md) , [Scripts/it](Scripts/it.md) , [Sketcher Micro Tutorial - Constraint Practices/it](Sketcher_Micro_Tutorial_-_Constraint_Practices/it.md) , [Sketcher reference/it](Sketcher_reference/it.md) , [Sketcher requirement for a sketch/it](Sketcher_requirement_for_a_sketch/it.md) , [Sketcher Tutorial/it](Sketcher_Tutorial/it.md) , [Soluzione1](Soluzione1.md) , [Soluzione2](Soluzione2.md) , [TechDraw HowTo Page/it](TechDraw_HowTo_Page/it.md) , [TechDraw TemplateHowTo/it](TechDraw_TemplateHowTo/it.md) , [Thread for Screw Tutorial/it](Thread_for_Screw_Tutorial/it.md) , [Toothbrush Head Stand/it](Toothbrush_Head_Stand/it.md) , [Transient FEM analysis/it](Transient_FEM_analysis/it.md) , [Tutorial custom placing of windows and doors/it](Tutorial_custom_placing_of_windows_and_doors/it.md) , [Tutorial for open windows/it](Tutorial_for_open_windows/it.md) , [Tutorial FreeCAD POV ray/it](Tutorial_FreeCAD_POV_ray/it.md) , [Tutorial Render with Blender/it](Tutorial_Render_with_Blender/it.md) , [Template:TutorialInfo/it](Template:TutorialInfo/it.md) , [Tutorials/it](Tutorials/it.md) , [Video tutorials for architectural design/it](Video_tutorials_for_architectural_design/it.md) , [Video tutorials for product design/it](Video_tutorials_for_product_design/it.md) , [Video tutorials obsolete/it](Video_tutorials_obsolete/it.md) , [Video tutorials/it](Video_tutorials/it.md) , [VRML Preparation for Robot Simulation/it](VRML_Preparation_for_Robot_Simulation/it.md) , [Whiffle Ball tutorial/it](Whiffle_Ball_tutorial/it.md) , [Wikihouse porting tutorial/it](Wikihouse_porting_tutorial/it.md) [Category:Categories/it](Category:Categories/it.md) + +--- +[documentation index](../README.md) > Category:Tutorials/it diff --git a/wiki/translations/it/Category:UnfinishedDocu.md b/wiki/translations/it/Category:UnfinishedDocu.md index d2380a0ae8..fc32af9ddd 100644 --- a/wiki/translations/it/Category:UnfinishedDocu.md +++ b/wiki/translations/it/Category:UnfinishedDocu.md @@ -4,3 +4,6 @@ This category contains all Unfinished Documents ### Contents: [Category:Administration/it](Category:Administration/it.md) [Category:Categories/it](Category:Categories/it.md) + +--- +[documentation index](../README.md) > Category:UnfinishedDocu/it diff --git a/wiki/translations/it/Category:User_Documentation.md b/wiki/translations/it/Category:User_Documentation.md index 9a0bbeba11..eae16bde67 100644 --- a/wiki/translations/it/Category:User_Documentation.md +++ b/wiki/translations/it/Category:User_Documentation.md @@ -10,3 +10,6 @@ E\' anche la lista centrale di download per la documentazione in linea di FreeCA [BIM Box/it](BIM_Box/it.md) , [BIM Classification/it](BIM_Classification/it.md) , [BIM Clone/it](BIM_Clone/it.md) , [BIM Copy/it](BIM_Copy/it.md) , [BIM IfcElements/it](BIM_IfcElements/it.md) , [BIM IfcProperties/it](BIM_IfcProperties/it.md) , [BIM Layers/it](BIM_Layers/it.md) , [BIM Project/it](BIM_Project/it.md) , [BIM Setup/it](BIM_Setup/it.md) , [BIM Views/it](BIM_Views/it.md) , [BIM Windows/it](BIM_Windows/it.md) , [Template:GuiCommandAddon/it](Template:GuiCommandAddon/it.md) , [3D view/it](3D_view/it.md) , [3Dconnexion input devices/it](3Dconnexion_input_devices/it.md) , [A2plus Workbench/it](A2plus_Workbench/it.md) , [About FreeCAD/it](About_FreeCAD/it.md) , [Add FEM constraint tutorial/it](Add_FEM_constraint_tutorial/it.md) , [Add FEM equation tutorial/it](Add_FEM_equation_tutorial/it.md) , [Addon/it](Addon/it.md) , [Advanced TechDraw Tutorial/it](Advanced_TechDraw_Tutorial/it.md) , [Aeroplane/it](Aeroplane/it.md) , [Analysis of reinforced concrete with FEM/it](Analysis_of_reinforced_concrete_with_FEM/it.md) , [Animation Workbench/it](Animation_Workbench/it.md) , [App DocumentObject/it](App_DocumentObject/it.md) , [App DocumentObjectGroup/it](App_DocumentObjectGroup/it.md) , [App FeaturePython/it](App_FeaturePython/it.md) , [App GeoFeature/it](App_GeoFeature/it.md) , [App Link/it](App_Link/it.md) , [App Part/it](App_Part/it.md) , [AppImage/it](AppImage/it.md) , [Arch 3DS/it](Arch_3DS/it.md) , [Arch 3Views/it](Arch_3Views/it.md) , [Arch Add/it](Arch_Add/it.md) , [Arch API/it](Arch_API/it.md) , [Arch Axis/it](Arch_Axis/it.md) , [Arch AxisSystem/it](Arch_AxisSystem/it.md) , [Arch Building/it](Arch_Building/it.md) , [Arch BuildingPart/it](Arch_BuildingPart/it.md) , [Arch Check/it](Arch_Check/it.md) , [Arch CloneComponent/it](Arch_CloneComponent/it.md) , [Arch CloseHoles/it](Arch_CloseHoles/it.md) , [Arch CompAxis/it](Arch_CompAxis/it.md) , [Arch Component/it](Arch_Component/it.md) , [Arch CompPanel/it](Arch_CompPanel/it.md) , [Arch CompPipe/it](Arch_CompPipe/it.md) , [Arch CompRebarStraight/it](Arch_CompRebarStraight/it.md) , [Arch CompSetMaterial/it](Arch_CompSetMaterial/it.md) , [Arch CurtainWall/it](Arch_CurtainWall/it.md) , [Arch CutLine/it](Arch_CutLine/it.md) , [Arch CutPlane/it](Arch_CutPlane/it.md) , [Arch DAE/it](Arch_DAE/it.md) , [Arch Door/it](Arch_Door/it.md) , [Arch Equipment/it](Arch_Equipment/it.md) , [Arch Fence/it](Arch_Fence/it.md) , [Arch Floor/it](Arch_Floor/it.md) , [Arch Frame/it](Arch_Frame/it.md) , [Arch Grid/it](Arch_Grid/it.md) , [Arch IFC/it](Arch_IFC/it.md) , [Arch IfcExplorer/it](Arch_IfcExplorer/it.md) , [Arch IfcSpreadsheet/it](Arch_IfcSpreadsheet/it.md) , [Arch JSON/it](Arch_JSON/it.md) , [Arch MergeWalls/it](Arch_MergeWalls/it.md) , [Arch MeshToShape/it](Arch_MeshToShape/it.md) , [Arch MultiMaterial/it](Arch_MultiMaterial/it.md) , [Arch Nest/it](Arch_Nest/it.md) , [Arch OBJ/it](Arch_OBJ/it.md) , [Arch Panel Cut/it](Arch_Panel_Cut/it.md) , [Arch Panel Sheet/it](Arch_Panel_Sheet/it.md) , [Arch panel tutorial/it](Arch_panel_tutorial/it.md) , [Arch Panel/it](Arch_Panel/it.md) , [Arch Pipe/it](Arch_Pipe/it.md) , [Arch PipeConnector/it](Arch_PipeConnector/it.md) , [Arch Preferences/it](Arch_Preferences/it.md) , [Arch Profile/it](Arch_Profile/it.md) , [Arch Project/it](Arch_Project/it.md) , [Arch Rebar BeamReinforcement/it](Arch_Rebar_BeamReinforcement/it.md) , [Arch Rebar BentShape/it](Arch_Rebar_BentShape/it.md) , [Arch Rebar BOM/it](Arch_Rebar_BOM/it.md) , [Arch Rebar Circular ColumnReinforcement/it](Arch_Rebar_Circular_ColumnReinforcement/it.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/it](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/it.md) , [Arch Rebar ColumnReinforcement/it](Arch_Rebar_ColumnReinforcement/it.md) , [Arch Rebar Dimensioning/it](Arch_Rebar_Dimensioning/it.md) , [Arch Rebar Drawing Dimensioning/it](Arch_Rebar_Drawing_Dimensioning/it.md) , [Arch Rebar Drawing/it](Arch_Rebar_Drawing/it.md) , [Arch Rebar Helical/it](Arch_Rebar_Helical/it.md) , [Arch Rebar LShape/it](Arch_Rebar_LShape/it.md) , [Arch Rebar Stirrup/it](Arch_Rebar_Stirrup/it.md) , [Arch Rebar Straight/it](Arch_Rebar_Straight/it.md) , [Arch Rebar UShape/it](Arch_Rebar_UShape/it.md) , [Arch Rebar/it](Arch_Rebar/it.md) , [Arch Reference/it](Arch_Reference/it.md) , [Arch Remove/it](Arch_Remove/it.md) , [Arch RemoveShape/it](Arch_RemoveShape/it.md) , [Arch Roof/it](Arch_Roof/it.md) , [Arch Schedule/it](Arch_Schedule/it.md) , [Arch SectionPlane/it](Arch_SectionPlane/it.md) , [Arch SelectNonSolidMeshes/it](Arch_SelectNonSolidMeshes/it.md) , [Arch SetMaterial/it](Arch_SetMaterial/it.md) , [Arch SHP/it](Arch_SHP/it.md) , [Arch Site/it](Arch_Site/it.md) , [Arch Space/it](Arch_Space/it.md) , [Arch SplitMesh/it](Arch_SplitMesh/it.md) , [Arch Stairs/it](Arch_Stairs/it.md) , [Arch Structure/it](Arch_Structure/it.md) , [Arch Survey/it](Arch_Survey/it.md) , [Arch ToggleIfcBrepFlag/it](Arch_ToggleIfcBrepFlag/it.md) , [Arch ToggleSubs/it](Arch_ToggleSubs/it.md) , [Arch Truss/it](Arch_Truss/it.md) , [Arch tutorial/it](Arch_tutorial/it.md) , [Arch Wall/it](Arch_Wall/it.md) , [Arch Window/it](Arch_Window/it.md) , [Arch Workbench/it](Arch_Workbench/it.md) , [Assembly/it](Assembly/it.md) , [Assembly2 Workbench/it](Assembly2_Workbench/it.md) , [Assembly3 Workbench/it](Assembly3_Workbench/it.md) , [Assembly4 Workbench/it](Assembly4_Workbench/it.md) , [Asymptote/it](Asymptote/it.md) , [Base API/it](Base_API/it.md) , [Basic Attachment Tutorial/it](Basic_Attachment_Tutorial/it.md) , [Basic modeling tutorial/it](Basic_modeling_tutorial/it.md) , [Basic Part Design Tutorial/it](Basic_Part_Design_Tutorial/it.md) , [Basic Sketcher Tutorial/it](Basic_Sketcher_Tutorial/it.md) , [Basic TechDraw Tutorial/it](Basic_TechDraw_Tutorial/it.md) , [BIM IfcQuantities/it](BIM_IfcQuantities/it.md) , [BIM Library/it](BIM_Library/it.md) , [BIM Preflight/it](BIM_Preflight/it.md) , [BIM Workbench/it](BIM_Workbench/it.md) , [Bitmap/it](Bitmap/it.md) , [Body/it](Body/it.md) , [BOLTSFC Workbench/it](BOLTSFC_Workbench/it.md) , [Branding/it](Branding/it.md) , [Bug Triage/it](Bug_Triage/it.md) , [CadQuery Workbench/it](CadQuery_Workbench/it.md) , [Cfd Workbench/it](Cfd_Workbench/it.md) , [Civil Engineering Workbench/it](Civil_Engineering_Workbench/it.md) , [Combo view/it](Combo_view/it.md) , [Common Airfoil Data Import/it](Common_Airfoil_Data_Import/it.md) , [Compile on Docker/it](Compile_on_Docker/it.md) , [Compile on Linux/it](Compile_on_Linux/it.md) , [Compile on MacOS/it](Compile_on_MacOS/it.md) , [Compile on MinGW/it](Compile_on_MinGW/it.md) , [Compile on Windows with VS2013/it](Compile_on_Windows_with_VS2013/it.md) , [Compile on Windows/it](Compile_on_Windows/it.md) , [Compiling (Speeding up)/it](Compiling_(Speeding_up)/it.md) , [Compiling/it](Compiling/it.md) , [Complete Workbench/it](Complete_Workbench/it.md) , [Console API/it](Console_API/it.md) , [Constraint/it](Constraint/it.md) , [Constructive solid geometry/it](Constructive_solid_geometry/it.md) , [Continuous Integration/it](Continuous_Integration/it.md) , [Contributors/it](Contributors/it.md) , [Copying Objects/it](Copying_Objects/it.md) , [Creating a simple part with PartDesign/it](Creating_a_simple_part_with_PartDesign/it.md) , [Crowdin Administration/it](Crowdin_Administration/it.md) , [Crowdin Scripts/it](Crowdin_Scripts/it.md) , [CurvedShapes CurvedArray/it](CurvedShapes_CurvedArray/it.md) , [CurvedShapes Workbench/it](CurvedShapes_Workbench/it.md) , [Curves ExtendCurve/it](Curves_ExtendCurve/it.md) , [Curves GordonSurface/it](Curves_GordonSurface/it.md) , [Curves IsoCurve/it](Curves_IsoCurve/it.md) , [Curves JoinCurve/it](Curves_JoinCurve/it.md) , [Curves MultiLoft/it](Curves_MultiLoft/it.md) , [Curves ParametricComb/it](Curves_ParametricComb/it.md) , [Curves ParametricSolid/it](Curves_ParametricSolid/it.md) , [Curves PasteSVG/it](Curves_PasteSVG/it.md) , [Curves Pipeshell/it](Curves_Pipeshell/it.md) , [Curves SketchOnSurface/it](Curves_SketchOnSurface/it.md) , [Curves SplitCurve/it](Curves_SplitCurve/it.md) , [Curves ToConsole/it](Curves_ToConsole/it.md) , [Curves Workbench/it](Curves_Workbench/it.md) , [Curves ZebraTool/it](Curves_ZebraTool/it.md) , [Custom Spacing/it](Custom_Spacing/it.md) , [Customize Toolbars/it](Customize_Toolbars/it.md) , [DAG view/it](DAG_view/it.md) , [Datum/it](Datum/it.md) , [Debian development/it](Debian_development/it.md) , [Debian Unstable/it](Debian_Unstable/it.md) , [Defeaturing Workbench/it](Defeaturing_Workbench/it.md) , [Defeaturing/it](Defeaturing/it.md) , [Template:Depths/Heights/it](Template:Depths/Heights/it.md) , [Developer hub/it](Developer_hub/it.md) , [Developing FreeCAD with GitKraken/it](Developing_FreeCAD_with_GitKraken/it.md) , [Document structure/it](Document_structure/it.md) , [Donate/it](Donate/it.md) , [Download/it](Download/it.md) , [Draft AddConstruction/it](Draft_AddConstruction/it.md) , [Draft AddToGroup/it](Draft_AddToGroup/it.md) , [Draft AnnotationStyleEditor/it](Draft_AnnotationStyleEditor/it.md) , [Draft API/it](Draft_API/it.md) , [Draft ApplyStyle/it](Draft_ApplyStyle/it.md) , [Draft Arc 3Points/it](Draft_Arc_3Points/it.md) , [Draft Arc/it](Draft_Arc/it.md) , [Draft Array/it](Draft_Array/it.md) , [Draft AutoGroup/it](Draft_AutoGroup/it.md) , [Draft BezCurve/it](Draft_BezCurve/it.md) , [Draft BSpline/it](Draft_BSpline/it.md) , [Draft Circle/it](Draft_Circle/it.md) , [Draft CircularArray/it](Draft_CircularArray/it.md) , [Draft Clone/it](Draft_Clone/it.md) , [Draft Constrain/it](Draft_Constrain/it.md) , [Draft CubicBezCurve/it](Draft_CubicBezCurve/it.md) , [Draft DAT/it](Draft_DAT/it.md) , [Draft Dimension/it](Draft_Dimension/it.md) , [Draft Downgrade/it](Draft_Downgrade/it.md) , [Draft Draft2Sketch/it](Draft_Draft2Sketch/it.md) , [Draft Drawing/it](Draft_Drawing/it.md) , [Draft DXF/it](Draft_DXF/it.md) , [Draft Edit/it](Draft_Edit/it.md) , [Draft Ellipse/it](Draft_Ellipse/it.md) , [Draft Facebinder/it](Draft_Facebinder/it.md) , [Draft Fillet/it](Draft_Fillet/it.md) , [Draft FlipDimension/it](Draft_FlipDimension/it.md) , [Draft Heal/it](Draft_Heal/it.md) , [Draft Join/it](Draft_Join/it.md) , [Draft Label/it](Draft_Label/it.md) , [Draft Layer/it](Draft_Layer/it.md) , [Draft Line/it](Draft_Line/it.md) , [Draft Mirror/it](Draft_Mirror/it.md) , [Draft Move/it](Draft_Move/it.md) , [Draft OCA/it](Draft_OCA/it.md) , [Draft Offset/it](Draft_Offset/it.md) , [Draft OrthoArray/it](Draft_OrthoArray/it.md) , [Draft PathArray/it](Draft_PathArray/it.md) , [Draft PathLinkArray/it](Draft_PathLinkArray/it.md) , [Draft Pattern/it](Draft_Pattern/it.md) , [Draft Point/it](Draft_Point/it.md) , [Draft PointArray/it](Draft_PointArray/it.md) , [Draft PointLinkArray/it](Draft_PointLinkArray/it.md) , [Draft PolarArray/it](Draft_PolarArray/it.md) , [Draft Polygon/it](Draft_Polygon/it.md) , [Draft Preferences/it](Draft_Preferences/it.md) , [Draft Rectangle/it](Draft_Rectangle/it.md) , [Draft Rotate/it](Draft_Rotate/it.md) , [Draft Scale/it](Draft_Scale/it.md) , [Draft SelectGroup/it](Draft_SelectGroup/it.md) , [Draft SelectPlane/it](Draft_SelectPlane/it.md) , [Draft Shape2DView/it](Draft_Shape2DView/it.md) , [Draft ShapeString tutorial/it](Draft_ShapeString_tutorial/it.md) , [Draft ShapeString/it](Draft_ShapeString/it.md) , [Draft ShowSnapBar/it](Draft_ShowSnapBar/it.md) , [Draft Slope/it](Draft_Slope/it.md) , [Draft Snap Angle/it](Draft_Snap_Angle/it.md) , [Draft Snap Center/it](Draft_Snap_Center/it.md) , [Draft Snap Dimensions/it](Draft_Snap_Dimensions/it.md) , [Draft Snap Endpoint/it](Draft_Snap_Endpoint/it.md) , [Draft Snap Extension/it](Draft_Snap_Extension/it.md) , [Draft Snap Grid/it](Draft_Snap_Grid/it.md) , [Draft Snap Intersection/it](Draft_Snap_Intersection/it.md) , [Draft Snap Lock/it](Draft_Snap_Lock/it.md) , [Draft Snap Midpoint/it](Draft_Snap_Midpoint/it.md) , [Draft Snap Near/it](Draft_Snap_Near/it.md) , [Draft Snap Ortho/it](Draft_Snap_Ortho/it.md) , [Draft Snap Parallel/it](Draft_Snap_Parallel/it.md) , [Draft Snap Perpendicular/it](Draft_Snap_Perpendicular/it.md) , [Draft Snap Special/it](Draft_Snap_Special/it.md) , [Draft Snap WorkingPlane/it](Draft_Snap_WorkingPlane/it.md) , [Draft Snap/it](Draft_Snap/it.md) , [Draft Split/it](Draft_Split/it.md) , [Draft Stretch/it](Draft_Stretch/it.md) , [Draft SubelementHighlight/it](Draft_SubelementHighlight/it.md) , [Draft SVG/it](Draft_SVG/it.md) , [Draft Text/it](Draft_Text/it.md) , [Draft ToggleConstructionMode/it](Draft_ToggleConstructionMode/it.md) , [Draft ToggleContinueMode/it](Draft_ToggleContinueMode/it.md) , [Draft ToggleDisplayMode/it](Draft_ToggleDisplayMode/it.md) , [Draft ToggleGrid/it](Draft_ToggleGrid/it.md) , [Draft Tray/it](Draft_Tray/it.md) , [Draft Trimex/it](Draft_Trimex/it.md) , [Draft tutorial/it](Draft_tutorial/it.md) , [Draft Upgrade/it](Draft_Upgrade/it.md) , [Draft Wire/it](Draft_Wire/it.md) , [Draft WireToBSpline/it](Draft_WireToBSpline/it.md) , [Draft Workbench/it](Draft_Workbench/it.md) , [Draft WorkingPlaneProxy/it](Draft_WorkingPlaneProxy/it.md) , [DraftStandardProperty/it](DraftStandardProperty/it.md) , [Drawing Annotation/it](Drawing_Annotation/it.md) , [Drawing Clip/it](Drawing_Clip/it.md) , [Drawing Dimensioning Addon/it](Drawing_Dimensioning_Addon/it.md) , [Drawing Landscape A3/it](Drawing_Landscape_A3/it.md) , [Drawing Open SVG/it](Drawing_Open_SVG/it.md) , [Drawing Openbrowser/it](Drawing_Openbrowser/it.md) , [Drawing Orthoviews/it](Drawing_Orthoviews/it.md) , [Drawing ProjectShape/it](Drawing_ProjectShape/it.md) , [Drawing Save/it](Drawing_Save/it.md) , [Drawing SpreadsheetView/it](Drawing_SpreadsheetView/it.md) , [Drawing Symbol/it](Drawing_Symbol/it.md) , [Drawing Template HowTo/it](Drawing_Template_HowTo/it.md) , [Drawing templates/it](Drawing_templates/it.md) , [Drawing tutorial/it](Drawing_tutorial/it.md) , [Drawing View/it](Drawing_View/it.md) , [Drawing Workbench/it](Drawing_Workbench/it.md) , [Drawing/it](Drawing/it.md) , [Dxf Importer Install/it](Dxf_Importer_Install/it.md) , [DXF/it](DXF/it.md) , [DynamicData Workbench/it](DynamicData_Workbench/it.md) , [EM FHEquiv/it](EM_FHEquiv/it.md) , [EM FHInputFile/it](EM_FHInputFile/it.md) , [EM FHNode/it](EM_FHNode/it.md) , [EM FHPath/it](EM_FHPath/it.md) , [EM FHPlane/it](EM_FHPlane/it.md) , [EM FHPlaneAddRemoveNodeHole/it](EM_FHPlaneAddRemoveNodeHole/it.md) , [EM FHPlaneHole/it](EM_FHPlaneHole/it.md) , [EM FHPort/it](EM_FHPort/it.md) , [EM FHSegment/it](EM_FHSegment/it.md) , [EM FHSolver/it](EM_FHSolver/it.md) , [EM Workbench/it](EM_Workbench/it.md) , [Engine Block Tutorial/it](Engine_Block_Tutorial/it.md) , [ExplodedAssembly Workbench/it](ExplodedAssembly_Workbench/it.md) , [Export to STL or OBJ/it](Export_to_STL_or_OBJ/it.md) , [Extend FEM Module/it](Extend_FEM_Module/it.md) , [External workbenches/it](External_workbenches/it.md) , [Extra python modules/it](Extra_python_modules/it.md) , [Fasteners BOM/it](Fasteners_BOM/it.md) , [Fasteners Workbench/it](Fasteners_Workbench/it.md) , [FCGear BevelGear/it](FCGear_BevelGear/it.md) , [FCGear CrownGear/it](FCGear_CrownGear/it.md) , [FCGear CycloideGear/it](FCGear_CycloideGear/it.md) , [FCGear InvoluteGear/it](FCGear_InvoluteGear/it.md) , [FCGear InvoluteRack/it](FCGear_InvoluteRack/it.md) , [FCGear LanternGear/it](FCGear_LanternGear/it.md) , [FCGear TimingGear/it](FCGear_TimingGear/it.md) , [FCGear Workbench/it](FCGear_Workbench/it.md) , [FCGear WormGear/it](FCGear_WormGear/it.md) , [Feature editing/it](Feature_editing/it.md) , [Feature list/it](Feature_list/it.md) , [Feature/it](Feature/it.md) , [FeaturePython Custom Properties/it](FeaturePython_Custom_Properties/it.md) , [FEM Analysis/it](FEM_Analysis/it.md) , [FEM Beginner tutorial/it](FEM_Beginner_tutorial/it.md) , [FEM CalculiX Cantilever 3D/it](FEM_CalculiX_Cantilever_3D/it.md) , [FEM ClippingPlaneAdd/it](FEM_ClippingPlaneAdd/it.md) , [FEM ClippingPlaneRemoveAll/it](FEM_ClippingPlaneRemoveAll/it.md) , [FEM Concrete/it](FEM_Concrete/it.md) , [FEM ConstantVacuumPermittivity/it](FEM_ConstantVacuumPermittivity/it.md) , [FEM ConstraintBearing/it](FEM_ConstraintBearing/it.md) , [FEM ConstraintBodyHeatSource/it](FEM_ConstraintBodyHeatSource/it.md) , [FEM ConstraintContact/it](FEM_ConstraintContact/it.md) , [FEM ConstraintDisplacement/it](FEM_ConstraintDisplacement/it.md) , [FEM ConstraintElectrostaticPotential/it](FEM_ConstraintElectrostaticPotential/it.md) , [FEM ConstraintFixed/it](FEM_ConstraintFixed/it.md) , [FEM ConstraintFlowVelocity/it](FEM_ConstraintFlowVelocity/it.md) , [FEM ConstraintFluidBoundary/it](FEM_ConstraintFluidBoundary/it.md) , [FEM ConstraintForce/it](FEM_ConstraintForce/it.md) , [FEM ConstraintGear/it](FEM_ConstraintGear/it.md) , [FEM ConstraintHeatflux/it](FEM_ConstraintHeatflux/it.md) , [FEM ConstraintInitialFlowVelocity/it](FEM_ConstraintInitialFlowVelocity/it.md) , [FEM ConstraintInitialTemperature/it](FEM_ConstraintInitialTemperature/it.md) , [FEM ConstraintPlaneRotation/it](FEM_ConstraintPlaneRotation/it.md) , [FEM ConstraintPressure/it](FEM_ConstraintPressure/it.md) , [FEM ConstraintPulley/it](FEM_ConstraintPulley/it.md) , [FEM ConstraintSectionPrint/it](FEM_ConstraintSectionPrint/it.md) , [FEM ConstraintSelfWeight/it](FEM_ConstraintSelfWeight/it.md) , [FEM ConstraintTemperature/it](FEM_ConstraintTemperature/it.md) , [FEM ConstraintTie/it](FEM_ConstraintTie/it.md) , [FEM ConstraintTransform/it](FEM_ConstraintTransform/it.md) , [FEM CreateNodesSet/it](FEM_CreateNodesSet/it.md) , [FEM Element Types/it](FEM_Element_Types/it.md) , [FEM ElementFluid1D/it](FEM_ElementFluid1D/it.md) , [FEM ElementGeometry1D/it](FEM_ElementGeometry1D/it.md) , [FEM ElementGeometry2D/it](FEM_ElementGeometry2D/it.md) , [FEM ElementRotation1D/it](FEM_ElementRotation1D/it.md) , [FEM EquationElasticity/it](FEM_EquationElasticity/it.md) , [FEM EquationElectrostatic/it](FEM_EquationElectrostatic/it.md) , [FEM EquationFlow/it](FEM_EquationFlow/it.md) , [FEM EquationFlux/it](FEM_EquationFlux/it.md) , [FEM EquationHeat/it](FEM_EquationHeat/it.md) , [FEM Example Capacitance Two Balls/it](FEM_Example_Capacitance_Two_Balls/it.md) , [FEM Examples/it](FEM_Examples/it.md) , [FEM FemMesh2Mesh/it](FEM_FemMesh2Mesh/it.md) , [FEM Install/it](FEM_Install/it.md) , [FEM MaterialFluid/it](FEM_MaterialFluid/it.md) , [FEM MaterialMechanicalNonlinear/it](FEM_MaterialMechanicalNonlinear/it.md) , [FEM MaterialReinforced/it](FEM_MaterialReinforced/it.md) , [FEM MaterialSolid/it](FEM_MaterialSolid/it.md) , [FEM Mesh CalculiX/it](FEM_Mesh_CalculiX/it.md) , [FEM Mesh/it](FEM_Mesh/it.md) , [FEM MeshBoundaryLayer/it](FEM_MeshBoundaryLayer/it.md) , [FEM MeshClear/it](FEM_MeshClear/it.md) , [FEM MeshDisplayInfo/it](FEM_MeshDisplayInfo/it.md) , [FEM MeshGmshFromShape/it](FEM_MeshGmshFromShape/it.md) , [FEM MeshGroup/it](FEM_MeshGroup/it.md) , [FEM MeshNetgenFromShape/it](FEM_MeshNetgenFromShape/it.md) , [FEM MeshRegion/it](FEM_MeshRegion/it.md) , [FEM PostApplyChanges/it](FEM_PostApplyChanges/it.md) , [FEM PostCreateFunctions/it](FEM_PostCreateFunctions/it.md) , [FEM PostFilterClipRegion/it](FEM_PostFilterClipRegion/it.md) , [FEM PostFilterClipScalar/it](FEM_PostFilterClipScalar/it.md) , [FEM PostFilterCutFunction/it](FEM_PostFilterCutFunction/it.md) , [FEM PostFilterDataAlongLine/it](FEM_PostFilterDataAlongLine/it.md) , [FEM PostFilterDataAtPoint/it](FEM_PostFilterDataAtPoint/it.md) , [FEM PostFilterLinearizedStresses/it](FEM_PostFilterLinearizedStresses/it.md) , [FEM PostFilterWarp/it](FEM_PostFilterWarp/it.md) , [FEM PostPipelineFromResult/it](FEM_PostPipelineFromResult/it.md) , [FEM Preferences/it](FEM_Preferences/it.md) , [FEM project/it](FEM_project/it.md) , [FEM ResultShow/it](FEM_ResultShow/it.md) , [FEM ResultsPurge/it](FEM_ResultsPurge/it.md) , [FEM Shear of a Composite Block/it](FEM_Shear_of_a_Composite_Block/it.md) , [FEM Solver/it](FEM_Solver/it.md) , [FEM SolverCalculiX/it](FEM_SolverCalculiX/it.md) , [FEM SolverCalculixCxxtools/it](FEM_SolverCalculixCxxtools/it.md) , [FEM SolverControl/it](FEM_SolverControl/it.md) , [FEM SolverElmer/it](FEM_SolverElmer/it.md) , [FEM SolverRun/it](FEM_SolverRun/it.md) , [FEM SolverZ88/it](FEM_SolverZ88/it.md) , [FEM Tutorial Python/it](FEM_Tutorial_Python/it.md) , [FEM tutorial/it](FEM_tutorial/it.md) , [FEM Workbench/it](FEM_Workbench/it.md) , [File Format FCStd/it](File_Format_FCStd/it.md) , [Fine-tuning/it](Fine-tuning/it.md) , [Flamingo Workbench/it](Flamingo_Workbench/it.md) , [FreeCAD and DWG Import/it](FreeCAD_and_DWG_Import/it.md) , [FreeCAD and DXF Import/it](FreeCAD_and_DXF_Import/it.md) , [FreeCAD and Mesh Import/it](FreeCAD_and_Mesh_Import/it.md) , [FreeCAD API/it](FreeCAD_API/it.md) , [FreeCAD Build Tool/it](FreeCAD_Build_Tool/it.md) , [FreeCAD-Ship s60 tutorial (II)/it](FreeCAD-Ship_s60_tutorial_(II)/it.md) , [FreeCAD-Ship s60 tutorial/it](FreeCAD-Ship_s60_tutorial/it.md) , [FreeCADGui API/it](FreeCADGui_API/it.md) , [Frequently asked questions/it](Frequently_asked_questions/it.md) , [Getting started/it](Getting_started/it.md) , [Git buildpackage/it](Git_buildpackage/it.md) , [Glossary/it](Glossary/it.md) , [GuiCommand model/it](GuiCommand_model/it.md) , [Template:GuiCommand/it](Template:GuiCommand/it.md) , [Help FreeCAD/it](Help_FreeCAD/it.md) , [Help/it](Help/it.md) , [How to install additional workbenches/it](How_to_install_additional_workbenches/it.md) , [How to install macros/it](How_to_install_macros/it.md) , [IfcOpenShell/it](IfcOpenShell/it.md) , [IfcPlusPlus/it](IfcPlusPlus/it.md) , [Image CreateImagePlane/it](Image_CreateImagePlane/it.md) , [Image Open/it](Image_Open/it.md) , [Image Scaling/it](Image_Scaling/it.md) , [Image Workbench/it](Image_Workbench/it.md) , [Import Export Preferences/it](Import_Export_Preferences/it.md) , [Import Export/it](Import_Export/it.md) , [Import from STL or OBJ/it](Import_from_STL_or_OBJ/it.md) , [Import OpenSCAD code/it](Import_OpenSCAD_code/it.md) , [Import text and geometry from Inkscape/it](Import_text_and_geometry_from_Inkscape/it.md) , [Import/Export IFC - compiling IfcOpenShell/it](Import/Export_IFC_-_compiling_IfcOpenShell/it.md) , [Important information/it](Important_information/it.md) , [Importing From Sketchup/it](Importing_From_Sketchup/it.md) , [Inspection Workbench/it](Inspection_Workbench/it.md) , [Installing additional components/it](Installing_additional_components/it.md) , [Installing Helpfile/it](Installing_Helpfile/it.md) , [Installing on Linux/it](Installing_on_Linux/it.md) , [Installing on Mac/it](Installing_on_Mac/it.md) , [Installing on Windows/it](Installing_on_Windows/it.md) , [Interface Customization/it](Interface_Customization/it.md) , [Interface/it](Interface/it.md) , [KicadStepUp Workbench/it](KicadStepUp_Workbench/it.md) , [Lattice2 AttachablePlacement/it](Lattice2_AttachablePlacement/it.md) , [Lattice2 Workbench/it](Lattice2_Workbench/it.md) , [Licence/it](Licence/it.md) , [Linux packaging/it](Linux_packaging/it.md) , [Localisation/it](Localisation/it.md) , [Localization Older Methods/it](Localization_Older_Methods/it.md) , [Macro 3D Parametric Curve/it](Macro_3D_Parametric_Curve/it.md) , [Macro 3d Printer Slicer Individual Parts/it](Macro_3d_Printer_Slicer_Individual_Parts/it.md) , [Macro 3d Printer Slicer/it](Macro_3d_Printer_Slicer/it.md) , [Macro Airfoil Import & Scale/it](Macro_Airfoil_Import_&_Scale/it.md) , [Macro Alias Manager/it](Macro_Alias_Manager/it.md) , [Macro Align Camera to Working Plane/it](Macro_Align_Camera_to_Working_Plane/it.md) , [Macro Align Face Object to View/it](Macro_Align_Face_Object_to_View/it.md) , [Macro Align Object to View/it](Macro_Align_Object_to_View/it.md) , [Macro Align View to Face/it](Macro_Align_View_to_Face/it.md) , [Macro Align Working Plane to Camera/it](Macro_Align_Working_Plane_to_Camera/it.md) , [Macro Animated Constrain/it](Macro_Animated_Constrain/it.md) , [Macro Apothem Based Prism GUI/it](Macro_Apothem_Based_Prism_GUI/it.md) , [Macro Arch Axis System Repartition/it](Macro_Arch_Axis_System_Repartition/it.md) , [Macro ArrayCopy/it](Macro_ArrayCopy/it.md) , [Macro Assemblage Imprimante 3D/it](Macro_Assemblage_Imprimante_3D/it.md) , [Macro Assembly/it](Macro_Assembly/it.md) , [Macro Automatic drawing/it](Macro_Automatic_drawing/it.md) , [Macro BOLTS/it](Macro_BOLTS/it.md) , [Macro BoundingBox Tracing/it](Macro_BoundingBox_Tracing/it.md) , [Macro Build Utility/it](Macro_Build_Utility/it.md) , [Macro Cabinets32/it](Macro_Cabinets32/it.md) , [Macro CartoucheFC 2/it](Macro_CartoucheFC_2/it.md) , [Macro CartoucheFC Full/it](Macro_CartoucheFC_Full/it.md) , [Macro CartoucheFC/it](Macro_CartoucheFC/it.md) , [Macro Center Align Objects with Faces or Edges/it](Macro_Center_Align_Objects_with_Faces_or_Edges/it.md) , [Macro CenterFace/it](Macro_CenterFace/it.md) , [Macro CenterOfMass/it](Macro_CenterOfMass/it.md) , [Macro Circle/it](Macro_Circle/it.md) , [Macro CirclePlus/it](Macro_CirclePlus/it.md) , [Macro CloneConvert/it](Macro_CloneConvert/it.md) , [Macro Compound Plus/it](Macro_Compound_Plus/it.md) , [Macro Connect And Sweep/it](Macro_Connect_And_Sweep/it.md) , [Macro Constraint Draft/it](Macro_Constraint_Draft/it.md) , [Macro Copy3DViewToClipboard/it](Macro_Copy3DViewToClipboard/it.md) , [Macro Corner shapes wizard/it](Macro_Corner_shapes_wizard/it.md) , [Macro Corner shapes wizard/update/it](Macro_Corner_shapes_wizard/update/it.md) , [Macro crank simul/it](Macro_crank_simul/it.md) , [Macro Creating faces from a DXF file/it](Macro_Creating_faces_from_a_DXF_file/it.md) , [Macro cross section/it](Macro_cross_section/it.md) , [Macro Cut Circle/it](Macro_Cut_Circle/it.md) , [Macro Cut Line/it](Macro_Cut_Line/it.md) , [Macro DeepCopy/it](Macro_DeepCopy/it.md) [Category:Documentation/it](Category:Documentation/it.md) [Category:Categories/it](Category:Categories/it.md) + +--- +[documentation index](../README.md) > Category:User Documentation/it diff --git a/wiki/translations/it/Category:Web.md b/wiki/translations/it/Category:Web.md index 7d1d8039e7..dc0e994bc2 100644 --- a/wiki/translations/it/Category:Web.md +++ b/wiki/translations/it/Category:Web.md @@ -6,3 +6,6 @@ This category lists pages that relate to the [Web Workbench/it](Web_Workbench/it [Artwork Web/it](Artwork_Web/it.md) , [Web Workbench/it](Web_Workbench/it.md) [Category:Workbenches/it](Category:Workbenches/it.md) [Category:User\_Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Web/it diff --git a/wiki/translations/it/Category:Wiki.md b/wiki/translations/it/Category:Wiki.md index 003034abd9..4420831354 100644 --- a/wiki/translations/it/Category:Wiki.md +++ b/wiki/translations/it/Category:Wiki.md @@ -6,3 +6,6 @@ This category contains all documents that relate to the Wiki/it. [Glossary/it](Glossary/it.md) , [Italian Translation](Italian_Translation.md) , [Localisation Sidebar/it](Localisation_Sidebar/it.md) , [Localisation/it](Localisation/it.md) [Category:Administration/it](Category:Administration/it.md) [Category:Categories/it](Category:Categories/it.md) [Category:Documentation/it](Category:Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Wiki/it diff --git a/wiki/translations/it/Category:Wiki:Example.md b/wiki/translations/it/Category:Wiki:Example.md index af29ce63f4..f6fb26f841 100644 --- a/wiki/translations/it/Category:Wiki:Example.md +++ b/wiki/translations/it/Category:Wiki:Example.md @@ -4,3 +4,6 @@ This category lists pages that are examples for the wiki documentation. ### Contents: [Category:Wiki Documentation/it](Category:Wiki_Documentation/it.md) + +--- +[documentation index](../README.md) > Category:Wiki:Example/it diff --git a/wiki/translations/it/Category:Wiki_Documentation.md b/wiki/translations/it/Category:Wiki_Documentation.md index 0f4ad6b1f8..e322487601 100644 --- a/wiki/translations/it/Category:Wiki_Documentation.md +++ b/wiki/translations/it/Category:Wiki_Documentation.md @@ -4,3 +4,6 @@ This category lists pages that relate to using the wiki effectively for document ### Contents: [Category:Documentation/it](Category:Documentation/it.md) [Category:Wiki:Example/it](Category:Wiki:Example/it.md) + +--- +[documentation index](../README.md) > Category:Wiki Documentation/it diff --git a/wiki/translations/it/Category:Workbenches.md b/wiki/translations/it/Category:Workbenches.md index b54a662a8b..f4d79bb917 100644 --- a/wiki/translations/it/Category:Workbenches.md +++ b/wiki/translations/it/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/it](Arch_Workbench/it.md) , [Draft Workbench/it](Draft_Workbench/it.md) , [FEM Workbench/it](FEM_Workbench/it.md) , [Image Workbench/it](Image_Workbench/it.md) , [Inspection Workbench/it](Inspection_Workbench/it.md) , [ManualArch/it](ManualArch/it.md) , [ManualDraft/it](ManualDraft/it.md) , [ManualPartDesign/it](ManualPartDesign/it.md) , [ManualSketcher/it](ManualSketcher/it.md) , [Mesh Workbench/it](Mesh_Workbench/it.md) , [OpenSCAD Workbench/it](OpenSCAD_Workbench/it.md) , [Part Module/it](Part_Module/it.md) , [PartDesign Workbench/it](PartDesign_Workbench/it.md) , [Path Workbench/it](Path_Workbench/it.md) , [Points Workbench/it](Points_Workbench/it.md) , [Raytracing Workbench/it](Raytracing_Workbench/it.md) , [Reverse Engineering Workbench/it](Reverse_Engineering_Workbench/it.md) , [Robot Workbench/it](Robot_Workbench/it.md) , [Sketcher Workbench/it](Sketcher_Workbench/it.md) , [Spreadsheet Workbench/it](Spreadsheet_Workbench/it.md) , [Start Workbench/it](Start_Workbench/it.md) , [Std Base/it](Std_Base/it.md) , [Std Edit Menu/it](Std_Edit_Menu/it.md) , [Std File Menu/it](Std_File_Menu/it.md) , [Std Help Menu/it](Std_Help_Menu/it.md) , [Std Macro Menu/it](Std_Macro_Menu/it.md) , [Std Tools Menu/it](Std_Tools_Menu/it.md) , [Std View Menu/it](Std_View_Menu/it.md) , [Std Windows Menu/it](Std_Windows_Menu/it.md) , [Surface Workbench/it](Surface_Workbench/it.md) , [TechDraw Workbench/it](TechDraw_Workbench/it.md) , [Testing/it](Testing/it.md) , [Web Workbench/it](Web_Workbench/it.md) , [Workbenches/it](Workbenches/it.md) , , , , , , , , , , , , , , , , , , , , , , , , [Category:User Documentation/it](Category:User_Documentation/it.md) [Category:Arch/it](Category:Arch/it.md) [Category:Draft/it](Category:Draft/it.md) [Category:External Workbenches/it](Category:External_Workbenches/it.md) [Category:FEM/it](Category:FEM/it.md) [Category:Inspection/it](Category:Inspection/it.md) [Category:Mesh/it](Category:Mesh/it.md) [Category:OpenSCAD/it](Category:OpenSCAD/it.md) [Category:Part/it](Category:Part/it.md) [Category:PartDesign/it](Category:PartDesign/it.md) [Category:Path/it](Category:Path/it.md) [Category:Plot/it](Category:Plot/it.md) [Category:Points/it](Category:Points/it.md) [Category:Raytracing/it](Category:Raytracing/it.md) [Category:Reinforcement/it](Category:Reinforcement/it.md) [Category:Reverse Engineering/it](Category:Reverse_Engineering/it.md) [Category:Robot/it](Category:Robot/it.md) [Category:Ship/it](Category:Ship/it.md) [Category:Sketcher/it](Category:Sketcher/it.md) [Category:Spreadsheet/it](Category:Spreadsheet/it.md) [Category:Start/it](Category:Start/it.md) [Category:Surface/it](Category:Surface/it.md) [Category:TechDraw/it](Category:TechDraw/it.md) [Category:Test Framework/it](Category:Test_Framework/it.md) [Category:Web/it](Category:Web/it.md) + +--- +[documentation index](../README.md) > Category:Workbenches/it diff --git a/wiki/translations/it/Cfd_Workbench.md b/wiki/translations/it/Cfd_Workbench.md index e5d0167928..ffd967fb07 100644 --- a/wiki/translations/it/Cfd_Workbench.md +++ b/wiki/translations/it/Cfd_Workbench.md @@ -1,6 +1,4 @@ # Cfd Workbench/it - - ## Introduzione @@ -61,3 +59,6 @@ To use CFD for FreeCAD [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Cfd Workbench/it diff --git a/wiki/translations/it/Changelog.md b/wiki/translations/it/Changelog.md index db1c6ff406..f997352f97 100644 --- a/wiki/translations/it/Changelog.md +++ b/wiki/translations/it/Changelog.md @@ -1,5 +1,5 @@ # Changelog/it - La cronologia delle modifiche FreeCAD è conservato nel nostro inseguitore Mantis: +La cronologia delle modifiche FreeCAD è conservato nel nostro inseguitore Mantis: @@ -7,3 +7,6 @@ [Category:Administration](Category:Administration.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Changelog/it diff --git a/wiki/translations/it/Civil_Engineering_Workbench.md b/wiki/translations/it/Civil_Engineering_Workbench.md index b9c6df3c4b..f8f3538fa7 100644 --- a/wiki/translations/it/Civil_Engineering_Workbench.md +++ b/wiki/translations/it/Civil_Engineering_Workbench.md @@ -1,6 +1,4 @@ # Civil Engineering Workbench/it - - ## Descrizione L\'ingegneria civile è una vasta categoria di ingegneria e copre diversi argomenti, principalmente ambientali (acque reflue), geotecnica, trasporti e strutture. Al momento, l\'obiettivo principale dello sforzo di ingegneria civile in FreeCAD è focalizzato sull\'ingegneria dei trasporti, o più specificamente sulla progettazione in 3D di autostrade. @@ -33,3 +31,6 @@ Gli strumenti Armatura attualmente sono parte dell\'ambiente [Architettura](Arch [Category:Documentation](Category:Documentation.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Civil Engineering Workbench/it diff --git a/wiki/translations/it/Code_snippets.md b/wiki/translations/it/Code_snippets.md index 5326ea97bd..501681737c 100644 --- a/wiki/translations/it/Code_snippets.md +++ b/wiki/translations/it/Code_snippets.md @@ -1,7 +1,4 @@ # Code snippets/it - - - {{TOCright}} ## Introduzione @@ -1783,3 +1780,6 @@ See [Coin3d snippets](Coin3d_snippets.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Code snippets/it diff --git a/wiki/translations/it/ComandiPerCategorie.md b/wiki/translations/it/ComandiPerCategorie.md index 2ae69bd8b6..d7288e505f 100644 --- a/wiki/translations/it/ComandiPerCategorie.md +++ b/wiki/translations/it/ComandiPerCategorie.md @@ -1628,3 +1628,5 @@ Azione [Trasforma](Manipulator/it.md) del modulo Parte {{languages/it | }} +--- +[documentation index](../README.md) > ComandiPerCategorie/it diff --git a/wiki/translations/it/Combo_View.md b/wiki/translations/it/Combo_View.md index 828c685368..c82bb95166 100644 --- a/wiki/translations/it/Combo_View.md +++ b/wiki/translations/it/Combo_View.md @@ -4,3 +4,6 @@ [Category:Redirects/it](Category:Redirects/it.md) + +--- +[documentation index](../README.md) > Combo View/it diff --git a/wiki/translations/it/Combo_view.md b/wiki/translations/it/Combo_view.md index 22b34a31b4..512733b3c3 100644 --- a/wiki/translations/it/Combo_view.md +++ b/wiki/translations/it/Combo_view.md @@ -1,5 +1,5 @@ # Combo view/it - {{TOCright}} +{{TOCright}} ## Introduzione @@ -54,4 +54,7 @@ Quindi attivare la vista utilizzando il menu **Visualizza → Pannelli → Strut {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Combo view/it diff --git a/wiki/translations/it/Command.md b/wiki/translations/it/Command.md index bdd3d674ad..d8a2810ab8 100644 --- a/wiki/translations/it/Command.md +++ b/wiki/translations/it/Command.md @@ -1,6 +1,4 @@ # Command/it - - ## Introduzione @@ -107,3 +105,6 @@ Vedere [Funzione per disegnare delle linee](Line_drawing_function/it.md). }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Command_Reference]] se originale inglese, e nella pagina ](Category:Command_Reference]] se originale inglese, e nella pagina .md) > Command/it diff --git a/wiki/translations/it/Common_Airfoil_Data_Import.md b/wiki/translations/it/Common_Airfoil_Data_Import.md index 578cd8c993..f76fa0aa65 100644 --- a/wiki/translations/it/Common_Airfoil_Data_Import.md +++ b/wiki/translations/it/Common_Airfoil_Data_Import.md @@ -1,6 +1,4 @@ # Common Airfoil Data Import/it - - ## Importare Dati Airfoil FreeCAD può importare i dati di un profilo alare, come quello trovato in [UIUC Airfoil Coordinates Database](http://m-selig.ae.illinois.edu/ads/coord_database.html) o file prodotti con software per la creazione e l\'analisi di un profilo alare come [XFLR5](http://www.xflr5.com/xflr5.htm) @@ -38,3 +36,6 @@ AG35 [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Common Airfoil Data Import/it diff --git a/wiki/translations/it/CompileOnCygwin.md b/wiki/translations/it/CompileOnCygwin.md index 780f3f1dcf..08b79046d8 100644 --- a/wiki/translations/it/CompileOnCygwin.md +++ b/wiki/translations/it/CompileOnCygwin.md @@ -1,2 +1,5 @@ # CompileOnCygwin/it 1. REDIRECT [Compile on Cygwin/it](Compile_on_Cygwin/it.md) + +--- +[documentation index](../README.md) > CompileOnCygwin/it diff --git a/wiki/translations/it/CompileOnMac.md b/wiki/translations/it/CompileOnMac.md index cbf0d1ae63..c4cdd828e4 100644 --- a/wiki/translations/it/CompileOnMac.md +++ b/wiki/translations/it/CompileOnMac.md @@ -1,2 +1,5 @@ # CompileOnMac/it 1. REDIRECT [Compile on MacOS/it](Compile_on_MacOS/it.md) + +--- +[documentation index](../README.md) > CompileOnMac/it diff --git a/wiki/translations/it/CompileOnMinGW.md b/wiki/translations/it/CompileOnMinGW.md index 12d0dc0e4d..62d96934f2 100644 --- a/wiki/translations/it/CompileOnMinGW.md +++ b/wiki/translations/it/CompileOnMinGW.md @@ -1,2 +1,5 @@ # CompileOnMinGW/it 1. REDIRECT [Compile on MinGW/it](Compile_on_MinGW/it.md) + +--- +[documentation index](../README.md) > CompileOnMinGW/it diff --git a/wiki/translations/it/CompileOnUnix.md b/wiki/translations/it/CompileOnUnix.md index 7c9b6ea904..349009253e 100644 --- a/wiki/translations/it/CompileOnUnix.md +++ b/wiki/translations/it/CompileOnUnix.md @@ -1,2 +1,5 @@ # CompileOnUnix/it 1. REDIRECT [Compile\_on\_Linux/it](Compile_on_Linux/it.md) + +--- +[documentation index](../README.md) > CompileOnUnix/it diff --git a/wiki/translations/it/CompileOnWindows.md b/wiki/translations/it/CompileOnWindows.md index bc2f9dc02e..7738f9b6a5 100644 --- a/wiki/translations/it/CompileOnWindows.md +++ b/wiki/translations/it/CompileOnWindows.md @@ -1,2 +1,5 @@ # CompileOnWindows/it 1. REDIRECT [Compile on Windows/it](Compile_on_Windows/it.md) + +--- +[documentation index](../README.md) > CompileOnWindows/it diff --git a/wiki/translations/it/CompileOnWindows_-_Reducing_Disk_Footprint.md b/wiki/translations/it/CompileOnWindows_-_Reducing_Disk_Footprint.md index f917442bbd..f30102daf2 100644 --- a/wiki/translations/it/CompileOnWindows_-_Reducing_Disk_Footprint.md +++ b/wiki/translations/it/CompileOnWindows_-_Reducing_Disk_Footprint.md @@ -1,5 +1,5 @@ # CompileOnWindows - Reducing Disk Footprint/it - Techniques to reduce disk space required for building FreeCAD on Windows This may be of use to those, who are limited on disk space (for example, because of an SSD), and for those, who want to avoid installing complete Visual Studio. +Techniques to reduce disk space required for building FreeCAD on Windows This may be of use to those, who are limited on disk space (for example, because of an SSD), and for those, who want to avoid installing complete Visual Studio. It is recommended that you know on practice, how to [Compile on Windows](Compile_on_Windows.md) with Qt Creator, before attempting this. @@ -159,3 +159,6 @@ You\'ll have to modify the path to libpack to match yours. Use absolute paths. T This batch must be run with administrator privileges (or, you can set to allow users use mklink in local security policy settings in Windows). The batch may fail, if there are spaces in paths (it may work, but it is untested). Tip: create a shortcut to links\_libpack.bat, set it up to run as admin (in shortcut properties), and drag the build folder onto the shortcut. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > CompileOnWindows - Reducing Disk Footprint/it diff --git a/wiki/translations/it/Compile_on_Cygwin.md b/wiki/translations/it/Compile_on_Cygwin.md index 92281e6a7d..dedf0f542a 100644 --- a/wiki/translations/it/Compile_on_Cygwin.md +++ b/wiki/translations/it/Compile_on_Cygwin.md @@ -1,5 +1,5 @@ # Compile on Cygwin/it - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** ## How to build and run FreeCAD under Cygwin @@ -74,3 +74,6 @@ Once you have built the sources successfully using \'make\' with \'make install\ [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Cygwin/it diff --git a/wiki/translations/it/Compile_on_Docker.md b/wiki/translations/it/Compile_on_Docker.md index e64df05722..875ca5e569 100644 --- a/wiki/translations/it/Compile_on_Docker.md +++ b/wiki/translations/it/Compile_on_Docker.md @@ -1,7 +1,4 @@ # Compile on Docker/it - - -
@@ -154,3 +151,6 @@ You can find the attached directories in the `/mnt` directory. [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Compile on Docker/it diff --git a/wiki/translations/it/Compile_on_Linux.md b/wiki/translations/it/Compile_on_Linux.md index 69adb52255..e8c5c4fcd3 100644 --- a/wiki/translations/it/Compile_on_Linux.md +++ b/wiki/translations/it/Compile_on_Linux.md @@ -1,7 +1,4 @@ # Compile on Linux/it - - - {{docnav/it|[Compilazione in Windows](Compile_on_Windows/it.md)|[Compilazione in MacOS](Compile_on_MacOS/it.md)}} @@ -1282,3 +1279,6 @@ To update FreeCAD to latest build just repeat from step 3. Update AUR repo when [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Linux/it diff --git a/wiki/translations/it/Compile_on_MacOS.md b/wiki/translations/it/Compile_on_MacOS.md index 5339dc554b..e4e08eab97 100644 --- a/wiki/translations/it/Compile_on_MacOS.md +++ b/wiki/translations/it/Compile_on_MacOS.md @@ -1,7 +1,4 @@ # Compile on MacOS/it - - -
@@ -222,3 +219,6 @@ FreeCAD can be built against the latest git master hosted on github, and launche [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS/it diff --git a/wiki/translations/it/Compile_on_MinGW.md b/wiki/translations/it/Compile_on_MinGW.md index efd73b9874..53708c9509 100644 --- a/wiki/translations/it/Compile_on_MinGW.md +++ b/wiki/translations/it/Compile_on_MinGW.md @@ -1,5 +1,5 @@ # Compile on MinGW/it - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** {{TOCright}} +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** {{TOCright}} ## How to build and run FreeCAD under MSYS/MinGW @@ -256,3 +256,6 @@ Have fun! [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MinGW/it diff --git a/wiki/translations/it/Compile_on_Windows_with_VS2013.md b/wiki/translations/it/Compile_on_Windows_with_VS2013.md index f98319bcd5..c52b107063 100644 --- a/wiki/translations/it/Compile_on_Windows_with_VS2013.md +++ b/wiki/translations/it/Compile_on_Windows_with_VS2013.md @@ -1,5 +1,5 @@ # Compile on Windows with VS2013/it - {{Note|Important Note:|This page is a child of the [Complile of Windows](CompileOnWindows.md) page.}} The following procedure will work for compiling on Windows Vista/7/8, for XP an alternate VS tool set is required for VS 2012 and 2013, which has not been tested successfully with the current Libpacks. To target XP(both x32 and x64) it is recommended to use VS2008 and Libpack FreeCADLibs\_11.0\_x86\_VC9.7z +{{Note|Important Note:|This page is a child of the [Complile of Windows](CompileOnWindows.md) page.}} The following procedure will work for compiling on Windows Vista/7/8, for XP an alternate VS tool set is required for VS 2012 and 2013, which has not been tested successfully with the current Libpacks. To target XP(both x32 and x64) it is recommended to use VS2008 and Libpack FreeCADLibs\_11.0\_x86\_VC9.7z ## **Prerequisites** @@ -116,3 +116,6 @@ If you don\'t get any errors your done. Exit Visual Studio and start FreeCAD by [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows with VS2013/it diff --git a/wiki/translations/it/Compiling.md b/wiki/translations/it/Compiling.md index 38600128a1..c845fe1c76 100644 --- a/wiki/translations/it/Compiling.md +++ b/wiki/translations/it/Compiling.md @@ -1,7 +1,4 @@ # Compiling/it - - -
Ogni sistema operativo ha la sua pagina per la compilazione di FreeCAD nella [documentazione online](Online_Help_Toc/it.md). @@ -52,3 +49,6 @@ Per imparare a usare il sistema di controllo di revisione e contribuire con il c [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling/it diff --git a/wiki/translations/it/Compiling_(Speeding_up).md b/wiki/translations/it/Compiling_(Speeding_up).md index 028632566b..6f4dcbf811 100644 --- a/wiki/translations/it/Compiling_(Speeding_up).md +++ b/wiki/translations/it/Compiling_(Speeding_up).md @@ -1,7 +1,4 @@ # Compiling (Speeding up)/it - - -
@@ -76,3 +73,6 @@ Il programma `distcc` può essere utilizzato per eseguire compilazioni distribui [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling (Speeding up)/it diff --git a/wiki/translations/it/Complete_Workbench.md b/wiki/translations/it/Complete_Workbench.md index 700e7dcbab..dec2cb0d31 100644 --- a/wiki/translations/it/Complete_Workbench.md +++ b/wiki/translations/it/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/it - - - **[[Complete Workbench]] è deprecato.** @@ -14,3 +11,6 @@ Se si vuole adattare FreeCAD alle proprie esigenze si può [personalizzare FreeC [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/it diff --git a/wiki/translations/it/Conda.md b/wiki/translations/it/Conda.md index 5d46c38c97..bd8e9aee50 100644 --- a/wiki/translations/it/Conda.md +++ b/wiki/translations/it/Conda.md @@ -1,6 +1,4 @@ # Conda/it - - ## Introduzione @@ -95,3 +93,6 @@ conda create --name fcenv-dev --channel freecad/label/dev freecad - [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Conda/it diff --git a/wiki/translations/it/Console_API.md b/wiki/translations/it/Console_API.md index 19035c833b..267441f44e 100644 --- a/wiki/translations/it/Console_API.md +++ b/wiki/translations/it/Console_API.md @@ -1,5 +1,5 @@ # Console API/it - **(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** +**(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** Questo modulo è contenuto all\'interno del modulo di FreeCAD e contiene i metodi per inviare messaggi di testo per l\'output della console di FreeCAD e della barra di stato. I messaggi hanno colore diverso secondo se sono messaggio di avviso o di errore. @@ -31,3 +31,6 @@ FreeCAD.Console.PrintMessage("Hello World!\n") [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Console API/it diff --git a/wiki/translations/it/Constraint.md b/wiki/translations/it/Constraint.md index 5989e41ae1..83d89de187 100644 --- a/wiki/translations/it/Constraint.md +++ b/wiki/translations/it/Constraint.md @@ -1,6 +1,4 @@ # Constraint/it - - ## Introduzione @@ -46,3 +44,6 @@ Per un elenco di tutti i vincoli che possono essere applicati vedere le informaz }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Constraint/it diff --git a/wiki/translations/it/Constructive_solid_geometry.md b/wiki/translations/it/Constructive_solid_geometry.md index 27703ceba5..8daa926769 100644 --- a/wiki/translations/it/Constructive_solid_geometry.md +++ b/wiki/translations/it/Constructive_solid_geometry.md @@ -1,5 +1,5 @@ # Constructive solid geometry/it - {{TOCright}} +{{TOCright}} ## Introduzione @@ -37,3 +37,6 @@ La pagina [Tutorial](tutorials/it.md) fornisce alcuni esempi che usano il metodo [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Constructive solid geometry/it diff --git a/wiki/translations/it/Continuous_Integration.md b/wiki/translations/it/Continuous_Integration.md index 3a077aa18c..7f95b52fce 100644 --- a/wiki/translations/it/Continuous_Integration.md +++ b/wiki/translations/it/Continuous_Integration.md @@ -1,7 +1,4 @@ # Continuous Integration/it - - -
@@ -46,3 +43,6 @@ Currently the FreeCAD repository on GitHub will trigger a build on the below two [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Continuous Integration/it diff --git a/wiki/translations/it/Contributors.md b/wiki/translations/it/Contributors.md index cc168df7b7..52a55b88a2 100644 --- a/wiki/translations/it/Contributors.md +++ b/wiki/translations/it/Contributors.md @@ -1,10 +1,4 @@ # Contributors/it - - - - - - {{TOCright}} @@ -259,3 +253,6 @@ Gli sviluppatori di parti aggiuntive per FreeCAD (recuperato da [Developer](Category:Developer.md) > Contributors/it diff --git a/wiki/translations/it/Contributors_hub.md b/wiki/translations/it/Contributors_hub.md index a28aa74b1b..371f6beb8f 100644 --- a/wiki/translations/it/Contributors_hub.md +++ b/wiki/translations/it/Contributors_hub.md @@ -1,6 +1,4 @@ # Contributors hub/it - - ## Introduzione Se volete contribuire a FreeCAD e utilizzare la vostra energia per far avanzare questo progetto, ci sono molti modi per dare un aiuto. Di seguito sono indicati diversi ruoli a cui è possibile partecipare. @@ -23,4 +21,7 @@ Inoltre, potete aiutare altri utenti nella [pagina di supporto di FreeCAD](https ## Sviluppatore di FreeCAD -## Sviluppatore web o amministratore +## Sviluppatore web o amministratore + +--- +[documentation index](../README.md) > Contributors hub/it diff --git a/wiki/translations/it/Copying_Objects.md b/wiki/translations/it/Copying_Objects.md index b0428a22c8..4de96c1c41 100644 --- a/wiki/translations/it/Copying_Objects.md +++ b/wiki/translations/it/Copying_Objects.md @@ -1,5 +1,5 @@ # Copying Objects/it - {{TOCright}} +{{TOCright}}
@@ -75,5 +75,5 @@ Come per la maggior parte delle operazioni, anche per fare le copie, in FreeCAD - [Incolla](Std_Paste/it.md) - [Duplica la selezione](Std_DuplicateSelection/it.md) - - +--- +[documentation index](../README.md) > Copying Objects/it diff --git a/wiki/translations/it/Create_a_FeaturePython_object_part_I.md b/wiki/translations/it/Create_a_FeaturePython_object_part_I.md index 3f3a3be515..3184c1a1b2 100644 --- a/wiki/translations/it/Create_a_FeaturePython_object_part_I.md +++ b/wiki/translations/it/Create_a_FeaturePython_object_part_I.md @@ -1,7 +1,4 @@ # Create a FeaturePython object part I/it - - - {{docnav/it|[PySide](PySide/it.md)|[Creare un Box FeaturePython, Parte II](Creating_a_FeaturePython_Box,_Part_II/it.md)}} @@ -389,3 +386,6 @@ class box(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Create a FeaturePython object part I/it diff --git a/wiki/translations/it/Create_a_FeaturePython_object_part_II.md b/wiki/translations/it/Create_a_FeaturePython_object_part_II.md index 808bff3f8d..e4062e8046 100644 --- a/wiki/translations/it/Create_a_FeaturePython_object_part_II.md +++ b/wiki/translations/it/Create_a_FeaturePython_object_part_II.md @@ -1,7 +1,4 @@ # Create a FeaturePython object part II/it - - - {{docnav/it|[Oggetti FeaturePython](FeaturePython_Objects/it.md)|[Esempi di script](Scripting_examples/it.md)}} @@ -402,3 +399,6 @@ class ViewProviderBox: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Create a FeaturePython object part II/it diff --git a/wiki/translations/it/Creating_a_FeaturePython_Box,_Part_II.md b/wiki/translations/it/Creating_a_FeaturePython_Box,_Part_II.md index cafdb3a8bd..5deaf9dca5 100644 --- a/wiki/translations/it/Creating_a_FeaturePython_Box,_Part_II.md +++ b/wiki/translations/it/Creating_a_FeaturePython_Box,_Part_II.md @@ -1,2 +1,5 @@ # Creating a FeaturePython Box, Part II/it 1. REDIRECT [Create\_a\_FeaturePython\_object\_part\_II/it](Create_a_FeaturePython_object_part_II/it.md) + +--- +[documentation index](../README.md) > Creating a FeaturePython Box, Part II/it diff --git a/wiki/translations/it/Creating_a_simple_part_with_PartDesign.md b/wiki/translations/it/Creating_a_simple_part_with_PartDesign.md index ac754f4315..62f176bbbe 100644 --- a/wiki/translations/it/Creating_a_simple_part_with_PartDesign.md +++ b/wiki/translations/it/Creating_a_simple_part_with_PartDesign.md @@ -1,7 +1,4 @@ # Creating a simple part with PartDesign/it - - - {{TutorialInfo/it |Topic=Modellazione |Level=Base @@ -267,4 +264,7 @@ Questo tutorial è completato, salvare questo file. Ora è anche possibile diver {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Creating a simple part with PartDesign/it diff --git a/wiki/translations/it/Crowdin_Administration.md b/wiki/translations/it/Crowdin_Administration.md index b212d7c17d..613ff2593a 100644 --- a/wiki/translations/it/Crowdin_Administration.md +++ b/wiki/translations/it/Crowdin_Administration.md @@ -1,6 +1,4 @@ # Crowdin Administration/it - - ## Roles - Translator @@ -41,3 +39,6 @@ [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Crowdin Administration/it diff --git a/wiki/translations/it/Crowdin_Scripts.md b/wiki/translations/it/Crowdin_Scripts.md index a80e439351..6961229de6 100644 --- a/wiki/translations/it/Crowdin_Scripts.md +++ b/wiki/translations/it/Crowdin_Scripts.md @@ -1,5 +1,5 @@ # Crowdin Scripts/it - {{TOCright}} +{{TOCright}} ## Gestire le traduzioni per FreeCAD @@ -91,3 +91,6 @@ Lo script updatefromcrowdin.py estrae le modifiche da crowdin alla directory loc [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Crowdin Scripts/it diff --git a/wiki/translations/it/CurvedShapes_CurvedArray.md b/wiki/translations/it/CurvedShapes_CurvedArray.md index 9c7f451b73..8cc68684c5 100644 --- a/wiki/translations/it/CurvedShapes_CurvedArray.md +++ b/wiki/translations/it/CurvedShapes_CurvedArray.md @@ -8,6 +8,8 @@ SeeAlso: --- +# CurvedShapes CurvedArray/it + ## Descrizione Crea un array e ridimensiona gli elementi all\'interno di una o più curve limite. In questo esempio, la forma di base arancione viene ridimensionata entro le curve limite rosse e viola. Le curve non devono essere collegate. Le curve limite devono trovarsi sul piano XY, XZ o YZ, o su un piano parallelo. @@ -57,3 +59,6 @@ Crea un array e ridimensiona gli elementi all\'interno di una o più curve limit [Category:Name](Category:Name.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Name](Category:Name.md) > CurvedShapes CurvedArray/it diff --git a/wiki/translations/it/CurvedShapes_Workbench.md b/wiki/translations/it/CurvedShapes_Workbench.md index e3a4179e2b..13a32a508d 100644 --- a/wiki/translations/it/CurvedShapes_Workbench.md +++ b/wiki/translations/it/CurvedShapes_Workbench.md @@ -1,5 +1,5 @@ # CurvedShapes Workbench/it - } CurvedShapes External Workbench Icon {{TOCright}} +} CurvedShapes External Workbench Icon {{TOCright}} ## Introduzione @@ -42,3 +42,6 @@ Si consiglia di installarlo tramite CurvedShapes Workbench/it diff --git a/wiki/translations/it/Curves_ExtendCurve.md b/wiki/translations/it/Curves_ExtendCurve.md index 72a38dab1c..a408ca8996 100644 --- a/wiki/translations/it/Curves_ExtendCurve.md +++ b/wiki/translations/it/Curves_ExtendCurve.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ExtendCurve/it + ## Descrizione The [Curves ExtendCurve](Curves_ExtendCurve.md) extends the selected edge. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md).. @@ -30,4 +32,7 @@ The [Curves {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ExtendCurve/it diff --git a/wiki/translations/it/Curves_GordonSurface.md b/wiki/translations/it/Curves_GordonSurface.md index 73268609b7..86ee2a6687 100644 --- a/wiki/translations/it/Curves_GordonSurface.md +++ b/wiki/translations/it/Curves_GordonSurface.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves GordonSurface/it + ## Descrizione The [Curves GordonSurface](Curves_GordonSurface.md) creates a surface that skins a network of curves. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -90,4 +92,7 @@ TODO {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves GordonSurface/it diff --git a/wiki/translations/it/Curves_IsoCurve.md b/wiki/translations/it/Curves_IsoCurve.md index 76c0b0e791..353607a740 100644 --- a/wiki/translations/it/Curves_IsoCurve.md +++ b/wiki/translations/it/Curves_IsoCurve.md @@ -6,6 +6,8 @@ SeeAlso:[Curves JoinCurves](Curves_JoinCurve.md) --- +# Curves IsoCurve/it + ## Descrizione The [Curves IsoCurve](Curves_IsoCurve.md) tool applies a UV oriented lattice on to a selected surface. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -39,4 +41,7 @@ The [Curves Iso {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves IsoCurve/it diff --git a/wiki/translations/it/Curves_JoinCurve.md b/wiki/translations/it/Curves_JoinCurve.md index 53505035aa..03b5682898 100644 --- a/wiki/translations/it/Curves_JoinCurve.md +++ b/wiki/translations/it/Curves_JoinCurve.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves JoinCurve/it + ## Descrizione The [Curves JoinCurve](Curves_JoinCurve.md) joins the selected edges into BSpline curves. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -35,4 +37,7 @@ The [Curves Jo {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves JoinCurve/it diff --git a/wiki/translations/it/Curves_MultiLoft.md b/wiki/translations/it/Curves_MultiLoft.md index b6852b5804..307f773e71 100644 --- a/wiki/translations/it/Curves_MultiLoft.md +++ b/wiki/translations/it/Curves_MultiLoft.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves MultiLoft/it + ## Descrizione The [Curves MultiLoft](Curves_MultiLoft.md) lofts profile objects made of multiple faces in parallel. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [Curves Mu {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves MultiLoft/it diff --git a/wiki/translations/it/Curves_ParametricComb.md b/wiki/translations/it/Curves_ParametricComb.md index 2d271f3ef5..c8cde9db9e 100644 --- a/wiki/translations/it/Curves_ParametricComb.md +++ b/wiki/translations/it/Curves_ParametricComb.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ParametricComb/it + ## Descrizione The [Curves ParametricComb](Curves_ParametricComb.md) can help to visualize the regularity or smoothness of a curve as well as the continuity between two curves. Note: A comb is only for visualization. @@ -42,3 +44,6 @@ A 3D comb will be created for 3D curves. Sample and scale can be changed. This t }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Curves ParametricComb/it diff --git a/wiki/translations/it/Curves_ParametricSolid.md b/wiki/translations/it/Curves_ParametricSolid.md index 8261ae267a..2f8e8d815c 100644 --- a/wiki/translations/it/Curves_ParametricSolid.md +++ b/wiki/translations/it/Curves_ParametricSolid.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ParametricSolid/it + ## Descrizione The [Curves ParametricSolid](Curves_ParametricSolid.md) makes a parametric solid from selected faces. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -39,3 +41,6 @@ The [Cur }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Curves ParametricSolid/it diff --git a/wiki/translations/it/Curves_PasteSVG.md b/wiki/translations/it/Curves_PasteSVG.md index ffa7c79275..6c7329ae76 100644 --- a/wiki/translations/it/Curves_PasteSVG.md +++ b/wiki/translations/it/Curves_PasteSVG.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves PasteSVG/it + ## Descrizione The [Curves PasteSVG](Curves_PasteSVG.md) pastes the SVG content of the clipboard in to the [3D view](3D_view.md). This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [Curves Pas {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves PasteSVG/it diff --git a/wiki/translations/it/Curves_PipeShell.md b/wiki/translations/it/Curves_PipeShell.md index 9aaea4a687..d0a8336e7b 100644 --- a/wiki/translations/it/Curves_PipeShell.md +++ b/wiki/translations/it/Curves_PipeShell.md @@ -1,2 +1,5 @@ # Curves PipeShell/it 1. REDIRECT [Curves\_Pipeshell/it](Curves_Pipeshell/it.md) + +--- +[documentation index](../README.md) > Curves PipeShell/it diff --git a/wiki/translations/it/Curves_Pipeshell.md b/wiki/translations/it/Curves_Pipeshell.md index 1664916b19..00231abbe6 100644 --- a/wiki/translations/it/Curves_Pipeshell.md +++ b/wiki/translations/it/Curves_Pipeshell.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves Pipeshell/it + ## Descrizione The [Curves Pipeshell](Curves_Pipeshell.md) creates a Pipeshell sweep object. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -91,4 +93,7 @@ The [Curves Pi {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves Pipeshell/it diff --git a/wiki/translations/it/Curves_SketchOnSurface.md b/wiki/translations/it/Curves_SketchOnSurface.md index 440fc35422..3eeccdd385 100644 --- a/wiki/translations/it/Curves_SketchOnSurface.md +++ b/wiki/translations/it/Curves_SketchOnSurface.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves SketchOnSurface/it + ## Descrizione This tool maps a sketch onto a face, like a label on a bottle. The sketch must be actually attached to a face (see Sketch.Support). The `Map` mode of the sketch has no effect on the result. @@ -62,4 +64,7 @@ The blue construction lines of the sketch are part of the sketch even if they ar {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves SketchOnSurface/it diff --git a/wiki/translations/it/Curves_SplitCurve.md b/wiki/translations/it/Curves_SplitCurve.md index 4bb740eeba..81237b2162 100644 --- a/wiki/translations/it/Curves_SplitCurve.md +++ b/wiki/translations/it/Curves_SplitCurve.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves SplitCurve/it + ## Descrizione The [Curves SplitCurve](Curves_SplitCurve.md) splits the selected edge. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [Curves S {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves SplitCurve/it diff --git a/wiki/translations/it/Curves_ToConsole.md b/wiki/translations/it/Curves_ToConsole.md index 6c25192b1a..b4d6e1ed48 100644 --- a/wiki/translations/it/Curves_ToConsole.md +++ b/wiki/translations/it/Curves_ToConsole.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ToConsole/it + ## Descrizione The [Curves ToConsole](Curves_ToConsole.md) moves objects to the console. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -30,4 +32,7 @@ The [Curves To {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ToConsole/it diff --git a/wiki/translations/it/Curves_Workbench.md b/wiki/translations/it/Curves_Workbench.md index 4b83873f86..7272823b96 100644 --- a/wiki/translations/it/Curves_Workbench.md +++ b/wiki/translations/it/Curves_Workbench.md @@ -1,5 +1,5 @@ # Curves Workbench/it - } +} ## Introduzione @@ -51,3 +51,6 @@ Download the Curves workbench via the Curves Workbench/it diff --git a/wiki/translations/it/Curves_ZebraTool.md b/wiki/translations/it/Curves_ZebraTool.md index 6f9aff15d0..e7363d0015 100644 --- a/wiki/translations/it/Curves_ZebraTool.md +++ b/wiki/translations/it/Curves_ZebraTool.md @@ -5,6 +5,8 @@ Workbenches:[Curves](Curves_Workbench.md) --- +# Curves ZebraTool/it + ## Descrizione The [Curves ZebraTool](Curves_ZebraTool.md) creates a Zebra texture for surface inspection. This tool is part of the [external workbench](External_workbenches.md) called [Curves](Curves_Workbench.md). @@ -40,4 +42,7 @@ The [Curves Ze {{Curves Tools navi -}} +}} + +--- +[documentation index](../README.md) > Curves ZebraTool/it diff --git a/wiki/translations/it/Custom_Spacing.md b/wiki/translations/it/Custom_Spacing.md index ef8ef3202b..4bfd14a42f 100644 --- a/wiki/translations/it/Custom_Spacing.md +++ b/wiki/translations/it/Custom_Spacing.md @@ -1,6 +1,4 @@ # Custom Spacing/it - - ## Descrizione Lo strumento Spaziatura personalizzata consente all\'utente di creare una distribuzione delle barre nell\'elemento strutturale. È possibile definire tre segmenti per la distribuzione. Nel primo e nel terzo segmento, è possibile stabilire sia il numero di barre che la distanza tra i loro bordi. Invece nel secondo segmento, si può stabilire solo il numero di barre o la spaziatura tra i bordi perché un valore determina automaticamente l\'altro. @@ -19,3 +17,6 @@ L\'output della finestra di dialogo Distribuzione barre viene generato quando l\ [Category:User Documentation](Category:User_Documentation.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Custom Spacing/it diff --git a/wiki/translations/it/Custom_icon_in_tree_view.md b/wiki/translations/it/Custom_icon_in_tree_view.md index a0d93a661f..1b31c1bc18 100644 --- a/wiki/translations/it/Custom_icon_in_tree_view.md +++ b/wiki/translations/it/Custom_icon_in_tree_view.md @@ -1,6 +1,4 @@ # Custom icon in tree view/it - - ## Introduzione Questo è un esempio di modifica dell\'icona di un [viewprovider](Viewprovider/it.md) personalizzato, che viene normalmente aggiunto agli [creati da script](scripted_objects/it.md). @@ -276,3 +274,6 @@ makeBox() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Custom icon in tree view/it diff --git a/wiki/translations/it/Customize_Toolbars.md b/wiki/translations/it/Customize_Toolbars.md index 61b22f3b37..e7c60ff473 100644 --- a/wiki/translations/it/Customize_Toolbars.md +++ b/wiki/translations/it/Customize_Toolbars.md @@ -1,5 +1,5 @@ # Customize Toolbars/it - {{TutorialInfo/it|Topic=Configurazione|Level=Principiante|Time=5 minuti|Author=[Mario52](User:Mario52.md)|FCVersion=Tutte}} +{{TutorialInfo/it|Topic=Configurazione|Level=Principiante|Time=5 minuti|Author=[Mario52](User:Mario52.md)|FCVersion=Tutte}} ## Introduzione @@ -128,3 +128,6 @@ Vedere anche [Personalizzare l\'interfaccia](Interface_Customization/it.md) [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Customize Toolbars/it diff --git a/wiki/translations/it/DAG_view.md b/wiki/translations/it/DAG_view.md index 0f46caee69..57e85e8ece 100644 --- a/wiki/translations/it/DAG_view.md +++ b/wiki/translations/it/DAG_view.md @@ -1,6 +1,4 @@ # DAG view/it - - ## Introduzione @@ -68,4 +66,7 @@ Nell\'[editor dei parametri](Std_DlgParameter/it.md) si possono anche modificare {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > DAG view/it diff --git a/wiki/translations/it/DXF.md b/wiki/translations/it/DXF.md index cf88d50c42..a477219ba4 100644 --- a/wiki/translations/it/DXF.md +++ b/wiki/translations/it/DXF.md @@ -1,5 +1,5 @@ # DXF/it - {{TOCright}} +{{TOCright}} ## Storia @@ -115,3 +115,6 @@ Oltre alle opzioni di Modifica → Preferenze, l\'ambiente [TechDraw](TechDraw_W [Category:User Documentation](Category:User_Documentation.md) [Category:Draft](Category:Draft.md) [Category:TechDraw](Category:TechDraw.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > DXF/it diff --git a/wiki/translations/it/Datum.md b/wiki/translations/it/Datum.md index 3fc9b27f7c..9270eec215 100644 --- a/wiki/translations/it/Datum.md +++ b/wiki/translations/it/Datum.md @@ -1,6 +1,4 @@ # Datum/it - - ## Introduzione In FreeCAD la parola **Datum** viene normalmente utilizzata per fare riferimento alla geometria ausiliaria (di riferimento) in [PartDesign](PartDesign_Workbench/it.md). Questi elementi geometrici non faranno parte della [Forma](Shape/it.md) (Shape) finale del [Corpo](Body/it.md) (Body), ma possono essere usati come riferimenti e supporti per gli [schizzi](Sketch/it.md) e altri tipi di [Funzioni](Feature/it.md) (Feature). @@ -52,3 +50,6 @@ Quando sono apparsi nella v0.17, gli oggetti di riferimento erano destinati ad e }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Datum/it diff --git a/wiki/translations/it/Debian_Unstable.md b/wiki/translations/it/Debian_Unstable.md index 2402a661bb..9dc5e2eafa 100644 --- a/wiki/translations/it/Debian_Unstable.md +++ b/wiki/translations/it/Debian_Unstable.md @@ -1,6 +1,4 @@ # Debian Unstable/it - - [Debian Unstable](https://wiki.debian.org/DebianUnstable) is a rolling distribution used for [Debian development](Debian_development.md) and recommended for advanced users in FreeCAD development and packaging. New packages are ready as soon as they are uploaded and built, unless the uploader has marked them for [Debian Experimental](https://wiki.debian.org/DebianExperimental) which requires explicit installation (after some setup to enable the extra distribution) via . Frequently, people using Debian Testing should actually use Debian Unstable; Debian Testing should only be considered a \"QA release pocket\", since, while it may appear to be more stable than Unstable, there\'s actually a downside. New packages are uploaded to Debian Unstable and migrate to Testing after some time, and so security fixes and important packaging changes can be inappropriately delayed. @@ -27,3 +25,6 @@ deb [http://deb.debian.org/debian](http://deb.debian.org/debian) experimental [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian Unstable/it diff --git a/wiki/translations/it/Debian_development.md b/wiki/translations/it/Debian_development.md index 60625810c7..819f8749bd 100644 --- a/wiki/translations/it/Debian_development.md +++ b/wiki/translations/it/Debian_development.md @@ -1,6 +1,4 @@ # Debian development/it - - Debian è la distribuzione genitore da cui derivano molte altre distribuzioni Linux, come Ubuntu, Linux Mint e altre. Pertanto, vale la pena concentrarsi specificamente sullo sviluppo di Debian poiché i miglioramenti in Debian si riflettono sui suoi discendenti. [Debian Unstable](Debian_Unstable/it.md) è una buona distribuzione su cui lavorare per lo sviluppo di FreeCAD su Linux poiché fornisce i pacchetti più aggiornati possibile, come distribuzione continua. Si può contribuire sia allo sviluppo di FreeCAD su Debian sia al suo ecosistema di pacchetti e dipendenze correlati. @@ -9,3 +7,6 @@ Debian è la distribuzione genitore da cui derivano molte altre distribuzioni Li [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian development/it diff --git a/wiki/translations/it/Debugging.md b/wiki/translations/it/Debugging.md index a921fb73a3..13912dc34d 100644 --- a/wiki/translations/it/Debugging.md +++ b/wiki/translations/it/Debugging.md @@ -1,7 +1,4 @@ # Debugging/it - - -
@@ -394,3 +391,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/it diff --git a/wiki/translations/it/Defeaturing.md b/wiki/translations/it/Defeaturing.md index fc986bcbe7..8bd45b8ebf 100644 --- a/wiki/translations/it/Defeaturing.md +++ b/wiki/translations/it/Defeaturing.md @@ -1,6 +1,4 @@ # Defeaturing/it - - ## Introduzione La defeaturing del modello 3D è stata aggiunta con Open CASCADE 7.3 [1](https://dev.opencascade.org/index.php?q=node/1211) e può essere utilizzata per la modifica dei modelli STEP rimuovendo le funzioni dal modello. @@ -29,3 +27,6 @@ Part.show(box4) #show defeatured shape [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Defeaturing/it diff --git a/wiki/translations/it/Defeaturing_Workbench.md b/wiki/translations/it/Defeaturing_Workbench.md index b69fa3bccb..364c526265 100644 --- a/wiki/translations/it/Defeaturing_Workbench.md +++ b/wiki/translations/it/Defeaturing_Workbench.md @@ -1,5 +1,4 @@ -# Defeaturing Workbench/it - Defeaturing workbench icon +# Defeaturing workbench icon Defeaturing Workbench/it ## Introduzione @@ -125,3 +124,6 @@ Sono in fase di sviluppo ulteriori nuovi ambienti. [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Defeaturing Workbench/it diff --git a/wiki/translations/it/Developer_hub.md b/wiki/translations/it/Developer_hub.md index dd9a5ff179..c625673940 100644 --- a/wiki/translations/it/Developer_hub.md +++ b/wiki/translations/it/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/it - - ![150](images/Crystal_Clear_app_tutorials.png ) Questo è il posto giusto per contribuire allo sviluppo del software di FreeCAD. @@ -180,3 +178,6 @@ Serve ancora molto lavoro prima che possa competere con i software commerciali. [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/it diff --git a/wiki/translations/it/Developing_FreeCAD_with_KDevelop.md b/wiki/translations/it/Developing_FreeCAD_with_KDevelop.md index 951f24b9d8..5ec49a4cf6 100644 --- a/wiki/translations/it/Developing_FreeCAD_with_KDevelop.md +++ b/wiki/translations/it/Developing_FreeCAD_with_KDevelop.md @@ -1,5 +1,5 @@ # Developing FreeCAD with KDevelop/it - } +} ## Introduzione @@ -19,3 +19,6 @@ L\'intenzione di questa pagina è di aiutare gli utenti che sono inclini a compr - [Developing FreeCAD with GitKraken](Developing_FreeCAD_with_GitKraken.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Developing FreeCAD with KDevelop/it diff --git a/wiki/translations/it/Development_roadmap.md b/wiki/translations/it/Development_roadmap.md index e5c471cc3a..83a2eb73ae 100644 --- a/wiki/translations/it/Development_roadmap.md +++ b/wiki/translations/it/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/it - **Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** +**Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** Anche se già utilizzabile in diverse parti, FreeCAD è solo all\'inizio di un lungo cammino nell\'ambiente del CAD. @@ -49,3 +49,6 @@ Come nelle maggior parte dei progetti di [Software libero e open source (FLOSS)] [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/it diff --git a/wiki/translations/it/Dialog_creation.md b/wiki/translations/it/Dialog_creation.md index da63224781..3b974ae5c5 100644 --- a/wiki/translations/it/Dialog_creation.md +++ b/wiki/translations/it/Dialog_creation.md @@ -1,7 +1,4 @@ # Dialog creation/it - - - {{TOCright}} ## Introduzione @@ -283,3 +280,6 @@ class plane(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation/it diff --git a/wiki/translations/it/Dialog_creation_image_and_animated_GIF.md b/wiki/translations/it/Dialog_creation_image_and_animated_GIF.md index a64cb43782..9a87c3a393 100644 --- a/wiki/translations/it/Dialog_creation_image_and_animated_GIF.md +++ b/wiki/translations/it/Dialog_creation_image_and_animated_GIF.md @@ -1,6 +1,4 @@ # Dialog creation image and animated GIF/it - - ## Introduzione Questo è un esempio di [creazione di dialoghi](Dialog_creation/it.md) con [PySide](PySide/it.md). @@ -51,3 +49,6 @@ patience.show() #show the image }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation image and animated GIF/it diff --git a/wiki/translations/it/Dialog_creation_reading_and_writing_files.md b/wiki/translations/it/Dialog_creation_reading_and_writing_files.md index 9f4ea2a20c..191a091ee2 100644 --- a/wiki/translations/it/Dialog_creation_reading_and_writing_files.md +++ b/wiki/translations/it/Dialog_creation_reading_and_writing_files.md @@ -1,6 +1,4 @@ # Dialog creation reading and writing files/it - - ## Introduzione Questo è un esempio di [creazione di dialoghi](Dialog_creation/it.md) con [PySide](PySide/it.md). @@ -96,3 +94,6 @@ else: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation reading and writing files/it diff --git a/wiki/translations/it/Dialog_creation_setting_colors.md b/wiki/translations/it/Dialog_creation_setting_colors.md index 8707adce24..6134386468 100644 --- a/wiki/translations/it/Dialog_creation_setting_colors.md +++ b/wiki/translations/it/Dialog_creation_setting_colors.md @@ -1,6 +1,4 @@ # Dialog creation setting colors/it - - ## Introduzione Questo è un esempio di [creazione di dialoghi](Dialog_creation/it.md) con [PySide](PySide/it.md). @@ -203,3 +201,6 @@ else: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation setting colors/it diff --git a/wiki/translations/it/Dialog_creation_with_various_widgets.md b/wiki/translations/it/Dialog_creation_with_various_widgets.md index c23c6a07cf..d8cd1b401a 100644 --- a/wiki/translations/it/Dialog_creation_with_various_widgets.md +++ b/wiki/translations/it/Dialog_creation_with_various_widgets.md @@ -1,6 +1,4 @@ # Dialog creation with various widgets/it - - ## Introduzione Questo è un esempio di [creazione di dialoghi](Dialog_creation/it.md) con [PySide](PySide/it.md). @@ -401,3 +399,6 @@ The code page and the icons [Qt\_Example](Qt_Example.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation with various widgets/it diff --git a/wiki/translations/it/Document_structure.md b/wiki/translations/it/Document_structure.md index 3eb01e26f6..e748be8d91 100644 --- a/wiki/translations/it/Document_structure.md +++ b/wiki/translations/it/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/it - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) Un documento FreeCAD contiene tutti gli oggetti della scena. Può contenere i gruppi e gli oggetti realizzati con qualsiasi ambiente di lavoro. Si possono quindi alternare gli ambienti pur continuando a lavorare sullo stesso documento. Il documento è ciò che viene salvato sul disco quando si salva il proprio lavoro. Inoltre, in FreeCAD è possibile aprire più documenti contemporaneamente, e aprire diverse viste dello stesso documento. @@ -46,8 +40,5 @@ FreeCADGui.ActiveDocument.Blob FreeCADGui.ActiveDocument.ActiveView ``` Restituisce la vista corrente - - - - - +--- +[documentation index](../README.md) > Document structure/it diff --git a/wiki/translations/it/Dodo_Workbench.md b/wiki/translations/it/Dodo_Workbench.md index 8698b2b019..5d882ad0de 100644 --- a/wiki/translations/it/Dodo_Workbench.md +++ b/wiki/translations/it/Dodo_Workbench.md @@ -1,2 +1,5 @@ # Dodo Workbench/it 1. REDIRECT [Flamingo Workbench/it](Flamingo_Workbench/it.md)Dodo is a Py3/Qt5 update of Flamingo with some other revisions a refactoring + +--- +[documentation index](../README.md) > Dodo Workbench/it diff --git a/wiki/translations/it/Donate.md b/wiki/translations/it/Donate.md index 6708b081f7..116c77f4e3 100644 --- a/wiki/translations/it/Donate.md +++ b/wiki/translations/it/Donate.md @@ -1,7 +1,4 @@ # Donate/it - - - @@ -61,5 +63,5 @@ In FreeCAD version 0.19 this command and the [Draft ToggleConstructionMode](Draf
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddConstruction/it diff --git a/wiki/translations/it/Draft_AddToGroup.md b/wiki/translations/it/Draft_AddToGroup.md index 6f4e9f2d53..6625e1e9c1 100644 --- a/wiki/translations/it/Draft_AddToGroup.md +++ b/wiki/translations/it/Draft_AddToGroup.md @@ -7,6 +7,8 @@ SeeAlso:[Seleziona gruppo](Draft_SelectGroup/it.md), [Crea gruppo](Std_Group/it.md) --- +# Draft AddToGroup/it +
@@ -61,5 +63,5 @@ In FreeCAD version 0.20 the command can also handle group-like [Arch](Arch_Workb
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddToGroup/it diff --git a/wiki/translations/it/Draft_Angle.md b/wiki/translations/it/Draft_Angle.md index dce29b5521..47bebbfaf2 100644 --- a/wiki/translations/it/Draft_Angle.md +++ b/wiki/translations/it/Draft_Angle.md @@ -1,2 +1,5 @@ # Draft Angle/it 1. REDIRECT [Draft Snap Angle/it](Draft_Snap_Angle/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Angle/it diff --git a/wiki/translations/it/Draft_AnnotationStyleEditor.md b/wiki/translations/it/Draft_AnnotationStyleEditor.md index 329ced4f90..c69824c7f1 100644 --- a/wiki/translations/it/Draft_AnnotationStyleEditor.md +++ b/wiki/translations/it/Draft_AnnotationStyleEditor.md @@ -9,6 +9,8 @@ Version:0.19 --- +# Draft AnnotationStyleEditor/it +
@@ -110,8 +112,5 @@ props = { } ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AnnotationStyleEditor/it diff --git a/wiki/translations/it/Draft_Apply.md b/wiki/translations/it/Draft_Apply.md index edbd6994cf..ec7aca48ca 100644 --- a/wiki/translations/it/Draft_Apply.md +++ b/wiki/translations/it/Draft_Apply.md @@ -1,2 +1,5 @@ # Draft Apply/it 1. REDIRECT [Draft\_ApplyStyle/it](Draft_ApplyStyle/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Apply/it diff --git a/wiki/translations/it/Draft_ApplyStyle.md b/wiki/translations/it/Draft_ApplyStyle.md index 65d40d1e34..1961270958 100644 --- a/wiki/translations/it/Draft_ApplyStyle.md +++ b/wiki/translations/it/Draft_ApplyStyle.md @@ -7,6 +7,8 @@ SeeAlso:[Barra di Draft](Draft_Tray/it.md), [Draft SetStyle](Draft_SetStyle.md) --- +# Draft ApplyStyle/it +
@@ -62,5 +64,5 @@ This command currently handles only five of the settings the [Draft SetStyle](Dr
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ApplyStyle/it diff --git a/wiki/translations/it/Draft_Arc.md b/wiki/translations/it/Draft_Arc.md index 35542451a3..91d400ccc6 100644 --- a/wiki/translations/it/Draft_Arc.md +++ b/wiki/translations/it/Draft_Arc.md @@ -9,6 +9,8 @@ Version:0.7 --- +# Draft Arc/it +
@@ -152,5 +154,5 @@ doc.recompute()
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc/it diff --git a/wiki/translations/it/Draft_Arc_3Points.md b/wiki/translations/it/Draft_Arc_3Points.md index 5fd39414d4..b6fcdce528 100644 --- a/wiki/translations/it/Draft_Arc_3Points.md +++ b/wiki/translations/it/Draft_Arc_3Points.md @@ -9,6 +9,8 @@ Version:0.19 --- +# Draft Arc 3Points/it +
@@ -158,5 +160,5 @@ doc.recompute()
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc 3Points/it diff --git a/wiki/translations/it/Draft_Array.md b/wiki/translations/it/Draft_Array.md index 03eddf8db3..2c03cfe419 100644 --- a/wiki/translations/it/Draft_Array.md +++ b/wiki/translations/it/Draft_Array.md @@ -7,6 +7,8 @@ SeeAlso:[Serie polare](Draft_PolarArray/it.md), [Serie circolare](Draft_CircularArray/it.md),[Serie su tracciato](Draft_PathArray/it.md), [Serie su punti](Draft_PointArray/it.md), [Clone](Draft_Clone/it.md) --- +# Draft Array/it +
@@ -84,5 +86,5 @@ This command is now obsolete. Use the [Draft OrthoArray](Draft_OrthoArray.md), [
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Array/it diff --git a/wiki/translations/it/Draft_AutoGroup.md b/wiki/translations/it/Draft_AutoGroup.md index 1ef560a18d..c056058df2 100644 --- a/wiki/translations/it/Draft_AutoGroup.md +++ b/wiki/translations/it/Draft_AutoGroup.md @@ -8,6 +8,8 @@ SeeAlso:[Gruppo](Std_Group/it.md), [VisGroup](Draft_VisGroup/it.md) --- +# Draft AutoGroup/it + @@ -123,5 +125,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AutoGroup/it diff --git a/wiki/translations/it/Draft_BSpline.md b/wiki/translations/it/Draft_BSpline.md index bd68898137..6c22a66169 100644 --- a/wiki/translations/it/Draft_BSpline.md +++ b/wiki/translations/it/Draft_BSpline.md @@ -9,6 +9,8 @@ Version:0.7 --- +# Draft BSpline/it + @@ -223,5 +225,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BSpline/it diff --git a/wiki/translations/it/Draft_BezCurve.md b/wiki/translations/it/Draft_BezCurve.md index 343e70287f..40f33de231 100644 --- a/wiki/translations/it/Draft_BezCurve.md +++ b/wiki/translations/it/Draft_BezCurve.md @@ -9,6 +9,8 @@ Version:0.14 --- +# Draft BezCurve/it + @@ -237,5 +239,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BezCurve/it diff --git a/wiki/translations/it/Draft_Center.md b/wiki/translations/it/Draft_Center.md index 8e3ce91123..355f219a2e 100644 --- a/wiki/translations/it/Draft_Center.md +++ b/wiki/translations/it/Draft_Center.md @@ -1,2 +1,5 @@ # Draft Center/it 1. REDIRECT [Draft Snap Center/it](Draft_Snap_Center/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Center/it diff --git a/wiki/translations/it/Draft_Circle.md b/wiki/translations/it/Draft_Circle.md index 42f784aa98..beaa1558d4 100644 --- a/wiki/translations/it/Draft_Circle.md +++ b/wiki/translations/it/Draft_Circle.md @@ -7,6 +7,8 @@ SeeAlso:[Arco](Draft_Arc/it.md), [Ellisse](Draft_Ellipse/it.md)
[Macro CirclePlus](Macro_CirclePlus/it.md) --- +# Draft Circle/it + @@ -214,5 +216,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Circle/it diff --git a/wiki/translations/it/Draft_CircularArray.md b/wiki/translations/it/Draft_CircularArray.md index 2e09baef63..ed04c8b855 100644 --- a/wiki/translations/it/Draft_CircularArray.md +++ b/wiki/translations/it/Draft_CircularArray.md @@ -8,6 +8,8 @@ SeeAlso:[Serie ortogonale](Draft_OrthoArray/it.md), [Serie polare](Draft_PolarArray/it.md), [Serie su tracciato](Draft_PathArray/it.md), [Serie di link su tracciato](Draft_PathLinkArray/it.md), [Serie su punti](Draft_PointArray/it.md), [Clona](Draft_Clone/it.md) --- +# Draft CircularArray/it + @@ -146,5 +148,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CircularArray/it diff --git a/wiki/translations/it/Draft_Clone.md b/wiki/translations/it/Draft_Clone.md index cec5b29c0f..6ae8dc68a7 100644 --- a/wiki/translations/it/Draft_Clone.md +++ b/wiki/translations/it/Draft_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Sposta](Draft_Move/it.md), [Scala](Draft_Scale/it.md) --- +# Draft Clone/it + @@ -145,5 +147,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Clone/it diff --git a/wiki/translations/it/Draft_CloseLine.md b/wiki/translations/it/Draft_CloseLine.md index 2b0d780687..ae6bd105b7 100644 --- a/wiki/translations/it/Draft_CloseLine.md +++ b/wiki/translations/it/Draft_CloseLine.md @@ -1,2 +1,5 @@ # Draft CloseLine/it 1. REDIRECT [Draft\_Wire/it](Draft_Wire/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CloseLine/it diff --git a/wiki/translations/it/Draft_Constrain.md b/wiki/translations/it/Draft_Constrain.md index 3b2c0ee0a7..d553fd034a 100644 --- a/wiki/translations/it/Draft_Constrain.md +++ b/wiki/translations/it/Draft_Constrain.md @@ -1,7 +1,4 @@ # Draft Constrain/it - - -
@@ -95,5 +92,5 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Constrain/it diff --git a/wiki/translations/it/Draft_CubicBezCurve.md b/wiki/translations/it/Draft_CubicBezCurve.md index fc714be6f0..d04de5fb50 100644 --- a/wiki/translations/it/Draft_CubicBezCurve.md +++ b/wiki/translations/it/Draft_CubicBezCurve.md @@ -8,6 +8,8 @@ SeeAlso:[Polilinea](Draft_Wire/it.md), [B-spline](Draft_BSpline/it.md), [Curva di Bézier](Draft_BezCurve/it.md) --- +# Draft CubicBezCurve/it + @@ -214,5 +216,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CubicBezCurve/it diff --git a/wiki/translations/it/Draft_DAT.md b/wiki/translations/it/Draft_DAT.md index b271c78aa3..6fef5ac6da 100644 --- a/wiki/translations/it/Draft_DAT.md +++ b/wiki/translations/it/Draft_DAT.md @@ -1,7 +1,4 @@ # Draft DAT/it - - -
@@ -37,3 +34,6 @@ Di questo formato esistono molti *dialetti*, questo modulo di importazione cerca [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DAT/it diff --git a/wiki/translations/it/Draft_DXF.md b/wiki/translations/it/Draft_DXF.md index 30910ce065..f16ad9b6b3 100644 --- a/wiki/translations/it/Draft_DXF.md +++ b/wiki/translations/it/Draft_DXF.md @@ -1,7 +1,4 @@ # Draft DXF/it - - -
@@ -196,3 +193,6 @@ importDXF.export(objects, "/home/user/Pictures/myfile.dxf") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DXF/it diff --git a/wiki/translations/it/Draft_Dimension.md b/wiki/translations/it/Draft_Dimension.md index 0c2b96d1aa..9b44a9c306 100644 --- a/wiki/translations/it/Draft_Dimension.md +++ b/wiki/translations/it/Draft_Dimension.md @@ -8,6 +8,8 @@ Version:0.8 --- +# Draft Dimension/it +
@@ -426,5 +428,5 @@ doc.recompute()
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Dimension/it diff --git a/wiki/translations/it/Draft_Dimensions.md b/wiki/translations/it/Draft_Dimensions.md index 0212addfac..b5e226136c 100644 --- a/wiki/translations/it/Draft_Dimensions.md +++ b/wiki/translations/it/Draft_Dimensions.md @@ -1,2 +1,5 @@ # Draft Dimensions/it 1. REDIRECT [Draft Snap Dimensions/it](Draft_Snap_Dimensions/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Dimensions/it diff --git a/wiki/translations/it/Draft_Downgrade.md b/wiki/translations/it/Draft_Downgrade.md index 7fbc53180e..0c787ee716 100644 --- a/wiki/translations/it/Draft_Downgrade.md +++ b/wiki/translations/it/Draft_Downgrade.md @@ -8,6 +8,8 @@ SeeAlso:[Promuovi](Draft_Upgrade/it.md), [Taglio di Part](Part_Cut/it.md) --- +# Draft Downgrade/it + @@ -122,5 +124,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Downgrade/it diff --git a/wiki/translations/it/Draft_Draft2Sketch.md b/wiki/translations/it/Draft_Draft2Sketch.md index b0dd93f63a..9b6ae3f0c7 100644 --- a/wiki/translations/it/Draft_Draft2Sketch.md +++ b/wiki/translations/it/Draft_Draft2Sketch.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher](Sketcher_Workbench/it.md), [PartDesign](PartDesign_Workbench/it.md) --- +# Draft Draft2Sketch/it + @@ -150,5 +152,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Draft2Sketch/it diff --git a/wiki/translations/it/Draft_Drawing.md b/wiki/translations/it/Draft_Drawing.md index 83fa89e94e..36c6feee2e 100644 --- a/wiki/translations/it/Draft_Drawing.md +++ b/wiki/translations/it/Draft_Drawing.md @@ -1,3 +1,4 @@ +# Draft Drawing/it --- - GuiCommand:/it Name:Draft Drawing @@ -61,5 +62,5 @@ This command is now obsolete. Use the [TechDraw Workbench](TechDraw_Workbench.md - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Drawing/it diff --git a/wiki/translations/it/Draft_Edit.md b/wiki/translations/it/Draft_Edit.md index 0916fd0709..4db5b3d081 100644 --- a/wiki/translations/it/Draft_Edit.md +++ b/wiki/translations/it/Draft_Edit.md @@ -8,6 +8,8 @@ SeeAlso:[Modifica standard](Std_Edit/it.md), [Aggiungi punto](Draft_AddPoint/it.md), [Elimina punto](Draft_DelPoint/it.md) --- +# Draft Edit/it + @@ -213,5 +215,5 @@ Per lo strumento Modifica non è disponibile un\'interfaccia di programmazione. - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Edit/it diff --git a/wiki/translations/it/Draft_Edit_Improved.md b/wiki/translations/it/Draft_Edit_Improved.md index fb751df801..7ed69151bd 100644 --- a/wiki/translations/it/Draft_Edit_Improved.md +++ b/wiki/translations/it/Draft_Edit_Improved.md @@ -1,2 +1,5 @@ # Draft Edit Improved/it 1. REDIRECT [Draft SubelementHighlight/it](Draft_SubelementHighlight/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Edit Improved/it diff --git a/wiki/translations/it/Draft_Ellipse.md b/wiki/translations/it/Draft_Ellipse.md index b8a349c633..86c06abc4a 100644 --- a/wiki/translations/it/Draft_Ellipse.md +++ b/wiki/translations/it/Draft_Ellipse.md @@ -9,6 +9,8 @@ Version:0.7 --- +# Draft Ellipse/it + @@ -204,5 +206,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Ellipse/it diff --git a/wiki/translations/it/Draft_Endpoint.md b/wiki/translations/it/Draft_Endpoint.md index 079a42f602..e681347ce3 100644 --- a/wiki/translations/it/Draft_Endpoint.md +++ b/wiki/translations/it/Draft_Endpoint.md @@ -1,2 +1,5 @@ # Draft Endpoint/it 1. REDIRECT [Draft Snap Endpoint/it](Draft_Snap_Endpoint/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Endpoint/it diff --git a/wiki/translations/it/Draft_Extension.md b/wiki/translations/it/Draft_Extension.md index eae1392e7e..fb967ec3f6 100644 --- a/wiki/translations/it/Draft_Extension.md +++ b/wiki/translations/it/Draft_Extension.md @@ -1,2 +1,5 @@ # Draft Extension/it 1. REDIRECT [Draft Snap Extension/it](Draft_Snap_Extension/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Extension/it diff --git a/wiki/translations/it/Draft_Facebinder.md b/wiki/translations/it/Draft_Facebinder.md index 7ef9bd3e60..b25303182b 100644 --- a/wiki/translations/it/Draft_Facebinder.md +++ b/wiki/translations/it/Draft_Facebinder.md @@ -9,6 +9,8 @@ Version:0.14 --- +# Draft Facebinder/it + @@ -202,5 +204,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Facebinder/it diff --git a/wiki/translations/it/Draft_Fillet.md b/wiki/translations/it/Draft_Fillet.md index 766c2b1485..f7f43498c6 100644 --- a/wiki/translations/it/Draft_Fillet.md +++ b/wiki/translations/it/Draft_Fillet.md @@ -8,6 +8,8 @@ SeeAlso:[Linea](Draft_Line/it.md), [Polilinea](Draft_Wire/it.md) --- +# Draft Fillet/it + @@ -165,5 +167,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Fillet/it diff --git a/wiki/translations/it/Draft_FinishLine.md b/wiki/translations/it/Draft_FinishLine.md index ffd5cb5b68..371d691659 100644 --- a/wiki/translations/it/Draft_FinishLine.md +++ b/wiki/translations/it/Draft_FinishLine.md @@ -1,2 +1,5 @@ # Draft FinishLine/it 1. REDIRECT [Draft\_Wire/it](Draft_Wire/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FinishLine/it diff --git a/wiki/translations/it/Draft_FlipDimension.md b/wiki/translations/it/Draft_FlipDimension.md index 0a855cf328..80fb25f0ce 100644 --- a/wiki/translations/it/Draft_FlipDimension.md +++ b/wiki/translations/it/Draft_FlipDimension.md @@ -7,6 +7,8 @@ SeeAlso:[Quotatura](Draft_Dimension/it.md) --- +# Draft FlipDimension/it + @@ -75,5 +77,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FlipDimension/it diff --git a/wiki/translations/it/Draft_Grid.md b/wiki/translations/it/Draft_Grid.md index 4eea7f81e4..75d9be33cb 100644 --- a/wiki/translations/it/Draft_Grid.md +++ b/wiki/translations/it/Draft_Grid.md @@ -1,2 +1,5 @@ # Draft Grid/it 1. REDIRECT [Draft Snap Grid/it](Draft_Snap_Grid/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Grid/it diff --git a/wiki/translations/it/Draft_Heal.md b/wiki/translations/it/Draft_Heal.md index 532c5d2017..6052834154 100644 --- a/wiki/translations/it/Draft_Heal.md +++ b/wiki/translations/it/Draft_Heal.md @@ -7,6 +7,8 @@ SeeAlso:[Promuovi](Draft_Upgrade/it.md), [Retrocedi](Draft_Downgrade/it.md) --- +# Draft Heal/it + @@ -40,5 +42,5 @@ Questo comando tenta di correggere gli oggetti [Draft](Draft_Workbench/it.md) ch - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Heal/it diff --git a/wiki/translations/it/Draft_Intersection.md b/wiki/translations/it/Draft_Intersection.md index 3dcebb7d60..87508cb538 100644 --- a/wiki/translations/it/Draft_Intersection.md +++ b/wiki/translations/it/Draft_Intersection.md @@ -1,2 +1,5 @@ # Draft Intersection/it 1. REDIRECT [Draft Snap Intersection/it](Draft_Snap_Intersection/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Intersection/it diff --git a/wiki/translations/it/Draft_Join.md b/wiki/translations/it/Draft_Join.md index d46d541b5f..3eae632975 100644 --- a/wiki/translations/it/Draft_Join.md +++ b/wiki/translations/it/Draft_Join.md @@ -9,6 +9,8 @@ SeeAlso:[Dividi](Draft_Split/it.md) --- +# Draft Join/it + @@ -105,5 +107,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Join/it diff --git a/wiki/translations/it/Draft_Label.md b/wiki/translations/it/Draft_Label.md index b8c6f88140..f37243e8ff 100644 --- a/wiki/translations/it/Draft_Label.md +++ b/wiki/translations/it/Draft_Label.md @@ -9,6 +9,8 @@ SeeAlso:[Testo](Draft_Text/it.md), [Forma da testo](Draft_ShapeString/it.md) --- +# Draft Label/it + @@ -305,5 +307,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Label/it diff --git a/wiki/translations/it/Draft_Layer.md b/wiki/translations/it/Draft_Layer.md index 56bb73507c..e0d99cc5a2 100644 --- a/wiki/translations/it/Draft_Layer.md +++ b/wiki/translations/it/Draft_Layer.md @@ -8,6 +8,8 @@ See also:[Draft AutoGruppo](Draft_AutoGroup/it.md) --- +# Draft Layer/it + @@ -160,5 +162,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Layer/it diff --git a/wiki/translations/it/Draft_Line.md b/wiki/translations/it/Draft_Line.md index ee1a6dd793..95c20d35e6 100644 --- a/wiki/translations/it/Draft_Line.md +++ b/wiki/translations/it/Draft_Line.md @@ -8,6 +8,8 @@ Version:0.7 --- +# Draft Line/it + @@ -165,5 +167,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Line/it diff --git a/wiki/translations/it/Draft_Linestyle.md b/wiki/translations/it/Draft_Linestyle.md index 339f4e89f5..97f6225984 100644 --- a/wiki/translations/it/Draft_Linestyle.md +++ b/wiki/translations/it/Draft_Linestyle.md @@ -1,2 +1,5 @@ # Draft Linestyle/it 1. REDIRECT [Draft\_Tray/it](Draft_Tray/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Linestyle/it diff --git a/wiki/translations/it/Draft_LinkArray.md b/wiki/translations/it/Draft_LinkArray.md index 885562ffdb..8ad3847c2b 100644 --- a/wiki/translations/it/Draft_LinkArray.md +++ b/wiki/translations/it/Draft_LinkArray.md @@ -1,2 +1,5 @@ # Draft LinkArray/it 1. REDIRECT [Draft\_OrthoArray/it](Draft_OrthoArray/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft LinkArray/it diff --git a/wiki/translations/it/Draft_Midpoint.md b/wiki/translations/it/Draft_Midpoint.md index 6d79f14ae6..9e14ebcb94 100644 --- a/wiki/translations/it/Draft_Midpoint.md +++ b/wiki/translations/it/Draft_Midpoint.md @@ -1,2 +1,5 @@ # Draft Midpoint/it 1. REDIRECT [Draft Snap Midpoint/it](Draft_Snap_Midpoint/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Midpoint/it diff --git a/wiki/translations/it/Draft_Mirror.md b/wiki/translations/it/Draft_Mirror.md index e5710c5b6a..e5754187e1 100644 --- a/wiki/translations/it/Draft_Mirror.md +++ b/wiki/translations/it/Draft_Mirror.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Scala](Draft_Scale/it.md), [Clone](Draft_Clone/it.md) --- +# Draft Mirror/it + @@ -191,5 +193,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Mirror/it diff --git a/wiki/translations/it/Draft_Module.md b/wiki/translations/it/Draft_Module.md index 2089bec0d7..b921836b2b 100644 --- a/wiki/translations/it/Draft_Module.md +++ b/wiki/translations/it/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/it 1. REDIRECT [Draft\_Workbench/it](Draft_Workbench/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/it diff --git a/wiki/translations/it/Draft_Move.md b/wiki/translations/it/Draft_Move.md index 7ca4742dcf..b15e42562a 100644 --- a/wiki/translations/it/Draft_Move.md +++ b/wiki/translations/it/Draft_Move.md @@ -9,6 +9,8 @@ Version:0.7 --- +# Draft Move/it + @@ -177,5 +179,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Move/it diff --git a/wiki/translations/it/Draft_Near.md b/wiki/translations/it/Draft_Near.md index 1fc369ef85..4b7ce50795 100644 --- a/wiki/translations/it/Draft_Near.md +++ b/wiki/translations/it/Draft_Near.md @@ -1,2 +1,5 @@ # Draft Near/it 1. REDIRECT [Draft Snap Near/it](Draft_Snap_Near/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Near/it diff --git a/wiki/translations/it/Draft_OCA.md b/wiki/translations/it/Draft_OCA.md index 7b1653c113..384642e3db 100644 --- a/wiki/translations/it/Draft_OCA.md +++ b/wiki/translations/it/Draft_OCA.md @@ -1,7 +1,4 @@ # Draft OCA/it - - -
@@ -129,3 +126,6 @@ importOCA.export(objects, "/home/user/Pictures/myfile.oca") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft OCA/it diff --git a/wiki/translations/it/Draft_Offset.md b/wiki/translations/it/Draft_Offset.md index 32a95b4d31..f37c943db2 100644 --- a/wiki/translations/it/Draft_Offset.md +++ b/wiki/translations/it/Draft_Offset.md @@ -8,6 +8,8 @@ SeeAlso:[Scala](Draft_Scale/it.md), [Part Offset 2D](Part_Offset2D/it.md) --- +# Draft Offset/it +
@@ -154,5 +156,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Offset/it diff --git a/wiki/translations/it/Draft_Ortho.md b/wiki/translations/it/Draft_Ortho.md index 8ebeeae549..b79b83c72c 100644 --- a/wiki/translations/it/Draft_Ortho.md +++ b/wiki/translations/it/Draft_Ortho.md @@ -1,2 +1,5 @@ # Draft Ortho/it 1. REDIRECT [Draft Snap Ortho/it](Draft_Snap_Ortho/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Ortho/it diff --git a/wiki/translations/it/Draft_OrthoArray.md b/wiki/translations/it/Draft_OrthoArray.md index efb5c2ff23..7e6c28f800 100644 --- a/wiki/translations/it/Draft_OrthoArray.md +++ b/wiki/translations/it/Draft_OrthoArray.md @@ -8,6 +8,8 @@ SeeAlso:[Serie polare](Draft_PolarArray/it.md), [Serie circolare](Draft_CircularArray/it.md), [Serie su tracciato](Draft_PathArray/it.md), [Serie di link su tracciato](Draft_PathLinkArray/it.md), [Serie su punti](Draft_PointArray/it.md), [Clone](Draft_Clone/it.md) --- +# Draft OrthoArray/it + @@ -370,5 +372,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft OrthoArray/it diff --git a/wiki/translations/it/Draft_Parallel.md b/wiki/translations/it/Draft_Parallel.md index 1f33bde2ee..b78f750677 100644 --- a/wiki/translations/it/Draft_Parallel.md +++ b/wiki/translations/it/Draft_Parallel.md @@ -1,2 +1,5 @@ # Draft Parallel/it 1. REDIRECT [Draft Snap Parallel/it](Draft_Snap_Parallel/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Parallel/it diff --git a/wiki/translations/it/Draft_PathArray.md b/wiki/translations/it/Draft_PathArray.md index bbc17cffd4..378863dde6 100644 --- a/wiki/translations/it/Draft_PathArray.md +++ b/wiki/translations/it/Draft_PathArray.md @@ -8,6 +8,8 @@ Version:0.14 --- +# Draft PathArray/it + @@ -329,5 +331,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathArray/it diff --git a/wiki/translations/it/Draft_PathLinkArray.md b/wiki/translations/it/Draft_PathLinkArray.md index 8d8e35d514..3ece8bb3ee 100644 --- a/wiki/translations/it/Draft_PathLinkArray.md +++ b/wiki/translations/it/Draft_PathLinkArray.md @@ -8,6 +8,8 @@ SeeAlso:[Serie ortognale](Draft_OrthoArray/it.md), [Serie polare](Draft_PolarArray/it.md), [Serie circolare](Draft_CircularArray/it.md), [Serie di link su tracciato](Draft_PathLinkArray/it.md), [Serie su punti](Draft_PointArray/it.md) --- +# Draft PathLinkArray/it + @@ -30,5 +32,5 @@ Lo strumento [Serie di link su tracciato](Draft_PathLinkArray/it.md) posiziona c - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathLinkArray/it diff --git a/wiki/translations/it/Draft_Pattern.md b/wiki/translations/it/Draft_Pattern.md index aa416d293f..fed972b895 100644 --- a/wiki/translations/it/Draft_Pattern.md +++ b/wiki/translations/it/Draft_Pattern.md @@ -1,10 +1,4 @@ # Draft Pattern/it - - - - - - {{TOCright}} ## Descrizione @@ -55,8 +49,5 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr - The **Edit → Preferences... → Draft → Visual settings → Hatch patterns resolution** preference is not used. - To change the **Pattern Size** used for new objects: **Edit → Preferences... → Draft → Visual settings → Hatch Pattern default size**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Pattern/it diff --git a/wiki/translations/it/Draft_Perpendicular.md b/wiki/translations/it/Draft_Perpendicular.md index e506eeb34b..99ba05594c 100644 --- a/wiki/translations/it/Draft_Perpendicular.md +++ b/wiki/translations/it/Draft_Perpendicular.md @@ -1,2 +1,5 @@ # Draft Perpendicular/it 1. REDIRECT [Draft Snap Perpendicular/it](Draft_Snap_Perpendicular/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Perpendicular/it diff --git a/wiki/translations/it/Draft_Point.md b/wiki/translations/it/Draft_Point.md index f5026c20ea..1016eac982 100644 --- a/wiki/translations/it/Draft_Point.md +++ b/wiki/translations/it/Draft_Point.md @@ -9,6 +9,8 @@ Version:0.7 --- +# Draft Point/it + @@ -200,5 +202,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Point/it diff --git a/wiki/translations/it/Draft_PointArray.md b/wiki/translations/it/Draft_PointArray.md index 2eebdca423..c4d404e5d7 100644 --- a/wiki/translations/it/Draft_PointArray.md +++ b/wiki/translations/it/Draft_PointArray.md @@ -9,6 +9,8 @@ SeeAlso:[Serie ortogonale](Draft_OrthoArray/it.md), [Serie polare](Draft_PolarArray/it.md), [Serie circolare](Draft_CircularArray/it.md), [Serie su tracciato](Draft_PathArray/it.md), [Serie di link su tracciato](Draft_PathLinkArray/it.md), [Serie di link su punti](Draft_PointLinkArray/it.md), [Clona](Draft_Clone/it.md) --- +# Draft PointArray/it + @@ -278,5 +280,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PointArray/it diff --git a/wiki/translations/it/Draft_PointLinkArray.md b/wiki/translations/it/Draft_PointLinkArray.md index 6509c3279d..56531f75d6 100644 --- a/wiki/translations/it/Draft_PointLinkArray.md +++ b/wiki/translations/it/Draft_PointLinkArray.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Draft PointLinkArray/it + @@ -30,5 +32,5 @@ Lo strumento **Serie di link su punti** posiziona copie di una forma selezionata - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PointLinkArray/it diff --git a/wiki/translations/it/Draft_PolarArray.md b/wiki/translations/it/Draft_PolarArray.md index d649918ac8..e04b8391e3 100644 --- a/wiki/translations/it/Draft_PolarArray.md +++ b/wiki/translations/it/Draft_PolarArray.md @@ -8,6 +8,8 @@ SeeAlso:[Serie](Draft_Array/it.md), [Serie circolare](Draft_CircularArray/it.md), [Serie su tracciato](Draft_PathArray/it.md), [Serie su punti](Draft_PointArray/it.md), [Clone](Draft_Clone/it.md) --- +# Draft PolarArray/it + @@ -210,5 +212,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PolarArray/it diff --git a/wiki/translations/it/Draft_Polygon.md b/wiki/translations/it/Draft_Polygon.md index 6857cfdb81..1090f1637f 100644 --- a/wiki/translations/it/Draft_Polygon.md +++ b/wiki/translations/it/Draft_Polygon.md @@ -8,6 +8,8 @@ Version:0.7 --- +# Draft Polygon/it + @@ -208,5 +210,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Polygon/it diff --git a/wiki/translations/it/Draft_Polyline.md b/wiki/translations/it/Draft_Polyline.md index e996ea0387..917862802b 100644 --- a/wiki/translations/it/Draft_Polyline.md +++ b/wiki/translations/it/Draft_Polyline.md @@ -1,2 +1,5 @@ # Draft Polyline/it 1. REDIRECT [Draft\_Wire/it](Draft_Wire/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Polyline/it diff --git a/wiki/translations/it/Draft_Preferences.md b/wiki/translations/it/Draft_Preferences.md index d0709af269..479101d127 100644 --- a/wiki/translations/it/Draft_Preferences.md +++ b/wiki/translations/it/Draft_Preferences.md @@ -1,10 +1,4 @@ # Draft Preferences/it - - - - - - {{TOCright}} @@ -508,3 +502,6 @@ On the *Texts and dimensions* tab you can specify the following: [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Preferences/it diff --git a/wiki/translations/it/Draft_Rectangle.md b/wiki/translations/it/Draft_Rectangle.md index 84885e86bc..4ec3353162 100644 --- a/wiki/translations/it/Draft_Rectangle.md +++ b/wiki/translations/it/Draft_Rectangle.md @@ -9,6 +9,8 @@ Version:0.7 --- +# Draft Rectangle/it + @@ -207,5 +209,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rectangle/it diff --git a/wiki/translations/it/Draft_Rotate.md b/wiki/translations/it/Draft_Rotate.md index e10fa14455..09ca5b02ba 100644 --- a/wiki/translations/it/Draft_Rotate.md +++ b/wiki/translations/it/Draft_Rotate.md @@ -9,6 +9,8 @@ Version:0.7 --- +# Draft Rotate/it + @@ -185,5 +187,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rotate/it diff --git a/wiki/translations/it/Draft_SVG.md b/wiki/translations/it/Draft_SVG.md index 59c701b0b8..87885f85a1 100644 --- a/wiki/translations/it/Draft_SVG.md +++ b/wiki/translations/it/Draft_SVG.md @@ -1,7 +1,4 @@ # Draft SVG/it - - -
@@ -149,3 +146,6 @@ importSVG.export(objects, "/home/user/Pictures/myfile.svg") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SVG/it diff --git a/wiki/translations/it/Draft_Scale.md b/wiki/translations/it/Draft_Scale.md index 5ad378721e..234b50f1d2 100644 --- a/wiki/translations/it/Draft_Scale.md +++ b/wiki/translations/it/Draft_Scale.md @@ -8,6 +8,8 @@ SeeAlso:[Clona](Draft_Clone/it.md), [Offset](Draft_Offset/it.md) --- +# Draft Scale/it +
@@ -187,5 +189,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Scale/it diff --git a/wiki/translations/it/Draft_Select.md b/wiki/translations/it/Draft_Select.md index c6cd3845bc..17557ba825 100644 --- a/wiki/translations/it/Draft_Select.md +++ b/wiki/translations/it/Draft_Select.md @@ -1,2 +1,5 @@ # Draft Select/it 1. REDIRECT [Selection\_methods/it](Selection_methods/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Select/it diff --git a/wiki/translations/it/Draft_SelectGroup.md b/wiki/translations/it/Draft_SelectGroup.md index db9963c1ed..3c8d9ffb1b 100644 --- a/wiki/translations/it/Draft_SelectGroup.md +++ b/wiki/translations/it/Draft_SelectGroup.md @@ -8,6 +8,8 @@ SeeAlso:[Aggiungi al gruppo](Draft_AddToGroup/it.md), [Crea gruppo](Std_Group/it.md) --- +# Draft SelectGroup/it + @@ -58,5 +60,5 @@ The command currently does not work well with layers and can produce confusing r - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectGroup/it diff --git a/wiki/translations/it/Draft_SelectPlane.md b/wiki/translations/it/Draft_SelectPlane.md index e8a0709fa7..7fd76b78fa 100644 --- a/wiki/translations/it/Draft_SelectPlane.md +++ b/wiki/translations/it/Draft_SelectPlane.md @@ -8,6 +8,8 @@ SeeAlso:[Piano proxy](Draft_SetWorkingPlaneProxy/it.md), [Mostra la griglia](Draft_ToggleGrid/it.md) --- +# Draft SelectPlane/it + @@ -183,5 +185,5 @@ print(projection) - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectPlane/it diff --git a/wiki/translations/it/Draft_SetWorkingPlaneProxy.md b/wiki/translations/it/Draft_SetWorkingPlaneProxy.md index 2669be5ec8..d44553151b 100644 --- a/wiki/translations/it/Draft_SetWorkingPlaneProxy.md +++ b/wiki/translations/it/Draft_SetWorkingPlaneProxy.md @@ -1,2 +1,5 @@ # Draft SetWorkingPlaneProxy/it 1. REDIRECT [Draft\_WorkingPlaneProxy/it](Draft_WorkingPlaneProxy/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SetWorkingPlaneProxy/it diff --git a/wiki/translations/it/Draft_Shape2DView.md b/wiki/translations/it/Draft_Shape2DView.md index e8659774fa..9a4408c974 100644 --- a/wiki/translations/it/Draft_Shape2DView.md +++ b/wiki/translations/it/Draft_Shape2DView.md @@ -1,3 +1,4 @@ +# Draft Shape2DView/it --- - GuiCommand:/it Name:Draft Shape2DView @@ -186,5 +187,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Shape2DView/it diff --git a/wiki/translations/it/Draft_ShapeString.md b/wiki/translations/it/Draft_ShapeString.md index 715871b1fb..f55cb29c47 100644 --- a/wiki/translations/it/Draft_ShapeString.md +++ b/wiki/translations/it/Draft_ShapeString.md @@ -1,3 +1,4 @@ +# Draft ShapeString/it --- - GuiCommand:/it Name:Draft_ShapeString @@ -210,5 +211,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString/it diff --git a/wiki/translations/it/Draft_ShapeString_tutorial.md b/wiki/translations/it/Draft_ShapeString_tutorial.md index 2dc808f93e..d36a163d64 100644 --- a/wiki/translations/it/Draft_ShapeString_tutorial.md +++ b/wiki/translations/it/Draft_ShapeString_tutorial.md @@ -1,5 +1,5 @@ # Draft ShapeString tutorial/it - {{TutorialInfo/it +{{TutorialInfo/it |Topic= Product design |Level= Base |Time=30 minuti @@ -184,4 +184,7 @@ See the forum thread, [How to use ShapeStrings in PartDesign](https://forum.free {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString tutorial/it diff --git a/wiki/translations/it/Draft_ShowSnapBar.md b/wiki/translations/it/Draft_ShowSnapBar.md index dd1d8b9c1c..823e9ed662 100644 --- a/wiki/translations/it/Draft_ShowSnapBar.md +++ b/wiki/translations/it/Draft_ShowSnapBar.md @@ -7,6 +7,8 @@ SeeAlso:[Agganciare](Draft_Snap/it.md), [Attiva/disattiva Aggancio](Draft_ToggleSnap/it.md) --- +# Draft ShowSnapBar/it + @@ -47,5 +49,5 @@ Questo comando mostra la barra [Snap](Draft_Snap/it.md), che contiene i pulsanti - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShowSnapBar/it diff --git a/wiki/translations/it/Draft_Slope.md b/wiki/translations/it/Draft_Slope.md index 9ea5f032b9..3c6cff1f0b 100644 --- a/wiki/translations/it/Draft_Slope.md +++ b/wiki/translations/it/Draft_Slope.md @@ -8,6 +8,8 @@ SeeAlso: SeeAlso:[Linea](Draft_Line/it.md), [Polilinea](Draft_Wire/it.md) --- +# Draft Slope/it + @@ -59,5 +61,5 @@ There is no Python method to slope objects. To emulate the results of the Draft - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Slope/it diff --git a/wiki/translations/it/Draft_Snap.md b/wiki/translations/it/Draft_Snap.md index 51ae58dfbc..207ce04a20 100644 --- a/wiki/translations/it/Draft_Snap.md +++ b/wiki/translations/it/Draft_Snap.md @@ -1,7 +1,4 @@ # Draft Snap/it - - -
@@ -144,5 +141,5 @@ Note that after changing some preferences you must restart FreeCAD.
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap/it diff --git a/wiki/translations/it/Draft_Snap_Angle.md b/wiki/translations/it/Draft_Snap_Angle.md index c1a7c330cb..fc033a76fa 100644 --- a/wiki/translations/it/Draft_Snap_Angle.md +++ b/wiki/translations/it/Draft_Snap_Angle.md @@ -8,6 +8,8 @@ SeeAlso:[Snap](Draft_Snap/it.md), [Attiva/disattiva snap](Draft_ToggleSnap/it.md) --- +# Draft Snap Angle/it + @@ -70,5 +72,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Angle/it diff --git a/wiki/translations/it/Draft_Snap_Center.md b/wiki/translations/it/Draft_Snap_Center.md index 0f760574bc..b36aead16d 100644 --- a/wiki/translations/it/Draft_Snap_Center.md +++ b/wiki/translations/it/Draft_Snap_Center.md @@ -8,6 +8,8 @@ SeeAlso:[Agganciare](Draft_Snap/it.md), [Aggancia](Draft_ToggleSnap/it.md) --- +# Draft Snap Center/it + @@ -67,5 +69,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Center/it diff --git a/wiki/translations/it/Draft_Snap_Dimensions.md b/wiki/translations/it/Draft_Snap_Dimensions.md index 8aba3230b9..b9903eedcd 100644 --- a/wiki/translations/it/Draft_Snap_Dimensions.md +++ b/wiki/translations/it/Draft_Snap_Dimensions.md @@ -9,6 +9,8 @@ SeeAlso:[Agganciare](Draft_Snap/it.md), [Aggancia](Draft_ToggleSnap/it.md) --- +# Draft Snap Dimensions/it + @@ -62,5 +64,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Dimensions/it diff --git a/wiki/translations/it/Draft_Snap_Endpoint.md b/wiki/translations/it/Draft_Snap_Endpoint.md index b6f5944b15..0395894e48 100644 --- a/wiki/translations/it/Draft_Snap_Endpoint.md +++ b/wiki/translations/it/Draft_Snap_Endpoint.md @@ -1,3 +1,4 @@ +# Draft Snap Endpoint/it --- - GuiCommand:/it Name:Draft Endpoint @@ -65,5 +66,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Endpoint/it diff --git a/wiki/translations/it/Draft_Snap_Extension.md b/wiki/translations/it/Draft_Snap_Extension.md index 343e7e63f8..53423203e3 100644 --- a/wiki/translations/it/Draft_Snap_Extension.md +++ b/wiki/translations/it/Draft_Snap_Extension.md @@ -1,3 +1,4 @@ +# Draft Snap Extension/it --- - GuiCommand:/it Name:Draft Extension @@ -66,5 +67,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Extension/it diff --git a/wiki/translations/it/Draft_Snap_Grid.md b/wiki/translations/it/Draft_Snap_Grid.md index ba8019b6d8..14dfc30f5a 100644 --- a/wiki/translations/it/Draft_Snap_Grid.md +++ b/wiki/translations/it/Draft_Snap_Grid.md @@ -8,6 +8,8 @@ SeeAlso:[Mostra/nascondi griglia](Draft_ToggleGrid/it.md), [Aggancio](Draft_Snap/it.md) --- +# Draft Snap Grid/it + @@ -66,5 +68,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Grid/it diff --git a/wiki/translations/it/Draft_Snap_Intersection.md b/wiki/translations/it/Draft_Snap_Intersection.md index 842a928a7f..f391c0a227 100644 --- a/wiki/translations/it/Draft_Snap_Intersection.md +++ b/wiki/translations/it/Draft_Snap_Intersection.md @@ -9,6 +9,8 @@ SeeAlso:[Agganciare](Draft_Snap/it.md), [Aggancia](Draft_ToggleSnap/it.md) --- +# Draft Snap Intersection/it + @@ -62,5 +64,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Intersection/it diff --git a/wiki/translations/it/Draft_Snap_Lock.md b/wiki/translations/it/Draft_Snap_Lock.md index faad131929..1d72c05a4d 100644 --- a/wiki/translations/it/Draft_Snap_Lock.md +++ b/wiki/translations/it/Draft_Snap_Lock.md @@ -7,6 +7,8 @@ SeeAlso:[Agganciare](Draft_Snap/it.md), [Mostra/Nacondi la griglia](Draft_ToggleGrid/it.md) --- +# Draft Snap Lock/it + @@ -45,5 +47,5 @@ Attiva o disattiva la funzione di [aggancio](Draft_Snap/it.md) (snap) agli ogget - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Lock/it diff --git a/wiki/translations/it/Draft_Snap_Midpoint.md b/wiki/translations/it/Draft_Snap_Midpoint.md index e1e28f1030..97b46a9783 100644 --- a/wiki/translations/it/Draft_Snap_Midpoint.md +++ b/wiki/translations/it/Draft_Snap_Midpoint.md @@ -9,6 +9,8 @@ SeeAlso:[Agganciare](Draft_Snap/it.md), [Aggancia](Draft_ToggleSnap/it.md) --- +# Draft Snap Midpoint/it + @@ -62,5 +64,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Midpoint/it diff --git a/wiki/translations/it/Draft_Snap_Near.md b/wiki/translations/it/Draft_Snap_Near.md index f522549c23..1cc2cf03e7 100644 --- a/wiki/translations/it/Draft_Snap_Near.md +++ b/wiki/translations/it/Draft_Snap_Near.md @@ -9,6 +9,8 @@ SeeAlso:[Agganciare](Draft_Snap/it.md), [Aggancia](Draft_ToggleSnap/it.md) --- +# Draft Snap Near/it + @@ -78,5 +80,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Near/it diff --git a/wiki/translations/it/Draft_Snap_Ortho.md b/wiki/translations/it/Draft_Snap_Ortho.md index 0a72b29406..7bf91fe71b 100644 --- a/wiki/translations/it/Draft_Snap_Ortho.md +++ b/wiki/translations/it/Draft_Snap_Ortho.md @@ -9,6 +9,8 @@ SeeAlso:[Agganciare](Draft_Snap/it.md), [Aggancia](Draft_ToggleSnap/it.md) --- +# Draft Snap Ortho/it + @@ -62,5 +64,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Ortho/it diff --git a/wiki/translations/it/Draft_Snap_Parallel.md b/wiki/translations/it/Draft_Snap_Parallel.md index 825afae1a3..dc3258cff6 100644 --- a/wiki/translations/it/Draft_Snap_Parallel.md +++ b/wiki/translations/it/Draft_Snap_Parallel.md @@ -1,3 +1,4 @@ +# Draft Snap Parallel/it --- - GuiCommand:/it Name:Draft Parallel @@ -73,5 +74,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Parallel/it diff --git a/wiki/translations/it/Draft_Snap_Perpendicular.md b/wiki/translations/it/Draft_Snap_Perpendicular.md index e73ec1a02e..e1ea2dafbe 100644 --- a/wiki/translations/it/Draft_Snap_Perpendicular.md +++ b/wiki/translations/it/Draft_Snap_Perpendicular.md @@ -9,6 +9,8 @@ SeeAlso:[Agganciare](Draft_Snap/it.md), [Aggancia](Draft_ToggleSnap/it.md) --- +# Draft Snap Perpendicular/it + @@ -64,5 +66,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Perpendicular/it diff --git a/wiki/translations/it/Draft_Snap_Special.md b/wiki/translations/it/Draft_Snap_Special.md index b05e2c1466..5d3b15f539 100644 --- a/wiki/translations/it/Draft_Snap_Special.md +++ b/wiki/translations/it/Draft_Snap_Special.md @@ -10,6 +10,8 @@ Version:0.17 --- +# Draft Snap Special/it + @@ -69,5 +71,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Special/it diff --git a/wiki/translations/it/Draft_Snap_WorkingPlane.md b/wiki/translations/it/Draft_Snap_WorkingPlane.md index fb11daad18..5115bc7022 100644 --- a/wiki/translations/it/Draft_Snap_WorkingPlane.md +++ b/wiki/translations/it/Draft_Snap_WorkingPlane.md @@ -9,6 +9,8 @@ SeeAlso:[Agganciare](Draft_Snap/it.md), [Selezione del piano](Draft_SelectPlane/it.md) --- +# Draft Snap WorkingPlane/it + @@ -57,8 +59,5 @@ Questo metodo posiziona sempre un nuovo punto sull\'attuale [piano di lavoro](Dr See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap WorkingPlane/it diff --git a/wiki/translations/it/Draft_Special.md b/wiki/translations/it/Draft_Special.md index 8a54b66665..1b1c3b092d 100644 --- a/wiki/translations/it/Draft_Special.md +++ b/wiki/translations/it/Draft_Special.md @@ -1,2 +1,5 @@ # Draft Special/it 1. REDIRECT [Draft Snap Special/it](Draft_Snap_Special/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Special/it diff --git a/wiki/translations/it/Draft_Split.md b/wiki/translations/it/Draft_Split.md index e9f8295db8..132093d0ba 100644 --- a/wiki/translations/it/Draft_Split.md +++ b/wiki/translations/it/Draft_Split.md @@ -9,6 +9,8 @@ SeeAlso:[Unisci](Draft_Join/it.md) --- +# Draft Split/it + @@ -105,5 +107,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Split/it diff --git a/wiki/translations/it/Draft_Stretch.md b/wiki/translations/it/Draft_Stretch.md index 47a013220a..ad1fd55ecc 100644 --- a/wiki/translations/it/Draft_Stretch.md +++ b/wiki/translations/it/Draft_Stretch.md @@ -9,6 +9,8 @@ SeeAlso:[Offset](Draft_Offset/it.md), [Scala](Draft_Scale/it.md) --- +# Draft Stretch/it + @@ -108,5 +110,5 @@ Per lo strumento Stira non esiste un\'interfaccia di programmazione disponibile. - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Stretch/it diff --git a/wiki/translations/it/Draft_SubelementHighlight.md b/wiki/translations/it/Draft_SubelementHighlight.md index 9db126bedb..7a572eb3f6 100644 --- a/wiki/translations/it/Draft_SubelementHighlight.md +++ b/wiki/translations/it/Draft_SubelementHighlight.md @@ -9,6 +9,8 @@ SeeAlso:[Modifica](Draft_Edit/it.md) --- +# Draft SubelementHighlight/it + @@ -61,5 +63,5 @@ Lo strumento +# L\'icona di Draft Draft Workbench/it {{TOCright}} @@ -465,3 +459,6 @@ Ispezionare il codice di questo modulo è utile per capire come utilizzare l\'in [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/it diff --git a/wiki/translations/it/Draft_WorkingPlane.md b/wiki/translations/it/Draft_WorkingPlane.md index 8e0ae5bb0f..bbee0aea17 100644 --- a/wiki/translations/it/Draft_WorkingPlane.md +++ b/wiki/translations/it/Draft_WorkingPlane.md @@ -1,2 +1,5 @@ # Draft WorkingPlane/it 1. REDIRECT [Draft Snap WorkingPlane/it](Draft_Snap_WorkingPlane/it.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WorkingPlane/it diff --git a/wiki/translations/it/Draft_WorkingPlaneProxy.md b/wiki/translations/it/Draft_WorkingPlaneProxy.md index fbc437028f..a856d4fa5a 100644 --- a/wiki/translations/it/Draft_WorkingPlaneProxy.md +++ b/wiki/translations/it/Draft_WorkingPlaneProxy.md @@ -7,6 +7,8 @@ SeeAlso:[Seleziona piano](Draft_SelectPlane/it.md) --- +# Draft WorkingPlaneProxy/it + @@ -201,5 +203,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WorkingPlaneProxy/it diff --git a/wiki/translations/it/Draft_tutorial.md b/wiki/translations/it/Draft_tutorial.md index 3bf5b58f7b..1281187f3e 100644 --- a/wiki/translations/it/Draft_tutorial.md +++ b/wiki/translations/it/Draft_tutorial.md @@ -1,7 +1,4 @@ # Draft tutorial/it - - - {{TutorialInfo/it |Topic= Draft |Level= Base @@ -367,4 +364,7 @@ The [Draft Workbench](Draft_Workbench.md) in many ways is similar to the [Sketch {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft tutorial/it diff --git a/wiki/translations/it/Drawing.md b/wiki/translations/it/Drawing.md index 33a2990728..4f7f3856c0 100644 --- a/wiki/translations/it/Drawing.md +++ b/wiki/translations/it/Drawing.md @@ -1,6 +1,4 @@ # Drawing/it - - ## Introduzione In FreeCAD la parola \"[Drawing](Drawing/it.md)\" (Disegno tecnico) viene normalmente utilizzata per fare riferimento a una proiezione 2D di un [modello 3D](model/it.md). Generalmente viene creato con l\'ambiente [TechDraw ](TechDraw_Workbench/it.md). @@ -37,3 +35,6 @@ Tuttavia, quando è richiesta maggiore precisione, è necessario fare distinzion }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Drawing/it diff --git a/wiki/translations/it/Drawing_API_example.md b/wiki/translations/it/Drawing_API_example.md index 71667fc78d..bcdf595323 100644 --- a/wiki/translations/it/Drawing_API_example.md +++ b/wiki/translations/it/Drawing_API_example.md @@ -1,6 +1,4 @@ # Drawing API example/it - - ## Introduction The graphical user interface workflow for the [Drawing Workbench](Drawing_Workbench.md) is limited, so the scripting API is more interesting. @@ -246,3 +244,6 @@ With those two, you can proceed as above for displaying them on the drawing page }} {{Drawing Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing API example/it diff --git a/wiki/translations/it/Drawing_Annotation.md b/wiki/translations/it/Drawing_Annotation.md index 5102248b6f..bfa4c646d5 100644 --- a/wiki/translations/it/Drawing_Annotation.md +++ b/wiki/translations/it/Drawing_Annotation.md @@ -7,6 +7,8 @@ Shortcut:Nessuno --- +# Drawing Annotation/it + @@ -41,4 +43,7 @@ Questo comando consente di posizionare un blocco di testo in una [pagina di dise {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Annotation/it diff --git a/wiki/translations/it/Drawing_Clip.md b/wiki/translations/it/Drawing_Clip.md index 5e01efa1c4..c8bafb6daf 100644 --- a/wiki/translations/it/Drawing_Clip.md +++ b/wiki/translations/it/Drawing_Clip.md @@ -1,3 +1,4 @@ +# Drawing Clip/it --- - GuiCommand:/it Name:Drawing Clip Name/it:Inserto Workbenches:[[Drawing Workbench/it Drawing]], Completo|MenuLocation:Drawing → Inserto Shortcut:none--- @@ -34,4 +35,7 @@ Questo comando consente di inserire e posizionare un riquadro rettangolare, deno {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Clip/it diff --git a/wiki/translations/it/Drawing_Dimensioning_Addon.md b/wiki/translations/it/Drawing_Dimensioning_Addon.md index 020826ca91..c8e2ee6c25 100644 --- a/wiki/translations/it/Drawing_Dimensioning_Addon.md +++ b/wiki/translations/it/Drawing_Dimensioning_Addon.md @@ -1,5 +1,5 @@ # Drawing Dimensioning Addon/it - **In FreeCAD 0.17 [Drawing](Drawing_Workbench/it.md) è stato sostituito da [TechDraw](TechDraw_Workbench/it.md). Sebbene entrambi gli ambienti siano inclusi in v0.17, Drawing non viene più gestito e potrebbe essere rimosso nelle future versioni di FreeCAD. Si consiglia quindi agli utenti di passare a [TechDraw](TechDraw_Workbench/it.md) che include anche gli strumenti di quotatura e annotazione.** +**In FreeCAD 0.17 [Drawing](Drawing_Workbench/it.md) è stato sostituito da [TechDraw](TechDraw_Workbench/it.md). Sebbene entrambi gli ambienti siano inclusi in v0.17, Drawing non viene più gestito e potrebbe essere rimosso nelle future versioni di FreeCAD. Si consiglia quindi agli utenti di passare a [TechDraw](TechDraw_Workbench/it.md) che include anche gli strumenti di quotatura e annotazione.** ## Introduzione @@ -217,3 +217,6 @@ Tipps: - [Macros recipes](Macros_recipes.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Dimensioning Addon/it diff --git a/wiki/translations/it/Drawing_Documentation.md b/wiki/translations/it/Drawing_Documentation.md index db025731bb..a0019a2ee9 100644 --- a/wiki/translations/it/Drawing_Documentation.md +++ b/wiki/translations/it/Drawing_Documentation.md @@ -1,5 +1,5 @@ # Drawing Documentation/it - Questa pagina documenta la comprensione del modulo Drawing di jcc242. Il modulo include i file e le funzioni su cui sta lavorando attualmente e non può ancora essere inserita nel ramo master. La fonte di questi file è il suo [Github](https://github.com/jcc242/FreeCAD), ma fate attenzione in quanto è molto instabile! +Questa pagina documenta la comprensione del modulo Drawing di jcc242. Il modulo include i file e le funzioni su cui sta lavorando attualmente e non può ancora essere inserita nel ramo master. La fonte di questi file è il suo [Github](https://github.com/jcc242/FreeCAD), ma fate attenzione in quanto è molto instabile! ## Base (Mod/Drawing) @@ -139,3 +139,6 @@ CanvasView is the actual QGraphicsScene object and DrawingView processes a list {{Drawing Tools navi}} [Category:Developer\_Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Documentation/it diff --git a/wiki/translations/it/Drawing_DraftView.md b/wiki/translations/it/Drawing_DraftView.md index 97f85fc003..45a34f0cbc 100644 --- a/wiki/translations/it/Drawing_DraftView.md +++ b/wiki/translations/it/Drawing_DraftView.md @@ -1,2 +1,5 @@ # Drawing DraftView/it 1. REDIRECT [Draft\_Drawing/it](Draft_Drawing/it.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing DraftView/it diff --git a/wiki/translations/it/Drawing_Landscape_A3.md b/wiki/translations/it/Drawing_Landscape_A3.md index 987b8e37e9..a4e3399010 100644 --- a/wiki/translations/it/Drawing_Landscape_A3.md +++ b/wiki/translations/it/Drawing_Landscape_A3.md @@ -7,6 +7,8 @@ Shortcut:Nessuno --- +# Drawing Landscape A3/it + Questo strumento crea un nuovo foglio di disegno utilizzando modelli di squadrature già installati. Alla struttura del progetto viene aggiunto un oggetto **Pagina**, sotto forma di icona di cartella. Le Viste create in seguito sono poste in questa cartella. @@ -91,4 +93,7 @@ Se la pagina non viene visualizzata, fare clic sull\'icona Aggiorna [Drawing](Drawing_Workbench.md) > Drawing Landscape A3/it diff --git a/wiki/translations/it/Drawing_Module.md b/wiki/translations/it/Drawing_Module.md index 8fe02471c7..722d2ab89e 100644 --- a/wiki/translations/it/Drawing_Module.md +++ b/wiki/translations/it/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/it 1. REDIRECT [Drawing\_Workbench/it](Drawing_Workbench/it.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/it diff --git a/wiki/translations/it/Drawing_Open_SVG.md b/wiki/translations/it/Drawing_Open_SVG.md index e74cc552e5..89f48cb658 100644 --- a/wiki/translations/it/Drawing_Open_SVG.md +++ b/wiki/translations/it/Drawing_Open_SVG.md @@ -8,6 +8,8 @@ SeeAlso:[Salva SVG](Drawing_Save/it.md) --- +# Drawing Open SVG/it + @@ -34,4 +36,7 @@ Questo strumento apre un foglio di disegno salvato in precedenza come file SVG ( {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Open SVG/it diff --git a/wiki/translations/it/Drawing_Openbrowser.md b/wiki/translations/it/Drawing_Openbrowser.md index 0c8660e17f..999ca73486 100644 --- a/wiki/translations/it/Drawing_Openbrowser.md +++ b/wiki/translations/it/Drawing_Openbrowser.md @@ -1,3 +1,4 @@ +# Drawing Openbrowser/it --- - GuiCommand:/it Name:Drawing Openbrowser Name/it:Apri browser Workbenches:[[Drawing Workbench/it Drawing]], Complete|MenuLocation:Drawing → Apri Browser Shortcut:none--- @@ -29,4 +30,7 @@ Questo comando consente di visualizzare una [pagina di disegno](Drawing_Landscap {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Openbrowser/it diff --git a/wiki/translations/it/Drawing_Orthoviews.md b/wiki/translations/it/Drawing_Orthoviews.md index c46700a604..44a872bef1 100644 --- a/wiki/translations/it/Drawing_Orthoviews.md +++ b/wiki/translations/it/Drawing_Orthoviews.md @@ -1,3 +1,4 @@ +# Drawing Orthoviews/it --- - GuiCommand:/it Name:Drawing Orthoviews Name/it:Viste ortogonali Workbenches:[MenuLocation:Drawing → Inserisci viste ortogonali Shortcut:none SeeAlso:[[Drawing Landscape A3/it|Nuovo disegno](Drawing_Workbench/it___Drawing]],_Complete.md)--- @@ -68,4 +69,7 @@ Da fare {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Orthoviews/it diff --git a/wiki/translations/it/Drawing_ProjectShape.md b/wiki/translations/it/Drawing_ProjectShape.md index a7caa6d868..17e2748ff5 100644 --- a/wiki/translations/it/Drawing_ProjectShape.md +++ b/wiki/translations/it/Drawing_ProjectShape.md @@ -7,6 +7,8 @@ MenuLocation:Drawing → Proietta le forme --- +# Drawing ProjectShape/it + @@ -109,4 +111,7 @@ Questo strumento crea una proiezione dell\'oggetto selezionato, l\'oggetto sorge {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing ProjectShape/it diff --git a/wiki/translations/it/Drawing_Save.md b/wiki/translations/it/Drawing_Save.md index 932a3b616f..7e32c6485f 100644 --- a/wiki/translations/it/Drawing_Save.md +++ b/wiki/translations/it/Drawing_Save.md @@ -8,6 +8,8 @@ SeeAlso:[Apri SVG](Drawing_Open_SVG/it.md) --- +# Drawing Save/it + Questo strumento consente di salvare il foglio di disegno corrente come file SVG (Scalable Vector Graphics). Tale file può essere modificato con un programma di grafica vettoriale scalabile come [Inkscape](http://www.inkscape.org). I file SVG sono comuni e possono essere visualizzati nei browser più moderni e nei visualizzatori di immagini. Questo è utile per condividere un progetto con chi non ha FreeCAD installato sul proprio PC. @@ -24,4 +26,7 @@ I file SVG sono comuni e possono essere visualizzati nei browser più moderni e {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Save/it diff --git a/wiki/translations/it/Drawing_SpreadsheetView.md b/wiki/translations/it/Drawing_SpreadsheetView.md index 722ba4f692..d15f069559 100644 --- a/wiki/translations/it/Drawing_SpreadsheetView.md +++ b/wiki/translations/it/Drawing_SpreadsheetView.md @@ -1,3 +1,4 @@ +# Drawing SpreadsheetView/it --- - GuiCommand:/it Name:Drawing SpreadsheetView Name/it:Vista foglio di calcolo Workbenches:[[Drawing Workbench/it Drawing]]|MenuLocation:Drawing → Vista foglio di calcolo--- @@ -48,4 +49,7 @@ Questo strumento consente di posizionare una vista di un [foglio di calcolo](Spr {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing SpreadsheetView/it diff --git a/wiki/translations/it/Drawing_Symbol.md b/wiki/translations/it/Drawing_Symbol.md index fe97043099..2622b8877c 100644 --- a/wiki/translations/it/Drawing_Symbol.md +++ b/wiki/translations/it/Drawing_Symbol.md @@ -1,3 +1,4 @@ +# Drawing Symbol/it --- - GuiCommand:/it Name:Drawing Symbol Name/it:Simbolo Workbenches:[[Drawing Workbench/it Drawing]], Completo|MenuLocation:Drawing → Simbolo Shortcut: --- @@ -29,4 +30,7 @@ Questo comando consente di aggiungere il contenuto di un\'immagine SVG in una [p {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Symbol/it diff --git a/wiki/translations/it/Drawing_Template_HowTo.md b/wiki/translations/it/Drawing_Template_HowTo.md index c79e0301f9..ad62ae436b 100644 --- a/wiki/translations/it/Drawing_Template_HowTo.md +++ b/wiki/translations/it/Drawing_Template_HowTo.md @@ -1,7 +1,4 @@ # Drawing Template HowTo/it - - - **L'ambiente [Drawing](Drawing_Workbench/it.md) è diventato obsoleto nella versione 0.17. Al suo posto utilizzare [TechDraw](TechDraw_Workbench/it.md).** @@ -263,4 +260,7 @@ I due strumenti utilizzati in questa esercitazione sono Inkscape e Kate. Si poss {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Template HowTo/it diff --git a/wiki/translations/it/Drawing_View.md b/wiki/translations/it/Drawing_View.md index 09070a48c8..2ca21f51aa 100644 --- a/wiki/translations/it/Drawing_View.md +++ b/wiki/translations/it/Drawing_View.md @@ -8,6 +8,8 @@ SeeAlso:[Disegno A3](Drawing_Landscape_A3/it.md) --- +# Drawing View/it + Questo strumento crea una nuova vista dell\'oggetto selezionato e la posiziona nel foglio di disegno attivo. Un foglio di disegno con due proiezioni, frontale e dall\'alto, e una vista isometrica. @@ -55,4 +57,7 @@ Per commutare la vista 3D tra ortogonale e prospettica selezionare [Vista in pro {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing View/it diff --git a/wiki/translations/it/Drawing_Workbench.md b/wiki/translations/it/Drawing_Workbench.md index c6bb27897b..8253c88a82 100644 --- a/wiki/translations/it/Drawing_Workbench.md +++ b/wiki/translations/it/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/it - - - **Lo sviluppo del modulo Drawing è stato interrotto in FreeCAD 0.16 con il proposito di sostituirlo con il nuovo modulo [TechDraw](TechDraw_Workbench/it.md) che sarà introdotto nella versione 0.17. Nella versione 0.17 sono forniti entrambi i moduli, ma il modulo Drawing potrebbe essere rimosso nelle versioni future.** L\'icona di Drawing @@ -86,3 +83,6 @@ Alcune ulteriori note sulla programmazione del Modulo Disegno sono contenute nel }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/it diff --git a/wiki/translations/it/Drawing_templates.md b/wiki/translations/it/Drawing_templates.md index dc96d5afa4..d06d7b7969 100644 --- a/wiki/translations/it/Drawing_templates.md +++ b/wiki/translations/it/Drawing_templates.md @@ -1,7 +1,4 @@ # Drawing templates/it - - - **The [Drawing Workbench](Drawing_Workbench.md) became obsolete in v0.17. Consider using the [TechDraw Workbench](TechDraw_Workbench.md) instead.** @@ -298,3 +295,6 @@ Le due righe cercate da FreeCAD sono \"\$blocks\" e \"\$entities\". Esse devono }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing templates/it diff --git a/wiki/translations/it/Drawing_tutorial.md b/wiki/translations/it/Drawing_tutorial.md index 1fda4e9b1d..e356141d4d 100644 --- a/wiki/translations/it/Drawing_tutorial.md +++ b/wiki/translations/it/Drawing_tutorial.md @@ -1,5 +1,5 @@ # Drawing tutorial/it - **Lo sviluppo del modulo Drawing è stato interrotto in FreeCAD 0.16 con il proposito di sostituirlo con il nuovo modulo [TechDraw](TechDraw_Workbench/it.md) che sarà introdotto nella versione 0.17. Nella versione 0.17 sono forniti entrambi i moduli, ma il modulo Drawing potrebbe essere rimosso nelle versioni future.** +**Lo sviluppo del modulo Drawing è stato interrotto in FreeCAD 0.16 con il proposito di sostituirlo con il nuovo modulo [TechDraw](TechDraw_Workbench/it.md) che sarà introdotto nella versione 0.17. Nella versione 0.17 sono forniti entrambi i moduli, ma il modulo Drawing potrebbe essere rimosso nelle versioni future.** {{TutorialInfo/it @@ -131,4 +131,7 @@ Il flusso di lavoro di base per l\'ambiente [Drawing](Drawing_Workbench/it.md) {{Tutorials navi -}} {{Drawing Tools navi}} +}} {{Drawing Tools navi}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing tutorial/it diff --git a/wiki/translations/it/Dxf_Importer_Install.md b/wiki/translations/it/Dxf_Importer_Install.md index 07f20d7deb..b46132ba18 100644 --- a/wiki/translations/it/Dxf_Importer_Install.md +++ b/wiki/translations/it/Dxf_Importer_Install.md @@ -1,7 +1,4 @@ # Dxf Importer Install/it - - - {{TutorialInfo/it|Topic=SampleClass|Level=Utente medio|Time=15 minuti|Author=[Mario52](User:Mario52.md)|FCVersion=Tutte}} ### Descrizione @@ -182,3 +179,6 @@ Usare Teigha. Teigha è un programma completo utilizzabile senza FreeCAD ### Link Video tutorial [FreeCAD Tutorial 24 - DXF/DWG Import](https://www.youtube.com/watch?v=wHxTWuDhc3M) + +--- +[documentation index](../README.md) > Dxf Importer Install/it diff --git a/wiki/translations/it/DynamicData_Workbench.md b/wiki/translations/it/DynamicData_Workbench.md index 7ba759c646..4462cf846f 100644 --- a/wiki/translations/it/DynamicData_Workbench.md +++ b/wiki/translations/it/DynamicData_Workbench.md @@ -1,7 +1,4 @@ # DynamicData Workbench/it - - -
@@ -52,3 +49,6 @@ Sono in fase di sviluppo ulteriori nuovi ambienti. [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > DynamicData Workbench/it diff --git a/wiki/translations/it/EM_FHEquiv.md b/wiki/translations/it/EM_FHEquiv.md index 855f14ba18..06c12ddc2d 100644 --- a/wiki/translations/it/EM_FHEquiv.md +++ b/wiki/translations/it/EM_FHEquiv.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHEquiv/it + ## Descrizione The FHEquiv tool short-circuits two FHNode objects. @@ -65,4 +67,7 @@ fhequiv = EM.makeFHEquiv(fhnode1, fhnode2) {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHEquiv/it diff --git a/wiki/translations/it/EM_FHInputFile.md b/wiki/translations/it/EM_FHInputFile.md index 5ffe9a79fc..5674ef2893 100644 --- a/wiki/translations/it/EM_FHInputFile.md +++ b/wiki/translations/it/EM_FHInputFile.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHInputFile/it + ## Descrizione The FHInputFile tool creates the input FastHenry file based on the Document EM workbench objects. @@ -56,4 +58,7 @@ fhsolver = EM.createFHInputFile() {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHInputFile/it diff --git a/wiki/translations/it/EM_FHNode.md b/wiki/translations/it/EM_FHNode.md index 210c1e4278..8d09afca2e 100644 --- a/wiki/translations/it/EM_FHNode.md +++ b/wiki/translations/it/EM_FHNode.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHNode/it + ## Descrizione The FHNode tool inserts a FastHenry node object. @@ -117,4 +119,7 @@ fhnode = EM.makeFHNode(X=1.0,Y=2.0,Z=0.0) {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHNode/it diff --git a/wiki/translations/it/EM_FHPath.md b/wiki/translations/it/EM_FHPath.md index 66d4078055..a95559f628 100644 --- a/wiki/translations/it/EM_FHPath.md +++ b/wiki/translations/it/EM_FHPath.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHPath/it + ## Descrizione The FHPath tool inserts a FHPath object, that is a set of FastHenry segments along a path. @@ -100,4 +102,7 @@ App.ActiveDocument.recompute() {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHPath/it diff --git a/wiki/translations/it/EM_FHPlane.md b/wiki/translations/it/EM_FHPlane.md index f71a262055..95d08acbad 100644 --- a/wiki/translations/it/EM_FHPlane.md +++ b/wiki/translations/it/EM_FHPlane.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHPlane/it + ## Descrizione The FHPlane tool inserts a FastHenry uniform conductive plane object. @@ -118,4 +120,7 @@ fhplane = EM.makeFHPlane(rect, thickness=1.0, seg1=15, seg2=15, nodes=[fhnode1, {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHPlane/it diff --git a/wiki/translations/it/EM_FHPlaneAddRemoveNodeHole.md b/wiki/translations/it/EM_FHPlaneAddRemoveNodeHole.md index 5c900d8743..9d13a47531 100644 --- a/wiki/translations/it/EM_FHPlaneAddRemoveNodeHole.md +++ b/wiki/translations/it/EM_FHPlaneAddRemoveNodeHole.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHPlaneAddRemoveNodeHole/it + ## Descrizione The FHPlaneAddRemoveNodeHole tool inserts or removes FHNodes or FHPlaneHoles from a FHPlane object. @@ -43,4 +45,7 @@ To add or remove FHNode or FHPlaneHole objects from a FHPlane via Python scripti {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHPlaneAddRemoveNodeHole/it diff --git a/wiki/translations/it/EM_FHPlaneHole.md b/wiki/translations/it/EM_FHPlaneHole.md index be5a8a5d10..7a72dfbf03 100644 --- a/wiki/translations/it/EM_FHPlaneHole.md +++ b/wiki/translations/it/EM_FHPlaneHole.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHPlaneHole/it + ## Descrizione The FHPlaneHole tool inserts a plane hole object, that represents a FastHenry uniform conductive plane hole. @@ -138,4 +140,7 @@ fhhole = EM.makeFHPlaneHole(X=1.0,Y=1.0,Z=0.0,holetype="Rect",length=1.0,width=2 {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHPlaneHole/it diff --git a/wiki/translations/it/EM_FHPort.md b/wiki/translations/it/EM_FHPort.md index f0b8cb7857..b3a4035b80 100644 --- a/wiki/translations/it/EM_FHPort.md +++ b/wiki/translations/it/EM_FHPort.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHPort/it + ## Descrizione The FHPort tool creates a FastHenry port between two FHNode objects. @@ -65,4 +67,7 @@ fhport = EM.makeFHPort(fhnode_p, fhnode_n) {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHPort/it diff --git a/wiki/translations/it/EM_FHSegment.md b/wiki/translations/it/EM_FHSegment.md index c92f6fd8a8..995a5a7da7 100644 --- a/wiki/translations/it/EM_FHSegment.md +++ b/wiki/translations/it/EM_FHSegment.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHSegment/it + ## Descrizione The FHSegment tool inserts a FastHenry segment object. @@ -107,4 +109,7 @@ fhsegment = EM.makeFHSegment(nodeStart=fhnode1, nodeEnd=fhnode2) {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHSegment/it diff --git a/wiki/translations/it/EM_FHSolver.md b/wiki/translations/it/EM_FHSolver.md index 22ac0fd2c1..7dcc7e0757 100644 --- a/wiki/translations/it/EM_FHSolver.md +++ b/wiki/translations/it/EM_FHSolver.md @@ -9,6 +9,8 @@ Version:0.17 --- +# EM FHSolver/it + ## Description The FHSolver tool inserts a FHSolver object. @@ -99,4 +101,7 @@ fhsolver = EM.makeFHSolver() {{EM Tools navi -}} +}} + +--- +[documentation index](../README.md) > EM FHSolver/it diff --git a/wiki/translations/it/EM_Workbench.md b/wiki/translations/it/EM_Workbench.md index 03311a7e4f..f454c07eb1 100644 --- a/wiki/translations/it/EM_Workbench.md +++ b/wiki/translations/it/EM_Workbench.md @@ -1,5 +1,4 @@ -# EM Workbench/it - +# EM Workbench/it *align=center|The FreeCAD ElectroMagnetic External Workbench Icon* ## Introduzione @@ -79,3 +78,6 @@ New workbenches are in development, stay tuned! }} [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > EM Workbench/it diff --git a/wiki/translations/it/Embedding_FreeCAD.md b/wiki/translations/it/Embedding_FreeCAD.md index f61762e32c..cf71d3d9d0 100644 --- a/wiki/translations/it/Embedding_FreeCAD.md +++ b/wiki/translations/it/Embedding_FreeCAD.md @@ -1,7 +1,4 @@ # Embedding FreeCAD/it - - - {{TOCright}} ## Introduzione @@ -161,3 +158,6 @@ Dato che il modulo Python di FreeCAD viene compilato da C ++ (invece di essere u }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCAD/it diff --git a/wiki/translations/it/Embedding_FreeCADGui.md b/wiki/translations/it/Embedding_FreeCADGui.md index 46398d6bd5..b666bd5f69 100644 --- a/wiki/translations/it/Embedding_FreeCADGui.md +++ b/wiki/translations/it/Embedding_FreeCADGui.md @@ -1,6 +1,4 @@ # Embedding FreeCADGui/it - - ## Introduction È possibile [importare il modulo FreeCAD](Embedding_FreeCAD/it.md) in una applicazione [Python](Python/it.md) e utilizzare tutti i suoi strumenti dall\'applicazione che lo ospita, ma l\'interfaccia utente (GUI) di FreeCAD può anche essere importata come modulo Python. Normalmente è possibile importare solo, in blocco, l\'interfaccia completa, e non le sue singole parti. Questo perché il sistema dell\'interfaccia di FreeCAD non è fatto soltanto di widget e di barre degli strumenti indipendenti, ma è una costruzione complessa in cui sono necessari diversi componenti invisibili (come ad esempio il sistema di selezione, ecc) affinchè la vista 3D principale possa funzionare. @@ -488,3 +486,6 @@ Nel codice sorgente ci sono esempi di incorporamento di FreeCAD con vari toolkit }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCADGui/it diff --git a/wiki/translations/it/Engine_Block_Tutorial.md b/wiki/translations/it/Engine_Block_Tutorial.md index 0ad115f9bd..b3fc5e90b5 100644 --- a/wiki/translations/it/Engine_Block_Tutorial.md +++ b/wiki/translations/it/Engine_Block_Tutorial.md @@ -1,5 +1,5 @@ # Engine Block Tutorial/it - } {{TutorialInfo/it +} {{TutorialInfo/it |Topic= Part |Level= Base |Time= 1 ora @@ -423,6 +423,5 @@ L\'oggetto finale dovrebbe essere simile a quello dell\'immagine di destra. Your final object should look like the picture on the right. - - - +--- +[documentation index](../README.md) > Engine Block Tutorial/it diff --git a/wiki/translations/it/ExplodedAssembly_Workbench.md b/wiki/translations/it/ExplodedAssembly_Workbench.md index dbdad02aac..5d85b4fc5e 100644 --- a/wiki/translations/it/ExplodedAssembly_Workbench.md +++ b/wiki/translations/it/ExplodedAssembly_Workbench.md @@ -1,6 +1,4 @@ # ExplodedAssembly Workbench/it - - ## Introduzione @@ -73,3 +71,6 @@ That\'s all, the next time you launch FreeCAD the workbench should be incorporat [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > ExplodedAssembly Workbench/it diff --git a/wiki/translations/it/Export_to_STL_or_OBJ.md b/wiki/translations/it/Export_to_STL_or_OBJ.md index 86d11e69c5..756ae53ce7 100644 --- a/wiki/translations/it/Export_to_STL_or_OBJ.md +++ b/wiki/translations/it/Export_to_STL_or_OBJ.md @@ -1,7 +1,4 @@ # Export to STL or OBJ/it - - -
@@ -115,3 +112,6 @@ In questo tutorial ci occuperemo di come esportare file STL / OBJ da FreeCAD. Da [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Export to STL or OBJ/it diff --git a/wiki/translations/it/Expressions.md b/wiki/translations/it/Expressions.md index 801b68ddc4..902cd300a5 100644 --- a/wiki/translations/it/Expressions.md +++ b/wiki/translations/it/Expressions.md @@ -1,5 +1,5 @@ # Expressions/it - {{TOCright}} +{{TOCright}} ## Descrizione @@ -738,3 +738,6 @@ Naturalmente, dopo spetta all\'utente il compito di caricare i documenti corrisp }} [Category:Spreadsheet](Category:Spreadsheet.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Category:Spreadsheet.md) > Expressions/it diff --git a/wiki/translations/it/Extend_FEM_Module.md b/wiki/translations/it/Extend_FEM_Module.md index 4d460a8ebf..e59327ac25 100644 --- a/wiki/translations/it/Extend_FEM_Module.md +++ b/wiki/translations/it/Extend_FEM_Module.md @@ -1,7 +1,4 @@ # Extend FEM Module/it - - -
@@ -144,3 +141,6 @@ Constraints define boundary conditions for the problem that shall be solved. In Adding new constraints is quite straight forward. For newcomers there is a tutorial: [Add FEM constraint tutorial](Add_FEM_constraint_tutorial.md). [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Extend FEM Module/it diff --git a/wiki/translations/it/External_Workbenches.md b/wiki/translations/it/External_Workbenches.md index 5307750ee9..b9c6c883bd 100644 --- a/wiki/translations/it/External_Workbenches.md +++ b/wiki/translations/it/External_Workbenches.md @@ -1,2 +1,5 @@ # External Workbenches/it 1. REDIRECT [External workbenches/it](External_workbenches/it.md) + +--- +[documentation index](../README.md) > External Workbenches/it diff --git a/wiki/translations/it/External_workbench_list.md b/wiki/translations/it/External_workbench_list.md index 12c8fcc2bd..be174dfffe 100644 --- a/wiki/translations/it/External_workbench_list.md +++ b/wiki/translations/it/External_workbench_list.md @@ -1,2 +1,5 @@ # External workbench list/it 1. REDIRECT [External\_workbenches/it](External_workbenches/it.md) + +--- +[documentation index](../README.md) > External workbench list/it diff --git a/wiki/translations/it/External_workbenches.md b/wiki/translations/it/External_workbenches.md index 92640a6cbc..1f828ff544 100644 --- a/wiki/translations/it/External_workbenches.md +++ b/wiki/translations/it/External_workbenches.md @@ -1,10 +1,4 @@ # External workbenches/it - - - - - - {{TOCright}} ## Introduzione @@ -259,3 +253,6 @@ Per maggiori informazioni vedere la pagina wiki [Tradurre un ambiente esterno](T [Category:Addons](Category:Addons.md) [\*](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > External workbenches/it diff --git a/wiki/translations/it/Extra_python_modules.md b/wiki/translations/it/Extra_python_modules.md index 177d3c44be..e4901408c1 100644 --- a/wiki/translations/it/Extra_python_modules.md +++ b/wiki/translations/it/Extra_python_modules.md @@ -1,7 +1,4 @@ # Extra python modules/it - - -
@@ -751,3 +748,6 @@ utils = LazyLoader('PathScripts', globals(), 'PathScripts.PathUtils') [Category:Python Code](Category:Python_Code.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > Extra python modules/it diff --git a/wiki/translations/it/FAQ.md b/wiki/translations/it/FAQ.md index e4aa444b93..7dad61795c 100644 --- a/wiki/translations/it/FAQ.md +++ b/wiki/translations/it/FAQ.md @@ -1,2 +1,5 @@ # FAQ/it 1. REDIRECT [Frequently\_asked\_questions/it](Frequently_asked_questions/it.md) + +--- +[documentation index](../README.md) > FAQ/it diff --git a/wiki/translations/it/FCGear_BevelGear.md b/wiki/translations/it/FCGear_BevelGear.md index 1900423ce9..ddcbe65bc0 100644 --- a/wiki/translations/it/FCGear_BevelGear.md +++ b/wiki/translations/it/FCGear_BevelGear.md @@ -7,6 +7,8 @@ Version:0.16 --- +# FCGear BevelGear/it + ## Descrizione Partly because of the noise they generate, bevel gears are not used as often as other types of gear. But they are still used in certain sectors, such as food packaging and canned food, lawn and garden equipment, machines such as drills and mills, compression systems for the gas and oil market and flow control valves. @@ -106,3 +108,6 @@ Substantive reference cone angle \[TECH.\] [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear BevelGear/it diff --git a/wiki/translations/it/FCGear_CrownGear.md b/wiki/translations/it/FCGear_CrownGear.md index f47bafd9a6..4782bb90f2 100644 --- a/wiki/translations/it/FCGear_CrownGear.md +++ b/wiki/translations/it/FCGear_CrownGear.md @@ -9,6 +9,8 @@ SeeAlso:[Ingranaggi a evolvente](FCGear_InvoluteGear/it.md) --- +# FCGear CrownGear/it + ## Descrizione The crown wheel resembles a ring-shaped curved rack. The pressure angle decreases continuously from the outer to the inner diameter. Thus, the variable peripheral speed at the crown wheel is compensated against the constant peripheral speed of the pinion. The pointed outer teeth and the steep tooth flanks on the inner diameter limit the usable tooth width. Crown gears achieve similar efficiencies as spur gears. One crown gear can drive several pinions. @@ -119,3 +121,6 @@ No limitations are known. [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear CrownGear/it diff --git a/wiki/translations/it/FCGear_CycloideGear.md b/wiki/translations/it/FCGear_CycloideGear.md index 4bbfe9684e..fdf65e723a 100644 --- a/wiki/translations/it/FCGear_CycloideGear.md +++ b/wiki/translations/it/FCGear_CycloideGear.md @@ -9,6 +9,8 @@ SeeAlso:[Ingranaggio a spirale](FCGear_InvoluteGear/it.md) --- +# FCGear CycloideGear/it + ## Descrizione Cycloidal gears are very sensitive to an inaccurate adjustment of the centre distance, which then leads to a change in the transmission ratio. For these reasons, cycloidal gears are hardly found in mechanical engineering but are only used in special cases such as in the watch industry, for roots type blowers or for the drive of gear racks. @@ -95,3 +97,6 @@ For more information see [Create an Involute rack](FCGear_InvoluteRack.md)). @@ -231,3 +233,6 @@ Gui.SendMsgToActiveView("ViewFit") ``` [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear InvoluteGear/it diff --git a/wiki/translations/it/FCGear_InvoluteRack.md b/wiki/translations/it/FCGear_InvoluteRack.md index ccf740d34d..8c243f7961 100644 --- a/wiki/translations/it/FCGear_InvoluteRack.md +++ b/wiki/translations/it/FCGear_InvoluteRack.md @@ -9,6 +9,8 @@ SeeAlso:[Ingranaggio a spirale](FCGear_InvoluteGear/it.md) --- +# FCGear InvoluteRack/it + ## Descrizione Gear racks are used to convert a rotary motion into a linear motion or vice versa. The following examples show the different applications: @@ -119,3 +121,6 @@ Gui.SendMsgToActiveView("ViewFit") ``` [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear InvoluteRack/it diff --git a/wiki/translations/it/FCGear_LanternGear.md b/wiki/translations/it/FCGear_LanternGear.md index 6cb7309361..78421bcecb 100644 --- a/wiki/translations/it/FCGear_LanternGear.md +++ b/wiki/translations/it/FCGear_LanternGear.md @@ -9,6 +9,8 @@ SeeAlso: --- +# FCGear LanternGear/it + ## Descrizione La dentatura dell\'ingranaggio a lanterna è una forma speciale di dentatura cicloidale in cui il cerchio di rotolamento e il cerchio primitivo hanno la stessa dimensione. Inoltre, in un cambio i denti della ruota più grande sono sostituiti da cilindri. La piccola ruota è dotata di un ingranaggio cicloide. Ciò si traduce in un ingranaggio unilaterale. Gli ingranaggi delle lanterne possono essere solo dentati diritti. @@ -81,3 +83,6 @@ Limitations are not known yet. [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear LanternGear/it diff --git a/wiki/translations/it/FCGear_TimingGear.md b/wiki/translations/it/FCGear_TimingGear.md index f23ee0f5aa..22043de59c 100644 --- a/wiki/translations/it/FCGear_TimingGear.md +++ b/wiki/translations/it/FCGear_TimingGear.md @@ -9,6 +9,8 @@ SeeAlso: --- +# FCGear TimingGear/it + ## Descrizione Lo scopo degli ingranaggi di distribuzione è quello di consentire all\'albero a camme e all\'albero motore di far ruotare la catena di distribuzione. L\'albero motore gira per muovere i pistoni su e giù all\'interno dei cilindri. L\'albero a camme ruota per consentire l\'apertura e la chiusura delle valvole di aspirazione e di scarico sui cilindri. Questi componenti sono importanti per la corretta sincronizzazione del motore. @@ -89,3 +91,6 @@ Limitations are not known yet. [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear TimingGear/it diff --git a/wiki/translations/it/FCGear_Workbench.md b/wiki/translations/it/FCGear_Workbench.md index 52f9f5b887..2632114871 100644 --- a/wiki/translations/it/FCGear_Workbench.md +++ b/wiki/translations/it/FCGear_Workbench.md @@ -1,5 +1,4 @@ -# FCGear Workbench/it - L\'icona dell\'ambiente esterno FCGear. +# L\'icona dell\'ambiente esterno FCGear. FCGear Workbench/it ## Introduzione @@ -175,3 +174,6 @@ Vedere sopra le istruzioni per Linux [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) + +--- +[documentation index](../README.md) > FCGear Workbench/it diff --git a/wiki/translations/it/FCGear_WormGear.md b/wiki/translations/it/FCGear_WormGear.md index 2718d5320b..c3aed5c587 100644 --- a/wiki/translations/it/FCGear_WormGear.md +++ b/wiki/translations/it/FCGear_WormGear.md @@ -9,6 +9,8 @@ SeeAlso:[PartDesign: Ingranaggio a spirale](PartDesign_InvoluteGear/it.md) --- +# FCGear WormGear/it + ## Descrizione The worm can be considered a special case of a helical gear. Imagine that there is only one tooth on a spur gear. Now increase the helix angle so much that the tooth winds around the spur gear several times before it emerges on the opposite side. The result would be a single thread worm. @@ -108,3 +110,6 @@ The worm wheel must be designed manually. For this purpose **FCGear InvoluteGear [Category:Addons](Category:Addons.md) [Category:FCGear](Category:FCGear.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > FCGear WormGear/it diff --git a/wiki/translations/it/FCStd.md b/wiki/translations/it/FCStd.md index 09e6066bfe..547e7754ab 100644 --- a/wiki/translations/it/FCStd.md +++ b/wiki/translations/it/FCStd.md @@ -4,3 +4,6 @@ [Category:Redirects/it](Category:Redirects/it.md) [Category:File\_Formats/it](Category:File_Formats/it.md) + +--- +[documentation index](../README.md) > FCStd/it diff --git a/wiki/translations/it/FEM_Analysis.md b/wiki/translations/it/FEM_Analysis.md index 8dfb4c0cda..00cb0cd7ae 100644 --- a/wiki/translations/it/FEM_Analysis.md +++ b/wiki/translations/it/FEM_Analysis.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial FEM](FEM_tutorial/it.md) --- +# FEM Analysis/it +
@@ -100,4 +102,7 @@ App.ActiveDocument.MechanicalAnalysis.Member = member {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Analysis/it diff --git a/wiki/translations/it/FEM_Beginner_tutorial.md b/wiki/translations/it/FEM_Beginner_tutorial.md index 975b544f10..6953c481d6 100644 --- a/wiki/translations/it/FEM_Beginner_tutorial.md +++ b/wiki/translations/it/FEM_Beginner_tutorial.md @@ -1,5 +1,5 @@ # FEM Beginner tutorial/it - {{TutorialInfo/it +{{TutorialInfo/it |Topic= FEM Beginner tutorial |Level= Beginner |Time= @@ -40,7 +40,5 @@ ToDo ToDo - - - - +--- +[documentation index](../README.md) > FEM Beginner tutorial/it diff --git a/wiki/translations/it/FEM_CalculiX.md b/wiki/translations/it/FEM_CalculiX.md index c14e65ad04..419fb621b9 100644 --- a/wiki/translations/it/FEM_CalculiX.md +++ b/wiki/translations/it/FEM_CalculiX.md @@ -1,5 +1,5 @@ # FEM CalculiX/it - {{TOCright}} +{{TOCright}} ## Introduction @@ -126,3 +126,6 @@ Reaction forces can be found in ccx\_dat\_file which contains reaction force com }} [Category:Poweruser\_Documentation](Category:Poweruser_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Poweruser_Documentation](Category:Poweruser_Documentation.md) > FEM CalculiX/it diff --git a/wiki/translations/it/FEM_CalculiX_Cantilever_3D.md b/wiki/translations/it/FEM_CalculiX_Cantilever_3D.md index 3fccf72d42..c1ddd854eb 100644 --- a/wiki/translations/it/FEM_CalculiX_Cantilever_3D.md +++ b/wiki/translations/it/FEM_CalculiX_Cantilever_3D.md @@ -1,7 +1,4 @@ # FEM CalculiX Cantilever 3D/it - - -
@@ -235,4 +232,7 @@ Questo esempio ha lo scopo di mostrare come appare una semplice analisi degli el {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM CalculiX Cantilever 3D/it diff --git a/wiki/translations/it/FEM_ClippingPlaneAdd.md b/wiki/translations/it/FEM_ClippingPlaneAdd.md index 74542882db..4f5562f4e8 100644 --- a/wiki/translations/it/FEM_ClippingPlaneAdd.md +++ b/wiki/translations/it/FEM_ClippingPlaneAdd.md @@ -1,3 +1,4 @@ +# FEM ClippingPlaneAdd/it --- - GuiCommand:/it Name:FEM ClippingPlaneAdd Name/it:Piano di taglio sulla faccia Icon:Fem-clipping-plane-add.svg MenuLocation: Utilità → Piano di taglio sulla faccia |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -22,4 +23,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ClippingPlaneAdd/it diff --git a/wiki/translations/it/FEM_ClippingPlaneRemoveAll.md b/wiki/translations/it/FEM_ClippingPlaneRemoveAll.md index 91e7e4b522..ef3e28c802 100644 --- a/wiki/translations/it/FEM_ClippingPlaneRemoveAll.md +++ b/wiki/translations/it/FEM_ClippingPlaneRemoveAll.md @@ -1,3 +1,4 @@ +# FEM ClippingPlaneRemoveAll/it --- - GuiCommand:/it Name:FEM ClippingPlaneRemoveAll Name/it:FEM ClippingPlaneRemoveAll Icon:Fem-clipping-plane-remove-all.svg MenuLocation: Utilità → Rimuovi tutti i piani di ritaglio |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -22,4 +23,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ClippingPlaneRemoveAll/it diff --git a/wiki/translations/it/FEM_Concrete.md b/wiki/translations/it/FEM_Concrete.md index 6e49ba2063..812b1c86c9 100644 --- a/wiki/translations/it/FEM_Concrete.md +++ b/wiki/translations/it/FEM_Concrete.md @@ -1,5 +1,5 @@ # FEM Concrete/it - Questa pagina raccoglie alcune informazioni interessanti sul tema della simulazione delle strutture in calcestruzzo: +Questa pagina raccoglie alcune informazioni interessanti sul tema della simulazione delle strutture in calcestruzzo: - [How to use the pipeline postprocessing (May 2018)](https://forum.freecadweb.org/viewtopic.php?f=18&t=28635) - [Plotting of Concrete Reinforcement Ratio (May 2018)](https://forum.freecadweb.org/viewtopic.php?f=18&t=28821) @@ -15,4 +15,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Concrete/it diff --git a/wiki/translations/it/FEM_ConstantVacuumPermittivity.md b/wiki/translations/it/FEM_ConstantVacuumPermittivity.md index 08f7f21b08..087f25be1d 100644 --- a/wiki/translations/it/FEM_ConstantVacuumPermittivity.md +++ b/wiki/translations/it/FEM_ConstantVacuumPermittivity.md @@ -7,6 +7,8 @@ SeeAlso: --- +# FEM ConstantVacuumPermittivity/it + ## Description ## Usage @@ -17,4 +19,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstantVacuumPermittivity/it diff --git a/wiki/translations/it/FEM_ConstraintBearing.md b/wiki/translations/it/FEM_ConstraintBearing.md index 950247dd7b..d65d625351 100644 --- a/wiki/translations/it/FEM_ConstraintBearing.md +++ b/wiki/translations/it/FEM_ConstraintBearing.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial di FEM](FEM_tutorial/it.md) --- +# FEM ConstraintBearing/it +
@@ -35,4 +37,7 @@ Non supportato da CalculiX Interface! {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintBearing/it diff --git a/wiki/translations/it/FEM_ConstraintBodyHeatSource.md b/wiki/translations/it/FEM_ConstraintBodyHeatSource.md index 56989f99db..322203a9da 100644 --- a/wiki/translations/it/FEM_ConstraintBodyHeatSource.md +++ b/wiki/translations/it/FEM_ConstraintBodyHeatSource.md @@ -1,3 +1,4 @@ +# FEM ConstraintBodyHeatSource/it --- - GuiCommand:/it Name:FEM ConstraintBodyHeatSource Name/it:Vincolo fonte di calore del corpo Icon:Fem-constraint-heatflux.svg MenuLocation: Modello → Vincoli termici → Vincolo fonte di calore del corpo |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -26,4 +27,7 @@ Definisce un calore generato internamente e ceduto in W/kg (non J/m³). Per magg {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintBodyHeatSource/it diff --git a/wiki/translations/it/FEM_ConstraintContact.md b/wiki/translations/it/FEM_ConstraintContact.md index 7ef29e0d87..acfa6bb5db 100644 --- a/wiki/translations/it/FEM_ConstraintContact.md +++ b/wiki/translations/it/FEM_ConstraintContact.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial di FEM](FEM_tutorial/it.md) --- +# FEM ConstraintContact/it +
@@ -74,4 +76,7 @@ Crea un vincolo FEM di contatto tra 2 superfici. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintContact/it diff --git a/wiki/translations/it/FEM_ConstraintDisplacement.md b/wiki/translations/it/FEM_ConstraintDisplacement.md index 0b716d4e0d..a579fe0f29 100644 --- a/wiki/translations/it/FEM_ConstraintDisplacement.md +++ b/wiki/translations/it/FEM_ConstraintDisplacement.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial di FEM](FEM_tutorial/it.md) --- +# FEM ConstraintDisplacement/it +
@@ -46,4 +48,7 @@ Crea un vincolo FEM per un determinato dislocamento di un oggetto selezionato pe {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintDisplacement/it diff --git a/wiki/translations/it/FEM_ConstraintElectrostaticPotential.md b/wiki/translations/it/FEM_ConstraintElectrostaticPotential.md index 2a83fefe95..abd1147f68 100644 --- a/wiki/translations/it/FEM_ConstraintElectrostaticPotential.md +++ b/wiki/translations/it/FEM_ConstraintElectrostaticPotential.md @@ -1,3 +1,4 @@ +# FEM ConstraintElectrostaticPotential/it --- - GuiCommand:/it Name:FEM_ConstraintElectrostaticPotential Name/it:Potenziale elettrostatico di vincolo Icon:Fem-constraint-electrostatic-potential.svg MenuLocation: Modello → Vincoli elettrostatici → Potenziale elettrostatico di vincolo |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -12,4 +13,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintElectrostaticPotential/it diff --git a/wiki/translations/it/FEM_ConstraintFixed.md b/wiki/translations/it/FEM_ConstraintFixed.md index 5affbd8e38..43948b60c9 100644 --- a/wiki/translations/it/FEM_ConstraintFixed.md +++ b/wiki/translations/it/FEM_ConstraintFixed.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial FEM](FEM_tutorial/it.md) --- +# FEM ConstraintFixed/it +
@@ -47,4 +49,7 @@ Non è possibile ceare combinazioni di tipi di oggetti all\'interno dello stesso {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintFixed/it diff --git a/wiki/translations/it/FEM_ConstraintFlowVelocity.md b/wiki/translations/it/FEM_ConstraintFlowVelocity.md index 0168adf57b..3549eb46ae 100644 --- a/wiki/translations/it/FEM_ConstraintFlowVelocity.md +++ b/wiki/translations/it/FEM_ConstraintFlowVelocity.md @@ -1,3 +1,4 @@ +# FEM ConstraintFlowVelocity/it --- - GuiCommand:/it Name:FEM_ConstraintFlowVelocity Name/it:Vincolo velocità del flusso Icon:Fem-constraint-flow-velocity.svg MenuLocation: Modello → Vincoli dei fluidi → Vincolo velocità del flusso |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -54,4 +55,7 @@ Applica una velocità del flusso come condizione al contorno a un bordo in 2D o {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintFlowVelocity/it diff --git a/wiki/translations/it/FEM_ConstraintFluidBoundary.md b/wiki/translations/it/FEM_ConstraintFluidBoundary.md index 50e3a4192f..b3df2a44ba 100644 --- a/wiki/translations/it/FEM_ConstraintFluidBoundary.md +++ b/wiki/translations/it/FEM_ConstraintFluidBoundary.md @@ -1,3 +1,4 @@ +# FEM ConstraintFluidBoundary/it --- - GuiCommand:/it Name:FEM_ConstraintFluidBoundary Name/it:Vincolo contorno del fluido MenuLocation: Modello → Vincoli dei fluidi → Vincolo contorno del fluido |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -19,4 +20,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintFluidBoundary/it diff --git a/wiki/translations/it/FEM_ConstraintForce.md b/wiki/translations/it/FEM_ConstraintForce.md index aea3cfc888..2d75319720 100644 --- a/wiki/translations/it/FEM_ConstraintForce.md +++ b/wiki/translations/it/FEM_ConstraintForce.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial di FEM](FEM_tutorial/it.md) --- +# FEM ConstraintForce/it + @@ -79,4 +81,7 @@ Questo comando applica una forza del valore dato \[N\] alla geometria di destina {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintForce/it diff --git a/wiki/translations/it/FEM_ConstraintGear.md b/wiki/translations/it/FEM_ConstraintGear.md index b3c11f30c4..4f536a6c45 100644 --- a/wiki/translations/it/FEM_ConstraintGear.md +++ b/wiki/translations/it/FEM_ConstraintGear.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial FEM](FEM_tutorial/it.md) --- +# FEM ConstraintGear/it + @@ -29,4 +31,7 @@ Non supportato dall\'interfaccia calculix! {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintGear/it diff --git a/wiki/translations/it/FEM_ConstraintHeatflux.md b/wiki/translations/it/FEM_ConstraintHeatflux.md index 1241129fa0..f7573f78c4 100644 --- a/wiki/translations/it/FEM_ConstraintHeatflux.md +++ b/wiki/translations/it/FEM_ConstraintHeatflux.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial FEM](FEM_tutorial/it.md) --- +# FEM ConstraintHeatflux/it + @@ -43,4 +45,7 @@ Questo vincolo specifica lo scambio termico (film heat transfer) di una superfic {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintHeatflux/it diff --git a/wiki/translations/it/FEM_ConstraintInitialFlowVelocity.md b/wiki/translations/it/FEM_ConstraintInitialFlowVelocity.md index 9e586bdb06..0e4140cb98 100644 --- a/wiki/translations/it/FEM_ConstraintInitialFlowVelocity.md +++ b/wiki/translations/it/FEM_ConstraintInitialFlowVelocity.md @@ -1,3 +1,4 @@ +# FEM ConstraintInitialFlowVelocity/it --- - GuiCommand:/it Name:FEM_ConstraintInitialFlowVelocity Name/it:Vincolo velocità iniziale del flusso Icon:Fem-constraint-initial-flow-velocity.svg MenuLocation: Modello → Vincoli per fluidi → Vincolo velocità iniziale del flusso |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -31,4 +32,7 @@ Nelle analisi più semplici non è necessario specificare la velocità di flusso {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintInitialFlowVelocity/it diff --git a/wiki/translations/it/FEM_ConstraintInitialTemperature.md b/wiki/translations/it/FEM_ConstraintInitialTemperature.md index 80cc327a91..64eb7bab14 100644 --- a/wiki/translations/it/FEM_ConstraintInitialTemperature.md +++ b/wiki/translations/it/FEM_ConstraintInitialTemperature.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial FEM](FEM_tutorial/it.md) --- +# FEM ConstraintInitialTemperature/it + @@ -46,4 +48,7 @@ Il vincolo applica la temperatura iniziale a tutti i nodi nel modello FEA {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintInitialTemperature/it diff --git a/wiki/translations/it/FEM_ConstraintPlaneRotation.md b/wiki/translations/it/FEM_ConstraintPlaneRotation.md index 53ef2b2f5c..ba97ab2de9 100644 --- a/wiki/translations/it/FEM_ConstraintPlaneRotation.md +++ b/wiki/translations/it/FEM_ConstraintPlaneRotation.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/it.md) --- +# FEM ConstraintPlaneRotation/it + @@ -59,4 +61,7 @@ Crea un vincolo FEM per mantenere i nodi in una superficie planare nello stesso {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintPlaneRotation/it diff --git a/wiki/translations/it/FEM_ConstraintPressure.md b/wiki/translations/it/FEM_ConstraintPressure.md index ae77d290be..04191c9077 100644 --- a/wiki/translations/it/FEM_ConstraintPressure.md +++ b/wiki/translations/it/FEM_ConstraintPressure.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial FEM](FEM_tutorial/it.md) --- +# FEM ConstraintPressure/it + @@ -58,4 +60,7 @@ Si applica un vincolo di pressione a una faccia. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintPressure/it diff --git a/wiki/translations/it/FEM_ConstraintPulley.md b/wiki/translations/it/FEM_ConstraintPulley.md index 988982a25a..da944dadaa 100644 --- a/wiki/translations/it/FEM_ConstraintPulley.md +++ b/wiki/translations/it/FEM_ConstraintPulley.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial FEM](FEM_tutorial/it.md) --- +# FEM ConstraintPulley/it + @@ -29,4 +31,7 @@ Non supportato dall\'interfaccia calculix! {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintPulley/it diff --git a/wiki/translations/it/FEM_ConstraintSectionPrint.md b/wiki/translations/it/FEM_ConstraintSectionPrint.md index 09b1d5dee1..76b0014c0a 100644 --- a/wiki/translations/it/FEM_ConstraintSectionPrint.md +++ b/wiki/translations/it/FEM_ConstraintSectionPrint.md @@ -7,6 +7,8 @@ SeeAlso: --- +# FEM ConstraintSectionPrint/it + ## Description ## Usage @@ -17,4 +19,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintSectionPrint/it diff --git a/wiki/translations/it/FEM_ConstraintSelfWeight.md b/wiki/translations/it/FEM_ConstraintSelfWeight.md index cee049db25..a57abd0842 100644 --- a/wiki/translations/it/FEM_ConstraintSelfWeight.md +++ b/wiki/translations/it/FEM_ConstraintSelfWeight.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/it.md) --- +# FEM ConstraintSelfWeight/it + @@ -80,4 +82,7 @@ Eall,GRAV,9810,0.0,0.0,-1.0 {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintSelfWeight/it diff --git a/wiki/translations/it/FEM_ConstraintTemperature.md b/wiki/translations/it/FEM_ConstraintTemperature.md index cf0b5c06c5..ede3f16643 100644 --- a/wiki/translations/it/FEM_ConstraintTemperature.md +++ b/wiki/translations/it/FEM_ConstraintTemperature.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial FEM](FEM_tutorial/it.md) --- +# FEM ConstraintTemperature/it + @@ -46,4 +48,7 @@ Crea un vincolo FEM per una condizione limite di temperatura. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintTemperature/it diff --git a/wiki/translations/it/FEM_ConstraintTie.md b/wiki/translations/it/FEM_ConstraintTie.md index 704d9e0b69..72dcb2a369 100644 --- a/wiki/translations/it/FEM_ConstraintTie.md +++ b/wiki/translations/it/FEM_ConstraintTie.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Constraint pressure](FEM_ConstraintPressure.md) --- +# FEM ConstraintTie/it + ## Description Defines a tie constraint that connects the two selected surfaces in such a way that (as opposed to how contact works) they can\'t separate or slide on each other throughout the analysis. Thus, the surfaces remain permanently bonded all the time. @@ -25,4 +27,7 @@ Defines a tie constraint that connects the two selected surfaces in such a way t {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintTie/it diff --git a/wiki/translations/it/FEM_ConstraintTransform.md b/wiki/translations/it/FEM_ConstraintTransform.md index ce8181aee3..4c58bdbab7 100644 --- a/wiki/translations/it/FEM_ConstraintTransform.md +++ b/wiki/translations/it/FEM_ConstraintTransform.md @@ -1,3 +1,4 @@ +# FEM ConstraintTransform/it --- - GuiCommand:/it Name:FEM_ConstraintTransform Name/it:ConstraintTransform MenuLocation: Modello → Vincoli meccanici → Constraint transform |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -11,4 +12,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintTransform/it diff --git a/wiki/translations/it/FEM_CreateNodesSet.md b/wiki/translations/it/FEM_CreateNodesSet.md index 0a9449c3cc..4f607f1766 100644 --- a/wiki/translations/it/FEM_CreateNodesSet.md +++ b/wiki/translations/it/FEM_CreateNodesSet.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial FEM](FEM_tutorial/it.md) --- +# FEM CreateNodesSet/it + @@ -37,4 +39,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM CreateNodesSet/it diff --git a/wiki/translations/it/FEM_ElementFluid1D.md b/wiki/translations/it/FEM_ElementFluid1D.md index d47ef993db..50e3b51b4f 100644 --- a/wiki/translations/it/FEM_ElementFluid1D.md +++ b/wiki/translations/it/FEM_ElementFluid1D.md @@ -1,3 +1,4 @@ +# FEM ElementFluid1D/it --- - GuiCommand:/it Name:FEM_ElementFluid1D Name/it:Elemento Fluido 1D MenuLocation:Modello → Sezione del fluido per il flusso 1D |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|FEM tutorial](FEM_Workbench/it___FEM]].md)--- @@ -40,4 +41,7 @@ Crea un elemento FEM di sezione del fluido per le reti pneumatiche e idrauliche {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementFluid1D/it diff --git a/wiki/translations/it/FEM_ElementGeometry1D.md b/wiki/translations/it/FEM_ElementGeometry1D.md index 8d7f0d4aec..bffe592605 100644 --- a/wiki/translations/it/FEM_ElementGeometry1D.md +++ b/wiki/translations/it/FEM_ElementGeometry1D.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/it.md) --- +# FEM ElementGeometry1D/it + @@ -50,4 +52,7 @@ ElementGeometry1D is used to define cross sections for beam elements. Currently {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementGeometry1D/it diff --git a/wiki/translations/it/FEM_ElementGeometry2D.md b/wiki/translations/it/FEM_ElementGeometry2D.md index e544b7c7e7..83152d2b8f 100644 --- a/wiki/translations/it/FEM_ElementGeometry2D.md +++ b/wiki/translations/it/FEM_ElementGeometry2D.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/it.md) --- +# FEM ElementGeometry2D/it + @@ -62,4 +64,7 @@ Per visualizzare i risultati dal risolutore CalculiX sulla mesh espansa allo spe {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementGeometry2D/it diff --git a/wiki/translations/it/FEM_ElementRotation1D.md b/wiki/translations/it/FEM_ElementRotation1D.md index 9cb35e15f7..20ead83a62 100644 --- a/wiki/translations/it/FEM_ElementRotation1D.md +++ b/wiki/translations/it/FEM_ElementRotation1D.md @@ -1,3 +1,4 @@ +# FEM ElementRotation1D/it --- - GuiCommand:/it Name:FEM_ElementRotation1D Name/it:Rotazione di trave Icon:Fem-beam-rotation.svg MenuLocation: Modello → Rotazione di trave |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -39,4 +40,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementRotation1D/it diff --git a/wiki/translations/it/FEM_Element_Types.md b/wiki/translations/it/FEM_Element_Types.md index d36b851db1..9fb40930f8 100644 --- a/wiki/translations/it/FEM_Element_Types.md +++ b/wiki/translations/it/FEM_Element_Types.md @@ -1,5 +1,5 @@ # FEM Element Types/it - {{TOCright}} +{{TOCright}} ## Introduzione @@ -273,3 +273,6 @@ Questa descrizione è basata sul formato MED come descritto in \[ [Developer](Category:Developer.md) > FEM Element Types/it diff --git a/wiki/translations/it/FEM_EquationElasticity.md b/wiki/translations/it/FEM_EquationElasticity.md index bf71c16974..ea500e714f 100644 --- a/wiki/translations/it/FEM_EquationElasticity.md +++ b/wiki/translations/it/FEM_EquationElasticity.md @@ -1,3 +1,4 @@ +# FEM EquationElasticity/it --- - GuiCommand:/it Name:FEM_EquationElasticity Name/it:FEM EquationElasticity Icon:Fem-equation-elasticity.svg MenuLocation: Solve → Equazione di elasticità |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -13,4 +14,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationElasticity/it diff --git a/wiki/translations/it/FEM_EquationElectrostatic.md b/wiki/translations/it/FEM_EquationElectrostatic.md index 208ff7d12a..e05f548d99 100644 --- a/wiki/translations/it/FEM_EquationElectrostatic.md +++ b/wiki/translations/it/FEM_EquationElectrostatic.md @@ -1,3 +1,4 @@ +# FEM EquationElectrostatic/it --- - GuiCommand:/it Name:FEM_EquationElectrostatic Name/it:Equazione elettrostatica Icon:Fem-equation-electrostatic.svg MenuLocation: Solve → Equazione elettrostatica |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -13,4 +14,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationElectrostatic/it diff --git a/wiki/translations/it/FEM_EquationFlow.md b/wiki/translations/it/FEM_EquationFlow.md index 7a30dc72cd..94fb0047b3 100644 --- a/wiki/translations/it/FEM_EquationFlow.md +++ b/wiki/translations/it/FEM_EquationFlow.md @@ -1,3 +1,4 @@ +# FEM EquationFlow/it --- - GuiCommand:/it Name:FEM_EquationFlow Name/it:FEM EquationFlow Icon:Fem-equation-flow.svg MenuLocation: Solve → Equation flow |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -11,4 +12,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationFlow/it diff --git a/wiki/translations/it/FEM_EquationFlux.md b/wiki/translations/it/FEM_EquationFlux.md index 24421fc4ae..b4e9de3c6a 100644 --- a/wiki/translations/it/FEM_EquationFlux.md +++ b/wiki/translations/it/FEM_EquationFlux.md @@ -1,3 +1,4 @@ +# FEM EquationFlux/it --- - GuiCommand:/it Name:FEM_EquationFluxsolver Name/it:Equazione fluxsolver Icon:Fem-equation-fluxsolver.svg MenuLocation: Solve → Equazione fluxsolver |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -13,4 +14,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationFlux/it diff --git a/wiki/translations/it/FEM_EquationFluxsolver.md b/wiki/translations/it/FEM_EquationFluxsolver.md index 0beab03d42..8a23b205d5 100644 --- a/wiki/translations/it/FEM_EquationFluxsolver.md +++ b/wiki/translations/it/FEM_EquationFluxsolver.md @@ -1,2 +1,5 @@ # FEM EquationFluxsolver/it 1. REDIRECT [FEM\_EquationFlux/it](FEM_EquationFlux/it.md) + +--- +[documentation index](../README.md) > FEM EquationFluxsolver/it diff --git a/wiki/translations/it/FEM_EquationHeat.md b/wiki/translations/it/FEM_EquationHeat.md index c14b83c984..1b7e94adbb 100644 --- a/wiki/translations/it/FEM_EquationHeat.md +++ b/wiki/translations/it/FEM_EquationHeat.md @@ -1,3 +1,4 @@ +# FEM EquationHeat/it --- - GuiCommand:/it Name:FEM_EquationHeat Name/it:FEM EquationHeat Icon:Fem-equation-heat.svg MenuLocation: Solve → Equation heat |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -13,4 +14,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationHeat/it diff --git a/wiki/translations/it/FEM_Example_Capacitance_Two_Balls.md b/wiki/translations/it/FEM_Example_Capacitance_Two_Balls.md index 4d0506dca6..db88864f2b 100644 --- a/wiki/translations/it/FEM_Example_Capacitance_Two_Balls.md +++ b/wiki/translations/it/FEM_Example_Capacitance_Two_Balls.md @@ -1,7 +1,4 @@ # FEM Example Capacitance Two Balls/it - - - {{TutorialInfo/it |Topic= Analisi agli elementi finiti |Level=Base @@ -121,4 +118,7 @@ This case presents the solution of the capacitance of perfectly conducting balls {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM Example Capacitance Two Balls/it diff --git a/wiki/translations/it/FEM_Examples.md b/wiki/translations/it/FEM_Examples.md index 95d7d8d104..699e11400d 100644 --- a/wiki/translations/it/FEM_Examples.md +++ b/wiki/translations/it/FEM_Examples.md @@ -8,6 +8,8 @@ Version:0.19 --- +# FEM Examples/it + @@ -37,4 +39,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Examples/it diff --git a/wiki/translations/it/FEM_FemMesh2Mesh.md b/wiki/translations/it/FEM_FemMesh2Mesh.md index 9e2609c4ab..c91597508e 100644 --- a/wiki/translations/it/FEM_FemMesh2Mesh.md +++ b/wiki/translations/it/FEM_FemMesh2Mesh.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial di FEM](FEM_tutorial/it.md) --- +# FEM FemMesh2Mesh/it + @@ -102,4 +104,7 @@ Mesh.show(obj) {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM FemMesh2Mesh/it diff --git a/wiki/translations/it/FEM_Install.md b/wiki/translations/it/FEM_Install.md index 2b6d454ea6..50a6a444e9 100644 --- a/wiki/translations/it/FEM_Install.md +++ b/wiki/translations/it/FEM_Install.md @@ -1,7 +1,4 @@ # FEM Install/it - - - {{TOCright}} ## Introduzione @@ -312,4 +309,7 @@ If you have problems installing Netgen, Gmsh, or CalculiX, or another external t {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Install/it diff --git a/wiki/translations/it/FEM_MaterialFluid.md b/wiki/translations/it/FEM_MaterialFluid.md index 9cbe9ec396..f1eaf33bad 100644 --- a/wiki/translations/it/FEM_MaterialFluid.md +++ b/wiki/translations/it/FEM_MaterialFluid.md @@ -1,3 +1,4 @@ +# FEM MaterialFluid/it --- - GuiCommand:/it Name:FEM_MaterialFluid Name/it:FEM Materiale per fluido MenuLocation: Modello → Materiali → Materiale per fluido |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|FEM tutorial](FEM_Workbench/it___FEM]].md)--- @@ -41,4 +42,7 @@ Aggiunge le proprietà del fluido ad una parte. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialFluid/it diff --git a/wiki/translations/it/FEM_MaterialMechanicalNonlinear.md b/wiki/translations/it/FEM_MaterialMechanicalNonlinear.md index c0f82cd073..e95ba5d420 100644 --- a/wiki/translations/it/FEM_MaterialMechanicalNonlinear.md +++ b/wiki/translations/it/FEM_MaterialMechanicalNonlinear.md @@ -1,3 +1,4 @@ +# FEM MaterialMechanicalNonlinear/it --- - GuiCommand:/it Name:FEM_MaterialMechanicalNonlinear Name/it:FEM Materiale non lineare MenuLocation: Modello → Materiale non lineare |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -21,4 +22,7 @@ Adds nonlinear mechanical material model. Currently only plasticity with simple {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialMechanicalNonlinear/it diff --git a/wiki/translations/it/FEM_MaterialReinforced.md b/wiki/translations/it/FEM_MaterialReinforced.md index 919535529e..a3e92028bd 100644 --- a/wiki/translations/it/FEM_MaterialReinforced.md +++ b/wiki/translations/it/FEM_MaterialReinforced.md @@ -1,3 +1,4 @@ +# FEM MaterialReinforced/it --- - GuiCommand:/it Name:FEM MaterialReinforced Name/it:Materiale rinforzato MenuLocation: Modello → Materiale rinforzato |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -15,4 +16,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialReinforced/it diff --git a/wiki/translations/it/FEM_MaterialSolid.md b/wiki/translations/it/FEM_MaterialSolid.md index cd44c21f39..7b7e88db27 100644 --- a/wiki/translations/it/FEM_MaterialSolid.md +++ b/wiki/translations/it/FEM_MaterialSolid.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/it.md) --- +# FEM MaterialSolid/it + @@ -60,4 +62,7 @@ Aggiunge le proprietà dei materiali ad una parte. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialSolid/it diff --git a/wiki/translations/it/FEM_Mesh.md b/wiki/translations/it/FEM_Mesh.md index 038a3c5588..d42938ef5c 100644 --- a/wiki/translations/it/FEM_Mesh.md +++ b/wiki/translations/it/FEM_Mesh.md @@ -1,5 +1,5 @@ # FEM Mesh/it - {{TOCright}} +{{TOCright}} ## Creare una Mesh FE @@ -727,4 +727,7 @@ Vedere per esempio FEM Mesh/it diff --git a/wiki/translations/it/FEM_MeshBoundaryLayer.md b/wiki/translations/it/FEM_MeshBoundaryLayer.md index 3450955158..df964bf03c 100644 --- a/wiki/translations/it/FEM_MeshBoundaryLayer.md +++ b/wiki/translations/it/FEM_MeshBoundaryLayer.md @@ -1,3 +1,4 @@ +# FEM MeshBoundaryLayer/it --- - GuiCommand:/it Name:FEM_MeshBoundaryLayer Name/it:FEM MeshBoundaryLayer Icon:Fem-femmesh-boundary-layer.svg MenuLocation: Mesh → FEM Mesh boundary layer |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -46,4 +47,7 @@ You can create as many different mesh boundary layers as needed. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshBoundaryLayer/it diff --git a/wiki/translations/it/FEM_MeshClear.md b/wiki/translations/it/FEM_MeshClear.md index 90bf429f72..351e2944b7 100644 --- a/wiki/translations/it/FEM_MeshClear.md +++ b/wiki/translations/it/FEM_MeshClear.md @@ -1,3 +1,4 @@ +# FEM MeshClear/it --- - GuiCommand:/it Name:FEM_MeshClear Name/it:FEM MeshClear Icon:Fem-femmesh-clear-mesh.svg MenuLocation: Menu contestuale dell'oggetto mesh → FEM mesh clear |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -35,4 +36,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshClear/it diff --git a/wiki/translations/it/FEM_MeshDisplayInfo.md b/wiki/translations/it/FEM_MeshDisplayInfo.md index 4ace705085..a43c216f1a 100644 --- a/wiki/translations/it/FEM_MeshDisplayInfo.md +++ b/wiki/translations/it/FEM_MeshDisplayInfo.md @@ -1,3 +1,4 @@ +# FEM MeshDisplayInfo/it --- - GuiCommand:/it Name:FEM_MeshPrintInfo Name/it:FEM MeshPrintInfo Icon:Fem-femmesh-print-info.svg MenuLocation: Menu contestuale dell'oggetto mesh → Informazioni di stampa |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -74,4 +75,7 @@ will output the following result: {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshDisplayInfo/it diff --git a/wiki/translations/it/FEM_MeshGmshFromShape.md b/wiki/translations/it/FEM_MeshGmshFromShape.md index d0726fed25..00a2c74de5 100644 --- a/wiki/translations/it/FEM_MeshGmshFromShape.md +++ b/wiki/translations/it/FEM_MeshGmshFromShape.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/it.md) --- +# FEM MeshGmshFromShape/it + @@ -139,4 +141,7 @@ The *Simple* recombination algorithm will leave some triangles in the mesh in ca {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshGmshFromShape/it diff --git a/wiki/translations/it/FEM_MeshGroup.md b/wiki/translations/it/FEM_MeshGroup.md index 25f467ca55..18b1932938 100644 --- a/wiki/translations/it/FEM_MeshGroup.md +++ b/wiki/translations/it/FEM_MeshGroup.md @@ -1,3 +1,4 @@ +# FEM MeshGroup/it --- - GuiCommand:/it Name:FEM_MeshGroup Name/it:FEM MeshGroup MenuLocation: Mesh → FEM Mesh group |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -41,4 +42,7 @@ FEM MeshGroup therefore enables FreeCAD to be used with external solvers (or vie {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshGroup/it diff --git a/wiki/translations/it/FEM_MeshNetgenFromShape.md b/wiki/translations/it/FEM_MeshNetgenFromShape.md index 031112b015..7aa0646055 100644 --- a/wiki/translations/it/FEM_MeshNetgenFromShape.md +++ b/wiki/translations/it/FEM_MeshNetgenFromShape.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial FEM](FEM_tutorial/it.md) --- +# FEM MeshNetgenFromShape/it + @@ -29,4 +31,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshNetgenFromShape/it diff --git a/wiki/translations/it/FEM_MeshPrintInfo.md b/wiki/translations/it/FEM_MeshPrintInfo.md index 64b000911c..6f9b2031ac 100644 --- a/wiki/translations/it/FEM_MeshPrintInfo.md +++ b/wiki/translations/it/FEM_MeshPrintInfo.md @@ -1,2 +1,5 @@ # FEM MeshPrintInfo/it 1. REDIRECT [FEM\_MeshDisplayInfo/it](FEM_MeshDisplayInfo/it.md) + +--- +[documentation index](../README.md) > FEM MeshPrintInfo/it diff --git a/wiki/translations/it/FEM_MeshRegion.md b/wiki/translations/it/FEM_MeshRegion.md index 5ce5147f99..48f837ece0 100644 --- a/wiki/translations/it/FEM_MeshRegion.md +++ b/wiki/translations/it/FEM_MeshRegion.md @@ -1,3 +1,4 @@ +# FEM MeshRegion/it --- - GuiCommand:/it Name:FEM_MeshRegion Name/it:FEM MeshRegion MenuLocation: Mesh → FEM Mesh region |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -55,4 +56,7 @@ L\'ordine in cui le regioni sono mostrate nella [vista ad albero](Tree_view/it.m {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshRegion/it diff --git a/wiki/translations/it/FEM_Mesh_CalculiX.md b/wiki/translations/it/FEM_Mesh_CalculiX.md index 4e19f175b7..c5cf510f3a 100644 --- a/wiki/translations/it/FEM_Mesh_CalculiX.md +++ b/wiki/translations/it/FEM_Mesh_CalculiX.md @@ -1,5 +1,5 @@ # FEM Mesh CalculiX/it - {{TOCright}} +{{TOCright}}
@@ -102,3 +102,6 @@ Il seguente ordine di nodo non è implementato ! TODO: verify node order (do not }} [Category:Developer](Category:Developer.md) [Category:Poweruser\_Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > FEM Mesh CalculiX/it diff --git a/wiki/translations/it/FEM_Module.md b/wiki/translations/it/FEM_Module.md index 54e0c976f8..ef61102df6 100644 --- a/wiki/translations/it/FEM_Module.md +++ b/wiki/translations/it/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/it 1. REDIRECT [FEM\_Workbench/it](FEM_Workbench/it.md) + +--- +[documentation index](../README.md) > FEM Module/it diff --git a/wiki/translations/it/FEM_PostApplyChanges.md b/wiki/translations/it/FEM_PostApplyChanges.md index b7d913ed09..ea00316068 100644 --- a/wiki/translations/it/FEM_PostApplyChanges.md +++ b/wiki/translations/it/FEM_PostApplyChanges.md @@ -1,3 +1,4 @@ +# FEM PostApplyChanges/it --- - GuiCommand:/it Name:FEM_PostApplyChanges Name/it:FEM PostApplyChanges MenuLocation: Risultati → Apply changes to pipeline |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -19,4 +20,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostApplyChanges/it diff --git a/wiki/translations/it/FEM_PostCreateClipFilter.md b/wiki/translations/it/FEM_PostCreateClipFilter.md index 7931444f69..9b7be253a7 100644 --- a/wiki/translations/it/FEM_PostCreateClipFilter.md +++ b/wiki/translations/it/FEM_PostCreateClipFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateClipFilter/it 1. REDIRECT [FEM\_PostFilterClipRegion/it](FEM_PostFilterClipRegion/it.md) + +--- +[documentation index](../README.md) > FEM PostCreateClipFilter/it diff --git a/wiki/translations/it/FEM_PostCreateCutFilter.md b/wiki/translations/it/FEM_PostCreateCutFilter.md index b361a7e07c..4bf2fb340e 100644 --- a/wiki/translations/it/FEM_PostCreateCutFilter.md +++ b/wiki/translations/it/FEM_PostCreateCutFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateCutFilter/it 1. REDIRECT [FEM\_PostFilterCutFunction/it](FEM_PostFilterCutFunction/it.md) + +--- +[documentation index](../README.md) > FEM PostCreateCutFilter/it diff --git a/wiki/translations/it/FEM_PostCreateDataAlongLineFilter.md b/wiki/translations/it/FEM_PostCreateDataAlongLineFilter.md index 069397c0ba..6babb08911 100644 --- a/wiki/translations/it/FEM_PostCreateDataAlongLineFilter.md +++ b/wiki/translations/it/FEM_PostCreateDataAlongLineFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateDataAlongLineFilter/it 1. REDIRECT [FEM\_PostFilterDataAlongLine/it](FEM_PostFilterDataAlongLine/it.md) + +--- +[documentation index](../README.md) > FEM PostCreateDataAlongLineFilter/it diff --git a/wiki/translations/it/FEM_PostCreateDataAtPointFilter.md b/wiki/translations/it/FEM_PostCreateDataAtPointFilter.md index af7cd58c20..e3c140650d 100644 --- a/wiki/translations/it/FEM_PostCreateDataAtPointFilter.md +++ b/wiki/translations/it/FEM_PostCreateDataAtPointFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateDataAtPointFilter/it 1. REDIRECT [FEM\_PostFilterDataAtPoint/it](FEM_PostFilterDataAtPoint/it.md) + +--- +[documentation index](../README.md) > FEM PostCreateDataAtPointFilter/it diff --git a/wiki/translations/it/FEM_PostCreateFunctions.md b/wiki/translations/it/FEM_PostCreateFunctions.md index 3226c4ea0b..f09f968ee1 100644 --- a/wiki/translations/it/FEM_PostCreateFunctions.md +++ b/wiki/translations/it/FEM_PostCreateFunctions.md @@ -1,3 +1,4 @@ +# FEM PostCreateFunctions/it --- - GuiCommand:/it Name:FEM_CompPostCreateFunctions Name/it:Fem CompPostCreateFunctions MenuLocation: Risultati → Filter Functions |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -32,4 +33,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostCreateFunctions/it diff --git a/wiki/translations/it/FEM_PostCreateLinearizedStressesFilter.md b/wiki/translations/it/FEM_PostCreateLinearizedStressesFilter.md index 6a7e7972a5..28bb386cfa 100644 --- a/wiki/translations/it/FEM_PostCreateLinearizedStressesFilter.md +++ b/wiki/translations/it/FEM_PostCreateLinearizedStressesFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateLinearizedStressesFilter/it 1. REDIRECT [FEM\_PostFilterLinearizedStresses/it](FEM_PostFilterLinearizedStresses/it.md) + +--- +[documentation index](../README.md) > FEM PostCreateLinearizedStressesFilter/it diff --git a/wiki/translations/it/FEM_PostCreateScalarClipFilter.md b/wiki/translations/it/FEM_PostCreateScalarClipFilter.md index 5b0943bbca..8a03ededef 100644 --- a/wiki/translations/it/FEM_PostCreateScalarClipFilter.md +++ b/wiki/translations/it/FEM_PostCreateScalarClipFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateScalarClipFilter/it 1. REDIRECT [FEM\_PostFilterClipScalar/it](FEM_PostFilterClipScalar/it.md) + +--- +[documentation index](../README.md) > FEM PostCreateScalarClipFilter/it diff --git a/wiki/translations/it/FEM_PostCreateWarpVectorFilter.md b/wiki/translations/it/FEM_PostCreateWarpVectorFilter.md index b3a2483917..b6380822e6 100644 --- a/wiki/translations/it/FEM_PostCreateWarpVectorFilter.md +++ b/wiki/translations/it/FEM_PostCreateWarpVectorFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateWarpVectorFilter/it 1. REDIRECT [FEM\_PostFilterWarp/it](FEM_PostFilterWarp/it.md) + +--- +[documentation index](../README.md) > FEM PostCreateWarpVectorFilter/it diff --git a/wiki/translations/it/FEM_PostFilterClipRegion.md b/wiki/translations/it/FEM_PostFilterClipRegion.md index 58872fce19..91553b25d8 100644 --- a/wiki/translations/it/FEM_PostFilterClipRegion.md +++ b/wiki/translations/it/FEM_PostFilterClipRegion.md @@ -1,3 +1,4 @@ +# FEM PostFilterClipRegion/it --- - GuiCommand:/it Name:FEM_PostCreateClipFilter Name/it:FEM PostCreateClipFilter MenuLocation: Risultati → Crea clip filter |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -22,4 +23,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterClipRegion/it diff --git a/wiki/translations/it/FEM_PostFilterClipScalar.md b/wiki/translations/it/FEM_PostFilterClipScalar.md index 56d5cedb28..b4f9b6c40b 100644 --- a/wiki/translations/it/FEM_PostFilterClipScalar.md +++ b/wiki/translations/it/FEM_PostFilterClipScalar.md @@ -1,3 +1,4 @@ +# FEM PostFilterClipScalar/it --- - GuiCommand:/it Name:FEM_PostCreateScalarClipFilter Name/it:FEM PostCreateScalarClipFilter MenuLocation: Risultati → scalar clip filter |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -25,4 +26,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterClipScalar/it diff --git a/wiki/translations/it/FEM_PostFilterCutFunction.md b/wiki/translations/it/FEM_PostFilterCutFunction.md index 2bb13d83cc..4393a4a481 100644 --- a/wiki/translations/it/FEM_PostFilterCutFunction.md +++ b/wiki/translations/it/FEM_PostFilterCutFunction.md @@ -1,3 +1,4 @@ +# FEM PostFilterCutFunction/it --- - GuiCommand:/it Name:FEM_PostCreateCutFilter Name/it:FEM PostCreateCutFilter MenuLocation: Riultati → Crea cut filter |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -25,4 +26,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterCutFunction/it diff --git a/wiki/translations/it/FEM_PostFilterDataAlongLine.md b/wiki/translations/it/FEM_PostFilterDataAlongLine.md index 3687db3e53..0fbf1ceefa 100644 --- a/wiki/translations/it/FEM_PostFilterDataAlongLine.md +++ b/wiki/translations/it/FEM_PostFilterDataAlongLine.md @@ -1,3 +1,4 @@ +# FEM PostFilterDataAlongLine/it --- - GuiCommand:/it Name:FEM_PostCreateDataAlongLineFilter Name/it:FEM PostCreateDataAlongLineFilter Icon:Fem-DataAlongLine.svg MenuLocation: Risultati → Data along line filter |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -25,4 +26,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterDataAlongLine/it diff --git a/wiki/translations/it/FEM_PostFilterDataAtPoint.md b/wiki/translations/it/FEM_PostFilterDataAtPoint.md index 8268883563..d4c300802b 100644 --- a/wiki/translations/it/FEM_PostFilterDataAtPoint.md +++ b/wiki/translations/it/FEM_PostFilterDataAtPoint.md @@ -1,3 +1,4 @@ +# FEM PostFilterDataAtPoint/it --- - GuiCommand:/it Name:FEM_PostCreateDataAtPointFilter Name/it:FEM PostCreateDataAtPointFilter Icon:Fem-post-filter-data-at-point.png MenuLocation: Risultati → Data at point filter |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -25,4 +26,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterDataAtPoint/it diff --git a/wiki/translations/it/FEM_PostFilterLinearizedStresses.md b/wiki/translations/it/FEM_PostFilterLinearizedStresses.md index 75388302a5..8d7274faf8 100644 --- a/wiki/translations/it/FEM_PostFilterLinearizedStresses.md +++ b/wiki/translations/it/FEM_PostFilterLinearizedStresses.md @@ -1,3 +1,4 @@ +# FEM PostFilterLinearizedStresses/it --- - GuiCommand:/it Name:FEM PostCreateLinearizedStressesFilter Name/it:FEM PostCreateLinearizedStressesFilter Icon:Fem-linearizedstresses.svg MenuLocation: Risultati → Linearized stresses filter |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -22,4 +23,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterLinearizedStresses/it diff --git a/wiki/translations/it/FEM_PostFilterWarp.md b/wiki/translations/it/FEM_PostFilterWarp.md index dc82229166..9da77bf99f 100644 --- a/wiki/translations/it/FEM_PostFilterWarp.md +++ b/wiki/translations/it/FEM_PostFilterWarp.md @@ -1,3 +1,4 @@ +# FEM PostFilterWarp/it --- - GuiCommand:/it Name:FEM PostCreateWarpVectorFilter Name/it:FEM PostCreateWarpVectorFilter MenuLocation: Risultati → Wrap vector filter |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -22,4 +23,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterWarp/it diff --git a/wiki/translations/it/FEM_PostPipelineFromResult.md b/wiki/translations/it/FEM_PostPipelineFromResult.md index 243d896cc3..df4f4a98e6 100644 --- a/wiki/translations/it/FEM_PostPipelineFromResult.md +++ b/wiki/translations/it/FEM_PostPipelineFromResult.md @@ -1,3 +1,4 @@ +# FEM PostPipelineFromResult/it --- - GuiCommand:/it Name:FEM PostPipelineFromResult Name/it:Post Pipeline da risultato MenuLocation: Risultati → Post Pipeline da risultato |Workbenches:[Version:0.17 Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -60,4 +61,7 @@ Ancora una volta, si noti, che la rappresentazione Pipeline dei risultati (denom {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostPipelineFromResult/it diff --git a/wiki/translations/it/FEM_Preferences.md b/wiki/translations/it/FEM_Preferences.md index 515ba8d99d..1bb1ff3e27 100644 --- a/wiki/translations/it/FEM_Preferences.md +++ b/wiki/translations/it/FEM_Preferences.md @@ -1,5 +1,5 @@ # FEM Preferences/it - {{TOCright}} +{{TOCright}}
@@ -50,3 +50,6 @@ The current supported external solvers are: }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > FEM Preferences/it diff --git a/wiki/translations/it/FEM_Python_Scripting.md b/wiki/translations/it/FEM_Python_Scripting.md index 5ec01edfd1..f834331a57 100644 --- a/wiki/translations/it/FEM_Python_Scripting.md +++ b/wiki/translations/it/FEM_Python_Scripting.md @@ -71,3 +71,6 @@ Evidenziare alcuni nodi nella vista: [Category:Poweruser\_Documentation/it](Category:Poweruser_Documentation/it.md) [Category:Developer/it](Category:Developer/it.md) [Category:Python\_Code/it](Category:Python_Code/it.md) + +--- +[documentation index](../README.md) > FEM Python Scripting/it diff --git a/wiki/translations/it/FEM_ResultShow.md b/wiki/translations/it/FEM_ResultShow.md index fc4928408d..3fb28574ab 100644 --- a/wiki/translations/it/FEM_ResultShow.md +++ b/wiki/translations/it/FEM_ResultShow.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/it.md) --- +# FEM ResultShow/it +
@@ -38,4 +40,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ResultShow/it diff --git a/wiki/translations/it/FEM_ResultsPurge.md b/wiki/translations/it/FEM_ResultsPurge.md index 434b5e2ed7..cf0450161d 100644 --- a/wiki/translations/it/FEM_ResultsPurge.md +++ b/wiki/translations/it/FEM_ResultsPurge.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial FEM](FEM_tutorial/it.md) --- +# FEM ResultsPurge/it +
@@ -42,4 +44,7 @@ TODO: Add Before and After screenshot {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ResultsPurge/it diff --git a/wiki/translations/it/FEM_Shear_of_a_Composite_Block.md b/wiki/translations/it/FEM_Shear_of_a_Composite_Block.md index 564e6d6fb6..56ac74b9e0 100644 --- a/wiki/translations/it/FEM_Shear_of_a_Composite_Block.md +++ b/wiki/translations/it/FEM_Shear_of_a_Composite_Block.md @@ -1,7 +1,4 @@ # FEM Shear of a Composite Block/it - - -
@@ -109,4 +106,7 @@ Il file FC per questo tutorial è riportato sotto, come punto di partenza. -Divertiti ! {{Tutorials navi}} {{FEM Tools navi}} +Divertiti ! {{Tutorials navi}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM Shear of a Composite Block/it diff --git a/wiki/translations/it/FEM_Solver.md b/wiki/translations/it/FEM_Solver.md index 6c5328cb2b..6942acce55 100644 --- a/wiki/translations/it/FEM_Solver.md +++ b/wiki/translations/it/FEM_Solver.md @@ -1,6 +1,4 @@ # FEM Solver/it - - ## Prefazione @@ -275,4 +273,7 @@ Technog was successfully used in FreeCAD as a substitute of CalculiX, although t {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Solver/it diff --git a/wiki/translations/it/FEM_SolverCalculiX.md b/wiki/translations/it/FEM_SolverCalculiX.md index 2c4be9cdc6..445d2d5920 100644 --- a/wiki/translations/it/FEM_SolverCalculiX.md +++ b/wiki/translations/it/FEM_SolverCalculiX.md @@ -1,3 +1,4 @@ +# FEM SolverCalculiX/it --- - GuiCommand:/it Name:FEM_SolverCalculiX Name/it:Risolutore CalculiX Icon:Fem_Solver.svg MenuLocation: Solve → Risolutore CalculiX sperimentale |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -17,4 +18,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverCalculiX/it diff --git a/wiki/translations/it/FEM_SolverCalculixCxxtools.md b/wiki/translations/it/FEM_SolverCalculixCxxtools.md index c9974b50ff..e016afd71f 100644 --- a/wiki/translations/it/FEM_SolverCalculixCxxtools.md +++ b/wiki/translations/it/FEM_SolverCalculixCxxtools.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/it.md) --- +# FEM SolverCalculixCxxtools/it +
@@ -210,4 +212,7 @@ La documentazione originale di CalculiX è disponibile all\'indirizzo FEM SolverCalculixCxxtools/it diff --git a/wiki/translations/it/FEM_SolverControl.md b/wiki/translations/it/FEM_SolverControl.md index e01e2ac3ca..d9c0c989e5 100644 --- a/wiki/translations/it/FEM_SolverControl.md +++ b/wiki/translations/it/FEM_SolverControl.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial FEM](FEM_tutorial/it.md) --- +# FEM SolverControl/it + @@ -27,4 +29,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverControl/it diff --git a/wiki/translations/it/FEM_SolverElmer.md b/wiki/translations/it/FEM_SolverElmer.md index 84fd73eec2..f68b8ed821 100644 --- a/wiki/translations/it/FEM_SolverElmer.md +++ b/wiki/translations/it/FEM_SolverElmer.md @@ -1,3 +1,4 @@ +# FEM SolverElmer/it --- - GuiCommand:/it Name:FEM SolverElmer Name/it:Risolutore Elmer Icon:Fem-elmer.svg MenuLocation: Solve → Risolutore Elmer |Workbenches:[Shortcut: SeeAlso:[[FEM_SolverCalculiX/it|Risolutore Calculix](FEM_Workbench/it___FEM]].md), [Risolutore Z88](FEM_SolverZ88/it.md), [Tutorial FEM](FEM_tutorial/it.md)--- @@ -112,4 +113,7 @@ The following link gives access to the full [documentation for Elmer](https://ww {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverElmer/it diff --git a/wiki/translations/it/FEM_SolverRun.md b/wiki/translations/it/FEM_SolverRun.md index 7bf5e2d123..514fd4c8c7 100644 --- a/wiki/translations/it/FEM_SolverRun.md +++ b/wiki/translations/it/FEM_SolverRun.md @@ -8,6 +8,8 @@ SeeAlso:[Tutorial di FEM](FEM_tutorial/it.md) --- +# FEM SolverRun/it + @@ -38,4 +40,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverRun/it diff --git a/wiki/translations/it/FEM_SolverZ88.md b/wiki/translations/it/FEM_SolverZ88.md index 50f5425327..7898106841 100644 --- a/wiki/translations/it/FEM_SolverZ88.md +++ b/wiki/translations/it/FEM_SolverZ88.md @@ -1,3 +1,4 @@ +# FEM SolverZ88/it --- - GuiCommand:/it Name:FEM_SolverZ88 Name/it:Risolutore Z88 MenuLocation: Solve → Risolutore Z88 |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -22,4 +23,7 @@ Da fare {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverZ88/it diff --git a/wiki/translations/it/FEM_Tutorial_Python.md b/wiki/translations/it/FEM_Tutorial_Python.md index 66b2597727..f1b685094f 100644 --- a/wiki/translations/it/FEM_Tutorial_Python.md +++ b/wiki/translations/it/FEM_Tutorial_Python.md @@ -1,7 +1,4 @@ # FEM Tutorial Python/it - - - {{TutorialInfo/it |Topic= Analisi agli elementi finiti |Level= Intermedio @@ -626,3 +623,6 @@ Divertitevi! Inoltre, se avete commenti o miglioramenti, non esitate a partecipa }} {{FEM Tools navi}} [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > FEM Tutorial Python/it diff --git a/wiki/translations/it/FEM_Workbench.md b/wiki/translations/it/FEM_Workbench.md index acb8ff9b50..8407f330b2 100644 --- a/wiki/translations/it/FEM_Workbench.md +++ b/wiki/translations/it/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/it - - - - - -L\'icona dell\'ambiente FEM +# L\'icona dell\'ambiente FEM FEM Workbench/it {{TOCright}} @@ -283,3 +277,6 @@ Per aiutare gli utenti a comprendere la complessa base di codici di FreeCAD e le }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/it diff --git a/wiki/translations/it/FEM_project.md b/wiki/translations/it/FEM_project.md index 145153fc51..bd473eb3a8 100644 --- a/wiki/translations/it/FEM_project.md +++ b/wiki/translations/it/FEM_project.md @@ -1,7 +1,4 @@ # FEM project/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -54,3 +51,6 @@ Vedere [Solutore FEM](FEM_Solver/it.md) }} [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > FEM project/it diff --git a/wiki/translations/it/FEM_tutorial.md b/wiki/translations/it/FEM_tutorial.md index d2d7f572ab..212455580d 100644 --- a/wiki/translations/it/FEM_tutorial.md +++ b/wiki/translations/it/FEM_tutorial.md @@ -1,7 +1,4 @@ # FEM tutorial/it - - -
@@ -221,4 +218,7 @@ A questo punto il flusso di lavoro di base per il [Modulo FEM](FEM_Workbench/it. {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM tutorial/it diff --git a/wiki/translations/it/Fasteners_BOM.md b/wiki/translations/it/Fasteners_BOM.md index 483bb26c00..27ce0e3de9 100644 --- a/wiki/translations/it/Fasteners_BOM.md +++ b/wiki/translations/it/Fasteners_BOM.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Fasteners BOM/it + ## Description The [Fasteners BOM](Fasteners_BOM.md) generates a Bill of Materials. This tool is part of the [external workbench](external_workbenches.md) called [Fasteners](Fasteners_Workbench.md). @@ -56,3 +58,6 @@ The [Fasteners BO }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Fasteners BOM/it diff --git a/wiki/translations/it/Fasteners_Workbench.md b/wiki/translations/it/Fasteners_Workbench.md index 8379a29135..aeaa095786 100644 --- a/wiki/translations/it/Fasteners_Workbench.md +++ b/wiki/translations/it/Fasteners_Workbench.md @@ -1,7 +1,4 @@ -# Fasteners Workbench/it - - -Fasteners Workbench icon +# Fasteners Workbench icon Fasteners Workbench/it {{TOCright}} @@ -258,3 +255,6 @@ For a detailed description see Fasteners Workbench/it diff --git a/wiki/translations/it/Fcstd_file_format.md b/wiki/translations/it/Fcstd_file_format.md index 5d440ec25d..efb174edfe 100644 --- a/wiki/translations/it/Fcstd_file_format.md +++ b/wiki/translations/it/Fcstd_file_format.md @@ -1,2 +1,5 @@ # Fcstd file format/it 1. REDIRECT [File\_Format\_FCStd/it](File_Format_FCStd/it.md) + +--- +[documentation index](../README.md) > Fcstd file format/it diff --git a/wiki/translations/it/Feature.md b/wiki/translations/it/Feature.md index fe810cef72..202147acd7 100644 --- a/wiki/translations/it/Feature.md +++ b/wiki/translations/it/Feature.md @@ -1,6 +1,4 @@ # Feature/it - - ## Introduzione In FreeCAD the word \"[Feature](Feature.md)\" is normally used to refer to a [PartDesign Feature](PartDesign_Feature.md) object (`PartDesign::Feature` class) that is defined by the [PartDesign Workbench](PartDesign_Workbench.md). This is an operation or modelling step performed to create or modify a solid [Shape](Shape.md) following the [feature editing](feature_editing.md) paradigm. @@ -32,3 +30,6 @@ In a more specific sense, a \"Feature\" is a modelling step used inside a [PartD }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Feature/it diff --git a/wiki/translations/it/FeaturePython_Custom_Properties.md b/wiki/translations/it/FeaturePython_Custom_Properties.md index 0510d85ff5..fa42dc0e6f 100644 --- a/wiki/translations/it/FeaturePython_Custom_Properties.md +++ b/wiki/translations/it/FeaturePython_Custom_Properties.md @@ -1,5 +1,5 @@ # FeaturePython Custom Properties/it - {{TOCright}} +{{TOCright}}
@@ -1259,3 +1259,6 @@ obj.ThePropertyName // returns {{TODO}}"example value for getter" [Category:API/it](Category:API/it.md) [Category:Developer Documentation/it](Category:Developer_Documentation/it.md) [Category:API](Category:API.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FeaturePython Custom Properties/it diff --git a/wiki/translations/it/FeaturePython_Objects.md b/wiki/translations/it/FeaturePython_Objects.md index 0a0341f7e7..9554bc9fd0 100644 --- a/wiki/translations/it/FeaturePython_Objects.md +++ b/wiki/translations/it/FeaturePython_Objects.md @@ -1,2 +1,5 @@ # FeaturePython Objects/it 1. REDIRECT [Create\_a\_FeaturePython\_object\_part\_I/it](Create_a_FeaturePython_object_part_I/it.md) + +--- +[documentation index](../README.md) > FeaturePython Objects/it diff --git a/wiki/translations/it/FeaturePython_methods.md b/wiki/translations/it/FeaturePython_methods.md index 2a73154bda..e2410174eb 100644 --- a/wiki/translations/it/FeaturePython_methods.md +++ b/wiki/translations/it/FeaturePython_methods.md @@ -1,7 +1,4 @@ # FeaturePython methods/it - - - {{TOCright}} ## Introduzione @@ -79,3 +76,6 @@ Note, getPyObject() and init() are special-cases and don\'t follow the above heu }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FeaturePython methods/it diff --git a/wiki/translations/it/Feature_editing.md b/wiki/translations/it/Feature_editing.md index 7b320de569..2b8d898a06 100644 --- a/wiki/translations/it/Feature_editing.md +++ b/wiki/translations/it/Feature_editing.md @@ -1,5 +1,5 @@ # Feature editing/it - {{TOCright}} +{{TOCright}} ## Introduzione @@ -170,3 +170,6 @@ La pagina [Tutorial](Tutorials/it.md) fornisce alcuni esempi di utilizzo del met }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Feature editing/it diff --git a/wiki/translations/it/Feature_list.md b/wiki/translations/it/Feature_list.md index 98781e9b49..8217311761 100644 --- a/wiki/translations/it/Feature_list.md +++ b/wiki/translations/it/Feature_list.md @@ -1,6 +1,4 @@ # Feature list/it - - Questa è una lista estesa, ma non completa, delle funzioni (feature) già implementate in FreeCAD. Se siete interessati a conoscere gli sviluppi futuri è possibile consultare il [Piano di sviluppo](Development_roadmap/it.md). Per un approccio sommario alle caratteristiche sono anche disponibili gli [screenshot](Screenshots/it.md). @@ -112,3 +110,6 @@ Alcuni utenti esperti hanno creato vari [ambienti complementari](external_workbe [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/it diff --git a/wiki/translations/it/File_Format_FCStd.md b/wiki/translations/it/File_Format_FCStd.md index 628840a420..48d34a5884 100644 --- a/wiki/translations/it/File_Format_FCStd.md +++ b/wiki/translations/it/File_Format_FCStd.md @@ -1,5 +1,5 @@ # File Format FCStd/it - {{TOCright}} +{{TOCright}} ## Overview @@ -199,3 +199,6 @@ Un utile programma convertitore: [ImageConv](ImageConv/it.md). [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > File Format FCStd/it diff --git a/wiki/translations/it/Fine-tuning.md b/wiki/translations/it/Fine-tuning.md index 54ec11eb71..ba5de6c4da 100644 --- a/wiki/translations/it/Fine-tuning.md +++ b/wiki/translations/it/Fine-tuning.md @@ -1,7 +1,4 @@ # Fine-tuning/it - - - {{TOCright}} Questa pagina contiene diversi riferimenti a impostazioni e parametri che è possibile utilizzare per ottimizzare l\'installazione di FreeCAD o superare i problemi. @@ -100,3 +97,6 @@ Any other characters are treated literally. If the resulting filename is illegal [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Fine-tuning/it diff --git a/wiki/translations/it/Flamingo_Workbench.md b/wiki/translations/it/Flamingo_Workbench.md index a0c51a3a6d..b378137d23 100644 --- a/wiki/translations/it/Flamingo_Workbench.md +++ b/wiki/translations/it/Flamingo_Workbench.md @@ -1,5 +1,5 @@ # Flamingo Workbench/it - **Flamingo Workbench (Python2/Qt4) è stato sostituito da Dodo Workbench (Python3/Qt5). Questa pagina wiki evidenzia le differenze tra questi due ambienti. I link indicati qui si riferiscono all'attuale [Dodo](Dodo_Workbench/it.md).** +**Flamingo Workbench (Python2/Qt4) è stato sostituito da Dodo Workbench (Python3/Qt5). Questa pagina wiki evidenzia le differenze tra questi due ambienti. I link indicati qui si riferiscono all'attuale [Dodo](Dodo_Workbench/it.md).** ## Introduzione @@ -568,3 +568,6 @@ Sono in fase di sviluppo ulteriori nuovi ambienti. [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Flamingo Workbench/it diff --git a/wiki/translations/it/FreeCAD-Ship_s60_tutorial.md b/wiki/translations/it/FreeCAD-Ship_s60_tutorial.md index c909e6d96f..6f5d9f275e 100644 --- a/wiki/translations/it/FreeCAD-Ship_s60_tutorial.md +++ b/wiki/translations/it/FreeCAD-Ship_s60_tutorial.md @@ -1,7 +1,4 @@ # FreeCAD-Ship s60 tutorial/it - - - {{TutorialInfo/it |Topic=Ambiente Navale |Level=Base @@ -468,3 +465,6 @@ The [FreeCAD Ship s60 tutorial (II)](FreeCAD-Ship_s60_tutorial_(II).md) is the s {{Ship Tools navi }} + +--- +[documentation index](../README.md) > FreeCAD-Ship s60 tutorial/it diff --git a/wiki/translations/it/FreeCAD-Ship_s60_tutorial_(II).md b/wiki/translations/it/FreeCAD-Ship_s60_tutorial_(II).md index 65f9d2e36c..7445fc0c1b 100644 --- a/wiki/translations/it/FreeCAD-Ship_s60_tutorial_(II).md +++ b/wiki/translations/it/FreeCAD-Ship_s60_tutorial_(II).md @@ -1,7 +1,4 @@ # FreeCAD-Ship s60 tutorial (II)/it - - - {{TutorialInfo/it |Topic=Ambiente Navale |Level= Base @@ -316,3 +313,6 @@ Naturalmente questo esempio non è realistico (anche perché i serbatoi del carb {{Ship Tools navi }} + +--- +[documentation index](../README.md) > FreeCAD-Ship s60 tutorial (II)/it diff --git a/wiki/translations/it/FreeCADGui_API.md b/wiki/translations/it/FreeCADGui_API.md index bf74883f83..827326f20f 100644 --- a/wiki/translations/it/FreeCADGui_API.md +++ b/wiki/translations/it/FreeCADGui_API.md @@ -1,5 +1,5 @@ # FreeCADGui API/it - **(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** +**(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** Questo modulo è la controparte del modulo FreeCAD. Contiene tutto ciò che riguarda l\'interfaccia utente e le viste 3D. Esempio: ```python @@ -70,3 +70,6 @@ gui_doc.activateWorkbench("myWorkbench") [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FreeCADGui API/it diff --git a/wiki/translations/it/FreeCADShip_Workbench.md b/wiki/translations/it/FreeCADShip_Workbench.md index ee22410d77..edb9602947 100644 --- a/wiki/translations/it/FreeCADShip_Workbench.md +++ b/wiki/translations/it/FreeCADShip_Workbench.md @@ -1,2 +1,5 @@ # FreeCADShip Workbench/it 1. REDIRECT [Ship\_Workbench/it](Ship_Workbench/it.md) + +--- +[documentation index](../README.md) > FreeCADShip Workbench/it diff --git a/wiki/translations/it/FreeCAD_API.md b/wiki/translations/it/FreeCAD_API.md index 32a17da875..e6de708487 100644 --- a/wiki/translations/it/FreeCAD_API.md +++ b/wiki/translations/it/FreeCAD_API.md @@ -1,5 +1,5 @@ # FreeCAD API/it - **(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** +**(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** Questo è il modulo principale (root) di FreeCAD. Può anche essere chiamato con \"App\" dall\'interprete FreeCAD. Contiene tutto quello che serve per manipolare i documenti e il loro contenuto (oggetti). @@ -68,3 +68,6 @@ mydoc = FreeCAD.activeDocument() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FreeCAD API/it diff --git a/wiki/translations/it/FreeCAD_Build_Tool.md b/wiki/translations/it/FreeCAD_Build_Tool.md index 7f1aa0793d..e56361b517 100644 --- a/wiki/translations/it/FreeCAD_Build_Tool.md +++ b/wiki/translations/it/FreeCAD_Build_Tool.md @@ -1,7 +1,4 @@ # FreeCAD Build Tool/it - - -
@@ -98,3 +95,6 @@ Il comando \"CM\" [crea un nuovo modulo dell\'applicazione](Module_Creation/it.m [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Build Tool/it diff --git a/wiki/translations/it/FreeCAD_Community_Portal.md b/wiki/translations/it/FreeCAD_Community_Portal.md index ccb7785107..a257105791 100644 --- a/wiki/translations/it/FreeCAD_Community_Portal.md +++ b/wiki/translations/it/FreeCAD_Community_Portal.md @@ -1,6 +1,4 @@ # FreeCAD Community Portal/it - - Questo è il posto dove mettere tutte le cose connesse a FreeCAD! Se si lavora su qualcosa di correlato a FreeCAD, si prega di includerlo qui! @@ -141,3 +139,6 @@ These are FreeCAD community developed workbenches, scripts, macros, and addons f [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > FreeCAD Community Portal/it diff --git a/wiki/translations/it/FreeCAD_Docker_CLI_mode.md b/wiki/translations/it/FreeCAD_Docker_CLI_mode.md index 699a7bd9e1..da654db42f 100644 --- a/wiki/translations/it/FreeCAD_Docker_CLI_mode.md +++ b/wiki/translations/it/FreeCAD_Docker_CLI_mode.md @@ -1,7 +1,4 @@ # FreeCAD Docker CLI mode/it - - -
@@ -93,3 +90,5 @@ FreeCAD forum thread:
+--- +[documentation index](../README.md) > FreeCAD Docker CLI mode/it diff --git a/wiki/translations/it/FreeCAD_Scripting_Basics.md b/wiki/translations/it/FreeCAD_Scripting_Basics.md index 2e70b429dd..6c789f953b 100644 --- a/wiki/translations/it/FreeCAD_Scripting_Basics.md +++ b/wiki/translations/it/FreeCAD_Scripting_Basics.md @@ -1,7 +1,4 @@ # FreeCAD Scripting Basics/it - - - {{TOCright}} ## Script Python in FreeCAD @@ -441,3 +438,6 @@ Per un elenco completo di tutti i moduli e gli strumenti disponibili, consultare }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Scripting Basics/it diff --git a/wiki/translations/it/FreeCAD_and_DWG_Import.md b/wiki/translations/it/FreeCAD_and_DWG_Import.md index e651b759d9..fda476eb6c 100644 --- a/wiki/translations/it/FreeCAD_and_DWG_Import.md +++ b/wiki/translations/it/FreeCAD_and_DWG_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DWG Import/it - {{TOCright}} +{{TOCright}} {{Fake heading|sub=4|< Back to [[FreeCAD Howto Import Export]]}} @@ -208,3 +208,6 @@ In development version as mentioned above you can switch from the proprietary OD [Category:File\_Formats](Category:File_Formats.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > FreeCAD and DWG Import/it diff --git a/wiki/translations/it/FreeCAD_and_DXF_Import.md b/wiki/translations/it/FreeCAD_and_DXF_Import.md index 18fff9e252..d62573c26d 100644 --- a/wiki/translations/it/FreeCAD_and_DXF_Import.md +++ b/wiki/translations/it/FreeCAD_and_DXF_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DXF Import/it - {{TOCright}} +{{TOCright}} ## Background @@ -108,3 +108,6 @@ You can also try: For an overview of all DXF related preferences see [Import Export Preferences](Import_Export_Preferences#DXF.md). [Category:User\_Documentation](Category:User_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > FreeCAD and DXF Import/it diff --git a/wiki/translations/it/FreeCAD_and_Mesh_Import.md b/wiki/translations/it/FreeCAD_and_Mesh_Import.md index 6ef46dedbe..ec3167a36c 100644 --- a/wiki/translations/it/FreeCAD_and_Mesh_Import.md +++ b/wiki/translations/it/FreeCAD_and_Mesh_Import.md @@ -1,7 +1,4 @@ # FreeCAD and Mesh Import/it - - - {{TOCright}} ## Post-Import @@ -88,3 +85,6 @@ Il guscio (shell dell\'oggetto mesh) sembra avere degli errori, forse non è chi - [FreeCAD Howto Import Export](FreeCAD_Howto_Import_Export.md) [Category:User\_Documentation](Category:User_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > FreeCAD and Mesh Import/it diff --git a/wiki/translations/it/FreeCAD_development_model_project.md b/wiki/translations/it/FreeCAD_development_model_project.md index 895b503a39..9828b1e348 100644 --- a/wiki/translations/it/FreeCAD_development_model_project.md +++ b/wiki/translations/it/FreeCAD_development_model_project.md @@ -1,7 +1,4 @@ # FreeCAD development model project/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -68,3 +65,6 @@ Le regole adottate e le informazioni sono contenute nel documento [Modello di sv [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > FreeCAD development model project/it diff --git a/wiki/translations/it/FreeCAD_vector_math_library.md b/wiki/translations/it/FreeCAD_vector_math_library.md index 7cb2bb8be3..e5716eecbf 100644 --- a/wiki/translations/it/FreeCAD_vector_math_library.md +++ b/wiki/translations/it/FreeCAD_vector_math_library.md @@ -1,6 +1,4 @@ # FreeCAD vector math library/it - - ## Introduzione @@ -95,3 +93,6 @@ def project(first, other): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD vector math library/it diff --git a/wiki/translations/it/Frequently_asked_questions.md b/wiki/translations/it/Frequently_asked_questions.md index ef71d768c2..6f46cb91bd 100644 --- a/wiki/translations/it/Frequently_asked_questions.md +++ b/wiki/translations/it/Frequently_asked_questions.md @@ -1,9 +1,4 @@ # Frequently asked questions/it - - - - - In questa pagina sono riunite le domande più frequenti che sono state poste nel forum di FreeCAD. Probabilmente le soluzioni ai problemi e le risposte alle domande relative a FreeCAD si trovano già in questa pagina. Se non è così è possibile utilizzare il [forum di FreeCAD](http://forum.freecadweb.org/viewforum.php?f=3)! ## Installazione @@ -285,3 +280,6 @@ Yes, you can use the core parts of FreeCAD in other applications as long as you [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Frequently asked questions/it diff --git a/wiki/translations/it/Getting_started.md b/wiki/translations/it/Getting_started.md index 005e36d42a..676ee95ce1 100644 --- a/wiki/translations/it/Getting_started.md +++ b/wiki/translations/it/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/it - - - - - - {{TOCright}} ## Prefazione @@ -195,3 +189,6 @@ Infine, una delle più potenti caratteristiche di FreeCAD è l\'ambiente di [scr {{Userdocnavi/it}} [Category:User Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Getting started/it diff --git a/wiki/translations/it/Git_buildpackage.md b/wiki/translations/it/Git_buildpackage.md index 3fecbf77d2..abf98f43db 100644 --- a/wiki/translations/it/Git_buildpackage.md +++ b/wiki/translations/it/Git_buildpackage.md @@ -1,6 +1,4 @@ # Git buildpackage/it - - Modern Debian development workflows involve [packaging with Git](https://wiki.debian.org/PackagingWithGit) and the primary tool for doing that is [git-buildpackage](http://honk.sigxcpu.org/projects/git-buildpackage/manual-html/gbp.html). git-buildpackage provides a gbp command with several options similar to the git command itself. Many of these commands are themselves just a wrapper of lower-level Debian tools, so the complexity to learning packaging can be quite high. To get around that, here are the short & simple steps to getting started with git-buildpackage. This should work on nearly any Debian-based distribution, but I recommend working on this in a clean and separate environment a [Debian Unstable](Debian_Unstable.md) virtual machine. @@ -36,3 +34,6 @@ Location: ~/.quiltrc [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Git buildpackage/it diff --git a/wiki/translations/it/Glossary.md b/wiki/translations/it/Glossary.md index 485da7b6c8..d6f5cb0603 100644 --- a/wiki/translations/it/Glossary.md +++ b/wiki/translations/it/Glossary.md @@ -1,9 +1,4 @@ # Glossary/it - - - - - Questa pagina è un glossario dei termini e delle definizioni comuni in FreeCAD. Vai alla lettera: {{CompactTOC|center=yes}} @@ -1134,3 +1129,6 @@ Vai alla lettera: {{CompactTOC|center=yes}} [Category:Wiki](Category:Wiki.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Wiki](Category:Wiki.md) > Glossary/it diff --git a/wiki/translations/it/Graphviz.md b/wiki/translations/it/Graphviz.md index fd58c66d51..2d09246ce8 100644 --- a/wiki/translations/it/Graphviz.md +++ b/wiki/translations/it/Graphviz.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Graphviz/it diff --git a/wiki/translations/it/Group.md b/wiki/translations/it/Group.md index f7af234b38..27f5fe81af 100644 --- a/wiki/translations/it/Group.md +++ b/wiki/translations/it/Group.md @@ -1,2 +1,5 @@ # Group/it 1. REDIRECT [Std\_Group/it](Std_Group/it.md) + +--- +[documentation index](../README.md) > Group/it diff --git a/wiki/translations/it/GuiCommand_model.md b/wiki/translations/it/GuiCommand_model.md index ad51088d1d..effe82f8eb 100644 --- a/wiki/translations/it/GuiCommand_model.md +++ b/wiki/translations/it/GuiCommand_model.md @@ -10,6 +10,8 @@ Version:0.17 --- +# GuiCommand model/it +
@@ -339,3 +341,6 @@ Optional. }} [Category:Wiki:Example](Category:Wiki:Example.md) + +--- +[documentation index](../README.md) > [API]] and ](Category:API]] and .md) > GuiCommand model/it diff --git a/wiki/translations/it/Gui_Command.md b/wiki/translations/it/Gui_Command.md index 1abf9989b3..7e5d8bb725 100644 --- a/wiki/translations/it/Gui_Command.md +++ b/wiki/translations/it/Gui_Command.md @@ -1,7 +1,4 @@ # Gui Command/it - - -
I comandi dell\'interfaccia grafica dell\'utente (GuiCommand) sono una delle funzioni più importanti di FreeCAD e sono il punto principale di interazione dell\'utente. Ogni volta che l\'utente seleziona una voce del menu o preme un pulsante si attiva un comando Gui. Alcuni degli attributi di un comando grafico sono: @@ -144,4 +141,7 @@ Si spera che questo sia vero per tutti i comandi Gui della [List of Commands](Li {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Gui Command/it diff --git a/wiki/translations/it/Help.md b/wiki/translations/it/Help.md index fb1af7765b..c72eeb00d9 100644 --- a/wiki/translations/it/Help.md +++ b/wiki/translations/it/Help.md @@ -1,6 +1,4 @@ # Help/it - - ## Forum Il primo posto in cui è possibile chiedere aiuto è il [Forum di FreeCAD](https://forum.freecadweb.org/viewforum.php?f=3) (leggere [questo post](https://forum.freecadweb.org/viewtopic.php?f=3&t=2264) prima di porre delle domande). Quando si chiede un aiuto, ricordarsi che è necessario fornire le [informazioni importanti](Important_information/it.md) sul proprio sistema. @@ -58,3 +56,6 @@ Esistono diversi subforum per gli sviluppatori e gli utenti di FreeCAD. Prima di [Category:Help](Category:Help.md) + +--- +[documentation index](../README.md) > [Help](Category:Help.md) > Help/it diff --git a/wiki/translations/it/Help_FreeCAD.md b/wiki/translations/it/Help_FreeCAD.md index 2e75a965cc..bec2ca3597 100644 --- a/wiki/translations/it/Help_FreeCAD.md +++ b/wiki/translations/it/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/it - - ## Introduzione @@ -97,3 +95,6 @@ Scrivere del codice per FreeCAD non è difficile, e non serve alcuna autorizzazi [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command_Reference/it|Guida ai comandi]], in inglese la ](Category:Command_Reference/it|Guida ai comandi]], in inglese la .md) > Help FreeCAD/it diff --git a/wiki/translations/it/HiDPI_support.md b/wiki/translations/it/HiDPI_support.md index 053dd1c346..fb5a437f3b 100644 --- a/wiki/translations/it/HiDPI_support.md +++ b/wiki/translations/it/HiDPI_support.md @@ -1,7 +1,4 @@ # HiDPI support/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -245,3 +242,6 @@ Qt doesn\'t provide the functionality to retrieve that value. So we have to eith [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > HiDPI support/it diff --git a/wiki/translations/it/History.md b/wiki/translations/it/History.md index 5506c4170e..2a95998706 100644 --- a/wiki/translations/it/History.md +++ b/wiki/translations/it/History.md @@ -1,5 +1,5 @@ # History/it - \_\_FORCETOC\_\_ +\_\_FORCETOC\_\_
@@ -228,3 +228,6 @@ In April 2019 the team of core developers was expanded: Jürgen, Werner and Yori
[Category:News](Category:News.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > History/it diff --git a/wiki/translations/it/How_to_install_additional_workbenches.md b/wiki/translations/it/How_to_install_additional_workbenches.md index 8c32157f1a..b243d14f81 100644 --- a/wiki/translations/it/How_to_install_additional_workbenches.md +++ b/wiki/translations/it/How_to_install_additional_workbenches.md @@ -1,5 +1,5 @@ # How to install additional workbenches/it - {{TutorialInfo/it|Topic=Programmazione|Level=Medio|Time=15 minuti|FCVersion=Tutte|Author=[r-frank](User:R-Frank.md)|Files=none}} +{{TutorialInfo/it|Topic=Programmazione|Level=Medio|Time=15 minuti|FCVersion=Tutte|Author=[r-frank](User:R-Frank.md)|Files=none}} ## Descrizione @@ -163,3 +163,6 @@ Per questo esempio, supponiamo di aver scelto [Curves](Curves_Workbench/it.md) c {{Powerdocnavi}} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External Workbenches](Category:External Workbenches.md) > How to install additional workbenches/it diff --git a/wiki/translations/it/How_to_install_macros.md b/wiki/translations/it/How_to_install_macros.md index e5db60dc98..507b9a94dd 100644 --- a/wiki/translations/it/How_to_install_macros.md +++ b/wiki/translations/it/How_to_install_macros.md @@ -1,5 +1,5 @@ # How to install macros/it - {{TutorialInfo/it|Topic=Programmazione e Configurazione|Level=Medio|Time=15 minuti|FCVersion=Tutte|Author=[Mario52](User:Mario52.md)}} +{{TutorialInfo/it|Topic=Programmazione e Configurazione|Level=Medio|Time=15 minuti|FCVersion=Tutte|Author=[Mario52](User:Mario52.md)}} ## Descrizione @@ -466,3 +466,6 @@ e poi cliccare sul pulsante **OK** }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > How to install macros/it diff --git a/wiki/translations/it/IfcOpenShell.md b/wiki/translations/it/IfcOpenShell.md index 2302c0299c..1be2cb2c1b 100644 --- a/wiki/translations/it/IfcOpenShell.md +++ b/wiki/translations/it/IfcOpenShell.md @@ -1,6 +1,4 @@ # IfcOpenShell/it - - ## Descrizione @@ -451,3 +449,6 @@ The IfcOpenShell project has also developed \"IFC Pipeline\", a self-hosted IFC {{FEM Tools navi}} [Category:BIM](Category:BIM.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > IfcOpenShell/it diff --git a/wiki/translations/it/IfcPlusPlus.md b/wiki/translations/it/IfcPlusPlus.md index 25a33a4ab3..7ed4b96826 100644 --- a/wiki/translations/it/IfcPlusPlus.md +++ b/wiki/translations/it/IfcPlusPlus.md @@ -1,6 +1,4 @@ # IfcPlusPlus/it - - ## Descrizione @@ -236,4 +234,7 @@ QT5_ADD_RESOURCES(SimpleViewerExample_RESOURCES_RCC ${RESOURCES}) - German thread: [IfcQuery / IfcPlusPlus selber kompilieren](https://forum.freecadweb.org/viewtopic.php?f=13&t=48648) - {{FEM Tools navi}} + {{FEM Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > IfcPlusPlus/it diff --git a/wiki/translations/it/ImageConv.md b/wiki/translations/it/ImageConv.md index 4fb2bc69be..4abd95e2c1 100644 --- a/wiki/translations/it/ImageConv.md +++ b/wiki/translations/it/ImageConv.md @@ -1,6 +1,4 @@ # ImageConv/it - - **ImageConv** è un programma utilizzato per convertire le immagini da vari formati al formato XPM, che può essere compilato in FreeCAD. ## Building @@ -33,3 +31,6 @@ ImageConv è uno strumento da riga di comando.
[Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > ImageConv/it diff --git a/wiki/translations/it/Image_CreateImagePlane.md b/wiki/translations/it/Image_CreateImagePlane.md index 640ca45b8c..1825ef1f95 100644 --- a/wiki/translations/it/Image_CreateImagePlane.md +++ b/wiki/translations/it/Image_CreateImagePlane.md @@ -8,6 +8,8 @@ SeeAlso:[Apri immagine](Image_Open/it.md), [Scala immagine](Image_Scaling/it.md) --- +# Image CreateImagePlane/it +
@@ -83,4 +85,7 @@ Se inizialmente non viene assegnato alcuno scostamento all\'immagine, la sua pos {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image CreateImagePlane/it diff --git a/wiki/translations/it/Image_Module.md b/wiki/translations/it/Image_Module.md index d44edfd687..9b4c53963d 100644 --- a/wiki/translations/it/Image_Module.md +++ b/wiki/translations/it/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/it 1. REDIRECT [Image\_Workbench/it](Image_Workbench/it.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/it diff --git a/wiki/translations/it/Image_Open.md b/wiki/translations/it/Image_Open.md index bb92fa6a18..f63d7ae2e0 100644 --- a/wiki/translations/it/Image_Open.md +++ b/wiki/translations/it/Image_Open.md @@ -8,6 +8,8 @@ SeeAlso:[Piano immagine](Image_CreateImagePlane/it.md), [Scala immagine](Image_Scaling/it.md) --- +# Image Open/it +
@@ -52,4 +54,7 @@ L\'immagine viene posizionata in una nuova finestra, non nella vista 3D. {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Open/it diff --git a/wiki/translations/it/Image_Scaling.md b/wiki/translations/it/Image_Scaling.md index 737fbd2030..770115b05f 100644 --- a/wiki/translations/it/Image_Scaling.md +++ b/wiki/translations/it/Image_Scaling.md @@ -9,6 +9,8 @@ SeeAlso:[Apri immagine](Image_Open/it.md), [Piano immagine](Image_CreateImagePlane/it.md) --- +# Image Scaling/it + @@ -48,4 +50,7 @@ Lo strumento [Scala immagine](Image_Scaling/it.md) ridimensiona un\'immagine imp {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Scaling/it diff --git a/wiki/translations/it/Image_Workbench.md b/wiki/translations/it/Image_Workbench.md index 51a3a7823b..a3191c2338 100644 --- a/wiki/translations/it/Image_Workbench.md +++ b/wiki/translations/it/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/it - - -L\'icona dell\'ambiente Image +# L\'icona dell\'ambiente Image Image Workbench/it ## Introduzione @@ -39,3 +36,6 @@ L\'offset dell\'immagine può essere impostato durante l\'importazione o modific }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/it diff --git a/wiki/translations/it/Import.md b/wiki/translations/it/Import.md index 0a3346a121..c49a90e0a9 100644 --- a/wiki/translations/it/Import.md +++ b/wiki/translations/it/Import.md @@ -1,7 +1,4 @@ # Import/Export IFC - compiling IfcOpenShell/it - - -
@@ -196,3 +193,6 @@ La discussione nel Forum [qui](http://forum.freecadweb.org/viewtopic.php?f=23&t= [Category:BIM](Category:BIM.md) [Category:Arch](Category:Arch.md) [Category:3rd Party](Category:3rd_Party.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Import/Export IFC - compiling IfcOpenShell/it diff --git a/wiki/translations/it/Import_Export.md b/wiki/translations/it/Import_Export.md index 0a52783db7..86e211b2bf 100644 --- a/wiki/translations/it/Import_Export.md +++ b/wiki/translations/it/Import_Export.md @@ -1,9 +1,4 @@ # Import Export/it - - - - - ## Introduzione @@ -147,3 +142,6 @@ Per maggiori informazioni consultare queste pagine: [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export/it diff --git a/wiki/translations/it/Import_Export_Preference.md b/wiki/translations/it/Import_Export_Preference.md index d37a6c831a..6919da8638 100644 --- a/wiki/translations/it/Import_Export_Preference.md +++ b/wiki/translations/it/Import_Export_Preference.md @@ -1,2 +1,5 @@ # Import Export Preference/it 1. REDIRECT [Import Export Preferences/it](Import_Export_Preferences/it.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preference/it diff --git a/wiki/translations/it/Import_Export_Preferences.md b/wiki/translations/it/Import_Export_Preferences.md index cd743d134b..e6140baabe 100644 --- a/wiki/translations/it/Import_Export_Preferences.md +++ b/wiki/translations/it/Import_Export_Preferences.md @@ -1,7 +1,4 @@ # Import Export Preferences/it - - -
@@ -645,3 +642,6 @@ For the VTK format you can specify the following: [Category:Common Questions](Category:Common_Questions.md) [Category:Preferences](Category:Preferences.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preferences/it diff --git a/wiki/translations/it/Import_OpenSCAD_code.md b/wiki/translations/it/Import_OpenSCAD_code.md index 8cdf8e774a..b0533b1357 100644 --- a/wiki/translations/it/Import_OpenSCAD_code.md +++ b/wiki/translations/it/Import_OpenSCAD_code.md @@ -1,7 +1,4 @@ # Import OpenSCAD code/it - - - {{TutorialInfo/it |Topic= Importare codice OpenSCAD |Level= Base @@ -94,3 +91,6 @@ Qui viene usato il file example005.scad dai (vecchi) esempi OpenSCAD, ma si può - [Preferenze di Importa/Esporta](Import_Export_Preferences/it.md) [Category:OpenSCAD](Category:OpenSCAD.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import OpenSCAD code/it diff --git a/wiki/translations/it/Import_from_STL_or_OBJ.md b/wiki/translations/it/Import_from_STL_or_OBJ.md index 3bea5348b2..c1a3a17748 100644 --- a/wiki/translations/it/Import_from_STL_or_OBJ.md +++ b/wiki/translations/it/Import_from_STL_or_OBJ.md @@ -1,5 +1,5 @@ # Import from STL or OBJ/it - {{TutorialInfo/it +{{TutorialInfo/it |Topic= Importare da STL o OBJ |Level= Base |Time= 30 minuti @@ -149,3 +149,6 @@ Dato che il solido creato in questo modo non ha cronologia e non ha funzioni mod [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import from STL or OBJ/it diff --git a/wiki/translations/it/Import_text_and_geometry_from_Inkscape.md b/wiki/translations/it/Import_text_and_geometry_from_Inkscape.md index d98f37deb5..07075211c3 100644 --- a/wiki/translations/it/Import_text_and_geometry_from_Inkscape.md +++ b/wiki/translations/it/Import_text_and_geometry_from_Inkscape.md @@ -1,5 +1,5 @@ # Import text and geometry from Inkscape/it - {{TutorialInfo/it +{{TutorialInfo/it |Topic= Importare testo e geometria da Inkscape |Level= Base |Time= 30 minuti @@ -50,6 +50,5 @@ Dato che Inkscape e FreeCAD sembrano avere approcci diversi sul modo di applicar Grazie agli utenti \"freecad-heini-1\" e \"herbk\" per la verifica e per aver fornito un prezioso feedback. - - - +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import text and geometry from Inkscape/it diff --git a/wiki/translations/it/Important_information.md b/wiki/translations/it/Important_information.md index 5b0c1c426c..7a9b90de94 100644 --- a/wiki/translations/it/Important_information.md +++ b/wiki/translations/it/Important_information.md @@ -1,6 +1,4 @@ # Important information/it - - ## Overview [Important information](Important_information.md) helps troubleshoot problems in your installation and usage of the program. @@ -22,5 +20,5 @@ The [FreeCAD forum](https://forum.freecadweb.org/viewforum.php?f=3) is the best *align=center|Window with the "[About](Std_About.md)" information in the software. Do not take a picture of this window;
Click the **Copy to clipboard* button to be able to paste the information with your help request.** - - +--- +[documentation index](../README.md) > Important information/it diff --git a/wiki/translations/it/Importing_From_Sketchup.md b/wiki/translations/it/Importing_From_Sketchup.md index 9fc076fe9f..2bfaeed992 100644 --- a/wiki/translations/it/Importing_From_Sketchup.md +++ b/wiki/translations/it/Importing_From_Sketchup.md @@ -1,5 +1,5 @@ # Importing From Sketchup/it - {{Fake heading|sub=4|< Torna a [[FreeCAD Howto Import Export]]}} +{{Fake heading|sub=4|< Torna a [[FreeCAD Howto Import Export]]}} ## Il metodo migliore @@ -30,3 +30,6 @@ Sia Collada (\*.dae) che STL sono formati mesh. Per utilizzare questi file all\' [Category:Common Questions](Category:Common_Questions.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Importing From Sketchup/it diff --git a/wiki/translations/it/InputField.md b/wiki/translations/it/InputField.md index 8f2e20c7d3..23bb79446b 100644 --- a/wiki/translations/it/InputField.md +++ b/wiki/translations/it/InputField.md @@ -1,5 +1,5 @@ # InputField/it - } +} Questa è la documentazione dei widget \'InputField\' di FreeCAD \', che vengono utilizzati nella maggior parte delle finestre di dialogo per la manipolazione dei parametri con le unità. @@ -8,3 +8,6 @@ ToDo\... [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > InputField/it diff --git a/wiki/translations/it/Inspection_Workbench.md b/wiki/translations/it/Inspection_Workbench.md index 2db3809a97..c3e337fd1f 100644 --- a/wiki/translations/it/Inspection_Workbench.md +++ b/wiki/translations/it/Inspection_Workbench.md @@ -1,7 +1,4 @@ # Inspection Workbench/it - - -
@@ -54,3 +51,6 @@ In alternativa utilizzare la macro Inspection Workbench/it diff --git a/wiki/translations/it/Install_on_Linux.md b/wiki/translations/it/Install_on_Linux.md index 0048b88eb4..e7de2cb263 100644 --- a/wiki/translations/it/Install_on_Linux.md +++ b/wiki/translations/it/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/it 1. REDIRECT [Installing\_on\_Linux/it](Installing_on_Linux/it.md) + +--- +[documentation index](../README.md) > Install on Linux/it diff --git a/wiki/translations/it/Install_on_Mac.md b/wiki/translations/it/Install_on_Mac.md index 4effa5aee7..37ec816640 100644 --- a/wiki/translations/it/Install_on_Mac.md +++ b/wiki/translations/it/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/it 1. REDIRECT [Installing\_on\_Mac/it](Installing_on_Mac/it.md) + +--- +[documentation index](../README.md) > Install on Mac/it diff --git a/wiki/translations/it/Install_on_Unix.md b/wiki/translations/it/Install_on_Unix.md index 848bada472..7abf614d42 100644 --- a/wiki/translations/it/Install_on_Unix.md +++ b/wiki/translations/it/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/it 1. REDIRECT [Installing\_on\_Linux/it](Installing_on_Linux/it.md) + +--- +[documentation index](../README.md) > Install on Unix/it diff --git a/wiki/translations/it/Install_on_Windows.md b/wiki/translations/it/Install_on_Windows.md index e0a0807eb1..2b76f26bfe 100644 --- a/wiki/translations/it/Install_on_Windows.md +++ b/wiki/translations/it/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/it 1. REDIRECT [Installing\_on\_Windows/it](Installing_on_Windows/it.md) + +--- +[documentation index](../README.md) > Install on Windows/it diff --git a/wiki/translations/it/Installing.md b/wiki/translations/it/Installing.md index a591cf0879..53d3d81ee9 100644 --- a/wiki/translations/it/Installing.md +++ b/wiki/translations/it/Installing.md @@ -1,2 +1,5 @@ # Installing/it 1. REDIRECT [Installing\_additional\_components/it](Installing_additional_components/it.md) + +--- +[documentation index](../README.md) > Installing/it diff --git a/wiki/translations/it/Installing_Helpfile.md b/wiki/translations/it/Installing_Helpfile.md index d7d0e1e9e7..c3dcb0d742 100644 --- a/wiki/translations/it/Installing_Helpfile.md +++ b/wiki/translations/it/Installing_Helpfile.md @@ -1,6 +1,4 @@ # Installing Helpfile/it - - ## File della Guida di FreeCAD @@ -57,5 +55,5 @@ Difficulties may arise when trying to install the documentation packages on Ubun - Alternatively, you can instead get the development versions of the {{FileName|freecad.qhc}} and {{FileName|freecad.qch}} help files from [GitHub](https://github.com/FreeCAD/FreeCAD/tree/master/src/Doc). You will need to [concatenate](http://man7.org/linux/man-pages/man1/cat.1.html) the .part files together: `cat freecad.qch.part00 freecad.qch.part01 freecad.qch.part02 freecad.qch.part03 > freecad.qch`. - With administrative privileges (e.g., `sudo`), copy or move {{FileName|freecad.qhc}} and {{FileName|freecad.qch}} to {{FileName|/usr/share/doc/freecad-doc/}}. If you are using `freecad-daily`, this will instead be {{FileName|/usr/share/doc/freecad-daily-doc/}}. - - +--- +[documentation index](../README.md) > Installing Helpfile/it diff --git a/wiki/translations/it/Installing_additional_components.md b/wiki/translations/it/Installing_additional_components.md index 9447235966..a48feb17c6 100644 --- a/wiki/translations/it/Installing_additional_components.md +++ b/wiki/translations/it/Installing_additional_components.md @@ -1,10 +1,4 @@ # Installing additional components/it - - - - - - {{TOCright}} ## Introduzione @@ -123,3 +117,6 @@ Il [ODA File Converter](https://www.opendesign.com/guestfiles/oda_file_converter [Category:User Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Installing additional components/it diff --git a/wiki/translations/it/Installing_more_workbenches.md b/wiki/translations/it/Installing_more_workbenches.md index 574b2ea660..19b80d3666 100644 --- a/wiki/translations/it/Installing_more_workbenches.md +++ b/wiki/translations/it/Installing_more_workbenches.md @@ -1,6 +1,4 @@ # Installing more workbenches/it - - ## Introduction Since v0.17 it is easy to add [external workbenches](external_workbenches.md) by using the [Addon Manager](Std_AddonMgr.md). A regular user doesn\'t need to do more than use this tool. @@ -102,3 +100,6 @@ Vedere anche la pagina [Come installare ambienti aggiuntivi](How_to_install_addi }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Installing more workbenches/it diff --git a/wiki/translations/it/Installing_on_Linux.md b/wiki/translations/it/Installing_on_Linux.md index 0cb2d48f5a..8c3ab71861 100644 --- a/wiki/translations/it/Installing_on_Linux.md +++ b/wiki/translations/it/Installing_on_Linux.md @@ -1,9 +1,4 @@ # Installing on Linux/it - - - - - ## Descrizione @@ -377,3 +372,6 @@ Appena terminata l\'installazione di FreeCAD, è ora di [iniziare](Getting_start [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/it diff --git a/wiki/translations/it/Installing_on_Mac.md b/wiki/translations/it/Installing_on_Mac.md index 4a57998a94..6be08e9c4f 100644 --- a/wiki/translations/it/Installing_on_Mac.md +++ b/wiki/translations/it/Installing_on_Mac.md @@ -1,9 +1,4 @@ # Installing on Mac/it - - - - - FreeCAD può essere installato in macOS da un pacchetto .dmg che è possibile trascinare nella cartella Applicazioni: @@ -52,8 +47,5 @@ Attualmente non c\'è un programma di disinstallazione per FreeCAD installato co Se avete installato FreeCAD con homebrew utilizzate semplicemente il comando `brew uninstall freecad`. Tutto qui. - - - - - +--- +[documentation index](../README.md) > Installing on Mac/it diff --git a/wiki/translations/it/Installing_on_Windows.md b/wiki/translations/it/Installing_on_Windows.md index 27f41ebfb6..600492a84f 100644 --- a/wiki/translations/it/Installing_on_Windows.md +++ b/wiki/translations/it/Installing_on_Windows.md @@ -1,7 +1,4 @@ # Installing on Windows/it - - - {{docnav/it |[Funzionalità](Feature_list/it.md) |[Installare in Linux](Installing_on_Linux/it.md) @@ -218,5 +215,5 @@ FreeCAD viene eseguito, ma è stato riferito che OpenGL non funziona, come succe |[Installare in Linux](Installing_on_Linux/it.md) }} - - +--- +[documentation index](../README.md) > Installing on Windows/it diff --git a/wiki/translations/it/Interesting_links.md b/wiki/translations/it/Interesting_links.md index 4be0252fd4..6735760458 100644 --- a/wiki/translations/it/Interesting_links.md +++ b/wiki/translations/it/Interesting_links.md @@ -1,7 +1,4 @@ # Interesting links/it - - - {{TOCright}} @@ -129,3 +126,6 @@ Un\'altra pagina che contiene i link interessanti è il [Portale della comunità [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Interesting links/it diff --git a/wiki/translations/it/Interface.md b/wiki/translations/it/Interface.md index 38a32b5cff..e98084a1d6 100644 --- a/wiki/translations/it/Interface.md +++ b/wiki/translations/it/Interface.md @@ -1,5 +1,5 @@ # Interface/it - {{TOCright}} +{{TOCright}} ## Introduzione @@ -85,4 +85,7 @@ Queste opzioni sono nel menu **Strumenti → Personalizza**. Vedere [Personalizz {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Interface/it diff --git a/wiki/translations/it/Interface_Customization.md b/wiki/translations/it/Interface_Customization.md index 9596ae5028..daa86effc8 100644 --- a/wiki/translations/it/Interface_Customization.md +++ b/wiki/translations/it/Interface_Customization.md @@ -1,7 +1,4 @@ # Interface Customization/it - - -
@@ -307,4 +304,7 @@ I componenti aggiuntivi offrono ancora un altro modo per personalizzare l\'inter {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/it diff --git a/wiki/translations/it/Interface_creation.md b/wiki/translations/it/Interface_creation.md index 06e2523441..967498bebb 100644 --- a/wiki/translations/it/Interface_creation.md +++ b/wiki/translations/it/Interface_creation.md @@ -1,6 +1,4 @@ # Interface creation/it - - ## Introduzione @@ -49,3 +47,6 @@ For examples on this method see [Interface creation completely in Python](Dialog }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Interface creation/it diff --git a/wiki/translations/it/Introduction_to_Python.md b/wiki/translations/it/Introduction_to_Python.md index a885484e6d..d05aee15fe 100644 --- a/wiki/translations/it/Introduction_to_Python.md +++ b/wiki/translations/it/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/it - - - {{TOCright}} ## Introduzione @@ -891,3 +888,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/it diff --git a/wiki/translations/it/Key_ASCII.md b/wiki/translations/it/Key_ASCII.md index 985f2357b5..6f2e9afb74 100644 --- a/wiki/translations/it/Key_ASCII.md +++ b/wiki/translations/it/Key_ASCII.md @@ -1,5 +1,5 @@ # Key ASCII/it - **Pagina da finire** +**Pagina da finire** : type **Alt** + **0** @@ -644,3 +644,6 @@ [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Icon](Category:Icon.md) [Category:Help](Category:Help.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Key ASCII/it diff --git a/wiki/translations/it/KicadStepUp_Workbench.md b/wiki/translations/it/KicadStepUp_Workbench.md index ecd0ba9194..88e168d638 100644 --- a/wiki/translations/it/KicadStepUp_Workbench.md +++ b/wiki/translations/it/KicadStepUp_Workbench.md @@ -1,7 +1,4 @@ -# KicadStepUp Workbench/it - - -KicadStepUp External workbench icon +# KicadStepUp External workbench icon KicadStepUp Workbench/it {{TOCright}} @@ -135,3 +132,6 @@ New workbenches are in development, stay tuned! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > KicadStepUp Workbench/it diff --git a/wiki/translations/it/LGTM.md b/wiki/translations/it/LGTM.md index 9474ea14eb..81a67cb4d6 100644 --- a/wiki/translations/it/LGTM.md +++ b/wiki/translations/it/LGTM.md @@ -1,6 +1,4 @@ # LGTM/it - - ## Descrizione @@ -63,3 +61,6 @@ Also, some classifications (like \'template\' and \'test\') are used by LGTM for - freecad.trails .lgtm.yml on [Github](https://github.com/joelgraff/freecad.trails/blob/dev/.lgtm.yml) [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > LGTM/it diff --git a/wiki/translations/it/Land_Survey_Workbench_Blueprint.md b/wiki/translations/it/Land_Survey_Workbench_Blueprint.md index a5b7dde0c7..0486b81488 100644 --- a/wiki/translations/it/Land_Survey_Workbench_Blueprint.md +++ b/wiki/translations/it/Land_Survey_Workbench_Blueprint.md @@ -1,7 +1,4 @@ # Land Survey Workbench Blueprint/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -63,3 +60,6 @@ Note: the information in this page is based on a shallow understanding of FreeCA [Category:Roadmap](Category:Roadmap.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > Land Survey Workbench Blueprint/it diff --git a/wiki/translations/it/Lattice2_AttachablePlacement.md b/wiki/translations/it/Lattice2_AttachablePlacement.md index d3796ccb56..538cb00c28 100644 --- a/wiki/translations/it/Lattice2_AttachablePlacement.md +++ b/wiki/translations/it/Lattice2_AttachablePlacement.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Lattice2 AttachablePlacement/it + ## Descrizione The [Lattice2 AttachablePlacement](Lattice2_AttachablePlacement.md) command assigns a placement or handle to an object so it can later be referred to by a location. @@ -34,3 +36,6 @@ The [External Command Reference](Category:External Command Reference.md) > Lattice2 AttachablePlacement/it diff --git a/wiki/translations/it/Lattice2_Workbench.md b/wiki/translations/it/Lattice2_Workbench.md index 9f08d91e79..20bca16bab 100644 --- a/wiki/translations/it/Lattice2_Workbench.md +++ b/wiki/translations/it/Lattice2_Workbench.md @@ -1,5 +1,5 @@ # Lattice2 Workbench/it - } +} *align=center|The FreeCAD Lattice2 External Workbench Icon* ## Introduction @@ -155,3 +155,6 @@ After you install the workbench, it should appear at the bottom of list of workb [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Lattice2 Workbench/it diff --git a/wiki/translations/it/Licence.md b/wiki/translations/it/Licence.md index 849fbde51f..103583cb17 100644 --- a/wiki/translations/it/Licence.md +++ b/wiki/translations/it/Licence.md @@ -1,7 +1,4 @@ # Licence/it - - -
@@ -73,3 +70,6 @@ Nevertheless this decision is made only for the core system of FreeCAD. Every wr [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Licence/it diff --git a/wiki/translations/it/Line_drawing_function.md b/wiki/translations/it/Line_drawing_function.md index 8244a178fe..d5a07f1502 100644 --- a/wiki/translations/it/Line_drawing_function.md +++ b/wiki/translations/it/Line_drawing_function.md @@ -1,7 +1,4 @@ # Line drawing function/it - - - {{TOCright}} ## Introduction @@ -515,3 +512,6 @@ Non esitate a scrivere le vostre domande o idee nel [forum](http://forum.freecad Don\'t hesitate to ask questions or share ideas on the [forum](https://forum.freecadweb.org/)! {{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Line drawing function/it diff --git a/wiki/translations/it/LinkSub.md b/wiki/translations/it/LinkSub.md index b22476dec6..d2e4a5bc32 100644 --- a/wiki/translations/it/LinkSub.md +++ b/wiki/translations/it/LinkSub.md @@ -1,6 +1,4 @@ # LinkSub/it - - ## Descrizione Un [LinkSub](LinkSub/it.md) è una struttura dati che viene utilizzata come input per varie funzioni e oggetti; il suo scopo è passare un sottooggetto o sottoelemento (vertice, bordo o faccia) da un oggetto a un altro oggetto che utilizzerà o trasformerà quella geometria. @@ -78,3 +76,6 @@ Il sottoelemento può quindi essere estratto dalla proprietà assegnata e può e {{Powerdocnavi }} + +--- +[documentation index](../README.md) > LinkSub/it diff --git a/wiki/translations/it/LinkSubList.md b/wiki/translations/it/LinkSubList.md index fbfa03d68b..7b19639ead 100644 --- a/wiki/translations/it/LinkSubList.md +++ b/wiki/translations/it/LinkSubList.md @@ -1,6 +1,4 @@ # LinkSubList/it - - ## Descrizione Un [LinkSubList](LinkSubList/it.md) è una struttura dati che viene utilizzata come input per varie funzioni e oggetti; il suo scopo è passare un sottooggetto o sottoelemento (vertice, bordo o faccia) da un oggetto a un altro oggetto che utilizzerà o trasformerà quella geometria. @@ -78,3 +76,6 @@ Il sottoelemento può quindi essere estratto dalla proprietà assegnata e può e {{Powerdocnavi }} + +--- +[documentation index](../README.md) > LinkSubList/it diff --git a/wiki/translations/it/Linux_packaging.md b/wiki/translations/it/Linux_packaging.md index 2e7208e042..f68939ed12 100644 --- a/wiki/translations/it/Linux_packaging.md +++ b/wiki/translations/it/Linux_packaging.md @@ -1,6 +1,4 @@ # Linux packaging/it - - Linux allows packaging in different ways depending on the specific distribution used. Popular formats are Debian packages `.deb`, openSuse and Fedora packages `.rpm`, and the quasi-universal `.AppImage` format. @@ -17,3 +15,6 @@ for Windows and MacOS, see [Packaging](Packaging.md). [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Linux packaging/it diff --git a/wiki/translations/it/List_of_Commands.md b/wiki/translations/it/List_of_Commands.md index 0c6d4571b0..cad9ba44c1 100644 --- a/wiki/translations/it/List_of_Commands.md +++ b/wiki/translations/it/List_of_Commands.md @@ -4,3 +4,6 @@ # Guida ai comandi di FreeCAD Questa categoria contiene le pagine di aiuto per tutti i comandi di FreeCAD. + +--- +[documentation index](../README.md) > List of Commands/it diff --git a/wiki/translations/it/Localisation.md b/wiki/translations/it/Localisation.md index f8d74fffb6..3c71faf49c 100644 --- a/wiki/translations/it/Localisation.md +++ b/wiki/translations/it/Localisation.md @@ -1,7 +1,4 @@ # Localisation/it - - -
@@ -383,3 +380,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/it diff --git a/wiki/translations/it/Localisation_Sidebar.md b/wiki/translations/it/Localisation_Sidebar.md index b4a13e9c4d..0715d66459 100644 --- a/wiki/translations/it/Localisation_Sidebar.md +++ b/wiki/translations/it/Localisation_Sidebar.md @@ -1,5 +1,5 @@ # Localisation Sidebar/it - [Localizzazione](Localisation/it.md) è il processo che permette di fornire un software con un\'interfaccia utente in più lingue. La wiki della documentazione può anche essere localizzata, come descritto in [Tradurre il wiki di FreeCAD](Localisation/it#Tradurre_il_wiki.md). +[Localizzazione](Localisation/it.md) è il processo che permette di fornire un software con un\'interfaccia utente in più lingue. La wiki della documentazione può anche essere localizzata, come descritto in [Tradurre il wiki di FreeCAD](Localisation/it#Tradurre_il_wiki.md). In un wiki, la sidebar (barra di navigazione laterale) è uno strumento molto importante, come documentato in [Manual:Interface/Sidebar](http://www.mediawiki.org/wiki/Manual:Interface/Sidebar). @@ -34,3 +34,6 @@ Non aggiungere i codici lingua \"/ fr\", \"/ de\", \"/ es\", \"/ ru\", ecc., se [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation Sidebar/it diff --git a/wiki/translations/it/Localization_Older_Methods.md b/wiki/translations/it/Localization_Older_Methods.md index bc420c6ab3..3b253329b9 100644 --- a/wiki/translations/it/Localization_Older_Methods.md +++ b/wiki/translations/it/Localization_Older_Methods.md @@ -1,7 +1,4 @@ # Localization Older Methods/it - - - {{docnav/it |[Branding](Branding/it.md) |[Extra python module](Extra_python_modules/it.md) @@ -156,3 +153,6 @@ e eseguire pyrcc4 Draft.qrc -o qrc\_Draft.py che crea un grande file Python cont [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localization Older Methods/it diff --git a/wiki/translations/it/MIBA.md b/wiki/translations/it/MIBA.md index 496ec668c3..72dfd616c5 100644 --- a/wiki/translations/it/MIBA.md +++ b/wiki/translations/it/MIBA.md @@ -1,6 +1,4 @@ # MIBA/it - - ## Introduction @@ -63,3 +61,6 @@ App.closeDocument(App.ActiveDocument.Name) ``` [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > MIBA/it diff --git a/wiki/translations/it/MOOC_Workbench.md b/wiki/translations/it/MOOC_Workbench.md index bc1b5b00b4..fc4979ff62 100644 --- a/wiki/translations/it/MOOC_Workbench.md +++ b/wiki/translations/it/MOOC_Workbench.md @@ -1,5 +1,4 @@ -# MOOC Workbench/it - +# MOOC Workbench/it *align=center|The FreeCAD MOOC External Workbench Icon* ## Descrizione @@ -93,3 +92,6 @@ Sono in fase di sviluppo ulteriori nuovi ambienti. [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > MOOC Workbench/it diff --git a/wiki/translations/it/Macro_3D_Parametric_Curve.md b/wiki/translations/it/Macro_3D_Parametric_Curve.md index 52e05a5726..855967fb00 100644 --- a/wiki/translations/it/Macro_3D_Parametric_Curve.md +++ b/wiki/translations/it/Macro_3D_Parametric_Curve.md @@ -1,5 +1,5 @@ # Macro 3D Parametric Curve/it - {{Macro/it +{{Macro/it |Name=Macro 3D Parametric Curve |Icon=Macro_3D_Parametric_Curve.png |Translate=Macro 3D Parametric Curve @@ -209,6 +209,5 @@ ParamCurv() }} - - - +--- +[documentation index](../README.md) > Macro 3D Parametric Curve/it diff --git a/wiki/translations/it/Macro_3d_Printer_Slicer.md b/wiki/translations/it/Macro_3d_Printer_Slicer.md index 030f82929b..4316c32db2 100644 --- a/wiki/translations/it/Macro_3d_Printer_Slicer.md +++ b/wiki/translations/it/Macro_3d_Printer_Slicer.md @@ -1,5 +1,5 @@ # Macro 3d Printer Slicer/it - {{Macro/it +{{Macro/it |Name=Macro_3d_Printer_Slicer |Icon=Macro_3d_Printer_Slicer.png |Translate=Slicer per stampanti 3D @@ -86,4 +86,7 @@ subprocess.Popen([SLICER + "KISSlicer", stlFile]) Grazie a [Wmayer](http://forum.freecadweb.org/viewtopic.php?f=10&t=4686) per il suo aiuto nella stesura di questo script. -Discussione nel forum : +Discussione nel forum : + +--- +[documentation index](../README.md) > Macro 3d Printer Slicer/it diff --git a/wiki/translations/it/Macro_3d_Printer_Slicer_Individual_Parts.md b/wiki/translations/it/Macro_3d_Printer_Slicer_Individual_Parts.md index 3feca9a3d5..ac952e64ad 100644 --- a/wiki/translations/it/Macro_3d_Printer_Slicer_Individual_Parts.md +++ b/wiki/translations/it/Macro_3d_Printer_Slicer_Individual_Parts.md @@ -1,5 +1,5 @@ # Macro 3d Printer Slicer Individual Parts/it - {{Macro/it +{{Macro/it |Name=Macro 3d Printer Slicer Individual Parts |Name/it=Macro 3d Printer Slicer Individual Parts |Icon=Macro_3d_Printer_Slicer_Individual_Parts.svg @@ -84,4 +84,7 @@ subprocess.Popen(stlFiles) Grazie a cae2100 per aver sviluppato il codice macro originale - [also available here](Macro_3d_Printer_Slicer/it.md). Thanks to [Wmayer](http://forum.freecadweb.org/viewtopic.php?f=10&t=4686) for his help in writing this script. -Original forum topic: +Original forum topic: + +--- +[documentation index](../README.md) > Macro 3d Printer Slicer Individual Parts/it diff --git a/wiki/translations/it/Macro_Airfoil_Import_&_Scale.md b/wiki/translations/it/Macro_Airfoil_Import_&_Scale.md index 8325bfc65b..227ae106c8 100644 --- a/wiki/translations/it/Macro_Airfoil_Import_&_Scale.md +++ b/wiki/translations/it/Macro_Airfoil_Import_&_Scale.md @@ -1,5 +1,5 @@ # Macro Airfoil Import & Scale/it - {{Macro/it +{{Macro/it |Name=Macro Airfoil Import & Scale |Icon=Macro_Airfoil_Import_&_Scale.png |Translate=Importa & Scala profilo alare @@ -539,3 +539,6 @@ p() La discussione nel [Forum](http://forum.freecadweb.org/viewtopic.php?f=22&t=5554&p=45137&hilit=Airfoil#p45137) [UIUC Applied Aerodynamics Group Departement of Aerospace Engineering](http://aerospace.illinois.edu/m-selig/ads/coord_database.html#N) + +--- +[documentation index](../README.md) > Macro Airfoil Import & Scale/it diff --git a/wiki/translations/it/Macro_Alias_Manager.md b/wiki/translations/it/Macro_Alias_Manager.md index 78f7208306..2646ca296f 100644 --- a/wiki/translations/it/Macro_Alias_Manager.md +++ b/wiki/translations/it/Macro_Alias_Manager.md @@ -1,5 +1,5 @@ # Macro Alias Manager/it - {{Macro/it +{{Macro/it |Name=Alias Manager |Icon=aliasmanager_icon.png |Description=Aiuta a gestire gli alias all'interno dell'ambiente Foglio di calcolo di FreeCAD . È in grado di creare, cancellare, spostare gli alias e creare una 'famiglia di parti'. @@ -403,6 +403,5 @@ ToolBar Icon self.dialog2.exec_() p() - - - +--- +[documentation index](../README.md) > Macro Alias Manager/it diff --git a/wiki/translations/it/Macro_Align_Camera_to_Working_Plane.md b/wiki/translations/it/Macro_Align_Camera_to_Working_Plane.md index 961d662b68..a799fd0941 100644 --- a/wiki/translations/it/Macro_Align_Camera_to_Working_Plane.md +++ b/wiki/translations/it/Macro_Align_Camera_to_Working_Plane.md @@ -1,7 +1,4 @@ # Macro Align Camera to Working Plane/it - - - {{Macro/it |Name=Macro Align Camera to Working Plane |Icon=Macro_Align_Camera_to_Working_Plane.png @@ -53,6 +50,5 @@ r = FreeCAD.DraftWorkingPlane.getRotation().Rotation.Q c.orientation.setValue(r) ``` - - - +--- +[documentation index](../README.md) > Macro Align Camera to Working Plane/it diff --git a/wiki/translations/it/Macro_Align_Face_Object_to_View.md b/wiki/translations/it/Macro_Align_Face_Object_to_View.md index cb3749a1c7..56aebd83e1 100644 --- a/wiki/translations/it/Macro_Align_Face_Object_to_View.md +++ b/wiki/translations/it/Macro_Align_Face_Object_to_View.md @@ -1,7 +1,4 @@ # Macro Align Face Object to View/it - - - {{Macro/it |Name=Macro Align Face Object to View |Icon=Macro_Align_Face_Object_to_View.png @@ -71,6 +68,5 @@ except Exception: Original macro by wmayer [Looking for some helpful GUI-commands](http://forum.freecadweb.org/viewtopic.php?f=3&t=7029&p=56735&hilit=Shape.Face4#p56735) - - - +--- +[documentation index](../README.md) > Macro Align Face Object to View/it diff --git a/wiki/translations/it/Macro_Align_Object_to_View.md b/wiki/translations/it/Macro_Align_Object_to_View.md index fa5d762011..4236bfff7c 100644 --- a/wiki/translations/it/Macro_Align_Object_to_View.md +++ b/wiki/translations/it/Macro_Align_Object_to_View.md @@ -1,5 +1,5 @@ # Macro Align Object to View/it - {{Macro/it +{{Macro/it |Name=Macro Align Object to View |Icon=Macro_Align_Object_to_View.png |Translate=Alinea l'obietto su la vista @@ -81,6 +81,5 @@ Image:Macro Align Object to View 03.png\|Selezionare l\'oggetto ed eseguire la m Grazie a rentlau\_64 per il codice semplificato - - - +--- +[documentation index](../README.md) > Macro Align Object to View/it diff --git a/wiki/translations/it/Macro_Align_View_to_Face.md b/wiki/translations/it/Macro_Align_View_to_Face.md index 8f3c3ef94e..7a7982263b 100644 --- a/wiki/translations/it/Macro_Align_View_to_Face.md +++ b/wiki/translations/it/Macro_Align_View_to_Face.md @@ -1,5 +1,5 @@ # Macro Align View to Face/it - {{Macro/it +{{Macro/it |Name=Macro Align View to Face |Icone=Macro_Align_View_to_Face.png |Translate=Allinea la vista alla faccia @@ -77,3 +77,6 @@ cam.orientation.setValue(rot.Q) Gui.SendMsgToActiveView("ViewSelection") }} + +--- +[documentation index](../README.md) > Macro Align View to Face/it diff --git a/wiki/translations/it/Macro_Align_Working_Plane_to_Camera.md b/wiki/translations/it/Macro_Align_Working_Plane_to_Camera.md index db46c52856..3529d7fdfb 100644 --- a/wiki/translations/it/Macro_Align_Working_Plane_to_Camera.md +++ b/wiki/translations/it/Macro_Align_Working_Plane_to_Camera.md @@ -1,7 +1,4 @@ # Macro Align Working Plane to Camera/it - - - {{Macro/it |Name=Macro Align Working Plane to Camera |Icon=Macro_Align_Working_Plane_to_Camera.png @@ -54,6 +51,5 @@ FreeCAD.DraftWorkingPlane.position = pos FreeCADGui.Snapper.setGrid() ``` - - - +--- +[documentation index](../README.md) > Macro Align Working Plane to Camera/it diff --git a/wiki/translations/it/Macro_Animated_Constrain.md b/wiki/translations/it/Macro_Animated_Constrain.md index 2477af1d9d..27b5e11911 100644 --- a/wiki/translations/it/Macro_Animated_Constrain.md +++ b/wiki/translations/it/Macro_Animated_Constrain.md @@ -1,5 +1,5 @@ # Macro Animated Constrain/it - {{Macro/it +{{Macro/it |Name=Animated Constrain |Icon=Macro_Animated_Constrain.png |Translate=Anima i vincoli @@ -147,6 +147,5 @@ La pagina della discussione [Animated Constrain Macro](http://forum.freecadweb.o [Vedere l\'animazione su YouTube.](https://www.youtube.com/watch?v=kmqDcomLnk0) - - - +--- +[documentation index](../README.md) > Macro Animated Constrain/it diff --git a/wiki/translations/it/Macro_Apothem_Based_Prism_GUI.md b/wiki/translations/it/Macro_Apothem_Based_Prism_GUI.md index 83e9e319a6..1756840de5 100644 --- a/wiki/translations/it/Macro_Apothem_Based_Prism_GUI.md +++ b/wiki/translations/it/Macro_Apothem_Based_Prism_GUI.md @@ -1,5 +1,5 @@ # Macro Apothem Based Prism GUI/it - {{Macro/it +{{Macro/it |Name=Apothem Based Prism |Translate=Prisma da apotema |Icon=Part Prism Apothem.svg @@ -127,4 +127,7 @@ L\'icona SVG da usare per il collegamento nella barra degli strumenti personaliz ## Ringraziamenti -Un grazie al principale sviluppatore di FreeCAD [shoogen](http://forum.freecadweb.org/memberlist.php?mode=viewprofile&u=765) e al programmatore di FreeCAD [wandererfan](http://forum.freecadweb.org/memberlist.php?mode=viewprofile&u=1375) per il loro prezioso aiuto e consulenza nella costruzione di questo Macro. +Un grazie al principale sviluppatore di FreeCAD [shoogen](http://forum.freecadweb.org/memberlist.php?mode=viewprofile&u=765) e al programmatore di FreeCAD [wandererfan](http://forum.freecadweb.org/memberlist.php?mode=viewprofile&u=1375) per il loro prezioso aiuto e consulenza nella costruzione di questo Macro. + +--- +[documentation index](../README.md) > Macro Apothem Based Prism GUI/it diff --git a/wiki/translations/it/Macro_Arch_Axis_System_Repartition.md b/wiki/translations/it/Macro_Arch_Axis_System_Repartition.md index 6dfaf7ef89..15804bdd21 100644 --- a/wiki/translations/it/Macro_Arch_Axis_System_Repartition.md +++ b/wiki/translations/it/Macro_Arch_Axis_System_Repartition.md @@ -1,5 +1,5 @@ # Macro Arch Axis System Repartition/it - {{Macro/it +{{Macro/it |Name=Macro Arch Axis System Repartition |Translate=Sistema di assi |Icon=Macro_Arch_Axis_System_Repartition.png @@ -276,6 +276,5 @@ ToolBar Icon ![](images/Macro_Arch_Axis_System_Repartition.png ) - [Macro\_PartsLibrary](Macro_PartsLibrary.md) libreria delle Parti di FreeCAD - Github [Macro wood galaxy](https://github.com/wood-galaxy/FreeCAD-scripts) - - - +--- +[documentation index](../README.md) > Macro Arch Axis System Repartition/it diff --git a/wiki/translations/it/Macro_ArrayCopy.md b/wiki/translations/it/Macro_ArrayCopy.md index ffb9e0b574..266d14e9d1 100644 --- a/wiki/translations/it/Macro_ArrayCopy.md +++ b/wiki/translations/it/Macro_ArrayCopy.md @@ -1,5 +1,5 @@ # Macro ArrayCopy/it - {{Macro/it +{{Macro/it |Name=ArrayCopy |Icon=Macro_ArrayCopy.png |Translate=Serie di copie @@ -84,3 +84,5 @@ dialog.show() }} +--- +[documentation index](../README.md) > Macro ArrayCopy/it diff --git a/wiki/translations/it/Macro_Assemblage_Imprimante_3D.md b/wiki/translations/it/Macro_Assemblage_Imprimante_3D.md index a03492d559..60bfe486a0 100644 --- a/wiki/translations/it/Macro_Assemblage_Imprimante_3D.md +++ b/wiki/translations/it/Macro_Assemblage_Imprimante_3D.md @@ -1,5 +1,5 @@ # Macro Assemblage Imprimante 3D/it - {{Macro/it +{{Macro/it |Name=Macro_Assemblage_Imprimante_3D |Icon=Macro_Assemblage_Imprimante_3D.png |Translate=Simulazione stampante 3D @@ -112,4 +112,7 @@ animation = Animation() La pagina della discussione nel forum: [Je galere pour tourner une piece](http://forum.freecadweb.org/viewtopic.php?f=12&t=11782) -Il canale Youtube dell\'autore della macro [FreeCAD: Gear Animation Tutorial](https://www.youtube.com/watch?v=KynMmsLJXV0) e il suo [blog](http://linuxforanengineer.blogspot.com.es/p/me.html) +Il canale Youtube dell\'autore della macro [FreeCAD: Gear Animation Tutorial](https://www.youtube.com/watch?v=KynMmsLJXV0) e il suo [blog](http://linuxforanengineer.blogspot.com.es/p/me.html) + +--- +[documentation index](../README.md) > Macro Assemblage Imprimante 3D/it diff --git a/wiki/translations/it/Macro_Assembly.md b/wiki/translations/it/Macro_Assembly.md index accc266a0e..1c192785c7 100644 --- a/wiki/translations/it/Macro_Assembly.md +++ b/wiki/translations/it/Macro_Assembly.md @@ -1,5 +1,5 @@ # Macro Assembly/it - {{Macro/it +{{Macro/it |Name=Simulazione di assemblaggio |Icon=Macro_Assembly.png |Description=Animazione di un assemblaggio con FreeCad e Python. @@ -296,4 +296,7 @@ startAnimation() La pagina della discussione [FreeCad Python assembly animation](http://forum.freecadweb.org/viewtopic.php?f=22&t=7256) -[Vedere l\'animazione su YouTube.](http://youtu.be/5Ik2Bh4wXYg) +[Vedere l\'animazione su YouTube.](http://youtu.be/5Ik2Bh4wXYg) + +--- +[documentation index](../README.md) > Macro Assembly/it diff --git a/wiki/translations/it/Macro_Automatic_drawing.md b/wiki/translations/it/Macro_Automatic_drawing.md index 08c850a70a..b7abf4366e 100644 --- a/wiki/translations/it/Macro_Automatic_drawing.md +++ b/wiki/translations/it/Macro_Automatic_drawing.md @@ -1,5 +1,5 @@ # Macro Automatic drawing/it - {{Macro/it +{{Macro/it |Name=Automatic drawing |Translate=Proiezioni Automatiche |Icon=Macro_Automatic_drawing.png @@ -124,3 +124,6 @@ App.activeDocument().AutoDrawing.addObject(App.activeDocument().IsoView) ## Link Nel forum [Automatic drawing](https://forum.freecadweb.org/viewtopic.php?f=8&t=3361) + +--- +[documentation index](../README.md) > Macro Automatic drawing/it diff --git a/wiki/translations/it/Macro_BOLTS.md b/wiki/translations/it/Macro_BOLTS.md index 0db0afba48..f169bf4e7d 100644 --- a/wiki/translations/it/Macro_BOLTS.md +++ b/wiki/translations/it/Macro_BOLTS.md @@ -1,5 +1,5 @@ # Macro BOLTS/it - {{Macro/it +{{Macro/it |Name=BOLTS |Translate=BOLTS |Icon=Macro_BOLTS.png @@ -42,3 +42,6 @@ Le istruzioni dettagliate si trovano nella [Documentation section](https://githu ## Contribuire Una libreria di Parti che sia utile per una vasta gamma di persone può essere realizzata solo attraverso uno sforzo della comunità. Ci sono molte possibilità e diversi modi per [contribuire](https://boltsparts.github.io/en/contribute.html) a BOLTS. + +--- +[documentation index](../README.md) > Macro BOLTS/it diff --git a/wiki/translations/it/Macro_BoundingBox_Tracing.md b/wiki/translations/it/Macro_BoundingBox_Tracing.md index 20ca66115a..96977ad30e 100644 --- a/wiki/translations/it/Macro_BoundingBox_Tracing.md +++ b/wiki/translations/it/Macro_BoundingBox_Tracing.md @@ -1,5 +1,5 @@ # Macro BoundingBox Tracing/it - {{Macro/it +{{Macro/it |Name=Macro BoundingBox Tracing |Translate=Traccia contenitore |Icon=BoundBoxTracing.png @@ -454,3 +454,6 @@ ver 0.6 le 08/08/2017: aggiunto testo info dimensioni , contener per retangoli, ver 0.5 le 08/05/2017 : upgrade adesso acceta gli elementi \"mesh\" e \"Points\" grazie wmayer [Makro Bounding-Box für STL importierte Teile und für Punktewolken](http://forum.freecadweb.org/viewtopic.php?f=13&t=22331) ver 0.4 il 04/06/2016 : testo se value = 0 allora non crea il boundbox (esempio: obietto Draft) + +--- +[documentation index](../README.md) > Macro BoundingBox Tracing/it diff --git a/wiki/translations/it/Macro_Build_Utility.md b/wiki/translations/it/Macro_Build_Utility.md index e686221343..1c7b41f97d 100644 --- a/wiki/translations/it/Macro_Build_Utility.md +++ b/wiki/translations/it/Macro_Build_Utility.md @@ -1,5 +1,5 @@ # Macro Build Utility/it - {{Macro/it +{{Macro/it |Name=Macro Build Utility |Translate=Build Utility |Description=Questa macro fornisce delle utilità di costruzione per assemblare più file di progetto in un unico file. @@ -279,6 +279,5 @@ metal``` ./externalModules/red/level3/yellow ``` - - - +--- +[documentation index](../README.md) > Macro Build Utility/it diff --git a/wiki/translations/it/Macro_Cabinets32.md b/wiki/translations/it/Macro_Cabinets32.md index 85fea732e1..883bfedad6 100644 --- a/wiki/translations/it/Macro_Cabinets32.md +++ b/wiki/translations/it/Macro_Cabinets32.md @@ -1,5 +1,5 @@ # Macro Cabinets32/it - {{Macro/it +{{Macro/it |Name=Cabinets32 |Icon=Macro_Cabinets32.png |Description=Foratura per armadi System32. @@ -556,6 +556,5 @@ if guiok: - [Macro\_PartsLibrary](Macro_PartsLibrary.md) FreeCAD Library - - - +--- +[documentation index](../README.md) > Macro Cabinets32/it diff --git a/wiki/translations/it/Macro_CartoucheFC.md b/wiki/translations/it/Macro_CartoucheFC.md index a24d272771..9a2636a777 100644 --- a/wiki/translations/it/Macro_CartoucheFC.md +++ b/wiki/translations/it/Macro_CartoucheFC.md @@ -1,7 +1,4 @@ # Macro CartoucheFC/it - - -
@@ -970,6 +967,5 @@ Questo modulo funziona con il foglio di disegno incluso in FreeCAD che si chiama ver 0.3 02/07/2014 converted to PyQt4 and PySide - - - +--- +[documentation index](../README.md) > Macro CartoucheFC/it diff --git a/wiki/translations/it/Macro_CartoucheFC_2.md b/wiki/translations/it/Macro_CartoucheFC_2.md index a06e8d2e3b..4c1238426f 100644 --- a/wiki/translations/it/Macro_CartoucheFC_2.md +++ b/wiki/translations/it/Macro_CartoucheFC_2.md @@ -1,7 +1,4 @@ # Macro CartoucheFC 2/it - - -
@@ -718,3 +715,6 @@ MainWindow.show() ## Versione 5.0 : 08/08/2014 + +--- +[documentation index](../README.md) > Macro CartoucheFC 2/it diff --git a/wiki/translations/it/Macro_CartoucheFC_Full.md b/wiki/translations/it/Macro_CartoucheFC_Full.md index e9467802e5..5eb8710246 100644 --- a/wiki/translations/it/Macro_CartoucheFC_Full.md +++ b/wiki/translations/it/Macro_CartoucheFC_Full.md @@ -1,7 +1,4 @@ # Macro CartoucheFC Full/it - - -
@@ -1194,6 +1191,5 @@ ver 00.06 : 13/10/2016 : selezionare il formato della pagine questa selezione im ver 5 : 08/08/2014 PyQt4 e PySide - - - +--- +[documentation index](../README.md) > Macro CartoucheFC Full/it diff --git a/wiki/translations/it/Macro_CenterFace.md b/wiki/translations/it/Macro_CenterFace.md index bd9c09e5b6..51d8ae73d5 100644 --- a/wiki/translations/it/Macro_CenterFace.md +++ b/wiki/translations/it/Macro_CenterFace.md @@ -1,5 +1,5 @@ # Macro CenterFace/it - {{Macro/it +{{Macro/it |Name=Macro CenterFace |Translate=Centro faccia |Icon=CenterFace.png @@ -149,6 +149,5 @@ ver 0.2 07/10/2018 : aggiornamento verso FC 017 \"getGlobalPlacement\" ver 0.1 29/04/2014 - - - +--- +[documentation index](../README.md) > Macro CenterFace/it diff --git a/wiki/translations/it/Macro_CenterOfMass.md b/wiki/translations/it/Macro_CenterOfMass.md index 4ddd21a261..9d26d37af3 100644 --- a/wiki/translations/it/Macro_CenterOfMass.md +++ b/wiki/translations/it/Macro_CenterOfMass.md @@ -1,7 +1,4 @@ # Macro CenterOfMass/it - - -
@@ -86,3 +83,6 @@ La discussione nel forum [Macro to compute center of mass](https://forum.freecad 0.2.3 / 2018-11-22 : new icon name 0.1.2 / 2018-11-10 : xx + +--- +[documentation index](../README.md) > Macro CenterOfMass/it diff --git a/wiki/translations/it/Macro_Center_Align_Objects_with_Faces_or_Edges.md b/wiki/translations/it/Macro_Center_Align_Objects_with_Faces_or_Edges.md index 5786711f2d..89fb3bf33d 100644 --- a/wiki/translations/it/Macro_Center_Align_Objects_with_Faces_or_Edges.md +++ b/wiki/translations/it/Macro_Center_Align_Objects_with_Faces_or_Edges.md @@ -1,5 +1,5 @@ # Macro Center Align Objects with Faces or Edges/it - **Ora questi strumenti sono inclusi nell'ambiente [Manipulator](Manipulator_Workbench/it.md). Installare questo workbench per gli ultimi aggiornamenti su questi strumenti.** +**Ora questi strumenti sono inclusi nell'ambiente [Manipulator](Manipulator_Workbench/it.md). Installare questo workbench per gli ultimi aggiornamenti su questi strumenti.**
@@ -106,6 +106,5 @@ Per maggiori informazioni vedere la pagina [Come installare le macro](How_to_ins Nel forum : [Faces or Edges constraint among non cylindrical parts Macro](http://forum.freecadweb.org/viewtopic.php?f=22&t=18655) - - - +--- +[documentation index](../README.md) > Macro Center Align Objects with Faces or Edges/it diff --git a/wiki/translations/it/Macro_Circle.md b/wiki/translations/it/Macro_Circle.md index 4af9985012..3deb46a54a 100644 --- a/wiki/translations/it/Macro_Circle.md +++ b/wiki/translations/it/Macro_Circle.md @@ -1,5 +1,5 @@ # Macro Circle/it - {{Macro/it +{{Macro/it |Name=Macro Circle |Translate=Cerchio |Icon=Macro_Circle.png @@ -172,3 +172,6 @@ ver 0.4 19/06/2019 : upgrade ver 0.19 ver 0.3 10/06/2018 : replace /2 to /2.0 (float) ver 0.2 24/02/2015 : agiunto function \"**placemObject**\" + +--- +[documentation index](../README.md) > Macro Circle/it diff --git a/wiki/translations/it/Macro_CirclePlus.md b/wiki/translations/it/Macro_CirclePlus.md index 6a62d30c40..a2fd250c3d 100644 --- a/wiki/translations/it/Macro_CirclePlus.md +++ b/wiki/translations/it/Macro_CirclePlus.md @@ -1,5 +1,5 @@ # Macro CirclePlus/it - {{Macro/it +{{Macro/it |Name=Macro CirclePlus |Translate=Cerchio con opzione |Icon=Macro_CirclePlus.png @@ -98,3 +98,6 @@ ver 0.1 , 2018-07-14 : add create segment ver 0.0 , 2018-07-10 : [Category:Macros Needing Review](Category:Macros_Needing_Review.md) + +--- +[documentation index](../README.md) > Macro CirclePlus/it diff --git a/wiki/translations/it/Macro_CircularText.md b/wiki/translations/it/Macro_CircularText.md index d30033a4fd..355dd77e6e 100644 --- a/wiki/translations/it/Macro_CircularText.md +++ b/wiki/translations/it/Macro_CircularText.md @@ -1,2 +1,5 @@ # Macro CircularText/it 1. REDIRECT [Macro\_FCCircularText/it](Macro_FCCircularText/it.md) + +--- +[documentation index](../README.md) > Macro CircularText/it diff --git a/wiki/translations/it/Macro_CloneConvert.md b/wiki/translations/it/Macro_CloneConvert.md index 475e1a906a..ce6b080941 100644 --- a/wiki/translations/it/Macro_CloneConvert.md +++ b/wiki/translations/it/Macro_CloneConvert.md @@ -1,7 +1,4 @@ # Macro CloneConvert/it - - -
@@ -183,3 +180,6 @@ Scaricare la macro da Gist [Macro\_CloneConvert.FCMacro](https://gist.github.com 02/07/2014 ver. 0.3 = modified to operate PyQt4 and PySide 09/05/2014 ver. 0.2 = adding function \"Copy\" + +--- +[documentation index](../README.md) > Macro CloneConvert/it diff --git a/wiki/translations/it/Macro_Compound_Plus.md b/wiki/translations/it/Macro_Compound_Plus.md index a92efc3673..d1324b1611 100644 --- a/wiki/translations/it/Macro_Compound_Plus.md +++ b/wiki/translations/it/Macro_Compound_Plus.md @@ -1,7 +1,4 @@ # Macro Compound Plus/it - - -
@@ -1698,3 +1695,5 @@ Le mie macro su [Github](https://gist.github.com/mario52a)
+--- +[documentation index](../README.md) > Macro Compound Plus/it diff --git a/wiki/translations/it/Macro_Connect_And_Sweep.md b/wiki/translations/it/Macro_Connect_And_Sweep.md index 65de1e3cc2..3810a0a805 100644 --- a/wiki/translations/it/Macro_Connect_And_Sweep.md +++ b/wiki/translations/it/Macro_Connect_And_Sweep.md @@ -1,5 +1,5 @@ # Macro Connect And Sweep/it - {{Macro/it +{{Macro/it |Name= Macro Connect And Sweep |Translate=Collega con Sweep |Icon=Macro_Connect_And_Sweep.png @@ -196,6 +196,5 @@ Questa macro si basa sul codice di microelly2, vedere [Looking for some helpful Altra discussione sul foro [Macro\_Connect\_And\_Sweep](https://forum.freecadweb.org/viewtopic.php?f=22&t=35432) - - - +--- +[documentation index](../README.md) > Macro Connect And Sweep/it diff --git a/wiki/translations/it/Macro_Constraint_Draft.md b/wiki/translations/it/Macro_Constraint_Draft.md index ed20f209d5..174b427aa2 100644 --- a/wiki/translations/it/Macro_Constraint_Draft.md +++ b/wiki/translations/it/Macro_Constraint_Draft.md @@ -1,5 +1,5 @@ # Macro Constraint Draft/it - {{Macro/it +{{Macro/it |Name=Constraint Draft |Icon=Macro_Constraint_Draft.png |Translate=Constraint Draft @@ -70,3 +70,6 @@ else: ## Link Il forum [Sketch Feature to create linkage mechanism simulator](https://www.forum.freecadweb.org/viewtopic.php?f=22&t=21778&sid=28247565010ecdef0aa4f5c69e58f672) + +--- +[documentation index](../README.md) > Macro Constraint Draft/it diff --git a/wiki/translations/it/Macro_Copy3DViewToClipboard.md b/wiki/translations/it/Macro_Copy3DViewToClipboard.md index 82bea2c1a9..535d8fc388 100644 --- a/wiki/translations/it/Macro_Copy3DViewToClipboard.md +++ b/wiki/translations/it/Macro_Copy3DViewToClipboard.md @@ -1,7 +1,4 @@ # Macro Copy3DViewToClipboard/it - - -
@@ -109,6 +106,5 @@ c = v.addEventCallback("SoKeyboardEvent",o.logPosition) }} - - - +--- +[documentation index](../README.md) > Macro Copy3DViewToClipboard/it diff --git a/wiki/translations/it/Macro_Corner_shapes_wizard.md b/wiki/translations/it/Macro_Corner_shapes_wizard.md index 7ea0df26a9..cada69f3ca 100644 --- a/wiki/translations/it/Macro_Corner_shapes_wizard.md +++ b/wiki/translations/it/Macro_Corner_shapes_wizard.md @@ -1,5 +1,5 @@ # Macro Corner shapes wizard/update/it - {{Macro/it +{{Macro/it |Icon=Macro_Corner_shapes_wizard.png |Name=Corner shapes wizard |Name/it=Angolare 2 @@ -193,3 +193,6 @@ ToolBar Icon ![](images/Macro_Corner_shapes_wizard.png ) QtCore.QObject.connect(okbox, QtCore.SIGNAL("rejected()"), hide) QtCore.QMetaObject.connectSlotsByName(dialog) dialog.show() + +--- +[documentation index](../README.md) > Macro Corner shapes wizard/update/it diff --git a/wiki/translations/it/Macro_Creating_faces_from_a_DXF_file.md b/wiki/translations/it/Macro_Creating_faces_from_a_DXF_file.md index afaab8ad15..3ad9f5fb3e 100644 --- a/wiki/translations/it/Macro_Creating_faces_from_a_DXF_file.md +++ b/wiki/translations/it/Macro_Creating_faces_from_a_DXF_file.md @@ -1,5 +1,5 @@ # Macro Creating faces from a DXF file/it - {{Macro/it +{{Macro/it |Name=Creating faces from a DXF file |Icon=Macro_Creating_faces_from_a_DXF_file.png |Translate=Facce da DXF @@ -48,4 +48,7 @@ for group in doc.findObjects('App::DocumentObjectGroup'): Nel forum [Creating faces from a DXF file](http://forum.freecadweb.org/viewtopic.php?f=3&t=8144) -Questo è un esempio: [Generate 3D solid from intersection of three imported 2D](http://forum.freecadweb.org/viewtopic.php?f=3&t=8280&p=67863#p67840) +Questo è un esempio: [Generate 3D solid from intersection of three imported 2D](http://forum.freecadweb.org/viewtopic.php?f=3&t=8280&p=67863#p67840) + +--- +[documentation index](../README.md) > Macro Creating faces from a DXF file/it diff --git a/wiki/translations/it/Macro_Cut_Circle.md b/wiki/translations/it/Macro_Cut_Circle.md index 73282d6197..e0cff9d9e7 100644 --- a/wiki/translations/it/Macro_Cut_Circle.md +++ b/wiki/translations/it/Macro_Cut_Circle.md @@ -1,5 +1,5 @@ # Macro Cut Circle/it - {{Macro/it +{{Macro/it |Name=Macro Cut Circle |Icon=Macro_Cut_Circle.png |Translate=Taglia Cerchio @@ -123,3 +123,6 @@ ver 00.03 02/07/2019 : aggiunto \"App.ActiveDocument.recompute()\" ver 00.02 09/03/2015 : adding create arcs coloured altenat alternately Red White Red White \.... or not ver 00.01 24/02/2015 : + +--- +[documentation index](../README.md) > Macro Cut Circle/it diff --git a/wiki/translations/it/Macro_Cut_Line.md b/wiki/translations/it/Macro_Cut_Line.md index e66e9d6e6c..48bdd054c6 100644 --- a/wiki/translations/it/Macro_Cut_Line.md +++ b/wiki/translations/it/Macro_Cut_Line.md @@ -1,5 +1,5 @@ # Macro Cut Line/it - {{Macro/it +{{Macro/it |Name=Macro Cut Line |Icon=Macro_Cut_Line.png |Translate=Taglia linea @@ -130,3 +130,6 @@ cutLine(4, createLine = 1, biColor = 1, createPoint = 0) ## Link questa funzione utilizzare la funzione discrete [the original code](http://forum.freecadweb.org/viewtopic.php?f=3&t=4217&hilit=discretize) + +--- +[documentation index](../README.md) > Macro Cut Line/it diff --git a/wiki/translations/it/Macro_DXF_to_Face_and_Sketch.md b/wiki/translations/it/Macro_DXF_to_Face_and_Sketch.md index 70999ffb3e..af048c743e 100644 --- a/wiki/translations/it/Macro_DXF_to_Face_and_Sketch.md +++ b/wiki/translations/it/Macro_DXF_to_Face_and_Sketch.md @@ -1,5 +1,5 @@ # Macro DXF to Face and Sketch/it - {{Macro/it +{{Macro/it |Name=DXF to Face and Sketch |Icon=Macro_DXF_to_Face_and_Sketch.png |Translate=Facce e Schizzi da DXF @@ -254,6 +254,5 @@ else: - Esempi di macro [Macro Creating faces from a DXF file](http://www.freecadweb.org/wiki/index.php?title=Macros_recipes) - Precedente versione [Macro Creating faces from a DXF file](Macro_Creating_faces_from_a_DXF_file/it.md) - - - +--- +[documentation index](../README.md) > Macro DXF to Face and Sketch/it diff --git a/wiki/translations/it/Macro_DeepCopy.md b/wiki/translations/it/Macro_DeepCopy.md index 66efc63a36..45eb34e1f5 100644 --- a/wiki/translations/it/Macro_DeepCopy.md +++ b/wiki/translations/it/Macro_DeepCopy.md @@ -1,5 +1,5 @@ # Macro DeepCopy/it - {{Macro/it +{{Macro/it |Name=Macro DeepCopy |Translate=DeepCopy |Icon=Macro_DeepCopy.png @@ -122,6 +122,5 @@ if __name__ == '__main__': [code on github](https://github.com/FreeCAD/FreeCAD-macros/blob/master/Conversion/DeepCopy.FCMacro) - - - +--- +[documentation index](../README.md) > Macro DeepCopy/it diff --git a/wiki/translations/it/Macro_Delta_xyz.md b/wiki/translations/it/Macro_Delta_xyz.md index f13b57cfa7..29e95a63c5 100644 --- a/wiki/translations/it/Macro_Delta_xyz.md +++ b/wiki/translations/it/Macro_Delta_xyz.md @@ -1,5 +1,5 @@ # Macro Delta xyz/it - {{Macro/it +{{Macro/it |Name=Delta xyz |Icon=Macro_Delta_xyz.png |Description=Fornisce il valore Delta xyz e la distanza tra 2 punti.
Se si preme il tasto "SHIFT", il valore delta inizia dalla coordinata 0,0,0 fino al punto cliccato (la coordinata 0,0,0 viene visualizzata in rosso).
Un'opzione è possibile per la macro soggiorno residente (continuo) quindi premere il tasto "Q" per uscire dalla macro e l'opzione per imporre il numero di decimali o utilizzare il decimale nell'opzione di preferenza. @@ -275,3 +275,6 @@ Version 0.2 2020-10-23 : aggiungendo premere il tasto **SHIFT**, fare clic su un Aggiunta di opzioni configurabili in preferenza FC Version 0.1 2013-11-29 : [view toolbar : measure distance tool](https://forum.freecadweb.org/viewtopic.php?f=3&t=5036) + +--- +[documentation index](../README.md) > Macro Delta xyz/it diff --git a/wiki/translations/it/Macro_Draft_Circle_3_Points.md b/wiki/translations/it/Macro_Draft_Circle_3_Points.md index 7c9e910fc7..c02a85151f 100644 --- a/wiki/translations/it/Macro_Draft_Circle_3_Points.md +++ b/wiki/translations/it/Macro_Draft_Circle_3_Points.md @@ -1,5 +1,5 @@ # Macro Draft Circle 3 Points/it - {{Macro/it +{{Macro/it |Name=Macro Make Circle 3 Points |Icon=Macro_Make_Circle_3_Points.png |Translate=Cerchio da 3 punti 2D @@ -290,3 +290,6 @@ Guarda alternativamente con l\'occhio sinistro e l\'occhio destro per vedere le La genesi della macro **Draft Circle 3 Points** si trova nel forum [(PYTHON) coordonnées d\'un point](http://forum.freecadweb.org/viewtopic.php?f=12&t=3696&sid=17886f953113e162dc9a4a843e1fce94) a cui ha contribuito flachyjoe che ringrazio. La formula è presa da [cercle\_3pts.pdf](http://www-obs.univ-lyon1.fr/labo/fc/Ateliers_archives/ateliers_2005-06/cercle_3pts.pdf) ed utilizzata con il gentile permesso del suo autore. + +--- +[documentation index](../README.md) > Macro Draft Circle 3 Points/it diff --git a/wiki/translations/it/Macro_Draft_Circle_3_Points_3D.md b/wiki/translations/it/Macro_Draft_Circle_3_Points_3D.md index 7ab886bc89..ce3ce1e791 100644 --- a/wiki/translations/it/Macro_Draft_Circle_3_Points_3D.md +++ b/wiki/translations/it/Macro_Draft_Circle_3_Points_3D.md @@ -1,5 +1,5 @@ # Macro Draft Circle 3 Points 3D/it - {{Macro/it +{{Macro/it |Name=Macro Draft Circle 3 Points 3D |Translate=Cerchio da 3 punti 3D |Icon=Macro_Draft_Circle_3_Points.png @@ -142,3 +142,5 @@ else: }} +--- +[documentation index](../README.md) > Macro Draft Circle 3 Points 3D/it diff --git a/wiki/translations/it/Macro_Draw_2D_Function.md b/wiki/translations/it/Macro_Draw_2D_Function.md index 50bc07993b..efa5051987 100644 --- a/wiki/translations/it/Macro_Draw_2D_Function.md +++ b/wiki/translations/it/Macro_Draw_2D_Function.md @@ -1,5 +1,5 @@ # Macro Draw 2D Function/it - {{Macro/it +{{Macro/it |Name=Draw 2D Function |Translate=Draw 2D Function |Icon=Macro_Draw_2D_Function.png @@ -84,3 +84,5 @@ Part.show(WWire) }} +--- +[documentation index](../README.md) > Macro Draw 2D Function/it diff --git a/wiki/translations/it/Macro_Draw_Parametric_2D_Function.md b/wiki/translations/it/Macro_Draw_Parametric_2D_Function.md index afaa4fdba7..e2c08369af 100644 --- a/wiki/translations/it/Macro_Draw_Parametric_2D_Function.md +++ b/wiki/translations/it/Macro_Draw_Parametric_2D_Function.md @@ -1,5 +1,5 @@ # Macro Draw Parametric 2D Function/it - {{Macro/it +{{Macro/it |Name=Macro Draw Parametric 2D Function |Icon=Macro_Draw_Parametric_2D_Function.png |Translate=Funzione parametrica 2D @@ -83,3 +83,5 @@ draw2Dfunction(xFunction="0.5*n", yFunction="-0.75*n", n=0, nd=-math.pi, step=50 }} +--- +[documentation index](../README.md) > Macro Draw Parametric 2D Function/it diff --git a/wiki/translations/it/Macro_Dump_Objects.md b/wiki/translations/it/Macro_Dump_Objects.md index 09327faa4c..331ddbbf9e 100644 --- a/wiki/translations/it/Macro_Dump_Objects.md +++ b/wiki/translations/it/Macro_Dump_Objects.md @@ -1,5 +1,5 @@ # Macro Dump Objects/it - {{Macro/it +{{Macro/it |Name=Macro Dump Objects |Translate=Elenca oggetti |Description=Questa macro genera un elenco di tutti gli oggetti del documento corrente. L'elenco può apparire nella finestra dei Rapporti o in una finestra indipendente. @@ -365,6 +365,5 @@ if FreeCAD.ActiveDocument != None: #thus ends the macro... }} - - - +--- +[documentation index](../README.md) > Macro Dump Objects/it diff --git a/wiki/translations/it/Macro_Duplicate_Selection.md b/wiki/translations/it/Macro_Duplicate_Selection.md index 8d621f3c3d..14ab4039bd 100644 --- a/wiki/translations/it/Macro_Duplicate_Selection.md +++ b/wiki/translations/it/Macro_Duplicate_Selection.md @@ -1,5 +1,5 @@ # Macro Duplicate Selection/it - {{Macro/it +{{Macro/it |Name=Macro Duplicate Selection |Translate=Duplica selezione |Description= Questa macro testa se una selezione è duplicabile. @@ -90,6 +90,5 @@ FreeCADGui.Selection.addObserver(s) # installe la fonction en mode resident La discussione [Duplicate Objects when more than one face selected](http://forum.freecadweb.org/viewtopic.php?f=3&t=15994) nel forum di FreeCAD. - - - +--- +[documentation index](../README.md) > Macro Duplicate Selection/it diff --git a/wiki/translations/it/Macro_Easy_cutouts_for_Enclosure_Design.md b/wiki/translations/it/Macro_Easy_cutouts_for_Enclosure_Design.md index 1c1fdb053d..72b8d1e4fa 100644 --- a/wiki/translations/it/Macro_Easy_cutouts_for_Enclosure_Design.md +++ b/wiki/translations/it/Macro_Easy_cutouts_for_Enclosure_Design.md @@ -1,5 +1,5 @@ # Macro Easy cutouts for Enclosure Design/it - {{Macro/it +{{Macro/it |Name=Easy cutouts for Enclosure Design |Translate=Aperture |Icon=Macro_Easy_cutouts_for_Enclosure_Design_icon.png @@ -263,6 +263,5 @@ else: Nel forum : [Easy cutouts for Enclosure Design Macro](http://forum.freecadweb.org/viewtopic.php?f=22&t=18488) - - - +--- +[documentation index](../README.md) > Macro Easy cutouts for Enclosure Design/it diff --git a/wiki/translations/it/Macro_EdgesToArc.md b/wiki/translations/it/Macro_EdgesToArc.md index 998cd94d65..cb419c2f70 100644 --- a/wiki/translations/it/Macro_EdgesToArc.md +++ b/wiki/translations/it/Macro_EdgesToArc.md @@ -1,5 +1,5 @@ # Macro EdgesToArc/it - {{Macro/it +{{Macro/it |Name=EdgesToArc |Translate=Da Segmento a Arco |Icon=Macro_EdgesToArc.png @@ -108,6 +108,5 @@ if circular: FreeCAD.ActiveDocument.removeObject(shape.Name) }} - - - +--- +[documentation index](../README.md) > Macro EdgesToArc/it diff --git a/wiki/translations/it/Macro_Ellipse-Center+2Points.md b/wiki/translations/it/Macro_Ellipse-Center+2Points.md index ad0bb293e6..39b9cef78d 100644 --- a/wiki/translations/it/Macro_Ellipse-Center+2Points.md +++ b/wiki/translations/it/Macro_Ellipse-Center+2Points.md @@ -1,5 +1,5 @@ # Macro Ellipse-Center+2Points/it - {{Macro/it +{{Macro/it |Name=Macro Ellipse-Center+2Points |Translate=Ellisse da centro e 2 punti |Icon=Macro_Ellipse-Center%2B2Points.png @@ -67,6 +67,5 @@ except: }} - - - +--- +[documentation index](../README.md) > Macro Ellipse-Center+2Points/it diff --git a/wiki/translations/it/Macro_ExpandTreeItem.md b/wiki/translations/it/Macro_ExpandTreeItem.md index f573553bdf..429ba926b5 100644 --- a/wiki/translations/it/Macro_ExpandTreeItem.md +++ b/wiki/translations/it/Macro_ExpandTreeItem.md @@ -1,5 +1,5 @@ # Macro ExpandTreeItem/it - {{Macro/it +{{Macro/it |Name=Macro ExpandTreeItem |Translate=Macro ExpandTreeItem |Description=Nella vista della struttura espande l'albero selezionato e tutti gli alberi secondari. @@ -94,3 +94,6 @@ for tree in trees: ## Link [Objektbaum mit einem Klick komplett aufklappen?](https://forum.freecadweb.org/viewtopic.php?f=13&t=29406) + +--- +[documentation index](../README.md) > Macro ExpandTreeItem/it diff --git a/wiki/translations/it/Macro_Extract_Wires_from_Mesh.md b/wiki/translations/it/Macro_Extract_Wires_from_Mesh.md index e52ed4807b..707259541b 100644 --- a/wiki/translations/it/Macro_Extract_Wires_from_Mesh.md +++ b/wiki/translations/it/Macro_Extract_Wires_from_Mesh.md @@ -1,7 +1,4 @@ # Macro Extract Wires from Mesh/it - - - {{Macro/it |Name=Macro Extract Wires from Mesh |Icon=Macro_Extract_Wires_from_Mesh.png @@ -53,3 +50,5 @@ for obj in FreeCADGui.Selection.getSelection(): obj.ViewObject.hide() ``` +--- +[documentation index](../README.md) > Macro Extract Wires from Mesh/it diff --git a/wiki/translations/it/Macro_FCCamGroover.md b/wiki/translations/it/Macro_FCCamGroover.md index 53bb44f65c..aa8e51a269 100644 --- a/wiki/translations/it/Macro_FCCamGroover.md +++ b/wiki/translations/it/Macro_FCCamGroover.md @@ -1,7 +1,4 @@ # Macro FCCamGroover/it - - -
@@ -322,3 +319,6 @@ diag.exec_() ## Elenco Il foro [FC Cam Groover Macro](https://forum.freecadweb.org/viewtopic.php?f=22&t=29816&sid=f6f9b946f015bc5072bf112d97b50256) + +--- +[documentation index](../README.md) > Macro FCCamGroover/it diff --git a/wiki/translations/it/Macro_FCCamera.md b/wiki/translations/it/Macro_FCCamera.md index 7e4d99611c..d1e764398e 100644 --- a/wiki/translations/it/Macro_FCCamera.md +++ b/wiki/translations/it/Macro_FCCamera.md @@ -1,7 +1,4 @@ # Macro FCCamera/it - - -
@@ -219,3 +216,6 @@ App.Console.PrintMessage("Path locality to FCCamera.....images.png [ " +  - **ver 0.3 18/03/2015 :** modify line 492 replace \"**pl.Base = App.Vector(0,0,0)**\" to \"**pl.Base = sel\[0\].Placement.Base**\" now no longer moves the form at point (0,0,0) and leaves has the coordinates - **ver 0.2 25/02/2015 :** correct names files in for compatibility Linux (case sensitive) thanks microelly2 + +--- +[documentation index](../README.md) > Macro FCCamera/it diff --git a/wiki/translations/it/Macro_FCCircularText.md b/wiki/translations/it/Macro_FCCircularText.md index c08fed29c7..3c8d73b0aa 100644 --- a/wiki/translations/it/Macro_FCCircularText.md +++ b/wiki/translations/it/Macro_FCCircularText.md @@ -1,5 +1,5 @@ # Macro FCCircularText/it - {{Macro/it +{{Macro/it |Name=Macro FCCircularText |Translate=Testo Circolare |Icon=FCCircularTextButtom.png @@ -879,8 +879,5 @@ replace I commenti nella pagina del forum: [Extrude from curved surface of cylinder](http://forum.freecadweb.org/viewtopic.php?f=3&t=7384) - - - - - +--- +[documentation index](../README.md) > Macro FCCircularText/it diff --git a/wiki/translations/it/Macro_FCConvertLines.md b/wiki/translations/it/Macro_FCConvertLines.md index a769c88f95..e371531c12 100644 --- a/wiki/translations/it/Macro_FCConvertLines.md +++ b/wiki/translations/it/Macro_FCConvertLines.md @@ -1,2 +1,5 @@ # Macro FCConvertLines/it 1. REDIRECT [Macro FC Convert Lines/it](Macro_FC_Convert_Lines/it.md) + +--- +[documentation index](../README.md) > Macro FCConvertLines/it diff --git a/wiki/translations/it/Macro_FCCreaLoft.md b/wiki/translations/it/Macro_FCCreaLoft.md index e7ae2ad7b3..efdc2378e5 100644 --- a/wiki/translations/it/Macro_FCCreaLoft.md +++ b/wiki/translations/it/Macro_FCCreaLoft.md @@ -1,2 +1,5 @@ # Macro FCCreaLoft/it 1. REDIRECT [Macro Loft/it](Macro_Loft/it.md) + +--- +[documentation index](../README.md) > Macro FCCreaLoft/it diff --git a/wiki/translations/it/Macro_FCGear.md b/wiki/translations/it/Macro_FCGear.md index 83a2a7f23c..d3c06523d4 100644 --- a/wiki/translations/it/Macro_FCGear.md +++ b/wiki/translations/it/Macro_FCGear.md @@ -1,5 +1,5 @@ # Macro FCGear/it - **This Macro has been converted in to a workbench called [[FCGear Workbench]]. Please use the workbench instead of this macro as it is actively maintained.** +**This Macro has been converted in to a workbench called [[FCGear Workbench]]. Please use the workbench instead of this macro as it is actively maintained.**
@@ -52,6 +52,5 @@ Note: - [FCGear](https://github.com/looooo/FCGear) - [Discussione nel Forum](http://forum.freecadweb.org/viewtopic.php?f=3&t=12878&start=20) - - - +--- +[documentation index](../README.md) > Macro FCGear/it diff --git a/wiki/translations/it/Macro_FCHoneycombMaker.md b/wiki/translations/it/Macro_FCHoneycombMaker.md index 83001d850f..e295bb8023 100644 --- a/wiki/translations/it/Macro_FCHoneycombMaker.md +++ b/wiki/translations/it/Macro_FCHoneycombMaker.md @@ -1,7 +1,4 @@ # Macro FCHoneycombMaker/it - - -
@@ -363,3 +360,6 @@ Altra macro a nido d\'ape simile [Honeycomb Array](https://forum.freecadweb.org/ ## Versione 2019-07-04 : prima + +--- +[documentation index](../README.md) > Macro FCHoneycombMaker/it diff --git a/wiki/translations/it/Macro_FCInfo.md b/wiki/translations/it/Macro_FCInfo.md index 36c9c91ba2..d013763670 100644 --- a/wiki/translations/it/Macro_FCInfo.md +++ b/wiki/translations/it/Macro_FCInfo.md @@ -1,5 +1,5 @@ # Macro FCInfo/it - {{Macro/it +{{Macro/it |Name=Macro FCInfo |Translate=Infoin scheda |Icon=FCInfo.png @@ -365,6 +365,5 @@ Vedere [Arch Survey](Arch_Survey/it.md) Arch Survey Macro FCInfo/it diff --git a/wiki/translations/it/Macro_FCInfoGlass.md b/wiki/translations/it/Macro_FCInfoGlass.md index e2b3076c09..fff84a17ff 100644 --- a/wiki/translations/it/Macro_FCInfoGlass.md +++ b/wiki/translations/it/Macro_FCInfoGlass.md @@ -1,5 +1,5 @@ # Macro FCInfoGlass/it - {{Macro/it +{{Macro/it |Name=Macro FCInfoGlass |Translate=Info su fondo trasparente |Description=Fornisce una serie di informazioni sulla forma selezionata e visualizza i dati nello schermo 3D. @@ -222,3 +222,6 @@ Le mie macro in [mario52a](https://gist.github.com/mario52a) gists **31/08/2015 Ver 0.03** : add many informations **04/08/2015 Ver 0.02** : add switch and presentation + +--- +[documentation index](../README.md) > Macro FCInfoGlass/it diff --git a/wiki/translations/it/Macro_FCInfoToMouse.md b/wiki/translations/it/Macro_FCInfoToMouse.md index 048e002f3b..63f9e8d804 100644 --- a/wiki/translations/it/Macro_FCInfoToMouse.md +++ b/wiki/translations/it/Macro_FCInfoToMouse.md @@ -1,7 +1,4 @@ # Macro FCInfoToMouse/it - - -
@@ -534,3 +531,6 @@ Le mie macro in [mario52a](https://gist.github.com/mario52a) gists 23/01/2016 ver 00.02 : add function \"single\", replace key \"H\" to \"C\" and correct bug 02/01/2016 : ver 0.1 + +--- +[documentation index](../README.md) > Macro FCInfoToMouse/it diff --git a/wiki/translations/it/Macro_FCInfo_Alternate_Linux.md b/wiki/translations/it/Macro_FCInfo_Alternate_Linux.md index 0c93cd45a3..cdcb5dc86f 100644 --- a/wiki/translations/it/Macro_FCInfo_Alternate_Linux.md +++ b/wiki/translations/it/Macro_FCInfo_Alternate_Linux.md @@ -1,5 +1,5 @@ # Macro FCInfo Alternate Linux/it - {{Macro/it +{{Macro/it |Name=Macro FCInfo Alternate Linux |Translate=Info per Linux |Icon=FCInfo @@ -46,6 +46,5 @@ I file salvati con questa macro sono incompatibili con i file delle altre versio Entrambe le versioni possono funzionare indipendentemente dal sistema operativo utilizzato. - - - +--- +[documentation index](../README.md) > Macro FCInfo Alternate Linux/it diff --git a/wiki/translations/it/Macro_FCSpreadSheet_Extract.md b/wiki/translations/it/Macro_FCSpreadSheet_Extract.md index e85302dcf9..18f839d373 100644 --- a/wiki/translations/it/Macro_FCSpreadSheet_Extract.md +++ b/wiki/translations/it/Macro_FCSpreadSheet_Extract.md @@ -1,7 +1,4 @@ # Macro FCSpreadSheet Extract/it - - -
@@ -264,3 +261,5 @@ except Exception: }} +--- +[documentation index](../README.md) > Macro FCSpreadSheet Extract/it diff --git a/wiki/translations/it/Macro_FCSpring_Helix_Variable.md b/wiki/translations/it/Macro_FCSpring_Helix_Variable.md index d9eb6debdc..0117e495ab 100644 --- a/wiki/translations/it/Macro_FCSpring_Helix_Variable.md +++ b/wiki/translations/it/Macro_FCSpring_Helix_Variable.md @@ -1,5 +1,5 @@ # Macro FCSpring Helix Variable/it - {{Macro/it +{{Macro/it |Name=Macro FCSpring Helix Variable |Translate=Molla a spirale variabile |Icon=FCSpring Helix Variable.png @@ -376,4 +376,5 @@ Only circle work well - +--- +[documentation index](../README.md) > Macro FCSpring Helix Variable/it diff --git a/wiki/translations/it/Macro_FCSpring_On_Surface.md b/wiki/translations/it/Macro_FCSpring_On_Surface.md index 9f315c4176..23e5e1908e 100644 --- a/wiki/translations/it/Macro_FCSpring_On_Surface.md +++ b/wiki/translations/it/Macro_FCSpring_On_Surface.md @@ -1,5 +1,5 @@ # Macro FCSpring On Surface/it - {{Macro/it +{{Macro/it |Name=Macro FCSpring On Surface |Icon=FCSpring_On_Surface.png |Description=Questa macro crea un'elica (o molla) attorno a un oggetto solido qualunque sia la sua forma, l'elica segue l'intera superficie dell'oggetto (è richiesta Python2)
Scarica il [https://www.freecadweb.org/wiki/images/3/38/FCSpring_On_Surface.png toolBar icon] @@ -626,3 +626,6 @@ MainWindow.show() The Genesis [Zwei Helix - ein Sweep](https://forum.freecadweb.org/viewtopic.php?f=13&t=41627) The original code [How to intersect a line with a part](https://www.forum.freecadweb.org/viewtopic.php?f=22&t=5456#p44194) by wandererfan + +--- +[documentation index](../README.md) > Macro FCSpring On Surface/it diff --git a/wiki/translations/it/Macro_FCTexture.md b/wiki/translations/it/Macro_FCTexture.md index 291ab197ee..6b7e64a1c2 100644 --- a/wiki/translations/it/Macro_FCTexture.md +++ b/wiki/translations/it/Macro_FCTexture.md @@ -1,2 +1,5 @@ # Macro FCTexture/it 1. REDIRECT [Macro Texture/it](Macro_Texture/it.md) + +--- +[documentation index](../README.md) > Macro FCTexture/it diff --git a/wiki/translations/it/Macro_FCTreeView.md b/wiki/translations/it/Macro_FCTreeView.md index 0ea536bcba..c1f2da54b4 100644 --- a/wiki/translations/it/Macro_FCTreeView.md +++ b/wiki/translations/it/Macro_FCTreeView.md @@ -1,7 +1,4 @@ # Macro FCTreeView/it - - -
@@ -302,3 +299,6 @@ ver 00.03 (23/09/2017) : aggiungi ricerca per tipo oggetto ver 00.02 (11/09/2017) : modifica per ancorare e impedire molte istanze il clic sul pulsante è effetto flip/flop (macro nascondi/visibile) ver 00.01 (08/09/2017) : + +--- +[documentation index](../README.md) > Macro FCTreeView/it diff --git a/wiki/translations/it/Macro_FCWire_To_Volume.md b/wiki/translations/it/Macro_FCWire_To_Volume.md index 3ce45147bc..9530bd577e 100644 --- a/wiki/translations/it/Macro_FCWire_To_Volume.md +++ b/wiki/translations/it/Macro_FCWire_To_Volume.md @@ -1,7 +1,4 @@ # Macro FCWire To Volume/it - - -
@@ -731,3 +728,6 @@ ver 02b: 10/04/2020 : adding icons and help button ver 02 : 07/04/2020 : convert for PySide2 Qt5 and layout, adding the 2D (contour) wire ver 01 : 10/10/2016 : + +--- +[documentation index](../README.md) > Macro FCWire To Volume/it diff --git a/wiki/translations/it/Macro_FC_Convert_Lines.md b/wiki/translations/it/Macro_FC_Convert_Lines.md index 69eeb33003..aa637485ed 100644 --- a/wiki/translations/it/Macro_FC_Convert_Lines.md +++ b/wiki/translations/it/Macro_FC_Convert_Lines.md @@ -1,5 +1,5 @@ # Macro FC Convert Lines/it - {{Macro/it +{{Macro/it |Name=Macro FC Convert Lines |Translate=Converti Linee |Icon=Macro_FCConvertLines.png @@ -196,3 +196,6 @@ ver 00.02 18/02/2016 ver 00.01 19/01/2016 ver 00.00 19/01/2016 + +--- +[documentation index](../README.md) > Macro FC Convert Lines/it diff --git a/wiki/translations/it/Macro_FC_element_selector.md b/wiki/translations/it/Macro_FC_element_selector.md index e1f325ebe9..84b825dec6 100644 --- a/wiki/translations/it/Macro_FC_element_selector.md +++ b/wiki/translations/it/Macro_FC_element_selector.md @@ -1,5 +1,5 @@ # Macro FC element selector/it - {{Macro/it +{{Macro/it |Name=Macro FC element selector |Icon=Macro_FC_element_selector.png |Translate=Macro FC element selector @@ -212,3 +212,6 @@ element_selector() Discussione sul foro [Selecting internal faces of a pressure vessel](https://forum.freecadweb.org/viewtopic.php?f=18&t=12381&p=151950#p151950) Altra similare macro [Macro Mouse over cb](Macro_Mouse_over_cb.md) + +--- +[documentation index](../README.md) > Macro FC element selector/it diff --git a/wiki/translations/it/Macro_FaceToSketch.md b/wiki/translations/it/Macro_FaceToSketch.md index 54b79486ab..1dc0b4e804 100644 --- a/wiki/translations/it/Macro_FaceToSketch.md +++ b/wiki/translations/it/Macro_FaceToSketch.md @@ -1,5 +1,5 @@ # Macro FaceToSketch/it - {{Macro/it +{{Macro/it |Name=FaceToSketch |Translate=Da Faccia a Schizzo |Icon=Macro_FaceToSketch.png @@ -42,6 +42,5 @@ for wire in wires: FreeCAD.ActiveDocument.removeObject(wire.Name) }} - - - +--- +[documentation index](../README.md) > Macro FaceToSketch/it diff --git a/wiki/translations/it/Macro_FlattenWire.md b/wiki/translations/it/Macro_FlattenWire.md index 4109559390..abe199e372 100644 --- a/wiki/translations/it/Macro_FlattenWire.md +++ b/wiki/translations/it/Macro_FlattenWire.md @@ -1,5 +1,5 @@ # Macro FlattenWire/it - {{Macro/it +{{Macro/it |Name=FlattenWire |Translate=Wire appiattita su piano mediano |Description=Questa macro appiattisce i contorni che non sono su un unico piano al valore mediano della loro coordinata Z @@ -34,6 +34,5 @@ obj.Points = newppoints }} - - - +--- +[documentation index](../README.md) > Macro FlattenWire/it diff --git a/wiki/translations/it/Macro_FlattenWire3Points.md b/wiki/translations/it/Macro_FlattenWire3Points.md index ed5389f18d..883b630266 100644 --- a/wiki/translations/it/Macro_FlattenWire3Points.md +++ b/wiki/translations/it/Macro_FlattenWire3Points.md @@ -1,5 +1,5 @@ # Macro FlattenWire3Points/it - {{Macro/it +{{Macro/it |Name=FlattenWire3Points |Icon=Macro_FlattenWire3Points.png |Translate=Wire appiattita su piano da 3 punti @@ -56,3 +56,5 @@ ToolBar icon ![](images/Macro_FlattenWire3Points.png ) sel.Object.Points = points }} +--- +[documentation index](../README.md) > Macro FlattenWire3Points/it diff --git a/wiki/translations/it/Macro_Fonts_Win10_PYMP.md b/wiki/translations/it/Macro_Fonts_Win10_PYMP.md index 195c013cc2..53042f8890 100644 --- a/wiki/translations/it/Macro_Fonts_Win10_PYMP.md +++ b/wiki/translations/it/Macro_Fonts_Win10_PYMP.md @@ -1,7 +1,4 @@ # Macro Fonts Win10 PYMP/it - - - {{Macro/it |Name=Macro Fonts Win10 PYMP |Icon=Macro_Fonts_Win10_PYMP.png @@ -1146,3 +1143,6 @@ Le mie macro sopra [mario52a](https://gist.github.com/mario52a) gists Version = \"2.0 Date = 2020/06/06 : Layout adding button and icon Version = \"00.01\" Date = \"2019/05/10\" + +--- +[documentation index](../README.md) > Macro Fonts Win10 PYMP/it diff --git a/wiki/translations/it/Macro_ForceRecompute.md b/wiki/translations/it/Macro_ForceRecompute.md index d5a9905ca1..922e3df407 100644 --- a/wiki/translations/it/Macro_ForceRecompute.md +++ b/wiki/translations/it/Macro_ForceRecompute.md @@ -1,7 +1,4 @@ # Macro ForceRecompute/it - - -
@@ -67,6 +64,5 @@ FreeCAD.ActiveDocument.recompute() }} - - - +--- +[documentation index](../README.md) > Macro ForceRecompute/it diff --git a/wiki/translations/it/Macro_FreeCAD_to_Kerkythea.md b/wiki/translations/it/Macro_FreeCAD_to_Kerkythea.md index 4f5a9fb7b2..401d783db7 100644 --- a/wiki/translations/it/Macro_FreeCAD_to_Kerkythea.md +++ b/wiki/translations/it/Macro_FreeCAD_to_Kerkythea.md @@ -1,5 +1,5 @@ # Macro FreeCAD to Kerkythea/it - {{Macro/it +{{Macro/it |Name=FC to Kerkythea |Icon=Macro_FreeCAD_to_Kerkythea.png |Translate=FC in Kerkythea @@ -607,6 +607,5 @@ exportKerkythea().exec_() }} - - - +--- +[documentation index](../README.md) > Macro FreeCAD to Kerkythea/it diff --git a/wiki/translations/it/Macro_GMSH.md b/wiki/translations/it/Macro_GMSH.md index 4a0b3d1e0c..7caa1ff731 100644 --- a/wiki/translations/it/Macro_GMSH.md +++ b/wiki/translations/it/Macro_GMSH.md @@ -1,7 +1,4 @@ # Macro GMSH/it - - -
@@ -45,4 +42,7 @@ GMSH deve essere installato. Vedere [gmsh.info](http://gmsh.info/). La macro è La pagina della discussione nel forum: [GMSH macro](http://forum.freecadweb.org/viewtopic.php?t=11182) -[Vedere su YouTube come utilizzare la macro.](https://www.youtube.com/watch?v=ZcG5EEUe3yc) +[Vedere su YouTube come utilizzare la macro.](https://www.youtube.com/watch?v=ZcG5EEUe3yc) + +--- +[documentation index](../README.md) > Macro GMSH/it diff --git a/wiki/translations/it/Macro_Geneva_Wheel.md b/wiki/translations/it/Macro_Geneva_Wheel.md index 41b9cc9fef..e7685a445b 100644 --- a/wiki/translations/it/Macro_Geneva_Wheel.md +++ b/wiki/translations/it/Macro_Geneva_Wheel.md @@ -1,5 +1,5 @@ # Macro Geneva Wheel/it - {{Macro/it +{{Macro/it |Name=Geneva Wheel |Icon=GW_Dim.png |Translate=Croce di Malta @@ -149,6 +149,5 @@ Part.show(driveCrank) Part.show(genevaWheel) }} - - - +--- +[documentation index](../README.md) > Macro Geneva Wheel/it diff --git a/wiki/translations/it/Macro_Geneva_Wheel_GUI.md b/wiki/translations/it/Macro_Geneva_Wheel_GUI.md index f511734a88..38f7234062 100644 --- a/wiki/translations/it/Macro_Geneva_Wheel_GUI.md +++ b/wiki/translations/it/Macro_Geneva_Wheel_GUI.md @@ -1,5 +1,5 @@ # Macro Geneva Wheel GUI/it - {{Macro/it +{{Macro/it |Name=Geneva Wheel GUI |Translate=Geneva Wheel GUI |Icon=GW_Dim.png @@ -233,4 +233,7 @@ p() ## Link -Questa macro è basata su [Macro Geneva Wheel](Macro_Geneva_Wheel/it.md) +Questa macro è basata su [Macro Geneva Wheel](Macro_Geneva_Wheel/it.md) + +--- +[documentation index](../README.md) > Macro Geneva Wheel GUI/it diff --git a/wiki/translations/it/Macro_Geodesic_Dome.md b/wiki/translations/it/Macro_Geodesic_Dome.md index f6e7c6d2a3..8bb86f57cf 100644 --- a/wiki/translations/it/Macro_Geodesic_Dome.md +++ b/wiki/translations/it/Macro_Geodesic_Dome.md @@ -1,5 +1,5 @@ # Macro Geodesic Dome/it - {{Macro/it +{{Macro/it |Name=Macro Geodesic Dome |Translate=Cupola Geodetica |Icon=Macro_Geodesic_Dome.svg @@ -352,6 +352,5 @@ ToolBar Icon ![](images/Macro_Geodesic_Dome.svg ) Il Forum [Designing geodesic dome](https://forum.freecadweb.org/viewtopic.php?t=9174) - - - +--- +[documentation index](../README.md) > Macro Geodesic Dome/it diff --git a/wiki/translations/it/Macro_Global_Variable_Watcher.md b/wiki/translations/it/Macro_Global_Variable_Watcher.md index ccaf410bb2..ec31c80f5f 100644 --- a/wiki/translations/it/Macro_Global_Variable_Watcher.md +++ b/wiki/translations/it/Macro_Global_Variable_Watcher.md @@ -1,5 +1,5 @@ # Macro Global Variable Watcher/it - {{Macro/it +{{Macro/it |Name=Macro Global Variable Watcher |Translate=Global Variable Watcher |Description=Questa macro visualizza le variabili globali all'interno del sistema FreeCAD, (es: FreeCAD.myVariable). @@ -337,6 +337,5 @@ form.exec_() #thus ends the macro... }} - - - +--- +[documentation index](../README.md) > Macro Global Variable Watcher/it diff --git a/wiki/translations/it/Macro_GuiResetToolbars.md b/wiki/translations/it/Macro_GuiResetToolbars.md index 28af49022e..bf5d1e240f 100644 --- a/wiki/translations/it/Macro_GuiResetToolbars.md +++ b/wiki/translations/it/Macro_GuiResetToolbars.md @@ -1,7 +1,4 @@ # Macro GuiResetToolbars/it - - - {{Macro/it |Name=GuiResetToolbars |Name/it=Gui Reset Tool bars @@ -81,3 +78,6 @@ for i in tb: ## Link La discussione sul forum [Reset toolbar position](https://forum.freecadweb.org/viewtopic.php?f=3&t=45452&p=390034#p389404) + +--- +[documentation index](../README.md) > Macro GuiResetToolbars/it diff --git a/wiki/translations/it/Macro_Guitar_Nut.md b/wiki/translations/it/Macro_Guitar_Nut.md index b4f07f9324..9795204bc8 100644 --- a/wiki/translations/it/Macro_Guitar_Nut.md +++ b/wiki/translations/it/Macro_Guitar_Nut.md @@ -1,5 +1,5 @@ # Macro Guitar Nut/it - {{Macro +{{Macro |Name=Macro Guitar Nut |Name/fr=Macro Guitar Nut |Icon=Macro_Guitar_Nut.png @@ -205,3 +205,6 @@ print("Finished creating nut") ## Link Forum discussion [Guitar fretboard macro / guitar body](https://forum.freecadweb.org/viewtopic.php?f=24&t=5827&) + +--- +[documentation index](../README.md) > Macro Guitar Nut/it diff --git a/wiki/translations/it/Macro_Guitar_fretboard.md b/wiki/translations/it/Macro_Guitar_fretboard.md index b865b763a9..d9f81acb25 100644 --- a/wiki/translations/it/Macro_Guitar_fretboard.md +++ b/wiki/translations/it/Macro_Guitar_fretboard.md @@ -1,5 +1,5 @@ # Macro Guitar fretboard/it - {{Macro/it +{{Macro/it |Name=Macro Guitar fretboard |Icon=Macro_Guitar_fretboard.png |Translate=Tastiera per chitarra @@ -744,3 +744,6 @@ class Fretboard(): - Version 0.1 : 2012-03-16 - Version 0.2 : 2018-01-25 : convert to PySide - Version 0.4 : 2020-01-09 : major refactor to add multiscale frets and zero fret + +--- +[documentation index](../README.md) > Macro Guitar fretboard/it diff --git a/wiki/translations/it/Macro_Half-Hull_Model.md b/wiki/translations/it/Macro_Half-Hull_Model.md index c900e0d083..1f19553a8e 100644 --- a/wiki/translations/it/Macro_Half-Hull_Model.md +++ b/wiki/translations/it/Macro_Half-Hull_Model.md @@ -1,5 +1,5 @@ # Macro Half-Hull Model/it - {{Macro/it +{{Macro/it |Name=Macro Half-Hull Model |Name/it=Mezzo scafo |Icon=Macro_Half_Hull_Model.png @@ -932,6 +932,5 @@ Questo script funziona senza bug. Ma a causa della grande varietà di possibili Lo script è troppo lungo per essere visualizzato nel Wiki quindi deve essere copiato o scaricato da [unabbreviated script on pastebin.com](http://pastebin.com/raw.php?i=tZMpUi6F) - - - +--- +[documentation index](../README.md) > Macro Half-Hull Model/it diff --git a/wiki/translations/it/Macro_Half_turn_stairs.md b/wiki/translations/it/Macro_Half_turn_stairs.md index 911055ed23..507e9b2db5 100644 --- a/wiki/translations/it/Macro_Half_turn_stairs.md +++ b/wiki/translations/it/Macro_Half_turn_stairs.md @@ -1,5 +1,5 @@ # Macro Half turn stairs/it - {{Macro/it +{{Macro/it |Name=Half_turn_stairs |Translate=Scala a mezzo giro |Icon=Macro_Half_turn_stairs.png @@ -304,6 +304,5 @@ Salva questi dati come file **stairs.dat** nella propria directory delle macro - [Macro\_PartsLibrary](Macro_PartsLibrary/it.md) FreeCAD Library - - - +--- +[documentation index](../README.md) > Macro Half turn stairs/it diff --git a/wiki/translations/it/Macro_HealArcs.md b/wiki/translations/it/Macro_HealArcs.md index c9010d46ef..8a76598846 100644 --- a/wiki/translations/it/Macro_HealArcs.md +++ b/wiki/translations/it/Macro_HealArcs.md @@ -1,5 +1,5 @@ # Macro HealArcs/it - {{Macro/it +{{Macro/it |Name=HealArcs |Translate=Cura gli archi |Icon=Macro_HealArcs.png @@ -45,6 +45,5 @@ else: FreeCAD.ActiveDocument.removeObject(n) }} - - - +--- +[documentation index](../README.md) > Macro HealArcs/it diff --git a/wiki/translations/it/Macro_HiddenAlls.md b/wiki/translations/it/Macro_HiddenAlls.md index dc02a58e69..dca9d581ab 100644 --- a/wiki/translations/it/Macro_HiddenAlls.md +++ b/wiki/translations/it/Macro_HiddenAlls.md @@ -1,7 +1,4 @@ # Macro HiddenAlls/it - - - {{Macro/it |Name=Macro HiddenAlls |Icon=Macro_HiddenAlls.png @@ -42,6 +39,5 @@ except Exception: None ``` - - - +--- +[documentation index](../README.md) > Macro HiddenAlls/it diff --git a/wiki/translations/it/Macro_HighlightCommon.md b/wiki/translations/it/Macro_HighlightCommon.md index 8e7a6f653e..d4850e62d0 100644 --- a/wiki/translations/it/Macro_HighlightCommon.md +++ b/wiki/translations/it/Macro_HighlightCommon.md @@ -1,5 +1,5 @@ # Macro HighlightCommon/it - {{Macro/it +{{Macro/it |Name=HightlightCommon |Icon=Macro_HighlightCommon.png |Translate=Evidenzia parti comuni @@ -33,3 +33,6 @@ Il codice è visibile in Github: [Utility/HighlightCommon.FCMacro](https://githu - Vedere la macro complementare: [Macro\_HighlightDifference](Macro_HighlightDifference/it.md) - Il mio blog [Linux for an engineer](http://linuxforanengineer.blogspot.com.es/) per il codice e altre interessanti macro per FreeCAD - La discussione nel forum: [\"collision detection\", overlapping](http://forum.freecadweb.org/viewtopic.php?f=22&t=12426) + +--- +[documentation index](../README.md) > Macro HighlightCommon/it diff --git a/wiki/translations/it/Macro_HighlightDifference.md b/wiki/translations/it/Macro_HighlightDifference.md index 0097adb59c..8293bb6b44 100644 --- a/wiki/translations/it/Macro_HighlightDifference.md +++ b/wiki/translations/it/Macro_HighlightDifference.md @@ -1,5 +1,5 @@ # Macro HighlightDifference/it - {{Macro/it +{{Macro/it |Name=HighlightDifference |Translate=Evidenzia differenze |Description=Calcola le differenze tra due forme @@ -39,3 +39,6 @@ Il codice è visibile in Github: [Utility/HighlightDifference.FCMacro](https://g - Vedere la macro complementare: [Macro\_HighlightCommon](Macro_HighlightCommon/it.md) - La discussione nel forum: [\"collision detection\", overlapping](http://forum.freecadweb.org/viewtopic.php?f=22&t=12426) + +--- +[documentation index](../README.md) > Macro HighlightDifference/it diff --git a/wiki/translations/it/Macro_HilbertCurve.md b/wiki/translations/it/Macro_HilbertCurve.md index 071cf381b8..2349d5691c 100644 --- a/wiki/translations/it/Macro_HilbertCurve.md +++ b/wiki/translations/it/Macro_HilbertCurve.md @@ -1,7 +1,4 @@ # Macro HilbertCurve/it - - -
@@ -298,3 +295,5 @@ hilbert_dialog = Hilbert_Dialog() hilbert_dialog.exec() }} +--- +[documentation index](../README.md) > Macro HilbertCurve/it diff --git a/wiki/translations/it/Macro_If_Selected_Stay_If_Not_Then_Delete.md b/wiki/translations/it/Macro_If_Selected_Stay_If_Not_Then_Delete.md index 908416041b..52299d0d04 100644 --- a/wiki/translations/it/Macro_If_Selected_Stay_If_Not_Then_Delete.md +++ b/wiki/translations/it/Macro_If_Selected_Stay_If_Not_Then_Delete.md @@ -1,7 +1,4 @@ # Macro If Selected Stay If Not Then Delete/it - - - {{Macro/it |Name=Macro If Selected Stay If Not Then Delete |Icon=Macro_If_Selected_Stay_If_Not_Then_Delete.png @@ -47,6 +44,5 @@ except Exception: ``` - - - +--- +[documentation index](../README.md) > Macro If Selected Stay If Not Then Delete/it diff --git a/wiki/translations/it/Macro_Image_Scaling.md b/wiki/translations/it/Macro_Image_Scaling.md index 5bfc6942b8..3d3f6af025 100644 --- a/wiki/translations/it/Macro_Image_Scaling.md +++ b/wiki/translations/it/Macro_Image_Scaling.md @@ -1,5 +1,5 @@ # Macro Image Scaling/it - {{Macro/it +{{Macro/it |Name=Image Scaling |Icon=Image_Scaling.svg |Translate=Scala immagine @@ -182,6 +182,5 @@ ui.setupUi(d) - [Download zip](http://forum.freecadweb.org/download/file.php?id=19542) - [Movie created by microelly2](https://youtu.be/2iFE40uHrA8) - - - +--- +[documentation index](../README.md) > Macro Image Scaling/it diff --git a/wiki/translations/it/Macro_JointWire.md b/wiki/translations/it/Macro_JointWire.md index 1019cc45f1..fdd9766a38 100644 --- a/wiki/translations/it/Macro_JointWire.md +++ b/wiki/translations/it/Macro_JointWire.md @@ -1,5 +1,5 @@ # Macro JointWire/it - **!!! This macro needs to be corrected. !!!** +**!!! This macro needs to be corrected. !!!** {{Macro/it @@ -92,6 +92,5 @@ ToolBar Icon ![](images/Macro_JointWire.png ) }} - - - +--- +[documentation index](../README.md) > Macro JointWire/it diff --git a/wiki/translations/it/Macro_Kerkythea.md b/wiki/translations/it/Macro_Kerkythea.md index cfc040ac31..d94f3b65aa 100644 --- a/wiki/translations/it/Macro_Kerkythea.md +++ b/wiki/translations/it/Macro_Kerkythea.md @@ -1,6 +1,4 @@ # Macro Kerkythea/it - - ## Introduzione @@ -48,3 +46,6 @@ See [How to install macros](How_to_install_macros.md) [Category:Macros](Category:Macros.md) [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Macros](Category:Macros.md) > Macro Kerkythea/it diff --git a/wiki/translations/it/Macro_Line_Length.md b/wiki/translations/it/Macro_Line_Length.md index 2fbcd3cd72..052e1ac225 100644 --- a/wiki/translations/it/Macro_Line_Length.md +++ b/wiki/translations/it/Macro_Line_Length.md @@ -1,5 +1,5 @@ # Macro Line Length/it - {{Macro/it +{{Macro/it |Name=Macro Line_Length |Translate=Linea e opzioni |Icon=Macro_Line_Length.png @@ -80,3 +80,5 @@ oppure, a scelta: >>> line_length(length = 50, angle = 45) ``` +--- +[documentation index](../README.md) > Macro Line Length/it diff --git a/wiki/translations/it/Macro_Loft.md b/wiki/translations/it/Macro_Loft.md index cf6c47a064..7b395107df 100644 --- a/wiki/translations/it/Macro_Loft.md +++ b/wiki/translations/it/Macro_Loft.md @@ -1,5 +1,5 @@ # Macro Loft/it - {{Macro/it +{{Macro/it |Name=Macro Loft |Translate=Loft |Icon=FCCreaLoft.png @@ -71,3 +71,6 @@ ver 00.02 : 09/02/2016 : Add button \"Select all\" and little option displayed i ver 00.03 : 09/02/2016 : minor (display on button) ver 00.04 : 03/07/2019 : adapt to Python 3 + +--- +[documentation index](../README.md) > Macro Loft/it diff --git a/wiki/translations/it/Macro_MacroMenu.md b/wiki/translations/it/Macro_MacroMenu.md index 14d1a0bf14..77bc31ac94 100644 --- a/wiki/translations/it/Macro_MacroMenu.md +++ b/wiki/translations/it/Macro_MacroMenu.md @@ -1,5 +1,5 @@ # Macro MacroMenu/it - {{Macro/it +{{Macro/it |Name=Macro MacroMenu |Icon=Macro_MacroMenu.png |Translate=Menu delle macro @@ -61,6 +61,5 @@ if macroPath and os.path.isdir(macroPath): }} - - - +--- +[documentation index](../README.md) > Macro MacroMenu/it diff --git a/wiki/translations/it/Macro_Make_Arc_3_Points.md b/wiki/translations/it/Macro_Make_Arc_3_Points.md index 7c60f9df33..1b15f30e4e 100644 --- a/wiki/translations/it/Macro_Make_Arc_3_Points.md +++ b/wiki/translations/it/Macro_Make_Arc_3_Points.md @@ -1,5 +1,5 @@ # Macro Make Arc 3 Points/it - {{Macro/it +{{Macro/it |Name=Macro Make Arc 3 Points |Icon=Macro_Make_Arc_3_Points.png |Translate=Arco da 3 punti @@ -78,3 +78,5 @@ FreeCADGui.Selection.addObserver(s) }} +--- +[documentation index](../README.md) > Macro Make Arc 3 Points/it diff --git a/wiki/translations/it/Macro_Make_Circle_3_Points.md b/wiki/translations/it/Macro_Make_Circle_3_Points.md index aa280e67cf..bc4e8d1d68 100644 --- a/wiki/translations/it/Macro_Make_Circle_3_Points.md +++ b/wiki/translations/it/Macro_Make_Circle_3_Points.md @@ -1,5 +1,5 @@ # Macro Make Circle 3 Points/it - {{Macro/it +{{Macro/it |Name=Macro Make Circle 3 Points |Icon=Macro_Make_Circle_3_Points.png |Translate=Cerchio da 3 punti @@ -642,3 +642,6 @@ La formula è presa da [cercle\_3pts.pdf](http://www-obs.univ-lyon1.fr/labo/fc/A Altre macro si trovano in: \* [Macro Draft Circle 3 Points](Macro_Draft_Circle_3_Points.md) \* [Macro Draft Circle 3 Points 3D](Macro_Draft_Circle_3_Points_3D.md) + +--- +[documentation index](../README.md) > Macro Make Circle 3 Points/it diff --git a/wiki/translations/it/Macro_Make_Cube.md b/wiki/translations/it/Macro_Make_Cube.md index 506eef9357..01a8d9abfe 100644 --- a/wiki/translations/it/Macro_Make_Cube.md +++ b/wiki/translations/it/Macro_Make_Cube.md @@ -1,7 +1,4 @@ # Macro Make Cube/it - - - {{Macro/it |Name=Make Cube @@ -155,3 +152,5 @@ class myCommand(draftTools.Creator): myCommand() ``` +--- +[documentation index](../README.md) > Macro Make Cube/it diff --git a/wiki/translations/it/Macro_Manage_Navigational_Style.md b/wiki/translations/it/Macro_Manage_Navigational_Style.md index 69823ddbfb..07e77925f9 100644 --- a/wiki/translations/it/Macro_Manage_Navigational_Style.md +++ b/wiki/translations/it/Macro_Manage_Navigational_Style.md @@ -1,5 +1,5 @@ # Macro Manage Navigational Style/it - {{Macro/it +{{Macro/it |Name=Macro Manage Navigational Styles |Icon=Macro_Manage_Navigational_Styles1.png |Translate=Stile di navigazione 1 @@ -48,6 +48,5 @@ p=App.ParamGet("User parameter:BaseApp/Preferences/View") p.SetString("NavigationStyle","Gui::CADNavigationStyle") }} - - - +--- +[documentation index](../README.md) > Macro Manage Navigational Style/it diff --git a/wiki/translations/it/Macro_Manage_Navigational_Style2.md b/wiki/translations/it/Macro_Manage_Navigational_Style2.md index 573e4bada6..0000ec57f4 100644 --- a/wiki/translations/it/Macro_Manage_Navigational_Style2.md +++ b/wiki/translations/it/Macro_Manage_Navigational_Style2.md @@ -1,5 +1,5 @@ # Macro Manage Navigational Style2/it - {{Macro +{{Macro |Name=Macro Manage Navigational Styles2 |Icon=Macro_Manage_Navigational_Styles2.png |Translate=Stile di navigazione 2 @@ -46,6 +46,5 @@ p=App.ParamGet("User parameter:BaseApp/Preferences/View") p.SetString("NavigationStyle","Gui::InventorNavigationStyle") }} - - - +--- +[documentation index](../README.md) > Macro Manage Navigational Style2/it diff --git a/wiki/translations/it/Macro_MatrixTransform.md b/wiki/translations/it/Macro_MatrixTransform.md index fc3a6810da..61447affd5 100644 --- a/wiki/translations/it/Macro_MatrixTransform.md +++ b/wiki/translations/it/Macro_MatrixTransform.md @@ -1,5 +1,5 @@ # Macro MatrixTransform/it - {{Macro/it +{{Macro/it |Name=MatrixTransform |Icon=Macro_MatrixTransform.png |Translate=Trasformazioni @@ -307,3 +307,6 @@ MatrixTransform.FCMacro: import MatrixTransform MatrixTransform.run() ``` + +--- +[documentation index](../README.md) > Macro MatrixTransform/it diff --git a/wiki/translations/it/Macro_MeasureCircle.md b/wiki/translations/it/Macro_MeasureCircle.md index d4cf5092ad..7609c8062e 100644 --- a/wiki/translations/it/Macro_MeasureCircle.md +++ b/wiki/translations/it/Macro_MeasureCircle.md @@ -1,5 +1,5 @@ # Macro MeasureCircle/it - {{Macro/it +{{Macro/it |Name=Macro MeasureCircle |Icon=Macro_MeasureCircle.png |Translate=Misura cerchio @@ -34,6 +34,5 @@ ToolBar Icon ![](images/Macro_MeasureCircle.png ) **Macro\_MeasureCircle.FCMacro** - - - +--- +[documentation index](../README.md) > Macro MeasureCircle/it diff --git a/wiki/translations/it/Macro_Megaminx.md b/wiki/translations/it/Macro_Megaminx.md index bdbe1499c6..b6cbc8663c 100644 --- a/wiki/translations/it/Macro_Megaminx.md +++ b/wiki/translations/it/Macro_Megaminx.md @@ -1,5 +1,5 @@ # Macro Megaminx/it - {{Macro/it +{{Macro/it |Name=Macro_Megaminx |Name/it=Macro Megaminx |Icon=Macro_Megaminx.png @@ -34,3 +34,6 @@ ToolBar icon ## Utilizzo Scarica il codice da nella tua macro directory. Esegui la macro su creare un documento Megaminx. Quindi puoi giocarci. È possibile utilizzare le funzioni della cronologia costruire e salvare operatori (ovvero algoritmi) che apportano utili trasformazioni su Megaminx. Un set adatto di questi ti darà una soluzione completa. Step\_history La funzione può essere utilizzata per aiutarti a riprodurre un operatore su un vero Megaminx. + +--- +[documentation index](../README.md) > Macro Megaminx/it diff --git a/wiki/translations/it/Macro_MeshToPart.md b/wiki/translations/it/Macro_MeshToPart.md index 67821a5d7d..39addefc0b 100644 --- a/wiki/translations/it/Macro_MeshToPart.md +++ b/wiki/translations/it/Macro_MeshToPart.md @@ -1,5 +1,5 @@ # Macro MeshToPart/it - {{Macro/it +{{Macro/it |Name=MeshToPart |Translate=Da Mesh a Part |Icon=Macro_MeshToPart.png @@ -65,3 +65,6 @@ for obj in FreeCADGui.Selection.getSelection(): ## Vincolo La discussione sul foro [Convert mesh to solid?](http://forum.freecadweb.org/viewtopic.php?f=3&t=253&hilit=getPlanarSegments) + +--- +[documentation index](../README.md) > Macro MeshToPart/it diff --git a/wiki/translations/it/Macro_MessageBox.md b/wiki/translations/it/Macro_MessageBox.md index 084b80a40b..6f87111483 100644 --- a/wiki/translations/it/Macro_MessageBox.md +++ b/wiki/translations/it/Macro_MessageBox.md @@ -1,5 +1,5 @@ # Macro MessageBox/it - {{Macro/it +{{Macro/it |Name=MessageBox |Icon=Macro MessageBox.png |Translate=Finestre di messaggi @@ -66,6 +66,5 @@ Example : "+str(z)+"\nRayon\t : "+str(r)) }} - - - +--- +[documentation index](../README.md) > Macro MessageBox/it diff --git a/wiki/translations/it/Macro_Mouse_Cross.md b/wiki/translations/it/Macro_Mouse_Cross.md index 8f350306cb..88b2cb162a 100644 --- a/wiki/translations/it/Macro_Mouse_Cross.md +++ b/wiki/translations/it/Macro_Mouse_Cross.md @@ -1,5 +1,5 @@ # Macro Mouse Cross/it - {{Macro/it +{{Macro/it |Name=Macro_Mouse_Cross |Icon=Macro_Mouse_Cross.png |Translate=Mouse di precisione @@ -211,3 +211,6 @@ ArrowCursor, UpArrowCursor, CrossCursor, WaitCursor, IBeamCursor, SizeVerCursor, Il cursore può cambiare aspetto a seconda dell\'ambiente di lavoro usato, quindi ripetere l\'operazione. Il cursore può essere sostituito con altri cursori (es: durante l\'espansione di una finestra, gli angoli\...). La griglia resta permanante. + +--- +[documentation index](../README.md) > Macro Mouse Cross/it diff --git a/wiki/translations/it/Macro_Mouse_over_cb.md b/wiki/translations/it/Macro_Mouse_over_cb.md index ef423396cb..6ebd1a25a1 100644 --- a/wiki/translations/it/Macro_Mouse_over_cb.md +++ b/wiki/translations/it/Macro_Mouse_over_cb.md @@ -1,5 +1,5 @@ # Macro Mouse over cb/it - {{Macro/it +{{Macro/it |Name=Macro Mouse over cb |Icon=Macro_Mouse_over_cb.png |Translate=Macro Mouse over cb @@ -65,3 +65,6 @@ mouse_over = view.addEventCallbackPivy( coin.SoLocation2Event.getClassTypeId(), La discussione sul foro [finding/selecting all elements below cursor](https://forum.freecadweb.org/viewtopic.php?f=10&t=19072) Altra similare macro [Selecting internal faces of a pressure vessel](https://forum.freecadweb.org/viewtopic.php?f=18&t=12381&p=151950#p151950) (carica il file [FC\_element\_selector\_v1p1p1.py](https://forum.freecadweb.org/download/file.php?id=31041)) + +--- +[documentation index](../README.md) > Macro Mouse over cb/it diff --git a/wiki/translations/it/Macro_Normal_Vector.md b/wiki/translations/it/Macro_Normal_Vector.md index 8bd64b2c0c..36cc5fe753 100644 --- a/wiki/translations/it/Macro_Normal_Vector.md +++ b/wiki/translations/it/Macro_Normal_Vector.md @@ -1,7 +1,4 @@ # Macro Normal Vector/it - - - {{Macro/it |Name=Normal Vector Macro |Icon=Macro_Normal_Vector.png @@ -57,6 +54,5 @@ Gui.Selection.getSelectionEx()[0].SubObjects[0].Faces[0].normalAt(0,0) [La discossione nel forum, in tedesco](http://forum.freecadweb.org/viewtopic.php?f=13&t=10959) - - - +--- +[documentation index](../README.md) > Macro Normal Vector/it diff --git a/wiki/translations/it/Macro_ObjectInfo.md b/wiki/translations/it/Macro_ObjectInfo.md index 0ca285bd27..603ed236f8 100644 --- a/wiki/translations/it/Macro_ObjectInfo.md +++ b/wiki/translations/it/Macro_ObjectInfo.md @@ -1,5 +1,5 @@ # Macro ObjectInfo/it - {{Macro/it +{{Macro/it |Name=Macro ObjectInfo |Translate=Info oggetto |Description=Fornisce informazioni sull'oggetto selezionato @@ -53,6 +53,5 @@ Si tratta di un modulo creato da un utente di FreeCAD ottenibile presso Macro ObjectInfo/it diff --git a/wiki/translations/it/Macro_Overlap.md b/wiki/translations/it/Macro_Overlap.md index bb8231e928..47640a7528 100644 --- a/wiki/translations/it/Macro_Overlap.md +++ b/wiki/translations/it/Macro_Overlap.md @@ -1,7 +1,4 @@ # Macro Overlap/it - - -
@@ -222,3 +219,5 @@ def run(): mb.exec_() }} +--- +[documentation index](../README.md) > Macro Overlap/it diff --git a/wiki/translations/it/Macro_PartToVRML.md b/wiki/translations/it/Macro_PartToVRML.md index bb0692550c..009a931e3c 100644 --- a/wiki/translations/it/Macro_PartToVRML.md +++ b/wiki/translations/it/Macro_PartToVRML.md @@ -1,5 +1,5 @@ # Macro PartToVRML/it - {{Macro/it +{{Macro/it |Name=Macro Macro PartToVRML |Translate=Da Part a VRML |Description=Converte le parti selezionate in mesh VRML.|Author=Easyw-fc @@ -236,3 +236,6 @@ L\'icona ![](images/PartToVRML.png ) La discussione nel forum: [export VRML from FreeCAD with python for smaller size, kicad and Blender compatible](http://forum.freecadweb.org/viewtopic.php?f=22&t=14099) La macro inversa, [Macro\_MeshToPart](Macro_MeshToPart/it.md) + +--- +[documentation index](../README.md) > Macro PartToVRML/it diff --git a/wiki/translations/it/Macro_PartsLibrary.md b/wiki/translations/it/Macro_PartsLibrary.md index 41cb3f1ff6..312477ad60 100644 --- a/wiki/translations/it/Macro_PartsLibrary.md +++ b/wiki/translations/it/Macro_PartsLibrary.md @@ -1,5 +1,5 @@ # Macro PartsLibrary/it - {{Macro/it +{{Macro/it |Name=Parts Library |Translate=Parts Library |Icon=FreeCAD Doc.png @@ -28,3 +28,6 @@ Questa macro, che è anche inclusa nella libreria, visualizza nell\'interfaccia ToolBar Icon ![](images/FreeCAD_Doc.png ) [PartsLibrary.FCMacro](http://github.com/yorikvanhavre/FreeCAD-library/blob/master/PartsLibrary.FCMacro) + +--- +[documentation index](../README.md) > Macro PartsLibrary/it diff --git a/wiki/translations/it/Macro_Perpendicular_To_Wire.md b/wiki/translations/it/Macro_Perpendicular_To_Wire.md index c5dd0bef25..1caad6b028 100644 --- a/wiki/translations/it/Macro_Perpendicular_To_Wire.md +++ b/wiki/translations/it/Macro_Perpendicular_To_Wire.md @@ -1,7 +1,4 @@ # Macro Perpendicular To Wire/it - - -
@@ -207,3 +204,6 @@ Ver 00.02 2019-04-06 : Python 3
Ver 00.03 2020-03-21: Source and comment typo fixes Ver 00.02 2019-04-06: Python 3 + +--- +[documentation index](../README.md) > Macro Perpendicular To Wire/it diff --git a/wiki/translations/it/Macro_PlacementAbsolufy.md b/wiki/translations/it/Macro_PlacementAbsolufy.md index e4cc54f5f6..02b1a647de 100644 --- a/wiki/translations/it/Macro_PlacementAbsolufy.md +++ b/wiki/translations/it/Macro_PlacementAbsolufy.md @@ -1,7 +1,4 @@ # Macro PlacementAbsolufy/it - - - {{Macro/it |Name=PlacementAbsolufy |Name/it=PlacementAbsolufy @@ -95,3 +92,6 @@ App.ActiveDocument.commitTransaction() #commit transaction ## Forum discussione Per qualsiasi feedback (bug, richiesta di funzionalità, commenti, \...), utilizzare questo thread del forum : [Preserving global position of Parts during export](https://forum.freecadweb.org/viewtopic.php?f=3&t=36869) + +--- +[documentation index](../README.md) > Macro PlacementAbsolufy/it diff --git a/wiki/translations/it/Macro_Polyhedrons.md b/wiki/translations/it/Macro_Polyhedrons.md index e2b7c26512..65f4c9506c 100644 --- a/wiki/translations/it/Macro_Polyhedrons.md +++ b/wiki/translations/it/Macro_Polyhedrons.md @@ -1,5 +1,5 @@ # Macro Polyhedrons/it - {{Macro +{{Macro |Name=Macro Polyhedrons |Name/it=Macro Polyhedrons |Icon=Dodecahedron.svg @@ -896,3 +896,5 @@ mainaction = polyhedron_dialog() }} +--- +[documentation index](../README.md) > Macro Polyhedrons/it diff --git a/wiki/translations/it/Macro_Print_SceneGraph.md b/wiki/translations/it/Macro_Print_SceneGraph.md index 041f4ad474..80daf0a8ff 100644 --- a/wiki/translations/it/Macro_Print_SceneGraph.md +++ b/wiki/translations/it/Macro_Print_SceneGraph.md @@ -1,7 +1,4 @@ # Macro Print SceneGraph/it - - - {{Macro/it |Name=Macro_Print_SceneGraph |Translate=Stampa SceneGraph @@ -119,3 +116,5 @@ else: QtGui.QApplication.restoreOverrideCursor() ``` +--- +[documentation index](../README.md) > Macro Print SceneGraph/it diff --git a/wiki/translations/it/Macro_PropertyMemo.md b/wiki/translations/it/Macro_PropertyMemo.md index fcca8f74c7..7092b525e0 100644 --- a/wiki/translations/it/Macro_PropertyMemo.md +++ b/wiki/translations/it/Macro_PropertyMemo.md @@ -1,7 +1,4 @@ # Macro PropertyMemo/it - - -
@@ -421,3 +418,5 @@ Le macro di [mario52a](https://gist.github.com/mario52a) in gists
+--- +[documentation index](../README.md) > Macro PropertyMemo/it diff --git a/wiki/translations/it/Macro_Pyramid.md b/wiki/translations/it/Macro_Pyramid.md index c5caddce6b..99d2af2680 100644 --- a/wiki/translations/it/Macro_Pyramid.md +++ b/wiki/translations/it/Macro_Pyramid.md @@ -1,5 +1,5 @@ # Macro Pyramid/it - {{Macro/it +{{Macro/it |Name=Macro Pyramid |Icon=Pyramidicon.svg |Description=Questa macro crea una piramide parametrica. I raggi e l'altezza verranno impostati al momento della creazione in modo simile al cono di Part. @@ -300,3 +300,6 @@ FreeCADGui.SendMsgToActiveView("ViewFit") ## Vincolo La discussione sul forum [Macros for pyramids and polyhedrons](https://forum.freecadweb.org/viewtopic.php?f=22&t=40485&p=344116&hilit=Eddyverl#p344116) + +--- +[documentation index](../README.md) > Macro Pyramid/it diff --git a/wiki/translations/it/Macro_Python_Assistant_Window.md b/wiki/translations/it/Macro_Python_Assistant_Window.md index d576f710ae..03836ff9be 100644 --- a/wiki/translations/it/Macro_Python_Assistant_Window.md +++ b/wiki/translations/it/Macro_Python_Assistant_Window.md @@ -1,5 +1,5 @@ # Macro Python Assistant Window/it - {{Macro/it +{{Macro/it |Name=Macro Python Assistant Window |Translate=Python Assistant Window |Description=Questa macro fornisce un ambiente di lavoro per tagliare/copiare/incollare del codice Python, segmentato in modo che possono essere selezionate differenti sezioni ed è persistente tra le sessioni di FreeCAD. @@ -640,6 +640,5 @@ ToolBar Icon ![](images/Macro_Python_Assistant_Window.png ) # #thus ends the macro... - - - +--- +[documentation index](../README.md) > Macro Python Assistant Window/it diff --git a/wiki/translations/it/Macro_Recompute_Profiler.md b/wiki/translations/it/Macro_Recompute_Profiler.md index 74a0e11d28..6f3be8c417 100644 --- a/wiki/translations/it/Macro_Recompute_Profiler.md +++ b/wiki/translations/it/Macro_Recompute_Profiler.md @@ -1,5 +1,5 @@ # Macro Recompute Profiler/it - {{Macro/it +{{Macro/it |Name=Macro Recompute Profiler |Translate=Macro Recompute Profiler |icone=Macro_Recompute_Profiler.png @@ -220,6 +220,5 @@ Coin version: 4.0.0a OCC version: 7.0.0 ``` - - - +--- +[documentation index](../README.md) > Macro Recompute Profiler/it diff --git a/wiki/translations/it/Macro_Rectellipse.md b/wiki/translations/it/Macro_Rectellipse.md index 93ed163051..6ebc78915f 100644 --- a/wiki/translations/it/Macro_Rectellipse.md +++ b/wiki/translations/it/Macro_Rectellipse.md @@ -1,5 +1,5 @@ # Macro Rectellipse/it - {{Macro/it +{{Macro/it |Name=Rectellipse Macro |Icon=Macro_Rectellipse.png |Translate=Rectellipse @@ -90,3 +90,6 @@ if __name__ == "__main__": ## Link [Ottieni il codice da Github.](https://github.com/FreeCAD/FreeCAD-macros/blob/master/ParametricObjectCreation/Rectellipse.FCMacro) + +--- +[documentation index](../README.md) > Macro Rectellipse/it diff --git a/wiki/translations/it/Macro_Remove_parametric_history.md b/wiki/translations/it/Macro_Remove_parametric_history.md index 06b31e745a..7ee12d7895 100644 --- a/wiki/translations/it/Macro_Remove_parametric_history.md +++ b/wiki/translations/it/Macro_Remove_parametric_history.md @@ -1,5 +1,5 @@ # Macro Remove parametric history/it - {{Macro/it +{{Macro/it |Name=Remove parametric history |Icon=Macro_Remove_parametric_history.png |Translate=Rimozione della cronologia @@ -39,6 +39,5 @@ newObject.Shape = newShape }} - - - +--- +[documentation index](../README.md) > Macro Remove parametric history/it diff --git a/wiki/translations/it/Macro_Replace_Part_in_Assembly.md b/wiki/translations/it/Macro_Replace_Part_in_Assembly.md index 67e230167a..776d18f6d5 100644 --- a/wiki/translations/it/Macro_Replace_Part_in_Assembly.md +++ b/wiki/translations/it/Macro_Replace_Part_in_Assembly.md @@ -1,5 +1,5 @@ # Macro Replace Part in Assembly/it - {{Macro/it +{{Macro/it |Name=Macro Replace Part in Assembly |Translate=Sostituisci Parte in Assembly |Icon=Replace_Part.png @@ -624,6 +624,5 @@ class replace(): }} - - - +--- +[documentation index](../README.md) > Macro Replace Part in Assembly/it diff --git a/wiki/translations/it/Macro_ReproWire.md b/wiki/translations/it/Macro_ReproWire.md index 9b18fd03ee..04693b5194 100644 --- a/wiki/translations/it/Macro_ReproWire.md +++ b/wiki/translations/it/Macro_ReproWire.md @@ -1,2 +1,5 @@ # Macro ReproWire/it 1. REDIRECT [Macro Repro Wire/it](Macro_Repro_Wire/it.md) + +--- +[documentation index](../README.md) > Macro ReproWire/it diff --git a/wiki/translations/it/Macro_Repro_Wire.md b/wiki/translations/it/Macro_Repro_Wire.md index 2a040549cc..930b63c16f 100644 --- a/wiki/translations/it/Macro_Repro_Wire.md +++ b/wiki/translations/it/Macro_Repro_Wire.md @@ -1,5 +1,5 @@ # Macro Repro Wire/it - {{Macro/it +{{Macro/it |Name= Macro Repro Wire |Translate=Replica un componente |Icon= Macro_ReproWire.png @@ -146,6 +146,5 @@ except Exception: Nel forum [are there any tools to extrude only selected surface from a sketch?](http://forum.freecadweb.org/viewtopic.php?f=3&t=12922) - - - +--- +[documentation index](../README.md) > Macro Repro Wire/it diff --git a/wiki/translations/it/Macro_Rotate_To_Point.md b/wiki/translations/it/Macro_Rotate_To_Point.md index 13f4c4fccb..24f8b8874f 100644 --- a/wiki/translations/it/Macro_Rotate_To_Point.md +++ b/wiki/translations/it/Macro_Rotate_To_Point.md @@ -1,7 +1,4 @@ # Macro Rotate To Point/it - - -
@@ -3002,3 +2999,6 @@ myObject.Placement 05/03/2017 ver 00.01 : agggiunto 3 spinbox per visualizzare le coordinate X Y Z del clic del mouse 04/03/2017 ver 00.00 + +--- +[documentation index](../README.md) > Macro Rotate To Point/it diff --git a/wiki/translations/it/Macro_Rotate_View.md b/wiki/translations/it/Macro_Rotate_View.md index c8f893f01c..8a43225894 100644 --- a/wiki/translations/it/Macro_Rotate_View.md +++ b/wiki/translations/it/Macro_Rotate_View.md @@ -1,7 +1,4 @@ # Macro Rotate View/it - - -
@@ -53,6 +50,5 @@ nrot = cam.orientation.getValue() * rot cam.orientation = nrot }} - - - +--- +[documentation index](../README.md) > Macro Rotate View/it diff --git a/wiki/translations/it/Macro_Rotate_ViewAxonometric.md b/wiki/translations/it/Macro_Rotate_ViewAxonometric.md index d1b8313892..365780b58b 100644 --- a/wiki/translations/it/Macro_Rotate_ViewAxonometric.md +++ b/wiki/translations/it/Macro_Rotate_ViewAxonometric.md @@ -1,5 +1,5 @@ # Macro Rotate ViewAxonometric/it - {{Macro/it +{{Macro/it |Name=Macro Rotate ViewAxonometric |Icon=Macro_Rotate_View_with_Y_pointing_upwards_.png |Description=Questa macro ruota la vista corrente in ViewAxonometric (come è: Y). @@ -70,6 +70,5 @@ cam.orientation = nrot Gui.SendMsgToActiveView("ViewFit") }} - - - +--- +[documentation index](../README.md) > Macro Rotate ViewAxonometric/it diff --git a/wiki/translations/it/Macro_Rotate_View_Free.md b/wiki/translations/it/Macro_Rotate_View_Free.md index 9637844997..76cf46f54d 100644 --- a/wiki/translations/it/Macro_Rotate_View_Free.md +++ b/wiki/translations/it/Macro_Rotate_View_Free.md @@ -1,5 +1,5 @@ # Macro Rotate View Free/it - {{Macro/it +{{Macro/it |Name=Rotate View Free |Icon=Text_console_python.png |Description=Questa def incollata nella console Python FreeCAD (o la tua macro) ti permette di ruotare la vista in 3 assi e l'angolo (in gradi) dà interesse a creare un piano per una posizione desiderata @@ -57,6 +57,5 @@ RotateView(0,1,0,45) Se non ci sono documenti aperti viene restituito un errore. - - - +--- +[documentation index](../README.md) > Macro Rotate View Free/it diff --git a/wiki/translations/it/Macro_Rubik_Cube.md b/wiki/translations/it/Macro_Rubik_Cube.md index afb3db5d69..c51f5480c1 100644 --- a/wiki/translations/it/Macro_Rubik_Cube.md +++ b/wiki/translations/it/Macro_Rubik_Cube.md @@ -1,5 +1,5 @@ # Macro Rubik Cube/it - {{Macro/it +{{Macro/it |Name=Macro_Rubik_Cube |Translate=Cubo di Rubik |Icon=Macro_Rubik_Cube.png @@ -1675,3 +1675,6 @@ ToolBar Icon FreeCAD.Console.PrintLog("fix_reload() done\n") restoreCursor() + +--- +[documentation index](../README.md) > Macro Rubik Cube/it diff --git a/wiki/translations/it/Macro_Screen_Wiki.md b/wiki/translations/it/Macro_Screen_Wiki.md index d52a027f25..0b3f0ee139 100644 --- a/wiki/translations/it/Macro_Screen_Wiki.md +++ b/wiki/translations/it/Macro_Screen_Wiki.md @@ -1,7 +1,4 @@ # Macro Screen Wiki/it - - - {{Macro/it |Name=Macro Screen Wiki |Icon=Macro_Screen_Wiki.png @@ -277,3 +274,6 @@ Version=0.03: 2020/10/30 : create a tool bar for the image and new button for un Version=0.02: 2020/05/04 : correct bug color button (self.PB\_01\_Color obsolete) Versione=0.01 : 2020/03/21 : + +--- +[documentation index](../README.md) > Macro Screen Wiki/it diff --git a/wiki/translations/it/Macro_Section.md b/wiki/translations/it/Macro_Section.md index 1a1604f0f5..cfb11dd847 100644 --- a/wiki/translations/it/Macro_Section.md +++ b/wiki/translations/it/Macro_Section.md @@ -1,5 +1,5 @@ # Macro Section/it - (parametrico!) +(parametrico!) {{Macro/it @@ -208,3 +208,5 @@ def run(): }} +--- +[documentation index](../README.md) > Macro Section/it diff --git a/wiki/translations/it/Macro_SelectVisible.md b/wiki/translations/it/Macro_SelectVisible.md index 7a490d2893..2d907d5d03 100644 --- a/wiki/translations/it/Macro_SelectVisible.md +++ b/wiki/translations/it/Macro_SelectVisible.md @@ -1,5 +1,5 @@ # Macro SelectVisible/it - {{Macro/it +{{Macro/it |Name=Macro SelectVisible |Translate=Seleziona oggetti visibili|Description=Seleziona tutti gli oggetti visibili. |Icon=SelectVisible.png @@ -53,4 +53,7 @@ else: for o in doc.Objects: if o.ViewObject.Visibility: Gui.Selection.addSelection(o) -}} +}} + +--- +[documentation index](../README.md) > Macro SelectVisible/it diff --git a/wiki/translations/it/Macro_Select_Hovering.md b/wiki/translations/it/Macro_Select_Hovering.md index 3e132ab2cf..eda2c1becd 100644 --- a/wiki/translations/it/Macro_Select_Hovering.md +++ b/wiki/translations/it/Macro_Select_Hovering.md @@ -1,5 +1,5 @@ # Macro Select Hovering/it - {{Macro/it +{{Macro/it |Name=Macro Select Hovering |Icon=Macro_Select_Hovering.png |Translate=Macro Seleziona passando il mouse. @@ -410,3 +410,6 @@ ver 00.01 (25/12/2017) : ## Vincolo [Multiple face selection to convert a shape to a solid](https://forum.freecadweb.org/viewtopic.php?f=3&t=26370) + +--- +[documentation index](../README.md) > Macro Select Hovering/it diff --git a/wiki/translations/it/Macro_Shake_Sketch.md b/wiki/translations/it/Macro_Shake_Sketch.md index 8b73036cba..b626a2cf4f 100644 --- a/wiki/translations/it/Macro_Shake_Sketch.md +++ b/wiki/translations/it/Macro_Shake_Sketch.md @@ -1,7 +1,4 @@ # Macro Shake Sketch/it - - - {{Macro/it |Name=Macro Shake Sketch |Icon=Macro_Shake_Sketch.png @@ -178,6 +175,5 @@ if do_move: move_points(sketch, i, sigma) ``` - - - +--- +[documentation index](../README.md) > Macro Shake Sketch/it diff --git a/wiki/translations/it/Macro_Sheet_Metal_Unfolder.md b/wiki/translations/it/Macro_Sheet_Metal_Unfolder.md index 05c93c7616..748cbf7f8d 100644 --- a/wiki/translations/it/Macro_Sheet_Metal_Unfolder.md +++ b/wiki/translations/it/Macro_Sheet_Metal_Unfolder.md @@ -1,5 +1,5 @@ # Macro Sheet Metal Unfolder/it - {{Macro/it +{{Macro/it |Name=Sheet Metal Unfolder |Icon=Macro_Sheet_Metal_Unfolder.png |Translate=Dispiega lamiera @@ -1489,3 +1489,5 @@ else: }} +--- +[documentation index](../README.md) > Macro Sheet Metal Unfolder/it diff --git a/wiki/translations/it/Macro_SimpleProperties.md b/wiki/translations/it/Macro_SimpleProperties.md index 2190999efe..f4a1f24a54 100644 --- a/wiki/translations/it/Macro_SimpleProperties.md +++ b/wiki/translations/it/Macro_SimpleProperties.md @@ -1,5 +1,5 @@ # Macro SimpleProperties/it - {{Macro/it +{{Macro/it |Name=SimpleProperties |Icon=Macro_SimpleProperties.png |Description=Questa macro fornisce proprietà semplici dell'oggetto selezionato (volume, boundbox, ...) @@ -133,3 +133,5 @@ else: }} +--- +[documentation index](../README.md) > Macro SimpleProperties/it diff --git a/wiki/translations/it/Macro_Site_From_Contours.md b/wiki/translations/it/Macro_Site_From_Contours.md index 2e27b8a414..ba5297ef2c 100644 --- a/wiki/translations/it/Macro_Site_From_Contours.md +++ b/wiki/translations/it/Macro_Site_From_Contours.md @@ -1,7 +1,4 @@ # Macro Site From Contours/it - - - {{Macro/it |Name=Macro Site From Contours |Translate=Macro Sito da contorni @@ -103,3 +100,6 @@ FreeCAD.ActiveDocument.recompute() ## Link La discussione nel forum [Create Toposurface from DXF](https://forum.freecadweb.org/viewtopic.php?f=3&t=30569) + +--- +[documentation index](../README.md) > Macro Site From Contours/it diff --git a/wiki/translations/it/Macro_SketchUnmap.md b/wiki/translations/it/Macro_SketchUnmap.md index 1ec081d414..e79da8623b 100644 --- a/wiki/translations/it/Macro_SketchUnmap.md +++ b/wiki/translations/it/Macro_SketchUnmap.md @@ -1,5 +1,5 @@ # Macro SketchUnmap/it - {{Macro +{{Macro |Name=SketchUnmap |Description=This macro resets a sketch placement to an absolute one, eventually creating a datum plane.
This macro has been written mainly to circumvent Topological Naming Issue that can break a model when a sketch has been directly or indirectly attached to a face or any other topological item.
To prevent breakage, macro shall be applied when the model is still right. It can't "repair" a broken model. If you just break your model, undo the last change(s) back to a good situation, apply the macro to the unstable sketch(es) then redo the previous operation. @@ -195,6 +195,5 @@ else: For any feedback (bug, feature request, comments, \...), please use this forum thread : [(FR) macro to remap sketch to different reference](https://forum.freecadweb.org/viewtopic.php?f=22&t=36078) - - - +--- +[documentation index](../README.md) > Macro SketchUnmap/it diff --git a/wiki/translations/it/Macro_Snip.md b/wiki/translations/it/Macro_Snip.md index 5389455333..d4cc50578e 100644 --- a/wiki/translations/it/Macro_Snip.md +++ b/wiki/translations/it/Macro_Snip.md @@ -1,7 +1,4 @@ # Macro Snip/it - - -
@@ -352,3 +349,6 @@ if not userCanceled: ## Link The forum discussion [Snip macro](https://forum.freecadweb.org/viewtopic.php?f=9&t=38328&sid=385bf3174dcae7fb8bdf529f4e76dfed) + +--- +[documentation index](../README.md) > Macro Snip/it diff --git a/wiki/translations/it/Macro_Solid_Sweep.md b/wiki/translations/it/Macro_Solid_Sweep.md index 0681776d77..ed420d200c 100644 --- a/wiki/translations/it/Macro_Solid_Sweep.md +++ b/wiki/translations/it/Macro_Solid_Sweep.md @@ -1,5 +1,5 @@ # Macro Solid Sweep/it - {{Macro/it +{{Macro/it |Name=Solid Sweep |Icon=Macro_Solid_Sweep.png |Translate=Sweep solido @@ -101,3 +101,6 @@ In [questa sezione del forum](https://forum.freecadweb.org/viewtopic.php?f=8&t=1 Lo stesso argomento viene trattato anche in [questa discussione](http://forum.freecadweb.org/viewtopic.php?f=3&t=1461) con ragguagli su [Frenet](http://en.wikipedia.org/wiki/Frenet%E2%80%93Serret_formulas). Utilizzando una elica come traiettoria, tramite uno sweep solido si può creare la filettatura di un bullone. + +--- +[documentation index](../README.md) > Macro Solid Sweep/it diff --git a/wiki/translations/it/Macro_SplitPropEditor.md b/wiki/translations/it/Macro_SplitPropEditor.md index 15f1ca80c6..451b8d2a2e 100644 --- a/wiki/translations/it/Macro_SplitPropEditor.md +++ b/wiki/translations/it/Macro_SplitPropEditor.md @@ -1,5 +1,5 @@ # Macro SplitPropEditor/it - {{Macro +{{Macro |Name=SplitPropEditor |Icon= |Description=This macro has been written because some operations in FreeCAD need to get a frequent access to the property editor. Its limited height in the combo view can be a problem, especially when access to the tree view is also needed at the same time.
@@ -174,3 +174,5 @@ if __name__ == '__main__': # if macro called to run run() }} +--- +[documentation index](../README.md) > Macro SplitPropEditor/it diff --git a/wiki/translations/it/Macro_SpreadsheetTools.md b/wiki/translations/it/Macro_SpreadsheetTools.md index 01cafad1a8..5154768c5e 100644 --- a/wiki/translations/it/Macro_SpreadsheetTools.md +++ b/wiki/translations/it/Macro_SpreadsheetTools.md @@ -1,5 +1,5 @@ # Macro SpreadsheetTools/it - {{Macro/it +{{Macro/it |Name=Macro SpreadsheetTools |Icon=Macro_SpreadsheetTools.png |Translate=Macro Strumenti per foglio di calcolo @@ -505,6 +505,5 @@ form = Spreadsheet_Tools(MainWindow) form.show() }} - - - +--- +[documentation index](../README.md) > Macro SpreadsheetTools/it diff --git a/wiki/translations/it/Macro_Spring.md b/wiki/translations/it/Macro_Spring.md index 7839ca3948..4dc71b567a 100644 --- a/wiki/translations/it/Macro_Spring.md +++ b/wiki/translations/it/Macro_Spring.md @@ -1,5 +1,5 @@ # Macro Spring/it - {{Macro/it +{{Macro/it |Name=Spring Simul |Icon=Macro_Spring.png |Translate=Spring Simul @@ -68,4 +68,7 @@ for ii2 in range(int(60)): ## Link -La pagina della discussione nel forum: [scripting animations](http://forum.freecadweb.org/viewtopic.php?f=22&t=7449#p62193) +La pagina della discussione nel forum: [scripting animations](http://forum.freecadweb.org/viewtopic.php?f=22&t=7449#p62193) + +--- +[documentation index](../README.md) > Macro Spring/it diff --git a/wiki/translations/it/Macro_Stairs.md b/wiki/translations/it/Macro_Stairs.md index a2a921b1ec..89df4ba377 100644 --- a/wiki/translations/it/Macro_Stairs.md +++ b/wiki/translations/it/Macro_Stairs.md @@ -1,5 +1,5 @@ # Macro Stairs/it - {{Macro/it +{{Macro/it |Name=Macro Stairs |Translate=Scala a chiocciola |Icon=Macro_Stairs.png @@ -111,6 +111,5 @@ FreeCAD.ActiveDocument.recompute() La discussione nel forum [Newbie question - spiral stairs reloaded](http://forum.freecadweb.org/viewtopic.php?f=3&t=9921) - - - +--- +[documentation index](../README.md) > Macro Stairs/it diff --git a/wiki/translations/it/Macro_SuperWire.md b/wiki/translations/it/Macro_SuperWire.md index f7432ea476..c5d5d92e89 100644 --- a/wiki/translations/it/Macro_SuperWire.md +++ b/wiki/translations/it/Macro_SuperWire.md @@ -1,7 +1,4 @@ # Macro SuperWire/it - - - {{Macro/it |Name=SuperWire |Icon=Macro_SuperWire.png @@ -59,6 +56,5 @@ else: ``` - - - +--- +[documentation index](../README.md) > Macro SuperWire/it diff --git a/wiki/translations/it/Macro_Texture.md b/wiki/translations/it/Macro_Texture.md index 5bebbd3753..d90a59ae13 100644 --- a/wiki/translations/it/Macro_Texture.md +++ b/wiki/translations/it/Macro_Texture.md @@ -1,7 +1,4 @@ # Macro Texture/it - - -
@@ -436,3 +433,6 @@ La FCCreaLoft [Macro ver 0.4 : 08/08/2014 PyQt4 PySide ver 0.3 : 28/03/2014 :commentata la riga \"**\# self.checkBox\_5.setAccessibleName(\_fromUtf8(\"\"))**\" che causa un errore con la seguente versione di FreeCAD : 0.14.3343 (Git), Python version: 2.7.6, Qt version: 4.8.5 + +--- +[documentation index](../README.md) > Macro Texture/it diff --git a/wiki/translations/it/Macro_Texture_Objects.md b/wiki/translations/it/Macro_Texture_Objects.md index d60d7c4b94..927f1e5f6b 100644 --- a/wiki/translations/it/Macro_Texture_Objects.md +++ b/wiki/translations/it/Macro_Texture_Objects.md @@ -1,5 +1,5 @@ # Macro Texture Objects/it - {{Macro/it +{{Macro/it |Name=Texture Objects |Icon=Macro_Texture_Objects.png |Translate=Campitura di oggetti @@ -46,6 +46,5 @@ for obj in FreeCADGui.Selection.getSelection(): [Script to map texture with environement checked](https://forum.freecadweb.org/viewtopic.php?f=3&t=28795) - - - +--- +[documentation index](../README.md) > Macro Texture Objects/it diff --git a/wiki/translations/it/Macro_Toggle_Drawstyle.md b/wiki/translations/it/Macro_Toggle_Drawstyle.md index 3b4d4ac83e..61b6277db6 100644 --- a/wiki/translations/it/Macro_Toggle_Drawstyle.md +++ b/wiki/translations/it/Macro_Toggle_Drawstyle.md @@ -1,5 +1,5 @@ # Macro Toggle Drawstyle/it - {{Macro/it +{{Macro/it |Name=Macro Toggle Drawstyle |Translate=Stile di disegno |Description=Cambia lo Stile di disegno dell'oggetto selezionato. @@ -128,6 +128,5 @@ else: La discussione sul foro [Keyboard shortcut, View toolbar - Wireframe](https://forum.freecadweb.org/viewtopic.php?f=3&t=14336) - - - +--- +[documentation index](../README.md) > Macro Toggle Drawstyle/it diff --git a/wiki/translations/it/Macro_Toggle_Drawstyle_Optimized.md b/wiki/translations/it/Macro_Toggle_Drawstyle_Optimized.md index 2a9cabb993..02ed5c5264 100644 --- a/wiki/translations/it/Macro_Toggle_Drawstyle_Optimized.md +++ b/wiki/translations/it/Macro_Toggle_Drawstyle_Optimized.md @@ -1,5 +1,5 @@ # Macro Toggle Drawstyle Optimized/it - {{Macro/it +{{Macro/it |Name=Macro Toggle Drawstyle Optimized |Description=Script ottimizzato per tutte le lingue e per gli oggetti selezionati o tutti gli oggetti.
Quando si lavora con FreeCAD ci sono momenti in cui si desidera cambiare rapidamente lo stile di disegno dell'oggetto con cui si sta lavorando. Questo è disponibile attraverso il menu a discesa Drawstyle in cui è possibile selezionare qualsiasi Drawstyle. Questa macro rende disponibili 2 stili di disegno come pulsante selezionabile su una barra degli strumenti su cui l'utente può fare clic per alternare tra i due stili. |Author=Piffpoof , triplus @@ -228,3 +228,6 @@ for o in obj: Il vincolo al forum (2016-11-27 ver:1.0 FC =\< 0.17): [Keyboard shortcut, View toolbar - Wireframe](https://forum.freecadweb.org/viewtopic.php?f=3&t=14336&start=40#p146239) Il vincolo al forum (2020-29-01 ver:2.0 FC =\> 0.17) : [Keyboard shortcut, View toolbar - Wireframe](https://forum.freecadweb.org/viewtopic.php?f=3&t=14336&start=50#p364692) + +--- +[documentation index](../README.md) > Macro Toggle Drawstyle Optimized/it diff --git a/wiki/translations/it/Macro_Toggle_Panels_Visibility.md b/wiki/translations/it/Macro_Toggle_Panels_Visibility.md index 19bd75fb1a..bf47cc1b45 100644 --- a/wiki/translations/it/Macro_Toggle_Panels_Visibility.md +++ b/wiki/translations/it/Macro_Toggle_Panels_Visibility.md @@ -1,5 +1,5 @@ # Macro Toggle Panels Visibility/it - {{Macro/it +{{Macro/it |Name=Macro Toggle Panels Visibility |Translate=Nascondi Pannelli |Icon=Macro_Toggle_Views_Visibility.png @@ -62,6 +62,5 @@ else: }} - - - +--- +[documentation index](../README.md) > Macro Toggle Panels Visibility/it diff --git a/wiki/translations/it/Macro_Toggle_Visibility.md b/wiki/translations/it/Macro_Toggle_Visibility.md index 7964ad0373..db55693b98 100644 --- a/wiki/translations/it/Macro_Toggle_Visibility.md +++ b/wiki/translations/it/Macro_Toggle_Visibility.md @@ -1,5 +1,5 @@ # Macro Toggle Visibility/it - {{Macro/it +{{Macro/it |Name=Toggle Visibility |Translate=Visibilità oggetti |Icon=Macro SelectVisible.png @@ -80,3 +80,6 @@ La discussione nel forum [Proposal: select one or more pieces, hide the others.] ## Version ver 00.02 12/11/2015 **macro Macro\_SelectVisible** : hidden the objects not selected, if not object selected displayed all objects, hidden all objects. This version include the tree macro in one + +--- +[documentation index](../README.md) > Macro Toggle Visibility/it diff --git a/wiki/translations/it/Macro_Toggle_Visibility2_1-2.md b/wiki/translations/it/Macro_Toggle_Visibility2_1-2.md index f81c394142..1ae1da7c60 100644 --- a/wiki/translations/it/Macro_Toggle_Visibility2_1-2.md +++ b/wiki/translations/it/Macro_Toggle_Visibility2_1-2.md @@ -1,5 +1,5 @@ # Macro Toggle Visibility2 1-2/it - {{Macro/it +{{Macro/it |Name=Toggle Visibility2 1-2 |Translate=Commuta visibilità |Icon=Macro SelectVisible2.png @@ -89,3 +89,6 @@ Seconda macro [Macro Toggle Visibility2 2-2](Macro_Toggle_Visibility2_2-2/it.md) La discussione sul forum [Re: Proposal: select one or more pieces, hide the others.](https://forum.freecadweb.org/viewtopic.php?f=8&t=13152&start=10#p184056) Idea originale [Macro\_Toggle\_Visibility](https://www.freecadweb.org/wiki/index.php?title=Macro_Toggle_Visibility) + +--- +[documentation index](../README.md) > Macro Toggle Visibility2 1-2/it diff --git a/wiki/translations/it/Macro_Toggle_Visibility2_2-2.md b/wiki/translations/it/Macro_Toggle_Visibility2_2-2.md index 4f8e946343..c87fb37a03 100644 --- a/wiki/translations/it/Macro_Toggle_Visibility2_2-2.md +++ b/wiki/translations/it/Macro_Toggle_Visibility2_2-2.md @@ -1,5 +1,5 @@ # Macro Toggle Visibility2 2-2/it - {{Macro +{{Macro |Name=Macro Toggle Visibility2 2-2 |translate=Macro Toggle Visibility2 2-2 |Icon=Macro_VisibleAlls2.png @@ -49,3 +49,5 @@ try: except Exception: None }} +--- +[documentation index](../README.md) > Macro Toggle Visibility2 2-2/it diff --git a/wiki/translations/it/Macro_TreeToAscii.md b/wiki/translations/it/Macro_TreeToAscii.md index abc40e7dd7..39c46b15dc 100644 --- a/wiki/translations/it/Macro_TreeToAscii.md +++ b/wiki/translations/it/Macro_TreeToAscii.md @@ -1,7 +1,4 @@ # Macro TreeToAscii/it - - -
@@ -267,3 +264,5 @@ dlg.exec_() }} +--- +[documentation index](../README.md) > Macro TreeToAscii/it diff --git a/wiki/translations/it/Macro_Triangle_AH.md b/wiki/translations/it/Macro_Triangle_AH.md index 685ae1aa1d..496fb8815b 100644 --- a/wiki/translations/it/Macro_Triangle_AH.md +++ b/wiki/translations/it/Macro_Triangle_AH.md @@ -1,5 +1,5 @@ # Macro Triangle AH/it - {{Macro/it +{{Macro/it |Name=Macro Triangle AH |Translate=Triangolo AH |Icon=Macro_Triangle_AH.png @@ -97,3 +97,6 @@ ver 00.03 2019/07/02 aggiunto \"App.ActiveDocument.recompute()\" e conversione v ver 00.02 03/05/2015 : aggiunto \"base=0.0\", \"hypo=0.0\" dati del triangolo ver 00.01 20/03/2015 : + +--- +[documentation index](../README.md) > Macro Triangle AH/it diff --git a/wiki/translations/it/Macro_Unbind_Numpad_Shortcuts.md b/wiki/translations/it/Macro_Unbind_Numpad_Shortcuts.md index 9635aa58ac..416476d45f 100644 --- a/wiki/translations/it/Macro_Unbind_Numpad_Shortcuts.md +++ b/wiki/translations/it/Macro_Unbind_Numpad_Shortcuts.md @@ -1,5 +1,5 @@ # Macro Unbind Numpad Shortcuts/it - {{Macro/it +{{Macro/it |Name=Macro Unbind Numpad Shortcuts |Translate=Annulla collegamenti al tastierino numerico |Icon=Macro_Unbind_Numpad_Shortcuts.png @@ -46,3 +46,5 @@ for (cmd, shortcut) in preset: App.ParamGet("User parameter:BaseApp/Preferences/Shortcut").SetString(cmd, shortcut) }} +--- +[documentation index](../README.md) > Macro Unbind Numpad Shortcuts/it diff --git a/wiki/translations/it/Macro_Unfold_Box.md b/wiki/translations/it/Macro_Unfold_Box.md index b8679e0f67..fc71ddfaef 100644 --- a/wiki/translations/it/Macro_Unfold_Box.md +++ b/wiki/translations/it/Macro_Unfold_Box.md @@ -1,7 +1,4 @@ # Macro Unfold Box/it - - -
@@ -612,3 +609,5 @@ DialogBox.show() }} +--- +[documentation index](../README.md) > Macro Unfold Box/it diff --git a/wiki/translations/it/Macro_Unroll_Ruled_Surface.md b/wiki/translations/it/Macro_Unroll_Ruled_Surface.md index 9c3b72bd70..4f84da87b8 100644 --- a/wiki/translations/it/Macro_Unroll_Ruled_Surface.md +++ b/wiki/translations/it/Macro_Unroll_Ruled_Surface.md @@ -1,5 +1,5 @@ # Macro Unroll Ruled Surface/it - {{Macro/it +{{Macro/it |Name=Macro Unroll Ruled Surface |Translate=Sviluppa superfici rigate |Description=Permette di srotolare le superfici rigate e di disegnarle in una pagina. @@ -748,6 +748,5 @@ DialogBox.show() }} - - - +--- +[documentation index](../README.md) > Macro Unroll Ruled Surface/it diff --git a/wiki/translations/it/Macro_View_Rotation.md b/wiki/translations/it/Macro_View_Rotation.md index 2e5ec4be86..494913df15 100644 --- a/wiki/translations/it/Macro_View_Rotation.md +++ b/wiki/translations/it/Macro_View_Rotation.md @@ -1,5 +1,5 @@ # Macro View Rotation/it - {{Macro/it +{{Macro/it |Name=View Rotation |Icon=Macro View Rotation.png |Translate=Rotazione della vista @@ -292,3 +292,6 @@ alla fine della funzione \'initUI\'. I primi due argomenti (right-300, 0) (linea ## Pagina di discussione [View+Rotation](http://forum.freecadweb.org/viewtopic.php?f=3&t=1784&hilit=View+Rotation#p12012) + +--- +[documentation index](../README.md) > Macro View Rotation/it diff --git a/wiki/translations/it/Macro_Visibility_Manager.md b/wiki/translations/it/Macro_Visibility_Manager.md index 02946f97f0..9acab9f2b1 100644 --- a/wiki/translations/it/Macro_Visibility_Manager.md +++ b/wiki/translations/it/Macro_Visibility_Manager.md @@ -1,7 +1,4 @@ # Macro Visibility Manager/it - - -
@@ -245,3 +242,5 @@ else: FreeCAD.Console.PrintWarning("Visibility Manager v"+str(__version__)+": no active document\n") ``` +--- +[documentation index](../README.md) > Macro Visibility Manager/it diff --git a/wiki/translations/it/Macro_VisibleAlls.md b/wiki/translations/it/Macro_VisibleAlls.md index 0b5dc7126e..913740aa1c 100644 --- a/wiki/translations/it/Macro_VisibleAlls.md +++ b/wiki/translations/it/Macro_VisibleAlls.md @@ -1,7 +1,4 @@ # Macro VisibleAlls/it - - - {{Macro/it |Name=Macro VisibleAlls |Icon=Macro_VisibleAlls.png @@ -42,6 +39,5 @@ except Exception: None ``` - - - +--- +[documentation index](../README.md) > Macro VisibleAlls/it diff --git a/wiki/translations/it/Macro_WireXYZ.md b/wiki/translations/it/Macro_WireXYZ.md index 3da40d41eb..d5c3e8a337 100644 --- a/wiki/translations/it/Macro_WireXYZ.md +++ b/wiki/translations/it/Macro_WireXYZ.md @@ -1,5 +1,5 @@ # Macro WireXYZ/it - {{Macro/it +{{Macro/it |Name=WireXYZ |Icon=Macro_WireXYZ.png |Translate=Polilinea da XYZ @@ -133,3 +133,6 @@ La pagina della discussione: [How do I transform a point cloud to a line?](http: 00.02 02/07/2019 : 00.01 21/02/2015 + +--- +[documentation index](../README.md) > Macro WireXYZ/it diff --git a/wiki/translations/it/Macro_Wiring_And_Hoses.md b/wiki/translations/it/Macro_Wiring_And_Hoses.md index 0aeaf76a9a..8554ebf0b9 100644 --- a/wiki/translations/it/Macro_Wiring_And_Hoses.md +++ b/wiki/translations/it/Macro_Wiring_And_Hoses.md @@ -1,5 +1,5 @@ # Macro Wiring And Hoses/it - {{Macro/it|Name=Macro Wiring And Hoses|Name/it=Cablaggio e tubazioni|Description=Queste macro supportano la creazione e la manutenzione di cablaggi e tubazioni.|Author=Piffpoof}} +{{Macro/it|Name=Macro Wiring And Hoses|Name/it=Cablaggio e tubazioni|Description=Queste macro supportano la creazione e la manutenzione di cablaggi e tubazioni.|Author=Piffpoof}} **From [User:Piffpoof](User:Piffpoof.md) Note: some changes between v 0.14 and v 0.15 have effected this macro which will delay releasing it** @@ -183,6 +183,5 @@ blah blah blah blah blah blah - - - +--- +[documentation index](../README.md) > Macro Wiring And Hoses/it diff --git a/wiki/translations/it/Macro_WorkFeatures.md b/wiki/translations/it/Macro_WorkFeatures.md index b8c8181691..f297fd64ae 100644 --- a/wiki/translations/it/Macro_WorkFeatures.md +++ b/wiki/translations/it/Macro_WorkFeatures.md @@ -1,5 +1,5 @@ # Macro WorkFeatures/it - {{Macro/it +{{Macro/it |Name=Macro WorkFeatures |Icon=WF_wf.png |Translate=WorkFeatures @@ -560,3 +560,6 @@ Data 2019-05-01 (YYYY-MM-DD) [Category:Addons/it](Category:Addons/it.md) [Category:User Documentation/it](Category:User_Documentation/it.md) [Category:Addons](Category:Addons.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Macro WorkFeatures/it diff --git a/wiki/translations/it/Macro_at_Startup.md b/wiki/translations/it/Macro_at_Startup.md index 3b2c39ac50..fdcc9df7be 100644 --- a/wiki/translations/it/Macro_at_Startup.md +++ b/wiki/translations/it/Macro_at_Startup.md @@ -1,7 +1,4 @@ # Macro at Startup/it - - -
## Introduzione @@ -167,3 +164,6 @@ Notare che se la macro originale è stata scaricata tramite Addon Manager, nel c }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macro at Startup/it diff --git a/wiki/translations/it/Macro_circle.md b/wiki/translations/it/Macro_circle.md index ffa60151e0..6afbbeda2c 100644 --- a/wiki/translations/it/Macro_circle.md +++ b/wiki/translations/it/Macro_circle.md @@ -1,2 +1,5 @@ # Macro circle/it 1. REDIRECT [Macro Circle/it](Macro_Circle/it.md) + +--- +[documentation index](../README.md) > Macro circle/it diff --git a/wiki/translations/it/Macro_crank_simul.md b/wiki/translations/it/Macro_crank_simul.md index bc366ef40e..20f7cd4f14 100644 --- a/wiki/translations/it/Macro_crank_simul.md +++ b/wiki/translations/it/Macro_crank_simul.md @@ -1,5 +1,5 @@ # Macro crank simul/it - {{Macro/it +{{Macro/it |Name=Crank Simul |Translate=Crank Simul |Description=Simulazione di cinematismo biella manovella. @@ -80,6 +80,5 @@ La discussione nel forum: [Inline-four engine animation](http://forum.freecadweb Il blog: [freecad-tutorial.blogspot](http://freecad-tutorial.blogspot.be/) - - - +--- +[documentation index](../README.md) > Macro crank simul/it diff --git a/wiki/translations/it/Macro_cross_section.md b/wiki/translations/it/Macro_cross_section.md index dccc1ebaf9..9b01783692 100644 --- a/wiki/translations/it/Macro_cross_section.md +++ b/wiki/translations/it/Macro_cross_section.md @@ -1,7 +1,4 @@ # Macro cross section/it - - -
@@ -673,3 +670,6 @@ ver 00.07 17/09/2017 : upgrade multiple objects with different colors by Gift ver 00.06 06/09/2017 : upgrade by Gift see [Optischer Schnitt durch Baugruppe, z.B. für Ventilgehäuse](https://www.forum.freecadweb.org/viewtopic.php?f=13&t=24130) accept the multiple objects with different colors ver 00.05 17/08/2017 : upgrade for 0.17 FreeCAD version by Sam see [Sezione Dinamica](https://forum.freecadweb.org/viewtopic.php?f=28&t=15084&start=10#p187030) + +--- +[documentation index](../README.md) > Macro cross section/it diff --git a/wiki/translations/it/Macro_cutCircle.md b/wiki/translations/it/Macro_cutCircle.md index 4c74d64fd4..e1aa0a208e 100644 --- a/wiki/translations/it/Macro_cutCircle.md +++ b/wiki/translations/it/Macro_cutCircle.md @@ -1,2 +1,5 @@ # Macro cutCircle/it 1. REDIRECT [Macro Cut Circle/it](Macro_Cut_Circle/it.md) + +--- +[documentation index](../README.md) > Macro cutCircle/it diff --git a/wiki/translations/it/Macro_cutLine.md b/wiki/translations/it/Macro_cutLine.md index 1348c7faa1..82ee55b9d6 100644 --- a/wiki/translations/it/Macro_cutLine.md +++ b/wiki/translations/it/Macro_cutLine.md @@ -1,2 +1,5 @@ # Macro cutLine/it 1. REDIRECT [Macro Cut Line/it](Macro_Cut_Line/it.md) + +--- +[documentation index](../README.md) > Macro cutLine/it diff --git a/wiki/translations/it/Macro_documentation.md b/wiki/translations/it/Macro_documentation.md index 7d0a2d5be5..934823c7d3 100644 --- a/wiki/translations/it/Macro_documentation.md +++ b/wiki/translations/it/Macro_documentation.md @@ -1,6 +1,4 @@ # Macro documentation/it - - ## Descrizione All macros should be properly documented in the same way [Gui Commands](Gui_Command.md) are documented. They should have an individual wiki page, and should be listed in one of the categories in [Macros recipes](Macros_recipes.md). @@ -200,3 +198,6 @@ To make a macro installable from the [Addon Manager](Addon_Manager.md) it should In order to include the macro there, first it must be reviewed by the FreeCAD community in the [Python scripting and macros](https://forum.freecadweb.org/viewforum.php?f=22) subforum. Once this is done, the FreeCAD-macros repository should be forked, the new macro should be included in a branch, and then the branch should be pushed and merged into the upstream repository. [Category:Macros](Category:Macros.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [Macros](Category:Macros.md) > Macro documentation/it diff --git a/wiki/translations/it/Macro_export_transient_FEM_results.md b/wiki/translations/it/Macro_export_transient_FEM_results.md index 0bfa934235..941cc5ddce 100644 --- a/wiki/translations/it/Macro_export_transient_FEM_results.md +++ b/wiki/translations/it/Macro_export_transient_FEM_results.md @@ -1,5 +1,5 @@ # Macro export transient FEM results/it - {{Macro +{{Macro |Name=export transient FEM results |Description=Export multiple FEM results from a transient analysis for post-processing in ParaView. |Download=[https://drive.google.com/file/d/1MSBxLPlQ-TwzF-sFkgOeFb48zij5_scp/view?usp=sharing Macro file (3 kB)]
[https://drive.google.com/file/d/1m3RiJ-JM7QSJ6YDhZnafHIbyL92V6sYU/view?usp=sharing Example file without results (200 kB)]
[https://drive.google.com/file/d/157aIdVpIyfpVW9WxL-ReGz0FIsQebH_q/view?usp=sharing Example file with results (10 MB)]
[https://drive.google.com/file/d/1g-QOJtl3G5KaY2bSrw03NNQ8mnfBi03T/view?usp=sharing All example files, including the vtk-export folder (21 MB)] @@ -134,3 +134,6 @@ FreeCAD.Console.PrintMessage('\n<<<----------Macro finished\n') Example [Transient FEM analysis](https://www.freecadweb.org/wiki/Transient_FEM_analysis) The Forum discussion [Export transient FEM results to vtk/vtu for ParaView](https://forum.freecadweb.org/viewtopic.php?f=22&t=37650) + +--- +[documentation index](../README.md) > Macro export transient FEM results/it diff --git a/wiki/translations/it/Macro_findConfigFiles.md b/wiki/translations/it/Macro_findConfigFiles.md index b4735f92aa..4289863163 100644 --- a/wiki/translations/it/Macro_findConfigFiles.md +++ b/wiki/translations/it/Macro_findConfigFiles.md @@ -1,7 +1,4 @@ # Macro findConfigFiles/it - - -
@@ -116,3 +113,6 @@ if ok == QtGui.QMessageBox.Ok or ok==0: ## Vincolo Il foro [findConfigFiles macro](https://forum.freecadweb.org/viewtopic.php?f=22&t=29888) + +--- +[documentation index](../README.md) > Macro findConfigFiles/it diff --git a/wiki/translations/it/Macro_hinge.md b/wiki/translations/it/Macro_hinge.md index d06aad5510..a6f44a9a22 100644 --- a/wiki/translations/it/Macro_hinge.md +++ b/wiki/translations/it/Macro_hinge.md @@ -1,5 +1,5 @@ # Macro hinge/it - {{Macro/it +{{Macro/it |Name=Hinge Simul |Icon=Macro hinge.png |Translate=Hinge Simul @@ -60,4 +60,7 @@ for ii2 in range(180): ## Link -La pagina della discussione: [Struggling with LinearPattern (again)](http://forum.freecadweb.org/viewtopic.php?f=3&t=7606&p=62086#p62086) +La pagina della discussione: [Struggling with LinearPattern (again)](http://forum.freecadweb.org/viewtopic.php?f=3&t=7606&p=62086#p62086) + +--- +[documentation index](../README.md) > Macro hinge/it diff --git a/wiki/translations/it/Macro_merge_duplicate_materials.md b/wiki/translations/it/Macro_merge_duplicate_materials.md index eea6b5b9fb..88b5e44731 100644 --- a/wiki/translations/it/Macro_merge_duplicate_materials.md +++ b/wiki/translations/it/Macro_merge_duplicate_materials.md @@ -1,7 +1,4 @@ # Macro merge duplicate materials/it - - - {{Macro/it |Name=Macro merge duplicate materials |Translate=Unisci materiali duplicati @@ -55,6 +52,5 @@ for tod in todelete: ``` - - - +--- +[documentation index](../README.md) > Macro merge duplicate materials/it diff --git a/wiki/translations/it/Macro_screw_maker1_2.md b/wiki/translations/it/Macro_screw_maker1_2.md index 9227cc38e5..a53fae8793 100644 --- a/wiki/translations/it/Macro_screw_maker1_2.md +++ b/wiki/translations/it/Macro_screw_maker1_2.md @@ -1,5 +1,5 @@ # Macro screw maker1 2/it - {{Macro/it +{{Macro/it |Name=Macro_screw_maker1_2 |Translate=Macro_screw_maker1_2 |Icon=Macro_screw_maker1_2.png @@ -4985,3 +4985,6 @@ if __name__ == '__main__': ## Link Il forum [Screw Maker](https://forum.freecadweb.org/viewtopic.php?f=22&t=6558&start=30#p95929) + +--- +[documentation index](../README.md) > Macro screw maker1 2/it diff --git a/wiki/translations/it/Macro_triangleAH.md b/wiki/translations/it/Macro_triangleAH.md index 747c6bb5ad..58f6179323 100644 --- a/wiki/translations/it/Macro_triangleAH.md +++ b/wiki/translations/it/Macro_triangleAH.md @@ -1,2 +1,5 @@ # Macro triangleAH/it 1. REDIRECT [Macro Triangle AH/it](Macro_Triangle_AH/it.md) + +--- +[documentation index](../README.md) > Macro triangleAH/it diff --git a/wiki/translations/it/Macros.md b/wiki/translations/it/Macros.md index 0283f74c6d..f4a50a0f97 100644 --- a/wiki/translations/it/Macros.md +++ b/wiki/translations/it/Macros.md @@ -1,7 +1,4 @@ # Macros/it - - - {{TOCright}} ## Introduzione @@ -130,3 +127,6 @@ You can manually install extensions, however, it is much simpler to just use the }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/it diff --git a/wiki/translations/it/Main_Page.md b/wiki/translations/it/Main_Page.md index 8c61fa786c..599d41bb82 100644 --- a/wiki/translations/it/Main_Page.md +++ b/wiki/translations/it/Main_Page.md @@ -1,6 +1,4 @@ # Main Page/it - - ## Introduzione Questo è il wiki della documentazione di [FreeCAD](http://www.freecadweb.org). Ci sono diversi modi per utilizzare questa documentazione: esplorare gli hub utenti, seguire il manuale o utilizzare le voci del menu Aiuto all\'interno di FreeCAD. Si tratta di un lavoro in evoluzione, scritto dalla comunità degli utenti e dagli sviluppatori di FreeCAD. Chi trova delle informazioni sbagliate o lacunose è pregato di dare un [contributo](Help_FreeCAD/it.md)! @@ -66,3 +64,6 @@ Leggete il [Piano di sviluppo](Development_roadmap/it.md) per sapere cosa è pia [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/it diff --git a/wiki/translations/it/Main_view_area.md b/wiki/translations/it/Main_view_area.md index ba32aac928..719cdf9b1f 100644 --- a/wiki/translations/it/Main_view_area.md +++ b/wiki/translations/it/Main_view_area.md @@ -1,6 +1,4 @@ # Main view area/it - - ## Introduzione L\'[area della vista principale](Main_view_area/it.md) è il widget principale che contiene le finestre secondarie nell\'[interfaccia](interface/it.md). È un\'istanza di Qt [QMdiArea](https://doc.qt.io/qt-5/qmdiarea.html). @@ -25,4 +23,7 @@ Le finestre nell\'area di visualizzazione principale possono essere organizzate {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Main view area/it diff --git a/wiki/translations/it/Manipulator.md b/wiki/translations/it/Manipulator.md index 2fd04139e4..62229ef63c 100644 --- a/wiki/translations/it/Manipulator.md +++ b/wiki/translations/it/Manipulator.md @@ -1,5 +1,5 @@ # Manipulator/it - } +}
@@ -19,3 +19,6 @@ Un **manipolatore** può essere usato per modificare l\'aspetto, la forma o altr [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Manipulator/it diff --git a/wiki/translations/it/Manipulator_Workbench.md b/wiki/translations/it/Manipulator_Workbench.md index 3a79002c68..60a09730b6 100644 --- a/wiki/translations/it/Manipulator_Workbench.md +++ b/wiki/translations/it/Manipulator_Workbench.md @@ -1,7 +1,4 @@ -# Manipulator Workbench/it - - -Manipulator workbench icon +# Manipulator workbench icon Manipulator Workbench/it ## Introduzione @@ -125,3 +122,6 @@ New workbenches are in development, stay tuned! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Manipulator Workbench/it diff --git a/wiki/translations/it/Manual.md b/wiki/translations/it/Manual.md index 3fd105952e..e22f905d3a 100644 --- a/wiki/translations/it/Manual.md +++ b/wiki/translations/it/Manual.md @@ -1,2 +1,5 @@ # Manual/it 1. Redirect:[Manual:Introduction/it](Manual:Introduction/it.md) + +--- +[documentation index](../README.md) > Manual/it diff --git a/wiki/translations/it/Manual:A_gentle_introduction.md b/wiki/translations/it/Manual:A_gentle_introduction.md index 0ccc709f00..5fcb6ae4e3 100644 --- a/wiki/translations/it/Manual:A_gentle_introduction.md +++ b/wiki/translations/it/Manual:A_gentle_introduction.md @@ -1,7 +1,4 @@ # Manual:A gentle introduction/it - - -
@@ -134,3 +131,6 @@ box.Placement = otherpla }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:A gentle introduction/it diff --git a/wiki/translations/it/Manual:All_workbenches_at_a_glance.md b/wiki/translations/it/Manual:All_workbenches_at_a_glance.md index 42e539c675..ddee751441 100644 --- a/wiki/translations/it/Manual:All_workbenches_at_a_glance.md +++ b/wiki/translations/it/Manual:All_workbenches_at_a_glance.md @@ -1,7 +1,4 @@ # Manual:All workbenches at a glance/it - - -
@@ -223,3 +220,5 @@ Esistono anche numerosi altri ambienti molto utili, prodotti dai membri della co
+--- +[documentation index](../README.md) > Manual:All workbenches at a glance/it diff --git a/wiki/translations/it/Manual:BIM_modeling.md b/wiki/translations/it/Manual:BIM_modeling.md index d9b41792a9..5a12a17387 100644 --- a/wiki/translations/it/Manual:BIM_modeling.md +++ b/wiki/translations/it/Manual:BIM_modeling.md @@ -1,5 +1,5 @@ # Manual:BIM modeling/it - } +}
@@ -355,3 +355,6 @@ Ora la pagina è pronta, e può essere esportata nel formato SVG o DXF, o stampa }} [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Manual:BIM modeling/it diff --git a/wiki/translations/it/Manual:Creating_FEM_analyses.md b/wiki/translations/it/Manual:Creating_FEM_analyses.md index 5fdd855300..a1dd2f9fc6 100644 --- a/wiki/translations/it/Manual:Creating_FEM_analyses.md +++ b/wiki/translations/it/Manual:Creating_FEM_analyses.md @@ -1,7 +1,4 @@ # Manual:Creating FEM analyses/it - - -
@@ -225,3 +222,6 @@ Naturalmente, i risultati visualizzati attualmente dall\'ambiente FEM non sono s {{Tutorials navi }} + +--- +[documentation index](../README.md) > Manual:Creating FEM analyses/it diff --git a/wiki/translations/it/Manual:Creating_and_manipulating_geometry.md b/wiki/translations/it/Manual:Creating_and_manipulating_geometry.md index fe103267fd..41a608b3ac 100644 --- a/wiki/translations/it/Manual:Creating_and_manipulating_geometry.md +++ b/wiki/translations/it/Manual:Creating_and_manipulating_geometry.md @@ -1,7 +1,4 @@ # Manual:Creating and manipulating geometry/it - - -
@@ -258,3 +255,6 @@ Tutto quanto detto sopra, e molto altro ancora, è spiegato in dettaglio nella p }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating and manipulating geometry/it diff --git a/wiki/translations/it/Manual:Creating_interface_tools.md b/wiki/translations/it/Manual:Creating_interface_tools.md index e54c6f9a92..f7524edceb 100644 --- a/wiki/translations/it/Manual:Creating_interface_tools.md +++ b/wiki/translations/it/Manual:Creating_interface_tools.md @@ -1,7 +1,4 @@ # Manual:Creating interface tools/it - - -
@@ -171,3 +168,6 @@ Infine, non dimenticate che c\'è molta altra documentazione sull\'utilizzo dei }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating interface tools/it diff --git a/wiki/translations/it/Manual:Creating_parametric_objects.md b/wiki/translations/it/Manual:Creating_parametric_objects.md index 5ec86ddb1d..68d6c7cc7e 100644 --- a/wiki/translations/it/Manual:Creating_parametric_objects.md +++ b/wiki/translations/it/Manual:Creating_parametric_objects.md @@ -1,7 +1,4 @@ # Manual:Creating parametric objects/it - - - {{Manual:TOC/it}} Nel [precedente capitolo](Manual:Creating_and_manipulating_geometry/it.md), abbiamo visto come creare una geometria Parte, e come visualizzarla sullo schermo, collegandola ad un document object \"muto\" (non parametrico). Questo è noioso quando vogliamo cambiare la forma di tale oggetto. Dovremmo creare una nuova forma, poi attribuirla di nuovo al nostro oggetto. @@ -126,3 +123,6 @@ Ricordare che se si desidera distribuire a terzi i file creati con questo nuovo }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating parametric objects/it diff --git a/wiki/translations/it/Manual:Creating_renderings.md b/wiki/translations/it/Manual:Creating_renderings.md index 887ec67b22..deccc639fd 100644 --- a/wiki/translations/it/Manual:Creating_renderings.md +++ b/wiki/translations/it/Manual:Creating_renderings.md @@ -1,7 +1,4 @@ # Manual:Creating renderings/it - - - {{Manual:TOC/it}} Nell\'ambito della grafica computerizzata, la parola [rendering](https://en.wikipedia.org/wiki/Rendering_%28computer_graphics%29) è usata per descrivere una bella immagine prodotta da un modello 3D. Naturalmente, si potrebbe dire che quello che si vede nella vista FreeCAD 3D è già bello. Ma chi ha visto un recente film di Hollywood sa che con un computer è possibile produrre immagini che sono quasi indistinguibili da una fotografia. @@ -129,3 +126,6 @@ Per la produrre il rendering con PovRay e LuxRender useremo il tavolo che abbiam {{Raytracing Tools navi}} [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials](Category:Tutorials.md) > Manual:Creating renderings/it diff --git a/wiki/translations/it/Manual:Generating_2D_drawings.md b/wiki/translations/it/Manual:Generating_2D_drawings.md index d0bb3d8fbe..990f5a59ca 100644 --- a/wiki/translations/it/Manual:Generating_2D_drawings.md +++ b/wiki/translations/it/Manual:Generating_2D_drawings.md @@ -1,7 +1,4 @@ # Manual:Generating 2D drawings/it - - -
@@ -208,3 +205,6 @@ La pagina può essere esportato in formato SVG per essere ulteriormente lavorata
[Category:Tutorials/it](Category:Tutorials/it.md) + +--- +[documentation index](../README.md) > Manual:Generating 2D drawings/it diff --git a/wiki/translations/it/Manual:Import_and_export_to_other_filetypes.md b/wiki/translations/it/Manual:Import_and_export_to_other_filetypes.md index e94984ac12..53df961d84 100644 --- a/wiki/translations/it/Manual:Import_and_export_to_other_filetypes.md +++ b/wiki/translations/it/Manual:Import_and_export_to_other_filetypes.md @@ -1,7 +1,4 @@ # Manual:Import and export to other filetypes/it - - -
@@ -76,3 +73,6 @@ Alcuni di questi formati di file hanno delle opzioni. Questi formati possono ess
[Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Import and export to other filetypes/it diff --git a/wiki/translations/it/Manual:Installing.md b/wiki/translations/it/Manual:Installing.md index d8fdbbfd5b..7d279579e0 100644 --- a/wiki/translations/it/Manual:Installing.md +++ b/wiki/translations/it/Manual:Installing.md @@ -1,7 +1,4 @@ # Manual:Installing/it - - -
@@ -129,3 +126,6 @@ Se si utilizza il sistema operativo Ubuntu, alcuni degli addon indicati sopra so
[Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Installing/it diff --git a/wiki/translations/it/Manual:Introduction.md b/wiki/translations/it/Manual:Introduction.md index 0c40eea37e..7222768b24 100644 --- a/wiki/translations/it/Manual:Introduction.md +++ b/wiki/translations/it/Manual:Introduction.md @@ -1,10 +1,4 @@ # Manual:Introduction/it - - - - - - {{Manual:TOC/it}} ![150\|center](images/Crystal_Clear_manual.png ) @@ -19,6 +13,5 @@ Questo manuale è stato scritto per la nuova versione stabile di FreeCAD, la ver Il contenuto di questo manuale è pubblicato sotto licenza [Creative Commons 4.0](http://creativecommons.org/licenses/by/4.0/), e può essere liberamente utilizzato, scaricato, copiato, e modificato. I file originali di questo manuale sono ospitati su questo [wiki](Main_Page/it.md), e sull\'account [github](https://github.com/yorikvanhavre/FreeCAD-manual) originale usato per scrivere la prima versione di questo libro. Le versioni HTML, PDF, MOBI e EPUB, più facili da leggere, sono disponibili su [GitBook](https://www.gitbook.com/book/yorikvanhavre/a-freecad-manual/details). È in preparazione una versione stampata. - - - +--- +[documentation index](../README.md) > Manual:Introduction/it diff --git a/wiki/translations/it/Manual:Modeling_for_product_design.md b/wiki/translations/it/Manual:Modeling_for_product_design.md index 64b612349f..d210971253 100644 --- a/wiki/translations/it/Manual:Modeling_for_product_design.md +++ b/wiki/translations/it/Manual:Modeling_for_product_design.md @@ -1,7 +1,4 @@ # Manual:Modeling for product design/it - - - {{Manual:TOC/it}} [Product design](https://en.wikipedia.org/wiki/Product_design) è in origine un termine commerciale, ma nel mondo 3D, significa spesso modellazione di qualcosa con l\'idea di [stamparlo in 3D](https://en.wikipedia.org/wiki/3D_printing) o, più in generale, prodotto da una macchina, per esempio con una stampante 3D o con una [macchina CNC](https://en.wikipedia.org/wiki/Numerical_control). @@ -251,3 +248,6 @@ Ma esiste anche il meglio dei due mondi, che è [Assembly2 Workbench](https://gi [Category:Tutorials/it](Category:Tutorials/it.md) + +--- +[documentation index](../README.md) > Manual:Modeling for product design/it diff --git a/wiki/translations/it/Manual:Navigating_in_the_3D_view.md b/wiki/translations/it/Manual:Navigating_in_the_3D_view.md index e5ba195edb..bbfbaf9a48 100644 --- a/wiki/translations/it/Manual:Navigating_in_the_3D_view.md +++ b/wiki/translations/it/Manual:Navigating_in_the_3D_view.md @@ -1,7 +1,4 @@ # Manual:Navigating in the 3D view/it - - -
@@ -136,3 +133,5 @@ Inoltre è possibile utilizzare Selezione per selezionare gli oggetti attraverso
+--- +[documentation index](../README.md) > Manual:Navigating in the 3D view/it diff --git a/wiki/translations/it/Manual:Parametric_objects.md b/wiki/translations/it/Manual:Parametric_objects.md index ee48fa3b8f..3a67d7029d 100644 --- a/wiki/translations/it/Manual:Parametric_objects.md +++ b/wiki/translations/it/Manual:Parametric_objects.md @@ -1,7 +1,4 @@ # Manual:Parametric objects/it - - -
@@ -59,3 +56,6 @@ Infine, vale la pena di notare che gli oggetti parametrici personalizzati sono [
[Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Parametric objects/it diff --git a/wiki/translations/it/Manual:Preparing_models_for_3D_printing.md b/wiki/translations/it/Manual:Preparing_models_for_3D_printing.md index a62cca668c..7c25a73605 100644 --- a/wiki/translations/it/Manual:Preparing_models_for_3D_printing.md +++ b/wiki/translations/it/Manual:Preparing_models_for_3D_printing.md @@ -1,7 +1,4 @@ # Manual:Preparing models for 3D printing/it - - -
@@ -236,3 +233,6 @@ Per simulare il taglio vero sono molte disponibili applicazioni, una di queste,
[Category:Path](Category:Path.md) [Category:Mesh](Category:Mesh.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Path](Category:Path.md) > Manual:Preparing models for 3D printing/it diff --git a/wiki/translations/it/Manual:Summary.md b/wiki/translations/it/Manual:Summary.md index a9215dda96..032a8742c8 100644 --- a/wiki/translations/it/Manual:Summary.md +++ b/wiki/translations/it/Manual:Summary.md @@ -59,3 +59,6 @@ C\'è un altro indice per il [Sommario della **Guida in linea**](Online_Help_Toc [Category:Manual](Category:Manual.md) + +--- +[documentation index](../README.md) > [Manual](Category:Manual.md) > Manual:Summary/it diff --git a/wiki/translations/it/Manual:The_Community.md b/wiki/translations/it/Manual:The_Community.md index 4f1f759a7e..661c2ddcc2 100644 --- a/wiki/translations/it/Manual:The_Community.md +++ b/wiki/translations/it/Manual:The_Community.md @@ -1,7 +1,4 @@ # Manual:The Community/it - - -
@@ -56,3 +53,5 @@ Con questo manuale speriamo di essere riusciti a dare una buona impressione di F
+--- +[documentation index](../README.md) > Manual:The Community/it diff --git a/wiki/translations/it/Manual:The_FreeCAD_Interface.md b/wiki/translations/it/Manual:The_FreeCAD_Interface.md index 4e3b258c3e..fd1f14f0c0 100644 --- a/wiki/translations/it/Manual:The_FreeCAD_Interface.md +++ b/wiki/translations/it/Manual:The_FreeCAD_Interface.md @@ -1,7 +1,4 @@ # Manual:The FreeCAD Interface/it - - -
@@ -97,3 +94,5 @@ Le opzioni di personalizzazione avanzate sono disponibili dal menu {{MenuCommand
+--- +[documentation index](../README.md) > Manual:The FreeCAD Interface/it diff --git a/wiki/translations/it/Manual:The_FreeCAD_document.md b/wiki/translations/it/Manual:The_FreeCAD_document.md index a7edc8ace7..4a78daa6cc 100644 --- a/wiki/translations/it/Manual:The_FreeCAD_document.md +++ b/wiki/translations/it/Manual:The_FreeCAD_document.md @@ -1,7 +1,4 @@ # Manual:The FreeCAD document/it - - -
@@ -47,3 +44,5 @@ I documenti di FreeCAD vengono salvati con l\'estensione .FcStd, che è un forma
+--- +[documentation index](../README.md) > Manual:The FreeCAD document/it diff --git a/wiki/translations/it/Manual:Traditional_2D_drafting.md b/wiki/translations/it/Manual:Traditional_2D_drafting.md index 96f775dcff..ff5c388a36 100644 --- a/wiki/translations/it/Manual:Traditional_2D_drafting.md +++ b/wiki/translations/it/Manual:Traditional_2D_drafting.md @@ -1,7 +1,4 @@ # Manual:Traditional 2D drafting/it - - -
@@ -213,3 +210,6 @@ Fondamentalmente, l\'ambiente Draft fornisce un modo grafico per creare le opera
[Category:Tutorials](Category:Tutorials.md) [Category:Draft](Category:Draft.md) + +--- +[documentation index](../README.md) > [Tutorials](Category:Tutorials.md) > Manual:Traditional 2D drafting/it diff --git a/wiki/translations/it/Manual:Traditional_modeling,_the_CSG_way.md b/wiki/translations/it/Manual:Traditional_modeling,_the_CSG_way.md index 380b94a0a6..2bf42259c1 100644 --- a/wiki/translations/it/Manual:Traditional_modeling,_the_CSG_way.md +++ b/wiki/translations/it/Manual:Traditional_modeling,_the_CSG_way.md @@ -1,7 +1,4 @@ # Manual:Traditional modeling, the CSG way/it - - -
@@ -189,3 +186,6 @@ Si può guardare il tavolo di cui sopra, e pensare il suo design non è buono. I
[Category:Tutorials/it](Category:Tutorials/it.md) + +--- +[documentation index](../README.md) > Manual:Traditional modeling, the CSG way/it diff --git a/wiki/translations/it/Manual:Using_spreadsheets.md b/wiki/translations/it/Manual:Using_spreadsheets.md index bc641a1a03..7a468b4553 100644 --- a/wiki/translations/it/Manual:Using_spreadsheets.md +++ b/wiki/translations/it/Manual:Using_spreadsheets.md @@ -1,7 +1,4 @@ # Manual:Using spreadsheets/it - - -
@@ -122,3 +119,6 @@ Si può anche dare un alias a vincoli dimensionali (orizzontale, verticale o dis
[Category:Tutorials/it](Category:Tutorials/it.md) + +--- +[documentation index](../README.md) > Manual:Using spreadsheets/it diff --git a/wiki/translations/it/Manual:What_is_FreeCAD.md b/wiki/translations/it/Manual:What_is_FreeCAD.md index e97a273dc2..df83eae10a 100644 --- a/wiki/translations/it/Manual:What_is_FreeCAD.md +++ b/wiki/translations/it/Manual:What_is_FreeCAD.md @@ -1,7 +1,4 @@ # Manual:What is FreeCAD/it - - -
@@ -40,3 +37,5 @@ Il sito ufficiale di FreeCAD è
+--- +[documentation index](../README.md) > Manual:What is FreeCAD/it diff --git a/wiki/translations/it/ManualArch.md b/wiki/translations/it/ManualArch.md index 82fde00857..0c31453f8f 100644 --- a/wiki/translations/it/ManualArch.md +++ b/wiki/translations/it/ManualArch.md @@ -327,3 +327,6 @@ Formati dei file {{languages/it | {{}} }} + +--- +[documentation index](../README.md) > ManualArch/it diff --git a/wiki/translations/it/ManualDraft.md b/wiki/translations/it/ManualDraft.md index c08b9d29b4..f4333a9d28 100644 --- a/wiki/translations/it/ManualDraft.md +++ b/wiki/translations/it/ManualDraft.md @@ -536,3 +536,6 @@ Questa sezione elenca una serie di comandi che non sono ancora inclusi in questo {{languages/it | {{}} }} + +--- +[documentation index](../README.md) > ManualDraft/it diff --git a/wiki/translations/it/ManualDrawing.md b/wiki/translations/it/ManualDrawing.md index 26ad7d3dba..705a415371 100644 --- a/wiki/translations/it/ManualDrawing.md +++ b/wiki/translations/it/ManualDrawing.md @@ -1,5 +1,4 @@ # ManualDrawing/it -

Guida ai comandi di FreeCAD @@ -104,3 +103,6 @@ Questa sezione elenca una serie di comandi che non sono ancora inclusi in questo {{languages/it | {{}} }} + +--- +[documentation index](../README.md) > ManualDrawing/it diff --git a/wiki/translations/it/ManualPart.md b/wiki/translations/it/ManualPart.md index 2aabfdf7e9..2be6153f19 100644 --- a/wiki/translations/it/ManualPart.md +++ b/wiki/translations/it/ManualPart.md @@ -544,3 +544,6 @@ Questa sezione elenca una serie di comandi che non sono ancora inclusi in questo - [Crea una copia semplice](Part_CreateSimpleCopy/it.md) - [Controlla geometria](Part_CheckGeometry/it.md) - [Crea composto](Part_MakeCompound/it.md) + +--- +[documentation index](../README.md) > ManualPart/it diff --git a/wiki/translations/it/ManualPartDesign.md b/wiki/translations/it/ManualPartDesign.md index cd92b703a5..10d8490366 100644 --- a/wiki/translations/it/ManualPartDesign.md +++ b/wiki/translations/it/ManualPartDesign.md @@ -1,5 +1,4 @@ # ManualPartDesign/it -

Guida ai comandi di FreeCAD @@ -190,3 +189,6 @@ Questa sezione elenca una serie di comandi che non sono ancora inclusi in questo {{languages/it | {{}} }} + +--- +[documentation index](../README.md) > ManualPartDesign/it diff --git a/wiki/translations/it/ManualSketcher.md b/wiki/translations/it/ManualSketcher.md index 0750dcfa27..f3858c7807 100644 --- a/wiki/translations/it/ManualSketcher.md +++ b/wiki/translations/it/ManualSketcher.md @@ -446,3 +446,6 @@ Questa sezione elenca una serie di comandi che non sono ancora inclusi in questo {{languages/it | {{}} }} + +--- +[documentation index](../README.md) > ManualSketcher/it diff --git a/wiki/translations/it/Material.md b/wiki/translations/it/Material.md index 04351f056b..9af790e844 100644 --- a/wiki/translations/it/Material.md +++ b/wiki/translations/it/Material.md @@ -1,5 +1,5 @@ # Material/it - } +}
@@ -229,3 +229,6 @@ Questa sezione definisce le proprietà relative all\'aspetto visivo del material {{FEM Tools navi}} [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Roadmap](Category:Roadmap.md) [Category:BIM](Category:BIM.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Material/it diff --git a/wiki/translations/it/Material_data_model.md b/wiki/translations/it/Material_data_model.md index 7f908800d3..e8c2236a27 100644 --- a/wiki/translations/it/Material_data_model.md +++ b/wiki/translations/it/Material_data_model.md @@ -1,7 +1,4 @@ # Material data model/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -247,3 +244,6 @@ Codice CSI/MasterFormat (dato che nel settore sono utilizzati diversi sistemi pe [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Material](Material_Workbench.md) > Material data model/it diff --git a/wiki/translations/it/Material_editor.md b/wiki/translations/it/Material_editor.md index ac0b83206a..f9cbed89b1 100644 --- a/wiki/translations/it/Material_editor.md +++ b/wiki/translations/it/Material_editor.md @@ -1,3 +1,4 @@ +# Material editor/it --- - GuiCommand:/it Name:Material_editor Name/it:Editor dei materiali Icon:Arch_Material_Group.svg MenuLocation:Modello → Materiali → Editor dei materiali |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/it|Tutorial FEM](FEM_Workbench/it___FEM]].md)--- @@ -92,4 +93,7 @@ MaterialEditor.openEditor() {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Material](Material_Workbench.md) > Material editor/it diff --git a/wiki/translations/it/Matrix_API.md b/wiki/translations/it/Matrix_API.md index ee60368df4..cb8030a478 100644 --- a/wiki/translations/it/Matrix_API.md +++ b/wiki/translations/it/Matrix_API.md @@ -1,5 +1,5 @@ # Matrix API/it - **(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** +**(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** In FreeCAD le matrici 4x4 sono utilizzate ovunque e possono essere create con una delle seguenti modalità: ```python @@ -96,3 +96,6 @@ print m.A21() # print m[1][0] [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Matrix API/it diff --git a/wiki/translations/it/Measurement_Of_Angles_On_Holes.md b/wiki/translations/it/Measurement_Of_Angles_On_Holes.md index 8bfc3e031a..5eb5c01654 100644 --- a/wiki/translations/it/Measurement_Of_Angles_On_Holes.md +++ b/wiki/translations/it/Measurement_Of_Angles_On_Holes.md @@ -1,7 +1,4 @@ # Measurement Of Angles On Holes/it - - - {{TutorialInfo/it |Topic=TechDraw |Level=Base @@ -41,4 +38,7 @@ La linea centrale creata può essere modificata. Selezionare la linea centrale e Selezionare i punti del quadrante con dalla barra degli strumenti. Quindi selezionare i punti come mostrato sotto e utilizzare dalla barra degli strumenti per creare l\'angolo. Altre successioni creano altri angoli. Se non ci sono punti di aggancio sulla linea centrale cambiare \"ISO count\" nelle proprietà. -*Sopra: successione di selezione* {{TechDraw Tools navi}} {{Tutorials navi}} +*Sopra: successione di selezione* {{TechDraw Tools navi}} {{Tutorials navi}} + +--- +[documentation index](../README.md) > Measurement Of Angles On Holes/it diff --git a/wiki/translations/it/Mesh.md b/wiki/translations/it/Mesh.md index b6471d2a29..9be2516495 100644 --- a/wiki/translations/it/Mesh.md +++ b/wiki/translations/it/Mesh.md @@ -1,6 +1,4 @@ # Mesh/it - - ## Introduzione In FreeCAD the word \"[Mesh](Mesh.md)\" is normally used to refer to a [Mesh MeshObject](Mesh_MeshObject.md) (`Mesh::MeshObject` class), a type of object that defines 3D data but is not a solid \"[Shape](Shape.md)\". @@ -42,3 +40,6 @@ For more information see [FEM Workbench](FEM_Workbench.md) and [FEM Mesh](FEM_Me }} {{FEM Tools navi}} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Mesh/it diff --git a/wiki/translations/it/MeshPart_CreateFlatFace.md b/wiki/translations/it/MeshPart_CreateFlatFace.md index b24bd95256..77de033dc0 100644 --- a/wiki/translations/it/MeshPart_CreateFlatFace.md +++ b/wiki/translations/it/MeshPart_CreateFlatFace.md @@ -8,6 +8,8 @@ SeeAlso:[Sviluppa una mesh](MeshPart_CreateFlatMesh/it.md) --- +# MeshPart CreateFlatFace/it +
@@ -36,4 +38,7 @@ Vedere: [Funzioni Part](Part_Feature/it.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [MeshPart](MeshPart_Workbench.md) > MeshPart CreateFlatFace/it diff --git a/wiki/translations/it/MeshPart_CreateFlatMesh.md b/wiki/translations/it/MeshPart_CreateFlatMesh.md index 2a59f08552..cb34f05978 100644 --- a/wiki/translations/it/MeshPart_CreateFlatMesh.md +++ b/wiki/translations/it/MeshPart_CreateFlatMesh.md @@ -8,6 +8,8 @@ SeeAlso:[Sviluppa una faccia](MeshPart_CreateFlatFace/it.md) --- +# MeshPart CreateFlatMesh/it +

@@ -38,4 +40,7 @@ Vedere: [Funzioni Part](Part_Feature/it.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [MeshPart](MeshPart_Workbench.md) > MeshPart CreateFlatMesh/it diff --git a/wiki/translations/it/Mesh_API.md b/wiki/translations/it/Mesh_API.md index 012d5f6342..d43b4061b0 100644 --- a/wiki/translations/it/Mesh_API.md +++ b/wiki/translations/it/Mesh_API.md @@ -1,7 +1,4 @@ # Mesh API/it - - - **(Novembre 2018) Queste informazioni potrebbero essere incomplete e obsolete. Per l'ultima API, vedere la pagina [https://www.freecadweb.org/api Documentazione API autogenerata].** @@ -242,3 +239,6 @@ d.recompute() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh API/it diff --git a/wiki/translations/it/Mesh_AddFacet.md b/wiki/translations/it/Mesh_AddFacet.md index 45e361350d..7d56038d12 100644 --- a/wiki/translations/it/Mesh_AddFacet.md +++ b/wiki/translations/it/Mesh_AddFacet.md @@ -7,6 +7,8 @@ SeeAlso:[Riempi i buchi](Mesh_FillupHoles/it.md), [Chiudi il buco](Mesh_FillInteractiveHole/it.md) --- +# Mesh AddFacet/it + ## Descrizione The **Mesh AddFacet** command adds faces along a boundary of an open mesh object. It can be used to fill holes. @@ -54,4 +56,7 @@ The **Mesh AddFacet** command adds faces along a boundary of an open mesh object {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh AddFacet/it diff --git a/wiki/translations/it/Mesh_AddTriangle.md b/wiki/translations/it/Mesh_AddTriangle.md index 4da62529ed..189fbe9f49 100644 --- a/wiki/translations/it/Mesh_AddTriangle.md +++ b/wiki/translations/it/Mesh_AddTriangle.md @@ -1,2 +1,5 @@ # Mesh AddTriangle/it 1. REDIRECT [Mesh\_AddFacet/it](Mesh_AddFacet/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh AddTriangle/it diff --git a/wiki/translations/it/Mesh_BoundingBox.md b/wiki/translations/it/Mesh_BoundingBox.md index 6e1921bf3d..b8e2d3056f 100644 --- a/wiki/translations/it/Mesh_BoundingBox.md +++ b/wiki/translations/it/Mesh_BoundingBox.md @@ -1,3 +1,4 @@ +# Mesh BoundingBox/it --- - GuiCommand:/it Name:Mesh_BoundingBox‏‎ @@ -35,4 +36,7 @@ Il comando **Info limiti d\'ingombro** fornisce le coordinate minime e massime d {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh BoundingBox/it diff --git a/wiki/translations/it/Mesh_BuildRegularSolid.md b/wiki/translations/it/Mesh_BuildRegularSolid.md index 4408fb3a62..c0af9812ef 100644 --- a/wiki/translations/it/Mesh_BuildRegularSolid.md +++ b/wiki/translations/it/Mesh_BuildRegularSolid.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/it.md) --- +# Mesh BuildRegularSolid/it + ## Descrizione Il comando **Solido regolare** crea un oggetto mesh solido parametrico regolare. @@ -162,4 +164,7 @@ Mesh objects created with this command inherit all [Mesh Feature](Mesh_Feature.m {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh BuildRegularSolid/it diff --git a/wiki/translations/it/Mesh_Cone.md b/wiki/translations/it/Mesh_Cone.md index 88b7498918..3784f0eb9c 100644 --- a/wiki/translations/it/Mesh_Cone.md +++ b/wiki/translations/it/Mesh_Cone.md @@ -1,2 +1,5 @@ # Mesh Cone/it 1. REDIRECT [Mesh\_BuildRegularSolid/it](Mesh_BuildRegularSolid/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cone/it diff --git a/wiki/translations/it/Mesh_CreateMeshSegment.md b/wiki/translations/it/Mesh_CreateMeshSegment.md index d736a76505..c3a0182363 100644 --- a/wiki/translations/it/Mesh_CreateMeshSegment.md +++ b/wiki/translations/it/Mesh_CreateMeshSegment.md @@ -1,2 +1,5 @@ # Mesh CreateMeshSegment/it 1. REDIRECT [Mesh\_Segmentation/it](Mesh_Segmentation/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CreateMeshSegment/it diff --git a/wiki/translations/it/Mesh_CrossSections.md b/wiki/translations/it/Mesh_CrossSections.md index b76cb345d1..248220b4ab 100644 --- a/wiki/translations/it/Mesh_CrossSections.md +++ b/wiki/translations/it/Mesh_CrossSections.md @@ -7,6 +7,8 @@ SeeAlso:[Sezione da mesh e piano](Mesh_SectionByPlane/it.md) --- +# Mesh CrossSections/it + ## Descrizione Il comando **Sezioni** crea più sezioni trasversali tra gli oggetti mesh. Le sezioni trasversali vengono prese parallelamente a uno dei principali piani globali (XY, XZ o YZ). Per ogni serie di sezioni trasversali viene creata una singola [Part Feature](Part_Feature/it.md). @@ -73,4 +75,7 @@ Vedere: [Funzioni Part](Part_Feature/it.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CrossSections/it diff --git a/wiki/translations/it/Mesh_Cube.md b/wiki/translations/it/Mesh_Cube.md index f97fcfcb30..517530c0c2 100644 --- a/wiki/translations/it/Mesh_Cube.md +++ b/wiki/translations/it/Mesh_Cube.md @@ -1,2 +1,5 @@ # Mesh Cube/it 1. REDIRECT [Mesh\_BuildRegularSolid/it](Mesh_BuildRegularSolid/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cube/it diff --git a/wiki/translations/it/Mesh_CurvatureInfo.md b/wiki/translations/it/Mesh_CurvatureInfo.md index 0c2c6623b5..8d212a833c 100644 --- a/wiki/translations/it/Mesh_CurvatureInfo.md +++ b/wiki/translations/it/Mesh_CurvatureInfo.md @@ -7,6 +7,8 @@ SeeAlso:[Grafico della curvatura](Mesh_VertexCurvature/it.md) --- +# Mesh CurvatureInfo/it + ## Description The **Mesh CurvatureInfo** command shows the absolute curvature of [curvature objects](Mesh_VertexCurvature.md) at selected points. @@ -36,4 +38,7 @@ The **Mesh CurvatureInfo** command shows the absolute curvature of [curvature ob {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CurvatureInfo/it diff --git a/wiki/translations/it/Mesh_CurvaturePlot.md b/wiki/translations/it/Mesh_CurvaturePlot.md index fb1a4fee04..9cbbed959f 100644 --- a/wiki/translations/it/Mesh_CurvaturePlot.md +++ b/wiki/translations/it/Mesh_CurvaturePlot.md @@ -1,2 +1,5 @@ # Mesh CurvaturePlot/it 1. REDIRECT [Mesh\_VertexCurvature/it](Mesh_VertexCurvature/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CurvaturePlot/it diff --git a/wiki/translations/it/Mesh_Cylinder.md b/wiki/translations/it/Mesh_Cylinder.md index d11f107f11..18633169b2 100644 --- a/wiki/translations/it/Mesh_Cylinder.md +++ b/wiki/translations/it/Mesh_Cylinder.md @@ -1,2 +1,5 @@ # Mesh Cylinder/it 1. REDIRECT [Mesh\_BuildRegularSolid/it](Mesh_BuildRegularSolid/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cylinder/it diff --git a/wiki/translations/it/Mesh_Decimating.md b/wiki/translations/it/Mesh_Decimating.md index dbf5ae7f0e..24ef6afa9e 100644 --- a/wiki/translations/it/Mesh_Decimating.md +++ b/wiki/translations/it/Mesh_Decimating.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/it.md) --- +# Mesh Decimating/it + ## Descrizione Il comando **Decima** riduce il numero di facce negli oggetti mesh. @@ -41,4 +43,7 @@ Il comando **Decima** riduce il numero di facce negli oggetti mesh. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Decimating/it diff --git a/wiki/translations/it/Mesh_Difference.md b/wiki/translations/it/Mesh_Difference.md index 0d20e05d91..b4344a16c3 100644 --- a/wiki/translations/it/Mesh_Difference.md +++ b/wiki/translations/it/Mesh_Difference.md @@ -1,3 +1,4 @@ +# Mesh Difference/it --- - GuiCommand:/it Name:Mesh_Difference @@ -41,4 +42,7 @@ Vedere [Mesh Feature](Mesh_Feature/it.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Difference/it diff --git a/wiki/translations/it/Mesh_Ellipsoid.md b/wiki/translations/it/Mesh_Ellipsoid.md index 71538ee093..eaa2a86d27 100644 --- a/wiki/translations/it/Mesh_Ellipsoid.md +++ b/wiki/translations/it/Mesh_Ellipsoid.md @@ -1,2 +1,5 @@ # Mesh Ellipsoid/it 1. REDIRECT [Mesh\_BuildRegularSolid/it](Mesh_BuildRegularSolid/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Ellipsoid/it diff --git a/wiki/translations/it/Mesh_EvaluateCurvature.md b/wiki/translations/it/Mesh_EvaluateCurvature.md index ff59230f00..1e8573cda0 100644 --- a/wiki/translations/it/Mesh_EvaluateCurvature.md +++ b/wiki/translations/it/Mesh_EvaluateCurvature.md @@ -1,2 +1,5 @@ # Mesh EvaluateCurvature/it 1. REDIRECT [Mesh\_CurvatureInfo/it](Mesh_CurvatureInfo/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateCurvature/it diff --git a/wiki/translations/it/Mesh_EvaluateFacet.md b/wiki/translations/it/Mesh_EvaluateFacet.md index f45c3996dc..1287bade34 100644 --- a/wiki/translations/it/Mesh_EvaluateFacet.md +++ b/wiki/translations/it/Mesh_EvaluateFacet.md @@ -1,3 +1,4 @@ +# Mesh EvaluateFacet/it --- - GuiCommand:/it Name:Mesh_EvaluateFacet Name/it:Dettagli faccia MenuLocation:Mesh → Analizza → Dettagli faccia Workbenches:[[Mesh_Workbench/it Mesh]]|Shortcut: SeeAlso:--- @@ -42,4 +43,7 @@ Triangle: <[1.964574, 0.047063, 0.748046], [1.937166, 0.062461, 0.992797], {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateFacet/it diff --git a/wiki/translations/it/Mesh_EvaluateRepair.md b/wiki/translations/it/Mesh_EvaluateRepair.md index 5022f353e2..aa8cb828b5 100644 --- a/wiki/translations/it/Mesh_EvaluateRepair.md +++ b/wiki/translations/it/Mesh_EvaluateRepair.md @@ -1,2 +1,5 @@ # Mesh EvaluateRepair/it 1. REDIRECT [Mesh\_Evaluation/it](Mesh_Evaluation/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateRepair/it diff --git a/wiki/translations/it/Mesh_EvaluateSolid.md b/wiki/translations/it/Mesh_EvaluateSolid.md index 49565df0c2..f047c72fec 100644 --- a/wiki/translations/it/Mesh_EvaluateSolid.md +++ b/wiki/translations/it/Mesh_EvaluateSolid.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Seleziona le mesh non solidi ](Arch_SelectNonSolidMeshes.md) --- +# Mesh EvaluateSolid/it + ## Descrizione Il comando **Controlla se è un solido** controlla se un oggetto mesh è solido. Un oggetto mesh solido non ha buchi. @@ -36,4 +38,7 @@ Il comando **Controlla se è un solido** controlla se un oggetto mesh è solido. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateSolid/it diff --git a/wiki/translations/it/Mesh_Evaluation.md b/wiki/translations/it/Mesh_Evaluation.md index 210dfbc20f..1c251b35c2 100644 --- a/wiki/translations/it/Mesh_Evaluation.md +++ b/wiki/translations/it/Mesh_Evaluation.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/it.md) --- +# Mesh Evaluation/it + ## Description The **Mesh Evaluation** command evaluates and repairs a mesh object. @@ -66,4 +68,7 @@ The **Mesh Evaluation** command evaluates and repairs a mesh object. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Evaluation/it diff --git a/wiki/translations/it/Mesh_Export.md b/wiki/translations/it/Mesh_Export.md index 051d74720e..812a8fb57d 100644 --- a/wiki/translations/it/Mesh_Export.md +++ b/wiki/translations/it/Mesh_Export.md @@ -7,6 +7,8 @@ SeeAlso:[Esporta](Std_Export/it.md), [Importazione e Esportazione](Import_Export/it.md) --- +# Mesh Export/it + ## Descrizione Il comando **Esporta mesh** esporta un oggetto mesh in un formato file mesh. Sono supportati diversi formati di file. @@ -58,4 +60,7 @@ Mesh.export([doc.Cone, doc.Cylinder], 'D:/testfiles/mymodel.stl') {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Export/it diff --git a/wiki/translations/it/Mesh_Feature.md b/wiki/translations/it/Mesh_Feature.md index 22ca7325fc..46af8e001b 100644 --- a/wiki/translations/it/Mesh_Feature.md +++ b/wiki/translations/it/Mesh_Feature.md @@ -1,6 +1,4 @@ # Mesh Feature/it - - ## Introduzione @@ -161,3 +159,6 @@ obj.Label = "Custom label" }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Feature/it diff --git a/wiki/translations/it/Mesh_FillHoles.md b/wiki/translations/it/Mesh_FillHoles.md index eafe945ff0..9c02423f12 100644 --- a/wiki/translations/it/Mesh_FillHoles.md +++ b/wiki/translations/it/Mesh_FillHoles.md @@ -1,2 +1,5 @@ # Mesh FillHoles/it 1. REDIRECT [Mesh\_FillupHoles/it](Mesh_FillupHoles/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FillHoles/it diff --git a/wiki/translations/it/Mesh_FillInteractiveHole.md b/wiki/translations/it/Mesh_FillInteractiveHole.md index b661dcd66d..c31bbdacfc 100644 --- a/wiki/translations/it/Mesh_FillInteractiveHole.md +++ b/wiki/translations/it/Mesh_FillInteractiveHole.md @@ -7,6 +7,8 @@ SeeAlso:[Riempi i buchi](Mesh_FillupHoles/it.md), [Aggiungi triangolo](Mesh_AddFacet/it.md) --- +# Mesh FillInteractiveHole/it + ## Descrizione Il comando **Chiudi il buco** permette di chiudere i fori nelle mesh selezionandole manualmente. @@ -43,4 +45,7 @@ Il comando **Chiudi il buco** permette di chiudere i fori nelle mesh selezionand {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FillInteractiveHole/it diff --git a/wiki/translations/it/Mesh_FillupHoles.md b/wiki/translations/it/Mesh_FillupHoles.md index 2667fbdd74..a2ecf81d46 100644 --- a/wiki/translations/it/Mesh_FillupHoles.md +++ b/wiki/translations/it/Mesh_FillupHoles.md @@ -7,6 +7,8 @@ SeeAlso:[Chiudi il buco](Mesh_FillInteractiveHole/it.md), [Aggiungi triangolo](Mesh_AddFacet/it.md) --- +# Mesh FillupHoles/it + ## Descrizione Il comando **Riempi i buchi** riempie i buchi negli oggetti mesh. @@ -37,4 +39,7 @@ Il comando **Riempi i buchi** riempie i buchi negli oggetti mesh. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FillupHoles/it diff --git a/wiki/translations/it/Mesh_FlipNormals.md b/wiki/translations/it/Mesh_FlipNormals.md index 0e4ff53417..5ff5eb7b95 100644 --- a/wiki/translations/it/Mesh_FlipNormals.md +++ b/wiki/translations/it/Mesh_FlipNormals.md @@ -1,3 +1,4 @@ +# Mesh FlipNormals/it --- - GuiCommand:/it Name:Mesh_FlipNormals‏‎ Name/it:Inverti le normali‏‎ MenuLocation:Mesh → Inverti le normali Workbenches:[SeeAlso:[[Mesh_HarmonizeNormals/it|Armonizza le normali](Mesh_Workbench/it___Mesh]].md)--- @@ -43,4 +44,7 @@ Per verificare questa azione: {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FlipNormals/it diff --git a/wiki/translations/it/Mesh_FromPartShape.md b/wiki/translations/it/Mesh_FromPartShape.md index 7d01302882..fe4524b0c7 100644 --- a/wiki/translations/it/Mesh_FromPartShape.md +++ b/wiki/translations/it/Mesh_FromPartShape.md @@ -1,3 +1,4 @@ +# Mesh FromPartShape/it --- - GuiCommand:/it Name:Mesh_FromPartShape Name/it:Mesh da forma‏‎ MenuLocation:Mesh → Crea mesh da una forma... Workbenches:[Mesh](Mesh_Workbench/it.md)--- @@ -204,4 +205,7 @@ msh.ViewObject.DisplayMode = "Flat Lines" {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FromPartShape/it diff --git a/wiki/translations/it/Mesh_HarmonizeNormals.md b/wiki/translations/it/Mesh_HarmonizeNormals.md index 57ec23b418..884d74f5d8 100644 --- a/wiki/translations/it/Mesh_HarmonizeNormals.md +++ b/wiki/translations/it/Mesh_HarmonizeNormals.md @@ -7,6 +7,8 @@ SeeAlso:[Inverti le normali](Mesh_FlipNormals/it.md) --- +# Mesh HarmonizeNormals/it + ## Descrizione Il comando **Armonizza le normali** armonizza le normali degli oggetti mesh. @@ -39,4 +41,7 @@ Il comando **Armonizza le normali** armonizza le normali degli oggetti mesh. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh HarmonizeNormals/it diff --git a/wiki/translations/it/Mesh_Import.md b/wiki/translations/it/Mesh_Import.md index ccbf8940f5..5504c86f6b 100644 --- a/wiki/translations/it/Mesh_Import.md +++ b/wiki/translations/it/Mesh_Import.md @@ -7,6 +7,8 @@ SeeAlso:[Importa](Std_Import/it.md), [Apri](Std_Open/it.md), [Importazione e Esportazione](Import_Export/it.md) --- +# Mesh Import/it + ## Descrizione Il comando **Importa mesh** importa la geometria da un formato file mesh nel documento attivo. Sono supportati diversi formati di file. Il comando crea un oggetto mesh non parametrico, una [Mesh Feature](Mesh_Feature/it.md). @@ -53,4 +55,7 @@ Mesh.insert('D:/testfiles/cylinder.stl') {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Import/it diff --git a/wiki/translations/it/Mesh_Intersection.md b/wiki/translations/it/Mesh_Intersection.md index 497d0a77de..3851b1a18d 100644 --- a/wiki/translations/it/Mesh_Intersection.md +++ b/wiki/translations/it/Mesh_Intersection.md @@ -1,3 +1,4 @@ +# Mesh Intersection/it --- - GuiCommand:/it Name:Mesh_Intersection @@ -40,4 +41,7 @@ Vedere [Mesh Feature](Mesh_Feature/it.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Intersection/it diff --git a/wiki/translations/it/Mesh_Merge.md b/wiki/translations/it/Mesh_Merge.md index fdc36762c7..7e65540b1a 100644 --- a/wiki/translations/it/Mesh_Merge.md +++ b/wiki/translations/it/Mesh_Merge.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/it.md) --- +# Mesh Merge/it +
@@ -46,4 +48,7 @@ Vedere [Mesh Feature](Mesh_Feature/it.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Merge/it diff --git a/wiki/translations/it/Mesh_MeshObject.md b/wiki/translations/it/Mesh_MeshObject.md index e05c8badc1..d94c5f7322 100644 --- a/wiki/translations/it/Mesh_MeshObject.md +++ b/wiki/translations/it/Mesh_MeshObject.md @@ -1,6 +1,4 @@ # Mesh MeshObject/it - - ## Descrizione A [Mesh MeshObject](Mesh_MeshObject.md), or formally a `Mesh::MeshObject`, is a class that defines a mesh data structure in the software. This is similar to the [Part TopoShape](Part_TopoShape.md) but for [meshes](Mesh.md). @@ -58,4 +56,7 @@ obj.Mesh.write("my_file.stl") {{Mesh Tools navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh MeshObject/it diff --git a/wiki/translations/it/Mesh_Module.md b/wiki/translations/it/Mesh_Module.md index a4ba5e4fb0..1cdb5c336a 100644 --- a/wiki/translations/it/Mesh_Module.md +++ b/wiki/translations/it/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/it 1. REDIRECT [Mesh Workbench/it](Mesh_Workbench/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/it diff --git a/wiki/translations/it/Mesh_PolyCut.md b/wiki/translations/it/Mesh_PolyCut.md index d56517de2f..ef080ae446 100644 --- a/wiki/translations/it/Mesh_PolyCut.md +++ b/wiki/translations/it/Mesh_PolyCut.md @@ -7,6 +7,8 @@ SeeAlso:[Rifila con un poligono](Mesh_PolyTrim/it.md), [Rifila con un piano](Mesh_TrimByPlane/it.md) --- +# Mesh PolyCut/it + ## Descrizione Il comando **Taglia la mesh** taglia intere facce da oggetti mesh. @@ -52,4 +54,7 @@ Il comando **Taglia la mesh** taglia intere facce da oggetti mesh. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh PolyCut/it diff --git a/wiki/translations/it/Mesh_PolyTrim.md b/wiki/translations/it/Mesh_PolyTrim.md index 47c634388c..c32513027e 100644 --- a/wiki/translations/it/Mesh_PolyTrim.md +++ b/wiki/translations/it/Mesh_PolyTrim.md @@ -7,6 +7,8 @@ SeeAlso:[Taglia la mesh](Mesh_PolyCut/it.md), [Rifila con un piano](Mesh_TrimByPlane/it.md) --- +# Mesh PolyTrim/it + ## Descrizione Il comando **Rifila con un poligono** taglia facce e parti di facce da oggetti mesh. @@ -56,4 +58,7 @@ Il comando **Rifila con un poligono** taglia facce e parti di facce da oggetti m {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh PolyTrim/it diff --git a/wiki/translations/it/Mesh_RemeshGmsh.md b/wiki/translations/it/Mesh_RemeshGmsh.md index 9696d019bb..37b3314715 100644 --- a/wiki/translations/it/Mesh_RemeshGmsh.md +++ b/wiki/translations/it/Mesh_RemeshGmsh.md @@ -8,6 +8,8 @@ SeeAlso:[Crea mesh da una forma](Mesh_FromPartShape/it.md) --- +# Mesh RemeshGmsh/it + ## Descrizione Il comando **Affinamento** rigenera un oggetto mesh utilizzando il mesher [Gmsh](https://gmsh.info/). La nuova mesh può essere più fine o più grossolana. @@ -48,4 +50,7 @@ Vedere: [Mesh Feature](Mesh_Feature/it.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemeshGmsh/it diff --git a/wiki/translations/it/Mesh_RemoveCompByHand.md b/wiki/translations/it/Mesh_RemoveCompByHand.md index e57d109867..042b69fcb0 100644 --- a/wiki/translations/it/Mesh_RemoveCompByHand.md +++ b/wiki/translations/it/Mesh_RemoveCompByHand.md @@ -7,6 +7,8 @@ SeeAlso:[Rimuovi componente](Mesh_RemoveComponents/it.md), [Arch Suddividere un oggetto mesh](Arch_SplitMesh/it.md) --- +# Mesh RemoveCompByHand/it + ## Descrizione Il comando **Rimuovi componenti a mano** rimuove i componenti dagli oggetti mesh. @@ -36,4 +38,7 @@ Il comando **Rimuovi componenti a mano** rimuove i componenti dagli oggetti mesh {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemoveCompByHand/it diff --git a/wiki/translations/it/Mesh_RemoveComponents.md b/wiki/translations/it/Mesh_RemoveComponents.md index 76c0ecde94..a584100038 100644 --- a/wiki/translations/it/Mesh_RemoveComponents.md +++ b/wiki/translations/it/Mesh_RemoveComponents.md @@ -1,3 +1,4 @@ +# Mesh RemoveComponents/it --- - GuiCommand:/it Name:Mesh_RemoveComponents @@ -47,4 +48,7 @@ Il comando **Rimuovi componenti** rimuove le facce dagli oggetti mesh. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemoveComponents/it diff --git a/wiki/translations/it/Mesh_Scale.md b/wiki/translations/it/Mesh_Scale.md index cc2ba031ad..f71b176729 100644 --- a/wiki/translations/it/Mesh_Scale.md +++ b/wiki/translations/it/Mesh_Scale.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/it.md) --- +# Mesh Scale/it + ## Descrizione Il comando **Scala** scala gli oggetti mesh. @@ -32,4 +34,7 @@ Il comando **Scala** scala gli oggetti mesh. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scale/it diff --git a/wiki/translations/it/Mesh_Scripting.md b/wiki/translations/it/Mesh_Scripting.md index 9da849dce1..1a326a4701 100644 --- a/wiki/translations/it/Mesh_Scripting.md +++ b/wiki/translations/it/Mesh_Scripting.md @@ -1,7 +1,4 @@ # Mesh Scripting/it - - - {{TOCright}} @@ -174,3 +171,6 @@ Vedere anche [Mesh API](Mesh_API/it.md) }} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scripting/it diff --git a/wiki/translations/it/Mesh_SectionByPlane.md b/wiki/translations/it/Mesh_SectionByPlane.md index b490b9de9c..058f2ac99c 100644 --- a/wiki/translations/it/Mesh_SectionByPlane.md +++ b/wiki/translations/it/Mesh_SectionByPlane.md @@ -7,6 +7,8 @@ SeeAlso:[Sezioni](Mesh_CrossSections/it.md) --- +# Mesh SectionByPlane/it + ## Descrizione Il comando **Sezione da mesh e piano** crea una sezione trasversale attraverso un oggetto mesh. La sezione trasversale è una [Part Feature](Part_Feature/it.md). @@ -38,4 +40,7 @@ Vedere: [Funzioni Part](Part_Feature/it.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh SectionByPlane/it diff --git a/wiki/translations/it/Mesh_Segmentation.md b/wiki/translations/it/Mesh_Segmentation.md index 674b04ab03..b1670fe2b0 100644 --- a/wiki/translations/it/Mesh_Segmentation.md +++ b/wiki/translations/it/Mesh_Segmentation.md @@ -7,6 +7,8 @@ SeeAlso:[Adatta i segmenti](Mesh_SegmentationBestFit/it.md) --- +# Mesh Segmentation/it + ## Descrizione Il comando **Crea segmenti di mesh** crea segmenti di mesh separati per i tipi di superficie specificati di un oggetto mesh. @@ -57,4 +59,7 @@ Il comando **Crea segmenti di mesh** crea segmenti di mesh separati per i tipi d {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Segmentation/it diff --git a/wiki/translations/it/Mesh_SegmentationBestFit.md b/wiki/translations/it/Mesh_SegmentationBestFit.md index 62df556e86..8e6ae7ba06 100644 --- a/wiki/translations/it/Mesh_SegmentationBestFit.md +++ b/wiki/translations/it/Mesh_SegmentationBestFit.md @@ -7,6 +7,8 @@ SeeAlso:[Crea segmenti di mesh](Mesh_Segmentation/it.md) --- +# Mesh SegmentationBestFit/it + ## Descrizione Il comando **Adatta i segmenti** crea segmenti di mesh separati per i tipi di superficie specificati di un oggetto mesh. Il comando può anche identificare i loro parametri che possono essere utili quando si riprogetta un oggetto mesh. @@ -59,4 +61,7 @@ Il comando **Adatta i segmenti** crea segmenti di mesh separati per i tipi di su {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh SegmentationBestFit/it diff --git a/wiki/translations/it/Mesh_Smooth.md b/wiki/translations/it/Mesh_Smooth.md index ca489ada74..078d5d7e9c 100644 --- a/wiki/translations/it/Mesh_Smooth.md +++ b/wiki/translations/it/Mesh_Smooth.md @@ -1,2 +1,5 @@ # Mesh Smooth/it 1. REDIRECT [Mesh\_Smoothing/it](Mesh_Smoothing/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Smooth/it diff --git a/wiki/translations/it/Mesh_Smoothing.md b/wiki/translations/it/Mesh_Smoothing.md index eb00762bae..234a10f984 100644 --- a/wiki/translations/it/Mesh_Smoothing.md +++ b/wiki/translations/it/Mesh_Smoothing.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/it.md) --- +# Mesh Smoothing/it + ## Descrizione Il comando **Leviga** smussa gli oggetti mesh cambiando la posizione dei loro vertici. @@ -71,4 +73,7 @@ Il comando **Leviga** smussa gli oggetti mesh cambiando la posizione dei loro ve {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Smoothing/it diff --git a/wiki/translations/it/Mesh_Sphere.md b/wiki/translations/it/Mesh_Sphere.md index ef44935e2c..41e9fc50a7 100644 --- a/wiki/translations/it/Mesh_Sphere.md +++ b/wiki/translations/it/Mesh_Sphere.md @@ -1,2 +1,5 @@ # Mesh Sphere/it 1. REDIRECT [Mesh\_BuildRegularSolid/it](Mesh_BuildRegularSolid/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Sphere/it diff --git a/wiki/translations/it/Mesh_SplitComponents.md b/wiki/translations/it/Mesh_SplitComponents.md index f4781e9157..15ca72c4c4 100644 --- a/wiki/translations/it/Mesh_SplitComponents.md +++ b/wiki/translations/it/Mesh_SplitComponents.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh Merge](Mesh_Merge.md) --- +# Mesh SplitComponents/it + ## Description The **Mesh SplitComponents** command splits a mesh object into its components. A mesh component is a complete group of connected faces. For each component a new non-parametric mesh object, a [Mesh Feature](Mesh_Feature.md), is created. If the original mesh object contains only one component, and this is usually the case, a single new mesh object, effectively a copy, is created. This command is the counterpart of the [Mesh Merge](Mesh_Merge.md) command. @@ -27,4 +29,7 @@ See: [Mesh Feature](Mesh_Feature.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh SplitComponents/it diff --git a/wiki/translations/it/Mesh_Torus.md b/wiki/translations/it/Mesh_Torus.md index 21db550103..e0ddc502bc 100644 --- a/wiki/translations/it/Mesh_Torus.md +++ b/wiki/translations/it/Mesh_Torus.md @@ -1,2 +1,5 @@ # Mesh Torus/it 1. REDIRECT [Mesh\_BuildRegularSolid/it](Mesh_BuildRegularSolid/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Torus/it diff --git a/wiki/translations/it/Mesh_TrimByPlane.md b/wiki/translations/it/Mesh_TrimByPlane.md index 110d12ab1b..4259587362 100644 --- a/wiki/translations/it/Mesh_TrimByPlane.md +++ b/wiki/translations/it/Mesh_TrimByPlane.md @@ -7,6 +7,8 @@ SeeAlso:[Taglia la mesh](Mesh_PolyCut/it.md), [Rifila con un poligono](Mesh_PolyTrim/it.md) --- +# Mesh TrimByPlane/it + ## Descrizione Il comando **Rifila con un piano** taglia facce e parti di facce su un lato di un piano da un oggetto mesh. @@ -53,4 +55,7 @@ Il comando **Rifila con un piano** taglia facce e parti di facce su un lato di u {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh TrimByPlane/it diff --git a/wiki/translations/it/Mesh_TrimMesh.md b/wiki/translations/it/Mesh_TrimMesh.md index 18f6fe51b7..5334114d82 100644 --- a/wiki/translations/it/Mesh_TrimMesh.md +++ b/wiki/translations/it/Mesh_TrimMesh.md @@ -1,2 +1,5 @@ # Mesh TrimMesh/it 1. REDIRECT [Mesh\_PolyTrim/it](Mesh_PolyTrim/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh TrimMesh/it diff --git a/wiki/translations/it/Mesh_TrimMeshWithPlane.md b/wiki/translations/it/Mesh_TrimMeshWithPlane.md index b788dc2497..55b94dd116 100644 --- a/wiki/translations/it/Mesh_TrimMeshWithPlane.md +++ b/wiki/translations/it/Mesh_TrimMeshWithPlane.md @@ -1,2 +1,5 @@ # Mesh TrimMeshWithPlane/it 1. REDIRECT [Mesh\_TrimByPlane/it](Mesh_TrimByPlane/it.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh TrimMeshWithPlane/it diff --git a/wiki/translations/it/Mesh_Union.md b/wiki/translations/it/Mesh_Union.md index d6c6b641d6..77a0ceb87c 100644 --- a/wiki/translations/it/Mesh_Union.md +++ b/wiki/translations/it/Mesh_Union.md @@ -7,6 +7,8 @@ SeeAlso:[Unisci](Mesh_Merge/it.md) --- +# Mesh Union/it + ## Descrizione Il comando **Unione** crea un nuovo oggetto mesh non parametrico, un [Mesh Feature](Mesh_Feature/it.md), che è l\'unione (fusione) di due oggetti mesh. @@ -42,4 +44,7 @@ Vedere [Mesh Feature](Mesh_Feature/it.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Union/it diff --git a/wiki/translations/it/Mesh_VertexCurvature.md b/wiki/translations/it/Mesh_VertexCurvature.md index 7b04f2b758..8764464deb 100644 --- a/wiki/translations/it/Mesh_VertexCurvature.md +++ b/wiki/translations/it/Mesh_VertexCurvature.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh CurvatureInfo](Mesh_CurvatureInfo.md) --- +# Mesh VertexCurvature/it + ## Descrizione The **Mesh VertexCurvature** command creates Mesh Curvature objects for mesh objects. A curvature object displays the curvature of a mesh using different colors for the convex, flat and concave parts. @@ -80,4 +82,7 @@ For a Mesh Curvature object the following properties are available in the [Prope {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh VertexCurvature/it diff --git a/wiki/translations/it/Mesh_Workbench.md b/wiki/translations/it/Mesh_Workbench.md index 4652613268..42e5c0ff27 100644 --- a/wiki/translations/it/Mesh_Workbench.md +++ b/wiki/translations/it/Mesh_Workbench.md @@ -1,7 +1,4 @@ # Mesh Workbench/it - - -
@@ -123,3 +120,6 @@ Le preferenze di Mesh si trovano nelle seguenti categorie dell\'[editor delle pr }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/it diff --git a/wiki/translations/it/Mesh_to_Part.md b/wiki/translations/it/Mesh_to_Part.md index 4a1dc43e74..8337f44be3 100644 --- a/wiki/translations/it/Mesh_to_Part.md +++ b/wiki/translations/it/Mesh_to_Part.md @@ -1,7 +1,4 @@ # Mesh to Part/it - - - {{TOCright}} @@ -152,3 +149,6 @@ Part.show(solid) }} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh to Part/it diff --git a/wiki/translations/it/Migrating_to_FreeCAD_from_Fusion360.md b/wiki/translations/it/Migrating_to_FreeCAD_from_Fusion360.md index 99cf4bda8b..3da289953d 100644 --- a/wiki/translations/it/Migrating_to_FreeCAD_from_Fusion360.md +++ b/wiki/translations/it/Migrating_to_FreeCAD_from_Fusion360.md @@ -1,5 +1,5 @@ # Migrating to FreeCAD from Fusion360/it - {{TOCright}} +{{TOCright}} ## Sfondo @@ -70,5 +70,5 @@ A questa pagina wiki manca qualcosa. Fai una richiesta per [permessi wiki](https - [Migrare a FreeCAD da OnShape](Migrating_to_FreeCAD_from_OnShape/it.md) - - +--- +[documentation index](../README.md) > Migrating to FreeCAD from Fusion360/it diff --git a/wiki/translations/it/Migrating_to_FreeCAD_from_OnShape.md b/wiki/translations/it/Migrating_to_FreeCAD_from_OnShape.md index 5d9f5631e1..36affd5900 100644 --- a/wiki/translations/it/Migrating_to_FreeCAD_from_OnShape.md +++ b/wiki/translations/it/Migrating_to_FreeCAD_from_OnShape.md @@ -1,5 +1,5 @@ # Migrating to FreeCAD from OnShape/it - {{TOCright}} +{{TOCright}} ## Sfondo @@ -11,5 +11,5 @@ Questa pagina è destinata agli utenti interessati a lavorare con FreeCAD che pr - [Migrare a FreeCAD da Fusion360](Migrating_to_FreeCAD_from_Fusion360/it.md) - Joko Engineering [video](https://youtu.be/oH8GOR8Jx88) confronto fianco a fianco di FreeCAD con OnShape - - +--- +[documentation index](../README.md) > Migrating to FreeCAD from OnShape/it diff --git a/wiki/translations/it/Misc_templates.md b/wiki/translations/it/Misc_templates.md index 6c784769f5..5a4fa767ed 100644 --- a/wiki/translations/it/Misc_templates.md +++ b/wiki/translations/it/Misc_templates.md @@ -1,6 +1,4 @@ # Misc templates/it - - Questa pagina elenca alcuni modelli misti. Tutti i modelli sono in formato SVG direttamente scaricabili e utilizzabili con o senza modifiche. @@ -108,3 +106,6 @@ CompassRose\_3D [CompassRose\_3D.FCStd](http://forum.freecadweb.org/download/fil [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Misc templates/it diff --git a/wiki/translations/it/Misc_templates_Full.md b/wiki/translations/it/Misc_templates_Full.md index 5a89a23408..e12434beb8 100644 --- a/wiki/translations/it/Misc_templates_Full.md +++ b/wiki/translations/it/Misc_templates_Full.md @@ -1,5 +1,5 @@ # Misc templates Full/it - Questi modelli hanno il cartiglio completamente vuoto (22 campi) e sono dedicati alla macro [Macro\_CartoucheFC\_Full](Macro_CartoucheFC_Full/it.md) +Questi modelli hanno il cartiglio completamente vuoto (22 campi) e sono dedicati alla macro [Macro\_CartoucheFC\_Full](Macro_CartoucheFC_Full/it.md) Lo stesso lavoro può essere fatto direttamente dentro FreeCAD @@ -31,3 +31,6 @@ per Linux : \"\" [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Macros](Category:Macros.md) > Misc templates Full/it diff --git a/wiki/translations/it/Model.md b/wiki/translations/it/Model.md index ac297a2ed2..663c347af4 100644 --- a/wiki/translations/it/Model.md +++ b/wiki/translations/it/Model.md @@ -1,6 +1,4 @@ # Model/it - - ## Introduzione In FreeCAD il termine \"[Modello](Model.md)\" è solitamente usato per riferirsi ad un qualunque oggetto 3D, o ad una collezione di oggetti, creati nella [Vista 3D](3D_view/it.md). @@ -21,3 +19,6 @@ Nell\'uso informale, il termine \"[Disegno](Drawing.md)\" può essere usato con }} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Model/it diff --git a/wiki/translations/it/Module_Creation.md b/wiki/translations/it/Module_Creation.md index 2015d9bed6..5986e0727d 100644 --- a/wiki/translations/it/Module_Creation.md +++ b/wiki/translations/it/Module_Creation.md @@ -1,2 +1,5 @@ # Module Creation/it 1. REDIRECT [Workbench\_creation/it](Workbench_creation/it.md) + +--- +[documentation index](../README.md) > Module Creation/it diff --git a/wiki/translations/it/Mouse_Model.md b/wiki/translations/it/Mouse_Model.md index 54e8bb47e4..5a3f5ee239 100644 --- a/wiki/translations/it/Mouse_Model.md +++ b/wiki/translations/it/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/it 1. REDIRECT [Mouse\_navigation/it](Mouse_navigation/it.md) + +--- +[documentation index](../README.md) > Mouse Model/it diff --git a/wiki/translations/it/Mouse_navigation.md b/wiki/translations/it/Mouse_navigation.md index 0e64c6f82e..82e0f9efa5 100644 --- a/wiki/translations/it/Mouse_navigation.md +++ b/wiki/translations/it/Mouse_navigation.md @@ -1,7 +1,4 @@ # Mouse navigation/it - - - {{docnav/it |[Per iniziare](Getting_started/it.md) |[Metodi di selezione](Selection_methods/it.md) @@ -252,5 +249,5 @@ Il tutorial [Aggiunta di una nuova opzione di navigazione del mouse a FreeCAD](A |[Metodi di selezione](Selection_methods/it.md) }} - - +--- +[documentation index](../README.md) > Mouse navigation/it diff --git a/wiki/translations/it/Naming_project.md b/wiki/translations/it/Naming_project.md index 82e06a2f13..ad635262f7 100644 --- a/wiki/translations/it/Naming_project.md +++ b/wiki/translations/it/Naming_project.md @@ -1,7 +1,4 @@ # Naming project/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -124,3 +121,6 @@ Vedere [qui](https://github.com/ezzieyguywuf/freecadTopoTesting/blob/master/TNam [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Naming project/it diff --git a/wiki/translations/it/Navigation_Cube.md b/wiki/translations/it/Navigation_Cube.md index 0cb5cc4cdc..6ae71b7347 100644 --- a/wiki/translations/it/Navigation_Cube.md +++ b/wiki/translations/it/Navigation_Cube.md @@ -1,7 +1,4 @@ # Navigation Cube/it - - - {{docnav/it |[Metodi di selezione](Selection_methods/it.md) |[Struttura del documento](Document_structure/it.md) @@ -86,3 +83,6 @@ Per una configurazione più avanzata, fare riferimento a [CubeMenu](Interface_Cu [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Navigation Cube/it diff --git a/wiki/translations/it/NumPy.md b/wiki/translations/it/NumPy.md index 7db6274744..a47a373c19 100644 --- a/wiki/translations/it/NumPy.md +++ b/wiki/translations/it/NumPy.md @@ -1,6 +1,4 @@ # NumPy/it - - ## Introduzione This page aims to document how to use [NumPy](https://numpy.org/) with FreeCAD. @@ -19,3 +17,6 @@ numpy comes installed as a dependency of FreeCAD, therefore you can import numpy [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > NumPy/it diff --git a/wiki/translations/it/OSE_3D_Printer_Workbench.md b/wiki/translations/it/OSE_3D_Printer_Workbench.md index 340f4deb01..bb355ae31e 100644 --- a/wiki/translations/it/OSE_3D_Printer_Workbench.md +++ b/wiki/translations/it/OSE_3D_Printer_Workbench.md @@ -1,8 +1,9 @@ # OSE 3D Printer Workbench/it - - Vedere l\'ambiente sul wiki di OSE: [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > OSE 3D Printer Workbench/it diff --git a/wiki/translations/it/OSE_Piping_Workbench.md b/wiki/translations/it/OSE_Piping_Workbench.md index 952a05a493..27ac9a85dc 100644 --- a/wiki/translations/it/OSE_Piping_Workbench.md +++ b/wiki/translations/it/OSE_Piping_Workbench.md @@ -1,6 +1,4 @@ # OSE Piping Workbench/it - - ## Introduzione @@ -49,3 +47,6 @@ A sweep elbow is a special elbow with larger radius of the bent part. It is desc [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > OSE Piping Workbench/it diff --git a/wiki/translations/it/Object_API.md b/wiki/translations/it/Object_API.md index d44e480379..72253d4db7 100644 --- a/wiki/translations/it/Object_API.md +++ b/wiki/translations/it/Object_API.md @@ -1,5 +1,5 @@ # Object API/it - **(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** +**(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** Essendo parametrici, in FreeCAD gli oggetti del documento possono avere un sacco di altre proprietà. Queste sono quelle di base, presenti in ogni FreeCAD Document Object. Gli oggetti possono essere recuperati semplicemente con il loro nome. Esempio: ```python @@ -59,3 +59,6 @@ print myObj.PropertiesList [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Object API/it diff --git a/wiki/translations/it/Object_name.md b/wiki/translations/it/Object_name.md index e96fa37377..14791006d2 100644 --- a/wiki/translations/it/Object_name.md +++ b/wiki/translations/it/Object_name.md @@ -1,6 +1,4 @@ # Object name/it - - ## Introduzione @@ -118,5 +116,5 @@ obj3 = App.ActiveDocument.getObjectsByLabel("Some special name for this cube__00 Given that the `Label` is in general not unique, the `getObjectsByLabel` method returns a list with all objects found with that `Label`. However, if the `Label` is unique in the document then the first element in that list should be the desired object. - - +--- +[documentation index](../README.md) > Object name/it diff --git a/wiki/translations/it/Offsite_tutorials.md b/wiki/translations/it/Offsite_tutorials.md index 2feac02c9c..ec3d5c41a6 100644 --- a/wiki/translations/it/Offsite_tutorials.md +++ b/wiki/translations/it/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/it - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** Questa pagina elenca i tutorial per FreeCAD disponibili su altri siti web. @@ -25,4 +25,7 @@ Questa pagina elenca i tutorial per FreeCAD disponibili su altri siti web. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/it diff --git a/wiki/translations/it/Online_Help_Startpage.md b/wiki/translations/it/Online_Help_Startpage.md index 80640994d1..26e571865b 100644 --- a/wiki/translations/it/Online_Help_Startpage.md +++ b/wiki/translations/it/Online_Help_Startpage.md @@ -1,5 +1,5 @@ # Online Help Startpage/it - {{docnav/it +{{docnav/it | |[Informazioni su FreeCAD](About_FreeCAD/it.md) }} @@ -28,3 +28,6 @@ Come sicuramente vi sarà capitato di constatare, i programmatori sono pessimi s [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/it diff --git a/wiki/translations/it/Online_Help_Toc.md b/wiki/translations/it/Online_Help_Toc.md index 433754b1bd..c0a0377cd2 100644 --- a/wiki/translations/it/Online_Help_Toc.md +++ b/wiki/translations/it/Online_Help_Toc.md @@ -1,6 +1,4 @@ # Online Help Toc/it - - Questo è il sommario dei contenuti utilizzati per costruire automaticamente la **Guida in linea** di FreeCAD. La versione stampabile di questo manuale è disponibile in [releases page](https://github.com/FreeCAD/FreeCAD/releases). Se avete delle domande o bisogno di aiuto con FreeCAD, consultate la [pagina di aiuto](Help/it.md) inclusi i forum e i gruppi di chat. C\'è un altro sommario per il [Manuale di FreeCAD](Manual:Introduction/it.md). @@ -147,3 +145,6 @@ C\'è un altro sommario per il [Manuale di FreeCAD](Manual:Introduction/it.md). [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/it diff --git a/wiki/translations/it/OpenCASCADE.md b/wiki/translations/it/OpenCASCADE.md index 941fbf1864..a3d11a2142 100644 --- a/wiki/translations/it/OpenCASCADE.md +++ b/wiki/translations/it/OpenCASCADE.md @@ -1,7 +1,4 @@ # OpenCASCADE/it - - - {{TOCright}} ## Descrizione @@ -88,3 +85,6 @@ Thus, out of shapes you can build very complex parts or, the other way round, ex }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > OpenCASCADE/it diff --git a/wiki/translations/it/OpenCamLib.md b/wiki/translations/it/OpenCamLib.md index b2f4664ff1..110ada9b12 100644 --- a/wiki/translations/it/OpenCamLib.md +++ b/wiki/translations/it/OpenCamLib.md @@ -1,6 +1,4 @@ # OpenCamLib/it - - ## Description @@ -115,3 +113,6 @@ Thank you to [Dr. Anders Wallin](http://www.anderswallin.net/about/) for providi [Category:User Documentation](Category:User_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > OpenCamLib/it diff --git a/wiki/translations/it/OpenCascade.md b/wiki/translations/it/OpenCascade.md index 6397f95ced..c07872eb2e 100644 --- a/wiki/translations/it/OpenCascade.md +++ b/wiki/translations/it/OpenCascade.md @@ -1,2 +1,5 @@ # OpenCascade/it 1. REDIRECT [OpenCASCADE/it](OpenCASCADE/it.md) + +--- +[documentation index](../README.md) > OpenCascade/it diff --git a/wiki/translations/it/OpenSCAD_AddOpenSCADElement.md b/wiki/translations/it/OpenSCAD_AddOpenSCADElement.md index 9a71d831fd..2d391a6915 100644 --- a/wiki/translations/it/OpenSCAD_AddOpenSCADElement.md +++ b/wiki/translations/it/OpenSCAD_AddOpenSCADElement.md @@ -1,3 +1,4 @@ +# OpenSCAD AddOpenSCADElement/it --- - GuiCommand:/it Name:OpenSCAD_AddOpenSCADElement Name/it:Aggiungi Elemento OpenSCAD Workbenches:[[OpenSCAD_Workbench/it OpenSCAD]]|MenuLocation:OpenSCAD → Aggiungi Elemento OpenSCAD--- @@ -96,4 +97,7 @@ A partire dalla versione 0.14, se l\'impostazione di cui sopra è vuota, FreeCAD {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD AddOpenSCADElement/it diff --git a/wiki/translations/it/OpenSCAD_CSG.md b/wiki/translations/it/OpenSCAD_CSG.md index dfd24289cc..6bff5d48fb 100644 --- a/wiki/translations/it/OpenSCAD_CSG.md +++ b/wiki/translations/it/OpenSCAD_CSG.md @@ -1,5 +1,5 @@ # OpenSCAD CSG/it - {{TOCright}} +{{TOCright}} ## Importazione @@ -40,3 +40,6 @@ Qualsiasi oggetto derivato da Part::Feature che non è (ancora) supportato viene {{OpenSCAD Tools navi}} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD CSG/it diff --git a/wiki/translations/it/OpenSCAD_CSG_tested_files.md b/wiki/translations/it/OpenSCAD_CSG_tested_files.md index a2ac5d17e7..12881eb764 100644 --- a/wiki/translations/it/OpenSCAD_CSG_tested_files.md +++ b/wiki/translations/it/OpenSCAD_CSG_tested_files.md @@ -1,6 +1,4 @@ # OpenSCAD CSG tested files/it - - ## Questo è un elenco di file OpenSCAD che non possono essere aperti in FreeCAD @@ -34,3 +32,6 @@ {{OpenSCAD Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD CSG tested files/it diff --git a/wiki/translations/it/OpenSCAD_ColorCodeShape.md b/wiki/translations/it/OpenSCAD_ColorCodeShape.md index fc7ea88ffb..97bb3466cc 100644 --- a/wiki/translations/it/OpenSCAD_ColorCodeShape.md +++ b/wiki/translations/it/OpenSCAD_ColorCodeShape.md @@ -1,3 +1,4 @@ +# OpenSCAD ColorCodeShape/it --- - GuiCommand:/it Name:OpenSCAD ColorCodeShape‏‎ Name/it:ColorCodeShape MenuLocation:OpenSCAD → ColorCodeShape‏‎ |Workbenches:[[OpenSCAD_Workbench/it OpenSCAD]]|Shortcut: SeeAlso:--- @@ -30,4 +31,7 @@ {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ColorCodeShape/it diff --git a/wiki/translations/it/OpenSCAD_Edgestofaces.md b/wiki/translations/it/OpenSCAD_Edgestofaces.md index bdd1b891e4..87f6c92e10 100644 --- a/wiki/translations/it/OpenSCAD_Edgestofaces.md +++ b/wiki/translations/it/OpenSCAD_Edgestofaces.md @@ -1,3 +1,4 @@ +# OpenSCAD Edgestofaces/it --- - GuiCommand:/it Name:OpenSCAD Edgestofaces Name/it:EdgesToFaces MenuLocation:OpenSCAD → EdgesToFaces‏‎ |Workbenches:[[OpenSCAD_Workbench/it OpenSCAD]]|Shortcut: SeeAlso:--- @@ -61,4 +62,7 @@ Vedere anche [Draft Promuovi](Draft_Upgrade/it.md) come modo alternativo per ott {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Edgestofaces/it diff --git a/wiki/translations/it/OpenSCAD_ExpandPlacements.md b/wiki/translations/it/OpenSCAD_ExpandPlacements.md index d14a8d5c3c..3a13d8f181 100644 --- a/wiki/translations/it/OpenSCAD_ExpandPlacements.md +++ b/wiki/translations/it/OpenSCAD_ExpandPlacements.md @@ -1,3 +1,4 @@ +# OpenSCAD ExpandPlacements/it --- - GuiCommand:/it Name:OpenSCAD ExpandPlacements Name/it:ExpandPlacements MenuLocation:OpenSCAD → ExpandPlacements‏‎ |Workbenches:[[OpenSCAD_Workbench/it OpenSCAD]]|Shortcut: SeeAlso:--- @@ -72,4 +73,7 @@ Works with: {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ExpandPlacements/it diff --git a/wiki/translations/it/OpenSCAD_ExplodeGroup.md b/wiki/translations/it/OpenSCAD_ExplodeGroup.md index e2cd15d3b7..12a9b05b31 100644 --- a/wiki/translations/it/OpenSCAD_ExplodeGroup.md +++ b/wiki/translations/it/OpenSCAD_ExplodeGroup.md @@ -1,3 +1,4 @@ +# OpenSCAD ExplodeGroup/it --- - GuiCommand:/it Name:OpenSCAD ExplodeGroup Name/it:Esplodi gruppo MenuLocation:OpenSCAD → Esplodi gruppo‏‎ |Workbenches:[[OpenSCAD_Workbench/it OpenSCAD]]|Shortcut: SeeAlso:--- @@ -78,4 +79,7 @@ Per scomporre le schiere dell\'ambiente Draft usare lo strumento [Retrocedi](Dra {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ExplodeGroup/it diff --git a/wiki/translations/it/OpenSCAD_Hull.md b/wiki/translations/it/OpenSCAD_Hull.md index 073eed1c58..b810d234f6 100644 --- a/wiki/translations/it/OpenSCAD_Hull.md +++ b/wiki/translations/it/OpenSCAD_Hull.md @@ -1,3 +1,4 @@ +# OpenSCAD Hull/it --- - GuiCommand:/it Name:OpenSCAD Hull Name/it:Hull MenuLocation:OpenSCAD → Hull‏‎ |Workbenches:[[OpenSCAD_Workbench/it OpenSCAD]]|Shortcut: SeeAlso:--- @@ -71,4 +72,7 @@ La funzione richiede che OpenSCAD sia installato e configurato nelle **Modifica* {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Hull/it diff --git a/wiki/translations/it/OpenSCAD_IncreaseTolerance.md b/wiki/translations/it/OpenSCAD_IncreaseTolerance.md index 2c2c64190f..fa383de624 100644 --- a/wiki/translations/it/OpenSCAD_IncreaseTolerance.md +++ b/wiki/translations/it/OpenSCAD_IncreaseTolerance.md @@ -1,2 +1,5 @@ # OpenSCAD IncreaseTolerance/it 1. REDIRECT [OpenSCAD\_IncreaseToleranceFeature/it](OpenSCAD_IncreaseToleranceFeature/it.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD IncreaseTolerance/it diff --git a/wiki/translations/it/OpenSCAD_IncreaseToleranceFeature.md b/wiki/translations/it/OpenSCAD_IncreaseToleranceFeature.md index da4a576880..08750eacc7 100644 --- a/wiki/translations/it/OpenSCAD_IncreaseToleranceFeature.md +++ b/wiki/translations/it/OpenSCAD_IncreaseToleranceFeature.md @@ -1,3 +1,4 @@ +# OpenSCAD IncreaseToleranceFeature/it --- - GuiCommand:/it Name:OpenSCAD IncreaseTolerance‏‎ Name/it:Incrementa tolleranza MenuLocation:OpenSCAD → Incrementa tolleranza |Workbenches:[[OpenSCAD_Workbench/it OpenSCAD]]|Shortcut: SeeAlso:--- @@ -32,4 +33,7 @@ Aumenta la tolleranza dei bordi, delle facce e dei vertici dell\'oggetto selezio {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD IncreaseToleranceFeature/it diff --git a/wiki/translations/it/OpenSCAD_MeshBoolean.md b/wiki/translations/it/OpenSCAD_MeshBoolean.md index 3aa28a5de7..2440aaa7fa 100644 --- a/wiki/translations/it/OpenSCAD_MeshBoolean.md +++ b/wiki/translations/it/OpenSCAD_MeshBoolean.md @@ -1,3 +1,4 @@ +# OpenSCAD MeshBoolean/it --- - GuiCommand:/it Name:OpenSCAD MeshBoolean Name/it:Booleane su Mesh MenuLocation:OpenSCAD → Booleane su Mesh...‏‎ |Workbenches:[[OpenSCAD_Workbench/it OpenSCAD]]|Shortcut: SeeAlso:--- @@ -53,4 +54,7 @@ La funzione richiede che OpenSCAD sia installato e configurato nelle **Modifica* {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD MeshBoolean/it diff --git a/wiki/translations/it/OpenSCAD_Minkowski.md b/wiki/translations/it/OpenSCAD_Minkowski.md index 47d934598f..ccc243bf4d 100644 --- a/wiki/translations/it/OpenSCAD_Minkowski.md +++ b/wiki/translations/it/OpenSCAD_Minkowski.md @@ -1,3 +1,4 @@ +# OpenSCAD Minkowski/it --- - GuiCommand:/it Name:OpenSCAD Minkowski Name/it:Minkowski MenuLocation:OpenSCAD → Minkowski‏‎ |Workbenches:[[OpenSCAD_Workbench/it OpenSCAD]]|Shortcut: SeeAlso:--- @@ -82,4 +83,7 @@ La funzione richiede che OpenSCAD sia installato e configurato nelle **Modifica* {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Minkowski/it diff --git a/wiki/translations/it/OpenSCAD_MirrorMeshFeature.md b/wiki/translations/it/OpenSCAD_MirrorMeshFeature.md index 70e0e85b2f..dbb246d0a4 100644 --- a/wiki/translations/it/OpenSCAD_MirrorMeshFeature.md +++ b/wiki/translations/it/OpenSCAD_MirrorMeshFeature.md @@ -7,6 +7,8 @@ SeeAlso:[Specchia di Part](Part_Mirror/it.md) --- +# OpenSCAD MirrorMeshFeature/it +
@@ -53,4 +55,7 @@ Mesh.show(mirrored_mesh) {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD MirrorMeshFeature/it diff --git a/wiki/translations/it/OpenSCAD_Module.md b/wiki/translations/it/OpenSCAD_Module.md index 1a4f67d722..ce0cc85d00 100644 --- a/wiki/translations/it/OpenSCAD_Module.md +++ b/wiki/translations/it/OpenSCAD_Module.md @@ -1,2 +1,5 @@ # OpenSCAD Module/it 1. REDIRECT [OpenSCAD\_Workbench/it](OpenSCAD_Workbench/it.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Module/it diff --git a/wiki/translations/it/OpenSCAD_Preferences.md b/wiki/translations/it/OpenSCAD_Preferences.md index fb83c75f06..0362f15b0d 100644 --- a/wiki/translations/it/OpenSCAD_Preferences.md +++ b/wiki/translations/it/OpenSCAD_Preferences.md @@ -1,5 +1,5 @@ # OpenSCAD Preferences/it - Le preferenze per l\'ambiente [OpenSCAD](OpenSCAD_Workbench/it.md) si trovano nel [Editor delle preferenze](Preferences_Editor/it.md), nel menu **Modifica → Preferenze → OpenSCAD**. +Le preferenze per l\'ambiente [OpenSCAD](OpenSCAD_Workbench/it.md) si trovano nel [Editor delle preferenze](Preferences_Editor/it.md), nel menu **Modifica → Preferenze → OpenSCAD**. C\'è solo una scheda: Impostazioni generali. @@ -13,3 +13,6 @@ C\'è solo una scheda: Impostazioni generali. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Preferences/it diff --git a/wiki/translations/it/OpenSCAD_RefineShapeFeature.md b/wiki/translations/it/OpenSCAD_RefineShapeFeature.md index 9da712b971..501b320ecc 100644 --- a/wiki/translations/it/OpenSCAD_RefineShapeFeature.md +++ b/wiki/translations/it/OpenSCAD_RefineShapeFeature.md @@ -1,3 +1,4 @@ +# OpenSCAD RefineShapeFeature/it --- - GuiCommand:/it Name:OpenSCAD RefineShapeFeature Name/it:Affina forma MenuLocation:OpenSCAD → Affina forma Workbenches:[[OpenSCAD_Workbench/it OpenSCAD]]|SeeAlso:--- @@ -73,4 +74,7 @@ Elimina le linee superflue. Dopo un\'operazione booleana alcune linee che defini {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD RefineShapeFeature/it diff --git a/wiki/translations/it/OpenSCAD_RemoveSubtree.md b/wiki/translations/it/OpenSCAD_RemoveSubtree.md index a901378a78..798079df37 100644 --- a/wiki/translations/it/OpenSCAD_RemoveSubtree.md +++ b/wiki/translations/it/OpenSCAD_RemoveSubtree.md @@ -1,3 +1,4 @@ +# OpenSCAD RemoveSubtree/it --- - GuiCommand:/it Name:OpenSCAD RemoveSubtree Name/it:Remove Subtree MenuLocation:OpenSCAD → RemoveSubtree‏‎ |Workbenches:[[OpenSCAD_Workbench/it OpenSCAD]]|Shortcut: SeeAlso:--- @@ -57,4 +58,7 @@ Rimuove gli oggetti selezionati e tutti i loro figli che non hanno dei riferimen {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD RemoveSubtree/it diff --git a/wiki/translations/it/OpenSCAD_ReplaceObject.md b/wiki/translations/it/OpenSCAD_ReplaceObject.md index c4757eceb2..34a57a6218 100644 --- a/wiki/translations/it/OpenSCAD_ReplaceObject.md +++ b/wiki/translations/it/OpenSCAD_ReplaceObject.md @@ -1,3 +1,4 @@ +# OpenSCAD ReplaceObject/it --- - GuiCommand:/it Name:OpenSCAD ReplaceObject Name/it:Sostituisci oggetto MenuLocation:OpenSCAD → Sostituisci oggetto‏‎ |Workbenches:[[OpenSCAD_Workbench/it OpenSCAD]]|Shortcut: SeeAlso:--- @@ -61,4 +62,7 @@ Sostituisce un oggetto nell\'albero delle caratteristiche. {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ReplaceObject/it diff --git a/wiki/translations/it/OpenSCAD_ResizeMeshFeature.md b/wiki/translations/it/OpenSCAD_ResizeMeshFeature.md index 7c21469024..db31f6397e 100644 --- a/wiki/translations/it/OpenSCAD_ResizeMeshFeature.md +++ b/wiki/translations/it/OpenSCAD_ResizeMeshFeature.md @@ -7,6 +7,8 @@ Workbenches:[OpenSCAD](OpenSCAD_Workbench/it.md) --- +# OpenSCAD ResizeMeshFeature/it +
@@ -54,4 +56,7 @@ Mesh.show(resized_mesh) {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ResizeMeshFeature/it diff --git a/wiki/translations/it/OpenSCAD_ScaleMeshFeature.md b/wiki/translations/it/OpenSCAD_ScaleMeshFeature.md index c91cc784b8..d28a7ee5bb 100644 --- a/wiki/translations/it/OpenSCAD_ScaleMeshFeature.md +++ b/wiki/translations/it/OpenSCAD_ScaleMeshFeature.md @@ -7,6 +7,8 @@ SeeAlso: --- +# OpenSCAD ScaleMeshFeature/it +
@@ -53,4 +55,7 @@ Mesh.show(scaled_mesh) {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ScaleMeshFeature/it diff --git a/wiki/translations/it/OpenSCAD_Workbench.md b/wiki/translations/it/OpenSCAD_Workbench.md index 36fc2a283e..0fc46e7c42 100644 --- a/wiki/translations/it/OpenSCAD_Workbench.md +++ b/wiki/translations/it/OpenSCAD_Workbench.md @@ -1,7 +1,4 @@ # OpenSCAD Workbench/it - - -
@@ -117,3 +114,6 @@ Se FreeCAD va in crash durante l\'importazione CSG, si consiglia vivamente di at }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/it diff --git a/wiki/translations/it/PCB_Workbench.md b/wiki/translations/it/PCB_Workbench.md index ced8c16d59..f44a33a344 100644 --- a/wiki/translations/it/PCB_Workbench.md +++ b/wiki/translations/it/PCB_Workbench.md @@ -1,6 +1,4 @@ # PCB Workbench/it - - ## Introduzione @@ -111,3 +109,6 @@ Security → Edit → Users and mark all checkboxes under \'Allow\' option. [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > PCB Workbench/it diff --git a/wiki/translations/it/PDF.md b/wiki/translations/it/PDF.md index 50f2f1ef3d..a98d44da5d 100644 --- a/wiki/translations/it/PDF.md +++ b/wiki/translations/it/PDF.md @@ -1,7 +1,4 @@ # PDF/it - - - {{TOCright}} ## Descrizione @@ -60,3 +57,6 @@ L\'opzione per esportare in PDF è disponibile nel menu **File → Esporta PDF** [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > PDF/it diff --git a/wiki/translations/it/Packaging.md b/wiki/translations/it/Packaging.md index 2830d42355..0266bad3c8 100644 --- a/wiki/translations/it/Packaging.md +++ b/wiki/translations/it/Packaging.md @@ -1,6 +1,4 @@ # Packaging/it - - Questa pagina raccoglie le informazioni sulla costruzione dei pacchetti di FreeCAD per le diverse piattaforme. - [Linux packaging](Linux_packaging/it.md). Informazioni su AppImage, sui pacchetti Debian, instabili e daily e altri. @@ -11,3 +9,6 @@ Questa pagina raccoglie le informazioni sulla costruzione dei pacchetti di FreeC [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Packaging/it diff --git a/wiki/translations/it/Parameter_editor.md b/wiki/translations/it/Parameter_editor.md index 96c483a9fd..74a0618fd7 100644 --- a/wiki/translations/it/Parameter_editor.md +++ b/wiki/translations/it/Parameter_editor.md @@ -1,2 +1,5 @@ # Parameter editor/it 1. REDIRECT [Std\_DlgParameter/it](Std_DlgParameter/it.md) + +--- +[documentation index](../README.md) > Parameter editor/it diff --git a/wiki/translations/it/Part.md b/wiki/translations/it/Part.md index 5ca17d096d..6450a317b8 100644 --- a/wiki/translations/it/Part.md +++ b/wiki/translations/it/Part.md @@ -1,6 +1,4 @@ # Part/it - - ## Introduzione @@ -46,3 +44,6 @@ Tuttavia, quando è richiesta maggiore precisione, vanno fatte le dovute distinz }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Part/it diff --git a/wiki/translations/it/PartDesign_AdditiveBox.md b/wiki/translations/it/PartDesign_AdditiveBox.md index 8b167da981..a50d5fb256 100644 --- a/wiki/translations/it/PartDesign_AdditiveBox.md +++ b/wiki/translations/it/PartDesign_AdditiveBox.md @@ -8,6 +8,8 @@ SeeAlso:[Primitive additive](PartDesign_CompPrimitiveAdditive/it.md) --- +# PartDesign AdditiveBox/it +
@@ -73,4 +75,7 @@ Dopo la sua creazione il cubo può essere modificato in due modi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveBox/it diff --git a/wiki/translations/it/PartDesign_AdditiveCone.md b/wiki/translations/it/PartDesign_AdditiveCone.md index 34f92293ee..20990e8a85 100644 --- a/wiki/translations/it/PartDesign_AdditiveCone.md +++ b/wiki/translations/it/PartDesign_AdditiveCone.md @@ -8,6 +8,8 @@ SeeAlso:[Primitive additive](PartDesign_CompPrimitiveAdditive/it.md) --- +# PartDesign AdditiveCone/it +
@@ -75,4 +77,7 @@ Dopo la sua creazione il cono può essere modificato in due modi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCone/it diff --git a/wiki/translations/it/PartDesign_AdditiveCylinder.md b/wiki/translations/it/PartDesign_AdditiveCylinder.md index d1e7b42ec0..1d687e51b3 100644 --- a/wiki/translations/it/PartDesign_AdditiveCylinder.md +++ b/wiki/translations/it/PartDesign_AdditiveCylinder.md @@ -1,3 +1,4 @@ +# PartDesign AdditiveCylinder/it --- - GuiCommand:/it Name:PartDesign AdditiveCylinder Name/it:Cilindro additivo Workbenches:[MenuLocation:Part Design → Crea una primitiva additiva → Cilindro Version:0.17 SeeAlso:[[PartDesign CompPrimitiveAdditive/it|Primitive additive](PartDesign_Workbench/it___PartDesign]].md)--- @@ -69,4 +70,7 @@ Dopo la sua creazione il cilindro può essere modificato in due modi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCylinder/it diff --git a/wiki/translations/it/PartDesign_AdditiveEllipsoid.md b/wiki/translations/it/PartDesign_AdditiveEllipsoid.md index db7aa30d35..a0a00c2c54 100644 --- a/wiki/translations/it/PartDesign_AdditiveEllipsoid.md +++ b/wiki/translations/it/PartDesign_AdditiveEllipsoid.md @@ -1,3 +1,4 @@ +# PartDesign AdditiveEllipsoid/it --- - GuiCommand:/it Name:PartDesign AdditiveEllipsoid Name/it:Ellissoide additivo Workbenches:[MenuLocation:Part Design → Crea una primitiva additiva → Ellissoide Version:0.17 SeeAlso:[[PartDesign CompPrimitiveAdditive/it|Primitive additive](PartDesign_Workbench/it___PartDesign]].md)--- @@ -72,4 +73,7 @@ Dopo la sua creazione l\'ellissoide può essere modificato in due modi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveEllipsoid/it diff --git a/wiki/translations/it/PartDesign_AdditiveHelix.md b/wiki/translations/it/PartDesign_AdditiveHelix.md index fa6355d682..d338201d60 100644 --- a/wiki/translations/it/PartDesign_AdditiveHelix.md +++ b/wiki/translations/it/PartDesign_AdditiveHelix.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign SubtractiveHelix](PartDesign_SubtractiveHelix.md) --- +# PartDesign AdditiveHelix/it + ## Description The **AdditiveHelix** tool creates a solid by sweeping a selected sketch or 2D object along a helix path. @@ -124,4 +126,7 @@ If checked, the helix will be shown in the view, and updated automatically on ev {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveHelix/it diff --git a/wiki/translations/it/PartDesign_AdditiveLoft.md b/wiki/translations/it/PartDesign_AdditiveLoft.md index f08a2f8ffa..71d1efe405 100644 --- a/wiki/translations/it/PartDesign_AdditiveLoft.md +++ b/wiki/translations/it/PartDesign_AdditiveLoft.md @@ -8,6 +8,8 @@ SeeAlso:[Sweep additivo](PartDesign_AdditivePipe/it.md) --- +# PartDesign AdditiveLoft/it +
@@ -135,4 +137,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveLoft/it diff --git a/wiki/translations/it/PartDesign_AdditivePipe.md b/wiki/translations/it/PartDesign_AdditivePipe.md index 742f9c49ff..cf9b54a870 100644 --- a/wiki/translations/it/PartDesign_AdditivePipe.md +++ b/wiki/translations/it/PartDesign_AdditivePipe.md @@ -8,6 +8,8 @@ SeeAlso:[Loft additivo](PartDesign_AdditiveLoft/it.md) --- +# PartDesign AdditivePipe/it +
@@ -138,4 +140,7 @@ Per utilizzare più di una sezione trasversale, iniziare con il primo schizzo de {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePipe/it diff --git a/wiki/translations/it/PartDesign_AdditivePrism.md b/wiki/translations/it/PartDesign_AdditivePrism.md index 4207548e07..861bb5e99e 100644 --- a/wiki/translations/it/PartDesign_AdditivePrism.md +++ b/wiki/translations/it/PartDesign_AdditivePrism.md @@ -1,3 +1,4 @@ +# PartDesign AdditivePrism/it --- - GuiCommand:/it Name:PartDesign AdditivePrism Name/it:Prisma additivo Workbenches:[MenuLocation:Part Design → Crea una primitiva additiva → Prisma Version:0.17 SeeAlso:[[PartDesign CompPrimitiveAdditive/it|Primitive additive](PartDesign_Workbench/it___PartDesign]].md)--- @@ -68,4 +69,7 @@ Dopo la sua creazione il Prisma può essere modificato in due modi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePrism/it diff --git a/wiki/translations/it/PartDesign_AdditiveSphere.md b/wiki/translations/it/PartDesign_AdditiveSphere.md index 439c53841e..9f1ed094ff 100644 --- a/wiki/translations/it/PartDesign_AdditiveSphere.md +++ b/wiki/translations/it/PartDesign_AdditiveSphere.md @@ -1,3 +1,4 @@ +# PartDesign AdditiveSphere/it --- - GuiCommand:/it Name:PartDesign AdditiveSphere Name/it:Sfera additiva Workbenches:[MenuLocation:Part Design → Crea una primitiva additiva → Sfera Shortcut:None Version:0.17 SeeAlso:[[PartDesign CompPrimitiveAdditive/it|Primitive additive](PartDesign_Workbench/it___PartDesign]].md)--- @@ -68,4 +69,7 @@ Dopo la sua creazione la sfera può essere modificata in due modi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveSphere/it diff --git a/wiki/translations/it/PartDesign_AdditiveTorus.md b/wiki/translations/it/PartDesign_AdditiveTorus.md index 68fa2f22c0..0164df32f6 100644 --- a/wiki/translations/it/PartDesign_AdditiveTorus.md +++ b/wiki/translations/it/PartDesign_AdditiveTorus.md @@ -1,3 +1,4 @@ +# PartDesign AdditiveTorus/it --- - GuiCommand:/it Name:PartDesign AdditiveTorus Name/it:Toro additivo Workbenches:[MenuLocation:Part Design → Crea una primitiva additiva → Toro Version:0.17 SeeAlso:[[PartDesign CompPrimitiveAdditive/it|Primitive additive](PartDesign_Workbench/it___PartDesign]].md)--- @@ -70,4 +71,7 @@ Dopo la sua creazione il toro può essere modificato in due modi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveTorus/it diff --git a/wiki/translations/it/PartDesign_AdditiveWedge.md b/wiki/translations/it/PartDesign_AdditiveWedge.md index 9dc50eda43..3df9bd7a19 100644 --- a/wiki/translations/it/PartDesign_AdditiveWedge.md +++ b/wiki/translations/it/PartDesign_AdditiveWedge.md @@ -1,3 +1,4 @@ +# PartDesign AdditiveWedge/it --- - GuiCommand:/it Name:PartDesign AdditiveWedge Name/it:Cuneo additivo Workbenches:[MenuLocation:Part Design → Crea una primitiva additiva → Cuneo Version:0.17 SeeAlso:[[PartDesign CompPrimitiveAdditive/it|Primitive additive](PartDesign_Workbench/it___PartDesign]].md)--- @@ -66,4 +67,7 @@ Wedges can be used to create pyramids by setting **X2 min/max** and **Z2 min/max {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveWedge/it diff --git a/wiki/translations/it/PartDesign_Bearingholder_Tutorial_I.md b/wiki/translations/it/PartDesign_Bearingholder_Tutorial_I.md index 23adf2dd54..7fe7f930b6 100644 --- a/wiki/translations/it/PartDesign_Bearingholder_Tutorial_I.md +++ b/wiki/translations/it/PartDesign_Bearingholder_Tutorial_I.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial I/it - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -122,3 +118,6 @@ Abbiamo modellato la parte superiore del supporto per cuscinetto con le dimensio [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial I/it diff --git a/wiki/translations/it/PartDesign_Bearingholder_Tutorial_II.md b/wiki/translations/it/PartDesign_Bearingholder_Tutorial_II.md index d124ca3ae8..da1efdbb28 100644 --- a/wiki/translations/it/PartDesign_Bearingholder_Tutorial_II.md +++ b/wiki/translations/it/PartDesign_Bearingholder_Tutorial_II.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial II/it - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -95,3 +91,6 @@ Per il resto della lavorazione, creare un nuovo corpo. La parte inferiore del su [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial II/it diff --git a/wiki/translations/it/PartDesign_Body.md b/wiki/translations/it/PartDesign_Body.md index 3e96ac0cf5..8efa749557 100644 --- a/wiki/translations/it/PartDesign_Body.md +++ b/wiki/translations/it/PartDesign_Body.md @@ -8,6 +8,8 @@ SeeAlso:[Parte standard](Std_Part/it.md), [Editazione delle funzioni](feature_editing/it.md) --- +# PartDesign Body/it +
@@ -336,4 +338,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Body/it diff --git a/wiki/translations/it/PartDesign_Boolean.md b/wiki/translations/it/PartDesign_Boolean.md index 9e0269ebc7..453df721ef 100644 --- a/wiki/translations/it/PartDesign_Boolean.md +++ b/wiki/translations/it/PartDesign_Boolean.md @@ -7,6 +7,8 @@ Version:0.17 --- +# PartDesign Boolean/it +
@@ -89,4 +91,7 @@ In alternativa, è possibile selezionare uno o più Corpi prima di premere il pu {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Boolean/it diff --git a/wiki/translations/it/PartDesign_Chamfer.md b/wiki/translations/it/PartDesign_Chamfer.md index 8a255bfe92..ffe2255742 100644 --- a/wiki/translations/it/PartDesign_Chamfer.md +++ b/wiki/translations/it/PartDesign_Chamfer.md @@ -1,3 +1,4 @@ +# PartDesign Chamfer/it --- - GuiCommand:/it Name:PartDesign Chamfer Name/it:Smusso @@ -58,4 +59,7 @@ Questo strumento applica degli smussi ai bordi di un oggetto selezionato. All\'a {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Chamfer/it diff --git a/wiki/translations/it/PartDesign_Clone.md b/wiki/translations/it/PartDesign_Clone.md index 428fbb1bb3..06db76b471 100644 --- a/wiki/translations/it/PartDesign_Clone.md +++ b/wiki/translations/it/PartDesign_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Draft clone](Draft_Clone/it.md) --- +# PartDesign Clone/it +
@@ -59,4 +61,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Clone/it diff --git a/wiki/translations/it/PartDesign_CompPrimitiveAdditive.md b/wiki/translations/it/PartDesign_CompPrimitiveAdditive.md index 9ea8cdd189..ba46c71216 100644 --- a/wiki/translations/it/PartDesign_CompPrimitiveAdditive.md +++ b/wiki/translations/it/PartDesign_CompPrimitiveAdditive.md @@ -8,6 +8,8 @@ SeeAlso:[Primitive sottrattive](PartDesign_CompPrimitiveSubtractive/it.md) --- +# PartDesign CompPrimitiveAdditive/it +
@@ -44,4 +46,7 @@ Crea una primitiva additiva nel corpo attivo come prima caratteristica o la fond {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveAdditive/it diff --git a/wiki/translations/it/PartDesign_CompPrimitiveSubtractive.md b/wiki/translations/it/PartDesign_CompPrimitiveSubtractive.md index e9614c2d1f..54e959509a 100644 --- a/wiki/translations/it/PartDesign_CompPrimitiveSubtractive.md +++ b/wiki/translations/it/PartDesign_CompPrimitiveSubtractive.md @@ -8,6 +8,8 @@ Version:0.17 --- +# PartDesign CompPrimitiveSubtractive/it +
@@ -44,4 +46,7 @@ Crea una primitiva sottrattiva nel corpo attivo, sottraendo la sua forma dal sol {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveSubtractive/it diff --git a/wiki/translations/it/PartDesign_CoordinateSystem.md b/wiki/translations/it/PartDesign_CoordinateSystem.md index 7b1bdea074..93ea1c14de 100644 --- a/wiki/translations/it/PartDesign_CoordinateSystem.md +++ b/wiki/translations/it/PartDesign_CoordinateSystem.md @@ -8,6 +8,8 @@ SeeAlso:[Punto di riferimento](PartDesign_Point/it.md), [Linea di riferimento](PartDesign_Line/it.md), [Piano di riferimento](PartDesign_Plane/it.md) --- +# PartDesign CoordinateSystem/it +
@@ -68,4 +70,7 @@ lcs = App.activeDocument().addObject( 'PartDesign::CoordinateSystem', 'LCS' ) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CoordinateSystem/it diff --git a/wiki/translations/it/PartDesign_Draft.md b/wiki/translations/it/PartDesign_Draft.md index e1f1dad4c3..8ffdd687c3 100644 --- a/wiki/translations/it/PartDesign_Draft.md +++ b/wiki/translations/it/PartDesign_Draft.md @@ -1,3 +1,4 @@ +# PartDesign Draft/it --- - GuiCommand:/it Name:PartDesign_Draft Name/it:Sformo MenuLocation:PartDesign → Sformo Workbenches:[PartDesign](PartDesign_Workbench/it.md)--- @@ -103,4 +104,7 @@ Questo strumento crea uno sformo angolare (inclinazione delle facce) sulle facce {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Draft/it diff --git a/wiki/translations/it/PartDesign_Feature.md b/wiki/translations/it/PartDesign_Feature.md index 77123279ec..583c6c1e53 100644 --- a/wiki/translations/it/PartDesign_Feature.md +++ b/wiki/translations/it/PartDesign_Feature.md @@ -1,6 +1,4 @@ # PartDesign Feature/it - - ## Introduzione Per [PartDesign Feature](PartDesign_Feature/it.md) (funzione di PartDesign) si intende a un \"passaggio\" nel processo di modellazione che si verifica all\'interno di un [Corpo di PartDesign](PartDesign_Body/it.md). Ad esempio, ogni volta che si aggiunge un cubo solido con [Cubo additivo](PartDesign_AdditiveBox/it.md), si aggiunge una funzione; quando si aggiunge uno smusso a un bordo con [Smusso di PartDesign](PartDesign_Chamfer/it.md), si aggiunge un\'altra funzione; quando si intaglia un foro usando uno [schizzo](Sketch/it.md) per creare una [Tasca](PartDesign_Pocket/it.md), si aggiunge un\'altra funzione. @@ -81,4 +79,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Feature/it diff --git a/wiki/translations/it/PartDesign_Fillet.md b/wiki/translations/it/PartDesign_Fillet.md index 1b328bbb3d..8ad1d49d8a 100644 --- a/wiki/translations/it/PartDesign_Fillet.md +++ b/wiki/translations/it/PartDesign_Fillet.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Smusso](PartDesign_Chamfer.md), [Part Raccordo](Part_Fillet.md) --- +# PartDesign Fillet/it +
@@ -129,4 +131,7 @@ Part.show(Box) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Fillet/it diff --git a/wiki/translations/it/PartDesign_Groove.md b/wiki/translations/it/PartDesign_Groove.md index b4237b8924..3518c38c48 100644 --- a/wiki/translations/it/PartDesign_Groove.md +++ b/wiki/translations/it/PartDesign_Groove.md @@ -1,3 +1,4 @@ +# PartDesign Groove/it --- - GuiCommand:/it Name:PartDesign_Groove Name/it:Scanalatura Workbenches:[MenuLocation:PartDesign → Scanalatura SeeAlso:[[PartDesign_Revolution/it|Rivoluzione](PartDesign_Workbench/it___PartDesign]].md)--- @@ -90,4 +91,7 @@ Sotto sono riportate le proprietà che possono essere definite dopo la creazione {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Groove/it diff --git a/wiki/translations/it/PartDesign_Hole.md b/wiki/translations/it/PartDesign_Hole.md index 85be1beb5e..862c2233f0 100644 --- a/wiki/translations/it/PartDesign_Hole.md +++ b/wiki/translations/it/PartDesign_Hole.md @@ -1,3 +1,4 @@ +# PartDesign Hole/it --- - GuiCommand:/it Name:PartDesign Hole Name/it:Foro Workbenches:[MenuLocation:Part Design → Foro Version:0.17 SeeAlso:[[PartDesign Pocket/it|Tasca](PartDesign_Workbench/it___PartDesign]].md)--- @@ -155,4 +156,7 @@ Example: {{Code|lang=json|code= {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Hole/it diff --git a/wiki/translations/it/PartDesign_InvoluteGear.md b/wiki/translations/it/PartDesign_InvoluteGear.md index 46f43fdf28..a77442ebcd 100644 --- a/wiki/translations/it/PartDesign_InvoluteGear.md +++ b/wiki/translations/it/PartDesign_InvoluteGear.md @@ -6,6 +6,8 @@ Workbenches:[DisegnoPezzo](PartDesign_Workbench/it.md) --- +# PartDesign InvoluteGear/it +
@@ -51,4 +53,7 @@ Per informazioni più dettagliate consultare le voci di Wikipedia per: [Gear](ht {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign InvoluteGear/it diff --git a/wiki/translations/it/PartDesign_Legacy.md b/wiki/translations/it/PartDesign_Legacy.md index c7a9dce924..a95d346686 100644 --- a/wiki/translations/it/PartDesign_Legacy.md +++ b/wiki/translations/it/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/it 1. REDIRECT [PartDesign\_Workbench/it](PartDesign_Workbench/it.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/it diff --git a/wiki/translations/it/PartDesign_Line.md b/wiki/translations/it/PartDesign_Line.md index 1c3c4b9755..28257b6155 100644 --- a/wiki/translations/it/PartDesign_Line.md +++ b/wiki/translations/it/PartDesign_Line.md @@ -8,6 +8,8 @@ SeeAlso:[Punto di riferimento](PartDesign_Point/it.md), [Piano di riferimento](PartDesign_Plane/it.md) --- +# PartDesign Line/it +
@@ -58,4 +60,7 @@ Fare doppio clic sull\'etichetta DatumLine nell\'albero del modello o fare clic {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Line/it diff --git a/wiki/translations/it/PartDesign_LinearPattern.md b/wiki/translations/it/PartDesign_LinearPattern.md index a19d6db486..461c7df4b5 100644 --- a/wiki/translations/it/PartDesign_LinearPattern.md +++ b/wiki/translations/it/PartDesign_LinearPattern.md @@ -1,3 +1,4 @@ +# PartDesign LinearPattern/it --- - GuiCommand:/it Name:PartDesign LinearPattern Name/it:Schiera lineare MenuLocation:PartDesign → Serie lineare Workbenches:[SeeAlso:[[PartDesign PolarPattern/it|Serie polare](PartDesign_Workbench/it___PartDesign]].md)--- @@ -106,4 +107,7 @@ v0.17 e superiore Seleziona uno degli assi standard di Origine del Corpo (X, Y o {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign LinearPattern/it diff --git a/wiki/translations/it/PartDesign_Migrate.md b/wiki/translations/it/PartDesign_Migrate.md index 8440626d1d..47991ba818 100644 --- a/wiki/translations/it/PartDesign_Migrate.md +++ b/wiki/translations/it/PartDesign_Migrate.md @@ -8,6 +8,8 @@ Version:0.17 --- +# PartDesign Migrate/it +
@@ -49,4 +51,7 @@ PartDesign in FreeCAD v0.17 introduce nuovi strumenti ed elementi che non sono r {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Migrate/it diff --git a/wiki/translations/it/PartDesign_Mirrored.md b/wiki/translations/it/PartDesign_Mirrored.md index d018740dc7..20c22ff7a7 100644 --- a/wiki/translations/it/PartDesign_Mirrored.md +++ b/wiki/translations/it/PartDesign_Mirrored.md @@ -1,3 +1,4 @@ +# PartDesign Mirrored/it --- - GuiCommand:/it Name:PartDesign Mirrored Name/it:Simmetria Workbenches:[[PartDesign Workbench/it PartDesign]]|MenuLocation:PartDesign → Simmetria--- @@ -121,4 +122,7 @@ Il risultato della funzione di simmetria può essere visualizzato in tempo reale {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Mirrored/it diff --git a/wiki/translations/it/PartDesign_MoveFeature.md b/wiki/translations/it/PartDesign_MoveFeature.md index 7ed7a39538..37ea58670d 100644 --- a/wiki/translations/it/PartDesign_MoveFeature.md +++ b/wiki/translations/it/PartDesign_MoveFeature.md @@ -8,6 +8,8 @@ SeeAlso:[Usa come entità finale](PartDesign_MoveTip/it.md), [Sposta dopo altro oggetto](PartDesign_MoveFeatureInTree/it.md) --- +# PartDesign MoveFeature/it +
@@ -46,4 +48,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeature/it diff --git a/wiki/translations/it/PartDesign_MoveFeatureInTree.md b/wiki/translations/it/PartDesign_MoveFeatureInTree.md index 3738fa764f..28a42d4dfd 100644 --- a/wiki/translations/it/PartDesign_MoveFeatureInTree.md +++ b/wiki/translations/it/PartDesign_MoveFeatureInTree.md @@ -10,6 +10,8 @@ --- +# PartDesign MoveFeatureInTree/it +
@@ -54,4 +56,7 @@ Le tre immagini seguenti mostrano lo stesso modello con una tasca definita da un {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeatureInTree/it diff --git a/wiki/translations/it/PartDesign_MoveTip.md b/wiki/translations/it/PartDesign_MoveTip.md index 3886d179d1..254e05823f 100644 --- a/wiki/translations/it/PartDesign_MoveTip.md +++ b/wiki/translations/it/PartDesign_MoveTip.md @@ -1,3 +1,4 @@ +# PartDesign MoveTip/it --- - GuiCommand:/it Name:PartDesign MoveTip Name/it:Usa come entità finale MenuLocation:Menu contestuale → Usa come entità finale Workbenches:[Version:0.17 SeeAlso:[[PartDesign MoveFeature/it|Sposta in altro corpo](PartDesign_Workbench/it___PartDesign]].md), [Sposta dopo altro oggetto](PartDesign_MoveFeatureInTree/it.md)--- @@ -44,4 +45,7 @@ La cima è visivamente distinta nell\'albero del modello da una piccola freccia {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveTip/it diff --git a/wiki/translations/it/PartDesign_MultiTransform.md b/wiki/translations/it/PartDesign_MultiTransform.md index f66cba42b4..f61ba560ca 100644 --- a/wiki/translations/it/PartDesign_MultiTransform.md +++ b/wiki/translations/it/PartDesign_MultiTransform.md @@ -5,6 +5,8 @@ MenuLocation:PartDesign → MultiTrasformazione --- +# PartDesign MultiTransform/it +
@@ -270,4 +272,7 @@ Allows changing the order of transformations in the list \|} {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MultiTransform/it diff --git a/wiki/translations/it/PartDesign_NewSketch.md b/wiki/translations/it/PartDesign_NewSketch.md index c54476e97a..32b8aef3eb 100644 --- a/wiki/translations/it/PartDesign_NewSketch.md +++ b/wiki/translations/it/PartDesign_NewSketch.md @@ -7,6 +7,8 @@ Version:0.17 --- +# PartDesign NewSketch/it +
@@ -95,4 +97,7 @@ To reference any items in the [PartDesign Estrusione](PartDesign_Pad/it.md)** crea uno solido da uno schizzo in una direzione normale al piano dello stesso. A partire dalla {{VersionPlus/it|0.17}}, è possibile utilizzare anche le facce di un solido. @@ -126,4 +128,7 @@ Inverte la direzione dell\'estrusione. {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pad/it diff --git a/wiki/translations/it/PartDesign_Plane.md b/wiki/translations/it/PartDesign_Plane.md index f691660778..db60f23ae1 100644 --- a/wiki/translations/it/PartDesign_Plane.md +++ b/wiki/translations/it/PartDesign_Plane.md @@ -8,6 +8,8 @@ SeeAlso:[Punto di riferimento](PartDesign_Point/it.md), [Linea di riferimento](PartDesign_Line/it.md) --- +# PartDesign Plane/it +
@@ -72,4 +74,7 @@ Fare doppio clic sull\'etichetta DatumPlane nell\'albero del modello o fare clic {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Plane/it diff --git a/wiki/translations/it/PartDesign_Pocket.md b/wiki/translations/it/PartDesign_Pocket.md index 4d34a76864..845fb98c90 100644 --- a/wiki/translations/it/PartDesign_Pocket.md +++ b/wiki/translations/it/PartDesign_Pocket.md @@ -1,3 +1,4 @@ +# PartDesign Pocket/it --- - GuiCommand:/it Name:PartDesign_Pocket Name/it:Tasca MenuLocation:PartDesign → Tasca Workbenches:[PartDesign](PartDesign_Workbench/it.md)--- @@ -82,4 +83,7 @@ Un [esempio](http://forum.freecadweb.org/viewtopic.php?f=3&t=3733&start=10) di a {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pocket/it diff --git a/wiki/translations/it/PartDesign_Point.md b/wiki/translations/it/PartDesign_Point.md index d95b3317e3..2743ea04e1 100644 --- a/wiki/translations/it/PartDesign_Point.md +++ b/wiki/translations/it/PartDesign_Point.md @@ -8,6 +8,8 @@ SeeAlso:[Linea di riferimento](PartDesign_Line/it.md), [Piano di riferimento](PartDesign_Plane/it.md) --- +# PartDesign Point/it +
@@ -61,4 +63,7 @@ Fare doppio clic sull\'etichetta DatumPoint nell\'albero del modello o fare clic {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Point/it diff --git a/wiki/translations/it/PartDesign_PolarPattern.md b/wiki/translations/it/PartDesign_PolarPattern.md index 952653cd40..1813121f42 100644 --- a/wiki/translations/it/PartDesign_PolarPattern.md +++ b/wiki/translations/it/PartDesign_PolarPattern.md @@ -7,6 +7,8 @@ SeeAlso:[Serie lineare](PartDesign_LinearPattern/it.md) --- +# PartDesign PolarPattern/it +
@@ -150,4 +152,7 @@ Specifica l\'angolo da coprire con la schiera e il numero totale di forme della {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign PolarPattern/it diff --git a/wiki/translations/it/PartDesign_Preferences.md b/wiki/translations/it/PartDesign_Preferences.md index d6c4922ed4..a56351305a 100644 --- a/wiki/translations/it/PartDesign_Preferences.md +++ b/wiki/translations/it/PartDesign_Preferences.md @@ -1,7 +1,4 @@ # PartDesign Preferences/it - - -
@@ -196,3 +193,6 @@ Fare clic con il tasto destro del mouse su **Deviazione mesh** scegliere nel men }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Preferences/it diff --git a/wiki/translations/it/PartDesign_Revolution.md b/wiki/translations/it/PartDesign_Revolution.md index 630b47296d..76d9661007 100644 --- a/wiki/translations/it/PartDesign_Revolution.md +++ b/wiki/translations/it/PartDesign_Revolution.md @@ -1,3 +1,4 @@ +# PartDesign Revolution/it --- - GuiCommand:/it Name:PartDesign Revolution Name/it:Rivoluzione MenuLocation:PartDesign → Rivoluzione Workbenches:[PartDesign](PartDesign_Workbench/it.md)--- @@ -147,4 +148,7 @@ Un [esempio](http://forum.freecadweb.org/viewtopic.php?f=3&t=3674) dettagliato d {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Revolution/it diff --git a/wiki/translations/it/PartDesign_Scaled.md b/wiki/translations/it/PartDesign_Scaled.md index b59b47ca5a..31b4b9fea8 100644 --- a/wiki/translations/it/PartDesign_Scaled.md +++ b/wiki/translations/it/PartDesign_Scaled.md @@ -1,5 +1,5 @@ # PartDesign Scaled/it - {{GuiCommand/it|Name=PartDesign Scaled|Name/it=Scala|Workbenches=[PartDesign](PartDesign_Workbench/it.md), Completo|MenuLocation=PartDesign → Multitrasformazione}} +{{GuiCommand/it|Name=PartDesign Scaled|Name/it=Scala|Workbenches=[PartDesign](PartDesign_Workbench/it.md), Completo|MenuLocation=PartDesign → Multitrasformazione}} ## Descrizione @@ -36,4 +36,7 @@ A partire da FreeCAD 0.15, questa funzione non è disponibile direttamente, ma ![c\|center\|800px](images/mt_example2.png ) Il pad più piccolo è stato riprodotto tre volte in direzione X e poi scalato con un fattore due (così le tre occorrenze hanno il fattore di scala 1.0, 1.5 e 2.0). Poi è stata applicata una schiera polare con 8 occorrenze. -Poiché la scalatura viene eseguita rispetto al centro di gravità, nel caso di un Pad, è necessario che il pad penetri anche nel corpo principale, altrimenti gli oggetti scalati sono flottanti, staccati dal corpo. Per avere un pad che interseca il corpo principale possono essere utilizzate le opzioni \"due dimensioni\" o \"simmetrica al piano\". +Poiché la scalatura viene eseguita rispetto al centro di gravità, nel caso di un Pad, è necessario che il pad penetri anche nel corpo principale, altrimenti gli oggetti scalati sono flottanti, staccati dal corpo. Per avere un pad che interseca il corpo principale possono essere utilizzate le opzioni \"due dimensioni\" o \"simmetrica al piano\". + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Scaled/it diff --git a/wiki/translations/it/PartDesign_ShapeBinder.md b/wiki/translations/it/PartDesign_ShapeBinder.md index 9c1f7635ee..e76e640535 100644 --- a/wiki/translations/it/PartDesign_ShapeBinder.md +++ b/wiki/translations/it/PartDesign_ShapeBinder.md @@ -9,6 +9,8 @@ [Clone](PartDesign_Clone/it.md) --- +# PartDesign ShapeBinder/it + ## Descrizione Crea un riferimento **shape binder** (forma legata) all\'interno del corpo attivo. Una forma legata è un oggetto di riferimento che si collega a bordi o alle facce di un altro corpo. Può anche essere usato per collegare uno schizzo da un corpo a un altro corpo. L\'oggetto forma legata viene visualizzato in giallo traslucido nella [Vista 3D](3D_view/it.md). @@ -122,4 +124,7 @@ C\'è una soluzione alternativa per la selezione multipla: selezionando tutti gl {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign ShapeBinder/it diff --git a/wiki/translations/it/PartDesign_Sprocket.md b/wiki/translations/it/PartDesign_Sprocket.md index 2bdde44f85..387d04f1ea 100644 --- a/wiki/translations/it/PartDesign_Sprocket.md +++ b/wiki/translations/it/PartDesign_Sprocket.md @@ -6,6 +6,8 @@ Version:0.19 --- +# PartDesign Sprocket/it + ## Description This tool allows you to create a 2D profile of a sprocket (or chainwheel). It can be padded with the [PartDesign Pad](PartDesign_Pad.md) feature. @@ -35,4 +37,7 @@ This tool allows you to create a 2D profile of a sprocket (or chainwheel). It ca {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Sprocket/it diff --git a/wiki/translations/it/PartDesign_SubShapeBinder.md b/wiki/translations/it/PartDesign_SubShapeBinder.md index 84054f2d55..590ef92b08 100644 --- a/wiki/translations/it/PartDesign_SubShapeBinder.md +++ b/wiki/translations/it/PartDesign_SubShapeBinder.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Forme legate](PartDesign_ShapeBinder/it.md), [PartDesign Clona](PartDesign_Clone/it.md) --- +# PartDesign SubShapeBinder/it + ## Descrizione @@ -110,4 +112,7 @@ Vedere [Funzioni Part](Part_Feature/it.md). {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubShapeBinder/it diff --git a/wiki/translations/it/PartDesign_SubtractiveBox.md b/wiki/translations/it/PartDesign_SubtractiveBox.md index c4b0580ab4..ec3c5cb186 100644 --- a/wiki/translations/it/PartDesign_SubtractiveBox.md +++ b/wiki/translations/it/PartDesign_SubtractiveBox.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveBox/it --- - GuiCommand:/it Name:PartDesign SubtractiveBox Name/it:Cubo sottrattivo Workbenches:[MenuLocation:Part Design → Crea una primitiva sottrattiva → Cubo Version:0.17 SeeAlso:[[PartDesign CompPrimitiveSubtractive/it|Primitive sottrattive](PartDesign_Workbench/it___PartDesign]].md)--- @@ -66,4 +67,7 @@ Dopo la sua creazione il cubo può essere modificato in due modi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveBox/it diff --git a/wiki/translations/it/PartDesign_SubtractiveCone.md b/wiki/translations/it/PartDesign_SubtractiveCone.md index 5aa7364a8f..540233393a 100644 --- a/wiki/translations/it/PartDesign_SubtractiveCone.md +++ b/wiki/translations/it/PartDesign_SubtractiveCone.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveCone/it --- - GuiCommand:/it Name:PartDesign SubtractiveCone Name/it:Cono sottrattivo Workbenches:[MenuLocation:Part Design → Crea una primitiva sotttrattiva → Cono Version:0.17 SeeAlso:[[PartDesign CompPrimitiveSubtractive/it|Primitive sottrattive](PartDesign_Workbench/it___PartDesign]].md)--- @@ -70,4 +71,7 @@ Dopo la sua creazione il cono può essere modificato in due modi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCone/it diff --git a/wiki/translations/it/PartDesign_SubtractiveCylinder.md b/wiki/translations/it/PartDesign_SubtractiveCylinder.md index 8b881808b0..6845345a81 100644 --- a/wiki/translations/it/PartDesign_SubtractiveCylinder.md +++ b/wiki/translations/it/PartDesign_SubtractiveCylinder.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveCylinder/it --- - GuiCommand:/it Name:PartDesign SubtractiveCylinder Name/it:Cilindro sottrattivo Workbenches:[MenuLocation:Part Design → Crea una primitiva sottrattiva → Cilindro Version:0.17 SeeAlso:[[PartDesign CompPrimitiveSubtractive/it|Primitive sottrattive](PartDesign_Workbench/it___PartDesign]].md)--- @@ -70,4 +71,7 @@ Dopo la sua creazione il cilindro può essere modificato in due modi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCylinder/it diff --git a/wiki/translations/it/PartDesign_SubtractiveEllipsoid.md b/wiki/translations/it/PartDesign_SubtractiveEllipsoid.md index 1a49baefa8..d420f74569 100644 --- a/wiki/translations/it/PartDesign_SubtractiveEllipsoid.md +++ b/wiki/translations/it/PartDesign_SubtractiveEllipsoid.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveEllipsoid/it --- - GuiCommand:/it Name:PartDesign SubtractiveEllipsoid Name/it:Ellissoide sottrattivo Workbenches:[MenuLocation:Part Design → Crea una primitiva sottrattiva → Ellissoide Version:0.17 SeeAlso:[[PartDesign CompPrimitiveSubtractive/it|Primitive sottrattive](PartDesign_Workbench/it___PartDesign]].md)--- @@ -74,4 +75,7 @@ Dopo la sua creazione l\'ellissoide può essere modificato in due modi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveEllipsoid/it diff --git a/wiki/translations/it/PartDesign_SubtractiveHelix.md b/wiki/translations/it/PartDesign_SubtractiveHelix.md index 81f3ceff29..50ecc3a1fe 100644 --- a/wiki/translations/it/PartDesign_SubtractiveHelix.md +++ b/wiki/translations/it/PartDesign_SubtractiveHelix.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign AdditiveHelix](PartDesign_AdditiveHelix.md) --- +# PartDesign SubtractiveHelix/it + ## Description The **SubtractiveHelix** tool modifies a solid by sweeping a selected sketch or 2D object along a helix path cutting away the material. @@ -122,4 +124,7 @@ If checked, the helix will be shown in the view, and updated automatically on ev {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveHelix/it diff --git a/wiki/translations/it/PartDesign_SubtractiveLoft.md b/wiki/translations/it/PartDesign_SubtractiveLoft.md index 9f71adbf5c..1a17c816ad 100644 --- a/wiki/translations/it/PartDesign_SubtractiveLoft.md +++ b/wiki/translations/it/PartDesign_SubtractiveLoft.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveLoft/it --- - GuiCommand:/it Name:PartDesign SubtractiveLoft Name/it:Loft sottrattivo Workbenches:[MenuLocation:Part Design → Loft sottrattivo Version:0.17 SeeAlso:[[PartDesign AdditiveLoft/it|Loft additivo](PartDesign_Workbench/it___PartDesign]].md), [Sweep sottrattivo](PartDesign_SubtractivePipe/it.md)--- @@ -93,4 +94,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveLoft/it diff --git a/wiki/translations/it/PartDesign_SubtractivePipe.md b/wiki/translations/it/PartDesign_SubtractivePipe.md index f6d95ac765..26a2a66616 100644 --- a/wiki/translations/it/PartDesign_SubtractivePipe.md +++ b/wiki/translations/it/PartDesign_SubtractivePipe.md @@ -1,3 +1,4 @@ +# PartDesign SubtractivePipe/it --- - GuiCommand:/it Name:PartDesign SubtractivePipe Name/it:Sweep sottrattivo Workbenches:[MenuLocation:Part Design → Sweep sottrattivo Shortcut:None Version:0.17 SeeAlso:[[PartDesign AdditivePipe/it|Sweep additivo](PartDesign_Workbench/it___PartDesign]].md), [Loft sottrattivo](PartDesign_SubtractiveLoft/it.md)--- @@ -107,4 +108,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePipe/it diff --git a/wiki/translations/it/PartDesign_SubtractivePrism.md b/wiki/translations/it/PartDesign_SubtractivePrism.md index 999b38735c..cfe5b66a07 100644 --- a/wiki/translations/it/PartDesign_SubtractivePrism.md +++ b/wiki/translations/it/PartDesign_SubtractivePrism.md @@ -1,3 +1,4 @@ +# PartDesign SubtractivePrism/it --- - GuiCommand:/it Name:PartDesign SubtractivePrism Name/it:Prisma sottrattivo Workbenches:[MenuLocation:Part Design → Crea una primitiva sottrattiva → Prisma Version:0.17 SeeAlso:[[PartDesign CompPrimitiveSubtractive/it|Primitive sottrattive](PartDesign_Workbench/it___PartDesign]].md)--- @@ -70,4 +71,7 @@ Dopo la sua creazione il Prisma può essere modificato in due modi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePrism/it diff --git a/wiki/translations/it/PartDesign_SubtractiveSphere.md b/wiki/translations/it/PartDesign_SubtractiveSphere.md index 786505eb3b..0ddf142dab 100644 --- a/wiki/translations/it/PartDesign_SubtractiveSphere.md +++ b/wiki/translations/it/PartDesign_SubtractiveSphere.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveSphere/it --- - GuiCommand:/it Name:PartDesign SubtractiveSphere Name/it:Sfera sottrattiva Workbenches:[MenuLocation:Part Design → Crea una primitiva sottrattiva → Sfera Version:0.17 SeeAlso:[[PartDesign CompPrimitiveSubtractive/it|Primitive sottrattive](PartDesign_Workbench/it___PartDesign]].md)--- @@ -68,4 +69,7 @@ Dopo la sua creazione la sfera può essere modificata in due modi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveSphere/it diff --git a/wiki/translations/it/PartDesign_SubtractiveTorus.md b/wiki/translations/it/PartDesign_SubtractiveTorus.md index 17de431955..06b44bd00e 100644 --- a/wiki/translations/it/PartDesign_SubtractiveTorus.md +++ b/wiki/translations/it/PartDesign_SubtractiveTorus.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveTorus/it --- - GuiCommand:/it Name:PartDesign SubtractiveTorus Name/it:Toro sottrattivo Workbenches:[MenuLocation:Part Design → Crea una primitiva sottrattiva → Toro Version:0.17 SeeAlso:[[PartDesign CompPrimitiveSubtractive/it|Primitive sottrattive](PartDesign_Workbench/it___PartDesign]].md)--- @@ -70,4 +71,7 @@ Dopo la sua creazione il toro può essere modificato in due modi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveTorus/it diff --git a/wiki/translations/it/PartDesign_SubtractiveWedge.md b/wiki/translations/it/PartDesign_SubtractiveWedge.md index 21653d0c56..80c91eb4c1 100644 --- a/wiki/translations/it/PartDesign_SubtractiveWedge.md +++ b/wiki/translations/it/PartDesign_SubtractiveWedge.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveWedge/it --- - GuiCommand:/it Name:PartDesign SubtractiveWedge Name/it:Cuneo sottrattivo Workbenches:[MenuLocation:Part Design → Crea una primitiva sottrattiva → Cuneo Version:0.17 SeeAlso:[[PartDesign CompPrimitiveSubtractive/it|Primitive sottrattive](PartDesign_Workbench/it___PartDesign]].md)--- @@ -66,4 +67,7 @@ Wedges can be used to create pyramids by setting **X2 min/max** and **Z2 min/max {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveWedge/it diff --git a/wiki/translations/it/PartDesign_Thickness.md b/wiki/translations/it/PartDesign_Thickness.md index f8ac2268af..7373a66706 100644 --- a/wiki/translations/it/PartDesign_Thickness.md +++ b/wiki/translations/it/PartDesign_Thickness.md @@ -1,3 +1,4 @@ +# PartDesign Thickness/it --- - GuiCommand:/it Name:PartDesign Thickness Name/it:Spessore Workbenches:[MenuLocation:Part Design → Spessore Version:0.17 SeeAlso:[[Part_Thickness/it|Spessore di Parte](PartDesign_Workbench/it___PartDesign]].md)--- @@ -98,4 +99,7 @@ Risultato: ![](images/Brga-spessore.png ) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Thickness/it diff --git a/wiki/translations/it/PartDesign_WizardShaft.md b/wiki/translations/it/PartDesign_WizardShaft.md index 42bbae9174..b40adadaf8 100644 --- a/wiki/translations/it/PartDesign_WizardShaft.md +++ b/wiki/translations/it/PartDesign_WizardShaft.md @@ -6,6 +6,8 @@ Workbenches:[DisegnoPezzo](PartDesign_Workbench/it.md) --- +# PartDesign WizardShaft/it + ## Descrizione Questo strumento permette di creare un albero da una tabella di valori, e di analizzare forze e momenti. Si può avviare la procedura guidata dal menu Part Design **Part Design → Procedura guidata per alberi...**. @@ -61,4 +63,7 @@ Per aggiungere un nuovo segmento all\'albero, fare clic con il tasto destro nell {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign WizardShaft/it diff --git a/wiki/translations/it/PartDesign_Workbench.md b/wiki/translations/it/PartDesign_Workbench.md index 18a7b39978..2250bfa01a 100644 --- a/wiki/translations/it/PartDesign_Workbench.md +++ b/wiki/translations/it/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/it - - -L\'icona dell\'ambiente PartDesign +# L\'icona dell\'ambiente PartDesign PartDesign Workbench/it {{TOCright}} @@ -200,3 +197,6 @@ Alcune funzionalità aggiuntive che si trovano nel menu di Part Design: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/it diff --git a/wiki/translations/it/PartDesign_project.md b/wiki/translations/it/PartDesign_project.md index 871b23dd42..d3d392604d 100644 --- a/wiki/translations/it/PartDesign_project.md +++ b/wiki/translations/it/PartDesign_project.md @@ -1,7 +1,4 @@ # PartDesign project/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -266,3 +263,6 @@ Ruota uno schizzo lungo uno dei suoi assi e di un certo angolo. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign project/it diff --git a/wiki/translations/it/PartDesign_tutorial.md b/wiki/translations/it/PartDesign_tutorial.md index 719c2be513..f3c4474c59 100644 --- a/wiki/translations/it/PartDesign_tutorial.md +++ b/wiki/translations/it/PartDesign_tutorial.md @@ -1,5 +1,5 @@ # PartDesign tutorial/it - {{TutorialInfo/it +{{TutorialInfo/it |Topic= Schizzo |Level= Base |Time= 15 minuti @@ -158,3 +158,6 @@ Dopo aver completato questa attività, si dovrebbe avere il seguente risultato. In caso contrario, modificare l\'operazione di MultiTransformazione facendo doppio clic su di essa nella visualizzazione di albero. Controllare entrambe le funzioni del modello per rilevare le modifiche necessarie, come l\'asse o se la direzione deve essere invertita. A questo punto il flusso di lavoro di base per il [Modulo PartDesign](PartDesign_Workbench/it.md) è terminato. + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign tutorial/it diff --git a/wiki/translations/it/Part_API.md b/wiki/translations/it/Part_API.md index 3f22adb29f..a34a19f5e9 100644 --- a/wiki/translations/it/Part_API.md +++ b/wiki/translations/it/Part_API.md @@ -1,5 +1,5 @@ # Part API/it - **(Novembre 2018) Queste informazioni potrebbero essere incomplete e obsolete. Per l'ultima API, vedere la pagina [https://www.freecadweb.org/api Documentazione API autogenerata].** +**(Novembre 2018) Queste informazioni potrebbero essere incomplete e obsolete. Per l'ultima API, vedere la pagina [https://www.freecadweb.org/api Documentazione API autogenerata].** Il modulo Parte è il collegamento diretto tra FreeCAD e il kernel OpenCasCade. Fornisce principalmente [TopoShapes](TopoShape_API/it.md) che è il tipo principale di oggetto utilizzato da OpenCascade. Il modulo Parte contiene anche una serie di funzioni utili per creare e manipolare le TopoShapes. Esempio: ```python @@ -93,3 +93,6 @@ Part.show(mycube) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part API/it diff --git a/wiki/translations/it/Part_Attachment.md b/wiki/translations/it/Part_Attachment.md index 8324ba0165..43ab3b5015 100644 --- a/wiki/translations/it/Part_Attachment.md +++ b/wiki/translations/it/Part_Attachment.md @@ -1,2 +1,5 @@ # Part Attachment/it 1. REDIRECT [Part\_EditAttachment/it](Part_EditAttachment/it.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Attachment/it diff --git a/wiki/translations/it/Part_Boolean.md b/wiki/translations/it/Part_Boolean.md index 501b9f5d5f..13a42bf7c9 100644 --- a/wiki/translations/it/Part_Boolean.md +++ b/wiki/translations/it/Part_Boolean.md @@ -1,3 +1,4 @@ +# Part Boolean/it --- - GuiCommand:/it Name:Part_Boolean Name/it:Booleana MenuLocation:Parte → Booleana... Workbenches:[SeeAlso:[[Part Union/it|Unione ](Part_Workbench/it____Parte]].md), [ Intersezione](Part_Common/it_.md), [ Sottrazione](Part_Cut/it_.md) e [Sezione](Part_Section/it.md)--- @@ -90,5 +91,5 @@ In caso di complanarità, anche se la prima operazione booleana riesce, le succe
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Boolean/it diff --git a/wiki/translations/it/Part_BooleanFragments.md b/wiki/translations/it/Part_BooleanFragments.md index ea1f234344..e3f336c707 100644 --- a/wiki/translations/it/Part_BooleanFragments.md +++ b/wiki/translations/it/Part_BooleanFragments.md @@ -1,3 +1,4 @@ +# Part BooleanFragments/it --- - GuiCommand:/it Name:Part BooleanFragments Name/it:Frammenti booleani MenuLocation:Part → Dividi → Frammenti booleani Workbenches:[SeeAlso:[[Part_Slice/it Affetta in composto](Part_Workbench/it___Part]].md), [Part XOR](Part_XOR/it.md), [Congiungi](Part_CompJoinFeatures/it.md), [Operazione booleana](Part_Boolean/it.md)|Version:0.17.8053--- @@ -126,5 +127,5 @@ Lo strumento è stato introdotto in FreeCAD v0.17.8053. FreeCAD deve essere comp
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part BooleanFragments/it diff --git a/wiki/translations/it/Part_Box.md b/wiki/translations/it/Part_Box.md index 1bc57155e0..2fe43c94af 100644 --- a/wiki/translations/it/Part_Box.md +++ b/wiki/translations/it/Part_Box.md @@ -8,6 +8,8 @@ Version:? --- +# Part Box/it +
@@ -99,5 +101,5 @@ FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6,
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Box/it diff --git a/wiki/translations/it/Part_BoxSelection.md b/wiki/translations/it/Part_BoxSelection.md index 248d13c833..f0f8b984b7 100644 --- a/wiki/translations/it/Part_BoxSelection.md +++ b/wiki/translations/it/Part_BoxSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Box di selezione](Std_BoxSelection/it.md), [Selezione elementi](Std_BoxElementSelection/it.md), [Seleziona tutto](Std_SelectAll/it.md) --- +# Part BoxSelection/it +
@@ -46,5 +48,5 @@
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part BoxSelection/it diff --git a/wiki/translations/it/Part_Builder.md b/wiki/translations/it/Part_Builder.md index 1a0d91920a..8edf1ffd15 100644 --- a/wiki/translations/it/Part_Builder.md +++ b/wiki/translations/it/Part_Builder.md @@ -1,3 +1,4 @@ +# Part Builder/it --- - GuiCommand:/it Name:Part Builder Name/it:Crea forme Workbenches:[MenuLocation:Parte → Genera una forma... Shortcut:Nessuno SeeAlso:[[Part_CreatePrimitives/it| Crea primitive...](Part_Workbench/it___Parte]].md), [Assembla](Draft_Upgrade/it.md), [Scomponi](Draft_Downgrade/it.md)--- @@ -134,5 +135,5 @@ Nell\'ambiente [Draft](Draft_Workbench/it.md) sono disponibili gli strumenti **<
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Builder/it diff --git a/wiki/translations/it/Part_Chamfer.md b/wiki/translations/it/Part_Chamfer.md index ca4a1d6ca0..d939f53676 100644 --- a/wiki/translations/it/Part_Chamfer.md +++ b/wiki/translations/it/Part_Chamfer.md @@ -7,6 +7,8 @@ SeeAlso:[Raccorda...](Part_Fillet/it.md) --- +# Part Chamfer/it +
@@ -222,5 +224,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Chamfer/it diff --git a/wiki/translations/it/Part_CheckGeometry.md b/wiki/translations/it/Part_CheckGeometry.md index 850f72d443..d930c389f0 100644 --- a/wiki/translations/it/Part_CheckGeometry.md +++ b/wiki/translations/it/Part_CheckGeometry.md @@ -1,3 +1,4 @@ +# Part CheckGeometry/it --- - GuiCommand:/it Name:Part CheckGeometry Name/it:Controlla geometria‏‎ MenuLocation:Part → Controlla geometria Workbenches:[[Part Workbench/it Part]]|SeeAlso:--- @@ -68,5 +69,5 @@ If ticked, any errors found are also logged in the [report view](Report_view.md)
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CheckGeometry/it diff --git a/wiki/translations/it/Part_Circle.md b/wiki/translations/it/Part_Circle.md index 64b7d2b1cf..ddfcb7902c 100644 --- a/wiki/translations/it/Part_Circle.md +++ b/wiki/translations/it/Part_Circle.md @@ -1,3 +1,4 @@ +# Part Circle/it --- - GuiCommand:/it Name:Part_Circle Name/it:Cerchio MenuLocation:Parte → [Workbenches:[[Part_Workbench/it Parte](Part_CreatePrimitives/it___Crea_primitive]]_→_Cerchio.md)|SeeAlso:--- @@ -33,8 +34,5 @@ La primitiva geometrica Cerchio è disponibile dalla finestra di dialogo Crea pr - {{Parameter|Angolo 2}}: fine del bordo curvo (gradi in senso antiorario), il valore di default è 360 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Circle/it diff --git a/wiki/translations/it/Part_Common.md b/wiki/translations/it/Part_Common.md index d13711964d..8106d9874a 100644 --- a/wiki/translations/it/Part_Common.md +++ b/wiki/translations/it/Part_Common.md @@ -1,3 +1,4 @@ +# Part Common/it --- - GuiCommand:/it Name:Part_Common Name/it:Intersezione MenuLocation:Part → Intersezione Workbenches:[SeeAlso:[[Part Union/it|Unione](Part_Workbench/it___Parte]].md), [Sottrazione](Part_Cut/it.md)--- @@ -38,5 +39,5 @@ Gli oggetti in ingresso devono essere delle forme [OpenCascade](OpenCascade/it.m
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Common/it diff --git a/wiki/translations/it/Part_CompCompoundTools.md b/wiki/translations/it/Part_CompCompoundTools.md index 7536f6b326..d3290d3ba7 100644 --- a/wiki/translations/it/Part_CompCompoundTools.md +++ b/wiki/translations/it/Part_CompCompoundTools.md @@ -1,3 +1,4 @@ +# Part CompCompoundTools/it --- - GuiCommand:/it Name:Part CompCompoundTools Name/it:Strumenti composto MenuLocation:Part → Composto Workbenches:[[Part_Workbench/it Part]]|SeeAlso:--- @@ -23,5 +24,5 @@ Un insieme di vari strumenti per i composti.
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompCompoundTools/it diff --git a/wiki/translations/it/Part_CompJoinFeatures.md b/wiki/translations/it/Part_CompJoinFeatures.md index 7ba97af02b..0d88643c85 100644 --- a/wiki/translations/it/Part_CompJoinFeatures.md +++ b/wiki/translations/it/Part_CompJoinFeatures.md @@ -1,3 +1,4 @@ +# Part CompJoinFeatures/it --- - GuiCommand:/it Name:Part CompJoinFeatures Name/it:Giunzione MenuLocation:Part → Congiungi Workbenches:[SeeAlso:[[Part_JoinConnect/it|Congiungi oggetti](Part_Workbench/it___Part]].md), [Incastra oggetto](Part_JoinEmbed/it.md), [Asporta con oggetto](Part_JoinCutout/it.md), [Operazione booleana](Part_Boolean/it.md), [Spessore](Part_Thickness/it.md)--- @@ -28,5 +29,5 @@ Questo comando apre un menu a tendina della barra degli strumenti che contiene t
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompJoinFeatures/it diff --git a/wiki/translations/it/Part_CompOffsetTools.md b/wiki/translations/it/Part_CompOffsetTools.md index 61749bfba9..a4a4f09740 100644 --- a/wiki/translations/it/Part_CompOffsetTools.md +++ b/wiki/translations/it/Part_CompOffsetTools.md @@ -1,3 +1,4 @@ +# Part CompOffsetTools/it --- - GuiCommand:/it Name:Part CompOffsetTools @@ -33,5 +34,5 @@ Gli strumenti di Offset
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompOffsetTools/it diff --git a/wiki/translations/it/Part_CompSplittingTools.md b/wiki/translations/it/Part_CompSplittingTools.md index 49f1417d1c..77bd6ba4a0 100644 --- a/wiki/translations/it/Part_CompSplittingTools.md +++ b/wiki/translations/it/Part_CompSplittingTools.md @@ -1,3 +1,4 @@ +# Part CompSplittingTools/it --- - GuiCommand:/it Name:Part CompSplittingTools Name/it:Dividi MenuLocation:Part → Dividi |Workbenches:[[Part_Workbench/it Part]]|SeeAlso:--- @@ -30,5 +31,5 @@ Una raccolta di strumenti di suddivisione.
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompSplittingTools/it diff --git a/wiki/translations/it/Part_Compound.md b/wiki/translations/it/Part_Compound.md index da2e75b387..43af67033f 100644 --- a/wiki/translations/it/Part_Compound.md +++ b/wiki/translations/it/Part_Compound.md @@ -1,3 +1,4 @@ +# Part Compound/it --- - GuiCommand:/it Name:Part Compound‏‎ Name/it:Crea un composto‏‎ MenuLocation:Parte → Crea un composto Workbenches:[Version:0.14 SeeAlso:[[Part Union/it|Unione](Part_Workbench/it___Part]].md), [Filtra composto](Part_CompoundFilter/it.md), [Esplodi composto](Part_ExplodeCompound/it.md)--- @@ -35,5 +36,5 @@ Per attivare questo controllo, andare in **Strumenti → Modifica parametri →
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Compound/it diff --git a/wiki/translations/it/Part_CompoundFilter.md b/wiki/translations/it/Part_CompoundFilter.md index 469b079be0..305d8e1c64 100644 --- a/wiki/translations/it/Part_CompoundFilter.md +++ b/wiki/translations/it/Part_CompoundFilter.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Part CompoundFilter/it +
@@ -82,8 +84,5 @@ Se c\'è un solo figlio nel risultato, l\'output è il figlio. Se è presente pi - **items**: Elenco o intervallo di elementi da selezionare se Filter Type è \"specific items\". - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompoundFilter/it diff --git a/wiki/translations/it/Part_Cone.md b/wiki/translations/it/Part_Cone.md index 8d5a682c85..cf04e4832e 100644 --- a/wiki/translations/it/Part_Cone.md +++ b/wiki/translations/it/Part_Cone.md @@ -1,3 +1,4 @@ +# Part Cone/it --- - GuiCommand:/it Name:Part Cone Name/it:Cono MenuLocation:Parte → Primitive → Cono Workbenches:[SeeAlso:[[Part_CreatePrimitives/it|Crea primitive](Part_Workbench/it___Parte]].md)--- @@ -77,5 +78,5 @@ The cone properties can later be edited, either in the [Property editor](Propert
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cone/it diff --git a/wiki/translations/it/Part_ConvertToSolid.md b/wiki/translations/it/Part_ConvertToSolid.md index f2f0584889..5606224b42 100644 --- a/wiki/translations/it/Part_ConvertToSolid.md +++ b/wiki/translations/it/Part_ConvertToSolid.md @@ -1,2 +1,5 @@ # Part ConvertToSolid/it 1. REDIRECT [Part MakeSolid/it](Part_MakeSolid/it.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ConvertToSolid/it diff --git a/wiki/translations/it/Part_CreatePrimitives.md b/wiki/translations/it/Part_CreatePrimitives.md index d29da86a71..0c33be1791 100644 --- a/wiki/translations/it/Part_CreatePrimitives.md +++ b/wiki/translations/it/Part_CreatePrimitives.md @@ -1,2 +1,5 @@ # Part CreatePrimitives/it 1. REDIRECT [Part\_Primitives/it](Part_Primitives/it.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CreatePrimitives/it diff --git a/wiki/translations/it/Part_CrossSections.md b/wiki/translations/it/Part_CrossSections.md index cdd80cf4f1..ac2c36589e 100644 --- a/wiki/translations/it/Part_CrossSections.md +++ b/wiki/translations/it/Part_CrossSections.md @@ -8,6 +8,8 @@ SeeAlso:[Seziona](Part_Section/it.md) --- +# Part CrossSections/it + @@ -48,5 +50,5 @@ L\'utilità **Sezioni\...** crea una o più sezioni trasversali attraverso la fo - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CrossSections/it diff --git a/wiki/translations/it/Part_Cut.md b/wiki/translations/it/Part_Cut.md index c1d2abba1e..096421cbaf 100644 --- a/wiki/translations/it/Part_Cut.md +++ b/wiki/translations/it/Part_Cut.md @@ -1,3 +1,4 @@ +# Part Cut/it --- - GuiCommand:/it Name:Part_Cut Name/it:Sottrai MenuLocation:Part → Booleana → Sottrai Workbenches:[SeeAlso:[[Part Union/it|Unione](Part_Workbench/it___Parte]].md), [Intersezione](Part_Common/it.md), [Booleane](Part_Boolean/it.md)--- @@ -42,5 +43,5 @@ Gli oggetti in ingresso devono essere delle forme [OpenCascade](OpenCascade/it.m - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cut/it diff --git a/wiki/translations/it/Part_Cylinder.md b/wiki/translations/it/Part_Cylinder.md index c911829121..d4c03089f1 100644 --- a/wiki/translations/it/Part_Cylinder.md +++ b/wiki/translations/it/Part_Cylinder.md @@ -1,3 +1,4 @@ +# Part Cylinder/it --- - GuiCommand:/it Name:Part Cylinder Name/it:Cilindro MenuLocation:Parte → Primitive → Cilindro Workbenches:[SeeAlso:[[Part_CreatePrimitives/it|Crea primitive](Part_Workbench/it___Parte]].md)--- @@ -71,5 +72,5 @@ Le proprietà possono essere successivamente modificate nella scheda dati del ci - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cylinder/it diff --git a/wiki/translations/it/Part_Defeaturing.md b/wiki/translations/it/Part_Defeaturing.md index 582badab55..9f787e85d8 100644 --- a/wiki/translations/it/Part_Defeaturing.md +++ b/wiki/translations/it/Part_Defeaturing.md @@ -1,3 +1,4 @@ +# Part Defeaturing/it --- - GuiCommand:/it Name:Part Defeaturing Name/it:Elimina funzione MenuLocation:Part → Elimina funzione Workbenches:[[Part_Workbench/it Part]]|Version:0.18--- @@ -65,5 +66,5 @@ Per essere disponibile, questo strumento richiede che FreeCAD sia basato su Open - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Defeaturing/it diff --git a/wiki/translations/it/Part_EditAttachment.md b/wiki/translations/it/Part_EditAttachment.md index 7c40de4c1a..2577bc1c45 100644 --- a/wiki/translations/it/Part_EditAttachment.md +++ b/wiki/translations/it/Part_EditAttachment.md @@ -8,6 +8,8 @@ SeeAlso:[Posizionamento](Placement/it.md), [Tutorial di base sugli allegati](Basic_Attachment_Tutorial/it.md), [Part Parte2DOggetto](Part_Part2DObject/it.md) --- +# Part EditAttachment/it + @@ -313,4 +315,7 @@ Allegato Spostamento viene utilizzato per applicare uno spostamento lineare o ro {{Part_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part EditAttachment/it diff --git a/wiki/translations/it/Part_ElementCopy.md b/wiki/translations/it/Part_ElementCopy.md index a862df01a9..1295e3e04d 100644 --- a/wiki/translations/it/Part_ElementCopy.md +++ b/wiki/translations/it/Part_ElementCopy.md @@ -8,6 +8,8 @@ SeeAlso:[Copia semplice](Part_SimpleCopy/it.md), [Copia modificata](Part_TransformedCopy/it.md), [Affina forma](Part_RefineShape/it.md) --- +# Part ElementCopy/it + @@ -50,8 +52,5 @@ La copia ha una semplice proprietà vista come qualsiasi altra [Part Feature](Pa - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ElementCopy/it diff --git a/wiki/translations/it/Part_Ellipse.md b/wiki/translations/it/Part_Ellipse.md index 98021b15e0..f3e903c253 100644 --- a/wiki/translations/it/Part_Ellipse.md +++ b/wiki/translations/it/Part_Ellipse.md @@ -1,3 +1,4 @@ +# Part Ellipse/it --- - GuiCommand:/it Name:Part_Ellipse Name/it:Ellisse MenuLocation:Parte → [Workbenches:[[Part_Workbench/it Parte](Part_CreatePrimitives/it___Crea_primitive]]_→_Ellisse.md), [OpenSCAD](OpenSCAD_Workbench/it.md)|SeeAlso:[Crea Primitive](Part_CreatePrimitives/it.md)--- @@ -25,8 +26,5 @@ Al dialogo Create Primitives si accede tramite l\'icona [Crea primitive](Part_Cr - **Angle 1:** inizio del bordo dell\'ellisse o bordo curvo ellittico, (gradi in senso antiorario), il valore di default è 0 - **Angle 2:** fine del bordo dell\'ellisse o bordo curvo ellittico, (gradi in senso antiorario), il valore di default è 360 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipse/it diff --git a/wiki/translations/it/Part_Ellipsoid.md b/wiki/translations/it/Part_Ellipsoid.md index 213a44832c..ce0eeb3e07 100644 --- a/wiki/translations/it/Part_Ellipsoid.md +++ b/wiki/translations/it/Part_Ellipsoid.md @@ -1,3 +1,4 @@ +# Part Ellipsoid/it --- - GuiCommand:/it Name:Part Ellipsoid Name/it:Ellissoide MenuLocation:Parte → [Workbenches:[[Part_Workbench/it Parte](Part_CreatePrimitives/it___Crea_primitive]]_→_Ellissoide.md), [OpenSCAD](OpenSCAD_Workbench/it.md)|SeeAlso:[Crea Primitive](Part_CreatePrimitives/it.md)--- @@ -45,8 +46,5 @@ La primitiva geometrica Ellissoide è disponibile dalla finestra di dialogo Crea ![](images/Part_Ellipsoid_screenshot.jpg ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipsoid/it diff --git a/wiki/translations/it/Part_ExplodeCompound.md b/wiki/translations/it/Part_ExplodeCompound.md index 6bfbcd42b8..e3436a2775 100644 --- a/wiki/translations/it/Part_ExplodeCompound.md +++ b/wiki/translations/it/Part_ExplodeCompound.md @@ -7,6 +7,8 @@ SeeAlso:[Crea composto](Part_Compound/it.md), [Draft Declassa](Draft_Downgrade/it.md) --- +# Part ExplodeCompound/it + @@ -54,5 +56,5 @@ Lo strumento esplode anche forme non composte nei loro costituenti di livello in - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ExplodeCompound/it diff --git a/wiki/translations/it/Part_Export.md b/wiki/translations/it/Part_Export.md index c5c914e8b7..160f2eb215 100644 --- a/wiki/translations/it/Part_Export.md +++ b/wiki/translations/it/Part_Export.md @@ -1,3 +1,4 @@ +# Part Export/it --- - GuiCommand:/it Name:Part_Export Name/it:Esporta CAD Empty:1 MenuLocation:Part → Esporta CAD... Workbenches:[SeeAlso:[[Part_Import/it|Importa CAD](Part_Workbench/it___Part]].md), [Esporta](Std_Export/it.md), [Importazione e Esportazione](Import_Export/it.md)--- @@ -30,11 +31,5 @@ - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Export/it diff --git a/wiki/translations/it/Part_Extrude.md b/wiki/translations/it/Part_Extrude.md index 14a4037540..4e20aac7e9 100644 --- a/wiki/translations/it/Part_Extrude.md +++ b/wiki/translations/it/Part_Extrude.md @@ -1,3 +1,4 @@ +# Part Extrude/it --- - GuiCommand:/it Name:Part_Extrude Name/it:Estrusione MenuLocation:Parte → Estrudi... Workbenches:[SeeAlso:[[Draft Trimex/it|Tronca o estendi](Part_Workbench/it___Parte]].md)--- @@ -165,5 +166,5 @@ L\'estrusione di Part può estrudere qualsiasi oggetto che abbia una Part Geomet - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Extrude/it diff --git a/wiki/translations/it/Part_FaceColors.md b/wiki/translations/it/Part_FaceColors.md index 3149e837b0..c8200b2083 100644 --- a/wiki/translations/it/Part_FaceColors.md +++ b/wiki/translations/it/Part_FaceColors.md @@ -8,6 +8,8 @@ SeeAlso:[Aspetto](Std_SetAppearance/it.md) --- +# Part FaceColors/it + @@ -58,3 +60,6 @@ Per ripristinare il colore di tutte le facce [Category:User Documentation](Category:User_Documentation.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part FaceColors/it diff --git a/wiki/translations/it/Part_Feature.md b/wiki/translations/it/Part_Feature.md index a21b347047..8361a53107 100644 --- a/wiki/translations/it/Part_Feature.md +++ b/wiki/translations/it/Part_Feature.md @@ -1,6 +1,4 @@ # Part Feature/it - - ## Introduzione @@ -279,4 +277,7 @@ If desired, the `Label` attribute can be changed to a more meaningful text. - By default the `Label` is unique, just like the `Name`. However, this behavior can be changed in the [preferences editor](Preferences_Editor.md), **Edit → Preferences → General → Document → Allow duplicate object labels in one document**. This means that in general the `Label` may be repeated in the same document; when testing for a specific element the user should rely on the `Name` rather than on the `Label`. - {{Document objects navi}} + {{Document objects navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Feature/it diff --git a/wiki/translations/it/Part_Fillet.md b/wiki/translations/it/Part_Fillet.md index a3ec6dd81f..c829cd832b 100644 --- a/wiki/translations/it/Part_Fillet.md +++ b/wiki/translations/it/Part_Fillet.md @@ -1,3 +1,4 @@ +# Part Fillet/it --- - GuiCommand:/it Name:Part_Fillet Name/it:Raccorda MenuLocation:Parte → Raccorda... Workbenches:[SeeAlso:[[Part Chamfer/it|Smussa](Part_Workbench/it___Parte]].md)--- @@ -69,5 +70,5 @@ Notare inoltre che la funzione Raccordo è soggetta al problema della [denominaz - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fillet/it diff --git a/wiki/translations/it/Part_Fuse.md b/wiki/translations/it/Part_Fuse.md index 34cfe1771b..9b722949e1 100644 --- a/wiki/translations/it/Part_Fuse.md +++ b/wiki/translations/it/Part_Fuse.md @@ -8,6 +8,8 @@ SeeAlso:[Sottrazione](Part_Cut/it.md), [Intersezione](Part_Common/it.md), [Operazione booleana](Part_Boolean.md) --- +# Part Fuse/it + @@ -58,5 +60,5 @@ oppure per ottenere subito una forma pulita e non dover ricorrere a questo coman - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fuse/it diff --git a/wiki/translations/it/Part_Helix.md b/wiki/translations/it/Part_Helix.md index 12c44973ae..5b3c0c5831 100644 --- a/wiki/translations/it/Part_Helix.md +++ b/wiki/translations/it/Part_Helix.md @@ -1,3 +1,4 @@ +# Part Helix/it --- - GuiCommand:/it Name:Part_Helix Name/it:Elica MenuLocation:Parte → [Workbenches:[[Part_Workbench/it Parte](Part_CreatePrimitives/it___Crea_primitive]]_→_Elica.md), [OpenSCAD](OpenSCAD_Workbench/it.md)|SeeAlso:[Crea Primitive](Part_CreatePrimitives/it.md)--- @@ -71,8 +72,5 @@ Dopo aver creato l\'elica, è possibile modificare i suoi parametri. | | | +----------------------------------------------------------+-----------------------------------------------------------------------------------+ - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Helix/it diff --git a/wiki/translations/it/Part_Import.md b/wiki/translations/it/Part_Import.md index f8e7685c7d..188ea63b6b 100644 --- a/wiki/translations/it/Part_Import.md +++ b/wiki/translations/it/Part_Import.md @@ -1,3 +1,4 @@ +# Part Import/it --- - GuiCommand:/it Name:Part Import‏‎ Name/it:Importa CAD MenuLocation:Part → Importa CAD... Workbenches:[SeeAlso:[[Part_Export/it|Esporta CAD](Part_Workbench/it___Part]].md), [Importa](Std_Import/it.md), [Importazione e Esportazione](Import_Export/it.md)--- @@ -35,5 +36,5 @@ Lo strumento [Impor - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Import/it diff --git a/wiki/translations/it/Part_JoinConnect.md b/wiki/translations/it/Part_JoinConnect.md index e696390422..04505d270d 100644 --- a/wiki/translations/it/Part_JoinConnect.md +++ b/wiki/translations/it/Part_JoinConnect.md @@ -7,6 +7,8 @@ SeeAlso:[Incastra](Part_JoinEmbed/it.md), [Asporta](Part_JoinCutout/it.md), [Operazioni booleane](Part_Boolean/it.md), [Spessore](Part_Thickness/it.md) --- +# Part JoinConnect/it + @@ -111,5 +113,5 @@ j.Objects = FreeCADGui.Selection.getSelection() - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinConnect/it diff --git a/wiki/translations/it/Part_JoinCutout.md b/wiki/translations/it/Part_JoinCutout.md index 3a5aad1672..2feca4cd3e 100644 --- a/wiki/translations/it/Part_JoinCutout.md +++ b/wiki/translations/it/Part_JoinCutout.md @@ -1,3 +1,4 @@ +# Part JoinCutout/it --- - GuiCommand:/it Name:Part JoinCutout Name/it:Asportazione MenuLocation:Part → Congiungi → Asporta oggetto Workbenches:[Version:0.16.5069 SeeAlso:[[Part_JoinConnect/it|Congiunzione](Part_Workbench/it___Part]].md), [Incastro](Part_JoinEmbed/it.md), [Operazioni booleane](Part_Boolean/it.md), [Spessore](Part_Thickness/it.md)--- @@ -130,5 +131,5 @@ Lo strumento è implementato in Python, vedere {{FileName|/Mod/Part/JoinFeatures - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinCutout/it diff --git a/wiki/translations/it/Part_JoinEmbed.md b/wiki/translations/it/Part_JoinEmbed.md index 2c7110e05f..96d7a8f6a6 100644 --- a/wiki/translations/it/Part_JoinEmbed.md +++ b/wiki/translations/it/Part_JoinEmbed.md @@ -7,6 +7,8 @@ SeeAlso:[Congiunzione](Part_JoinConnect/it.md), [Asportazione](Part_JoinCutout/it.md), [Operazione booleana](Part_Boolean/it.md), [Spessore](Part_Thickness/it.md) --- +# Part JoinEmbed/it + @@ -139,5 +141,5 @@ Lo strumento è implementato in Python, vedere {{FileName|/Mod/Part/JoinFeatures - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinEmbed/it diff --git a/wiki/translations/it/Part_Line.md b/wiki/translations/it/Part_Line.md index ca487c4e80..56d9b8ec00 100644 --- a/wiki/translations/it/Part_Line.md +++ b/wiki/translations/it/Part_Line.md @@ -1,3 +1,4 @@ +# Part Line/it --- - GuiCommand:/it Name:Part_Line Name/it:Linea MenuLocation:Parte → [Workbenches:[[Part_Workbench/it Parte](Part_CreatePrimitives/it___Crea_primitive]]_→_Linea.md), [OpenSCAD](OpenSCAD_Workbench/it.md)|SeeAlso:[Crea primitive](Part_CreatePrimitives/it.md)--- @@ -89,8 +90,5 @@ Utilizzare il menu {{KEY/it| [Part](Part_Workbench.md) > Part Line/it diff --git a/wiki/translations/it/Part_Loft.md b/wiki/translations/it/Part_Loft.md index 28e72f9c64..21d38e10b1 100644 --- a/wiki/translations/it/Part_Loft.md +++ b/wiki/translations/it/Part_Loft.md @@ -1,3 +1,4 @@ +# Part Loft/it --- - GuiCommand:/it Name:Part Loft Name/it:Loft MenuLocation:Part → Loft... |Workbenches:[Version:0.13 SeeAlso:[[Part Sweep/it|Sweep](Part_Workbench/it___Part]].md)--- @@ -192,5 +193,5 @@ La sequenza delle sezioni dipende dalla sequenza di selezione nell\'elenco. Se s - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Loft/it diff --git a/wiki/translations/it/Part_Loft_Technical_Details.md b/wiki/translations/it/Part_Loft_Technical_Details.md index 05e0f5c283..d493fad0ef 100644 --- a/wiki/translations/it/Part_Loft_Technical_Details.md +++ b/wiki/translations/it/Part_Loft_Technical_Details.md @@ -1,5 +1,5 @@ # Part Loft Technical Details/it - Questa pagina spiega nei dettagli come viene creata una superficie con [Part Loft](Part_Loft/it.md). Questo vale anche per una superficie [Part Sweep](Part_Sweep/it.md) prodotta lungo un percorso rettilineo, anche se ci sono alcune differenze. +Questa pagina spiega nei dettagli come viene creata una superficie con [Part Loft](Part_Loft/it.md). Questo vale anche per una superficie [Part Sweep](Part_Sweep/it.md) prodotta lungo un percorso rettilineo, anche se ci sono alcune differenze. Le informazioni fornite si riferiscono a una specifica implementazione e potrebbero cambiare. Queste sono adatte per FreeCAD 0.15.4119 e OCC versione: 6.7.0. @@ -73,3 +73,6 @@ Notare che Loft ha una proprietà \"Ruled\". Se è impostata su true, le superfi [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Loft Technical Details/it diff --git a/wiki/translations/it/Part_MakeCompound.md b/wiki/translations/it/Part_MakeCompound.md index 5b6ec1b180..ecfc1b51bc 100644 --- a/wiki/translations/it/Part_MakeCompound.md +++ b/wiki/translations/it/Part_MakeCompound.md @@ -1,2 +1,5 @@ # Part MakeCompound/it 1. REDIRECT [Part Compound/it](Part_Compound/it.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeCompound/it diff --git a/wiki/translations/it/Part_MakeFace.md b/wiki/translations/it/Part_MakeFace.md index 3d0dd99b61..8e142662c7 100644 --- a/wiki/translations/it/Part_MakeFace.md +++ b/wiki/translations/it/Part_MakeFace.md @@ -7,6 +7,8 @@ SeeAlso:[Part RuledSurface](Part_RuledSurface.md) --- +# Part MakeFace/it + ## Description Part MakeFace‏‎ creates a [plane](Part_Plane.md) in a custom shape. The shape is defined by a closed sketch contour. @@ -23,8 +25,5 @@ It is possible to nest closed contours, for example to have circles inside a pol 1. Select a sketch defining at least one closed contour 2. Press the [Part MakeFace](Part_MakeFace.md) button - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeFace/it diff --git a/wiki/translations/it/Part_MakeSolid.md b/wiki/translations/it/Part_MakeSolid.md index 156255dc35..d4666131a4 100644 --- a/wiki/translations/it/Part_MakeSolid.md +++ b/wiki/translations/it/Part_MakeSolid.md @@ -1,3 +1,4 @@ +# Part MakeSolid/it --- - GuiCommand:/it Name:Part ConvertToSolid Name/it:Converti in solido Empty:1‏‎ MenuLocation:Parte → Converti in solido Workbenches:[[Part Workbench/it Parte]]|SeeAlso:--- @@ -40,5 +41,5 @@ Si raccomanda di usare ** Part** → ** Affina forma** prima di convertirla in u - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeSolid/it diff --git a/wiki/translations/it/Part_Measure_Angular.md b/wiki/translations/it/Part_Measure_Angular.md index 88a07a2039..54d635a11d 100644 --- a/wiki/translations/it/Part_Measure_Angular.md +++ b/wiki/translations/it/Part_Measure_Angular.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/it.md) --- +# Part Measure Angular/it + @@ -43,8 +45,5 @@ Questo strumento misura l\'angolo tra due bordi diritti, due facce planari o un - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Angular/it diff --git a/wiki/translations/it/Part_Measure_Clear_All.md b/wiki/translations/it/Part_Measure_Clear_All.md index eb589f7665..ab36ad9194 100644 --- a/wiki/translations/it/Part_Measure_Clear_All.md +++ b/wiki/translations/it/Part_Measure_Clear_All.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/it.md) --- +# Part Measure Clear All/it + @@ -32,8 +34,5 @@ Premere il pulsante ** [Part](Part_Workbench.md) > Part Measure Menu/it diff --git a/wiki/translations/it/Part_Measure_Refresh.md b/wiki/translations/it/Part_Measure_Refresh.md index d884ad7130..bd51e7d951 100644 --- a/wiki/translations/it/Part_Measure_Refresh.md +++ b/wiki/translations/it/Part_Measure_Refresh.md @@ -7,6 +7,8 @@ SeeAlso:[Misura lineare](Part_Measure_Linear/it.md), [Misura angolare](Part_Measure_Angular/it.md) --- +# Part Measure Refresh/it + @@ -40,5 +42,5 @@ - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Refresh/it diff --git a/wiki/translations/it/Part_Measure_Toggle_3d.md b/wiki/translations/it/Part_Measure_Toggle_3d.md index 76f80f9026..d2658e0191 100644 --- a/wiki/translations/it/Part_Measure_Toggle_3d.md +++ b/wiki/translations/it/Part_Measure_Toggle_3d.md @@ -7,6 +7,8 @@ SeeAlso:[Attiva o Disattiva le misure Delta](Part_Measure_Toggle_Delta/it.md) --- +# Part Measure Toggle 3d/it + @@ -43,5 +45,5 @@ Attiva o Disattiva le misure 3D in corso. - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle 3d/it diff --git a/wiki/translations/it/Part_Measure_Toggle_All.md b/wiki/translations/it/Part_Measure_Toggle_All.md index 0f0d28bc32..3e99e7e3f8 100644 --- a/wiki/translations/it/Part_Measure_Toggle_All.md +++ b/wiki/translations/it/Part_Measure_Toggle_All.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/it.md) --- +# Part Measure Toggle All/it + @@ -40,8 +42,5 @@ Questo strumento attiva o disattiva la visibilità di tutte le misurazioni nella - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle All/it diff --git a/wiki/translations/it/Part_Measure_Toggle_Delta.md b/wiki/translations/it/Part_Measure_Toggle_Delta.md index c51a592df6..e9f7fc14b6 100644 --- a/wiki/translations/it/Part_Measure_Toggle_Delta.md +++ b/wiki/translations/it/Part_Measure_Toggle_Delta.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/it.md) --- +# Part Measure Toggle Delta/it + @@ -42,5 +44,5 @@ Mostra o nasconde tutte le misure Delta in corso. - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle Delta/it diff --git a/wiki/translations/it/Part_Mirror.md b/wiki/translations/it/Part_Mirror.md index 4ac1c0ff0b..c0a5c66a96 100644 --- a/wiki/translations/it/Part_Mirror.md +++ b/wiki/translations/it/Part_Mirror.md @@ -1,3 +1,4 @@ +# Part Mirror/it --- - GuiCommand:/it Name:Part_Mirror Name/it:Specchia MenuLocation:Parte → Specchia... Workbenches:[[Part_Workbench/it Parte]]|SeeAlso:--- @@ -57,5 +58,5 @@ Le caselle **Punto base** possono essere utilizzate per spostare il piano di spe - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Mirror/it diff --git a/wiki/translations/it/Part_Module.md b/wiki/translations/it/Part_Module.md index d3ce9cc37a..eb74bd6ddb 100644 --- a/wiki/translations/it/Part_Module.md +++ b/wiki/translations/it/Part_Module.md @@ -1,7 +1,4 @@ # Part Module/it - - -
@@ -219,3 +216,6 @@ Vedere [Script di Part](Part_scripting/it.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/it diff --git a/wiki/translations/it/Part_Offset.md b/wiki/translations/it/Part_Offset.md index f043b00492..88ad45d172 100644 --- a/wiki/translations/it/Part_Offset.md +++ b/wiki/translations/it/Part_Offset.md @@ -1,3 +1,4 @@ +# Part Offset/it --- - GuiCommand:/it Name:Part Offset Name/it:Offset 3D MenuLocation:Part → Offset 3D... |Workbenches:[SeeAlso:[[Part_Thickness/it|Spessore](Part_Workbench/it___Part]].md), [Offset 2D](Part_Offset2D/it.md)--- @@ -70,5 +71,5 @@ offset \"riempito\" con 2 cilindri che creano tagli booleani. Il cilindro A pass
- - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset/it diff --git a/wiki/translations/it/Part_Offset2D.md b/wiki/translations/it/Part_Offset2D.md index 005130a8ca..17b241b969 100644 --- a/wiki/translations/it/Part_Offset2D.md +++ b/wiki/translations/it/Part_Offset2D.md @@ -8,6 +8,8 @@ SeeAlso:[Part Offset 3D](Part_Offset/it.md), [Part Spessore](Part_Thickness/it.md), [Offset di Draft](Draft_Offset/it.md) --- +# Part Offset2D/it + @@ -118,8 +120,5 @@ Part.show(enlarged_circle) # structure follows that of source shape. }} - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset2D/it diff --git a/wiki/translations/it/Part_Part2DObject.md b/wiki/translations/it/Part_Part2DObject.md index 057751edfd..fbcfd5ff85 100644 --- a/wiki/translations/it/Part_Part2DObject.md +++ b/wiki/translations/it/Part_Part2DObject.md @@ -1,6 +1,4 @@ # Part Part2DObject/it - - ## Introduzione @@ -136,5 +134,5 @@ obj.Label = "Custom label" Ad esempio, la maggior parte degli strumenti di [Draft](Draft_Workbench/it.md), come [Linea](Draft_Line/it.md), [Rettangolo](Draft_Rectangle/it.md), [Poligono](Draft_Polygon/it.md), ecc., sono oggetti `Part::Part2DObjectPython` con un\'icona personalizzata e proprietà aggiuntive. - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Part2DObject/it diff --git a/wiki/translations/it/Part_Plane.md b/wiki/translations/it/Part_Plane.md index 9064f95b17..f2c6b2ff97 100644 --- a/wiki/translations/it/Part_Plane.md +++ b/wiki/translations/it/Part_Plane.md @@ -1,3 +1,4 @@ +# Part Plane/it --- - GuiCommand:/it Name:Part CreatePrimitives Name/it:Primitive Workbenches:[MenuLocation:Part → [[Part_CreatePrimitives/it|Crea primitive...](Part_Workbench/it___Part]].md) → Piano| Shortcut=Nessuno SeeAlso:[ Cono](Part_Cone/it_.md),[Cilindro](Part_Cylinder/it_.md),[ Sfera](Part_Sphere/it_.md),[ Toro](Part_Torus/it_.md), [ Crea primitive...](Part_CreatePrimitives/it_.md)--- @@ -69,8 +70,5 @@ Le proprietà possono essere modificate successivamente in **Vista combinata → You have the standard properties view. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Plane/it diff --git a/wiki/translations/it/Part_Point.md b/wiki/translations/it/Part_Point.md index 34bb571cf4..e428bdb092 100644 --- a/wiki/translations/it/Part_Point.md +++ b/wiki/translations/it/Part_Point.md @@ -1,3 +1,4 @@ +# Part Point/it --- - GuiCommand:/it Name:Part_Point Name/it:Punto MenuLocation:Parte → [Workbenches:[[Part_Workbench/it Parte](Part_CreatePrimitives/it___Crea_primitive]]_→_Punto.md)|SeeAlso:[Crea primitive](Part_CreatePrimitives/it.md)--- @@ -98,4 +99,7 @@ Una primitiva geometrica Punto (vertice). {{Part_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Point/it diff --git a/wiki/translations/it/Part_PointsFromMesh.md b/wiki/translations/it/Part_PointsFromMesh.md index fe27e9c9f0..599c86ecda 100644 --- a/wiki/translations/it/Part_PointsFromMesh.md +++ b/wiki/translations/it/Part_PointsFromMesh.md @@ -8,6 +8,8 @@ SeeAlso:[Crea forma da mesh](Part_ShapeFromMesh/it.md), [Converti in solido](Part_ConvertToSolid/it.md), [Affina forma](Part_RefineShape/it.md) --- +# Part PointsFromMesh/it + @@ -42,5 +44,5 @@ Non è possibile fare alcuna analisi o validazione dell\'oggetto mesh. L\'analis - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part PointsFromMesh/it diff --git a/wiki/translations/it/Part_Primitives.md b/wiki/translations/it/Part_Primitives.md index dac41f1737..b8068cac27 100644 --- a/wiki/translations/it/Part_Primitives.md +++ b/wiki/translations/it/Part_Primitives.md @@ -1,3 +1,4 @@ +# Part Primitives/it --- - GuiCommand:/it Name:Part_Primitives Name/it:Crea primitive Workbenches:[MenuLocation:Parte → Crea primitive... Shortcut:Nessuno SeeAlso:[[Part_Builder/it|Crea forma](Part_Workbench/it___Parte]].md)--- @@ -109,5 +110,5 @@ freecad $INSTALL_DIR/Mod/Part/parttests/part_test_objects.py - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Primitives/it diff --git a/wiki/translations/it/Part_Prism.md b/wiki/translations/it/Part_Prism.md index 05fb2027ed..f695c20576 100644 --- a/wiki/translations/it/Part_Prism.md +++ b/wiki/translations/it/Part_Prism.md @@ -1,3 +1,4 @@ +# Part Prism/it --- - GuiCommand:/it Name:Part Prism Name/it:Prisma MenuLocation:Parte → [Workbenches:[[Part_Workbench/it Parte](Part_CreatePrimitives/it___Crea_primitive]]_→_Prism.md)|Version:0.14 SeeAlso:[Crea primitive](Part_CreatePrimitives/it.md), [Box/Cubo](Part_Box/it.md)--- @@ -41,10 +42,7 @@ The prism properties can later be edited, either in the [Property editor](Proper - **First Angle**: Angle in first direction. (v0.19) -- **Second Angle**: Angle in second direction. (v0.19) +- **Second Angle**: Angle in second direction. (v0.19) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Prism/it diff --git a/wiki/translations/it/Part_ProjectionOnSurface.md b/wiki/translations/it/Part_ProjectionOnSurface.md index 32d0a29905..a3ef4e33f0 100644 --- a/wiki/translations/it/Part_ProjectionOnSurface.md +++ b/wiki/translations/it/Part_ProjectionOnSurface.md @@ -1,3 +1,4 @@ +# Part ProjectionOnSurface/it --- - GuiCommand:/it Name:Part ProjectionOnSurface Name/it:Proiezione su superficie MenuLocation:Part → Crea proiezione su superficie... |Workbenches:[[Part_Workbench/it Part]]|SeeAlso: Version:0.19--- @@ -126,5 +127,5 @@ Se questo accade: - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ProjectionOnSurface/it diff --git a/wiki/translations/it/Part_RefineShape.md b/wiki/translations/it/Part_RefineShape.md index efb9f72616..c65d96b360 100644 --- a/wiki/translations/it/Part_RefineShape.md +++ b/wiki/translations/it/Part_RefineShape.md @@ -1,3 +1,4 @@ +# Part RefineShape/it --- - GuiCommand:/it Name:Part_RefineShape Name/it:Affina forma MenuLocation:Parte → Crea una copia → Affina forma Workbenches:[SeeAlso:[[Part_SimpleCopy/it|Copia semplice](Part_Workbench/it___Parte]].md), [Copia trasformata](Part_TransformedCopy/it.md), [Copia elemento](Part_ElementCopy/it.md), [Affina forma di OpenSCAD](OpenSCAD_RefineShapeFeature/it.md)--- @@ -106,5 +107,5 @@ shape.removeSplitter() - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RefineShape/it diff --git a/wiki/translations/it/Part_RegularPolygon.md b/wiki/translations/it/Part_RegularPolygon.md index a864099bf4..a9d8648b24 100644 --- a/wiki/translations/it/Part_RegularPolygon.md +++ b/wiki/translations/it/Part_RegularPolygon.md @@ -1,3 +1,4 @@ +# Part RegularPolygon/it --- - GuiCommand:/it Name:Part RegularPolygon Name/it:Poligono regolare MenuLocation:Parte → [Workbenches:[[Part_Workbench/it Parte](Part_CreatePrimitives/it___Crea_primitive]]_→_Poligono_regolare.md)|Version:0.14 SeeAlso:[Crea primitive](Part_CreatePrimitives/it.md)--- @@ -28,8 +29,5 @@ Il poligono regolare è disponibile dalla finestra di dialogo Crea primitive del - Polygon - il numero di lati del poligono - Cirumradius - la circumradius è la distanza dal centro del poligono a un vertice. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RegularPolygon/it diff --git a/wiki/translations/it/Part_ReverseShapes.md b/wiki/translations/it/Part_ReverseShapes.md index fe5902fd85..69539c8c4f 100644 --- a/wiki/translations/it/Part_ReverseShapes.md +++ b/wiki/translations/it/Part_ReverseShapes.md @@ -1,3 +1,4 @@ +# Part ReverseShapes/it --- - GuiCommand:/it Name:Part ReverseShapes Name/it:‏‎Inverti forme Empty:1‏‎ MenuLocation:Part → Inverti forme Workbenches:[[Part Workbench/it Part]]|SeeAlso:--- @@ -50,5 +51,5 @@ Per verificare questo - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ReverseShapes/it diff --git a/wiki/translations/it/Part_Revolve.md b/wiki/translations/it/Part_Revolve.md index bc7efbfc73..4b17600409 100644 --- a/wiki/translations/it/Part_Revolve.md +++ b/wiki/translations/it/Part_Revolve.md @@ -1,3 +1,4 @@ +# Part Revolve/it --- - GuiCommand:/it Name:Part_Revolve Name/it:Rivoluziona MenuLocation:Parte → Rivoluziona... Workbenches:[[Part_Workbench/it Parte]]|SeeAlso:--- @@ -62,5 +63,5 @@ Quando si seleziona un asse definito dall\'utente, i numeri definiscono la direz - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Revolve/it diff --git a/wiki/translations/it/Part_RuledSurface.md b/wiki/translations/it/Part_RuledSurface.md index eee759cae1..66f3d7ac00 100644 --- a/wiki/translations/it/Part_RuledSurface.md +++ b/wiki/translations/it/Part_RuledSurface.md @@ -1,3 +1,4 @@ +# Part RuledSurface/it --- - GuiCommand:/it Name:Part RuledSurface Name/it:Superficie rigata MenuLocation:Parte → Superficie rigata Workbenches:[[Part_Workbench/it Parte]]|SeeAlso:--- @@ -28,5 +29,5 @@ La macro [Sviluppa superfici rigate](Macro_Unroll_Ruled_Surface/it.md) permette - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RuledSurface/it diff --git a/wiki/translations/it/Part_Section.md b/wiki/translations/it/Part_Section.md index d3e95b096a..4ee9820724 100644 --- a/wiki/translations/it/Part_Section.md +++ b/wiki/translations/it/Part_Section.md @@ -1,3 +1,4 @@ +# Part Section/it --- - GuiCommand:/it Name:Part_Section Name/it:Seziona MenuLocation:Parte → Seziona Workbenches:[SeeAlso:[[Part_SectionCross/it|Sezioni](Part_Workbench/it___Parte]].md)--- @@ -49,5 +50,5 @@ Per creare delle sezioni con un piano di sezione vedere la pagina **Part** → * - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Section/it diff --git a/wiki/translations/it/Part_SectionCross.md b/wiki/translations/it/Part_SectionCross.md index 207d4c988f..ebec9210e3 100644 --- a/wiki/translations/it/Part_SectionCross.md +++ b/wiki/translations/it/Part_SectionCross.md @@ -1,2 +1,5 @@ # Part SectionCross/it 1. REDIRECT [Part\_CrossSections/it](Part_CrossSections/it.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SectionCross/it diff --git a/wiki/translations/it/Part_ShapeFromMesh.md b/wiki/translations/it/Part_ShapeFromMesh.md index eb4fb5c25c..b7fbee1b2b 100644 --- a/wiki/translations/it/Part_ShapeFromMesh.md +++ b/wiki/translations/it/Part_ShapeFromMesh.md @@ -1,3 +1,4 @@ +# Part ShapeFromMesh/it --- - GuiCommand:/it Name:Part ShapeFromMesh Name/it:‏‎Crea forma da mesh MenuLocation:Part → Crea forma da mesh... Workbenches:[SeeAlso:[[Part ConvertToSolid/it|Converti in solido](Part_Workbench/it___Part]].md), [Affina forma](Part_RefineShape/it.md), [Crea punti da mesh](Part_PointsFromMesh/it.md)--- @@ -83,5 +84,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ShapeFromMesh/it diff --git a/wiki/translations/it/Part_Shapebuilder.md b/wiki/translations/it/Part_Shapebuilder.md index 8e0a7dfed0..a1efe4488a 100644 --- a/wiki/translations/it/Part_Shapebuilder.md +++ b/wiki/translations/it/Part_Shapebuilder.md @@ -1,2 +1,5 @@ # Part Shapebuilder/it 1. REDIRECT [Part\_Builder/it](Part_Builder/it.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Shapebuilder/it diff --git a/wiki/translations/it/Part_SimpleCopy.md b/wiki/translations/it/Part_SimpleCopy.md index c5056c4a70..1fefa65f02 100644 --- a/wiki/translations/it/Part_SimpleCopy.md +++ b/wiki/translations/it/Part_SimpleCopy.md @@ -1,3 +1,4 @@ +# Part SimpleCopy/it --- - GuiCommand:/it Name:Part SimpleCopy‎‏‎ Name/it:Copia semplice MenuLocation:Part → Crea una copia → Copia semplice Workbenches:[SeeAlso:[[Draft_Clone/it Clona](Part_Workbench/it___Part]].md), [Copia](Std_Copy/it.md), [Duplica Selezione](Std_DuplicateSelection/it.md), [Copia trasformata](Part_TransformedCopy/it.md), [Copia elemento](Part_ElementCopy/it.md), [Affina forma](Part_RefineShape/it.md)|Icon:Tree_Part.svg Icon:Tree_Part.svg--- @@ -34,5 +35,5 @@ La copia ha una semplice proprietà vista come qualsiasi altra [Part Feature](Pa - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SimpleCopy/it diff --git a/wiki/translations/it/Part_Slice.md b/wiki/translations/it/Part_Slice.md index dd2ef15350..f07bd8bbf5 100644 --- a/wiki/translations/it/Part_Slice.md +++ b/wiki/translations/it/Part_Slice.md @@ -1,3 +1,4 @@ +# Part Slice/it --- - GuiCommand:/it Name:Part Slice Name/it:Affetta in composto MenuLocation:Part → Dividi → Affetta in composto Workbenches:[SeeAlso:[[Part_BooleanFragments/it|Frammenti Booleani](Part_Workbench/it___Part]].md), [Part XOR](Part_XOR/it.md), [Giunzione](Part_CompJoinFeatures/it.md), [Operazioni booleane](Part_Boolean/it.md)--- @@ -197,5 +198,5 @@ Lo strumento è implementato in Python, vedere see {{FileName|/Mod/Part/BOPTools - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Slice/it diff --git a/wiki/translations/it/Part_SliceApart.md b/wiki/translations/it/Part_SliceApart.md index ae790a5fdb..57412e450f 100644 --- a/wiki/translations/it/Part_SliceApart.md +++ b/wiki/translations/it/Part_SliceApart.md @@ -7,6 +7,8 @@ SeeAlso:[Affetta in composto](Part_Slice/it.md), [Esplodi il composto](Part_ExplodeCompound/it.md) --- +# Part SliceApart/it + @@ -77,5 +79,5 @@ Affetta in parti è stato introdotto in FreeCAD v0.18.15506. FreeCAD deve essere - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SliceApart/it diff --git a/wiki/translations/it/Part_Sphere.md b/wiki/translations/it/Part_Sphere.md index 5223c95223..34df413757 100644 --- a/wiki/translations/it/Part_Sphere.md +++ b/wiki/translations/it/Part_Sphere.md @@ -7,6 +7,8 @@ SeeAlso:[Crea Primitive...](Part_CreatePrimitives/it.md) --- +# Part Sphere/it + @@ -65,8 +67,5 @@ Poiché è abbastanza difficile spiegare il significato dei parametri di angolo1 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sphere/it diff --git a/wiki/translations/it/Part_Spiral.md b/wiki/translations/it/Part_Spiral.md index ea70f6b08e..e7d416873c 100644 --- a/wiki/translations/it/Part_Spiral.md +++ b/wiki/translations/it/Part_Spiral.md @@ -1,3 +1,4 @@ +# Part Spiral/it --- - GuiCommand:/it Name:Part Spiral Name/it:Spirale MenuLocation:Parte → [Workbenches:[[Part_Workbench/it Parte](Part_CreatePrimitives/it___Crea_primitive]]_→_Spirale.md)|Version:0.14 SeeAlso:[Crea primitive](Part_CreatePrimitives/it.md)--- @@ -22,8 +23,5 @@ Il dialogo **Crea Primitive** è accessibile tramite l\'icona [Crea Primitive](P ![](images/Spiral_y45_it.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Spiral/it diff --git a/wiki/translations/it/Part_Sweep.md b/wiki/translations/it/Part_Sweep.md index d6e85eeb2a..6d38cabcab 100644 --- a/wiki/translations/it/Part_Sweep.md +++ b/wiki/translations/it/Part_Sweep.md @@ -1,3 +1,4 @@ +# Part Sweep/it --- - GuiCommand:/it Name:Part Sweep Name/it:Sweep MenuLocation:Parte → Sweep... |Workbenches:[SeeAlso:[[Part_Loft/it|Loft](Part_Workbench/it___Parte]].md)--- @@ -145,5 +146,5 @@ Se \"Frenet\" è \"true\" l\'orientamento del profilo è calcolato basandosi sul - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sweep/it diff --git a/wiki/translations/it/Part_Thickness.md b/wiki/translations/it/Part_Thickness.md index b12288ed06..d4606c57da 100644 --- a/wiki/translations/it/Part_Thickness.md +++ b/wiki/translations/it/Part_Thickness.md @@ -1,3 +1,4 @@ +# Part Thickness/it --- - GuiCommand:/it Name:Part_Thickness Name/it:Spessore MenuLocation:Parte → Spessore... |Workbenches:[SeeAlso:[[Part_Offset/it|Offset](Part_Workbench/it___Parte]].md)--- @@ -117,5 +118,5 @@ Notes: - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Thickness/it diff --git a/wiki/translations/it/Part_TopoShape.md b/wiki/translations/it/Part_TopoShape.md index 68003301db..e5f3b2823e 100644 --- a/wiki/translations/it/Part_TopoShape.md +++ b/wiki/translations/it/Part_TopoShape.md @@ -1,5 +1,5 @@ # Part TopoShape/it - {{TOCright}} +{{TOCright}} ## Introduzione @@ -82,4 +82,7 @@ help(obj.Shape) ``` - {{Document objects navi}} + {{Document objects navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part TopoShape/it diff --git a/wiki/translations/it/Part_Torus.md b/wiki/translations/it/Part_Torus.md index 847a394c40..e3f960bc4b 100644 --- a/wiki/translations/it/Part_Torus.md +++ b/wiki/translations/it/Part_Torus.md @@ -1,3 +1,4 @@ +# Part Torus/it --- - GuiCommand:/it Name:Part Torus Name/it:Toro MenuLocation:Parte → Primitive → Toro Workbenches:[SeeAlso: [[Part_CreatePrimitives/it|Crea primitive](Part_Workbench/it___Parte]].md)--- @@ -79,5 +80,5 @@ nonché la serie standard di parametri di posizionamento. Le immagini sottostant - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Torus/it diff --git a/wiki/translations/it/Part_TransformedCopy.md b/wiki/translations/it/Part_TransformedCopy.md index c8d5db2af7..c35e7e2815 100644 --- a/wiki/translations/it/Part_TransformedCopy.md +++ b/wiki/translations/it/Part_TransformedCopy.md @@ -8,6 +8,8 @@ SeeAlso:[Copia semplice](Part_SimpleCopy/it.md), [Copia di un elemento](Part_ElementCopy/it.md), [Affina forma](Part_RefineShape/it.md) --- +# Part TransformedCopy/it + @@ -32,8 +34,5 @@ La copia ha una semplice proprietà **Placement** come qualsiasi altra [Part Fea La copia ha una semplice proprietà vista come qualsiasi altra [Part Feature](Part_Feature/it.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part TransformedCopy/it diff --git a/wiki/translations/it/Part_Tube.md b/wiki/translations/it/Part_Tube.md index 6d8b48dbd6..232ceba53b 100644 --- a/wiki/translations/it/Part_Tube.md +++ b/wiki/translations/it/Part_Tube.md @@ -7,6 +7,8 @@ SeeAlso:[Part CreatePrimitives](Part_CreatePrimitives.md) --- +# Part Tube/it + ## Description The Tube command inserts a tube into the active document. The tube is geometrically treated as a cut of a smaller cylinder into a larger one. By default, the command will insert a 10 mm high tube with an outer radius of 5 mm and an inner radius of 2 mm. These parameters can be modified after the object has been added. @@ -36,8 +38,5 @@ To edit the tube - **Placement:** Specifies the orientation and position of the Box in the 3D space. See [ Placement](Placement.md). The reference point is the left front lower corner of the box. - **Label:** The Label is the name given to the operation. This name can be changed at your convenience. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Tube/it diff --git a/wiki/translations/it/Part_Union.md b/wiki/translations/it/Part_Union.md index 8df2399e0c..1ad3a49d7b 100644 --- a/wiki/translations/it/Part_Union.md +++ b/wiki/translations/it/Part_Union.md @@ -1,2 +1,5 @@ # Part Union/it 1. REDIRECT [Part\_Fuse/it](Part_Fuse/it.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Union/it diff --git a/wiki/translations/it/Part_Wedge.md b/wiki/translations/it/Part_Wedge.md index 51715bab01..44b3279eec 100644 --- a/wiki/translations/it/Part_Wedge.md +++ b/wiki/translations/it/Part_Wedge.md @@ -1,3 +1,4 @@ +# Part Wedge/it --- - GuiCommand:/it Name:Part Wedge Name/it:Cuneo MenuLocation:Parte → Crea Primitive → Cuneo Workbenches:[SeeAlso:[[Part_CreatePrimitives/it|Part Crea Primitive](Part_Workbench/it___Parte]].md)--- @@ -65,8 +66,5 @@ Crea un solido parametrico a forma di cuneo. Il cuneo di default ha una base qua ![](images/Wedge_examples.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Wedge/it diff --git a/wiki/translations/it/Part_Workbench.md b/wiki/translations/it/Part_Workbench.md index 6bb2c5da0f..3f665b4b63 100644 --- a/wiki/translations/it/Part_Workbench.md +++ b/wiki/translations/it/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/it 1. REDIRECT [Part\_Module/it](Part_Module/it.md) + +--- +[documentation index](../README.md) > Part Workbench/it diff --git a/wiki/translations/it/Part_XOR.md b/wiki/translations/it/Part_XOR.md index 8f5ad4b964..60aee8b3c2 100644 --- a/wiki/translations/it/Part_XOR.md +++ b/wiki/translations/it/Part_XOR.md @@ -1,3 +1,4 @@ +# Part XOR/it --- - GuiCommand:/it Name:Part_XOR Name/it:Booleana XOR MenuLocation:Part → Dividi → Booleana XOR Workbenches:[SeeAlso:[[Part_BooleanFragments/it|Frammenti booleani](Part_Workbench/it___Part]].md), [Affetta in composto](Part_Slice/it.md), [Congiungi](Part_CompJoinFeatures.md), [Booleane di Parte](Part_Boolean/it.md)--- @@ -23,5 +24,5 @@ - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part XOR/it diff --git a/wiki/translations/it/Part_and_PartDesign.md b/wiki/translations/it/Part_and_PartDesign.md index c4da0f1788..9dd3011927 100644 --- a/wiki/translations/it/Part_and_PartDesign.md +++ b/wiki/translations/it/Part_and_PartDesign.md @@ -1,5 +1,5 @@ # Part and PartDesign/it - {{TOCright}} +{{TOCright}} ## Descrizione @@ -172,4 +172,7 @@ I banchi di lavoro Part e PartDesign possono essere usati insieme con una certa {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part and PartDesign/it diff --git a/wiki/translations/it/Part_scripting.md b/wiki/translations/it/Part_scripting.md index 53f9ec15bf..3b3a8b2e90 100644 --- a/wiki/translations/it/Part_scripting.md +++ b/wiki/translations/it/Part_scripting.md @@ -1,7 +1,4 @@ # Part scripting/it - - - {{TOCright}} ## Introduction @@ -156,3 +153,6 @@ Head to the [Topological data scripting](Topological_data_scripting.md) page if }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part scripting/it diff --git a/wiki/translations/it/Parts_Library.md b/wiki/translations/it/Parts_Library.md index 08f0cb82f4..1c04f09d4b 100644 --- a/wiki/translations/it/Parts_Library.md +++ b/wiki/translations/it/Parts_Library.md @@ -1,2 +1,5 @@ # Parts Library/it 1. REDIRECT [Parts\_Library\_Workbench/it](Parts_Library_Workbench/it.md) + +--- +[documentation index](../README.md) > Parts Library/it diff --git a/wiki/translations/it/Parts_Library_Workbench.md b/wiki/translations/it/Parts_Library_Workbench.md index 9f166ff5cc..1f6af42ecb 100644 --- a/wiki/translations/it/Parts_Library_Workbench.md +++ b/wiki/translations/it/Parts_Library_Workbench.md @@ -1,6 +1,4 @@ # Parts Library Workbench/it - - ## Introduzione @@ -57,3 +55,6 @@ The library is a simple container for FreeCAD (.fcstd) and STEP (.stp) files. Yo [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Parts Library Workbench/it diff --git a/wiki/translations/it/Path_3DPocket.md b/wiki/translations/it/Path_3DPocket.md index 62b49cf4b7..2876cd7026 100644 --- a/wiki/translations/it/Path_3DPocket.md +++ b/wiki/translations/it/Path_3DPocket.md @@ -1,2 +1,5 @@ # Path 3DPocket/it 1. REDIRECT [Path\_Pocket\_3D/it](Path_Pocket_3D/it.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path 3DPocket/it diff --git a/wiki/translations/it/Path_3DSurface.md b/wiki/translations/it/Path_3DSurface.md index 5e3ca6fcac..7534e4a737 100644 --- a/wiki/translations/it/Path_3DSurface.md +++ b/wiki/translations/it/Path_3DSurface.md @@ -1,2 +1,5 @@ # Path 3DSurface/it 1. REDIRECT [Path\_Surface/it](Path_Surface/it.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path 3DSurface/it diff --git a/wiki/translations/it/Path_Adaptive.md b/wiki/translations/it/Path_Adaptive.md index b42e004aaa..b4642275cc 100644 --- a/wiki/translations/it/Path_Adaptive.md +++ b/wiki/translations/it/Path_Adaptive.md @@ -1,3 +1,4 @@ +# Path Adaptive/it --- - GuiCommand:/it Name:Path Adaptive Name/it:Adattiva Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Adattiva Shortcut: SeeAlso:--- @@ -226,4 +227,7 @@ Note: It is suggested that you do not edit the Placement property of path operat {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Adaptive/it diff --git a/wiki/translations/it/Path_Area.md b/wiki/translations/it/Path_Area.md index 0d161ef590..eb1a6beab6 100644 --- a/wiki/translations/it/Path_Area.md +++ b/wiki/translations/it/Path_Area.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Area/it + ## Description Empty @@ -161,4 +163,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Area/it diff --git a/wiki/translations/it/Path_Area_Workplane.md b/wiki/translations/it/Path_Area_Workplane.md index b32975890b..cd97218348 100644 --- a/wiki/translations/it/Path_Area_Workplane.md +++ b/wiki/translations/it/Path_Area_Workplane.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Area Workplane/it + ## Description Empty @@ -47,4 +49,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Area Workplane/it diff --git a/wiki/translations/it/Path_Array.md b/wiki/translations/it/Path_Array.md index 827c07bf34..9a595a589b 100644 --- a/wiki/translations/it/Path_Array.md +++ b/wiki/translations/it/Path_Array.md @@ -1,3 +1,4 @@ +# Path Array/it --- - GuiCommand:/it Name:Path Array Name/it:Schiera Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Modifica percorso → Schiera Shortcut: SeeAlso:--- @@ -67,4 +68,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Array/it diff --git a/wiki/translations/it/Path_Comment.md b/wiki/translations/it/Path_Comment.md index 713b68f179..69af9503f0 100644 --- a/wiki/translations/it/Path_Comment.md +++ b/wiki/translations/it/Path_Comment.md @@ -1,3 +1,4 @@ +# Path Comment/it --- - GuiCommand:/it Name:Path Comment Name/it:Commento Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Comandi supplementari → Commento Shortcut:P,C SeeAlso:--- @@ -50,4 +51,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Comment/it diff --git a/wiki/translations/it/Path_Contour.md b/wiki/translations/it/Path_Contour.md index 5796c881cd..c535f2fa82 100644 --- a/wiki/translations/it/Path_Contour.md +++ b/wiki/translations/it/Path_Contour.md @@ -1,2 +1,5 @@ # Path Contour/it 1. REDIRECT [Path\_Profile/it](Path_Profile/it.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Contour/it diff --git a/wiki/translations/it/Path_Copy.md b/wiki/translations/it/Path_Copy.md index 75688c01f1..bb4b0d2c7d 100644 --- a/wiki/translations/it/Path_Copy.md +++ b/wiki/translations/it/Path_Copy.md @@ -1,3 +1,4 @@ +# Path Copy/it --- - GuiCommand:/it Name:Path Copy Name/it:Copia Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Modifica percorso → Copia Shortcut:P,Y SeeAlso:--- @@ -40,4 +41,7 @@ La copia rimane collegata al percorso originale. Le modifiche apportate all\'ori {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Copy/it diff --git a/wiki/translations/it/Path_Custom.md b/wiki/translations/it/Path_Custom.md index 0868d81904..a5ef01f0ae 100644 --- a/wiki/translations/it/Path_Custom.md +++ b/wiki/translations/it/Path_Custom.md @@ -1,3 +1,4 @@ +# Path Custom/it --- - GuiCommand:/it Name:Path Custom Name/it:Personalizza Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Comandi parziali → Personalizza Shortcut: SeeAlso:--- @@ -42,4 +43,7 @@ Notare che le velocità di avanzamento sono generate correttamente dal postproce {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Custom/it diff --git a/wiki/translations/it/Path_Dressup.md b/wiki/translations/it/Path_Dressup.md index 1df53e3c86..2eff5dccae 100644 --- a/wiki/translations/it/Path_Dressup.md +++ b/wiki/translations/it/Path_Dressup.md @@ -1,2 +1,5 @@ # Path Dressup/it 1. REDIRECT [Path\_Workbench/it](Path_Workbench/it.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Dressup/it diff --git a/wiki/translations/it/Path_DressupBoundary.md b/wiki/translations/it/Path_DressupBoundary.md index 32da88b6b7..515861c6e3 100644 --- a/wiki/translations/it/Path_DressupBoundary.md +++ b/wiki/translations/it/Path_DressupBoundary.md @@ -1,2 +1,5 @@ # Path DressupBoundary/it 1. REDIRECT [Path\_DressupPathBoundary/it](Path_DressupPathBoundary/it.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupBoundary/it diff --git a/wiki/translations/it/Path_DressupDogbone.md b/wiki/translations/it/Path_DressupDogbone.md index d1ad40470d..336626cf2c 100644 --- a/wiki/translations/it/Path_DressupDogbone.md +++ b/wiki/translations/it/Path_DressupDogbone.md @@ -1,3 +1,4 @@ +# Path DressupDogbone/it --- - GuiCommand:/it Name:Path DressupTag Name/it:Vestizione Osso di cane Workbenches:[MenuLocation:Path → Vestizione → Osso di cane SeeAlso:[[Path_DressupTag/it|Tag di vestizione](Path_Workbench/it___Path]].md), [Rampa di ingresso](Path_DressupRampEntry/it.md), [Trascina lama](Path_DressupDragKnife/it.md) --- @@ -56,4 +57,7 @@ La vestizione dogbone richiede un segmento di percorso rettilineo (G1) prima e d {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupDogbone/it diff --git a/wiki/translations/it/Path_DressupDragKnife.md b/wiki/translations/it/Path_DressupDragKnife.md index 3cb2d5f139..98d2c73062 100644 --- a/wiki/translations/it/Path_DressupDragKnife.md +++ b/wiki/translations/it/Path_DressupDragKnife.md @@ -1,3 +1,4 @@ +# Path DressupDragKnife/it --- - GuiCommand:/it Name:Path DressupTag Name/it:Vestizione Trascina lama Workbenches:[MenuLocation:Path → Vestizione → Trascina lama SeeAlso:[[Path_DressupTag/it|Tag di vestizione](Path_Workbench/it___Path]].md), [Rampa di ingresso](Path_DressupRampEntry/it.md), [Vestizione Osso di cane](Path_DressupDogbone/it.md) --- @@ -53,4 +54,7 @@ Questo strumento veste un tracciato esistente per aggiungere azioni angolari ed {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupDragKnife/it diff --git a/wiki/translations/it/Path_DressupLeadInOut.md b/wiki/translations/it/Path_DressupLeadInOut.md index 1c3ec84a70..cd9cddf918 100644 --- a/wiki/translations/it/Path_DressupLeadInOut.md +++ b/wiki/translations/it/Path_DressupLeadInOut.md @@ -6,6 +6,8 @@ SeeAlso:[Path DressupDogbone](Path_DressupDogbone.md), [Path DressupTag](Path_DressupTag.md), [Path DressupRampEntry](Path_DressupRampEntry.md), [Path DressupDragKnife](Path_DressupDragKnife.md) --- +# Path DressupLeadInOut/it + ## Descrizione ## Usage @@ -31,4 +33,7 @@ Add python code here {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupLeadInOut/it diff --git a/wiki/translations/it/Path_DressupPathBoundary.md b/wiki/translations/it/Path_DressupPathBoundary.md index 2b1c249e6c..06f63e9453 100644 --- a/wiki/translations/it/Path_DressupPathBoundary.md +++ b/wiki/translations/it/Path_DressupPathBoundary.md @@ -6,6 +6,8 @@ SeeAlso:[Path DressupTag](Path_DressupTag.md), [Path DressupRampEntry](Path_DressupRampEntry.md) --- +# Path DressupPathBoundary/it + ## Description Boundary dress-up allows restricting the extent of a path to a smaller part of the object. For example, restricting a profile path to just one face or part of the model. @@ -32,4 +34,7 @@ Boundary dress-up allows restricting the extent of a path to a smaller part of t {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupPathBoundary/it diff --git a/wiki/translations/it/Path_DressupRampEntry.md b/wiki/translations/it/Path_DressupRampEntry.md index 42b8a8dd24..0279fe0ad4 100644 --- a/wiki/translations/it/Path_DressupRampEntry.md +++ b/wiki/translations/it/Path_DressupRampEntry.md @@ -1,3 +1,4 @@ +# Path DressupRampEntry/it --- - GuiCommand:/it Name:Path DressupTag Name/it:Rampa di ingresso Workbenches:[MenuLocation:Path → Vesti percorso → Rampa di ingresso SeeAlso:[[Path_DressupTag/it|DressupTag](Path_Workbench/it___Path]].md), [DressupDogbone](Path_DressupDogbone/it.md) , [DressupDragKnife](Path_DressupDragKnife/it.md) --- @@ -37,4 +38,7 @@ Questo strumento veste un percorso esistente per aggiungere una rampa {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupRampEntry/it diff --git a/wiki/translations/it/Path_DressupTag.md b/wiki/translations/it/Path_DressupTag.md index 6a126bdf07..41455f7300 100644 --- a/wiki/translations/it/Path_DressupTag.md +++ b/wiki/translations/it/Path_DressupTag.md @@ -1,3 +1,4 @@ +# Path DressupTag/it --- - GuiCommand:/it Name:Path DressupTag Name/it:DressupTag Workbenches:[MenuLocation:Path → Vestizione → Tag Dress-up SeeAlso:[[Path_DressupRampEntry/it|Rampa di entrata](Path_Workbench/it___Path]].md), [Vestizione Dogbone](Path_DressupDogbone/it.md) , [Vestizione DragKnife](Path_DressupDragKnife/it.md) --- @@ -55,4 +56,7 @@ I tag vengono generati automaticamente equidistanti lungo il contorno, iniziando {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupTag/it diff --git a/wiki/translations/it/Path_Drilling.md b/wiki/translations/it/Path_Drilling.md index 1390c09c92..8ef16be8f2 100644 --- a/wiki/translations/it/Path_Drilling.md +++ b/wiki/translations/it/Path_Drilling.md @@ -1,3 +1,4 @@ +# Path Drilling/it --- - GuiCommand:/it Name:Path Drilling Name/it:Foratura Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Foratura Shortcut:P,D SeeAlso:--- @@ -214,4 +215,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Drilling/it diff --git a/wiki/translations/it/Path_EditToolsTable.md b/wiki/translations/it/Path_EditToolsTable.md index 6d0bfebb58..65b79b550e 100644 --- a/wiki/translations/it/Path_EditToolsTable.md +++ b/wiki/translations/it/Path_EditToolsTable.md @@ -1,2 +1,5 @@ # Path EditToolsTable/it 1. REDIRECT [Path\_ToolLibraryEdit/it](Path_ToolLibraryEdit/it.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path EditToolsTable/it diff --git a/wiki/translations/it/Path_Engrave.md b/wiki/translations/it/Path_Engrave.md index f903c52635..363552e4d9 100644 --- a/wiki/translations/it/Path_Engrave.md +++ b/wiki/translations/it/Path_Engrave.md @@ -1,3 +1,4 @@ +# Path Engrave/it --- - GuiCommand:/it Name:Path Engrave Name/it:Incisione Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Incisione Shortcut|SeeAlso:--- @@ -104,4 +105,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Engrave/it diff --git a/wiki/translations/it/Path_ExportTemplate.md b/wiki/translations/it/Path_ExportTemplate.md index fa36245904..1fa874f012 100644 --- a/wiki/translations/it/Path_ExportTemplate.md +++ b/wiki/translations/it/Path_ExportTemplate.md @@ -1,3 +1,4 @@ +# Path ExportTemplate/it --- - GuiCommand:/it Name:Path ExportTemplate Name/it:Esporta modello Workbenches:[MenuLocation:Path → Esporta modello SeeAlso:[[Path_SetupSheet/it|Path SetupSheet](Path_Workbench/it___Path]].md) --- @@ -97,4 +98,7 @@ Creare un modello {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ExportTemplate/it diff --git a/wiki/translations/it/Path_FAQ.md b/wiki/translations/it/Path_FAQ.md index 1b39384ecb..a4b1eac94b 100644 --- a/wiki/translations/it/Path_FAQ.md +++ b/wiki/translations/it/Path_FAQ.md @@ -1,6 +1,4 @@ # Path FAQ/it - - ## Domande frequenti su Path @@ -369,4 +367,7 @@ This is only a matter of displaying the path. You can change this in the prefere {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FAQ/it diff --git a/wiki/translations/it/Path_FacePocket.md b/wiki/translations/it/Path_FacePocket.md index f6c9b43a3f..2c13583b78 100644 --- a/wiki/translations/it/Path_FacePocket.md +++ b/wiki/translations/it/Path_FacePocket.md @@ -1,2 +1,5 @@ # Path FacePocket/it 1. REDIRECT [Path\_Pocket\_Shape/it](Path_Pocket_Shape/it.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FacePocket/it diff --git a/wiki/translations/it/Path_FaceProfile.md b/wiki/translations/it/Path_FaceProfile.md index 0dba33b2ff..019e7a7414 100644 --- a/wiki/translations/it/Path_FaceProfile.md +++ b/wiki/translations/it/Path_FaceProfile.md @@ -1,2 +1,5 @@ # Path FaceProfile/it 1. REDIRECT [Path\_Profile/it](Path_Profile/it.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FaceProfile/it diff --git a/wiki/translations/it/Path_Fixture.md b/wiki/translations/it/Path_Fixture.md index 364da5049c..5ae20571c6 100644 --- a/wiki/translations/it/Path_Fixture.md +++ b/wiki/translations/it/Path_Fixture.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Fixture/it + @@ -71,4 +73,7 @@ The G59 Fixture is used to expand available fixtures. The degree of expansion im {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Fixture/it diff --git a/wiki/translations/it/Path_FromShapes.md b/wiki/translations/it/Path_FromShapes.md index efa6467ce1..154f90e111 100644 --- a/wiki/translations/it/Path_FromShapes.md +++ b/wiki/translations/it/Path_FromShapes.md @@ -1,2 +1,5 @@ # Path FromShapes/it 1. REDIRECT [Path\_Shape/it](Path_Shape/it.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FromShapes/it diff --git a/wiki/translations/it/Path_GcodeFromShape.md b/wiki/translations/it/Path_GcodeFromShape.md index a3e196c418..948258d0ab 100644 --- a/wiki/translations/it/Path_GcodeFromShape.md +++ b/wiki/translations/it/Path_GcodeFromShape.md @@ -1,2 +1,5 @@ # Path GcodeFromShape/it 1. REDIRECT [Path\_Shape/it](Path_Shape/it.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path GcodeFromShape/it diff --git a/wiki/translations/it/Path_Helix.md b/wiki/translations/it/Path_Helix.md index 5ffedaf8df..a06fd0a7ba 100644 --- a/wiki/translations/it/Path_Helix.md +++ b/wiki/translations/it/Path_Helix.md @@ -1,3 +1,4 @@ +# Path Helix/it --- - GuiCommand:/it Name:Path Helix Name/it:Elica Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Elica Shortcut: SeeAlso:--- @@ -63,4 +64,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Helix/it diff --git a/wiki/translations/it/Path_Inspect.md b/wiki/translations/it/Path_Inspect.md index 833e8ffb1b..58a0c2a6f4 100644 --- a/wiki/translations/it/Path_Inspect.md +++ b/wiki/translations/it/Path_Inspect.md @@ -1,3 +1,4 @@ +# Path Inspect/it --- - GuiCommand:/it Name:Path Inspect Name/it:Ispeziona G-code Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Ispeziona G-code Shortcut: SeeAlso:--- @@ -39,4 +40,7 @@ Questo strumento consente di ispezionare il contenuto del G-Code nel dialetto in {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Inspect/it diff --git a/wiki/translations/it/Path_Job.md b/wiki/translations/it/Path_Job.md index d115860760..ffec06e873 100644 --- a/wiki/translations/it/Path_Job.md +++ b/wiki/translations/it/Path_Job.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Job/it + @@ -100,4 +102,7 @@ Se si dispone di una lavorazione composta da più operazioni percorso, è possib {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Job/it diff --git a/wiki/translations/it/Path_MillFace.md b/wiki/translations/it/Path_MillFace.md index 0f9df0c79a..4914e471b8 100644 --- a/wiki/translations/it/Path_MillFace.md +++ b/wiki/translations/it/Path_MillFace.md @@ -1,3 +1,4 @@ +# Path MillFace/it --- - GuiCommand:/it Name:Path-Face Name/it:Path-Face Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Facia Shortcut|SeeAlso:--- @@ -217,4 +218,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path MillFace/it diff --git a/wiki/translations/it/Path_OpActive.md b/wiki/translations/it/Path_OpActive.md index fa517ae3da..11baff3a64 100644 --- a/wiki/translations/it/Path_OpActive.md +++ b/wiki/translations/it/Path_OpActive.md @@ -1,2 +1,5 @@ # Path OpActive/it 1. REDIRECT [Path\_OpActiveToggle/it](Path_OpActiveToggle/it.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path OpActive/it diff --git a/wiki/translations/it/Path_OpActiveToggle.md b/wiki/translations/it/Path_OpActiveToggle.md index 4e262f2c99..41cfb781e5 100644 --- a/wiki/translations/it/Path_OpActiveToggle.md +++ b/wiki/translations/it/Path_OpActiveToggle.md @@ -6,6 +6,8 @@ Shortcut:**P** **X ** --- +# Path OpActiveToggle/it + ## Descrizione The ** [Active](Path_OpActiveToggle.md)** tool in the [Path Workbench](Path_Workbench.md) is used to toggle the active state of an existing path operation. This tool is not available, indicated as a light gray version of the icon, until you have created one or more path operations. Once your [Job](Path_Job.md) has at least one path operation the icon will be fully colored indicating it is available for use. @@ -63,4 +65,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path OpActiveToggle/it diff --git a/wiki/translations/it/Path_Pocket_3D.md b/wiki/translations/it/Path_Pocket_3D.md index d354c09ad2..a20f9c6291 100644 --- a/wiki/translations/it/Path_Pocket_3D.md +++ b/wiki/translations/it/Path_Pocket_3D.md @@ -1,3 +1,4 @@ +# Path Pocket 3D/it --- - GuiCommand:/it Name:Path 3DPocket Name/it:Cavità 3D Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Cavità 3D Shortcut: SeeAlso:--- @@ -226,4 +227,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Pocket 3D/it diff --git a/wiki/translations/it/Path_Pocket_Shape.md b/wiki/translations/it/Path_Pocket_Shape.md index 789fc55475..fdd15ce943 100644 --- a/wiki/translations/it/Path_Pocket_Shape.md +++ b/wiki/translations/it/Path_Pocket_Shape.md @@ -1,3 +1,4 @@ +# Path Pocket Shape/it --- - GuiCommand:/it Name:Path Pocket Name/it:Tasca Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Tasca Shortcut:P,O SeeAlso:--- @@ -247,4 +248,7 @@ Note: It is suggested that you do not edit the Placement property of path operat {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Pocket Shape/it diff --git a/wiki/translations/it/Path_Post.md b/wiki/translations/it/Path_Post.md index 16c18bb333..6b2b4dcc06 100644 --- a/wiki/translations/it/Path_Post.md +++ b/wiki/translations/it/Path_Post.md @@ -1,3 +1,4 @@ +# Path Post/it --- - GuiCommand:/it Name:Path PostProcess Name/it:Post elaborazione Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Post-elaborazione Shortcut:P,P SeeAlso:--- @@ -123,4 +124,7 @@ Included Postprocessors are saved in the **FreeCAD.Mod.Path.Pathscripts.Post** b {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Post/it diff --git a/wiki/translations/it/Path_Postprocessor_Customization.md b/wiki/translations/it/Path_Postprocessor_Customization.md index a78cffc260..0061796e87 100644 --- a/wiki/translations/it/Path_Postprocessor_Customization.md +++ b/wiki/translations/it/Path_Postprocessor_Customization.md @@ -1,10 +1,4 @@ # Path Postprocessor Customization/it - - - - - - {{TOCright}} ## Introduzione @@ -133,4 +127,7 @@ Vedrete che entrambe le funzioni chiamano anche la funzione \"linenumber()\". Se {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Postprocessor Customization/it diff --git a/wiki/translations/it/Path_Preferences.md b/wiki/translations/it/Path_Preferences.md index 6aefbb7e2b..60a3e6c4a6 100644 --- a/wiki/translations/it/Path_Preferences.md +++ b/wiki/translations/it/Path_Preferences.md @@ -1,10 +1,4 @@ # Path Preferences/it - - - - - - {{TOCright}} ## Overview @@ -46,3 +40,6 @@ There are three sections: General, Post processor, and Setup. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Preferences/it diff --git a/wiki/translations/it/Path_Profile.md b/wiki/translations/it/Path_Profile.md index 8a0ea6d002..291dce4037 100644 --- a/wiki/translations/it/Path_Profile.md +++ b/wiki/translations/it/Path_Profile.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Profile/it + ## Description The ** [Profile](Path_Profile.md)** tool creates a contour operation based on selected features of the model. The tool was introduced in version 0.19. It offers three operations that were handled by separate tools in previous versions. @@ -295,4 +297,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Profile/it diff --git a/wiki/translations/it/Path_ProfileEdges.md b/wiki/translations/it/Path_ProfileEdges.md index c04b0254f6..a3660fc83b 100644 --- a/wiki/translations/it/Path_ProfileEdges.md +++ b/wiki/translations/it/Path_ProfileEdges.md @@ -1,2 +1,5 @@ # Path ProfileEdges/it 1. REDIRECT [Path\_Profile/it](Path_Profile/it.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ProfileEdges/it diff --git a/wiki/translations/it/Path_ProfileFace.md b/wiki/translations/it/Path_ProfileFace.md index f60906c3e3..3fd3dd57a7 100644 --- a/wiki/translations/it/Path_ProfileFace.md +++ b/wiki/translations/it/Path_ProfileFace.md @@ -1,2 +1,5 @@ # Path ProfileFace/it 1. REDIRECT [Path\_Profile/it](Path_Profile/it.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ProfileFace/it diff --git a/wiki/translations/it/Path_Project.md b/wiki/translations/it/Path_Project.md index 1d90bed550..94fb0e2f21 100644 --- a/wiki/translations/it/Path_Project.md +++ b/wiki/translations/it/Path_Project.md @@ -1,2 +1,5 @@ # Path Project/it 1. REDIRECT [Path\_Job/it](Path_Job/it.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Project/it diff --git a/wiki/translations/it/Path_Sanity.md b/wiki/translations/it/Path_Sanity.md index 6736f4d1e9..fefba46869 100644 --- a/wiki/translations/it/Path_Sanity.md +++ b/wiki/translations/it/Path_Sanity.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Path Sanity/it + ## Description Many Path users are hobbyists and DIYers. As such, they use their CNC machines to run G-code that they configured and generated themselves. That isn\'t the case for most professional/commercial users. In professional shops, different people are responsible for creating the G-code (CNC programmers) from those who run it on the machines (CNC operator). @@ -79,4 +81,7 @@ Asciidoctor is a fast open-source text processor for converting asciidoc into HT {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Sanity/it diff --git a/wiki/translations/it/Path_SelectLoop.md b/wiki/translations/it/Path_SelectLoop.md index cc4855d046..6d2165bb73 100644 --- a/wiki/translations/it/Path_SelectLoop.md +++ b/wiki/translations/it/Path_SelectLoop.md @@ -1,3 +1,4 @@ +# Path SelectLoop/it --- - GuiCommand:/it Name:Path SelectLoop Name/it:Chiudi il ciclo Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Chiudi il ciclo Shortcut:P,L SeeAlso:--- @@ -36,4 +37,7 @@ Selezionare due spigoli che hanno un vertice comune, quindi eseguire il comando. {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SelectLoop/it diff --git a/wiki/translations/it/Path_SetupSheet.md b/wiki/translations/it/Path_SetupSheet.md index df00c329d4..2bf4368dfd 100644 --- a/wiki/translations/it/Path_SetupSheet.md +++ b/wiki/translations/it/Path_SetupSheet.md @@ -1,10 +1,4 @@ # Path SetupSheet/it - - - - - - {{TOCright}} ## Descrizione @@ -71,4 +65,7 @@ Other values in the SetupSheet can be referenced directly: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SetupSheet/it diff --git a/wiki/translations/it/Path_Shape.md b/wiki/translations/it/Path_Shape.md index 1c921a7dd5..a1419e4cfb 100644 --- a/wiki/translations/it/Path_Shape.md +++ b/wiki/translations/it/Path_Shape.md @@ -1,3 +1,4 @@ +# Path Shape/it --- - GuiCommand:/it Name:Path FromShapes Name/it:Da forme Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Comandi parziali → Da forma Shortcut: SeeAlso:--- @@ -137,4 +138,7 @@ Path.fromShapes(shapes, start=Vector(), return_end=False arc_plane=1, sort_mode= {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Shape/it diff --git a/wiki/translations/it/Path_SimpleCopy.md b/wiki/translations/it/Path_SimpleCopy.md index 441dfede77..28eab83cca 100644 --- a/wiki/translations/it/Path_SimpleCopy.md +++ b/wiki/translations/it/Path_SimpleCopy.md @@ -1,3 +1,4 @@ +# Path SimpleCopy/it --- - GuiCommand:/it Name:Path SimpleCopy Name/it:Copia semplice Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Modifica percorso → Copia semplice Shortcut: SeeAlso:--- @@ -36,4 +37,7 @@ Questo strumento crea una copia non parametrica di un dato percorso. {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SimpleCopy/it diff --git a/wiki/translations/it/Path_Simulator.md b/wiki/translations/it/Path_Simulator.md index e23c528b3c..b064524889 100644 --- a/wiki/translations/it/Path_Simulator.md +++ b/wiki/translations/it/Path_Simulator.md @@ -1,3 +1,4 @@ +# Path Simulator/it --- - GuiCommand:/it Name:Path Simulator Name/it:Simulatore Workbenches:[MenuLocation:Path → Simulatore CAM SeeAlso:[[Path_Inspect/it|Ispeziona](Path_Workbench/it___Path]].md) --- @@ -52,4 +53,7 @@ Questo strumento consente di simulare il percorso della lavorazione. Spazza i mo {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Simulator/it diff --git a/wiki/translations/it/Path_Slot.md b/wiki/translations/it/Path_Slot.md index d938049e00..c22f2eb413 100644 --- a/wiki/translations/it/Path_Slot.md +++ b/wiki/translations/it/Path_Slot.md @@ -9,6 +9,8 @@ SeeAlso: --- +# Path Slot/it + @@ -260,4 +262,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Slot/it diff --git a/wiki/translations/it/Path_Stop.md b/wiki/translations/it/Path_Stop.md index ab3df13075..26eda34cc1 100644 --- a/wiki/translations/it/Path_Stop.md +++ b/wiki/translations/it/Path_Stop.md @@ -1,3 +1,4 @@ +# Path Stop/it --- - GuiCommand:/it Name:Path Stop Name/it:Stop Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Comandi parziali → Stop Shortcut: SeeAlso:--- @@ -37,4 +38,7 @@ Nota che questo comando non ferma il mandrino. {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Stop/it diff --git a/wiki/translations/it/Path_Surface.md b/wiki/translations/it/Path_Surface.md index 98d1f094fe..8cae35e352 100644 --- a/wiki/translations/it/Path_Surface.md +++ b/wiki/translations/it/Path_Surface.md @@ -1,3 +1,4 @@ +# Path Surface/it --- - GuiCommand:/it Name:Path 3DSurface Name/it:Sfacciatura 3D Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Sfacciatura 3D Shortcut: SeeAlso:--- @@ -397,4 +398,7 @@ Note: It is suggested that you do not edit the Placement property of path operat {{Path Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Surface/it diff --git a/wiki/translations/it/Path_ToolController.md b/wiki/translations/it/Path_ToolController.md index 8a66be19c6..851ac9e37f 100644 --- a/wiki/translations/it/Path_ToolController.md +++ b/wiki/translations/it/Path_ToolController.md @@ -1,10 +1,4 @@ # Path ToolController/it - - - - - - {{TOCright}} ## Description @@ -29,4 +23,7 @@ Tool Number {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolController/it diff --git a/wiki/translations/it/Path_ToolLibraryEdit.md b/wiki/translations/it/Path_ToolLibraryEdit.md index 478f5d1696..306e8400ca 100644 --- a/wiki/translations/it/Path_ToolLibraryEdit.md +++ b/wiki/translations/it/Path_ToolLibraryEdit.md @@ -1,3 +1,4 @@ +# Path ToolLibraryEdit/it --- - GuiCommand:/it Name:Path ToolLibraryEdit Name/it:Gestione utensili Workbenches:[[Path Workbench/it Path]]|MenuLocation:Path → Gestione utensili Shortcut:P,T SeeAlso:--- @@ -67,4 +68,7 @@ La gestione è semplice: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolLibraryEdit/it diff --git a/wiki/translations/it/Path_Vcarve.md b/wiki/translations/it/Path_Vcarve.md index fe1e0952f7..b4505e3039 100644 --- a/wiki/translations/it/Path_Vcarve.md +++ b/wiki/translations/it/Path_Vcarve.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Vcarve/it + ## Description The [Path Vcarve](Path_Vcarve.md) tool is primarily for center-line engraving a [Draft ShapeString](Draft_ShapeString.md) onto a part. However, it may be useful for other kinds of 2D. @@ -154,4 +156,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Vcarve/it diff --git a/wiki/translations/it/Path_Walkthrough_for_the_Impatient.md b/wiki/translations/it/Path_Walkthrough_for_the_Impatient.md index dc736ec3fb..e49b72a6fa 100644 --- a/wiki/translations/it/Path_Walkthrough_for_the_Impatient.md +++ b/wiki/translations/it/Path_Walkthrough_for_the_Impatient.md @@ -1,7 +1,4 @@ # Path Walkthrough for the Impatient/it - - -
@@ -323,4 +320,7 @@ Il passaggio finale per generare il G-Code per la fresatura è di postelaborare {{Tutorials navi -}} {{Path Tools navi}} +}} {{Path Tools navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Walkthrough for the Impatient/it diff --git a/wiki/translations/it/Path_Waterline.md b/wiki/translations/it/Path_Waterline.md index ef3133131f..34303aed5b 100644 --- a/wiki/translations/it/Path_Waterline.md +++ b/wiki/translations/it/Path_Waterline.md @@ -9,6 +9,8 @@ SeeAlso: --- +# Path Waterline/it +
@@ -265,4 +267,7 @@ Note: It is suggested that you do not edit the Placement property of path operat {{Path Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Waterline/it diff --git a/wiki/translations/it/Path_Workbench.md b/wiki/translations/it/Path_Workbench.md index e8486bb507..7c84553eda 100644 --- a/wiki/translations/it/Path_Workbench.md +++ b/wiki/translations/it/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/it - - - - - -L\'icona di Path +# L\'icona di Path Path Workbench/it {{TOCright}} @@ -534,3 +528,6 @@ Vedere la pagina [Script di Path](Path_scripting/it.md). }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench/it diff --git a/wiki/translations/it/Path_experimental.md b/wiki/translations/it/Path_experimental.md index fe941a2133..8d48db379a 100644 --- a/wiki/translations/it/Path_experimental.md +++ b/wiki/translations/it/Path_experimental.md @@ -1,7 +1,4 @@ # Path experimental/it - - - {{TOCright}} ## Description @@ -47,3 +44,6 @@ Maggiori informazioni sulle specifiche funzionalità sperimentali nelle [pagine {{Path Tools navi}} [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path experimental/it diff --git a/wiki/translations/it/Path_fourth_axis.md b/wiki/translations/it/Path_fourth_axis.md index 38fbe771ec..0298b69501 100644 --- a/wiki/translations/it/Path_fourth_axis.md +++ b/wiki/translations/it/Path_fourth_axis.md @@ -1,7 +1,4 @@ # Path fourth axis/it - - - {{Path_Tools_navi/it}} @@ -69,4 +66,7 @@ There is currently no GUI integration of 4th-axis rotational settings in the rel {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path fourth axis/it diff --git a/wiki/translations/it/Path_scripting.md b/wiki/translations/it/Path_scripting.md index 9cb7ea112f..ae9d01f485 100644 --- a/wiki/translations/it/Path_scripting.md +++ b/wiki/translations/it/Path_scripting.md @@ -1,10 +1,4 @@ # Path scripting/it - - - - - - {{TOCright}} ## Introduzione @@ -503,3 +497,6 @@ doc.recompute() }} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path scripting/it diff --git a/wiki/translations/it/Pivy.md b/wiki/translations/it/Pivy.md index 1545b0ffea..eadb501a7c 100644 --- a/wiki/translations/it/Pivy.md +++ b/wiki/translations/it/Pivy.md @@ -1,7 +1,4 @@ # Pivy/it - - - {{TOCright}} ## Introduction @@ -269,3 +266,6 @@ These links provide reference documentation for Coin v3.x. The differences with }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Pivy/it diff --git a/wiki/translations/it/Placement.md b/wiki/translations/it/Placement.md index 4a37898090..a20842e7a3 100644 --- a/wiki/translations/it/Placement.md +++ b/wiki/translations/it/Placement.md @@ -1,7 +1,4 @@ # Placement/it - - -
## Descrizione @@ -337,5 +334,5 @@ Pertanto, il posizionamento di un solido creato in PartDesign da uno schizzo pu
- - +--- +[documentation index](../README.md) > Placement/it diff --git a/wiki/translations/it/Placement_API.md b/wiki/translations/it/Placement_API.md index 1205e28bf7..f9378b6d62 100644 --- a/wiki/translations/it/Placement_API.md +++ b/wiki/translations/it/Placement_API.md @@ -1,5 +1,5 @@ # Placement API/it - **(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** +**(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** In FreeCAD, Placement (Posizionamento) definisce la posizione e la rotazione di un oggetto. Il concetto di posizionamento è spiegato in dettaglio in: [Placement](Placement/it.md). @@ -39,3 +39,6 @@ myObj.Placement = pl [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Placement API/it diff --git a/wiki/translations/it/Plot_Axes.md b/wiki/translations/it/Plot_Axes.md index 6e5f30170f..f55bf8deaf 100644 --- a/wiki/translations/it/Plot_Axes.md +++ b/wiki/translations/it/Plot_Axes.md @@ -1,3 +1,4 @@ +# Plot Axes/it --- - GuiCommand:/it Name:Plot Axes Name/it:Assi MenuLocation:Grafico → Assi‏‎ |Workbenches:[[Plot Module/it Grafico]]|Shortcut: SeeAlso:--- @@ -51,3 +52,6 @@ Finally you can set the minimum and maximum values considered for each set of ax }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Axes/it diff --git a/wiki/translations/it/Plot_Basic_tutorial.md b/wiki/translations/it/Plot_Basic_tutorial.md index 7380079c6d..1a74f5a32c 100644 --- a/wiki/translations/it/Plot_Basic_tutorial.md +++ b/wiki/translations/it/Plot_Basic_tutorial.md @@ -1,7 +1,4 @@ # Plot Basic tutorial/it - - -
@@ -405,3 +402,6 @@ Dpi (punti per pollice) controlla la risoluzione delle immagini, ad esempio util }} {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Basic tutorial/it diff --git a/wiki/translations/it/Plot_Grid.md b/wiki/translations/it/Plot_Grid.md index 15fae23c84..ea0690fe63 100644 --- a/wiki/translations/it/Plot_Grid.md +++ b/wiki/translations/it/Plot_Grid.md @@ -1,3 +1,4 @@ +# Plot Grid/it --- - GuiCommand:/it Name:Plot Grid Name/it:Griglia MenuLocation:Grafico → Griglia‏‎ |Workbenches:[[Plot Module/it Grafico]]|Shortcut: SeeAlso:--- @@ -31,3 +32,6 @@ This tool acts on the active set of axis. In case of multi-axes plots you can se }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Grid/it diff --git a/wiki/translations/it/Plot_Labels.md b/wiki/translations/it/Plot_Labels.md index 0e323a9796..2d1f107d61 100644 --- a/wiki/translations/it/Plot_Labels.md +++ b/wiki/translations/it/Plot_Labels.md @@ -1,3 +1,4 @@ +# Plot Labels/it --- - GuiCommand:/it Name:Plot Labels Name/it:Etichette MenuLocation:Plot → Imposta etichette‏‎ |Workbenches:[[Plot Module/it Plot]]|Shortcut: SeeAlso:--- @@ -40,3 +41,6 @@ Select the plot tab that you want to edit, and run this tool. In case of multi-a }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Labels/it diff --git a/wiki/translations/it/Plot_Legend.md b/wiki/translations/it/Plot_Legend.md index a131015050..6a1fb12c33 100644 --- a/wiki/translations/it/Plot_Legend.md +++ b/wiki/translations/it/Plot_Legend.md @@ -1,3 +1,4 @@ +# Plot Legend/it --- - GuiCommand:/it Name:Plot Legend Name/it:Legenda MenuLocation:Plot → Legenda‏‎ |Workbenches:[[Plot Module/it Plot]]|Shortcut: SeeAlso:--- @@ -31,3 +32,6 @@ Remember that the styles and labels of the data series can be edited with the [d }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Legend/it diff --git a/wiki/translations/it/Plot_Module.md b/wiki/translations/it/Plot_Module.md index c1aa160e7a..a0636cad93 100644 --- a/wiki/translations/it/Plot_Module.md +++ b/wiki/translations/it/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/it - - -L\'icona dell\'ambiente Plot +# L\'icona dell\'ambiente Plot Plot Module/it {{TOCright}} @@ -86,3 +83,6 @@ Poiché il modulo Grafico è costruito su `matplotlib`, si è liberi di utilizza }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/it diff --git a/wiki/translations/it/Plot_MultiAxes_tutorial.md b/wiki/translations/it/Plot_MultiAxes_tutorial.md index 29e2e7a38a..27bd16274b 100644 --- a/wiki/translations/it/Plot_MultiAxes_tutorial.md +++ b/wiki/translations/it/Plot_MultiAxes_tutorial.md @@ -1,7 +1,4 @@ # Plot MultiAxes tutorial/it - - -
@@ -339,3 +336,6 @@ Now you can save your work. See the [previous tutorial](Plot_Basic_tutorial.md) }} {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot MultiAxes tutorial/it diff --git a/wiki/translations/it/Plot_Positions.md b/wiki/translations/it/Plot_Positions.md index f3c16a141d..f5ea15ad50 100644 --- a/wiki/translations/it/Plot_Positions.md +++ b/wiki/translations/it/Plot_Positions.md @@ -1,3 +1,4 @@ +# Plot Positions/it --- - GuiCommand:/it Name:Plot Positions Name/it:Posizione MenuLocation:Grafico → Posizione |Workbenches:[[Plot Module/it Grafico]]|Shortcut: SeeAlso:--- @@ -36,3 +37,6 @@ Select the plot tab that you want to edit, and run this tool. Then you can selec }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Positions/it diff --git a/wiki/translations/it/Plot_Save.md b/wiki/translations/it/Plot_Save.md index 6941d0450e..aa99328b77 100644 --- a/wiki/translations/it/Plot_Save.md +++ b/wiki/translations/it/Plot_Save.md @@ -1,3 +1,4 @@ +# Plot Save/it --- - GuiCommand:/it Name:Plot Save Name/it:Salva grafico Workbenches:[[Plot Module/it Grafico]]|MenuLocation:Grafico → Salva grafico--- @@ -61,3 +62,6 @@ Selezionare l\'immagine che si desidera salvare utilizzando le schede nella vist }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Save/it diff --git a/wiki/translations/it/Plot_Series.md b/wiki/translations/it/Plot_Series.md index c097f40bc2..b6e29ae60e 100644 --- a/wiki/translations/it/Plot_Series.md +++ b/wiki/translations/it/Plot_Series.md @@ -1,3 +1,4 @@ +# Plot Series/it --- - GuiCommand:/it Name:Plot Series Name/it:Serie MenuLocation:Grafico → Serie‏‎ |Workbenches:[[Plot Module/it Grafico]]|Shortcut: SeeAlso:--- @@ -41,3 +42,6 @@ Select the plot tab that you want to edit, and run this tool. Then select the se }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Series/it diff --git a/wiki/translations/it/Plot_Workbench.md b/wiki/translations/it/Plot_Workbench.md index 18842437dd..648c1aebb6 100644 --- a/wiki/translations/it/Plot_Workbench.md +++ b/wiki/translations/it/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/it 1. REDIRECT [Plot\_Module/it](Plot_Module/it.md) + +--- +[documentation index](../README.md) > Plot Workbench/it diff --git a/wiki/translations/it/Plugin_Loader.md b/wiki/translations/it/Plugin_Loader.md index 34511bac8d..a413f6ba20 100644 --- a/wiki/translations/it/Plugin_Loader.md +++ b/wiki/translations/it/Plugin_Loader.md @@ -1,2 +1,5 @@ # Plugin Loader/it 1. REDIRECT [Std\_AddonMgr/it](Std_AddonMgr/it.md) + +--- +[documentation index](../README.md) > Plugin Loader/it diff --git a/wiki/translations/it/Points_Convert.md b/wiki/translations/it/Points_Convert.md index 3b669f471f..990105e086 100644 --- a/wiki/translations/it/Points_Convert.md +++ b/wiki/translations/it/Points_Convert.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Points Convert/it +
@@ -68,4 +70,7 @@ Point cloud objects are [App GeoFeature](App_GeoFeature.md) objects with the fol {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Convert/it diff --git a/wiki/translations/it/Points_Export.md b/wiki/translations/it/Points_Export.md index edb36ec93e..93df34dbd4 100644 --- a/wiki/translations/it/Points_Export.md +++ b/wiki/translations/it/Points_Export.md @@ -8,6 +8,8 @@ Icon:Points_Export.svg --- +# Points Export/it +
@@ -40,4 +42,7 @@ The **Points Export** command exports a point cloud to a file. {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Export/it diff --git a/wiki/translations/it/Points_Import.md b/wiki/translations/it/Points_Import.md index 0c40c2ec4e..6d95ca062f 100644 --- a/wiki/translations/it/Points_Import.md +++ b/wiki/translations/it/Points_Import.md @@ -8,6 +8,8 @@ Icon:Points_Import.svg --- +# Points Import/it +
@@ -74,4 +76,7 @@ Per i test si può usare questo file [ASC](https://github.com/FREECAD/Examples/b {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Import/it diff --git a/wiki/translations/it/Points_Merge.md b/wiki/translations/it/Points_Merge.md index 0aa788f2a7..f6a0bde1ce 100644 --- a/wiki/translations/it/Points_Merge.md +++ b/wiki/translations/it/Points_Merge.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Points Merge/it +
@@ -39,4 +41,7 @@ See [Points Convert](Points_Convert.md). {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Merge/it diff --git a/wiki/translations/it/Points_Module.md b/wiki/translations/it/Points_Module.md index 570e45e318..cd4c04f667 100644 --- a/wiki/translations/it/Points_Module.md +++ b/wiki/translations/it/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/it 1. REDIRECT [Points\_Workbench/it](Points_Workbench/it.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/it diff --git a/wiki/translations/it/Points_PolyCut.md b/wiki/translations/it/Points_PolyCut.md index 5e3648db25..416cfd67ba 100644 --- a/wiki/translations/it/Points_PolyCut.md +++ b/wiki/translations/it/Points_PolyCut.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Points PolyCut/it +
@@ -54,4 +56,7 @@ The **Points PolyCut** command cuts points from point clouds. {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points PolyCut/it diff --git a/wiki/translations/it/Points_Structure.md b/wiki/translations/it/Points_Structure.md index 9c7280526a..8f05735c20 100644 --- a/wiki/translations/it/Points_Structure.md +++ b/wiki/translations/it/Points_Structure.md @@ -5,6 +5,8 @@ Workbenches:[Points](Points_Workbench.md) --- +# Points Structure/it + ## Description The **Points Structure** command creates a structured point cloud from the points of an existing scattered point cloud. A structured point cloud has the advantage that tessellation is much easier. @@ -27,4 +29,7 @@ Vedere [Converti in punti](Points_Convert/it.md). {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Structure/it diff --git a/wiki/translations/it/Points_Workbench.md b/wiki/translations/it/Points_Workbench.md index a39a1e2433..c98ac014c0 100644 --- a/wiki/translations/it/Points_Workbench.md +++ b/wiki/translations/it/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/it - - - - - -L\'icona dell\'ambiente Points +# L\'icona dell\'ambiente Points Points Workbench/it ## Introduzione @@ -57,3 +51,6 @@ Una nuvola di punti è una raccolta di punti nello spazio 3D. Generalmente una n }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/it diff --git a/wiki/translations/it/Post-Processing_of_FEM_Results_with_Paraview.md b/wiki/translations/it/Post-Processing_of_FEM_Results_with_Paraview.md index 210efd384c..37d6c9b61c 100644 --- a/wiki/translations/it/Post-Processing_of_FEM_Results_with_Paraview.md +++ b/wiki/translations/it/Post-Processing_of_FEM_Results_with_Paraview.md @@ -1,5 +1,5 @@ # Post-Processing of FEM Results with Paraview/it - {{TutorialInfo/it +{{TutorialInfo/it |Topic= Post-elaborazione dei risultati FEM con Paraview |Level= Intermedio |Time= 120 minuti @@ -351,4 +351,7 @@ The final result shows the major and minor principal stress vectors superimposed ## Export of Graphical Results -To export a RenderView window highlight the window and use menu option **File > Save Screenshot** {{Tutorials navi}} {{FEM Tools navi}} +To export a RenderView window highlight the window and use menu option **File > Save Screenshot** {{Tutorials navi}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Post-Processing of FEM Results with Paraview/it diff --git a/wiki/translations/it/Power_users_hub.md b/wiki/translations/it/Power_users_hub.md index 02aa748fc4..cb8de0c2a5 100644 --- a/wiki/translations/it/Power_users_hub.md +++ b/wiki/translations/it/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/it - +# Power users hub/it ------------------------------------------------------------------------ @@ -196,3 +195,6 @@ Nel [Portale della comunità](FreeCAD_Community_Portal/it.md), è possibile trov }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [API|in questa pagina in inglese]] e ](Category:API|in questa pagina in inglese]] e .md) > Power users hub/it diff --git a/wiki/translations/it/Preferences_Editor.md b/wiki/translations/it/Preferences_Editor.md index 6b7749282d..bc99a6f0cb 100644 --- a/wiki/translations/it/Preferences_Editor.md +++ b/wiki/translations/it/Preferences_Editor.md @@ -1,7 +1,4 @@ # Preferences Editor/it - - -
@@ -1020,3 +1017,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/it diff --git a/wiki/translations/it/Profiling.md b/wiki/translations/it/Profiling.md index b2a4772f1e..a983762b9f 100644 --- a/wiki/translations/it/Profiling.md +++ b/wiki/translations/it/Profiling.md @@ -1,6 +1,4 @@ # Profiling/it - - ## Descrizione La profilazione del codice di FreeCAD aiuta a trovare i colli di bottiglia negli algoritmi utilizzati per creare o manipolare oggetti. @@ -41,3 +39,6 @@ kcachegrind /tmp/callgrind.out }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Profiling/it diff --git a/wiki/translations/it/Project.md b/wiki/translations/it/Project.md index a91d1a08b0..ae5c4edf65 100644 --- a/wiki/translations/it/Project.md +++ b/wiki/translations/it/Project.md @@ -1,2 +1,5 @@ # Project/it 1. REDIRECT [Development\_roadmap/it](Development_roadmap/it.md) + +--- +[documentation index](../README.md) > Project/it diff --git a/wiki/translations/it/Project_template.md b/wiki/translations/it/Project_template.md index c0acbafc0a..f569fe9fae 100644 --- a/wiki/translations/it/Project_template.md +++ b/wiki/translations/it/Project_template.md @@ -1,5 +1,5 @@ # Project template/it - Questa maschera è il modello delle linee guida per il Piano di sviluppo del progetto di FreeCAD. Si seguono le regole di processo di \[! Getting Things Done (GTD)\] . +Questa maschera è il modello delle linee guida per il Piano di sviluppo del progetto di FreeCAD. Si seguono le regole di processo di \[! Getting Things Done (GTD)\] . I progetti sono raccolti nel [Piano di sviluppo](Development_roadmap/it.md). @@ -30,3 +30,6 @@ I progetti sono raccolti nel [Piano di sviluppo](Development_roadmap/it.md). [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Project template/it diff --git a/wiki/translations/it/Project_utility.md b/wiki/translations/it/Project_utility.md index de54ba5469..163df044da 100644 --- a/wiki/translations/it/Project_utility.md +++ b/wiki/translations/it/Project_utility.md @@ -1,2 +1,5 @@ # Project utility/it 1. REDIRECT [Std\_ProjectUtil/it](Std_ProjectUtil/it.md) + +--- +[documentation index](../README.md) > Project utility/it diff --git a/wiki/translations/it/Property.md b/wiki/translations/it/Property.md index 0ec3b55729..b26dc25482 100644 --- a/wiki/translations/it/Property.md +++ b/wiki/translations/it/Property.md @@ -1,6 +1,4 @@ # Property/it - - ## Introduzione Una [proprietà](Property/it.md) è una parte di informazione sotto forma di numero o di stringa di testo che viene allegata a un documento di FreeCAD oppure a un oggetto di un documento. Le proprietà pubbliche possono essere visualizzate e, se consentito, modificate nell\'[editore delle proprietà](Property_editor/it.md). @@ -121,3 +119,6 @@ They are imported and initialized in `[https://github.com/FreeCAD/FreeCAD/blob/9 }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/it diff --git a/wiki/translations/it/Property_editor.md b/wiki/translations/it/Property_editor.md index 684a5479dc..aeb00b13ca 100644 --- a/wiki/translations/it/Property_editor.md +++ b/wiki/translations/it/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/it - - - - - - {{TOCright}} ## Descrizione @@ -297,4 +291,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/it diff --git a/wiki/translations/it/PySide.md b/wiki/translations/it/PySide.md index 3dc629f2f0..69d97c91e6 100644 --- a/wiki/translations/it/PySide.md +++ b/wiki/translations/it/PySide.md @@ -1,7 +1,4 @@ # PySide/it - - - {{TOCright}} @@ -107,3 +104,6 @@ The PySide documentation refers to the Python-style classes; however, since Qt i }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide/it diff --git a/wiki/translations/it/PySide_Advanced_Examples.md b/wiki/translations/it/PySide_Advanced_Examples.md index 9e492fae55..870f7db945 100644 --- a/wiki/translations/it/PySide_Advanced_Examples.md +++ b/wiki/translations/it/PySide_Advanced_Examples.md @@ -1,7 +1,4 @@ # PySide Advanced Examples/it - - - {{TOCright}} ## Introduzione @@ -144,3 +141,6 @@ self.dialog = FreeCADGui.PySideUic.loadUi(os.path.join(os.path.dirname(__file__) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Advanced Examples/it diff --git a/wiki/translations/it/PySide_Beginner_Examples.md b/wiki/translations/it/PySide_Beginner_Examples.md index 67fb60b7df..1ff62aa979 100644 --- a/wiki/translations/it/PySide_Beginner_Examples.md +++ b/wiki/translations/it/PySide_Beginner_Examples.md @@ -1,6 +1,4 @@ # PySide Beginner Examples/it - - ## Introduzione Lo scopo di questa pagina è di coprire esempi di livello principiante del [PySide](PySide/it.md). Manager GUI (ci sono pagine di accompagnamento [Esempi di PySide di livello medio](PySide_Intermediate_Examples/it.md) e [Esempi di PySide di livello avanzato](PySide_Advanced_Examples/it.md)). @@ -181,3 +179,6 @@ buttonBox = QtGui.QDialogButtonBox(QtCore.Qt.Vertical) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Beginner Examples/it diff --git a/wiki/translations/it/PySide_Intermediate_Examples.md b/wiki/translations/it/PySide_Intermediate_Examples.md index c9c6fdab9e..2caf5b6787 100644 --- a/wiki/translations/it/PySide_Intermediate_Examples.md +++ b/wiki/translations/it/PySide_Intermediate_Examples.md @@ -1,6 +1,4 @@ # PySide Intermediate Examples/it - - ## Introduzione @@ -766,3 +764,6 @@ Questi stessi comandi possono essere eseguiti anche su una finestra generata dal }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Intermediate Examples/it diff --git a/wiki/translations/it/PySide_usage_snippets.md b/wiki/translations/it/PySide_usage_snippets.md index a8bef3fd45..c6195df02d 100644 --- a/wiki/translations/it/PySide_usage_snippets.md +++ b/wiki/translations/it/PySide_usage_snippets.md @@ -1,6 +1,4 @@ # PySide usage snippets/it - - ## Introduzione These are snippets of code that are useful when [creating interfaces](Dialog_creation.md) with [PySide](PySide.md). @@ -132,3 +130,6 @@ print(unicode(uniteSs, 'iso8859')) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide usage snippets/it diff --git a/wiki/translations/it/Pyramids_and_polyhedrons_Workbench.md b/wiki/translations/it/Pyramids_and_polyhedrons_Workbench.md index 7c54a0544b..f811d02a68 100644 --- a/wiki/translations/it/Pyramids_and_polyhedrons_Workbench.md +++ b/wiki/translations/it/Pyramids_and_polyhedrons_Workbench.md @@ -1,6 +1,4 @@ # Pyramids and polyhedrons Workbench/it - - ## Descrizione The Pyramids-and-Polyhedrons External Workbench Icon @@ -59,3 +57,6 @@ Invia il tuo feedback, idee, pensieri su questo banco di lavoro al thread del fo [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Pyramids and polyhedrons Workbench/it diff --git a/wiki/translations/it/Pyrate_Workbench.md b/wiki/translations/it/Pyrate_Workbench.md index 8433d54878..d3492b2a19 100644 --- a/wiki/translations/it/Pyrate_Workbench.md +++ b/wiki/translations/it/Pyrate_Workbench.md @@ -1,9 +1,4 @@ # Pyrate Workbench/it - - - - - ## Introduzione @@ -18,3 +13,6 @@ This workbench is a new style workbench. This means it is intended to install it [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Pyrate Workbench/it diff --git a/wiki/translations/it/Python.md b/wiki/translations/it/Python.md index 6f1a35a2a2..875748f1cb 100644 --- a/wiki/translations/it/Python.md +++ b/wiki/translations/it/Python.md @@ -1,5 +1,5 @@ # Python/it - **FreeCAD was originally designed to work with Python 2.x. This series ended with 2.7.18 release dated April, 20th 2020 and is succeeded by Python 3. The further development of FreeCAD will be done exclusively with Python 3, and backwards compatibility will not be supported.** +**FreeCAD was originally designed to work with Python 2.x. This series ended with 2.7.18 release dated April, 20th 2020 and is succeeded by Python 3. The further development of FreeCAD will be done exclusively with Python 3, and backwards compatibility will not be supported.** ## Description @@ -127,3 +127,6 @@ Structure = Arch.make_structure(Wire, name="Big pillar") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:API Documentation](Category:API_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python/it diff --git a/wiki/translations/it/PythonOCC.md b/wiki/translations/it/PythonOCC.md index 7759d48612..6ee0f07c47 100644 --- a/wiki/translations/it/PythonOCC.md +++ b/wiki/translations/it/PythonOCC.md @@ -1,6 +1,4 @@ # PythonOCC/it - - ## Description @@ -63,3 +61,6 @@ You can also self compile pythonOCC (see [instructions](https://github.com/tpavi }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PythonOCC/it diff --git a/wiki/translations/it/Python_3.md b/wiki/translations/it/Python_3.md index 4322549110..d65eb8deae 100644 --- a/wiki/translations/it/Python_3.md +++ b/wiki/translations/it/Python_3.md @@ -1,7 +1,4 @@ # Python 3/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -154,3 +151,6 @@ conda build . --python=3.6 --dirty [Category:User Documentation](Category:User_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Python 3/it diff --git a/wiki/translations/it/Python_Development_Environment.md b/wiki/translations/it/Python_Development_Environment.md index 3a5f9131c1..be0771d6f4 100644 --- a/wiki/translations/it/Python_Development_Environment.md +++ b/wiki/translations/it/Python_Development_Environment.md @@ -1,5 +1,5 @@ # Python Development Environment/it - {{TOCright}} +{{TOCright}} ## Un semplicistico Ambiente di sviluppo per Python all\'interno di FreeCAD @@ -552,3 +552,6 @@ Alcuni altri link che riguardano le IDE per Python e che possono essere interess [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Python Development Environment/it diff --git a/wiki/translations/it/Python_console.md b/wiki/translations/it/Python_console.md index cc10156def..a7eff36a3d 100644 --- a/wiki/translations/it/Python_console.md +++ b/wiki/translations/it/Python_console.md @@ -1,5 +1,5 @@ # Python console/it - **(Gennaio 2020) FreeCAD è stato originariamente progettato per funzionare con Python 2. Poiché Python 2 ha raggiunto la fine del suo ciclo di vita nel 2020, lo sviluppo futuro di FreeCAD sarà realizzato esclusivamente con Python 3 e la compatibilità con le versioni precedenti non sarà supportata.** +**(Gennaio 2020) FreeCAD è stato originariamente progettato per funzionare con Python 2. Poiché Python 2 ha raggiunto la fine del suo ciclo di vita nel 2020, lo sviluppo futuro di FreeCAD sarà realizzato esclusivamente con Python 3 e la compatibilità con le versioni precedenti non sarà supportata.** ## Introduzione @@ -86,4 +86,7 @@ Un clic con il tasto destro sulla console Python mostra alcuni comandi: {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Python console/it diff --git a/wiki/translations/it/Python_scripting_tutorial.md b/wiki/translations/it/Python_scripting_tutorial.md index 4cadaa5a22..ff75411499 100644 --- a/wiki/translations/it/Python_scripting_tutorial.md +++ b/wiki/translations/it/Python_scripting_tutorial.md @@ -1,7 +1,4 @@ # Python scripting tutorial/it - - - {{TOCright}} ## Introduction @@ -637,3 +634,6 @@ Dirigetevi al [Centro degli utenti esperti](Power_users_hub/it.md)! }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python scripting tutorial/it diff --git a/wiki/translations/it/Qt_Example.md b/wiki/translations/it/Qt_Example.md index 9c3d3adbe6..8f657c0ae7 100644 --- a/wiki/translations/it/Qt_Example.md +++ b/wiki/translations/it/Qt_Example.md @@ -1,5 +1,5 @@ # Qt Example/it - {{Macro/it +{{Macro/it |Icon=MEPlan.png |Name=Macro Qt Example |Name/it=Macro Qt Example @@ -808,3 +808,6 @@ MainWindow.show() Enjoy [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Qt Example/it diff --git a/wiki/translations/it/Quality_project.md b/wiki/translations/it/Quality_project.md index 0457665d67..b99a5f9199 100644 --- a/wiki/translations/it/Quality_project.md +++ b/wiki/translations/it/Quality_project.md @@ -1,7 +1,4 @@ # Quality project/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -44,3 +41,6 @@ Lavorare con tutti i comandi *unfinished* e creare la documentazione per i coman [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Quality project/it diff --git a/wiki/translations/it/Quantity.md b/wiki/translations/it/Quantity.md index 191286a554..d14cbbad00 100644 --- a/wiki/translations/it/Quantity.md +++ b/wiki/translations/it/Quantity.md @@ -1,5 +1,5 @@ # Quantity/it - Quantity è la combinazione di un numero in virgola mobile e di una unità di misura. +Quantity è la combinazione di un numero in virgola mobile e di una unità di misura. ## Aspetti generali @@ -289,3 +289,6 @@ from FreeCAD import Units }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Quantity/it diff --git a/wiki/translations/it/Ray_Tracing_Workbench.md b/wiki/translations/it/Ray_Tracing_Workbench.md index 0d65ff52b2..9410b148c2 100644 --- a/wiki/translations/it/Ray_Tracing_Workbench.md +++ b/wiki/translations/it/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/it 1. REDIRECT [Raytracing\_Workbench/it](Raytracing_Workbench/it.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/it diff --git a/wiki/translations/it/Raytracing_API_example.md b/wiki/translations/it/Raytracing_API_example.md index 9cb905e3ad..85b0466443 100644 --- a/wiki/translations/it/Raytracing_API_example.md +++ b/wiki/translations/it/Raytracing_API_example.md @@ -1,6 +1,4 @@ # Raytracing API example/it - - ## Introduzione I moduli `Raytracing` e `RaytracingGui` forniscono diversi metodi per scrivere i contenuti della scena come dati povray o luxrender. @@ -53,3 +51,6 @@ myCustomRenderObject.Result = "// Hello from python!" }} {{Raytracing Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing API example/it diff --git a/wiki/translations/it/Raytracing_ExportProject.md b/wiki/translations/it/Raytracing_ExportProject.md index c33dc2be81..30709d787a 100644 --- a/wiki/translations/it/Raytracing_ExportProject.md +++ b/wiki/translations/it/Raytracing_ExportProject.md @@ -1,3 +1,4 @@ +# Raytracing ExportProject/it --- - GuiCommand:/it Name:Raytracing ExportProject Name/it:ExportProject MenuLocation:Raytracing → ExportProject |Workbenches:[[Raytracing_Workbench/it Raytracing]]|Shortcut: SeeAlso:--- @@ -47,4 +48,7 @@ Esporta il progetto raytracing selezionato in un file. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing ExportProject/it diff --git a/wiki/translations/it/Raytracing_InsertPart.md b/wiki/translations/it/Raytracing_InsertPart.md index a9ec4c7ffc..1531d1b685 100644 --- a/wiki/translations/it/Raytracing_InsertPart.md +++ b/wiki/translations/it/Raytracing_InsertPart.md @@ -1,3 +1,4 @@ +# Raytracing InsertPart/it --- - GuiCommand:/it Name:Raytracing InsertPart Name/it:Inserisci parte MenuLocation:Raytracing → Inserisci parte‏‎ |Workbenches:[[Raytracing_Workbench/it Raytracing]]|Shortcut: SeeAlso:--- @@ -49,4 +50,7 @@ Inserisce una vista di una parte in un progetto raytracing. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing InsertPart/it diff --git a/wiki/translations/it/Raytracing_Lux.md b/wiki/translations/it/Raytracing_Lux.md index a807011821..e494777d82 100644 --- a/wiki/translations/it/Raytracing_Lux.md +++ b/wiki/translations/it/Raytracing_Lux.md @@ -1,3 +1,4 @@ +# Raytracing Lux/it --- - GuiCommand:/it Name:Raytracing Lux Name/it:Raytracing Lux MenuLocation:Raytracing → Nuovo progetto Lux‏‎render |Workbenches:[[Raytracing_Workbench/it Raytracing]]|Shortcut: SeeAlso:--- @@ -54,4 +55,7 @@ Ulteriori configurazioni di progetto richiedono la definizione di modelli aggiun {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Lux/it diff --git a/wiki/translations/it/Raytracing_Module.md b/wiki/translations/it/Raytracing_Module.md index be539d8590..c4e4899c70 100644 --- a/wiki/translations/it/Raytracing_Module.md +++ b/wiki/translations/it/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/it 1. REDIRECT [Raytracing\_Workbench/it](Raytracing_Workbench/it.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/it diff --git a/wiki/translations/it/Raytracing_New.md b/wiki/translations/it/Raytracing_New.md index c79fc1d8aa..bffdb5d5d8 100644 --- a/wiki/translations/it/Raytracing_New.md +++ b/wiki/translations/it/Raytracing_New.md @@ -1,3 +1,4 @@ +# Raytracing New/it --- - GuiCommand:/it Name:Raytracing New Name/it:New MenuLocation:Raytracing → Nuovo progetto Pov-Ray‏‎ |Workbenches:[[Raytracing_Workbench/it Raytracing]]|Shortcut: SeeAlso:--- @@ -62,4 +63,7 @@ Ulteriori configurazioni di progetto richiedono la definizione di modelli aggiun {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing New/it diff --git a/wiki/translations/it/Raytracing_Preferences.md b/wiki/translations/it/Raytracing_Preferences.md index 47323f8985..fd769747bd 100644 --- a/wiki/translations/it/Raytracing_Preferences.md +++ b/wiki/translations/it/Raytracing_Preferences.md @@ -1,5 +1,5 @@ # Raytracing Preferences/it - La schermata delle preferenze di [Raytracing](Raytracing_Workbench/it.md) si trova nel [Editor delle preferenze](Preferences_Editor/it.md), nel menu **Modifica → Preferenze → Raytracing**. +La schermata delle preferenze di [Raytracing](Raytracing_Workbench/it.md) si trova nel [Editor delle preferenze](Preferences_Editor/it.md), nel menu **Modifica → Preferenze → Raytracing**. C\'è solo una scheda: Raytracing. @@ -13,3 +13,6 @@ C\'è solo una scheda: Raytracing. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Preferences/it diff --git a/wiki/translations/it/Raytracing_Render.md b/wiki/translations/it/Raytracing_Render.md index ef518836a4..364b3795f6 100644 --- a/wiki/translations/it/Raytracing_Render.md +++ b/wiki/translations/it/Raytracing_Render.md @@ -1,3 +1,4 @@ +# Raytracing Render/it --- - GuiCommand:/it Name:Raytracing Render Name/it:Render MenuLocation:Raytracing → Render‏‎ |Workbenches:[[Raytracing_Workbench/it Raytracing]]|Shortcut: SeeAlso:--- @@ -43,4 +44,7 @@ Attualmente sono supportati solo POV-Ray e LuxRender. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Render/it diff --git a/wiki/translations/it/Raytracing_ResetCamera.md b/wiki/translations/it/Raytracing_ResetCamera.md index adfc20c572..c5290cb127 100644 --- a/wiki/translations/it/Raytracing_ResetCamera.md +++ b/wiki/translations/it/Raytracing_ResetCamera.md @@ -1,3 +1,4 @@ +# Raytracing ResetCamera/it --- - GuiCommand:/it Name:Raytracing ResetCamera Name/it:ResetCamera MenuLocation:Raytracing → ResetCamera |Workbenches:[[Raytracing_Workbench/it Raytracing]]|Shortcut: SeeAlso:--- @@ -61,4 +62,7 @@ Imposta la fotocamera del progetto raytracing selezionato secondo la vista corre {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing ResetCamera/it diff --git a/wiki/translations/it/Raytracing_Workbench.md b/wiki/translations/it/Raytracing_Workbench.md index 58d5f39284..43c4207b2a 100644 --- a/wiki/translations/it/Raytracing_Workbench.md +++ b/wiki/translations/it/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/it - - - **L'ambiente Raytracing è essenzialmente obsoleto. Nuovi sviluppi stanno avvenendo nel [https://github.com/FreeCAD/FreeCAD-render Render Workbench], che è inteso come suo sostituto. Questo ambiente è completamente programmato in Python, quindi è molto più facile da estendere. Tuttavia, le informazioni in questa pagina sono generalmente utili anche per il nuovo ambiente, poiché entrambi i moduli funzionano sostanzialmente allo stesso modo. @@ -155,3 +152,6 @@ Queste pagine si riferiscono all\'ambiente in sostituzione, programmato in C++, }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/it diff --git a/wiki/translations/it/Raytracing_WriteCamera.md b/wiki/translations/it/Raytracing_WriteCamera.md index f5d40b8a75..72f972991f 100644 --- a/wiki/translations/it/Raytracing_WriteCamera.md +++ b/wiki/translations/it/Raytracing_WriteCamera.md @@ -1,3 +1,4 @@ +# Raytracing WriteCamera/it --- - GuiCommand:/it Name:Raytracing Camera‏‎ Name/it:Camera MenuLocation:Raytracing → Camera‏‎ |Workbenches:[[Raytracing_Workbench/it Raytracing]]|Shortcut: SeeAlso:--- @@ -35,4 +36,7 @@ Esporta le proprietà correnti della fotocamera in un file POV da usare in un pr {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteCamera/it diff --git a/wiki/translations/it/Raytracing_WritePart.md b/wiki/translations/it/Raytracing_WritePart.md index 346e55ee56..f741f7b5e1 100644 --- a/wiki/translations/it/Raytracing_WritePart.md +++ b/wiki/translations/it/Raytracing_WritePart.md @@ -1,3 +1,4 @@ +# Raytracing WritePart/it --- - GuiCommand:/it Name:Raytracing Part‏‎ Name/it:Part‏‎ MenuLocation:Raytracing → Utilità → Esporta la parte in POV-Ray‏‎ |Workbenches:[[Raytracing_Workbench/it Raytracing]]|Shortcut: SeeAlso:--- @@ -35,4 +36,7 @@ Esporta la parte selezionata in un file POV da usare in un progetto POV-Ray. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WritePart/it diff --git a/wiki/translations/it/Raytracing_WriteView.md b/wiki/translations/it/Raytracing_WriteView.md index 2f743c1809..921c7e8f65 100644 --- a/wiki/translations/it/Raytracing_WriteView.md +++ b/wiki/translations/it/Raytracing_WriteView.md @@ -1,3 +1,4 @@ +# Raytracing WriteView/it --- - GuiCommand:/it Name:Raytracing Export Name/it:Export‏‎‏‎ MenuLocation:Raytracing → Utilità → Esporta‏‎ |Workbenches:[[Raytracing_Workbench/it Raytracing]]|Shortcut: SeeAlso:--- @@ -35,4 +36,7 @@ Esporta le proprietà della vista corrente in un file POV da usare in un progett {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteView/it diff --git a/wiki/translations/it/Raytracing_project.md b/wiki/translations/it/Raytracing_project.md index b23d91f1de..1c8a82ef6f 100644 --- a/wiki/translations/it/Raytracing_project.md +++ b/wiki/translations/it/Raytracing_project.md @@ -1,7 +1,4 @@ # Raytracing project/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -91,3 +88,6 @@ Nell\'immagine precedente è visualizzata una Parte creata da uno Schizzo di Par [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing project/it diff --git a/wiki/translations/it/Raytracing_templates.md b/wiki/translations/it/Raytracing_templates.md index ede3c0b692..5a3859d6a8 100644 --- a/wiki/translations/it/Raytracing_templates.md +++ b/wiki/translations/it/Raytracing_templates.md @@ -1,6 +1,4 @@ # Raytracing templates/it - - ## Introduzione The [Raytracing Workbench](Raytracing_Workbench.md) comes with some templates for povray and luxrender, but you can easily create your own. All you need to do is to create a scene file for the given renderer, then edit it manually with a text editor to insert special tags that FreeCAD will recognize and where it will insert its contents (camera and objects data). @@ -60,3 +58,5 @@ Note that in luxrender, the objects stored in a scene file can define transforma {{Userdocnavi/it}} +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing templates/it diff --git a/wiki/translations/it/Raytracing_tutorial.md b/wiki/translations/it/Raytracing_tutorial.md index 37bac529a7..48ab4c4189 100644 --- a/wiki/translations/it/Raytracing_tutorial.md +++ b/wiki/translations/it/Raytracing_tutorial.md @@ -1,6 +1,4 @@ # Raytracing tutorial/it - - ## Raytracing Workbench @@ -157,4 +155,7 @@ Il flusso di lavoro di base per l\'ambiente [Raytracing](Raytracing_Workbench/it {{Tutorials navi -}} {{Raytracing Tools navi}} +}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing tutorial/it diff --git a/wiki/translations/it/Recompute.md b/wiki/translations/it/Recompute.md index 4c82e23e55..b8724519e8 100644 --- a/wiki/translations/it/Recompute.md +++ b/wiki/translations/it/Recompute.md @@ -1,2 +1,5 @@ # Recompute/it 1. REDIRECT [Std Refresh/it](Std_Refresh/it.md) + +--- +[documentation index](../README.md) > Recompute/it diff --git a/wiki/translations/it/Reinforcement_API.md b/wiki/translations/it/Reinforcement_API.md index 3352b1e0d2..b6e416d774 100644 --- a/wiki/translations/it/Reinforcement_API.md +++ b/wiki/translations/it/Reinforcement_API.md @@ -1,5 +1,5 @@ # Reinforcement API/it - **(Novembre 2018) L'addon [Reinforcement](Reinforcement_Addon/it.md) è sviluppato separatamente dall'ambiente [Arch](Arch_Workbench/it.md). Il suo codice e API sono ospitati nel repository [https://github.com/amrit3701/FreeCAD-Reinforcement FreeCAD-Reinforcement], che è separato dal repository principale di FreeCAD.** +**(Novembre 2018) L'addon [Reinforcement](Reinforcement_Addon/it.md) è sviluppato separatamente dall'ambiente [Arch](Arch_Workbench/it.md). Il suo codice e API sono ospitati nel repository [https://github.com/amrit3701/FreeCAD-Reinforcement FreeCAD-Reinforcement], che è separato dal repository principale di FreeCAD.** Vedere anche [API Arch](Arch_API/it.md) per le principali funzioni di [Arch](Arch_Workbench/it.md). @@ -17,3 +17,6 @@ import HelicalRebar [Category:API](Category:API.md) [Category:Reinforcement](Category:Reinforcement.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Reinforcement API/it diff --git a/wiki/translations/it/Reinforcement_Addon.md b/wiki/translations/it/Reinforcement_Addon.md index 9a3add6362..b835c3d9a1 100644 --- a/wiki/translations/it/Reinforcement_Addon.md +++ b/wiki/translations/it/Reinforcement_Addon.md @@ -1,6 +1,4 @@ # Reinforcement Addon/it - - ## Introduzione L\'addon [Reinforcement](Reinforcement_Addon/it.md) potenzia [Arch](Arch_Workbench/it.md) fornendo nuove interfacce e preimpostazioni per la creazione di tipi di armature comuni da utilizzare con le [Strutture](Arch_Structure/it.md) di Arch. @@ -43,3 +41,6 @@ Sono in fase di sviluppo ulteriori nuovi ambienti. [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Reinforcement](Category:Reinforcement.md) > Reinforcement Addon/it diff --git a/wiki/translations/it/Reinforcement_Bar_Bending_Schedule.md b/wiki/translations/it/Reinforcement_Bar_Bending_Schedule.md index d67ec37c94..ed2e7677fc 100644 --- a/wiki/translations/it/Reinforcement_Bar_Bending_Schedule.md +++ b/wiki/translations/it/Reinforcement_Bar_Bending_Schedule.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Reinforcement Bar Bending Schedule/it +
@@ -366,3 +368,6 @@ BBSfunc.getBarBendingSchedule(
[Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Reinforcement Bar Bending Schedule/it diff --git a/wiki/translations/it/Reinforcement_Bar_Shape_Cut_List.md b/wiki/translations/it/Reinforcement_Bar_Shape_Cut_List.md index c6ecc1a538..3de71698ea 100644 --- a/wiki/translations/it/Reinforcement_Bar_Shape_Cut_List.md +++ b/wiki/translations/it/Reinforcement_Bar_Shape_Cut_List.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Reinforcement Bar Shape Cut List/it +
@@ -409,3 +411,6 @@ RebarShapeCutListfunc.getRebarShapeCutList(
[Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Reinforcement Bar Shape Cut List/it diff --git a/wiki/translations/it/Reinforcement_Workbench.md b/wiki/translations/it/Reinforcement_Workbench.md index fb194516a7..bebd1825e8 100644 --- a/wiki/translations/it/Reinforcement_Workbench.md +++ b/wiki/translations/it/Reinforcement_Workbench.md @@ -1,7 +1,4 @@ -# Reinforcement Workbench/it - - -L\'icona dell\'ambiente Reinforcement +# L\'icona dell\'ambiente Reinforcement Reinforcement Workbench/it {{TOCright}} @@ -60,3 +57,6 @@ The Reinforcement workbench is not bundled with the default FreeCAD package, but [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > Reinforcement Workbench/it diff --git a/wiki/translations/it/Release_notes_0.11.md b/wiki/translations/it/Release_notes_0.11.md index 06650f5bdd..64b27e29e6 100644 --- a/wiki/translations/it/Release_notes_0.11.md +++ b/wiki/translations/it/Release_notes_0.11.md @@ -70,3 +70,6 @@ Una schermata della versione 0.11 {{languages/it | {{en|Release_notes_0.11}} {{de|Release_notes_0.11/de}} {{es|Release_notes_0.11/es}} {{fr|Release_notes_0.11/fr}} {{pl|Release_notes_0.11/pl}} {{ru|Release_notes_0.11/ru}} }} [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.11/it diff --git a/wiki/translations/it/Release_notes_0.12.md b/wiki/translations/it/Release_notes_0.12.md index 7a0ea37669..76671add1a 100644 --- a/wiki/translations/it/Release_notes_0.12.md +++ b/wiki/translations/it/Release_notes_0.12.md @@ -50,3 +50,6 @@ Versione precedente: [0.11](Release_notes_0.11/it.md) {{languages/it | {{en|Release_notes_0.12}} {{es|Release_notes_0.12/es}} {{fr|Release_notes_0.12/fr}} {{pl|Release_notes_0.12/pl}} {{ru|Release_notes_0.12/ru}} }} [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.12/it diff --git a/wiki/translations/it/Release_notes_0.13.md b/wiki/translations/it/Release_notes_0.13.md index 88ba1d906b..da8de566a0 100644 --- a/wiki/translations/it/Release_notes_0.13.md +++ b/wiki/translations/it/Release_notes_0.13.md @@ -1,5 +1,5 @@ # Release notes 0.13/it - Questo è un riassunto dei cambiamenti più interessanti avvenuti in FreeCAD con la versione più recente. Vedere [qui](http://www.freecadweb.org/tracker/changelog_page.php) per la lista completa delle modifiche. +Questo è un riassunto dei cambiamenti più interessanti avvenuti in FreeCAD con la versione più recente. Vedere [qui](http://www.freecadweb.org/tracker/changelog_page.php) per la lista completa delle modifiche.
@@ -151,3 +151,6 @@ Le geometrie (punti, linee e curve) possono essere selezionate trascinando il mo - Per ulteriori informazioni consultare la pagina [OpenSCAD](OpenSCAD_Workbench/it.md) nel wiki di FreeCAD. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.13/it diff --git a/wiki/translations/it/Release_notes_0.14.md b/wiki/translations/it/Release_notes_0.14.md index 47cfa0eba7..d4268cb15f 100644 --- a/wiki/translations/it/Release_notes_0.14.md +++ b/wiki/translations/it/Release_notes_0.14.md @@ -1,7 +1,4 @@ # Release notes 0.14/it - - -
FreeCAD 0.14 è stato rilasciato il 1 Luglio 2014. Questo è un riassunto dei cambiamenti più interessanti. L\'elenco completo delle modifiche è disponibile in [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Versioni precedenti in: [0.13](Release_notes_0.13/it.md) - [0.12](Release_notes_0.12/it.md) - [0.11](Release_notes_0.11.md) @@ -334,3 +331,6 @@ Un nuovo [tutorial](Arch_tutorial/it.md) di 35 pagine descrive l\'ambiente Arch L\'elenco completo delle correzioni e delle nuove funzionalità può essere letto suhttp://freecadweb.org/tracker/changelog\_page.php [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.14/it diff --git a/wiki/translations/it/Release_notes_0.15.md b/wiki/translations/it/Release_notes_0.15.md index 59dc7c30eb..af683a3850 100644 --- a/wiki/translations/it/Release_notes_0.15.md +++ b/wiki/translations/it/Release_notes_0.15.md @@ -1,7 +1,4 @@ # Release notes 0.15/it - - -
FreeCAD 0.15 è stato rilasciato il giorno 8 Aprile 2015. Questo è un riassunto dei cambiamenti più interessanti. L\'elenco completo delle modifiche è disponibile in [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Versioni precedenti in: [0.14](Release_notes_0.14/it.md) - [0.13](Release_notes_0.13/it.md) - [0.12](Release_notes_0.12/it.md) - [0.11](Release_notes_0.11.md) @@ -166,3 +163,6 @@ La macro [WorkFeature](https://github.com/Rentlau/WorkFeature) aggiunge una vast [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.15/it diff --git a/wiki/translations/it/Release_notes_0.16.md b/wiki/translations/it/Release_notes_0.16.md index 75cbbcc1ed..bd63e57a07 100644 --- a/wiki/translations/it/Release_notes_0.16.md +++ b/wiki/translations/it/Release_notes_0.16.md @@ -1,7 +1,4 @@ # Release notes 0.16/it - - -
FreeCAD 0.16 è stato rilasciato il 18 aprile 2016, ed è scaricabile da [Github](https://github.com/FreeCAD/FreeCAD/releases). Questo è un riassunto dei cambiamenti più interessanti. L\'elenco completo delle modifiche è disponibile in [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Versioni precedenti in: [0.15](Release_notes_0.15/it.md) - [0.14](Release_notes_0.14/it.md) - [0.13](Release_notes_0.13/it.md) - [0.12](Release_notes_0.12/it.md) - [0.11](Release_notes_0.11.md) @@ -142,3 +139,6 @@ I membri della comunità hanno creato alcuni [ambienti aggiuntivi](https://githu ![](images/Macro_installer_02.jpg ) [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.16/it diff --git a/wiki/translations/it/Release_notes_0.17.md b/wiki/translations/it/Release_notes_0.17.md index d914d6ad18..e3dc0d15b6 100644 --- a/wiki/translations/it/Release_notes_0.17.md +++ b/wiki/translations/it/Release_notes_0.17.md @@ -1,7 +1,4 @@ # Release notes 0.17/it - - -
*Questa versione di FreeCAD è dedicata al nostro amico Roland Frank [che ci ha lasciati nel 2017](https://forum.freecadweb.org/viewtopic.php?f=8&t=25673). Era un membro attivo e ben apprezzato del forum di FreeCAD e le sue esercitazioni video su [Learn FreeCAD](https://www.youtube.com/watch?v=_HEvhclR4-o&list=PL6fZ68Cq3L8k0JhxnIVjZQN26cn9idJrj) e [BPLFRE](https://www.youtube.com/watch?v=m49z0weonog&list=PLsrwVwvqYb8G4Ri0iz1JIebsOXkgoytAY) Youtube channels hanno aiutato molte persone a fare i primi passi con FreeCAD.* @@ -323,3 +320,6 @@ Alcuni dei nuovi moduli che sono stati creati dalla comunità. - [Kicad StepUp Workbench](https://www.freecadweb.org/wiki/KicadStepUp_Workbench) ha lo scopo di aiutare gli utenti di KiCad e FreeCAD nella collaborazione ECAD e MCAD. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.17/it diff --git a/wiki/translations/it/Release_notes_0.18.md b/wiki/translations/it/Release_notes_0.18.md index 977a829759..2d6873d56b 100644 --- a/wiki/translations/it/Release_notes_0.18.md +++ b/wiki/translations/it/Release_notes_0.18.md @@ -1,6 +1,4 @@ # Release notes 0.18/it - - FreeCAD 0.18 è stato rilasciato il 12 marzo 2019, può essere scaricato dalla pagina [Download](Download/it.md). Questo è un riassunto delle modifiche più interessanti. L\'elenco completo delle modifiche è disponibile in [MantisBT bugtracker FC 0.18 changelog](https://www.freecadweb.org/tracker/changelog_page.php?version_id=78). Le note di rilascio delle precedenti versioni di FreeCAD sono disponibili nella pagina [Funzionalità di FreeCAD](Feature_list/it#Release_notes.md). @@ -222,3 +220,6 @@ Alcuni dei nuovi moduli della comunità che sono stati attivamente sviluppati du - [Defeaturing Workbench](Defeaturing_Workbench/it.md) è destinato alla modifica di modelli STEP importati, per rimuovere dal modello le funzioni selezionate. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.18/it diff --git a/wiki/translations/it/Release_notes_0.19.md b/wiki/translations/it/Release_notes_0.19.md index 30e2e1a07e..b6eca6f7b3 100644 --- a/wiki/translations/it/Release_notes_0.19.md +++ b/wiki/translations/it/Release_notes_0.19.md @@ -1,5 +1,5 @@ # Release notes 0.19/it - {{TOCright}} +{{TOCright}} **FreeCAD 0.19** was released on **March 20th, 2021**, get it from the [Download](Download.md) page. This is a summary of the most interesting changes. The complete list of changes can be found in the [MantisBT bugtracker FC 0.19 changelog](https://www.freecadweb.org/tracker/changelog_page.php?version_id=122). @@ -822,3 +822,6 @@ these are the new workbenches created in this development cycle, or older workbe +-------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.19/it diff --git a/wiki/translations/it/Release_notes_0.20.md b/wiki/translations/it/Release_notes_0.20.md index 9f1eadaf4e..7b7e2f3791 100644 --- a/wiki/translations/it/Release_notes_0.20.md +++ b/wiki/translations/it/Release_notes_0.20.md @@ -1,7 +1,4 @@ # Release notes 0.20/it - - - **This page tracks new features as they are added to the development version of FreeCAD, which is currently 0.20. When the 0.20 feature freeze happens, delete these messages, and don't add more features to this page. FreeCAD 0.20 is expected to be released in 202x.** @@ -212,3 +209,6 @@ There is also a text box for feedback of OpenSCAD errors. ### Trails, PyTrails, Turns, pivy\_trackers, and Geomatics [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.20/it diff --git a/wiki/translations/it/Release_notes_011.md b/wiki/translations/it/Release_notes_011.md index 403bfd5351..773a0308b9 100644 --- a/wiki/translations/it/Release_notes_011.md +++ b/wiki/translations/it/Release_notes_011.md @@ -1,2 +1,5 @@ # Release notes 011/it 1. REDIRECT [Release notes 0.11/it](Release_notes_0.11/it.md) + +--- +[documentation index](../README.md) > Release notes 011/it diff --git a/wiki/translations/it/Release_notes_012.md b/wiki/translations/it/Release_notes_012.md index 580eb372a2..7591410e95 100644 --- a/wiki/translations/it/Release_notes_012.md +++ b/wiki/translations/it/Release_notes_012.md @@ -1,2 +1,5 @@ # Release notes 012/it 1. REDIRECT [Release notes 0.12/it](Release_notes_0.12/it.md) + +--- +[documentation index](../README.md) > Release notes 012/it diff --git a/wiki/translations/it/Release_notes_013.md b/wiki/translations/it/Release_notes_013.md index afea37ebbb..38a0cf4d56 100644 --- a/wiki/translations/it/Release_notes_013.md +++ b/wiki/translations/it/Release_notes_013.md @@ -1,2 +1,5 @@ # Release notes 013/it 1. REDIRECT [Release\_notes\_0.13/it](Release_notes_0.13/it.md) + +--- +[documentation index](../README.md) > Release notes 013/it diff --git a/wiki/translations/it/Release_notes_016.md b/wiki/translations/it/Release_notes_016.md index 241751e9e5..f7c38f853f 100644 --- a/wiki/translations/it/Release_notes_016.md +++ b/wiki/translations/it/Release_notes_016.md @@ -1,2 +1,5 @@ # Release notes 016/it 1. REDIRECT [Release\_notes\_0.16/it](Release_notes_0.16/it.md) + +--- +[documentation index](../README.md) > Release notes 016/it diff --git a/wiki/translations/it/Release_notes_017.md b/wiki/translations/it/Release_notes_017.md index dd9c56d7c2..0bfaa2dbbb 100644 --- a/wiki/translations/it/Release_notes_017.md +++ b/wiki/translations/it/Release_notes_017.md @@ -1,2 +1,5 @@ # Release notes 017/it 1. REDIRECT [Release\_notes\_0.17/it](Release_notes_0.17/it.md) + +--- +[documentation index](../README.md) > Release notes 017/it diff --git a/wiki/translations/it/Release_process.md b/wiki/translations/it/Release_process.md index 282d2f73bf..31f9e9127b 100644 --- a/wiki/translations/it/Release_process.md +++ b/wiki/translations/it/Release_process.md @@ -1,5 +1,5 @@ # Release process/it - Questa pagina serve per raccogliere le idee e organizzare le cose in modo che i rilasci ufficiali di FreeCAD richiedano meno lavoro, e quindi possano essere più frequenti. Questo argomento è discusso in questa [discussione nel forum](http://forum.freecadweb.org/viewtopic.php?f=8&t=6441). +Questa pagina serve per raccogliere le idee e organizzare le cose in modo che i rilasci ufficiali di FreeCAD richiedano meno lavoro, e quindi possano essere più frequenti. Questo argomento è discusso in questa [discussione nel forum](http://forum.freecadweb.org/viewtopic.php?f=8&t=6441). ## Idee generali @@ -129,3 +129,6 @@ Sentitevi liberi di aggiungere altre pagine oppure di assegnarvi una o più pagi [Category:Roadmap/it](Category:Roadmap/it.md) + +--- +[documentation index](../README.md) > Release process/it diff --git a/wiki/translations/it/Render_project.md b/wiki/translations/it/Render_project.md index aa7193bb56..08164088a1 100644 --- a/wiki/translations/it/Render_project.md +++ b/wiki/translations/it/Render_project.md @@ -1,5 +1,5 @@ # Render project/it - **(2020) This page refers to an attempt to update the [Raytracing Workbench](Raytracing_Workbench.md), proposed around 2012. Its original author never completed the implementation so this information is outdated, and should not be considered current. +**(2020) This page refers to an attempt to update the [Raytracing Workbench](Raytracing_Workbench.md), proposed around 2012. Its original author never completed the implementation so this information is outdated, and should not be considered current. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], a complete Python replacement for the [Raytracing Workbench](Raytracing_Workbench.md). @@ -129,3 +129,6 @@ Vedere anche il [Tutorial di Raytracing](Raytracing_tutorial/it.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Render](Category:Render.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Render project/it diff --git a/wiki/translations/it/Report_view.md b/wiki/translations/it/Report_view.md index f82cec6c9e..5e787b9793 100644 --- a/wiki/translations/it/Report_view.md +++ b/wiki/translations/it/Report_view.md @@ -1,6 +1,4 @@ # Report view/it - - ## Introduzione La [Vista report](Report_view/it.md) è un pannello che mostra i messaggi di testo dei processi e degli strumenti di FreeCAD. È disponibile nel menu **{{StdMenu|[Visualizza](Std_View_Menu/it.md)** → Pannelli → Vista report}}. @@ -53,4 +51,7 @@ Fare clic con il tasto destro sulla vista del report per mostrare alcuni comandi {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Report view/it diff --git a/wiki/translations/it/Resource_framework_project.md b/wiki/translations/it/Resource_framework_project.md index 7a9f692fab..0483922710 100644 --- a/wiki/translations/it/Resource_framework_project.md +++ b/wiki/translations/it/Resource_framework_project.md @@ -1,7 +1,4 @@ # Resource framework project/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -125,3 +122,6 @@ Una classe di disegno per la struttura delle risorse. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Resource framework project/it diff --git a/wiki/translations/it/Reverse_Engineering_Workbench.md b/wiki/translations/it/Reverse_Engineering_Workbench.md index 4d73be8ba7..3f16432301 100644 --- a/wiki/translations/it/Reverse_Engineering_Workbench.md +++ b/wiki/translations/it/Reverse_Engineering_Workbench.md @@ -1,10 +1,4 @@ -# Reverse Engineering Workbench/it - - - - - -L\'icona di Reverse Engineering +# L\'icona di Reverse Engineering Reverse Engineering Workbench/it ## Introduction @@ -37,3 +31,6 @@ Link a thread appropriati che discutono di questo ambiente [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench/it diff --git a/wiki/translations/it/Robot_API_example.md b/wiki/translations/it/Robot_API_example.md index 155b94c7dd..6b81be7a20 100644 --- a/wiki/translations/it/Robot_API_example.md +++ b/wiki/translations/it/Robot_API_example.md @@ -1,6 +1,4 @@ # Robot API example/it - - ## Introduzione Questo esempio è basato sull\'esempio [RobotExample.py](https://github.com/FreeCAD/FreeCAD_sf_master/blob/master/src/Mod/Robot/RobotExample.py). @@ -193,3 +191,6 @@ for w in App.activeDocument().Trajectory.Trajectory.Waypoints: {{Userdocnavi/it}} [Category:Robot API](Category:Robot_API.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot API example/it diff --git a/wiki/translations/it/Robot_CreateRobot.md b/wiki/translations/it/Robot_CreateRobot.md index 0410fc1318..502d915a1a 100644 --- a/wiki/translations/it/Robot_CreateRobot.md +++ b/wiki/translations/it/Robot_CreateRobot.md @@ -1,3 +1,4 @@ +# Robot CreateRobot/it --- - GuiCommand:/it Name:Robot CreateRobot Name/it:Inserisci un robot Workbenches:[[Robot_Workbench/it Robot]]|MenuLocation:Robot → Inserisci un robot--- @@ -68,4 +69,7 @@ I robot predefiniti sono {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateRobot/it diff --git a/wiki/translations/it/Robot_CreateTrajectory.md b/wiki/translations/it/Robot_CreateTrajectory.md index 87e4e1b817..db498c1094 100644 --- a/wiki/translations/it/Robot_CreateTrajectory.md +++ b/wiki/translations/it/Robot_CreateTrajectory.md @@ -1,3 +1,4 @@ +# Robot CreateTrajectory/it --- - GuiCommand:/it Name:Robot CreateTrajectory Name/it:Crea una traiettoria Workbenches:[[Robot_Workbench/it Robot]]|MenuLocation:Robot → Crea una traiettoria--- @@ -44,4 +45,7 @@ Cliccare su Screenshots/it diff --git a/wiki/translations/it/Scripted_Parts:_Ball_Bearing_-_Part_1.md b/wiki/translations/it/Scripted_Parts:_Ball_Bearing_-_Part_1.md index 3d035885ba..5b89d399a0 100644 --- a/wiki/translations/it/Scripted_Parts:_Ball_Bearing_-_Part_1.md +++ b/wiki/translations/it/Scripted_Parts:_Ball_Bearing_-_Part_1.md @@ -1,5 +1,5 @@ # Scripted Parts: Ball Bearing - Part 1/it - {{TutorialInfo/it +{{TutorialInfo/it |Topic= Parti con script - Cuscinetto a sfere #1 |Level= Base |Time= 30 min @@ -141,3 +141,6 @@ Gui.SendMsgToActiveView("ViewFit") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted Parts: Ball Bearing - Part 1/it diff --git a/wiki/translations/it/Scripted_Parts:_Ball_Bearing_-_Part_2.md b/wiki/translations/it/Scripted_Parts:_Ball_Bearing_-_Part_2.md index 116a03a023..5d6c3c0701 100644 --- a/wiki/translations/it/Scripted_Parts:_Ball_Bearing_-_Part_2.md +++ b/wiki/translations/it/Scripted_Parts:_Ball_Bearing_-_Part_2.md @@ -1,5 +1,5 @@ # Scripted Parts: Ball Bearing - Part 2/it - {{TutorialInfo/it +{{TutorialInfo/it |Topic= Parti con script - Cuscinetto a sfere - #2 |Level= Base |Time= 30 min @@ -190,3 +190,6 @@ Gui.SendMsgToActiveView("ViewFit") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted Parts: Ball Bearing - Part 2/it diff --git a/wiki/translations/it/Scripted_objects.md b/wiki/translations/it/Scripted_objects.md index ccc9f968dd..5f05f7bbe6 100644 --- a/wiki/translations/it/Scripted_objects.md +++ b/wiki/translations/it/Scripted_objects.md @@ -1,7 +1,4 @@ # Scripted objects/it - - - {{TOCright}} ## Introduction @@ -934,3 +931,6 @@ Oltre agli esempi presentati qui dare un\'occhiata al codice sorgente di FreeCAD }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects/it diff --git a/wiki/translations/it/Scripted_objects_migration.md b/wiki/translations/it/Scripted_objects_migration.md index 28d94f5b76..9c60ab0fe2 100644 --- a/wiki/translations/it/Scripted_objects_migration.md +++ b/wiki/translations/it/Scripted_objects_migration.md @@ -1,6 +1,4 @@ # Scripted objects migration/it - - ## Introduzione Gli [oggetti creati con script](Scripted_objects/it.md) vengono ricostruiti ogni volta che viene aperto un documento FCStd. Per fare ciò il documento mantiene un riferimento al modulo e alla classe Python che sono stati usati per creare l\'oggetto, insieme alle sue proprietà. @@ -555,3 +553,6 @@ Preferably avoid the following: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects migration/it diff --git a/wiki/translations/it/Scripted_objects_saving_attributes.md b/wiki/translations/it/Scripted_objects_saving_attributes.md index 60f34a3e72..294cf21ce5 100644 --- a/wiki/translations/it/Scripted_objects_saving_attributes.md +++ b/wiki/translations/it/Scripted_objects_saving_attributes.md @@ -1,7 +1,4 @@ # Scripted objects saving attributes/it - - - {{TOCright}} ## Introduzione @@ -191,3 +188,6 @@ class CustomObject: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects saving attributes/it diff --git a/wiki/translations/it/Scripted_objects_with_attachment.md b/wiki/translations/it/Scripted_objects_with_attachment.md index 25dab023a1..409d71aad5 100644 --- a/wiki/translations/it/Scripted_objects_with_attachment.md +++ b/wiki/translations/it/Scripted_objects_with_attachment.md @@ -1,5 +1,5 @@ # Scripted objects with attachment/it - {{TOCright}} +{{TOCright}} ## Introduzione @@ -155,3 +155,6 @@ Note: For FreeCAD 0.19 this tutorial needs a minor update: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects with attachment/it diff --git a/wiki/translations/it/Scripting.md b/wiki/translations/it/Scripting.md index 2ab8b608c7..11284df211 100644 --- a/wiki/translations/it/Scripting.md +++ b/wiki/translations/it/Scripting.md @@ -1,2 +1,5 @@ # Scripting/it 1. REDIRECT [Power users hub/it](Power_users_hub/it.md) + +--- +[documentation index](../README.md) > Scripting/it diff --git a/wiki/translations/it/Scripting_and_macros.md b/wiki/translations/it/Scripting_and_macros.md index d2d8fc3fd8..4040339c97 100644 --- a/wiki/translations/it/Scripting_and_macros.md +++ b/wiki/translations/it/Scripting_and_macros.md @@ -1,9 +1,4 @@ # Scripting and macros/it - - - - - ## Overview of Python scripting pages - Python related pages in the Manual: @@ -96,3 +91,6 @@ }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripting and macros/it diff --git a/wiki/translations/it/Scripting_examples.md b/wiki/translations/it/Scripting_examples.md index 2a65bc2cb5..e3615c45f3 100644 --- a/wiki/translations/it/Scripting_examples.md +++ b/wiki/translations/it/Scripting_examples.md @@ -1,2 +1,5 @@ # Scripting examples/it 1. REDIRECT [Scripting\_and\_macros/it](Scripting_and_macros/it.md) + +--- +[documentation index](../README.md) > Scripting examples/it diff --git a/wiki/translations/it/Scripts.md b/wiki/translations/it/Scripts.md index 5157e0d290..6e1003f7c9 100644 --- a/wiki/translations/it/Scripts.md +++ b/wiki/translations/it/Scripts.md @@ -1,5 +1,5 @@ # Scripts/it - {{TutorialInfo/it +{{TutorialInfo/it |Topic=Scripting |Level=Base |Time= @@ -348,3 +348,6 @@ Questo è il significato dell\'aggettivo \"delicato\" che ho usato precedentemen }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripts/it diff --git a/wiki/translations/it/Selection_API.md b/wiki/translations/it/Selection_API.md index 8ade7f2d27..354b918ab5 100644 --- a/wiki/translations/it/Selection_API.md +++ b/wiki/translations/it/Selection_API.md @@ -1,5 +1,5 @@ # Selection API/it - **(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** +**(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** Il sottomodulo Selection fa parte del modulo FreeCADGui. Esempio: ```python @@ -29,3 +29,6 @@ sel = FreeCADGui.Selection.getSelection() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Selection API/it diff --git a/wiki/translations/it/Selection_methods.md b/wiki/translations/it/Selection_methods.md index e1710dd1ca..bcee60c152 100644 --- a/wiki/translations/it/Selection_methods.md +++ b/wiki/translations/it/Selection_methods.md @@ -1,10 +1,4 @@ # Selection methods/it - - - - - - {{TOCright}} ## Presentazione @@ -86,8 +80,5 @@ Gui.Selection.addSelectionGate("SELECT Part::Feature SUBELEMENT Edge") Vedere nella [Documentazione del codice sorgente](Source_documentation/it.md) e nella [Documentazione dei moduli Python](Std_PythonHelp/it.md) per ulteriori aiuti sull\'uso di questi strumenti. - - - - - +--- +[documentation index](../README.md) > Selection methods/it diff --git a/wiki/translations/it/Selection_view.md b/wiki/translations/it/Selection_view.md index a4ca32b185..fe5445371c 100644 --- a/wiki/translations/it/Selection_view.md +++ b/wiki/translations/it/Selection_view.md @@ -1,6 +1,4 @@ # Selection view/it - - ## Introduzione @@ -79,4 +77,7 @@ Starting from v0.19, the **picked object list** checkbox is available. If this i {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Selection view/it diff --git a/wiki/translations/it/Shape.md b/wiki/translations/it/Shape.md index 9cf1943157..13ddf7c153 100644 --- a/wiki/translations/it/Shape.md +++ b/wiki/translations/it/Shape.md @@ -1,6 +1,4 @@ # Shape/it - - ## Introduzione In FreeCAD the word \"[Shape](Shape.md)\" is normally used to refer to a [Part TopoShape](Part_TopoShape.md) (`Part::TopoShape` class), a type of object that gives an element its 3D geometrical and parametric representation (cube, pyramid, sphere, cylinder, fusion, etc.). @@ -36,3 +34,6 @@ However, when more precision is required, the distinction must be made. {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Shape/it diff --git a/wiki/translations/it/SheetMetal_AddJunction.md b/wiki/translations/it/SheetMetal_AddJunction.md index e7d201201f..05dd12612b 100644 --- a/wiki/translations/it/SheetMetal_AddJunction.md +++ b/wiki/translations/it/SheetMetal_AddJunction.md @@ -9,6 +9,8 @@ SeeAlso: --- +# SheetMetal AddJunction/it +
@@ -120,3 +122,6 @@ A SheetMetal Junction object is derived from a [Part Feature](Part_Feature.md) o
[Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddJunction/it diff --git a/wiki/translations/it/SheetMetal_AddRelief.md b/wiki/translations/it/SheetMetal_AddRelief.md index 39c5ab2ee2..90b0aa2f12 100644 --- a/wiki/translations/it/SheetMetal_AddRelief.md +++ b/wiki/translations/it/SheetMetal_AddRelief.md @@ -9,6 +9,8 @@ SeeAlso: --- +# SheetMetal AddRelief/it +
@@ -107,3 +109,6 @@ A SheetMetal Relief object is derived from a [Part Feature](Part_Feature.md) obj
[Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddRelief/it diff --git a/wiki/translations/it/SheetMetal_AddWall.md b/wiki/translations/it/SheetMetal_AddWall.md index 88bda01639..30d93c11a4 100644 --- a/wiki/translations/it/SheetMetal_AddWall.md +++ b/wiki/translations/it/SheetMetal_AddWall.md @@ -9,6 +9,8 @@ SeeAlso: --- +# SheetMetal AddWall/it +
@@ -239,3 +241,6 @@ Done!
[Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal AddWall/it diff --git a/wiki/translations/it/SheetMetal_Extrude.md b/wiki/translations/it/SheetMetal_Extrude.md index 1c9c6b47e2..d2761f7636 100644 --- a/wiki/translations/it/SheetMetal_Extrude.md +++ b/wiki/translations/it/SheetMetal_Extrude.md @@ -9,6 +9,8 @@ SeeAlso: --- +# SheetMetal Extrude/it +
@@ -119,3 +121,6 @@ A SheetMetal Extend object is derived from a [Part Feature](Part_Feature.md) obj
[Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal Extrude/it diff --git a/wiki/translations/it/SheetMetal_Unfold.md b/wiki/translations/it/SheetMetal_Unfold.md index f49b21a94e..a29b3a052f 100644 --- a/wiki/translations/it/SheetMetal_Unfold.md +++ b/wiki/translations/it/SheetMetal_Unfold.md @@ -9,6 +9,8 @@ SeeAlso:[Aggiorna dispiegatura](SheetMetal_UnfoldUpdate/it.md) --- +# SheetMetal Unfold/it +
@@ -54,3 +56,6 @@ The **Unfold** object, on the other hand, is derived from a [Part Feature](Part_ [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [SheetMetal](Category:SheetMetal.md) > SheetMetal Unfold/it diff --git a/wiki/translations/it/SheetMetal_Workbench.md b/wiki/translations/it/SheetMetal_Workbench.md index 9ef772d9b0..93bf7ec585 100644 --- a/wiki/translations/it/SheetMetal_Workbench.md +++ b/wiki/translations/it/SheetMetal_Workbench.md @@ -1,8 +1,4 @@ # SheetMetal Workbench/it - - - -
Icona dell\'ambiente esterno SheetMetal @@ -411,3 +407,6 @@ Come fare ? - Codice sorgente su github: [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > SheetMetal Workbench/it diff --git a/wiki/translations/it/Ship_Area.md b/wiki/translations/it/Ship_Area.md index 52c9353ed8..af3bc554f0 100644 --- a/wiki/translations/it/Ship_Area.md +++ b/wiki/translations/it/Ship_Area.md @@ -1,3 +1,4 @@ +# Ship Area/it --- - GuiCommand:/it Name:Ship Area Name/it:Area MenuLocation:Ship design → Curva delle sezioni |Workbenches:[[Ship_Workbench/it Ship]]|Shortcut: SeeAlso:--- @@ -29,4 +30,7 @@ Plot the transversal areas curve {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Area/it diff --git a/wiki/translations/it/Ship_Geometries_Examples.md b/wiki/translations/it/Ship_Geometries_Examples.md index e1c1101f79..27e81d4002 100644 --- a/wiki/translations/it/Ship_Geometries_Examples.md +++ b/wiki/translations/it/Ship_Geometries_Examples.md @@ -1,3 +1,4 @@ +# Ship Geometries Examples/it --- - GuiCommand:/it Name:Ship Load‏‎ Example Name/it:Carica esempio MenuLocation:Ship design → Carica un esempio di geometria di una nave |Workbenches:[[Ship Workbench/it Ship]]|Shortcut: SeeAlso:--- @@ -94,4 +95,7 @@ Eseguendo lo strumento (Caricare una geometria modello di nave) si apre una fine {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Geometries Examples/it diff --git a/wiki/translations/it/Ship_Hydrostatics.md b/wiki/translations/it/Ship_Hydrostatics.md index 52c284655e..b621e776dc 100644 --- a/wiki/translations/it/Ship_Hydrostatics.md +++ b/wiki/translations/it/Ship_Hydrostatics.md @@ -1,3 +1,4 @@ +# Ship Hydrostatics/it --- - GuiCommand:/it Name:Ship Hydrostatics Name/it:Idrostatica MenuLocation:Ship design → Idrostatica |Workbenches:[[Ship Workbench/it Ship]]|Shortcut: SeeAlso:--- @@ -37,4 +38,7 @@ When the Hydrostatics tool is executed, a task dialog is shown. Usually Hydrosta {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Hydrostatics/it diff --git a/wiki/translations/it/Ship_Loading.md b/wiki/translations/it/Ship_Loading.md index d2421d1fff..3c2a45d867 100644 --- a/wiki/translations/it/Ship_Loading.md +++ b/wiki/translations/it/Ship_Loading.md @@ -1,3 +1,4 @@ +# Ship Loading/it --- - GuiCommand:/it Name:Ship Loading Name/it:Carico MenuLocation:Weights → Crea una nuova condizione di carico |Workbenches:[[Ship Workbench/it Ship]]|Shortcut: SeeAlso:--- @@ -16,9 +17,5 @@ Da fare {{Ship Tools navi/it}} - - - - - - +--- +[documentation index](../README.md) > Ship Loading/it diff --git a/wiki/translations/it/Ship_New.md b/wiki/translations/it/Ship_New.md index dbcd3de81c..42c0cd87f7 100644 --- a/wiki/translations/it/Ship_New.md +++ b/wiki/translations/it/Ship_New.md @@ -1,3 +1,4 @@ +# Ship New/it --- - GuiCommand:/it Name:Ship New Name/it:Nuova‏‎ MenuLocation:Ship design → Crea una nuova nave |Workbenches:[[Ship Workbench/it Ship]]|Shortcut: SeeAlso:--- @@ -114,4 +115,7 @@ Da questo punto in poi, è necessario che **Ship** sia sempre selezionata prima {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship New/it diff --git a/wiki/translations/it/Ship_Outline.md b/wiki/translations/it/Ship_Outline.md index 96c20a1ace..779595b683 100644 --- a/wiki/translations/it/Ship_Outline.md +++ b/wiki/translations/it/Ship_Outline.md @@ -1,3 +1,4 @@ +# Ship Outline/it --- - GuiCommand:/it Name:Ship Outline Name/it:Contorno MenuLocation:Ship design → Disegno del contorno |Workbenches:[[Ship Workbench/it Ship]]|Shortcut: SeeAlso:--- @@ -142,4 +143,7 @@ La lettura di queste guide permette di conoscere il funzionamento di questo modu {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Outline/it diff --git a/wiki/translations/it/Ship_PlotGZ.md b/wiki/translations/it/Ship_PlotGZ.md index 430af4eecc..9e18110159 100644 --- a/wiki/translations/it/Ship_PlotGZ.md +++ b/wiki/translations/it/Ship_PlotGZ.md @@ -1,3 +1,4 @@ +# Ship PlotGZ/it --- - GuiCommand:/it Name:Ship PlotGZ Name/it:Curve GZ MenuLocation:Weights → Calcola le curve GZ |Workbenches:[[Ship Workbench/it Ship]]|Shortcut: SeeAlso:--- @@ -16,9 +17,5 @@ Da fare {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship PlotGZ/it diff --git a/wiki/translations/it/Ship_TankCapacity.md b/wiki/translations/it/Ship_TankCapacity.md index 750fbf4e18..15ae794344 100644 --- a/wiki/translations/it/Ship_TankCapacity.md +++ b/wiki/translations/it/Ship_TankCapacity.md @@ -1,3 +1,4 @@ +# Ship TankCapacity/it --- - GuiCommand:/it Name:Ship TankCapacity Name/it:Capacità serbatoio MenuLocation:Weights → Curva di capacità del serbatoio |Workbenches:[[Ship Workbench/it Ship]]|Shortcut: SeeAlso:--- @@ -16,9 +17,5 @@ Da fare {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship TankCapacity/it diff --git a/wiki/translations/it/Ship_TankNew.md b/wiki/translations/it/Ship_TankNew.md index 776e9c857f..43026ab94a 100644 --- a/wiki/translations/it/Ship_TankNew.md +++ b/wiki/translations/it/Ship_TankNew.md @@ -1,3 +1,4 @@ +# Ship TankNew/it --- - GuiCommand:/it Name:Ship TankNew Name/it:Nuovo serbatoio MenuLocation:Weights → Crea un nuovo serbatoio |Workbenches:[[Ship Workbench/it Ship]]|Shortcut: SeeAlso:--- @@ -16,9 +17,5 @@ Da fare {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship TankNew/it diff --git a/wiki/translations/it/Ship_Weight.md b/wiki/translations/it/Ship_Weight.md index 9a97271071..2e7efd86fe 100644 --- a/wiki/translations/it/Ship_Weight.md +++ b/wiki/translations/it/Ship_Weight.md @@ -1,3 +1,4 @@ +# Ship Weight/it --- - GuiCommand:/it Name:Ship Weight Name/it:Peso MenuLocation:Weights → Create a new ship weight |Workbenches:[[Ship Workbench/it Ship]]|Shortcut: SeeAlso:--- @@ -16,9 +17,5 @@ Da fare {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship Weight/it diff --git a/wiki/translations/it/Ship_Workbench.md b/wiki/translations/it/Ship_Workbench.md index 3706a79e5d..6a54d7c4c8 100644 --- a/wiki/translations/it/Ship_Workbench.md +++ b/wiki/translations/it/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/it - - -L\'icona dell\'ambiente Ship +# L\'icona dell\'ambiente Ship Ship Workbench/it {{TOCright}} @@ -67,3 +64,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/it diff --git a/wiki/translations/it/Silk_Workbench.md b/wiki/translations/it/Silk_Workbench.md index 66b7d48c50..a35325e592 100644 --- a/wiki/translations/it/Silk_Workbench.md +++ b/wiki/translations/it/Silk_Workbench.md @@ -1,5 +1,5 @@ # Silk Workbench/it - } +} *align=center|L'icona dell'ambiente aggiuntivo Silk* ## Descrizione @@ -27,3 +27,6 @@ Si consiglia di installarlo tramite Silk Workbench/it diff --git a/wiki/translations/it/Sketch.md b/wiki/translations/it/Sketch.md index b0cf86f4d8..2bd3d9ec3c 100644 --- a/wiki/translations/it/Sketch.md +++ b/wiki/translations/it/Sketch.md @@ -1,6 +1,4 @@ # Sketch/it - - ## Introduzione @@ -39,3 +37,6 @@ Tuttavia, uno schizzo può sempre essere creato da solo per qualsiasi altro scop }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Sketch/it diff --git a/wiki/translations/it/Sketcher_BSplineApproximate.md b/wiki/translations/it/Sketcher_BSplineApproximate.md index 0f7190a9eb..68f6827232 100644 --- a/wiki/translations/it/Sketcher_BSplineApproximate.md +++ b/wiki/translations/it/Sketcher_BSplineApproximate.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Create B-spline](Sketcher_CompCreateBSpline.md) --- +# Sketcher BSplineApproximate/it + ## Description Converts compatible geometry, edges and curves, into a B-spline (see [this page](B-Splines.md) for more info about B-splines). @@ -29,4 +31,7 @@ Make sure to have either the spline [degree](Sketcher_BSplineDegree.md), [polygo {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineApproximate/it diff --git a/wiki/translations/it/Sketcher_BSplineComb.md b/wiki/translations/it/Sketcher_BSplineComb.md index 11fb45f4dd..7aaeab2f4d 100644 --- a/wiki/translations/it/Sketcher_BSplineComb.md +++ b/wiki/translations/it/Sketcher_BSplineComb.md @@ -8,6 +8,8 @@ SeeAlso=[Crea B-spline](Sketcher_CompCreateBSpline/it.md) --- +# Sketcher BSplineComb/it +
@@ -49,4 +51,7 @@ The curvature comb indicates the curvature (value of the second-order derivative {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineComb/it diff --git a/wiki/translations/it/Sketcher_BSplineConvertToNURB.md b/wiki/translations/it/Sketcher_BSplineConvertToNURB.md index a1a6f95751..1dabaecc14 100644 --- a/wiki/translations/it/Sketcher_BSplineConvertToNURB.md +++ b/wiki/translations/it/Sketcher_BSplineConvertToNURB.md @@ -1,2 +1,5 @@ # Sketcher BSplineConvertToNURB/it 1. REDIRECT [Sketcher\_BSplineApproximate](Sketcher_BSplineApproximate.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineConvertToNURB/it diff --git a/wiki/translations/it/Sketcher_BSplineDecreaseKnotMultiplicity.md b/wiki/translations/it/Sketcher_BSplineDecreaseKnotMultiplicity.md index a42ea43816..f6235115a4 100644 --- a/wiki/translations/it/Sketcher_BSplineDecreaseKnotMultiplicity.md +++ b/wiki/translations/it/Sketcher_BSplineDecreaseKnotMultiplicity.md @@ -8,6 +8,8 @@ SeeAlso:[Crea B-spline](Sketcher_CompCreateBSpline/it.md) --- +# Sketcher BSplineDecreaseKnotMultiplicity/it + @@ -76,4 +78,7 @@ One can see that the spline with knot multiplicity 1 is completely changed while {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineDecreaseKnotMultiplicity/it diff --git a/wiki/translations/it/Sketcher_BSplineDegree.md b/wiki/translations/it/Sketcher_BSplineDegree.md index 88eb100b58..7bd8c8e380 100644 --- a/wiki/translations/it/Sketcher_BSplineDegree.md +++ b/wiki/translations/it/Sketcher_BSplineDegree.md @@ -8,6 +8,8 @@ SeeAlso=[Crea B-spline](Sketcher_CompCreateBSpline/it.md) --- +# Sketcher BSplineDegree/it + @@ -45,4 +47,7 @@ Mostra o nasconde la visualizzazione del **grado** di una B-spline (vedere: [B-s {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineDegree/it diff --git a/wiki/translations/it/Sketcher_BSplineIncreaseDegree.md b/wiki/translations/it/Sketcher_BSplineIncreaseDegree.md index fe516bbdc3..91865596cc 100644 --- a/wiki/translations/it/Sketcher_BSplineIncreaseDegree.md +++ b/wiki/translations/it/Sketcher_BSplineIncreaseDegree.md @@ -8,6 +8,8 @@ SeeAlso:[Crea B-spline](Sketcher_CompCreateBSpline/it.md) --- +# Sketcher BSplineIncreaseDegree/it + @@ -65,4 +67,7 @@ You can see that now each segment has 2 control points and the knots are coincid {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineIncreaseDegree/it diff --git a/wiki/translations/it/Sketcher_BSplineIncreaseKnotMultiplicity.md b/wiki/translations/it/Sketcher_BSplineIncreaseKnotMultiplicity.md index f4cdfc30a7..a8c9388fdf 100644 --- a/wiki/translations/it/Sketcher_BSplineIncreaseKnotMultiplicity.md +++ b/wiki/translations/it/Sketcher_BSplineIncreaseKnotMultiplicity.md @@ -8,6 +8,8 @@ SeeAlso:[Crea B-spline](Sketcher_CompCreateBSpline/it.md) --- +# Sketcher BSplineIncreaseKnotMultiplicity/it + @@ -64,4 +66,7 @@ One can see that the spline with knot multiplicity 1 is completely changed while {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineIncreaseKnotMultiplicity/it diff --git a/wiki/translations/it/Sketcher_BSplineKnotMultiplicity.md b/wiki/translations/it/Sketcher_BSplineKnotMultiplicity.md index 9c5687d1c4..fbe9f2a6d6 100644 --- a/wiki/translations/it/Sketcher_BSplineKnotMultiplicity.md +++ b/wiki/translations/it/Sketcher_BSplineKnotMultiplicity.md @@ -8,6 +8,8 @@ SeeAlso=[Crea B-spline](Sketcher_CompCreateBSpline/it.md) --- +# Sketcher BSplineKnotMultiplicity/it + @@ -46,4 +48,7 @@ Mostra o nasconde la visualizzazione della molteplicità di nodi di una curva B- {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineKnotMultiplicity/it diff --git a/wiki/translations/it/Sketcher_BSplinePoleWeight.md b/wiki/translations/it/Sketcher_BSplinePoleWeight.md index 62f44a8a68..b59a738ac4 100644 --- a/wiki/translations/it/Sketcher_BSplinePoleWeight.md +++ b/wiki/translations/it/Sketcher_BSplinePoleWeight.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Create B-spline](Sketcher_CompCreateBSpline.md) --- +# Sketcher BSplinePoleWeight/it + ## Description Shows or hides the display of the **weights** for the control points of a B-spline curve (see [below](#Weight_Explanation.md) for an explanation of weights). @@ -58,4 +60,7 @@ How to change weights is described in [ this Wiki page](B-Splines#Changing_the_W {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplinePoleWeight/it diff --git a/wiki/translations/it/Sketcher_BSplinePolygon.md b/wiki/translations/it/Sketcher_BSplinePolygon.md index b29b27ac94..9e530a0465 100644 --- a/wiki/translations/it/Sketcher_BSplinePolygon.md +++ b/wiki/translations/it/Sketcher_BSplinePolygon.md @@ -8,6 +8,8 @@ SeeAlso=[Crea B-spline](Sketcher_CompCreateBSpline/it.md) --- +# Sketcher BSplinePolygon/it + @@ -45,4 +47,7 @@ Mostra o nasconde la visualizzazione del poligono di definizione di una B-spline {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplinePolygon/it diff --git a/wiki/translations/it/Sketcher_CarbonCopy.md b/wiki/translations/it/Sketcher_CarbonCopy.md index 740238570a..a882fa9c14 100644 --- a/wiki/translations/it/Sketcher_CarbonCopy.md +++ b/wiki/translations/it/Sketcher_CarbonCopy.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Sketcher CarbonCopy/it + ## Descrizione Lo strumento **Copia carbone** copia tutta la geometria e i vincoli di un altro schizzo nello schizzo attivo. @@ -56,4 +58,7 @@ I vincoli dimensionali che esistono prima della funzione di copia rimangono coll {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CarbonCopy/it diff --git a/wiki/translations/it/Sketcher_Clone.md b/wiki/translations/it/Sketcher_Clone.md index 3fcee2b63e..b192d64072 100644 --- a/wiki/translations/it/Sketcher_Clone.md +++ b/wiki/translations/it/Sketcher_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Copia](Sketcher_Copy/it.md), [Sketcher Sposta](Sketcher_Move/it.md) --- +# Sketcher Clone/it + @@ -37,4 +39,7 @@ Per il clone non vengono aggiunti vincoli specifici. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Clone/it diff --git a/wiki/translations/it/Sketcher_CloseShape.md b/wiki/translations/it/Sketcher_CloseShape.md index 511a67062d..3227591461 100644 --- a/wiki/translations/it/Sketcher_CloseShape.md +++ b/wiki/translations/it/Sketcher_CloseShape.md @@ -1,3 +1,4 @@ +# Sketcher CloseShape/it --- - GuiCommand:/it Name:Sketcher_CloseShape Name/it:Chiudi la forma Workbenches:[[Sketcher Workbench/it Sketcher]]|MenuLocation:Sketch → Strumenti → Chiudi la forma Shortcut: Shortcut:**Ctrl** + **Maiusc** + **S** Version:0.15--- @@ -32,4 +33,7 @@ Lo strumento collega gli elementi secondo l\'ordine di selezione, quindi cliccar {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CloseShape/it diff --git a/wiki/translations/it/Sketcher_CompConstrainRadDia.md b/wiki/translations/it/Sketcher_CompConstrainRadDia.md index 8112ad5e25..24b852e2b7 100644 --- a/wiki/translations/it/Sketcher_CompConstrainRadDia.md +++ b/wiki/translations/it/Sketcher_CompConstrainRadDia.md @@ -1,5 +1,5 @@ # Sketcher CompConstrainRadDia/it - {{GuiCommand/it +{{GuiCommand/it |Name=Sketcher constrain an arc or a circle |Name/it=Vincola un arco o un cerchio |Workbenches=[Sketcher](Sketcher_Workbench/it.md) @@ -18,4 +18,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompConstrainRadDia/it diff --git a/wiki/translations/it/Sketcher_CompCopy.md b/wiki/translations/it/Sketcher_CompCopy.md index 7b39ad3b5d..d38f3c5de9 100644 --- a/wiki/translations/it/Sketcher_CompCopy.md +++ b/wiki/translations/it/Sketcher_CompCopy.md @@ -1,5 +1,5 @@ # Sketcher CompCopy/it - {{GuiCommand/it +{{GuiCommand/it |Name=Clone, copy or move a geometrie |Name/it=Clona, copia o sposta una geometria |Workbenches=[Sketcher](Sketcher_Workbench/it.md) @@ -19,4 +19,7 @@ Clona, copia o sposta una geometria. Fare clic sulla freccia giù alla sua destr {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCopy/it diff --git a/wiki/translations/it/Sketcher_CompCreateArc.md b/wiki/translations/it/Sketcher_CompCreateArc.md index 4a298cdd04..ce65f5342f 100644 --- a/wiki/translations/it/Sketcher_CompCreateArc.md +++ b/wiki/translations/it/Sketcher_CompCreateArc.md @@ -7,6 +7,8 @@ MenuLocation:Nessuno (solo sulla barra degli strumenti) --- +# Sketcher CompCreateArc/it + @@ -31,4 +33,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateArc/it diff --git a/wiki/translations/it/Sketcher_CompCreateBSpline.md b/wiki/translations/it/Sketcher_CompCreateBSpline.md index d8be79270e..85b7fd43c6 100644 --- a/wiki/translations/it/Sketcher_CompCreateBSpline.md +++ b/wiki/translations/it/Sketcher_CompCreateBSpline.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Sketcher CompCreateBSpline/it + @@ -50,4 +52,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateBSpline/it diff --git a/wiki/translations/it/Sketcher_CompCreateCircle.md b/wiki/translations/it/Sketcher_CompCreateCircle.md index 2dbae59e03..b143777f9e 100644 --- a/wiki/translations/it/Sketcher_CompCreateCircle.md +++ b/wiki/translations/it/Sketcher_CompCreateCircle.md @@ -7,6 +7,8 @@ MenuLocation:Nessuno (solo sulla barra degli strumenti) --- +# Sketcher CompCreateCircle/it + @@ -31,4 +33,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateCircle/it diff --git a/wiki/translations/it/Sketcher_CompCreateConic.md b/wiki/translations/it/Sketcher_CompCreateConic.md index 4bee8f8933..c9b01c5d32 100644 --- a/wiki/translations/it/Sketcher_CompCreateConic.md +++ b/wiki/translations/it/Sketcher_CompCreateConic.md @@ -7,6 +7,8 @@ MenuLocation:Nessuno (solo sulla barra degli strumenti) --- +# Sketcher CompCreateConic/it + @@ -40,4 +42,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateConic/it diff --git a/wiki/translations/it/Sketcher_CompCreateRegularPolygon.md b/wiki/translations/it/Sketcher_CompCreateRegularPolygon.md index f6133139c3..76aed41081 100644 --- a/wiki/translations/it/Sketcher_CompCreateRegularPolygon.md +++ b/wiki/translations/it/Sketcher_CompCreateRegularPolygon.md @@ -7,6 +7,8 @@ MenuLocation:Nessuno (solo nella barra degli strumenti) --- +# Sketcher CompCreateRegularPolygon/it + @@ -36,4 +38,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateRegularPolygon/it diff --git a/wiki/translations/it/Sketcher_ConnectLines.md b/wiki/translations/it/Sketcher_ConnectLines.md index a93d949e0c..a142a1dae4 100644 --- a/wiki/translations/it/Sketcher_ConnectLines.md +++ b/wiki/translations/it/Sketcher_ConnectLines.md @@ -1,3 +1,4 @@ +# Sketcher ConnectLines/it --- - GuiCommand:/it Name:Sketcher_ConnectLines Name/it:Collega le linee Workbenches:[[Sketcher Workbench/it Sketcher]]|MenuLocation:Sketch → Strumenti → Collega le linee Shortcut:**Ctrl**+**Maiusc**+**K** Version:0.15--- @@ -44,4 +45,7 @@ Prima di utilizzare questo comando assicurarsi che agli elementi siano già appl {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConnectLines/it diff --git a/wiki/translations/it/Sketcher_ConstrainAngle.md b/wiki/translations/it/Sketcher_ConstrainAngle.md index 3eb26ab935..aeb6ef9493 100644 --- a/wiki/translations/it/Sketcher_ConstrainAngle.md +++ b/wiki/translations/it/Sketcher_ConstrainAngle.md @@ -8,6 +8,8 @@ SeeAlso:[Lunghezza](Sketcher_ConstrainDistance/it.md), [Perpendicolare](Sketcher_ConstrainPerpendicular/it.md) --- +# Sketcher ConstrainAngle/it + @@ -136,4 +138,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainAngle/it diff --git a/wiki/translations/it/Sketcher_ConstrainBlock.md b/wiki/translations/it/Sketcher_ConstrainBlock.md index d7903eef2a..e2492c343a 100644 --- a/wiki/translations/it/Sketcher_ConstrainBlock.md +++ b/wiki/translations/it/Sketcher_ConstrainBlock.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Sketcher ConstrainBlock/it + @@ -43,4 +45,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainBlock/it diff --git a/wiki/translations/it/Sketcher_ConstrainCoincident.md b/wiki/translations/it/Sketcher_ConstrainCoincident.md index bcd8533947..980f71eded 100644 --- a/wiki/translations/it/Sketcher_ConstrainCoincident.md +++ b/wiki/translations/it/Sketcher_ConstrainCoincident.md @@ -8,6 +8,8 @@ SeeAlso:[Blocca](Sketcher_ConstrainBlock/it.md), [Punto su oggetto](Sketcher_ConstrainPointOnObject/it.md) --- +# Sketcher ConstrainCoincident/it + @@ -106,4 +108,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainCoincident/it diff --git a/wiki/translations/it/Sketcher_ConstrainDiameter.md b/wiki/translations/it/Sketcher_ConstrainDiameter.md index b4faa4d5b4..2766690cfe 100644 --- a/wiki/translations/it/Sketcher_ConstrainDiameter.md +++ b/wiki/translations/it/Sketcher_ConstrainDiameter.md @@ -6,6 +6,8 @@ SeeAlso:[Distanza](Sketcher_ConstrainDistance/it.md), [Distanza orizzontale](Sketcher_ConstrainDistanceX/it.md), [Distanza verticale](Sketcher_ConstrainDistanceY/it.md) --- +# Sketcher ConstrainDiameter/it + @@ -47,4 +49,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDiameter/it diff --git a/wiki/translations/it/Sketcher_ConstrainDistance.md b/wiki/translations/it/Sketcher_ConstrainDistance.md index ff8215f6ed..592646b649 100644 --- a/wiki/translations/it/Sketcher_ConstrainDistance.md +++ b/wiki/translations/it/Sketcher_ConstrainDistance.md @@ -8,6 +8,8 @@ SeeAlso:[Distanza Orizzontale](Sketcher_ConstrainDistanceX/it.md), [Distanza Verticale](Sketcher_ConstrainDistanceY/it.md) --- +# Sketcher ConstrainDistance/it + @@ -96,4 +98,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistance/it diff --git a/wiki/translations/it/Sketcher_ConstrainDistanceX.md b/wiki/translations/it/Sketcher_ConstrainDistanceX.md index 7bd6002c75..a397c48da5 100644 --- a/wiki/translations/it/Sketcher_ConstrainDistanceX.md +++ b/wiki/translations/it/Sketcher_ConstrainDistanceX.md @@ -7,6 +7,8 @@ SeeAlso:[Distanza](Sketcher_ConstrainDistance/it.md), [Distanza verticale](Sketcher_ConstrainDistanceY/it.md) --- +# Sketcher ConstrainDistanceX/it + @@ -70,4 +72,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceX/it diff --git a/wiki/translations/it/Sketcher_ConstrainDistanceY.md b/wiki/translations/it/Sketcher_ConstrainDistanceY.md index e2fb10768e..5c353b8ea1 100644 --- a/wiki/translations/it/Sketcher_ConstrainDistanceY.md +++ b/wiki/translations/it/Sketcher_ConstrainDistanceY.md @@ -7,6 +7,8 @@ SeeAlso:[Distanza Orizzontale](Sketcher_ConstrainDistanceX/it.md), [Distanza](Sketcher_ConstrainDistance/it.md) --- +# Sketcher ConstrainDistanceY/it + @@ -70,4 +72,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceY/it diff --git a/wiki/translations/it/Sketcher_ConstrainEqual.md b/wiki/translations/it/Sketcher_ConstrainEqual.md index c1907eb9c6..fa9d752618 100644 --- a/wiki/translations/it/Sketcher_ConstrainEqual.md +++ b/wiki/translations/it/Sketcher_ConstrainEqual.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainEqual/it --- - GuiCommand:/it Name:Sketcher ConstrainEqual Name/it:Uguale Workbenches:[MenuLocation:PartDesign → Schizzo → Uguale Shortcut:E SeeAlso:[[Sketcher_ConstrainRadius/it|Raggio](Sketcher_Workbench/it___Schizzo]].md)--- @@ -101,4 +102,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainEqual/it diff --git a/wiki/translations/it/Sketcher_ConstrainHorizontal.md b/wiki/translations/it/Sketcher_ConstrainHorizontal.md index 69a2fba00c..bc3e541c89 100644 --- a/wiki/translations/it/Sketcher_ConstrainHorizontal.md +++ b/wiki/translations/it/Sketcher_ConstrainHorizontal.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainHorizontal/it --- - GuiCommand:/it Name:Constraint Horizontal Name/it:Vincolo orizzontale Workbenches:[PartDesign](Sketcher_Workbench/it___Schizzo]],_[[PartDesign_Workbench/it.md)|Shortcut:**H** MenuLocation:PartDesign → Vincoli → Orizzontale SeeAlso:[Verticale](Sketcher_ConstrainVertical/it.md)--- @@ -74,4 +75,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainHorizontal/it diff --git a/wiki/translations/it/Sketcher_ConstrainInternalAlignment.md b/wiki/translations/it/Sketcher_ConstrainInternalAlignment.md index 248faa0e12..8c5fb22524 100644 --- a/wiki/translations/it/Sketcher_ConstrainInternalAlignment.md +++ b/wiki/translations/it/Sketcher_ConstrainInternalAlignment.md @@ -9,6 +9,8 @@ Version:0.15 --- +# Sketcher ConstrainInternalAlignment/it + @@ -95,4 +97,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainInternalAlignment/it diff --git a/wiki/translations/it/Sketcher_ConstrainLock.md b/wiki/translations/it/Sketcher_ConstrainLock.md index 0a7f37cc8e..e445b57701 100644 --- a/wiki/translations/it/Sketcher_ConstrainLock.md +++ b/wiki/translations/it/Sketcher_ConstrainLock.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainLock/it --- - GuiCommand:/it Name:Sketcher ConstrainLock Name/it:Blocca Workbenches:[MenuLocation:PartDesign → Schizzo → Blocca SeeAlso:[[Sketcher ConstrainBlock/it|Fissa](Sketcher_Workbench/it___Schizzo]].md)--- @@ -44,4 +45,7 @@ The [Loc {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainLock/it diff --git a/wiki/translations/it/Sketcher_ConstrainParallel.md b/wiki/translations/it/Sketcher_ConstrainParallel.md index 94ae7e1419..de6b6af024 100644 --- a/wiki/translations/it/Sketcher_ConstrainParallel.md +++ b/wiki/translations/it/Sketcher_ConstrainParallel.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainParallel/it --- - GuiCommand:/it Name:Sketcher ConstrainParallel Name/it:Parallela Icon:Constraint Parallel.svg Workbenches:[MenuLocation:PartDesign → Schizzo → Parallela Shortcut:**Shift** + **P** SeeAlso:[[Sketcher ConstrainVertical/it|Verticale](Sketcher_Workbench/it___Schizzo]].md), [Orizzontale](Sketcher_ConstrainHorizontal/it.md)--- @@ -83,4 +84,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainParallel/it diff --git a/wiki/translations/it/Sketcher_ConstrainPerpendicular.md b/wiki/translations/it/Sketcher_ConstrainPerpendicular.md index a983913382..a41ade6dd2 100644 --- a/wiki/translations/it/Sketcher_ConstrainPerpendicular.md +++ b/wiki/translations/it/Sketcher_ConstrainPerpendicular.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainPerpendicular/it --- - GuiCommand:/it Name:Sketcher ConstrainPerpendicular Name/it:Perpendicolare Workbenches:[PartDesign](Sketcher_Workbench/it___Schizzo]],_[[PartDesign_Workbench/it.md)|MenuLocation:PartDesign → Schizzo → Perpendicolare Shortcut:**N** SeeAlso:[Angolo](Sketcher_ConstrainAngle/it.md)--- @@ -174,4 +175,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPerpendicular/it diff --git a/wiki/translations/it/Sketcher_ConstrainPointOnObject.md b/wiki/translations/it/Sketcher_ConstrainPointOnObject.md index e90b25d4a6..2cb9d29058 100644 --- a/wiki/translations/it/Sketcher_ConstrainPointOnObject.md +++ b/wiki/translations/it/Sketcher_ConstrainPointOnObject.md @@ -9,6 +9,8 @@ SeeAlso:[Coincidenza](Sketcher_ConstrainCoincident/it.md) --- +# Sketcher ConstrainPointOnObject/it + @@ -84,4 +86,7 @@ Per identificare il numero che indica le linee ed i punti si prega di fare rifer {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPointOnObject/it diff --git a/wiki/translations/it/Sketcher_ConstrainRadius.md b/wiki/translations/it/Sketcher_ConstrainRadius.md index 090262482e..4297ada9d5 100644 --- a/wiki/translations/it/Sketcher_ConstrainRadius.md +++ b/wiki/translations/it/Sketcher_ConstrainRadius.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainRadius/it --- - GuiCommand:/it Name:Sketcher_ConstrainRadius Name/it:Raggio Workbenches:[MenuLocation:Schizzo → Vincoli → Raggio SeeAlso:[[Sketcher ConstrainDistance/it|Distanza orizzontale](Sketcher_Workbench/it___Schizzo]].md), [Distanza verticale](Sketcher_ConstrainDistanceY/it.md)--- @@ -44,4 +45,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadius/it diff --git a/wiki/translations/it/Sketcher_ConstrainSnellsLaw.md b/wiki/translations/it/Sketcher_ConstrainSnellsLaw.md index cac65b0a36..80e1d42bce 100644 --- a/wiki/translations/it/Sketcher_ConstrainSnellsLaw.md +++ b/wiki/translations/it/Sketcher_ConstrainSnellsLaw.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher ConstrainSnellsLaw/it + @@ -149,4 +151,7 @@ App.ActiveDocument.recompute() {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSnellsLaw/it diff --git a/wiki/translations/it/Sketcher_ConstrainSymmetric.md b/wiki/translations/it/Sketcher_ConstrainSymmetric.md index 297068b874..3cca1cbeae 100644 --- a/wiki/translations/it/Sketcher_ConstrainSymmetric.md +++ b/wiki/translations/it/Sketcher_ConstrainSymmetric.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainSymmetric/it --- - GuiCommand:/it Name:Sketcher ConstrainSymmetric Name/it:Simmetria Workbenches:[MenuLocation:Schizzo → Vincoli → Simmetria Shortcut:S SeeAlso:[[Sketcher ConstrainParallel/it|Parallela](Sketcher_Workbench/it___Schizzo]].md)--- @@ -99,4 +100,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSymmetric/it diff --git a/wiki/translations/it/Sketcher_ConstrainTangent.md b/wiki/translations/it/Sketcher_ConstrainTangent.md index 8f983890ad..a0762f1ac8 100644 --- a/wiki/translations/it/Sketcher_ConstrainTangent.md +++ b/wiki/translations/it/Sketcher_ConstrainTangent.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Vincolo Punto su oggetto](Sketcher_ConstrainPointOnObject/it.md) --- +# Sketcher ConstrainTangent/it + ## Descrizione Il vincolo Tangente costringe due curve ad essere tangenti. Le linee sono trattate come infinite, e gli archi sono trattati come cerchi o ellissi completi. Il vincolo è anche in grado di collegare due curve costringendole ad essere tangenti nella giunzione, e quindi rende levigata la loro congiunzione. @@ -139,4 +141,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainTangent/it diff --git a/wiki/translations/it/Sketcher_ConstrainVertical.md b/wiki/translations/it/Sketcher_ConstrainVertical.md index bf5273e8c1..ec06d2ef82 100644 --- a/wiki/translations/it/Sketcher_ConstrainVertical.md +++ b/wiki/translations/it/Sketcher_ConstrainVertical.md @@ -9,6 +9,8 @@ SeeAlso:[Orizzontale](Sketcher_ConstrainHorizontal/it.md) --- +# Sketcher ConstrainVertical/it + @@ -53,4 +55,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainVertical/it diff --git a/wiki/translations/it/Sketcher_ConvertToNURB.md b/wiki/translations/it/Sketcher_ConvertToNURB.md index 404c551f22..2eb2d43645 100644 --- a/wiki/translations/it/Sketcher_ConvertToNURB.md +++ b/wiki/translations/it/Sketcher_ConvertToNURB.md @@ -1,2 +1,5 @@ # Sketcher ConvertToNURB/it 1. REDIRECT [Sketcher\_BSplineApproximate](Sketcher_BSplineApproximate.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConvertToNURB/it diff --git a/wiki/translations/it/Sketcher_Copy.md b/wiki/translations/it/Sketcher_Copy.md index ed02ed6dcf..d0516170ac 100644 --- a/wiki/translations/it/Sketcher_Copy.md +++ b/wiki/translations/it/Sketcher_Copy.md @@ -8,6 +8,8 @@ SeeAlso:[Clona](Sketcher_Clone/it.md), [Move](Sketcher_Move/it.md) --- +# Sketcher Copy/it + @@ -47,4 +49,7 @@ Ala copia non vengono aggiunti vincoli specifici. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Copy/it diff --git a/wiki/translations/it/Sketcher_Create3PointArc.md b/wiki/translations/it/Sketcher_Create3PointArc.md index 172416da7f..7fb287803a 100644 --- a/wiki/translations/it/Sketcher_Create3PointArc.md +++ b/wiki/translations/it/Sketcher_Create3PointArc.md @@ -1,3 +1,4 @@ +# Sketcher Create3PointArc/it --- - GuiCommand:/it Name:Sketcher Create3PointArc Name/it:Crea arco da tre punti Workbenches:[[Sketcher Workbench/it Sketcher]]|MenuLocation:Sketch → Geometrie → Arco da tre punti Shortcut: SeeAlso:--- @@ -27,4 +28,7 @@ Quando si avvia lo strumento, il puntatore del mouse si trasforma in una croce b {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Create3PointArc/it diff --git a/wiki/translations/it/Sketcher_Create3PointCircle.md b/wiki/translations/it/Sketcher_Create3PointCircle.md index 69fd63a037..cd03f328be 100644 --- a/wiki/translations/it/Sketcher_Create3PointCircle.md +++ b/wiki/translations/it/Sketcher_Create3PointCircle.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Sketcher Create3PointCircle/it + @@ -40,4 +42,7 @@ Accanto al puntatore sono visualizzate, in blu, le coordinate della sua posizion {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Create3PointCircle/it diff --git a/wiki/translations/it/Sketcher_CreateArc.md b/wiki/translations/it/Sketcher_CreateArc.md index 0581dd3491..c928f67c2c 100644 --- a/wiki/translations/it/Sketcher_CreateArc.md +++ b/wiki/translations/it/Sketcher_CreateArc.md @@ -7,6 +7,8 @@ SeeAlso:[Cerchi](Sketcher_CompCreateCircle/it.md) --- +# Sketcher CreateArc/it + @@ -35,4 +37,7 @@ Quando si avvia lo strumento, il puntatore del mouse assume la forma di croce bi {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateArc/it diff --git a/wiki/translations/it/Sketcher_CreateArcOfEllipse.md b/wiki/translations/it/Sketcher_CreateArcOfEllipse.md index 70d0e49538..8a0b7811ce 100644 --- a/wiki/translations/it/Sketcher_CreateArcOfEllipse.md +++ b/wiki/translations/it/Sketcher_CreateArcOfEllipse.md @@ -8,6 +8,8 @@ SeeAlso:[Ellisse da centro](Sketcher_CreateEllipseByCenter/it.md), [Arco di ellisse](Sketcher_CompCreateArc/it.md), [Cerchio](Sketcher_CreateCircle/it.md) --- +# Sketcher CreateArcOfEllipse/it + @@ -49,4 +51,7 @@ Questo strumento disegna un arco di ellisse selezionando quattro punti: il centr {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateArcOfEllipse/it diff --git a/wiki/translations/it/Sketcher_CreateArcOfHyperbola.md b/wiki/translations/it/Sketcher_CreateArcOfHyperbola.md index fe379c1b98..f6005ced29 100644 --- a/wiki/translations/it/Sketcher_CreateArcOfHyperbola.md +++ b/wiki/translations/it/Sketcher_CreateArcOfHyperbola.md @@ -9,6 +9,8 @@ SeeAlso:[Arco di ellisse](Sketcher_CreateArcOfEllipse/it.md), [Arco di parabola](Sketcher_CreateArcOfParabola/it.md) --- +# Sketcher CreateArcOfHyperbola/it + @@ -44,4 +46,7 @@ Questo strumento crea un arco di iperbole da centro, raggio maggiore e punti fin {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateArcOfHyperbola/it diff --git a/wiki/translations/it/Sketcher_CreateArcOfParabola.md b/wiki/translations/it/Sketcher_CreateArcOfParabola.md index f839d698af..46e84b7cb2 100644 --- a/wiki/translations/it/Sketcher_CreateArcOfParabola.md +++ b/wiki/translations/it/Sketcher_CreateArcOfParabola.md @@ -9,6 +9,8 @@ SeeAlso:[Arco di ellisse](Sketcher_CreateArcOfEllipse/it.md), [Arco di iperbole](Sketcher_CreateArcOfHyperbola/it.md) --- +# Sketcher CreateArcOfParabola/it + @@ -44,4 +46,7 @@ Questo strumento crea un arco di parabola da fuoco, vertice e punti finali. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateArcOfParabola/it diff --git a/wiki/translations/it/Sketcher_CreateBSpline.md b/wiki/translations/it/Sketcher_CreateBSpline.md index 933b5ce242..18c01b4880 100644 --- a/wiki/translations/it/Sketcher_CreateBSpline.md +++ b/wiki/translations/it/Sketcher_CreateBSpline.md @@ -9,6 +9,8 @@ SeeAlso:[B-spline periodica](Sketcher_CreatePeriodicBSpline/it.md) --- +# Sketcher CreateBSpline/it + @@ -73,4 +75,7 @@ Questo strumento traccia una curva B-spline aperta dai suoi punti di controllo. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateBSpline/it diff --git a/wiki/translations/it/Sketcher_CreateCircle.md b/wiki/translations/it/Sketcher_CreateCircle.md index a99b61e69d..72e5c63ea9 100644 --- a/wiki/translations/it/Sketcher_CreateCircle.md +++ b/wiki/translations/it/Sketcher_CreateCircle.md @@ -1,3 +1,4 @@ +# Sketcher CreateCircle/it --- - GuiCommand:/it Name:Sketcher CreateCircle Name/it:Cerchio Workbenches:[MenuLocation:Sketch → Geometrie → Cerchio SeeAlso:[[Sketcher CompCreateArc/it|Arco](Sketcher_Workbench/it___Sketcher]].md)--- @@ -29,4 +30,7 @@ Quando lo strumento è attivo, il puntatore del mouse assume la forma di croce b {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateCircle/it diff --git a/wiki/translations/it/Sketcher_CreateEllipseBy3Points.md b/wiki/translations/it/Sketcher_CreateEllipseBy3Points.md index e274220661..a300c47f18 100644 --- a/wiki/translations/it/Sketcher_CreateEllipseBy3Points.md +++ b/wiki/translations/it/Sketcher_CreateEllipseBy3Points.md @@ -9,6 +9,8 @@ SeeAlso:[Ellisse da centro ...](Sketcher_CreateEllipseByCenter/it.md), [Cerchio](Sketcher_CreateCircle/it.md), [Arco di ellisse ...](Sketcher_CreateArcOfEllipse/it.md) --- +# Sketcher CreateEllipseBy3Points/it + @@ -81,4 +83,7 @@ Premere il pulsante ** @@ -229,4 +226,7 @@ Se si tiene premuto il tasto **Ctrl** è possibile selezionare più elementi con {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Dialog/it diff --git a/wiki/translations/it/Sketcher_EditSketch.md b/wiki/translations/it/Sketcher_EditSketch.md index d8456f7227..6f6d4bfe7e 100644 --- a/wiki/translations/it/Sketcher_EditSketch.md +++ b/wiki/translations/it/Sketcher_EditSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Esci](Sketcher_LeaveSketch/it.md) --- +# Sketcher EditSketch/it + @@ -53,4 +55,7 @@ Questo comando permette di modificare uno schizzo esistente. Apr la [Finestra di {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher EditSketch/it diff --git a/wiki/translations/it/Sketcher_Extend.md b/wiki/translations/it/Sketcher_Extend.md index 914944c808..bc7f2edeaa 100644 --- a/wiki/translations/it/Sketcher_Extend.md +++ b/wiki/translations/it/Sketcher_Extend.md @@ -9,6 +9,8 @@ Version:0.17 --- +# Sketcher Extend/it + @@ -50,4 +52,7 @@ Lo strumento **Estendi bordo** estende un bordo fino ad una posizione arbitraria {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Extend/it diff --git a/wiki/translations/it/Sketcher_External.md b/wiki/translations/it/Sketcher_External.md index a7e5b9fdbc..95d97ad359 100644 --- a/wiki/translations/it/Sketcher_External.md +++ b/wiki/translations/it/Sketcher_External.md @@ -7,6 +7,8 @@ SeeAlso:[Linea di costruzione](Sketcher_ToggleConstruction/it.md) --- +# Sketcher External/it + @@ -109,4 +111,7 @@ Quando lo schizzo viene chiuso le linee Geometria esterna non sono più visibili {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher External/it diff --git a/wiki/translations/it/Sketcher_LeaveSketch.md b/wiki/translations/it/Sketcher_LeaveSketch.md index f285493a13..523d418add 100644 --- a/wiki/translations/it/Sketcher_LeaveSketch.md +++ b/wiki/translations/it/Sketcher_LeaveSketch.md @@ -1,3 +1,4 @@ +# Sketcher LeaveSketch/it --- - GuiCommand:/it Name:Sketcher LeaveSketch Name/it:Esci Workbenches:[PartDesign](Sketcher_Workbench/it___Schizzo]],_[[PartDesign_Workbench/it.md)|MenuLocation:Sketch/Part Design → Esci SeeAlso:[Modifica schizzo](Sketcher_EditSketch/it.md)--- @@ -38,4 +39,7 @@ Il comando **Esci dallo schizzo** esce dalla modalità di modifica dello schizzo {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher LeaveSketch/it diff --git a/wiki/translations/it/Sketcher_MapSketch.md b/wiki/translations/it/Sketcher_MapSketch.md index 57ecec94f0..45cd8504ce 100644 --- a/wiki/translations/it/Sketcher_MapSketch.md +++ b/wiki/translations/it/Sketcher_MapSketch.md @@ -1,3 +1,4 @@ +# Sketcher MapSketch/it --- - GuiCommand:/it Name:Sketcher MapSketch Name/it:Mappa Schizzo Workbenches:[PartDesign](Sketcher_Workbench/it___Sketcher]],_[[PartDesign_Workbench/it.md)|MenuLocation:Part design → Mappa schizzo su faccia SeeAlso:[Crea nuovo schizzo](Sketcher_NewSketch/it.md)--- @@ -76,4 +77,7 @@ Ora selezioniamo la faccia superiore di Pad e quindi selezioniamo lo strumento M {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MapSketch/it diff --git a/wiki/translations/it/Sketcher_MergeSketches.md b/wiki/translations/it/Sketcher_MergeSketches.md index 64ed77bbad..16866d3c59 100644 --- a/wiki/translations/it/Sketcher_MergeSketches.md +++ b/wiki/translations/it/Sketcher_MergeSketches.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher MergeSketches/it + @@ -38,4 +40,7 @@ Unisce due o più schizzi in uno solo. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MergeSketches/it diff --git a/wiki/translations/it/Sketcher_Micro_Tutorial_-_Constraint_Practices.md b/wiki/translations/it/Sketcher_Micro_Tutorial_-_Constraint_Practices.md index a2d6620bdb..cd8c973dc9 100644 --- a/wiki/translations/it/Sketcher_Micro_Tutorial_-_Constraint_Practices.md +++ b/wiki/translations/it/Sketcher_Micro_Tutorial_-_Constraint_Practices.md @@ -1,7 +1,4 @@ # Sketcher Micro Tutorial - Constraint Practices/it - - -
@@ -175,4 +172,7 @@ This is the best way to constrain this sketch, as we only used one datum (dimens {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Micro Tutorial - Constraint Practices/it diff --git a/wiki/translations/it/Sketcher_MirrorSketch.md b/wiki/translations/it/Sketcher_MirrorSketch.md index b5b897c7b9..e86d0cf908 100644 --- a/wiki/translations/it/Sketcher_MirrorSketch.md +++ b/wiki/translations/it/Sketcher_MirrorSketch.md @@ -7,6 +7,8 @@ Version:0.16 --- +# Sketcher MirrorSketch/it +
@@ -42,4 +44,7 @@ Notes: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MirrorSketch/it diff --git a/wiki/translations/it/Sketcher_Module.md b/wiki/translations/it/Sketcher_Module.md index 3774762fdd..c25b9a97ed 100644 --- a/wiki/translations/it/Sketcher_Module.md +++ b/wiki/translations/it/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/it 1. REDIRECT [Sketcher Workbench/it](Sketcher_Workbench/it.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/it diff --git a/wiki/translations/it/Sketcher_Move.md b/wiki/translations/it/Sketcher_Move.md index bb7a4860bf..236ce14dbd 100644 --- a/wiki/translations/it/Sketcher_Move.md +++ b/wiki/translations/it/Sketcher_Move.md @@ -9,6 +9,8 @@ SeeAlso:[Clona](Sketcher_Clone/it.md), [Copia](Sketcher_Copy/it.md) --- +# Sketcher Move/it + @@ -43,4 +45,7 @@ Sposta da un punto a un altro gli elementi dello schizzo selezionati, utilizzand {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Move/it diff --git a/wiki/translations/it/Sketcher_NewSketch.md b/wiki/translations/it/Sketcher_NewSketch.md index 784c6e51fb..2221321bfd 100644 --- a/wiki/translations/it/Sketcher_NewSketch.md +++ b/wiki/translations/it/Sketcher_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Mappa schizzo](Sketcher_MapSketch/it.md), [Riposiziona schizzo](Sketcher_Reorient/it.md) --- +# Sketcher NewSketch/it + @@ -64,4 +66,7 @@ Lo schizzo può essere spostato nella [vista 3D](3D_view/it.md) utilizzando [Pos {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher NewSketch/it diff --git a/wiki/translations/it/Sketcher_Preferences.md b/wiki/translations/it/Sketcher_Preferences.md index 0bc038b0b3..0d1b5e7513 100644 --- a/wiki/translations/it/Sketcher_Preferences.md +++ b/wiki/translations/it/Sketcher_Preferences.md @@ -1,7 +1,4 @@ # Sketcher Preferences/it - - -
@@ -267,3 +264,6 @@ In the *Colors* tab you can specify the following: }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Preferences/it diff --git a/wiki/translations/it/Sketcher_RectangularArray.md b/wiki/translations/it/Sketcher_RectangularArray.md index 8843e2974c..66983ad94e 100644 --- a/wiki/translations/it/Sketcher_RectangularArray.md +++ b/wiki/translations/it/Sketcher_RectangularArray.md @@ -1,3 +1,4 @@ +# Sketcher RectangularArray/it --- - GuiCommand:/it Name:Sketcher RectangularArray Name/it:Serie rettangolare Workbenches:[PartDesign](Sketcher_Workbench/it___Sketcher]],_[[PartDesign_Workbench/it.md)|MenuLocation:Sketch → Strumenti → Serie rettangolare Shortcut: Version:0.16--- @@ -38,4 +39,7 @@ Le opzioni per la serie {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RectangularArray/it diff --git a/wiki/translations/it/Sketcher_Reorient.md b/wiki/translations/it/Sketcher_Reorient.md index c8f552f000..e03639d11d 100644 --- a/wiki/translations/it/Sketcher_Reorient.md +++ b/wiki/translations/it/Sketcher_Reorient.md @@ -1,2 +1,5 @@ # Sketcher Reorient/it 1. REDIRECT [Sketcher\_ReorientSketch/it](Sketcher_ReorientSketch/it.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Reorient/it diff --git a/wiki/translations/it/Sketcher_ReorientSketch.md b/wiki/translations/it/Sketcher_ReorientSketch.md index 7437214d28..4708e5db9d 100644 --- a/wiki/translations/it/Sketcher_ReorientSketch.md +++ b/wiki/translations/it/Sketcher_ReorientSketch.md @@ -8,6 +8,8 @@ SeeAlso:[Mappa schizzo](Sketcher_MapSketch/it.md), [Nuovo schizzo](Sketcher_NewSketch/it.md) --- +# Sketcher ReorientSketch/it +
@@ -69,4 +71,7 @@ Orientamento dello schizzo {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ReorientSketch/it diff --git a/wiki/translations/it/Sketcher_RestoreInternalAlignmentGeometry.md b/wiki/translations/it/Sketcher_RestoreInternalAlignmentGeometry.md index 501aee69b3..14ae28a503 100644 --- a/wiki/translations/it/Sketcher_RestoreInternalAlignmentGeometry.md +++ b/wiki/translations/it/Sketcher_RestoreInternalAlignmentGeometry.md @@ -1,3 +1,4 @@ +# Sketcher RestoreInternalAlignmentGeometry/it --- - GuiCommand:/it Name:Sketcher RestoreInternalAlignmentGeometry Name/it:Mostra/Nascondi la geometria interna Workbenches:[MenuLocation:Sketch → Strumenti → Mostra/Nascondi la geometria interna Shortcut:Ctrl+Shift+E SeeAlso:[[Sketcher CreateEllipseByCenter/it|Ellisse](Sketcher_Workbench/it___Sketcher]].md), [Vincolo Allineamento interno](Sketcher_ConstrainInternalAlignment/it.md)--- @@ -48,4 +49,7 @@ Il comando elimina gli elementi di allineamento della geometria interna inutiliz {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RestoreInternalAlignmentGeometry/it diff --git a/wiki/translations/it/Sketcher_SelectConflictingConstraints.md b/wiki/translations/it/Sketcher_SelectConflictingConstraints.md index ed22d75002..932d11abe5 100644 --- a/wiki/translations/it/Sketcher_SelectConflictingConstraints.md +++ b/wiki/translations/it/Sketcher_SelectConflictingConstraints.md @@ -1,3 +1,4 @@ +# Sketcher SelectConflictingConstraints/it --- - GuiCommand:/it Name:Sketcher SelectConflictingConstraints Name/it:Seleziona i vincoli in conflitto Workbenches:[[Sketcher_Workbench/it Sketcher]]|MenuLocation:Sketch → Strumenti → Seleziona i vincoli in conflitto Shortcut:Shift+Ctrl+E Version:0.15--- @@ -32,4 +33,7 @@ Seleziona i vincoli in conflitto di uno schizzo. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConflictingConstraints/it diff --git a/wiki/translations/it/Sketcher_SelectConstraints.md b/wiki/translations/it/Sketcher_SelectConstraints.md index 32754b5206..92ebb832b7 100644 --- a/wiki/translations/it/Sketcher_SelectConstraints.md +++ b/wiki/translations/it/Sketcher_SelectConstraints.md @@ -1,3 +1,4 @@ +# Sketcher SelectConstraints/it --- - GuiCommand:/it Name:Sketcher SelectConstraints Name/it:Seleziona Vincoli Workbenches:[[Sketcher Workbench/it Sketcher]]|MenuLocation:Sketch → Strumenti → Seleziona i vincoli Shortcut:**Maiusc**+**Ctrl**+**C** Version:0.15--- @@ -43,4 +44,7 @@ Seleziona i vincoli di un elemento dello schizzo. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConstraints/it diff --git a/wiki/translations/it/Sketcher_SelectElementsAssociatedWithConstraints.md b/wiki/translations/it/Sketcher_SelectElementsAssociatedWithConstraints.md index c68d367874..717dbd07e6 100644 --- a/wiki/translations/it/Sketcher_SelectElementsAssociatedWithConstraints.md +++ b/wiki/translations/it/Sketcher_SelectElementsAssociatedWithConstraints.md @@ -1,3 +1,4 @@ +# Sketcher SelectElementsAssociatedWithConstraints/it --- - GuiCommand:/it Name:Sketcher SelectElementsAssociatedWithConstraints Name/it:Seleziona gli elementi associati ai vincoli Workbenches:[[Sketcher Workbench/it Sketcher]]|MenuLocation:Sketch → Strumenti → Seleziona gli elementi associati ai vincoli Shortcut:Maiusc+Ctrl+E SeeAlso: Version:0.15--- @@ -32,4 +33,7 @@ Seleziona gli elementi dello schizzo che sono associati a determinati vincoli {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsAssociatedWithConstraints/it diff --git a/wiki/translations/it/Sketcher_SelectElementsWithDoFs.md b/wiki/translations/it/Sketcher_SelectElementsWithDoFs.md index 93c47ad1a0..18cc9df112 100644 --- a/wiki/translations/it/Sketcher_SelectElementsWithDoFs.md +++ b/wiki/translations/it/Sketcher_SelectElementsWithDoFs.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Sketcher SelectElementsWithDoFs/it + @@ -54,4 +56,7 @@ where \"X\" is the number of degrees of freedom remaining in the sketch; you wil {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsWithDoFs/it diff --git a/wiki/translations/it/Sketcher_SelectHorizontalAxis.md b/wiki/translations/it/Sketcher_SelectHorizontalAxis.md index 3c8b0f78e2..c2dae091c4 100644 --- a/wiki/translations/it/Sketcher_SelectHorizontalAxis.md +++ b/wiki/translations/it/Sketcher_SelectHorizontalAxis.md @@ -1,3 +1,4 @@ +# Sketcher SelectHorizontalAxis/it --- - GuiCommand:/it Name:Sketcher SelectHorizontalAxis Name/it:Seleziona l'asse X Workbenches:[[Sketcher Workbench/it Sketcher]]|MenuLocation:Sketch → Strumenti → Seleziona l'asse orizzontale Shortcut:Shift+Ctrl+H SeeAlso: Version:0.15--- @@ -32,4 +33,7 @@ Seleziona l\'asse orizzontale di uno schizzo. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectHorizontalAxis/it diff --git a/wiki/translations/it/Sketcher_SelectOrigin.md b/wiki/translations/it/Sketcher_SelectOrigin.md index c146a46553..1bad8c39bb 100644 --- a/wiki/translations/it/Sketcher_SelectOrigin.md +++ b/wiki/translations/it/Sketcher_SelectOrigin.md @@ -1,3 +1,4 @@ +# Sketcher SelectOrigin/it --- - GuiCommand:/it Name:Sketcher SelectOrigin Name/it:Seleziona Origine Workbenches:[[Sketcher Workbench/it Sketcher]]|MenuLocation:Sketch → Strumenti → Seleziona l'origine Shortcut:**Maiusc**+**Ctrl**+**O** SeeAlso: Version:0.15--- @@ -32,4 +33,7 @@ Seleziona l\'origine di uno schizzo. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectOrigin/it diff --git a/wiki/translations/it/Sketcher_SelectRedundantConstraints.md b/wiki/translations/it/Sketcher_SelectRedundantConstraints.md index a363306d2b..ff4237ecdf 100644 --- a/wiki/translations/it/Sketcher_SelectRedundantConstraints.md +++ b/wiki/translations/it/Sketcher_SelectRedundantConstraints.md @@ -1,3 +1,4 @@ +# Sketcher SelectRedundantConstraints/it --- - GuiCommand:/it Name:Sketcher SelectRedundantConstraints Name/it:Seleziona i vincoli ridondanti Workbenches:[[Sketcher Workbench/it Sketcher]]|MenuLocation:Sketch → Strumenti → Seleziona i vincoli ridondanti Shortcut:Shift+Ctrl+R Version:0.15--- @@ -40,4 +41,7 @@ Seleziona i vincoli ridondanti di uno schizzo. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectRedundantConstraints/it diff --git a/wiki/translations/it/Sketcher_SelectVerticalAxis.md b/wiki/translations/it/Sketcher_SelectVerticalAxis.md index 6bcf0958be..364a30f4a0 100644 --- a/wiki/translations/it/Sketcher_SelectVerticalAxis.md +++ b/wiki/translations/it/Sketcher_SelectVerticalAxis.md @@ -1,3 +1,4 @@ +# Sketcher SelectVerticalAxis/it --- - GuiCommand:/it Name:Sketcher SelectVerticalAxis Name/it:Seleziona Asse Y Workbenches:[[Sketcher Workbench/it Sketcher]]|MenuLocation:Sketch → Strumenti → Seleziona l'asse verticale Shortcut:**Maiusc**+**Ctrl**+**V** Version:0.15--- @@ -32,4 +33,7 @@ Seleziona l\'asse verticale di uno schizzo. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectVerticalAxis/it diff --git a/wiki/translations/it/Sketcher_Sketch.md b/wiki/translations/it/Sketcher_Sketch.md index 479ba31ae6..697ba260c0 100644 --- a/wiki/translations/it/Sketcher_Sketch.md +++ b/wiki/translations/it/Sketcher_Sketch.md @@ -1,6 +1,4 @@ # Sketcher Sketch/it - - Questa pagina dovrebbe contenere la descrizione dello strumento Schizzo che fa parte degli ambienti [Sketcher](Sketcher_Workbench/it.md) e [PartDesign](PartDesign_Workbench/it.md). Si tratta di un lavoro in corso. Nel frattempo, consultare: @@ -11,4 +9,7 @@ Si tratta di un lavoro in corso. Nel frattempo, consultare: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Sketch/it diff --git a/wiki/translations/it/Sketcher_SketchObject.md b/wiki/translations/it/Sketcher_SketchObject.md index 015871c50a..7bc0c2afcd 100644 --- a/wiki/translations/it/Sketcher_SketchObject.md +++ b/wiki/translations/it/Sketcher_SketchObject.md @@ -1,6 +1,4 @@ # Sketcher SketchObject/it - - ## Introduzione @@ -191,4 +189,7 @@ obj.Label = "Custom label" {{Sketcher Tools navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SketchObject/it diff --git a/wiki/translations/it/Sketcher_Split.md b/wiki/translations/it/Sketcher_Split.md index c1124747a1..d774a49a7e 100644 --- a/wiki/translations/it/Sketcher_Split.md +++ b/wiki/translations/it/Sketcher_Split.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Trimming](Sketcher_Trimming.md) --- +# Sketcher Split/it + ## Description This tool allows to divide an edge into two identical ones, while most of the constraints are duplicated, so both parts remain constrained apart from split point position. For a special case of a circle, this is converted to an loose ends arc with existing circle constraints being transferred to the new arc. @@ -44,4 +46,7 @@ This tool allows to divide an edge into two identical ones, while most of the co {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Split/it diff --git a/wiki/translations/it/Sketcher_StopOperation.md b/wiki/translations/it/Sketcher_StopOperation.md index 29eddbf4ca..5f4d0d3eda 100644 --- a/wiki/translations/it/Sketcher_StopOperation.md +++ b/wiki/translations/it/Sketcher_StopOperation.md @@ -5,6 +5,8 @@ MenuLocation:Sketch → Stop operation --- +# Sketcher StopOperation/it + ## Description @@ -24,4 +26,7 @@ This is similar to pressing the **Esc** key. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher StopOperation/it diff --git a/wiki/translations/it/Sketcher_SwitchVirtualSpace.md b/wiki/translations/it/Sketcher_SwitchVirtualSpace.md index 97447bc2fb..f1183b1f40 100644 --- a/wiki/translations/it/Sketcher_SwitchVirtualSpace.md +++ b/wiki/translations/it/Sketcher_SwitchVirtualSpace.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Sketcher SwitchVirtualSpace/it + @@ -53,4 +55,7 @@ Per cambiare lo spazio virtuale: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SwitchVirtualSpace/it diff --git a/wiki/translations/it/Sketcher_Symmetry.md b/wiki/translations/it/Sketcher_Symmetry.md index 8ee763d444..aba09dc893 100644 --- a/wiki/translations/it/Sketcher_Symmetry.md +++ b/wiki/translations/it/Sketcher_Symmetry.md @@ -7,6 +7,8 @@ Version:0.16 --- +# Sketcher Symmetry/it + @@ -48,4 +50,7 @@ Notare che non viene aggiunto nessun vincolo di simmetria aggiuntivo. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Symmetry/it diff --git a/wiki/translations/it/Sketcher_ToggleActiveConstraint.md b/wiki/translations/it/Sketcher_ToggleActiveConstraint.md index 4d327a96b3..d6190bb32c 100644 --- a/wiki/translations/it/Sketcher_ToggleActiveConstraint.md +++ b/wiki/translations/it/Sketcher_ToggleActiveConstraint.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Sketcher ToggleActiveConstraint/it + ## Description @@ -61,4 +63,7 @@ sketch.toggleActive(3) {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleActiveConstraint/it diff --git a/wiki/translations/it/Sketcher_ToggleConstruction.md b/wiki/translations/it/Sketcher_ToggleConstruction.md index 84204af951..8aa4918fd3 100644 --- a/wiki/translations/it/Sketcher_ToggleConstruction.md +++ b/wiki/translations/it/Sketcher_ToggleConstruction.md @@ -7,6 +7,8 @@ MenuLocation:Sketcher → Geometrie → Geometrie di costruzione --- +# Sketcher ToggleConstruction/it + @@ -76,4 +78,7 @@ e finito lo schizzo gli elementi utilizzati per la costruzione diventano invisib {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleConstruction/it diff --git a/wiki/translations/it/Sketcher_ToggleDrivingConstraint.md b/wiki/translations/it/Sketcher_ToggleDrivingConstraint.md index aa4086af66..420cab90e3 100644 --- a/wiki/translations/it/Sketcher_ToggleDrivingConstraint.md +++ b/wiki/translations/it/Sketcher_ToggleDrivingConstraint.md @@ -7,6 +7,8 @@ Version:0.16 --- +# Sketcher ToggleDrivingConstraint/it + @@ -49,4 +51,7 @@ Lo strumento +# L\'icona dell\'ambiente Sketcher Sketcher Workbench/it {{TOCright}} @@ -532,3 +526,6 @@ La pagina [scripting](Sketcher_scripting/it.md) contiene esempi su come creare v }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/it diff --git a/wiki/translations/it/Sketcher_helper_constraint.md b/wiki/translations/it/Sketcher_helper_constraint.md index 338ef1fcbc..8e4a880c88 100644 --- a/wiki/translations/it/Sketcher_helper_constraint.md +++ b/wiki/translations/it/Sketcher_helper_constraint.md @@ -1,6 +1,4 @@ # Sketcher helper constraint/it - - ## Introduzione Esempio di vincolo di supporto (il Constraint5 - punto su cerchio) per un vincolo di tangenza (il Constraint6 nel modo \ @@ -51,4 +49,7 @@ I vincoli di supporto sono stati introdotti nella versione 0.15.4387 {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher helper constraint/it diff --git a/wiki/translations/it/Sketcher_project.md b/wiki/translations/it/Sketcher_project.md index 19162cd737..5b5672eb39 100644 --- a/wiki/translations/it/Sketcher_project.md +++ b/wiki/translations/it/Sketcher_project.md @@ -1,7 +1,4 @@ # Sketcher project/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -183,3 +180,6 @@ Per la versione 0.12: }} [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher project/it diff --git a/wiki/translations/it/Sketcher_reference.md b/wiki/translations/it/Sketcher_reference.md index 5cc6dbc02a..c541f5a9b8 100644 --- a/wiki/translations/it/Sketcher_reference.md +++ b/wiki/translations/it/Sketcher_reference.md @@ -1,6 +1,4 @@ # Sketcher reference/it - - ## Introduzione @@ -76,4 +74,7 @@ The general structure of the manual is: {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher reference/it diff --git a/wiki/translations/it/Sketcher_requirement_for_a_sketch.md b/wiki/translations/it/Sketcher_requirement_for_a_sketch.md index da27290449..7ef4873aa8 100644 --- a/wiki/translations/it/Sketcher_requirement_for_a_sketch.md +++ b/wiki/translations/it/Sketcher_requirement_for_a_sketch.md @@ -1,7 +1,4 @@ # Sketcher requirement for a sketch/it - - - {{TutorialInfo/it |Topic=Sketch |Level=Base @@ -41,4 +38,7 @@ Se si crea accidentalmente una \"ridondanza\", nella vista combinata viene visua {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher requirement for a sketch/it diff --git a/wiki/translations/it/Sketcher_scripting.md b/wiki/translations/it/Sketcher_scripting.md index b91530d513..bd420c946a 100644 --- a/wiki/translations/it/Sketcher_scripting.md +++ b/wiki/translations/it/Sketcher_scripting.md @@ -1,5 +1,5 @@ # Sketcher scripting/it - {{TOCright}} +{{TOCright}} ## Creating a constraint using Python @@ -200,4 +200,7 @@ The command `Sketch.addConstraint(Sketcher.Constraint('Coincident',0,2,2,2))` yi {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher scripting/it diff --git a/wiki/translations/it/Source_code_management.md b/wiki/translations/it/Source_code_management.md index d046d733d2..6d3428a58a 100644 --- a/wiki/translations/it/Source_code_management.md +++ b/wiki/translations/it/Source_code_management.md @@ -1,5 +1,5 @@ # Source code management/it - {{TOCright}} +{{TOCright}} ## Introduction @@ -993,3 +993,6 @@ Head to the development section of the [FreeCAD forum](https://forum.freecadweb. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source code management/it diff --git a/wiki/translations/it/Source_documentation.md b/wiki/translations/it/Source_documentation.md index 0561ba80f1..a2bf3a8191 100644 --- a/wiki/translations/it/Source_documentation.md +++ b/wiki/translations/it/Source_documentation.md @@ -1,7 +1,4 @@ # Source documentation/it - - -
@@ -196,3 +193,6 @@ void removeTaskWatcher(void); [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source documentation/it diff --git a/wiki/translations/it/Sphinx.md b/wiki/translations/it/Sphinx.md index 182ce7f169..3907c575af 100644 --- a/wiki/translations/it/Sphinx.md +++ b/wiki/translations/it/Sphinx.md @@ -1,6 +1,4 @@ # Sphinx/it - - ## Introduzione [Sphinx](Sphinx.md) is a documentation system similar to [Doxygen](Doxygen.md), designed primarily to document [Python](Python.md) code. With the use of [\"Breathe\"](https://github.com/michaeljones/breathe) it can also be used to parse C++ code, so it can be used in projects that mix C++ and Python. @@ -33,3 +31,6 @@ Encouraging results from David\_D: - [FreeCAD Forum Post](https://forum.freecadweb.org/viewtopic.php?p=411563#p411563) - [Category:Developer\_Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Sphinx/it diff --git a/wiki/translations/it/Spinning.md b/wiki/translations/it/Spinning.md index c4eced72d7..025b56df18 100644 --- a/wiki/translations/it/Spinning.md +++ b/wiki/translations/it/Spinning.md @@ -1,2 +1,5 @@ # Spinning/it 1. REDIRECT [Std\_DemoMode/it](Std_DemoMode/it.md) + +--- +[documentation index](../README.md) > Spinning/it diff --git a/wiki/translations/it/Splash_screen.md b/wiki/translations/it/Splash_screen.md index 4975c7667d..0b306e636d 100644 --- a/wiki/translations/it/Splash_screen.md +++ b/wiki/translations/it/Splash_screen.md @@ -1,4 +1,7 @@ # Splash screen/it - Lo **Splash screen** è un\'immagine che appare durante l\'avvio di FreeCAD. È possibile disabilitare lo splash screen nel menu Preferenze di FreeCAD rimuovendo l\'opzione \"Abilita splash screen all\'avvio\". +Lo **Splash screen** è un\'immagine che appare durante l\'avvio di FreeCAD. È possibile disabilitare lo splash screen nel menu Preferenze di FreeCAD rimuovendo l\'opzione \"Abilita splash screen all\'avvio\". [Category:User Documentation/it](Category:User_Documentation/it.md) + +--- +[documentation index](../README.md) > Splash screen/it diff --git a/wiki/translations/it/Spreadsheet.md b/wiki/translations/it/Spreadsheet.md index 94c3d6ce0b..8ede63558d 100644 --- a/wiki/translations/it/Spreadsheet.md +++ b/wiki/translations/it/Spreadsheet.md @@ -1,6 +1,4 @@ # Spreadsheet/it - - ## Descrizione Un [foglio di calcolo](spreadsheet/it.md) è una pagina suddivisa in righe e colonne che consente di memorizzare un testo arbitrario nelle celle. Ancora più importante, consente di inserire nelle celle delle [espressioni](Expressions/it.md) per calcolare valori che dipendono da valori immessi in precedenza; questi possono essere lunghezze, angoli, aree, volumi e altri tipi. @@ -12,5 +10,5 @@ Un [foglio di calcolo](spreadsheet/it.md) è una pagina suddivisa in righe e col 3. Editare il contenuto delle celle. 4. Chiudere la scheda del foglio di calcolo quando si ha finito, i valori vengono salvati automaticamente mentre si digitano. - - +--- +[documentation index](../README.md) > Spreadsheet/it diff --git a/wiki/translations/it/Spreadsheet_AlignBottom.md b/wiki/translations/it/Spreadsheet_AlignBottom.md index 846413c67f..413a3980fb 100644 --- a/wiki/translations/it/Spreadsheet_AlignBottom.md +++ b/wiki/translations/it/Spreadsheet_AlignBottom.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignBottom/it + ## Descrizione Lo strumento **Allinea in basso** rende il testo all\'interno della cella allineato alla parte inferiore della cella. @@ -23,4 +25,7 @@ Lo strumento **Centra in orizzontale** allinea in centro il testo della cella.. @@ -23,4 +25,7 @@ Lo strumento **Allinea a sinistra** allinea a sinistra il testo della cella. @@ -23,4 +25,7 @@ Lo strumento **Allinea a destra** allinea a destra il testo della cella. @@ -23,4 +25,7 @@ Lo strumento **Allinea in alto** rende il testo all\'interno della cella allineato alla parte superiore della cella. @@ -23,4 +25,7 @@ Lo strumento **Centra in verticale** rende il testo all\'interno della cella allineato verticalmente al centro della cella. @@ -23,4 +25,7 @@ Lo strumento Il [formato CSV](http://en.wikipedia.org/wiki/Comma-separated_values) (Comma-Separated Values) è un formato di testo semplice per scambiare i dati dei fogli di calcolo. Di solito può essere importato ed esportato da qualsiasi applicazione foglio di calcolo come LibreOffice o Microsoft Excel. La lettura e la scrittura in formato csv è fatto dal [modulo csv](http://docs.python.org/2/library/csv.html) di Python interno. @@ -37,3 +34,6 @@ Esportando un oggetto [spreadsheet](Spreadsheet_Create/it.md) in un file .csv fi [Category:User\_Documentation](Category:User_Documentation.md) [Category:Spreadsheet](Category:Spreadsheet.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet CSV/it diff --git a/wiki/translations/it/Spreadsheet_Controller.md b/wiki/translations/it/Spreadsheet_Controller.md index 0b067bea53..fcf08d17b8 100644 --- a/wiki/translations/it/Spreadsheet_Controller.md +++ b/wiki/translations/it/Spreadsheet_Controller.md @@ -1,2 +1,5 @@ # Spreadsheet Controller/it 1. REDIRECT [Arch\_Schedule/it](Arch_Schedule/it.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Controller/it diff --git a/wiki/translations/it/Spreadsheet_Create.md b/wiki/translations/it/Spreadsheet_Create.md index bf43b710a2..8c19e48167 100644 --- a/wiki/translations/it/Spreadsheet_Create.md +++ b/wiki/translations/it/Spreadsheet_Create.md @@ -1,2 +1,5 @@ # Spreadsheet Create/it 1. REDIRECT [Spreadsheet\_CreateSheet/it](Spreadsheet_CreateSheet/it.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Create/it diff --git a/wiki/translations/it/Spreadsheet_CreateSheet.md b/wiki/translations/it/Spreadsheet_CreateSheet.md index aecf8072d9..447a4ad0f4 100644 --- a/wiki/translations/it/Spreadsheet_CreateSheet.md +++ b/wiki/translations/it/Spreadsheet_CreateSheet.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet CreateSheet/it +
@@ -26,4 +28,7 @@ Lo strumento {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Export/it diff --git a/wiki/translations/it/Spreadsheet_Import.md b/wiki/translations/it/Spreadsheet_Import.md index 4cec728edd..70171361ae 100644 --- a/wiki/translations/it/Spreadsheet_Import.md +++ b/wiki/translations/it/Spreadsheet_Import.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet Import/it + @@ -35,4 +37,7 @@ Lo strumento {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Import/it diff --git a/wiki/translations/it/Spreadsheet_MergeCells.md b/wiki/translations/it/Spreadsheet_MergeCells.md index 81c151e2ac..51508d8bb8 100644 --- a/wiki/translations/it/Spreadsheet_MergeCells.md +++ b/wiki/translations/it/Spreadsheet_MergeCells.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet MergeCells/it + ## Descrizione Lo strumento **Unisci le celle** unisce almeno due celle selezionate in un foglio di calcolo esistente nel documento attivo. @@ -23,4 +25,7 @@ Lo strumento **Alias** apre una finestra di dialogo per impostare un alias per una cella. Invece di utilizzare il nome esatto della cella come A2, B3 o C4, è possibile utilizzare un nome personalizzato. @@ -30,4 +32,7 @@ Lo strumento **Dividi la cella** divide una cella che è stata precedentemente unita in una in un foglio di calcolo esistente nel documento attivo. @@ -23,4 +25,7 @@ Lo strumento **Grassetto** fa in modo che il testo all\'interno della cella adotti lo stile **grassetto**. @@ -23,4 +25,7 @@ Lo strumento **Corsivo** fa in modo che il testo all\'interno della cella adotti lo stile *corsivo*. @@ -23,4 +25,7 @@ Lo strumento **Sottolineato** fa in modo che il testo all\'interno della cella adotti lo stile sottolineato. @@ -23,4 +25,7 @@ Lo strumento @@ -47,3 +44,6 @@ Da questa interfaccia è possibile visualizzare informazioni utili e passare ai [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench/it diff --git a/wiki/translations/it/Start_up_and_Configuration.md b/wiki/translations/it/Start_up_and_Configuration.md index fbbeceb872..094732d11c 100644 --- a/wiki/translations/it/Start_up_and_Configuration.md +++ b/wiki/translations/it/Start_up_and_Configuration.md @@ -1,7 +1,4 @@ # Start up and Configuration/it - - -
@@ -516,3 +513,6 @@ Now double-click the batch file to start FreeCAD. ([see](https://forum.freecadwe [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start up and Configuration/it diff --git a/wiki/translations/it/Status_bar.md b/wiki/translations/it/Status_bar.md index 7fbfdc7584..0c92e3d20c 100644 --- a/wiki/translations/it/Status_bar.md +++ b/wiki/translations/it/Status_bar.md @@ -1,6 +1,4 @@ # Status bar/it - - ## Introduzione @@ -32,4 +30,7 @@ La barra di stato mostra anche l\'ultimo oggetto preselezionato (qualsiasi ogget {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Status bar/it diff --git a/wiki/translations/it/Std_About.md b/wiki/translations/it/Std_About.md index 2b1311ba22..ffb53eeb74 100644 --- a/wiki/translations/it/Std_About.md +++ b/wiki/translations/it/Std_About.md @@ -1,3 +1,4 @@ +# Std About/it --- - GuiCommand:/it Name:Std_About Name/it:Informazioni su FreeCAD MenuLocation:[Workbenches:Tutti SeeAlso:[[Std_OnlineHelp/it|Aiuto online](Std_Help_Menu/it___Aiuto]]_→_Informazioni_su_FreeCAD.md), [Cos'é questo](Std_WhatsThis/it.md), [Menu Aiuto](Std_Help_Menu/it.md)--- @@ -145,3 +146,6 @@ Mostra un elenco delle librerie esterne utilizzate dal programma e il sito Web p {{Std Base navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Std About/it diff --git a/wiki/translations/it/Std_ActivateNextWindow.md b/wiki/translations/it/Std_ActivateNextWindow.md index 9d81786724..bcbf450866 100644 --- a/wiki/translations/it/Std_ActivateNextWindow.md +++ b/wiki/translations/it/Std_ActivateNextWindow.md @@ -7,6 +7,8 @@ SeeAlso:[Std ActivatePrevWindow](Std_ActivatePrevWindow.md), [Std Windows](Std_Windows.md) --- +# Std ActivateNextWindow/it + ## Description The **Std ActivateNextWindow** command activates the next window in the [Main view area](Main_view_area.md). The next window is determined by the order in which the Main view area windows were last activated. @@ -28,4 +30,7 @@ The **Std ActivateNextWindow** command activates the next window in the [Main vi {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ActivateNextWindow/it diff --git a/wiki/translations/it/Std_ActivatePrevWindow.md b/wiki/translations/it/Std_ActivatePrevWindow.md index 89e3e02f52..5c0051fc3f 100644 --- a/wiki/translations/it/Std_ActivatePrevWindow.md +++ b/wiki/translations/it/Std_ActivatePrevWindow.md @@ -7,6 +7,8 @@ SeeAlso:[Std ActivateNextWindow](Std_ActivateNextWindow.md), [Std Windows](Std_Windows.md) --- +# Std ActivatePrevWindow/it + ## Description The **Std ActivatePrevWindow** command does not work properly [1](https://forum.freecadweb.org/viewtopic.php?f=3&t=45157). @@ -28,4 +30,7 @@ The **Std ActivatePrevWindow** command does not work properly [1](https://forum. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ActivatePrevWindow/it diff --git a/wiki/translations/it/Std_AddonMgr.md b/wiki/translations/it/Std_AddonMgr.md index 9a19a12039..684905d77c 100644 --- a/wiki/translations/it/Std_AddonMgr.md +++ b/wiki/translations/it/Std_AddonMgr.md @@ -8,6 +8,8 @@ SeeAlso:[Macro](Macros/it.md), [Ambienti complementari](External_workbenches/it.md) --- +# Std AddonMgr/it + ## Descrizione Il comando **Std AddonMgr** apre Addon manager. Con il gestore degli addon è possibile installare e gestire gli [ambienti esterni](external_workbenches/it.md) e le [macro](macros/it.md) forniti dalla comunità di FreeCAD. Gli ambienti e le macro disponibili sono presi da due repository, [FreeCAD-addons](https://github.com/FreeCAD/FreeCAD-addons/) e [FreeCAD-macros](https://github.com/FreeCAD/FreeCAD-macros/), e dalla pagina [Raccolta di macro](Macros_recipes/it.md). @@ -95,4 +97,7 @@ Se si sviluppa un workbench in C++, esso non può essere eseguito direttamente d {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std AddonMgr/it diff --git a/wiki/translations/it/Std_Alignment.md b/wiki/translations/it/Std_Alignment.md index b90812b7ea..1674675967 100644 --- a/wiki/translations/it/Std_Alignment.md +++ b/wiki/translations/it/Std_Alignment.md @@ -8,6 +8,8 @@ SeeAlso:[Posizionamento](Std_Placement/it.md) --- +# Std Alignment/it +
@@ -47,4 +49,7 @@ Nel menu contestuale sono disponibili le seguenti opzioni aggiuntive: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Alignment/it diff --git a/wiki/translations/it/Std_ArrangeIcons.md b/wiki/translations/it/Std_ArrangeIcons.md index 74d49f9480..a6da32494c 100644 --- a/wiki/translations/it/Std_ArrangeIcons.md +++ b/wiki/translations/it/Std_ArrangeIcons.md @@ -7,6 +7,8 @@ SeeAlso:[Std TileWindows](Std_TileWindows.md) --- +# Std ArrangeIcons/it + ## Description The **Std ArrangeIcons** command does not work properly. It has the same effect as the [Std TileWindows](Std_TileWindows.md) command. See there. @@ -17,4 +19,7 @@ The **Std ArrangeIcons** command does not work properly. It has the same effect {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ArrangeIcons/it diff --git a/wiki/translations/it/Std_AxisCross.md b/wiki/translations/it/Std_AxisCross.md index 9ca6960bf7..256f59b316 100644 --- a/wiki/translations/it/Std_AxisCross.md +++ b/wiki/translations/it/Std_AxisCross.md @@ -7,6 +7,8 @@ Workbenches:Tutti --- +# Std AxisCross/it + @@ -78,4 +80,7 @@ FreeCADGui.ActiveDocument.ActiveView.hasAxisCross() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std AxisCross/it diff --git a/wiki/translations/it/Std_Base.md b/wiki/translations/it/Std_Base.md index 3e6ec11ca8..25a5237fd3 100644 --- a/wiki/translations/it/Std_Base.md +++ b/wiki/translations/it/Std_Base.md @@ -1,7 +1,4 @@ # Std Base/it - - -
@@ -79,3 +76,6 @@ Il menu standard è composto da 7 sotto-menu. Ogni sotto-menu ha una pagina dedi }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Base/it diff --git a/wiki/translations/it/Std_BoxElementSelection.md b/wiki/translations/it/Std_BoxElementSelection.md index bce452c492..102524b524 100644 --- a/wiki/translations/it/Std_BoxElementSelection.md +++ b/wiki/translations/it/Std_BoxElementSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Seleziona tutto](Std_SelectAll/it.md), [Box di selezione](Std_BoxSelection/it.md), [Part Box di selezione](Part_BoxSelection/it.md) --- +# Std BoxElementSelection/it + ## Descrizione Il comando **Box di selezione di elementi** seleziona le facce in un\'area rettangolare definita dall\'utente, una casella, nella vista 3D. @@ -37,4 +39,7 @@ Il comando **Box di selezione di elementi** seleziona le facce in un\'area retta {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std BoxElementSelection/it diff --git a/wiki/translations/it/Std_BoxSelection.md b/wiki/translations/it/Std_BoxSelection.md index 7e645b316d..ddcb504a3f 100644 --- a/wiki/translations/it/Std_BoxSelection.md +++ b/wiki/translations/it/Std_BoxSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Seleziona elementi](Std_BoxElementSelection/it.md),[Seleziona tutto](Std_SelectAll/it.md), [Box di selezione di Part](Part_BoxSelection/it.md) --- +# Std BoxSelection/it + ## Descrizione **Box di selezione** permette di delimitare una zona rettangolare nell\'area di lavoro e di selezionare tutti gli elementi all\'interno di questa zona. @@ -43,4 +45,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std BoxSelection/it diff --git a/wiki/translations/it/Std_CascadeWindows.md b/wiki/translations/it/Std_CascadeWindows.md index 4ce5e667eb..7823e05762 100644 --- a/wiki/translations/it/Std_CascadeWindows.md +++ b/wiki/translations/it/Std_CascadeWindows.md @@ -6,6 +6,8 @@ SeeAlso:[Std TileWindows](Std_TileWindows.md) --- +# Std CascadeWindows/it + ## Description The **Std CascadeWindows** command rearranges the windows in the [Main view area](Main_view_area.md) so that they are all visible but do overlap. The result is determined by the order in which the windows were last activated. @@ -24,4 +26,7 @@ The **Std CascadeWindows** command rearranges the windows in the [Main view area {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CascadeWindows/it diff --git a/wiki/translations/it/Std_Close.md b/wiki/translations/it/Std_Close.md index 956526196a..5983db8d65 100644 --- a/wiki/translations/it/Std_Close.md +++ b/wiki/translations/it/Std_Close.md @@ -1,2 +1,5 @@ # Std Close/it 1. REDIRECT [Std CloseActiveWindow/it](Std_CloseActiveWindow/it.md) + +--- +[documentation index](../README.md) > Std Close/it diff --git a/wiki/translations/it/Std_CloseActiveWindow.md b/wiki/translations/it/Std_CloseActiveWindow.md index d259054ad4..5ef1b1fba8 100644 --- a/wiki/translations/it/Std_CloseActiveWindow.md +++ b/wiki/translations/it/Std_CloseActiveWindow.md @@ -9,6 +9,8 @@ SeeAlso:[Chiudi tutto](Std_CloseAll/it.md) --- +# Std CloseActiveWindow/it +
@@ -66,4 +68,7 @@ Per chiudere un documento usare il metodo `closeDocument` dell\'applicazione Fre {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CloseActiveWindow/it diff --git a/wiki/translations/it/Std_CloseAll.md b/wiki/translations/it/Std_CloseAll.md index 998edc17f8..2567762689 100644 --- a/wiki/translations/it/Std_CloseAll.md +++ b/wiki/translations/it/Std_CloseAll.md @@ -1,2 +1,5 @@ # Std CloseAll/it 1. REDIRECT [Std CloseAllWindows/it](Std_CloseAllWindows/it.md) + +--- +[documentation index](../README.md) > Std CloseAll/it diff --git a/wiki/translations/it/Std_CloseAllWindows.md b/wiki/translations/it/Std_CloseAllWindows.md index 91880ec813..f8605d2b76 100644 --- a/wiki/translations/it/Std_CloseAllWindows.md +++ b/wiki/translations/it/Std_CloseAllWindows.md @@ -8,6 +8,8 @@ SeeAlso:[Chiudi](Std_Close/it.md) --- +# Std CloseAllWindows/it + @@ -62,4 +64,7 @@ Per chiudere un documento usare il metodo `closeDocument` dell\'applicazione Fre {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CloseAllWindows/it diff --git a/wiki/translations/it/Std_Copy.md b/wiki/translations/it/Std_Copy.md index f23f0443ea..dd351a8ac1 100644 --- a/wiki/translations/it/Std_Copy.md +++ b/wiki/translations/it/Std_Copy.md @@ -8,6 +8,8 @@ SeeAlso:[Incolla](Std_Paste/it.md), [Duplica la selezione](Std_DuplicateSelection/it.md) --- +# Std Copy/it + ## Descrizione Il comando **Copia** pone gli oggetti selezionati negli \"appunti\" per un successivo utilizzo da parte del comando [Icolla](Std_Paste/it.md). Gli oggetti possono essere copiati e incollati tra documenti diversi. @@ -39,4 +41,7 @@ Il comando **Copia** pone gli oggetti selezionati negli \"appunti\" per un succe {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Copy/it diff --git a/wiki/translations/it/Std_Cut.md b/wiki/translations/it/Std_Cut.md index 59623af712..d9b83bf7e6 100644 --- a/wiki/translations/it/Std_Cut.md +++ b/wiki/translations/it/Std_Cut.md @@ -7,6 +7,8 @@ SeeAlso:[Copia](Std_Copy/it.md), [Incolla](Std_Paste/it.md), [Duplica la selezione](Std_DuplicateSelection/it.md) --- +# Std Cut/it + ## Descrizione Il comando **Taglia** è limitato: può essere utilizzato solo per le [celle dei foglio di calcolo](Spreadsheet_Workbench/it.md). Il comando copia il contenuto e le proprietà delle celle negli Appunti e quindi le cancella. @@ -42,4 +44,7 @@ Per tagliare altri oggetti è possibile utilizzare il comando [Std Copy](Std_Cop {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Cut/it diff --git a/wiki/translations/it/Std_DebugInto.md b/wiki/translations/it/Std_DebugInto.md index b79794d877..c432e96b64 100644 --- a/wiki/translations/it/Std_DebugInto.md +++ b/wiki/translations/it/Std_DebugInto.md @@ -1,2 +1,5 @@ # Std DebugInto/it 1. REDIRECT [Std MacroStepInto/it](Std_MacroStepInto/it.md) + +--- +[documentation index](../README.md) > Std DebugInto/it diff --git a/wiki/translations/it/Std_DebugOver.md b/wiki/translations/it/Std_DebugOver.md index 9aa304eba0..595962cb22 100644 --- a/wiki/translations/it/Std_DebugOver.md +++ b/wiki/translations/it/Std_DebugOver.md @@ -1,2 +1,5 @@ # Std DebugOver/it 1. REDIRECT [Std MacroStepOver/it](Std_MacroStepOver/it.md) + +--- +[documentation index](../README.md) > Std DebugOver/it diff --git a/wiki/translations/it/Std_DebugToggle.md b/wiki/translations/it/Std_DebugToggle.md index 19d5dbe04c..deaa137b19 100644 --- a/wiki/translations/it/Std_DebugToggle.md +++ b/wiki/translations/it/Std_DebugToggle.md @@ -1,2 +1,5 @@ # Std DebugToggle/it 1. REDIRECT [Std ToggleBreakpoint/it](Std_ToggleBreakpoint/it.md) + +--- +[documentation index](../README.md) > Std DebugToggle/it diff --git a/wiki/translations/it/Std_Delete.md b/wiki/translations/it/Std_Delete.md index 64eb69b20c..4a5ee411fc 100644 --- a/wiki/translations/it/Std_Delete.md +++ b/wiki/translations/it/Std_Delete.md @@ -7,6 +7,8 @@ Shortcut:**Canc** --- +# Std Delete/it + ## Descrizione Il comando **Elimina** elimina gli oggetti selezionati. @@ -47,4 +49,7 @@ FreeCAD.ActiveDocument.removeObject("myObjectName") {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Delete/it diff --git a/wiki/translations/it/Std_DemoMode.md b/wiki/translations/it/Std_DemoMode.md index 3c9ced5d33..88aa2e4c97 100644 --- a/wiki/translations/it/Std_DemoMode.md +++ b/wiki/translations/it/Std_DemoMode.md @@ -7,6 +7,8 @@ Workbenches:Tutti --- +# Std DemoMode/it + @@ -52,4 +54,7 @@ Il comando **Visualizza rotazione oggetti** ruota continuamente la telecamera in {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DemoMode/it diff --git a/wiki/translations/it/Std_DependencyGraph.md b/wiki/translations/it/Std_DependencyGraph.md index 251a422d77..46c11a620b 100644 --- a/wiki/translations/it/Std_DependencyGraph.md +++ b/wiki/translations/it/Std_DependencyGraph.md @@ -7,6 +7,8 @@ Workbenches:Tutti --- +# Std DependencyGraph/it + @@ -156,3 +158,6 @@ dot is /usr/local/bin/dot }} [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > Std DependencyGraph/it diff --git a/wiki/translations/it/Std_DlgCustomize.md b/wiki/translations/it/Std_DlgCustomize.md index 326e316cc8..fdbcbd4187 100644 --- a/wiki/translations/it/Std_DlgCustomize.md +++ b/wiki/translations/it/Std_DlgCustomize.md @@ -1,3 +1,4 @@ +# Std DlgCustomize/it --- - GuiCommand:/it Name:Std_DlgCustomize Name/it:Personalizza MenuLocation:Strumenti → Personalizza... Workbenches:Tutti SeeAlso:[Personalizzare l'interfaccia](Interface_Customization/it.md)--- @@ -32,4 +33,7 @@ Il comando **Personalizza** apre la finestra di dialogo Personalizza dando acces {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgCustomize/it diff --git a/wiki/translations/it/Std_DlgMacroExecute.md b/wiki/translations/it/Std_DlgMacroExecute.md index efccd9965e..3c75309356 100644 --- a/wiki/translations/it/Std_DlgMacroExecute.md +++ b/wiki/translations/it/Std_DlgMacroExecute.md @@ -1,3 +1,4 @@ +# Std DlgMacroExecute/it --- - GuiCommand:/it Name:Std_DlgMacroExecute Name/it:Esegui macro MenuLocation:[Shortcut:CTRL+F6 Workbenches:Tutti SeeAlso:[[Std_DlgMacroExecuteDirect/it|Esegui la macro nell'editor](Macros/it___Macro]]_→_Esegui_la_macro.md)--- @@ -126,4 +127,7 @@ Quando si entra in ** Std DlgPreferences/it diff --git a/wiki/translations/it/Std_DrawStyle.md b/wiki/translations/it/Std_DrawStyle.md index afb8b00934..8f4d4e4d95 100644 --- a/wiki/translations/it/Std_DrawStyle.md +++ b/wiki/translations/it/Std_DrawStyle.md @@ -8,6 +8,8 @@ SeeAlso:[Box contenitore](Std_SelBoundingBox/it.md) --- +# Std DrawStyle/it + ## Descrizione Il comando **Stile di disegno** può sovrascrivere l\'effetto delle [proprietà](Property_editor/it.md) che definiscono la {{PropertyView/it|modalità di visualizzazione}} degli oggetti nella [vista 3D](3D_view/it.md). @@ -81,4 +83,7 @@ Lo stile **Facce piene** sovrascrive la proprietà **Display Mode** degli oggett {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DrawStyle/it diff --git a/wiki/translations/it/Std_DuplicateSelection.md b/wiki/translations/it/Std_DuplicateSelection.md index e4ad1a47a5..c4fb26284a 100644 --- a/wiki/translations/it/Std_DuplicateSelection.md +++ b/wiki/translations/it/Std_DuplicateSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Taglia](Std_Cut/it.md), [Copia](Std_Copy/it.md), [Incolla](Std_Paste/it.md) --- +# Std DuplicateSelection/it + @@ -47,4 +49,7 @@ Il comando **Duplica la selezione** duplica gli oggetti all\'interno del documen {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DuplicateSelection/it diff --git a/wiki/translations/it/Std_Edit.md b/wiki/translations/it/Std_Edit.md index 8417be92d2..29086202e0 100644 --- a/wiki/translations/it/Std_Edit.md +++ b/wiki/translations/it/Std_Edit.md @@ -6,6 +6,8 @@ Workbenches:Tutti --- +# Std Edit/it + ## Descrizione Il comando **Std Edit** attiva o disattiva la modalità di modifica di un oggetto. @@ -72,4 +74,7 @@ FreeCADGui.ActiveDocument.resetEdit() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Edit/it diff --git a/wiki/translations/it/Std_Edit_Menu.md b/wiki/translations/it/Std_Edit_Menu.md index 91eb0e598d..c1eaf56634 100644 --- a/wiki/translations/it/Std_Edit_Menu.md +++ b/wiki/translations/it/Std_Edit_Menu.md @@ -1,10 +1,4 @@ -# Std Edit Menu/it - - - - - -Icona di base +# Icona di base Std Edit Menu/it {{TOCright}} @@ -98,3 +92,6 @@ In questo menu sono disponibili i seguenti strumenti: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Edit Menu/it diff --git a/wiki/translations/it/Std_Exit.md b/wiki/translations/it/Std_Exit.md index af6a58cbef..56117c6248 100644 --- a/wiki/translations/it/Std_Exit.md +++ b/wiki/translations/it/Std_Exit.md @@ -1,2 +1,5 @@ # Std Exit/it 1. REDIRECT [Std Quit/it](Std_Quit/it.md) + +--- +[documentation index](../README.md) > Std Exit/it diff --git a/wiki/translations/it/Std_Export.md b/wiki/translations/it/Std_Export.md index d0ae306fc1..465a6e1981 100644 --- a/wiki/translations/it/Std_Export.md +++ b/wiki/translations/it/Std_Export.md @@ -9,6 +9,8 @@ SeeAlso:[Esporta PDF](Std_PrintPdf/it.md), [Importazione e Esportazione](Import_Export/it.md), [Preferenze di Importa/Esporta](Import_Export_Preferences/it.md) --- +# Std Export/it + @@ -67,3 +69,6 @@ Il comando **Esporta** esporta gli oggetti selezionati in un formato file divers }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Export/it diff --git a/wiki/translations/it/Std_ExportGraphviz.md b/wiki/translations/it/Std_ExportGraphviz.md index d06ca45673..339cb856c8 100644 --- a/wiki/translations/it/Std_ExportGraphviz.md +++ b/wiki/translations/it/Std_ExportGraphviz.md @@ -1,2 +1,5 @@ # Std ExportGraphviz/it 1. REDIRECT [Std\_DependencyGraph/it](Std_DependencyGraph/it.md) + +--- +[documentation index](../README.md) > Std ExportGraphviz/it diff --git a/wiki/translations/it/Std_File_Menu.md b/wiki/translations/it/Std_File_Menu.md index b1806691d8..7570ee8793 100644 --- a/wiki/translations/it/Std_File_Menu.md +++ b/wiki/translations/it/Std_File_Menu.md @@ -1,10 +1,4 @@ -# Std File Menu/it - - - - - -Icona di base +# Icona di base Std File Menu/it {{TOCright}} @@ -150,3 +144,6 @@ In questo menu sono disponibili i seguenti strumenti: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std File Menu/it diff --git a/wiki/translations/it/Std_FreeCADFAQ.md b/wiki/translations/it/Std_FreeCADFAQ.md index 91991cbe67..cbfdbf76d6 100644 --- a/wiki/translations/it/Std_FreeCADFAQ.md +++ b/wiki/translations/it/Std_FreeCADFAQ.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreeCADWebsite](Std_FreeCADWebsite.md), [Std FreeCADUserHub](Std_FreeCADUserHub.md), [Std FreeCADPowerUserHub](Std_FreeCADPowerUserHub.md), [Std FreeCADForum](Std_FreeCADForum.md) --- +# Std FreeCADFAQ/it + ## Descrizione The **Std FreeCADFAQ** command opens the FreeCAD FAQ page in the system\'s default Internet browser. The command requires a working Internet connection. @@ -22,4 +24,7 @@ Currently the command points to [](https:// {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADFAQ/it diff --git a/wiki/translations/it/Std_FreeCADForum.md b/wiki/translations/it/Std_FreeCADForum.md index 6a5f84c39e..82cbddd406 100644 --- a/wiki/translations/it/Std_FreeCADForum.md +++ b/wiki/translations/it/Std_FreeCADForum.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreeCADWebsite](Std_FreeCADWebsite.md), [Std FreeCADUserHub](Std_FreeCADUserHub.md), [Std FreeCADPowerUserHub](Std_FreeCADPowerUserHub.md), [Std FreeCADFAQ](Std_FreeCADFAQ.md) --- +# Std FreeCADForum/it + ## Descrizione The **Std FreeCADForum** command opens the FreeCAD forum website in the system\'s default Internet browser. The command requires a working Internet connection. @@ -22,4 +24,7 @@ Currently the command points to [](https://forum.f {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADForum/it diff --git a/wiki/translations/it/Std_FreeCADPowerUserHub.md b/wiki/translations/it/Std_FreeCADPowerUserHub.md index 473eed9d41..fcd3b855ee 100644 --- a/wiki/translations/it/Std_FreeCADPowerUserHub.md +++ b/wiki/translations/it/Std_FreeCADPowerUserHub.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreeCADWebsite](Std_FreeCADWebsite.md), [Std FreeCADUserHub](Std_FreeCADUserHub.md), [Std FreeCADForum](Std_FreeCADForum.md), [Std FreeCADFAQ](Std_FreeCADFAQ.md) --- +# Std FreeCADPowerUserHub/it + ## Descrizione The **Std FreeCADPowerUserHub** command opens the FreeCAD Power users documentation page in the system\'s default Internet browser. The command requires a working Internet connection. @@ -22,4 +24,7 @@ Currently the command points to [ Std FreeCADPowerUserHub/it diff --git a/wiki/translations/it/Std_FreeCADUserHub.md b/wiki/translations/it/Std_FreeCADUserHub.md index dfd23cc5f1..d4c3363436 100644 --- a/wiki/translations/it/Std_FreeCADUserHub.md +++ b/wiki/translations/it/Std_FreeCADUserHub.md @@ -7,6 +7,8 @@ SeeAlso:[Aiuto](Std_OnlineHelp/it.md) --- +# Std FreeCADUserHub/it + @@ -42,4 +44,7 @@ Currently the command points to [](htt {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADUserHub/it diff --git a/wiki/translations/it/Std_FreeCADWebsite.md b/wiki/translations/it/Std_FreeCADWebsite.md index 260f2f3987..1a3d79b064 100644 --- a/wiki/translations/it/Std_FreeCADWebsite.md +++ b/wiki/translations/it/Std_FreeCADWebsite.md @@ -5,6 +5,8 @@ ‎ Workbenches:Tutti --- +# Std FreeCADWebsite/it + @@ -42,4 +44,7 @@ Currently the command points to [](https://www.freec {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADWebsite/it diff --git a/wiki/translations/it/Std_FreezeViews.md b/wiki/translations/it/Std_FreezeViews.md index b9674ad877..455302cfd9 100644 --- a/wiki/translations/it/Std_FreezeViews.md +++ b/wiki/translations/it/Std_FreezeViews.md @@ -1,3 +1,4 @@ +# Std FreezeViews/it --- - GuiCommand:/it Name:Std_FreezeViews Name/it:Viste bloccate Empty:1 MenuLocation:Visualizza → Viste bloccate → ... Workbenches:Tutti SeeAlso:[Pubblica la posizione della camera](Std_ViewIvIssueCamPos/it.md)--- @@ -111,4 +112,7 @@ For each frozen view a **Restore view** option is added with which it can be res {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreezeViews/it diff --git a/wiki/translations/it/Std_Group.md b/wiki/translations/it/Std_Group.md index db6c6eb524..7b8adefc9d 100644 --- a/wiki/translations/it/Std_Group.md +++ b/wiki/translations/it/Std_Group.md @@ -8,6 +8,8 @@ SeeAlso:[Parte](Std_Part/it.md), [Seleziona gruppo](Draft_SelectGroup/it.md), [Aggiungi al gruppo](Draft_AddToGroup/it.md) --- +# Std Group/it + ## Descrizione Un [Gruppo](Std_Group/it.md) (chiamato internamente [App DocumentObjectGroup](App_DocumentObjectGroup/it.md)) è un contenitore per scopi generici che consente di raggruppare diversi tipi di oggetti nella [vista ad albero](tree_view/it.md), indipendentemente dal tipo di dati. È usato come una semplice cartella per classificare e organizzare gli oggetti nel modello, al fine di mantenere una struttura logica. I gruppi possono essere nidificati all\'interno di altri gruppi. @@ -124,4 +126,7 @@ Per esempio, un [Analisi FEM](FEM_Analysis/it.md) è un oggetto `App::DocumentOb {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Group/it diff --git a/wiki/translations/it/Std_Help.md b/wiki/translations/it/Std_Help.md index e41296fce4..be60839d36 100644 --- a/wiki/translations/it/Std_Help.md +++ b/wiki/translations/it/Std_Help.md @@ -1,2 +1,5 @@ # Std Help/it 1. REDIRECT [Std\_Help\_Menu/it](Std_Help_Menu/it.md) + +--- +[documentation index](../README.md) > Std Help/it diff --git a/wiki/translations/it/Std_Help_Menu.md b/wiki/translations/it/Std_Help_Menu.md index 611a1fa156..89c3bd7a7e 100644 --- a/wiki/translations/it/Std_Help_Menu.md +++ b/wiki/translations/it/Std_Help_Menu.md @@ -1,10 +1,4 @@ -# Std Help Menu/it - - - - - -Std Base icon +# Std Base icon Std Help Menu/it {{TOCright}} @@ -112,3 +106,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Help Menu/it diff --git a/wiki/translations/it/Std_HideObjects.md b/wiki/translations/it/Std_HideObjects.md index 41949297fb..2c6112233a 100644 --- a/wiki/translations/it/Std_HideObjects.md +++ b/wiki/translations/it/Std_HideObjects.md @@ -8,6 +8,8 @@ SeeAlso:[Mostra/Nascondi](Std_ToggleVisibility/it.md), [Mostra la selezione](Std_ShowSelection/it.md), [Nascondi la selezione](Std_HideSelection/it.md), [Commuta tutti gli oggetti](Std_ToggleObjects/it.md), [Mostra tutti gli oggetti](Std_ShowObjects/it.md) --- +# Std HideObjects/it + @@ -46,4 +48,7 @@ For a scripting example see [Std ToggleVisibility](Std_ToggleVisibility.md). {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std HideObjects/it diff --git a/wiki/translations/it/Std_HideSelection.md b/wiki/translations/it/Std_HideSelection.md index 706f284db7..e2eb56e2f9 100644 --- a/wiki/translations/it/Std_HideSelection.md +++ b/wiki/translations/it/Std_HideSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Mostra/Nascondi](Std_ToggleVisibility/it.md), [Mostra la selezione](Std_ShowSelection/it.md), [Commuta tutti gli oggetti](Std_ToggleObjects/it.md), [Mostra tutti gli oggetti](Std_ShowObjects/it.md), [Nascondi tutti gli oggetti](Std_HideObjects/it.md) --- +# Std HideSelection/it + @@ -51,4 +53,7 @@ For a scripting example see [Std ToggleVisibility](Std_ToggleVisibility.md). {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std HideSelection/it diff --git a/wiki/translations/it/Std_Import.md b/wiki/translations/it/Std_Import.md index e8e742d298..dd7a06a7dd 100644 --- a/wiki/translations/it/Std_Import.md +++ b/wiki/translations/it/Std_Import.md @@ -9,6 +9,8 @@ SeeAlso:[Apri](Std_Open/it.md), [Importazione e Esportazione](Import_Export/it.md), [Preferenze di Importa/Esporta](Import_Export_Preferences/it.md) --- +# Std Import/it + @@ -68,3 +70,6 @@ Il comando **Importa** importa la geometria da un diverso formato di file nel do }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Import/it diff --git a/wiki/translations/it/Std_InterfaceCustomization.md b/wiki/translations/it/Std_InterfaceCustomization.md index c8b96811f4..d4240cbb2e 100644 --- a/wiki/translations/it/Std_InterfaceCustomization.md +++ b/wiki/translations/it/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/it 1. REDIRECT [Interface\_Customization/it](Interface_Customization/it.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/it diff --git a/wiki/translations/it/Std_LinkImport.md b/wiki/translations/it/Std_LinkImport.md index f675ed08fd..633aa9f4b5 100644 --- a/wiki/translations/it/Std_LinkImport.md +++ b/wiki/translations/it/Std_LinkImport.md @@ -8,6 +8,8 @@ SeeAlso:[Crea un link](Std_LinkMake/it.md), [Crea un link relativo](Std_LinkMakeRelative/it.md), [Importa tutti i link](Std_LinkImportAll/it.md) --- +# Std LinkImport/it + ## Descrizione Lo strumento [Importa link](Std_LinkImport/it.md) importa un **Linked Object** da un collegamento nel documento corrente, quindi modifica l\'associazione in questo oggetto. @@ -35,4 +37,7 @@ Una copia della Parte {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkImport/it diff --git a/wiki/translations/it/Std_LinkImportAll.md b/wiki/translations/it/Std_LinkImportAll.md index 18342ddb79..559d4a3360 100644 --- a/wiki/translations/it/Std_LinkImportAll.md +++ b/wiki/translations/it/Std_LinkImportAll.md @@ -8,6 +8,8 @@ SeeAlso:[Crea un link](Std_LinkMake/it.md), [Crea un link relativo](Std_LinkMakeRelative/it.md), [Importa un link](Std_LinkImport/it.md) --- +# Std LinkImportAll/it + ## Descrizione Lo strumento [Importa tutti i link](Std_LinkImportAll/it.md) importa tutti i **Linked Object** dai link esistenti nel documento corrente, quindi modifica l\'associazione che punta a questi oggetti importati. @@ -30,4 +32,7 @@ Questo comando essenzialmente esegue Std LinkImportAll/it diff --git a/wiki/translations/it/Std_LinkMake.md b/wiki/translations/it/Std_LinkMake.md index 983da8f9f0..4f3ef71436 100644 --- a/wiki/translations/it/Std_LinkMake.md +++ b/wiki/translations/it/Std_LinkMake.md @@ -8,6 +8,8 @@ SeeAlso:[Parte](Std_Part/it.md), [Gruppo](Std_Group/it.md), [Corpo di PartDesign](PartDesign_Body/it.md) --- +# Std LinkMake/it + ## Descrizione @@ -393,4 +395,7 @@ Other miscellaneous \"links\" about Link include: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkMake/it diff --git a/wiki/translations/it/Std_LinkMakeRelative.md b/wiki/translations/it/Std_LinkMakeRelative.md index 71ca246a05..b2e0d0369d 100644 --- a/wiki/translations/it/Std_LinkMakeRelative.md +++ b/wiki/translations/it/Std_LinkMakeRelative.md @@ -8,6 +8,8 @@ SeeAlso:[Parte](Std_Part/it.md), [Gruppo](Std_Group/it.md), [Crea un link](Std_LinkMake/it.md) --- +# Std LinkMakeRelative/it + ## Descrizione Lo strumento [Crea un link relativo](Std_LinkMakeRelative/it.md) crea un [App Link](App_Link/it.md) (classe `App::Link`), così come fa [Crea un link](Std_LinkMake/it.md), ma opera prima sui sottoelementi selezionati e imposta **Link Transform** su `True`. @@ -61,4 +63,7 @@ App.ActiveDocument.recompute() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkMakeRelative/it diff --git a/wiki/translations/it/Std_LinkReplace.md b/wiki/translations/it/Std_LinkReplace.md index 75b02144fd..98b4b2c5a2 100644 --- a/wiki/translations/it/Std_LinkReplace.md +++ b/wiki/translations/it/Std_LinkReplace.md @@ -8,6 +8,8 @@ SeeAlso:[Crea un link](Std_LinkMake/it.md), [Crea un link relativo](Std_LinkMakeRelative/it.md), [Annulla il link](Std_LinkUnlink/it.md) --- +# Std LinkReplace/it + ## Descrizione @@ -49,4 +51,7 @@ Questo comando crea un nuovo [Sostituisci con un link](Std_LinkReplace/it.md)**. @@ -38,4 +40,7 @@ L\'originale {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MacroStopRecord/it diff --git a/wiki/translations/it/Std_Macro_Menu.md b/wiki/translations/it/Std_Macro_Menu.md index ece38a103b..4f3f516af5 100644 --- a/wiki/translations/it/Std_Macro_Menu.md +++ b/wiki/translations/it/Std_Macro_Menu.md @@ -1,10 +1,4 @@ -# Std Macro Menu/it - - - - - -Icona di base +# Icona di base Std Macro Menu/it {{TOCright}} @@ -68,3 +62,6 @@ In questo menu sono disponibili i seguenti strumenti: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Macro Menu/it diff --git a/wiki/translations/it/Std_MainFullscreen.md b/wiki/translations/it/Std_MainFullscreen.md index 093d8be616..7d71e46ea8 100644 --- a/wiki/translations/it/Std_MainFullscreen.md +++ b/wiki/translations/it/Std_MainFullscreen.md @@ -8,6 +8,8 @@ SeeAlso:[Vista 3D a schermo intero](Std_ViewFullscreen/it.md) --- +# Std MainFullscreen/it + ## Descrizione Il comando **Schermo intero** attiva o disattiva la modalità a schermo intero della finestra principale di FreeCAD. @@ -30,4 +32,7 @@ Il comando **Schermo intero** attiva o disattiva la modalità a schermo intero d {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MainFullscreen/it diff --git a/wiki/translations/it/Std_MeasureDistance.md b/wiki/translations/it/Std_MeasureDistance.md index b0730dec17..6460bd3d2a 100644 --- a/wiki/translations/it/Std_MeasureDistance.md +++ b/wiki/translations/it/Std_MeasureDistance.md @@ -7,6 +7,8 @@ SeeAlso:[Menu Misure](Std_Measure_Menu/it.md), [Dimensioni di Draft](Draft_Dimension/it.md), [Ispeziona di Arch](Arch_Survey/it.md) --- +# Std MeasureDistance/it + @@ -76,4 +78,7 @@ Il comando **Misura la distanza** crea un oggetto distanza che misura e visualiz {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MeasureDistance/it diff --git a/wiki/translations/it/Std_Measure_Menu.md b/wiki/translations/it/Std_Measure_Menu.md index 9c38c12c68..a5ebba785c 100644 --- a/wiki/translations/it/Std_Measure_Menu.md +++ b/wiki/translations/it/Std_Measure_Menu.md @@ -1,2 +1,5 @@ # Std Measure Menu/it 1. REDIRECT [Part Measure Menu/it](Part_Measure_Menu/it.md) + +--- +[documentation index](../README.md) > Std Measure Menu/it diff --git a/wiki/translations/it/Std_MergeProject.md b/wiki/translations/it/Std_MergeProject.md index 49a3eba2e2..b57043e2fa 100644 --- a/wiki/translations/it/Std_MergeProject.md +++ b/wiki/translations/it/Std_MergeProject.md @@ -1,2 +1,5 @@ # Std MergeProject/it 1. REDIRECT [Std\_MergeProjects/it](Std_MergeProjects/it.md) + +--- +[documentation index](../README.md) > Std MergeProject/it diff --git a/wiki/translations/it/Std_MergeProjects.md b/wiki/translations/it/Std_MergeProjects.md index 3303487808..fe18481402 100644 --- a/wiki/translations/it/Std_MergeProjects.md +++ b/wiki/translations/it/Std_MergeProjects.md @@ -7,6 +7,8 @@ Workbenches:Tutti --- +# Std MergeProjects/it + @@ -52,4 +54,7 @@ Il comando **Unisci progetti** aggiunge il contenuto di un file FreeCAD nel docu {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MergeProjects/it diff --git a/wiki/translations/it/Std_New.md b/wiki/translations/it/Std_New.md index c159ac29a5..6ab40b3a01 100644 --- a/wiki/translations/it/Std_New.md +++ b/wiki/translations/it/Std_New.md @@ -1,3 +1,4 @@ +# Std New/it --- - GuiCommand:/it Name:Std_New Name/it:Nuovo MenuLocation:File → Nuovo Workbenches:Tutti Shortcut:**Ctrl**+**N** SeeAlso:[Apri](Std_Open/it.md), [Importa](Std_Import/it.md)--- @@ -101,4 +102,7 @@ FreeCAD.closeDocument(doc.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std New/it diff --git a/wiki/translations/it/Std_OnlineHelp.md b/wiki/translations/it/Std_OnlineHelp.md index 595e444529..24d8046e33 100644 --- a/wiki/translations/it/Std_OnlineHelp.md +++ b/wiki/translations/it/Std_OnlineHelp.md @@ -1,3 +1,4 @@ +# Std OnlineHelp/it --- - GuiCommand:/it Name:Std OnlineHelp Name/it:Aiuto MenuLocation:[|Workbenches:Tutti Shortcut:F1 SeeAlso:[[Std_Help_Menu/it|Menu Aiuto](Std_Help/it___Help]]_→_Aiuto.md), [Cos'è questo?](Std_WhatsThis/it.md), [Documentazione utenti](Std_FreeCADUserHub/it.md)--- @@ -44,4 +45,7 @@ The **Std OnlineHelp** command opens the help documentation. To open the documen {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std OnlineHelp/it diff --git a/wiki/translations/it/Std_Open.md b/wiki/translations/it/Std_Open.md index 951a7ba7a6..f008f16e0e 100644 --- a/wiki/translations/it/Std_Open.md +++ b/wiki/translations/it/Std_Open.md @@ -1,3 +1,4 @@ +# Std Open/it --- - GuiCommand:/it Name:Std_Open Name/it:Apri MenuLocation:File → Apri Workbenches:Tutti Shortcut:**Ctrl**+**O** SeeAlso:[Nuovo](Std_New.md), [Importa](Std_Import/it.md)--- @@ -54,4 +55,7 @@ For a scripting example see [Std New](Std_New#Scripting.md). {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Open/it diff --git a/wiki/translations/it/Std_OrthographicCamera.md b/wiki/translations/it/Std_OrthographicCamera.md index 42df12985f..671a7d97b3 100644 --- a/wiki/translations/it/Std_OrthographicCamera.md +++ b/wiki/translations/it/Std_OrthographicCamera.md @@ -1,3 +1,4 @@ +# Std OrthographicCamera/it --- - GuiCommand:/it Name:Std_OrthographicCamera Name/it:Vista ortografica MenuLocation:[Workbenches:Tutti Shortcut:**V** **O** SeeAlso:[[Std_PerspectiveCamera/it|Vista in prospettiva](Std_View_Menu/it___Visualizza]]_→_Vista_ortografica.md)--- @@ -50,4 +51,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std OrthographicCamera/it diff --git a/wiki/translations/it/Std_Part.md b/wiki/translations/it/Std_Part.md index 59c62ae2a9..efe520114c 100644 --- a/wiki/translations/it/Std_Part.md +++ b/wiki/translations/it/Std_Part.md @@ -8,6 +8,8 @@ SeeAlso:[Gruppo](Std_Group/it.md), [PartDesign Corpo](PartDesign_Body/it.md) --- +# Std Part/it + ## Descrizione Una [Parte](Std_Part/it.md) (internamente chiamata [App Part](App_Part/it.md)) è un contenitore per scopi generali che contiene un gruppo di oggetti in modo che essi possano essere spostati in blocco come una singola unità nella vista 3D. @@ -269,4 +271,7 @@ App.ActiveDocument.addObject('Part::FeaturePython', 'Group', group.MyGroup(), gr {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Part/it diff --git a/wiki/translations/it/Std_Paste.md b/wiki/translations/it/Std_Paste.md index 467417faaf..4b013a79d0 100644 --- a/wiki/translations/it/Std_Paste.md +++ b/wiki/translations/it/Std_Paste.md @@ -8,6 +8,8 @@ SeeAlso:[Taglia](Std_Cut/it.md), [Copia](Std_Copy/it.md), [Duplica la selezione](Std_DuplicateSelection/it.md) --- +# Std Paste/it + ## Descrizione Il comando **Incolla** incolla gli oggetti dagli Appunti nel documento attivo. @@ -43,4 +45,7 @@ Il comando **Incolla** incolla gli oggetti dagli Appunti nel documento attivo. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Paste/it diff --git a/wiki/translations/it/Std_PerspectiveCamera.md b/wiki/translations/it/Std_PerspectiveCamera.md index 0ec73d233d..61df09662e 100644 --- a/wiki/translations/it/Std_PerspectiveCamera.md +++ b/wiki/translations/it/Std_PerspectiveCamera.md @@ -1,3 +1,4 @@ +# Std PerspectiveCamera/it --- - GuiCommand:/it Name:Std_PerspectiveCamera Name/it:Vista in prospettiva MenuLocation:Visualizza → Vista in prospettiva Workbenches:Tutti Shortcut:**V** **P** SeeAlso:[Vista ortografica](Std_OrthographicCamera/it.md)--- @@ -50,4 +51,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PerspectiveCamera/it diff --git a/wiki/translations/it/Std_Placement.md b/wiki/translations/it/Std_Placement.md index 741d39762d..880c1982ff 100644 --- a/wiki/translations/it/Std_Placement.md +++ b/wiki/translations/it/Std_Placement.md @@ -7,6 +7,8 @@ SeeAlso:[Allinea](Std_Alignment/it.md), [Azioni di posizionamento](Tasks_Placement/it.md), [Posizionamento](Placement/it.md) --- +# Std Placement/it + @@ -105,4 +107,7 @@ print(obj.Placement.Matrix) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Placement/it diff --git a/wiki/translations/it/Std_Print.md b/wiki/translations/it/Std_Print.md index 83d5d82268..14bd959f0f 100644 --- a/wiki/translations/it/Std_Print.md +++ b/wiki/translations/it/Std_Print.md @@ -8,6 +8,8 @@ SeeAlso:[Anteprima di stampa](Std_PrintPreview/it.md), [Esporta PDF](Std_PrintPdf/it.md), [Esporta](Std_Export/it.md), [Cattura schermata](Std_ViewScreenShot/it.md) --- +# Std Print/it + ## Descrizione @@ -43,4 +45,7 @@ Il comando **Stampa** ha principalmente lo scopo di stampare le pagine di [TechD {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Print/it diff --git a/wiki/translations/it/Std_PrintPdf.md b/wiki/translations/it/Std_PrintPdf.md index 4847a27bb4..57720c0654 100644 --- a/wiki/translations/it/Std_PrintPdf.md +++ b/wiki/translations/it/Std_PrintPdf.md @@ -8,6 +8,8 @@ SeeAlso:[Stampa](Std_Print/it.md), [Esporta](Std_Export/it.md), [Cattura Schermata](Std_ViewScreenShot/it.md) --- +# Std PrintPdf/it + @@ -59,4 +61,7 @@ Il comando **Esporta PDF** ha principalmente lo scopo di creare dei file [PDF](P {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PrintPdf/it diff --git a/wiki/translations/it/Std_PrintPreview.md b/wiki/translations/it/Std_PrintPreview.md index e15b89f184..f0a166697a 100644 --- a/wiki/translations/it/Std_PrintPreview.md +++ b/wiki/translations/it/Std_PrintPreview.md @@ -7,6 +7,8 @@ SeeAlso:[Stampa](Std_Print/it.md) --- +# Std PrintPreview/it + ## Descrizione Il comando **Anteprima di stampa** mostra un\'anteprima del risultato del comando [Stampa](Std_Print/it.md). Si può anche stampare direttamente dalla finestra di dialogo di anteprima. @@ -40,4 +42,7 @@ Il comando **Anteprima di stampa** mostra un\'anteprima del risultato del comand {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PrintPreview/it diff --git a/wiki/translations/it/Std_ProjectInfo.md b/wiki/translations/it/Std_ProjectInfo.md index ea780b4182..c1db47706c 100644 --- a/wiki/translations/it/Std_ProjectInfo.md +++ b/wiki/translations/it/Std_ProjectInfo.md @@ -7,6 +7,8 @@ SeeAlso:[Nuovo](Std_New/it.md) --- +# Std ProjectInfo/it + ## Descrizione Il comando **Informazioni sul progetto** mostra una finestra di dialogo con le informazioni sul progetto appartenenti al documento attivo. Alcune di queste informazioni possono essere modificate. @@ -54,4 +56,7 @@ Il comando **Informazioni sul progetto** mostra una finestra di dialogo con le i {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ProjectInfo/it diff --git a/wiki/translations/it/Std_ProjectUtil.md b/wiki/translations/it/Std_ProjectUtil.md index 3806c7a908..d09c8a6eef 100644 --- a/wiki/translations/it/Std_ProjectUtil.md +++ b/wiki/translations/it/Std_ProjectUtil.md @@ -7,6 +7,8 @@ Workbenches:Tutti --- +# Std ProjectUtil/it + @@ -80,4 +82,7 @@ Con il comando **Utilità di progetto** è possibile estrarre i file da un file {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ProjectUtil/it diff --git a/wiki/translations/it/Std_ProjectUtility.md b/wiki/translations/it/Std_ProjectUtility.md index f728da2c32..8d020a114d 100644 --- a/wiki/translations/it/Std_ProjectUtility.md +++ b/wiki/translations/it/Std_ProjectUtility.md @@ -1,2 +1,5 @@ # Std ProjectUtility/it 1. REDIRECT [Std ProjectUtil/it](Std_ProjectUtil/it.md) + +--- +[documentation index](../README.md) > Std ProjectUtility/it diff --git a/wiki/translations/it/Std_PythonHelp.md b/wiki/translations/it/Std_PythonHelp.md index 5d5e8ec550..32c6f5b456 100644 --- a/wiki/translations/it/Std_PythonHelp.md +++ b/wiki/translations/it/Std_PythonHelp.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreeCADPowerUserHub](Std_FreeCADPowerUserHub.md) --- +# Std PythonHelp/it + ## Descrizione The **Std PythonHelp** command starts a web server that communicates with the system\'s default Internet browser over a local socket. The web server displays information about the available [Python](Python.md) modules, classes and functions of FreeCAD. The required pages are generated automatically. @@ -23,4 +25,7 @@ The web server is based on Python\'s [pydoc](https://docs.python.org/3.8/library {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PythonHelp/it diff --git a/wiki/translations/it/Std_Quit.md b/wiki/translations/it/Std_Quit.md index 170d90fa5d..7d36c34356 100644 --- a/wiki/translations/it/Std_Quit.md +++ b/wiki/translations/it/Std_Quit.md @@ -8,6 +8,8 @@ SeeAlso:[Chiudi](Std_Close/it.md) --- +# Std Quit/it + @@ -45,4 +47,7 @@ Il comando **Esci** chiude l\'applicazione FreeCAD e facoltativamente salva i do {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Quit/it diff --git a/wiki/translations/it/Std_RandomColor.md b/wiki/translations/it/Std_RandomColor.md index a5a9836222..1387a30da4 100644 --- a/wiki/translations/it/Std_RandomColor.md +++ b/wiki/translations/it/Std_RandomColor.md @@ -7,6 +7,8 @@ Workbenches:Tutti --- +# Std RandomColor/it + @@ -37,4 +39,7 @@ The **Std RandomColor** command applies a random **Shape Color** to selected obj {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std RandomColor/it diff --git a/wiki/translations/it/Std_RecentFiles.md b/wiki/translations/it/Std_RecentFiles.md index 3c967c7a4e..8a12f890d7 100644 --- a/wiki/translations/it/Std_RecentFiles.md +++ b/wiki/translations/it/Std_RecentFiles.md @@ -8,6 +8,8 @@ SeeAlso:[Apri](Std_Open/it.md), [Importa](Std_Import/it.md) --- +# Std RecentFiles/it + ## Descrizione L\'opzione di menu **File recenti** visualizza un elenco di file recenti che possono essere aperti. @@ -38,4 +40,7 @@ L\'opzione di menu **File recenti** visualizza un elenco di file recenti che pos {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std RecentFiles/it diff --git a/wiki/translations/it/Std_Redo.md b/wiki/translations/it/Std_Redo.md index c4d413ee47..747c9a4bb6 100644 --- a/wiki/translations/it/Std_Redo.md +++ b/wiki/translations/it/Std_Redo.md @@ -8,6 +8,8 @@ SeeAlso:[Annulla](Std_Undo/it.md) --- +# Std Redo/it + ## Descrizione Il comando **Ripristina** inverte l\'azione del comando [Annulla](Std_Undo/it.md). @@ -56,4 +58,7 @@ FreeCAD.ActiveDocument.redo() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Redo/it diff --git a/wiki/translations/it/Std_Refresh.md b/wiki/translations/it/Std_Refresh.md index c465ab33be..82a2f05cf6 100644 --- a/wiki/translations/it/Std_Refresh.md +++ b/wiki/translations/it/Std_Refresh.md @@ -7,6 +7,8 @@ Shortcut:**F5** --- +# Std Refresh/it + ## Descrizione Il comando **Aggiorna** ricalcola il documento attivo. Il comando è disabilitato se il documento non richiede un nuovo calcolo. @@ -62,4 +64,7 @@ doc.recompute() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Refresh/it diff --git a/wiki/translations/it/Std_Revert.md b/wiki/translations/it/Std_Revert.md index c44f971fd0..cf20ee7c8c 100644 --- a/wiki/translations/it/Std_Revert.md +++ b/wiki/translations/it/Std_Revert.md @@ -7,6 +7,8 @@ Workbenches:Tutti --- +# Std Revert/it + @@ -41,4 +43,7 @@ Il comando **Ripristina** chiude il documento attivo e riapre l\'ultima versione {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Revert/it diff --git a/wiki/translations/it/Std_Save.md b/wiki/translations/it/Std_Save.md index 49f6dd0f7b..ce34bd357e 100644 --- a/wiki/translations/it/Std_Save.md +++ b/wiki/translations/it/Std_Save.md @@ -8,6 +8,8 @@ SeeAlso:[Salva con nome](Std_SaveAs/it.md), [Salva una copia](Std_SaveaCopy/it.md), [Salva tutto](Std_SaveAll/it.md) --- +# Std Save/it + @@ -56,4 +58,7 @@ Per salvare un documento, utilizzare il metodo `save` dell\'oggetto documento. U {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Save/it diff --git a/wiki/translations/it/Std_SaveAll.md b/wiki/translations/it/Std_SaveAll.md index 2853fd0db9..bd6a04ed76 100644 --- a/wiki/translations/it/Std_SaveAll.md +++ b/wiki/translations/it/Std_SaveAll.md @@ -8,6 +8,8 @@ SeeAlso:[Salva](Std_Save/it.md) --- +# Std SaveAll/it + @@ -55,4 +57,7 @@ Per salvare un documento, utilizzare il metodo `save` dell\'oggetto documento. U {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveAll/it diff --git a/wiki/translations/it/Std_SaveAs.md b/wiki/translations/it/Std_SaveAs.md index 3b43e08eea..e93ae436a1 100644 --- a/wiki/translations/it/Std_SaveAs.md +++ b/wiki/translations/it/Std_SaveAs.md @@ -7,6 +7,8 @@ SeeAlso:[Salva una copia](Std_SaveaCopy/it.md), [Salva](Std_Save/it.md) --- +# Std SaveAs/it + @@ -59,4 +61,7 @@ Per salvare un documento con un nuovo nome, utilizzare il metodo `saveAs` dell\' {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveAs/it diff --git a/wiki/translations/it/Std_SaveCopy.md b/wiki/translations/it/Std_SaveCopy.md index 47b2a8654d..31c11ed4d2 100644 --- a/wiki/translations/it/Std_SaveCopy.md +++ b/wiki/translations/it/Std_SaveCopy.md @@ -8,6 +8,8 @@ SeeAlso:[Salva con nome](Std_SaveAs/it.md), [Salva](Std_Save/it.md) --- +# Std SaveCopy/it + @@ -72,4 +74,7 @@ doc.saveCopy(fnm) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveCopy/it diff --git a/wiki/translations/it/Std_SaveaCopy.md b/wiki/translations/it/Std_SaveaCopy.md index d8d4b5d356..082315caeb 100644 --- a/wiki/translations/it/Std_SaveaCopy.md +++ b/wiki/translations/it/Std_SaveaCopy.md @@ -1,2 +1,5 @@ # Std SaveaCopy/it 1. REDIRECT [Std SaveCopy/it](Std_SaveCopy/it.md) + +--- +[documentation index](../README.md) > Std SaveaCopy/it diff --git a/wiki/translations/it/Std_SceneInspector.md b/wiki/translations/it/Std_SceneInspector.md index 9c6e02131e..24ef66baf8 100644 --- a/wiki/translations/it/Std_SceneInspector.md +++ b/wiki/translations/it/Std_SceneInspector.md @@ -7,6 +7,8 @@ Workbenches:Tutti --- +# Std SceneInspector/it + @@ -40,4 +42,7 @@ Il comando **Ispettore di scena** apre una finestra di dialogo che mostra una pa {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SceneInspector/it diff --git a/wiki/translations/it/Std_SelBoundingBox.md b/wiki/translations/it/Std_SelBoundingBox.md index 03956fb605..645bd8e474 100644 --- a/wiki/translations/it/Std_SelBoundingBox.md +++ b/wiki/translations/it/Std_SelBoundingBox.md @@ -7,6 +7,8 @@ SeeAlso:[Stile di disegno](Std_DrawStyle/it.md) --- +# Std SelBoundingBox/it + @@ -58,4 +60,7 @@ FreeCADGui.updateCommands() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelBoundingBox/it diff --git a/wiki/translations/it/Std_SelectAll.md b/wiki/translations/it/Std_SelectAll.md index 02c0053fd3..c8853dcc16 100644 --- a/wiki/translations/it/Std_SelectAll.md +++ b/wiki/translations/it/Std_SelectAll.md @@ -7,6 +7,8 @@ SeeAlso:[Box di selezione](Std_BoxSelection/it.md), [Selezione di elementi](Std_BoxElementSelection/it.md), [Box di selezione di Part](Part_BoxSelection/it.md) --- +# Std SelectAll/it + ## Descrizione Il comando **Seleziona tutto** permette di selezionare tutti gli elementi di un documento attivo con una sola azione. @@ -31,4 +33,7 @@ Il comando **Seleziona tutto** permette di selezionare tutti gli elementi di un {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelectAll/it diff --git a/wiki/translations/it/Std_SelectVisibleObjects.md b/wiki/translations/it/Std_SelectVisibleObjects.md index 1c48f3bb3f..026e59702e 100644 --- a/wiki/translations/it/Std_SelectVisibleObjects.md +++ b/wiki/translations/it/Std_SelectVisibleObjects.md @@ -7,6 +7,8 @@ Workbenches:Tutti --- +# Std SelectVisibleObjects/it + @@ -30,4 +32,7 @@ The **Std SelectVisibleObjects** command selects all visible objects. Note that {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelectVisibleObjects/it diff --git a/wiki/translations/it/Std_SendToPythonConsole.md b/wiki/translations/it/Std_SendToPythonConsole.md index 8428824bf6..b71f35cee7 100644 --- a/wiki/translations/it/Std_SendToPythonConsole.md +++ b/wiki/translations/it/Std_SendToPythonConsole.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Std SendToPythonConsole/it + ## Descrizione Il comando **Invia alla console Python** crea una variabile nel [console Python](Python_console/it.md) che fa riferimento a un oggetto selezionato. Se viene selezionata una sottoforma dell\'oggetto, vengono create due variabili aggiuntive, una che fa riferimento alla forma dell\'oggetto e l\'altra che fa riferimento alla sottoforma stessa. Le variabili e il codice in questione possono essere utilizzati per sviluppare il codice Python. @@ -41,4 +43,7 @@ Il comando **Invia alla console Python** crea una variabile nel [console Python] {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SendToPythonConsole/it diff --git a/wiki/translations/it/Std_SetAppearance.md b/wiki/translations/it/Std_SetAppearance.md index 2836cd2ed0..48723ac9c3 100644 --- a/wiki/translations/it/Std_SetAppearance.md +++ b/wiki/translations/it/Std_SetAppearance.md @@ -7,6 +7,8 @@ Shortcut:**Ctrl**+**D** --- +# Std SetAppearance/it + @@ -99,4 +101,7 @@ Imposta lo stile di disegno. Il menu a discesa offre 4 opzioni: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SetAppearance/it diff --git a/wiki/translations/it/Std_SetColors.md b/wiki/translations/it/Std_SetColors.md index 5d66b28245..ed8a23b2b0 100644 --- a/wiki/translations/it/Std_SetColors.md +++ b/wiki/translations/it/Std_SetColors.md @@ -1,2 +1,5 @@ # Std SetColors/it 1. REDIRECT [Part\_FaceColors/it](Part_FaceColors/it.md) + +--- +[documentation index](../README.md) > Std SetColors/it diff --git a/wiki/translations/it/Std_ShowObjects.md b/wiki/translations/it/Std_ShowObjects.md index 06b86ec2b8..8d752b852f 100644 --- a/wiki/translations/it/Std_ShowObjects.md +++ b/wiki/translations/it/Std_ShowObjects.md @@ -8,6 +8,8 @@ SeeAlso:[Mostra/Nascondi](Std_ToggleVisibility/it.md), [Mostra la selezione](Std_ShowSelection/it.md), [Nascondi la selezione](Std_HideSelection/it.md), [Commuta tutti gli oggetti](Std_ToggleObjects/it.md), [Nascondi tutti gli oggetti](Std_HideObjects/it.md) --- +# Std ShowObjects/it + @@ -45,4 +47,7 @@ For a scripting example see [Std ToggleVisibility](Std_ToggleVisibility.md). {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ShowObjects/it diff --git a/wiki/translations/it/Std_ShowSelection.md b/wiki/translations/it/Std_ShowSelection.md index 30f98e4004..bab8013e2c 100644 --- a/wiki/translations/it/Std_ShowSelection.md +++ b/wiki/translations/it/Std_ShowSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Mostra/Nascondi](Std_ToggleVisibility/it.md), [Nascondi la selezione](Std_HideSelection/it.md), [Commuta tutti gli oggetti](Std_ToggleObjects/it.md), [Mostra tutti gli oggetti](Std_ShowObjects/it.md), [Nascondi tutti gli oggetti](Std_HideObjects/it.md) --- +# Std ShowSelection/it + @@ -54,4 +56,7 @@ For a scripting example see [Std ToggleVisibility](Std_ToggleVisibility.md). {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ShowSelection/it diff --git a/wiki/translations/it/Std_TextDocument.md b/wiki/translations/it/Std_TextDocument.md index a2243fcbad..919b7c7ffe 100644 --- a/wiki/translations/it/Std_TextDocument.md +++ b/wiki/translations/it/Std_TextDocument.md @@ -8,6 +8,8 @@ SeeAlso:[Forma da testo di Draft](Draft_ShapeString/it.md), [Testo di Draft](Draft_Text/it.md) --- +# Std TextDocument/it + ## Descrizione Il comando **Aggiungi un documento di testo** crea un oggetto in grado di contenere un testo arbitrario. Questo elemento può essere utilizzato per scrivere delle informazioni generali o della documentazione sul modello. @@ -71,4 +73,7 @@ App.ActiveDocument.recompute() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TextDocument/it diff --git a/wiki/translations/it/Std_TextureMapping.md b/wiki/translations/it/Std_TextureMapping.md index 8c4943c0bd..9a22444143 100644 --- a/wiki/translations/it/Std_TextureMapping.md +++ b/wiki/translations/it/Std_TextureMapping.md @@ -7,6 +7,8 @@ Workbenches:Tutti --- +# Std TextureMapping/it + @@ -36,4 +38,7 @@ The **Std TextureMapping** command temporarily maps a texture onto all objects i {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TextureMapping/it diff --git a/wiki/translations/it/Std_TileWindows.md b/wiki/translations/it/Std_TileWindows.md index 7945318130..90ac1557de 100644 --- a/wiki/translations/it/Std_TileWindows.md +++ b/wiki/translations/it/Std_TileWindows.md @@ -6,6 +6,8 @@ SeeAlso:[Std CascadeWindows](Std_CascadeWindows.md) --- +# Std TileWindows/it + ## Description The **Std TileWindows** command rearranges the windows in the [Main view area](Main_view_area.md) so that they are all visible and do not overlap. The result is determined by the order in which the windows were last activated. @@ -24,4 +26,7 @@ The **Std TileWindows** command rearranges the windows in the [Main view area](M {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TileWindows/it diff --git a/wiki/translations/it/Std_ToggleBreakpoint.md b/wiki/translations/it/Std_ToggleBreakpoint.md index 02b8746a29..e5023d495d 100644 --- a/wiki/translations/it/Std_ToggleBreakpoint.md +++ b/wiki/translations/it/Std_ToggleBreakpoint.md @@ -9,6 +9,8 @@ SeeAlso:[Passo successivo](Std_MacroStepOver/it.md), [Un passo](Std_MacroStepInto/it.md) --- +# Std ToggleBreakpoint/it + ## Descrizione In questo momento questo comando non funziona. @@ -25,4 +27,7 @@ In questo momento questo comando non funziona. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleBreakpoint/it diff --git a/wiki/translations/it/Std_ToggleClipPlane.md b/wiki/translations/it/Std_ToggleClipPlane.md index 858a320f7a..54de668d5b 100644 --- a/wiki/translations/it/Std_ToggleClipPlane.md +++ b/wiki/translations/it/Std_ToggleClipPlane.md @@ -7,6 +7,8 @@ Workbenches:Tutti --- +# Std ToggleClipPlane/it + @@ -56,4 +58,7 @@ Un **piano di taglio** divide lo spazio dell\'oggetto in due metà. Tutte le par {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleClipPlane/it diff --git a/wiki/translations/it/Std_ToggleNavigation.md b/wiki/translations/it/Std_ToggleNavigation.md index 327b0a09d4..e56c0f6b5e 100644 --- a/wiki/translations/it/Std_ToggleNavigation.md +++ b/wiki/translations/it/Std_ToggleNavigation.md @@ -7,6 +7,8 @@ Workbenches:Tutti --- +# Std ToggleNavigation/it + @@ -58,4 +60,7 @@ Do not confuse this command with the [Std Edit](Std_Edit.md) command. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleNavigation/it diff --git a/wiki/translations/it/Std_ToggleObjects.md b/wiki/translations/it/Std_ToggleObjects.md index 753bc0514d..15f24d8585 100644 --- a/wiki/translations/it/Std_ToggleObjects.md +++ b/wiki/translations/it/Std_ToggleObjects.md @@ -8,6 +8,8 @@ SeeAlso:[Mostra/Nascondi](Std_ToggleVisibility/it.md), [Mostra la selezione](Std_ShowSelection/it.md), [Nascondi la selezione](Std_HideSelection/it.md), [Mostra tutti gli oggetti](Std_ShowObjects/it.md), [Nascondi tutti gli oggetti](Std_HideObjects/it.md) --- +# Std ToggleObjects/it + @@ -48,4 +50,7 @@ For a scripting example see [Std ToggleVisibility](Std_ToggleVisibility.md). {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleObjects/it diff --git a/wiki/translations/it/Std_ToggleSelectability.md b/wiki/translations/it/Std_ToggleSelectability.md index 848b0ba4e6..823cab09b7 100644 --- a/wiki/translations/it/Std_ToggleSelectability.md +++ b/wiki/translations/it/Std_ToggleSelectability.md @@ -6,6 +6,8 @@ Workbenches:All --- +# Std ToggleSelectability/it + ## Descrizione The **Std ToggleSelectability** command toggles the selectability of objects in [3D views](3D_view.md). @@ -55,4 +57,7 @@ else: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleSelectability/it diff --git a/wiki/translations/it/Std_ToggleVisibility.md b/wiki/translations/it/Std_ToggleVisibility.md index 0c736efc7e..da8a7131b3 100644 --- a/wiki/translations/it/Std_ToggleVisibility.md +++ b/wiki/translations/it/Std_ToggleVisibility.md @@ -9,6 +9,8 @@ SeeAlso:[Mostra la selezione](Std_ShowSelection/it.md), [Nascondi la selezione](Std_HideSelection/it.md), [Commuta tutti gli oggetti](Std_ToggleObjects/it.md), [Mostra tutti gli oggetti](Std_ShowObjects/it.md), [Nascondi tutti gli oggetti](Std_HideObjects/it.md) --- +# Std ToggleVisibility/it + @@ -131,4 +133,7 @@ else: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleVisibility/it diff --git a/wiki/translations/it/Std_Tools_Menu.md b/wiki/translations/it/Std_Tools_Menu.md index f1996cbc1c..4548af3286 100644 --- a/wiki/translations/it/Std_Tools_Menu.md +++ b/wiki/translations/it/Std_Tools_Menu.md @@ -1,10 +1,4 @@ -# Std Tools Menu/it - - - - - -Icona di base +# Icona di base Std Tools Menu/it {{TOCright}} @@ -92,3 +86,6 @@ In questo menu sono disponibili i seguenti strumenti: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Tools Menu/it diff --git a/wiki/translations/it/Std_Transform.md b/wiki/translations/it/Std_Transform.md index 9587760896..d8cb6dadfc 100644 --- a/wiki/translations/it/Std_Transform.md +++ b/wiki/translations/it/Std_Transform.md @@ -1,2 +1,5 @@ # Std Transform/it 1. REDIRECT [Std\_TransformManip/it](Std_TransformManip/it.md) + +--- +[documentation index](../README.md) > Std Transform/it diff --git a/wiki/translations/it/Std_TransformManip.md b/wiki/translations/it/Std_TransformManip.md index c46d5416c1..8526bbcf57 100644 --- a/wiki/translations/it/Std_TransformManip.md +++ b/wiki/translations/it/Std_TransformManip.md @@ -8,6 +8,8 @@ SeeAlso:[Menu standard di base](Std_Base/it.md) --- +# Std TransformManip/it + @@ -47,4 +49,7 @@ Non appena si ruota o si sposta l\'oggetto nella vista 3D, vengono applicate le {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TransformManip/it diff --git a/wiki/translations/it/Std_TreeCollapseDocument.md b/wiki/translations/it/Std_TreeCollapseDocument.md index 1da1aef905..4762293e35 100644 --- a/wiki/translations/it/Std_TreeCollapseDocument.md +++ b/wiki/translations/it/Std_TreeCollapseDocument.md @@ -7,6 +7,8 @@ SeeAlso:[Documento singolo](Std_TreeSingleDocument/it.md), [Multi documento](Std_TreeMultiDocument/it.md) --- +# Std TreeCollapseDocument/it + @@ -36,4 +38,7 @@ The Tree view DocumentMode mode is stored: **Tools → Edit parameters... → Ba {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeCollapseDocument/it diff --git a/wiki/translations/it/Std_TreeDrag.md b/wiki/translations/it/Std_TreeDrag.md index 59f10ecfe1..948c448fb4 100644 --- a/wiki/translations/it/Std_TreeDrag.md +++ b/wiki/translations/it/Std_TreeDrag.md @@ -7,6 +7,8 @@ Shortcut:**T** **D** --- +# Std TreeDrag/it + @@ -36,4 +38,7 @@ Il comando **Avvia il trascinamento** avvia un\'operazione di trascinamento per {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeDrag/it diff --git a/wiki/translations/it/Std_TreeMultiDocument.md b/wiki/translations/it/Std_TreeMultiDocument.md index 62f8113baf..b99eee6b86 100644 --- a/wiki/translations/it/Std_TreeMultiDocument.md +++ b/wiki/translations/it/Std_TreeMultiDocument.md @@ -7,6 +7,8 @@ SeeAlso:[Documento singolo](Std_TreeSingleDocument/it.md), [Comprimi/espandi](Std_TreeCollapseDocument/it.md) --- +# Std TreeMultiDocument/it + @@ -36,4 +38,7 @@ The Tree view DocumentMode mode is stored: **Tools → Edit parameters... → Ba {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeMultiDocument/it diff --git a/wiki/translations/it/Std_TreePreSelection.md b/wiki/translations/it/Std_TreePreSelection.md index f76437c80d..d3cdc49f5f 100644 --- a/wiki/translations/it/Std_TreePreSelection.md +++ b/wiki/translations/it/Std_TreePreSelection.md @@ -7,6 +7,8 @@ Shortcut:**T** **4** --- +# Std TreePreSelection/it + @@ -37,4 +39,7 @@ The Tree view PreSelection mode can also be set in the [Preferences editor](Pref {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreePreSelection/it diff --git a/wiki/translations/it/Std_TreeRecordSelection.md b/wiki/translations/it/Std_TreeRecordSelection.md index 5f28cd4c5f..4d9ec1d487 100644 --- a/wiki/translations/it/Std_TreeRecordSelection.md +++ b/wiki/translations/it/Std_TreeRecordSelection.md @@ -7,6 +7,8 @@ Shortcut:**T** **5** --- +# Std TreeRecordSelection/it + @@ -37,4 +39,7 @@ The Tree view RecordSelection mode can also be set in the [Preferences editor](P {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeRecordSelection/it diff --git a/wiki/translations/it/Std_TreeSelection.md b/wiki/translations/it/Std_TreeSelection.md index 00f1d5bfcb..49b6694167 100644 --- a/wiki/translations/it/Std_TreeSelection.md +++ b/wiki/translations/it/Std_TreeSelection.md @@ -7,6 +7,8 @@ Shortcut:**T** **G** --- +# Std TreeSelection/it + @@ -37,4 +39,7 @@ Se [Sincronizza la selezione](Std_TreeSyncSelection/it.md) della vista ad albero {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSelection/it diff --git a/wiki/translations/it/Std_TreeSingleDocument.md b/wiki/translations/it/Std_TreeSingleDocument.md index f9c836d0e9..22bcc86f7c 100644 --- a/wiki/translations/it/Std_TreeSingleDocument.md +++ b/wiki/translations/it/Std_TreeSingleDocument.md @@ -7,6 +7,8 @@ SeeAlso:[Multi documento](Std_TreeMultiDocument/it.md), [Comprimi/espandi](Std_TreeCollapseDocument/it.md) --- +# Std TreeSingleDocument/it + @@ -38,4 +40,7 @@ The Tree view DocumentMode mode is stored: **Tools → Edit parameters... → Ba {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSingleDocument/it diff --git a/wiki/translations/it/Std_TreeSyncPlacement.md b/wiki/translations/it/Std_TreeSyncPlacement.md index 5430eac3ca..25d1ef5fae 100644 --- a/wiki/translations/it/Std_TreeSyncPlacement.md +++ b/wiki/translations/it/Std_TreeSyncPlacement.md @@ -7,6 +7,8 @@ Shortcut:**T** **3** --- +# Std TreeSyncPlacement/it + @@ -37,4 +39,7 @@ The Tree view SyncPlacement mode is stored: **Tools → Edit parameters... → B {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSyncPlacement/it diff --git a/wiki/translations/it/Std_TreeSyncSelection.md b/wiki/translations/it/Std_TreeSyncSelection.md index b0731513fa..bc86222cc9 100644 --- a/wiki/translations/it/Std_TreeSyncSelection.md +++ b/wiki/translations/it/Std_TreeSyncSelection.md @@ -7,6 +7,8 @@ Shortcut:**T** **2** --- +# Std TreeSyncSelection/it + @@ -37,4 +39,7 @@ The Tree view SyncSelection mode can also be set in the [Preferences editor](Pre {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSyncSelection/it diff --git a/wiki/translations/it/Std_TreeSyncView.md b/wiki/translations/it/Std_TreeSyncView.md index ceb9aaafc2..d1727af20a 100644 --- a/wiki/translations/it/Std_TreeSyncView.md +++ b/wiki/translations/it/Std_TreeSyncView.md @@ -7,6 +7,8 @@ Shortcut:**T** **1** --- +# Std TreeSyncView/it + @@ -43,4 +45,7 @@ La modalità Sincronizza la vista SyncView è memorizzata in: **Strumenti → Mo {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSyncView/it diff --git a/wiki/translations/it/Std_Undo.md b/wiki/translations/it/Std_Undo.md index 848c88245b..97dc526483 100644 --- a/wiki/translations/it/Std_Undo.md +++ b/wiki/translations/it/Std_Undo.md @@ -8,6 +8,8 @@ SeeAlso:[Ripristina](Std_Redo/it.md) --- +# Std Undo/it + ## Descrizione Il comando **Annulla** annulla l\'ultima azione. @@ -62,4 +64,7 @@ FreeCAD.ActiveDocument.undo() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Undo/it diff --git a/wiki/translations/it/Std_UnitsCalculator.md b/wiki/translations/it/Std_UnitsCalculator.md index 754488871b..0743818ae6 100644 --- a/wiki/translations/it/Std_UnitsCalculator.md +++ b/wiki/translations/it/Std_UnitsCalculator.md @@ -1,3 +1,4 @@ +# Std UnitsCalculator/it --- - GuiCommand:/it Name:Std_UnitsCalculator Name/it:Convertitore di unità MenuLocation:Strumenti → Convertitore di unità... Workbenches:Tutti SeeAlso:--- @@ -59,4 +60,7 @@ Il comando **Convertitore di unità** apre la finestra di dialogo per convertire {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std UnitsCalculator/it diff --git a/wiki/translations/it/Std_ViewBottom.md b/wiki/translations/it/Std_ViewBottom.md index 46e2a60d3b..061ad06618 100644 --- a/wiki/translations/it/Std_ViewBottom.md +++ b/wiki/translations/it/Std_ViewBottom.md @@ -8,6 +8,8 @@ SeeAlso:[Vista da dietro](Std_ViewRear/it.md), [Vista da sinistra](Std_ViewLeft/it.md) --- +# Std ViewBottom/it + ## Descrizione Il comando **Vista dal basso** orienta la fotocamera della [Vista 3D](3D_view/it.md) che guarda dal basso verso l\'alto, nella direzione dell\'asse Z positivo. @@ -51,4 +53,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewBottom/it diff --git a/wiki/translations/it/Std_ViewBoxZoom.md b/wiki/translations/it/Std_ViewBoxZoom.md index b1315ef770..87166f6f30 100644 --- a/wiki/translations/it/Std_ViewBoxZoom.md +++ b/wiki/translations/it/Std_ViewBoxZoom.md @@ -1,3 +1,4 @@ +# Std ViewBoxZoom/it --- - GuiCommand:/it Name:Std ViewBoxZoom Name/it:Zoom finestra MenuLocation:[Workbenches:Tutti Shortcut:**Ctrl**+**B** SeeAlso:[[Std ViewZoomIn/it|Ingrandisci](Std_View_Menu/it___Visualizza]]_→_Zoom_→_Finestra_di_ingrandimento_.md), [Riduci](Std_ViewZoomOut/it.md)--- @@ -24,4 +25,7 @@ Consente di ingrandire l\'area di una casella rettangolare nella [vista 3D](3D_v {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewBoxZoom/it diff --git a/wiki/translations/it/Std_ViewCreate.md b/wiki/translations/it/Std_ViewCreate.md index e54b45f3fc..a60af89d13 100644 --- a/wiki/translations/it/Std_ViewCreate.md +++ b/wiki/translations/it/Std_ViewCreate.md @@ -1,3 +1,4 @@ +# Std ViewCreate/it --- - GuiCommand:/it Name:Std_ViewCreate Name/it:Crea una nuova vista MenuLocation:Visualizza → Crea una nuova vista Workbenches:Tutti SeeAlso:[Finestra del documento](Std_ViewDockUndockFullscreen/it.md), [Vista 3D a schermo intero](Std_ViewFullscreen/it.md)--- @@ -27,4 +28,7 @@ Il comando **Crea una nuova vista** crea una nuova [vista 3D](3D_view/it.md) per {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewCreate/it diff --git a/wiki/translations/it/Std_ViewDimetric.md b/wiki/translations/it/Std_ViewDimetric.md index 285f95da1b..4e7d55a45f 100644 --- a/wiki/translations/it/Std_ViewDimetric.md +++ b/wiki/translations/it/Std_ViewDimetric.md @@ -9,6 +9,8 @@ Empty:1 --- +# Std ViewDimetric/it + @@ -57,4 +59,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewDimetric/it diff --git a/wiki/translations/it/Std_ViewDockUndockFullscreen.md b/wiki/translations/it/Std_ViewDockUndockFullscreen.md index ccde4b7fc3..09d5ccbb9e 100644 --- a/wiki/translations/it/Std_ViewDockUndockFullscreen.md +++ b/wiki/translations/it/Std_ViewDockUndockFullscreen.md @@ -10,6 +10,8 @@ SeeAlso:[Vista 3D a schermo intero](Std_ViewFullscreen/it.md), [Finestra principale a schermo intero](Std_MainFullscreen/it.md) --- +# Std ViewDockUndockFullscreen/it + ## Introduzione La [Vista 3D](3D_view/it.md) può essere sganciata dall\'[interfaccia di FreeCAD](Interface/it.md) e spostata in un altro posto. @@ -61,4 +63,7 @@ The **Undocked** menu option undocks the active [3D view](3D_view.md) from the m {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewDockUndockFullscreen/it diff --git a/wiki/translations/it/Std_ViewFitAll.md b/wiki/translations/it/Std_ViewFitAll.md index 8303d83dd0..574bdc284e 100644 --- a/wiki/translations/it/Std_ViewFitAll.md +++ b/wiki/translations/it/Std_ViewFitAll.md @@ -1,3 +1,4 @@ +# Std ViewFitAll/it --- - GuiCommand:/it Name:Std_ViewFitAll Name/it:Visualizza tutto MenuLocation:Visualizza → Viste standard → Visualizza tutto Workbenches:Tutti Shortcut:**V** **F** SeeAlso:[Visualizza la selezione](Std_ViewFitSelection/it.md)--- @@ -66,4 +67,7 @@ FreeCADGui.SendMsgToActiveView('ViewFit') {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFitAll/it diff --git a/wiki/translations/it/Std_ViewFitSelection.md b/wiki/translations/it/Std_ViewFitSelection.md index 0e2eac32fd..e23ac8feb6 100644 --- a/wiki/translations/it/Std_ViewFitSelection.md +++ b/wiki/translations/it/Std_ViewFitSelection.md @@ -1,3 +1,4 @@ +# Std ViewFitSelection/it --- - GuiCommand:/it Name:Std_ViewFitSelection Name/it:Visualizza la selezione MenuLocation:Visualizza → Viste standard → Visualizza la selezione Workbenches:Tutti Shortcut:**V** **S** SeeAlso:[Visualizza tutto](Std_ViewFitAll/it.md)--- @@ -41,4 +42,7 @@ FreeCADGui.SendMsgToActiveView('ViewSelection') {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFitSelection/it diff --git a/wiki/translations/it/Std_ViewFront.md b/wiki/translations/it/Std_ViewFront.md index f313832fda..91e719b05f 100644 --- a/wiki/translations/it/Std_ViewFront.md +++ b/wiki/translations/it/Std_ViewFront.md @@ -8,6 +8,8 @@ SeeAlso:[Vista dall'alto](Std_ViewTop/it.md), [Vista da destra](Std_ViewRight/it.md) --- +# Std ViewFront/it + ## Descrizione Il comando **Vista frontale** orienta la camera della [Vista 3D](3D_view/it.md) nella direzione dell\'asse Y positivo. @@ -51,4 +53,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFront/it diff --git a/wiki/translations/it/Std_ViewFullscreen.md b/wiki/translations/it/Std_ViewFullscreen.md index 5755c85a6a..2ffa51eac3 100644 --- a/wiki/translations/it/Std_ViewFullscreen.md +++ b/wiki/translations/it/Std_ViewFullscreen.md @@ -8,6 +8,8 @@ SeeAlso:[Finestra del documento](Std_ViewDockUndockFullscreen/it.md), [Vista principale a schermo intero](Std_MainFullscreen/it.md) --- +# Std ViewFullscreen/it + ## Description The **Std ViewFullscreen** command switches [3D views](3D_view.md) to and from fullscreen mode. 3D views are automatically [undocked](Std_ViewDockUndockFullscreen.md) for fullscreen mode. @@ -37,4 +39,7 @@ The **Std ViewFullscreen** command switches [3D views](3D_view.md) to and from f {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFullscreen/it diff --git a/wiki/translations/it/Std_ViewIsometric.md b/wiki/translations/it/Std_ViewIsometric.md index 577f3c4910..0533ea81fe 100644 --- a/wiki/translations/it/Std_ViewIsometric.md +++ b/wiki/translations/it/Std_ViewIsometric.md @@ -8,6 +8,8 @@ SeeAlso:[Vista ortografica](Std_OrthographicCamera/it.md), [Assonometria dimetrica](Std_ViewDimetric/it.md), [Assonometria trimetrica](Std_ViewTrimetric/it.md) --- +# Std ViewIsometric/it + ## Descrizione Il comando **Vista isometrica** orienta la camera della [vista 3D](3D_view/it.md) in proiezione [assonometria isometrica](https://en.wikipedia.org/wiki/Isometric_projection). Per una vista veramente isometrica la vista 3D deve essere in [modalità ortografica](Std_OrthographicCamera/it.md), ma il comando funziona anche se la vista è in [modalità prospettiva](Std_PerspectiveCamera.md). @@ -55,4 +57,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIsometric/it diff --git a/wiki/translations/it/Std_ViewIvIssueCamPos.md b/wiki/translations/it/Std_ViewIvIssueCamPos.md index ffa24d1fe2..b71da34290 100644 --- a/wiki/translations/it/Std_ViewIvIssueCamPos.md +++ b/wiki/translations/it/Std_ViewIvIssueCamPos.md @@ -1,3 +1,4 @@ +# Std ViewIvIssueCamPos/it --- - GuiCommand:/it Name:Std ViewIvIssueCamPos Name/it:Pubblica la posizione della camera MenuLocation:Visualizza → Stereo → Pubblica la posizione della camera Workbenches:Tutti Shortcut: SeeAlso:[Viste bloccate](Std_FreezeViews/it.md)--- @@ -58,4 +59,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCamera() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvIssueCamPos/it diff --git a/wiki/translations/it/Std_ViewIvStereoInterleavedColumns.md b/wiki/translations/it/Std_ViewIvStereoInterleavedColumns.md index c377b18893..7e5ba50d16 100644 --- a/wiki/translations/it/Std_ViewIvStereoInterleavedColumns.md +++ b/wiki/translations/it/Std_ViewIvStereoInterleavedColumns.md @@ -7,6 +7,8 @@ SeeAlso:[Stereo rosso/ciano](Std_ViewIvStereoRedGreen/it.md), [Stereo quad buffer](Std_ViewIvStereoQuadBuff/it.md), [Stereo a righe interlacciate](Std_ViewIvStereoInterleavedRows/it.md), [Stereo off](Std_ViewIvStereoOff/it.md) --- +# Std ViewIvStereoInterleavedColumns/it + ## Descrizione The **Std ViewIvStereoInterleavedColumns** command changes the active [3D view](3D_view.md) to interleaved columns stereo view mode. To use this stereo mode a special graphics card, a special display and [glasses with polarized lenses](https://en.wikipedia.org/wiki/Polarized_3D_system) are requires. @@ -48,4 +50,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoInterleavedColumns/it diff --git a/wiki/translations/it/Std_ViewIvStereoInterleavedRows.md b/wiki/translations/it/Std_ViewIvStereoInterleavedRows.md index 6bc1edff74..118e5be602 100644 --- a/wiki/translations/it/Std_ViewIvStereoInterleavedRows.md +++ b/wiki/translations/it/Std_ViewIvStereoInterleavedRows.md @@ -7,6 +7,8 @@ SeeAlso:[Stereo rosso/ciano](Std_ViewIvStereoRedGreen/it.md), [Stereo quad buffer](Std_ViewIvStereoQuadBuff/it.md), [Stereo a colonne interlacciate](Std_ViewIvStereoInterleavedColumns/it.md), [Stereo Off](Std_ViewIvStereoOff/it.md) --- +# Std ViewIvStereoInterleavedRows/it + ## Descrizione The **Std ViewIvStereoInterleavedRows** command changes the active [3D view](3D_view.md) to interleaved rows stereo view mode. To use this stereo mode a special graphics card, a special display and [glasses with polarized lenses](https://en.wikipedia.org/wiki/Polarized_3D_system) are requires. @@ -48,4 +50,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoInterleavedRows/it diff --git a/wiki/translations/it/Std_ViewIvStereoOff.md b/wiki/translations/it/Std_ViewIvStereoOff.md index ad7fd46ead..d4dc4855e7 100644 --- a/wiki/translations/it/Std_ViewIvStereoOff.md +++ b/wiki/translations/it/Std_ViewIvStereoOff.md @@ -7,6 +7,8 @@ SeeAlso:[Stereo rosso/ciano](Std_ViewIvStereoRedGreen/it.md), [Stereo quad buffer](Std_ViewIvStereoQuadBuff/it.md), [Stereo a righe interlacciate](Std_ViewIvStereoInterleavedRows/it.md), [Stereo a colonne interlacciate](Std_ViewIvStereoInterleavedColumns/it.md) --- +# Std ViewIvStereoOff/it + ## Descrizione The **Std ViewIvStereoOff** command switches off stereo mode in the active [3D view](3D_view.md). @@ -44,4 +46,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoOff/it diff --git a/wiki/translations/it/Std_ViewIvStereoQuadBuff.md b/wiki/translations/it/Std_ViewIvStereoQuadBuff.md index c2e594c217..7622defb6d 100644 --- a/wiki/translations/it/Std_ViewIvStereoQuadBuff.md +++ b/wiki/translations/it/Std_ViewIvStereoQuadBuff.md @@ -7,6 +7,8 @@ SeeAlso:[Stereo rosso/ciano](Std_ViewIvStereoRedGreen/it.md), [Stereo a righe interlacciate](Std_ViewIvStereoInterleavedRows/it.md), [Stereo a colonne interlacciate](Std_ViewIvStereoInterleavedColumns/it.md), [Stereo Off](Std_ViewIvStereoOff/it.md) --- +# Std ViewIvStereoQuadBuff/it + ## Descrizione The **Std ViewIvStereoQuadBuff** command changes the active [3D view](3D_view.md) to quad buffer stereo view mode. To use this stereo mode a special graphics card, a special display and [shutter glasses](https://en.wikipedia.org/wiki/Active_shutter_3D_system) are requires. @@ -48,4 +50,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoQuadBuff/it diff --git a/wiki/translations/it/Std_ViewIvStereoRedGreen.md b/wiki/translations/it/Std_ViewIvStereoRedGreen.md index 204cf0e352..f8b0fe281e 100644 --- a/wiki/translations/it/Std_ViewIvStereoRedGreen.md +++ b/wiki/translations/it/Std_ViewIvStereoRedGreen.md @@ -7,6 +7,8 @@ SeeAlso:[Stereo quad buffer](Std_ViewIvStereoQuadBuff/it.md), [Stereo a righe interlacciate](Std_ViewIvStereoInterleavedRows/it.md), [Stereo a colonne interlacciate](Std_ViewIvStereoInterleavedColumns/it.md), [Stereo Off](Std_ViewIvStereoOff/it.md) --- +# Std ViewIvStereoRedGreen/it + ## Descrizione The **Std ViewIvStereoRedGreen** command changes the active [3D view](3D_view.md) to red/cyan, [anaglyph](https://en.wikipedia.org/wiki/Anaglyph_3D), stereo view mode. To use this stereo mode glasses with colored lenses are requires. @@ -48,4 +50,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoRedGreen/it diff --git a/wiki/translations/it/Std_ViewLeft.md b/wiki/translations/it/Std_ViewLeft.md index c6ca89ba57..a8f8dc8acb 100644 --- a/wiki/translations/it/Std_ViewLeft.md +++ b/wiki/translations/it/Std_ViewLeft.md @@ -8,6 +8,8 @@ SeeAlso:[Vista da dietro](Std_ViewRear/it.md), [Vista dal basso](Std_ViewBottom/it.md) --- +# Std ViewLeft/it + ## Descrizione Il comando **Vista da sinistra** orienta la camera della [Vista 3D](3D_view/it.md) nella direzione dell\'asse X positivo. @@ -51,4 +53,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewLeft/it diff --git a/wiki/translations/it/Std_ViewRear.md b/wiki/translations/it/Std_ViewRear.md index 1fbd658110..348b6fa071 100644 --- a/wiki/translations/it/Std_ViewRear.md +++ b/wiki/translations/it/Std_ViewRear.md @@ -8,6 +8,8 @@ SeeAlso:[Vista dal basso](Std_ViewBottom/it.md), [Vista da sinistra](Std_ViewLeft/it.md) --- +# Std ViewRear/it + ## Descrizione Il comando **Vista da dietro** orienta la camera della [Vista 3D](3D_view/it.md) nella direzione dell\'asse Y negativo. @@ -51,4 +53,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRear/it diff --git a/wiki/translations/it/Std_ViewRight.md b/wiki/translations/it/Std_ViewRight.md index 454650a99b..3828a6051c 100644 --- a/wiki/translations/it/Std_ViewRight.md +++ b/wiki/translations/it/Std_ViewRight.md @@ -8,6 +8,8 @@ SeeAlso:[Vista da davanti](Std_ViewFront/it.md), [Vista dall'alto](Std_ViewTop/it.md) --- +# Std ViewRight/it + ## Descrizione Il comando **Vista da destra** orienta la fotocamera della [Vista 3D](3D_view/it.md) che guarda da destra verso sinistra, nella direzione dell\'asse X negativo. @@ -51,4 +53,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRight/it diff --git a/wiki/translations/it/Std_ViewRotateLeft.md b/wiki/translations/it/Std_ViewRotateLeft.md index c627e0379b..bbe2081c71 100644 --- a/wiki/translations/it/Std_ViewRotateLeft.md +++ b/wiki/translations/it/Std_ViewRotateLeft.md @@ -8,6 +8,8 @@ SeeAlso:[Ruota a destra](Std_ViewRotateRight/it.md) --- +# Std ViewRotateLeft/it + ## Descrizione Il comando **Ruota a sinistra** ruota la camera nella [vista 3D](3D_view/it.md) attiva intorno alla direzione della vista con incrementi di 90 gradi verso sinistra (in senso antiorario). @@ -48,4 +50,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRotateLeft/it diff --git a/wiki/translations/it/Std_ViewRotateRight.md b/wiki/translations/it/Std_ViewRotateRight.md index ff066b8464..7dcc2d375f 100644 --- a/wiki/translations/it/Std_ViewRotateRight.md +++ b/wiki/translations/it/Std_ViewRotateRight.md @@ -8,6 +8,8 @@ SeeAlso:[Ruota a sinistra](Std_ViewRotateLeft/it.md) --- +# Std ViewRotateRight/it + ## Descrizione Il comando **Ruota a destra** ruota la camera nella [vista 3D](3D_view/it.md) attiva intorno alla direzione della vista con incrementi di 90 gradi verso destra (in senso orario). @@ -48,4 +50,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRotateRight/it diff --git a/wiki/translations/it/Std_ViewScreenShot.md b/wiki/translations/it/Std_ViewScreenShot.md index 2934d8fe19..2365ac4902 100644 --- a/wiki/translations/it/Std_ViewScreenShot.md +++ b/wiki/translations/it/Std_ViewScreenShot.md @@ -1,3 +1,4 @@ +# Std ViewScreenShot/it --- - GuiCommand:/it Name:Std_ViewScreenShot Name/it:Cattura Schermata MenuLocation:Strumenti → Salva immagine... Workbenches:Tutti SeeAlso:[Stampa](Std_Print/it.md), [Esporta Pdf](Std_PrintPdf/it.md)--- @@ -124,4 +125,7 @@ App.closeDocument(App.ActiveDocument.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewScreenShot/it diff --git a/wiki/translations/it/Std_ViewStatusBar.md b/wiki/translations/it/Std_ViewStatusBar.md index 4f78969c89..e6d0193d42 100644 --- a/wiki/translations/it/Std_ViewStatusBar.md +++ b/wiki/translations/it/Std_ViewStatusBar.md @@ -7,6 +7,8 @@ Workbenches:All --- +# Std ViewStatusBar/it + ## Descrizione Il comando **Barra di stato** attiva o disattiva la visualizzazione della [Barra di stato](Status_bar/it.md). @@ -27,4 +29,7 @@ Il comando **Barra di stato** attiva o disattiva la visualizzazione della [Barra {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewStatusBar/it diff --git a/wiki/translations/it/Std_ViewTop.md b/wiki/translations/it/Std_ViewTop.md index b71485b961..9963e79cc1 100644 --- a/wiki/translations/it/Std_ViewTop.md +++ b/wiki/translations/it/Std_ViewTop.md @@ -8,6 +8,8 @@ SeeAlso:[Vista frontale](Std_ViewFront/it.md), [Vista da destra](Std_ViewRight/it.md) --- +# Std ViewTop/it + ## Descrizione Il comando **Vista dall\'alto** orienta la fotocamera della [Vista 3D](3D_view/it.md) che guarda dall\'alto verso il basso, nella direzione dell\'asse Z negativo. @@ -51,4 +53,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewTop/it diff --git a/wiki/translations/it/Std_ViewTrimetric.md b/wiki/translations/it/Std_ViewTrimetric.md index 45a63381d8..295d6f5f8a 100644 --- a/wiki/translations/it/Std_ViewTrimetric.md +++ b/wiki/translations/it/Std_ViewTrimetric.md @@ -9,6 +9,8 @@ --- +# Std ViewTrimetric/it + @@ -57,4 +59,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewTrimetric/it diff --git a/wiki/translations/it/Std_ViewZoomIn.md b/wiki/translations/it/Std_ViewZoomIn.md index b4247f98ef..3e9e885d5b 100644 --- a/wiki/translations/it/Std_ViewZoomIn.md +++ b/wiki/translations/it/Std_ViewZoomIn.md @@ -8,6 +8,8 @@ SeeAlso:[Riduci](Std_ViewZoomOut/it.md), [Finestra di ingrandimento](Std_ViewBoxZoom/it.md) --- +# Std ViewZoomIn/it + ## Descrizione Il comando **Std ViewZoomIn** ingrandisce la [vista 3D](3D_view/it.md) attiva. @@ -61,4 +63,7 @@ FreeCADGui.ActiveDocument.ActiveView.zoomIn() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewZoomIn/it diff --git a/wiki/translations/it/Std_ViewZoomOut.md b/wiki/translations/it/Std_ViewZoomOut.md index a45afaff15..a5272a19c8 100644 --- a/wiki/translations/it/Std_ViewZoomOut.md +++ b/wiki/translations/it/Std_ViewZoomOut.md @@ -8,6 +8,8 @@ SeeAlso:[Ingrandisci](Std_ViewZoomIn/it.md), [Finestra di ingrandimento](Std_ViewBoxZoom/it.md) --- +# Std ViewZoomOut/it + ## Descrizione Il comando **Std ViewZoomOut** riduce la [vista 3D](3D_view/it.md) attiva. @@ -61,4 +63,7 @@ FreeCADGui.ActiveDocument.ActiveView.zoomOut() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewZoomOut/it diff --git a/wiki/translations/it/Std_View_Menu.md b/wiki/translations/it/Std_View_Menu.md index 06b2042ee0..58780de3a7 100644 --- a/wiki/translations/it/Std_View_Menu.md +++ b/wiki/translations/it/Std_View_Menu.md @@ -1,10 +1,4 @@ -# Std View Menu/it - - - - - -Icona di base +# Icona di base Std View Menu/it {{TOCright}} @@ -211,3 +205,6 @@ In questo menu sono disponibili i seguenti strumenti: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std View Menu/it diff --git a/wiki/translations/it/Std_WhatsThis.md b/wiki/translations/it/Std_WhatsThis.md index f665fc8b87..c36926a000 100644 --- a/wiki/translations/it/Std_WhatsThis.md +++ b/wiki/translations/it/Std_WhatsThis.md @@ -1,3 +1,4 @@ +# Std WhatsThis/it --- - GuiCommand:/it Name:Std WhatsThis Name/it:Cos'è questo? MenuLocation:[|Workbenches:Tutti Shortcut:Maiusc+F1 SeeAlso:[[Std OnlineHelp/it|Aiuto](Std_Help_Menu/it___Help]]_→_Cos'è_questo?‏‎.md)--- @@ -47,4 +48,7 @@ Read this post to understand how the commands must be named in the code to match {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std WhatsThis/it diff --git a/wiki/translations/it/Std_Windows.md b/wiki/translations/it/Std_Windows.md index 65478380ef..975a16121c 100644 --- a/wiki/translations/it/Std_Windows.md +++ b/wiki/translations/it/Std_Windows.md @@ -6,6 +6,8 @@ SeeAlso:[Std ActivateNextWindow](Std_ActivateNextWindow.md), [Std ActivatePrevWindow](Std_ActivatePrevWindow.md) --- +# Std Windows/it + ## Description The **Std Windows** command opens a dialog box with a list of [Main view area](Main_view_area.md) windows. From this list a selected window can be activated. @@ -36,4 +38,7 @@ The **Std Windows** command opens a dialog box with a list of [Main view area](M {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Windows/it diff --git a/wiki/translations/it/Std_Windows_Menu.md b/wiki/translations/it/Std_Windows_Menu.md index 69eedbef9c..b44ba0459d 100644 --- a/wiki/translations/it/Std_Windows_Menu.md +++ b/wiki/translations/it/Std_Windows_Menu.md @@ -1,10 +1,4 @@ -# Std Windows Menu/it - - - - - -Icona di base +# Icona di base Std Windows Menu/it {{TOCright}} @@ -58,3 +52,6 @@ In questo menu sono disponibili i seguenti strumenti: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Windows Menu/it diff --git a/wiki/translations/it/Std_Workbench.md b/wiki/translations/it/Std_Workbench.md index 670ca83dc0..6ff5e16068 100644 --- a/wiki/translations/it/Std_Workbench.md +++ b/wiki/translations/it/Std_Workbench.md @@ -1,3 +1,4 @@ +# Std Workbench/it --- - GuiCommand:/it Name:Std_Workbench Name/it:Ambiente Empty:1 MenuLocation:[Workbenches:Tutti SeeAlso:[[Workbenches/it| Ambienti di lavoro](Std_View_Menu/it___Visualizza]]_→_Ambiente_→.md)--- @@ -53,4 +54,7 @@ FreeCADGui.activateWorkbench("PartDesignWorkbench") {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Std Workbench/it diff --git a/wiki/translations/it/Surface_CurveOnMesh.md b/wiki/translations/it/Surface_CurveOnMesh.md index f18157f1cb..5cddf65aca 100644 --- a/wiki/translations/it/Surface_CurveOnMesh.md +++ b/wiki/translations/it/Surface_CurveOnMesh.md @@ -1,3 +1,4 @@ +# Surface CurveOnMesh/it --- - GuiCommand:/it Name:Surface CurveOnMesh Name/it:CurveOnMesh MenuLocation:Surface → Curve on mesh... Workbenches:[Surface](Surface_Workbench/it.md)|--- @@ -93,4 +94,7 @@ In addition to the properties described in [Part Feature](Part_Feature.md), the {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface CurveOnMesh/it diff --git a/wiki/translations/it/Surface_ExtendFace.md b/wiki/translations/it/Surface_ExtendFace.md index 0c5e009fe9..d56cf5b0b4 100644 --- a/wiki/translations/it/Surface_ExtendFace.md +++ b/wiki/translations/it/Surface_ExtendFace.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Surface ExtendFace/it + ## Descrizione @@ -130,4 +132,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface ExtendFace/it diff --git a/wiki/translations/it/Surface_Filling.md b/wiki/translations/it/Surface_Filling.md index 828a6a25f2..9c1f54e1a2 100644 --- a/wiki/translations/it/Surface_Filling.md +++ b/wiki/translations/it/Surface_Filling.md @@ -1,3 +1,4 @@ +# Surface Filling/it --- - GuiCommand:/it Name:Surface Filling Name/it:Surface Filling MenuLocation:Surface → Riempimento... Workbenches:[Version:0.17](Surface_Workbench/it___Surface.md)|--- @@ -212,4 +213,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Filling/it diff --git a/wiki/translations/it/Surface_GeomFillSurface.md b/wiki/translations/it/Surface_GeomFillSurface.md index 42eedeb8b9..a86ad88d02 100644 --- a/wiki/translations/it/Surface_GeomFillSurface.md +++ b/wiki/translations/it/Surface_GeomFillSurface.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Surface GeomFillSurface/it + ## Descrizione @@ -173,4 +175,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface GeomFillSurface/it diff --git a/wiki/translations/it/Surface_Module.md b/wiki/translations/it/Surface_Module.md index 700a694a72..ee70c98216 100644 --- a/wiki/translations/it/Surface_Module.md +++ b/wiki/translations/it/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/it 1. REDIRECT [Surface\_Workbench/it](Surface_Workbench/it.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/it diff --git a/wiki/translations/it/Surface_Sections.md b/wiki/translations/it/Surface_Sections.md index 7205cab6e4..55d81b088b 100644 --- a/wiki/translations/it/Surface_Sections.md +++ b/wiki/translations/it/Surface_Sections.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Surface Sections/it + ## Descrizione Lo strumento [Surface Sections](Surface_Sections/it.md) viene utilizzato per creare una superficie dai bordi che rappresentano sezioni trasversali di una superficie. @@ -125,4 +127,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Sections/it diff --git a/wiki/translations/it/Surface_Workbench.md b/wiki/translations/it/Surface_Workbench.md index fdf169889c..529db89db7 100644 --- a/wiki/translations/it/Surface_Workbench.md +++ b/wiki/translations/it/Surface_Workbench.md @@ -1,7 +1,4 @@ # Surface Workbench/it - - -
@@ -72,3 +69,6 @@ Allo stato attuale di FreeCAD (v0.17) non è possibile posizionare le superfici }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Surface Workbench/it diff --git a/wiki/translations/it/Svg_Namespace.md b/wiki/translations/it/Svg_Namespace.md index 5fd2513f7f..ba060060a5 100644 --- a/wiki/translations/it/Svg_Namespace.md +++ b/wiki/translations/it/Svg_Namespace.md @@ -1,7 +1,4 @@ # Svg Namespace/it - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** @@ -261,3 +258,6 @@ Vedere la pagina dei [Modelli di squadrature](Drawing_templates/it.md) }} [Category:Poweruser\_Documentation](Category:Poweruser_Documentation.md) [Category:Developer](Category:Developer.md) [Category:Python\_Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Poweruser_Documentation](Category:Poweruser_Documentation.md) > Svg Namespace/it diff --git a/wiki/translations/it/SweetHome3D.md b/wiki/translations/it/SweetHome3D.md index 2d1964ca75..bb9f405372 100644 --- a/wiki/translations/it/SweetHome3D.md +++ b/wiki/translations/it/SweetHome3D.md @@ -1,5 +1,5 @@ # SweetHome3D/it - ![](images/SweetHome3DLogo.png ) +![](images/SweetHome3DLogo.png ) **Sweet Home 3D** è un\'applicazione gratuita di design di interni che aiuta a disegnare il piano di una casa, ad organizzare i mobili e a vedere i risultati in 3D. Guardare questo [video](http://www.sweethome3d.com/videos/SweetHome3D-720p-music.mp4) @@ -14,3 +14,6 @@ [Category:3rd Party](Category:3rd_Party.md) [Category:Arch](Category:Arch.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > SweetHome3D/it diff --git a/wiki/translations/it/Symbols_Library_Workbench.md b/wiki/translations/it/Symbols_Library_Workbench.md index 4b89c17892..2737b608d4 100644 --- a/wiki/translations/it/Symbols_Library_Workbench.md +++ b/wiki/translations/it/Symbols_Library_Workbench.md @@ -1,6 +1,4 @@ # Symbols Library Workbench/it - - ## Introduzione @@ -51,3 +49,6 @@ The library is a simple container for SVG files. You can download it anywhere an [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Symbols Library Workbench/it diff --git a/wiki/translations/it/Task_Panel.md b/wiki/translations/it/Task_Panel.md index 9b6c9ffba7..fd8cc1ec5e 100644 --- a/wiki/translations/it/Task_Panel.md +++ b/wiki/translations/it/Task_Panel.md @@ -1,2 +1,5 @@ # Task Panel/it 1. REDIRECT [Task panel/it](Task_panel/it.md) + +--- +[documentation index](../README.md) > Task Panel/it diff --git a/wiki/translations/it/Task_panel.md b/wiki/translations/it/Task_panel.md index 701ee40014..ca8a60cefb 100644 --- a/wiki/translations/it/Task_panel.md +++ b/wiki/translations/it/Task_panel.md @@ -1,5 +1,5 @@ # Task panel/it - {{TOCright}} +{{TOCright}} ## Introduzione @@ -96,4 +96,7 @@ Gui::Control().closeDialog(); {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Task panel/it diff --git a/wiki/translations/it/Tasks_Placement.md b/wiki/translations/it/Tasks_Placement.md index f2ac1e7e14..2be9be5fb4 100644 --- a/wiki/translations/it/Tasks_Placement.md +++ b/wiki/translations/it/Tasks_Placement.md @@ -1,6 +1,4 @@ # Tasks Placement/it - - ## Descrizione Opzioni della scheda **Posizionamento**. Queste opzioni riguardano soltanto la posizione dell\'oggetto nello spazio, non riguardano altri attributi della forma. Internamente il posizionamento viene memorizzato come una posizione, e una rotazione (asse di rotazione e angolo trasformati in un quaternione [1](https://en.wikipedia.org/wiki/Quaternions_and_spatial_rotation)). Sebbene ci siano diversi modi di specificare una rotazione, per esempio con un centro di rotazione, questo è usato solo per influenzare il calcolo della rotazione e non viene memorizzato per le operazioni successive. Allo stesso modo, se viene specificato un asse di rotazione (1,1,1), esso può essere normalizzato se conservato nel quaternione e in seguito apparire nella forma (0.58, 0.58, 0.58) durante l\'esplorazione dell\'oggetto @@ -128,3 +126,6 @@ Ulteriori informazioni si trovano nella pagina [Posizionamento](Placement/it.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Command_Reference](Category:Command_Reference.md) > Tasks Placement/it diff --git a/wiki/translations/it/TechDrawGui_API.md b/wiki/translations/it/TechDrawGui_API.md index b7f25d5b97..f3e17e10dc 100644 --- a/wiki/translations/it/TechDrawGui_API.md +++ b/wiki/translations/it/TechDrawGui_API.md @@ -1,5 +1,5 @@ # TechDrawGui API/it - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** These functions are part of the [TechDraw Workbench](TechDraw_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `TechDrawGui` module has been imported. +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** These functions are part of the [TechDraw Workbench](TechDraw_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `TechDrawGui` module has been imported. Vedere [TechDraw API](TechDraw_API/it.md) per altre funzioni. @@ -44,3 +44,6 @@ Options: }} [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > TechDrawGui API/it diff --git a/wiki/translations/it/TechDraw_2LineCenterLine.md b/wiki/translations/it/TechDraw_2LineCenterLine.md index fc8311a657..ce12b4641f 100644 --- a/wiki/translations/it/TechDraw_2LineCenterLine.md +++ b/wiki/translations/it/TechDraw_2LineCenterLine.md @@ -8,6 +8,8 @@ Version:0.19 --- +# TechDraw 2LineCenterLine/it +
@@ -116,4 +118,7 @@ In questo momento la Linea centrale non è accessibile dalle [macro](macros/it.m {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2LineCenterLine/it diff --git a/wiki/translations/it/TechDraw_2PointCenterLine.md b/wiki/translations/it/TechDraw_2PointCenterLine.md index bdc138ac8c..9e4dfc0bff 100644 --- a/wiki/translations/it/TechDraw_2PointCenterLine.md +++ b/wiki/translations/it/TechDraw_2PointCenterLine.md @@ -8,6 +8,8 @@ Version:0.19 --- +# TechDraw 2PointCenterLine/it + @@ -93,4 +95,7 @@ In questo momento la Linea centrale non è accessibile dalle [macro](macros/it.m {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2PointCenterLine/it diff --git a/wiki/translations/it/TechDraw_2PointCosmeticLine.md b/wiki/translations/it/TechDraw_2PointCosmeticLine.md index b901788b53..c76d1a35c3 100644 --- a/wiki/translations/it/TechDraw_2PointCosmeticLine.md +++ b/wiki/translations/it/TechDraw_2PointCosmeticLine.md @@ -9,6 +9,8 @@ Version:0.19 --- +# TechDraw 2PointCosmeticLine/it + @@ -73,4 +75,7 @@ Cosmetic lines can be created using the makeCosmeticLine(v1, v2) or makeCosmetic {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2PointCosmeticLine/it diff --git a/wiki/translations/it/TechDraw_3PtAngleDimension.md b/wiki/translations/it/TechDraw_3PtAngleDimension.md index 9ee5ebcdd4..031cc57b69 100644 --- a/wiki/translations/it/TechDraw_3PtAngleDimension.md +++ b/wiki/translations/it/TechDraw_3PtAngleDimension.md @@ -1,3 +1,4 @@ +# TechDraw 3PtAngleDimension/it --- - GuiCommand:/it Name:TechDraw Dimension Angle3Pt Name/it:Angolo da 3 punti Workbenches:[MenuLocation:TechDraw → Angolo da 3 punti Shortcut: SeeAlso:[[TechDraw Dimension Angle/it Angolo](TechDraw_Workbench/it___TechDraw]].md)|Version:0.18--- @@ -88,4 +89,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 3PtAngleDimension/it diff --git a/wiki/translations/it/TechDraw_API.md b/wiki/translations/it/TechDraw_API.md index 223e1d7858..55ae92cf52 100644 --- a/wiki/translations/it/TechDraw_API.md +++ b/wiki/translations/it/TechDraw_API.md @@ -1,5 +1,5 @@ # TechDraw API/it - **(Novembre 2018) Queste informazioni potrebbero essere incomplete e obsolete. Per l'ultima API, consultare [https://www.freecadweb.org/api autogenerated API documentation].** Queste funzioni fanno parte di [TechDraw](TechDraw_Workbench/it.md) e possono essere utilizzate nelle [macro](macros/it.md) e dalla console [Python](Python/it.md) dopo l\'importazione del modulo `TechDraw`. +**(Novembre 2018) Queste informazioni potrebbero essere incomplete e obsolete. Per l'ultima API, consultare [https://www.freecadweb.org/api autogenerated API documentation].** Queste funzioni fanno parte di [TechDraw](TechDraw_Workbench/it.md) e possono essere utilizzate nelle [macro](macros/it.md) e dalla console [Python](Python/it.md) dopo l\'importazione del modulo `TechDraw`. Good examples of basic TechDraw scripting can be found in the [unit test scripts](https://github.com/FreeCAD/FreeCAD/tree/master/src/Mod/TechDraw/TDTest). @@ -359,3 +359,6 @@ dvp.requestPaint() Redraw the graphic for this View. }} [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw API/it diff --git a/wiki/translations/it/TechDraw_ActiveView.md b/wiki/translations/it/TechDraw_ActiveView.md index 851a25e9f7..ecab179855 100644 --- a/wiki/translations/it/TechDraw_ActiveView.md +++ b/wiki/translations/it/TechDraw_ActiveView.md @@ -9,6 +9,8 @@ Version:0.19 --- +# TechDraw ActiveView/it + @@ -112,4 +114,7 @@ TechDrawGui.copyActiveViewToSvgFile(Gui.ActiveDocument.ActiveView,"myFile.svg") {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ActiveView/it diff --git a/wiki/translations/it/TechDraw_AngleDimension.md b/wiki/translations/it/TechDraw_AngleDimension.md index a52e5b6ef8..1aa15c541a 100644 --- a/wiki/translations/it/TechDraw_AngleDimension.md +++ b/wiki/translations/it/TechDraw_AngleDimension.md @@ -1,3 +1,4 @@ +# TechDraw AngleDimension/it --- - GuiCommand:/it Name:TechDraw Dimension Angle Name/it:Angolo Workbenches:[MenuLocation:TechDraw → Angolo Shortcut: SeeAlso:[[TechDraw Dimension Angle3Pt/it|Angolo da tre punti](TechDraw_Workbench/it___TechDraw]].md)--- @@ -87,4 +88,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw AngleDimension/it diff --git a/wiki/translations/it/TechDraw_Annotation.md b/wiki/translations/it/TechDraw_Annotation.md index 0ce9e8280d..d97ccc9147 100644 --- a/wiki/translations/it/TechDraw_Annotation.md +++ b/wiki/translations/it/TechDraw_Annotation.md @@ -7,6 +7,8 @@ SeeAlso:[Testo Draft](Draft_Text/it.md), [Forma da testo di Draft](Draft_ShapeString/it.md) --- +# TechDraw Annotation/it + @@ -92,4 +94,7 @@ rc = page.addView(anno) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Annotation/it diff --git a/wiki/translations/it/TechDraw_ArchView.md b/wiki/translations/it/TechDraw_ArchView.md index 921735a796..a378d59b7f 100644 --- a/wiki/translations/it/TechDraw_ArchView.md +++ b/wiki/translations/it/TechDraw_ArchView.md @@ -7,6 +7,8 @@ SeeAlso:[Arch](Arch_Workbench/it.md), [Piano di sezione di Arch](Arch_SectionPlane/it.md) --- +# TechDraw ArchView/it + @@ -134,4 +136,7 @@ rc = page.addView(dv) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ArchView/it diff --git a/wiki/translations/it/TechDraw_Balloon.md b/wiki/translations/it/TechDraw_Balloon.md index fcd3f453c5..c14ba9b885 100644 --- a/wiki/translations/it/TechDraw_Balloon.md +++ b/wiki/translations/it/TechDraw_Balloon.md @@ -8,6 +8,8 @@ SeeAlso:[Annotazione](TechDraw_NewAnnotation/it.md) --- +# TechDraw Balloon/it + @@ -132,4 +134,7 @@ rc = page.addView(bal1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Balloon/it diff --git a/wiki/translations/it/TechDraw_Clip.md b/wiki/translations/it/TechDraw_Clip.md index 5f96c4ac18..67f5d937dd 100644 --- a/wiki/translations/it/TechDraw_Clip.md +++ b/wiki/translations/it/TechDraw_Clip.md @@ -1,2 +1,5 @@ # TechDraw Clip/it 1. REDIRECT [TechDraw\_ClipGroup/it](TechDraw_ClipGroup/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Clip/it diff --git a/wiki/translations/it/TechDraw_ClipGroup.md b/wiki/translations/it/TechDraw_ClipGroup.md index f58ff09cf8..a6de7ead66 100644 --- a/wiki/translations/it/TechDraw_ClipGroup.md +++ b/wiki/translations/it/TechDraw_ClipGroup.md @@ -7,6 +7,8 @@ SeeAlso:[Aggiungi una vista al gruppo clip](TechDraw_ClipGroupAdd/it.md), [Rimuovi la vista dal gruppo clip](TechDraw_ClipGroupRemove/it.md) --- +# TechDraw ClipGroup/it + @@ -50,4 +52,7 @@ Questo strumento crea una finestra di ritaglio che può contenere una o più vis {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroup/it diff --git a/wiki/translations/it/TechDraw_ClipGroupAdd.md b/wiki/translations/it/TechDraw_ClipGroupAdd.md index 3145a59410..95b975a6d0 100644 --- a/wiki/translations/it/TechDraw_ClipGroupAdd.md +++ b/wiki/translations/it/TechDraw_ClipGroupAdd.md @@ -7,6 +7,8 @@ SeeAlso:[Gruppo di clip](TechDraw_ClipGroup/it.md), [Rimuovi la vista dal gruppo clip:](TechDraw_ClipGroupRemove/it.md) --- +# TechDraw ClipGroupAdd/it + @@ -32,4 +34,7 @@ Questo strumento aggiunge una vista a una clip esistente. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroupAdd/it diff --git a/wiki/translations/it/TechDraw_ClipGroupRemove.md b/wiki/translations/it/TechDraw_ClipGroupRemove.md index 3d2b6e60ce..3899b122f6 100644 --- a/wiki/translations/it/TechDraw_ClipGroupRemove.md +++ b/wiki/translations/it/TechDraw_ClipGroupRemove.md @@ -7,6 +7,8 @@ SeeAlso:[Gruppo di clip](TechDraw_ClipGroup/it.md), [Aggiungi una vista al gruppo clip](TechDraw_ClipGroupAdd/it.md) --- +# TechDraw ClipGroupRemove/it + @@ -32,4 +34,7 @@ Questo strumento rimuove una vista da una clip esistente e la riporta nell\'area {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroupRemove/it diff --git a/wiki/translations/it/TechDraw_ClipMinus.md b/wiki/translations/it/TechDraw_ClipMinus.md index 1b3df31c36..9a953364e1 100644 --- a/wiki/translations/it/TechDraw_ClipMinus.md +++ b/wiki/translations/it/TechDraw_ClipMinus.md @@ -1,2 +1,5 @@ # TechDraw ClipMinus/it 1. REDIRECT [TechDraw\_ClipGroupRemove/it](TechDraw_ClipGroupRemove/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipMinus/it diff --git a/wiki/translations/it/TechDraw_ClipPlus.md b/wiki/translations/it/TechDraw_ClipPlus.md index 188225a279..89abb0e000 100644 --- a/wiki/translations/it/TechDraw_ClipPlus.md +++ b/wiki/translations/it/TechDraw_ClipPlus.md @@ -1,2 +1,5 @@ # TechDraw ClipPlus/it 1. REDIRECT [TechDraw\_ClipGroupAdd/it](TechDraw_ClipGroupAdd/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipPlus/it diff --git a/wiki/translations/it/TechDraw_CosmeticEraser.md b/wiki/translations/it/TechDraw_CosmeticEraser.md index 2be424f1eb..000d32c666 100644 --- a/wiki/translations/it/TechDraw_CosmeticEraser.md +++ b/wiki/translations/it/TechDraw_CosmeticEraser.md @@ -7,6 +7,8 @@ Version:0.19 --- +# TechDraw CosmeticEraser/it + @@ -64,4 +66,7 @@ In questo momento Rimuovi oggetto cosmetico non è accessibile dalle [macro](mac {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw CosmeticEraser/it diff --git a/wiki/translations/it/TechDraw_CosmeticVertex.md b/wiki/translations/it/TechDraw_CosmeticVertex.md index 5329fce6a2..86668f9cba 100644 --- a/wiki/translations/it/TechDraw_CosmeticVertex.md +++ b/wiki/translations/it/TechDraw_CosmeticVertex.md @@ -9,6 +9,8 @@ Version:0.19 --- +# TechDraw CosmeticVertex/it + @@ -82,4 +84,7 @@ dvp.makeCosmeticLine(start,end,style, weight, pyGreen) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw CosmeticVertex/it diff --git a/wiki/translations/it/TechDraw_DecorateLine.md b/wiki/translations/it/TechDraw_DecorateLine.md index 07bcf72f69..28db9922ba 100644 --- a/wiki/translations/it/TechDraw_DecorateLine.md +++ b/wiki/translations/it/TechDraw_DecorateLine.md @@ -8,6 +8,8 @@ Version:0.19 --- +# TechDraw DecorateLine/it + @@ -69,4 +71,7 @@ In questo momento Decora linea non è accessibile dalle [macro](macros/it.md) o {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DecorateLine/it diff --git a/wiki/translations/it/TechDraw_DetailView.md b/wiki/translations/it/TechDraw_DetailView.md index ec0032eb4c..4266e74fbf 100644 --- a/wiki/translations/it/TechDraw_DetailView.md +++ b/wiki/translations/it/TechDraw_DetailView.md @@ -7,6 +7,8 @@ SeeAlso:[Vista](TechDraw_View/it.md), [Gruppo di proiezioni](TechDraw_ProjectionGroup/it.md) --- +# TechDraw DetailView/it + @@ -129,4 +131,7 @@ This is done by putting the Detail view into a [clip group](TechDraw_ClipGroup.m {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DetailView/it diff --git a/wiki/translations/it/TechDraw_DiameterDimension.md b/wiki/translations/it/TechDraw_DiameterDimension.md index 2f99232af3..549a8525ca 100644 --- a/wiki/translations/it/TechDraw_DiameterDimension.md +++ b/wiki/translations/it/TechDraw_DiameterDimension.md @@ -1,3 +1,4 @@ +# TechDraw DiameterDimension/it --- - GuiCommand:/it Name:TechDraw Dimension Diameter Name/it:Diametro Workbenches:[MenuLocation:TechDraw → Diametro Shortcut: SeeAlso:[[TechDraw Dimension Radius/it|Raggio](TechDraw_Workbench/it___TechDraw]].md)--- @@ -89,4 +90,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DiameterDimension/it diff --git a/wiki/translations/it/TechDraw_Dimension_Angle.md b/wiki/translations/it/TechDraw_Dimension_Angle.md index 0db8b8cb78..e8701f33a6 100644 --- a/wiki/translations/it/TechDraw_Dimension_Angle.md +++ b/wiki/translations/it/TechDraw_Dimension_Angle.md @@ -1,2 +1,5 @@ # TechDraw Dimension Angle/it 1. REDIRECT [TechDraw\_AngleDimension/it](TechDraw_AngleDimension/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Angle/it diff --git a/wiki/translations/it/TechDraw_Dimension_Angle3Pt.md b/wiki/translations/it/TechDraw_Dimension_Angle3Pt.md index 367876cbab..b50acb46aa 100644 --- a/wiki/translations/it/TechDraw_Dimension_Angle3Pt.md +++ b/wiki/translations/it/TechDraw_Dimension_Angle3Pt.md @@ -1,2 +1,5 @@ # TechDraw Dimension Angle3Pt/it 1. REDIRECT [TechDraw\_3PtAngleDimension/it](TechDraw_3PtAngleDimension/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Angle3Pt/it diff --git a/wiki/translations/it/TechDraw_Dimension_Diameter.md b/wiki/translations/it/TechDraw_Dimension_Diameter.md index 98275b2d41..652bea3904 100644 --- a/wiki/translations/it/TechDraw_Dimension_Diameter.md +++ b/wiki/translations/it/TechDraw_Dimension_Diameter.md @@ -1,2 +1,5 @@ # TechDraw Dimension Diameter/it 1. REDIRECT [TechDraw\_DiameterDimension/it](TechDraw_DiameterDimension/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Diameter/it diff --git a/wiki/translations/it/TechDraw_Dimension_Horizontal.md b/wiki/translations/it/TechDraw_Dimension_Horizontal.md index b009bf6d3d..8f1360d61d 100644 --- a/wiki/translations/it/TechDraw_Dimension_Horizontal.md +++ b/wiki/translations/it/TechDraw_Dimension_Horizontal.md @@ -1,2 +1,5 @@ # TechDraw Dimension Horizontal/it 1. REDIRECT [TechDraw\_HorizontalDimension/it](TechDraw_HorizontalDimension/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Horizontal/it diff --git a/wiki/translations/it/TechDraw_Dimension_Horizontal_Extent.md b/wiki/translations/it/TechDraw_Dimension_Horizontal_Extent.md index 92a8aa02d6..c17b289838 100644 --- a/wiki/translations/it/TechDraw_Dimension_Horizontal_Extent.md +++ b/wiki/translations/it/TechDraw_Dimension_Horizontal_Extent.md @@ -1,2 +1,5 @@ # TechDraw Dimension Horizontal Extent/it 1. REDIRECT [TechDraw\_HorizontalExtentDimension/it](TechDraw_HorizontalExtentDimension/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Horizontal Extent/it diff --git a/wiki/translations/it/TechDraw_Dimension_Landmark.md b/wiki/translations/it/TechDraw_Dimension_Landmark.md index 90d39fb3b5..e648d027cf 100644 --- a/wiki/translations/it/TechDraw_Dimension_Landmark.md +++ b/wiki/translations/it/TechDraw_Dimension_Landmark.md @@ -1,2 +1,5 @@ # TechDraw Dimension Landmark/it 1. REDIRECT [TechDraw\_LandmarkDimension/it](TechDraw_LandmarkDimension/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Landmark/it diff --git a/wiki/translations/it/TechDraw_Dimension_Length.md b/wiki/translations/it/TechDraw_Dimension_Length.md index 044684b29a..b803636e2a 100644 --- a/wiki/translations/it/TechDraw_Dimension_Length.md +++ b/wiki/translations/it/TechDraw_Dimension_Length.md @@ -1,2 +1,5 @@ # TechDraw Dimension Length/it 1. REDIRECT [TechDraw\_LengthDimension/it](TechDraw_LengthDimension/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Length/it diff --git a/wiki/translations/it/TechDraw_Dimension_Link.md b/wiki/translations/it/TechDraw_Dimension_Link.md index 8348cbef46..c5c88bf8bf 100644 --- a/wiki/translations/it/TechDraw_Dimension_Link.md +++ b/wiki/translations/it/TechDraw_Dimension_Link.md @@ -1,2 +1,5 @@ # TechDraw Dimension Link/it 1. REDIRECT [TechDraw\_LinkDimension/it](TechDraw_LinkDimension/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Link/it diff --git a/wiki/translations/it/TechDraw_Dimension_Radius.md b/wiki/translations/it/TechDraw_Dimension_Radius.md index 89d6f0d222..dee18389d1 100644 --- a/wiki/translations/it/TechDraw_Dimension_Radius.md +++ b/wiki/translations/it/TechDraw_Dimension_Radius.md @@ -1,2 +1,5 @@ # TechDraw Dimension Radius/it 1. REDIRECT [TechDraw\_RadiusDimension/it](TechDraw_RadiusDimension/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Radius/it diff --git a/wiki/translations/it/TechDraw_Dimension_Vertical.md b/wiki/translations/it/TechDraw_Dimension_Vertical.md index ac3b734083..e4d07c22ce 100644 --- a/wiki/translations/it/TechDraw_Dimension_Vertical.md +++ b/wiki/translations/it/TechDraw_Dimension_Vertical.md @@ -1,2 +1,5 @@ # TechDraw Dimension Vertical/it 1. REDIRECT [TechDraw\_VerticalDimension/it](TechDraw_VerticalDimension/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Vertical/it diff --git a/wiki/translations/it/TechDraw_Dimension_Vertical_Extent.md b/wiki/translations/it/TechDraw_Dimension_Vertical_Extent.md index 3e53e7fb5e..7671d1fafb 100644 --- a/wiki/translations/it/TechDraw_Dimension_Vertical_Extent.md +++ b/wiki/translations/it/TechDraw_Dimension_Vertical_Extent.md @@ -1,2 +1,5 @@ # TechDraw Dimension Vertical Extent/it 1. REDIRECT [TechDraw\_VerticalExtentDimension/it](TechDraw_VerticalExtentDimension/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Vertical Extent/it diff --git a/wiki/translations/it/TechDraw_DraftView.md b/wiki/translations/it/TechDraw_DraftView.md index 7fb7e16cf4..801eba36ef 100644 --- a/wiki/translations/it/TechDraw_DraftView.md +++ b/wiki/translations/it/TechDraw_DraftView.md @@ -7,6 +7,8 @@ SeeAlso:[Draft](Draft_Workbench/it.md), [Vista di Arch](TechDraw_ArchView/it.md) --- +# TechDraw DraftView/it + @@ -118,4 +120,7 @@ rc = page.addView(dv) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DraftView/it diff --git a/wiki/translations/it/TechDraw_ExportPageDXF.md b/wiki/translations/it/TechDraw_ExportPageDXF.md index 9d7cb7975f..9aa2fc247c 100644 --- a/wiki/translations/it/TechDraw_ExportPageDXF.md +++ b/wiki/translations/it/TechDraw_ExportPageDXF.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw Export Page as SVG](TechDraw_ExportPageSVG.md), [Draft DXF](Draft_DXF.md) --- +# TechDraw ExportPageDXF/it + ## Description The ExportPageDXF tool saves a drawing page as a [DXF](DXF.md) file. @@ -67,4 +69,7 @@ TechDraw.writeDXFPage(page,filename) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ExportPageDXF/it diff --git a/wiki/translations/it/TechDraw_ExportPageSVG.md b/wiki/translations/it/TechDraw_ExportPageSVG.md index 882462c1c6..d1193f37e7 100644 --- a/wiki/translations/it/TechDraw_ExportPageSVG.md +++ b/wiki/translations/it/TechDraw_ExportPageSVG.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw Templates](TechDraw_Templates.md), [Draft SVG](Draft_SVG.md) --- +# TechDraw ExportPageSVG/it + ## Description The ExportPageSVG tool saves the current drawing page as an [SVG](SVG.md) file. @@ -42,4 +44,7 @@ Note that the FreeCADGui module must be active to use this function. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ExportPageSVG/it diff --git a/wiki/translations/it/TechDraw_FaceCenterLine.md b/wiki/translations/it/TechDraw_FaceCenterLine.md index 594ebcd857..c226f05f51 100644 --- a/wiki/translations/it/TechDraw_FaceCenterLine.md +++ b/wiki/translations/it/TechDraw_FaceCenterLine.md @@ -8,6 +8,8 @@ Version:0.19 --- +# TechDraw FaceCenterLine/it + @@ -105,4 +107,7 @@ In questo momento la Linea centrale non è accessibile dalle [macro](macros/it.m {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw FaceCenterLine/it diff --git a/wiki/translations/it/TechDraw_GeomHatch.md b/wiki/translations/it/TechDraw_GeomHatch.md index 2da170b663..34026f17ab 100644 --- a/wiki/translations/it/TechDraw_GeomHatch.md +++ b/wiki/translations/it/TechDraw_GeomHatch.md @@ -1,2 +1,5 @@ # TechDraw GeomHatch/it 1. REDIRECT [TechDraw\_GeometricHatch/it](TechDraw_GeometricHatch/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw GeomHatch/it diff --git a/wiki/translations/it/TechDraw_GeometricHatch.md b/wiki/translations/it/TechDraw_GeometricHatch.md index 30c04502cd..131c650dad 100644 --- a/wiki/translations/it/TechDraw_GeometricHatch.md +++ b/wiki/translations/it/TechDraw_GeometricHatch.md @@ -7,6 +7,8 @@ SeeAlso:[Tratteggio da modello](TechDraw_Hatch/it.md), [Tipi di tratteggio](TechDraw_Hatching/it.md) --- +# TechDraw GeometricHatch/it + @@ -117,4 +119,7 @@ Part.show(hatch) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw GeometricHatch/it diff --git a/wiki/translations/it/TechDraw_Geometric_dimensioning_and_tolerancing.md b/wiki/translations/it/TechDraw_Geometric_dimensioning_and_tolerancing.md index 5de8fdfe71..bfb600c8f6 100644 --- a/wiki/translations/it/TechDraw_Geometric_dimensioning_and_tolerancing.md +++ b/wiki/translations/it/TechDraw_Geometric_dimensioning_and_tolerancing.md @@ -1,10 +1,4 @@ # TechDraw Geometric dimensioning and tolerancing/it - - - - - - {{TOCright}} ## Concept @@ -341,4 +335,7 @@ As reference, here are lists of characters to be used for geometric tolerancing: {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Geometric dimensioning and tolerancing/it diff --git a/wiki/translations/it/TechDraw_Hatch.md b/wiki/translations/it/TechDraw_Hatch.md index c3ac1c0892..1f19a1cc78 100644 --- a/wiki/translations/it/TechDraw_Hatch.md +++ b/wiki/translations/it/TechDraw_Hatch.md @@ -1,3 +1,4 @@ +# TechDraw Hatch/it --- - GuiCommand:/it Name:TechDraw Hatch Name/it:Tratteggio da modello Workbenches:[MenuLocation:TechDraw → Tratteggio da modello Shortcut: SeeAlso:[[TechDraw_GeometricHatch/it|Tratteggio geometrico](TechDraw_Workbench/it___TechDraw]].md), [Tipi di tratteggio](TechDraw_Hatching/it.md)--- @@ -105,4 +106,7 @@ rc = page.addView(hatch) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Hatch/it diff --git a/wiki/translations/it/TechDraw_Hatching.md b/wiki/translations/it/TechDraw_Hatching.md index 4316a155d3..988c49bd6b 100644 --- a/wiki/translations/it/TechDraw_Hatching.md +++ b/wiki/translations/it/TechDraw_Hatching.md @@ -1,7 +1,4 @@ # TechDraw Hatching/it - - -
@@ -102,4 +99,7 @@ Il file `FCPAT.pat` può essere trovato nel seguente percorso: {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Hatching/it diff --git a/wiki/translations/it/TechDraw_HorizontalDimension.md b/wiki/translations/it/TechDraw_HorizontalDimension.md index db2d75acbf..8b572caeeb 100644 --- a/wiki/translations/it/TechDraw_HorizontalDimension.md +++ b/wiki/translations/it/TechDraw_HorizontalDimension.md @@ -1,3 +1,4 @@ +# TechDraw HorizontalDimension/it --- - GuiCommand:/it Name:TechDraw_HorizontalDimension Name/it:Dimensione orizzontale Workbenches:[MenuLocation:TechDraw → Dimensione orizzontale Shortcut: SeeAlso:[[TechDraw Dimension Length/it|Lunghezza](TechDraw_Workbench/it___TechDraw]].md), [Dimensione verticale](TechDraw_Dimension_Vertical/it.md)--- @@ -87,4 +88,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HorizontalDimension/it diff --git a/wiki/translations/it/TechDraw_HorizontalExtentDimension.md b/wiki/translations/it/TechDraw_HorizontalExtentDimension.md index 9b51ed9baa..9cfda5e63e 100644 --- a/wiki/translations/it/TechDraw_HorizontalExtentDimension.md +++ b/wiki/translations/it/TechDraw_HorizontalExtentDimension.md @@ -7,6 +7,8 @@ SeeAlso:[Lunghezza](TechDraw_Dimension_Length/it.md), [Estensione verticale](TechDraw_Dimension_Vertical_Extent/it.md) --- +# TechDraw HorizontalExtentDimension/it +
@@ -93,4 +95,7 @@ rc = page.addView(hExtentDim) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HorizontalExtentDimension/it diff --git a/wiki/translations/it/TechDraw_HowTo_Page.md b/wiki/translations/it/TechDraw_HowTo_Page.md index 6bc655084e..70d9d1b9aa 100644 --- a/wiki/translations/it/TechDraw_HowTo_Page.md +++ b/wiki/translations/it/TechDraw_HowTo_Page.md @@ -1,5 +1,5 @@ # TechDraw HowTo Page/it - Back to [TechDraw Tutorials](TechDraw_Workbench#Tutorials.md) +Back to [TechDraw Tutorials](TechDraw_Workbench#Tutorials.md) {{TutorialInfo/it @@ -50,4 +50,7 @@ See also [Measurement Of Angles On Holes](Measurement_Of_Angles_On_Holes.md) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HowTo Page/it diff --git a/wiki/translations/it/TechDraw_Image.md b/wiki/translations/it/TechDraw_Image.md index ab980b9075..02807c90e2 100644 --- a/wiki/translations/it/TechDraw_Image.md +++ b/wiki/translations/it/TechDraw_Image.md @@ -1,3 +1,4 @@ +# TechDraw Image/it --- - GuiCommand:/it Name:TechDraw Image Name/it:Immagine bitmap Workbenches:[MenuLocation:TechDraw → Immagine bitmap Shortcut: SeeAlso:[[TechDraw Symbol/it|Simbolo SVG](TechDraw_Workbench/it___TechDraw]].md)--- @@ -68,4 +69,7 @@ dvi.Width = 200 {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Image/it diff --git a/wiki/translations/it/TechDraw_LandmarkDimension.md b/wiki/translations/it/TechDraw_LandmarkDimension.md index c558af090f..a8250446cf 100644 --- a/wiki/translations/it/TechDraw_LandmarkDimension.md +++ b/wiki/translations/it/TechDraw_LandmarkDimension.md @@ -9,6 +9,8 @@ Version:0.19 --- +# TechDraw LandmarkDimension/it + @@ -91,4 +93,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LandmarkDimension/it diff --git a/wiki/translations/it/TechDraw_LeaderLine.md b/wiki/translations/it/TechDraw_LeaderLine.md index ea2424d0cf..00a56a14b4 100644 --- a/wiki/translations/it/TechDraw_LeaderLine.md +++ b/wiki/translations/it/TechDraw_LeaderLine.md @@ -9,6 +9,8 @@ SeeAlso:[Blocco di testo](TechDraw_RichTextAnnotation/it.md), [Simbolo di saldatura](TechDraw_WeldSymbol/it.md), [Gruppi di linee](TechDraw_LineGroup/it.md) --- +# TechDraw LeaderLine/it + @@ -122,4 +124,7 @@ leaderObj.Y = 5 {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LeaderLine/it diff --git a/wiki/translations/it/TechDraw_LengthDimension.md b/wiki/translations/it/TechDraw_LengthDimension.md index 3179b4e042..2d2965f136 100644 --- a/wiki/translations/it/TechDraw_LengthDimension.md +++ b/wiki/translations/it/TechDraw_LengthDimension.md @@ -1,3 +1,4 @@ +# TechDraw LengthDimension/it --- - GuiCommand:/it Name:TechDraw_Dimension_Length Name/it:Lunghezza Workbenches:[MenuLocation:TechDraw → Lunghezza Shortcut: SeeAlso:[[TechDraw Dimension Horizontal/it|Dimensione orizzontale](TechDraw_Workbench/it___TechDraw]].md), [Dimensione verticale](TechDraw_Dimension_Vertical/it.md)--- @@ -266,4 +267,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LengthDimension/it diff --git a/wiki/translations/it/TechDraw_LineGroup.md b/wiki/translations/it/TechDraw_LineGroup.md index 029530fdee..a7b56f2656 100644 --- a/wiki/translations/it/TechDraw_LineGroup.md +++ b/wiki/translations/it/TechDraw_LineGroup.md @@ -1,7 +1,4 @@ # TechDraw LineGroup/it - - -
@@ -104,4 +101,7 @@ Nota: È stata aggiunta una nuova preferenza per consentire all\'utente di utili {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LineGroup/it diff --git a/wiki/translations/it/TechDraw_LinkDimension.md b/wiki/translations/it/TechDraw_LinkDimension.md index 36bc940ff4..bf0330dcf9 100644 --- a/wiki/translations/it/TechDraw_LinkDimension.md +++ b/wiki/translations/it/TechDraw_LinkDimension.md @@ -1,3 +1,4 @@ +# TechDraw LinkDimension/it --- - GuiCommand:/it Name:TechDraw Dimension Link Name/it:Link alla dimensione Workbenches:[MenuLocation:TechDraw → Link alla geometria 3D Shortcut: SeeAlso:[[TechDraw NewView/it|Vista](TechDraw_Workbench/it___TechDraw]].md), [Proiezioni](TechDraw_NewProjGroup/it.md)--- @@ -98,4 +99,7 @@ to be defined {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LinkDimension/it diff --git a/wiki/translations/it/TechDraw_Midpoints.md b/wiki/translations/it/TechDraw_Midpoints.md index 66147af94d..a99b584ba2 100644 --- a/wiki/translations/it/TechDraw_Midpoints.md +++ b/wiki/translations/it/TechDraw_Midpoints.md @@ -8,6 +8,8 @@ Version:0.19 --- +# TechDraw Midpoints/it +
@@ -71,4 +73,7 @@ In questo momento i vertici cosmetici non sono accessibili dalle [macro](macros/ {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Midpoints/it diff --git a/wiki/translations/it/TechDraw_Module.md b/wiki/translations/it/TechDraw_Module.md index f01f9a6150..4617b8beb1 100644 --- a/wiki/translations/it/TechDraw_Module.md +++ b/wiki/translations/it/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/it 1. REDIRECT [TechDraw\_Workbench/it](TechDraw_Workbench/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/it diff --git a/wiki/translations/it/TechDraw_NewAnnotation.md b/wiki/translations/it/TechDraw_NewAnnotation.md index a99b8d3387..ff95bfac7c 100644 --- a/wiki/translations/it/TechDraw_NewAnnotation.md +++ b/wiki/translations/it/TechDraw_NewAnnotation.md @@ -1,2 +1,5 @@ # TechDraw NewAnnotation/it 1. REDIRECT [TechDraw\_Annotation/it](TechDraw_Annotation/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewAnnotation/it diff --git a/wiki/translations/it/TechDraw_NewArch.md b/wiki/translations/it/TechDraw_NewArch.md index 8152c25e0c..a617387410 100644 --- a/wiki/translations/it/TechDraw_NewArch.md +++ b/wiki/translations/it/TechDraw_NewArch.md @@ -1,2 +1,5 @@ # TechDraw NewArch/it 1. REDIRECT [TechDraw\_ArchView/it](TechDraw_ArchView/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewArch/it diff --git a/wiki/translations/it/TechDraw_NewDetail.md b/wiki/translations/it/TechDraw_NewDetail.md index 53f73108c9..1c5d259d54 100644 --- a/wiki/translations/it/TechDraw_NewDetail.md +++ b/wiki/translations/it/TechDraw_NewDetail.md @@ -1,2 +1,5 @@ # TechDraw NewDetail/it 1. REDIRECT [TechDraw\_DetailView/it](TechDraw_DetailView/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewDetail/it diff --git a/wiki/translations/it/TechDraw_NewDraft.md b/wiki/translations/it/TechDraw_NewDraft.md index ab4953e068..2fe73d552a 100644 --- a/wiki/translations/it/TechDraw_NewDraft.md +++ b/wiki/translations/it/TechDraw_NewDraft.md @@ -1,2 +1,5 @@ # TechDraw NewDraft/it 1. REDIRECT [TechDraw\_DraftView/it](TechDraw_DraftView/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewDraft/it diff --git a/wiki/translations/it/TechDraw_NewMulti.md b/wiki/translations/it/TechDraw_NewMulti.md index fba0033e96..4717443cf1 100644 --- a/wiki/translations/it/TechDraw_NewMulti.md +++ b/wiki/translations/it/TechDraw_NewMulti.md @@ -1,2 +1,5 @@ # TechDraw NewMulti/it 1. REDIRECT [TechDraw\_ProjectionGroup/it](TechDraw_ProjectionGroup/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewMulti/it diff --git a/wiki/translations/it/TechDraw_NewProjGroup.md b/wiki/translations/it/TechDraw_NewProjGroup.md index 49346868e2..09607b0dcf 100644 --- a/wiki/translations/it/TechDraw_NewProjGroup.md +++ b/wiki/translations/it/TechDraw_NewProjGroup.md @@ -1,2 +1,5 @@ # TechDraw NewProjGroup/it 1. REDIRECT [TechDraw\_ProjectionGroup/it](TechDraw_ProjectionGroup/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewProjGroup/it diff --git a/wiki/translations/it/TechDraw_NewSection.md b/wiki/translations/it/TechDraw_NewSection.md index 14882987c8..2852176b25 100644 --- a/wiki/translations/it/TechDraw_NewSection.md +++ b/wiki/translations/it/TechDraw_NewSection.md @@ -1,2 +1,5 @@ # TechDraw NewSection/it 1. REDIRECT [TechDraw\_SectionView/it](TechDraw_SectionView/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewSection/it diff --git a/wiki/translations/it/TechDraw_New_Default.md b/wiki/translations/it/TechDraw_New_Default.md index 6c17b6ae5d..b402f65500 100644 --- a/wiki/translations/it/TechDraw_New_Default.md +++ b/wiki/translations/it/TechDraw_New_Default.md @@ -1,2 +1,5 @@ # TechDraw New Default/it 1. REDIRECT [TechDraw\_PageDefault/it](TechDraw_PageDefault/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw New Default/it diff --git a/wiki/translations/it/TechDraw_New_Pick.md b/wiki/translations/it/TechDraw_New_Pick.md index 916951cf5e..d0e1871cdd 100644 --- a/wiki/translations/it/TechDraw_New_Pick.md +++ b/wiki/translations/it/TechDraw_New_Pick.md @@ -1,2 +1,5 @@ # TechDraw New Pick/it 1. REDIRECT [TechDraw\_PageTemplate/it](TechDraw_PageTemplate/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw New Pick/it diff --git a/wiki/translations/it/TechDraw_PageDefault.md b/wiki/translations/it/TechDraw_PageDefault.md index 375942d89d..cf50ad1f57 100644 --- a/wiki/translations/it/TechDraw_PageDefault.md +++ b/wiki/translations/it/TechDraw_PageDefault.md @@ -7,6 +7,8 @@ SeeAlso:[Nuovo disegno da modello](TechDraw_PageTemplate/it.md), [Modelli di squadrature](TechDraw_Templates/it.md) --- +# TechDraw PageDefault/it + @@ -143,4 +145,7 @@ page.Template.EditableTexts = texts {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw PageDefault/it diff --git a/wiki/translations/it/TechDraw_PageTemplate.md b/wiki/translations/it/TechDraw_PageTemplate.md index 083786e714..54fa96984c 100644 --- a/wiki/translations/it/TechDraw_PageTemplate.md +++ b/wiki/translations/it/TechDraw_PageTemplate.md @@ -7,6 +7,8 @@ SeeAlso:[Nuova pagina standard](TechDraw_PageDefault/it.md), [Modelli di squadrature](TechDraw_Templates/it.md) --- +# TechDraw PageTemplate/it + @@ -105,4 +107,7 @@ Per modificare a livello di programmazione i campi di testo editabili in un mode {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw PageTemplate/it diff --git a/wiki/translations/it/TechDraw_Preferences.md b/wiki/translations/it/TechDraw_Preferences.md index 2bc7a2cf60..8ce19beb43 100644 --- a/wiki/translations/it/TechDraw_Preferences.md +++ b/wiki/translations/it/TechDraw_Preferences.md @@ -1,7 +1,4 @@ # TechDraw Preferences/it - - -
@@ -245,3 +242,6 @@ Alcune impostazioni delle preferenze sono accessibili solo tramite [Editor dei p }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Preferences/it diff --git a/wiki/translations/it/TechDraw_ProjectionGroup.md b/wiki/translations/it/TechDraw_ProjectionGroup.md index 1b8f49af09..6263ea6884 100644 --- a/wiki/translations/it/TechDraw_ProjectionGroup.md +++ b/wiki/translations/it/TechDraw_ProjectionGroup.md @@ -9,6 +9,8 @@ Version: --- +# TechDraw ProjectionGroup/it +
@@ -146,4 +148,7 @@ Nota di programmazione: Il Gruppo di proiezioni deve sempre essere aggiunto alla {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ProjectionGroup/it diff --git a/wiki/translations/it/TechDraw_Quadrants.md b/wiki/translations/it/TechDraw_Quadrants.md index 330a56162d..562ba2b987 100644 --- a/wiki/translations/it/TechDraw_Quadrants.md +++ b/wiki/translations/it/TechDraw_Quadrants.md @@ -8,6 +8,8 @@ Version:0.19 --- +# TechDraw Quadrants/it + @@ -72,4 +74,7 @@ In questo momento i vertici cosmetici non sono accessibili dalle [macro](macros/ {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Quadrants/it diff --git a/wiki/translations/it/TechDraw_RadiusDimension.md b/wiki/translations/it/TechDraw_RadiusDimension.md index 84c6bee337..29cfb10887 100644 --- a/wiki/translations/it/TechDraw_RadiusDimension.md +++ b/wiki/translations/it/TechDraw_RadiusDimension.md @@ -1,3 +1,4 @@ +# TechDraw RadiusDimension/it --- - GuiCommand:/it Name:TechDraw Dimension Radius Name/it:Raggio Workbenches:[MenuLocation:TechDraw → Raggio Shortcut: SeeAlso:[[TechDraw Dimension Diameter/it|Diametro](TechDraw_Workbench/it___TechDraw]].md)--- @@ -87,4 +88,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RadiusDimension/it diff --git a/wiki/translations/it/TechDraw_Redraw.md b/wiki/translations/it/TechDraw_Redraw.md index e71eabd50f..19f00f86ea 100644 --- a/wiki/translations/it/TechDraw_Redraw.md +++ b/wiki/translations/it/TechDraw_Redraw.md @@ -1,2 +1,5 @@ # TechDraw Redraw/it 1. REDIRECT [TechDraw\_RedrawPage/it](TechDraw_RedrawPage/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Redraw/it diff --git a/wiki/translations/it/TechDraw_RedrawPage.md b/wiki/translations/it/TechDraw_RedrawPage.md index c9d0a1b7b9..da9397f8d6 100644 --- a/wiki/translations/it/TechDraw_RedrawPage.md +++ b/wiki/translations/it/TechDraw_RedrawPage.md @@ -7,6 +7,8 @@ Version:0.19 --- +# TechDraw RedrawPage/it + @@ -55,4 +57,7 @@ Il comando Ridisegna non è direttamente disponibile negli script. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RedrawPage/it diff --git a/wiki/translations/it/TechDraw_RichTextAnnotation.md b/wiki/translations/it/TechDraw_RichTextAnnotation.md index c5b3a9e0bb..d054ab69b2 100644 --- a/wiki/translations/it/TechDraw_RichTextAnnotation.md +++ b/wiki/translations/it/TechDraw_RichTextAnnotation.md @@ -8,6 +8,8 @@ SeeAlso:[Modelli di squadrature](TechDraw_Templates/it.md), [SVG di Draft](Draft_SVG/it.md), [Linea guida](TechDraw_LeaderLine/it.md) --- +# TechDraw RichTextAnnotation/it + @@ -84,4 +86,7 @@ blockObj.AnnoText = myHTMLText {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RichTextAnnotation/it diff --git a/wiki/translations/it/TechDraw_Roadmap.md b/wiki/translations/it/TechDraw_Roadmap.md index 0acd5abfcc..5a666437b3 100644 --- a/wiki/translations/it/TechDraw_Roadmap.md +++ b/wiki/translations/it/TechDraw_Roadmap.md @@ -1,5 +1,4 @@ -# TechDraw Roadmap/it - +# TechDraw Roadmap/it The [TechDraw Workbench](TechDraw_Workbench.md) was introduced officially as part of FreeCAD in version 0.17. It is relatively new and hasn\'t had the years of development that have benefited some other workbenches. Still, TechDraw now meets its original design goal and can now \"produce basic technical drawings based on the 3D model\". @@ -83,3 +82,6 @@ See the bug tracker for up to date information. }} [Category:User Documentation/it](Category:User_Documentation/it.md) [Category:User Documentation](Category:User_Documentation.md) [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Roadmap/it diff --git a/wiki/translations/it/TechDraw_SaveDXF.md b/wiki/translations/it/TechDraw_SaveDXF.md index 239841371e..134f3a7ccd 100644 --- a/wiki/translations/it/TechDraw_SaveDXF.md +++ b/wiki/translations/it/TechDraw_SaveDXF.md @@ -1,2 +1,5 @@ # TechDraw SaveDXF/it 1. REDIRECT [TechDraw\_ExportPageDXF/it](TechDraw_ExportPageDXF/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SaveDXF/it diff --git a/wiki/translations/it/TechDraw_SaveSVG.md b/wiki/translations/it/TechDraw_SaveSVG.md index 622a3b77fb..7c62e482b1 100644 --- a/wiki/translations/it/TechDraw_SaveSVG.md +++ b/wiki/translations/it/TechDraw_SaveSVG.md @@ -1,2 +1,5 @@ # TechDraw SaveSVG/it 1. REDIRECT [TechDraw\_ExportPageSVG/it](TechDraw_ExportPageSVG/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SaveSVG/it diff --git a/wiki/translations/it/TechDraw_SectionView.md b/wiki/translations/it/TechDraw_SectionView.md index 3cc5bcb2c6..327840ecd5 100644 --- a/wiki/translations/it/TechDraw_SectionView.md +++ b/wiki/translations/it/TechDraw_SectionView.md @@ -7,6 +7,8 @@ SeeAlso:[Vista](TechDraw_View/it.md), [Gruppo di proiezioni](TechDraw_ProjectionGroup/it.md) --- +# TechDraw SectionView/it + @@ -149,4 +151,7 @@ section.SectionOrigin = (5.0,5.0,5.0) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SectionView/it diff --git a/wiki/translations/it/TechDraw_ShowAll.md b/wiki/translations/it/TechDraw_ShowAll.md index 9bcd9defdb..7c07389753 100644 --- a/wiki/translations/it/TechDraw_ShowAll.md +++ b/wiki/translations/it/TechDraw_ShowAll.md @@ -8,6 +8,8 @@ Version:0.19 --- +# TechDraw ShowAll/it + @@ -66,4 +68,7 @@ L\'effetto dello strumento Mostra può essere replicato nelle [macro](macros/it. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ShowAll/it diff --git a/wiki/translations/it/TechDraw_Spreadsheet.md b/wiki/translations/it/TechDraw_Spreadsheet.md index dd872dedb4..0d2d6108a7 100644 --- a/wiki/translations/it/TechDraw_Spreadsheet.md +++ b/wiki/translations/it/TechDraw_Spreadsheet.md @@ -1,2 +1,5 @@ # TechDraw Spreadsheet/it 1. REDIRECT [TechDraw\_SpreadsheetView/it](TechDraw_SpreadsheetView/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Spreadsheet/it diff --git a/wiki/translations/it/TechDraw_SpreadsheetView.md b/wiki/translations/it/TechDraw_SpreadsheetView.md index d57c2cdb8c..6303c6a806 100644 --- a/wiki/translations/it/TechDraw_SpreadsheetView.md +++ b/wiki/translations/it/TechDraw_SpreadsheetView.md @@ -7,6 +7,8 @@ SeeAlso:[Foglio di calcolo](Spreadsheet_Workbench/it.md) --- +# TechDraw SpreadsheetView/it + @@ -62,4 +64,7 @@ Questo strumento ti consente di posizionare una vista di un [foglio di calcolo]( {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SpreadsheetView/it diff --git a/wiki/translations/it/TechDraw_Symbol.md b/wiki/translations/it/TechDraw_Symbol.md index 95194751e2..5225d3a254 100644 --- a/wiki/translations/it/TechDraw_Symbol.md +++ b/wiki/translations/it/TechDraw_Symbol.md @@ -1,3 +1,4 @@ +# TechDraw Symbol/it --- - GuiCommand:/it Name:TechDraw_Symbol Name/it:Simbolo SVG Workbenches:[MenuLocation:TechDraw → Simbolo SVG Shortcut: SeeAlso:[[TechDraw Templates/it|Modelli di squadrature](TechDraw_Workbench/it___TechDraw]].md), [SVG di Draft](Draft_SVG/it.md)--- @@ -77,4 +78,7 @@ rc = page.addView(sym) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Symbol/it diff --git a/wiki/translations/it/TechDraw_TemplateHowTo.md b/wiki/translations/it/TechDraw_TemplateHowTo.md index b1d9020b80..719d3e32d1 100644 --- a/wiki/translations/it/TechDraw_TemplateHowTo.md +++ b/wiki/translations/it/TechDraw_TemplateHowTo.md @@ -1,7 +1,4 @@ # TechDraw TemplateHowTo/it - - - {{TutorialInfo/it |Topic=Disegno tecnico |Level=Intermedio @@ -176,4 +173,7 @@ If you do not see the green boxes for your editable texts, there might be someth {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw TemplateHowTo/it diff --git a/wiki/translations/it/TechDraw_Templates.md b/wiki/translations/it/TechDraw_Templates.md index e184549660..b8fb1e5dc0 100644 --- a/wiki/translations/it/TechDraw_Templates.md +++ b/wiki/translations/it/TechDraw_Templates.md @@ -1,7 +1,4 @@ # TechDraw Templates/it - - -
@@ -113,4 +110,7 @@ La clausola **xml:space=\"preserve\"** causa a volte problemi di dimensioni e po {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Templates/it diff --git a/wiki/translations/it/TechDraw_TextLeader.md b/wiki/translations/it/TechDraw_TextLeader.md index 950be81bed..5f9ffa1483 100644 --- a/wiki/translations/it/TechDraw_TextLeader.md +++ b/wiki/translations/it/TechDraw_TextLeader.md @@ -1,2 +1,5 @@ # TechDraw TextLeader/it 1. REDIRECT [TechDraw\_RichTextAnnotation/it](TechDraw_RichTextAnnotation/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw TextLeader/it diff --git a/wiki/translations/it/TechDraw_Toggle.md b/wiki/translations/it/TechDraw_Toggle.md index 35cfc3b07d..1ca7bccd3f 100644 --- a/wiki/translations/it/TechDraw_Toggle.md +++ b/wiki/translations/it/TechDraw_Toggle.md @@ -1,2 +1,5 @@ # TechDraw Toggle/it 1. REDIRECT [TechDraw\_ToggleFrame/it](TechDraw_ToggleFrame/it.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Toggle/it diff --git a/wiki/translations/it/TechDraw_ToggleFrame.md b/wiki/translations/it/TechDraw_ToggleFrame.md index b704b0844d..3a3ec1e55c 100644 --- a/wiki/translations/it/TechDraw_ToggleFrame.md +++ b/wiki/translations/it/TechDraw_ToggleFrame.md @@ -7,6 +7,8 @@ SeeAlso:[Vista](TechDraw_View/it.md), [Gruppo di proiezioni](TechDraw_ProjectionGroup/it.md) --- +# TechDraw ToggleFrame/it +
@@ -60,4 +62,7 @@ Per ora lo strumento non ha un\'interfaccia di programmazione. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ToggleFrame/it diff --git a/wiki/translations/it/TechDraw_VerticalDimension.md b/wiki/translations/it/TechDraw_VerticalDimension.md index 29baadcbb3..c89f6e26ae 100644 --- a/wiki/translations/it/TechDraw_VerticalDimension.md +++ b/wiki/translations/it/TechDraw_VerticalDimension.md @@ -1,3 +1,4 @@ +# TechDraw VerticalDimension/it --- - GuiCommand:/it Name:TechDraw Dimension Vertical Name/it:Dimensione verticale Workbenches:[MenuLocation:TechDraw → Dimensione verticale Shortcut: SeeAlso:[[TechDraw Dimension Length/it|Lunghezza](TechDraw_Workbench/it___TechDraw]].md), [Orizzontale](TechDraw_Dimension_Horizontal/it.md)--- @@ -87,4 +88,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw VerticalDimension/it diff --git a/wiki/translations/it/TechDraw_VerticalExtentDimension.md b/wiki/translations/it/TechDraw_VerticalExtentDimension.md index c330bef6a3..50c3627fe8 100644 --- a/wiki/translations/it/TechDraw_VerticalExtentDimension.md +++ b/wiki/translations/it/TechDraw_VerticalExtentDimension.md @@ -7,6 +7,8 @@ SeeAlso:[Lunghezza](TechDraw_Dimension_Length/it.md), [Estensione orizzontale](TechDraw_Dimension_Horizontal_Extent/it.md) --- +# TechDraw VerticalExtentDimension/it + @@ -93,4 +95,7 @@ rc = page.addView(hExtentDim) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw VerticalExtentDimension/it diff --git a/wiki/translations/it/TechDraw_View.md b/wiki/translations/it/TechDraw_View.md index f1d7e515fa..1f66c1bd10 100644 --- a/wiki/translations/it/TechDraw_View.md +++ b/wiki/translations/it/TechDraw_View.md @@ -7,6 +7,8 @@ SeeAlso:[Gruppo di proiezioni](TechDraw_ProjectionGroup/it.md), [Vista di sezione](TechDraw_SectionView/it.md) --- +# TechDraw View/it + @@ -207,4 +209,7 @@ FreeCAD.ActiveDocument.View.Direction = (0.0,0.0,1.0) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw View/it diff --git a/wiki/translations/it/TechDraw_WeldSymbol.md b/wiki/translations/it/TechDraw_WeldSymbol.md index 22c2efe0d2..2b03227fa3 100644 --- a/wiki/translations/it/TechDraw_WeldSymbol.md +++ b/wiki/translations/it/TechDraw_WeldSymbol.md @@ -9,6 +9,8 @@ Version:0.19 --- +# TechDraw WeldSymbol/it + @@ -149,4 +151,7 @@ App.activeDocument().DrawTileWeld001.CenterText = "center text" {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw WeldSymbol/it diff --git a/wiki/translations/it/TechDraw_Workbench.md b/wiki/translations/it/TechDraw_Workbench.md index 7e61abd4fc..7e3b52d767 100644 --- a/wiki/translations/it/TechDraw_Workbench.md +++ b/wiki/translations/it/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/it - - - - - -L\'icona di TechDraw +# L\'icona di TechDraw TechDraw Workbench/it ## Introduzione @@ -324,3 +318,6 @@ Video tutorial di sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/it diff --git a/wiki/translations/it/Test_Framework.md b/wiki/translations/it/Test_Framework.md index 392fd121d2..ecbc8c9153 100644 --- a/wiki/translations/it/Test_Framework.md +++ b/wiki/translations/it/Test_Framework.md @@ -1,2 +1,5 @@ # Test Framework/it 1. REDIRECT [Testing/it](Testing/it.md) + +--- +[documentation index](../README.md) > [Test](Test_Workbench.md) > Test Framework/it diff --git a/wiki/translations/it/Test_Framework_Workbench.md b/wiki/translations/it/Test_Framework_Workbench.md index 8e4f442af9..84c65643b8 100644 --- a/wiki/translations/it/Test_Framework_Workbench.md +++ b/wiki/translations/it/Test_Framework_Workbench.md @@ -1,2 +1,5 @@ # Test Framework Workbench/it 1. REDIRECT [Testing/it](Testing/it.md) + +--- +[documentation index](../README.md) > Test Framework Workbench/it diff --git a/wiki/translations/it/Test_Workbench.md b/wiki/translations/it/Test_Workbench.md index 63e8860754..4cb72e9e40 100644 --- a/wiki/translations/it/Test_Workbench.md +++ b/wiki/translations/it/Test_Workbench.md @@ -1,2 +1,5 @@ # Test Workbench/it 1. REDIRECT [Testing/it](Testing/it.md) + +--- +[documentation index](../README.md) > Test Workbench/it diff --git a/wiki/translations/it/Testing.md b/wiki/translations/it/Testing.md index 4a96797e27..3acce5fd4c 100644 --- a/wiki/translations/it/Testing.md +++ b/wiki/translations/it/Testing.md @@ -1,7 +1,4 @@ # Testing/it - - -
@@ -292,3 +289,6 @@ r.run(suite) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Test Framework](Category:Test_Framework.md) [Category:Workbenches](Category:Workbenches.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Testing/it diff --git a/wiki/translations/it/The_FreeCAD_source_code.md b/wiki/translations/it/The_FreeCAD_source_code.md index d07b21420e..3b3bae5567 100644 --- a/wiki/translations/it/The_FreeCAD_source_code.md +++ b/wiki/translations/it/The_FreeCAD_source_code.md @@ -1,5 +1,5 @@ # The FreeCAD source code/it - Il [codice sorgente di FreeCAD](https://github.com/FreeCAD/FreeCAD) è gestito con git, ed è pubblico, aperto e disponibile sotto la [licenza LGPL](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License). Esso può essere copiato, scaricato, letto, analizzato, ridistribuito e modificato da chiunque. Se avete intenzione di apportare delle modifiche che desiderate vedere incluse nel codice ufficiale, ricordate che le modifiche devono essere approvate dagli sviluppatori di FreeCAD, quindi è saggio discutere prima le proprie intenzioni e idee nel [forum](http://forum.freecadweb.org), per non rischiare che le modifiche vengano poi respinte a causa di qualche motivo imprevisto. +Il [codice sorgente di FreeCAD](https://github.com/FreeCAD/FreeCAD) è gestito con git, ed è pubblico, aperto e disponibile sotto la [licenza LGPL](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License). Esso può essere copiato, scaricato, letto, analizzato, ridistribuito e modificato da chiunque. Se avete intenzione di apportare delle modifiche che desiderate vedere incluse nel codice ufficiale, ricordate che le modifiche devono essere approvate dagli sviluppatori di FreeCAD, quindi è saggio discutere prima le proprie intenzioni e idee nel [forum](http://forum.freecadweb.org), per non rischiare che le modifiche vengano poi respinte a causa di qualche motivo imprevisto. Se siete interessati a esplorare il codice FreeCAD, qui di seguito ci sono alcuni suggerimenti e informazioni utili per fornire una traccia . @@ -68,3 +68,6 @@ Se siete interessati a esplorare il codice FreeCAD, qui di seguito ci sono alcun
[Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > The FreeCAD source code/it diff --git a/wiki/translations/it/Third_Party_Libraries.md b/wiki/translations/it/Third_Party_Libraries.md index d40e4eac7d..3da2a3e8b4 100644 --- a/wiki/translations/it/Third_Party_Libraries.md +++ b/wiki/translations/it/Third_Party_Libraries.md @@ -1,7 +1,4 @@ # Third Party Libraries/it - - -
@@ -544,3 +541,6 @@ It includes among other things: Boost 1.67, Coin3D 4.0.0a, Eigen3, Open CASCADE [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Libraries/it diff --git a/wiki/translations/it/Third_Party_Tools.md b/wiki/translations/it/Third_Party_Tools.md index 758b4eaaf8..04f7ac8a0c 100644 --- a/wiki/translations/it/Third_Party_Tools.md +++ b/wiki/translations/it/Third_Party_Tools.md @@ -1,7 +1,4 @@ # Third Party Tools/it - - -
@@ -183,3 +180,6 @@ Da Fare [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Tools/it diff --git a/wiki/translations/it/ThreadProfile_Workbench.md b/wiki/translations/it/ThreadProfile_Workbench.md index 2b9ea01d95..c0ead48341 100644 --- a/wiki/translations/it/ThreadProfile_Workbench.md +++ b/wiki/translations/it/ThreadProfile_Workbench.md @@ -1,8 +1,9 @@ # ThreadProfile Workbench/it - - ThreadProfile è un ambiente per la creazione di un profilo di filettatura, che può essere spostato lungo un\'elica per produrre una filettatura. Questo ambiente è attualmente in fase di sviluppo. La documentazione completa si trova su Github: [ThreadProfile Workbench on Github](https://github.com/mwganson/ThreadProfile) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > ThreadProfile Workbench/it diff --git a/wiki/translations/it/Thread_for_Screw_Tutorial.md b/wiki/translations/it/Thread_for_Screw_Tutorial.md index 05a11bb0ed..7016b32c4f 100644 --- a/wiki/translations/it/Thread_for_Screw_Tutorial.md +++ b/wiki/translations/it/Thread_for_Screw_Tutorial.md @@ -1,7 +1,4 @@ # Thread for Screw Tutorial/it - - -
@@ -458,4 +455,7 @@ ISO e altri thread hanno alleviato, cioè bordi piatti, interni ed esterni piutt ![761PX](images/Threadform.PNG ) -Questo metodo produce solidi affidabili che booleano correttamente. Sebbene non produca filettature \"parametriche\" in dimensioni standard nel senso di avere un accesso semplice alla forma in base alle dimensioni del dispositivo di fissaggio, è un modo semplice di produrre una libreria accurata per il riutilizzo e modelli di forme specializzate come ACME o viti Archimedian , sono anche semplici come one-offs. {{Tutorials navi}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +Questo metodo produce solidi affidabili che booleano correttamente. Sebbene non produca filettature \"parametriche\" in dimensioni standard nel senso di avere un accesso semplice alla forma in base alle dimensioni del dispositivo di fissaggio, è un modo semplice di produrre una libreria accurata per il riutilizzo e modelli di forme specializzate come ACME o viti Archimedian , sono anche semplici come one-offs. {{Tutorials navi}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Thread for Screw Tutorial/it diff --git a/wiki/translations/it/Timber_Workbench.md b/wiki/translations/it/Timber_Workbench.md index 178f0a6fa6..4ea8d31466 100644 --- a/wiki/translations/it/Timber_Workbench.md +++ b/wiki/translations/it/Timber_Workbench.md @@ -1,5 +1,5 @@ # Timber Workbench/it - **Questo ambiente di lavoro non è più sviluppato o mantenuto.** +**Questo ambiente di lavoro non è più sviluppato o mantenuto.** ## Introduzione @@ -73,3 +73,6 @@ See [How to install macros](How_to_install_macros.md) [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Timber Workbench/it diff --git a/wiki/translations/it/Tolerancing.md b/wiki/translations/it/Tolerancing.md index b79706b007..2fc73b7fc4 100644 --- a/wiki/translations/it/Tolerancing.md +++ b/wiki/translations/it/Tolerancing.md @@ -1,7 +1,4 @@ # Tolerancing/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -77,3 +74,6 @@ There are two approaches to specifying Product and Manufacturing Information (PM - [Straight To The Point Engineering (Video tutorials)](https://www.youtube.com/c/StraightToThePointEngineering/videos?view=0&sort=da&flow=grid) [Category:Roadmap](Category:Roadmap.md) [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Tolerancing/it diff --git a/wiki/translations/it/Toothbrush_Head_Stand.md b/wiki/translations/it/Toothbrush_Head_Stand.md index 363b95ace1..8acbc2e898 100644 --- a/wiki/translations/it/Toothbrush_Head_Stand.md +++ b/wiki/translations/it/Toothbrush_Head_Stand.md @@ -1,5 +1,5 @@ # Toothbrush Head Stand/it - {{TutorialInfo/it|Topic=Modellazione|Level=Principiante|Author=[EmmanuelG](User:EmmanuelG.md)|Time=1 ora|FCVersion=0.16 o o superiore|Files=[https://www.thingiverse.com/thing:2403310 Thingiverse 2403310]}} +{{TutorialInfo/it|Topic=Modellazione|Level=Principiante|Author=[EmmanuelG](User:EmmanuelG.md)|Time=1 ora|FCVersion=0.16 o o superiore|Files=[https://www.thingiverse.com/thing:2403310 Thingiverse 2403310]}} ## A daily-life problem @@ -421,4 +421,7 @@ Perfect ! {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Toothbrush Head Stand/it diff --git a/wiki/translations/it/TopoShape_API.md b/wiki/translations/it/TopoShape_API.md index 54d2b38bd8..d7e4471140 100644 --- a/wiki/translations/it/TopoShape_API.md +++ b/wiki/translations/it/TopoShape_API.md @@ -1,5 +1,5 @@ # TopoShape API/it - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** The TopoShape is the mother object of the Part Module. All shape types (wire, face, solid, etc\...) of the Part module are TopoShapes, and share the following attributes and methods. Example: ```python @@ -229,3 +229,6 @@ Some attributes and methods apply only to certain TopoShapes. These items apply [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > TopoShape API/it diff --git a/wiki/translations/it/Topological_Naming_Project.md b/wiki/translations/it/Topological_Naming_Project.md index 02c05edb97..240803f715 100644 --- a/wiki/translations/it/Topological_Naming_Project.md +++ b/wiki/translations/it/Topological_Naming_Project.md @@ -1,6 +1,4 @@ # Topological Naming Project/it - - This page is dedicated to the description of the Google Summer of Code project idea regarding topological naming. For the topic in itself please see [Naming project](Naming_project.md). The linked wiki page can also serve as a starting point to get into the naming problem. ## Outline @@ -42,3 +40,6 @@ Hard ### Informazioni aggiuntive [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > Topological Naming Project/it diff --git a/wiki/translations/it/Topological_data_scripting.md b/wiki/translations/it/Topological_data_scripting.md index 30f6c146b2..567e203117 100644 --- a/wiki/translations/it/Topological_data_scripting.md +++ b/wiki/translations/it/Topological_data_scripting.md @@ -1,7 +1,4 @@ # Topological data scripting/it - - - {{TOCright}} ## Introduzione @@ -1473,3 +1470,6 @@ Per convertire un file **.stp** in un file **.igs** fare: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting/it diff --git a/wiki/translations/it/Topological_naming_problem.md b/wiki/translations/it/Topological_naming_problem.md index f44a6227a1..c2ff65c271 100644 --- a/wiki/translations/it/Topological_naming_problem.md +++ b/wiki/translations/it/Topological_naming_problem.md @@ -1,6 +1,4 @@ # Topological naming problem/it - - ## Introduzione @@ -133,3 +131,6 @@ Gli oggetti di riferimento, [punti](PartDesign_Point/it.md), [linee](PartDesign_ {{TechDraw Tools navi}} {{PartDesign Tools navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Topological naming problem/it diff --git a/wiki/translations/it/Tracker.md b/wiki/translations/it/Tracker.md index e9a2344339..10132ee9dc 100644 --- a/wiki/translations/it/Tracker.md +++ b/wiki/translations/it/Tracker.md @@ -1,7 +1,4 @@ # Tracker/it - - -
@@ -208,3 +205,6 @@ For the inquisitive here is the regex MantisBT uses for this operation: [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Tracker/it diff --git a/wiki/translations/it/Transient_FEM_analysis.md b/wiki/translations/it/Transient_FEM_analysis.md index 9a6f275e2d..880bcfbbe1 100644 --- a/wiki/translations/it/Transient_FEM_analysis.md +++ b/wiki/translations/it/Transient_FEM_analysis.md @@ -1,5 +1,5 @@ # Transient FEM analysis/it - } +} {{TutorialInfo/it @@ -95,4 +95,7 @@ setup() {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Transient FEM analysis/it diff --git a/wiki/translations/it/Translating_an_external_workbench.md b/wiki/translations/it/Translating_an_external_workbench.md index 20a4487f9e..9280a1a079 100644 --- a/wiki/translations/it/Translating_an_external_workbench.md +++ b/wiki/translations/it/Translating_an_external_workbench.md @@ -1,6 +1,4 @@ # Translating an external workbench/it - - In the following notes, `"context"` should be your addon\'s or workbench\'s name, for example, `"MySuperAddon"` or `"DraftPlus"`, or whatever. This context makes it so that all translation of your code will be gathered under the same name, to be more easily identified by translators. That is, they will know exactly to which addon or workbench a particular string belongs. **Note**: Here is an all-in-one script that automates the complete procedure mentioned below (you are still advised to read the procedure to know what the script should do, though): @@ -229,3 +227,6 @@ Yorik maintains a convenience script for the BIM workbench, that can gather, upl [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Translating an external workbench/it diff --git a/wiki/translations/it/Transportation_Workbench.md b/wiki/translations/it/Transportation_Workbench.md index 2c8d9c1c1e..da2524df87 100644 --- a/wiki/translations/it/Transportation_Workbench.md +++ b/wiki/translations/it/Transportation_Workbench.md @@ -1,6 +1,4 @@ # Transportation Workbench/it - - ## Descrizione Un sottoinsieme dell\'ambiente di [Ingegneria civile](Civil_Engineering_Workbench/it.md) @@ -19,3 +17,6 @@ Un sottoinsieme dell\'ambiente di [Ingegneria civile](Civil_Engineering_Workbenc [Category:Documentation](Category:Documentation.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Transportation Workbench/it diff --git a/wiki/translations/it/Tree_view.md b/wiki/translations/it/Tree_view.md index fbafc44ed7..f610300b55 100644 --- a/wiki/translations/it/Tree_view.md +++ b/wiki/translations/it/Tree_view.md @@ -1,5 +1,5 @@ # Tree view/it - {{TOCright}} +{{TOCright}} ## Introduzione @@ -201,4 +201,7 @@ This indicates that the object has an error that needs to be fixed. After recomp {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Tree view/it diff --git a/wiki/translations/it/Tutorial_FreeCAD_POV_ray.md b/wiki/translations/it/Tutorial_FreeCAD_POV_ray.md index 6abac2e54e..9821fb5c57 100644 --- a/wiki/translations/it/Tutorial_FreeCAD_POV_ray.md +++ b/wiki/translations/it/Tutorial_FreeCAD_POV_ray.md @@ -1,7 +1,4 @@ # Tutorial FreeCAD POV ray/it - - - **The [Raytracing workbench](Raytracing_Workbench.md) is being superseded by the new [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This must not be confused with the halted and outdated [Render project](Render_project.md). The Render Workbench can be installed through the [Addon Manager](AddonManager.md). The information here is provided because by default FreeCAD is still shipped (as of 0.19-24276) with the Raytracing Workbench, and because the new workbench should basically work in the same way** @@ -863,4 +860,7 @@ The user is advised to read the POV-Ray documentation and more tutorials or exam {{Tutorials navi -}} {{Raytracing Tools navi}} +}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > Tutorial FreeCAD POV ray/it diff --git a/wiki/translations/it/Tutorial_Render_with_Blender.md b/wiki/translations/it/Tutorial_Render_with_Blender.md index ebb3e3857d..45bbfa6534 100644 --- a/wiki/translations/it/Tutorial_Render_with_Blender.md +++ b/wiki/translations/it/Tutorial_Render_with_Blender.md @@ -1,7 +1,4 @@ # Tutorial Render with Blender/it - - - {{TutorialInfo/it |Topic=Rendering |Level=Intermedio @@ -337,4 +334,7 @@ On the other hand, Cycles is a true raytracing renderer which means it is more a Both renderers can be used to leverage the advantages of each. In many cases the scene can be quickly prepared and tested with EEVEE to obtain preliminary renderings; then the same scene can be used with minor changes with Cycles in order to produce a higher quality, final rendering. In particular, when a scene that was setup with EEVEE will be used with Cycles, the lights may need to be adjusted in value and position as both renderers treat light in different ways. -Obtaining good results is highly dependent on the rendering options, the materials, and the lighting. The `Principled BSDF` material shader is a generic solution that works well for many cases, however, to produce truly photorealistic results, the use of texture maps and normal maps, along with careful lighting of the scene is still very important. {{Tutorials navi}} {{Raytracing Tools navi}} +Obtaining good results is highly dependent on the rendering options, the materials, and the lighting. The `Principled BSDF` material shader is a generic solution that works well for many cases, however, to produce truly photorealistic results, the use of texture maps and normal maps, along with careful lighting of the scene is still very important. {{Tutorials navi}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > Tutorial Render with Blender/it diff --git a/wiki/translations/it/Tutorial_custom_placing_of_windows_and_doors.md b/wiki/translations/it/Tutorial_custom_placing_of_windows_and_doors.md index f7473cc7f6..a58509e43c 100644 --- a/wiki/translations/it/Tutorial_custom_placing_of_windows_and_doors.md +++ b/wiki/translations/it/Tutorial_custom_placing_of_windows_and_doors.md @@ -1,5 +1,5 @@ # Tutorial custom placing of windows and doors/it - {{TutorialInfo/it +{{TutorialInfo/it |Topic=Architettura |Level=Intermedio |Time=60 minuti @@ -328,4 +328,7 @@ abs(N) = 1 = sqrt(sin^2(angle) + cos^2(angle) + z^2) {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Tutorial custom placing of windows and doors/it diff --git a/wiki/translations/it/Tutorial_for_open_windows.md b/wiki/translations/it/Tutorial_for_open_windows.md index 56a19e13ff..de5aba0299 100644 --- a/wiki/translations/it/Tutorial_for_open_windows.md +++ b/wiki/translations/it/Tutorial_for_open_windows.md @@ -1,7 +1,4 @@ # Tutorial for open windows/it - - -
@@ -252,4 +249,7 @@ A closer interaction between the workbenches is planed for future versions of Fr {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Tutorial for open windows/it diff --git a/wiki/translations/it/Tutorials.md b/wiki/translations/it/Tutorials.md index 49525f6ef1..dd95ee2330 100644 --- a/wiki/translations/it/Tutorials.md +++ b/wiki/translations/it/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/it - - - - - - {{TOCright}} @@ -335,3 +329,6 @@ Qui sono elencati tutti i tutorial che non sono nel manuale **indipendentemente [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials/it]], uno elenco completo e ordinabile si trova nella ](Category:Tutorials/it]], uno elenco completo e ordinabile si trova nella .md) > Tutorials/it diff --git a/wiki/translations/it/UTF_Project.md b/wiki/translations/it/UTF_Project.md index d2e36ebc11..a497e51f5a 100644 --- a/wiki/translations/it/UTF_Project.md +++ b/wiki/translations/it/UTF_Project.md @@ -1,7 +1,4 @@ # UTF Project/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -44,3 +41,6 @@ Nonostante ora Coin3D sia passato a una piattaforma di sviluppo più aperta, è [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > UTF Project/it diff --git a/wiki/translations/it/Ubuntu_Snap.md b/wiki/translations/it/Ubuntu_Snap.md index 9289aab0bb..89a23ce112 100644 --- a/wiki/translations/it/Ubuntu_Snap.md +++ b/wiki/translations/it/Ubuntu_Snap.md @@ -1,6 +1,4 @@ # Ubuntu Snap/it - - ## Introduzione An [Ubuntu Snap](Ubuntu_Snap.md) package, or just [Snap](Ubuntu_Snap.md) is a distribution format similar to [AppImage](AppImage.md) in that it is intended to be a \"universal installable package\" to deploy software in Linux systems. Snaps were introduced by Ubuntu but they are intended to run in all Linux distributions as long as the Snap daemon, or `snapd`, is available in the target system. @@ -37,5 +35,5 @@ More information about current efforts to deal with Snaps. - [0.19 Snap Preview needs \"testers\"](https://forum.freecadweb.org/viewtopic.php?f=4&t=46044), older Snap by **vejmarie** - [Discussion: State of the snap (Snap Packaging)](https://forum.freecadweb.org/viewtopic.php?f=42&t=46853), newer version of the Snap by **ppd** - - +--- +[documentation index](../README.md) > Ubuntu Snap/it diff --git a/wiki/translations/it/Units.md b/wiki/translations/it/Units.md index c0b196219e..f1234618a3 100644 --- a/wiki/translations/it/Units.md +++ b/wiki/translations/it/Units.md @@ -1,7 +1,4 @@ # Units/it - - -
Alcune letture sulle unità di misura: @@ -316,4 +313,7 @@ Diventa così molto facile gestire un numero qualsiasi di unità con qualsiasi t {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Units/it diff --git a/wiki/translations/it/Units_project.md b/wiki/translations/it/Units_project.md index e70faf39f2..f2ca222908 100644 --- a/wiki/translations/it/Units_project.md +++ b/wiki/translations/it/Units_project.md @@ -1,7 +1,4 @@ # Units project/it - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -55,3 +52,6 @@ Creare eventualmente un editor delle proprietà per le PropertyUntit. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Units project/it diff --git a/wiki/translations/it/User_hub.md b/wiki/translations/it/User_hub.md index 8f56a1f1eb..7315f596c1 100644 --- a/wiki/translations/it/User_hub.md +++ b/wiki/translations/it/User_hub.md @@ -1,5 +1,4 @@ -# User hub/it - +# User hub/it ------------------------------------------------------------------------ @@ -122,3 +121,6 @@ Questa è la guida ufficiale di FreeCAD online. Si prega di notare che l\'intero [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/it diff --git a/wiki/translations/it/VRML_Preparation_for_Robot_Simulation.md b/wiki/translations/it/VRML_Preparation_for_Robot_Simulation.md index 6a0e5cabb2..5248d69689 100644 --- a/wiki/translations/it/VRML_Preparation_for_Robot_Simulation.md +++ b/wiki/translations/it/VRML_Preparation_for_Robot_Simulation.md @@ -1,7 +1,4 @@ # VRML Preparation for Robot Simulation/it - - -
@@ -463,3 +460,6 @@ Ecco un patch per ottenere il file VRML adatto per la simulazione del robot: [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > VRML Preparation for Robot Simulation/it diff --git a/wiki/translations/it/Vector_API.md b/wiki/translations/it/Vector_API.md index 1212e9d0ac..8dcf4850ee 100644 --- a/wiki/translations/it/Vector_API.md +++ b/wiki/translations/it/Vector_API.md @@ -1,5 +1,5 @@ # Vector API/it - **(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** +**(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** In FreeCAD i vettori sono utilizzati ovunque. @@ -68,3 +68,6 @@ print v3.Length [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Vector API/it diff --git a/wiki/translations/it/Video_tutorials.md b/wiki/translations/it/Video_tutorials.md index 9ec5f4511d..a45cd6beca 100644 --- a/wiki/translations/it/Video_tutorials.md +++ b/wiki/translations/it/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials/it - - -
@@ -181,3 +178,6 @@ For more see [Video tutorials obsolete](Video_tutorials_obsolete.md). }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Video tutorials/it diff --git a/wiki/translations/it/Video_tutorials_for_architectural_design.md b/wiki/translations/it/Video_tutorials_for_architectural_design.md index 99d17db9fe..5ffb72d046 100644 --- a/wiki/translations/it/Video_tutorials_for_architectural_design.md +++ b/wiki/translations/it/Video_tutorials_for_architectural_design.md @@ -1,5 +1,5 @@ # Video tutorials for architectural design/it - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** ## Introduction @@ -47,4 +47,7 @@ Videos that go through modeling of rooms, houses, office buildings, and similar {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Video tutorials for architectural design/it diff --git a/wiki/translations/it/Video_tutorials_for_product_design.md b/wiki/translations/it/Video_tutorials_for_product_design.md index e63ffc7830..ba9f6d0d2b 100644 --- a/wiki/translations/it/Video_tutorials_for_product_design.md +++ b/wiki/translations/it/Video_tutorials_for_product_design.md @@ -1,5 +1,5 @@ # Video tutorials for product design/it - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** ## Introduction @@ -77,4 +77,7 @@ Although this list focuses on German content, many of these channels also have v {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Video tutorials for product design/it diff --git a/wiki/translations/it/Video_tutorials_obsolete.md b/wiki/translations/it/Video_tutorials_obsolete.md index 1104cde143..732ce3990e 100644 --- a/wiki/translations/it/Video_tutorials_obsolete.md +++ b/wiki/translations/it/Video_tutorials_obsolete.md @@ -1,5 +1,5 @@ # Video tutorials obsolete/it - **In FreeCAD 0.17 the [PartDesign Workbench](PartDesign_Workbench.md) received important updates that change the way solids are created with respect to previous versions. New users should watch videos for versions 0.17 and above to understand the concept of working with a [PartDesign Body](PartDesign_Body.md) and datum objects.** **These videos are considered obsolete because they use v0.16 or earlier versions of the program.** +**In FreeCAD 0.17 the [PartDesign Workbench](PartDesign_Workbench.md) received important updates that change the way solids are created with respect to previous versions. New users should watch videos for versions 0.17 and above to understand the concept of working with a [PartDesign Body](PartDesign_Body.md) and datum objects.** **These videos are considered obsolete because they use v0.16 or earlier versions of the program.** ## Introduction @@ -56,4 +56,7 @@ For up-to-date videos on different topics, see the [video tutorials](video_tutor {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Video tutorials obsolete/it diff --git a/wiki/translations/it/ViewObject_API.md b/wiki/translations/it/ViewObject_API.md index afd13581c6..7377440862 100644 --- a/wiki/translations/it/ViewObject_API.md +++ b/wiki/translations/it/ViewObject_API.md @@ -1,5 +1,5 @@ # ViewObject API/it - **(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** +**(Ottobre 2019) Non modificare queste pagine. Le informazioni sono incomplete e obsolete. Per l'API più recente, consultare la [https://www.freecadweb.org/api documentazione API autogenerata] o generare la documentazione autonomamente. Vedere [Documentazione del codice sorgente](Source_documentation/it.md).** Quando la GUI è attiva, a ogni oggetto del documento FreeCAD è associato un ViewObject, che risiede nella controparte FreeCADGui del documento. Un oggetto della vista può essere recuperato in due modi. Esempio: ```python @@ -84,3 +84,6 @@ print myViewObj.IV [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > ViewObject API/it diff --git a/wiki/translations/it/View_Measure_Clear_All.md b/wiki/translations/it/View_Measure_Clear_All.md index 04a8e3912b..775821aef5 100644 --- a/wiki/translations/it/View_Measure_Clear_All.md +++ b/wiki/translations/it/View_Measure_Clear_All.md @@ -7,6 +7,8 @@ SeeAlso:[Attiva/disattiva le misure](View_Measure_Toggle_All/it.md), [Part: Attiva o Disattiva tutte le misure](Part_Measure_Toggle_All/it.md), [Part: Cancella tutte le misure](Part_Measure_Clear_All/it.md) --- +# View Measure Clear All/it + ## Descrizione The **View Measure Clear All** command clears the active [3D view](3D_view.md)\'s [Part](Part_Workbench.md) measurements. @@ -33,4 +35,7 @@ The **View Measure Clear All** command clears the active [3D view](3D_view.md)\' {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > View Measure Clear All/it diff --git a/wiki/translations/it/View_Measure_Toggle_All.md b/wiki/translations/it/View_Measure_Toggle_All.md index aa883354ce..77d675f4e2 100644 --- a/wiki/translations/it/View_Measure_Toggle_All.md +++ b/wiki/translations/it/View_Measure_Toggle_All.md @@ -7,6 +7,8 @@ SeeAlso:[Cancella le misure](View_Measure_Clear_All/it.md), [Part: Attiva o Disattiva tutte le misure](Part_Measure_Toggle_All/it.md), [Part: Cancella tutte le misure](Part_Measure_Clear_All/it.md) --- +# View Measure Toggle All/it + ## Descrizione The **View Measure Toggle All** command toggles the display of the active [3D view](3D_view.md)\'s [Part](Part_Workbench.md) measurements. @@ -33,4 +35,7 @@ The **View Measure Toggle All** command toggles the display of the active [3D vi {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > View Measure Toggle All/it diff --git a/wiki/translations/it/Viewprovider.md b/wiki/translations/it/Viewprovider.md index b6d73a2ae6..74f186f7ea 100644 --- a/wiki/translations/it/Viewprovider.md +++ b/wiki/translations/it/Viewprovider.md @@ -1,6 +1,4 @@ # Viewprovider/it - - ## Introduzione Le **Viewprovider** sono delle classi che definiscono il modo in cui gli oggetti appariranno nella [vista ad albero](tree_view/it.md) e nella [vista 3D](3D_view/it.md) e come interagiranno con determinate azioni grafiche come la [selezione](selection/it.md). @@ -140,3 +138,6 @@ See various examples in [Custom icon in tree view](Custom_icon_in_tree_view.md). }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Viewprovider/it diff --git a/wiki/translations/it/WebTools_BimServer.md b/wiki/translations/it/WebTools_BimServer.md index 7e13e9be77..a8063ca0e8 100644 --- a/wiki/translations/it/WebTools_BimServer.md +++ b/wiki/translations/it/WebTools_BimServer.md @@ -8,6 +8,8 @@ ‏‎ SeeAlso: --- +# WebTools BimServer/it +
@@ -89,3 +91,5 @@ Per poter utilizzare questo comando, devono essere soddisfatte le seguenti condi
+--- +[documentation index](../README.md) > WebTools BimServer/it diff --git a/wiki/translations/it/WebTools_Git.md b/wiki/translations/it/WebTools_Git.md index 7efa67ebdd..9e1c266861 100644 --- a/wiki/translations/it/WebTools_Git.md +++ b/wiki/translations/it/WebTools_Git.md @@ -8,6 +8,8 @@ ‏‎ SeeAlso: --- +# WebTools Git/it +
@@ -166,3 +168,5 @@ Per abilitare l\'utilizzo di fcinfo (solo per Linux e Mac - Da fare: aggiungere
+--- +[documentation index](../README.md) > WebTools Git/it diff --git a/wiki/translations/it/WebTools_Sketchfab.md b/wiki/translations/it/WebTools_Sketchfab.md index fe13e00496..3c501eec62 100644 --- a/wiki/translations/it/WebTools_Sketchfab.md +++ b/wiki/translations/it/WebTools_Sketchfab.md @@ -1,3 +1,4 @@ +# WebTools Sketchfab/it --- - GuiCommand:/it Name:WebTools Sketchfab Name/it:WebTools Sketchfab MenuLocation:WebTools → Sketchfab |Workbenches:[[WebTools Workbench/it WebTools]]|Shortcut: SeeAlso:--- @@ -38,3 +39,6 @@ Questo strumento consente di esportare e caricare gli oggetti in un proprio acco - Quando il modello è caricato, Sketchfab offre un\'interfaccia piuttosto avanzata in cui è possibile configurare ulteriormente i materiali, l\'illuminazione e l\'ambiente. - Quando si preme \"Upload button\", dopo aver completato il caricamento, se tutto è andato bene, il pulsante si trasforma in \"View your model online\", che, se cliccato, porta direttamente alla pagina del modello su Sketchfab. - Alcuni formati, come OBJ, sono interpretati in modo diverso da Sketchfab e da FreeCAD. FreeCAD considera l\'asse Z rivolto verso l\'alto, mentre Sketchfab considera che punti verso la persona che sta davanti allo schermo. Per rimediare a questo, dopo aver terminato l\'upload, l\'esportatore utilizza la API Sketchfab per ruotare il modello nella sua posizione corretta. Se questa operazione non riesce, si viene avvertiti, e comunque il vostro modello rimane caricato correttamente. È possibile ruotarlo manualmente nell\'interfaccia di Sketchfab, premendo la freccia destra oltre l\'asse \"X\" nella scheda di orientamento del modello. + +--- +[documentation index](../README.md) > WebTools Sketchfab/it diff --git a/wiki/translations/it/WebTools_Workbench.md b/wiki/translations/it/WebTools_Workbench.md index 9396faaca9..adf81ed875 100644 --- a/wiki/translations/it/WebTools_Workbench.md +++ b/wiki/translations/it/WebTools_Workbench.md @@ -1,5 +1,4 @@ -# WebTools Workbench/it - WebTools workbench icon +# WebTools workbench icon WebTools Workbench/it
@@ -39,3 +38,6 @@ Questo ambiente può essere facilmente installato e aggiornato dal [Addon Manage [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > WebTools Workbench/it diff --git a/wiki/translations/it/Web_Workbench.md b/wiki/translations/it/Web_Workbench.md index f3a668271e..453b96b70e 100644 --- a/wiki/translations/it/Web_Workbench.md +++ b/wiki/translations/it/Web_Workbench.md @@ -1,7 +1,4 @@ # Web Workbench/it - - -
@@ -37,3 +34,6 @@ Da questo browser è possibile navigare sul web, e accedere a siti web (i cookie [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/it diff --git a/wiki/translations/it/Whiffle_Ball_tutorial.md b/wiki/translations/it/Whiffle_Ball_tutorial.md index 9e77888cb0..9106017127 100644 --- a/wiki/translations/it/Whiffle_Ball_tutorial.md +++ b/wiki/translations/it/Whiffle_Ball_tutorial.md @@ -1,7 +1,4 @@ # Whiffle Ball tutorial/it - - -
@@ -414,4 +411,7 @@ Se tutto è andato bene, il modello dovrebbe assomigliare a questo: {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Whiffle Ball tutorial/it diff --git a/wiki/translations/it/WikiRobots.md b/wiki/translations/it/WikiRobots.md index 0db41ec9d7..e4aeb04b02 100644 --- a/wiki/translations/it/WikiRobots.md +++ b/wiki/translations/it/WikiRobots.md @@ -1,5 +1,5 @@ # WikiRobots/it - **Robots are intrinsically dangerous as they can automatically do a lot of damage. Use with extreme care!** +**Robots are intrinsically dangerous as they can automatically do a lot of damage. Use with extreme care!** ## Overview @@ -154,3 +154,6 @@ Replace a string in all the pages listed in the Arch category (a/k/a ) {{SystemInput|python3 pwb.py replace.py -cat:Arch}} [Category:Arch](Category:Arch.md) [Category:Administration](Category:Administration.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > WikiRobots/it diff --git a/wiki/translations/it/Wikihouse_porting_tutorial.md b/wiki/translations/it/Wikihouse_porting_tutorial.md index c387475236..ec39dcf5ff 100644 --- a/wiki/translations/it/Wikihouse_porting_tutorial.md +++ b/wiki/translations/it/Wikihouse_porting_tutorial.md @@ -1,7 +1,4 @@ # Wikihouse porting tutorial/it - - - {{TutorialInfo/it |Topic= Wikihouse porting tutorial |Level= Intermediate/Advanced @@ -165,3 +162,6 @@ L\'ultimo passo è semplicemente quello di selezionare tutti i fogli, poi esport ![](images/Arch_Wikihouse_04.jpg ) Questi file sono pronti per essere inviati ai laboratori che faranno il taglio vero e proprio. Sarebbe anche possibile generare il codice G da inviare alla macchina CNC direttamente da FreeCAD, ma questo è materia per un altro tutorial. + +--- +[documentation index](../README.md) > Wikihouse porting tutorial/it diff --git a/wiki/translations/it/Wished_tools.md b/wiki/translations/it/Wished_tools.md index cbb7bd756c..f1dc2eb4d5 100644 --- a/wiki/translations/it/Wished_tools.md +++ b/wiki/translations/it/Wished_tools.md @@ -1,5 +1,5 @@ # Wished tools/it - Inizio questa pagina come un tentativo di raccogliere i desideri degli utenti finali su strumenti specifici che vorrebbero trovare in FreeCAD. Diversi utenti cad hanno già chattato con me su strumenti cad, su ciò che usano di più, su ciò che vorrebbero vedere in FreeCAD, su ciò di cui non potrebbero fare a meno, ecc\... Anche se FreeCAD non è destinato a diventare un sostituto specifico di qualsiasi altro famoso software CAD (specialmente quello che inizia con Auto e finisce con il CAD), penso che questo possa diventare un buon riferimento per conoscere le aspettative degli utenti finali, e forse per dare priorità alle cose rispetto agli altri nello sviluppo. +Inizio questa pagina come un tentativo di raccogliere i desideri degli utenti finali su strumenti specifici che vorrebbero trovare in FreeCAD. Diversi utenti cad hanno già chattato con me su strumenti cad, su ciò che usano di più, su ciò che vorrebbero vedere in FreeCAD, su ciò di cui non potrebbero fare a meno, ecc\... Anche se FreeCAD non è destinato a diventare un sostituto specifico di qualsiasi altro famoso software CAD (specialmente quello che inizia con Auto e finisce con il CAD), penso che questo possa diventare un buon riferimento per conoscere le aspettative degli utenti finali, e forse per dare priorità alle cose rispetto agli altri nello sviluppo. Se sei un utente CAD e vuoi aggiungere qualcosa qui, sentiti libero di modificare, saremo lieti di avere la tua opinione qui. @@ -79,3 +79,6 @@ Se sei un utente CAD e vuoi aggiungere qualcosa qui, sentiti libero di modificar - Assemblies [Category:Hubs](Category:Hubs.md) [Category:Roadmap](Category:Roadmap.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Wished tools/it diff --git a/wiki/translations/it/Workbench_Concept.md b/wiki/translations/it/Workbench_Concept.md index aec702ed76..3ca18958ad 100644 --- a/wiki/translations/it/Workbench_Concept.md +++ b/wiki/translations/it/Workbench_Concept.md @@ -1,2 +1,5 @@ # Workbench Concept/it 1. REDIRECT [Workbenches/it](Workbenches/it.md) + +--- +[documentation index](../README.md) > Workbench Concept/it diff --git a/wiki/translations/it/Workbench_Selector.md b/wiki/translations/it/Workbench_Selector.md index 535b7c11d2..61ced47f6c 100644 --- a/wiki/translations/it/Workbench_Selector.md +++ b/wiki/translations/it/Workbench_Selector.md @@ -4,3 +4,6 @@ [Category:Redirects/it](Category:Redirects/it.md) + +--- +[documentation index](../README.md) > Workbench Selector/it diff --git a/wiki/translations/it/Workbench_creation.md b/wiki/translations/it/Workbench_creation.md index 264596b41c..6358743240 100644 --- a/wiki/translations/it/Workbench_creation.md +++ b/wiki/translations/it/Workbench_creation.md @@ -1,10 +1,4 @@ # Workbench creation/it - - - - - - {{TOCright}} ## Introduction @@ -418,3 +412,6 @@ os.remove(qrc_filename) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > Workbench creation/it diff --git a/wiki/translations/it/Workbenches.md b/wiki/translations/it/Workbenches.md index 9d41ccf389..abe253d480 100644 --- a/wiki/translations/it/Workbenches.md +++ b/wiki/translations/it/Workbenches.md @@ -1,9 +1,4 @@ # Workbenches/it - - - - - FreeCAD, come molte applicazioni moderne di progettazione come [Revit](wikipedia:Revit.md) o [CATIA](wikipedia:CATIA.md), è basato sul concetto di [Workbench](wikipedia:Workbench.md). Un banco da lavoro può essere considerato come un insieme di strumenti appositamente raggruppati per un certo compito. In un tradizionale laboratorio di mobili, si avrebbe un tavolo da lavoro per la persona che lavora con il legno, un altro per quello che lavora con i pezzi di metallo, e forse un terzo per quello che monta tutti i pezzi insieme. In FreeCAD, viene applicato lo stesso concetto. Gli strumenti sono raggruppati per ambienti in base alle funzioni correlate. @@ -104,3 +99,6 @@ Sono in fase di sviluppo ulteriori nuovi ambienti, mantenetevi aggiornati. [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/it diff --git a/wiki/translations/it/Workfeature_Workbench.md b/wiki/translations/it/Workfeature_Workbench.md index 18a54d4ad6..3e435bc316 100644 --- a/wiki/translations/it/Workfeature_Workbench.md +++ b/wiki/translations/it/Workfeature_Workbench.md @@ -1,7 +1,4 @@ # Workfeature Workbench/it - - -
@@ -85,3 +82,6 @@ This workbench can be installed from the [Addon Manager](Std_AddonMgr.md). - [External workbenches](External_workbenches.md) [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Workfeature Workbench/it diff --git a/wiki/translations/ja/About_FreeCAD.md b/wiki/translations/ja/About_FreeCAD.md index 3ea9a10abd..b73d3fe6a2 100644 --- a/wiki/translations/ja/About_FreeCAD.md +++ b/wiki/translations/ja/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/ja - - - +# About FreeCAD/ja
@@ -76,3 +73,6 @@ FreeCAD is maintained and developed by a community of enthusiastic developers an [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/ja diff --git a/wiki/translations/ja/Arch_Add.md b/wiki/translations/ja/Arch_Add.md index 947c45428a..4bd3b5eedf 100644 --- a/wiki/translations/ja/Arch_Add.md +++ b/wiki/translations/ja/Arch_Add.md @@ -1,3 +1,4 @@ +# Arch Add/ja --- - GuiCommand:/jp Name:Arch Add Workbenches:[MenuLocation:Arch -> Add SeeAlso:[[Arch Remove/jp|Arch Remove](Arch_Module/jp___建築]].md)--- @@ -105,11 +106,5 @@ Arch.addComponents(Wall2, Wall) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Add/ja diff --git a/wiki/translations/ja/Arch_Building.md b/wiki/translations/ja/Arch_Building.md index 00c6cfd308..265140720c 100644 --- a/wiki/translations/ja/Arch_Building.md +++ b/wiki/translations/ja/Arch_Building.md @@ -1,3 +1,4 @@ +# Arch Building/ja --- - GuiCommand:/jp Name:Std_Edit MenuLocation:Edit -> Toggle Editmode Workbenches:All SeeAlso:...--- @@ -86,8 +87,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Building/ja diff --git a/wiki/translations/ja/Arch_Floor.md b/wiki/translations/ja/Arch_Floor.md index 255ecea311..078f17616e 100644 --- a/wiki/translations/ja/Arch_Floor.md +++ b/wiki/translations/ja/Arch_Floor.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Building]], [[Arch BuildingPart]], [[Arch Site]] --- +# Arch Floor/ja +
@@ -95,8 +97,5 @@ FreeCAD.ActiveDocument.recompute()
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor/ja diff --git a/wiki/translations/ja/Arch_Module.md b/wiki/translations/ja/Arch_Module.md index 1b8ed5e5a1..d370ba1661 100644 --- a/wiki/translations/ja/Arch_Module.md +++ b/wiki/translations/ja/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/ja 1. REDIRECT [Arch\_Workbench/ja](Arch_Workbench/ja.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/ja diff --git a/wiki/translations/ja/Arch_Pipe.md b/wiki/translations/ja/Arch_Pipe.md index 2b2f48c9b5..6a110e42e3 100644 --- a/wiki/translations/ja/Arch_Pipe.md +++ b/wiki/translations/ja/Arch_Pipe.md @@ -9,6 +9,8 @@ Version:0.17 --- +# Arch Pipe/ja +
@@ -145,5 +147,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Pipe/ja diff --git a/wiki/translations/ja/Arch_PipeConnector.md b/wiki/translations/ja/Arch_PipeConnector.md index 883760fd52..d13ce14b81 100644 --- a/wiki/translations/ja/Arch_PipeConnector.md +++ b/wiki/translations/ja/Arch_PipeConnector.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch PipeConnector/ja +
@@ -114,8 +116,5 @@ FreeCAD.ActiveDocument.recompute()
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch PipeConnector/ja diff --git a/wiki/translations/ja/Arch_Rebar.md b/wiki/translations/ja/Arch_Rebar.md index eda0b7fd2d..90a0c45e66 100644 --- a/wiki/translations/ja/Arch_Rebar.md +++ b/wiki/translations/ja/Arch_Rebar.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md), [Reinforcement Addon](Reinforcement_Addon.md) --- +# Arch Rebar/ja +
@@ -158,3 +160,6 @@ FreeCAD.ActiveDocument.recompute() [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar/ja diff --git a/wiki/translations/ja/Arch_Remove.md b/wiki/translations/ja/Arch_Remove.md index 04fa9c9b33..d001722a4b 100644 --- a/wiki/translations/ja/Arch_Remove.md +++ b/wiki/translations/ja/Arch_Remove.md @@ -1,3 +1,4 @@ +# Arch Remove/ja --- - GuiCommand:/jp Name:Arch Remove @@ -102,8 +103,5 @@ FreeCAD.ActiveDocument.recompute()
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove/ja diff --git a/wiki/translations/ja/Arch_SectionPlane.md b/wiki/translations/ja/Arch_SectionPlane.md index 729ce407df..8cf8066b64 100644 --- a/wiki/translations/ja/Arch_SectionPlane.md +++ b/wiki/translations/ja/Arch_SectionPlane.md @@ -1,3 +1,4 @@ +# Arch SectionPlane/ja --- - GuiCommand:/jp Name:Arch SectionPlane Name/jp:Arch SectionPlane Workbenches:[[Arch Module/jp 建築]]|MenuLocation:Arch -> Section Plane Shortcut:S P--- @@ -157,8 +158,5 @@ FreeCAD.ActiveDocument.recompute()
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane/ja diff --git a/wiki/translations/ja/Arch_Structure.md b/wiki/translations/ja/Arch_Structure.md index dfa8937234..89cd7b610e 100644 --- a/wiki/translations/ja/Arch_Structure.md +++ b/wiki/translations/ja/Arch_Structure.md @@ -1,3 +1,4 @@ +# Arch Structure/ja --- - GuiCommand:/jp Name:Arch Structure Workbenches:[MenuLocation:Arch -> Structure Shortcut:S T SeeAlso:[[Arch Wall/jp](Arch_Module/jp___建築]].md)--- @@ -134,8 +135,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/ja diff --git a/wiki/translations/ja/Arch_Workbench.md b/wiki/translations/ja/Arch_Workbench.md index 85168e0a85..48697d2441 100644 --- a/wiki/translations/ja/Arch_Workbench.md +++ b/wiki/translations/ja/Arch_Workbench.md @@ -1,7 +1,4 @@ # Arch Workbench/ja - - - {{docnav/ja|[Workbenches/ja](Workbenches/ja.md)|[Draft Module/ja](Draft_Workbench/ja.md)|IconL=|IconR=Workbench_Draft.svg}} Arch workbench icon @@ -121,3 +118,6 @@ The Arch module can be used in [Python](Python.md) scripts and [macros](macros.m [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/ja diff --git a/wiki/translations/ja/Base_API.md b/wiki/translations/ja/Base_API.md index 4b355aecfb..f7fe327fc2 100644 --- a/wiki/translations/ja/Base_API.md +++ b/wiki/translations/ja/Base_API.md @@ -1,5 +1,5 @@ # Base API/ja - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** BaseモジュールはFreeCADモジュール内部に含まれ、FreeCADでよく使われる様々なオブジェクトのためのコンストラクタが含まれています。 @@ -19,3 +19,6 @@ BaseモジュールはFreeCADモジュール内部に含まれ、FreeCADでよ [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Base API/ja diff --git a/wiki/translations/ja/Builtin_modules.md b/wiki/translations/ja/Builtin_modules.md index 4c58194838..3ac912bac1 100644 --- a/wiki/translations/ja/Builtin_modules.md +++ b/wiki/translations/ja/Builtin_modules.md @@ -1,5 +1,5 @@ # Builtin modules/ja - **(October 2019) Do not edit these pages. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself by following [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit these pages. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself by following [Source documentation](Source_documentation.md).** このページには組み込みのFreeCADモジュール、利用可能な関数、プロパティに関するより掘り下げた情報が記載されています。このページにはそれらのモジュールの内容全てがリストアップされている訳ではありませんし、FreeCADは急速に進化しているのでここにある情報は少し古いかもしれません。しかし何ができるのか概観するには十分なはずです。モジュールの内容の全リストを見るにはインタプリタでdir(module)関数を使用してください。 @@ -29,3 +29,6 @@ }} [Category:API](Category:API.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Builtin modules/ja diff --git a/wiki/translations/ja/Category:API.md b/wiki/translations/ja/Category:API.md index fd3f74994c..46343d7409 100644 --- a/wiki/translations/ja/Category:API.md +++ b/wiki/translations/ja/Category:API.md @@ -1,5 +1,4 @@ # Category:API/ja - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** This category gathers articles that list objects and methods available for [Python](Python.md) programming. @@ -9,3 +8,6 @@ This category gathers articles that list objects and methods available for [Pyth [Base API/ja](Base_API/ja.md) , [Builtin modules/ja](Builtin_modules/ja.md) , [Console API/ja](Console_API/ja.md) , [Draft API/ja](Draft_API/ja.md) , [FreeCAD API/ja](FreeCAD_API/ja.md) , [Mesh API/ja](Mesh_API/ja.md) [Category:Categories/ja](Category:Categories/ja.md) + +--- +[documentation index](../README.md) > Category:API/ja diff --git a/wiki/translations/ja/Category:Addons.md b/wiki/translations/ja/Category:Addons.md index ba10bb05fd..504c5f7545 100644 --- a/wiki/translations/ja/Category:Addons.md +++ b/wiki/translations/ja/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/ja - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [Plot Save/ja](Plot_Save/ja.md) , [Ship Workbench/ja](Ship_Workbench/ja.md) , , [Category:Categories](Category:Categories.md) [Category:External Workbenches/ja](Category:External_Workbenches/ja.md) [Category:Macros/ja](Category:Macros/ja.md) + +--- +[documentation index](../README.md) > Category:Addons/ja diff --git a/wiki/translations/ja/Category:Administration.md b/wiki/translations/ja/Category:Administration.md index cc099eaa8f..b509ada3e9 100644 --- a/wiki/translations/ja/Category:Administration.md +++ b/wiki/translations/ja/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/ja](Template:Arch_Tools_navi/ja.md) , [Template:Drawing Tools navi/ja](Template:Drawing_Tools_navi/ja.md) , [Template:FEM Tools navi/ja](Template:FEM_Tools_navi/ja.md) , [Template:Mesh Tools navi/ja](Template:Mesh_Tools_navi/ja.md) , [Template:OpenSCAD Tools navi/ja](Template:OpenSCAD_Tools_navi/ja.md) , [Template:Part Tools navi/ja](Template:Part_Tools_navi/ja.md) , [Template:PartDesign Tools navi/ja](Template:PartDesign_Tools_navi/ja.md) , [Template:Path Tools navi/ja](Template:Path_Tools_navi/ja.md) , [Template:Plot Tools navi/ja](Template:Plot_Tools_navi/ja.md) , [Template:Raytracing Tools navi/ja](Template:Raytracing_Tools_navi/ja.md) , [Template:Robot Tools navi/ja](Template:Robot_Tools_navi/ja.md) , [Template:Ship Tools navi/ja](Template:Ship_Tools_navi/ja.md) , [Template:Sketcher Tools navi/ja](Template:Sketcher_Tools_navi/ja.md) , [Tracker/ja](Tracker/ja.md) [Category:Categories/ja](Category:Categories/ja.md) + +--- +[documentation index](../README.md) > Category:Administration/ja diff --git a/wiki/translations/ja/Category:Arch.md b/wiki/translations/ja/Category:Arch.md index 25bdc1bebb..af938eaaa3 100644 --- a/wiki/translations/ja/Category:Arch.md +++ b/wiki/translations/ja/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Arch Add/ja](Arch_Add/ja.md) , [Arch Building/ja](Arch_Building/ja.md) , [Arch Floor/ja](Arch_Floor/ja.md) , [Arch Pipe/ja](Arch_Pipe/ja.md) , [Arch PipeConnector/ja](Arch_PipeConnector/ja.md) , [Arch Rebar/ja](Arch_Rebar/ja.md) , [Arch Remove/ja](Arch_Remove/ja.md) , [Arch SectionPlane/ja](Arch_SectionPlane/ja.md) , [Arch Structure/ja](Arch_Structure/ja.md) , [Template:Arch Tools navi/ja](Template:Arch_Tools_navi/ja.md) , [Arch Workbench/ja](Arch_Workbench/ja.md) [Category:User Documentation/ja](Category:User_Documentation/ja.md) [Category:BIM/ja](Category:BIM/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:Arch/ja diff --git a/wiki/translations/ja/Category:BIM.md b/wiki/translations/ja/Category:BIM.md index a97f587efe..3018e1cd46 100644 --- a/wiki/translations/ja/Category:BIM.md +++ b/wiki/translations/ja/Category:BIM.md @@ -4,3 +4,6 @@ This category is for pages related to building information management (BIM). ### Contents: [Category:User Documentation/ja](Category:User_Documentation/ja.md) [Category:Arch/ja](Category:Arch/ja.md) + +--- +[documentation index](../README.md) > Category:BIM/ja diff --git a/wiki/translations/ja/Category:Base.md b/wiki/translations/ja/Category:Base.md index 1e0a728363..fe634b9e32 100644 --- a/wiki/translations/ja/Category:Base.md +++ b/wiki/translations/ja/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/ja](Category:User_Documentation/ja.md) + +--- +[documentation index](../README.md) > Category:Base/ja diff --git a/wiki/translations/ja/Category:Categories.md b/wiki/translations/ja/Category:Categories.md index 6eab5e174f..2cd53dedb8 100644 --- a/wiki/translations/ja/Category:Categories.md +++ b/wiki/translations/ja/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , , , , [Category:Categories/ja](Category:Categories/ja.md) [Category:Addons/ja](Category:Addons/ja.md) [Category:Administration/ja](Category:Administration/ja.md) [Category:API/ja](Category:API/ja.md) [Category:Categories/ja](Category:Categories/ja.md) [Category:Developer/ja](Category:Developer/ja.md) [Category:Documentation/ja](Category:Documentation/ja.md) [Category:Hubs/ja](Category:Hubs/ja.md) [Category:Macros/ja](Category:Macros/ja.md) [Category:Python Code/ja](Category:Python_Code/ja.md) [Category:Template/ja](Category:Template/ja.md) [Category:Tutorials/ja](Category:Tutorials/ja.md) + +--- +[documentation index](../README.md) > Category:Categories/ja diff --git a/wiki/translations/ja/Category:Developer.md b/wiki/translations/ja/Category:Developer.md index cd7c403777..0f503f4f70 100644 --- a/wiki/translations/ja/Category:Developer.md +++ b/wiki/translations/ja/Category:Developer.md @@ -4,3 +4,6 @@ This category contains articles that are relevant for developers. ### Contents: [Category:Categories/ja](Category:Categories/ja.md) + +--- +[documentation index](../README.md) > Category:Developer/ja diff --git a/wiki/translations/ja/Category:Developer_Documentation.md b/wiki/translations/ja/Category:Developer_Documentation.md index 416148771c..f250872ed8 100644 --- a/wiki/translations/ja/Category:Developer_Documentation.md +++ b/wiki/translations/ja/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Code snippets/ja](Code_snippets/ja.md) , [Embedding FreeCAD/ja](Embedding_FreeCAD/ja.md) , [Help FreeCAD/ja](Help_FreeCAD/ja.md) , [Installing on Linux/ja](Installing_on_Linux/ja.md) , [Introduction to Python/ja](Introduction_to_Python/ja.md) , [Macros/ja](Macros/ja.md) , [Mesh to Part/ja](Mesh_to_Part/ja.md) , [Pivy/ja](Pivy/ja.md) , [Property/ja](Property/ja.md) , [PySide/ja](PySide/ja.md) , [Python scripting tutorial/ja](Python_scripting_tutorial/ja.md) , [Source documentation/ja](Source_documentation/ja.md) , [Third Party Libraries/ja](Third_Party_Libraries/ja.md) , [Third Party Tools/ja](Third_Party_Tools/ja.md) , [Tracker/ja](Tracker/ja.md) [Category:Documentation/ja](Category:Documentation/ja.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/ja diff --git a/wiki/translations/ja/Category:Documentation.md b/wiki/translations/ja/Category:Documentation.md index c69bfc9dd7..38717a7d9c 100644 --- a/wiki/translations/ja/Category:Documentation.md +++ b/wiki/translations/ja/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [Help FreeCAD/ja](Help_FreeCAD/ja.md) , [Main Page/ja](Main_Page/ja.md) , [Online Help Toc/ja](Online_Help_Toc/ja.md) , , , [Category:Categories/ja](Category:Categories/ja.md) [Category:Developer Documentation/ja](Category:Developer_Documentation/ja.md) [Category:Poweruser Documentation/ja](Category:Poweruser_Documentation/ja.md) [Category:User Documentation/ja](Category:User_Documentation/ja.md) + +--- +[documentation index](../README.md) > Category:Documentation/ja diff --git a/wiki/translations/ja/Category:Draft.md b/wiki/translations/ja/Category:Draft.md index 17d9c44fed..7deaf813fb 100644 --- a/wiki/translations/ja/Category:Draft.md +++ b/wiki/translations/ja/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/ja\" and \"Workben [Draft API/ja](Draft_API/ja.md) , [Draft Workbench/ja](Draft_Workbench/ja.md) [Category:User Documentation/ja](Category:User_Documentation/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:Draft/ja diff --git a/wiki/translations/ja/Category:Drawing.md b/wiki/translations/ja/Category:Drawing.md index 59ddd955a0..63a2bb56e3 100644 --- a/wiki/translations/ja/Category:Drawing.md +++ b/wiki/translations/ja/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/ja](Drawing_Workbenc [Template:Drawing Tools navi/ja](Template:Drawing_Tools_navi/ja.md) , [Drawing Workbench/ja](Drawing_Workbench/ja.md) [Category:Obsolete Workbenches/ja](Category:Obsolete_Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:Drawing/ja diff --git a/wiki/translations/ja/Category:External_Workbenches.md b/wiki/translations/ja/Category:External_Workbenches.md index 72152cc582..d1fbcee97e 100644 --- a/wiki/translations/ja/Category:External_Workbenches.md +++ b/wiki/translations/ja/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [Plot Save/ja](Plot_Save/ja.md) , [Ship Workbench/ja](Ship_Workbench/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) [Category:Addons/ja](Category:Addons/ja.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/ja diff --git a/wiki/translations/ja/Category:FEM.md b/wiki/translations/ja/Category:FEM.md index 94a223b15f..04bd51439b 100644 --- a/wiki/translations/ja/Category:FEM.md +++ b/wiki/translations/ja/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/ja](FEM_Workbench/ja.md) [Template:FEM Tools navi/ja](Template:FEM_Tools_navi/ja.md) , [FEM Workbench/ja](FEM_Workbench/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:FEM/ja diff --git a/wiki/translations/ja/Category:Hubs.md b/wiki/translations/ja/Category:Hubs.md index f244a3934e..b44ba4843c 100644 --- a/wiki/translations/ja/Category:Hubs.md +++ b/wiki/translations/ja/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [User hub/ja](User_hub/ja.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Hubs/ja diff --git a/wiki/translations/ja/Category:Image.md b/wiki/translations/ja/Category:Image.md index 97b3dcc0a0..1202166183 100644 --- a/wiki/translations/ja/Category:Image.md +++ b/wiki/translations/ja/Category:Image.md @@ -6,3 +6,6 @@ This category lists pages related to the [Image Workbench/ja](Image_Workbench/ja [Image Workbench/ja](Image_Workbench/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:Image/ja diff --git a/wiki/translations/ja/Category:Macros.md b/wiki/translations/ja/Category:Macros.md index 6b8164839d..6134cc4021 100644 --- a/wiki/translations/ja/Category:Macros.md +++ b/wiki/translations/ja/Category:Macros.md @@ -6,3 +6,6 @@ This category contains macros to extend your FreeCAD installation with new funct [Macros/ja](Macros/ja.md) [Category:Addons](Category:Addons.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Macros/ja diff --git a/wiki/translations/ja/Category:Mesh.md b/wiki/translations/ja/Category:Mesh.md index d1dedded89..9b041fba26 100644 --- a/wiki/translations/ja/Category:Mesh.md +++ b/wiki/translations/ja/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh Workbench/ja](Mesh_Workbench/ja.m [Mesh to Part/ja](Mesh_to_Part/ja.md) , [Template:Mesh Tools navi/ja](Template:Mesh_Tools_navi/ja.md) , [Mesh Workbench/ja](Mesh_Workbench/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) [Category:User\_Documentation/ja](Category:User_Documentation/ja.md) + +--- +[documentation index](../README.md) > Category:Mesh/ja diff --git a/wiki/translations/ja/Category:Obsolete_Workbenches.md b/wiki/translations/ja/Category:Obsolete_Workbenches.md index ec10c35531..52f4978ed4 100644 --- a/wiki/translations/ja/Category:Obsolete_Workbenches.md +++ b/wiki/translations/ja/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/ja](Drawing_Workbenc [Drawing Workbench/ja](Drawing_Workbench/ja.md) , , [Category:Obsolete Workbenches/ja](Category:Obsolete_Workbenches/ja.md) [Category:Drawing/ja](Category:Drawing/ja.md) [Category:Obsolete Workbenches/ja](Category:Obsolete_Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/ja diff --git a/wiki/translations/ja/Category:OpenSCAD.md b/wiki/translations/ja/Category:OpenSCAD.md index b958245f70..ceac4a191c 100644 --- a/wiki/translations/ja/Category:OpenSCAD.md +++ b/wiki/translations/ja/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/ja](OpenSCAD_Workb [OpenSCAD AddOpenSCADElement/ja](OpenSCAD_AddOpenSCADElement/ja.md) , [Template:OpenSCAD Tools navi/ja](Template:OpenSCAD_Tools_navi/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/ja diff --git a/wiki/translations/ja/Category:Part.md b/wiki/translations/ja/Category:Part.md index c9e1b35d18..7e84593cac 100644 --- a/wiki/translations/ja/Category:Part.md +++ b/wiki/translations/ja/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/ja](Part_Workbench/ja.m [Part Boolean/ja](Part_Boolean/ja.md) , [Part Module/ja](Part_Module/ja.md) , [Template:Part Tools navi/ja](Template:Part_Tools_navi/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:Part/ja diff --git a/wiki/translations/ja/Category:PartDesign.md b/wiki/translations/ja/Category:PartDesign.md index 1bf07d3487..204b6f214f 100644 --- a/wiki/translations/ja/Category:PartDesign.md +++ b/wiki/translations/ja/Category:PartDesign.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/ja](PartDesign_Wo [Template:PartDesign Tools navi/ja](Template:PartDesign_Tools_navi/ja.md) , [PartDesign WizardShaft/ja](PartDesign_WizardShaft/ja.md) , [PartDesign Workbench/ja](PartDesign_Workbench/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:PartDesign/ja diff --git a/wiki/translations/ja/Category:Path.md b/wiki/translations/ja/Category:Path.md index c32f0673d5..2a57c5f566 100644 --- a/wiki/translations/ja/Category:Path.md +++ b/wiki/translations/ja/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/ja](PartDesign_Wo [Template:Path Tools navi/ja](Template:Path_Tools_navi/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:Path/ja diff --git a/wiki/translations/ja/Category:Plot.md b/wiki/translations/ja/Category:Plot.md index 237149992e..8b299cff6b 100644 --- a/wiki/translations/ja/Category:Plot.md +++ b/wiki/translations/ja/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/ja](Plot_Workbench/ja.m [Plot Save/ja](Plot_Save/ja.md) , [Template:Plot Tools navi/ja](Template:Plot_Tools_navi/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:Plot/ja diff --git a/wiki/translations/ja/Category:Points.md b/wiki/translations/ja/Category:Points.md index 98e2f8c309..fb8ea8c013 100644 --- a/wiki/translations/ja/Category:Points.md +++ b/wiki/translations/ja/Category:Points.md @@ -4,3 +4,6 @@ This category lists workbenches included in FreeCAD. ### Contents: [Category:User Documentation/ja](Category:User_Documentation/ja.md) + +--- +[documentation index](../README.md) > Category:Points/ja diff --git a/wiki/translations/ja/Category:Poweruser_Documentation.md b/wiki/translations/ja/Category:Poweruser_Documentation.md index 7248760162..7de424a394 100644 --- a/wiki/translations/ja/Category:Poweruser_Documentation.md +++ b/wiki/translations/ja/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Base API/ja](Base_API/ja.md) , [Console API/ja](Console_API/ja.md) , [Draft API/ja](Draft_API/ja.md) , [FreeCAD API/ja](FreeCAD_API/ja.md) , [Mesh API/ja](Mesh_API/ja.md) [Category:Documentation/ja](Category:Documentation/ja.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/ja diff --git a/wiki/translations/ja/Category:Preferences.md b/wiki/translations/ja/Category:Preferences.md index 985fb28f14..1aaed0d6ec 100644 --- a/wiki/translations/ja/Category:Preferences.md +++ b/wiki/translations/ja/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Preferences Editor/ja](Preferences_Editor/ja.md) + +--- +[documentation index](../README.md) > Category:Preferences/ja diff --git a/wiki/translations/ja/Category:Python_Code.md b/wiki/translations/ja/Category:Python_Code.md index 2190b6029a..3635df3738 100644 --- a/wiki/translations/ja/Category:Python_Code.md +++ b/wiki/translations/ja/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Code snippets/ja](Code_snippets/ja.md) , [Embedding FreeCAD/ja](Embedding_FreeCAD/ja.md) , [Introduction to Python/ja](Introduction_to_Python/ja.md) , [Macros/ja](Macros/ja.md) , [Mesh to Part/ja](Mesh_to_Part/ja.md) , [Pivy/ja](Pivy/ja.md) , [Property/ja](Property/ja.md) , [PySide/ja](PySide/ja.md) , [Python scripting tutorial/ja](Python_scripting_tutorial/ja.md) [Category:Categories/ja](Category:Categories/ja.md) + +--- +[documentation index](../README.md) > Category:Python Code/ja diff --git a/wiki/translations/ja/Category:Raytracing.md b/wiki/translations/ja/Category:Raytracing.md index e3128467c3..649e059308 100644 --- a/wiki/translations/ja/Category:Raytracing.md +++ b/wiki/translations/ja/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/ja](Raytracing_Wo [Template:Raytracing Tools navi/ja](Template:Raytracing_Tools_navi/ja.md) , [Raytracing Workbench/ja](Raytracing_Workbench/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:Raytracing/ja diff --git a/wiki/translations/ja/Category:Robot.md b/wiki/translations/ja/Category:Robot.md index 9deb0fb1e2..e5908efc36 100644 --- a/wiki/translations/ja/Category:Robot.md +++ b/wiki/translations/ja/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/ja](Robot_Workbench/ja [Template:Robot Tools navi/ja](Template:Robot_Tools_navi/ja.md) , [Robot Workbench/ja](Robot_Workbench/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:Robot/ja diff --git a/wiki/translations/ja/Category:Ship.md b/wiki/translations/ja/Category:Ship.md index 92d523babf..f3597d831c 100644 --- a/wiki/translations/ja/Category:Ship.md +++ b/wiki/translations/ja/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/ja](Ship_Workbench/ja.m [Template:Ship Tools navi/ja](Template:Ship_Tools_navi/ja.md) , [Ship Workbench/ja](Ship_Workbench/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:Ship/ja diff --git a/wiki/translations/ja/Category:Sketcher.md b/wiki/translations/ja/Category:Sketcher.md index 921ce94ac0..298506b26d 100644 --- a/wiki/translations/ja/Category:Sketcher.md +++ b/wiki/translations/ja/Category:Sketcher.md @@ -6,3 +6,6 @@ This category lists pages related to the [Sketcher Workbench/ja](Sketcher_Workbe [Sketcher ConstrainEqual/ja](Sketcher_ConstrainEqual/ja.md) , [Sketcher ConstrainHorizontal/ja](Sketcher_ConstrainHorizontal/ja.md) , [Sketcher CreateArc/ja](Sketcher_CreateArc/ja.md) , [Sketcher CreateCircle/ja](Sketcher_CreateCircle/ja.md) , [Sketcher CreateFillet/ja](Sketcher_CreateFillet/ja.md) , [Sketcher CreateLine/ja](Sketcher_CreateLine/ja.md) , [Sketcher ToggleConstruction/ja](Sketcher_ToggleConstruction/ja.md) , [Template:Sketcher Tools navi/ja](Template:Sketcher_Tools_navi/ja.md) , [Sketcher Workbench/ja](Sketcher_Workbench/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:Sketcher/ja diff --git a/wiki/translations/ja/Category:Surface.md b/wiki/translations/ja/Category:Surface.md index 2f39cfdd48..c05bca9fd4 100644 --- a/wiki/translations/ja/Category:Surface.md +++ b/wiki/translations/ja/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/ja](Surface_Workbenc [Surface Workbench/ja](Surface_Workbench/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:Surface/ja diff --git a/wiki/translations/ja/Category:TechDraw.md b/wiki/translations/ja/Category:TechDraw.md index 117bd54ce4..14fa7c9f52 100644 --- a/wiki/translations/ja/Category:TechDraw.md +++ b/wiki/translations/ja/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/ja](TechDraw_Workbe [TechDraw Workbench/ja](TechDraw_Workbench/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:TechDraw/ja diff --git a/wiki/translations/ja/Category:Template.md b/wiki/translations/ja/Category:Template.md index 538467863d..3a00e3c138 100644 --- a/wiki/translations/ja/Category:Template.md +++ b/wiki/translations/ja/Category:Template.md @@ -6,3 +6,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) ### Contents: [Category:Categories/ja](Category:Categories/ja.md) [Category:Template:Navigation/ja](Category:Template:Navigation/ja.md) + +--- +[documentation index](../README.md) > Category:Template/ja diff --git a/wiki/translations/ja/Category:Template:Navigation.md b/wiki/translations/ja/Category:Template:Navigation.md index b95a9e8e5f..0c962a3b55 100644 --- a/wiki/translations/ja/Category:Template:Navigation.md +++ b/wiki/translations/ja/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/ja](Template:Arch_Tools_navi/ja.md) , [Template:Drawing Tools navi/ja](Template:Drawing_Tools_navi/ja.md) , [Template:FEM Tools navi/ja](Template:FEM_Tools_navi/ja.md) , [Template:Mesh Tools navi/ja](Template:Mesh_Tools_navi/ja.md) , [Template:OpenSCAD Tools navi/ja](Template:OpenSCAD_Tools_navi/ja.md) , [Template:Part Tools navi/ja](Template:Part_Tools_navi/ja.md) , [Template:PartDesign Tools navi/ja](Template:PartDesign_Tools_navi/ja.md) , [Template:Path Tools navi/ja](Template:Path_Tools_navi/ja.md) , [Template:Plot Tools navi/ja](Template:Plot_Tools_navi/ja.md) , [Template:Raytracing Tools navi/ja](Template:Raytracing_Tools_navi/ja.md) , [Template:Robot Tools navi/ja](Template:Robot_Tools_navi/ja.md) , [Template:Ship Tools navi/ja](Template:Ship_Tools_navi/ja.md) , [Template:Sketcher Tools navi/ja](Template:Sketcher_Tools_navi/ja.md) [Category:Template/ja](Category:Template/ja.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/ja diff --git a/wiki/translations/ja/Category:Tutorials.md b/wiki/translations/ja/Category:Tutorials.md index cf5ef1837d..4b596dc81e 100644 --- a/wiki/translations/ja/Category:Tutorials.md +++ b/wiki/translations/ja/Category:Tutorials.md @@ -10,3 +10,6 @@ Please note which version of FreeCAD is used in the tutorial. Some tutorials may ### Contents: [Category:Categories/ja](Category:Categories/ja.md) + +--- +[documentation index](../README.md) > Category:Tutorials/ja diff --git a/wiki/translations/ja/Category:User_Documentation.md b/wiki/translations/ja/Category:User_Documentation.md index 017e9d4438..cd5ee351ca 100644 --- a/wiki/translations/ja/Category:User_Documentation.md +++ b/wiki/translations/ja/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [About FreeCAD/ja](About_FreeCAD/ja.md) , [Arch Add/ja](Arch_Add/ja.md) , [Arch Building/ja](Arch_Building/ja.md) , [Arch Floor/ja](Arch_Floor/ja.md) , [Arch Pipe/ja](Arch_Pipe/ja.md) , [Arch PipeConnector/ja](Arch_PipeConnector/ja.md) , [Arch Rebar/ja](Arch_Rebar/ja.md) , [Arch Remove/ja](Arch_Remove/ja.md) , [Arch SectionPlane/ja](Arch_SectionPlane/ja.md) , [Arch Structure/ja](Arch_Structure/ja.md) , [Arch Workbench/ja](Arch_Workbench/ja.md) , [Base API/ja](Base_API/ja.md) , [Console API/ja](Console_API/ja.md) , [Draft API/ja](Draft_API/ja.md) , [Draft Workbench/ja](Draft_Workbench/ja.md) , [Drawing Workbench/ja](Drawing_Workbench/ja.md) , [Feature list/ja](Feature_list/ja.md) , [FEM Workbench/ja](FEM_Workbench/ja.md) , [FreeCAD API/ja](FreeCAD_API/ja.md) , [Getting started/ja](Getting_started/ja.md) , [Help FreeCAD/ja](Help_FreeCAD/ja.md) , [Image Workbench/ja](Image_Workbench/ja.md) , [Installing on Linux/ja](Installing_on_Linux/ja.md) , [Installing on Mac/ja](Installing_on_Mac/ja.md) , [Installing on Windows/ja](Installing_on_Windows/ja.md) , [Interface Customization/ja](Interface_Customization/ja.md) , [Main Page/ja](Main_Page/ja.md) , [Mesh API/ja](Mesh_API/ja.md) , [Mesh Workbench/ja](Mesh_Workbench/ja.md) , [Navigation Cube/ja](Navigation_Cube/ja.md) , [Online Help Startpage/ja](Online_Help_Startpage/ja.md) , [Online Help Toc/ja](Online_Help_Toc/ja.md) , [OpenSCAD AddOpenSCADElement/ja](OpenSCAD_AddOpenSCADElement/ja.md) , [Part Boolean/ja](Part_Boolean/ja.md) , [Part Module/ja](Part_Module/ja.md) , [PartDesign WizardShaft/ja](PartDesign_WizardShaft/ja.md) , [PartDesign Workbench/ja](PartDesign_Workbench/ja.md) , [Plot Save/ja](Plot_Save/ja.md) , [Preferences Editor/ja](Preferences_Editor/ja.md) , [Raytracing Workbench/ja](Raytracing_Workbench/ja.md) , [Robot Workbench/ja](Robot_Workbench/ja.md) , [Ship Workbench/ja](Ship_Workbench/ja.md) , [Sketcher ConstrainEqual/ja](Sketcher_ConstrainEqual/ja.md) , [Sketcher ConstrainHorizontal/ja](Sketcher_ConstrainHorizontal/ja.md) , [Sketcher CreateArc/ja](Sketcher_CreateArc/ja.md) , [Sketcher CreateCircle/ja](Sketcher_CreateCircle/ja.md) , [Sketcher CreateFillet/ja](Sketcher_CreateFillet/ja.md) , [Sketcher CreateLine/ja](Sketcher_CreateLine/ja.md) , [Sketcher ToggleConstruction/ja](Sketcher_ToggleConstruction/ja.md) , [Sketcher Workbench/ja](Sketcher_Workbench/ja.md) , [Source documentation/ja](Source_documentation/ja.md) , [Std About/ja](Std_About/ja.md) , [Std New/ja](Std_New/ja.md) , [Std Open/ja](Std_Open/ja.md) , [Std ViewScreenShot/ja](Std_ViewScreenShot/ja.md) , [Surface Workbench/ja](Surface_Workbench/ja.md) , [TechDraw Workbench/ja](TechDraw_Workbench/ja.md) , [Third Party Libraries/ja](Third_Party_Libraries/ja.md) , [Third Party Tools/ja](Third_Party_Tools/ja.md) , [Tracker/ja](Tracker/ja.md) , [User hub/ja](User_hub/ja.md) , [Workbenches/ja](Workbenches/ja.md) , , , , , , , , [Category:Documentation/ja](Category:Documentation/ja.md) [Category:Arch/ja](Category:Arch/ja.md) [Category:Base/ja](Category:Base/ja.md) [Category:BIM/ja](Category:BIM/ja.md) [Category:Draft/ja](Category:Draft/ja.md) [Category:Macros/ja](Category:Macros/ja.md) [Category:Mesh/ja](Category:Mesh/ja.md) [Category:Points/ja](Category:Points/ja.md) [Category:Workbenches/ja](Category:Workbenches/ja.md) + +--- +[documentation index](../README.md) > Category:User Documentation/ja diff --git a/wiki/translations/ja/Category:Workbenches.md b/wiki/translations/ja/Category:Workbenches.md index 2526c74982..135f3c0704 100644 --- a/wiki/translations/ja/Category:Workbenches.md +++ b/wiki/translations/ja/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/ja](Arch_Workbench/ja.md) , [Draft Workbench/ja](Draft_Workbench/ja.md) , [FEM Workbench/ja](FEM_Workbench/ja.md) , [Image Workbench/ja](Image_Workbench/ja.md) , [Mesh Workbench/ja](Mesh_Workbench/ja.md) , [Part Module/ja](Part_Module/ja.md) , [PartDesign Workbench/ja](PartDesign_Workbench/ja.md) , [Raytracing Workbench/ja](Raytracing_Workbench/ja.md) , [Robot Workbench/ja](Robot_Workbench/ja.md) , [Sketcher Workbench/ja](Sketcher_Workbench/ja.md) , [Surface Workbench/ja](Surface_Workbench/ja.md) , [TechDraw Workbench/ja](TechDraw_Workbench/ja.md) , [Workbenches/ja](Workbenches/ja.md) , , , , , , , , , , , , , , , , , [Category:User Documentation/ja](Category:User_Documentation/ja.md) [Category:Arch/ja](Category:Arch/ja.md) [Category:Draft/ja](Category:Draft/ja.md) [Category:External Workbenches/ja](Category:External_Workbenches/ja.md) [Category:FEM/ja](Category:FEM/ja.md) [Category:Image/ja](Category:Image/ja.md) [Category:Mesh/ja](Category:Mesh/ja.md) [Category:OpenSCAD/ja](Category:OpenSCAD/ja.md) [Category:Part/ja](Category:Part/ja.md) [Category:PartDesign/ja](Category:PartDesign/ja.md) [Category:Path/ja](Category:Path/ja.md) [Category:Plot/ja](Category:Plot/ja.md) [Category:Raytracing/ja](Category:Raytracing/ja.md) [Category:Robot/ja](Category:Robot/ja.md) [Category:Ship/ja](Category:Ship/ja.md) [Category:Sketcher/ja](Category:Sketcher/ja.md) [Category:Surface/ja](Category:Surface/ja.md) [Category:TechDraw/ja](Category:TechDraw/ja.md) + +--- +[documentation index](../README.md) > Category:Workbenches/ja diff --git a/wiki/translations/ja/Code_snippets.md b/wiki/translations/ja/Code_snippets.md index 4a98cda9db..725855e9b3 100644 --- a/wiki/translations/ja/Code_snippets.md +++ b/wiki/translations/ja/Code_snippets.md @@ -1,7 +1,4 @@ # Code snippets/ja - - - {{TOCright}} ## Introduction @@ -1904,3 +1901,6 @@ See [Coin3d snippets](Coin3d_snippets.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Code snippets/ja diff --git a/wiki/translations/ja/Console_API.md b/wiki/translations/ja/Console_API.md index 5e3bee02ef..6cb23cae82 100644 --- a/wiki/translations/ja/Console_API.md +++ b/wiki/translations/ja/Console_API.md @@ -1,5 +1,5 @@ # Console API/ja - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** このモジュールはFreeCADモジュール内部に含まれ、FreeCADの出力用コンソールとステータスバーにテキストを送信するためのメソッドが含まれています。メッセージ、警告、エラーの場合にはメッセージ文字列が異なる色になります。 @@ -35,3 +35,6 @@ FreeCAD.PrintMessage("Hello World!\n") [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Console API/ja diff --git a/wiki/translations/ja/Draft_API.md b/wiki/translations/ja/Draft_API.md index 9713fb9e08..442a18856b 100644 --- a/wiki/translations/ja/Draft_API.md +++ b/wiki/translations/ja/Draft_API.md @@ -1,7 +1,4 @@ # Draft API/ja - - -
これらの関数はDraftモジュールの一部であり、Draftモジュールをインポートすることでスクリプト、マクロ、Pythonインタプリタから使用することができます。 @@ -98,3 +95,6 @@ Draft.move(myrect, mydistance) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft API/ja diff --git a/wiki/translations/ja/Draft_Module.md b/wiki/translations/ja/Draft_Module.md index ada5b992cb..46b0a36675 100644 --- a/wiki/translations/ja/Draft_Module.md +++ b/wiki/translations/ja/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/ja 1. REDIRECT [Draft\_Workbench/ja](Draft_Workbench/ja.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/ja diff --git a/wiki/translations/ja/Draft_Workbench.md b/wiki/translations/ja/Draft_Workbench.md index ecf989cf2f..82a0948e89 100644 --- a/wiki/translations/ja/Draft_Workbench.md +++ b/wiki/translations/ja/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/ja - - - - - -Draft workbench icon +# Draft workbench icon Draft Workbench/ja {{TOCright}} @@ -390,3 +384,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/ja diff --git a/wiki/translations/ja/Drawing_Module.md b/wiki/translations/ja/Drawing_Module.md index 061c6b13fc..ad50fe70dc 100644 --- a/wiki/translations/ja/Drawing_Module.md +++ b/wiki/translations/ja/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/ja 1. REDIRECT [Drawing\_Workbench/ja](Drawing_Workbench/ja.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/ja diff --git a/wiki/translations/ja/Drawing_Workbench.md b/wiki/translations/ja/Drawing_Workbench.md index 3e31c2d674..de2474fb8e 100644 --- a/wiki/translations/ja/Drawing_Workbench.md +++ b/wiki/translations/ja/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/ja - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** Drawing workbench icon @@ -84,3 +81,6 @@ Some notes on the programming side of the drawing module will be added to the [D }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/ja diff --git a/wiki/translations/ja/Embedding_FreeCAD.md b/wiki/translations/ja/Embedding_FreeCAD.md index 954f39164d..1956ce493a 100644 --- a/wiki/translations/ja/Embedding_FreeCAD.md +++ b/wiki/translations/ja/Embedding_FreeCAD.md @@ -1,7 +1,4 @@ # Embedding FreeCAD/ja - - - {{TOCright}} ## Introduction @@ -179,3 +176,6 @@ Since the FreeCAD Python module is compiled from C++ (rather than being a pure P }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCAD/ja diff --git a/wiki/translations/ja/FEM_Module.md b/wiki/translations/ja/FEM_Module.md index 5f736cef3d..2e1d8b4e85 100644 --- a/wiki/translations/ja/FEM_Module.md +++ b/wiki/translations/ja/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/ja 1. REDIRECT [FEM\_Workbench/ja](FEM_Workbench/ja.md) + +--- +[documentation index](../README.md) > FEM Module/ja diff --git a/wiki/translations/ja/FEM_Workbench.md b/wiki/translations/ja/FEM_Workbench.md index fea04c83a3..60e8e13ccb 100644 --- a/wiki/translations/ja/FEM_Workbench.md +++ b/wiki/translations/ja/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/ja - - - - - -FEM workbench icon +# FEM workbench icon FEM Workbench/ja {{TOCright}} @@ -285,3 +279,6 @@ A developer\'s guide has been written to help power users in understanding the c }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/ja diff --git a/wiki/translations/ja/Feature_list.md b/wiki/translations/ja/Feature_list.md index ff3c2b71cd..f07d7e78e4 100644 --- a/wiki/translations/ja/Feature_list.md +++ b/wiki/translations/ja/Feature_list.md @@ -1,7 +1,4 @@ # Feature list/ja - - -
以下はFreeCADに実装されている多くの機能のリストです。ただし機能が多いため全てが記載されているわけではありません。もし将来的な計画について知りたいのであれば[開発ロードマップを見てください](Development_roadmap.md)。機能を概観したいのであれば[スクリーンショットを見るとよいでしょう](Screenshots.md)。 @@ -294,3 +291,6 @@ Power users have created various custom [external workbenches](external_workbenc [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/ja diff --git a/wiki/translations/ja/FreeCAD_API.md b/wiki/translations/ja/FreeCAD_API.md index 5a44c1e09a..a18fc090e5 100644 --- a/wiki/translations/ja/FreeCAD_API.md +++ b/wiki/translations/ja/FreeCAD_API.md @@ -1,5 +1,5 @@ # FreeCAD API/ja - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** FreeCADの主要(ルート)モジュールです。FreeCADのインタプリタからは\"App\"によって呼び出すことも可能です。ドキュメントとその内容(オブジェクト)を操作するのに必要な全てが含まれています。 @@ -72,3 +72,6 @@ mydoc = FreeCAD.activeDocument() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FreeCAD API/ja diff --git a/wiki/translations/ja/Getting_started.md b/wiki/translations/ja/Getting_started.md index ab55739ae9..769f467791 100644 --- a/wiki/translations/ja/Getting_started.md +++ b/wiki/translations/ja/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/ja - - - - - - {{TOCright}} ## 序文 @@ -331,3 +325,6 @@ There are two types of addons: [Category:User\_Documentation/ja](Category:User_Documentation/ja.md) + +--- +[documentation index](../README.md) > Getting started/ja diff --git a/wiki/translations/ja/Help_FreeCAD.md b/wiki/translations/ja/Help_FreeCAD.md index 3952c85fae..39a40573ea 100644 --- a/wiki/translations/ja/Help_FreeCAD.md +++ b/wiki/translations/ja/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/ja - - ## Introduction @@ -212,3 +210,6 @@ Writing code for FreeCAD is not hard, and you don\'t need any permission, you ca [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command_Reference/ja]]ページには、すべてのFreeCAD ](Category:Command_Reference/ja]]ページには、すべてのFreeCAD .md) > Help FreeCAD/ja diff --git a/wiki/translations/ja/Image_Module.md b/wiki/translations/ja/Image_Module.md index 222392852f..2d3dc9fb42 100644 --- a/wiki/translations/ja/Image_Module.md +++ b/wiki/translations/ja/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/ja 1. REDIRECT [Image\_Workbench/ja](Image_Workbench/ja.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/ja diff --git a/wiki/translations/ja/Image_Workbench.md b/wiki/translations/ja/Image_Workbench.md index 63f0297af6..23d4536372 100644 --- a/wiki/translations/ja/Image_Workbench.md +++ b/wiki/translations/ja/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/ja - - -Image workbench icon +# Image workbench icon Image Workbench/ja ## Introduction @@ -39,3 +36,6 @@ The offset of the image can be set during import, or changed later through its p }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/ja diff --git a/wiki/translations/ja/Install_on_Linux.md b/wiki/translations/ja/Install_on_Linux.md index a62fdcd2f5..69e7e6f96d 100644 --- a/wiki/translations/ja/Install_on_Linux.md +++ b/wiki/translations/ja/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/ja 1. REDIRECT [Installing\_on\_Linux/ja](Installing_on_Linux/ja.md) + +--- +[documentation index](../README.md) > Install on Linux/ja diff --git a/wiki/translations/ja/Install_on_Mac.md b/wiki/translations/ja/Install_on_Mac.md index 2a69cdb27f..05a9d9d96c 100644 --- a/wiki/translations/ja/Install_on_Mac.md +++ b/wiki/translations/ja/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/ja 1. REDIRECT [Installing\_on\_Mac/ja](Installing_on_Mac/ja.md) + +--- +[documentation index](../README.md) > Install on Mac/ja diff --git a/wiki/translations/ja/Install_on_Unix.md b/wiki/translations/ja/Install_on_Unix.md index df0292808b..105b1d73bd 100644 --- a/wiki/translations/ja/Install_on_Unix.md +++ b/wiki/translations/ja/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/ja 1. REDIRECT [Installing\_on\_Linux/ja](Installing_on_Linux/ja.md) + +--- +[documentation index](../README.md) > Install on Unix/ja diff --git a/wiki/translations/ja/Install_on_Windows.md b/wiki/translations/ja/Install_on_Windows.md index 357dc62271..2139dd7c21 100644 --- a/wiki/translations/ja/Install_on_Windows.md +++ b/wiki/translations/ja/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/ja 1. REDIRECT [Installing\_on\_Windows/ja](Installing_on_Windows/ja.md) + +--- +[documentation index](../README.md) > Install on Windows/ja diff --git a/wiki/translations/ja/Installing_on_Linux.md b/wiki/translations/ja/Installing_on_Linux.md index 2b8903ae6d..28c88d455c 100644 --- a/wiki/translations/ja/Installing_on_Linux.md +++ b/wiki/translations/ja/Installing_on_Linux.md @@ -1,7 +1,4 @@ # Installing on Linux/ja - - -
@@ -389,3 +386,6 @@ Once you\'ve got FreeCAD installed, it\'s time to [get started](Getting_started. [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/ja diff --git a/wiki/translations/ja/Installing_on_Mac.md b/wiki/translations/ja/Installing_on_Mac.md index 8c67c0ee59..bf966bdf23 100644 --- a/wiki/translations/ja/Installing_on_Mac.md +++ b/wiki/translations/ja/Installing_on_Mac.md @@ -1,10 +1,4 @@ # Installing on Mac/ja - - - - - -
インストーラーを使って1ステップでFreeCADをMac OS Xにインストールすることができます。 @@ -75,5 +69,5 @@ The FreeCAD installer is provided as a app package (.app) enclosed in a disk ima
- - +--- +[documentation index](../README.md) > Installing on Mac/ja diff --git a/wiki/translations/ja/Installing_on_Windows.md b/wiki/translations/ja/Installing_on_Windows.md index 4324a31529..950718721f 100644 --- a/wiki/translations/ja/Installing_on_Windows.md +++ b/wiki/translations/ja/Installing_on_Windows.md @@ -1,9 +1,4 @@ # Installing on Windows/ja - - - - - Windows上でのFreeCADのインストールのもっとも簡単なやり方は下記のインストーラーをダウンロードすることです。 {{DownloadWindowsStable}} @@ -227,5 +222,5 @@ FreeCAD is running, but it has been reported that the OpenGL display does not wo
- - +--- +[documentation index](../README.md) > Installing on Windows/ja diff --git a/wiki/translations/ja/Interface_Customization.md b/wiki/translations/ja/Interface_Customization.md index f937a37a99..bd29bda417 100644 --- a/wiki/translations/ja/Interface_Customization.md +++ b/wiki/translations/ja/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/ja - - - - - - {{TOCright}} ## Introduction @@ -305,4 +299,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/ja diff --git a/wiki/translations/ja/Introduction_to_Python.md b/wiki/translations/ja/Introduction_to_Python.md index 69b3eb07e5..17261c73bb 100644 --- a/wiki/translations/ja/Introduction_to_Python.md +++ b/wiki/translations/ja/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/ja - - - {{TOCright}} ## Introduction @@ -982,3 +979,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/ja diff --git a/wiki/translations/ja/Macros.md b/wiki/translations/ja/Macros.md index f859f201a1..b54a463eb1 100644 --- a/wiki/translations/ja/Macros.md +++ b/wiki/translations/ja/Macros.md @@ -1,7 +1,4 @@ # Macros/ja - - - {{TOCright}} ## Introduction @@ -154,3 +151,6 @@ You can manually install extensions, however, it is much simpler to just use the }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/ja diff --git a/wiki/translations/ja/Main_Page.md b/wiki/translations/ja/Main_Page.md index 00d38556ff..28123a6679 100644 --- a/wiki/translations/ja/Main_Page.md +++ b/wiki/translations/ja/Main_Page.md @@ -1,7 +1,4 @@ # Main Page/ja - - -
## はじめに @@ -209,3 +206,6 @@ FreeCADはcMakeまたはautotoolsを使ってコンパイルすることがで [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/ja diff --git a/wiki/translations/ja/Mesh_API.md b/wiki/translations/ja/Mesh_API.md index 60444247bf..e2bf5ae6f5 100644 --- a/wiki/translations/ja/Mesh_API.md +++ b/wiki/translations/ja/Mesh_API.md @@ -1,7 +1,4 @@ # Mesh API/ja - - - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** @@ -239,3 +236,6 @@ d.recompute() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh API/ja diff --git a/wiki/translations/ja/Mesh_Workbench.md b/wiki/translations/ja/Mesh_Workbench.md index 40057b4332..694ea77743 100644 --- a/wiki/translations/ja/Mesh_Workbench.md +++ b/wiki/translations/ja/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/ja - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench/ja {{TOCright}} @@ -167,3 +161,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/ja diff --git a/wiki/translations/ja/Mesh_to_Part.md b/wiki/translations/ja/Mesh_to_Part.md index 257ef68a25..7f7cb631be 100644 --- a/wiki/translations/ja/Mesh_to_Part.md +++ b/wiki/translations/ja/Mesh_to_Part.md @@ -1,7 +1,4 @@ # Mesh to Part/ja - - - {{TOCright}} @@ -183,3 +180,6 @@ Part.show(solid) }} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh to Part/ja diff --git a/wiki/translations/ja/Navigation_Cube.md b/wiki/translations/ja/Navigation_Cube.md index f84ed1bf3c..e5f419e635 100644 --- a/wiki/translations/ja/Navigation_Cube.md +++ b/wiki/translations/ja/Navigation_Cube.md @@ -1,10 +1,4 @@ # Navigation Cube/ja - - - - - - {{TOCright}} The navigational cube control, or **navigation cube**, is a user interface graphic aid for reorienting the 3D view. By default, it is visible and resides in the upper right corner of the 3D display. If you are looking at the standard 3D view, it looks like the following: @@ -98,3 +92,6 @@ For more advanced configuration, refer to the [CubeMenu](Interface_Customization [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Navigation Cube/ja diff --git a/wiki/translations/ja/Online_Help_Startpage.md b/wiki/translations/ja/Online_Help_Startpage.md index 0ef85ae515..c645716b19 100644 --- a/wiki/translations/ja/Online_Help_Startpage.md +++ b/wiki/translations/ja/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/ja - - ![150](images/Crystal_Clear_app_tutorials.png ) ## FreeCADオンラインヘルプへようこそ @@ -46,3 +44,6 @@ [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/ja diff --git a/wiki/translations/ja/Online_Help_Toc.md b/wiki/translations/ja/Online_Help_Toc.md index 867c02aa8a..6ec19e16a6 100644 --- a/wiki/translations/ja/Online_Help_Toc.md +++ b/wiki/translations/ja/Online_Help_Toc.md @@ -1,7 +1,4 @@ # Online Help Toc/ja - - -
FreeCADオンラインヘルプシステムの目次です。ここで参照された記事は、wiki2chm.pyツールによって自動的にFreeCAD.chmファイルに取り込まれます。このツールはsrc/Tools/wiki2chm.pyにあります。このマニュアルの[印刷用バージョンも利用できます](Manual/jp.md)。 @@ -180,3 +177,6 @@ There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction. [Category:Documentation/ja](Category:Documentation/ja.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/ja diff --git a/wiki/translations/ja/OpenSCAD_AddOpenSCADElement.md b/wiki/translations/ja/OpenSCAD_AddOpenSCADElement.md index b5dae13fb2..7d7b3fc802 100644 --- a/wiki/translations/ja/OpenSCAD_AddOpenSCADElement.md +++ b/wiki/translations/ja/OpenSCAD_AddOpenSCADElement.md @@ -1,3 +1,4 @@ +# OpenSCAD AddOpenSCADElement/ja --- - GuiCommand:/jp Name:OpenSCAD_AddOpenSCADElement Name/jp:OpenSCAD_AddOpenSCADElement Workbenches:[[OpenSCAD Module OpenSCAD]]|MenuLocation:OpenSCAD -> Add OpenSCAD Element--- @@ -85,4 +86,7 @@ FreeCADバージョン0.14以降、上記の設定が空の場合、FreeCADはOp {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD AddOpenSCADElement/ja diff --git a/wiki/translations/ja/PartDesign_WizardShaft.md b/wiki/translations/ja/PartDesign_WizardShaft.md index 7f9a53e3d2..2a72817208 100644 --- a/wiki/translations/ja/PartDesign_WizardShaft.md +++ b/wiki/translations/ja/PartDesign_WizardShaft.md @@ -1,3 +1,4 @@ +# PartDesign WizardShaft/ja --- - GuiCommand:/jp Name:PartDesign_WizardShaft Workbenches:[パートデザイン](PartDesign_Workbench/jp.md), Complete--- @@ -107,4 +108,7 @@ For each shaft segment, the following parameters can be defined {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign WizardShaft/ja diff --git a/wiki/translations/ja/PartDesign_Workbench.md b/wiki/translations/ja/PartDesign_Workbench.md index e93c5a2fac..c3af10a93e 100644 --- a/wiki/translations/ja/PartDesign_Workbench.md +++ b/wiki/translations/ja/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/ja - - -PartDesign workbench icon +# PartDesign workbench icon PartDesign Workbench/ja {{TOCright}} @@ -264,3 +261,6 @@ Some additional functionality found in the Part Design menu: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/ja diff --git a/wiki/translations/ja/Part_Boolean.md b/wiki/translations/ja/Part_Boolean.md index 840ffe886b..0c2c322f02 100644 --- a/wiki/translations/ja/Part_Boolean.md +++ b/wiki/translations/ja/Part_Boolean.md @@ -6,6 +6,8 @@ SeeAlso:[Part Cut](Part_Cut.md), [Part Fuse](Part_Fuse.md), [Part Common](Part_Common.md), [Part Section](Part_Section.md) --- +# Part Boolean/ja +
@@ -73,8 +75,5 @@ In cases of coplanarity, even if the first boolean operation succeeds, subsequen *Left: shapes that share a face, a boolean union may produce incorrect results. Right: shapes that intersect each other clearly, the boolean union will be successful in most cases.* - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Boolean/ja diff --git a/wiki/translations/ja/Part_Module.md b/wiki/translations/ja/Part_Module.md index ff1ef33143..23d1710d69 100644 --- a/wiki/translations/ja/Part_Module.md +++ b/wiki/translations/ja/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/ja - - - - - -Part workbench icon +# Part workbench icon Part Module/ja {{TOCright}} @@ -241,3 +235,6 @@ See [Part scripting](Part_scripting.md). [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/ja diff --git a/wiki/translations/ja/Part_Workbench.md b/wiki/translations/ja/Part_Workbench.md index 993c5a26d9..7881d29fec 100644 --- a/wiki/translations/ja/Part_Workbench.md +++ b/wiki/translations/ja/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/ja 1. REDIRECT [Part\_Module/ja](Part_Module/ja.md) + +--- +[documentation index](../README.md) > Part Workbench/ja diff --git a/wiki/translations/ja/Pivy.md b/wiki/translations/ja/Pivy.md index c23ada134d..96fba69f95 100644 --- a/wiki/translations/ja/Pivy.md +++ b/wiki/translations/ja/Pivy.md @@ -1,7 +1,4 @@ # Pivy/ja - - - {{TOCright}} ## Introduction @@ -258,3 +255,6 @@ These links provide reference documentation for Coin v3.x. The differences with }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Pivy/ja diff --git a/wiki/translations/ja/Plot_Save.md b/wiki/translations/ja/Plot_Save.md index 7c2aeb5705..1066ce4c67 100644 --- a/wiki/translations/ja/Plot_Save.md +++ b/wiki/translations/ja/Plot_Save.md @@ -1,3 +1,4 @@ +# Plot Save/ja --- - GuiCommand:/jp Name:Plot Save Workbenches:[[Plot Module Plot]]|MenuLocation:Plot -> Save plot--- @@ -55,3 +56,6 @@ Plot Saveツールはアクテイブなプロットを希望した位置に保 }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Save/ja diff --git a/wiki/translations/ja/Preferences_Editor.md b/wiki/translations/ja/Preferences_Editor.md index 482dcc368f..cb06279bb6 100644 --- a/wiki/translations/ja/Preferences_Editor.md +++ b/wiki/translations/ja/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/ja - - - - - - {{TOCright}} ## Introduction @@ -722,3 +716,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/ja diff --git a/wiki/translations/ja/Property.md b/wiki/translations/ja/Property.md index 7c47cb31a7..a01923fab4 100644 --- a/wiki/translations/ja/Property.md +++ b/wiki/translations/ja/Property.md @@ -1,6 +1,4 @@ # Property/ja - - ## Introduction @@ -122,3 +120,6 @@ They are imported and initialized in `[https://github.com/FreeCAD/FreeCAD/blob/9 }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/ja diff --git a/wiki/translations/ja/PySide.md b/wiki/translations/ja/PySide.md index 925ea70d7f..c506e6db3f 100644 --- a/wiki/translations/ja/PySide.md +++ b/wiki/translations/ja/PySide.md @@ -1,7 +1,4 @@ # PySide/ja - - - {{TOCright}} @@ -111,3 +108,6 @@ The PySide documentation refers to the Python-style classes; however, since Qt i }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide/ja diff --git a/wiki/translations/ja/Python_scripting_tutorial.md b/wiki/translations/ja/Python_scripting_tutorial.md index 625d6180d8..77240c9545 100644 --- a/wiki/translations/ja/Python_scripting_tutorial.md +++ b/wiki/translations/ja/Python_scripting_tutorial.md @@ -1,7 +1,4 @@ # Python scripting tutorial/ja - - - {{TOCright}} ## Introduction @@ -570,3 +567,6 @@ Now that you have a good understanding of the basics, where are we going to keep }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python scripting tutorial/ja diff --git a/wiki/translations/ja/Ray_Tracing_Workbench.md b/wiki/translations/ja/Ray_Tracing_Workbench.md index ea3d92c0fb..78b9a4c51e 100644 --- a/wiki/translations/ja/Ray_Tracing_Workbench.md +++ b/wiki/translations/ja/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/ja 1. REDIRECT [Raytracing\_Workbench/ja](Raytracing_Workbench/ja.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/ja diff --git a/wiki/translations/ja/Raytracing_Module.md b/wiki/translations/ja/Raytracing_Module.md index 266bbe1243..02d9a81d80 100644 --- a/wiki/translations/ja/Raytracing_Module.md +++ b/wiki/translations/ja/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/ja 1. REDIRECT [Raytracing\_Workbench/ja](Raytracing_Workbench/ja.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/ja diff --git a/wiki/translations/ja/Raytracing_Workbench.md b/wiki/translations/ja/Raytracing_Workbench.md index 5f8369eb63..86ad3f4888 100644 --- a/wiki/translations/ja/Raytracing_Workbench.md +++ b/wiki/translations/ja/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/ja - - - **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. Nevertheless, the information in this page is generally useful for the new workbench, as both modules work basically in the same way. @@ -184,3 +181,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/ja diff --git a/wiki/translations/ja/Robot_Workbench.md b/wiki/translations/ja/Robot_Workbench.md index c25cfbb65d..ab941fc389 100644 --- a/wiki/translations/ja/Robot_Workbench.md +++ b/wiki/translations/ja/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/ja - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. @@ -134,3 +128,6 @@ See the [Robot API example](Robot_API_example.md) for a description of the funct }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/ja diff --git a/wiki/translations/ja/Ship_Workbench.md b/wiki/translations/ja/Ship_Workbench.md index 5891af94fc..9944ed1f4c 100644 --- a/wiki/translations/ja/Ship_Workbench.md +++ b/wiki/translations/ja/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/ja - - -Ship workbench icon +# Ship workbench icon Ship Workbench/ja {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/ja diff --git a/wiki/translations/ja/Sketcher_ConstrainEqual.md b/wiki/translations/ja/Sketcher_ConstrainEqual.md index 1145975a68..759560a693 100644 --- a/wiki/translations/ja/Sketcher_ConstrainEqual.md +++ b/wiki/translations/ja/Sketcher_ConstrainEqual.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainEqual/ja --- - GuiCommand:/jp Name:Constraint EqualLength Workbenches:[パートデザイン](Sketcher_Workbench/jp___スケッチャー]],_[[PartDesign_Workbench/jp.md)|MenuLocation:Sketch → Sketcher constraints → Constrain equal SeeAlso:[Constraint Radius](Constraint_Radius/jp.md)--- @@ -107,4 +108,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainEqual/ja diff --git a/wiki/translations/ja/Sketcher_ConstrainHorizontal.md b/wiki/translations/ja/Sketcher_ConstrainHorizontal.md index 69732f2dc4..3ce67b9fd4 100644 --- a/wiki/translations/ja/Sketcher_ConstrainHorizontal.md +++ b/wiki/translations/ja/Sketcher_ConstrainHorizontal.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainHorizontal/ja --- - GuiCommand:/jp Name:Sketcher ConstrainHorizontal Workbenches:[パートデザイン](Sketcher_Workbench/jp___スケッチャー]],_[[PartDesign_Workbench/jp.md)|MenuLocation:Sketch → Sketcher constraints → Constrain horizontally SeeAlso:[Constraint Vertical](Constraint_Vertical/jp.md)--- @@ -59,3 +60,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher](Category:Sketcher.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainHorizontal/ja diff --git a/wiki/translations/ja/Sketcher_CreateArc.md b/wiki/translations/ja/Sketcher_CreateArc.md index 8660e464db..5eefb27837 100644 --- a/wiki/translations/ja/Sketcher_CreateArc.md +++ b/wiki/translations/ja/Sketcher_CreateArc.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Circle](Sketcher_CompCreateCircle/jp.md) --- +# Sketcher CreateArc/ja +
@@ -36,4 +38,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateArc/ja diff --git a/wiki/translations/ja/Sketcher_CreateCircle.md b/wiki/translations/ja/Sketcher_CreateCircle.md index 51ba82d8df..5d75c631bc 100644 --- a/wiki/translations/ja/Sketcher_CreateCircle.md +++ b/wiki/translations/ja/Sketcher_CreateCircle.md @@ -1,3 +1,4 @@ +# Sketcher CreateCircle/ja --- - GuiCommand:/jp Name:Sketcher CreateCircle Workbenches:[MenuLocation:Sketch → Sketcher geometries → Create circle SeeAlso:[[Sketcher Arc/jp|Sketcher Arc](Sketcher_Workbench/jp___スケッチャー]].md)--- @@ -32,4 +33,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateCircle/ja diff --git a/wiki/translations/ja/Sketcher_CreateFillet.md b/wiki/translations/ja/Sketcher_CreateFillet.md index 5d418096fb..977ed4fb55 100644 --- a/wiki/translations/ja/Sketcher_CreateFillet.md +++ b/wiki/translations/ja/Sketcher_CreateFillet.md @@ -1,3 +1,4 @@ +# Sketcher CreateFillet/ja --- - GuiCommand: Name:Sketcher CreateFillet Workbenches:[[Sketcher Workbench Sketcher]]|Shortcut:F MenuLocation:Sketch → Sketcher geometries → Create fillet SeeAlso:--- @@ -45,4 +46,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateFillet/ja diff --git a/wiki/translations/ja/Sketcher_CreateLine.md b/wiki/translations/ja/Sketcher_CreateLine.md index fb2b09bb4f..968c8905b7 100644 --- a/wiki/translations/ja/Sketcher_CreateLine.md +++ b/wiki/translations/ja/Sketcher_CreateLine.md @@ -1,3 +1,4 @@ +# Sketcher CreateLine/ja --- - GuiCommand: Name:Sketcher CreateLine Workbenches:[MenuLocation:Sketch → Sketcher geometries → Create line Shortcut:L SeeAlso:[[Sketcher CreatePolyline|Sketcher Polyline](Sketcher_Workbench___Sketcher]].md)--- @@ -35,4 +36,7 @@ The created line object starts and ends at the given points, but the line is inf {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateLine/ja diff --git a/wiki/translations/ja/Sketcher_ToggleConstruction.md b/wiki/translations/ja/Sketcher_ToggleConstruction.md index 8f461e6689..0b5c184357 100644 --- a/wiki/translations/ja/Sketcher_ToggleConstruction.md +++ b/wiki/translations/ja/Sketcher_ToggleConstruction.md @@ -1,3 +1,4 @@ +# Sketcher ToggleConstruction/ja --- - GuiCommand:/jp Name:Sketcher_ToggleConstruction Workbenches:[パートデザイン](Sketcher_Workbench/jp___スケッチャー]],_[[PartDesign_Workbench/jp.md)|MenuLocation:Sketch → Sketcher geometries → Toggle construction line--- @@ -74,4 +75,7 @@ and once you ** [lea {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleConstruction/ja diff --git a/wiki/translations/ja/Sketcher_Workbench.md b/wiki/translations/ja/Sketcher_Workbench.md index 0dbc149f51..bdcbfd3139 100644 --- a/wiki/translations/ja/Sketcher_Workbench.md +++ b/wiki/translations/ja/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/ja - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/ja {{TOCright}} @@ -421,3 +415,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/ja diff --git a/wiki/translations/ja/Source_documentation.md b/wiki/translations/ja/Source_documentation.md index afaea5ebe1..cf2aacdd30 100644 --- a/wiki/translations/ja/Source_documentation.md +++ b/wiki/translations/ja/Source_documentation.md @@ -1,10 +1,4 @@ # Source documentation/ja - - - - - - {{TOCright}} @@ -208,3 +202,6 @@ void removeTaskWatcher(void); [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source documentation/ja diff --git a/wiki/translations/ja/Std_About.md b/wiki/translations/ja/Std_About.md index 67d5994521..46c4cc580a 100644 --- a/wiki/translations/ja/Std_About.md +++ b/wiki/translations/ja/Std_About.md @@ -1,3 +1,4 @@ +# Std About/ja --- - GuiCommand: Name:Std About Workbenches:All MenuLocation:Help → About FreeCAD SeeAlso:[[Standard Menu]]--- @@ -79,3 +80,6 @@ The Libraries tab shows a list of the external libraries used by the program, an {{Std Base navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Std About/ja diff --git a/wiki/translations/ja/Std_InterfaceCustomization.md b/wiki/translations/ja/Std_InterfaceCustomization.md index c55e2be17b..ad13bcf7ed 100644 --- a/wiki/translations/ja/Std_InterfaceCustomization.md +++ b/wiki/translations/ja/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/ja 1. REDIRECT [Interface\_Customization/ja](Interface_Customization/ja.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/ja diff --git a/wiki/translations/ja/Std_New.md b/wiki/translations/ja/Std_New.md index 8a4edb9e1c..83a819a567 100644 --- a/wiki/translations/ja/Std_New.md +++ b/wiki/translations/ja/Std_New.md @@ -1,3 +1,4 @@ +# Std New/ja --- - GuiCommand:/jp Name:Std_New MenuLocation:File -> New Workbenches:All SeeAlso:[[Std_Open]],[[Std_Import]]--- @@ -100,4 +101,7 @@ FreeCAD.closeDocument(doc.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std New/ja diff --git a/wiki/translations/ja/Std_Open.md b/wiki/translations/ja/Std_Open.md index 5afa2a42ff..727348a0ac 100644 --- a/wiki/translations/ja/Std_Open.md +++ b/wiki/translations/ja/Std_Open.md @@ -1,3 +1,4 @@ +# Std Open/ja --- - GuiCommand:/jp Name:Std_Open Workbenches:All SeeAlso:[[Std_Save]],[[Std_Import]]--- @@ -51,4 +52,7 @@ For a scripting example see [Std New](Std_New#Scripting.md). {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Open/ja diff --git a/wiki/translations/ja/Std_ViewScreenShot.md b/wiki/translations/ja/Std_ViewScreenShot.md index 8a01ca46d1..8094c6b7a6 100644 --- a/wiki/translations/ja/Std_ViewScreenShot.md +++ b/wiki/translations/ja/Std_ViewScreenShot.md @@ -1,3 +1,4 @@ +# Std ViewScreenShot/ja --- - GuiCommand:/jp Name:Std_ViewScreenShot MenuLocation:Tools -> Save picture... Workbenches:All SeeAlso:...--- @@ -129,4 +130,7 @@ App.closeDocument(App.ActiveDocument.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewScreenShot/ja diff --git a/wiki/translations/ja/Surface_Module.md b/wiki/translations/ja/Surface_Module.md index 057c992255..d0eaf285d4 100644 --- a/wiki/translations/ja/Surface_Module.md +++ b/wiki/translations/ja/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/ja 1. REDIRECT [Surface\_Workbench/ja](Surface_Workbench/ja.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/ja diff --git a/wiki/translations/ja/Surface_Workbench.md b/wiki/translations/ja/Surface_Workbench.md index 3ef0d8479b..a49d98b628 100644 --- a/wiki/translations/ja/Surface_Workbench.md +++ b/wiki/translations/ja/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/ja - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/ja {{TOCright}} @@ -57,3 +51,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/ja diff --git a/wiki/translations/ja/TechDraw_Module.md b/wiki/translations/ja/TechDraw_Module.md index 8cb3a7c0d5..de8cf672c8 100644 --- a/wiki/translations/ja/TechDraw_Module.md +++ b/wiki/translations/ja/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/ja 1. REDIRECT [TechDraw\_Workbench/ja](TechDraw_Workbench/ja.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/ja diff --git a/wiki/translations/ja/TechDraw_Workbench.md b/wiki/translations/ja/TechDraw_Workbench.md index bd01e4066b..27bc2beefc 100644 --- a/wiki/translations/ja/TechDraw_Workbench.md +++ b/wiki/translations/ja/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/ja - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/ja ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/ja diff --git a/wiki/translations/ja/Third_Party_Libraries.md b/wiki/translations/ja/Third_Party_Libraries.md index f907353735..a6bb3d2b08 100644 --- a/wiki/translations/ja/Third_Party_Libraries.md +++ b/wiki/translations/ja/Third_Party_Libraries.md @@ -1,10 +1,4 @@ # Third Party Libraries/ja - - - - - - {{TOCright}} @@ -502,3 +496,6 @@ It includes among other things: Boost 1.67, Coin3D 4.0.0a, Eigen3, Open CASCADE [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Libraries/ja diff --git a/wiki/translations/ja/Third_Party_Tools.md b/wiki/translations/ja/Third_Party_Tools.md index 501d0b87e4..a2959168d9 100644 --- a/wiki/translations/ja/Third_Party_Tools.md +++ b/wiki/translations/ja/Third_Party_Tools.md @@ -1,10 +1,4 @@ # Third Party Tools/ja - - - - - - {{TOCright}} ## Tool Page @@ -161,3 +155,6 @@ TODO [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Tools/ja diff --git a/wiki/translations/ja/Tracker.md b/wiki/translations/ja/Tracker.md index 1d60ac7d9b..4994a2e565 100644 --- a/wiki/translations/ja/Tracker.md +++ b/wiki/translations/ja/Tracker.md @@ -1,10 +1,4 @@ # Tracker/ja - - - - - - {{TOCright}} ![](images/Mantis_logo_262x90.png ) @@ -196,3 +190,6 @@ For the inquisitive here is the regex MantisBT uses for this operation: [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Tracker/ja diff --git a/wiki/translations/ja/User_hub.md b/wiki/translations/ja/User_hub.md index 49b36f836d..8b9332f2df 100644 --- a/wiki/translations/ja/User_hub.md +++ b/wiki/translations/ja/User_hub.md @@ -1,5 +1,4 @@ -# User hub/ja - +# User hub/ja ------------------------------------------------------------------------ @@ -204,3 +203,6 @@ Since FreeCAD 0.17, many workbenches can be installed using the [Addon Manager]( [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/ja diff --git a/wiki/translations/ja/Workbenches.md b/wiki/translations/ja/Workbenches.md index 9dca558964..b9d914f027 100644 --- a/wiki/translations/ja/Workbenches.md +++ b/wiki/translations/ja/Workbenches.md @@ -1,7 +1,4 @@ # Workbenches/ja - - -
[Revitや](wikipedia:Revit.md)[Catiaといった多くの現代的なデザインのためのアプリケーションと同様](wikipedia:CATIA.md)、FreeCADは[ワークベンチというコンセプトを基盤にしています](wikipedia:Workbench.md)。ワークベンチとは言うなれば特定の作業のために特別に編成されたツールのセットです。伝統的な家具工房では木材を扱う者のための作業台や金属部品を扱う者のための作業台があり、恐らくは全ての部品を一つに組み立てる者のための作業台もあったことでしょう。 @@ -120,3 +117,6 @@ The [external workbenches](external_workbenches.md) page lists all that are know [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/ja diff --git a/wiki/translations/ko/3D_view.md b/wiki/translations/ko/3D_view.md index 5585d66c3f..21aacc8c9a 100644 --- a/wiki/translations/ko/3D_view.md +++ b/wiki/translations/ko/3D_view.md @@ -1,6 +1,4 @@ # 3D view/ko - - ## Introduction @@ -87,4 +85,7 @@ For more information see the power user documentation: {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > 3D view/ko diff --git a/wiki/translations/ko/About_FreeCAD.md b/wiki/translations/ko/About_FreeCAD.md index 95c2363250..d0b973f9eb 100644 --- a/wiki/translations/ko/About_FreeCAD.md +++ b/wiki/translations/ko/About_FreeCAD.md @@ -1,7 +1,4 @@ # About FreeCAD/ko - - -
@@ -55,3 +52,6 @@ FreeCAD는 열정적인 개발자와 사용자 커뮤니티가 유지하고 개 [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/ko diff --git a/wiki/translations/ko/Aeroplane.md b/wiki/translations/ko/Aeroplane.md index 4098025782..7be42dafbe 100644 --- a/wiki/translations/ko/Aeroplane.md +++ b/wiki/translations/ko/Aeroplane.md @@ -1,5 +1,5 @@ # Aeroplane/ko - {{TutorialInfo +{{TutorialInfo |Topic=Part Workbench |Level=Beginner |Time=10 minutes @@ -99,4 +99,7 @@ I hope this little tutorial has helped you to get a feel for rotations. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Aeroplane/ko diff --git a/wiki/translations/ko/Arch_Module.md b/wiki/translations/ko/Arch_Module.md index 3b315d6977..14fb52e1e2 100644 --- a/wiki/translations/ko/Arch_Module.md +++ b/wiki/translations/ko/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/ko 1. REDIRECT [Arch\_Workbench/ko](Arch_Workbench/ko.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/ko diff --git a/wiki/translations/ko/Arch_Workbench.md b/wiki/translations/ko/Arch_Workbench.md index b13de894ac..eb9c0a8f8f 100644 --- a/wiki/translations/ko/Arch_Workbench.md +++ b/wiki/translations/ko/Arch_Workbench.md @@ -1,7 +1,4 @@ # Arch Workbench/ko - - - {{docnav/ko|[Workbenches/ko](Workbenches/ko.md)|[Draft Module/ko](Draft_Module/ko.md)|IconL=|IconR=Workbench_Draft.svg}} Arch workbench icon @@ -139,3 +136,6 @@ The Arch module can be used in [Python](Python.md) scripts and [macros](macros.m [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/ko diff --git a/wiki/translations/ko/Category:Administration.md b/wiki/translations/ko/Category:Administration.md index 7a9c798927..a59b34728e 100644 --- a/wiki/translations/ko/Category:Administration.md +++ b/wiki/translations/ko/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Changelog/ko](Changelog/ko.md) , [Category:Categories/ko](Category:Categories/ko.md) [Category:Wiki/ko](Category:Wiki/ko.md) + +--- +[documentation index](../README.md) > Category:Administration/ko diff --git a/wiki/translations/ko/Category:Categories.md b/wiki/translations/ko/Category:Categories.md index 0adfc75f8e..ab90f5819e 100644 --- a/wiki/translations/ko/Category:Categories.md +++ b/wiki/translations/ko/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , [Category:Categories/ko](Category:Categories/ko.md) [Category:Administration/ko](Category:Administration/ko.md) [Category:Categories/ko](Category:Categories/ko.md) [Category:Developer/ko](Category:Developer/ko.md) [Category:Documentation/ko](Category:Documentation/ko.md) [Category:Hubs/ko](Category:Hubs/ko.md) [Category:News/ko](Category:News/ko.md) [Category:Wiki/ko](Category:Wiki/ko.md) + +--- +[documentation index](../README.md) > Category:Categories/ko diff --git a/wiki/translations/ko/Category:Command_Reference.md b/wiki/translations/ko/Category:Command_Reference.md index 7b1b71a2b9..100a29e2eb 100644 --- a/wiki/translations/ko/Category:Command_Reference.md +++ b/wiki/translations/ko/Category:Command_Reference.md @@ -2,3 +2,6 @@ ### Contents: [Template:GuiCommand/ko](Template:GuiCommand/ko.md) , [Part Box/ko](Part_Box/ko.md) , [PartDesign Body/ko](PartDesign_Body/ko.md) , [Std Alignment/ko](Std_Alignment/ko.md) , [Std BoxElementSelection/ko](Std_BoxElementSelection/ko.md) , [Std BoxSelection/ko](Std_BoxSelection/ko.md) , [Std CloseActiveWindow/ko](Std_CloseActiveWindow/ko.md) , [Std CloseAllWindows/ko](Std_CloseAllWindows/ko.md) , [Std Copy/ko](Std_Copy/ko.md) , [Std Cut/ko](Std_Cut/ko.md) , [Std Delete/ko](Std_Delete/ko.md) , [Std DependencyGraph/ko](Std_DependencyGraph/ko.md) , [Std DlgPreferences/ko](Std_DlgPreferences/ko.md) , [Std DuplicateSelection/ko](Std_DuplicateSelection/ko.md) , [Std Edit/ko](Std_Edit/ko.md) , [Std Export/ko](Std_Export/ko.md) , [Std Group/ko](Std_Group/ko.md) , [Std Import/ko](Std_Import/ko.md) , [Std MainFullscreen/ko](Std_MainFullscreen/ko.md) , [Std MergeProjects/ko](Std_MergeProjects/ko.md) , [Std New/ko](Std_New/ko.md) , [Std Open/ko](Std_Open/ko.md) , [Std OrthographicCamera/ko](Std_OrthographicCamera/ko.md) , [Std Part/ko](Std_Part/ko.md) , [Std Paste/ko](Std_Paste/ko.md) , [Std PerspectiveCamera/ko](Std_PerspectiveCamera/ko.md) , [Std Placement/ko](Std_Placement/ko.md) , [Std Print/ko](Std_Print/ko.md) , [Std PrintPdf/ko](Std_PrintPdf/ko.md) , [Std PrintPreview/ko](Std_PrintPreview/ko.md) , [Std ProjectInfo/ko](Std_ProjectInfo/ko.md) , [Std Quit/ko](Std_Quit/ko.md) , [Std RecentFiles/ko](Std_RecentFiles/ko.md) , [Std Redo/ko](Std_Redo/ko.md) , [Std Refresh/ko](Std_Refresh/ko.md) , [Std Revert/ko](Std_Revert/ko.md) , [Std Save/ko](Std_Save/ko.md) , [Std SaveAll/ko](Std_SaveAll/ko.md) , [Std SaveAs/ko](Std_SaveAs/ko.md) , [Std SaveCopy/ko](Std_SaveCopy/ko.md) , [Std SelectAll/ko](Std_SelectAll/ko.md) , [Std SendToPythonConsole/ko](Std_SendToPythonConsole/ko.md) , [Std Undo/ko](Std_Undo/ko.md) , [Std ViewCreate/ko](Std_ViewCreate/ko.md) , [Std ViewDimetric/ko](Std_ViewDimetric/ko.md) , [Std ViewDockUndockFullscreen/ko](Std_ViewDockUndockFullscreen/ko.md) , [Std ViewFitAll/ko](Std_ViewFitAll/ko.md) , [Std ViewFitSelection/ko](Std_ViewFitSelection/ko.md) , [Std ViewFullscreen/ko](Std_ViewFullscreen/ko.md) , [Std ViewIsometric/ko](Std_ViewIsometric/ko.md) , [Std ViewScreenShot/ko](Std_ViewScreenShot/ko.md) , [Tasks Placement/ko](Tasks_Placement/ko.md) + +--- +[documentation index](../README.md) > Category:Command Reference/ko diff --git a/wiki/translations/ko/Category:Developer.md b/wiki/translations/ko/Category:Developer.md index 2db5b02b9c..50ed9d9fb5 100644 --- a/wiki/translations/ko/Category:Developer.md +++ b/wiki/translations/ko/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Changelog/ko](Changelog/ko.md) , [Compile on Linux/ko](Compile_on_Linux/ko.md) [Category:Categories/ko](Category:Categories/ko.md) + +--- +[documentation index](../README.md) > Category:Developer/ko diff --git a/wiki/translations/ko/Category:Developer_Documentation.md b/wiki/translations/ko/Category:Developer_Documentation.md index bc9c680356..62c6136773 100644 --- a/wiki/translations/ko/Category:Developer_Documentation.md +++ b/wiki/translations/ko/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Compile on Linux/ko](Compile_on_Linux/ko.md) , [Developer hub/ko](Developer_hub/ko.md) , [FreeCAD Scripting Basics/ko](FreeCAD_Scripting_Basics/ko.md) , [Help FreeCAD/ko](Help_FreeCAD/ko.md) , [Introduction to Python/ko](Introduction_to_Python/ko.md) , [Localisation/ko](Localisation/ko.md) , [Python scripting tutorial/ko](Python_scripting_tutorial/ko.md) , [Scripting and macros/ko](Scripting_and_macros/ko.md) [Category:Documentation/ko](Category:Documentation/ko.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/ko diff --git a/wiki/translations/ko/Category:Documentation.md b/wiki/translations/ko/Category:Documentation.md index f8b416b559..80a8856e72 100644 --- a/wiki/translations/ko/Category:Documentation.md +++ b/wiki/translations/ko/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [Help FreeCAD/ko](Help_FreeCAD/ko.md) , [Main Page/ko](Main_Page/ko.md) , [Online Help Toc/ko](Online_Help_Toc/ko.md) , [Release notes 0.17/ko](Release_notes_0.17/ko.md) , [Release notes 0.18/ko](Release_notes_0.18/ko.md) , , , [Category:Categories/ko](Category:Categories/ko.md) [Category:Developer Documentation/ko](Category:Developer_Documentation/ko.md) [Category:User Documentation/ko](Category:User_Documentation/ko.md) [Category:Wiki/ko](Category:Wiki/ko.md) + +--- +[documentation index](../README.md) > Category:Documentation/ko diff --git a/wiki/translations/ko/Category:File_Formats.md b/wiki/translations/ko/Category:File_Formats.md index c323f139fd..814ea2ffcd 100644 --- a/wiki/translations/ko/Category:File_Formats.md +++ b/wiki/translations/ko/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [FreeCAD and DWG Import/ko](FreeCAD_and_DWG_Import/ko.md) , [Import Export Preferences/ko](Import_Export_Preferences/ko.md) , [Import Export/ko](Import_Export/ko.md) , [Import from STL or OBJ/ko](Import_from_STL_or_OBJ/ko.md) , [PDF/ko](PDF/ko.md) , [Std Export/ko](Std_Export/ko.md) , [Std Import/ko](Std_Import/ko.md) + +--- +[documentation index](../README.md) > Category:File Formats/ko diff --git a/wiki/translations/ko/Category:Hubs.md b/wiki/translations/ko/Category:Hubs.md index b00fdcf5bd..14bbd8fb9b 100644 --- a/wiki/translations/ko/Category:Hubs.md +++ b/wiki/translations/ko/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Developer hub/ko](Developer_hub/ko.md) , [Power users hub/ko](Power_users_hub/ko.md) , [User hub/ko](User_hub/ko.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Hubs/ko diff --git a/wiki/translations/ko/Category:News.md b/wiki/translations/ko/Category:News.md index 794aefdf58..09194875e1 100644 --- a/wiki/translations/ko/Category:News.md +++ b/wiki/translations/ko/Category:News.md @@ -6,3 +6,6 @@ This category contains articles with news and messages about FreeCAD. [History/ko](History/ko.md) , [Release notes 0.17/ko](Release_notes_0.17/ko.md) , [Release notes 0.18/ko](Release_notes_0.18/ko.md) [Category:Categories/ko](Category:Categories/ko.md) + +--- +[documentation index](../README.md) > Category:News/ko diff --git a/wiki/translations/ko/Category:Preferences.md b/wiki/translations/ko/Category:Preferences.md index 538da73029..3433391b50 100644 --- a/wiki/translations/ko/Category:Preferences.md +++ b/wiki/translations/ko/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Import Export Preferences/ko](Import_Export_Preferences/ko.md) , [Preferences Editor/ko](Preferences_Editor/ko.md) + +--- +[documentation index](../README.md) > Category:Preferences/ko diff --git a/wiki/translations/ko/Category:User_Documentation.md b/wiki/translations/ko/Category:User_Documentation.md index 2c4545f1c2..47545f2eb6 100644 --- a/wiki/translations/ko/Category:User_Documentation.md +++ b/wiki/translations/ko/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [3D view/ko](3D_view/ko.md) , [About FreeCAD/ko](About_FreeCAD/ko.md) , [Aeroplane/ko](Aeroplane/ko.md) , [Arch Workbench/ko](Arch_Workbench/ko.md) , [Compile on Linux/ko](Compile_on_Linux/ko.md) , [Developer hub/ko](Developer_hub/ko.md) , [Document structure/ko](Document_structure/ko.md) , [Download/ko](Download/ko.md) , [Draft Workbench/ko](Draft_Workbench/ko.md) , [Feature list/ko](Feature_list/ko.md) , [FreeCAD and DWG Import/ko](FreeCAD_and_DWG_Import/ko.md) , [Getting started/ko](Getting_started/ko.md) , [Template:GuiCommand/ko](Template:GuiCommand/ko.md) , [Help FreeCAD/ko](Help_FreeCAD/ko.md) , [Import Export Preferences/ko](Import_Export_Preferences/ko.md) , [Import Export/ko](Import_Export/ko.md) , [Import from STL or OBJ/ko](Import_from_STL_or_OBJ/ko.md) , [Interface Customization/ko](Interface_Customization/ko.md) , [Localisation/ko](Localisation/ko.md) , [Main Page/ko](Main_Page/ko.md) , [Main view area/ko](Main_view_area/ko.md) , [Mesh Workbench/ko](Mesh_Workbench/ko.md) , [Navigation Cube/ko](Navigation_Cube/ko.md) , [Online Help Toc/ko](Online_Help_Toc/ko.md) , [Part Box/ko](Part_Box/ko.md) , [PartDesign Body/ko](PartDesign_Body/ko.md) , [PartDesign Workbench/ko](PartDesign_Workbench/ko.md) , [PDF/ko](PDF/ko.md) , [Placement/ko](Placement/ko.md) , [Preferences Editor/ko](Preferences_Editor/ko.md) , [Property editor/ko](Property_editor/ko.md) , [Python console/ko](Python_console/ko.md) , [Raytracing Workbench/ko](Raytracing_Workbench/ko.md) , [Sketch/ko](Sketch/ko.md) , [Sketcher Dialog/ko](Sketcher_Dialog/ko.md) , [Spreadsheet Workbench/ko](Spreadsheet_Workbench/ko.md) , [Standard Menu/ko](Standard_Menu/ko.md) , [Std Alignment/ko](Std_Alignment/ko.md) , [Std Base/ko](Std_Base/ko.md) , [Std BoxElementSelection/ko](Std_BoxElementSelection/ko.md) , [Std BoxSelection/ko](Std_BoxSelection/ko.md) , [Std CloseActiveWindow/ko](Std_CloseActiveWindow/ko.md) , [Std CloseAllWindows/ko](Std_CloseAllWindows/ko.md) , [Std Copy/ko](Std_Copy/ko.md) , [Std Cut/ko](Std_Cut/ko.md) , [Std Delete/ko](Std_Delete/ko.md) , [Std DependencyGraph/ko](Std_DependencyGraph/ko.md) , [Std DlgPreferences/ko](Std_DlgPreferences/ko.md) , [Std DuplicateSelection/ko](Std_DuplicateSelection/ko.md) , [Std Edit Menu/ko](Std_Edit_Menu/ko.md) , [Std Edit/ko](Std_Edit/ko.md) , [Std Export/ko](Std_Export/ko.md) , [Std File Menu/ko](Std_File_Menu/ko.md) , [Std Group/ko](Std_Group/ko.md) , [Std Help Menu/ko](Std_Help_Menu/ko.md) , [Std Import/ko](Std_Import/ko.md) , [Std Macro Menu/ko](Std_Macro_Menu/ko.md) , [Std MainFullscreen/ko](Std_MainFullscreen/ko.md) , [Std MergeProjects/ko](Std_MergeProjects/ko.md) , [Std New/ko](Std_New/ko.md) , [Std Open/ko](Std_Open/ko.md) , [Std OrthographicCamera/ko](Std_OrthographicCamera/ko.md) , [Std Part/ko](Std_Part/ko.md) , [Std Paste/ko](Std_Paste/ko.md) , [Std PerspectiveCamera/ko](Std_PerspectiveCamera/ko.md) , [Std Placement/ko](Std_Placement/ko.md) , [Std Print/ko](Std_Print/ko.md) , [Std PrintPdf/ko](Std_PrintPdf/ko.md) , [Std PrintPreview/ko](Std_PrintPreview/ko.md) , [Std ProjectInfo/ko](Std_ProjectInfo/ko.md) , [Std Quit/ko](Std_Quit/ko.md) , [Std RecentFiles/ko](Std_RecentFiles/ko.md) , [Std Redo/ko](Std_Redo/ko.md) , [Std Refresh/ko](Std_Refresh/ko.md) , [Std Revert/ko](Std_Revert/ko.md) , [Std Save/ko](Std_Save/ko.md) , [Std SaveAll/ko](Std_SaveAll/ko.md) , [Std SaveAs/ko](Std_SaveAs/ko.md) , [Std SaveCopy/ko](Std_SaveCopy/ko.md) , [Std SelectAll/ko](Std_SelectAll/ko.md) , [Std SendToPythonConsole/ko](Std_SendToPythonConsole/ko.md) , [Std Tools Menu/ko](Std_Tools_Menu/ko.md) , [Std Undo/ko](Std_Undo/ko.md) , [Std View Menu/ko](Std_View_Menu/ko.md) , [Std ViewCreate/ko](Std_ViewCreate/ko.md) , [Std ViewDimetric/ko](Std_ViewDimetric/ko.md) , [Std ViewDockUndockFullscreen/ko](Std_ViewDockUndockFullscreen/ko.md) , [Std ViewFitAll/ko](Std_ViewFitAll/ko.md) , [Std ViewFitSelection/ko](Std_ViewFitSelection/ko.md) , [Std ViewFullscreen/ko](Std_ViewFullscreen/ko.md) , [Std ViewIsometric/ko](Std_ViewIsometric/ko.md) , [Std ViewScreenShot/ko](Std_ViewScreenShot/ko.md) , [Std Windows Menu/ko](Std_Windows_Menu/ko.md) , [Task panel/ko](Task_panel/ko.md) , [Tasks Placement/ko](Tasks_Placement/ko.md) , [TechDraw Workbench/ko](TechDraw_Workbench/ko.md) , [Tree view/ko](Tree_view/ko.md) , [Tutorials/ko](Tutorials/ko.md) , [User hub/ko](User_hub/ko.md) , [Workbenches/ko](Workbenches/ko.md) [Category:Documentation/ko](Category:Documentation/ko.md) + +--- +[documentation index](../README.md) > Category:User Documentation/ko diff --git a/wiki/translations/ko/Category:Wiki.md b/wiki/translations/ko/Category:Wiki.md index c55dd5830c..65c62e00a9 100644 --- a/wiki/translations/ko/Category:Wiki.md +++ b/wiki/translations/ko/Category:Wiki.md @@ -6,3 +6,6 @@ This category contains all documents that relate to the Wiki. [Localisation/ko](Localisation/ko.md) [Category:Administration/ko](Category:Administration/ko.md) [Category:Categories/ko](Category:Categories/ko.md) [Category:Documentation/ko](Category:Documentation/ko.md) + +--- +[documentation index](../README.md) > Category:Wiki/ko diff --git a/wiki/translations/ko/Category:Workbenches.md b/wiki/translations/ko/Category:Workbenches.md index c7d1d23fdd..efbe8e4c47 100644 --- a/wiki/translations/ko/Category:Workbenches.md +++ b/wiki/translations/ko/Category:Workbenches.md @@ -2,3 +2,6 @@ ### Contents: [Arch Workbench/ko](Arch_Workbench/ko.md) , [Draft Workbench/ko](Draft_Workbench/ko.md) , [Mesh Workbench/ko](Mesh_Workbench/ko.md) , [PartDesign Workbench/ko](PartDesign_Workbench/ko.md) , [Raytracing Workbench/ko](Raytracing_Workbench/ko.md) , [Spreadsheet Workbench/ko](Spreadsheet_Workbench/ko.md) , [Std Base/ko](Std_Base/ko.md) , [Std Edit Menu/ko](Std_Edit_Menu/ko.md) , [Std File Menu/ko](Std_File_Menu/ko.md) , [Std Help Menu/ko](Std_Help_Menu/ko.md) , [Std Macro Menu/ko](Std_Macro_Menu/ko.md) , [Std Tools Menu/ko](Std_Tools_Menu/ko.md) , [Std View Menu/ko](Std_View_Menu/ko.md) , [Std Windows Menu/ko](Std_Windows_Menu/ko.md) , [TechDraw Workbench/ko](TechDraw_Workbench/ko.md) , [Workbenches/ko](Workbenches/ko.md) + +--- +[documentation index](../README.md) > Category:Workbenches/ko diff --git a/wiki/translations/ko/Changelog.md b/wiki/translations/ko/Changelog.md index 2804bb252a..4a3d582150 100644 --- a/wiki/translations/ko/Changelog.md +++ b/wiki/translations/ko/Changelog.md @@ -1,5 +1,5 @@ # Changelog/ko - FreeCAD 변경로그는 mantis tracker에서 유지 관리합니다: +FreeCAD 변경로그는 mantis tracker에서 유지 관리합니다: @@ -7,3 +7,6 @@ [Category:Administration](Category:Administration.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Changelog/ko diff --git a/wiki/translations/ko/CompileOnUnix.md b/wiki/translations/ko/CompileOnUnix.md index 7b3a23a50d..383234e090 100644 --- a/wiki/translations/ko/CompileOnUnix.md +++ b/wiki/translations/ko/CompileOnUnix.md @@ -1,2 +1,5 @@ # CompileOnUnix/ko 1. REDIRECT [Compile\_on\_Linux/ko](Compile_on_Linux/ko.md) + +--- +[documentation index](../README.md) > CompileOnUnix/ko diff --git a/wiki/translations/ko/Compile_on_Linux.md b/wiki/translations/ko/Compile_on_Linux.md index d35d410451..6074e957e2 100644 --- a/wiki/translations/ko/Compile_on_Linux.md +++ b/wiki/translations/ko/Compile_on_Linux.md @@ -1,10 +1,4 @@ # Compile on Linux/ko - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -1216,3 +1210,6 @@ To update FreeCAD to latest build just repeat from step 3. Update AUR repo when [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Linux/ko diff --git a/wiki/translations/ko/Developer_hub.md b/wiki/translations/ko/Developer_hub.md index 687e4493b5..a5d06ac4ad 100644 --- a/wiki/translations/ko/Developer_hub.md +++ b/wiki/translations/ko/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/ko - - ![150](images/Crystal_Clear_app_tutorials.png ) 이곳은 FreeCAD 개발에 기여하고 싶다면 올 장소입니다. @@ -195,3 +193,6 @@ FreeCAD, though usable in certain areas, is at the beginning of a long way into [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/ko diff --git a/wiki/translations/ko/Development_roadmap.md b/wiki/translations/ko/Development_roadmap.md index cabf3427d0..c3131ea384 100644 --- a/wiki/translations/ko/Development_roadmap.md +++ b/wiki/translations/ko/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/ko - **Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** +**Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** FreeCAD는 많은 응용 분야에서 사용 가능하지만 CAD 주류에 대한 오랜 여행의 시작입니다. 상용 소프트웨어와 경쟁할 수 있는 위치에 도달하려면 아직 할 일이 많습니다. @@ -44,3 +44,6 @@ Like in the most [FLOSS](http://en.wikipedia.org/wiki/FLOSS) projects a release [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/ko diff --git a/wiki/translations/ko/Document_structure.md b/wiki/translations/ko/Document_structure.md index f8c779d49b..0421e4c457 100644 --- a/wiki/translations/ko/Document_structure.md +++ b/wiki/translations/ko/Document_structure.md @@ -1,7 +1,4 @@ # Document structure/ko - - -
@@ -57,5 +54,5 @@ FreeCADGui.ActiveDocument.ActiveView
- - +--- +[documentation index](../README.md) > Document structure/ko diff --git a/wiki/translations/ko/Download.md b/wiki/translations/ko/Download.md index 4554ea6bfc..ff33e6d9ec 100644 --- a/wiki/translations/ko/Download.md +++ b/wiki/translations/ko/Download.md @@ -1,5 +1,5 @@ # Download/ko - {{TOCright}} +{{TOCright}}
@@ -61,5 +61,5 @@ FreeCAD\'s development is active. The FreeCAD community provides many additional modules and macros. Since 0.17 they can be easily installed from within FreeCAD using the [Addon manager](Addon_Manager.md) . - - +--- +[documentation index](../README.md) > Download/ko diff --git a/wiki/translations/ko/Draft_Module.md b/wiki/translations/ko/Draft_Module.md index aeefc5ea61..cb74c6f57e 100644 --- a/wiki/translations/ko/Draft_Module.md +++ b/wiki/translations/ko/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/ko 1. REDIRECT [Draft\_Workbench/ko](Draft_Workbench/ko.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/ko diff --git a/wiki/translations/ko/Draft_Workbench.md b/wiki/translations/ko/Draft_Workbench.md index 9e535ffb51..119f9fe325 100644 --- a/wiki/translations/ko/Draft_Workbench.md +++ b/wiki/translations/ko/Draft_Workbench.md @@ -1,7 +1,4 @@ # Draft Workbench/ko - - - {{docnav|[Arch Workbench](Arch_Workbench.md)|[Drawing Workbench](Drawing_Workbench.md)|IconL=Workbench_Arch.svg|IconR=Workbench_Drawing.svg}} Draft workbench icon @@ -370,3 +367,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/ko diff --git a/wiki/translations/ko/Feature_list.md b/wiki/translations/ko/Feature_list.md index 528c1f06ac..b1b31590ee 100644 --- a/wiki/translations/ko/Feature_list.md +++ b/wiki/translations/ko/Feature_list.md @@ -1,7 +1,4 @@ # Feature list/ko - - -
@@ -137,3 +134,6 @@ Power users have created various custom [external workbenches](external_workbenc [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/ko diff --git a/wiki/translations/ko/FreeCAD_Scripting_Basics.md b/wiki/translations/ko/FreeCAD_Scripting_Basics.md index bd9393667a..54f8c25bf3 100644 --- a/wiki/translations/ko/FreeCAD_Scripting_Basics.md +++ b/wiki/translations/ko/FreeCAD_Scripting_Basics.md @@ -1,7 +1,4 @@ # FreeCAD Scripting Basics/ko - - - {{TOCright}} ## Python scripting in FreeCAD @@ -211,3 +208,6 @@ Now you can really start playing with FreeCAD! For a complete list of available }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Scripting Basics/ko diff --git a/wiki/translations/ko/FreeCAD_and_DWG_Import.md b/wiki/translations/ko/FreeCAD_and_DWG_Import.md index 81e71f8406..5ba8aaacc2 100644 --- a/wiki/translations/ko/FreeCAD_and_DWG_Import.md +++ b/wiki/translations/ko/FreeCAD_and_DWG_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DWG Import/ko - {{TOCright}} +{{TOCright}} {{Fake heading|sub=4|< Back to [[FreeCAD Howto Import Export]]}} @@ -202,3 +202,6 @@ In development version as mentioned above you can switch from the proprietary OD [Category:File\_Formats](Category:File_Formats.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > FreeCAD and DWG Import/ko diff --git a/wiki/translations/ko/Getting_started.md b/wiki/translations/ko/Getting_started.md index ae50beb217..8cbb565467 100644 --- a/wiki/translations/ko/Getting_started.md +++ b/wiki/translations/ko/Getting_started.md @@ -1,7 +1,4 @@ # Getting started/ko - - -
@@ -255,3 +252,6 @@ There are two types of addons: [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Getting started/ko diff --git a/wiki/translations/ko/Help_FreeCAD.md b/wiki/translations/ko/Help_FreeCAD.md index b93bde4615..96eaaf6690 100644 --- a/wiki/translations/ko/Help_FreeCAD.md +++ b/wiki/translations/ko/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/ko - - ## Introduction @@ -182,3 +180,6 @@ Writing code for FreeCAD is not hard, and you don\'t need any permission, you ca [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command Reference]] page lists and documents all of the FreeCAD ](Category:Command Reference]] page lists and documents all of the FreeCAD .md) > Help FreeCAD/ko diff --git a/wiki/translations/ko/History.md b/wiki/translations/ko/History.md index ec01bb20ed..cf05215776 100644 --- a/wiki/translations/ko/History.md +++ b/wiki/translations/ko/History.md @@ -1,5 +1,5 @@ # History/ko - \_\_FORCETOC\_\_ +\_\_FORCETOC\_\_
@@ -165,3 +165,6 @@ In April 2019 the team of core developers was expanded: Jürgen, Werner and Yori
[Category:News](Category:News.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > History/ko diff --git a/wiki/translations/ko/Import_Export.md b/wiki/translations/ko/Import_Export.md index 6a8dc41a03..a778621815 100644 --- a/wiki/translations/ko/Import_Export.md +++ b/wiki/translations/ko/Import_Export.md @@ -1,9 +1,4 @@ # Import Export/ko - - - - - ## Introduction This page lists the various file formats that FreeCAD can import and export. For completeness the FreeCAD native format is included in the list. Some formats have a related wiki page that can be reached by clicking on the extension in the first column. @@ -144,3 +139,6 @@ See the following pages for additional information: [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export/ko diff --git a/wiki/translations/ko/Import_Export_Preferences.md b/wiki/translations/ko/Import_Export_Preferences.md index bb9ba91a1c..8f33058601 100644 --- a/wiki/translations/ko/Import_Export_Preferences.md +++ b/wiki/translations/ko/Import_Export_Preferences.md @@ -1,10 +1,4 @@ # Import Export Preferences/ko - - - - - - {{TOCright}} ## Introduction @@ -627,3 +621,6 @@ For the VTK format you can specify the following: [Category:Common Questions](Category:Common_Questions.md) [Category:Preferences](Category:Preferences.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preferences/ko diff --git a/wiki/translations/ko/Import_from_STL_or_OBJ.md b/wiki/translations/ko/Import_from_STL_or_OBJ.md index ba35e2cc1d..1bed8f55a8 100644 --- a/wiki/translations/ko/Import_from_STL_or_OBJ.md +++ b/wiki/translations/ko/Import_from_STL_or_OBJ.md @@ -1,5 +1,5 @@ # Import from STL or OBJ/ko - {{TutorialInfo +{{TutorialInfo |Topic= Import from STL or OBJ |Level= Beginner |Time= 30 minutes @@ -101,3 +101,6 @@ Since the created solid has no history and no editable features (like a simple c [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import from STL or OBJ/ko diff --git a/wiki/translations/ko/Install_on_Unix.md b/wiki/translations/ko/Install_on_Unix.md index e4904194d6..4c007ea3a8 100644 --- a/wiki/translations/ko/Install_on_Unix.md +++ b/wiki/translations/ko/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/ko 1. REDIRECT [Installing\_on\_Linux](Installing_on_Linux.md) + +--- +[documentation index](../README.md) > Install on Unix/ko diff --git a/wiki/translations/ko/Installing.md b/wiki/translations/ko/Installing.md index 5408e5ae99..43b21ae974 100644 --- a/wiki/translations/ko/Installing.md +++ b/wiki/translations/ko/Installing.md @@ -1,2 +1,5 @@ # Installing/ko 1. REDIRECT [Installing\_additional\_components/ko](Installing_additional_components/ko.md) + +--- +[documentation index](../README.md) > Installing/ko diff --git a/wiki/translations/ko/Installing_additional_components.md b/wiki/translations/ko/Installing_additional_components.md index cb38b88c48..60c1d2a4a2 100644 --- a/wiki/translations/ko/Installing_additional_components.md +++ b/wiki/translations/ko/Installing_additional_components.md @@ -1,7 +1,4 @@ # Installing additional components/ko - - -
@@ -142,3 +139,6 @@ The [ODA File Converter](https://www.opendesign.com/guestfiles/oda_file_converte [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Installing additional components/ko diff --git a/wiki/translations/ko/Interface_Customization.md b/wiki/translations/ko/Interface_Customization.md index 27b9a5610c..d9576cabdb 100644 --- a/wiki/translations/ko/Interface_Customization.md +++ b/wiki/translations/ko/Interface_Customization.md @@ -1,7 +1,4 @@ # Interface Customization/ko - - -
@@ -305,4 +302,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/ko diff --git a/wiki/translations/ko/Introduction_to_Python.md b/wiki/translations/ko/Introduction_to_Python.md index 17281d4d19..2c29f6ceb8 100644 --- a/wiki/translations/ko/Introduction_to_Python.md +++ b/wiki/translations/ko/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/ko - - - {{TOCright}} ## Introduction @@ -501,3 +498,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/ko diff --git a/wiki/translations/ko/Localisation.md b/wiki/translations/ko/Localisation.md index 09201ff0aa..f63a5731be 100644 --- a/wiki/translations/ko/Localisation.md +++ b/wiki/translations/ko/Localisation.md @@ -1,7 +1,4 @@ # Localisation/ko - - -
@@ -291,3 +288,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/ko diff --git a/wiki/translations/ko/Main_Page.md b/wiki/translations/ko/Main_Page.md index c0fbd06692..ff7ab20009 100644 --- a/wiki/translations/ko/Main_Page.md +++ b/wiki/translations/ko/Main_Page.md @@ -1,7 +1,4 @@ # Main Page/ko - - -
## 소개 @@ -99,3 +96,6 @@ FreeCAD는 모든 플랫폼에서 [CMake](https://cmake.org/)를 사용하여 [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/ko diff --git a/wiki/translations/ko/Main_view_area.md b/wiki/translations/ko/Main_view_area.md index 7157a060c6..7cae523c2d 100644 --- a/wiki/translations/ko/Main_view_area.md +++ b/wiki/translations/ko/Main_view_area.md @@ -1,6 +1,4 @@ # Main view area/ko - - ## Introduction The [main view area](main_view_area.md) is the main widget that holds sub-windows in the [interface](interface.md). It is an instance of Qt\'s [QMdiArea](https://doc.qt.io/qt-5/qmdiarea.html). @@ -19,4 +17,7 @@ The windows in the main view area can be organized with commands located in the {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Main view area/ko diff --git a/wiki/translations/ko/Manual:Introduction.md b/wiki/translations/ko/Manual:Introduction.md index c22bb76c19..1a8c7036a5 100644 --- a/wiki/translations/ko/Manual:Introduction.md +++ b/wiki/translations/ko/Manual:Introduction.md @@ -1,7 +1,4 @@ # Manual:Introduction/ko - - -
@@ -34,3 +31,5 @@ The contents of this manual are published under the [Creative Commons 4.0](http:
+--- +[documentation index](../README.md) > Manual:Introduction/ko diff --git a/wiki/translations/ko/Mesh_Workbench.md b/wiki/translations/ko/Mesh_Workbench.md index afe0689fc3..41d82fea42 100644 --- a/wiki/translations/ko/Mesh_Workbench.md +++ b/wiki/translations/ko/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/ko - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench/ko {{TOCright}} @@ -111,3 +105,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/ko diff --git a/wiki/translations/ko/Navigation_Cube.md b/wiki/translations/ko/Navigation_Cube.md index 335d9685bc..09e4399d5c 100644 --- a/wiki/translations/ko/Navigation_Cube.md +++ b/wiki/translations/ko/Navigation_Cube.md @@ -1,10 +1,4 @@ # Navigation Cube/ko - - - - - - {{TOCright}} The navigational cube control, or **navigation cube**, is a user interface graphic aid for reorienting the 3D view. By default, it is visible and resides in the upper right corner of the 3D display. If you are looking at the standard 3D view, it looks like the following: @@ -80,3 +74,6 @@ For more advanced configuration, refer to the [CubeMenu](Interface_Customization [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Navigation Cube/ko diff --git a/wiki/translations/ko/Online_Help_Toc.md b/wiki/translations/ko/Online_Help_Toc.md index 73bd01baef..6f0df5ef9d 100644 --- a/wiki/translations/ko/Online_Help_Toc.md +++ b/wiki/translations/ko/Online_Help_Toc.md @@ -1,7 +1,4 @@ # Online Help Toc/ko - - -
이것은 FreeCAD의 \'\'온라인 도움말 \'\'시스템의 자동 구축에 사용 된 목차입니다. 이 설명서의 인쇄용 버전은 [릴리즈 페이지](https://github.com/FreeCAD/FreeCAD/releases)에서도 사용할 수 있습니다. @@ -166,3 +163,6 @@ [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/ko diff --git a/wiki/translations/ko/PDF.md b/wiki/translations/ko/PDF.md index aae718ac78..e1aecdbcd1 100644 --- a/wiki/translations/ko/PDF.md +++ b/wiki/translations/ko/PDF.md @@ -1,7 +1,4 @@ # PDF/ko - - - {{TOCright}} ## Description @@ -30,3 +27,6 @@ The option to export to PDF is available in the **File → [Export PDF](Std_Expo [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > PDF/ko diff --git a/wiki/translations/ko/PartDesign_Body.md b/wiki/translations/ko/PartDesign_Body.md index b60fc22c2b..09c02c1691 100644 --- a/wiki/translations/ko/PartDesign_Body.md +++ b/wiki/translations/ko/PartDesign_Body.md @@ -7,6 +7,8 @@ SeeAlso:[Std Part](Std_Part.md), [Feature editing](Feature_editing.md) --- +# PartDesign Body/ko + ## Description A [PartDesign Body](PartDesign_Body.md) is the base element to create solids shapes with the [PartDesign Workbench](PartDesign_Workbench.md). It can contain [sketches](Sketch.md), [datum objects](Datum.md), and [PartDesign Features](PartDesign_Feature.md) that help in building a [single contiguous solid](PartDesign_Body#Single_contiguous_solid.md). @@ -289,4 +291,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Body/ko diff --git a/wiki/translations/ko/PartDesign_Workbench.md b/wiki/translations/ko/PartDesign_Workbench.md index 3b298d5e4d..64b66bb465 100644 --- a/wiki/translations/ko/PartDesign_Workbench.md +++ b/wiki/translations/ko/PartDesign_Workbench.md @@ -1,7 +1,4 @@ # PartDesign Workbench/ko - - -
@@ -229,3 +226,6 @@ Some additional functionality found in the Part Design menu: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/ko diff --git a/wiki/translations/ko/Part_Box.md b/wiki/translations/ko/Part_Box.md index 9c4a39685b..ba42d0b8da 100644 --- a/wiki/translations/ko/Part_Box.md +++ b/wiki/translations/ko/Part_Box.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Box/ko + ## Description The Box command from the [Part Workbench](Part_Workbench.md) inserts a parametric, [rectangular cuboid](http://en.wikipedia.org/wiki/Cuboid#Rectangular_cuboid), geometric primitive into the active document. By default, the Box command will insert a 10x10x10 mm cube, positioned at the origin, with the label \"cube\". These parameters may be modified after the object has been added. @@ -65,8 +67,5 @@ You can change its placement with: FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6, 3), FreeCAD.Rotation(30, 45, 10)) ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Box/ko diff --git a/wiki/translations/ko/Placement.md b/wiki/translations/ko/Placement.md index 3d74470d31..5d437472a4 100644 --- a/wiki/translations/ko/Placement.md +++ b/wiki/translations/ko/Placement.md @@ -1,6 +1,4 @@ # Placement/ko - - ## Overview **Placement** is how FreeCAD specifies the location and attitude (orientation) of an object in space. Placement can be specified in multiple forms and manipulated via [scripting](Python_scripting_tutorial#Vectors_and_placements.md), the [property editor](Property_editor.md) or selecting **Edit → Placement...** to open the [Placement task panel](Std_Placement.md). @@ -236,5 +234,5 @@ To make the placement of \"Sketch\" equal to that of \"Cylinder\", you would ent - This tutorial: [Aeroplane](Aeroplane.md) covers the mechanics of changing an object\'s Placement extensively. - - +--- +[documentation index](../README.md) > Placement/ko diff --git a/wiki/translations/ko/Power_users_hub.md b/wiki/translations/ko/Power_users_hub.md index e0b4e7e0c3..5441645f2b 100644 --- a/wiki/translations/ko/Power_users_hub.md +++ b/wiki/translations/ko/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/ko - +# Power users hub/ko ------------------------------------------------------------------------ @@ -162,3 +161,6 @@ On the [Community portal](FreeCAD_Community_Portal.md), you can find other FreeC }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/ko diff --git a/wiki/translations/ko/Preferences_Editor.md b/wiki/translations/ko/Preferences_Editor.md index 5d4632b5a9..d84b69ac22 100644 --- a/wiki/translations/ko/Preferences_Editor.md +++ b/wiki/translations/ko/Preferences_Editor.md @@ -1,7 +1,4 @@ # Preferences Editor/ko - - -
@@ -745,3 +742,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/ko diff --git a/wiki/translations/ko/Property_editor.md b/wiki/translations/ko/Property_editor.md index e211eabd0d..764bfcd496 100644 --- a/wiki/translations/ko/Property_editor.md +++ b/wiki/translations/ko/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/ko - - - - - - {{TOCright}} ## Introduction @@ -245,4 +239,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/ko diff --git a/wiki/translations/ko/Python_console.md b/wiki/translations/ko/Python_console.md index c305e31ae8..73eaafd866 100644 --- a/wiki/translations/ko/Python_console.md +++ b/wiki/translations/ko/Python_console.md @@ -1,5 +1,5 @@ # Python console/ko - **(January 2020) FreeCAD was originally designed to work with Python 2. Since Python 2 reached end of life in 2020, future development of FreeCAD will be done exclusively with Python 3, and backwards compatibility will not be supported.** +**(January 2020) FreeCAD was originally designed to work with Python 2. Since Python 2 reached end of life in 2020, future development of FreeCAD will be done exclusively with Python 3, and backwards compatibility will not be supported.** ## Introduction @@ -86,4 +86,7 @@ Right click on the Python console shows some commands: {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Python console/ko diff --git a/wiki/translations/ko/Python_scripting_tutorial.md b/wiki/translations/ko/Python_scripting_tutorial.md index 27aed86364..1ce8014cda 100644 --- a/wiki/translations/ko/Python_scripting_tutorial.md +++ b/wiki/translations/ko/Python_scripting_tutorial.md @@ -1,7 +1,4 @@ # Python scripting tutorial/ko - - - {{TOCright}} ## 소개 @@ -292,3 +289,6 @@ Now you are ready for more in-depth FreeCAD scripting. So head on to the [Power }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python scripting tutorial/ko diff --git a/wiki/translations/ko/Ray_Tracing_Workbench.md b/wiki/translations/ko/Ray_Tracing_Workbench.md index dda45fef35..da93c3f16c 100644 --- a/wiki/translations/ko/Ray_Tracing_Workbench.md +++ b/wiki/translations/ko/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/ko 1. REDIRECT [Raytracing\_Workbench/ko](Raytracing_Workbench/ko.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/ko diff --git a/wiki/translations/ko/Raytracing_Module.md b/wiki/translations/ko/Raytracing_Module.md index 4be8b39c0f..49b8d090a1 100644 --- a/wiki/translations/ko/Raytracing_Module.md +++ b/wiki/translations/ko/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/ko 1. REDIRECT [Raytracing\_Workbench/ko](Raytracing_Workbench/ko.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/ko diff --git a/wiki/translations/ko/Raytracing_Workbench.md b/wiki/translations/ko/Raytracing_Workbench.md index ff8411610a..4e482a78b2 100644 --- a/wiki/translations/ko/Raytracing_Workbench.md +++ b/wiki/translations/ko/Raytracing_Workbench.md @@ -1,5 +1,5 @@ # Raytracing Workbench/ko - {{docnav|[Points Workbench](Points_Workbench.md)|[Reverse Engineering Workbench](Reverse_Engineering_Workbench.md)|IconL=PointsWorkbench.svg|IconR=ReverseEngineeringWorkbench.svg}} +{{docnav|[Points Workbench](Points_Workbench.md)|[Reverse Engineering Workbench](Reverse_Engineering_Workbench.md)|IconL=PointsWorkbench.svg|IconR=ReverseEngineeringWorkbench.svg}} **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. @@ -157,3 +157,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/ko diff --git a/wiki/translations/ko/Release_notes_0.17.md b/wiki/translations/ko/Release_notes_0.17.md index c56a7b8129..989aa352e1 100644 --- a/wiki/translations/ko/Release_notes_0.17.md +++ b/wiki/translations/ko/Release_notes_0.17.md @@ -1,7 +1,4 @@ # Release notes 0.17/ko - - -
*This release of FreeCAD is dedicated to our friend Roland Frank [who left us in 2017](https://forum.freecadweb.org/viewtopic.php?f=8&t=25673). He was an active and well-appreciated member of the FreeCAD forum, and his video tutorials on the [Learn FreeCAD](https://www.youtube.com/watch?v=_HEvhclR4-o&list=PL6fZ68Cq3L8k0JhxnIVjZQN26cn9idJrj) and [BPLFRE](https://www.youtube.com/watch?v=m49z0weonog&list=PLsrwVwvqYb8G4Ri0iz1JIebsOXkgoytAY) Youtube channels helped many people get started with FreeCAD.* @@ -299,3 +296,6 @@ Some of the new community modules that were created. - [Kicad StepUp Workbench](https://www.freecadweb.org/wiki/KicadStepUp_Workbench) is aimed to help KiCad and FreeCAD users in ECAD and MCAD collaboration. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.17/ko diff --git a/wiki/translations/ko/Release_notes_0.18.md b/wiki/translations/ko/Release_notes_0.18.md index eb4b1b7e82..09bcea1d4f 100644 --- a/wiki/translations/ko/Release_notes_0.18.md +++ b/wiki/translations/ko/Release_notes_0.18.md @@ -1,6 +1,4 @@ # Release notes 0.18/ko - - FreeCAD 0.18은 2019년 3월 12일 나왔습니다. [Download](Download.md) 페이지에서 받으세요. 이것은 가장 흥미로운 변화의 요약입니다. 변화의 완전한 목록은 [MantisBT bugtracker FC 0.18 changelog](https://www.freecadweb.org/tracker/changelog_page.php?version_id=78). 옛 FreeCAD 릴리스 노트는 [Feature list에](Feature_list#Release_notes.md) 있습니다. ## 강조 @@ -218,3 +216,6 @@ Some of the new community modules that were actively developed during the 0.18 d - [Defeaturing Workbench](Defeaturing_Workbench.md) is intended for editing imported STEP models, removal of the selected features from the model. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.18/ko diff --git a/wiki/translations/ko/Screenshots.md b/wiki/translations/ko/Screenshots.md index eace542dfe..5aa8cf31aa 100644 --- a/wiki/translations/ko/Screenshots.md +++ b/wiki/translations/ko/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/ko - {{TOCright}} +{{TOCright}} Here are a few screenshots showing different parts of FreeCAD. They are not ordered in any particular timeline, so the images may differ from your actual version. See more screenshots submitted by FreeCAD users on the [screenshot forum thread](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) and on the [\"Show your project here!\" Users Showcase forum part](http://forum.freecadweb.org/viewforum.php?f=24). @@ -202,3 +202,6 @@ FreeCAD runs in console mode (without gui) Dialog to save a picture with arbitrary sizes. [Category:User Documentation](Category:User_Documentation.md) [Category:Screenshots](Category:Screenshots.md) + +--- +[documentation index](../README.md) > Screenshots/ko diff --git a/wiki/translations/ko/Scripting_and_macros.md b/wiki/translations/ko/Scripting_and_macros.md index 7d254c2200..b379fa2386 100644 --- a/wiki/translations/ko/Scripting_and_macros.md +++ b/wiki/translations/ko/Scripting_and_macros.md @@ -1,9 +1,4 @@ # Scripting and macros/ko - - - - - ## Overview of Python scripting pages - Python related pages in the Manual: @@ -102,3 +97,6 @@ }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripting and macros/ko diff --git a/wiki/translations/ko/Scripting_examples.md b/wiki/translations/ko/Scripting_examples.md index 0ef461d294..8cea5665af 100644 --- a/wiki/translations/ko/Scripting_examples.md +++ b/wiki/translations/ko/Scripting_examples.md @@ -1,2 +1,5 @@ # Scripting examples/ko 1. REDIRECT [Scripting\_and\_macros/ko](Scripting_and_macros/ko.md) + +--- +[documentation index](../README.md) > Scripting examples/ko diff --git a/wiki/translations/ko/Sketch.md b/wiki/translations/ko/Sketch.md index 06a5f4334e..d016b75722 100644 --- a/wiki/translations/ko/Sketch.md +++ b/wiki/translations/ko/Sketch.md @@ -1,6 +1,4 @@ # Sketch/ko - - ## Introduction @@ -39,3 +37,6 @@ Nevertheless, a Sketch can always be created by itself for any other purpose; it }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Sketch/ko diff --git a/wiki/translations/ko/Sketcher_Dialog.md b/wiki/translations/ko/Sketcher_Dialog.md index 76367362ec..92bf5b31db 100644 --- a/wiki/translations/ko/Sketcher_Dialog.md +++ b/wiki/translations/ko/Sketcher_Dialog.md @@ -1,10 +1,4 @@ # Sketcher Dialog/ko - - - - - -
\_\_TOC\_\_ @@ -217,4 +211,7 @@ You can set the following options: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Dialog/ko diff --git a/wiki/translations/ko/Spreadsheet_Workbench.md b/wiki/translations/ko/Spreadsheet_Workbench.md index 21f0e307a4..00fd5dcda2 100644 --- a/wiki/translations/ko/Spreadsheet_Workbench.md +++ b/wiki/translations/ko/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/ko - {{Page_in_progress}} @@ -235,3 +234,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/ko diff --git a/wiki/translations/ko/Standard_Menu.md b/wiki/translations/ko/Standard_Menu.md index 8d833a696c..db090a851a 100644 --- a/wiki/translations/ko/Standard_Menu.md +++ b/wiki/translations/ko/Standard_Menu.md @@ -1,5 +1,5 @@ # Standard Menu/ko - {{TOCright}} +{{TOCright}} ## 소개 @@ -47,4 +47,7 @@ The standard menu is composed of 7 sub-menus: {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Standard Menu/ko diff --git a/wiki/translations/ko/Std_Alignment.md b/wiki/translations/ko/Std_Alignment.md index 58a05a0db1..e9ca110012 100644 --- a/wiki/translations/ko/Std_Alignment.md +++ b/wiki/translations/ko/Std_Alignment.md @@ -7,6 +7,8 @@ SeeAlso:[표준 위치 설정](Std_Placement/ko.md) --- +# Std Alignment/ko + ## 설명 **표준 정렬(Std Alignment)** 명령은 하나 이상의 점 쌍을 이용하여 고정된 참조 개체를 기준으로 하나의 개체를 정렬합니다. @@ -50,4 +52,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Alignment/ko diff --git a/wiki/translations/ko/Std_Base.md b/wiki/translations/ko/Std_Base.md index 7c13aac6ba..25d01410d0 100644 --- a/wiki/translations/ko/Std_Base.md +++ b/wiki/translations/ko/Std_Base.md @@ -1,10 +1,4 @@ -# Std Base/ko - - - - - -표준 기반 아이콘 +# 표준 기반 아이콘 Std Base/ko {{TOCright}} @@ -91,3 +85,6 @@ }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Base/ko diff --git a/wiki/translations/ko/Std_BoxElementSelection.md b/wiki/translations/ko/Std_BoxElementSelection.md index be3a92f775..97cb1804a6 100644 --- a/wiki/translations/ko/Std_BoxElementSelection.md +++ b/wiki/translations/ko/Std_BoxElementSelection.md @@ -8,6 +8,8 @@ SeeAlso:[표준 개체 선택 상자](Std_BoxSelection/ko.md), [표준 모두 선택](Std_SelectAll/ko.md) --- +# Std BoxElementSelection/ko + ## 설명 **표준 면 선택 상자(Std BoxElementSelection)** 명령은 [3D 보기에](3D_view/ko.md) 사용자 정의 사각 영역 즉 상자를 그려 개체의 면을 선택합니다. @@ -31,4 +33,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std BoxElementSelection/ko diff --git a/wiki/translations/ko/Std_BoxSelection.md b/wiki/translations/ko/Std_BoxSelection.md index e0ebbc2e34..6d6bc512f9 100644 --- a/wiki/translations/ko/Std_BoxSelection.md +++ b/wiki/translations/ko/Std_BoxSelection.md @@ -8,6 +8,8 @@ SeeAlso:[표준 면 선택](Std_BoxElementSelection/ko.md), [표준 모두 선택](Std_SelectAll/ko.md) --- +# Std BoxSelection/ko + ## 설명 **표준 개체 선택 상자(Std BoxSelection)** 명령은 [3D 보기에](3D_view/ko.md) 사용자 정의 사각 영역 즉 상자를 그려 개체를 선택합니다. @@ -36,4 +38,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std BoxSelection/ko diff --git a/wiki/translations/ko/Std_CloseActiveWindow.md b/wiki/translations/ko/Std_CloseActiveWindow.md index 7475ef109c..4ae8e0b5b7 100644 --- a/wiki/translations/ko/Std_CloseActiveWindow.md +++ b/wiki/translations/ko/Std_CloseActiveWindow.md @@ -8,6 +8,8 @@ SeeAlso:[표준 모든 창 닫기](Std_CloseAllWindows/ko.md) --- +# Std CloseActiveWindow/ko + ## 설명 **표준 활성 창 닫기(Std CloseActiveWindow)** 명령은 활성 창을 닫습니다. 문서를 닫으려면 그 문서에 속한 창을 모두 닫아야 합니다. @@ -50,4 +52,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CloseActiveWindow/ko diff --git a/wiki/translations/ko/Std_CloseAllWindows.md b/wiki/translations/ko/Std_CloseAllWindows.md index 294ceebed1..85ca8fbe1c 100644 --- a/wiki/translations/ko/Std_CloseAllWindows.md +++ b/wiki/translations/ko/Std_CloseAllWindows.md @@ -7,6 +7,8 @@ SeeAlso:[표준 활성 창 닫기](Std_CloseActiveWindow.md) --- +# Std CloseAllWindows/ko + ## 설명 **표준 모든 창 닫기(Std CloseAllWindow)** 명령은 모든 창을 닫습니다. 그 결과 모든 문서를 닫습니다. @@ -46,4 +48,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CloseAllWindows/ko diff --git a/wiki/translations/ko/Std_Copy.md b/wiki/translations/ko/Std_Copy.md index 01b1285b2d..8a55952b5d 100644 --- a/wiki/translations/ko/Std_Copy.md +++ b/wiki/translations/ko/Std_Copy.md @@ -8,6 +8,8 @@ SeeAlso:[표준 잘라내기](Std_Cut/ko.md), [표준 붙여넣기](Std_Paste/ko.md), [표준 개체 복제](Std_DuplicateSelection/ko.md) --- +# Std Copy/ko + ## 설명 **표준 복사(Std Copy)** 명령은 개체를 클립보드로 복사합니다. @@ -40,4 +42,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Copy/ko diff --git a/wiki/translations/ko/Std_Cut.md b/wiki/translations/ko/Std_Cut.md index 44c2e50b67..1a5e4afbac 100644 --- a/wiki/translations/ko/Std_Cut.md +++ b/wiki/translations/ko/Std_Cut.md @@ -7,6 +7,8 @@ SeeAlso:[표준 복사](Std_Copy/ko.md), [표준 붙여넣기](Std_Paste/ko.md), [표준 개체 복제](Std_DuplicateSelection/ko.md) --- +# Std Cut/ko + ## 설명 **표준 잘라내기(Std Cut)** 명령에는 제한이 있습니다. 오직 [스프레드시트 셀에만](Spreadsheet_Workbench/ko.md) 사용할 수 있습니다. 이 명령은 선택한 셀의 내용과 속성을 클립보드로 복사하고 셀을 지웁니다. @@ -41,4 +43,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Cut/ko diff --git a/wiki/translations/ko/Std_Delete.md b/wiki/translations/ko/Std_Delete.md index 1aa901faf1..6efa934d69 100644 --- a/wiki/translations/ko/Std_Delete.md +++ b/wiki/translations/ko/Std_Delete.md @@ -7,6 +7,8 @@ Shortcut:**Del** --- +# Std Delete/ko + ## 설명 **표준 삭제(Std Delete)** 명령은 선택한 개체를 삭제합니다. @@ -41,4 +43,7 @@ FreeCAD.ActiveDocument.removeObject("myObjectName") {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Delete/ko diff --git a/wiki/translations/ko/Std_DependencyGraph.md b/wiki/translations/ko/Std_DependencyGraph.md index 3f3b1f7020..ca742ece4e 100644 --- a/wiki/translations/ko/Std_DependencyGraph.md +++ b/wiki/translations/ko/Std_DependencyGraph.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std DependencyGraph/ko + ## Description The **Std DependencyGraph** command displays the dependencies between objects in the active document in a \'dependency graph\'. As opposed to the [Tree view](Tree_view.md), objects are listed in reverse chronological order, with the first created object at the bottom. @@ -93,3 +95,6 @@ You can save a dependency graph: }} [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > Std DependencyGraph/ko diff --git a/wiki/translations/ko/Std_DlgPreferences.md b/wiki/translations/ko/Std_DlgPreferences.md index c4208ac375..456e1fd010 100644 --- a/wiki/translations/ko/Std_DlgPreferences.md +++ b/wiki/translations/ko/Std_DlgPreferences.md @@ -7,6 +7,8 @@ SeeAlso:[환경 설정 편집기](Preferences_Editor/ko.md) --- +# Std DlgPreferences/ko + ## 설명 **표준 환경 설정(Std DlgPreferences)** 명령은 [환경 설정 편집기를](Preferences_Editor/ko.md) 엽니다. @@ -26,4 +28,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgPreferences/ko diff --git a/wiki/translations/ko/Std_DuplicateSelection.md b/wiki/translations/ko/Std_DuplicateSelection.md index e3c8215a1f..49495a8f3e 100644 --- a/wiki/translations/ko/Std_DuplicateSelection.md +++ b/wiki/translations/ko/Std_DuplicateSelection.md @@ -7,6 +7,8 @@ SeeAlso:[표준 잘라내기](Std_Cut/ko.md), [표준 복사](Std_Copy/ko.md), [표준 붙여넣기](Std_Paste/ko.md) --- +# Std DuplicateSelection/ko +
@@ -40,4 +42,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DuplicateSelection/ko diff --git a/wiki/translations/ko/Std_Edit.md b/wiki/translations/ko/Std_Edit.md index f9858ba1c9..3fa4fa4cda 100644 --- a/wiki/translations/ko/Std_Edit.md +++ b/wiki/translations/ko/Std_Edit.md @@ -6,6 +6,8 @@ Workbenches:모두 --- +# Std Edit/ko + ## 설명 **표준 편집 모드 전환(Std Edit)** 명령은 개체의 편집모드를 활성화하거나 비활성화합니다. @@ -61,4 +63,7 @@ FreeCADGui.ActiveDocument.resetEdit() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Edit/ko diff --git a/wiki/translations/ko/Std_Edit_Menu.md b/wiki/translations/ko/Std_Edit_Menu.md index 644f7fd279..82eba67c1e 100644 --- a/wiki/translations/ko/Std_Edit_Menu.md +++ b/wiki/translations/ko/Std_Edit_Menu.md @@ -1,10 +1,4 @@ -# Std Edit Menu/ko - - - - - -표준 기반 아이콘 +# 표준 기반 아이콘 Std Edit Menu/ko {{TOCright}} @@ -87,3 +81,6 @@ }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Edit Menu/ko diff --git a/wiki/translations/ko/Std_Export.md b/wiki/translations/ko/Std_Export.md index 19166f0aad..2a267e4910 100644 --- a/wiki/translations/ko/Std_Export.md +++ b/wiki/translations/ko/Std_Export.md @@ -8,6 +8,8 @@ SeeAlso:[Std PrintPdf](Std_PrintPdf.md), [Import Export](Import_Export.md), [Import Export Preferences](Import_Export_Preferences.md) --- +# Std Export/ko + ## 설명 **표준 내보내기(Std Export)** 명령은 선택한 개체를 다른 형식의 파일로 내보냅니다. 다양한 파일 형식이 지원되며 어떤 형식에는 내보내기 옵션이 여러 가지 존재합니다. 자세한 내용은 [가져오기 내보내기를](Import_Export/ko.md) 참조하십시오. @@ -56,3 +58,6 @@ }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Export/ko diff --git a/wiki/translations/ko/Std_File_Menu.md b/wiki/translations/ko/Std_File_Menu.md index 4bd114ae87..1a584144fb 100644 --- a/wiki/translations/ko/Std_File_Menu.md +++ b/wiki/translations/ko/Std_File_Menu.md @@ -1,10 +1,4 @@ -# Std File Menu/ko - - - - - -표준 기반 아이콘 +# 표준 기반 아이콘 Std File Menu/ko {{TOCright}} @@ -96,3 +90,6 @@ }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std File Menu/ko diff --git a/wiki/translations/ko/Std_Group.md b/wiki/translations/ko/Std_Group.md index 8627f5c80f..99a87963bb 100644 --- a/wiki/translations/ko/Std_Group.md +++ b/wiki/translations/ko/Std_Group.md @@ -8,6 +8,8 @@ SeeAlso:[Std Part](Std_Part.md), [Draft SelectGroup](Draft_SelectGroup.md), [Draft AddToGroup](Draft_AddToGroup.md) --- +# Std Group/ko + ## Description [Std Group](Std_Group.md) (internally called [App DocumentObjectGroup](App_DocumentObjectGroup.md)) is a general purpose container that allows you to group different types of objects in the [tree view](tree_view.md), regardless of their data type. It is used as a simple folder to categorize and organize the objects in your model, in order to keep a logical structure. Std Groups may be nested inside other Std Groups. @@ -124,4 +126,7 @@ For example, a [FEM Analysis](FEM_Analysis.md) is an `App::DocumentObjectGroupPy {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Group/ko diff --git a/wiki/translations/ko/Std_Help_Menu.md b/wiki/translations/ko/Std_Help_Menu.md index 8394f01e1d..c7f196bf82 100644 --- a/wiki/translations/ko/Std_Help_Menu.md +++ b/wiki/translations/ko/Std_Help_Menu.md @@ -1,10 +1,4 @@ -# Std Help Menu/ko - - - - - -Std Base icon +# Std Base icon Std Help Menu/ko {{TOCright}} @@ -64,3 +58,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Help Menu/ko diff --git a/wiki/translations/ko/Std_Import.md b/wiki/translations/ko/Std_Import.md index 311cb2d826..fb217a5269 100644 --- a/wiki/translations/ko/Std_Import.md +++ b/wiki/translations/ko/Std_Import.md @@ -8,6 +8,8 @@ SeeAlso:[표준 열기](Std_Open/ko.md), [가져오기 내보내기](Import_Export/ko.md), [가져오기 내보내기 환경 설정](Import_Export_Preferences/ko.md) --- +# Std Import/ko + ## 설명 **표준 가져오기(Std Import)** 명령은 다른 형식의 파일에서 지오메트리를 활성 문서로 가져옵니다. 다양한 파일 형식이 지원되며 어떤 형식에는 가져오기 옵션이 여러 가지 존재합니다. 자세한 내용은 [가져오기 내보내기를](Import_Export/ko.md) 참조하십시오. @@ -50,3 +52,6 @@ }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Import/ko diff --git a/wiki/translations/ko/Std_InterfaceCustomization.md b/wiki/translations/ko/Std_InterfaceCustomization.md index 8a74a0ea43..747cb1c717 100644 --- a/wiki/translations/ko/Std_InterfaceCustomization.md +++ b/wiki/translations/ko/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/ko 1. REDIRECT [Interface\_Customization/ko](Interface_Customization/ko.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/ko diff --git a/wiki/translations/ko/Std_Macro_Menu.md b/wiki/translations/ko/Std_Macro_Menu.md index 6a7043e146..06b93f54e9 100644 --- a/wiki/translations/ko/Std_Macro_Menu.md +++ b/wiki/translations/ko/Std_Macro_Menu.md @@ -1,10 +1,4 @@ -# Std Macro Menu/ko - - - - - -Std Base icon +# Std Base icon Std Macro Menu/ko {{TOCright}} @@ -68,3 +62,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Macro Menu/ko diff --git a/wiki/translations/ko/Std_MainFullscreen.md b/wiki/translations/ko/Std_MainFullscreen.md index 734c0fb6e9..b922d8b916 100644 --- a/wiki/translations/ko/Std_MainFullscreen.md +++ b/wiki/translations/ko/Std_MainFullscreen.md @@ -8,6 +8,8 @@ SeeAlso:[표준 보기 전체화면](Std_ViewFullscreen/ko.md) --- +# Std MainFullscreen/ko + ## 설명 **표준 메인 전체화면(Std MainFullscreen)** 명령은 FreeCAD의 메인 창의 전체화면 모드를 전환합니다. @@ -24,4 +26,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MainFullscreen/ko diff --git a/wiki/translations/ko/Std_MergeProjects.md b/wiki/translations/ko/Std_MergeProjects.md index 7eeea3fbd9..8dc96ec5c9 100644 --- a/wiki/translations/ko/Std_MergeProjects.md +++ b/wiki/translations/ko/Std_MergeProjects.md @@ -6,6 +6,8 @@ Workbenches:모두 --- +# Std MergeProjects/ko + ## 설명 **표준 프로젝트 병합(Std MergeProjects)** 명령은 FreeCAD 파일의 내용을 활성 문서에 추가합니다. @@ -40,4 +42,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MergeProjects/ko diff --git a/wiki/translations/ko/Std_New.md b/wiki/translations/ko/Std_New.md index 462f5ca2f6..c7d63ca674 100644 --- a/wiki/translations/ko/Std_New.md +++ b/wiki/translations/ko/Std_New.md @@ -8,6 +8,8 @@ SeeAlso:[표준 열기](Std_Open/ko.md), [Std Import](Std_Import.md) --- +# Std New/ko + ## 설명 **표준 새 파일(Std New)** 명령은 빈 새 문서를 만들고 활성화 시킵니다. @@ -109,4 +111,7 @@ FreeCAD.closeDocument(doc.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std New/ko diff --git a/wiki/translations/ko/Std_Open.md b/wiki/translations/ko/Std_Open.md index fd61856cf5..6547f4dfb2 100644 --- a/wiki/translations/ko/Std_Open.md +++ b/wiki/translations/ko/Std_Open.md @@ -8,6 +8,8 @@ SeeAlso:[표준 가져오기](Std_Import/ko.md), [표준 새 파일](Std_New/ko.md) --- +# Std Open/ko + ## 설명 **표준 열기(Std Open)** 명령은 파일을 엽니다. 만약 열려는 파일이 FreeCAD 고유 파일(\*.FCStd)이 아니라면 파일의 지오메트리를 새 문서로 가져옵니다. 자세한 내용은 [표준 가져오기를](Std_Import/ko.md) 참조하십시오. @@ -65,4 +67,7 @@ For a scripting example see [Std New](Std_New#Scripting.md). {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Open/ko diff --git a/wiki/translations/ko/Std_OrthographicCamera.md b/wiki/translations/ko/Std_OrthographicCamera.md index baf9ab5b03..26351eac0e 100644 --- a/wiki/translations/ko/Std_OrthographicCamera.md +++ b/wiki/translations/ko/Std_OrthographicCamera.md @@ -8,6 +8,8 @@ SeeAlso:[표준 원근투영 카메라](Std_PerspectiveCamera/ko.md) --- +# Std OrthographicCamera/ko + ## 설명 **표준 직교투영 카메라(Std OrthographicCamera)** 명령은 활성 [3D 보기의](3D_view/ko.md) 카메라를 직교투영 보기 모드로 전환합니다. 이 모드에서는 카메라에서 먼 개체가 가까운 개체보다 작게 보이지 않습니다. @@ -51,4 +53,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std OrthographicCamera/ko diff --git a/wiki/translations/ko/Std_Part.md b/wiki/translations/ko/Std_Part.md index cc2020cb0f..8d212c0d72 100644 --- a/wiki/translations/ko/Std_Part.md +++ b/wiki/translations/ko/Std_Part.md @@ -7,6 +7,8 @@ SeeAlso:[Std Group](Std_Group.md), [PartDesign Body](PartDesign_Body.md) --- +# Std Part/ko + ## Description @@ -270,4 +272,7 @@ App.ActiveDocument.addObject('Part::FeaturePython', 'Group', group.MyGroup(), gr {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Part/ko diff --git a/wiki/translations/ko/Std_Paste.md b/wiki/translations/ko/Std_Paste.md index 2e5eb14b71..252379ae2c 100644 --- a/wiki/translations/ko/Std_Paste.md +++ b/wiki/translations/ko/Std_Paste.md @@ -8,6 +8,8 @@ SeeAlso:[표준 잘라내기](Std_Cut/ko.md), [표준 복사](Std_Copy/ko.md), [표준 개체 복제](Std_DuplicateSelection/ko.md) --- +# Std Paste/ko + ## 설명 **표준 붙여넣기(Std Paste)** 명령은 클립보드의 개체를 활성 문서에 붙여 넣습니다. @@ -44,4 +46,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Paste/ko diff --git a/wiki/translations/ko/Std_PerspectiveCamera.md b/wiki/translations/ko/Std_PerspectiveCamera.md index 5eb14cd850..186454c3c0 100644 --- a/wiki/translations/ko/Std_PerspectiveCamera.md +++ b/wiki/translations/ko/Std_PerspectiveCamera.md @@ -8,6 +8,8 @@ SeeAlso:[표준 직교투영 카메라](Std_OrthographicCamera/ko.md) --- +# Std PerspectiveCamera/ko + ## 설명 **표준 원근투영 카메라(Std PerspectiveCamera)** 명령은 활성 [3D 보기의](3D_view/ko.md) 카메라를 원근투영 보기 모드로 전환합니다. 이 모드에서는 카메라에서 먼 개체가 가까운 개체보다 더 작게 보입니다. @@ -51,4 +53,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PerspectiveCamera/ko diff --git a/wiki/translations/ko/Std_Placement.md b/wiki/translations/ko/Std_Placement.md index 185d279189..9550f2bb6e 100644 --- a/wiki/translations/ko/Std_Placement.md +++ b/wiki/translations/ko/Std_Placement.md @@ -7,6 +7,8 @@ SeeAlso:[표준 정렬](Std_Alignment/ko.md), [배치 작업](Tasks_Placement/ko.md), [배치](Placement/ko.md) --- +# Std Placement/ko +
@@ -99,4 +101,7 @@ print(obj.Placement.Matrix) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Placement/ko diff --git a/wiki/translations/ko/Std_Print.md b/wiki/translations/ko/Std_Print.md index 3d14a6665a..606d3543fa 100644 --- a/wiki/translations/ko/Std_Print.md +++ b/wiki/translations/ko/Std_Print.md @@ -8,6 +8,8 @@ SeeAlso:[표준 인쇄 미리보기](Std_PrintPreview/ko.md), [표준 Pdf로 내보내기](Std_PrintPdf/ko.md), [표준 내보내기](Std_Export/ko.md), [표준 스크린샷 보기](Std_ViewScreenShot/ko.md) --- +# Std Print/ko + ## 설명 @@ -43,4 +45,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Print/ko diff --git a/wiki/translations/ko/Std_PrintPdf.md b/wiki/translations/ko/Std_PrintPdf.md index 03e2098be1..2ae6c860d9 100644 --- a/wiki/translations/ko/Std_PrintPdf.md +++ b/wiki/translations/ko/Std_PrintPdf.md @@ -7,6 +7,8 @@ SeeAlso:[표준 인쇄](Std_Print/ko.md), [표준 내보내기](Std_Export/ko.md), [표준 스크린샷 보기](Std_ViewScreenShot/ko.md) --- +# Std PrintPdf/ko + ## 설명 @@ -48,4 +50,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PrintPdf/ko diff --git a/wiki/translations/ko/Std_PrintPreview.md b/wiki/translations/ko/Std_PrintPreview.md index 5712b0e139..58b927c6d2 100644 --- a/wiki/translations/ko/Std_PrintPreview.md +++ b/wiki/translations/ko/Std_PrintPreview.md @@ -7,6 +7,8 @@ SeeAlso:[표준 인쇄](Std_Print/ko.md) --- +# Std PrintPreview/ko + ## 설명 **표준 인쇄 미리보기(Std PrintPreview)** 명령은 [표준 인쇄](Std_Print/ko.md) 명령의 결과물을 미리 보여줍니다. 미리 보기 대화 상자에서 바로 인쇄할 수도 있습니다. @@ -34,4 +36,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PrintPreview/ko diff --git a/wiki/translations/ko/Std_ProjectInfo.md b/wiki/translations/ko/Std_ProjectInfo.md index 02b9817585..e7e2fbce11 100644 --- a/wiki/translations/ko/Std_ProjectInfo.md +++ b/wiki/translations/ko/Std_ProjectInfo.md @@ -7,6 +7,8 @@ SeeAlso:[표준 새 파일](Std_New/ko.md) --- +# Std ProjectInfo/ko + ## 설명 **표준 프로젝트 정보(Std ProjectInfo)** 명령은 활성 문서의 프로젝트 정보가 담긴 대화 상자를 표시합니다. 이 정보 중 일부는 편집할 수 있습니다. @@ -42,4 +44,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ProjectInfo/ko diff --git a/wiki/translations/ko/Std_Quit.md b/wiki/translations/ko/Std_Quit.md index 0cf8f6ed11..c2f1490e5e 100644 --- a/wiki/translations/ko/Std_Quit.md +++ b/wiki/translations/ko/Std_Quit.md @@ -8,6 +8,8 @@ SeeAlso:[표준 닫기](Std_CloseActiveWindow/ko.md) --- +# Std Quit/ko + ## 설명 **표준 닫기(Std Quit)** 명령은 FreeCAD 애플리케이션을 닫고 필요한 경우 저장하지 않은 문서를 저장합니다. @@ -36,4 +38,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Quit/ko diff --git a/wiki/translations/ko/Std_RecentFiles.md b/wiki/translations/ko/Std_RecentFiles.md index 767eb29c38..c2e8a8777a 100644 --- a/wiki/translations/ko/Std_RecentFiles.md +++ b/wiki/translations/ko/Std_RecentFiles.md @@ -8,6 +8,8 @@ SeeAlso:[표준 열기](Std_Open/ko.md), [표준 가져오기](Std_Import/ko.md) --- +# Std RecentFiles/ko + ## 설명 **표준 최근 파일(Std RecentFiles)** 메뉴 옵션은 열 수 있는 최근 파일의 목록을 표시합니다. @@ -32,4 +34,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std RecentFiles/ko diff --git a/wiki/translations/ko/Std_Redo.md b/wiki/translations/ko/Std_Redo.md index 8add4eacfd..9871d5df84 100644 --- a/wiki/translations/ko/Std_Redo.md +++ b/wiki/translations/ko/Std_Redo.md @@ -8,6 +8,8 @@ SeeAlso:[표준 실행 취소](Std_Undo/ko.md) --- +# Std Redo/ko + ## 설명 **표준 다시 실행(Std Redo)** 명령은 [표준 실행 취소](Std_Undo/ko.md) 명령을 되돌립니다. @@ -56,4 +58,7 @@ FreeCAD.ActiveDocument.redo() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Redo/ko diff --git a/wiki/translations/ko/Std_Refresh.md b/wiki/translations/ko/Std_Refresh.md index 89e145957b..961c95932f 100644 --- a/wiki/translations/ko/Std_Refresh.md +++ b/wiki/translations/ko/Std_Refresh.md @@ -7,6 +7,8 @@ Shortcut:**F5** --- +# Std Refresh/ko + ## 설명 **표준 새로 고침(Std Refresh)** 명령은 활성 문서를 다시 계산합니다. 문서를 다시 계산할 필요가 없으면 이 명령은 비활성화됩니다. @@ -62,4 +64,7 @@ doc.recompute() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Refresh/ko diff --git a/wiki/translations/ko/Std_Revert.md b/wiki/translations/ko/Std_Revert.md index fc0e080263..499113283b 100644 --- a/wiki/translations/ko/Std_Revert.md +++ b/wiki/translations/ko/Std_Revert.md @@ -6,6 +6,8 @@ Workbenches:모두 --- +# Std Revert/ko + ## 설명 **표준 되돌리기(Std Revert)** 명령은 활성 문서를 닫고 마지막 저장 버전을 다시 엽니다. @@ -25,4 +27,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Revert/ko diff --git a/wiki/translations/ko/Std_Save.md b/wiki/translations/ko/Std_Save.md index 1efb323a22..3bf3d0774b 100644 --- a/wiki/translations/ko/Std_Save.md +++ b/wiki/translations/ko/Std_Save.md @@ -8,6 +8,8 @@ SeeAlso:[표준 다른 이름으로 저장](Std_SaveAs/ko.md), [표준 사본 저장](Std_SaveCopy/ko.md), [표준 모두 저장](Std_SaveAll/ko.md) --- +# Std Save/ko + ## 설명 **표준 저장(Std Save)** 명령은 활성 문서를 저장합니다. @@ -53,4 +55,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Save/ko diff --git a/wiki/translations/ko/Std_SaveAll.md b/wiki/translations/ko/Std_SaveAll.md index 157ee13499..e6ea5bdf03 100644 --- a/wiki/translations/ko/Std_SaveAll.md +++ b/wiki/translations/ko/Std_SaveAll.md @@ -7,6 +7,8 @@ SeeAlso:[표준 저장](Std_Save.md) --- +# Std SaveAll/ko + ## 설명 **표준 모두 저장(Std SaveAll)** 명령은 모든 문서를 저장합니다. @@ -39,4 +41,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveAll/ko diff --git a/wiki/translations/ko/Std_SaveAs.md b/wiki/translations/ko/Std_SaveAs.md index dc10befbd5..8f08f2d1ae 100644 --- a/wiki/translations/ko/Std_SaveAs.md +++ b/wiki/translations/ko/Std_SaveAs.md @@ -7,6 +7,8 @@ SeeAlso:[표준 사본 저장](Std_SaveCopy/ko.md), [표준 저장](Std_Save/ko.md) --- +# Std SaveAs/ko + ## 설명 **표준 다른 이름으로 저장(Std SaveAs)** 명령은 활성 문서를 새 파일 이름으로 저장합니다. @@ -47,4 +49,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveAs/ko diff --git a/wiki/translations/ko/Std_SaveCopy.md b/wiki/translations/ko/Std_SaveCopy.md index b79af3c31b..dd68a3a59b 100644 --- a/wiki/translations/ko/Std_SaveCopy.md +++ b/wiki/translations/ko/Std_SaveCopy.md @@ -7,6 +7,8 @@ SeeAlso:[표준 다른 이름으로 저장](Std_SaveAs/ko.md), [표준 저장](Std_Save/ko.md) --- +# Std SaveCopy/ko + ## 설명 **표준 사본 저장(Std SaveAs)** 명령은 활성 문서의 사본을 새 파일 이름으로 저장합니다. @@ -59,4 +61,7 @@ doc.saveCopy(fnm) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveCopy/ko diff --git a/wiki/translations/ko/Std_SelectAll.md b/wiki/translations/ko/Std_SelectAll.md index 153c380244..3eff092900 100644 --- a/wiki/translations/ko/Std_SelectAll.md +++ b/wiki/translations/ko/Std_SelectAll.md @@ -7,6 +7,8 @@ SeeAlso:[표준 개체 선택 상자](Std_BoxSelection/ko.md), [표준 면 선택 상자](Std_BoxElementSelection/ko.md) --- +# Std SelectAll/ko + ## 설명 **표준 모두 선택(Std SelectAll)** 명령은 [트리 보기의](Tree_view/ko.md) 모든 개체를 선택합니다. @@ -25,4 +27,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelectAll/ko diff --git a/wiki/translations/ko/Std_SendToPythonConsole.md b/wiki/translations/ko/Std_SendToPythonConsole.md index 9380f8a19c..824da800b2 100644 --- a/wiki/translations/ko/Std_SendToPythonConsole.md +++ b/wiki/translations/ko/Std_SendToPythonConsole.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Std SendToPythonConsole/ko + ## 설명 **표준 파이썬 콘솔로 보내기(Std SendToPythonConsole)** 명령은 선택한 개체를 참조하는 변수를 [파이썬 콘솔](Python_console/ko.md) 안에 생성합니다. 만약 개체의 하위 셰이프를 선택했다면 변수 2개가 더 생성됩니다. 하나는 개체의 셰이프를 참조하고 다른 하나는 하위 셰이프 자체를 참조합니다. 관련 변수와 코드는 파이썬 코드를 작성하는데 사용할 수 있습니다. @@ -35,4 +37,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SendToPythonConsole/ko diff --git a/wiki/translations/ko/Std_Tools_Menu.md b/wiki/translations/ko/Std_Tools_Menu.md index eb8192c34c..34a82578bf 100644 --- a/wiki/translations/ko/Std_Tools_Menu.md +++ b/wiki/translations/ko/Std_Tools_Menu.md @@ -1,10 +1,4 @@ -# Std Tools Menu/ko - - - - - -Std Base icon +# Std Base icon Std Tools Menu/ko {{TOCright}} @@ -68,3 +62,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Tools Menu/ko diff --git a/wiki/translations/ko/Std_Undo.md b/wiki/translations/ko/Std_Undo.md index 516268e3bf..10068120ce 100644 --- a/wiki/translations/ko/Std_Undo.md +++ b/wiki/translations/ko/Std_Undo.md @@ -8,6 +8,8 @@ SeeAlso:[표준 다시 실행](Std_Redo/ko.md) --- +# Std Undo/ko + ## 설명 **표준 실행 취소(Std Undo)** 명령은 마지막 작업을 실행 취소합니다. @@ -62,4 +64,7 @@ FreeCAD.ActiveDocument.undo() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Undo/ko diff --git a/wiki/translations/ko/Std_ViewCreate.md b/wiki/translations/ko/Std_ViewCreate.md index d232ce2639..9363d90c14 100644 --- a/wiki/translations/ko/Std_ViewCreate.md +++ b/wiki/translations/ko/Std_ViewCreate.md @@ -7,6 +7,8 @@ SeeAlso:[표준 고정 분리 전체화면 보기](Std_ViewDockUndockFullscreen/ko.md), [표준 전체화면 보기](Std_ViewFullscreen/ko.md) --- +# Std ViewCreate/ko + ## 설명 **표준 3D 보기 만들기(Std ViewCreate)** 명령은 활성 문서의 새 [3D 보기를](3D_view.md) 만듭니다. 추가된 3D 보기는 모델을 여러 방향에서 또는 서로 다른 확대 수준에서 검사할 때 유용합니다. @@ -27,4 +29,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewCreate/ko diff --git a/wiki/translations/ko/Std_ViewDimetric.md b/wiki/translations/ko/Std_ViewDimetric.md index 1e63184ba9..bf4140763e 100644 --- a/wiki/translations/ko/Std_ViewDimetric.md +++ b/wiki/translations/ko/Std_ViewDimetric.md @@ -6,6 +6,8 @@ SeeAlso:[Std ViewIsometric](Std_ViewIsometric.md), [Std ViewTrimetric](Std_ViewTrimetric.md) --- +# Std ViewDimetric/ko + ## Description The **Std ViewDimetric** command realigns the camera in the active [3D view](3D_view.md) to obtain a [dimetric](https://en.wikipedia.org/wiki/Axonometric_projection#Three_types) view. For a truly dimetric view the 3D view must be in [orthographic mode](Std_OrthographicCamera.md), but the command also works if the view is in [perspective mode](Std_PerspectiveCamera.md). @@ -39,4 +41,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewDimetric/ko diff --git a/wiki/translations/ko/Std_ViewDockUndockFullscreen.md b/wiki/translations/ko/Std_ViewDockUndockFullscreen.md index 7d591c6b7b..e2fdbb7951 100644 --- a/wiki/translations/ko/Std_ViewDockUndockFullscreen.md +++ b/wiki/translations/ko/Std_ViewDockUndockFullscreen.md @@ -9,6 +9,8 @@ SeeAlso:[Std ViewFullscreen](Std_ViewFullscreen.md), [Std MainFullscreen](Std_MainFullscreen.md) --- +# Std ViewDockUndockFullscreen/ko + ## Introduction [3D views](3D_view.md) can be undocked from the main [FreeCAD interface](Interface.md) and moved to a different display for example. @@ -54,4 +56,7 @@ The **Undocked** menu option undocks the active [3D view](3D_view.md) from the m {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewDockUndockFullscreen/ko diff --git a/wiki/translations/ko/Std_ViewFitAll.md b/wiki/translations/ko/Std_ViewFitAll.md index 21e4277238..7dd4493239 100644 --- a/wiki/translations/ko/Std_ViewFitAll.md +++ b/wiki/translations/ko/Std_ViewFitAll.md @@ -8,6 +8,8 @@ SeeAlso:[표준 선택 보기](Std_ViewFitSelection/ko.md) --- +# Std ViewFitAll/ko + ## 설명 @@ -74,4 +76,7 @@ FreeCADGui.SendMsgToActiveView('ViewFit') {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFitAll/ko diff --git a/wiki/translations/ko/Std_ViewFitSelection.md b/wiki/translations/ko/Std_ViewFitSelection.md index eb44f0d4c5..d602f9dce9 100644 --- a/wiki/translations/ko/Std_ViewFitSelection.md +++ b/wiki/translations/ko/Std_ViewFitSelection.md @@ -8,6 +8,8 @@ SeeAlso:[표준 전체 보기](Std_ViewFitAll/ko.md) --- +# Std ViewFitSelection/ko + ## 설명 **표준 선택 보기(Std ViewFitSelection)** 명령은 선택한 개체가 모두 활성 [3D 보기에](3D_view/ko.md) 보이도록 카메라를 확대·축소 하거나 이동합니다. @@ -50,4 +52,7 @@ FreeCADGui.SendMsgToActiveView('ViewSelection') {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFitSelection/ko diff --git a/wiki/translations/ko/Std_ViewFullscreen.md b/wiki/translations/ko/Std_ViewFullscreen.md index 34f4855aa5..6a510400f4 100644 --- a/wiki/translations/ko/Std_ViewFullscreen.md +++ b/wiki/translations/ko/Std_ViewFullscreen.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewDockUndockFullscreen](Std_ViewDockUndockFullscreen.md), [Std MainFullscreen](Std_MainFullscreen.md) --- +# Std ViewFullscreen/ko + ## Description The **Std ViewFullscreen** command switches [3D views](3D_view.md) to and from fullscreen mode. 3D views are automatically [undocked](Std_ViewDockUndockFullscreen.md) for fullscreen mode. @@ -30,4 +32,7 @@ The **Std ViewFullscreen** command switches [3D views](3D_view.md) to and from f {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFullscreen/ko diff --git a/wiki/translations/ko/Std_ViewIsometric.md b/wiki/translations/ko/Std_ViewIsometric.md index be79547fa9..d1abfcb3f3 100644 --- a/wiki/translations/ko/Std_ViewIsometric.md +++ b/wiki/translations/ko/Std_ViewIsometric.md @@ -8,6 +8,8 @@ SeeAlso:[표준 등각투영](Std_ViewDimetric/ko.md), [표준 삼각투영](Std_ViewTrimetric/ko.md) --- +# Std ViewIsometric/ko + ## 설명 **표준 등각투영(Std ViewIsometric)** 명령은 [3D 보기의](3D_view/ko.md) 카메라를 재조정하여 등각투영([isometric](https://en.wikipedia.org/wiki/Isometric_projection)) 보기 각도로 전환합니다. 진정한 등각투영(isometric) 보기를 하려면 3D 보기가 [직교투영(orthographic) 모드이어야](Std_OrthographicCamera/ko.md) 하지만 이 명령은 [원근투영(perspective) 모드일](Std_PerspectiveCamera/ko.md) 때도 작동합니다. @@ -62,4 +64,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIsometric/ko diff --git a/wiki/translations/ko/Std_ViewScreenShot.md b/wiki/translations/ko/Std_ViewScreenShot.md index b368519d39..36f4f12349 100644 --- a/wiki/translations/ko/Std_ViewScreenShot.md +++ b/wiki/translations/ko/Std_ViewScreenShot.md @@ -6,6 +6,8 @@ SeeAlso:[Std Print](Std_Print.md), [Std PrintPdf](Std_PrintPdf.md) --- +# Std ViewScreenShot/ko + ## Description The **Std ViewScreenShot** command opens a dialog box to create an image file, a screenshot, from the active [3D view](3D_view.md). @@ -123,4 +125,7 @@ App.closeDocument(App.ActiveDocument.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewScreenShot/ko diff --git a/wiki/translations/ko/Std_View_Menu.md b/wiki/translations/ko/Std_View_Menu.md index ed5b982a3a..7fc143fad0 100644 --- a/wiki/translations/ko/Std_View_Menu.md +++ b/wiki/translations/ko/Std_View_Menu.md @@ -1,10 +1,4 @@ -# Std View Menu/ko - - - - - -Std Base icon +# Std Base icon Std View Menu/ko {{TOCright}} @@ -165,3 +159,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std View Menu/ko diff --git a/wiki/translations/ko/Std_Windows_Menu.md b/wiki/translations/ko/Std_Windows_Menu.md index 1f33291530..aa0e272dae 100644 --- a/wiki/translations/ko/Std_Windows_Menu.md +++ b/wiki/translations/ko/Std_Windows_Menu.md @@ -1,10 +1,4 @@ -# Std Windows Menu/ko - - - - - -Std Base icon +# Std Base icon Std Windows Menu/ko {{TOCright}} @@ -58,3 +52,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Windows Menu/ko diff --git a/wiki/translations/ko/Task_panel.md b/wiki/translations/ko/Task_panel.md index 6a725c1297..601170f3f6 100644 --- a/wiki/translations/ko/Task_panel.md +++ b/wiki/translations/ko/Task_panel.md @@ -1,5 +1,5 @@ # Task panel/ko - {{TOCright}} +{{TOCright}} ## Introduction @@ -54,4 +54,7 @@ Gui::Control().closeDialog(); {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Task panel/ko diff --git a/wiki/translations/ko/Tasks_Placement.md b/wiki/translations/ko/Tasks_Placement.md index a89b438252..80aa2d77ca 100644 --- a/wiki/translations/ko/Tasks_Placement.md +++ b/wiki/translations/ko/Tasks_Placement.md @@ -1,6 +1,4 @@ # Tasks Placement/ko - - ## Description Command for modifying **Placement**. These options relate only to the position and orientation of the object in space, they do not affect other attributes of the shape. The placement is stored internally as a position, and a rotation (rotation axis and angle transformed into a quaternion [1](https://en.wikipedia.org/wiki/Quaternions_and_spatial_rotation)). While there are several methods to specify a rotation, for instance with a rotation center, this is only used to affect the rotation computation and is not stored for later operations. Similarly, if a rotation axis of (1,1,1) is specified, it may be normalized when stored in the quaternion and appear as (0.58, 0.58, 0.58) when browsing the object later. @@ -121,3 +119,6 @@ Other explanation on [Placement](Placement.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Command_Reference](Category:Command_Reference.md) > Tasks Placement/ko diff --git a/wiki/translations/ko/TechDraw_Module.md b/wiki/translations/ko/TechDraw_Module.md index 62e8a6487c..7aab552632 100644 --- a/wiki/translations/ko/TechDraw_Module.md +++ b/wiki/translations/ko/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/ko 1. REDIRECT [TechDraw\_Workbench/ko](TechDraw_Workbench/ko.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/ko diff --git a/wiki/translations/ko/TechDraw_Workbench.md b/wiki/translations/ko/TechDraw_Workbench.md index 79d10a6c1d..a40d00ffe4 100644 --- a/wiki/translations/ko/TechDraw_Workbench.md +++ b/wiki/translations/ko/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/ko - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/ko ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/ko diff --git a/wiki/translations/ko/Tree_view.md b/wiki/translations/ko/Tree_view.md index 3e3b503bf1..996462ca60 100644 --- a/wiki/translations/ko/Tree_view.md +++ b/wiki/translations/ko/Tree_view.md @@ -1,5 +1,5 @@ # Tree view/ko - {{TOCright}} +{{TOCright}} ## Introduction @@ -147,4 +147,7 @@ This indicates that the object has an error that needs to be fixed. After recomp {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Tree view/ko diff --git a/wiki/translations/ko/Tutorials.md b/wiki/translations/ko/Tutorials.md index 72b53a09ab..6e55df5c61 100644 --- a/wiki/translations/ko/Tutorials.md +++ b/wiki/translations/ko/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/ko - - - - - - {{TOCright}} @@ -287,3 +281,6 @@ Here are listed all the tutorials that are not in the manual **regardless of the [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials]]에 있습니다. 외부 사이트에서 주는 자습서 목록은 ](Category:Tutorials]]에 있습니다. 외부 사이트에서 주는 자습서 목록은 .md) > Tutorials/ko diff --git a/wiki/translations/ko/User_hub.md b/wiki/translations/ko/User_hub.md index a4a83a2c06..82581ae862 100644 --- a/wiki/translations/ko/User_hub.md +++ b/wiki/translations/ko/User_hub.md @@ -1,5 +1,4 @@ -# User hub/ko - +# User hub/ko ------------------------------------------------------------------------ @@ -157,3 +156,6 @@ This is the official FreeCAD online help. Please note that the whole online help [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/ko diff --git a/wiki/translations/ko/Workbenches.md b/wiki/translations/ko/Workbenches.md index 88b4a9a208..680019bbef 100644 --- a/wiki/translations/ko/Workbenches.md +++ b/wiki/translations/ko/Workbenches.md @@ -1,7 +1,4 @@ # Workbenches/ko - - -
@@ -89,3 +86,6 @@ New workbenches are always in development, stay tuned! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/ko diff --git a/wiki/translations/nov/Arch_OBJ.md b/wiki/translations/nov/Arch_OBJ.md index 33aa2aec74..8f4b7ddd1f 100644 --- a/wiki/translations/nov/Arch_OBJ.md +++ b/wiki/translations/nov/Arch_OBJ.md @@ -1,7 +1,4 @@ # Arch OBJ/nov - - -
@@ -65,3 +62,6 @@ mesh.write(Filename="new_example.obj", Material=face_colors, Format="obj") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch OBJ/nov diff --git a/wiki/translations/pl/3D_input_devices.md b/wiki/translations/pl/3D_input_devices.md index 2073536ca4..9360e1e6d2 100644 --- a/wiki/translations/pl/3D_input_devices.md +++ b/wiki/translations/pl/3D_input_devices.md @@ -1,5 +1,5 @@ # 3D input devices/pl - FreeCAD obsługuje wybranee specjalistyczne urządzenia wejściowe, takie jak na przykład myszki 3D. Dzięki temu użytkownik może obracać, przesuwać i powiększać obiekty w trzech różnych płaszczyznach. +FreeCAD obsługuje wybranee specjalistyczne urządzenia wejściowe, takie jak na przykład myszki 3D. Dzięki temu użytkownik może obracać, przesuwać i powiększać obiekty w trzech różnych płaszczyznach. ## Obsługiwany sprzęt @@ -7,3 +7,6 @@ - Instrukcja uruchomienia: [3D connexion input devices](3Dconnexion_input_devices.md) [category:Documentation](category:Documentation.md) + +--- +[documentation index](../README.md) > 3D input devices/pl diff --git a/wiki/translations/pl/3D_view.md b/wiki/translations/pl/3D_view.md index 5e67b2de32..03424ef40b 100644 --- a/wiki/translations/pl/3D_view.md +++ b/wiki/translations/pl/3D_view.md @@ -1,6 +1,4 @@ # 3D view/pl - - ## Wprowadzenie @@ -87,4 +85,7 @@ Więcej informacji można znaleźć w dokumentacji dla Power użytkowników: {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > 3D view/pl diff --git a/wiki/translations/pl/A2plus_Workbench.md b/wiki/translations/pl/A2plus_Workbench.md index 4d6bcddd04..e825f61453 100644 --- a/wiki/translations/pl/A2plus_Workbench.md +++ b/wiki/translations/pl/A2plus_Workbench.md @@ -1,5 +1,4 @@ -# A2plus Workbench/pl - A2plus workbench icon +# A2plus workbench icon A2plus Workbench/pl ## Introduction @@ -614,3 +613,6 @@ This is an A2plus-specific command. It solves the assembly constraints of the as [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > A2plus Workbench/pl diff --git a/wiki/translations/pl/About_FreeCAD.md b/wiki/translations/pl/About_FreeCAD.md index e9aa784867..71cca84788 100644 --- a/wiki/translations/pl/About_FreeCAD.md +++ b/wiki/translations/pl/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/pl - - - +# About FreeCAD/pl **FreeCAD** jest uniwersalnym parametrycznym programem modelującym w przestrzeni 3D [**CAD**](http://en.wikipedia.org/wiki/CAD), którego rozwój odbywa się wyłącznie według zasad [Open Source](http://en.wikipedia.org/wiki/Open_source) \'\'\' *([licencja LGPL](https://www.gnu.org/licenses/lgpl-3.0.en.html))* \'\'\'. FreeCAD jest przeznaczony bezpośrednio dla [inżynierii mechanicznej](http://en.wikipedia.org/wiki/Mechanical_engineering) i [projektowania detali i produktów](http://en.wikipedia.org/wiki/Product_design), ale mieści się również w szerszym zakresie zastosowań związanych z inżynierią, takich jak architektura, analiza elementów ukończonych, druk 3D i wiele pokrewnych. @@ -30,3 +27,6 @@ FreeCAD jest utrzymywany i rozwijany przez społeczność pasjonatów programist [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/pl diff --git a/wiki/translations/pl/Add_FEM_constraint_tutorial.md b/wiki/translations/pl/Add_FEM_constraint_tutorial.md index 0dd96a707b..8e268c9b18 100644 --- a/wiki/translations/pl/Add_FEM_constraint_tutorial.md +++ b/wiki/translations/pl/Add_FEM_constraint_tutorial.md @@ -1,7 +1,4 @@ # Add FEM constraint tutorial/pl - - - {{TutorialInfo |Topic= Add FEM Constraint |Level= @@ -312,3 +309,6 @@ def _handleFlowBndConditions(self): ``` [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM constraint tutorial/pl diff --git a/wiki/translations/pl/Add_FEM_equation_tutorial.md b/wiki/translations/pl/Add_FEM_equation_tutorial.md index 7cc8219c6f..e9398b32c5 100644 --- a/wiki/translations/pl/Add_FEM_equation_tutorial.md +++ b/wiki/translations/pl/Add_FEM_equation_tutorial.md @@ -1,7 +1,4 @@ # Add FEM equation tutorial/pl - - - {{TutorialInfo |Topic=Add FEM Equation |Level=Advanced @@ -185,3 +182,6 @@ We now finished the function part of the new equation. Next we\'ll connect the n We have just created a new equation class. To access it from the FEM GUI, we need to create a button and link it to the new equation class. Here is a tutorial: [Add button to FEM toolbar tutorial](Add_button_to_FEM_toolbar_tutorial.md). [Category:FEM](Category:FEM.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM equation tutorial/pl diff --git a/wiki/translations/pl/Addon.md b/wiki/translations/pl/Addon.md index dad384328c..6a97194b00 100644 --- a/wiki/translations/pl/Addon.md +++ b/wiki/translations/pl/Addon.md @@ -1,6 +1,4 @@ # Addon/pl - - ## Introduction In FreeCAD and in this documentation, an [addon](addon.md) is any component that is not part of the base installation, but that can be added to the system by certain methods. @@ -37,3 +35,6 @@ However, manual installation is still possible. [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Addon/pl diff --git a/wiki/translations/pl/Advanced_TechDraw_Tutorial.md b/wiki/translations/pl/Advanced_TechDraw_Tutorial.md index 662413962b..56c8175e30 100644 --- a/wiki/translations/pl/Advanced_TechDraw_Tutorial.md +++ b/wiki/translations/pl/Advanced_TechDraw_Tutorial.md @@ -1,10 +1,4 @@ # Advanced TechDraw Tutorial/pl - - - - - - {{TutorialInfo/pl |Topic=Modelowanie |Level=Użytkownik zaawansowany @@ -90,4 +84,7 @@ Opisana ścieżka może jednak stanowić punkt wyjścia *(lub pomysł)* do napis {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Advanced TechDraw Tutorial/pl diff --git a/wiki/translations/pl/Aeroplane.md b/wiki/translations/pl/Aeroplane.md index 1ee20b0dcd..9d0ec4521c 100644 --- a/wiki/translations/pl/Aeroplane.md +++ b/wiki/translations/pl/Aeroplane.md @@ -1,5 +1,5 @@ # Aeroplane/pl - {{TutorialInfo +{{TutorialInfo |Topic=Part Workbench |Level=Beginner |Time=10 minutes @@ -99,4 +99,7 @@ I hope this little tutorial has helped you to get a feel for rotations. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Aeroplane/pl diff --git a/wiki/translations/pl/Analysis_of_reinforced_concrete_with_FEM.md b/wiki/translations/pl/Analysis_of_reinforced_concrete_with_FEM.md index cb7344a54d..6b4f32c29f 100644 --- a/wiki/translations/pl/Analysis_of_reinforced_concrete_with_FEM.md +++ b/wiki/translations/pl/Analysis_of_reinforced_concrete_with_FEM.md @@ -1,5 +1,5 @@ # Analysis of reinforced concrete with FEM/pl - {{TutorialInfo +{{TutorialInfo |Topic= Reinforced concrete with FEM |Level= Intermediate |Time= 60 minutes @@ -183,4 +183,7 @@ The tensile stress pattern suggests an alternative design concept using pre-stre {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Analysis of reinforced concrete with FEM/pl diff --git a/wiki/translations/pl/Animation_Workbench.md b/wiki/translations/pl/Animation_Workbench.md index 51fed4d4fb..25ab7a59b9 100644 --- a/wiki/translations/pl/Animation_Workbench.md +++ b/wiki/translations/pl/Animation_Workbench.md @@ -1,5 +1,4 @@ # Animation Workbench/pl - {{Template:UnfinishedDocu }} @@ -101,3 +100,6 @@ Other - [External workbenches](External_workbenches.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Animation Workbench/pl diff --git a/wiki/translations/pl/AppImage.md b/wiki/translations/pl/AppImage.md index 5ebe286ef9..118316d9cc 100644 --- a/wiki/translations/pl/AppImage.md +++ b/wiki/translations/pl/AppImage.md @@ -1,5 +1,5 @@ # AppImage/pl - **As of 7 July 2019, the FreeCAD community has been observing that downloading AppImages from Github seems to timeout before completion. We aren't sure why this is occurring. If this happens to you please try downloading again. It make take a few tries. A recommended practice is to use the AppImage [https://www.freecadweb.org/wiki/Appimage#Automatic_updating auto-updating feature], which will restore the download from the place it failed.** +**As of 7 July 2019, the FreeCAD community has been observing that downloading AppImages from Github seems to timeout before completion. We aren't sure why this is occurring. If this happens to you please try downloading again. It make take a few tries. A recommended practice is to use the AppImage [https://www.freecadweb.org/wiki/Appimage#Automatic_updating auto-updating feature], which will restore the download from the place it failed.** {{TOCright}} @@ -170,3 +170,6 @@ The repository for these scripts is at [realthunder/FreeCADMakeImage](https://gi [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > AppImage/pl diff --git a/wiki/translations/pl/App_DocumentObject.md b/wiki/translations/pl/App_DocumentObject.md index 6b01fe403a..fed0ac5d4b 100644 --- a/wiki/translations/pl/App_DocumentObject.md +++ b/wiki/translations/pl/App_DocumentObject.md @@ -1,5 +1,5 @@ # App DocumentObject/pl - {{TOCright}} +{{TOCright}} ## Introduction @@ -69,4 +69,7 @@ obj.Label = "Custom label" {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App DocumentObject/pl diff --git a/wiki/translations/pl/App_DocumentObjectGroup.md b/wiki/translations/pl/App_DocumentObjectGroup.md index 10c0b29498..7cb86b07cd 100644 --- a/wiki/translations/pl/App_DocumentObjectGroup.md +++ b/wiki/translations/pl/App_DocumentObjectGroup.md @@ -1,6 +1,4 @@ # App DocumentObjectGroup/pl - - ## Introduction @@ -31,4 +29,7 @@ See the properties in the [Std Group](Std_Group.md) page. {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App DocumentObjectGroup/pl diff --git a/wiki/translations/pl/App_FeaturePython.md b/wiki/translations/pl/App_FeaturePython.md index d49fac79e9..c64484279a 100644 --- a/wiki/translations/pl/App_FeaturePython.md +++ b/wiki/translations/pl/App_FeaturePython.md @@ -1,6 +1,4 @@ # App FeaturePython/pl - - ## Introduction An [App FeaturePython](App_FeaturePython.md) object, or formally an `App::FeaturePython`, is a simple instance of the [App DocumentObject](App_DocumentObject.md) in [Python](Python.md). @@ -95,4 +93,7 @@ If the desired object should have a placement, a shape, an attachment, or other {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App FeaturePython/pl diff --git a/wiki/translations/pl/App_GeoFeature.md b/wiki/translations/pl/App_GeoFeature.md index 07d492c960..9aa6304f73 100644 --- a/wiki/translations/pl/App_GeoFeature.md +++ b/wiki/translations/pl/App_GeoFeature.md @@ -1,6 +1,4 @@ # App GeoFeature/pl - - ## Introduction @@ -144,4 +142,7 @@ For example, the [Arch BuildingPart](Arch_BuildingPart.md) element of the [Arch {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App GeoFeature/pl diff --git a/wiki/translations/pl/App_Link.md b/wiki/translations/pl/App_Link.md index 7fac613725..f9df06e28a 100644 --- a/wiki/translations/pl/App_Link.md +++ b/wiki/translations/pl/App_Link.md @@ -1,5 +1,5 @@ # App Link/pl - {{TOCright}} +{{TOCright}} ## Wprowadzenie @@ -28,4 +28,7 @@ Zobacz pełną listę właściwości na stronie [Std: LinkMake](Std_LinkMake/pl. {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Link/pl diff --git a/wiki/translations/pl/App_Part.md b/wiki/translations/pl/App_Part.md index a2fcce1ca6..bae376c3c4 100644 --- a/wiki/translations/pl/App_Part.md +++ b/wiki/translations/pl/App_Part.md @@ -1,6 +1,4 @@ # App Part/pl - - ## Introduction @@ -31,4 +29,7 @@ See the full list of properties in the [Std Part](Std_Part.md) page. {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Part/pl diff --git a/wiki/translations/pl/Arch_3DS.md b/wiki/translations/pl/Arch_3DS.md index 70186841ab..bb1b383405 100644 --- a/wiki/translations/pl/Arch_3DS.md +++ b/wiki/translations/pl/Arch_3DS.md @@ -1,9 +1,4 @@ # Arch 3DS/pl - - - - - Środowisko Pracy Arch obsługuje import plików [3DS](https://en.wikipedia.org/wiki/.3ds). Format 3DS jest antyczny, ale wciąż szeroko stosowany w Internecie. Może on zawierać dane siatkowe i informacje o materiałach. W chwili obecnej, będzie on importował obiekty Mesh zawarte w pliku jako obiekty Mesh FreeCAD i nie ma jeszcze wsparcia dla materiałów. @@ -13,3 +8,6 @@ [Category:User Documentation](Category:User_Documentation.md) [Category:Arch](Category:Arch.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3DS/pl diff --git a/wiki/translations/pl/Arch_3Views.md b/wiki/translations/pl/Arch_3Views.md index 584a4d9de4..e394be96c6 100644 --- a/wiki/translations/pl/Arch_3Views.md +++ b/wiki/translations/pl/Arch_3Views.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch 3Views/pl + ## Description @@ -68,11 +70,5 @@ Wall.ViewObject.Visibility = False mesh_obj.ViewObject.Visibility = False ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3Views/pl diff --git a/wiki/translations/pl/Arch_API.md b/wiki/translations/pl/Arch_API.md index db8b48c282..14c5ca8305 100644 --- a/wiki/translations/pl/Arch_API.md +++ b/wiki/translations/pl/Arch_API.md @@ -1,5 +1,5 @@ # Arch API/pl - **''(Listopad 2018)'' Arch API jest wymieniony w [https://www.freecadweb.org/api automatycznie generowanej dokumentacji API].** +**''(Listopad 2018)'' Arch API jest wymieniony w [https://www.freecadweb.org/api automatycznie generowanej dokumentacji API].** Funkcje API są częścią Środowiska pracy [Architektura](Arch_Workbench/pl.md) i mogą być używane w [makrodefinicjach](macros/pl.md) i z konsoli [Python](Python/pl.md) po zaimportowaniu modułu `Arch`. Dodatek [Zbrojenie](Reinforcement_Addon/pl.md) ma swoje własne [skrypty](Reinforcement_API/pl.md). @@ -18,3 +18,6 @@ Arch.makeWall(baseline, length=None, width=200, height=2000) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch API/pl diff --git a/wiki/translations/pl/Arch_Add.md b/wiki/translations/pl/Arch_Add.md index 019113f963..decbaa3612 100644 --- a/wiki/translations/pl/Arch_Add.md +++ b/wiki/translations/pl/Arch_Add.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Remove](Arch_Remove.md) --- +# Arch Add/pl + ## Description The Add tool allows you to do 4 kinds of operations: @@ -74,11 +76,5 @@ Arch.addComponents(Wall2, Wall) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Add/pl diff --git a/wiki/translations/pl/Arch_Axis.md b/wiki/translations/pl/Arch_Axis.md index c12b1410f0..f798558cb3 100644 --- a/wiki/translations/pl/Arch_Axis.md +++ b/wiki/translations/pl/Arch_Axis.md @@ -7,6 +7,8 @@ SeeAlso:[Axis System](Arch_AxisSystem.md), [Arch Grid](Arch_Grid.md) --- +# Arch Axis/pl + ## Description The ** [Arch Axis](Arch_Axis.md)** tool allows you to places a series of axes in the current document. The distance and the angle between axes is customizable, as well as the numbering style. The axes serve mainly as references to snap objects onto, but can also be used together with ** [Arch AxesSystems](Arch_AxisSystem.md)** , and can also be referenced by other Arch objects to create parametric arrays, for example of beams or columns. ** [Arch Grids](Arch_Grid.md)** can also be used in places of axes. @@ -89,8 +91,5 @@ Draft.move(Axes2, FreeCAD.Vector(-1000, 2500, 0)) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Axis/pl diff --git a/wiki/translations/pl/Arch_AxisSystem.md b/wiki/translations/pl/Arch_AxisSystem.md index c5a6d770b4..6bb2f28362 100644 --- a/wiki/translations/pl/Arch_AxisSystem.md +++ b/wiki/translations/pl/Arch_AxisSystem.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Axis](Arch_Axis.md), [Arch Grid](Arch_Grid.md) --- +# Arch AxisSystem/pl + ## Description The [AxisSystem](Arch_AxisSystem.md) tool allows you to combine two or three [Arch Axis](Arch_Axis.md) objects. @@ -73,8 +75,5 @@ Structure.Axis = AxisSystem FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch AxisSystem/pl diff --git a/wiki/translations/pl/Arch_Building.md b/wiki/translations/pl/Arch_Building.md index 438cab38b7..6c6fbe5b9f 100644 --- a/wiki/translations/pl/Arch_Building.md +++ b/wiki/translations/pl/Arch_Building.md @@ -7,6 +7,8 @@ SeeAlso:[Arch BuildingPart](Arch_BuildingPart.md), [Arch Site](Arch_Site.md) --- +# Arch Building/pl + ## Description The Arch Building is a special type of FreeCAD group object particularly suited for representing a whole building unit. They are mostly used to organize your model, by containing [floor](Arch_Floor.md) objects. @@ -61,8 +63,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Building/pl diff --git a/wiki/translations/pl/Arch_BuildingPart.md b/wiki/translations/pl/Arch_BuildingPart.md index bc0d153d22..dd773da602 100644 --- a/wiki/translations/pl/Arch_BuildingPart.md +++ b/wiki/translations/pl/Arch_BuildingPart.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Building](Arch_Building.md), [Arch Site](Arch_Site.md) --- +# Arch BuildingPart/pl + ## Description The BuildingPart replaces the old [Arch Floor](Arch_Floor.md) and [Arch Building](Arch_Building.md) with a more capable version that can be used not only to create Floor/Storey/Levels but also all kinds of situations where different Arch/BIM objects need to be grouped and that group might need to be handled as one object or replicated. @@ -126,8 +128,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BuildingPart/pl diff --git a/wiki/translations/pl/Arch_Check.md b/wiki/translations/pl/Arch_Check.md index 25a33fb804..f21317db32 100644 --- a/wiki/translations/pl/Arch_Check.md +++ b/wiki/translations/pl/Arch_Check.md @@ -6,6 +6,8 @@ SeeAlso:[Arch CloseHoles](Arch_CloseHoles.md) --- +# Arch Check/pl + ## Description This tool checks the current document or the selected objects for non-solid ** [Part](Part_Workbench.md)** or ** [Arch](Arch_Workbench.md)** objects, that might give problems, since most operations of the Arch Workbench require solid objects. @@ -53,11 +55,5 @@ list_bad = Arch.check([Wall1, Wall2, Circle, Wire], includehidden=True) print(list_bad) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Check/pl diff --git a/wiki/translations/pl/Arch_CloneComponent.md b/wiki/translations/pl/Arch_CloneComponent.md index fc59b1d822..20cb19c615 100644 --- a/wiki/translations/pl/Arch_CloneComponent.md +++ b/wiki/translations/pl/Arch_CloneComponent.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Clone](Draft_Clone.md), [Arch Component](Arch_Component.md) --- +# Arch CloneComponent/pl + ## Description The ** [Arch Clone Component](Arch_CloneComponent.md)** produces ** [Arch Components](Arch_Component.md)** that are clones of selected Arch objects. @@ -21,8 +23,5 @@ The clone component will simply have its **CloneOf** property set to the selecte ## Scripting - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloneComponent/pl diff --git a/wiki/translations/pl/Arch_CloseHoles.md b/wiki/translations/pl/Arch_CloseHoles.md index 0e0697477a..fa5ecd39d7 100644 --- a/wiki/translations/pl/Arch_CloseHoles.md +++ b/wiki/translations/pl/Arch_CloseHoles.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Check](Arch_Check.md) --- +# Arch CloseHoles/pl + ## Description This tool identifies holes (circular sequence of open edges) in a [Shape](Part_Workbench.md) object and attempts to close it by adding it a new face made from that edges sequence. You must still verify yourself that the result is a solid, though. @@ -51,11 +53,5 @@ FreeCAD.ActiveDocument.recompute() solid = Arch.closeHole(Wall.Shape) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloseHoles/pl diff --git a/wiki/translations/pl/Arch_Component.md b/wiki/translations/pl/Arch_Component.md index 91f907ab1e..a95e8adc42 100644 --- a/wiki/translations/pl/Arch_Component.md +++ b/wiki/translations/pl/Arch_Component.md @@ -6,6 +6,8 @@ Shortcut:**C** **M** --- +# Arch Component/pl + ## Description Creates a non-parametric [Arch](Arch_Workbench.md) component from any [Part](Part_Workbench.md)-based object. This gives the Part-based object the same attributes and properties as other Arch objects, and allows to specify how it should be exported to IFC by setting its **Role** property. @@ -46,11 +48,5 @@ The Arch component object is also a base shared by all other Arch objects (** [Part Box](Part_Box.md)**. Then, use a compound of those bricks as a high-resolution version of the wall. The shape of the wall is not modified by adding a Hi-Res object. Only its representation in the 3D view will change by adopting the representation of the high-resolution version instead of its own. - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Component/pl diff --git a/wiki/translations/pl/Arch_Concept.md b/wiki/translations/pl/Arch_Concept.md index 1ad545a503..6744e2abad 100644 --- a/wiki/translations/pl/Arch_Concept.md +++ b/wiki/translations/pl/Arch_Concept.md @@ -1,7 +1,4 @@ # Arch Concept/pl - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -171,3 +168,6 @@ The following diagram illustrates the relationship between all objects described Objects for capturing building knowledge [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Concept/pl diff --git a/wiki/translations/pl/Arch_CurtainWall.md b/wiki/translations/pl/Arch_CurtainWall.md index 85e5786215..d141de924c 100644 --- a/wiki/translations/pl/Arch_CurtainWall.md +++ b/wiki/translations/pl/Arch_CurtainWall.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Grid](Arch_Grid.md) --- +# Arch CurtainWall/pl + ## Description This tool creates a [curtain wall](https://en.wikipedia.org/wiki/Curtain_wall_(architecture)) by subdividing a base face into quadrangular faces, then creating vertical mullion on the vertical edges, horizontal mullions on the horizontal edges, and filling the spaces between mullions with panels. @@ -148,8 +150,5 @@ curtainWall.VerticalSections = 6 FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CurtainWall/pl diff --git a/wiki/translations/pl/Arch_CutPlane.md b/wiki/translations/pl/Arch_CutPlane.md index 95b36f3377..2e30ecae2a 100644 --- a/wiki/translations/pl/Arch_CutPlane.md +++ b/wiki/translations/pl/Arch_CutPlane.md @@ -6,6 +6,8 @@ SeeAlso:[Arch CutLine](Arch_CutLine.md), [Arch Remove](Arch_Remove.md) --- +# Arch CutPlane/pl + ## Description The Cut Plane tool allows you to cut an Arch object according to a plane: @@ -92,8 +94,5 @@ cutObj2 = Arch.cutComponentwithPlane(main_object2, cut_face2, 1) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutPlane/pl diff --git a/wiki/translations/pl/Arch_DAE.md b/wiki/translations/pl/Arch_DAE.md index 5c84df29e9..78e09db109 100644 --- a/wiki/translations/pl/Arch_DAE.md +++ b/wiki/translations/pl/Arch_DAE.md @@ -1,6 +1,4 @@ # Arch DAE/pl - - Format [Collada *(DAE)*](https://en.wikipedia.org/wiki/COLLADA) jest standardowym formatem plików do wymiany danych Siatki. Środowisko pracy [Architektura](Arch_Workbench/pl.md) może importować siatki z plików .dae i eksportować obiekty Arch i inne oparte na [kształtach](Part_Workbench/pl.md) do formatu .dae. Zauważ, że importowane obiekty będą obiektami [Siatki](Mesh_Workbench/pl.md) i będą musiały być zamienione na [Kształty](Shape/pl.md) lub Obiekty Arch dla optymalnego wykorzystania. Środowisko pracy [Architektura](Arch_Workbench/pl.md) posiada kilka narzędzi, które pomogą Ci w wykonaniu tej operacji. @@ -18,3 +16,6 @@ Funkcjonalność importu Collada w środowisku pracy Architektura zależy od [py [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch DAE/pl diff --git a/wiki/translations/pl/Arch_Door.md b/wiki/translations/pl/Arch_Door.md index f2d7abe13f..332775278b 100644 --- a/wiki/translations/pl/Arch_Door.md +++ b/wiki/translations/pl/Arch_Door.md @@ -8,6 +8,8 @@ Icon:Arch_Window.svg --- +# Arch Door/pl + ## Description [Arch Doors](Arch_Door.md) are created with the [Arch Window](Arch_Window.md) tool. @@ -23,5 +25,5 @@ All properties are described in the [Arch Window](Arch_Window.md) tool. Door *Door being constructed from a [Sketch](Sketcher_Workbench.md)* - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Door/pl diff --git a/wiki/translations/pl/Arch_Equipment.md b/wiki/translations/pl/Arch_Equipment.md index 87eb3d8a22..7fdb26f7bb 100644 --- a/wiki/translations/pl/Arch_Equipment.md +++ b/wiki/translations/pl/Arch_Equipment.md @@ -7,6 +7,8 @@ SeeAlso:[Arch 3 views](Arch_3Views.md) --- +# Arch Equipment/pl + ## Description The Equipment tool offers you a simple and convenient way to insert non-structural, standalone elements such as pieces of furniture, hidro-sanitary equipments or electrical appliances to your projects. Equipments are based on [Part shapes](Part_Workbench.md), which allow them to benefit from the solidity and possibilities of BRep geometry, and generate nice views when rendered to plan and section views. @@ -65,11 +67,5 @@ Equip = Arch.makeEquipment(Box) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Equipment/pl diff --git a/wiki/translations/pl/Arch_Fence.md b/wiki/translations/pl/Arch_Fence.md index d38133f34e..4a75a03aad 100644 --- a/wiki/translations/pl/Arch_Fence.md +++ b/wiki/translations/pl/Arch_Fence.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Arch Fence/pl + ## Description The [Arch Fence](Arch_Fence.md) is a object that builds a fence by repeating a single fence post and section along a given path. @@ -94,8 +96,5 @@ post = FreeCAD.ActiveDocument.Post Fence = Arch.buildFence(fence_section, post, sketch) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Fence/pl diff --git a/wiki/translations/pl/Arch_Floor.md b/wiki/translations/pl/Arch_Floor.md index 1940fec45b..bb79278943 100644 --- a/wiki/translations/pl/Arch_Floor.md +++ b/wiki/translations/pl/Arch_Floor.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Building](Arch_Building.md), [Arch BuildingPart](Arch_BuildingPart.md), [Arch Site](Arch_Site.md) --- +# Arch Floor/pl + ## Description The [Arch Floor](Arch_Floor.md) is a special type of FreeCAD group object that has a couple of additional properties particularly suited for building floors. Particularly, they have a height property, that its children objects ([walls](Arch_Wall.md) and [structures](Arch_Structure.md)) can use to set their own height automatically. They are mostly used to organize your model. @@ -66,11 +68,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor/pl diff --git a/wiki/translations/pl/Arch_Frame.md b/wiki/translations/pl/Arch_Frame.md index e2aeabafc6..34e08c13e7 100644 --- a/wiki/translations/pl/Arch_Frame.md +++ b/wiki/translations/pl/Arch_Frame.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Structure](Arch_Structure.md) --- +# Arch Frame/pl + ## Description The ** [Arch Frame](Arch_Frame.md)** tool is used to build all kinds of frame objects based on a profile and a layout. The profile is extruded along the edges of the layout, which can be any 2D object such as a [sketch](Sketcher_Workbench.md), or a [Draft object](Draft_Workbench.md). It is especially useful to create railings, or frame walls. Frame objects can then easily be turned into [wall](Arch_Wall.md) or [structure](Arch_Structure.md) objects. @@ -73,11 +75,5 @@ Frame = Arch.makeFrame(baseobj, profile) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Frame/pl diff --git a/wiki/translations/pl/Arch_Grid.md b/wiki/translations/pl/Arch_Grid.md index 25863c2ee9..81f013d058 100644 --- a/wiki/translations/pl/Arch_Grid.md +++ b/wiki/translations/pl/Arch_Grid.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Axis](Arch_Axis.md), [Arch AxisSystem](Arch_AxisSystem.md) --- +# Arch Grid/pl + ## Description The ** [Arch Grid](Arch_Grid.md)** tool allows you to place a grid-like object in the document. This object is meant to serve as a base to build Arch objects that need a regular but complex frame, such as windows, curtain walls, column grids, railings, etc. The Grid object is editable like a spreadsheet, where you can add or remove columns and rows, define their size, and merge cells. @@ -87,8 +89,5 @@ Structure.Axis = Grid FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Grid/pl diff --git a/wiki/translations/pl/Arch_IFC.md b/wiki/translations/pl/Arch_IFC.md index 282eab02a3..17118d2fb2 100644 --- a/wiki/translations/pl/Arch_IFC.md +++ b/wiki/translations/pl/Arch_IFC.md @@ -1,7 +1,4 @@ # Arch IFC/pl - - - {{TOCright}} ## Opis @@ -75,3 +72,6 @@ Jeśli kształt eksportowanych obiektów opiera się na wyciskaniu lub operacji [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IFC/pl diff --git a/wiki/translations/pl/Arch_IfcExplorer.md b/wiki/translations/pl/Arch_IfcExplorer.md index 15d330d119..48493c2627 100644 --- a/wiki/translations/pl/Arch_IfcExplorer.md +++ b/wiki/translations/pl/Arch_IfcExplorer.md @@ -6,6 +6,8 @@ SeeAlso:[Arch IFC](Arch_IFC.md) --- +# Arch IfcExplorer/pl + ## Description The [IFC explorer](Arch_IfcExplorer.md) is a simple utility to explore the contents of an [IFC](Arch_IFC.md) file. IFC files are text files, and are therefore readable in a text editor, but the information is condensed, unformatted, and difficult to browse. This utility presents to the user the exact same content, but displayed in an organized and readable method. The \"[IfcOpenShell](IfcOpenShell.md)\" software library must be installed for this utility to work. @@ -31,3 +33,6 @@ The purpose of this explorer is simply to allow you to check what is really writ [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcExplorer/pl diff --git a/wiki/translations/pl/Arch_IfcSpreadsheet.md b/wiki/translations/pl/Arch_IfcSpreadsheet.md index ef258f299a..6c232046d0 100644 --- a/wiki/translations/pl/Arch_IfcSpreadsheet.md +++ b/wiki/translations/pl/Arch_IfcSpreadsheet.md @@ -7,6 +7,8 @@ SeeAlso:[Arch IFC](Arch_IFC.md), [Arch IfcExplorer](Arch_IfcExplorer.md) --- +# Arch IfcSpreadsheet/pl + ## Description This tool creates a spreadsheet to store [IFC](Arch_IFC.md) properties of an object. @@ -44,8 +46,5 @@ FreeCAD.ActiveDocument.recompute() spreadsheet = Arch.makeIfcSpreadsheet(Wall) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcSpreadsheet/pl diff --git a/wiki/translations/pl/Arch_JSON.md b/wiki/translations/pl/Arch_JSON.md index cd4bf02dd5..09e78b7298 100644 --- a/wiki/translations/pl/Arch_JSON.md +++ b/wiki/translations/pl/Arch_JSON.md @@ -1,9 +1,4 @@ # Arch JSON/pl - - - - - Głównym celem tego formatu eksportu jest ułatwienie przetwarzania danych modelu FreeCAD z języków programowania. Format [JSON](http://json.org/) jest następujący: { @@ -31,3 +26,6 @@ Należy zauważyć, że ścianki tworzą trójkąty, a ich wartości całkowite [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch JSON/pl diff --git a/wiki/translations/pl/Arch_MergeWalls.md b/wiki/translations/pl/Arch_MergeWalls.md index d0cd94a0d2..28d9c25999 100644 --- a/wiki/translations/pl/Arch_MergeWalls.md +++ b/wiki/translations/pl/Arch_MergeWalls.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md) --- +# Arch MergeWalls/pl + ## Description The [MergeWalls](Arch_MergeWalls.md) tool fuses two or more selected ** [Arch Walls](Arch_Wall.md)**. @@ -47,8 +49,5 @@ FreeCAD.ActiveDocument.recompute() base = Arch.joinWalls([Wall1, Wall2]) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MergeWalls/pl diff --git a/wiki/translations/pl/Arch_MeshToShape.md b/wiki/translations/pl/Arch_MeshToShape.md index 847ea3a562..2fa07677af 100644 --- a/wiki/translations/pl/Arch_MeshToShape.md +++ b/wiki/translations/pl/Arch_MeshToShape.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch RemoveShape](Arch_RemoveShape.md) --- +# Arch MeshToShape/pl + ## Description [Arch MeshToShape](Arch_MeshToShape.md) converts a selected [Mesh](Mesh.md) ([Mesh Feature](Mesh_Feature.md)) object into a [Shape](Shape.md) ([Part Feature](Part_Feature.md)) object. @@ -58,8 +60,5 @@ FreeCAD.ActiveDocument.recompute() new_obj = Arch.meshToShape(Box) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MeshToShape/pl diff --git a/wiki/translations/pl/Arch_Module.md b/wiki/translations/pl/Arch_Module.md index b2eaa5ee50..ca1800709f 100644 --- a/wiki/translations/pl/Arch_Module.md +++ b/wiki/translations/pl/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/pl 1. REDIRECT [Arch\_Workbench/pl](Arch_Workbench/pl.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/pl diff --git a/wiki/translations/pl/Arch_MultiMaterial.md b/wiki/translations/pl/Arch_MultiMaterial.md index 424676136e..f3ea1ea1be 100644 --- a/wiki/translations/pl/Arch_MultiMaterial.md +++ b/wiki/translations/pl/Arch_MultiMaterial.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SetMaterial](Arch_SetMaterial.md), [Arch CompSetMaterial](Arch_CompSetMaterial.md) --- +# Arch MultiMaterial/pl + ## Description The Multi-Material tool defines a list of [materials](Material.md) with, for each material, a name and a thickness value. This multi-materials list can then be added to an [Arch](Arch_Workbench.md) object instead of a single [Arch Material](Arch_SetMaterial.md) . @@ -48,8 +50,5 @@ This roughly corresponds to a combination of [IfcMaterialLayerSet](https://stand ## Scripting - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MultiMaterial/pl diff --git a/wiki/translations/pl/Arch_Nest.md b/wiki/translations/pl/Arch_Nest.md index 87f781329d..22aa711fd5 100644 --- a/wiki/translations/pl/Arch_Nest.md +++ b/wiki/translations/pl/Arch_Nest.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Panel](Arch_Panel.md), [Arch Panel Sheet](Arch_Panel_Sheet.md) --- +# Arch Nest/pl + ## Description The ** [Arch Nest](Arch_Nest.md)** tool allows to select a flat shape to be a container, and a series of other flat shapes to be organized inside the space defined by the container shape. This is typically needed for CNC operations, where you want to cut a series of pieces out of a base panel, and need to organize those pieces in the best possible compact way so they occupy less space on the panel. @@ -38,8 +40,5 @@ The algorithm behind the Nest tool is in constant evolution, and is currently no - At the moment, margin / spacing between the pieces is not implemented yet - The calculation can take a lot of time with many objects. That will be optimized in the future - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Nest/pl diff --git a/wiki/translations/pl/Arch_OBJ.md b/wiki/translations/pl/Arch_OBJ.md index 83edec5281..6fa7e04461 100644 --- a/wiki/translations/pl/Arch_OBJ.md +++ b/wiki/translations/pl/Arch_OBJ.md @@ -1,9 +1,4 @@ # Arch OBJ/pl - - - - - ## Opis Dodatkowo oprócz standardowego eksportera FreeCAD [OBJ](http://en.wikipedia.org/wiki/Wavefront_.obj_file), środowisko pracy [Architektura](Arch_Workbench/pl.md) posiada alternatywny eksporter, który eksportuje koplanarne powierzchnie jako całe powierzchnie OBJ, zamiast triangulacji obiektów opartych na [kształtach](Shape/pl.md), jak to robi standardowy eksporter. @@ -53,3 +48,6 @@ mesh.write(Filename="new_example.obj", Material=face_colors, Format="obj") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch OBJ/pl diff --git a/wiki/translations/pl/Arch_Panel.md b/wiki/translations/pl/Arch_Panel.md index 44041bca17..4eb9f5de9e 100644 --- a/wiki/translations/pl/Arch_Panel.md +++ b/wiki/translations/pl/Arch_Panel.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Panel Cut](Arch_Panel_Cut.md), [Arch Panel Sheet](Arch_Panel_Sheet.md) --- +# Arch Panel/pl + ## Description This tool allows you to build all kinds of panel-like elements, typically for panel constructions like the [WikiHouse](http://www.wikihouse.cc/) project, but also for all kinds of objects that are based on a flat profile. @@ -89,8 +91,5 @@ Panel = Arch.makePanel(Rect, thickness=36) - [Wikihouse porting tutorial](Wikihouse_porting_tutorial.md) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel/pl diff --git a/wiki/translations/pl/Arch_Panel_Cut.md b/wiki/translations/pl/Arch_Panel_Cut.md index 77a1435559..8d7a045626 100644 --- a/wiki/translations/pl/Arch_Panel_Cut.md +++ b/wiki/translations/pl/Arch_Panel_Cut.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Panel](Arch_Panel.md), [Arch Panel Sheet](Arch_Panel_Sheet.md), [Arch Nest](Arch_Nest.md) --- +# Arch Panel Cut/pl + ## Description This tool creates, in the 3D document, a flat, 2D view of an [Arch Panel](Arch_Panel.md), to be included in an [Arch Panel Sheet](Arch_Panel_Sheet.md) or directly exported to [DXF](Draft_DXF.md). The Panel Cut objects are also supported by the [Path Workbench](Path_Workbench.md). @@ -95,8 +97,5 @@ FreeCAD.ActiveDocument.recompute() - [Wikihouse porting tutorial](Wikihouse_porting_tutorial.md) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Cut/pl diff --git a/wiki/translations/pl/Arch_Panel_Sheet.md b/wiki/translations/pl/Arch_Panel_Sheet.md index 26101b65cf..903e3a9d4a 100644 --- a/wiki/translations/pl/Arch_Panel_Sheet.md +++ b/wiki/translations/pl/Arch_Panel_Sheet.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Panel](Arch_Panel.md), [Arch Panel Cut](Arch_Panel_Cut.md), [Arch Nest](Arch_Nest.md) --- +# Arch Panel Sheet/pl + ## Description This tool allows to build a 2D sheet, including any number of [Arch Panel Cut](Arch_Panel_Cut.md) objects, or any other 2D object such as those made by the [Draft Workbench](Draft_Workbench.md) and [Sketcher Workbench](Sketcher_Workbench.md). The Panel Sheet is typically made to layout cuts to be made by a CNC machine. These sheets can then be exported to a [DXF](Draft_DXF.md) file. @@ -113,8 +115,5 @@ Sheet = Arch.makePanelSheet([Cut1, Cut2, Cut3]) - [Wikihouse porting tutorial](Wikihouse_porting_tutorial.md) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Sheet/pl diff --git a/wiki/translations/pl/Arch_Pipe.md b/wiki/translations/pl/Arch_Pipe.md index 0fe4fbc660..8ed8a9d567 100644 --- a/wiki/translations/pl/Arch_Pipe.md +++ b/wiki/translations/pl/Arch_Pipe.md @@ -8,6 +8,8 @@ SeeAlso:[Arch PipeConnector](Arch_PipeConnector.md), [Arch Equipment](Arch_Equipment.md) --- +# Arch Pipe/pl + ## Description This tool allows to create pipes from scratch, or from selected objects. The selected objects must be Part-based (Draft, Sketch, etc..) and contain one and only one open Wire. @@ -108,8 +110,5 @@ Pipe2 = Arch.makePipe(diameter=120, length=3000) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Pipe/pl diff --git a/wiki/translations/pl/Arch_PipeConnector.md b/wiki/translations/pl/Arch_PipeConnector.md index 43192dbbce..99e08ef204 100644 --- a/wiki/translations/pl/Arch_PipeConnector.md +++ b/wiki/translations/pl/Arch_PipeConnector.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Pipe](Arch_Pipe.md), [Arch Equipment](Arch_Equipment.md) --- +# Arch PipeConnector/pl + ## Description This tool allows to create corner or tee connection between two or three selected [Arch Pipes](Arch_Pipe.md). @@ -73,11 +75,5 @@ Conn3 = Arch.makePipeConnector([Pipe4, Pipe5], radius=400) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch PipeConnector/pl diff --git a/wiki/translations/pl/Arch_Preferences.md b/wiki/translations/pl/Arch_Preferences.md index 34aca895a9..6c1430802d 100644 --- a/wiki/translations/pl/Arch_Preferences.md +++ b/wiki/translations/pl/Arch_Preferences.md @@ -1,6 +1,4 @@ # Arch Preferences/pl - - The preferences for the [Arch Workbench](Arch_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), in the menu **Edit → Preferences → Arch**. There are two tabs: General settings, and Defaults. @@ -17,3 +15,6 @@ There are two tabs: General settings, and Defaults. [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Preferences/pl diff --git a/wiki/translations/pl/Arch_Profile.md b/wiki/translations/pl/Arch_Profile.md index 11bd89accf..9c7be766e6 100644 --- a/wiki/translations/pl/Arch_Profile.md +++ b/wiki/translations/pl/Arch_Profile.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Arch Profile/pl + ## Description The Profile tool builds a parametric 2D profile object. This object can then be used as a base in different other tools that perform extrusions, such as [Arch Frame](Arch_Frame.md), [Arch CurtainWall](Arch_CurtainWall.md) or [Part Extrude](Part_Extrude.md). @@ -88,8 +90,5 @@ Arch.makeProfile([0,'REC','REC100x100','R',100,100]) Where the first element of the list is an order number that is not used yet. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Profile/pl diff --git a/wiki/translations/pl/Arch_Project.md b/wiki/translations/pl/Arch_Project.md index d66080aefb..c808949184 100644 --- a/wiki/translations/pl/Arch_Project.md +++ b/wiki/translations/pl/Arch_Project.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Site](Arch_Site.md), [Arch Building](Arch_Building.md) --- +# Arch Project/pl + ## Description The Arch Project is a special object suitable to add better compatibility with [IFC](Arch_IFC.md) files. Every IFC file is required to contain an [IfcProject](https://standards.buildingsmart.org/IFC/RELEASE/IFC4_1/FINAL/HTML/schema/ifckernel/lexical/ifcproject.htm) entity. The IfcProject is mostly used to define general project settings such as projection systems, for GIS compatibility, or units systems. @@ -20,8 +22,5 @@ Note that, although any other BIM object can be added to a Project, which the IF 1. Press the ** [Arch Project](Arch_Project.md)** button, or press the **P** then **O** keys. 2. Add any object to your project by drag-and-dropping them onto the Project in the [Tree view](Tree_view.md). - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Project/pl diff --git a/wiki/translations/pl/Arch_Rebar.md b/wiki/translations/pl/Arch_Rebar.md index 28a0e74a3b..0f63db5301 100644 --- a/wiki/translations/pl/Arch_Rebar.md +++ b/wiki/translations/pl/Arch_Rebar.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md), [Reinforcement](Reinforcement_Workbench.md) --- +# Arch Rebar/pl + ## Description The [Arch Rebar](Arch_Rebar.md) tool allows you to place [reinforcing bars](http://en.wikipedia.org/wiki/Rebar) inside [Arch Structure](Arch_Structure.md) objects. @@ -120,3 +122,6 @@ FreeCAD.ActiveDocument.recompute() [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar/pl diff --git a/wiki/translations/pl/Arch_Rebar_BentShape.md b/wiki/translations/pl/Arch_Rebar_BentShape.md index a7146d87e8..b051d16acf 100644 --- a/wiki/translations/pl/Arch_Rebar_BentShape.md +++ b/wiki/translations/pl/Arch_Rebar_BentShape.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Stirrup](Arch_Rebar_Stirrup.md) --- +# Arch Rebar BentShape/pl + ## Description The [BentShape Rebar](Arch_Rebar_BentShape.md) tool allows the user to create a set of bent reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -152,3 +154,6 @@ BentShapeRebar.editBentShapeRebar(Rebar2, 50, 35, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BentShape/pl diff --git a/wiki/translations/pl/Arch_Rebar_Drawing_Dimensioning.md b/wiki/translations/pl/Arch_Rebar_Drawing_Dimensioning.md index f8a92aa49d..0633ff289d 100644 --- a/wiki/translations/pl/Arch_Rebar_Drawing_Dimensioning.md +++ b/wiki/translations/pl/Arch_Rebar_Drawing_Dimensioning.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar Bill Of Material](Arch_Rebar_BOM.md), [Reinforcement Rebar Shape Cut List](Reinforcement_Bar_Shape_Cut_List.md) --- +# Arch Rebar Drawing Dimensioning/pl + ## Description The [Reinforcement Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) tool allows the user to create drawing and dimensioning of reinforcing bars. @@ -1076,3 +1078,6 @@ for visible_rebar in visible_rebars: [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Drawing Dimensioning/pl diff --git a/wiki/translations/pl/Arch_Rebar_Helical.md b/wiki/translations/pl/Arch_Rebar_Helical.md index f58b185989..af991d4797 100644 --- a/wiki/translations/pl/Arch_Rebar_Helical.md +++ b/wiki/translations/pl/Arch_Rebar_Helical.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Stirrup](Arch_Rebar_Stirrup.md), [Arch Rebar Column Reinforcement](Arch_Rebar_ColumnReinforcement.md) --- +# Arch Rebar Helical/pl + ## Description The [Helical Rebar](Arch_Rebar_Helical.md) tool allows the user to create a continuous helical reinforcing bar inside an [Arch Structure](Arch_Structure.md) object. @@ -125,3 +127,6 @@ HelicalRebar.editHelicalRebar(Rebar, 20, 100, 20, 20, 100) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Helical/pl diff --git a/wiki/translations/pl/Arch_Rebar_LShape.md b/wiki/translations/pl/Arch_Rebar_LShape.md index 1d8a2496a4..a5149f3af7 100644 --- a/wiki/translations/pl/Arch_Rebar_LShape.md +++ b/wiki/translations/pl/Arch_Rebar_LShape.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Bent](Arch_Rebar_BentShape.md) --- +# Arch Rebar LShape/pl + ## Description The [LShape Rebar](Arch_Rebar_LShape.md) tool allows the user to create a set of L-shaped reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -149,3 +151,6 @@ LShapeRebar.editLShapeRebar(Rebar2, 50, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar LShape/pl diff --git a/wiki/translations/pl/Arch_Rebar_Stirrup.md b/wiki/translations/pl/Arch_Rebar_Stirrup.md index 0bd4a5d9fc..445f59e7aa 100644 --- a/wiki/translations/pl/Arch_Rebar_Stirrup.md +++ b/wiki/translations/pl/Arch_Rebar_Stirrup.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Helical](Arch_Rebar_Helical.md) --- +# Arch Rebar Stirrup/pl + ## Description The [Stirrup Rebar](Arch_Rebar_Stirrup.md) tool allows the user to create a set of stirrup reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -142,3 +144,6 @@ Stirrup.editStirrup(Rebar, 20, 20, 20, 20, 50, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Stirrup/pl diff --git a/wiki/translations/pl/Arch_Rebar_Straight.md b/wiki/translations/pl/Arch_Rebar_Straight.md index b1af00aef4..90a9d1c178 100644 --- a/wiki/translations/pl/Arch_Rebar_Straight.md +++ b/wiki/translations/pl/Arch_Rebar_Straight.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch Rebar Straight/pl + ## Description The [Arch Straight Rebar](Arch_Rebar_Straight.md) tool allows the user to create a set of straight reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -205,3 +207,6 @@ StraightRebar.editStraightRebar(Rebar4, 50, ("Right Side", 50), 100, 100, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Straight/pl diff --git a/wiki/translations/pl/Arch_Rebar_UShape.md b/wiki/translations/pl/Arch_Rebar_UShape.md index 48f6ccff36..37384d9739 100644 --- a/wiki/translations/pl/Arch_Rebar_UShape.md +++ b/wiki/translations/pl/Arch_Rebar_UShape.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch Rebar UShape/pl + ## Description The ** [UShape Rebar](Arch_Rebar_UShape.md)** tool allows the user to create a set of U-shaped reinforcing bars inside an ** [Arch Structure](Arch_Structure.md)** object. @@ -146,3 +148,6 @@ UShapeRebar.editUShapeRebar(Rebar2, 70, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar UShape/pl diff --git a/wiki/translations/pl/Arch_Reference.md b/wiki/translations/pl/Arch_Reference.md index 83d4c0d660..0192442924 100644 --- a/wiki/translations/pl/Arch_Reference.md +++ b/wiki/translations/pl/Arch_Reference.md @@ -6,6 +6,8 @@ SeeAlso:[Arch BuildingPart](Arch_BuildingPart.md) --- +# Arch Reference/pl + ## Description @@ -50,8 +52,5 @@ import Arch Arch.makeReference("/path/to/some/file.FSCtd","myPart") ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Reference/pl diff --git a/wiki/translations/pl/Arch_Remove.md b/wiki/translations/pl/Arch_Remove.md index 97ef7fbfe1..8ffffc540e 100644 --- a/wiki/translations/pl/Arch_Remove.md +++ b/wiki/translations/pl/Arch_Remove.md @@ -6,6 +6,8 @@ SeeAlso:[Arch CutLine](Arch_CutLine.md), [Arch CutPlane](Arch_CutPlane.md), [Arch Add](Arch_Add.md) --- +# Arch Remove/pl + ## Description The Remove tools allows you to do 2 kinds of operations: @@ -62,10 +64,7 @@ Draft.move(Box, FreeCAD.Vector(1000, 700, 0)) Arch.removeComponents(Box, Wall) FreeCAD.ActiveDocument.recompute() -``` - - - - - +``` +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove/pl diff --git a/wiki/translations/pl/Arch_RemoveShape.md b/wiki/translations/pl/Arch_RemoveShape.md index 16bac15cd6..60cef06993 100644 --- a/wiki/translations/pl/Arch_RemoveShape.md +++ b/wiki/translations/pl/Arch_RemoveShape.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch RemoveShape/pl + ## Description This tool attempts at removing the inner cubic shape of an ** [Arch Wall](Arch_Wall.md)** or ** [Arch Structure](Arch_Structure.md)**, and adjusting its properties, making it totally parametric. This tool will only work if the underlying shape is cubic (exactly 6 faces, all corners have only right angles). @@ -52,8 +54,5 @@ Arch.removeShape(Structure) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch RemoveShape/pl diff --git a/wiki/translations/pl/Arch_Roof.md b/wiki/translations/pl/Arch_Roof.md index 0c300804f4..3d32c295d2 100644 --- a/wiki/translations/pl/Arch_Roof.md +++ b/wiki/translations/pl/Arch_Roof.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md), [Arch Wall](Arch_Wall.md) --- +# Arch Roof/pl + ## Description The ** [Arch Roof](Arch_Roof.md)** tool allows for the creation of a sloped roof from a selected wire. The created roof object is parametric, keeping its relationship with the base object. The principle is that each edge is seen allotting a profile of roof (slope, width, overhang, thickness). @@ -106,8 +108,5 @@ roof1 = Arch.makeRoof(wire) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Roof/pl diff --git a/wiki/translations/pl/Arch_SHP.md b/wiki/translations/pl/Arch_SHP.md index 9105e98af5..8ba91ce088 100644 --- a/wiki/translations/pl/Arch_SHP.md +++ b/wiki/translations/pl/Arch_SHP.md @@ -1,5 +1,5 @@ # Arch SHP/pl - FreeCAD is able to import [shapefiles](https://en.wikipedia.org/wiki/Shapefile) +FreeCAD is able to import [shapefiles](https://en.wikipedia.org/wiki/Shapefile) The importer uses the shapefile.py library from , it is not found on your system on first run, the importer will propose to download and install it for you. @@ -21,3 +21,6 @@ Note that all the question of georeferenced units, with hundreds of projection s [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SHP/pl diff --git a/wiki/translations/pl/Arch_Schedule.md b/wiki/translations/pl/Arch_Schedule.md index 5d5fa38ff2..8c97821024 100644 --- a/wiki/translations/pl/Arch_Schedule.md +++ b/wiki/translations/pl/Arch_Schedule.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Equipment](Arch_Equipment.md) --- +# Arch Schedule/pl + ## Description The Schedule tool allows you to create and automatically populate a [spreadsheet](Spreadsheet_Workbench.md) with contents gathered from the model. @@ -96,8 +98,5 @@ The spreadsheet can then be exported to csv normally, from the Spreadsheet workb It is possible to add your own properties to objects. These are called [Dynamic properties](Property_editor#Actions.md). If they have been added with the **Prefix group name** option selected, their names will indeed start with the group name, but this prefix is not displayed in the [Property editor](Property_editor.md). Their names have this form: `NameOfGroup_NameOfProperty`. To reference them in a schedule this full name must be used. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Schedule/pl diff --git a/wiki/translations/pl/Arch_SectionPlane.md b/wiki/translations/pl/Arch_SectionPlane.md index e93496365e..2749c8c47e 100644 --- a/wiki/translations/pl/Arch_SectionPlane.md +++ b/wiki/translations/pl/Arch_SectionPlane.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Shape2DView](Draft_Shape2DView.md), [TechDraw ArchView](TechDraw_ArchView.md) --- +# Arch SectionPlane/pl + ## Description This tool places in the current document a section plane \"thing\", which defines a section or view plane. The \"thing\" takes its placement according to the current [Draft Working Plane](Draft_SelectPlane.md) and can be relocated and reoriented by moving and rotating it, until it describes the 2D view you want to obtain. The Section plane object will only consider a certain set of objects. Objects that are selected when you create a Section Plane will be added to that set automatically. Other objects can later be added or removed from a SectionPlane object with the [Arch Add component](Arch_Add.md) and [Arch Remove component](Arch_Remove.md) tools, or by double-clicking the Section Plane in the tree view. @@ -108,11 +110,5 @@ Section3 = Arch.makeSectionPlane([Site]) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane/pl diff --git a/wiki/translations/pl/Arch_SelectNonSolidMeshes.md b/wiki/translations/pl/Arch_SelectNonSolidMeshes.md index f813b40a17..8dcc3f32bb 100644 --- a/wiki/translations/pl/Arch_SelectNonSolidMeshes.md +++ b/wiki/translations/pl/Arch_SelectNonSolidMeshes.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch SelectNonSolidMeshes/pl + ## Description This tool identifies and selects the non-solid (non-[manifold](http://en.wikipedia.org/wiki/Manifold)) meshes in a selected group of selected Mesh Workbench [Mesh](Mesh_Workbench.md) objects. @@ -15,8 +17,5 @@ This tool identifies and selects the non-solid (non-[manifold](http://en.wikiped 1. Select a mesh object. 2. Press the ** [Select non solid](Arch_SelectNonSolidMeshes.md)** entry in **Arch → Utilities → Select non solid**. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SelectNonSolidMeshes/pl diff --git a/wiki/translations/pl/Arch_SetMaterial.md b/wiki/translations/pl/Arch_SetMaterial.md index 2d505e8905..06b01c3a5f 100644 --- a/wiki/translations/pl/Arch_SetMaterial.md +++ b/wiki/translations/pl/Arch_SetMaterial.md @@ -7,6 +7,8 @@ SeeAlso:[Arch CompSetMaterial](Arch_CompSetMaterial.md), [Arch MultiMaterial](Arch_MultiMaterial.md) --- +# Arch SetMaterial/pl + ## Description The Material tools allows to add [materials](Material.md) to the active document, and attribute a material to an [Arch](Arch_Workbench.md) object. Materials can all the properties of a certain material, and control the color of the object to which it is attached. Materials are stored into a **Materials** folder in the active document. @@ -44,8 +46,5 @@ The Material tools allows to add [materials](Material.md) to the active document This roughly corresponds to [IfcMaterial](https://standards.buildingsmart.org/IFC/DEV/IFC4_2/FINAL/HTML/link/ifcmaterial.htm). - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SetMaterial/pl diff --git a/wiki/translations/pl/Arch_Site.md b/wiki/translations/pl/Arch_Site.md index d50b19526f..74f544e9ef 100644 --- a/wiki/translations/pl/Arch_Site.md +++ b/wiki/translations/pl/Arch_Site.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Floor](Arch_Floor.md), [Arch Building](Arch_Building.md) --- +# Arch Site/pl + ## Description The Arch Site is a special object that combines properties of a standard FreeCAD group object and Arch objects. It is particularly suited for representing a whole project site, or terrain. In IFC-based architectural work, it is mostly used to organize your model, by containing [building](Arch_Building.md) objects. The site is also used to manage and display a physical terrain, and can computes volumes of earth to be added or removed. @@ -163,8 +165,5 @@ Node = Arch.makeSolarDiagram(-46.38, -23.33, scale=10000, complete=True) FreeCAD.Gui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Site/pl diff --git a/wiki/translations/pl/Arch_Space.md b/wiki/translations/pl/Arch_Space.md index feff9fb2f3..180752b7da 100644 --- a/wiki/translations/pl/Arch_Space.md +++ b/wiki/translations/pl/Arch_Space.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Structure](Arch_Structure.md) --- +# Arch Space/pl + ## Description The Space tool allows you to define an empty volume, either by basing it on a solid shape, or by defining its boundaries, or a mix of both. If it is based solely on boundaries, the volume is calculated by starting from the bounding box of all the given boundaries, and subtracting the spaces behind each boundary. The space object always defines a solid volume. The floor area of a space object, calculated by intersecting a horizontal plane at the center of mass of the space volume, can also be displayed. @@ -136,8 +138,5 @@ selection = FreeCADGui.Selection.getSelectionEx() Arch.removeSpaceBoundaries(Space, selection) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Space/pl diff --git a/wiki/translations/pl/Arch_SplitMesh.md b/wiki/translations/pl/Arch_SplitMesh.md index 73e32bcb00..5700107b63 100644 --- a/wiki/translations/pl/Arch_SplitMesh.md +++ b/wiki/translations/pl/Arch_SplitMesh.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SelectNonSolidMeshes](Arch_SelectNonSolidMeshes.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch SplitMesh/pl + ## Description This tool splits a selected [Mesh](Mesh_Workbench.md) object into its separate components @@ -55,11 +57,5 @@ mesh_obj.ViewObject.DisplayMode = "Flat Lines" new_list = Arch.splitMesh(mesh_obj) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SplitMesh/pl diff --git a/wiki/translations/pl/Arch_Stairs.md b/wiki/translations/pl/Arch_Stairs.md index bfb942b656..f53a19aaff 100644 --- a/wiki/translations/pl/Arch_Stairs.md +++ b/wiki/translations/pl/Arch_Stairs.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md), [Arch Equipment](Arch_Equipment.md) --- +# Arch Stairs/pl + ## Description The [Arch Stairs](Arch_Stairs.md) tool allows you to build automatically several types of stairs. At the moment, only straight stairs (with or without a central landing) are supported. Stairs can be built from scratch, or from a straight [line](Draft_Line.md), in which case the stairs follow the line. If the line is not horizontal but has a vertical inclination, the stairs will also follow its slope. @@ -94,8 +96,5 @@ import Arch Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Stairs/pl diff --git a/wiki/translations/pl/Arch_Structure.md b/wiki/translations/pl/Arch_Structure.md index c42e92d01b..7b18a43e7e 100644 --- a/wiki/translations/pl/Arch_Structure.md +++ b/wiki/translations/pl/Arch_Structure.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Rebar](Arch_Rebar.md) --- +# Arch Structure/pl + ## Description The [Arch Structure](Arch_Structure.md) tool allows you to build structural elements such as columns or beams, by specifying their width, length and height, or by basing them on a 2D profile (face, wire or sketch). @@ -114,10 +116,7 @@ FreeCAD.ActiveDocument.recompute() Structure2 = Arch.makeStructure(None, length=500, width=1000, height=3000) Draft.move(Structure2, FreeCAD.Vector(2000, 0, 0)) FreeCAD.ActiveDocument.recompute() -``` - - - - - +``` +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/pl diff --git a/wiki/translations/pl/Arch_Survey.md b/wiki/translations/pl/Arch_Survey.md index 02ae62e5b3..ea036864ed 100644 --- a/wiki/translations/pl/Arch_Survey.md +++ b/wiki/translations/pl/Arch_Survey.md @@ -6,6 +6,8 @@ SeeAlso:[Macro FCInfo](Macro_FCInfo.md), [Macro SimpleProperties](Macro_SimpleProperties.md) --- +# Arch Survey/pl + ## Description The ** [Arch Survey](Arch_Survey.md)** tool enters a special surveying mode, which allows you to quickly grab measurements and information from a model, and transfer that information to other applications. Once you are in Survey mode, clicking on different subelements of 3D objects gathers the following information (depending on what you click): @@ -64,8 +66,5 @@ for obj in selection: print("Center of Mass: %f", element.CenterOfMass) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Survey/pl diff --git a/wiki/translations/pl/Arch_ToggleIfcBrepFlag.md b/wiki/translations/pl/Arch_ToggleIfcBrepFlag.md index 396a9b22ee..96e5552f63 100644 --- a/wiki/translations/pl/Arch_ToggleIfcBrepFlag.md +++ b/wiki/translations/pl/Arch_ToggleIfcBrepFlag.md @@ -6,6 +6,8 @@ SeeAlso:[Arch IfcExplorer](Arch_IfcExplorer.md), [Arch IFC](Arch_IFC.md) --- +# Arch ToggleIfcBrepFlag/pl + ## Description This tool turns the IfcBrep flag of a selected [Arch](Arch_Workbench.md) object on/off (the default is always off). If the flag in on, when exported to IFC, the object will be exported as an [IfcFacetedBrep](http://www.buildingsmart-tech.org/ifc/IFC4/final/html/schema/ifcgeometricmodelresource/lexical/ifcfacetedbrep.htm) object, even if a higher-level kind of export such as IfcExtrudedAreaSolid or IfcBooleanResult is possible. Although IfcFacetedBrep objects are heavier and less editable (they loose some geometry information such as the modeling history), they are often less error-prone. Setting this flag allows to solve some cases of objects that are not exported correctly when the flag is not set. @@ -15,11 +17,5 @@ This tool turns the IfcBrep flag of a selected [Arch](Arch_Workbench.md) object 1. Select an Arch object. 2. Select the **** button, or **Arch** → **Utilities** → ** [Toggle IfcBrepFlag](Arch_ToggleIfcBrepFlag.md)** from the top menu. - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleIfcBrepFlag/pl diff --git a/wiki/translations/pl/Arch_ToggleSubs.md b/wiki/translations/pl/Arch_ToggleSubs.md index 24b1e48080..9ccf495a3a 100644 --- a/wiki/translations/pl/Arch_ToggleSubs.md +++ b/wiki/translations/pl/Arch_ToggleSubs.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Component](Arch_Component.md) --- +# Arch ToggleSubs/pl + ## Description This tools toggles the visibility of all the subtractions of an [Arch](Arch_Workbench.md) object between visible and hidden. @@ -26,8 +28,5 @@ The color of a subtraction element can follow the style of [Draft construction]( The [Draft construction](Draft_ToggleConstructionMode.md) style can be set in the [Draft Preferences](Draft_Preferences.md), in the menu **Preferences → Draft → General Draft**. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleSubs/pl diff --git a/wiki/translations/pl/Arch_Truss.md b/wiki/translations/pl/Arch_Truss.md index de3473d24c..3be8fe3325 100644 --- a/wiki/translations/pl/Arch_Truss.md +++ b/wiki/translations/pl/Arch_Truss.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Arch Truss/pl + ## Description The [Arch Truss](Arch_Truss.md) tool builds a [truss](https://en.wikipedia.org/wiki/Truss) object, either from a selected linear object (lie a [Draft Line](Draft_Line.md) or [Sketch](Sketcher_NewSketch.md)), or from scratch, if no object is selected when launching the command. @@ -89,8 +91,5 @@ truss.HeightEnd = 400 # adjust other needed properties ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Truss/pl diff --git a/wiki/translations/pl/Arch_Wall.md b/wiki/translations/pl/Arch_Wall.md index de42c95159..435079745a 100644 --- a/wiki/translations/pl/Arch_Wall.md +++ b/wiki/translations/pl/Arch_Wall.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md) --- +# Arch Wall/pl + ## Description This tool builds a Wall object from scratch or on top of any other [shape](Part_Workbench.md)-based or [mesh](Mesh_Workbench.md)-based object. A wall can be built without any base object, in which case it behaves as a cubic volume, using length, width and height properties. When built on top of an existing shape, a wall can be based on: @@ -137,11 +139,5 @@ Draft.move(Wall2, FreeCAD.Vector(0, -1000, 0)) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/pl diff --git a/wiki/translations/pl/Arch_Window.md b/wiki/translations/pl/Arch_Window.md index 191d03c250..4f0e619e6b 100644 --- a/wiki/translations/pl/Arch_Window.md +++ b/wiki/translations/pl/Arch_Window.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Add](Arch_Add.md) --- +# Arch Window/pl + ## Description An [Arch Window](Arch_Window.md) is a base object for all kinds of \"embeddable\" objects, such as windows and doors. It is designed to be either independent, or \"hosted\" inside another component such as an [Arch Wall](Arch_Wall.md), [Arch Structure](Arch_Structure.md), or [Arch Roof](Arch_Roof.md). It has its own geometry, that can be made of several solid components (commonly a frame and inner panels), and also defines a volume to be subtracted from the host objects, in order to create an opening. @@ -220,11 +222,5 @@ Door = Arch.makeWindowPreset("Simple door", placement=place) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Window/pl diff --git a/wiki/translations/pl/Arch_Workbench.md b/wiki/translations/pl/Arch_Workbench.md index 36b6eb57d1..a9b1715129 100644 --- a/wiki/translations/pl/Arch_Workbench.md +++ b/wiki/translations/pl/Arch_Workbench.md @@ -1,10 +1,4 @@ -# Arch Workbench/pl - - - - - -Arch workbench icon +# Arch workbench icon Arch Workbench/pl {{TOCright}} @@ -144,3 +138,6 @@ Moduł Arch może być używany w skryptach [Python](Python.md) i [makrodefiniac [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/pl diff --git a/wiki/translations/pl/Arch_panel_tutorial.md b/wiki/translations/pl/Arch_panel_tutorial.md index c5e9977e7a..784f642513 100644 --- a/wiki/translations/pl/Arch_panel_tutorial.md +++ b/wiki/translations/pl/Arch_panel_tutorial.md @@ -1,7 +1,4 @@ # Arch panel tutorial/pl - - - {{TutorialInfo |Topic= Modeling an architectural panel |Level= Beginner @@ -198,4 +195,7 @@ Both Draft Rotate and Move tools make use of the Draft Snapping system. Differen {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch panel tutorial/pl diff --git a/wiki/translations/pl/Arch_tutorial.md b/wiki/translations/pl/Arch_tutorial.md index 659dd04d82..d6f5040a76 100644 --- a/wiki/translations/pl/Arch_tutorial.md +++ b/wiki/translations/pl/Arch_tutorial.md @@ -1,7 +1,4 @@ # Arch tutorial/pl - - - {{TutorialInfo/pl |Topic=Modelowanie |Level=średniozaawansowany @@ -478,4 +475,7 @@ Plik utworzony podczas tego ćwiczenia można znaleźć [ze strony yorik-a](http {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch tutorial/pl diff --git a/wiki/translations/pl/Artwork.md b/wiki/translations/pl/Artwork.md index db62ea6908..692a6ca314 100644 --- a/wiki/translations/pl/Artwork.md +++ b/wiki/translations/pl/Artwork.md @@ -1,5 +1,5 @@ # Artwork/pl - Oto grafika, która została stworzona na potrzeby programu FreeCAD. Zachęcamy do ponownego wykorzystania tych plików w innych aplikacjach. Jeśli chcesz przyczynić się do tworzenia ikon, przeczytaj [wytyczne do grafiki](Artwork_Guidelines.md). +Oto grafika, która została stworzona na potrzeby programu FreeCAD. Zachęcamy do ponownego wykorzystania tych plików w innych aplikacjach. Jeśli chcesz przyczynić się do tworzenia ikon, przeczytaj [wytyczne do grafiki](Artwork_Guidelines.md). ## Różne ikonki @@ -157,3 +157,6 @@ Zobacz [Grafika niepoprawna](Artwork_Erroneous/pl.md). }} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork/pl diff --git a/wiki/translations/pl/Artwork_Arch.md b/wiki/translations/pl/Artwork_Arch.md index 3564f193c3..d621a7947f 100644 --- a/wiki/translations/pl/Artwork_Arch.md +++ b/wiki/translations/pl/Artwork_Arch.md @@ -1,5 +1,5 @@ # Artwork Arch/pl - Ikony te znajdują się we wskazanej ścieżce źródłowej. +Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -19,3 +19,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:Arch](Category:Arch.md) + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Artwork Arch/pl diff --git a/wiki/translations/pl/Artwork_Assembly.md b/wiki/translations/pl/Artwork_Assembly.md index 26bbd05acb..d3a24a99a7 100644 --- a/wiki/translations/pl/Artwork_Assembly.md +++ b/wiki/translations/pl/Artwork_Assembly.md @@ -1,6 +1,4 @@ # Artwork Assembly/pl - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -25,3 +23,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:Assembly](Category:Assembly.md) + +--- +[documentation index](../README.md) > [Assembly](Category:Assembly.md) > Artwork Assembly/pl diff --git a/wiki/translations/pl/Artwork_Assembly3.md b/wiki/translations/pl/Artwork_Assembly3.md index 09e1c8ad57..710128f3ac 100644 --- a/wiki/translations/pl/Artwork_Assembly3.md +++ b/wiki/translations/pl/Artwork_Assembly3.md @@ -1,6 +1,4 @@ # Artwork Assembly3/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej gałęzi Realthundera: ## \.../Mod/asm3 @@ -35,3 +33,6 @@ Ikony te znajdują się we wskazanej ścieżce źródłowej gałęzi Realthunder }} [Category:Assembly](Category:Assembly.md) + +--- +[documentation index](../README.md) > [Assembly](Category:Assembly.md) > Artwork Assembly3/pl diff --git a/wiki/translations/pl/Artwork_Complete.md b/wiki/translations/pl/Artwork_Complete.md index 1068605819..01263b59fd 100644 --- a/wiki/translations/pl/Artwork_Complete.md +++ b/wiki/translations/pl/Artwork_Complete.md @@ -1,6 +1,4 @@ # Artwork Complete/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -14,3 +12,5 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md {{Artwork}} +--- +[documentation index](../README.md) > Artwork Complete/pl diff --git a/wiki/translations/pl/Artwork_Draft.md b/wiki/translations/pl/Artwork_Draft.md index a6f9c5bcef..f79df7c733 100644 --- a/wiki/translations/pl/Artwork_Draft.md +++ b/wiki/translations/pl/Artwork_Draft.md @@ -1,6 +1,4 @@ # Artwork Draft/pl - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -21,3 +19,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). [Category:Draft](Category:Draft.md) + +--- +[documentation index](../README.md) > [Draft](Category:Draft.md) > Artwork Draft/pl diff --git a/wiki/translations/pl/Artwork_Drawing.md b/wiki/translations/pl/Artwork_Drawing.md index 6caf00de47..c4a7eea9e9 100644 --- a/wiki/translations/pl/Artwork_Drawing.md +++ b/wiki/translations/pl/Artwork_Drawing.md @@ -1,6 +1,4 @@ # Artwork Drawing/pl - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -46,3 +44,5 @@ The following image is \"A4\_Simple.svg\". It is an empty page. {{Artwork}} +--- +[documentation index](../README.md) > Artwork Drawing/pl diff --git a/wiki/translations/pl/Artwork_Erroneous.md b/wiki/translations/pl/Artwork_Erroneous.md index c9ea4b1845..5dd0b08aa2 100644 --- a/wiki/translations/pl/Artwork_Erroneous.md +++ b/wiki/translations/pl/Artwork_Erroneous.md @@ -1,6 +1,4 @@ # Artwork Erroneous/pl - - Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -26,3 +24,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork Erroneous/pl diff --git a/wiki/translations/pl/Artwork_Fem.md b/wiki/translations/pl/Artwork_Fem.md index 858cabc815..0c51178a96 100644 --- a/wiki/translations/pl/Artwork_Fem.md +++ b/wiki/translations/pl/Artwork_Fem.md @@ -1,6 +1,4 @@ # Artwork Fem/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -17,3 +15,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Artwork Fem/pl diff --git a/wiki/translations/pl/Artwork_Gui.md b/wiki/translations/pl/Artwork_Gui.md index 7f453f1531..978f946af6 100644 --- a/wiki/translations/pl/Artwork_Gui.md +++ b/wiki/translations/pl/Artwork_Gui.md @@ -1,5 +1,5 @@ # Artwork Gui/pl - Ikony te znajdują się we wskazanej ścieżce źródłowej. +Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -22,4 +22,7 @@ Te obrazy są większe niż ikony. {{Artwork -}} +}} + +--- +[documentation index](../README.md) > Artwork Gui/pl diff --git a/wiki/translations/pl/Artwork_Guidelines.md b/wiki/translations/pl/Artwork_Guidelines.md index 6379d6ae84..ba949d13d5 100644 --- a/wiki/translations/pl/Artwork_Guidelines.md +++ b/wiki/translations/pl/Artwork_Guidelines.md @@ -1,6 +1,4 @@ # Artwork Guidelines/pl - - ## Introduction @@ -173,3 +171,6 @@ A grayscale image allows you to more easily identify problems in contrast, as on {{Artwork}} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Artwork Guidelines/pl diff --git a/wiki/translations/pl/Artwork_Image.md b/wiki/translations/pl/Artwork_Image.md index a6e86dfe1a..eac3af49c7 100644 --- a/wiki/translations/pl/Artwork_Image.md +++ b/wiki/translations/pl/Artwork_Image.md @@ -1,6 +1,4 @@ # Artwork Image/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -17,3 +15,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:Image](Category:Image.md) + +--- +[documentation index](../README.md) > [Image](Category:Image.md) > Artwork Image/pl diff --git a/wiki/translations/pl/Artwork_Inspection.md b/wiki/translations/pl/Artwork_Inspection.md index 02468da62e..0b1331e072 100644 --- a/wiki/translations/pl/Artwork_Inspection.md +++ b/wiki/translations/pl/Artwork_Inspection.md @@ -1,6 +1,4 @@ # Artwork Inspection/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -17,3 +15,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:Inspection](Category:Inspection.md) + +--- +[documentation index](../README.md) > [Inspection](Category:Inspection.md) > Artwork Inspection/pl diff --git a/wiki/translations/pl/Artwork_Material.md b/wiki/translations/pl/Artwork_Material.md index 83231f9c6b..c18c32408f 100644 --- a/wiki/translations/pl/Artwork_Material.md +++ b/wiki/translations/pl/Artwork_Material.md @@ -1,6 +1,4 @@ # Artwork Material/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -15,3 +13,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md {{Artwork }} + +--- +[documentation index](../README.md) > Artwork Material/pl diff --git a/wiki/translations/pl/Artwork_Mesh.md b/wiki/translations/pl/Artwork_Mesh.md index 955f88bc05..cf095c1d2a 100644 --- a/wiki/translations/pl/Artwork_Mesh.md +++ b/wiki/translations/pl/Artwork_Mesh.md @@ -1,6 +1,4 @@ # Artwork Mesh/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -21,3 +19,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:Mesh](Category:Mesh.md) + +--- +[documentation index](../README.md) > [Mesh](Category:Mesh.md) > Artwork Mesh/pl diff --git a/wiki/translations/pl/Artwork_MeshPart.md b/wiki/translations/pl/Artwork_MeshPart.md index 1daf2244e5..d1d3db9049 100644 --- a/wiki/translations/pl/Artwork_MeshPart.md +++ b/wiki/translations/pl/Artwork_MeshPart.md @@ -1,6 +1,4 @@ # Artwork MeshPart/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -19,3 +17,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md {{Artwork }} {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > Artwork MeshPart/pl diff --git a/wiki/translations/pl/Artwork_OpenSCAD.md b/wiki/translations/pl/Artwork_OpenSCAD.md index 4ebe0a928b..941ce905e9 100644 --- a/wiki/translations/pl/Artwork_OpenSCAD.md +++ b/wiki/translations/pl/Artwork_OpenSCAD.md @@ -1,6 +1,4 @@ # Artwork OpenSCAD/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -17,3 +15,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:OpenSCAD](Category:OpenSCAD.md) + +--- +[documentation index](../README.md) > [OpenSCAD](Category:OpenSCAD.md) > Artwork OpenSCAD/pl diff --git a/wiki/translations/pl/Artwork_Part.md b/wiki/translations/pl/Artwork_Part.md index 6151b881f5..c60c941905 100644 --- a/wiki/translations/pl/Artwork_Part.md +++ b/wiki/translations/pl/Artwork_Part.md @@ -1,6 +1,4 @@ # Artwork Part/pl - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -34,4 +32,7 @@ For all icons in the source tree, see [Artwork](Artwork.md). {{Artwork -}} +}} + +--- +[documentation index](../README.md) > Artwork Part/pl diff --git a/wiki/translations/pl/Artwork_PartDesign.md b/wiki/translations/pl/Artwork_PartDesign.md index 03228ef67e..b5ebe24957 100644 --- a/wiki/translations/pl/Artwork_PartDesign.md +++ b/wiki/translations/pl/Artwork_PartDesign.md @@ -1,6 +1,4 @@ # Artwork PartDesign/pl - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -25,3 +23,6 @@ For all icons in the source tree, see [Artwork](Artwork.md). }} [Category:PartDesign](Category:PartDesign.md) + +--- +[documentation index](../README.md) > [PartDesign](Category:PartDesign.md) > Artwork PartDesign/pl diff --git a/wiki/translations/pl/Artwork_Path.md b/wiki/translations/pl/Artwork_Path.md index d3b8238e9a..f78210b92d 100644 --- a/wiki/translations/pl/Artwork_Path.md +++ b/wiki/translations/pl/Artwork_Path.md @@ -1,6 +1,4 @@ # Artwork Path/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -17,3 +15,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:Path](Category:Path.md) + +--- +[documentation index](../README.md) > [Path](Category:Path.md) > Artwork Path/pl diff --git a/wiki/translations/pl/Artwork_Plot.md b/wiki/translations/pl/Artwork_Plot.md index 8aaa3f2052..07283dd212 100644 --- a/wiki/translations/pl/Artwork_Plot.md +++ b/wiki/translations/pl/Artwork_Plot.md @@ -1,6 +1,4 @@ # Artwork Plot/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -17,3 +15,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:Plot](Category:Plot.md) + +--- +[documentation index](../README.md) > [Plot](Category:Plot.md) > Artwork Plot/pl diff --git a/wiki/translations/pl/Artwork_Points.md b/wiki/translations/pl/Artwork_Points.md index d8a98b408b..a2cc989542 100644 --- a/wiki/translations/pl/Artwork_Points.md +++ b/wiki/translations/pl/Artwork_Points.md @@ -1,6 +1,4 @@ # Artwork Points/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -17,3 +15,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:Points](Category:Points.md) + +--- +[documentation index](../README.md) > [Points](Category:Points.md) > Artwork Points/pl diff --git a/wiki/translations/pl/Artwork_Raytracing.md b/wiki/translations/pl/Artwork_Raytracing.md index e365ec0f95..8356471e76 100644 --- a/wiki/translations/pl/Artwork_Raytracing.md +++ b/wiki/translations/pl/Artwork_Raytracing.md @@ -1,6 +1,4 @@ # Artwork Raytracing/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -17,3 +15,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:Raytracing](Category:Raytracing.md) + +--- +[documentation index](../README.md) > [Raytracing](Category:Raytracing.md) > Artwork Raytracing/pl diff --git a/wiki/translations/pl/Artwork_ReverseEngineering.md b/wiki/translations/pl/Artwork_ReverseEngineering.md index aa15ff258d..f68bbd84f6 100644 --- a/wiki/translations/pl/Artwork_ReverseEngineering.md +++ b/wiki/translations/pl/Artwork_ReverseEngineering.md @@ -1,6 +1,4 @@ # Artwork ReverseEngineering/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -21,3 +19,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:Reverse Engineering](Category:Reverse_Engineering.md) + +--- +[documentation index](../README.md) > [Reverse Engineering](Category:Reverse Engineering.md) > Artwork ReverseEngineering/pl diff --git a/wiki/translations/pl/Artwork_Robot.md b/wiki/translations/pl/Artwork_Robot.md index 1f0f0b7680..825e25fb2c 100644 --- a/wiki/translations/pl/Artwork_Robot.md +++ b/wiki/translations/pl/Artwork_Robot.md @@ -1,6 +1,4 @@ # Artwork Robot/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -17,3 +15,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > Artwork Robot/pl diff --git a/wiki/translations/pl/Artwork_Ship.md b/wiki/translations/pl/Artwork_Ship.md index c8ade987b4..6c70773029 100644 --- a/wiki/translations/pl/Artwork_Ship.md +++ b/wiki/translations/pl/Artwork_Ship.md @@ -1,6 +1,4 @@ # Artwork Ship/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -17,3 +15,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:Ship](Category:Ship.md) + +--- +[documentation index](../README.md) > [Ship](Category:Ship.md) > Artwork Ship/pl diff --git a/wiki/translations/pl/Artwork_Sketcher.md b/wiki/translations/pl/Artwork_Sketcher.md index 20b80b371b..2c5a9a3a35 100644 --- a/wiki/translations/pl/Artwork_Sketcher.md +++ b/wiki/translations/pl/Artwork_Sketcher.md @@ -1,6 +1,4 @@ # Artwork Sketcher/pl - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -53,3 +51,6 @@ In the past, the `.xpm` icons were used as overlays when displaying constraints {{Artwork }} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Artwork Sketcher/pl diff --git a/wiki/translations/pl/Artwork_Splash_screen.md b/wiki/translations/pl/Artwork_Splash_screen.md index 399f0d2118..937ae6bc32 100644 --- a/wiki/translations/pl/Artwork_Splash_screen.md +++ b/wiki/translations/pl/Artwork_Splash_screen.md @@ -1,6 +1,4 @@ # Artwork Splash screen/pl - - Są to ekrany powitalne, które zostały użyte w poszczególnych wersjach programu. ![](images/Splashscreen09.png ) @@ -27,3 +25,6 @@ Są to ekrany powitalne, które zostały użyte w poszczególnych wersjach progr {{Artwork }} + +--- +[documentation index](../README.md) > Artwork Splash screen/pl diff --git a/wiki/translations/pl/Artwork_Spreadsheet.md b/wiki/translations/pl/Artwork_Spreadsheet.md index dde133297a..a5ee0ae85f 100644 --- a/wiki/translations/pl/Artwork_Spreadsheet.md +++ b/wiki/translations/pl/Artwork_Spreadsheet.md @@ -1,6 +1,4 @@ # Artwork Spreadsheet/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -17,3 +15,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:Spreadsheet](Category:Spreadsheet.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Category:Spreadsheet.md) > Artwork Spreadsheet/pl diff --git a/wiki/translations/pl/Artwork_Start.md b/wiki/translations/pl/Artwork_Start.md index 4b19626419..77bc09cf0e 100644 --- a/wiki/translations/pl/Artwork_Start.md +++ b/wiki/translations/pl/Artwork_Start.md @@ -1,6 +1,4 @@ # Artwork Start/pl - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -35,3 +33,6 @@ The following image has been re-sized to a display width of 480 pixels: }} [Category:Start](Category:Start.md) + +--- +[documentation index](../README.md) > [Start](Category:Start.md) > Artwork Start/pl diff --git a/wiki/translations/pl/Artwork_Surface.md b/wiki/translations/pl/Artwork_Surface.md index 68a6504dc8..e39bdfe082 100644 --- a/wiki/translations/pl/Artwork_Surface.md +++ b/wiki/translations/pl/Artwork_Surface.md @@ -1,6 +1,4 @@ # Artwork Surface/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -15,3 +13,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md {{Surface Tools navi }} {{Artwork}} + +--- +[documentation index](../README.md) > Artwork Surface/pl diff --git a/wiki/translations/pl/Artwork_TechDraw.md b/wiki/translations/pl/Artwork_TechDraw.md index a996e48a64..9cf1c45d2e 100644 --- a/wiki/translations/pl/Artwork_TechDraw.md +++ b/wiki/translations/pl/Artwork_TechDraw.md @@ -1,6 +1,4 @@ # Artwork TechDraw/pl - - These icons are in the indicated source path. For all icons in the source tree, see [Artwork](Artwork.md). @@ -33,3 +31,6 @@ The [TechDraw Workbench](TechDraw_Workbench.md) comes with a number of default t }} [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [TechDraw](Category:TechDraw.md) > Artwork TechDraw/pl diff --git a/wiki/translations/pl/Artwork_Test.md b/wiki/translations/pl/Artwork_Test.md index c034612466..7d45da4277 100644 --- a/wiki/translations/pl/Artwork_Test.md +++ b/wiki/translations/pl/Artwork_Test.md @@ -1,6 +1,4 @@ # Artwork Test/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -15,3 +13,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md {{Artwork }} + +--- +[documentation index](../README.md) > Artwork Test/pl diff --git a/wiki/translations/pl/Artwork_Tux.md b/wiki/translations/pl/Artwork_Tux.md index a7b0ac7cb2..a237e009a2 100644 --- a/wiki/translations/pl/Artwork_Tux.md +++ b/wiki/translations/pl/Artwork_Tux.md @@ -1,6 +1,4 @@ # Artwork Tux/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -14,3 +12,5 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md {{Artwork}} +--- +[documentation index](../README.md) > Artwork Tux/pl diff --git a/wiki/translations/pl/Artwork_Web.md b/wiki/translations/pl/Artwork_Web.md index 0c989b9cc9..b5ac715464 100644 --- a/wiki/translations/pl/Artwork_Web.md +++ b/wiki/translations/pl/Artwork_Web.md @@ -1,6 +1,4 @@ # Artwork Web/pl - - Ikony te znajdują się we wskazanej ścieżce źródłowej. Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md). @@ -21,3 +19,6 @@ Wszystkie ikonki widoczne na liście źródłowej, patrz [Grafika](Artwork/pl.md }} [Category:Web](Category:Web.md) + +--- +[documentation index](../README.md) > [Web](Category:Web.md) > Artwork Web/pl diff --git a/wiki/translations/pl/Artwork_project.md b/wiki/translations/pl/Artwork_project.md index 83bb1a3ce5..0f9b0341ac 100644 --- a/wiki/translations/pl/Artwork_project.md +++ b/wiki/translations/pl/Artwork_project.md @@ -1,7 +1,4 @@ # Artwork project/pl - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -101,3 +98,6 @@ The current color palette is captured in google drive: [Roadmap](Category:Roadmap.md) > Artwork project/pl diff --git a/wiki/translations/pl/Assembly.md b/wiki/translations/pl/Assembly.md index 0a3e8c1978..720503ee4d 100644 --- a/wiki/translations/pl/Assembly.md +++ b/wiki/translations/pl/Assembly.md @@ -1,6 +1,4 @@ # Assembly/pl - - ## Introduction @@ -53,3 +51,6 @@ The assembly workbenches continue development, and it is expected that at some p }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Assembly/pl diff --git a/wiki/translations/pl/Assembly2_Workbench.md b/wiki/translations/pl/Assembly2_Workbench.md index c7d0669061..6166177612 100644 --- a/wiki/translations/pl/Assembly2_Workbench.md +++ b/wiki/translations/pl/Assembly2_Workbench.md @@ -1,7 +1,4 @@ # Assembly2 Workbench/pl - - - **The Assembly2 workbench is obsolete. Its author no longer maintains it, so it may not work with FreeCAD versions 0.17 and above. The information in this page is not maintained; it is just kept for historical purposes.** @@ -146,3 +143,6 @@ To update to the latest version, delete the assembly2 folder and redownload the [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Assembly2 Workbench/pl diff --git a/wiki/translations/pl/Assembly3_Workbench.md b/wiki/translations/pl/Assembly3_Workbench.md index 4f02e9daf8..9309866df8 100644 --- a/wiki/translations/pl/Assembly3_Workbench.md +++ b/wiki/translations/pl/Assembly3_Workbench.md @@ -1,7 +1,4 @@ -# Assembly3 Workbench/pl - - -Assembly3 workbench icon +# Assembly3 workbench icon Assembly3 Workbench/pl {{TOCright}} @@ -592,3 +589,6 @@ One way to solve this is to just delete all invalid constraints and elements, im [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Assembly3 Workbench/pl diff --git a/wiki/translations/pl/Assembly4_Workbench.md b/wiki/translations/pl/Assembly4_Workbench.md index f8281733e1..c680febc5d 100644 --- a/wiki/translations/pl/Assembly4_Workbench.md +++ b/wiki/translations/pl/Assembly4_Workbench.md @@ -1,7 +1,4 @@ -# Assembly4 Workbench/pl - - -External workbench icon +# External workbench icon Assembly4 Workbench/pl ## Introduction @@ -40,3 +37,6 @@ Assembly4 was inspired by Mamy więc również obszary przestrzenne, w których natężenie światła odbitego jest różne. Aby tego uniknąć, potrzebujemy w geometrycznym punkcie przejścia również ciągłości pochodnej drugiego rzędu, a więc sześciennej krzywej złożonej. + +--- +[documentation index](../README.md) > B-Splines/pl diff --git a/wiki/translations/pl/BIM_Box.md b/wiki/translations/pl/BIM_Box.md index 7684ef9945..00838034de 100644 --- a/wiki/translations/pl/BIM_Box.md +++ b/wiki/translations/pl/BIM_Box.md @@ -7,6 +7,8 @@ SeeAlso:[Part Box](Part_Box.md) --- +# BIM Box/pl + ## Description @@ -20,3 +22,6 @@ The BIM Box tool allows you to create a standard [Part Box](Part_Box.md), but in 3. Click a second point to define a first edge of the box, starting from the first point 4. Click a third point to define a first face of the box, orthogonal to the first edge 5. Click a fourth point to define the extrusion distance of the first face, forming the final box + +--- +[documentation index](../README.md) > BIM Box/pl diff --git a/wiki/translations/pl/BIM_Classification.md b/wiki/translations/pl/BIM_Classification.md index 195372ddf7..77d8edd313 100644 --- a/wiki/translations/pl/BIM_Classification.md +++ b/wiki/translations/pl/BIM_Classification.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Classification --- +# BIM Classification/pl + ## Description @@ -17,3 +19,6 @@ The classifications manager allows you to attribute a standard class to a BIM ob - Install one or more classification standard XML or IFC files as explained above - If you wish to add or edit a class for an object, select that object and press the BIM Classification button - If you wish to add or edit a class for a material, don\'t select anything and press the BIM Classification button. You will be able to browse the materials directly from the classification manager window + +--- +[documentation index](../README.md) > BIM Classification/pl diff --git a/wiki/translations/pl/BIM_Clone.md b/wiki/translations/pl/BIM_Clone.md index 3b77b3d840..bb35748e53 100644 --- a/wiki/translations/pl/BIM_Clone.md +++ b/wiki/translations/pl/BIM_Clone.md @@ -8,6 +8,11 @@ SeeAlso:[Klon, Draft](Draft_Clone.md) --- +# BIM Clone/pl + ## Opis Narzędzie Clone Środowiska pracy BIM, jest skrótem do standardowego narzędzia [Draft Clone](Draft_Clone.md), ale zaraz po klonowaniu uruchamia polecenie [Draft Move](Draft_Move.md). Pozwala to za jednym zamachem sklonować i wstawić nowy obiekt w innym miejscu modelu. + +--- +[documentation index](../README.md) > BIM Clone/pl diff --git a/wiki/translations/pl/BIM_Copy.md b/wiki/translations/pl/BIM_Copy.md index c3cf192ed9..68e54e36fc 100644 --- a/wiki/translations/pl/BIM_Copy.md +++ b/wiki/translations/pl/BIM_Copy.md @@ -8,6 +8,11 @@ SeeAlso:[Przesuń](Draft_Move/pl.md) --- +# BIM Copy/pl + ## Opis Narzędzie Kopiuj BIM jest skrótem do standardowego narzędzia [Rysunek roboczy: Przesuń](Draft_Move/pl.md), ale z włączoną opcją **Kopiuj**, co pozwala na utworzenie kopii obiektu i umieszczenie go w danym miejscu, za jednym razem. + +--- +[documentation index](../README.md) > BIM Copy/pl diff --git a/wiki/translations/pl/BIM_IfcElements.md b/wiki/translations/pl/BIM_IfcElements.md index 54b22005e8..c90e849d7b 100644 --- a/wiki/translations/pl/BIM_IfcElements.md +++ b/wiki/translations/pl/BIM_IfcElements.md @@ -7,6 +7,8 @@ SeeAlso:[[BIM IfcProperties]],[[BIM IfcQuantities]] --- +# BIM IfcElements/pl + ## Description @@ -19,3 +21,6 @@ With it, you can: - Rename objects by double-clicking their name - Change their IFC type either by clicking an individual type or, if more than one is selected, using the \"change type to:\" drop-down menu - Change their material either by clicking an individual material or, if more than one is selected, using the \"change material to:\" drop-down menu + +--- +[documentation index](../README.md) > BIM IfcElements/pl diff --git a/wiki/translations/pl/BIM_IfcProperties.md b/wiki/translations/pl/BIM_IfcProperties.md index 88205b5168..712d09822c 100644 --- a/wiki/translations/pl/BIM_IfcProperties.md +++ b/wiki/translations/pl/BIM_IfcProperties.md @@ -7,6 +7,8 @@ SeeAlso:[[BIM IfcElements]],[[BIM IfcQuantities]] --- +# BIM IfcProperties/pl + ## Description @@ -30,3 +32,6 @@ Inside the CSV file, each line represents a different property set, beginning wi Pset_FreeCAD;Name;IfcLabel;Version;IfcReal would define a property set named \"FreeCAD\" (the Pset\_ prefix is not mandatory but is a common practice) that contains two properties: one called \"Name\" which is an IfcLabel (a piece of text), and another called \"Version\" which is an IfcReal (a numeric value with decimals) + +--- +[documentation index](../README.md) > BIM IfcProperties/pl diff --git a/wiki/translations/pl/BIM_IfcQuantities.md b/wiki/translations/pl/BIM_IfcQuantities.md index 22cc31c7fe..d90175832f 100644 --- a/wiki/translations/pl/BIM_IfcQuantities.md +++ b/wiki/translations/pl/BIM_IfcQuantities.md @@ -7,6 +7,8 @@ SeeAlso:[[BIM IfcElements]],[[BIM IfcProperties]] --- +# BIM IfcQuantities/pl + ## Description @@ -20,3 +22,6 @@ The idea behind explicit quantities is to make them available to applications th By default, when exporting an IFC file from FreeCAD, no explicit quantities are exported. With the IFC quantities manager, you are able to mark which quantities should be exported, and check their values. Warning signs will be displayed next to zero values, notifying you of possible problems you might want to fix before exporting. You can also use the quantities manager to change or fix the actual **Height**, **Width** and **Length** values of objects. But this will affect the object geometry in FreeCAD. + +--- +[documentation index](../README.md) > BIM IfcQuantities/pl diff --git a/wiki/translations/pl/BIM_Layers.md b/wiki/translations/pl/BIM_Layers.md index 9fbc2ed2a7..1f62afaa17 100644 --- a/wiki/translations/pl/BIM_Layers.md +++ b/wiki/translations/pl/BIM_Layers.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Layers --- +# BIM Layers/pl + ## Description @@ -15,3 +17,6 @@ The layers manager allows you to manage [layers](Draft_Layer.md). Layers are a s Layers are imported and exported from/to [IFC](Arch_IFC.md) and [DXF/DWG](Draft_DXF.md). The layers manager allow you to manage your layers, add or remove layers, or change their visual properties. To add objects to a layer, simply drag them into the layer in the tree view. To remove them, drag them from the layer and drop them into the document root. + +--- +[documentation index](../README.md) > BIM Layers/pl diff --git a/wiki/translations/pl/BIM_Library.md b/wiki/translations/pl/BIM_Library.md index d78b09b993..478ae075de 100644 --- a/wiki/translations/pl/BIM_Library.md +++ b/wiki/translations/pl/BIM_Library.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Equipment]] --- +# BIM Library/pl + ## Description The BIM Library tool allows you to place, in the current model, an object from the [FreeCAD Parts Library](Parts_Library.md), which must be installed via the [Addon Manager](Addon_Manager.md) for this tool to be available. @@ -34,3 +36,6 @@ The BIM Library tool allows you to place, in the current model, an object from t [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM Library/pl diff --git a/wiki/translations/pl/BIM_Preflight.md b/wiki/translations/pl/BIM_Preflight.md index 2294c2cfa0..eb33883f72 100644 --- a/wiki/translations/pl/BIM_Preflight.md +++ b/wiki/translations/pl/BIM_Preflight.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Preflight check --- +# BIM Preflight/pl + ## Description @@ -85,3 +87,6 @@ def myCustomTest():    # text if the test failed. The string or text will be displayed    # to the user when they press the "Failed" button.    return result + +--- +[documentation index](../README.md) > BIM Preflight/pl diff --git a/wiki/translations/pl/BIM_Project.md b/wiki/translations/pl/BIM_Project.md index 8cb1e46f7b..df167e53f7 100644 --- a/wiki/translations/pl/BIM_Project.md +++ b/wiki/translations/pl/BIM_Project.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Manage project... --- +# BIM Project/pl + ## Description @@ -26,3 +28,6 @@ The project setup dialog can create: The Project tool supports two kinds of templates: Once you have filled the different options, the contents of the BIM project setup wizard can be **saved** as a template. These templates can be **restored** and adapted at a later time. Project templates are stored as plain text files in your FreeCAD user folder. Alternatively, you can also save the contents of the current document as a template. This will save the currently opened document as a standard **.FCStd** file, but also include additional BIM settings like the current working plane, or current units. By using the **restore** option anytime, the contents of that template file will be merged into the active document and all settings found in it applied. + +--- +[documentation index](../README.md) > BIM Project/pl diff --git a/wiki/translations/pl/BIM_Setup.md b/wiki/translations/pl/BIM_Setup.md index c76c0cd2af..4619b9a2a9 100644 --- a/wiki/translations/pl/BIM_Setup.md +++ b/wiki/translations/pl/BIM_Setup.md @@ -7,6 +7,8 @@ MenuLocation:Manage → Ustawiania BIM --- +# BIM Setup/pl + ## Opis @@ -14,3 +16,6 @@ System preferencji programu FreeCAD, znajdujący się w menu **Edycja -> Preferencje**, jest bardzo złożony. Okno dialogowe **Konfiguracja BIM** oferuje jego uproszczoną wersję, gromadząc niektóre z ustawień preferencji najczęściej używanych w pracy ze środowiskiem BIM na jednym ekranie. Zmiana którejkolwiek z opcji preferencji ma taki sam efekt jak zmiana odpowiedniego ustawienia w **Edycja -> Preferencje**. Po najechaniu myszką na poszczególne ustawienia, pojawi się podpowiedź wyjaśniająca do czego one służą oraz lokalizacja odpowiadającego im ustawienia w ogólnym systemie preferencji FreeCAD. + +--- +[documentation index](../README.md) > BIM Setup/pl diff --git a/wiki/translations/pl/BIM_Views.md b/wiki/translations/pl/BIM_Views.md index 98df2b769f..1df830825e 100644 --- a/wiki/translations/pl/BIM_Views.md +++ b/wiki/translations/pl/BIM_Views.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Views --- +# BIM Views/pl + ## Description The BIM views and levels manager is a dockable window that opens below the normal tree view, that contains all the [BuildingParts](Arch_BuildingPart.md) and [Working Plane Proxies](Draft_WorkingPlaneProxy.md) of your model. @@ -36,3 +38,6 @@ The BIM views manager will show all the levels (building parts) and working plan }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > BIM Views/pl diff --git a/wiki/translations/pl/BIM_Windows.md b/wiki/translations/pl/BIM_Windows.md index 64ba56d84d..00ced7aeb6 100644 --- a/wiki/translations/pl/BIM_Windows.md +++ b/wiki/translations/pl/BIM_Windows.md @@ -7,6 +7,8 @@ MenuLocation:Manage → Zarządzaj drzwiami i oknami --- +# BIM Windows/pl + ## Opis Okienko dialogowe menadżera okien BIM pozwala na przeglądanie i modyfikowanie wszystkich [okien i drzwi](Arch_Window/pl.md) projektu razem. Jest to często wygodniejsze niż edytowanie ich pojedynczo i pozwala upewnić się, że wszystkie mają poprawnie ustawione wymagane parametry, takie jak znacznik, wymiary, opis czy materiał. @@ -21,3 +23,6 @@ Okienko dialogowe menadżera okien BIM pozwala na przeglądanie i modyfikowanie }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > BIM Windows/pl diff --git a/wiki/translations/pl/BIM_Workbench.md b/wiki/translations/pl/BIM_Workbench.md index b96b1e931c..3b657e070d 100644 --- a/wiki/translations/pl/BIM_Workbench.md +++ b/wiki/translations/pl/BIM_Workbench.md @@ -1,8 +1,4 @@ -# BIM Workbench/pl - - - -Ikonka FreeCAD dla zewnętrznego Środowiska pracy BIM +# Ikonka FreeCAD dla zewnętrznego Środowiska pracy BIM BIM Workbench/pl {{TOCright}} @@ -187,3 +183,6 @@ Nowe środowiska pracy są w czasie tworzenia, bądź cierpliwy! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > BIM Workbench/pl diff --git a/wiki/translations/pl/BIM_application_compatibility_table.md b/wiki/translations/pl/BIM_application_compatibility_table.md index e583e81775..40c0a62c14 100644 --- a/wiki/translations/pl/BIM_application_compatibility_table.md +++ b/wiki/translations/pl/BIM_application_compatibility_table.md @@ -1,6 +1,5 @@ # BIM application compatibility table/pl - - This page gives a general overview of how the different tools and concepts found in other mainstream BIM applications compare to FreeCAD, specifically its [BIM Workbench](BIM_Workbench.md). +This page gives a general overview of how the different tools and concepts found in other mainstream BIM applications compare to FreeCAD, specifically its [BIM Workbench](BIM_Workbench.md). **TODO:** Add other BIM apps: Allplan, Tekla, Vectorworks, BricsCAD, what else? @@ -16,3 +15,6 @@ **Standard BIM elements** Walls, structures (beams, columns and slabs), windows (doors and windows), roofs, stairs, frames (railings), equipment (furniture, appliances, etc) Walls, beams, columns, floors, ceilings, windows, doors, roofs, stairs, railings, components (furniture, appliances, etc) Walls, beams, columns, slabs, windows, doors, roofs, stairs, railings, curtain walls, objects (furniture, appliances, etc) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM application compatibility table/pl diff --git a/wiki/translations/pl/BIM_ingame_tutorial.md b/wiki/translations/pl/BIM_ingame_tutorial.md index 8482aac93e..2a05a9a1bf 100644 --- a/wiki/translations/pl/BIM_ingame_tutorial.md +++ b/wiki/translations/pl/BIM_ingame_tutorial.md @@ -1,8 +1,4 @@ -# BIM ingame tutorial/pl - - - - +# BIM ingame tutorial/pl {{BIMTutorialAction|descr=To jest samouczek dotyczący obsługi Środowiska pracy [BIM](BIM_Workbench/pl.md). Nie należy go czytać tutaj na wiki, ale należy go uruchomić z poziomu programu FreeCAD, w środowisku pracy BIM, w menu '''Pomoc -> samouczek BIM'''. Zawiera serię kroków do wykonania przez użytkownika. Każdy krok kończy się wystąpieniem szablonu [{{BIMTutorialAction|descr|goal1|test1|goal2|test2}}](Template:BIMTutorialAction.md), który informuje o warunku, który musi być spełniony. Obrazy powinny mieć szerokość 300px. Na tej stronie nie powinny być używane żadne obrazy SVG, ponieważ nie są one obsługiwane przez widżet QTextBrowser.}} @@ -509,3 +505,6 @@ FreeCAD is free software, developed by an enthusiast community of users, some of {{BIMTutorialAction|descr=No action to perform for this step}} [Category:BIM](Category:BIM.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM ingame tutorial/pl diff --git a/wiki/translations/pl/BOLTSFC_Workbench.md b/wiki/translations/pl/BOLTSFC_Workbench.md index 0858e5c310..478d6c3672 100644 --- a/wiki/translations/pl/BOLTSFC_Workbench.md +++ b/wiki/translations/pl/BOLTSFC_Workbench.md @@ -1,5 +1,5 @@ # BOLTSFC Workbench/pl - } The FreeCAD BOLTS External Workbench Icon +} The FreeCAD BOLTS External Workbench Icon ## Introduction @@ -72,3 +72,6 @@ is required. [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > BOLTSFC Workbench/pl diff --git a/wiki/translations/pl/Base_API.md b/wiki/translations/pl/Base_API.md index 4ee7188e05..e02360336a 100644 --- a/wiki/translations/pl/Base_API.md +++ b/wiki/translations/pl/Base_API.md @@ -1,5 +1,5 @@ # Base API/pl - **''(Październik 2019)'' Nie edytuj tych stron. Informacje są niekompletne i nieaktualne. Najnowsze API można znaleźć w [https://www.freecadweb.org/api automatycznie generowana dokumentacja API], lub wygenerować dokumentację samodzielnie, śledząc dokument [Dokumentacja źródłowa](Source_documentation/pl.md).** +**''(Październik 2019)'' Nie edytuj tych stron. Informacje są niekompletne i nieaktualne. Najnowsze API można znaleźć w [https://www.freecadweb.org/api automatycznie generowana dokumentacja API], lub wygenerować dokumentację samodzielnie, śledząc dokument [Dokumentacja źródłowa](Source_documentation/pl.md).** Moduł Base jest zawarty wewnątrz modułu FreeCAD i zawiera konstruktory dla różnych typów obiektów często używanych w programie FreeCAD. @@ -30,3 +30,6 @@ Ramka ograniczająca to sześcian prostokątny, który jest sposobem na zdefinio [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Base API/pl diff --git a/wiki/translations/pl/Basic_Attachment_Tutorial.md b/wiki/translations/pl/Basic_Attachment_Tutorial.md index 56eb48d853..ef2edf7d14 100644 --- a/wiki/translations/pl/Basic_Attachment_Tutorial.md +++ b/wiki/translations/pl/Basic_Attachment_Tutorial.md @@ -1,7 +1,4 @@ # Basic Attachment Tutorial/pl - - - {{TutorialInfo/pl |Topic=Dołączanie |Level=Początkujący/Średniozaawansowany @@ -301,3 +298,6 @@ Miłego dołączania! }} {{PartDesign_Tools_navi}} {{Sketcher_Tools_navi}} [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > Basic Attachment Tutorial/pl diff --git a/wiki/translations/pl/Basic_Part_Design_Tutorial.md b/wiki/translations/pl/Basic_Part_Design_Tutorial.md index d43507c7be..2cf29d317a 100644 --- a/wiki/translations/pl/Basic_Part_Design_Tutorial.md +++ b/wiki/translations/pl/Basic_Part_Design_Tutorial.md @@ -1,5 +1,5 @@ # Basic Part Design Tutorial/pl - {{TutorialInfo/pl +{{TutorialInfo/pl |Topic=Modelowanie |Level=Początkujący |Author=Mark Stephen ([Quick61](User:Quick61.md)) oraz HarryGeier ([HarryGeier](User:HarryGeier.md)) @@ -148,4 +148,7 @@ Ten poradnik i twój model zostałty ukończone. {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Part Design Tutorial/pl diff --git a/wiki/translations/pl/Basic_Part_Design_Tutorial_017.md b/wiki/translations/pl/Basic_Part_Design_Tutorial_017.md index 89d97aa688..cb0c7d8c69 100644 --- a/wiki/translations/pl/Basic_Part_Design_Tutorial_017.md +++ b/wiki/translations/pl/Basic_Part_Design_Tutorial_017.md @@ -1,2 +1,5 @@ # Basic Part Design Tutorial 017/pl 1. REDIRECT [Basic\_Part\_Design\_Tutorial/pl](Basic_Part_Design_Tutorial/pl.md) + +--- +[documentation index](../README.md) > Basic Part Design Tutorial 017/pl diff --git a/wiki/translations/pl/Basic_Sketcher_Tutorial.md b/wiki/translations/pl/Basic_Sketcher_Tutorial.md index 7bd6437b12..aaf1256c57 100644 --- a/wiki/translations/pl/Basic_Sketcher_Tutorial.md +++ b/wiki/translations/pl/Basic_Sketcher_Tutorial.md @@ -1,7 +1,4 @@ # Basic Sketcher Tutorial/pl - - - {{TutorialInfo/pl |Topic= Szkicownik |Level= początkujący @@ -295,3 +292,6 @@ Ograniczenie szkicu może być wykonane na wiele różnych sposobów. Ogólnie r }} {{Sketcher Tools navi}} [Category:Sketcher/pl](Category:Sketcher/pl.md) + +--- +[documentation index](../README.md) > Basic Sketcher Tutorial/pl diff --git a/wiki/translations/pl/Basic_TechDraw_Tutorial.md b/wiki/translations/pl/Basic_TechDraw_Tutorial.md index 8fd0b5ad23..1af6d3f6b2 100644 --- a/wiki/translations/pl/Basic_TechDraw_Tutorial.md +++ b/wiki/translations/pl/Basic_TechDraw_Tutorial.md @@ -1,5 +1,5 @@ # Basic TechDraw Tutorial/pl - {{TutorialInfo/pl +{{TutorialInfo/pl |Topic=Modelowanie |Level=początkujący |Author=[WandererFan](User:WandererFan.md) @@ -136,4 +136,7 @@ oferuje o wiele więcej funkcjonalności - widoki przekrojów, widoki szczegół {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Basic TechDraw Tutorial/pl diff --git a/wiki/translations/pl/Basic_modeling_tutorial.md b/wiki/translations/pl/Basic_modeling_tutorial.md index 80f23ee2df..57009afafa 100644 --- a/wiki/translations/pl/Basic_modeling_tutorial.md +++ b/wiki/translations/pl/Basic_modeling_tutorial.md @@ -1,5 +1,5 @@ # Basic modeling tutorial/pl - {{TutorialInfo/pl +{{TutorialInfo/pl |Topic= Wprowadzenie do modelowania |Level= Początkujący |Time= 15 minut @@ -131,4 +131,7 @@ Powyższe instrukcje będą działać, bez względu na to, jaką etykietę posia {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Basic modeling tutorial/pl diff --git a/wiki/translations/pl/Bitmap.md b/wiki/translations/pl/Bitmap.md index b6b87e9df0..2412ba0c7a 100644 --- a/wiki/translations/pl/Bitmap.md +++ b/wiki/translations/pl/Bitmap.md @@ -1,6 +1,4 @@ # Bitmap/pl - - ## Opis [Mapy bitowe](https://en.wikipedia.org/wiki/Bitmap) lub [grafika rastrowa](http://en.wikipedia.org/wiki/Raster_graphics) to obrazy 2D, które są kolekcjami różnobarwnych pikseli. Razem tysiące lub miliony tych pikseli są w stanie przedstawić ludzkiemu oku obraz lub obraz kolorowy. @@ -17,3 +15,6 @@ FreeCAD może importować obrazy bitmap za pomocą Środowiska pracy [Image](Ima [Category:User Documentation](Category:User_Documentation.md) [Category:TechDraw](Category:TechDraw.md) [Category:Image](Category:Image.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Bitmap/pl diff --git a/wiki/translations/pl/Body.md b/wiki/translations/pl/Body.md index 06cdb0e018..4f848ec39d 100644 --- a/wiki/translations/pl/Body.md +++ b/wiki/translations/pl/Body.md @@ -1,6 +1,4 @@ # Body/pl - - ## Introduction In FreeCAD the word \"[Body](Body.md)\" is normally used to refer to a [PartDesign Body](PartDesign_Body.md) object (`PartDesign::Body` class) that is defined by the [PartDesign Workbench](PartDesign_Workbench.md). This is a container object that can hold [2D sketches](Sketch.md) and [3D geometrical features](PartDesign_Feature.md) to build a solid shape. @@ -29,3 +27,6 @@ A Body is not required when using the [Part Workbench](Part_Workbench.md), as th }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Body/pl diff --git a/wiki/translations/pl/Branding.md b/wiki/translations/pl/Branding.md index 680b0503d9..3bcc664033 100644 --- a/wiki/translations/pl/Branding.md +++ b/wiki/translations/pl/Branding.md @@ -1,10 +1,4 @@ # Branding/pl - - - - - - {{TOCright}} ## Informacje ogólne @@ -100,3 +94,6 @@ Wszystkie wymienione znaczniki są opcjonalne. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Branding/pl diff --git a/wiki/translations/pl/Bug_Triage.md b/wiki/translations/pl/Bug_Triage.md index 659b0b877b..89586c6dd4 100644 --- a/wiki/translations/pl/Bug_Triage.md +++ b/wiki/translations/pl/Bug_Triage.md @@ -1,10 +1,4 @@ # Bug Triage/pl - - - - - - {{TOCright}} ## Why @@ -155,3 +149,6 @@ An important methodology to track tickets by a certain subject/theme/category. I [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Bug Triage/pl diff --git a/wiki/translations/pl/Builtin_modules.md b/wiki/translations/pl/Builtin_modules.md index ba8f1616c5..42ea050c70 100644 --- a/wiki/translations/pl/Builtin_modules.md +++ b/wiki/translations/pl/Builtin_modules.md @@ -1,5 +1,5 @@ # Builtin modules/pl - **''(Październik 2019)'' Nie edytuj tych stron. Informacje są niekompletne i nieaktualne. Najnowsze API można znaleźć w [https://www.freecadweb.org/api automatycznie generowana dokumentacja API], lub wygenerować dokumentację samodzielnie, śledząc dokument [Dokumentacja źródłowa](Source_documentation/pl.md).** +**''(Październik 2019)'' Nie edytuj tych stron. Informacje są niekompletne i nieaktualne. Najnowsze API można znaleźć w [https://www.freecadweb.org/api automatycznie generowana dokumentacja API], lub wygenerować dokumentację samodzielnie, śledząc dokument [Dokumentacja źródłowa](Source_documentation/pl.md).** Ta strona prezentuje więcej szczegółowych informacji na temat wbudowanych modułów FreeCAD, oraz jakie funkcje i właściwości są dostępne dla Ciebie. Ta strona nie jest kompletną listą wszystkich zawartości tych modułów, a ze względu na szybką ewolucję programu, informacje tu przedstawione mogą być nieco nieaktualne, ale powinny dać Ci dobry przegląd możliwości. Aby uzyskać pełną listę zawartości modułów, użyj funkcji dir(module) w interpretatorze. @@ -25,3 +25,6 @@ Ta strona prezentuje więcej szczegółowych informacji na temat wbudowanych mod }} [Category:API](Category:API.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Builtin modules/pl diff --git a/wiki/translations/pl/CAM_project.md b/wiki/translations/pl/CAM_project.md index 15b1c9a792..6aecb2cf99 100644 --- a/wiki/translations/pl/CAM_project.md +++ b/wiki/translations/pl/CAM_project.md @@ -1,7 +1,10 @@ # CAM project/pl - Projekt i środowisko CAM jest przestarzały. Zobacz zamiast tego Środowisko pracy [Path](Path_Workbench.md) +Projekt i środowisko CAM jest przestarzały. Zobacz zamiast tego Środowisko pracy [Path](Path_Workbench.md) [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > CAM project/pl diff --git a/wiki/translations/pl/CadQuery_Workbench.md b/wiki/translations/pl/CadQuery_Workbench.md index 82019333e0..2bf4cddcd4 100644 --- a/wiki/translations/pl/CadQuery_Workbench.md +++ b/wiki/translations/pl/CadQuery_Workbench.md @@ -1,5 +1,4 @@ -# CadQuery Workbench/pl - CadQuery workbench icon +# CadQuery workbench icon CadQuery Workbench/pl **(January 2021) @@ -58,3 +57,6 @@ The latest version of CadQuery is no longer using FreeCAD and is not compatible [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > CadQuery Workbench/pl diff --git a/wiki/translations/pl/Category:3rd_Party.md b/wiki/translations/pl/Category:3rd_Party.md index 903723f05a..e885698b77 100644 --- a/wiki/translations/pl/Category:3rd_Party.md +++ b/wiki/translations/pl/Category:3rd_Party.md @@ -4,3 +4,6 @@ External aka 3rd-Party applications/libraries that FreeCAD depends on or are of ### Contents: [Doxygen/pl](Doxygen/pl.md) , [IfcOpenShell/pl](IfcOpenShell/pl.md) , [Std DependencyGraph/pl](Std_DependencyGraph/pl.md) , [SweetHome3D/pl](SweetHome3D/pl.md) + +--- +[documentation index](../README.md) > Category:3rd Party/pl diff --git a/wiki/translations/pl/Category:API.md b/wiki/translations/pl/Category:API.md index 5443fa6e58..8dda7d97f3 100644 --- a/wiki/translations/pl/Category:API.md +++ b/wiki/translations/pl/Category:API.md @@ -8,3 +8,6 @@ Kategoria ta gromadzi artykuły zawierające listę obiektów i metod dostępnyc [Arch API/pl](Arch_API/pl.md) , [Base API/pl](Base_API/pl.md) , [Builtin modules/pl](Builtin_modules/pl.md) , [Console API/pl](Console_API/pl.md) , [Draft API/pl](Draft_API/pl.md) , [FeaturePython Custom Properties/pl](FeaturePython_Custom_Properties/pl.md) , [FreeCAD API/pl](FreeCAD_API/pl.md) , [FreeCADGui API/pl](FreeCADGui_API/pl.md) , [Matrix API/pl](Matrix_API/pl.md) , [Mesh API/pl](Mesh_API/pl.md) , [Object API/pl](Object_API/pl.md) , [Part API/pl](Part_API/pl.md) , [Placement API/pl](Placement_API/pl.md) , [Reinforcement API/pl](Reinforcement_API/pl.md) , [Selection API/pl](Selection_API/pl.md) , [TechDraw API/pl](TechDraw_API/pl.md) , [TechDrawGui API/pl](TechDrawGui_API/pl.md) , [TopoShape API/pl](TopoShape_API/pl.md) , [Vector API/pl](Vector_API/pl.md) , [ViewObject API/pl](ViewObject_API/pl.md) [Category:Categories/pl](Category:Categories/pl.md) + +--- +[documentation index](../README.md) > Category:API/pl diff --git a/wiki/translations/pl/Category:API_Documentation.md b/wiki/translations/pl/Category:API_Documentation.md index 135030b376..1b84623a4a 100644 --- a/wiki/translations/pl/Category:API_Documentation.md +++ b/wiki/translations/pl/Category:API_Documentation.md @@ -6,3 +6,6 @@ This category gathers all articles documenting the python API of FreeCAD and its [Python/pl](Python/pl.md) [Category:Documentation/pl](Category:Documentation/pl.md) + +--- +[documentation index](../README.md) > Category:API Documentation/pl diff --git a/wiki/translations/pl/Category:Addons.md b/wiki/translations/pl/Category:Addons.md index e8da0292c2..776411de09 100644 --- a/wiki/translations/pl/Category:Addons.md +++ b/wiki/translations/pl/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/pl - - Ta strona zawiera listę zewnętrznych Środowisk pracy dla dodatków, które mają stronę w tym Wiki. Dodatki to moduły lub Środowiska pracy wnoszone przez społeczność i nie są standardową częścią pakietu FreeCAD. ### Contents: @@ -8,3 +6,6 @@ Ta strona zawiera listę zewnętrznych Środowisk pracy dla dodatków, które ma [A2plus Workbench/pl](A2plus_Workbench/pl.md) , [Addon/pl](Addon/pl.md) , [Animation Workbench/pl](Animation_Workbench/pl.md) , [Assembly2 Workbench/pl](Assembly2_Workbench/pl.md) , [Assembly3 Workbench/pl](Assembly3_Workbench/pl.md) , [Assembly4 Workbench/pl](Assembly4_Workbench/pl.md) , [BIM Workbench/pl](BIM_Workbench/pl.md) , [BOLTSFC Workbench/pl](BOLTSFC_Workbench/pl.md) , [CadQuery Workbench/pl](CadQuery_Workbench/pl.md) , [Cfd Workbench/pl](Cfd_Workbench/pl.md) , [CurvedShapes Workbench/pl](CurvedShapes_Workbench/pl.md) , [Drawing Dimensioning Addon/pl](Drawing_Dimensioning_Addon/pl.md) , [DynamicData Workbench/pl](DynamicData_Workbench/pl.md) , [ExplodedAssembly Workbench/pl](ExplodedAssembly_Workbench/pl.md) , [External workbenches/pl](External_workbenches/pl.md) , [Fasteners Workbench/pl](Fasteners_Workbench/pl.md) , [FCGear Workbench/pl](FCGear_Workbench/pl.md) , [Flamingo Workbench/pl](Flamingo_Workbench/pl.md) , [How to install additional workbenches/pl](How_to_install_additional_workbenches/pl.md) , [KicadStepUp Workbench/pl](KicadStepUp_Workbench/pl.md) , [Lattice2 Workbench/pl](Lattice2_Workbench/pl.md) , [Macro Kerkythea/pl](Macro_Kerkythea/pl.md) , [Macro WorkFeatures/pl](Macro_WorkFeatures/pl.md) , [Manipulator Workbench/pl](Manipulator_Workbench/pl.md) , [ModernUI Workbench/pl](ModernUI_Workbench/pl.md) , [MOOC Workbench/pl](MOOC_Workbench/pl.md) , [OSE 3D Printer Workbench/pl](OSE_3D_Printer_Workbench/pl.md) , [OSE Piping Workbench/pl](OSE_Piping_Workbench/pl.md) , [Parts Library Workbench/pl](Parts_Library_Workbench/pl.md) , [PCB Workbench/pl](PCB_Workbench/pl.md) , [Plot Axes/pl](Plot_Axes/pl.md) , [Plot Basic tutorial/pl](Plot_Basic_tutorial/pl.md) , [Plot Grid/pl](Plot_Grid/pl.md) , [Plot Labels/pl](Plot_Labels/pl.md) , [Plot Legend/pl](Plot_Legend/pl.md) , [Plot Module/pl](Plot_Module/pl.md) , [Plot MultiAxes tutorial/pl](Plot_MultiAxes_tutorial/pl.md) , [Plot Positions/pl](Plot_Positions/pl.md) , [Plot Save/pl](Plot_Save/pl.md) , [Plot Series/pl](Plot_Series/pl.md) , [Pyramids and polyhedrons Workbench/pl](Pyramids_and_polyhedrons_Workbench/pl.md) , [Pyrate Workbench/pl](Pyrate_Workbench/pl.md) , [Reinforcement Workbench/pl](Reinforcement_Workbench/pl.md) , [Render project/pl](Render_project/pl.md) , [Rocket Workbench/pl](Rocket_Workbench/pl.md) , [SheetMetal UnattendedUnfold/pl](SheetMetal_UnattendedUnfold/pl.md) , [SheetMetal Workbench/pl](SheetMetal_Workbench/pl.md) , [Ship Workbench/pl](Ship_Workbench/pl.md) , [Silk Workbench/pl](Silk_Workbench/pl.md) , [Stemfie Workbench/pl](Stemfie_Workbench/pl.md) , [Symbols Library Workbench/pl](Symbols_Library_Workbench/pl.md) , [ThreadProfile Workbench/pl](ThreadProfile_Workbench/pl.md) , [Timber Workbench/pl](Timber_Workbench/pl.md) , [WebTools Workbench/pl](WebTools_Workbench/pl.md) , [Workfeature Workbench/pl](Workfeature_Workbench/pl.md) , [Category:Categories](Category:Categories.md) [Category:External Workbenches/pl](Category:External_Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Addons/pl diff --git a/wiki/translations/pl/Category:Administration.md b/wiki/translations/pl/Category:Administration.md index 17ac492f0c..830d70fa84 100644 --- a/wiki/translations/pl/Category:Administration.md +++ b/wiki/translations/pl/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/pl](Template:Arch_Tools_navi/pl.md) , [Template:Artwork/pl](Template:Artwork/pl.md) , [Bug Triage/pl](Bug_Triage/pl.md) , [Changelog/pl](Changelog/pl.md) , [Crowdin Administration/pl](Crowdin_Administration/pl.md) , [Crowdin Scripts/pl](Crowdin_Scripts/pl.md) , [Template:Document objects navi/pl](Template:Document_objects_navi/pl.md) , [Template:Draft Tools navi/pl](Template:Draft_Tools_navi/pl.md) , [Template:Drawing Tools navi/pl](Template:Drawing_Tools_navi/pl.md) , [Template:Interface navi/pl](Template:Interface_navi/pl.md) , [Template:MenuCommand/pl](Template:MenuCommand/pl.md) , [Template:Mesh Tools navi/pl](Template:Mesh_Tools_navi/pl.md) , [Template:OpenSCAD Tools navi/pl](Template:OpenSCAD_Tools_navi/pl.md) , [Organization chart/pl](Organization_chart/pl.md) , [Template:Part Tools navi/pl](Template:Part_Tools_navi/pl.md) , [Template:PartDesign Tools navi/pl](Template:PartDesign_Tools_navi/pl.md) , [Template:Path Tools navi/pl](Template:Path_Tools_navi/pl.md) , [Template:Powerdocnavi/pl](Template:Powerdocnavi/pl.md) , [Template:PropertyData/pl](Template:PropertyData/pl.md) , [Template:PropertyView/pl](Template:PropertyView/pl.md) , [Python 3/pl](Python_3/pl.md) , [Template:Raytracing Tools navi/pl](Template:Raytracing_Tools_navi/pl.md) , [Template:Robot Tools navi/pl](Template:Robot_Tools_navi/pl.md) , [Template:Ship Tools navi/pl](Template:Ship_Tools_navi/pl.md) , [Template:Sketcher Tools navi/pl](Template:Sketcher_Tools_navi/pl.md) , [Template:Spreadsheet Tools navi/pl](Template:Spreadsheet_Tools_navi/pl.md) , [Template:Std Base navi/pl](Template:Std_Base_navi/pl.md) , [Template:TechDraw Tools navi/pl](Template:TechDraw_Tools_navi/pl.md) , [Tracker/pl](Tracker/pl.md) , [Template:Tutorials navi/pl](Template:Tutorials_navi/pl.md) , [Template:UnfinishedDocu/pl](Template:UnfinishedDocu/pl.md) , [Template:VeryImportantMessage/pl](Template:VeryImportantMessage/pl.md) , [WikiPages/pl](WikiPages/pl.md) , , [Category:Categories/pl](Category:Categories/pl.md) [Category:UnfinishedDocu/pl](Category:UnfinishedDocu/pl.md) [Category:Wiki/pl](Category:Wiki/pl.md) + +--- +[documentation index](../README.md) > Category:Administration/pl diff --git a/wiki/translations/pl/Category:Arch.md b/wiki/translations/pl/Category:Arch.md index c37019a4d6..e93d6fe66c 100644 --- a/wiki/translations/pl/Category:Arch.md +++ b/wiki/translations/pl/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Arch 3DS/pl](Arch_3DS/pl.md) , [Arch 3Views/pl](Arch_3Views/pl.md) , [Arch Add/pl](Arch_Add/pl.md) , [Arch API/pl](Arch_API/pl.md) , [Arch Axis/pl](Arch_Axis/pl.md) , [Arch AxisSystem/pl](Arch_AxisSystem/pl.md) , [Arch Building/pl](Arch_Building/pl.md) , [Arch BuildingPart/pl](Arch_BuildingPart/pl.md) , [Arch Check/pl](Arch_Check/pl.md) , [Arch CloneComponent/pl](Arch_CloneComponent/pl.md) , [Arch CloseHoles/pl](Arch_CloseHoles/pl.md) , [Arch Component/pl](Arch_Component/pl.md) , [Arch CurtainWall/pl](Arch_CurtainWall/pl.md) , [Arch CutPlane/pl](Arch_CutPlane/pl.md) , [Arch DAE/pl](Arch_DAE/pl.md) , [Arch Door/pl](Arch_Door/pl.md) , [Arch Equipment/pl](Arch_Equipment/pl.md) , [Arch Fence/pl](Arch_Fence/pl.md) , [Arch Floor/pl](Arch_Floor/pl.md) , [Arch Frame/pl](Arch_Frame/pl.md) , [Arch Grid/pl](Arch_Grid/pl.md) , [Arch IFC/pl](Arch_IFC/pl.md) , [Arch IfcExplorer/pl](Arch_IfcExplorer/pl.md) , [Arch IfcSpreadsheet/pl](Arch_IfcSpreadsheet/pl.md) , [Arch JSON/pl](Arch_JSON/pl.md) , [Arch MergeWalls/pl](Arch_MergeWalls/pl.md) , [Arch MeshToShape/pl](Arch_MeshToShape/pl.md) , [Arch MultiMaterial/pl](Arch_MultiMaterial/pl.md) , [Arch Nest/pl](Arch_Nest/pl.md) , [Arch OBJ/pl](Arch_OBJ/pl.md) , [Arch Panel Cut/pl](Arch_Panel_Cut/pl.md) , [Arch Panel Sheet/pl](Arch_Panel_Sheet/pl.md) , [Arch panel tutorial/pl](Arch_panel_tutorial/pl.md) , [Arch Panel/pl](Arch_Panel/pl.md) , [Arch Pipe/pl](Arch_Pipe/pl.md) , [Arch PipeConnector/pl](Arch_PipeConnector/pl.md) , [Arch Preferences/pl](Arch_Preferences/pl.md) , [Arch Profile/pl](Arch_Profile/pl.md) , [Arch Project/pl](Arch_Project/pl.md) , [Arch Rebar BentShape/pl](Arch_Rebar_BentShape/pl.md) , [Arch Rebar Drawing Dimensioning/pl](Arch_Rebar_Drawing_Dimensioning/pl.md) , [Arch Rebar Helical/pl](Arch_Rebar_Helical/pl.md) , [Arch Rebar LShape/pl](Arch_Rebar_LShape/pl.md) , [Arch Rebar Stirrup/pl](Arch_Rebar_Stirrup/pl.md) , [Arch Rebar Straight/pl](Arch_Rebar_Straight/pl.md) , [Arch Rebar UShape/pl](Arch_Rebar_UShape/pl.md) , [Arch Rebar/pl](Arch_Rebar/pl.md) , [Arch Reference/pl](Arch_Reference/pl.md) , [Arch Remove/pl](Arch_Remove/pl.md) , [Arch RemoveShape/pl](Arch_RemoveShape/pl.md) , [Arch Roof/pl](Arch_Roof/pl.md) , [Arch Schedule/pl](Arch_Schedule/pl.md) , [Arch SectionPlane/pl](Arch_SectionPlane/pl.md) , [Arch SelectNonSolidMeshes/pl](Arch_SelectNonSolidMeshes/pl.md) , [Arch SetMaterial/pl](Arch_SetMaterial/pl.md) , [Arch SHP/pl](Arch_SHP/pl.md) , [Arch Site/pl](Arch_Site/pl.md) , [Arch Space/pl](Arch_Space/pl.md) , [Arch SplitMesh/pl](Arch_SplitMesh/pl.md) , [Arch Stairs/pl](Arch_Stairs/pl.md) , [Arch Structure/pl](Arch_Structure/pl.md) , [Arch Survey/pl](Arch_Survey/pl.md) , [Arch ToggleIfcBrepFlag/pl](Arch_ToggleIfcBrepFlag/pl.md) , [Arch ToggleSubs/pl](Arch_ToggleSubs/pl.md) , [Template:Arch Tools navi/pl](Template:Arch_Tools_navi/pl.md) , [Arch Truss/pl](Arch_Truss/pl.md) , [Arch tutorial/pl](Arch_tutorial/pl.md) , [Arch Wall/pl](Arch_Wall/pl.md) , [Arch Window/pl](Arch_Window/pl.md) , [Arch Workbench/pl](Arch_Workbench/pl.md) , [Artwork Arch/pl](Artwork_Arch/pl.md) , [BIM Library/pl](BIM_Library/pl.md) , [IfcOpenShell/pl](IfcOpenShell/pl.md) , [Manual:BIM modeling/pl](Manual:BIM_modeling/pl.md) , [Material editor/pl](Material_editor/pl.md) , [Material/pl](Material/pl.md) , [Reinforcement Addon/pl](Reinforcement_Addon/pl.md) , [Reinforcement API/pl](Reinforcement_API/pl.md) , [SweetHome3D/pl](SweetHome3D/pl.md) , [Tutorial custom placing of windows and doors/pl](Tutorial_custom_placing_of_windows_and_doors/pl.md) , [Tutorial for open windows/pl](Tutorial_for_open_windows/pl.md) [Category:User Documentation/pl](Category:User_Documentation/pl.md) [Category:BIM/pl](Category:BIM/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Arch/pl diff --git a/wiki/translations/pl/Category:Artwork.md b/wiki/translations/pl/Category:Artwork.md index 4ed2819767..7212833cad 100644 --- a/wiki/translations/pl/Category:Artwork.md +++ b/wiki/translations/pl/Category:Artwork.md @@ -6,3 +6,6 @@ This category collects pages related to artwork existing in the program, like ic [Artwork Arch/pl](Artwork_Arch/pl.md) , [Artwork Assembly/pl](Artwork_Assembly/pl.md) , [Artwork Assembly3/pl](Artwork_Assembly3/pl.md) , [Artwork Erroneous/pl](Artwork_Erroneous/pl.md) , [Artwork Fem/pl](Artwork_Fem/pl.md) , [Artwork Gui/pl](Artwork_Gui/pl.md) , [Artwork Image/pl](Artwork_Image/pl.md) , [Artwork Inspection/pl](Artwork_Inspection/pl.md) , [Artwork Material/pl](Artwork_Material/pl.md) , [Artwork Mesh/pl](Artwork_Mesh/pl.md) , [Artwork MeshPart/pl](Artwork_MeshPart/pl.md) , [Artwork OpenSCAD/pl](Artwork_OpenSCAD/pl.md) , [Artwork Part/pl](Artwork_Part/pl.md) , [Artwork PartDesign/pl](Artwork_PartDesign/pl.md) , [Artwork Path/pl](Artwork_Path/pl.md) , [Artwork Plot/pl](Artwork_Plot/pl.md) , [Artwork Points/pl](Artwork_Points/pl.md) , [Artwork Raytracing/pl](Artwork_Raytracing/pl.md) , [Artwork ReverseEngineering/pl](Artwork_ReverseEngineering/pl.md) , [Artwork Robot/pl](Artwork_Robot/pl.md) , [Artwork Ship/pl](Artwork_Ship/pl.md) , [Artwork Sketcher/pl](Artwork_Sketcher/pl.md) , [Artwork Splash screen/pl](Artwork_Splash_screen/pl.md) , [Artwork Spreadsheet/pl](Artwork_Spreadsheet/pl.md) , [Artwork Start/pl](Artwork_Start/pl.md) , [Artwork Surface/pl](Artwork_Surface/pl.md) , [Artwork TechDraw/pl](Artwork_TechDraw/pl.md) , [Artwork Test/pl](Artwork_Test/pl.md) , [Artwork Web/pl](Artwork_Web/pl.md) , [Artwork/pl](Artwork/pl.md) , [Template:Artwork/pl](Template:Artwork/pl.md) , [Category:Developer Documentation/pl](Category:Developer_Documentation/pl.md) [Category:Icon/pl](Category:Icon/pl.md) + +--- +[documentation index](../README.md) > Category:Artwork/pl diff --git a/wiki/translations/pl/Category:BIM.md b/wiki/translations/pl/Category:BIM.md index f8b8ec1a59..d476e15de0 100644 --- a/wiki/translations/pl/Category:BIM.md +++ b/wiki/translations/pl/Category:BIM.md @@ -6,3 +6,6 @@ This category is for pages related to building information management (BIM). [Arch IfcExplorer/pl](Arch_IfcExplorer/pl.md) , [BIM application compatibility table/pl](BIM_application_compatibility_table/pl.md) , [BIM ingame tutorial/pl](BIM_ingame_tutorial/pl.md) , [BIM Library/pl](BIM_Library/pl.md) , [BIM Workbench/pl](BIM_Workbench/pl.md) , [IfcOpenShell/pl](IfcOpenShell/pl.md) , [Manual:BIM modeling/pl](Manual:BIM_modeling/pl.md) , [Material/pl](Material/pl.md) , [Category:User Documentation/pl](Category:User_Documentation/pl.md) [Category:Arch/pl](Category:Arch/pl.md) + +--- +[documentation index](../README.md) > Category:BIM/pl diff --git a/wiki/translations/pl/Category:Base.md b/wiki/translations/pl/Category:Base.md index 2578f7442f..689ccaaef2 100644 --- a/wiki/translations/pl/Category:Base.md +++ b/wiki/translations/pl/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/pl](Category:User_Documentation/pl.md) + +--- +[documentation index](../README.md) > Category:Base/pl diff --git a/wiki/translations/pl/Category:Categories.md b/wiki/translations/pl/Category:Categories.md index 2ed3fbed9e..537b27c484 100644 --- a/wiki/translations/pl/Category:Categories.md +++ b/wiki/translations/pl/Category:Categories.md @@ -11,3 +11,6 @@ To jest **główna kategoria**\', która zawiera główne kategorie FreeCAD wiki , , , , , , , , , , , , , , , [Category:Categories/pl](Category:Categories/pl.md) [Category:Addons/pl](Category:Addons/pl.md) [Category:Administration/pl](Category:Administration/pl.md) [Category:API/pl](Category:API/pl.md) [Category:Categories/pl](Category:Categories/pl.md) [Category:Command Reference/pl](Category:Command_Reference/pl.md) [Category:Developer/pl](Category:Developer/pl.md) [Category:Documentation/pl](Category:Documentation/pl.md) [Category:Help/pl](Category:Help/pl.md) [Category:Hubs/pl](Category:Hubs/pl.md) [Category:Macros/pl](Category:Macros/pl.md) [Category:News/pl](Category:News/pl.md) [Category:Python Code/pl](Category:Python_Code/pl.md) [Category:Template/pl](Category:Template/pl.md) [Category:Tutorials/pl](Category:Tutorials/pl.md) [Category:UnfinishedDocu/pl](Category:UnfinishedDocu/pl.md) [Category:Wiki/pl](Category:Wiki/pl.md) + +--- +[documentation index](../README.md) > Category:Categories/pl diff --git a/wiki/translations/pl/Category:Command_Reference.md b/wiki/translations/pl/Category:Command_Reference.md index 1ba2239741..4e8fe3ff87 100644 --- a/wiki/translations/pl/Category:Command_Reference.md +++ b/wiki/translations/pl/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD command. [Arch 3Views/pl](Arch_3Views/pl.md) , [Arch Add/pl](Arch_Add/pl.md) , [Arch Axis/pl](Arch_Axis/pl.md) , [Arch AxisSystem/pl](Arch_AxisSystem/pl.md) , [Arch Building/pl](Arch_Building/pl.md) , [Arch BuildingPart/pl](Arch_BuildingPart/pl.md) , [Arch Check/pl](Arch_Check/pl.md) , [Arch CloneComponent/pl](Arch_CloneComponent/pl.md) , [Arch CloseHoles/pl](Arch_CloseHoles/pl.md) , [Arch Component/pl](Arch_Component/pl.md) , [Arch CurtainWall/pl](Arch_CurtainWall/pl.md) , [Arch CutPlane/pl](Arch_CutPlane/pl.md) , [Arch Door/pl](Arch_Door/pl.md) , [Arch Equipment/pl](Arch_Equipment/pl.md) , [Arch Fence/pl](Arch_Fence/pl.md) , [Arch Floor/pl](Arch_Floor/pl.md) , [Arch Frame/pl](Arch_Frame/pl.md) , [Arch Grid/pl](Arch_Grid/pl.md) , [Arch IfcExplorer/pl](Arch_IfcExplorer/pl.md) , [Arch IfcSpreadsheet/pl](Arch_IfcSpreadsheet/pl.md) , [Arch MergeWalls/pl](Arch_MergeWalls/pl.md) , [Arch MeshToShape/pl](Arch_MeshToShape/pl.md) , [Arch MultiMaterial/pl](Arch_MultiMaterial/pl.md) , [Arch Nest/pl](Arch_Nest/pl.md) , [Arch Panel Cut/pl](Arch_Panel_Cut/pl.md) , [Arch Panel Sheet/pl](Arch_Panel_Sheet/pl.md) , [Arch Panel/pl](Arch_Panel/pl.md) , [Arch Pipe/pl](Arch_Pipe/pl.md) , [Arch PipeConnector/pl](Arch_PipeConnector/pl.md) , [Arch Profile/pl](Arch_Profile/pl.md) , [Arch Project/pl](Arch_Project/pl.md) , [Arch Rebar BentShape/pl](Arch_Rebar_BentShape/pl.md) , [Arch Rebar Drawing Dimensioning/pl](Arch_Rebar_Drawing_Dimensioning/pl.md) , [Arch Rebar Helical/pl](Arch_Rebar_Helical/pl.md) , [Arch Rebar LShape/pl](Arch_Rebar_LShape/pl.md) , [Arch Rebar Stirrup/pl](Arch_Rebar_Stirrup/pl.md) , [Arch Rebar Straight/pl](Arch_Rebar_Straight/pl.md) , [Arch Rebar UShape/pl](Arch_Rebar_UShape/pl.md) , [Arch Rebar/pl](Arch_Rebar/pl.md) , [Arch Reference/pl](Arch_Reference/pl.md) , [Arch Remove/pl](Arch_Remove/pl.md) , [Arch RemoveShape/pl](Arch_RemoveShape/pl.md) , [Arch Roof/pl](Arch_Roof/pl.md) , [Arch Schedule/pl](Arch_Schedule/pl.md) , [Arch SectionPlane/pl](Arch_SectionPlane/pl.md) , [Arch SelectNonSolidMeshes/pl](Arch_SelectNonSolidMeshes/pl.md) , [Arch SetMaterial/pl](Arch_SetMaterial/pl.md) , [Arch Site/pl](Arch_Site/pl.md) , [Arch Space/pl](Arch_Space/pl.md) , [Arch SplitMesh/pl](Arch_SplitMesh/pl.md) , [Arch Stairs/pl](Arch_Stairs/pl.md) , [Arch Structure/pl](Arch_Structure/pl.md) , [Arch Survey/pl](Arch_Survey/pl.md) , [Arch ToggleIfcBrepFlag/pl](Arch_ToggleIfcBrepFlag/pl.md) , [Arch ToggleSubs/pl](Arch_ToggleSubs/pl.md) , [Arch Truss/pl](Arch_Truss/pl.md) , [Arch Wall/pl](Arch_Wall/pl.md) , [Arch Window/pl](Arch_Window/pl.md) , [BIM Box/pl](BIM_Box/pl.md) , [BIM Classification/pl](BIM_Classification/pl.md) , [BIM Clone/pl](BIM_Clone/pl.md) , [BIM Copy/pl](BIM_Copy/pl.md) , [BIM IfcElements/pl](BIM_IfcElements/pl.md) , [BIM IfcProperties/pl](BIM_IfcProperties/pl.md) , [BIM IfcQuantities/pl](BIM_IfcQuantities/pl.md) , [BIM Layers/pl](BIM_Layers/pl.md) , [BIM Library/pl](BIM_Library/pl.md) , [BIM Preflight/pl](BIM_Preflight/pl.md) , [BIM Project/pl](BIM_Project/pl.md) , [BIM Setup/pl](BIM_Setup/pl.md) , [BIM Views/pl](BIM_Views/pl.md) , [BIM Windows/pl](BIM_Windows/pl.md) , [Draft AddConstruction/pl](Draft_AddConstruction/pl.md) , [Draft AddToGroup/pl](Draft_AddToGroup/pl.md) , [Draft AnnotationStyleEditor/pl](Draft_AnnotationStyleEditor/pl.md) , [Draft ApplyStyle/pl](Draft_ApplyStyle/pl.md) , [Draft Arc 3Points/pl](Draft_Arc_3Points/pl.md) , [Draft Arc/pl](Draft_Arc/pl.md) , [Draft Array/pl](Draft_Array/pl.md) , [Draft AutoGroup/pl](Draft_AutoGroup/pl.md) , [Draft BezCurve/pl](Draft_BezCurve/pl.md) , [Draft BSpline/pl](Draft_BSpline/pl.md) , [Draft Circle/pl](Draft_Circle/pl.md) , [Draft CircularArray/pl](Draft_CircularArray/pl.md) , [Draft Clone/pl](Draft_Clone/pl.md) , [Draft CubicBezCurve/pl](Draft_CubicBezCurve/pl.md) , [Draft Dimension/pl](Draft_Dimension/pl.md) , [Draft Downgrade/pl](Draft_Downgrade/pl.md) , [Draft Draft2Sketch/pl](Draft_Draft2Sketch/pl.md) , [Draft Drawing/pl](Draft_Drawing/pl.md) , [Draft Edit/pl](Draft_Edit/pl.md) , [Draft Ellipse/pl](Draft_Ellipse/pl.md) , [Draft Facebinder/pl](Draft_Facebinder/pl.md) , [Draft Fillet/pl](Draft_Fillet/pl.md) , [Draft FlipDimension/pl](Draft_FlipDimension/pl.md) , [Draft Heal/pl](Draft_Heal/pl.md) , [Draft Join/pl](Draft_Join/pl.md) , [Draft Label/pl](Draft_Label/pl.md) , [Draft Layer/pl](Draft_Layer/pl.md) , [Draft Line/pl](Draft_Line/pl.md) , [Draft Mirror/pl](Draft_Mirror/pl.md) , [Draft Move/pl](Draft_Move/pl.md) , [Draft Offset/pl](Draft_Offset/pl.md) , [Draft OrthoArray/pl](Draft_OrthoArray/pl.md) , [Draft PathArray/pl](Draft_PathArray/pl.md) , [Draft Point/pl](Draft_Point/pl.md) , [Draft PointArray/pl](Draft_PointArray/pl.md) , [Draft PolarArray/pl](Draft_PolarArray/pl.md) , [Draft Polygon/pl](Draft_Polygon/pl.md) , [Draft Rectangle/pl](Draft_Rectangle/pl.md) , [Draft Rotate/pl](Draft_Rotate/pl.md) , [Draft Scale/pl](Draft_Scale/pl.md) , [Draft SelectGroup/pl](Draft_SelectGroup/pl.md) , [Draft SelectPlane/pl](Draft_SelectPlane/pl.md) , [Draft SetStyle/pl](Draft_SetStyle/pl.md) , [Draft Shape2DView/pl](Draft_Shape2DView/pl.md) , [Draft ShapeString/pl](Draft_ShapeString/pl.md) , [Draft ShowSnapBar/pl](Draft_ShowSnapBar/pl.md) , [Draft Slope/pl](Draft_Slope/pl.md) , [Draft Snap Angle/pl](Draft_Snap_Angle/pl.md) , [Draft Snap Center/pl](Draft_Snap_Center/pl.md) , [Draft Snap Dimensions/pl](Draft_Snap_Dimensions/pl.md) , [Draft Snap Endpoint/pl](Draft_Snap_Endpoint/pl.md) , [Draft Snap Extension/pl](Draft_Snap_Extension/pl.md) , [Draft Snap Grid/pl](Draft_Snap_Grid/pl.md) , [Draft Snap Intersection/pl](Draft_Snap_Intersection/pl.md) , [Draft Snap Lock/pl](Draft_Snap_Lock/pl.md) , [Draft Snap Midpoint/pl](Draft_Snap_Midpoint/pl.md) , [Draft Snap Near/pl](Draft_Snap_Near/pl.md) , [Draft Snap Ortho/pl](Draft_Snap_Ortho/pl.md) , [Draft Snap Parallel/pl](Draft_Snap_Parallel/pl.md) , [Draft Snap Perpendicular/pl](Draft_Snap_Perpendicular/pl.md) , [Draft Snap Special/pl](Draft_Snap_Special/pl.md) , [Draft Snap WorkingPlane/pl](Draft_Snap_WorkingPlane/pl.md) , [Draft Split/pl](Draft_Split/pl.md) , [Draft Stretch/pl](Draft_Stretch/pl.md) , [Draft SubelementHighlight/pl](Draft_SubelementHighlight/pl.md) , [Draft Text/pl](Draft_Text/pl.md) , [Draft ToggleConstructionMode/pl](Draft_ToggleConstructionMode/pl.md) , [Draft ToggleContinueMode/pl](Draft_ToggleContinueMode/pl.md) , [Draft ToggleDisplayMode/pl](Draft_ToggleDisplayMode/pl.md) , [Draft ToggleGrid/pl](Draft_ToggleGrid/pl.md) , [Draft Trimex/pl](Draft_Trimex/pl.md) , [Draft Upgrade/pl](Draft_Upgrade/pl.md) , [Draft Wire/pl](Draft_Wire/pl.md) , [Draft WireToBSpline/pl](Draft_WireToBSpline/pl.md) , [Draft WorkingPlaneProxy/pl](Draft_WorkingPlaneProxy/pl.md) , [Drawing Annotation/pl](Drawing_Annotation/pl.md) , [Drawing Clip/pl](Drawing_Clip/pl.md) , [Drawing Landscape A3/pl](Drawing_Landscape_A3/pl.md) , [Drawing Open SVG/pl](Drawing_Open_SVG/pl.md) , [Drawing Openbrowser/pl](Drawing_Openbrowser/pl.md) , [Drawing Orthoviews/pl](Drawing_Orthoviews/pl.md) , [Drawing Save/pl](Drawing_Save/pl.md) , [Drawing Symbol/pl](Drawing_Symbol/pl.md) , [Drawing View/pl](Drawing_View/pl.md) , [Fasteners BOM/pl](Fasteners_BOM/pl.md) , [FEM Analysis/pl](FEM_Analysis/pl.md) , [FEM ConstraintFixed/pl](FEM_ConstraintFixed/pl.md) , [FEM ConstraintForce/pl](FEM_ConstraintForce/pl.md) , [FEM ConstraintPressure/pl](FEM_ConstraintPressure/pl.md) , [FEM EquationHeat/pl](FEM_EquationHeat/pl.md) , [FEM MaterialMechanicalNonlinear/pl](FEM_MaterialMechanicalNonlinear/pl.md) , [FEM MaterialReinforced/pl](FEM_MaterialReinforced/pl.md) , [FEM MaterialSolid/pl](FEM_MaterialSolid/pl.md) , [FEM MeshGmshFromShape/pl](FEM_MeshGmshFromShape/pl.md) , [FEM ResultShow/pl](FEM_ResultShow/pl.md) , [FEM ResultsPurge/pl](FEM_ResultsPurge/pl.md) , [FEM SolverControl/pl](FEM_SolverControl/pl.md) , [FEM SolverRun/pl](FEM_SolverRun/pl.md) , [GuiCommand model/pl](GuiCommand_model/pl.md) , [Template:GuiCommand/pl](Template:GuiCommand/pl.md) , [Template:GuiCommandAddon/pl](Template:GuiCommandAddon/pl.md) , [Image CreateImagePlane/pl](Image_CreateImagePlane/pl.md) , [Image Open/pl](Image_Open/pl.md) , [Image Scaling/pl](Image_Scaling/pl.md) , [Material editor/pl](Material_editor/pl.md) , [Mesh AddFacet/pl](Mesh_AddFacet/pl.md) , [Mesh BoundingBox/pl](Mesh_BoundingBox/pl.md) , [Mesh BuildRegularSolid/pl](Mesh_BuildRegularSolid/pl.md) , [Mesh CrossSections/pl](Mesh_CrossSections/pl.md) , [Mesh CurvatureInfo/pl](Mesh_CurvatureInfo/pl.md) , [Mesh Decimating/pl](Mesh_Decimating/pl.md) , [Mesh Difference/pl](Mesh_Difference/pl.md) , [Mesh EvaluateFacet/pl](Mesh_EvaluateFacet/pl.md) , [Mesh EvaluateSolid/pl](Mesh_EvaluateSolid/pl.md) , [Mesh Evaluation/pl](Mesh_Evaluation/pl.md) , [Mesh Export/pl](Mesh_Export/pl.md) , [Mesh FillInteractiveHole/pl](Mesh_FillInteractiveHole/pl.md) , [Mesh FillupHoles/pl](Mesh_FillupHoles/pl.md) , [Mesh FlipNormals/pl](Mesh_FlipNormals/pl.md) , [Mesh FromPartShape/pl](Mesh_FromPartShape/pl.md) , [Mesh HarmonizeNormals/pl](Mesh_HarmonizeNormals/pl.md) , [Mesh Import/pl](Mesh_Import/pl.md) , [Mesh Intersection/pl](Mesh_Intersection/pl.md) , [Mesh Merge/pl](Mesh_Merge/pl.md) , [Mesh PolyCut/pl](Mesh_PolyCut/pl.md) , [Mesh PolyTrim/pl](Mesh_PolyTrim/pl.md) , [Mesh RemeshGmsh/pl](Mesh_RemeshGmsh/pl.md) , [Mesh RemoveCompByHand/pl](Mesh_RemoveCompByHand/pl.md) , [Mesh RemoveComponents/pl](Mesh_RemoveComponents/pl.md) , [Mesh Scale/pl](Mesh_Scale/pl.md) , [Mesh SectionByPlane/pl](Mesh_SectionByPlane/pl.md) , [Mesh Segmentation/pl](Mesh_Segmentation/pl.md) , [Mesh SegmentationBestFit/pl](Mesh_SegmentationBestFit/pl.md) , [Mesh Smoothing/pl](Mesh_Smoothing/pl.md) , [Mesh SplitComponents/pl](Mesh_SplitComponents/pl.md) , [Mesh TrimByPlane/pl](Mesh_TrimByPlane/pl.md) , [Mesh Union/pl](Mesh_Union/pl.md) , [Mesh VertexCurvature/pl](Mesh_VertexCurvature/pl.md) , [MeshPart CreateFlatFace/pl](MeshPart_CreateFlatFace/pl.md) , [MeshPart CreateFlatMesh/pl](MeshPart_CreateFlatMesh/pl.md) , [OpenSCAD AddOpenSCADElement/pl](OpenSCAD_AddOpenSCADElement/pl.md) , [OpenSCAD ColorCodeShape/pl](OpenSCAD_ColorCodeShape/pl.md) , [OpenSCAD Edgestofaces/pl](OpenSCAD_Edgestofaces/pl.md) , [OpenSCAD ExpandPlacements/pl](OpenSCAD_ExpandPlacements/pl.md) , [OpenSCAD ExplodeGroup/pl](OpenSCAD_ExplodeGroup/pl.md) , [OpenSCAD Hull/pl](OpenSCAD_Hull/pl.md) , [OpenSCAD IncreaseToleranceFeature/pl](OpenSCAD_IncreaseToleranceFeature/pl.md) , [OpenSCAD MeshBoolean/pl](OpenSCAD_MeshBoolean/pl.md) , [OpenSCAD Minkowski/pl](OpenSCAD_Minkowski/pl.md) , [OpenSCAD RefineShapeFeature/pl](OpenSCAD_RefineShapeFeature/pl.md) , [OpenSCAD RemoveSubtree/pl](OpenSCAD_RemoveSubtree/pl.md) , [OpenSCAD ReplaceObject/pl](OpenSCAD_ReplaceObject/pl.md) , [Part Boolean/pl](Part_Boolean/pl.md) , [Part BooleanFragments/pl](Part_BooleanFragments/pl.md) , [Part Box/pl](Part_Box/pl.md) , [Part Builder/pl](Part_Builder/pl.md) , [Part Chamfer/pl](Part_Chamfer/pl.md) , [Part CheckGeometry/pl](Part_CheckGeometry/pl.md) , [Part Circle/pl](Part_Circle/pl.md) , [Part Common/pl](Part_Common/pl.md) , [Part CompCompoundTools/pl](Part_CompCompoundTools/pl.md) , [Part CompJoinFeatures/pl](Part_CompJoinFeatures/pl.md) , [Part CompOffsetTools/pl](Part_CompOffsetTools/pl.md) , [Part Compound/pl](Part_Compound/pl.md) , [Part CompoundFilter/pl](Part_CompoundFilter/pl.md) , [Part Cone/pl](Part_Cone/pl.md) , [Part CrossSections/pl](Part_CrossSections/pl.md) , [Part Cut/pl](Part_Cut/pl.md) , [Part Cylinder/pl](Part_Cylinder/pl.md) , [Part Defeaturing/pl](Part_Defeaturing/pl.md) , [Part EditAttachment/pl](Part_EditAttachment/pl.md) , [Part ElementCopy/pl](Part_ElementCopy/pl.md) , [Part Ellipse/pl](Part_Ellipse/pl.md) , [Part Ellipsoid/pl](Part_Ellipsoid/pl.md) , [Part ExplodeCompound/pl](Part_ExplodeCompound/pl.md) , [Part Export/pl](Part_Export/pl.md) , [Part Extrude/pl](Part_Extrude/pl.md) , [Part FaceColors/pl](Part_FaceColors/pl.md) , [Part Fillet/pl](Part_Fillet/pl.md) , [Part Fuse/pl](Part_Fuse/pl.md) , [Part Helix/pl](Part_Helix/pl.md) , [Part Import/pl](Part_Import/pl.md) , [Part JoinConnect/pl](Part_JoinConnect/pl.md) , [Part JoinCutout/pl](Part_JoinCutout/pl.md) , [Part JoinEmbed/pl](Part_JoinEmbed/pl.md) , [Part Line/pl](Part_Line/pl.md) , [Part Loft/pl](Part_Loft/pl.md) , [Part MakeFace/pl](Part_MakeFace/pl.md) , [Part MakeSolid/pl](Part_MakeSolid/pl.md) , [Part Measure Menu/pl](Part_Measure_Menu/pl.md) , [Part Mirror/pl](Part_Mirror/pl.md) , [Part Offset/pl](Part_Offset/pl.md) , [Part Offset2D/pl](Part_Offset2D/pl.md) , [Part Plane/pl](Part_Plane/pl.md) , [Part Point/pl](Part_Point/pl.md) , [Part Primitives/pl](Part_Primitives/pl.md) , [Part Prism/pl](Part_Prism/pl.md) , [Part ProjectionOnSurface/pl](Part_ProjectionOnSurface/pl.md) , [Part RefineShape/pl](Part_RefineShape/pl.md) , [Part RegularPolygon/pl](Part_RegularPolygon/pl.md) , [Part ReverseShapes/pl](Part_ReverseShapes/pl.md) , [Part Revolve/pl](Part_Revolve/pl.md) , [Part RuledSurface/pl](Part_RuledSurface/pl.md) , [Part Section/pl](Part_Section/pl.md) , [Part ShapeFromMesh/pl](Part_ShapeFromMesh/pl.md) , [Part SimpleCopy/pl](Part_SimpleCopy/pl.md) , [Part Slice/pl](Part_Slice/pl.md) , [Part SliceApart/pl](Part_SliceApart/pl.md) , [Part Sphere/pl](Part_Sphere/pl.md) , [Part Spiral/pl](Part_Spiral/pl.md) , [Part Sweep/pl](Part_Sweep/pl.md) , [Part Thickness/pl](Part_Thickness/pl.md) , [Part Torus/pl](Part_Torus/pl.md) , [Part TransformedCopy/pl](Part_TransformedCopy/pl.md) , [Part Tube/pl](Part_Tube/pl.md) , [Part Wedge/pl](Part_Wedge/pl.md) , [Part XOR/pl](Part_XOR/pl.md) , [PartDesign AdditiveBox/pl](PartDesign_AdditiveBox/pl.md) , [PartDesign AdditiveCone/pl](PartDesign_AdditiveCone/pl.md) , [PartDesign AdditiveCylinder/pl](PartDesign_AdditiveCylinder/pl.md) , [PartDesign AdditiveEllipsoid/pl](PartDesign_AdditiveEllipsoid/pl.md) , [PartDesign AdditiveHelix/pl](PartDesign_AdditiveHelix/pl.md) , [PartDesign AdditiveLoft/pl](PartDesign_AdditiveLoft/pl.md) , [PartDesign AdditivePipe/pl](PartDesign_AdditivePipe/pl.md) , [PartDesign AdditivePrism/pl](PartDesign_AdditivePrism/pl.md) , [PartDesign AdditiveSphere/pl](PartDesign_AdditiveSphere/pl.md) , [PartDesign AdditiveTorus/pl](PartDesign_AdditiveTorus/pl.md) , [PartDesign AdditiveWedge/pl](PartDesign_AdditiveWedge/pl.md) , [PartDesign Body/pl](PartDesign_Body/pl.md) , [PartDesign Boolean/pl](PartDesign_Boolean/pl.md) , [PartDesign Chamfer/pl](PartDesign_Chamfer/pl.md) , [PartDesign Clone/pl](PartDesign_Clone/pl.md) , [PartDesign CompPrimitiveAdditive/pl](PartDesign_CompPrimitiveAdditive/pl.md) , [PartDesign CompPrimitiveSubtractive/pl](PartDesign_CompPrimitiveSubtractive/pl.md) , [PartDesign CoordinateSystem/pl](PartDesign_CoordinateSystem/pl.md) , [PartDesign Draft/pl](PartDesign_Draft/pl.md) , [PartDesign Fillet/pl](PartDesign_Fillet/pl.md) , [PartDesign Groove/pl](PartDesign_Groove/pl.md) , [PartDesign Hole/pl](PartDesign_Hole/pl.md) , [PartDesign InvoluteGear/pl](PartDesign_InvoluteGear/pl.md) , [PartDesign Line/pl](PartDesign_Line/pl.md) , [PartDesign LinearPattern/pl](PartDesign_LinearPattern/pl.md) , [PartDesign Migrate/pl](PartDesign_Migrate/pl.md) , [PartDesign Mirrored/pl](PartDesign_Mirrored/pl.md) , [PartDesign MoveFeature/pl](PartDesign_MoveFeature/pl.md) , [PartDesign MoveFeatureInTree/pl](PartDesign_MoveFeatureInTree/pl.md) , [PartDesign MoveTip/pl](PartDesign_MoveTip/pl.md) , [PartDesign MultiTransform/pl](PartDesign_MultiTransform/pl.md) , [PartDesign NewSketch/pl](PartDesign_NewSketch/pl.md) , [PartDesign Pad/pl](PartDesign_Pad/pl.md) , [PartDesign Plane/pl](PartDesign_Plane/pl.md) , [PartDesign Pocket/pl](PartDesign_Pocket/pl.md) , [PartDesign Point/pl](PartDesign_Point/pl.md) , [PartDesign PolarPattern/pl](PartDesign_PolarPattern/pl.md) , [PartDesign Revolution/pl](PartDesign_Revolution/pl.md) , [PartDesign Scaled/pl](PartDesign_Scaled/pl.md) , [PartDesign ShapeBinder/pl](PartDesign_ShapeBinder/pl.md) , [PartDesign Sprocket/pl](PartDesign_Sprocket/pl.md) , [PartDesign SubtractiveBox/pl](PartDesign_SubtractiveBox/pl.md) , [PartDesign SubtractiveCone/pl](PartDesign_SubtractiveCone/pl.md) , [PartDesign SubtractiveCylinder/pl](PartDesign_SubtractiveCylinder/pl.md) , [PartDesign SubtractiveEllipsoid/pl](PartDesign_SubtractiveEllipsoid/pl.md) , [PartDesign SubtractiveHelix/pl](PartDesign_SubtractiveHelix/pl.md) , [PartDesign SubtractiveLoft/pl](PartDesign_SubtractiveLoft/pl.md) , [PartDesign SubtractivePipe/pl](PartDesign_SubtractivePipe/pl.md) , [PartDesign SubtractivePrism/pl](PartDesign_SubtractivePrism/pl.md) , [PartDesign SubtractiveSphere/pl](PartDesign_SubtractiveSphere/pl.md) , [PartDesign SubtractiveTorus/pl](PartDesign_SubtractiveTorus/pl.md) , [PartDesign SubtractiveWedge/pl](PartDesign_SubtractiveWedge/pl.md) , [PartDesign Thickness/pl](PartDesign_Thickness/pl.md) , [PartDesign WizardShaft/pl](PartDesign_WizardShaft/pl.md) , [Path Array/pl](Path_Array/pl.md) , [Path ExportTemplate/pl](Path_ExportTemplate/pl.md) , [Path Job/pl](Path_Job/pl.md) , [Path Pocket Shape/pl](Path_Pocket_Shape/pl.md) , [Path Post/pl](Path_Post/pl.md) , [Path Profile/pl](Path_Profile/pl.md) , [Path Surface/pl](Path_Surface/pl.md) , [Path ToolLibraryEdit/pl](Path_ToolLibraryEdit/pl.md) , [Plot Axes/pl](Plot_Axes/pl.md) , [Plot Grid/pl](Plot_Grid/pl.md) , [Plot Labels/pl](Plot_Labels/pl.md) , [Plot Legend/pl](Plot_Legend/pl.md) , [Plot Positions/pl](Plot_Positions/pl.md) , [Plot Save/pl](Plot_Save/pl.md) , [Plot Series/pl](Plot_Series/pl.md) , [Points Export/pl](Points_Export/pl.md) , [Points Import/pl](Points_Import/pl.md) , [Raytracing ExportProject/pl](Raytracing_ExportProject/pl.md) , [Raytracing InsertPart/pl](Raytracing_InsertPart/pl.md) , [Raytracing Lux/pl](Raytracing_Lux/pl.md) , [Raytracing New/pl](Raytracing_New/pl.md) , [Raytracing Render/pl](Raytracing_Render/pl.md) , [Raytracing ResetCamera/pl](Raytracing_ResetCamera/pl.md) , [Raytracing WriteCamera/pl](Raytracing_WriteCamera/pl.md) , [Raytracing WritePart/pl](Raytracing_WritePart/pl.md) , [Raytracing WriteView/pl](Raytracing_WriteView/pl.md) , [Robot Export/pl](Robot_Export/pl.md) , [SheetMetal UnattendedUnfold/pl](SheetMetal_UnattendedUnfold/pl.md) , [Sketcher BSplineApproximate/pl](Sketcher_BSplineApproximate/pl.md) , [Sketcher BSplineComb/pl](Sketcher_BSplineComb/pl.md) , [Sketcher BSplineDecreaseDegree/pl](Sketcher_BSplineDecreaseDegree/pl.md) , [Sketcher BSplineDecreaseKnotMultiplicity/pl](Sketcher_BSplineDecreaseKnotMultiplicity/pl.md) , [Sketcher BSplineDegree/pl](Sketcher_BSplineDegree/pl.md) , [Sketcher BSplineIncreaseDegree/pl](Sketcher_BSplineIncreaseDegree/pl.md) , [Sketcher BSplineIncreaseKnotMultiplicity/pl](Sketcher_BSplineIncreaseKnotMultiplicity/pl.md) , [Sketcher BSplineKnotMultiplicity/pl](Sketcher_BSplineKnotMultiplicity/pl.md) , [Sketcher BSplinePoleWeight/pl](Sketcher_BSplinePoleWeight/pl.md) , [Sketcher BSplinePolygon/pl](Sketcher_BSplinePolygon/pl.md) , [Sketcher CarbonCopy/pl](Sketcher_CarbonCopy/pl.md) , [Sketcher Clone/pl](Sketcher_Clone/pl.md) , [Sketcher CloseShape/pl](Sketcher_CloseShape/pl.md) , [Sketcher CompCreateArc/pl](Sketcher_CompCreateArc/pl.md) , [Sketcher CompCreateBSpline/pl](Sketcher_CompCreateBSpline/pl.md) , [Sketcher CompCreateCircle/pl](Sketcher_CompCreateCircle/pl.md) , [Sketcher CompCreateConic/pl](Sketcher_CompCreateConic/pl.md) , [Sketcher CompCreateRectangles/pl](Sketcher_CompCreateRectangles/pl.md) , [Sketcher CompCreateRegularPolygon/pl](Sketcher_CompCreateRegularPolygon/pl.md) , [Sketcher ConnectLines/pl](Sketcher_ConnectLines/pl.md) , [Sketcher ConstrainAngle/pl](Sketcher_ConstrainAngle/pl.md) , [Sketcher ConstrainBlock/pl](Sketcher_ConstrainBlock/pl.md) , [Sketcher ConstrainCoincident/pl](Sketcher_ConstrainCoincident/pl.md) , [Sketcher ConstrainDiameter/pl](Sketcher_ConstrainDiameter/pl.md) , [Sketcher ConstrainDistance/pl](Sketcher_ConstrainDistance/pl.md) , [Sketcher ConstrainDistanceX/pl](Sketcher_ConstrainDistanceX/pl.md) , [Sketcher ConstrainDistanceY/pl](Sketcher_ConstrainDistanceY/pl.md) , [Sketcher ConstrainEqual/pl](Sketcher_ConstrainEqual/pl.md) , [Sketcher ConstrainHorizontal/pl](Sketcher_ConstrainHorizontal/pl.md) , [Sketcher ConstrainInternalAlignment/pl](Sketcher_ConstrainInternalAlignment/pl.md) , [Sketcher ConstrainLock/pl](Sketcher_ConstrainLock/pl.md) , [Sketcher ConstrainParallel/pl](Sketcher_ConstrainParallel/pl.md) , [Sketcher ConstrainPerpendicular/pl](Sketcher_ConstrainPerpendicular/pl.md) , [Sketcher ConstrainPointOnObject/pl](Sketcher_ConstrainPointOnObject/pl.md) , [Sketcher ConstrainRadiam/pl](Sketcher_ConstrainRadiam/pl.md) , [Sketcher ConstrainRadius/pl](Sketcher_ConstrainRadius/pl.md) , [Sketcher ConstrainSnellsLaw/pl](Sketcher_ConstrainSnellsLaw/pl.md) , [Sketcher ConstrainSymmetric/pl](Sketcher_ConstrainSymmetric/pl.md) , [Sketcher ConstrainTangent/pl](Sketcher_ConstrainTangent/pl.md) , [Sketcher ConstrainVertical/pl](Sketcher_ConstrainVertical/pl.md) , [Sketcher Copy/pl](Sketcher_Copy/pl.md) , [Sketcher Create3PointArc/pl](Sketcher_Create3PointArc/pl.md) , [Sketcher Create3PointCircle/pl](Sketcher_Create3PointCircle/pl.md) , [Sketcher CreateArc/pl](Sketcher_CreateArc/pl.md) , [Sketcher CreateArcOfEllipse/pl](Sketcher_CreateArcOfEllipse/pl.md) , [Sketcher CreateArcOfHyperbola/pl](Sketcher_CreateArcOfHyperbola/pl.md) , [Sketcher CreateArcOfParabola/pl](Sketcher_CreateArcOfParabola/pl.md) , [Sketcher CreateBSpline/pl](Sketcher_CreateBSpline/pl.md) , [Sketcher CreateCircle/pl](Sketcher_CreateCircle/pl.md) , [Sketcher CreateEllipseBy3Points/pl](Sketcher_CreateEllipseBy3Points/pl.md) , [Sketcher CreateEllipseByCenter/pl](Sketcher_CreateEllipseByCenter/pl.md) , [Sketcher CreateFillet/pl](Sketcher_CreateFillet/pl.md) , [Sketcher CreateHeptagon/pl](Sketcher_CreateHeptagon/pl.md) , [Sketcher CreateHexagon/pl](Sketcher_CreateHexagon/pl.md) , [Sketcher CreateLine/pl](Sketcher_CreateLine/pl.md) , [Sketcher CreateOblong/pl](Sketcher_CreateOblong/pl.md) , [Sketcher CreateOctagon/pl](Sketcher_CreateOctagon/pl.md) , [Sketcher CreatePentagon/pl](Sketcher_CreatePentagon/pl.md) , [Sketcher CreatePeriodicBSpline/pl](Sketcher_CreatePeriodicBSpline/pl.md) , [Sketcher CreatePoint/pl](Sketcher_CreatePoint/pl.md) , [Sketcher CreatePolyline/pl](Sketcher_CreatePolyline/pl.md) , [Sketcher CreateRectangle Center/pl](Sketcher_CreateRectangle_Center/pl.md) , [Sketcher CreateRectangle/pl](Sketcher_CreateRectangle/pl.md) , [Sketcher CreateRegularPolygon/pl](Sketcher_CreateRegularPolygon/pl.md) , [Sketcher CreateSlot/pl](Sketcher_CreateSlot/pl.md) , [Sketcher CreateSquare/pl](Sketcher_CreateSquare/pl.md) , [Sketcher CreateTriangle/pl](Sketcher_CreateTriangle/pl.md) , [Sketcher DeleteAllConstraints/pl](Sketcher_DeleteAllConstraints/pl.md) , [Sketcher DeleteAllGeometry/pl](Sketcher_DeleteAllGeometry/pl.md) , [Sketcher EditSketch/pl](Sketcher_EditSketch/pl.md) , [Sketcher Extend/pl](Sketcher_Extend/pl.md) , [Sketcher External/pl](Sketcher_External/pl.md) , [Sketcher LeaveSketch/pl](Sketcher_LeaveSketch/pl.md) , [Sketcher MapSketch/pl](Sketcher_MapSketch/pl.md) , [Sketcher MergeSketches/pl](Sketcher_MergeSketches/pl.md) , [Sketcher MirrorSketch/pl](Sketcher_MirrorSketch/pl.md) , [Sketcher Move/pl](Sketcher_Move/pl.md) , [Sketcher NewSketch/pl](Sketcher_NewSketch/pl.md) , [Sketcher RectangularArray/pl](Sketcher_RectangularArray/pl.md) , [Sketcher RemoveAxesAlignment/pl](Sketcher_RemoveAxesAlignment/pl.md) , [Sketcher ReorientSketch/pl](Sketcher_ReorientSketch/pl.md) , [Sketcher RestoreInternalAlignmentGeometry/pl](Sketcher_RestoreInternalAlignmentGeometry/pl.md) , [Sketcher SelectConflictingConstraints/pl](Sketcher_SelectConflictingConstraints/pl.md) , [Sketcher SelectConstraints/pl](Sketcher_SelectConstraints/pl.md) , [Sketcher SelectElementsAssociatedWithConstraints/pl](Sketcher_SelectElementsAssociatedWithConstraints/pl.md) , [Sketcher SelectElementsWithDoFs/pl](Sketcher_SelectElementsWithDoFs/pl.md) , [Sketcher SelectHorizontalAxis/pl](Sketcher_SelectHorizontalAxis/pl.md) , [Sketcher SelectOrigin/pl](Sketcher_SelectOrigin/pl.md) , [Sketcher SelectRedundantConstraints/pl](Sketcher_SelectRedundantConstraints/pl.md) , [Sketcher SelectVerticalAxis/pl](Sketcher_SelectVerticalAxis/pl.md) , [Sketcher Split/pl](Sketcher_Split/pl.md) , [Sketcher StopOperation/pl](Sketcher_StopOperation/pl.md) , [Sketcher SwitchVirtualSpace/pl](Sketcher_SwitchVirtualSpace/pl.md) , [Sketcher Symmetry/pl](Sketcher_Symmetry/pl.md) , [Sketcher ToggleActiveConstraint/pl](Sketcher_ToggleActiveConstraint/pl.md) , [Sketcher ToggleConstruction/pl](Sketcher_ToggleConstruction/pl.md) , [Sketcher ToggleDrivingConstraint/pl](Sketcher_ToggleDrivingConstraint/pl.md) , [Sketcher Trimming/pl](Sketcher_Trimming/pl.md) , [Sketcher ValidateSketch/pl](Sketcher_ValidateSketch/pl.md) , [Sketcher ViewSection/pl](Sketcher_ViewSection/pl.md) , [Sketcher ViewSketch/pl](Sketcher_ViewSketch/pl.md) , [Spreadsheet CreateSheet/pl](Spreadsheet_CreateSheet/pl.md) , [Spreadsheet Export/pl](Spreadsheet_Export/pl.md) , [Spreadsheet Import/pl](Spreadsheet_Import/pl.md) , [Spreadsheet SetAlias/pl](Spreadsheet_SetAlias/pl.md) , [Std About/pl](Std_About/pl.md) , [Std ActivateNextWindow/pl](Std_ActivateNextWindow/pl.md) , [Std ActivatePrevWindow/pl](Std_ActivatePrevWindow/pl.md) , [Std AddonMgr/pl](Std_AddonMgr/pl.md) , [Std Alignment/pl](Std_Alignment/pl.md) , [Std ArrangeIcons/pl](Std_ArrangeIcons/pl.md) , [Std AxisCross/pl](Std_AxisCross/pl.md) , [Std BoxElementSelection/pl](Std_BoxElementSelection/pl.md) , [Std BoxSelection/pl](Std_BoxSelection/pl.md) , [Std CascadeWindows/pl](Std_CascadeWindows/pl.md) , [Std CloseActiveWindow/pl](Std_CloseActiveWindow/pl.md) , [Std CloseAllWindows/pl](Std_CloseAllWindows/pl.md) , [Std Copy/pl](Std_Copy/pl.md) , [Std Cut/pl](Std_Cut/pl.md) , [Std Delete/pl](Std_Delete/pl.md) , [Std DemoMode/pl](Std_DemoMode/pl.md) , [Std DependencyGraph/pl](Std_DependencyGraph/pl.md) , [Std DlgCustomize/pl](Std_DlgCustomize/pl.md) , [Std DlgMacroRecord/pl](Std_DlgMacroRecord/pl.md) , [Std DlgParameter/pl](Std_DlgParameter/pl.md) , [Std DlgPreferences/pl](Std_DlgPreferences/pl.md) , [Std DuplicateSelection/pl](Std_DuplicateSelection/pl.md) , [Std Edit/pl](Std_Edit/pl.md) , [Std Export/pl](Std_Export/pl.md) [Category:Categories/pl](Category:Categories/pl.md) + +--- +[documentation index](../README.md) > Category:Command Reference/pl diff --git a/wiki/translations/pl/Category:Common_Questions.md b/wiki/translations/pl/Category:Common_Questions.md index 739bde0a7b..9e7d11fb67 100644 --- a/wiki/translations/pl/Category:Common_Questions.md +++ b/wiki/translations/pl/Category:Common_Questions.md @@ -4,3 +4,6 @@ This category has links to common questions on how to do something in FC. This i ### Contents: [Constructive solid geometry/pl](Constructive_solid_geometry/pl.md) , [Feature editing/pl](Feature_editing/pl.md) , [FreeCAD and DWG Import/pl](FreeCAD_and_DWG_Import/pl.md) , [Help FreeCAD/pl](Help_FreeCAD/pl.md) , [Import Export Preferences/pl](Import_Export_Preferences/pl.md) , [Installing on Linux/pl](Installing_on_Linux/pl.md) , [Std About/pl](Std_About/pl.md) , [Topological naming problem/pl](Topological_naming_problem/pl.md) , [Video tutorials/pl](Video_tutorials/pl.md) + +--- +[documentation index](../README.md) > Category:Common Questions/pl diff --git a/wiki/translations/pl/Category:Developer.md b/wiki/translations/pl/Category:Developer.md index 4697de3c42..2221bf79de 100644 --- a/wiki/translations/pl/Category:Developer.md +++ b/wiki/translations/pl/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Changelog/pl](Changelog/pl.md) , [Compile on Docker/pl](Compile_on_Docker/pl.md) , [Compile on Linux/pl](Compile_on_Linux/pl.md) , [Compile on MacOS/pl](Compile_on_MacOS/pl.md) , [Compile on MinGW/pl](Compile_on_MinGW/pl.md) , [Compile on Windows/pl](Compile_on_Windows/pl.md) , [Compiling/pl](Compiling/pl.md) , [Contributors/pl](Contributors/pl.md) , [Doxygen/pl](Doxygen/pl.md) , [File Format FCStd/pl](File_Format_FCStd/pl.md) , [InputField/pl](InputField/pl.md) , [Land Survey Workbench Blueprint/pl](Land_Survey_Workbench_Blueprint/pl.md) , [Material/pl](Material/pl.md) , [Organization chart/pl](Organization_chart/pl.md) , [Svg Namespace/pl](Svg_Namespace/pl.md) [Category:Categories/pl](Category:Categories/pl.md) + +--- +[documentation index](../README.md) > Category:Developer/pl diff --git a/wiki/translations/pl/Category:Developer_Documentation.md b/wiki/translations/pl/Category:Developer_Documentation.md index 4cca2d6a85..d434d22393 100644 --- a/wiki/translations/pl/Category:Developer_Documentation.md +++ b/wiki/translations/pl/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Add FEM equation tutorial/pl](Add_FEM_equation_tutorial/pl.md) , [AppImage/pl](AppImage/pl.md) , [Artwork Erroneous/pl](Artwork_Erroneous/pl.md) , [Artwork Guidelines/pl](Artwork_Guidelines/pl.md) , [Artwork/pl](Artwork/pl.md) , [Branding/pl](Branding/pl.md) , [Bug Triage/pl](Bug_Triage/pl.md) , [Code snippets/pl](Code_snippets/pl.md) , [Command/pl](Command/pl.md) , [Compile on Docker/pl](Compile_on_Docker/pl.md) , [Compile on Linux/pl](Compile_on_Linux/pl.md) , [Compile on MacOS/pl](Compile_on_MacOS/pl.md) , [Compile on MinGW/pl](Compile_on_MinGW/pl.md) , [Compile on Windows/pl](Compile_on_Windows/pl.md) , [Compiling/pl](Compiling/pl.md) , [Create a FeaturePython object part I/pl](Create_a_FeaturePython_object_part_I/pl.md) , [Create a FeaturePython object part II/pl](Create_a_FeaturePython_object_part_II/pl.md) , [Crowdin Scripts/pl](Crowdin_Scripts/pl.md) , [Custom icon in tree view/pl](Custom_icon_in_tree_view/pl.md) , [Debian development/pl](Debian_development/pl.md) , [Debian Unstable/pl](Debian_Unstable/pl.md) , [Debugging/pl](Debugging/pl.md) , [Developer hub/pl](Developer_hub/pl.md) , [Dialog creation image and animated GIF/pl](Dialog_creation_image_and_animated_GIF/pl.md) , [Dialog creation reading and writing files/pl](Dialog_creation_reading_and_writing_files/pl.md) , [Dialog creation setting colors/pl](Dialog_creation_setting_colors/pl.md) , [Dialog creation with various widgets/pl](Dialog_creation_with_various_widgets/pl.md) , [Dialog creation/pl](Dialog_creation/pl.md) , [Doxygen/pl](Doxygen/pl.md) , [Drawing API example/pl](Drawing_API_example/pl.md) , [Drawing templates/pl](Drawing_templates/pl.md) , [Embedding FreeCAD/pl](Embedding_FreeCAD/pl.md) , [Embedding FreeCADGui/pl](Embedding_FreeCADGui/pl.md) , [Extra python modules/pl](Extra_python_modules/pl.md) , [FeaturePython Custom Properties/pl](FeaturePython_Custom_Properties/pl.md) , [FeaturePython methods/pl](FeaturePython_methods/pl.md) , [File Format FCStd/pl](File_Format_FCStd/pl.md) , [Fine-tuning/pl](Fine-tuning/pl.md) , [FreeCAD Build Tool/pl](FreeCAD_Build_Tool/pl.md) , [FreeCAD Scripting Basics/pl](FreeCAD_Scripting_Basics/pl.md) , [FreeCAD vector math library/pl](FreeCAD_vector_math_library/pl.md) , [Help FreeCAD/pl](Help_FreeCAD/pl.md) , [How to install macros/pl](How_to_install_macros/pl.md) , [Installing more workbenches/pl](Installing_more_workbenches/pl.md) , [Installing on Linux/pl](Installing_on_Linux/pl.md) , [Interface creation/pl](Interface_creation/pl.md) , [Introduction to Python/pl](Introduction_to_Python/pl.md) , [Key ASCII/pl](Key_ASCII/pl.md) , [Licence/pl](Licence/pl.md) , [Line drawing function/pl](Line_drawing_function/pl.md) , [Linux packaging/pl](Linux_packaging/pl.md) , [Localisation Sidebar/pl](Localisation_Sidebar/pl.md) , [Localisation/pl](Localisation/pl.md) , [Macro at Startup/pl](Macro_at_Startup/pl.md) , [Macros/pl](Macros/pl.md) , [Manual:A gentle introduction/pl](Manual:A_gentle_introduction/pl.md) , [Manual:Creating and manipulating geometry/pl](Manual:Creating_and_manipulating_geometry/pl.md) , [Manual:Creating interface tools/pl](Manual:Creating_interface_tools/pl.md) , [Manual:Creating parametric objects/pl](Manual:Creating_parametric_objects/pl.md) , [Material/pl](Material/pl.md) , [Mesh Scripting/pl](Mesh_Scripting/pl.md) , [Mesh to Part/pl](Mesh_to_Part/pl.md) , [OpenCASCADE/pl](OpenCASCADE/pl.md) , [Packaging/pl](Packaging/pl.md) , [Part scripting/pl](Part_scripting/pl.md) , [Path scripting/pl](Path_scripting/pl.md) , [Pivy/pl](Pivy/pl.md) , [Profiling/pl](Profiling/pl.md) , [Property/pl](Property/pl.md) , [PySide Advanced Examples/pl](PySide_Advanced_Examples/pl.md) , [PySide Beginner Examples/pl](PySide_Beginner_Examples/pl.md) , [PySide Intermediate Examples/pl](PySide_Intermediate_Examples/pl.md) , [PySide usage snippets/pl](PySide_usage_snippets/pl.md) , [PySide/pl](PySide/pl.md) , [Python scripting tutorial/pl](Python_scripting_tutorial/pl.md) , [Python/pl](Python/pl.md) , [PythonOCC/pl](PythonOCC/pl.md) , [Quantity/pl](Quantity/pl.md) , [Raytracing API example/pl](Raytracing_API_example/pl.md) , [Scenegraph/pl](Scenegraph/pl.md) , [Scripted objects migration/pl](Scripted_objects_migration/pl.md) , [Scripted objects saving attributes/pl](Scripted_objects_saving_attributes/pl.md) , [Scripted objects with attachment/pl](Scripted_objects_with_attachment/pl.md) , [Scripted objects/pl](Scripted_objects/pl.md) , [Scripted Parts: Ball Bearing - Part 1/pl](Scripted_Parts:_Ball_Bearing_-_Part_1/pl.md) , [Scripted Parts: Ball Bearing - Part 2/pl](Scripted_Parts:_Ball_Bearing_-_Part_2/pl.md) , [Scripting and macros/pl](Scripting_and_macros/pl.md) , [Scripts/pl](Scripts/pl.md) , [Source code management/pl](Source_code_management/pl.md) , [Source documentation/pl](Source_documentation/pl.md) , [Start up and Configuration/pl](Start_up_and_Configuration/pl.md) , [Testing/pl](Testing/pl.md) , [Third Party Libraries/pl](Third_Party_Libraries/pl.md) , [Third Party Tools/pl](Third_Party_Tools/pl.md) , [Topological data scripting/pl](Topological_data_scripting/pl.md) , [Tracker/pl](Tracker/pl.md) , [Translating an external workbench/pl](Translating_an_external_workbench/pl.md) , [Viewprovider/pl](Viewprovider/pl.md) , [Workbench creation/pl](Workbench_creation/pl.md) , , [Category:Documentation/pl](Category:Documentation/pl.md) [Category:Artwork/pl](Category:Artwork/pl.md) [Category:Document object/pl](Category:Document_object/pl.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/pl diff --git a/wiki/translations/pl/Category:Document_object.md b/wiki/translations/pl/Category:Document_object.md index 0cd648bdd0..42ed5b2c6c 100644 --- a/wiki/translations/pl/Category:Document_object.md +++ b/wiki/translations/pl/Category:Document_object.md @@ -6,3 +6,6 @@ This category lists pages related to objects derived from the base [App Document [App DocumentObject/pl](App_DocumentObject/pl.md) , [App DocumentObjectGroup/pl](App_DocumentObjectGroup/pl.md) , [App FeaturePython/pl](App_FeaturePython/pl.md) , [App GeoFeature/pl](App_GeoFeature/pl.md) , [App Link/pl](App_Link/pl.md) , [App Part/pl](App_Part/pl.md) , [Assembly/pl](Assembly/pl.md) , [Body/pl](Body/pl.md) , [Datum/pl](Datum/pl.md) , [Drawing/pl](Drawing/pl.md) , [Feature/pl](Feature/pl.md) , [Mesh Feature/pl](Mesh_Feature/pl.md) , [Mesh MeshObject/pl](Mesh_MeshObject/pl.md) , [Mesh/pl](Mesh/pl.md) , [Model/pl](Model/pl.md) , [Part Feature/pl](Part_Feature/pl.md) , [Part TopoShape/pl](Part_TopoShape/pl.md) , [Part/pl](Part/pl.md) , [PartDesign Feature/pl](PartDesign_Feature/pl.md) , [Shape/pl](Shape/pl.md) , [Sketch/pl](Sketch/pl.md) , [Sketcher SketchObject/pl](Sketcher_SketchObject/pl.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > Category:Document object/pl diff --git a/wiki/translations/pl/Category:Documentation.md b/wiki/translations/pl/Category:Documentation.md index 3a0f459d44..166955fcbf 100644 --- a/wiki/translations/pl/Category:Documentation.md +++ b/wiki/translations/pl/Category:Documentation.md @@ -6,3 +6,6 @@ Ta kategoria grupuje całą dokumentację FreeCAD. [3D input devices/pl](3D_input_devices/pl.md) , [Drawing templates/pl](Drawing_templates/pl.md) , [FreeCAD Community Portal/pl](FreeCAD_Community_Portal/pl.md) , [Frequently asked questions/pl](Frequently_asked_questions/pl.md) , [Help FreeCAD/pl](Help_FreeCAD/pl.md) , [Main Page/pl](Main_Page/pl.md) , [Online Help Toc/pl](Online_Help_Toc/pl.md) , [Part Measure Menu/pl](Part_Measure_Menu/pl.md) , [Release notes 0.11/pl](Release_notes_0.11/pl.md) , [Release notes 0.12/pl](Release_notes_0.12/pl.md) , [Release notes 0.13/pl](Release_notes_0.13/pl.md) , [Release notes 0.14/pl](Release_notes_0.14/pl.md) , [Release notes 0.15/pl](Release_notes_0.15/pl.md) , [Release notes 0.16/pl](Release_notes_0.16/pl.md) , [Release notes 0.17/pl](Release_notes_0.17/pl.md) , [Release notes 0.18/pl](Release_notes_0.18/pl.md) , [Release notes 0.19/pl](Release_notes_0.19/pl.md) , [Release notes 0.20/pl](Release_notes_0.20/pl.md) , [WikiPages/pl](WikiPages/pl.md) , , , , , [Category:Categories/pl](Category:Categories/pl.md) [Category:API Documentation/pl](Category:API_Documentation/pl.md) [Category:Developer Documentation/pl](Category:Developer_Documentation/pl.md) [Category:Poweruser Documentation/pl](Category:Poweruser_Documentation/pl.md) [Category:User Documentation/pl](Category:User_Documentation/pl.md) [Category:Wiki/pl](Category:Wiki/pl.md) + +--- +[documentation index](../README.md) > Category:Documentation/pl diff --git a/wiki/translations/pl/Category:Draft.md b/wiki/translations/pl/Category:Draft.md index 4c49811e5e..dae8fbcc17 100644 --- a/wiki/translations/pl/Category:Draft.md +++ b/wiki/translations/pl/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/pl\" and \"Workben [Arch panel tutorial/pl](Arch_panel_tutorial/pl.md) , [Artwork Draft/pl](Artwork_Draft/pl.md) , [Draft AddConstruction/pl](Draft_AddConstruction/pl.md) , [Draft AddToGroup/pl](Draft_AddToGroup/pl.md) , [Draft annotation scale widget/pl](Draft_annotation_scale_widget/pl.md) , [Draft AnnotationStyleEditor/pl](Draft_AnnotationStyleEditor/pl.md) , [Draft API/pl](Draft_API/pl.md) , [Draft ApplyStyle/pl](Draft_ApplyStyle/pl.md) , [Draft Arc 3Points/pl](Draft_Arc_3Points/pl.md) , [Draft Arc/pl](Draft_Arc/pl.md) , [Draft Array/pl](Draft_Array/pl.md) , [Draft AutoGroup/pl](Draft_AutoGroup/pl.md) , [Draft BezCurve/pl](Draft_BezCurve/pl.md) , [Draft BSpline/pl](Draft_BSpline/pl.md) , [Draft Circle/pl](Draft_Circle/pl.md) , [Draft CircularArray/pl](Draft_CircularArray/pl.md) , [Draft Clone/pl](Draft_Clone/pl.md) , [Draft Constrain/pl](Draft_Constrain/pl.md) , [Draft CubicBezCurve/pl](Draft_CubicBezCurve/pl.md) , [Draft DAT/pl](Draft_DAT/pl.md) , [Draft Dimension/pl](Draft_Dimension/pl.md) , [Draft Downgrade/pl](Draft_Downgrade/pl.md) , [Draft Draft2Sketch/pl](Draft_Draft2Sketch/pl.md) , [Draft Drawing/pl](Draft_Drawing/pl.md) , [Draft DXF/pl](Draft_DXF/pl.md) , [Draft Edit/pl](Draft_Edit/pl.md) , [Draft Ellipse/pl](Draft_Ellipse/pl.md) , [Draft Facebinder/pl](Draft_Facebinder/pl.md) , [Draft Fillet/pl](Draft_Fillet/pl.md) , [Draft FlipDimension/pl](Draft_FlipDimension/pl.md) , [Draft Heal/pl](Draft_Heal/pl.md) , [Draft Join/pl](Draft_Join/pl.md) , [Draft Label/pl](Draft_Label/pl.md) , [Draft Layer/pl](Draft_Layer/pl.md) , [Draft Line/pl](Draft_Line/pl.md) , [Draft Mirror/pl](Draft_Mirror/pl.md) , [Draft Move/pl](Draft_Move/pl.md) , [Draft OCA/pl](Draft_OCA/pl.md) , [Draft Offset/pl](Draft_Offset/pl.md) , [Draft OrthoArray/pl](Draft_OrthoArray/pl.md) , [Draft PathArray/pl](Draft_PathArray/pl.md) , [Draft Pattern/pl](Draft_Pattern/pl.md) , [Draft Point/pl](Draft_Point/pl.md) , [Draft PointArray/pl](Draft_PointArray/pl.md) , [Draft PolarArray/pl](Draft_PolarArray/pl.md) , [Draft Polygon/pl](Draft_Polygon/pl.md) , [Draft Preferences/pl](Draft_Preferences/pl.md) , [Draft Rectangle/pl](Draft_Rectangle/pl.md) , [Draft Rotate/pl](Draft_Rotate/pl.md) , [Draft Scale/pl](Draft_Scale/pl.md) , [Draft SelectGroup/pl](Draft_SelectGroup/pl.md) , [Draft SelectPlane/pl](Draft_SelectPlane/pl.md) , [Draft SetStyle/pl](Draft_SetStyle/pl.md) , [Draft Shape2DView/pl](Draft_Shape2DView/pl.md) , [Draft ShapeString/pl](Draft_ShapeString/pl.md) , [Draft ShowSnapBar/pl](Draft_ShowSnapBar/pl.md) , [Draft Slope/pl](Draft_Slope/pl.md) , [Draft Snap Angle/pl](Draft_Snap_Angle/pl.md) , [Draft Snap Center/pl](Draft_Snap_Center/pl.md) , [Draft Snap Dimensions/pl](Draft_Snap_Dimensions/pl.md) , [Draft Snap Endpoint/pl](Draft_Snap_Endpoint/pl.md) , [Draft Snap Extension/pl](Draft_Snap_Extension/pl.md) , [Draft Snap Grid/pl](Draft_Snap_Grid/pl.md) , [Draft Snap Intersection/pl](Draft_Snap_Intersection/pl.md) , [Draft Snap Lock/pl](Draft_Snap_Lock/pl.md) , [Draft Snap Midpoint/pl](Draft_Snap_Midpoint/pl.md) , [Draft Snap Near/pl](Draft_Snap_Near/pl.md) , [Draft Snap Ortho/pl](Draft_Snap_Ortho/pl.md) , [Draft Snap Parallel/pl](Draft_Snap_Parallel/pl.md) , [Draft Snap Perpendicular/pl](Draft_Snap_Perpendicular/pl.md) , [Draft Snap Special/pl](Draft_Snap_Special/pl.md) , [Draft snap widget/pl](Draft_snap_widget/pl.md) , [Draft Snap WorkingPlane/pl](Draft_Snap_WorkingPlane/pl.md) , [Draft Snap/pl](Draft_Snap/pl.md) , [Draft Split/pl](Draft_Split/pl.md) , [Draft Stretch/pl](Draft_Stretch/pl.md) , [Draft SubelementHighlight/pl](Draft_SubelementHighlight/pl.md) , [Draft SVG/pl](Draft_SVG/pl.md) , [Draft Text/pl](Draft_Text/pl.md) , [Draft ToggleConstructionMode/pl](Draft_ToggleConstructionMode/pl.md) , [Draft ToggleContinueMode/pl](Draft_ToggleContinueMode/pl.md) , [Draft ToggleDisplayMode/pl](Draft_ToggleDisplayMode/pl.md) , [Draft ToggleGrid/pl](Draft_ToggleGrid/pl.md) , [Template:Draft Tools navi/pl](Template:Draft_Tools_navi/pl.md) , [Draft Tray/pl](Draft_Tray/pl.md) , [Draft Trimex/pl](Draft_Trimex/pl.md) , [Draft tutorial/pl](Draft_tutorial/pl.md) , [Draft Upgrade/pl](Draft_Upgrade/pl.md) , [Draft Wire/pl](Draft_Wire/pl.md) , [Draft WireToBSpline/pl](Draft_WireToBSpline/pl.md) , [Draft Workbench/pl](Draft_Workbench/pl.md) , [Draft WorkingPlaneProxy/pl](Draft_WorkingPlaneProxy/pl.md) , [DXF/pl](DXF/pl.md) , [FreeCAD and DWG Import/pl](FreeCAD_and_DWG_Import/pl.md) , [Macro FCCircularText/pl](Macro_FCCircularText/pl.md) , [Manual:Traditional 2D drafting/pl](Manual:Traditional_2D_drafting/pl.md) , [SVG/pl](SVG/pl.md) , [Tutorial custom placing of windows and doors/pl](Tutorial_custom_placing_of_windows_and_doors/pl.md) , [Tutorial for open windows/pl](Tutorial_for_open_windows/pl.md) [Category:User Documentation/pl](Category:User_Documentation/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Draft/pl diff --git a/wiki/translations/pl/Category:Drawing.md b/wiki/translations/pl/Category:Drawing.md index ba2235c5c4..9aa65004e9 100644 --- a/wiki/translations/pl/Category:Drawing.md +++ b/wiki/translations/pl/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/pl](Drawing_Workbenc [Drawing Annotation/pl](Drawing_Annotation/pl.md) , [Drawing API example/pl](Drawing_API_example/pl.md) , [Drawing Clip/pl](Drawing_Clip/pl.md) , [Drawing Dimensioning Addon/pl](Drawing_Dimensioning_Addon/pl.md) , [Drawing Landscape A3/pl](Drawing_Landscape_A3/pl.md) , [Drawing Open SVG/pl](Drawing_Open_SVG/pl.md) , [Drawing Openbrowser/pl](Drawing_Openbrowser/pl.md) , [Drawing Orthoviews/pl](Drawing_Orthoviews/pl.md) , [Drawing Save/pl](Drawing_Save/pl.md) , [Drawing Symbol/pl](Drawing_Symbol/pl.md) , [Drawing Template HowTo/pl](Drawing_Template_HowTo/pl.md) , [Drawing templates/pl](Drawing_templates/pl.md) , [Template:Drawing Tools navi/pl](Template:Drawing_Tools_navi/pl.md) , [Drawing tutorial/pl](Drawing_tutorial/pl.md) , [Drawing View/pl](Drawing_View/pl.md) , [Drawing Workbench/pl](Drawing_Workbench/pl.md) , [Svg Namespace/pl](Svg_Namespace/pl.md) [Category:Obsolete Workbenches/pl](Category:Obsolete_Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Drawing/pl diff --git a/wiki/translations/pl/Category:External_Command_Reference.md b/wiki/translations/pl/Category:External_Command_Reference.md index 58db684189..faaebfd5ea 100644 --- a/wiki/translations/pl/Category:External_Command_Reference.md +++ b/wiki/translations/pl/Category:External_Command_Reference.md @@ -4,3 +4,6 @@ Ta kategoria umieszcza wszystkie **zewnętrzne** polecenia środowiska oddzielon ### Contents: [Arch Rebar Drawing Dimensioning/pl](Arch_Rebar_Drawing_Dimensioning/pl.md) , [Arch Rebar/pl](Arch_Rebar/pl.md) , [BIM Views/pl](BIM_Views/pl.md) , [BIM Windows/pl](BIM_Windows/pl.md) , [Fasteners BOM/pl](Fasteners_BOM/pl.md) , [Fasteners Workbench/pl](Fasteners_Workbench/pl.md) , [SheetMetal UnattendedUnfold/pl](SheetMetal_UnattendedUnfold/pl.md) , [SheetMetal Workbench/pl](SheetMetal_Workbench/pl.md) + +--- +[documentation index](../README.md) > Category:External Command Reference/pl diff --git a/wiki/translations/pl/Category:External_Workbenches.md b/wiki/translations/pl/Category:External_Workbenches.md index 4816dab3fa..8c6a200288 100644 --- a/wiki/translations/pl/Category:External_Workbenches.md +++ b/wiki/translations/pl/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [External workbenches/pl](External_workbenches/pl.md) , [Stemfie Workbench/pl](Stemfie_Workbench/pl.md) , [A2plus Workbench/pl](A2plus_Workbench/pl.md) , [Animation Workbench/pl](Animation_Workbench/pl.md) , [Assembly2 Workbench/pl](Assembly2_Workbench/pl.md) , [Assembly3 Workbench/pl](Assembly3_Workbench/pl.md) , [Assembly4 Workbench/pl](Assembly4_Workbench/pl.md) , [BIM Workbench/pl](BIM_Workbench/pl.md) , [BOLTSFC Workbench/pl](BOLTSFC_Workbench/pl.md) , [CadQuery Workbench/pl](CadQuery_Workbench/pl.md) , [Cfd Workbench/pl](Cfd_Workbench/pl.md) , [CurvedShapes Workbench/pl](CurvedShapes_Workbench/pl.md) , [DynamicData Workbench/pl](DynamicData_Workbench/pl.md) , [ExplodedAssembly Workbench/pl](ExplodedAssembly_Workbench/pl.md) , [Fasteners Workbench/pl](Fasteners_Workbench/pl.md) , [FCGear Workbench/pl](FCGear_Workbench/pl.md) , [Flamingo Workbench/pl](Flamingo_Workbench/pl.md) , [How to install additional workbenches/pl](How_to_install_additional_workbenches/pl.md) , [KicadStepUp Workbench/pl](KicadStepUp_Workbench/pl.md) , [Lattice2 Workbench/pl](Lattice2_Workbench/pl.md) , [Macro Kerkythea/pl](Macro_Kerkythea/pl.md) , [Manipulator Workbench/pl](Manipulator_Workbench/pl.md) , [ModernUI Workbench/pl](ModernUI_Workbench/pl.md) , [MOOC Workbench/pl](MOOC_Workbench/pl.md) , [OSE 3D Printer Workbench/pl](OSE_3D_Printer_Workbench/pl.md) , [OSE Piping Workbench/pl](OSE_Piping_Workbench/pl.md) , [Parts Library Workbench/pl](Parts_Library_Workbench/pl.md) , [PCB Workbench/pl](PCB_Workbench/pl.md) , [Plot Axes/pl](Plot_Axes/pl.md) , [Plot Basic tutorial/pl](Plot_Basic_tutorial/pl.md) , [Plot Grid/pl](Plot_Grid/pl.md) , [Plot Labels/pl](Plot_Labels/pl.md) , [Plot Legend/pl](Plot_Legend/pl.md) , [Plot Module/pl](Plot_Module/pl.md) , [Plot MultiAxes tutorial/pl](Plot_MultiAxes_tutorial/pl.md) , [Plot Positions/pl](Plot_Positions/pl.md) , [Plot Save/pl](Plot_Save/pl.md) , [Plot Series/pl](Plot_Series/pl.md) , [Pyramids and polyhedrons Workbench/pl](Pyramids_and_polyhedrons_Workbench/pl.md) , [Pyrate Workbench/pl](Pyrate_Workbench/pl.md) , [Reinforcement Workbench/pl](Reinforcement_Workbench/pl.md) , [Render project/pl](Render_project/pl.md) , [Rocket Workbench/pl](Rocket_Workbench/pl.md) , [Ship Workbench/pl](Ship_Workbench/pl.md) , [Silk Workbench/pl](Silk_Workbench/pl.md) , [Symbols Library Workbench/pl](Symbols_Library_Workbench/pl.md) , [Timber Workbench/pl](Timber_Workbench/pl.md) , [WebTools Workbench/pl](WebTools_Workbench/pl.md) , [Workfeature Workbench/pl](Workfeature_Workbench/pl.md) , [Category:Workbenches/pl](Category:Workbenches/pl.md) [Category:Addons/pl](Category:Addons/pl.md) [Category:Fasteners/pl](Category:Fasteners/pl.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/pl diff --git a/wiki/translations/pl/Category:FEM.md b/wiki/translations/pl/Category:FEM.md index f864674735..62b1e196b2 100644 --- a/wiki/translations/pl/Category:FEM.md +++ b/wiki/translations/pl/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/pl](FEM_Workbench/pl.md) [Add FEM constraint tutorial/pl](Add_FEM_constraint_tutorial/pl.md) , [Add FEM equation tutorial/pl](Add_FEM_equation_tutorial/pl.md) , [Artwork Fem/pl](Artwork_Fem/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:FEM/pl diff --git a/wiki/translations/pl/Category:Fasteners.md b/wiki/translations/pl/Category:Fasteners.md index e6fb1a7b54..3970f20098 100644 --- a/wiki/translations/pl/Category:Fasteners.md +++ b/wiki/translations/pl/Category:Fasteners.md @@ -6,3 +6,6 @@ Ta strona gromadzi strony dokumentacji dla środowiska pracy [Elementy złączne [Fasteners Workbench/pl](Fasteners_Workbench/pl.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Category:Fasteners/pl diff --git a/wiki/translations/pl/Category:File_Formats.md b/wiki/translations/pl/Category:File_Formats.md index 02169427e4..24b07474b7 100644 --- a/wiki/translations/pl/Category:File_Formats.md +++ b/wiki/translations/pl/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [Arch 3DS/pl](Arch_3DS/pl.md) , [Arch DAE/pl](Arch_DAE/pl.md) , [Arch IFC/pl](Arch_IFC/pl.md) , [Arch JSON/pl](Arch_JSON/pl.md) , [Arch OBJ/pl](Arch_OBJ/pl.md) , [Arch SHP/pl](Arch_SHP/pl.md) , [Asymptote/pl](Asymptote/pl.md) , [Draft DAT/pl](Draft_DAT/pl.md) , [Draft DXF/pl](Draft_DXF/pl.md) , [Draft OCA/pl](Draft_OCA/pl.md) , [Draft SVG/pl](Draft_SVG/pl.md) , [DXF/pl](DXF/pl.md) , [Export to STL or OBJ/pl](Export_to_STL_or_OBJ/pl.md) , [File Format FCStd/pl](File_Format_FCStd/pl.md) , [FreeCAD and DWG Import/pl](FreeCAD_and_DWG_Import/pl.md) , [FreeCAD and DXF Import/pl](FreeCAD_and_DXF_Import/pl.md) , [Import Export Preferences/pl](Import_Export_Preferences/pl.md) , [Import Export/pl](Import_Export/pl.md) , [Import from STL or OBJ/pl](Import_from_STL_or_OBJ/pl.md) , [Material/pl](Material/pl.md) , [OpenSCAD CSG/pl](OpenSCAD_CSG/pl.md) , [PDF/pl](PDF/pl.md) , [Spreadsheet CSV/pl](Spreadsheet_CSV/pl.md) , [Std Export/pl](Std_Export/pl.md) , [Std Import/pl](Std_Import/pl.md) , [SVG/pl](SVG/pl.md) + +--- +[documentation index](../README.md) > Category:File Formats/pl diff --git a/wiki/translations/pl/Category:Glossary.md b/wiki/translations/pl/Category:Glossary.md index b92059b442..19d9e710be 100644 --- a/wiki/translations/pl/Category:Glossary.md +++ b/wiki/translations/pl/Category:Glossary.md @@ -4,3 +4,6 @@ This category tracks pages that explain definitions of words related to FreeCAD ### Contents: [Assembly/pl](Assembly/pl.md) , [Body/pl](Body/pl.md) , [Command/pl](Command/pl.md) , [Datum/pl](Datum/pl.md) , [Drawing/pl](Drawing/pl.md) , [Feature/pl](Feature/pl.md) , [Glossary/pl](Glossary/pl.md) , [Manipulator/pl](Manipulator/pl.md) , [Mesh Feature/pl](Mesh_Feature/pl.md) , [Mesh/pl](Mesh/pl.md) , [Model/pl](Model/pl.md) , [Part/pl](Part/pl.md) , [Python/pl](Python/pl.md) , [Shape/pl](Shape/pl.md) , [Sketch/pl](Sketch/pl.md) + +--- +[documentation index](../README.md) > Category:Glossary/pl diff --git a/wiki/translations/pl/Category:Help.md b/wiki/translations/pl/Category:Help.md index bab9a397eb..cb0e263891 100644 --- a/wiki/translations/pl/Category:Help.md +++ b/wiki/translations/pl/Category:Help.md @@ -6,3 +6,6 @@ This category lists pages that contain helpfull information on MediaWiki and edi [Help/pl](Help/pl.md) , [Key ASCII/pl](Key_ASCII/pl.md) [Category:Categories/pl](Category:Categories/pl.md) + +--- +[documentation index](../README.md) > Category:Help/pl diff --git a/wiki/translations/pl/Category:Hubs.md b/wiki/translations/pl/Category:Hubs.md index 7e7d733e9c..9331e1aeda 100644 --- a/wiki/translations/pl/Category:Hubs.md +++ b/wiki/translations/pl/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Developer hub/pl](Developer_hub/pl.md) , [Power users hub/pl](Power_users_hub/pl.md) , [Scientific literature/pl](Scientific_literature/pl.md) , [User hub/pl](User_hub/pl.md) [Category:Categories/pl](Category:Categories/pl.md) + +--- +[documentation index](../README.md) > Category:Hubs/pl diff --git a/wiki/translations/pl/Category:Icon.md b/wiki/translations/pl/Category:Icon.md index 647c9d1599..be1428a518 100644 --- a/wiki/translations/pl/Category:Icon.md +++ b/wiki/translations/pl/Category:Icon.md @@ -6,3 +6,6 @@ This category contains icon images, and buttons, which can be placed in document [Artwork Erroneous/pl](Artwork_Erroneous/pl.md) , [Artwork/pl](Artwork/pl.md) , [Key ASCII/pl](Key_ASCII/pl.md) [Category:Artwork/pl](Category:Artwork/pl.md) + +--- +[documentation index](../README.md) > Category:Icon/pl diff --git a/wiki/translations/pl/Category:Image.md b/wiki/translations/pl/Category:Image.md index fc8c58493d..a0e0b2feb1 100644 --- a/wiki/translations/pl/Category:Image.md +++ b/wiki/translations/pl/Category:Image.md @@ -6,3 +6,6 @@ This category lists pages related to the [Image Workbench/pl](Image_Workbench/pl [Artwork Image/pl](Artwork_Image/pl.md) , [Bitmap/pl](Bitmap/pl.md) , [Image CreateImagePlane/pl](Image_CreateImagePlane/pl.md) , [Image Open/pl](Image_Open/pl.md) , [Image Scaling/pl](Image_Scaling/pl.md) , [Image Workbench/pl](Image_Workbench/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Image/pl diff --git a/wiki/translations/pl/Category:Inspection.md b/wiki/translations/pl/Category:Inspection.md index 95aee348e1..7446003e45 100644 --- a/wiki/translations/pl/Category:Inspection.md +++ b/wiki/translations/pl/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Artwork Inspection/pl](Artwork_Inspection/pl.md) , [Inspection Workbench/pl](Inspection_Workbench/pl.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection/pl diff --git a/wiki/translations/pl/Category:Interface.md b/wiki/translations/pl/Category:Interface.md index 991a1c3fe0..054312b619 100644 --- a/wiki/translations/pl/Category:Interface.md +++ b/wiki/translations/pl/Category:Interface.md @@ -4,3 +4,6 @@ This category lists pages that describe the FreeCAD interface. ### Contents: [3D view/pl](3D_view/pl.md) , [Combo view/pl](Combo_view/pl.md) , [DAG view/pl](DAG_view/pl.md) , [Interface Customization/pl](Interface_Customization/pl.md) , [Template:Interface navi/pl](Template:Interface_navi/pl.md) , [Interface/pl](Interface/pl.md) , [Main view area/pl](Main_view_area/pl.md) , [Property editor/pl](Property_editor/pl.md) , [Python console/pl](Python_console/pl.md) , [Report view/pl](Report_view/pl.md) , [Selection view/pl](Selection_view/pl.md) , [Standard Menu/pl](Standard_Menu/pl.md) , [Status bar/pl](Status_bar/pl.md) , [Std Workbench/pl](Std_Workbench/pl.md) , [Task panel/pl](Task_panel/pl.md) , [Tree view/pl](Tree_view/pl.md) + +--- +[documentation index](../README.md) > Category:Interface/pl diff --git a/wiki/translations/pl/Category:Macros.md b/wiki/translations/pl/Category:Macros.md index 8babf768c6..af89594c8e 100644 --- a/wiki/translations/pl/Category:Macros.md +++ b/wiki/translations/pl/Category:Macros.md @@ -6,3 +6,6 @@ This category contains macros to extend your FreeCAD installation with new funct [Macro AeroFoil/pl](Macro_AeroFoil/pl.md) , [Macro Alias Manager/pl](Macro_Alias_Manager/pl.md) , [Macro Align Camera to Working Plane/pl](Macro_Align_Camera_to_Working_Plane/pl.md) , [Macro Align Face Object to View/pl](Macro_Align_Face_Object_to_View/pl.md) , [Macro Align Working Plane to Camera/pl](Macro_Align_Working_Plane_to_Camera/pl.md) , [Macro ArrayCopy/pl](Macro_ArrayCopy/pl.md) , [Macro at Startup/pl](Macro_at_Startup/pl.md) , [Macro Automatic drawing/pl](Macro_Automatic_drawing/pl.md) , [Macro CartoucheFC 2/pl](Macro_CartoucheFC_2/pl.md) , [Macro CartoucheFC Full/pl](Macro_CartoucheFC_Full/pl.md) , [Macro CartoucheFC/pl](Macro_CartoucheFC/pl.md) , [Macro Corner shapes wizard/update/pl](Macro_Corner_shapes_wizard/update/pl.md) , [Macro Draw 2D Function/pl](Macro_Draw_2D_Function/pl.md) , [Macro export transient FEM results/pl](Macro_export_transient_FEM_results/pl.md) , [Macro FaceToSketch/pl](Macro_FaceToSketch/pl.md) , [Macro FCCircularText/pl](Macro_FCCircularText/pl.md) , [Macro FCSpreadSheet Extract/pl](Macro_FCSpreadSheet_Extract/pl.md) , [Macro FCSpring Helix Variable/pl](Macro_FCSpring_Helix_Variable/pl.md) , [Macro FCTreeView/pl](Macro_FCTreeView/pl.md) , [Macro findConfigFiles/pl](Macro_findConfigFiles/pl.md) , [Macro FlattenWire/pl](Macro_FlattenWire/pl.md) , [Macro FlattenWire3Points/pl](Macro_FlattenWire3Points/pl.md) , [Macro FreeCAD to Kerkythea/pl](Macro_FreeCAD_to_Kerkythea/pl.md) , [Macro GMSH/pl](Macro_GMSH/pl.md) , [Macro Half-Hull Model/pl](Macro_Half-Hull_Model/pl.md) , [Macro HealArcs/pl](Macro_HealArcs/pl.md) , [Macro HighlightDifference/pl](Macro_HighlightDifference/pl.md) , [Macro ImperialScales/pl](Macro_ImperialScales/pl.md) , [Macro JointWire/pl](Macro_JointWire/pl.md) , [Macro Kerkythea/pl](Macro_Kerkythea/pl.md) , [Macro MacroMenu/pl](Macro_MacroMenu/pl.md) , [Macro MultiCopy/pl](Macro_MultiCopy/pl.md) , [Macro Normal Vector/pl](Macro_Normal_Vector/pl.md) , [Macro Parametric Curve FP/pl](Macro_Parametric_Curve_FP/pl.md) , [Macro Repro Wire/pl](Macro_Repro_Wire/pl.md) , [Macro screw maker1 2/pl](Macro_screw_maker1_2/pl.md) , [Macro SpreadsheetTools/pl](Macro_SpreadsheetTools/pl.md) , [Macro WorkFeatures/pl](Macro_WorkFeatures/pl.md) , [Template:Macro/pl](Template:Macro/pl.md) , [Macros recipes/pl](Macros_recipes/pl.md) , [Macros/pl](Macros/pl.md) , [Misc templates Full/pl](Misc_templates_Full/pl.md) , [Qt Example/pl](Qt_Example/pl.md) , [Svg Namespace/pl](Svg_Namespace/pl.md) [Category:Categories/pl](Category:Categories/pl.md) + +--- +[documentation index](../README.md) > Category:Macros/pl diff --git a/wiki/translations/pl/Category:Manual.md b/wiki/translations/pl/Category:Manual.md index ac69a240f2..8ab1a2b26a 100644 --- a/wiki/translations/pl/Category:Manual.md +++ b/wiki/translations/pl/Category:Manual.md @@ -4,3 +4,6 @@ This category contains all the page of the FreeCAD manual ### Contents: [Manual:A gentle introduction/pl](Manual:A_gentle_introduction/pl.md) , [Manual:All workbenches at a glance/pl](Manual:All_workbenches_at_a_glance/pl.md) , [Manual:BIM modeling/pl](Manual:BIM_modeling/pl.md) , [Manual:Creating and manipulating geometry/pl](Manual:Creating_and_manipulating_geometry/pl.md) , [Manual:Creating FEM analyses/pl](Manual:Creating_FEM_analyses/pl.md) , [Manual:Creating interface tools/pl](Manual:Creating_interface_tools/pl.md) , [Manual:Creating parametric objects/pl](Manual:Creating_parametric_objects/pl.md) , [Manual:Creating renderings/pl](Manual:Creating_renderings/pl.md) , [Manual:Generating 2D drawings/pl](Manual:Generating_2D_drawings/pl.md) , [Manual:Import and export to other filetypes/pl](Manual:Import_and_export_to_other_filetypes/pl.md) , [Manual:Installing/pl](Manual:Installing/pl.md) , [Manual:Introduction/pl](Manual:Introduction/pl.md) , [Manual:Modeling for product design/pl](Manual:Modeling_for_product_design/pl.md) , [Manual:Navigating in the 3D view/pl](Manual:Navigating_in_the_3D_view/pl.md) , [Manual:Parametric objects/pl](Manual:Parametric_objects/pl.md) , [Manual:Preparing models for 3D printing/pl](Manual:Preparing_models_for_3D_printing/pl.md) , [Manual:Summary/pl](Manual:Summary/pl.md) , [Manual:The Community/pl](Manual:The_Community/pl.md) , [Manual:The FreeCAD document/pl](Manual:The_FreeCAD_document/pl.md) , [Manual:The FreeCAD Interface/pl](Manual:The_FreeCAD_Interface/pl.md) , [Template:Manual:TOC/pl](Template:Manual:TOC/pl.md) , [Manual:Traditional 2D drafting/pl](Manual:Traditional_2D_drafting/pl.md) , [Manual:Traditional modeling, the CSG way/pl](Manual:Traditional_modeling,_the_CSG_way/pl.md) , [Manual:Using spreadsheets/pl](Manual:Using_spreadsheets/pl.md) , [Manual:What is FreeCAD/pl](Manual:What_is_FreeCAD/pl.md) + +--- +[documentation index](../README.md) > Category:Manual/pl diff --git a/wiki/translations/pl/Category:Mesh.md b/wiki/translations/pl/Category:Mesh.md index 58220f7ed1..e5db492e74 100644 --- a/wiki/translations/pl/Category:Mesh.md +++ b/wiki/translations/pl/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/pl](Mesh_Workbench/pl. [Artwork Mesh/pl](Artwork_Mesh/pl.md) , [Manual:Preparing models for 3D printing/pl](Manual:Preparing_models_for_3D_printing/pl.md) , [Template:Mesh Tools navi/pl](Template:Mesh_Tools_navi/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Mesh/pl diff --git a/wiki/translations/pl/Category:News.md b/wiki/translations/pl/Category:News.md index 6f0485bc54..67927e4f87 100644 --- a/wiki/translations/pl/Category:News.md +++ b/wiki/translations/pl/Category:News.md @@ -6,3 +6,6 @@ This category contains articles with news and messages about FreeCAD. [History/pl](History/pl.md) , [Release notes 0.11/pl](Release_notes_0.11/pl.md) , [Release notes 0.12/pl](Release_notes_0.12/pl.md) , [Release notes 0.13/pl](Release_notes_0.13/pl.md) , [Release notes 0.14/pl](Release_notes_0.14/pl.md) , [Release notes 0.15/pl](Release_notes_0.15/pl.md) , [Release notes 0.16/pl](Release_notes_0.16/pl.md) , [Release notes 0.17/pl](Release_notes_0.17/pl.md) , [Release notes 0.18/pl](Release_notes_0.18/pl.md) , [Release notes 0.19/pl](Release_notes_0.19/pl.md) , [Release notes 0.20/pl](Release_notes_0.20/pl.md) [Category:Categories/pl](Category:Categories/pl.md) + +--- +[documentation index](../README.md) > Category:News/pl diff --git a/wiki/translations/pl/Category:Obsolete_Workbenches.md b/wiki/translations/pl/Category:Obsolete_Workbenches.md index 8d2578c3b9..4cedf6b9f4 100644 --- a/wiki/translations/pl/Category:Obsolete_Workbenches.md +++ b/wiki/translations/pl/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/pl](Drawing_Workbenc [Complete Workbench/pl](Complete_Workbench/pl.md) , [Drawing Workbench/pl](Drawing_Workbench/pl.md) , , [Category:Obsolete Workbenches/pl](Category:Obsolete_Workbenches/pl.md) [Category:Drawing/pl](Category:Drawing/pl.md) [Category:Obsolete Workbenches/pl](Category:Obsolete_Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/pl diff --git a/wiki/translations/pl/Category:Obsolete_page.md b/wiki/translations/pl/Category:Obsolete_page.md index 541e6d9aba..2578d70d25 100644 --- a/wiki/translations/pl/Category:Obsolete_page.md +++ b/wiki/translations/pl/Category:Obsolete_page.md @@ -1,6 +1,7 @@ # Category:Obsolete page/pl - - Ta kategoria zawiera listę stron, które są nieaktualne w odniesieniu do obecnej wersji FreeCAD. Po przeprowadzeniu dyskusji na forum FreeCAD są one kandydatami do usunięcia \... ### Contents: + +--- +[documentation index](../README.md) > Category:Obsolete page/pl diff --git a/wiki/translations/pl/Category:OpenSCAD.md b/wiki/translations/pl/Category:OpenSCAD.md index 945ca8475d..010b1971ed 100644 --- a/wiki/translations/pl/Category:OpenSCAD.md +++ b/wiki/translations/pl/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/pl](OpenSCAD_Workb [Artwork OpenSCAD/pl](Artwork_OpenSCAD/pl.md) , [Import OpenSCAD code/pl](Import_OpenSCAD_code/pl.md) , [OpenSCAD AddOpenSCADElement/pl](OpenSCAD_AddOpenSCADElement/pl.md) , [OpenSCAD ColorCodeShape/pl](OpenSCAD_ColorCodeShape/pl.md) , [OpenSCAD CSG/pl](OpenSCAD_CSG/pl.md) , [OpenSCAD Edgestofaces/pl](OpenSCAD_Edgestofaces/pl.md) , [OpenSCAD ExpandPlacements/pl](OpenSCAD_ExpandPlacements/pl.md) , [OpenSCAD ExplodeGroup/pl](OpenSCAD_ExplodeGroup/pl.md) , [OpenSCAD Hull/pl](OpenSCAD_Hull/pl.md) , [OpenSCAD IncreaseToleranceFeature/pl](OpenSCAD_IncreaseToleranceFeature/pl.md) , [OpenSCAD MeshBoolean/pl](OpenSCAD_MeshBoolean/pl.md) , [OpenSCAD Minkowski/pl](OpenSCAD_Minkowski/pl.md) , [OpenSCAD Preferences/pl](OpenSCAD_Preferences/pl.md) , [OpenSCAD RefineShapeFeature/pl](OpenSCAD_RefineShapeFeature/pl.md) , [OpenSCAD RemoveSubtree/pl](OpenSCAD_RemoveSubtree/pl.md) , [OpenSCAD ReplaceObject/pl](OpenSCAD_ReplaceObject/pl.md) , [Template:OpenSCAD Tools navi/pl](Template:OpenSCAD_Tools_navi/pl.md) , [OpenSCAD Workbench/pl](OpenSCAD_Workbench/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/pl diff --git a/wiki/translations/pl/Category:Packaging.md b/wiki/translations/pl/Category:Packaging.md index f8f893f65a..ed0dc8a1c4 100644 --- a/wiki/translations/pl/Category:Packaging.md +++ b/wiki/translations/pl/Category:Packaging.md @@ -6,3 +6,6 @@ Ta kategoria gromadzi strony związane z pakietowaniem FreeCAD na różne platfo [AppImage/pl](AppImage/pl.md) , [Debian development/pl](Debian_development/pl.md) , [Debian Unstable/pl](Debian_Unstable/pl.md) , [Linux packaging/pl](Linux_packaging/pl.md) , [Packaging/pl](Packaging/pl.md) [Category:Developer\_Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > Category:Packaging/pl diff --git a/wiki/translations/pl/Category:Part.md b/wiki/translations/pl/Category:Part.md index 39ab36233c..7668940887 100644 --- a/wiki/translations/pl/Category:Part.md +++ b/wiki/translations/pl/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/pl](Part_Workbench/pl.m [Aeroplane/pl](Aeroplane/pl.md) , [Artwork Part/pl](Artwork_Part/pl.md) , [Basic modeling tutorial/pl](Basic_modeling_tutorial/pl.md) , [Constructive solid geometry/pl](Constructive_solid_geometry/pl.md) , [Draft ShapeString tutorial/pl](Draft_ShapeString_tutorial/pl.md) , [Feature/pl](Feature/pl.md) , [Part and PartDesign/pl](Part_and_PartDesign/pl.md) , [Part Boolean/pl](Part_Boolean/pl.md) , [Part BooleanFragments/pl](Part_BooleanFragments/pl.md) , [Part Box/pl](Part_Box/pl.md) , [Part Builder/pl](Part_Builder/pl.md) , [Part Chamfer/pl](Part_Chamfer/pl.md) , [Part CheckGeometry/pl](Part_CheckGeometry/pl.md) , [Part Circle/pl](Part_Circle/pl.md) , [Part Common/pl](Part_Common/pl.md) , [Part CompCompoundTools/pl](Part_CompCompoundTools/pl.md) , [Part CompJoinFeatures/pl](Part_CompJoinFeatures/pl.md) , [Part CompOffsetTools/pl](Part_CompOffsetTools/pl.md) , [Part Compound/pl](Part_Compound/pl.md) , [Part CompoundFilter/pl](Part_CompoundFilter/pl.md) , [Part Cone/pl](Part_Cone/pl.md) , [Part CrossSections/pl](Part_CrossSections/pl.md) , [Part Cut/pl](Part_Cut/pl.md) , [Part Cylinder/pl](Part_Cylinder/pl.md) , [Part Defeaturing/pl](Part_Defeaturing/pl.md) , [Part EditAttachment/pl](Part_EditAttachment/pl.md) , [Part ElementCopy/pl](Part_ElementCopy/pl.md) , [Part Ellipse/pl](Part_Ellipse/pl.md) , [Part Ellipsoid/pl](Part_Ellipsoid/pl.md) , [Part ExplodeCompound/pl](Part_ExplodeCompound/pl.md) , [Part Export/pl](Part_Export/pl.md) , [Part Extrude/pl](Part_Extrude/pl.md) , [Part Feature/pl](Part_Feature/pl.md) , [Part Fillet/pl](Part_Fillet/pl.md) , [Part Fuse/pl](Part_Fuse/pl.md) , [Part Helix/pl](Part_Helix/pl.md) , [Part Import/pl](Part_Import/pl.md) , [Part JoinConnect/pl](Part_JoinConnect/pl.md) , [Part JoinCutout/pl](Part_JoinCutout/pl.md) , [Part JoinEmbed/pl](Part_JoinEmbed/pl.md) , [Part Line/pl](Part_Line/pl.md) , [Part Loft/pl](Part_Loft/pl.md) , [Part MakeFace/pl](Part_MakeFace/pl.md) , [Part MakeSolid/pl](Part_MakeSolid/pl.md) , [Part Measure Menu/pl](Part_Measure_Menu/pl.md) , [Part Mirror/pl](Part_Mirror/pl.md) , [Part Module/pl](Part_Module/pl.md) , [Part Offset/pl](Part_Offset/pl.md) , [Part Offset2D/pl](Part_Offset2D/pl.md) , [Part Part2DObject/pl](Part_Part2DObject/pl.md) , [Part Plane/pl](Part_Plane/pl.md) , [Part Point/pl](Part_Point/pl.md) , [Part Primitives/pl](Part_Primitives/pl.md) , [Part Prism/pl](Part_Prism/pl.md) , [Part ProjectionOnSurface/pl](Part_ProjectionOnSurface/pl.md) , [Part RefineShape/pl](Part_RefineShape/pl.md) , [Part RegularPolygon/pl](Part_RegularPolygon/pl.md) , [Part ReverseShapes/pl](Part_ReverseShapes/pl.md) , [Part Revolve/pl](Part_Revolve/pl.md) , [Part RuledSurface/pl](Part_RuledSurface/pl.md) , [Part scripting/pl](Part_scripting/pl.md) , [Part Section/pl](Part_Section/pl.md) , [Part ShapeFromMesh/pl](Part_ShapeFromMesh/pl.md) , [Part SimpleCopy/pl](Part_SimpleCopy/pl.md) , [Part Slice/pl](Part_Slice/pl.md) , [Part SliceApart/pl](Part_SliceApart/pl.md) , [Part Sphere/pl](Part_Sphere/pl.md) , [Part Spiral/pl](Part_Spiral/pl.md) , [Part Sweep/pl](Part_Sweep/pl.md) , [Part Thickness/pl](Part_Thickness/pl.md) , [Template:Part Tools navi/pl](Template:Part_Tools_navi/pl.md) , [Part TopoShape/pl](Part_TopoShape/pl.md) , [Part Torus/pl](Part_Torus/pl.md) , [Part TransformedCopy/pl](Part_TransformedCopy/pl.md) , [Part Tube/pl](Part_Tube/pl.md) , [Part Wedge/pl](Part_Wedge/pl.md) , [Part XOR/pl](Part_XOR/pl.md) , [Shape/pl](Shape/pl.md) , [Thread for Screw Tutorial/pl](Thread_for_Screw_Tutorial/pl.md) , [Topological naming problem/pl](Topological_naming_problem/pl.md) , [Whiffle Ball tutorial/pl](Whiffle_Ball_tutorial/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Part/pl diff --git a/wiki/translations/pl/Category:PartDesign.md b/wiki/translations/pl/Category:PartDesign.md index eb271a9edd..5335394a84 100644 --- a/wiki/translations/pl/Category:PartDesign.md +++ b/wiki/translations/pl/Category:PartDesign.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to PartDesign ### Contents: [Artwork PartDesign/pl](Artwork_PartDesign/pl.md) , [Basic Attachment Tutorial/pl](Basic_Attachment_Tutorial/pl.md) , [Basic Part Design Tutorial/pl](Basic_Part_Design_Tutorial/pl.md) , [Body/pl](Body/pl.md) , [Creating a simple part with PartDesign/pl](Creating_a_simple_part_with_PartDesign/pl.md) , [Datum/pl](Datum/pl.md) , [Draft ShapeString tutorial/pl](Draft_ShapeString_tutorial/pl.md) , [Feature editing/pl](Feature_editing/pl.md) , [Feature/pl](Feature/pl.md) , [Part and PartDesign/pl](Part_and_PartDesign/pl.md) , [PartDesign AdditiveBox/pl](PartDesign_AdditiveBox/pl.md) , [PartDesign AdditiveCone/pl](PartDesign_AdditiveCone/pl.md) , [PartDesign AdditiveCylinder/pl](PartDesign_AdditiveCylinder/pl.md) , [PartDesign AdditiveEllipsoid/pl](PartDesign_AdditiveEllipsoid/pl.md) , [PartDesign AdditiveHelix/pl](PartDesign_AdditiveHelix/pl.md) , [PartDesign AdditiveLoft/pl](PartDesign_AdditiveLoft/pl.md) , [PartDesign AdditivePipe/pl](PartDesign_AdditivePipe/pl.md) , [PartDesign AdditivePrism/pl](PartDesign_AdditivePrism/pl.md) , [PartDesign AdditiveSphere/pl](PartDesign_AdditiveSphere/pl.md) , [PartDesign AdditiveTorus/pl](PartDesign_AdditiveTorus/pl.md) , [PartDesign AdditiveWedge/pl](PartDesign_AdditiveWedge/pl.md) , [PartDesign Body/pl](PartDesign_Body/pl.md) , [PartDesign Boolean/pl](PartDesign_Boolean/pl.md) , [PartDesign Chamfer/pl](PartDesign_Chamfer/pl.md) , [PartDesign Clone/pl](PartDesign_Clone/pl.md) , [PartDesign CompPrimitiveAdditive/pl](PartDesign_CompPrimitiveAdditive/pl.md) , [PartDesign CompPrimitiveSubtractive/pl](PartDesign_CompPrimitiveSubtractive/pl.md) , [PartDesign CoordinateSystem/pl](PartDesign_CoordinateSystem/pl.md) , [PartDesign Draft/pl](PartDesign_Draft/pl.md) , [PartDesign Feature/pl](PartDesign_Feature/pl.md) , [PartDesign Fillet/pl](PartDesign_Fillet/pl.md) , [PartDesign Groove/pl](PartDesign_Groove/pl.md) , [PartDesign Hole/pl](PartDesign_Hole/pl.md) , [PartDesign InvoluteGear/pl](PartDesign_InvoluteGear/pl.md) , [PartDesign Line/pl](PartDesign_Line/pl.md) , [PartDesign LinearPattern/pl](PartDesign_LinearPattern/pl.md) , [PartDesign Migrate/pl](PartDesign_Migrate/pl.md) , [PartDesign Mirrored/pl](PartDesign_Mirrored/pl.md) , [PartDesign MoveFeature/pl](PartDesign_MoveFeature/pl.md) , [PartDesign MoveFeatureInTree/pl](PartDesign_MoveFeatureInTree/pl.md) , [PartDesign MoveTip/pl](PartDesign_MoveTip/pl.md) , [PartDesign MultiTransform/pl](PartDesign_MultiTransform/pl.md) , [PartDesign NewSketch/pl](PartDesign_NewSketch/pl.md) , [PartDesign Pad/pl](PartDesign_Pad/pl.md) , [PartDesign Plane/pl](PartDesign_Plane/pl.md) , [PartDesign Pocket/pl](PartDesign_Pocket/pl.md) , [PartDesign Point/pl](PartDesign_Point/pl.md) , [PartDesign PolarPattern/pl](PartDesign_PolarPattern/pl.md) , [PartDesign Preferences/pl](PartDesign_Preferences/pl.md) , [PartDesign Revolution/pl](PartDesign_Revolution/pl.md) , [PartDesign ShapeBinder/pl](PartDesign_ShapeBinder/pl.md) , [PartDesign Sprocket/pl](PartDesign_Sprocket/pl.md) , [PartDesign SubtractiveBox/pl](PartDesign_SubtractiveBox/pl.md) , [PartDesign SubtractiveCone/pl](PartDesign_SubtractiveCone/pl.md) , [PartDesign SubtractiveCylinder/pl](PartDesign_SubtractiveCylinder/pl.md) , [PartDesign SubtractiveEllipsoid/pl](PartDesign_SubtractiveEllipsoid/pl.md) , [PartDesign SubtractiveHelix/pl](PartDesign_SubtractiveHelix/pl.md) , [PartDesign SubtractiveLoft/pl](PartDesign_SubtractiveLoft/pl.md) , [PartDesign SubtractivePipe/pl](PartDesign_SubtractivePipe/pl.md) , [PartDesign SubtractivePrism/pl](PartDesign_SubtractivePrism/pl.md) , [PartDesign SubtractiveSphere/pl](PartDesign_SubtractiveSphere/pl.md) , [PartDesign SubtractiveTorus/pl](PartDesign_SubtractiveTorus/pl.md) , [PartDesign SubtractiveWedge/pl](PartDesign_SubtractiveWedge/pl.md) , [PartDesign Thickness/pl](PartDesign_Thickness/pl.md) , [Template:PartDesign Tools navi/pl](Template:PartDesign_Tools_navi/pl.md) , [PartDesign WizardShaft/pl](PartDesign_WizardShaft/pl.md) , [PartDesign Workbench/pl](PartDesign_Workbench/pl.md) , [Thread for Screw Tutorial/pl](Thread_for_Screw_Tutorial/pl.md) , [Toothbrush Head Stand/pl](Toothbrush_Head_Stand/pl.md) , [Topological naming problem/pl](Topological_naming_problem/pl.md) + +--- +[documentation index](../README.md) > Category:PartDesign/pl diff --git a/wiki/translations/pl/Category:Path.md b/wiki/translations/pl/Category:Path.md index 8dc1d9ecca..86f0792b97 100644 --- a/wiki/translations/pl/Category:Path.md +++ b/wiki/translations/pl/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/pl](PartDesign_Wo [Artwork Path/pl](Artwork_Path/pl.md) , [Manual:Preparing models for 3D printing/pl](Manual:Preparing_models_for_3D_printing/pl.md) , [Path Array/pl](Path_Array/pl.md) , [Path ExportTemplate/pl](Path_ExportTemplate/pl.md) , [Path FAQ/pl](Path_FAQ/pl.md) , [Path Job/pl](Path_Job/pl.md) , [Path Pocket Shape/pl](Path_Pocket_Shape/pl.md) , [Path Post/pl](Path_Post/pl.md) , [Path Preferences/pl](Path_Preferences/pl.md) , [Path Profile/pl](Path_Profile/pl.md) , [Path scripting/pl](Path_scripting/pl.md) , [Path Surface/pl](Path_Surface/pl.md) , [Path ToolLibraryEdit/pl](Path_ToolLibraryEdit/pl.md) , [Template:Path Tools navi/pl](Template:Path_Tools_navi/pl.md) , [Path Walkthrough for the Impatient/pl](Path_Walkthrough_for_the_Impatient/pl.md) , [Path Workbench/pl](Path_Workbench/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Path/pl diff --git a/wiki/translations/pl/Category:Plot.md b/wiki/translations/pl/Category:Plot.md index 7de2cf4e70..c32bea8379 100644 --- a/wiki/translations/pl/Category:Plot.md +++ b/wiki/translations/pl/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/pl](Plot_Workbench/pl.m [Artwork Plot/pl](Artwork_Plot/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Plot/pl diff --git a/wiki/translations/pl/Category:Points.md b/wiki/translations/pl/Category:Points.md index 2eedad8aae..f74609008e 100644 --- a/wiki/translations/pl/Category:Points.md +++ b/wiki/translations/pl/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/pl](Points_Workbench/ [Artwork Points/pl](Artwork_Points/pl.md) , [Points Export/pl](Points_Export/pl.md) , [Points Import/pl](Points_Import/pl.md) , [Points Workbench/pl](Points_Workbench/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Points/pl diff --git a/wiki/translations/pl/Category:Poweruser_Documentation.md b/wiki/translations/pl/Category:Poweruser_Documentation.md index 62613fee4d..efa8bcc5a5 100644 --- a/wiki/translations/pl/Category:Poweruser_Documentation.md +++ b/wiki/translations/pl/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Arch API/pl](Arch_API/pl.md) , [Base API/pl](Base_API/pl.md) , [Builtin modules/pl](Builtin_modules/pl.md) , [Code snippets/pl](Code_snippets/pl.md) , [Command/pl](Command/pl.md) , [Console API/pl](Console_API/pl.md) , [Create a FeaturePython object part I/pl](Create_a_FeaturePython_object_part_I/pl.md) , [Create a FeaturePython object part II/pl](Create_a_FeaturePython_object_part_II/pl.md) , [Custom icon in tree view/pl](Custom_icon_in_tree_view/pl.md) , [Debugging/pl](Debugging/pl.md) , [Dialog creation image and animated GIF/pl](Dialog_creation_image_and_animated_GIF/pl.md) , [Dialog creation reading and writing files/pl](Dialog_creation_reading_and_writing_files/pl.md) , [Dialog creation setting colors/pl](Dialog_creation_setting_colors/pl.md) , [Dialog creation with various widgets/pl](Dialog_creation_with_various_widgets/pl.md) , [Dialog creation/pl](Dialog_creation/pl.md) , [Draft API/pl](Draft_API/pl.md) , [Drawing API example/pl](Drawing_API_example/pl.md) , [Embedding FreeCAD/pl](Embedding_FreeCAD/pl.md) , [Embedding FreeCADGui/pl](Embedding_FreeCADGui/pl.md) , [Expressions/pl](Expressions/pl.md) , [FeaturePython methods/pl](FeaturePython_methods/pl.md) , [FreeCAD API/pl](FreeCAD_API/pl.md) , [FreeCAD Scripting Basics/pl](FreeCAD_Scripting_Basics/pl.md) , [FreeCAD vector math library/pl](FreeCAD_vector_math_library/pl.md) , [FreeCADGui API/pl](FreeCADGui_API/pl.md) , [Gui Command/pl](Gui_Command/pl.md) , [How to install additional workbenches/pl](How_to_install_additional_workbenches/pl.md) , [How to install macros/pl](How_to_install_macros/pl.md) , [Installing more workbenches/pl](Installing_more_workbenches/pl.md) , [Interface creation/pl](Interface_creation/pl.md) , [Introduction to Python/pl](Introduction_to_Python/pl.md) , [Line drawing function/pl](Line_drawing_function/pl.md) , [Macro at Startup/pl](Macro_at_Startup/pl.md) , [Macros/pl](Macros/pl.md) , [Manual:A gentle introduction/pl](Manual:A_gentle_introduction/pl.md) , [Manual:Creating and manipulating geometry/pl](Manual:Creating_and_manipulating_geometry/pl.md) , [Manual:Creating interface tools/pl](Manual:Creating_interface_tools/pl.md) , [Manual:Creating parametric objects/pl](Manual:Creating_parametric_objects/pl.md) , [Manual:Import and export to other filetypes/pl](Manual:Import_and_export_to_other_filetypes/pl.md) , [Manual:Installing/pl](Manual:Installing/pl.md) , [Manual:Parametric objects/pl](Manual:Parametric_objects/pl.md) , [Matrix API/pl](Matrix_API/pl.md) , [Mesh API/pl](Mesh_API/pl.md) , [Mesh Scripting/pl](Mesh_Scripting/pl.md) , [Mesh to Part/pl](Mesh_to_Part/pl.md) , [Object API/pl](Object_API/pl.md) , [OpenCASCADE/pl](OpenCASCADE/pl.md) , [Part API/pl](Part_API/pl.md) , [Part scripting/pl](Part_scripting/pl.md) , [Path scripting/pl](Path_scripting/pl.md) , [Pivy/pl](Pivy/pl.md) , [Placement API/pl](Placement_API/pl.md) , [Power users hub/pl](Power_users_hub/pl.md) , [Profiling/pl](Profiling/pl.md) , [Property/pl](Property/pl.md) , [PySide Advanced Examples/pl](PySide_Advanced_Examples/pl.md) , [PySide Beginner Examples/pl](PySide_Beginner_Examples/pl.md) , [PySide Intermediate Examples/pl](PySide_Intermediate_Examples/pl.md) , [PySide usage snippets/pl](PySide_usage_snippets/pl.md) , [PySide/pl](PySide/pl.md) , [Python Development Environment/pl](Python_Development_Environment/pl.md) , [Python scripting tutorial/pl](Python_scripting_tutorial/pl.md) , [Python/pl](Python/pl.md) , [PythonOCC/pl](PythonOCC/pl.md) , [Qt Example/pl](Qt_Example/pl.md) , [Quantity/pl](Quantity/pl.md) , [Raytracing API example/pl](Raytracing_API_example/pl.md) , [Reinforcement API/pl](Reinforcement_API/pl.md) , [Scenegraph/pl](Scenegraph/pl.md) , [Scientific literature/pl](Scientific_literature/pl.md) , [Scripted objects migration/pl](Scripted_objects_migration/pl.md) , [Scripted objects saving attributes/pl](Scripted_objects_saving_attributes/pl.md) , [Scripted objects with attachment/pl](Scripted_objects_with_attachment/pl.md) , [Scripted objects/pl](Scripted_objects/pl.md) , [Scripted Parts: Ball Bearing - Part 1/pl](Scripted_Parts:_Ball_Bearing_-_Part_1/pl.md) , [Scripted Parts: Ball Bearing - Part 2/pl](Scripted_Parts:_Ball_Bearing_-_Part_2/pl.md) , [Scripting and macros/pl](Scripting_and_macros/pl.md) , [Scripts/pl](Scripts/pl.md) , [Selection API/pl](Selection_API/pl.md) , [Svg Namespace/pl](Svg_Namespace/pl.md) , [TechDraw API/pl](TechDraw_API/pl.md) , [TechDrawGui API/pl](TechDrawGui_API/pl.md) , [Topological data scripting/pl](Topological_data_scripting/pl.md) , [TopoShape API/pl](TopoShape_API/pl.md) , [Units/pl](Units/pl.md) , [Vector API/pl](Vector_API/pl.md) , [ViewObject API/pl](ViewObject_API/pl.md) , [Viewprovider/pl](Viewprovider/pl.md) , [Workbench creation/pl](Workbench_creation/pl.md) [Category:Documentation/pl](Category:Documentation/pl.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/pl diff --git a/wiki/translations/pl/Category:Preferences.md b/wiki/translations/pl/Category:Preferences.md index 637c059098..7debccd14e 100644 --- a/wiki/translations/pl/Category:Preferences.md +++ b/wiki/translations/pl/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Arch Preferences/pl](Arch_Preferences/pl.md) , [Customize Toolbars/pl](Customize_Toolbars/pl.md) , [Draft Preferences/pl](Draft_Preferences/pl.md) , [Import Export Preferences/pl](Import_Export_Preferences/pl.md) , [OpenSCAD Preferences/pl](OpenSCAD_Preferences/pl.md) , [PartDesign Preferences/pl](PartDesign_Preferences/pl.md) , [Path Preferences/pl](Path_Preferences/pl.md) , [Preferences Editor/pl](Preferences_Editor/pl.md) , [Raytracing Preferences/pl](Raytracing_Preferences/pl.md) , [Sketcher Preferences/pl](Sketcher_Preferences/pl.md) , [TechDraw Preferences/pl](TechDraw_Preferences/pl.md) + +--- +[documentation index](../README.md) > Category:Preferences/pl diff --git a/wiki/translations/pl/Category:Python_Code.md b/wiki/translations/pl/Category:Python_Code.md index 1bc18c8924..ff390cf032 100644 --- a/wiki/translations/pl/Category:Python_Code.md +++ b/wiki/translations/pl/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Code snippets/pl](Code_snippets/pl.md) , [Command/pl](Command/pl.md) , [Create a FeaturePython object part I/pl](Create_a_FeaturePython_object_part_I/pl.md) , [Create a FeaturePython object part II/pl](Create_a_FeaturePython_object_part_II/pl.md) , [Custom icon in tree view/pl](Custom_icon_in_tree_view/pl.md) , [Debugging/pl](Debugging/pl.md) , [Dialog creation image and animated GIF/pl](Dialog_creation_image_and_animated_GIF/pl.md) , [Dialog creation reading and writing files/pl](Dialog_creation_reading_and_writing_files/pl.md) , [Dialog creation setting colors/pl](Dialog_creation_setting_colors/pl.md) , [Dialog creation with various widgets/pl](Dialog_creation_with_various_widgets/pl.md) , [Dialog creation/pl](Dialog_creation/pl.md) , [Drawing API example/pl](Drawing_API_example/pl.md) , [Embedding FreeCAD/pl](Embedding_FreeCAD/pl.md) , [Embedding FreeCADGui/pl](Embedding_FreeCADGui/pl.md) , [Extra python modules/pl](Extra_python_modules/pl.md) , [FeaturePython methods/pl](FeaturePython_methods/pl.md) , [FEM Tutorial Python/pl](FEM_Tutorial_Python/pl.md) , [FreeCAD Scripting Basics/pl](FreeCAD_Scripting_Basics/pl.md) , [FreeCAD vector math library/pl](FreeCAD_vector_math_library/pl.md) , [How to install macros/pl](How_to_install_macros/pl.md) , [Interface creation/pl](Interface_creation/pl.md) , [Introduction to Python/pl](Introduction_to_Python/pl.md) , [Line drawing function/pl](Line_drawing_function/pl.md) , [Macro at Startup/pl](Macro_at_Startup/pl.md) , [Macros recipes/pl](Macros_recipes/pl.md) , [Macros/pl](Macros/pl.md) , [Manual:A gentle introduction/pl](Manual:A_gentle_introduction/pl.md) , [Manual:Creating and manipulating geometry/pl](Manual:Creating_and_manipulating_geometry/pl.md) , [Manual:Creating interface tools/pl](Manual:Creating_interface_tools/pl.md) , [Manual:Creating parametric objects/pl](Manual:Creating_parametric_objects/pl.md) , [Mesh Scripting/pl](Mesh_Scripting/pl.md) , [Mesh to Part/pl](Mesh_to_Part/pl.md) , [Part scripting/pl](Part_scripting/pl.md) , [Path scripting/pl](Path_scripting/pl.md) , [Pivy/pl](Pivy/pl.md) , [Profiling/pl](Profiling/pl.md) , [Property/pl](Property/pl.md) , [PySide Advanced Examples/pl](PySide_Advanced_Examples/pl.md) , [PySide Beginner Examples/pl](PySide_Beginner_Examples/pl.md) , [PySide Intermediate Examples/pl](PySide_Intermediate_Examples/pl.md) , [PySide usage snippets/pl](PySide_usage_snippets/pl.md) , [PySide/pl](PySide/pl.md) , [Python Development Environment/pl](Python_Development_Environment/pl.md) , [Python scripting tutorial/pl](Python_scripting_tutorial/pl.md) , [Python/pl](Python/pl.md) , [PythonOCC/pl](PythonOCC/pl.md) , [Qt Example/pl](Qt_Example/pl.md) , [Quantity/pl](Quantity/pl.md) , [Raytracing API example/pl](Raytracing_API_example/pl.md) , [Scripted objects migration/pl](Scripted_objects_migration/pl.md) , [Scripted objects saving attributes/pl](Scripted_objects_saving_attributes/pl.md) , [Scripted objects with attachment/pl](Scripted_objects_with_attachment/pl.md) , [Scripted objects/pl](Scripted_objects/pl.md) , [Scripted Parts: Ball Bearing - Part 1/pl](Scripted_Parts:_Ball_Bearing_-_Part_1/pl.md) , [Scripted Parts: Ball Bearing - Part 2/pl](Scripted_Parts:_Ball_Bearing_-_Part_2/pl.md) , [Scripting and macros/pl](Scripting_and_macros/pl.md) , [Scripts/pl](Scripts/pl.md) , [Svg Namespace/pl](Svg_Namespace/pl.md) , [Topological data scripting/pl](Topological_data_scripting/pl.md) , [Viewprovider/pl](Viewprovider/pl.md) , [Workbench creation/pl](Workbench_creation/pl.md) [Category:Categories/pl](Category:Categories/pl.md) + +--- +[documentation index](../README.md) > Category:Python Code/pl diff --git a/wiki/translations/pl/Category:Raytracing.md b/wiki/translations/pl/Category:Raytracing.md index 1e970b3a8b..196c0ada23 100644 --- a/wiki/translations/pl/Category:Raytracing.md +++ b/wiki/translations/pl/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/pl](Raytracing_Wo [Artwork Raytracing/pl](Artwork_Raytracing/pl.md) , [Manual:Creating renderings/pl](Manual:Creating_renderings/pl.md) , [Raytracing API example/pl](Raytracing_API_example/pl.md) , [Raytracing ExportProject/pl](Raytracing_ExportProject/pl.md) , [Raytracing InsertPart/pl](Raytracing_InsertPart/pl.md) , [Raytracing Lux/pl](Raytracing_Lux/pl.md) , [Raytracing New/pl](Raytracing_New/pl.md) , [Raytracing Preferences/pl](Raytracing_Preferences/pl.md) , [Raytracing Render/pl](Raytracing_Render/pl.md) , [Raytracing ResetCamera/pl](Raytracing_ResetCamera/pl.md) , [Template:Raytracing Tools navi/pl](Template:Raytracing_Tools_navi/pl.md) , [Raytracing tutorial/pl](Raytracing_tutorial/pl.md) , [Raytracing Workbench/pl](Raytracing_Workbench/pl.md) , [Raytracing WriteCamera/pl](Raytracing_WriteCamera/pl.md) , [Raytracing WritePart/pl](Raytracing_WritePart/pl.md) , [Raytracing WriteView/pl](Raytracing_WriteView/pl.md) , [Tutorial FreeCAD POV ray/pl](Tutorial_FreeCAD_POV_ray/pl.md) , [Tutorial Render with Blender/pl](Tutorial_Render_with_Blender/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Raytracing/pl diff --git a/wiki/translations/pl/Category:Releases.md b/wiki/translations/pl/Category:Releases.md index 8d8c7738cf..f5a63a38c8 100644 --- a/wiki/translations/pl/Category:Releases.md +++ b/wiki/translations/pl/Category:Releases.md @@ -4,3 +4,6 @@ Kategoria, która łączy wszystkie strony wydania FreeCAD. ### Contents: [Release notes 0.11/pl](Release_notes_0.11/pl.md) , [Release notes 0.12/pl](Release_notes_0.12/pl.md) , [Release notes 0.13/pl](Release_notes_0.13/pl.md) , [Release notes 0.14/pl](Release_notes_0.14/pl.md) , [Release notes 0.15/pl](Release_notes_0.15/pl.md) , [Release notes 0.16/pl](Release_notes_0.16/pl.md) , [Release notes 0.17/pl](Release_notes_0.17/pl.md) , [Release notes 0.18/pl](Release_notes_0.18/pl.md) , [Release notes 0.19/pl](Release_notes_0.19/pl.md) , [Release notes 0.20/pl](Release_notes_0.20/pl.md) + +--- +[documentation index](../README.md) > Category:Releases/pl diff --git a/wiki/translations/pl/Category:Reverse_Engineering.md b/wiki/translations/pl/Category:Reverse_Engineering.md index 3d6dd57ba2..8315816f51 100644 --- a/wiki/translations/pl/Category:Reverse_Engineering.md +++ b/wiki/translations/pl/Category:Reverse_Engineering.md @@ -6,3 +6,6 @@ Ta kategoria zawiera strony związane ze środowiskiem pracy [Inżynieria wstecz [Artwork ReverseEngineering/pl](Artwork_ReverseEngineering/pl.md) , [Reverse Engineering Workbench/pl](Reverse_Engineering_Workbench/pl.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Reverse Engineering/pl diff --git a/wiki/translations/pl/Category:Roadmap.md b/wiki/translations/pl/Category:Roadmap.md index 80fad78d99..4a48c8ee3e 100644 --- a/wiki/translations/pl/Category:Roadmap.md +++ b/wiki/translations/pl/Category:Roadmap.md @@ -6,3 +6,6 @@ Ta kategoria gromadzi wszystkie artykuły dokumentujące to, co jest przewidzian [Arch Concept/pl](Arch_Concept/pl.md) , [Artwork project/pl](Artwork_project/pl.md) , [Assembly project/pl](Assembly_project/pl.md) , [CAM project/pl](CAM_project/pl.md) , [Development roadmap/pl](Development_roadmap/pl.md) , [FEM project/pl](FEM_project/pl.md) , [FreeCAD development model project/pl](FreeCAD_development_model_project/pl.md) , [HiDPI support/pl](HiDPI_support/pl.md) , [Land Survey Workbench Blueprint/pl](Land_Survey_Workbench_Blueprint/pl.md) , [Material data model/pl](Material_data_model/pl.md) , [Material/pl](Material/pl.md) , [Naming project/pl](Naming_project/pl.md) , [Project template/pl](Project_template/pl.md) , [Quality project/pl](Quality_project/pl.md) , [Raytracing project/pl](Raytracing_project/pl.md) , [Resource framework project/pl](Resource_framework_project/pl.md) , [Robot project/pl](Robot_project/pl.md) , [Sketcher project/pl](Sketcher_project/pl.md) , [STEP project/pl](STEP_project/pl.md) , [Tolerancing/pl](Tolerancing/pl.md) , [Units project/pl](Units_project/pl.md) , [UTF Project/pl](UTF_Project/pl.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Roadmap/pl diff --git a/wiki/translations/pl/Category:Robot.md b/wiki/translations/pl/Category:Robot.md index ab5032b6ce..4438ec133d 100644 --- a/wiki/translations/pl/Category:Robot.md +++ b/wiki/translations/pl/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/pl](Robot_Workbench/pl [Artwork Robot/pl](Artwork_Robot/pl.md) , [Robot Export/pl](Robot_Export/pl.md) , [Template:Robot Tools navi/pl](Template:Robot_Tools_navi/pl.md) , [Robot tutorial/pl](Robot_tutorial/pl.md) , [Robot Workbench/pl](Robot_Workbench/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Robot/pl diff --git a/wiki/translations/pl/Category:Sandbox.md b/wiki/translations/pl/Category:Sandbox.md index eb13f601b5..21fa1033c0 100644 --- a/wiki/translations/pl/Category:Sandbox.md +++ b/wiki/translations/pl/Category:Sandbox.md @@ -6,3 +6,6 @@ This category gathers all pages used as Sandbox: a place where you can draft or [CadQuery Workbench/pl](CadQuery_Workbench/pl.md) , [Cfd Workbench/pl](Cfd_Workbench/pl.md) , [ExplodedAssembly Workbench/pl](ExplodedAssembly_Workbench/pl.md) , [Macro Kerkythea/pl](Macro_Kerkythea/pl.md) , [PCB Workbench/pl](PCB_Workbench/pl.md) , [Symbols Library Workbench/pl](Symbols_Library_Workbench/pl.md) , [Timber Workbench/pl](Timber_Workbench/pl.md) , [Workfeature Workbench/pl](Workfeature_Workbench/pl.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Sandbox/pl diff --git a/wiki/translations/pl/Category:Ship.md b/wiki/translations/pl/Category:Ship.md index 8ebc3ae019..858f0e9e33 100644 --- a/wiki/translations/pl/Category:Ship.md +++ b/wiki/translations/pl/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/pl](Ship_Workbench/pl.m [Artwork Ship/pl](Artwork_Ship/pl.md) , [Template:Ship Tools navi/pl](Template:Ship_Tools_navi/pl.md) , [Ship Workbench/pl](Ship_Workbench/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Ship/pl diff --git a/wiki/translations/pl/Category:Sketcher.md b/wiki/translations/pl/Category:Sketcher.md index 8b5a386a4e..78ef4456e6 100644 --- a/wiki/translations/pl/Category:Sketcher.md +++ b/wiki/translations/pl/Category:Sketcher.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to Sketcher ### Contents: [Arch panel tutorial/pl](Arch_panel_tutorial/pl.md) , [Artwork Sketcher/pl](Artwork_Sketcher/pl.md) , [Basic Attachment Tutorial/pl](Basic_Attachment_Tutorial/pl.md) , [Basic Part Design Tutorial/pl](Basic_Part_Design_Tutorial/pl.md) , [Basic Sketcher Tutorial/pl](Basic_Sketcher_Tutorial/pl.md) , [Creating a simple part with PartDesign/pl](Creating_a_simple_part_with_PartDesign/pl.md) , [Draft ShapeString tutorial/pl](Draft_ShapeString_tutorial/pl.md) , [Part and PartDesign/pl](Part_and_PartDesign/pl.md) , [Sketch/pl](Sketch/pl.md) , [Sketcher BSplineApproximate/pl](Sketcher_BSplineApproximate/pl.md) , [Sketcher BSplineComb/pl](Sketcher_BSplineComb/pl.md) , [Sketcher BSplineDecreaseDegree/pl](Sketcher_BSplineDecreaseDegree/pl.md) , [Sketcher BSplineDecreaseKnotMultiplicity/pl](Sketcher_BSplineDecreaseKnotMultiplicity/pl.md) , [Sketcher BSplineDegree/pl](Sketcher_BSplineDegree/pl.md) , [Sketcher BSplineIncreaseDegree/pl](Sketcher_BSplineIncreaseDegree/pl.md) , [Sketcher BSplineIncreaseKnotMultiplicity/pl](Sketcher_BSplineIncreaseKnotMultiplicity/pl.md) , [Sketcher BSplineKnotMultiplicity/pl](Sketcher_BSplineKnotMultiplicity/pl.md) , [Sketcher BSplinePoleWeight/pl](Sketcher_BSplinePoleWeight/pl.md) , [Sketcher BSplinePolygon/pl](Sketcher_BSplinePolygon/pl.md) , [Sketcher CarbonCopy/pl](Sketcher_CarbonCopy/pl.md) , [Sketcher Clone/pl](Sketcher_Clone/pl.md) , [Sketcher CloseShape/pl](Sketcher_CloseShape/pl.md) , [Sketcher CompCreateArc/pl](Sketcher_CompCreateArc/pl.md) , [Sketcher CompCreateBSpline/pl](Sketcher_CompCreateBSpline/pl.md) , [Sketcher CompCreateCircle/pl](Sketcher_CompCreateCircle/pl.md) , [Sketcher CompCreateConic/pl](Sketcher_CompCreateConic/pl.md) , [Sketcher CompCreateRectangles/pl](Sketcher_CompCreateRectangles/pl.md) , [Sketcher CompCreateRegularPolygon/pl](Sketcher_CompCreateRegularPolygon/pl.md) , [Sketcher ConnectLines/pl](Sketcher_ConnectLines/pl.md) , [Sketcher ConstrainAngle/pl](Sketcher_ConstrainAngle/pl.md) , [Sketcher ConstrainBlock/pl](Sketcher_ConstrainBlock/pl.md) , [Sketcher ConstrainCoincident/pl](Sketcher_ConstrainCoincident/pl.md) , [Sketcher ConstrainDiameter/pl](Sketcher_ConstrainDiameter/pl.md) , [Sketcher ConstrainDistance/pl](Sketcher_ConstrainDistance/pl.md) , [Sketcher ConstrainDistanceX/pl](Sketcher_ConstrainDistanceX/pl.md) , [Sketcher ConstrainDistanceY/pl](Sketcher_ConstrainDistanceY/pl.md) , [Sketcher ConstrainEqual/pl](Sketcher_ConstrainEqual/pl.md) , [Sketcher ConstrainHorizontal/pl](Sketcher_ConstrainHorizontal/pl.md) , [Sketcher ConstrainInternalAlignment/pl](Sketcher_ConstrainInternalAlignment/pl.md) , [Sketcher ConstrainLock/pl](Sketcher_ConstrainLock/pl.md) , [Sketcher ConstrainParallel/pl](Sketcher_ConstrainParallel/pl.md) , [Sketcher ConstrainPerpendicular/pl](Sketcher_ConstrainPerpendicular/pl.md) , [Sketcher ConstrainPointOnObject/pl](Sketcher_ConstrainPointOnObject/pl.md) , [Sketcher ConstrainRadiam/pl](Sketcher_ConstrainRadiam/pl.md) , [Sketcher ConstrainRadius/pl](Sketcher_ConstrainRadius/pl.md) , [Sketcher ConstrainSnellsLaw/pl](Sketcher_ConstrainSnellsLaw/pl.md) , [Sketcher ConstrainSymmetric/pl](Sketcher_ConstrainSymmetric/pl.md) , [Sketcher ConstrainTangent/pl](Sketcher_ConstrainTangent/pl.md) , [Sketcher ConstrainVertical/pl](Sketcher_ConstrainVertical/pl.md) , [Sketcher Copy/pl](Sketcher_Copy/pl.md) , [Sketcher Create3PointArc/pl](Sketcher_Create3PointArc/pl.md) , [Sketcher Create3PointCircle/pl](Sketcher_Create3PointCircle/pl.md) , [Sketcher CreateArc/pl](Sketcher_CreateArc/pl.md) , [Sketcher CreateArcOfEllipse/pl](Sketcher_CreateArcOfEllipse/pl.md) , [Sketcher CreateArcOfHyperbola/pl](Sketcher_CreateArcOfHyperbola/pl.md) , [Sketcher CreateArcOfParabola/pl](Sketcher_CreateArcOfParabola/pl.md) , [Sketcher CreateBSpline/pl](Sketcher_CreateBSpline/pl.md) , [Sketcher CreateCircle/pl](Sketcher_CreateCircle/pl.md) , [Sketcher CreateEllipseBy3Points/pl](Sketcher_CreateEllipseBy3Points/pl.md) , [Sketcher CreateEllipseByCenter/pl](Sketcher_CreateEllipseByCenter/pl.md) , [Sketcher CreateFillet/pl](Sketcher_CreateFillet/pl.md) , [Sketcher CreateHeptagon/pl](Sketcher_CreateHeptagon/pl.md) , [Sketcher CreateHexagon/pl](Sketcher_CreateHexagon/pl.md) , [Sketcher CreateLine/pl](Sketcher_CreateLine/pl.md) , [Sketcher CreateOblong/pl](Sketcher_CreateOblong/pl.md) , [Sketcher CreateOctagon/pl](Sketcher_CreateOctagon/pl.md) , [Sketcher CreatePentagon/pl](Sketcher_CreatePentagon/pl.md) , [Sketcher CreatePeriodicBSpline/pl](Sketcher_CreatePeriodicBSpline/pl.md) , [Sketcher CreatePoint/pl](Sketcher_CreatePoint/pl.md) , [Sketcher CreatePolyline/pl](Sketcher_CreatePolyline/pl.md) , [Sketcher CreateRectangle Center/pl](Sketcher_CreateRectangle_Center/pl.md) , [Sketcher CreateRectangle/pl](Sketcher_CreateRectangle/pl.md) , [Sketcher CreateRegularPolygon/pl](Sketcher_CreateRegularPolygon/pl.md) , [Sketcher CreateSlot/pl](Sketcher_CreateSlot/pl.md) , [Sketcher CreateSquare/pl](Sketcher_CreateSquare/pl.md) , [Sketcher CreateTriangle/pl](Sketcher_CreateTriangle/pl.md) , [Sketcher DeleteAllConstraints/pl](Sketcher_DeleteAllConstraints/pl.md) , [Sketcher DeleteAllGeometry/pl](Sketcher_DeleteAllGeometry/pl.md) , [Sketcher Dialog/pl](Sketcher_Dialog/pl.md) , [Sketcher EditSketch/pl](Sketcher_EditSketch/pl.md) , [Sketcher Extend/pl](Sketcher_Extend/pl.md) , [Sketcher External/pl](Sketcher_External/pl.md) , [Sketcher LeaveSketch/pl](Sketcher_LeaveSketch/pl.md) , [Sketcher MapSketch/pl](Sketcher_MapSketch/pl.md) , [Sketcher MergeSketches/pl](Sketcher_MergeSketches/pl.md) , [Sketcher Micro Tutorial - Constraint Practices/pl](Sketcher_Micro_Tutorial_-_Constraint_Practices/pl.md) , [Sketcher MirrorSketch/pl](Sketcher_MirrorSketch/pl.md) , [Sketcher Move/pl](Sketcher_Move/pl.md) , [Sketcher NewSketch/pl](Sketcher_NewSketch/pl.md) , [Sketcher Preferences/pl](Sketcher_Preferences/pl.md) , [Sketcher project/pl](Sketcher_project/pl.md) , [Sketcher RectangularArray/pl](Sketcher_RectangularArray/pl.md) , [Sketcher reference/pl](Sketcher_reference/pl.md) , [Sketcher RemoveAxesAlignment/pl](Sketcher_RemoveAxesAlignment/pl.md) , [Sketcher ReorientSketch/pl](Sketcher_ReorientSketch/pl.md) , [Sketcher requirement for a sketch/pl](Sketcher_requirement_for_a_sketch/pl.md) , [Sketcher RestoreInternalAlignmentGeometry/pl](Sketcher_RestoreInternalAlignmentGeometry/pl.md) , [Sketcher scripting/pl](Sketcher_scripting/pl.md) , [Sketcher SelectConflictingConstraints/pl](Sketcher_SelectConflictingConstraints/pl.md) , [Sketcher SelectConstraints/pl](Sketcher_SelectConstraints/pl.md) , [Sketcher SelectElementsAssociatedWithConstraints/pl](Sketcher_SelectElementsAssociatedWithConstraints/pl.md) , [Sketcher SelectElementsWithDoFs/pl](Sketcher_SelectElementsWithDoFs/pl.md) , [Sketcher SelectHorizontalAxis/pl](Sketcher_SelectHorizontalAxis/pl.md) , [Sketcher SelectOrigin/pl](Sketcher_SelectOrigin/pl.md) , [Sketcher SelectRedundantConstraints/pl](Sketcher_SelectRedundantConstraints/pl.md) , [Sketcher SelectVerticalAxis/pl](Sketcher_SelectVerticalAxis/pl.md) , [Sketcher Sketch/pl](Sketcher_Sketch/pl.md) , [Sketcher SketchObject/pl](Sketcher_SketchObject/pl.md) , [Sketcher Split/pl](Sketcher_Split/pl.md) , [Sketcher StopOperation/pl](Sketcher_StopOperation/pl.md) , [Sketcher SwitchVirtualSpace/pl](Sketcher_SwitchVirtualSpace/pl.md) , [Sketcher Symmetry/pl](Sketcher_Symmetry/pl.md) , [Sketcher ToggleActiveConstraint/pl](Sketcher_ToggleActiveConstraint/pl.md) , [Sketcher ToggleConstruction/pl](Sketcher_ToggleConstruction/pl.md) , [Sketcher ToggleDrivingConstraint/pl](Sketcher_ToggleDrivingConstraint/pl.md) , [Template:Sketcher Tools navi/pl](Template:Sketcher_Tools_navi/pl.md) , [Sketcher Trimming/pl](Sketcher_Trimming/pl.md) , [Sketcher Tutorial/pl](Sketcher_Tutorial/pl.md) , [Sketcher ValidateSketch/pl](Sketcher_ValidateSketch/pl.md) , [Sketcher ViewSection/pl](Sketcher_ViewSection/pl.md) , [Sketcher ViewSketch/pl](Sketcher_ViewSketch/pl.md) , [Sketcher Workbench/pl](Sketcher_Workbench/pl.md) , [Thread for Screw Tutorial/pl](Thread_for_Screw_Tutorial/pl.md) , [Toothbrush Head Stand/pl](Toothbrush_Head_Stand/pl.md) , [Tutorial custom placing of windows and doors/pl](Tutorial_custom_placing_of_windows_and_doors/pl.md) + +--- +[documentation index](../README.md) > Category:Sketcher/pl diff --git a/wiki/translations/pl/Category:Spreadsheet.md b/wiki/translations/pl/Category:Spreadsheet.md index 0957a5c3a1..5f40a19bb5 100644 --- a/wiki/translations/pl/Category:Spreadsheet.md +++ b/wiki/translations/pl/Category:Spreadsheet.md @@ -6,3 +6,6 @@ Ta kategoria zawiera strony związane ze środowiskiem Pracy [Arkusz Kalkulacyjn [Artwork Spreadsheet/pl](Artwork_Spreadsheet/pl.md) , [Expressions/pl](Expressions/pl.md) , [Spreadsheet CreateSheet/pl](Spreadsheet_CreateSheet/pl.md) , [Spreadsheet CSV/pl](Spreadsheet_CSV/pl.md) , [Spreadsheet Export/pl](Spreadsheet_Export/pl.md) , [Spreadsheet Import/pl](Spreadsheet_Import/pl.md) , [Spreadsheet SetAlias/pl](Spreadsheet_SetAlias/pl.md) , [Template:Spreadsheet Tools navi/pl](Template:Spreadsheet_Tools_navi/pl.md) , [Spreadsheet Workbench/pl](Spreadsheet_Workbench/pl.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Spreadsheet/pl diff --git a/wiki/translations/pl/Category:Std_Base.md b/wiki/translations/pl/Category:Std_Base.md index 2b8b9d15b4..8c62d1cf29 100644 --- a/wiki/translations/pl/Category:Std_Base.md +++ b/wiki/translations/pl/Category:Std_Base.md @@ -6,3 +6,6 @@ This category list pages related to the [Std Base](Std_Base/pl.md), which collec [Template:Std Base navi/pl](Template:Std_Base_navi/pl.md) [Category:User\_Documentation/pl](Category:User_Documentation/pl.md) + +--- +[documentation index](../README.md) > Category:Std Base/pl diff --git a/wiki/translations/pl/Category:Surface.md b/wiki/translations/pl/Category:Surface.md index f6a8a2228a..3cf1bd87bf 100644 --- a/wiki/translations/pl/Category:Surface.md +++ b/wiki/translations/pl/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/pl](Surface_Workbenc [Artwork Surface/pl](Artwork_Surface/pl.md) , [Surface Workbench/pl](Surface_Workbench/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:Surface/pl diff --git a/wiki/translations/pl/Category:TechDraw.md b/wiki/translations/pl/Category:TechDraw.md index 0e720c4c0e..6399eace12 100644 --- a/wiki/translations/pl/Category:TechDraw.md +++ b/wiki/translations/pl/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/pl](TechDraw_Workbe [Advanced TechDraw Tutorial/pl](Advanced_TechDraw_Tutorial/pl.md) , [Artwork TechDraw/pl](Artwork_TechDraw/pl.md) , [Basic TechDraw Tutorial/pl](Basic_TechDraw_Tutorial/pl.md) , [Bitmap/pl](Bitmap/pl.md) , [Drawing/pl](Drawing/pl.md) , [DXF/pl](DXF/pl.md) , [Measurement Of Angles On Holes/pl](Measurement_Of_Angles_On_Holes/pl.md) , [SVG/pl](SVG/pl.md) , [TechDraw 2LineCenterLine/pl](TechDraw_2LineCenterLine/pl.md) , [TechDraw 2PointCenterLine/pl](TechDraw_2PointCenterLine/pl.md) , [TechDraw 2PointCosmeticLine/pl](TechDraw_2PointCosmeticLine/pl.md) , [TechDraw 3PtAngleDimension/pl](TechDraw_3PtAngleDimension/pl.md) , [TechDraw ActiveView/pl](TechDraw_ActiveView/pl.md) , [TechDraw AngleDimension/pl](TechDraw_AngleDimension/pl.md) , [TechDraw Annotation/pl](TechDraw_Annotation/pl.md) , [TechDraw API/pl](TechDraw_API/pl.md) , [TechDraw ArchView/pl](TechDraw_ArchView/pl.md) , [TechDraw Balloon/pl](TechDraw_Balloon/pl.md) , [TechDraw ClipGroup/pl](TechDraw_ClipGroup/pl.md) , [TechDraw ClipGroupAdd/pl](TechDraw_ClipGroupAdd/pl.md) , [TechDraw ClipGroupRemove/pl](TechDraw_ClipGroupRemove/pl.md) , [TechDraw CosmeticEraser/pl](TechDraw_CosmeticEraser/pl.md) , [TechDraw CosmeticVertex/pl](TechDraw_CosmeticVertex/pl.md) , [TechDraw DecorateLine/pl](TechDraw_DecorateLine/pl.md) , [TechDraw DetailView/pl](TechDraw_DetailView/pl.md) , [TechDraw DiameterDimension/pl](TechDraw_DiameterDimension/pl.md) , [TechDraw DraftView/pl](TechDraw_DraftView/pl.md) , [TechDraw ExportPageDXF/pl](TechDraw_ExportPageDXF/pl.md) , [TechDraw ExportPageSVG/pl](TechDraw_ExportPageSVG/pl.md) , [TechDraw FaceCenterLine/pl](TechDraw_FaceCenterLine/pl.md) , [TechDraw Geometric dimensioning and tolerancing/pl](TechDraw_Geometric_dimensioning_and_tolerancing/pl.md) , [TechDraw GeometricHatch/pl](TechDraw_GeometricHatch/pl.md) , [TechDraw Hatch/pl](TechDraw_Hatch/pl.md) , [TechDraw Hatching/pl](TechDraw_Hatching/pl.md) , [TechDraw HorizontalDimension/pl](TechDraw_HorizontalDimension/pl.md) , [TechDraw HorizontalExtentDimension/pl](TechDraw_HorizontalExtentDimension/pl.md) , [TechDraw HowTo Page/pl](TechDraw_HowTo_Page/pl.md) , [TechDraw Image/pl](TechDraw_Image/pl.md) , [TechDraw LandmarkDimension/pl](TechDraw_LandmarkDimension/pl.md) , [TechDraw LeaderLine/pl](TechDraw_LeaderLine/pl.md) , [TechDraw LengthDimension/pl](TechDraw_LengthDimension/pl.md) , [TechDraw LineGroup/pl](TechDraw_LineGroup/pl.md) , [TechDraw LinkDimension/pl](TechDraw_LinkDimension/pl.md) , [TechDraw Midpoints/pl](TechDraw_Midpoints/pl.md) , [TechDraw PageDefault/pl](TechDraw_PageDefault/pl.md) , [TechDraw PageTemplate/pl](TechDraw_PageTemplate/pl.md) , [TechDraw pitch circle tutorial/pl](TechDraw_pitch_circle_tutorial/pl.md) , [TechDraw Preferences/pl](TechDraw_Preferences/pl.md) , [TechDraw ProjectionGroup/pl](TechDraw_ProjectionGroup/pl.md) , [TechDraw Quadrants/pl](TechDraw_Quadrants/pl.md) , [TechDraw RadiusDimension/pl](TechDraw_RadiusDimension/pl.md) , [TechDraw RedrawPage/pl](TechDraw_RedrawPage/pl.md) , [TechDraw RichTextAnnotation/pl](TechDraw_RichTextAnnotation/pl.md) , [TechDraw Roadmap/pl](TechDraw_Roadmap/pl.md) , [TechDraw SectionView/pl](TechDraw_SectionView/pl.md) , [TechDraw ShowAll/pl](TechDraw_ShowAll/pl.md) , [TechDraw SpreadsheetView/pl](TechDraw_SpreadsheetView/pl.md) , [TechDraw Symbol/pl](TechDraw_Symbol/pl.md) , [TechDraw TemplateHowTo/pl](TechDraw_TemplateHowTo/pl.md) , [TechDraw Templates/pl](TechDraw_Templates/pl.md) , [TechDraw ToggleFrame/pl](TechDraw_ToggleFrame/pl.md) , [Template:TechDraw Tools navi/pl](Template:TechDraw_Tools_navi/pl.md) , [TechDraw VerticalDimension/pl](TechDraw_VerticalDimension/pl.md) , [TechDraw VerticalExtentDimension/pl](TechDraw_VerticalExtentDimension/pl.md) , [TechDraw View/pl](TechDraw_View/pl.md) , [TechDraw WeldSymbol/pl](TechDraw_WeldSymbol/pl.md) , [TechDraw Workbench/pl](TechDraw_Workbench/pl.md) , [TechDrawGui API/pl](TechDrawGui_API/pl.md) , [Tolerancing/pl](Tolerancing/pl.md) , [Topological naming problem/pl](Topological_naming_problem/pl.md) , [Tutorial for open windows/pl](Tutorial_for_open_windows/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) + +--- +[documentation index](../README.md) > Category:TechDraw/pl diff --git a/wiki/translations/pl/Category:Template.md b/wiki/translations/pl/Category:Template.md index 3d18829e49..5b4f7b6182 100644 --- a/wiki/translations/pl/Category:Template.md +++ b/wiki/translations/pl/Category:Template.md @@ -8,3 +8,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) [Template:Languages/pl](Template:Languages/pl.md) , [Template:Pl](Template:Pl.md) , [Template:Raytracing Tools/pl](Template:Raytracing_Tools/pl.md) , [Template:Sketcher Tools/pl](Template:Sketcher_Tools/pl.md) , , , , [Category:Categories/pl](Category:Categories/pl.md) [Category:Template:Navigation/pl](Category:Template:Navigation/pl.md) [Category:Template:Text Box/pl](Category:Template:Text_Box/pl.md) [Category:Template:Text Format/pl](Category:Template:Text_Format/pl.md) [Category:Template:Text/pl](Category:Template:Text/pl.md) + +--- +[documentation index](../README.md) > Category:Template/pl diff --git a/wiki/translations/pl/Category:Template:Navigation.md b/wiki/translations/pl/Category:Template:Navigation.md index 42cbb63727..3c713f0dc4 100644 --- a/wiki/translations/pl/Category:Template:Navigation.md +++ b/wiki/translations/pl/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/pl](Template:Arch_Tools_navi/pl.md) , [Template:Artwork/pl](Template:Artwork/pl.md) , [Template:Document objects navi/pl](Template:Document_objects_navi/pl.md) , [Template:Draft Tools navi/pl](Template:Draft_Tools_navi/pl.md) , [Template:Drawing Tools navi/pl](Template:Drawing_Tools_navi/pl.md) , [Template:Interface navi/pl](Template:Interface_navi/pl.md) , [Template:Mesh Tools navi/pl](Template:Mesh_Tools_navi/pl.md) , [Template:OpenSCAD Tools navi/pl](Template:OpenSCAD_Tools_navi/pl.md) , [Template:Part Tools navi/pl](Template:Part_Tools_navi/pl.md) , [Template:PartDesign Tools navi/pl](Template:PartDesign_Tools_navi/pl.md) , [Template:Path Tools navi/pl](Template:Path_Tools_navi/pl.md) , [Template:Powerdocnavi/pl](Template:Powerdocnavi/pl.md) , [Template:Raytracing Tools navi/pl](Template:Raytracing_Tools_navi/pl.md) , [Template:Robot Tools navi/pl](Template:Robot_Tools_navi/pl.md) , [Template:Ship Tools navi/pl](Template:Ship_Tools_navi/pl.md) , [Template:Sketcher Tools navi/pl](Template:Sketcher_Tools_navi/pl.md) , [Template:Spreadsheet Tools navi/pl](Template:Spreadsheet_Tools_navi/pl.md) , [Template:Std Base navi/pl](Template:Std_Base_navi/pl.md) , [Template:TechDraw Tools navi/pl](Template:TechDraw_Tools_navi/pl.md) , [Template:Tutorials navi/pl](Template:Tutorials_navi/pl.md) [Category:Template/pl](Category:Template/pl.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/pl diff --git a/wiki/translations/pl/Category:Template:Text.md b/wiki/translations/pl/Category:Template:Text.md index 2d81db1310..ef91c9f855 100644 --- a/wiki/translations/pl/Category:Template:Text.md +++ b/wiki/translations/pl/Category:Template:Text.md @@ -10,3 +10,6 @@ Dłuższe fragmenty tekstu należy umieścić na samej stronie, aby można je by [Template:Obsolete/pl](Template:Obsolete/pl.md) , [Template:Version/pl](Template:Version/pl.md) , [Template:VersionMinus/pl](Template:VersionMinus/pl.md) , [Template:VersionPlus/pl](Template:VersionPlus/pl.md) [Category:Template/pl](Category:Template/pl.md) + +--- +[documentation index](../README.md) > Category:Template:Text/pl diff --git a/wiki/translations/pl/Category:Template:Text_Box.md b/wiki/translations/pl/Category:Template:Text_Box.md index f0a6784e0d..99127b569c 100644 --- a/wiki/translations/pl/Category:Template:Text_Box.md +++ b/wiki/translations/pl/Category:Template:Text_Box.md @@ -8,3 +8,6 @@ These templates produce small pieces of text that are suitable for transclusion. [Template:UnfinishedDocu/pl](Template:UnfinishedDocu/pl.md) [Category:Template/pl](Category:Template/pl.md) + +--- +[documentation index](../README.md) > Category:Template:Text Box/pl diff --git a/wiki/translations/pl/Category:Template:Text_Format.md b/wiki/translations/pl/Category:Template:Text_Format.md index d43c37361c..5bef01306a 100644 --- a/wiki/translations/pl/Category:Template:Text_Format.md +++ b/wiki/translations/pl/Category:Template:Text_Format.md @@ -6,3 +6,6 @@ This category lists templates that format text given as input. [Template:MenuCommand/pl](Template:MenuCommand/pl.md) , [Template:VeryImportantMessage/pl](Template:VeryImportantMessage/pl.md) [Category:Template/pl](Category:Template/pl.md) + +--- +[documentation index](../README.md) > Category:Template:Text Format/pl diff --git a/wiki/translations/pl/Category:Test_Framework.md b/wiki/translations/pl/Category:Test_Framework.md index 7b730b108a..94d2ee14d7 100644 --- a/wiki/translations/pl/Category:Test_Framework.md +++ b/wiki/translations/pl/Category:Test_Framework.md @@ -6,3 +6,6 @@ This category lists pages related to the [Test Framework Workbench/pl](Test_Fram [Testing/pl](Testing/pl.md) [Category:Workbenches/pl](Category:Workbenches/pl.md) [Category:User\_Documentation/pl](Category:User_Documentation/pl.md) [Category:Testing/pl](Category:Testing/pl.md) + +--- +[documentation index](../README.md) > Category:Test Framework/pl diff --git a/wiki/translations/pl/Category:Testing.md b/wiki/translations/pl/Category:Testing.md index e014d588fa..2d1ef085c6 100644 --- a/wiki/translations/pl/Category:Testing.md +++ b/wiki/translations/pl/Category:Testing.md @@ -6,3 +6,6 @@ Pages related to testing in regards to unit testing, continuous integration, qua [AppImage/pl](AppImage/pl.md) , [Testing/pl](Testing/pl.md) , [Category:Test Framework/pl](Category:Test_Framework/pl.md) + +--- +[documentation index](../README.md) > Category:Testing/pl diff --git a/wiki/translations/pl/Category:Tutorials.md b/wiki/translations/pl/Category:Tutorials.md index a9afbf12a1..7ebed3e84b 100644 --- a/wiki/translations/pl/Category:Tutorials.md +++ b/wiki/translations/pl/Category:Tutorials.md @@ -8,3 +8,6 @@ Specjalne strony to [Poradniki spoza Wiki FreeCAD](Offsite_tutorials/pl.md) i [W [Add FEM constraint tutorial/pl](Add_FEM_constraint_tutorial/pl.md) , [Add FEM equation tutorial/pl](Add_FEM_equation_tutorial/pl.md) , [Advanced TechDraw Tutorial/pl](Advanced_TechDraw_Tutorial/pl.md) , [Aeroplane/pl](Aeroplane/pl.md) , [Analysis of reinforced concrete with FEM/pl](Analysis_of_reinforced_concrete_with_FEM/pl.md) , [Arch panel tutorial/pl](Arch_panel_tutorial/pl.md) , [Arch tutorial/pl](Arch_tutorial/pl.md) , [Basic Attachment Tutorial/pl](Basic_Attachment_Tutorial/pl.md) , [Basic modeling tutorial/pl](Basic_modeling_tutorial/pl.md) , [Basic Part Design Tutorial/pl](Basic_Part_Design_Tutorial/pl.md) , [Basic Sketcher Tutorial/pl](Basic_Sketcher_Tutorial/pl.md) , [Basic TechDraw Tutorial/pl](Basic_TechDraw_Tutorial/pl.md) , [BIM ingame tutorial/pl](BIM_ingame_tutorial/pl.md) , [Creating a simple part with PartDesign/pl](Creating_a_simple_part_with_PartDesign/pl.md) , [Customize Toolbars/pl](Customize_Toolbars/pl.md) , [Draft ShapeString tutorial/pl](Draft_ShapeString_tutorial/pl.md) , [Draft tutorial/pl](Draft_tutorial/pl.md) , [Drawing Template HowTo/pl](Drawing_Template_HowTo/pl.md) , [Drawing tutorial/pl](Drawing_tutorial/pl.md) , [Dxf Importer Install/pl](Dxf_Importer_Install/pl.md) , [Engine Block Tutorial/pl](Engine_Block_Tutorial/pl.md) , [Export to STL or OBJ/pl](Export_to_STL_or_OBJ/pl.md) , [FEM Beginner tutorial/pl](FEM_Beginner_tutorial/pl.md) , [FEM CalculiX Cantilever 3D/pl](FEM_CalculiX_Cantilever_3D/pl.md) , [FEM Shear of a Composite Block/pl](FEM_Shear_of_a_Composite_Block/pl.md) , [FEM Tutorial Python/pl](FEM_Tutorial_Python/pl.md) , [FEM tutorial/pl](FEM_tutorial/pl.md) , [How to install additional workbenches/pl](How_to_install_additional_workbenches/pl.md) , [How to install macros/pl](How_to_install_macros/pl.md) , [Import from STL or OBJ/pl](Import_from_STL_or_OBJ/pl.md) , [Import OpenSCAD code/pl](Import_OpenSCAD_code/pl.md) , [Import text and geometry from Inkscape/pl](Import_text_and_geometry_from_Inkscape/pl.md) , [Manual:BIM modeling/pl](Manual:BIM_modeling/pl.md) , [Manual:Creating FEM analyses/pl](Manual:Creating_FEM_analyses/pl.md) , [Manual:Creating renderings/pl](Manual:Creating_renderings/pl.md) , [Manual:Generating 2D drawings/pl](Manual:Generating_2D_drawings/pl.md) , [Manual:Import and export to other filetypes/pl](Manual:Import_and_export_to_other_filetypes/pl.md) , [Manual:Installing/pl](Manual:Installing/pl.md) , [Manual:Modeling for product design/pl](Manual:Modeling_for_product_design/pl.md) , [Manual:Parametric objects/pl](Manual:Parametric_objects/pl.md) , [Manual:Preparing models for 3D printing/pl](Manual:Preparing_models_for_3D_printing/pl.md) , [Manual:Traditional 2D drafting/pl](Manual:Traditional_2D_drafting/pl.md) , [Manual:Traditional modeling, the CSG way/pl](Manual:Traditional_modeling,_the_CSG_way/pl.md) , [Manual:Using spreadsheets/pl](Manual:Using_spreadsheets/pl.md) , [Measurement Of Angles On Holes/pl](Measurement_Of_Angles_On_Holes/pl.md) , [Offsite tutorials/pl](Offsite_tutorials/pl.md) , [Part and PartDesign/pl](Part_and_PartDesign/pl.md) , [PartDesign Bearingholder Tutorial I/pl](PartDesign_Bearingholder_Tutorial_I/pl.md) , [PartDesign Bearingholder Tutorial II/pl](PartDesign_Bearingholder_Tutorial_II/pl.md) , [PartDesign tutorial/pl](PartDesign_tutorial/pl.md) , [Path Walkthrough for the Impatient/pl](Path_Walkthrough_for_the_Impatient/pl.md) , [Plot Basic tutorial/pl](Plot_Basic_tutorial/pl.md) , [Plot MultiAxes tutorial/pl](Plot_MultiAxes_tutorial/pl.md) , [Post-Processing of FEM Results with Paraview/pl](Post-Processing_of_FEM_Results_with_Paraview/pl.md) , [Raytracing tutorial/pl](Raytracing_tutorial/pl.md) , [Robot tutorial/pl](Robot_tutorial/pl.md) , [Scripted Parts: Ball Bearing - Part 1/pl](Scripted_Parts:_Ball_Bearing_-_Part_1/pl.md) , [Scripted Parts: Ball Bearing - Part 2/pl](Scripted_Parts:_Ball_Bearing_-_Part_2/pl.md) , [Scripts/pl](Scripts/pl.md) , [Sketcher Micro Tutorial - Constraint Practices/pl](Sketcher_Micro_Tutorial_-_Constraint_Practices/pl.md) , [Sketcher reference/pl](Sketcher_reference/pl.md) , [Sketcher requirement for a sketch/pl](Sketcher_requirement_for_a_sketch/pl.md) , [Sketcher Tutorial/pl](Sketcher_Tutorial/pl.md) , [TechDraw HowTo Page/pl](TechDraw_HowTo_Page/pl.md) , [TechDraw pitch circle tutorial/pl](TechDraw_pitch_circle_tutorial/pl.md) , [TechDraw TemplateHowTo/pl](TechDraw_TemplateHowTo/pl.md) , [Thread for Screw Tutorial/pl](Thread_for_Screw_Tutorial/pl.md) , [Toothbrush Head Stand/pl](Toothbrush_Head_Stand/pl.md) , [Tutorial custom placing of windows and doors/pl](Tutorial_custom_placing_of_windows_and_doors/pl.md) , [Tutorial for open windows/pl](Tutorial_for_open_windows/pl.md) , [Tutorial FreeCAD POV ray/pl](Tutorial_FreeCAD_POV_ray/pl.md) , [Tutorial Render with Blender/pl](Tutorial_Render_with_Blender/pl.md) , [Template:TutorialInfo/pl](Template:TutorialInfo/pl.md) , [Tutorials/pl](Tutorials/pl.md) , [Video tutorials/pl](Video_tutorials/pl.md) , [Whiffle Ball tutorial/pl](Whiffle_Ball_tutorial/pl.md) [Category:Categories/pl](Category:Categories/pl.md) + +--- +[documentation index](../README.md) > Category:Tutorials/pl diff --git a/wiki/translations/pl/Category:UnfinishedDocu.md b/wiki/translations/pl/Category:UnfinishedDocu.md index d2926f8e50..731104a2d8 100644 --- a/wiki/translations/pl/Category:UnfinishedDocu.md +++ b/wiki/translations/pl/Category:UnfinishedDocu.md @@ -6,3 +6,6 @@ This category contains all Unfinished Documents [Animation Workbench/pl](Animation_Workbench/pl.md) , [BIM application compatibility table/pl](BIM_application_compatibility_table/pl.md) , [BIM ingame tutorial/pl](BIM_ingame_tutorial/pl.md) , [BIM Workbench/pl](BIM_Workbench/pl.md) , [BOLTSFC Workbench/pl](BOLTSFC_Workbench/pl.md) , [CurvedShapes Workbench/pl](CurvedShapes_Workbench/pl.md) , [Engine Block Tutorial/pl](Engine_Block_Tutorial/pl.md) , [FEM ConstraintForce/pl](FEM_ConstraintForce/pl.md) , [FEM EquationHeat/pl](FEM_EquationHeat/pl.md) , [FEM MaterialMechanicalNonlinear/pl](FEM_MaterialMechanicalNonlinear/pl.md) , [FEM MaterialReinforced/pl](FEM_MaterialReinforced/pl.md) , [FEM ResultShow/pl](FEM_ResultShow/pl.md) , [FEM ResultsPurge/pl](FEM_ResultsPurge/pl.md) , [FEM SolverControl/pl](FEM_SolverControl/pl.md) , [FEM SolverRun/pl](FEM_SolverRun/pl.md) , [InputField/pl](InputField/pl.md) , [Lattice2 Workbench/pl](Lattice2_Workbench/pl.md) , [Manipulator/pl](Manipulator/pl.md) , [Manual:BIM modeling/pl](Manual:BIM_modeling/pl.md) , [Material/pl](Material/pl.md) , [ModernUI Workbench/pl](ModernUI_Workbench/pl.md) , [OpenSCAD ColorCodeShape/pl](OpenSCAD_ColorCodeShape/pl.md) , [Part CompCompoundTools/pl](Part_CompCompoundTools/pl.md) , [Part ElementCopy/pl](Part_ElementCopy/pl.md) , [Part Ellipse/pl](Part_Ellipse/pl.md) , [Part Ellipsoid/pl](Part_Ellipsoid/pl.md) , [Part Helix/pl](Part_Helix/pl.md) , [Part Line/pl](Part_Line/pl.md) , [Part Loft/pl](Part_Loft/pl.md) , [Part Mirror/pl](Part_Mirror/pl.md) , [Part Offset/pl](Part_Offset/pl.md) , [Part Plane/pl](Part_Plane/pl.md) , [Part Point/pl](Part_Point/pl.md) , [Part RegularPolygon/pl](Part_RegularPolygon/pl.md) , [Part RuledSurface/pl](Part_RuledSurface/pl.md) , [Part Spiral/pl](Part_Spiral/pl.md) , [Part TransformedCopy/pl](Part_TransformedCopy/pl.md) , [Part Wedge/pl](Part_Wedge/pl.md) , [Path Surface/pl](Path_Surface/pl.md) , [SheetMetal UnattendedUnfold/pl](SheetMetal_UnattendedUnfold/pl.md) , [SheetMetal Workbench/pl](SheetMetal_Workbench/pl.md) , [Silk Workbench/pl](Silk_Workbench/pl.md) , [Sketcher ConstrainHorizontal/pl](Sketcher_ConstrainHorizontal/pl.md) , [Sketcher SelectElementsWithDoFs/pl](Sketcher_SelectElementsWithDoFs/pl.md) , [TechDraw LinkDimension/pl](TechDraw_LinkDimension/pl.md) , [Template:UnfinishedDocu/pl](Template:UnfinishedDocu/pl.md) , [Windows packaging/pl](Windows_packaging/pl.md) [Category:Administration/pl](Category:Administration/pl.md) [Category:Categories/pl](Category:Categories/pl.md) + +--- +[documentation index](../README.md) > Category:UnfinishedDocu/pl diff --git a/wiki/translations/pl/Category:User_Documentation.md b/wiki/translations/pl/Category:User_Documentation.md index 9c68fcac0b..6b43b8cded 100644 --- a/wiki/translations/pl/Category:User_Documentation.md +++ b/wiki/translations/pl/Category:User_Documentation.md @@ -6,3 +6,6 @@ Ta kategoria zawiera artykuły na temat sposobu używania FreeCAD. Jest to równ [BIM Clone/pl](BIM_Clone/pl.md) , [BIM Copy/pl](BIM_Copy/pl.md) , [BIM Setup/pl](BIM_Setup/pl.md) , [BIM Windows/pl](BIM_Windows/pl.md) , [3D view/pl](3D_view/pl.md) , [A2plus Workbench/pl](A2plus_Workbench/pl.md) , [About FreeCAD/pl](About_FreeCAD/pl.md) , [Add FEM constraint tutorial/pl](Add_FEM_constraint_tutorial/pl.md) , [Add FEM equation tutorial/pl](Add_FEM_equation_tutorial/pl.md) , [Addon/pl](Addon/pl.md) , [Advanced TechDraw Tutorial/pl](Advanced_TechDraw_Tutorial/pl.md) , [Aeroplane/pl](Aeroplane/pl.md) , [Analysis of reinforced concrete with FEM/pl](Analysis_of_reinforced_concrete_with_FEM/pl.md) , [Animation Workbench/pl](Animation_Workbench/pl.md) , [App DocumentObject/pl](App_DocumentObject/pl.md) , [App DocumentObjectGroup/pl](App_DocumentObjectGroup/pl.md) , [App FeaturePython/pl](App_FeaturePython/pl.md) , [App GeoFeature/pl](App_GeoFeature/pl.md) , [App Link/pl](App_Link/pl.md) , [App Part/pl](App_Part/pl.md) , [AppImage/pl](AppImage/pl.md) , [Arch 3DS/pl](Arch_3DS/pl.md) , [Arch 3Views/pl](Arch_3Views/pl.md) , [Arch Add/pl](Arch_Add/pl.md) , [Arch API/pl](Arch_API/pl.md) , [Arch Axis/pl](Arch_Axis/pl.md) , [Arch AxisSystem/pl](Arch_AxisSystem/pl.md) , [Arch Building/pl](Arch_Building/pl.md) , [Arch BuildingPart/pl](Arch_BuildingPart/pl.md) , [Arch Check/pl](Arch_Check/pl.md) , [Arch CloneComponent/pl](Arch_CloneComponent/pl.md) , [Arch CloseHoles/pl](Arch_CloseHoles/pl.md) , [Arch Component/pl](Arch_Component/pl.md) , [Arch CurtainWall/pl](Arch_CurtainWall/pl.md) , [Arch CutPlane/pl](Arch_CutPlane/pl.md) , [Arch DAE/pl](Arch_DAE/pl.md) , [Arch Door/pl](Arch_Door/pl.md) , [Arch Equipment/pl](Arch_Equipment/pl.md) , [Arch Fence/pl](Arch_Fence/pl.md) , [Arch Floor/pl](Arch_Floor/pl.md) , [Arch Frame/pl](Arch_Frame/pl.md) , [Arch Grid/pl](Arch_Grid/pl.md) , [Arch IFC/pl](Arch_IFC/pl.md) , [Arch IfcExplorer/pl](Arch_IfcExplorer/pl.md) , [Arch IfcSpreadsheet/pl](Arch_IfcSpreadsheet/pl.md) , [Arch JSON/pl](Arch_JSON/pl.md) , [Arch MergeWalls/pl](Arch_MergeWalls/pl.md) , [Arch MeshToShape/pl](Arch_MeshToShape/pl.md) , [Arch MultiMaterial/pl](Arch_MultiMaterial/pl.md) , [Arch Nest/pl](Arch_Nest/pl.md) , [Arch OBJ/pl](Arch_OBJ/pl.md) , [Arch Panel Cut/pl](Arch_Panel_Cut/pl.md) , [Arch Panel Sheet/pl](Arch_Panel_Sheet/pl.md) , [Arch panel tutorial/pl](Arch_panel_tutorial/pl.md) , [Arch Panel/pl](Arch_Panel/pl.md) , [Arch Pipe/pl](Arch_Pipe/pl.md) , [Arch PipeConnector/pl](Arch_PipeConnector/pl.md) , [Arch Preferences/pl](Arch_Preferences/pl.md) , [Arch Profile/pl](Arch_Profile/pl.md) , [Arch Project/pl](Arch_Project/pl.md) , [Arch Rebar BentShape/pl](Arch_Rebar_BentShape/pl.md) , [Arch Rebar Drawing Dimensioning/pl](Arch_Rebar_Drawing_Dimensioning/pl.md) , [Arch Rebar Helical/pl](Arch_Rebar_Helical/pl.md) , [Arch Rebar LShape/pl](Arch_Rebar_LShape/pl.md) , [Arch Rebar Stirrup/pl](Arch_Rebar_Stirrup/pl.md) , [Arch Rebar Straight/pl](Arch_Rebar_Straight/pl.md) , [Arch Rebar UShape/pl](Arch_Rebar_UShape/pl.md) , [Arch Rebar/pl](Arch_Rebar/pl.md) , [Arch Reference/pl](Arch_Reference/pl.md) , [Arch Remove/pl](Arch_Remove/pl.md) , [Arch RemoveShape/pl](Arch_RemoveShape/pl.md) , [Arch Roof/pl](Arch_Roof/pl.md) , [Arch Schedule/pl](Arch_Schedule/pl.md) , [Arch SectionPlane/pl](Arch_SectionPlane/pl.md) , [Arch SelectNonSolidMeshes/pl](Arch_SelectNonSolidMeshes/pl.md) , [Arch SetMaterial/pl](Arch_SetMaterial/pl.md) , [Arch SHP/pl](Arch_SHP/pl.md) , [Arch Site/pl](Arch_Site/pl.md) , [Arch Space/pl](Arch_Space/pl.md) , [Arch SplitMesh/pl](Arch_SplitMesh/pl.md) , [Arch Stairs/pl](Arch_Stairs/pl.md) , [Arch Structure/pl](Arch_Structure/pl.md) , [Arch Survey/pl](Arch_Survey/pl.md) , [Arch ToggleIfcBrepFlag/pl](Arch_ToggleIfcBrepFlag/pl.md) , [Arch ToggleSubs/pl](Arch_ToggleSubs/pl.md) , [Arch Truss/pl](Arch_Truss/pl.md) , [Arch tutorial/pl](Arch_tutorial/pl.md) , [Arch Wall/pl](Arch_Wall/pl.md) , [Arch Window/pl](Arch_Window/pl.md) , [Arch Workbench/pl](Arch_Workbench/pl.md) , [Assembly/pl](Assembly/pl.md) , [Assembly2 Workbench/pl](Assembly2_Workbench/pl.md) , [Assembly3 Workbench/pl](Assembly3_Workbench/pl.md) , [Assembly4 Workbench/pl](Assembly4_Workbench/pl.md) , [Asymptote/pl](Asymptote/pl.md) , [Base API/pl](Base_API/pl.md) , [Basic Attachment Tutorial/pl](Basic_Attachment_Tutorial/pl.md) , [Basic modeling tutorial/pl](Basic_modeling_tutorial/pl.md) , [Basic Part Design Tutorial/pl](Basic_Part_Design_Tutorial/pl.md) , [Basic Sketcher Tutorial/pl](Basic_Sketcher_Tutorial/pl.md) , [Basic TechDraw Tutorial/pl](Basic_TechDraw_Tutorial/pl.md) , [BIM Box/pl](BIM_Box/pl.md) , [BIM Classification/pl](BIM_Classification/pl.md) , [BIM IfcElements/pl](BIM_IfcElements/pl.md) , [BIM IfcProperties/pl](BIM_IfcProperties/pl.md) , [BIM IfcQuantities/pl](BIM_IfcQuantities/pl.md) , [BIM Layers/pl](BIM_Layers/pl.md) , [BIM Library/pl](BIM_Library/pl.md) , [BIM Preflight/pl](BIM_Preflight/pl.md) , [BIM Project/pl](BIM_Project/pl.md) , [BIM Views/pl](BIM_Views/pl.md) , [BIM Workbench/pl](BIM_Workbench/pl.md) , [Bitmap/pl](Bitmap/pl.md) , [Body/pl](Body/pl.md) , [BOLTSFC Workbench/pl](BOLTSFC_Workbench/pl.md) , [Branding/pl](Branding/pl.md) , [Bug Triage/pl](Bug_Triage/pl.md) , [CadQuery Workbench/pl](CadQuery_Workbench/pl.md) , [Cfd Workbench/pl](Cfd_Workbench/pl.md) , [Combo view/pl](Combo_view/pl.md) , [Compile on Docker/pl](Compile_on_Docker/pl.md) , [Compile on Linux/pl](Compile_on_Linux/pl.md) , [Compile on MacOS/pl](Compile_on_MacOS/pl.md) , [Compile on MinGW/pl](Compile_on_MinGW/pl.md) , [Compile on Windows/pl](Compile_on_Windows/pl.md) , [Compiling/pl](Compiling/pl.md) , [Complete Workbench/pl](Complete_Workbench/pl.md) , [Console API/pl](Console_API/pl.md) , [Constructive solid geometry/pl](Constructive_solid_geometry/pl.md) , [Contributors/pl](Contributors/pl.md) , [Creating a simple part with PartDesign/pl](Creating_a_simple_part_with_PartDesign/pl.md) , [Crowdin Administration/pl](Crowdin_Administration/pl.md) , [Crowdin Scripts/pl](Crowdin_Scripts/pl.md) , [CurvedShapes Workbench/pl](CurvedShapes_Workbench/pl.md) , [Customize Toolbars/pl](Customize_Toolbars/pl.md) , [DAG view/pl](DAG_view/pl.md) , [Datum/pl](Datum/pl.md) , [Debian development/pl](Debian_development/pl.md) , [Debian Unstable/pl](Debian_Unstable/pl.md) , [Developer hub/pl](Developer_hub/pl.md) , [Document structure/pl](Document_structure/pl.md) , [Donate/pl](Donate/pl.md) , [Download/pl](Download/pl.md) , [Draft AddConstruction/pl](Draft_AddConstruction/pl.md) , [Draft AddToGroup/pl](Draft_AddToGroup/pl.md) , [Draft annotation scale widget/pl](Draft_annotation_scale_widget/pl.md) , [Draft AnnotationStyleEditor/pl](Draft_AnnotationStyleEditor/pl.md) , [Draft API/pl](Draft_API/pl.md) , [Draft ApplyStyle/pl](Draft_ApplyStyle/pl.md) , [Draft Arc 3Points/pl](Draft_Arc_3Points/pl.md) , [Draft Arc/pl](Draft_Arc/pl.md) , [Draft Array/pl](Draft_Array/pl.md) , [Draft AutoGroup/pl](Draft_AutoGroup/pl.md) , [Draft BezCurve/pl](Draft_BezCurve/pl.md) , [Draft BSpline/pl](Draft_BSpline/pl.md) , [Draft Circle/pl](Draft_Circle/pl.md) , [Draft CircularArray/pl](Draft_CircularArray/pl.md) , [Draft Clone/pl](Draft_Clone/pl.md) , [Draft Constrain/pl](Draft_Constrain/pl.md) , [Draft CubicBezCurve/pl](Draft_CubicBezCurve/pl.md) , [Draft DAT/pl](Draft_DAT/pl.md) , [Draft Dimension/pl](Draft_Dimension/pl.md) , [Draft Downgrade/pl](Draft_Downgrade/pl.md) , [Draft Draft2Sketch/pl](Draft_Draft2Sketch/pl.md) , [Draft Drawing/pl](Draft_Drawing/pl.md) , [Draft DXF/pl](Draft_DXF/pl.md) , [Draft Edit/pl](Draft_Edit/pl.md) , [Draft Ellipse/pl](Draft_Ellipse/pl.md) , [Draft Facebinder/pl](Draft_Facebinder/pl.md) , [Draft Fillet/pl](Draft_Fillet/pl.md) , [Draft FlipDimension/pl](Draft_FlipDimension/pl.md) , [Draft Heal/pl](Draft_Heal/pl.md) , [Draft Join/pl](Draft_Join/pl.md) , [Draft Label/pl](Draft_Label/pl.md) , [Draft Layer/pl](Draft_Layer/pl.md) , [Draft Line/pl](Draft_Line/pl.md) , [Draft Mirror/pl](Draft_Mirror/pl.md) , [Draft Move/pl](Draft_Move/pl.md) , [Draft OCA/pl](Draft_OCA/pl.md) , [Draft Offset/pl](Draft_Offset/pl.md) , [Draft OrthoArray/pl](Draft_OrthoArray/pl.md) , [Draft PathArray/pl](Draft_PathArray/pl.md) , [Draft Pattern/pl](Draft_Pattern/pl.md) , [Draft Point/pl](Draft_Point/pl.md) , [Draft PointArray/pl](Draft_PointArray/pl.md) , [Draft PolarArray/pl](Draft_PolarArray/pl.md) , [Draft Polygon/pl](Draft_Polygon/pl.md) , [Draft Preferences/pl](Draft_Preferences/pl.md) , [Draft Rectangle/pl](Draft_Rectangle/pl.md) , [Draft Rotate/pl](Draft_Rotate/pl.md) , [Draft Scale/pl](Draft_Scale/pl.md) , [Draft SelectGroup/pl](Draft_SelectGroup/pl.md) , [Draft SelectPlane/pl](Draft_SelectPlane/pl.md) , [Draft SetStyle/pl](Draft_SetStyle/pl.md) , [Draft Shape2DView/pl](Draft_Shape2DView/pl.md) , [Draft ShapeString tutorial/pl](Draft_ShapeString_tutorial/pl.md) , [Draft ShapeString/pl](Draft_ShapeString/pl.md) , [Draft ShowSnapBar/pl](Draft_ShowSnapBar/pl.md) , [Draft Slope/pl](Draft_Slope/pl.md) , [Draft Snap Angle/pl](Draft_Snap_Angle/pl.md) , [Draft Snap Center/pl](Draft_Snap_Center/pl.md) , [Draft Snap Dimensions/pl](Draft_Snap_Dimensions/pl.md) , [Draft Snap Endpoint/pl](Draft_Snap_Endpoint/pl.md) , [Draft Snap Extension/pl](Draft_Snap_Extension/pl.md) , [Draft Snap Grid/pl](Draft_Snap_Grid/pl.md) , [Draft Snap Intersection/pl](Draft_Snap_Intersection/pl.md) , [Draft Snap Lock/pl](Draft_Snap_Lock/pl.md) , [Draft Snap Midpoint/pl](Draft_Snap_Midpoint/pl.md) , [Draft Snap Near/pl](Draft_Snap_Near/pl.md) , [Draft Snap Ortho/pl](Draft_Snap_Ortho/pl.md) , [Draft Snap Parallel/pl](Draft_Snap_Parallel/pl.md) , [Draft Snap Perpendicular/pl](Draft_Snap_Perpendicular/pl.md) , [Draft Snap Special/pl](Draft_Snap_Special/pl.md) , [Draft snap widget/pl](Draft_snap_widget/pl.md) , [Draft Snap WorkingPlane/pl](Draft_Snap_WorkingPlane/pl.md) , [Draft Snap/pl](Draft_Snap/pl.md) , [Draft Split/pl](Draft_Split/pl.md) , [Draft Stretch/pl](Draft_Stretch/pl.md) , [Draft SubelementHighlight/pl](Draft_SubelementHighlight/pl.md) , [Draft SVG/pl](Draft_SVG/pl.md) , [Draft Text/pl](Draft_Text/pl.md) , [Draft ToggleConstructionMode/pl](Draft_ToggleConstructionMode/pl.md) , [Draft ToggleContinueMode/pl](Draft_ToggleContinueMode/pl.md) , [Draft ToggleDisplayMode/pl](Draft_ToggleDisplayMode/pl.md) , [Draft ToggleGrid/pl](Draft_ToggleGrid/pl.md) , [Draft Tray/pl](Draft_Tray/pl.md) , [Draft Trimex/pl](Draft_Trimex/pl.md) , [Draft tutorial/pl](Draft_tutorial/pl.md) , [Draft Upgrade/pl](Draft_Upgrade/pl.md) , [Draft Wire/pl](Draft_Wire/pl.md) , [Draft WireToBSpline/pl](Draft_WireToBSpline/pl.md) , [Draft Workbench/pl](Draft_Workbench/pl.md) , [Draft WorkingPlaneProxy/pl](Draft_WorkingPlaneProxy/pl.md) , [Drawing Annotation/pl](Drawing_Annotation/pl.md) , [Drawing Clip/pl](Drawing_Clip/pl.md) , [Drawing Dimensioning Addon/pl](Drawing_Dimensioning_Addon/pl.md) , [Drawing Landscape A3/pl](Drawing_Landscape_A3/pl.md) , [Drawing Open SVG/pl](Drawing_Open_SVG/pl.md) , [Drawing Openbrowser/pl](Drawing_Openbrowser/pl.md) , [Drawing Orthoviews/pl](Drawing_Orthoviews/pl.md) , [Drawing Save/pl](Drawing_Save/pl.md) , [Drawing Symbol/pl](Drawing_Symbol/pl.md) , [Drawing Template HowTo/pl](Drawing_Template_HowTo/pl.md) , [Drawing templates/pl](Drawing_templates/pl.md) , [Drawing tutorial/pl](Drawing_tutorial/pl.md) , [Drawing View/pl](Drawing_View/pl.md) , [Drawing Workbench/pl](Drawing_Workbench/pl.md) , [Drawing/pl](Drawing/pl.md) , [Dxf Importer Install/pl](Dxf_Importer_Install/pl.md) , [DXF/pl](DXF/pl.md) , [DynamicData Workbench/pl](DynamicData_Workbench/pl.md) , [Engine Block Tutorial/pl](Engine_Block_Tutorial/pl.md) , [ExplodedAssembly Workbench/pl](ExplodedAssembly_Workbench/pl.md) , [Export to STL or OBJ/pl](Export_to_STL_or_OBJ/pl.md) , [External workbenches/pl](External_workbenches/pl.md) , [Extra python modules/pl](Extra_python_modules/pl.md) , [Fasteners BOM/pl](Fasteners_BOM/pl.md) , [Fasteners Workbench/pl](Fasteners_Workbench/pl.md) , [FCGear Workbench/pl](FCGear_Workbench/pl.md) , [Feature editing/pl](Feature_editing/pl.md) , [Feature list/pl](Feature_list/pl.md) , [Feature/pl](Feature/pl.md) , [FeaturePython Custom Properties/pl](FeaturePython_Custom_Properties/pl.md) , [FEM Analysis/pl](FEM_Analysis/pl.md) , [FEM Beginner tutorial/pl](FEM_Beginner_tutorial/pl.md) , [FEM CalculiX Cantilever 3D/pl](FEM_CalculiX_Cantilever_3D/pl.md) , [FEM Concrete/pl](FEM_Concrete/pl.md) , [FEM ConstraintFixed/pl](FEM_ConstraintFixed/pl.md) , [FEM ConstraintForce/pl](FEM_ConstraintForce/pl.md) , [FEM ConstraintPressure/pl](FEM_ConstraintPressure/pl.md) , [FEM EquationHeat/pl](FEM_EquationHeat/pl.md) , [FEM Install/pl](FEM_Install/pl.md) , [FEM MaterialMechanicalNonlinear/pl](FEM_MaterialMechanicalNonlinear/pl.md) , [FEM MaterialReinforced/pl](FEM_MaterialReinforced/pl.md) , [FEM MaterialSolid/pl](FEM_MaterialSolid/pl.md) , [FEM Mesh/pl](FEM_Mesh/pl.md) , [FEM MeshGmshFromShape/pl](FEM_MeshGmshFromShape/pl.md) , [FEM project/pl](FEM_project/pl.md) , [FEM ResultShow/pl](FEM_ResultShow/pl.md) , [FEM ResultsPurge/pl](FEM_ResultsPurge/pl.md) , [FEM Shear of a Composite Block/pl](FEM_Shear_of_a_Composite_Block/pl.md) , [FEM Solver/pl](FEM_Solver/pl.md) , [FEM SolverControl/pl](FEM_SolverControl/pl.md) , [FEM SolverRun/pl](FEM_SolverRun/pl.md) , [FEM Tutorial Python/pl](FEM_Tutorial_Python/pl.md) , [FEM tutorial/pl](FEM_tutorial/pl.md) , [FEM Workbench/pl](FEM_Workbench/pl.md) , [File Format FCStd/pl](File_Format_FCStd/pl.md) , [Fine-tuning/pl](Fine-tuning/pl.md) , [Flamingo Workbench/pl](Flamingo_Workbench/pl.md) , [FreeCAD and DWG Import/pl](FreeCAD_and_DWG_Import/pl.md) , [FreeCAD and DXF Import/pl](FreeCAD_and_DXF_Import/pl.md) , [FreeCAD API/pl](FreeCAD_API/pl.md) , [FreeCAD Build Tool/pl](FreeCAD_Build_Tool/pl.md) , [FreeCADGui API/pl](FreeCADGui_API/pl.md) , [Frequently asked questions/pl](Frequently_asked_questions/pl.md) , [Getting started/pl](Getting_started/pl.md) , [Glossary/pl](Glossary/pl.md) , [GuiCommand model/pl](GuiCommand_model/pl.md) , [Template:GuiCommand/pl](Template:GuiCommand/pl.md) , [Template:GuiCommandAddon/pl](Template:GuiCommandAddon/pl.md) , [Help FreeCAD/pl](Help_FreeCAD/pl.md) , [Help/pl](Help/pl.md) , [How to install additional workbenches/pl](How_to_install_additional_workbenches/pl.md) , [How to install macros/pl](How_to_install_macros/pl.md) , [IfcOpenShell/pl](IfcOpenShell/pl.md) , [Image CreateImagePlane/pl](Image_CreateImagePlane/pl.md) , [Image Open/pl](Image_Open/pl.md) , [Image Scaling/pl](Image_Scaling/pl.md) , [Image Workbench/pl](Image_Workbench/pl.md) , [Import Export Preferences/pl](Import_Export_Preferences/pl.md) , [Import Export/pl](Import_Export/pl.md) , [Import from STL or OBJ/pl](Import_from_STL_or_OBJ/pl.md) , [Import OpenSCAD code/pl](Import_OpenSCAD_code/pl.md) , [Import text and geometry from Inkscape/pl](Import_text_and_geometry_from_Inkscape/pl.md) , [Inspection Workbench/pl](Inspection_Workbench/pl.md) , [Installing additional components/pl](Installing_additional_components/pl.md) , [Installing Helpfile/pl](Installing_Helpfile/pl.md) , [Installing on Linux/pl](Installing_on_Linux/pl.md) , [Installing on Mac/pl](Installing_on_Mac/pl.md) , [Installing on Windows/pl](Installing_on_Windows/pl.md) , [Interface Customization/pl](Interface_Customization/pl.md) , [Interface/pl](Interface/pl.md) , [KicadStepUp Workbench/pl](KicadStepUp_Workbench/pl.md) , [Lattice2 Workbench/pl](Lattice2_Workbench/pl.md) , [Licence/pl](Licence/pl.md) , [Linux packaging/pl](Linux_packaging/pl.md) , [Localisation/pl](Localisation/pl.md) , [Macro AeroFoil/pl](Macro_AeroFoil/pl.md) , [Macro Alias Manager/pl](Macro_Alias_Manager/pl.md) , [Macro Align Camera to Working Plane/pl](Macro_Align_Camera_to_Working_Plane/pl.md) , [Macro Align Face Object to View/pl](Macro_Align_Face_Object_to_View/pl.md) , [Macro Align Working Plane to Camera/pl](Macro_Align_Working_Plane_to_Camera/pl.md) , [Macro ArrayCopy/pl](Macro_ArrayCopy/pl.md) , [Macro Automatic drawing/pl](Macro_Automatic_drawing/pl.md) , [Macro CartoucheFC 2/pl](Macro_CartoucheFC_2/pl.md) , [Macro CartoucheFC Full/pl](Macro_CartoucheFC_Full/pl.md) , [Macro CartoucheFC/pl](Macro_CartoucheFC/pl.md) , [Macro Corner shapes wizard/update/pl](Macro_Corner_shapes_wizard/update/pl.md) , [Macro Draw 2D Function/pl](Macro_Draw_2D_Function/pl.md) , [Macro export transient FEM results/pl](Macro_export_transient_FEM_results/pl.md) , [Macro FaceToSketch/pl](Macro_FaceToSketch/pl.md) , [Macro FCCircularText/pl](Macro_FCCircularText/pl.md) , [Macro FCSpreadSheet Extract/pl](Macro_FCSpreadSheet_Extract/pl.md) , [Macro FCSpring Helix Variable/pl](Macro_FCSpring_Helix_Variable/pl.md) , [Macro FCTreeView/pl](Macro_FCTreeView/pl.md) , [Macro findConfigFiles/pl](Macro_findConfigFiles/pl.md) , [Macro FlattenWire/pl](Macro_FlattenWire/pl.md) , [Macro FlattenWire3Points/pl](Macro_FlattenWire3Points/pl.md) , [Macro FreeCAD to Kerkythea/pl](Macro_FreeCAD_to_Kerkythea/pl.md) , [Macro GMSH/pl](Macro_GMSH/pl.md) , [Macro Half-Hull Model/pl](Macro_Half-Hull_Model/pl.md) , [Macro HealArcs/pl](Macro_HealArcs/pl.md) , [Macro HighlightDifference/pl](Macro_HighlightDifference/pl.md) , [Macro ImperialScales/pl](Macro_ImperialScales/pl.md) , [Macro JointWire/pl](Macro_JointWire/pl.md) , [Macro Kerkythea/pl](Macro_Kerkythea/pl.md) , [Macro MacroMenu/pl](Macro_MacroMenu/pl.md) , [Macro MultiCopy/pl](Macro_MultiCopy/pl.md) , [Macro Normal Vector/pl](Macro_Normal_Vector/pl.md) , [Macro Parametric Curve FP/pl](Macro_Parametric_Curve_FP/pl.md) , [Macro Repro Wire/pl](Macro_Repro_Wire/pl.md) , [Macro screw maker1 2/pl](Macro_screw_maker1_2/pl.md) , [Macro SpreadsheetTools/pl](Macro_SpreadsheetTools/pl.md) , [Macro WorkFeatures/pl](Macro_WorkFeatures/pl.md) , [Template:Macro/pl](Template:Macro/pl.md) , [Main Page/pl](Main_Page/pl.md) , [Main view area/pl](Main_view_area/pl.md) , [Manipulator Workbench/pl](Manipulator_Workbench/pl.md) , [Manipulator/pl](Manipulator/pl.md) , [Manual:Creating renderings/pl](Manual:Creating_renderings/pl.md) , [Material editor/pl](Material_editor/pl.md) , [Material/pl](Material/pl.md) , [Matrix API/pl](Matrix_API/pl.md) , [Measurement Of Angles On Holes/pl](Measurement_Of_Angles_On_Holes/pl.md) , [Mesh AddFacet/pl](Mesh_AddFacet/pl.md) , [Mesh API/pl](Mesh_API/pl.md) , [Mesh BoundingBox/pl](Mesh_BoundingBox/pl.md) , [Mesh BuildRegularSolid/pl](Mesh_BuildRegularSolid/pl.md) , [Mesh CrossSections/pl](Mesh_CrossSections/pl.md) , [Mesh CurvatureInfo/pl](Mesh_CurvatureInfo/pl.md) , [Mesh Decimating/pl](Mesh_Decimating/pl.md) , [Mesh Difference/pl](Mesh_Difference/pl.md) , [Mesh EvaluateFacet/pl](Mesh_EvaluateFacet/pl.md) , [Mesh EvaluateSolid/pl](Mesh_EvaluateSolid/pl.md) , [Mesh Evaluation/pl](Mesh_Evaluation/pl.md) , [Mesh Export/pl](Mesh_Export/pl.md) , [Mesh Feature/pl](Mesh_Feature/pl.md) , [Mesh FillInteractiveHole/pl](Mesh_FillInteractiveHole/pl.md) , [Mesh FillupHoles/pl](Mesh_FillupHoles/pl.md) , [Mesh FlipNormals/pl](Mesh_FlipNormals/pl.md) , [Mesh FromPartShape/pl](Mesh_FromPartShape/pl.md) , [Mesh HarmonizeNormals/pl](Mesh_HarmonizeNormals/pl.md) , [Mesh Import/pl](Mesh_Import/pl.md) , [Mesh Intersection/pl](Mesh_Intersection/pl.md) , [Mesh Merge/pl](Mesh_Merge/pl.md) , [Mesh MeshObject/pl](Mesh_MeshObject/pl.md) , [Mesh PolyCut/pl](Mesh_PolyCut/pl.md) , [Mesh PolyTrim/pl](Mesh_PolyTrim/pl.md) , [Mesh RemeshGmsh/pl](Mesh_RemeshGmsh/pl.md) , [Mesh RemoveCompByHand/pl](Mesh_RemoveCompByHand/pl.md) , [Mesh RemoveComponents/pl](Mesh_RemoveComponents/pl.md) , [Mesh Scale/pl](Mesh_Scale/pl.md) , [Mesh SectionByPlane/pl](Mesh_SectionByPlane/pl.md) , [Mesh Segmentation/pl](Mesh_Segmentation/pl.md) , [Mesh SegmentationBestFit/pl](Mesh_SegmentationBestFit/pl.md) , [Mesh Smoothing/pl](Mesh_Smoothing/pl.md) , [Mesh SplitComponents/pl](Mesh_SplitComponents/pl.md) , [Mesh TrimByPlane/pl](Mesh_TrimByPlane/pl.md) , [Mesh Union/pl](Mesh_Union/pl.md) , [Mesh VertexCurvature/pl](Mesh_VertexCurvature/pl.md) , [Mesh Workbench/pl](Mesh_Workbench/pl.md) , [Mesh/pl](Mesh/pl.md) , [MeshPart CreateFlatFace/pl](MeshPart_CreateFlatFace/pl.md) , [MeshPart CreateFlatMesh/pl](MeshPart_CreateFlatMesh/pl.md) , [Migrating to FreeCAD from Fusion360/pl](Migrating_to_FreeCAD_from_Fusion360/pl.md) , [Migrating to FreeCAD from OnShape/pl](Migrating_to_FreeCAD_from_OnShape/pl.md) , [Misc templates Full/pl](Misc_templates_Full/pl.md) , [Model/pl](Model/pl.md) , [ModernUI Workbench/pl](ModernUI_Workbench/pl.md) , [MOOC Workbench/pl](MOOC_Workbench/pl.md) , [Mouse navigation/pl](Mouse_navigation/pl.md) , [Naming project/pl](Naming_project/pl.md) , [Navigation Cube/pl](Navigation_Cube/pl.md) , [Object API/pl](Object_API/pl.md) , [Object name/pl](Object_name/pl.md) , [Offsite tutorials/pl](Offsite_tutorials/pl.md) , [Online Help Startpage/pl](Online_Help_Startpage/pl.md) , [Online Help Toc/pl](Online_Help_Toc/pl.md) , [OpenSCAD AddOpenSCADElement/pl](OpenSCAD_AddOpenSCADElement/pl.md) , [OpenSCAD ColorCodeShape/pl](OpenSCAD_ColorCodeShape/pl.md) , [OpenSCAD CSG/pl](OpenSCAD_CSG/pl.md) , [OpenSCAD Edgestofaces/pl](OpenSCAD_Edgestofaces/pl.md) , [OpenSCAD ExpandPlacements/pl](OpenSCAD_ExpandPlacements/pl.md) , [OpenSCAD ExplodeGroup/pl](OpenSCAD_ExplodeGroup/pl.md) , [OpenSCAD Hull/pl](OpenSCAD_Hull/pl.md) , [OpenSCAD IncreaseToleranceFeature/pl](OpenSCAD_IncreaseToleranceFeature/pl.md) , [OpenSCAD MeshBoolean/pl](OpenSCAD_MeshBoolean/pl.md) , [OpenSCAD Minkowski/pl](OpenSCAD_Minkowski/pl.md) , [OpenSCAD Preferences/pl](OpenSCAD_Preferences/pl.md) , [OpenSCAD RefineShapeFeature/pl](OpenSCAD_RefineShapeFeature/pl.md) , [OpenSCAD RemoveSubtree/pl](OpenSCAD_RemoveSubtree/pl.md) , [OpenSCAD ReplaceObject/pl](OpenSCAD_ReplaceObject/pl.md) , [OpenSCAD Workbench/pl](OpenSCAD_Workbench/pl.md) , [OSE 3D Printer Workbench/pl](OSE_3D_Printer_Workbench/pl.md) , [OSE Piping Workbench/pl](OSE_Piping_Workbench/pl.md) , [Packaging/pl](Packaging/pl.md) , [Part and PartDesign/pl](Part_and_PartDesign/pl.md) , [Part API/pl](Part_API/pl.md) , [Part Boolean/pl](Part_Boolean/pl.md) , [Part BooleanFragments/pl](Part_BooleanFragments/pl.md) , [Part Box/pl](Part_Box/pl.md) , [Part Builder/pl](Part_Builder/pl.md) , [Part Chamfer/pl](Part_Chamfer/pl.md) , [Part CheckGeometry/pl](Part_CheckGeometry/pl.md) , [Part Circle/pl](Part_Circle/pl.md) , [Part Common/pl](Part_Common/pl.md) , [Part CompCompoundTools/pl](Part_CompCompoundTools/pl.md) , [Part CompJoinFeatures/pl](Part_CompJoinFeatures/pl.md) , [Part CompOffsetTools/pl](Part_CompOffsetTools/pl.md) , [Part Compound/pl](Part_Compound/pl.md) , [Part CompoundFilter/pl](Part_CompoundFilter/pl.md) , [Part Cone/pl](Part_Cone/pl.md) , [Part CrossSections/pl](Part_CrossSections/pl.md) , [Part Cut/pl](Part_Cut/pl.md) , [Part Cylinder/pl](Part_Cylinder/pl.md) , [Part Defeaturing/pl](Part_Defeaturing/pl.md) , [Part EditAttachment/pl](Part_EditAttachment/pl.md) , [Part ElementCopy/pl](Part_ElementCopy/pl.md) , [Part Ellipse/pl](Part_Ellipse/pl.md) , [Part Ellipsoid/pl](Part_Ellipsoid/pl.md) , [Part ExplodeCompound/pl](Part_ExplodeCompound/pl.md) , [Part Export/pl](Part_Export/pl.md) , [Part Extrude/pl](Part_Extrude/pl.md) , [Part FaceColors/pl](Part_FaceColors/pl.md) , [Part Feature/pl](Part_Feature/pl.md) , [Part Fillet/pl](Part_Fillet/pl.md) , [Part Fuse/pl](Part_Fuse/pl.md) , [Part Helix/pl](Part_Helix/pl.md) , [Part Import/pl](Part_Import/pl.md) , [Part JoinConnect/pl](Part_JoinConnect/pl.md) , [Part JoinCutout/pl](Part_JoinCutout/pl.md) , [Part JoinEmbed/pl](Part_JoinEmbed/pl.md) , [Part Line/pl](Part_Line/pl.md) , [Part Loft/pl](Part_Loft/pl.md) , [Part MakeFace/pl](Part_MakeFace/pl.md) , [Part MakeSolid/pl](Part_MakeSolid/pl.md) , [Part Measure Menu/pl](Part_Measure_Menu/pl.md) , [Part Mirror/pl](Part_Mirror/pl.md) , [Part Module/pl](Part_Module/pl.md) , [Part Offset/pl](Part_Offset/pl.md) , [Part Offset2D/pl](Part_Offset2D/pl.md) , [Part Part2DObject/pl](Part_Part2DObject/pl.md) , [Part Plane/pl](Part_Plane/pl.md) , [Part Point/pl](Part_Point/pl.md) , [Part Primitives/pl](Part_Primitives/pl.md) , [Part Prism/pl](Part_Prism/pl.md) , [Part ProjectionOnSurface/pl](Part_ProjectionOnSurface/pl.md) , [Part RefineShape/pl](Part_RefineShape/pl.md) , [Part RegularPolygon/pl](Part_RegularPolygon/pl.md) [Category:Documentation/pl](Category:Documentation/pl.md) + +--- +[documentation index](../README.md) > Category:User Documentation/pl diff --git a/wiki/translations/pl/Category:Web.md b/wiki/translations/pl/Category:Web.md index 12c9ec92d6..d8ecc1584f 100644 --- a/wiki/translations/pl/Category:Web.md +++ b/wiki/translations/pl/Category:Web.md @@ -6,3 +6,6 @@ Ta kategoria zawiera strony, które nawiązują do środowiska pracy [Web](Web_W [Artwork Web/pl](Artwork_Web/pl.md) , [Web Workbench/pl](Web_Workbench/pl.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Web/pl diff --git a/wiki/translations/pl/Category:Wiki.md b/wiki/translations/pl/Category:Wiki.md index b844a8d019..c1ef99a614 100644 --- a/wiki/translations/pl/Category:Wiki.md +++ b/wiki/translations/pl/Category:Wiki.md @@ -6,3 +6,6 @@ This category contains all documents that relate to the Wiki. [Glossary/pl](Glossary/pl.md) , [Localisation Sidebar/pl](Localisation_Sidebar/pl.md) , [Localisation/pl](Localisation/pl.md) , [WikiPages/pl](WikiPages/pl.md) [Category:Administration/pl](Category:Administration/pl.md) [Category:Categories/pl](Category:Categories/pl.md) [Category:Documentation/pl](Category:Documentation/pl.md) + +--- +[documentation index](../README.md) > Category:Wiki/pl diff --git a/wiki/translations/pl/Category:Wiki_Documentation.md b/wiki/translations/pl/Category:Wiki_Documentation.md index c752041c29..b30f26aa49 100644 --- a/wiki/translations/pl/Category:Wiki_Documentation.md +++ b/wiki/translations/pl/Category:Wiki_Documentation.md @@ -6,3 +6,6 @@ Ta kategoria zawiera listę stron, które odnoszą się do efektywnego korzystan [WikiPages/pl](WikiPages/pl.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > Category:Wiki Documentation/pl diff --git a/wiki/translations/pl/Category:Workbenches.md b/wiki/translations/pl/Category:Workbenches.md index c0e2390643..e34d8f1a28 100644 --- a/wiki/translations/pl/Category:Workbenches.md +++ b/wiki/translations/pl/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/pl](Arch_Workbench/pl.md) , [Draft Workbench/pl](Draft_Workbench/pl.md) , [FEM Workbench/pl](FEM_Workbench/pl.md) , [Image Workbench/pl](Image_Workbench/pl.md) , [Inspection Workbench/pl](Inspection_Workbench/pl.md) , [Mesh Workbench/pl](Mesh_Workbench/pl.md) , [OpenSCAD Workbench/pl](OpenSCAD_Workbench/pl.md) , [Part Module/pl](Part_Module/pl.md) , [PartDesign Workbench/pl](PartDesign_Workbench/pl.md) , [Path Workbench/pl](Path_Workbench/pl.md) , [Points Workbench/pl](Points_Workbench/pl.md) , [Raytracing Workbench/pl](Raytracing_Workbench/pl.md) , [Reverse Engineering Workbench/pl](Reverse_Engineering_Workbench/pl.md) , [Robot Workbench/pl](Robot_Workbench/pl.md) , [Sketcher Workbench/pl](Sketcher_Workbench/pl.md) , [Spreadsheet Workbench/pl](Spreadsheet_Workbench/pl.md) , [Start Workbench/pl](Start_Workbench/pl.md) , [Std Base/pl](Std_Base/pl.md) , [Std Edit Menu/pl](Std_Edit_Menu/pl.md) , [Std File Menu/pl](Std_File_Menu/pl.md) , [Std Help Menu/pl](Std_Help_Menu/pl.md) , [Std Macro Menu/pl](Std_Macro_Menu/pl.md) , [Std Tools Menu/pl](Std_Tools_Menu/pl.md) , [Std View Menu/pl](Std_View_Menu/pl.md) , [Std Windows Menu/pl](Std_Windows_Menu/pl.md) , [Surface Workbench/pl](Surface_Workbench/pl.md) , [TechDraw Workbench/pl](TechDraw_Workbench/pl.md) , [Testing/pl](Testing/pl.md) , [Web Workbench/pl](Web_Workbench/pl.md) , [Workbenches/pl](Workbenches/pl.md) , , , , , , , , , , , , , , , , , , [Category:User Documentation/pl](Category:User_Documentation/pl.md) [Category:Arch/pl](Category:Arch/pl.md) [Category:Draft/pl](Category:Draft/pl.md) [Category:External Workbenches/pl](Category:External_Workbenches/pl.md) [Category:FEM/pl](Category:FEM/pl.md) [Category:Image/pl](Category:Image/pl.md) [Category:Inspection/pl](Category:Inspection/pl.md) [Category:Mesh/pl](Category:Mesh/pl.md) [Category:OpenSCAD/pl](Category:OpenSCAD/pl.md) [Category:Part/pl](Category:Part/pl.md) [Category:Path/pl](Category:Path/pl.md) [Category:Plot/pl](Category:Plot/pl.md) [Category:Points/pl](Category:Points/pl.md) [Category:Raytracing/pl](Category:Raytracing/pl.md) [Category:Robot/pl](Category:Robot/pl.md) [Category:Ship/pl](Category:Ship/pl.md) [Category:Surface/pl](Category:Surface/pl.md) [Category:TechDraw/pl](Category:TechDraw/pl.md) [Category:Test Framework/pl](Category:Test_Framework/pl.md) + +--- +[documentation index](../README.md) > Category:Workbenches/pl diff --git a/wiki/translations/pl/Cfd_Workbench.md b/wiki/translations/pl/Cfd_Workbench.md index 35d1bb3b4c..4ec7dfc73a 100644 --- a/wiki/translations/pl/Cfd_Workbench.md +++ b/wiki/translations/pl/Cfd_Workbench.md @@ -1,6 +1,4 @@ # Cfd Workbench/pl - - ## Introduction @@ -61,3 +59,6 @@ To use CFD for FreeCAD [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Cfd Workbench/pl diff --git a/wiki/translations/pl/Changelog.md b/wiki/translations/pl/Changelog.md index 313fc8475a..dff6ded22c 100644 --- a/wiki/translations/pl/Changelog.md +++ b/wiki/translations/pl/Changelog.md @@ -1,5 +1,5 @@ # Changelog/pl - Dziennik zmian FreeCAD jest prowadzony na naszym trackerze Mantis: +Dziennik zmian FreeCAD jest prowadzony na naszym trackerze Mantis: @@ -7,3 +7,6 @@ [Category:Administration](Category:Administration.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Changelog/pl diff --git a/wiki/translations/pl/Code_snippets.md b/wiki/translations/pl/Code_snippets.md index 107021b2a8..ea2a802572 100644 --- a/wiki/translations/pl/Code_snippets.md +++ b/wiki/translations/pl/Code_snippets.md @@ -1,7 +1,4 @@ # Code snippets/pl - - - {{TOCright}} ## Introduction @@ -1773,3 +1770,6 @@ See [Coin3d snippets](Coin3d_snippets.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Code snippets/pl diff --git a/wiki/translations/pl/Combo_view.md b/wiki/translations/pl/Combo_view.md index b4b5c97443..fac93f24bb 100644 --- a/wiki/translations/pl/Combo_view.md +++ b/wiki/translations/pl/Combo_view.md @@ -1,5 +1,5 @@ # Combo view/pl - {{TOCright}} +{{TOCright}} ## Wprowadzenie @@ -56,4 +56,7 @@ Następnie należy aktywować widok za pomocą menu, **Widok → Panele → Wido {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Combo view/pl diff --git a/wiki/translations/pl/Command.md b/wiki/translations/pl/Command.md index 4dc2b6d9f8..e263445adf 100644 --- a/wiki/translations/pl/Command.md +++ b/wiki/translations/pl/Command.md @@ -1,6 +1,4 @@ # Command/pl - - ## Introduction @@ -101,3 +99,6 @@ See [Line drawing function](Line_drawing_function.md). }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Command_Reference|:Category:Command Reference]] page. Commands can be launched by a toolbar button, a menu item, or from a ](Category:Command_Reference|:Category:Command Reference]] page. Commands can be launched by a toolbar button, a menu item, or from a .md) > Command/pl diff --git a/wiki/translations/pl/CompileOnMac.md b/wiki/translations/pl/CompileOnMac.md index b2db61acb6..d828f2ccd3 100644 --- a/wiki/translations/pl/CompileOnMac.md +++ b/wiki/translations/pl/CompileOnMac.md @@ -1,2 +1,5 @@ # CompileOnMac/pl 1. REDIRECT [Compile on MacOS/pl](Compile_on_MacOS/pl.md) + +--- +[documentation index](../README.md) > CompileOnMac/pl diff --git a/wiki/translations/pl/CompileOnUnix.md b/wiki/translations/pl/CompileOnUnix.md index 48280aa17a..0c7297d591 100644 --- a/wiki/translations/pl/CompileOnUnix.md +++ b/wiki/translations/pl/CompileOnUnix.md @@ -1,2 +1,5 @@ # CompileOnUnix/pl 1. REDIRECT [Compile\_on\_Linux/pl](Compile_on_Linux/pl.md) + +--- +[documentation index](../README.md) > CompileOnUnix/pl diff --git a/wiki/translations/pl/CompileOnWindows.md b/wiki/translations/pl/CompileOnWindows.md index eca9932d0e..fc2ab56aec 100644 --- a/wiki/translations/pl/CompileOnWindows.md +++ b/wiki/translations/pl/CompileOnWindows.md @@ -1,2 +1,5 @@ # CompileOnWindows/pl 1. REDIRECT [Compile on Windows/pl](Compile_on_Windows/pl.md) + +--- +[documentation index](../README.md) > CompileOnWindows/pl diff --git a/wiki/translations/pl/Compile_on_Docker.md b/wiki/translations/pl/Compile_on_Docker.md index 9b598b7f1d..4a74d141cd 100644 --- a/wiki/translations/pl/Compile_on_Docker.md +++ b/wiki/translations/pl/Compile_on_Docker.md @@ -1,10 +1,4 @@ # Compile on Docker/pl - - - - - - {{TOCright}} ## Overview @@ -142,3 +136,6 @@ You can find the attached directories in the `/mnt` directory. [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Compile on Docker/pl diff --git a/wiki/translations/pl/Compile_on_Linux.md b/wiki/translations/pl/Compile_on_Linux.md index aa165e84bb..1e89a83293 100644 --- a/wiki/translations/pl/Compile_on_Linux.md +++ b/wiki/translations/pl/Compile_on_Linux.md @@ -1,10 +1,4 @@ # Compile on Linux/pl - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -1216,3 +1210,6 @@ To update FreeCAD to latest build just repeat from step 3. Update AUR repo when [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Linux/pl diff --git a/wiki/translations/pl/Compile_on_MacOS.md b/wiki/translations/pl/Compile_on_MacOS.md index 01a9482d79..b16961bc48 100644 --- a/wiki/translations/pl/Compile_on_MacOS.md +++ b/wiki/translations/pl/Compile_on_MacOS.md @@ -1,10 +1,4 @@ # Compile on MacOS/pl - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -194,3 +188,6 @@ FreeCAD can be built against the latest git master hosted on github, and launche [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS/pl diff --git a/wiki/translations/pl/Compile_on_MinGW.md b/wiki/translations/pl/Compile_on_MinGW.md index 004a21db44..cd9c8ecd6c 100644 --- a/wiki/translations/pl/Compile_on_MinGW.md +++ b/wiki/translations/pl/Compile_on_MinGW.md @@ -1,5 +1,5 @@ # Compile on MinGW/pl - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** {{TOCright}} +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** {{TOCright}} ## How to build and run FreeCAD under MSYS/MinGW @@ -256,3 +256,6 @@ Have fun! [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MinGW/pl diff --git a/wiki/translations/pl/Compile_on_Windows.md b/wiki/translations/pl/Compile_on_Windows.md index c22ac3d0a0..cd85a28794 100644 --- a/wiki/translations/pl/Compile_on_Windows.md +++ b/wiki/translations/pl/Compile_on_Windows.md @@ -1,10 +1,4 @@ # Compile on Windows/pl - - - - - - {{TOCright}} This page explains step by step **how to compile FreeCAD 0.19 or newer on Windows**. For other platforms see [Compiling](Compiling.md). @@ -465,3 +459,6 @@ See also [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows/pl diff --git a/wiki/translations/pl/Compiling.md b/wiki/translations/pl/Compiling.md index c06a784d77..26191c1046 100644 --- a/wiki/translations/pl/Compiling.md +++ b/wiki/translations/pl/Compiling.md @@ -1,5 +1,5 @@ # Compiling/pl - Każdy system operacyjny ma swoją własną stronę wprowadzającą w proces kompilacji programu FreeCAD w [Spisie treści pomocy online](Online_Help_Toc/pl.md). +Każdy system operacyjny ma swoją własną stronę wprowadzającą w proces kompilacji programu FreeCAD w [Spisie treści pomocy online](Online_Help_Toc/pl.md). ------------------------------------------------------------------------------ --------------------------------------------------------------- --------------------------------------------------------------- ------------------------------------------------------------------- @@ -20,3 +20,6 @@ Aby nauczyć się korzystać z systemu kontroli rewizji i kodu źródłowego, pr [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling/pl diff --git a/wiki/translations/pl/Complete_Workbench.md b/wiki/translations/pl/Complete_Workbench.md index a60a1d816b..d85700f6a0 100644 --- a/wiki/translations/pl/Complete_Workbench.md +++ b/wiki/translations/pl/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/pl - - - **Środowisko pracy [Complete](Complete_Workbench.md) jest przestarzałe.** @@ -14,3 +11,6 @@ Zobacz temat [dostosowywanie interfejsu użytkownika do własnych potrzeb](Inter [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/pl diff --git a/wiki/translations/pl/Console_API.md b/wiki/translations/pl/Console_API.md index cd6f2c0041..51aee4d941 100644 --- a/wiki/translations/pl/Console_API.md +++ b/wiki/translations/pl/Console_API.md @@ -1,5 +1,5 @@ # Console API/pl - **''(Październik 2019)'' Nie edytuj tych stron. Informacje są niekompletne i nieaktualne. Najnowsze API można znaleźć w [https://www.freecadweb.org/api automatycznie generowana dokumentacja API], lub wygenerować dokumentację samodzielnie, śledząc dokument [Dokumentacja źródłowa](Source_documentation/pl.md).** +**''(Październik 2019)'' Nie edytuj tych stron. Informacje są niekompletne i nieaktualne. Najnowsze API można znaleźć w [https://www.freecadweb.org/api automatycznie generowana dokumentacja API], lub wygenerować dokumentację samodzielnie, śledząc dokument [Dokumentacja źródłowa](Source_documentation/pl.md).** Ten moduł jest zawarty wewnątrz modułu FreeCAD i zawiera metody do wysyłania tekstu do konsoli wyjściowej i paska stanu programu FreeCAD. Wiadomości będą miały różny kolor, w zależności od tego czy będą to komunikaty, ostrzeżenia czy błędy. @@ -31,3 +31,6 @@ FreeCAD.Console.PrintMessage("Hello World!\n") [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Console API/pl diff --git a/wiki/translations/pl/Constructive_solid_geometry.md b/wiki/translations/pl/Constructive_solid_geometry.md index 33af539beb..463b77fee6 100644 --- a/wiki/translations/pl/Constructive_solid_geometry.md +++ b/wiki/translations/pl/Constructive_solid_geometry.md @@ -1,5 +1,5 @@ # Constructive solid geometry/pl - {{TOCright}} +{{TOCright}} ## Wprowadzenie @@ -38,3 +38,6 @@ Strona [Poradniki](Tutorials/pl.md) zawiera kilka przykładów tworzenia brył z [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Constructive solid geometry/pl diff --git a/wiki/translations/pl/Contributors.md b/wiki/translations/pl/Contributors.md index 3031f254db..eebbb134f6 100644 --- a/wiki/translations/pl/Contributors.md +++ b/wiki/translations/pl/Contributors.md @@ -1,10 +1,4 @@ # Contributors/pl - - - - - - {{TOCright}} @@ -253,3 +247,6 @@ Programiści tworzący dodatki do FreeCAD *(dostępne na stronie [Developer](Category:Developer.md) > Contributors/pl diff --git a/wiki/translations/pl/Contributors_hub.md b/wiki/translations/pl/Contributors_hub.md index 21a1718671..6ac8e6f4b6 100644 --- a/wiki/translations/pl/Contributors_hub.md +++ b/wiki/translations/pl/Contributors_hub.md @@ -1,6 +1,4 @@ # Contributors hub/pl - - ## Wprowadzenie Jeśli chcesz współtworzyć FreeCAD i wykorzystać swoją energię do rozwoju tego projektu, istnieje wiele sposobów, aby pomóc. Poniżej znajdziesz różne możliwe zadania, do których możesz się przyłączyć. @@ -23,4 +21,7 @@ Ponadto, możesz pomóc innym użytkownikom na [FreeCAD stronie wsparcia](https: ## Programista - FreeCAD -## Programista lub administrator strony WWW +## Programista lub administrator strony WWW + +--- +[documentation index](../README.md) > Contributors hub/pl diff --git a/wiki/translations/pl/Create_a_FeaturePython_object_part_I.md b/wiki/translations/pl/Create_a_FeaturePython_object_part_I.md index 037cf215c6..6d3ca1041f 100644 --- a/wiki/translations/pl/Create_a_FeaturePython_object_part_I.md +++ b/wiki/translations/pl/Create_a_FeaturePython_object_part_I.md @@ -1,10 +1,4 @@ # Create a FeaturePython object part I/pl - - - - - - {{TOCright}} ## Introduction @@ -389,3 +383,6 @@ class box(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Create a FeaturePython object part I/pl diff --git a/wiki/translations/pl/Create_a_FeaturePython_object_part_II.md b/wiki/translations/pl/Create_a_FeaturePython_object_part_II.md index 9848fa48c8..8d938f3ea2 100644 --- a/wiki/translations/pl/Create_a_FeaturePython_object_part_II.md +++ b/wiki/translations/pl/Create_a_FeaturePython_object_part_II.md @@ -1,10 +1,4 @@ # Create a FeaturePython object part II/pl - - - - - - {{TOCright}} ## Introduction @@ -402,3 +396,6 @@ class ViewProviderBox: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Create a FeaturePython object part II/pl diff --git a/wiki/translations/pl/Creating_a_FeaturePython_Box,_Part_II.md b/wiki/translations/pl/Creating_a_FeaturePython_Box,_Part_II.md index 46bfcbc5e7..b71c406001 100644 --- a/wiki/translations/pl/Creating_a_FeaturePython_Box,_Part_II.md +++ b/wiki/translations/pl/Creating_a_FeaturePython_Box,_Part_II.md @@ -1,2 +1,5 @@ # Creating a FeaturePython Box, Part II/pl 1. REDIRECT [Create\_a\_FeaturePython\_object\_part\_II/pl](Create_a_FeaturePython_object_part_II/pl.md) + +--- +[documentation index](../README.md) > Creating a FeaturePython Box, Part II/pl diff --git a/wiki/translations/pl/Creating_a_simple_part_with_PartDesign.md b/wiki/translations/pl/Creating_a_simple_part_with_PartDesign.md index aa95a96774..97cb4781c2 100644 --- a/wiki/translations/pl/Creating_a_simple_part_with_PartDesign.md +++ b/wiki/translations/pl/Creating_a_simple_part_with_PartDesign.md @@ -1,7 +1,4 @@ # Creating a simple part with PartDesign/pl - - - {{TutorialInfo/pl |Topic=Modelowanie |Level=Początkujący @@ -272,4 +269,7 @@ Możesz również kontynuować ćwiczenie umiejętności w kolejnym poradniku o {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Creating a simple part with PartDesign/pl diff --git a/wiki/translations/pl/Crowdin_Administration.md b/wiki/translations/pl/Crowdin_Administration.md index 6f442dcf90..32ffd8ceaf 100644 --- a/wiki/translations/pl/Crowdin_Administration.md +++ b/wiki/translations/pl/Crowdin_Administration.md @@ -1,6 +1,4 @@ # Crowdin Administration/pl - - ## Funkcje - Tłumacz @@ -41,3 +39,6 @@ [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Crowdin Administration/pl diff --git a/wiki/translations/pl/Crowdin_Scripts.md b/wiki/translations/pl/Crowdin_Scripts.md index 258fa6606f..22f251411a 100644 --- a/wiki/translations/pl/Crowdin_Scripts.md +++ b/wiki/translations/pl/Crowdin_Scripts.md @@ -1,5 +1,5 @@ # Crowdin Scripts/pl - {{TOCright}} +{{TOCright}} ## Zarządzanie Tłumaczeniami w programie FreeCAD @@ -91,3 +91,6 @@ Skrypt updatefromcrowdin.py ściąga zmiany z Crowdin do twojego lokalnego katal [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Crowdin Scripts/pl diff --git a/wiki/translations/pl/CurvedShapes_Workbench.md b/wiki/translations/pl/CurvedShapes_Workbench.md index 3f0d5962e6..35548e0326 100644 --- a/wiki/translations/pl/CurvedShapes_Workbench.md +++ b/wiki/translations/pl/CurvedShapes_Workbench.md @@ -1,5 +1,5 @@ # CurvedShapes Workbench/pl - } CurvedShapes External Workbench Icon {{TOCright}} +} CurvedShapes External Workbench Icon {{TOCright}} ## Introduction @@ -43,3 +43,6 @@ Recommended installation is through the FreeCAD CurvedShapes Workbench/pl diff --git a/wiki/translations/pl/Custom_icon_in_tree_view.md b/wiki/translations/pl/Custom_icon_in_tree_view.md index f77736d213..55354c7fb3 100644 --- a/wiki/translations/pl/Custom_icon_in_tree_view.md +++ b/wiki/translations/pl/Custom_icon_in_tree_view.md @@ -1,6 +1,4 @@ # Custom icon in tree view/pl - - ## Introduction This is an example of modifying the icon of a custom [viewprovider](Viewprovider.md), which are normally added to [scripted objects](scripted_objects.md). @@ -276,3 +274,6 @@ makeBox() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Custom icon in tree view/pl diff --git a/wiki/translations/pl/Customize_Toolbars.md b/wiki/translations/pl/Customize_Toolbars.md index 8f7c491fec..3f8b33e032 100644 --- a/wiki/translations/pl/Customize_Toolbars.md +++ b/wiki/translations/pl/Customize_Toolbars.md @@ -1,5 +1,5 @@ # Customize Toolbars/pl - {{TutorialInfo/pl +{{TutorialInfo/pl |Topic=Przykład |Level=początkujący |Time=5 minut @@ -122,3 +122,6 @@ Zobacz również [Dostosowywanie interfejsu użytkownika do własnych potrzeb](I [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Customize Toolbars/pl diff --git a/wiki/translations/pl/DAG_view.md b/wiki/translations/pl/DAG_view.md index 403dea9331..6a8d891ae9 100644 --- a/wiki/translations/pl/DAG_view.md +++ b/wiki/translations/pl/DAG_view.md @@ -1,6 +1,4 @@ # DAG view/pl - - ## Introduction @@ -62,4 +60,7 @@ In the [parameter editor](Std_DlgParameter.md) you can also change some properti {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > DAG view/pl diff --git a/wiki/translations/pl/DXF.md b/wiki/translations/pl/DXF.md index 1e36d18477..59071ecb63 100644 --- a/wiki/translations/pl/DXF.md +++ b/wiki/translations/pl/DXF.md @@ -1,5 +1,5 @@ # DXF/pl - {{TOCright}} +{{TOCright}} ## Background history @@ -43,3 +43,6 @@ In addition to the options under the Edit → Preferences, the [TechDraw Workben [Category:User Documentation](Category:User_Documentation.md) [Category:Draft](Category:Draft.md) [Category:TechDraw](Category:TechDraw.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > DXF/pl diff --git a/wiki/translations/pl/Datum.md b/wiki/translations/pl/Datum.md index ab4ab06280..717b1e34e9 100644 --- a/wiki/translations/pl/Datum.md +++ b/wiki/translations/pl/Datum.md @@ -1,6 +1,4 @@ # Datum/pl - - ## Introduction In FreeCAD the word \"[Datum](Datum.md)\" is normally used to refer to auxiliary geometry in the [PartDesign Workbench](PartDesign_Workbench.md). These geometrical elements will not form part of the final [Shape](Shape.md) of the [Body](Body.md), but can be used as references and supports for [sketches](Sketch.md) and other types of [features](Feature.md). @@ -46,3 +44,6 @@ Since they appeared in v0.17, datum objects were intended to be used inside [Par }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Datum/pl diff --git a/wiki/translations/pl/Debian_Unstable.md b/wiki/translations/pl/Debian_Unstable.md index 6735f4cc20..dafc2de42a 100644 --- a/wiki/translations/pl/Debian_Unstable.md +++ b/wiki/translations/pl/Debian_Unstable.md @@ -1,6 +1,4 @@ # Debian Unstable/pl - - [Debian Unstable](https://wiki.debian.org/DebianUnstable) jest dystrybucją rozwijaną, używaną dla [rozwoju dystrybucji Debian](Debian_development/pl.md) i zalecaną dla zaawansowanych użytkowników w rozwijaniu i pakietowaniu programów FreeCAD. Nowe pakiety są gotowe jak tylko zostaną przesłane i zbudowane, chyba, że przesyłający oznaczył je jako [Debian Experimental](https://wiki.debian.org/DebianExperimental), co wymaga wyraźnej instalacji *(po pewnych ustawieniach, aby włączyć dodatkową dystrybucję)* poprzez . Często osoby używające dystrybucji Debiana Testing powinny używać Debiana Unstable. Debian Testing powinien być traktowany tylko jako \"kieszeń wydania QA\", ponieważ, choć może się wydawać bardziej stabilny niż Unstable, to w rzeczywistości ma pewną wadę. Nowe pakiety są wysyłane do Debian Unstable i migrują do Testing po pewnym czasie, więc poprawki bezpieczeństwa i ważne zmiany w pakietach mogą być niepotrzebnie opóźnione. @@ -27,3 +25,6 @@ deb [http://deb.debian.org/debian](http://deb.debian.org/debian) experimental [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian Unstable/pl diff --git a/wiki/translations/pl/Debian_development.md b/wiki/translations/pl/Debian_development.md index ecf56024f9..ed48f149f1 100644 --- a/wiki/translations/pl/Debian_development.md +++ b/wiki/translations/pl/Debian_development.md @@ -1,6 +1,4 @@ # Debian development/pl - - Debian jest dystrybucją macierzystą, z której pochodzi wiele innych dystrybucji Linuksa, takich jak Ubuntu, Linux Mint i inne. W związku z tym warto skupić się szczególnie na rozwoju Debiana, ponieważ ulepszenia w Debianie będą przenoszone przez jego potomków. [Debian Unstable](Debian_Unstable.md) jest dobrą docelową dystrybucją dla rozwoju FreeCAD na Linuksie, ponieważ dostarcza najbardziej aktualne pakiety, jako dystrybucja bieżącą. Można brać udział zarówno w rozwijaniu FreeCADa na Debianie, jak i jego ekosystemu powiązanych pakietów i zależności. @@ -9,3 +7,6 @@ Debian jest dystrybucją macierzystą, z której pochodzi wiele innych dystrybuc [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian development/pl diff --git a/wiki/translations/pl/Debugging.md b/wiki/translations/pl/Debugging.md index 402e3a5299..e4142d0bd6 100644 --- a/wiki/translations/pl/Debugging.md +++ b/wiki/translations/pl/Debugging.md @@ -1,10 +1,4 @@ # Debugging/pl - - - - - - {{TOCright}} ## Test First @@ -336,3 +330,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/pl diff --git a/wiki/translations/pl/Developer_hub.md b/wiki/translations/pl/Developer_hub.md index 82ed77cbca..5df6ea2c9b 100644 --- a/wiki/translations/pl/Developer_hub.md +++ b/wiki/translations/pl/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/pl - - ![150](images/Crystal_Clear_app_tutorials.png ) This is the place to come if you want to contribute to the development of the FreeCAD software. @@ -126,3 +124,6 @@ FreeCAD, though usable in certain areas, is at the beginning of a long way into [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/pl diff --git a/wiki/translations/pl/Development_roadmap.md b/wiki/translations/pl/Development_roadmap.md index 9636f7ffce..df76dd232f 100644 --- a/wiki/translations/pl/Development_roadmap.md +++ b/wiki/translations/pl/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/pl - **Ważne: wiele z tych planowanych rozwiązań nie jest aktualnych lub zostało porzuconych. Ta strona i strony, do których ona odsyła, najprawdopodobniej zawierają przestarzałe informacje. "Łagodne" plany można znaleźć na [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker], ale na razie nie ma "twardych" planów. Jest wiele działań, które toczą się jednocześnie.** +**Ważne: wiele z tych planowanych rozwiązań nie jest aktualnych lub zostało porzuconych. Ta strona i strony, do których ona odsyła, najprawdopodobniej zawierają przestarzałe informacje. "Łagodne" plany można znaleźć na [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker], ale na razie nie ma "twardych" planów. Jest wiele działań, które toczą się jednocześnie.** FreeCAD - choć użyteczny w wielu aplikacjach - jest na początku długiej drogi do głównego nurtu CAD. Wciąż jest wiele do zrobienia, aby osiągnąć stan, w którym możemy konkurować z komercyjnym oprogramowaniem. @@ -44,3 +44,6 @@ Jak w większości [FLOSS](http://en.wikipedia.org/wiki/FLOSS) projektów, harmo [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/pl diff --git a/wiki/translations/pl/Dialog_creation.md b/wiki/translations/pl/Dialog_creation.md index 5870779250..0b3848149f 100644 --- a/wiki/translations/pl/Dialog_creation.md +++ b/wiki/translations/pl/Dialog_creation.md @@ -1,7 +1,4 @@ # Dialog creation/pl - - - {{TOCright}} ## Introduction @@ -263,3 +260,6 @@ class plane(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation/pl diff --git a/wiki/translations/pl/Dialog_creation_image_and_animated_GIF.md b/wiki/translations/pl/Dialog_creation_image_and_animated_GIF.md index 0ebbf368ad..92760e2d52 100644 --- a/wiki/translations/pl/Dialog_creation_image_and_animated_GIF.md +++ b/wiki/translations/pl/Dialog_creation_image_and_animated_GIF.md @@ -1,6 +1,4 @@ # Dialog creation image and animated GIF/pl - - ## Introduction This is an example of [dialog creation](Dialog_creation.md) with [PySide](PySide.md). @@ -51,3 +49,6 @@ patience.show() #show the image }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation image and animated GIF/pl diff --git a/wiki/translations/pl/Dialog_creation_reading_and_writing_files.md b/wiki/translations/pl/Dialog_creation_reading_and_writing_files.md index 4f4cb739c8..b647d50a59 100644 --- a/wiki/translations/pl/Dialog_creation_reading_and_writing_files.md +++ b/wiki/translations/pl/Dialog_creation_reading_and_writing_files.md @@ -1,6 +1,4 @@ # Dialog creation reading and writing files/pl - - ## Introduction This is an example of [dialog creation](Dialog_creation.md) with [PySide](PySide.md). @@ -96,3 +94,6 @@ else: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation reading and writing files/pl diff --git a/wiki/translations/pl/Dialog_creation_setting_colors.md b/wiki/translations/pl/Dialog_creation_setting_colors.md index 1f7d887683..71061907e7 100644 --- a/wiki/translations/pl/Dialog_creation_setting_colors.md +++ b/wiki/translations/pl/Dialog_creation_setting_colors.md @@ -1,6 +1,4 @@ # Dialog creation setting colors/pl - - ## Introduction This is an example of [dialog creation](Dialog_creation.md) with [PySide](PySide.md). @@ -203,3 +201,6 @@ else: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation setting colors/pl diff --git a/wiki/translations/pl/Dialog_creation_with_various_widgets.md b/wiki/translations/pl/Dialog_creation_with_various_widgets.md index 1f23519990..9e1a0b2ca6 100644 --- a/wiki/translations/pl/Dialog_creation_with_various_widgets.md +++ b/wiki/translations/pl/Dialog_creation_with_various_widgets.md @@ -1,6 +1,4 @@ # Dialog creation with various widgets/pl - - ## Introduction This is an example of [dialog creation](Dialog_creation.md) with [PySide](PySide.md). @@ -401,3 +399,6 @@ The code page and the icons [Qt\_Example](Qt_Example.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation with various widgets/pl diff --git a/wiki/translations/pl/Document_structure.md b/wiki/translations/pl/Document_structure.md index 5581357d31..dfc201f126 100644 --- a/wiki/translations/pl/Document_structure.md +++ b/wiki/translations/pl/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/pl - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) Dokument FreeCADa zawiera wszystkie obiekty twojej sceny. Może zawierać grupy i obiekty wykonane w dowolnym Środowisku pracy. Dlatego możesz przełączać się między nimi, ciągle pracując z tym samym dokumentem. Dokument jest tym co zostaje zapisane na dysku kiedy zachowujesz swoją pracę. Możesz także uruchomić kilka dokumentów jednocześnie i kilka widoków tego samego dokumentu. @@ -43,8 +37,5 @@ FreeCADGui.ActiveDocument.Blob FreeCADGui.ActiveDocument.ActiveView ``` Zwróci aktualny widok - - - - - +--- +[documentation index](../README.md) > Document structure/pl diff --git a/wiki/translations/pl/Donate.md b/wiki/translations/pl/Donate.md index 8c55d0d972..15337afcf3 100644 --- a/wiki/translations/pl/Donate.md +++ b/wiki/translations/pl/Donate.md @@ -1,7 +1,4 @@ # Donate/pl - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch AxisSystem/pt-br diff --git a/wiki/translations/pt-br/Arch_Building.md b/wiki/translations/pt-br/Arch_Building.md index 2fe6b12238..fe5853ab9e 100644 --- a/wiki/translations/pt-br/Arch_Building.md +++ b/wiki/translations/pt-br/Arch_Building.md @@ -7,6 +7,8 @@ SeeAlso:[Arch BuildingPart](Arch_BuildingPart.md), [Arch Site](Arch_Site.md) --- +# Arch Building/pt-br + ## Descrição The Arch Building is a special type of FreeCAD group object particularly suited for representing a whole building unit. They are mostly used to organize your model, by containing [floor](Arch_Floor.md) objects. @@ -70,5 +72,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Building/pt-br diff --git a/wiki/translations/pt-br/Arch_BuildingPart.md b/wiki/translations/pt-br/Arch_BuildingPart.md index c6fa2d64d5..f9cb62a970 100644 --- a/wiki/translations/pt-br/Arch_BuildingPart.md +++ b/wiki/translations/pt-br/Arch_BuildingPart.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Building](Arch_Building.md), [Arch Site](Arch_Site.md) --- +# Arch BuildingPart/pt-br + ## Descrição The BuildingPart replaces the old [Arch Floor](Arch_Floor.md) and [Arch Building](Arch_Building.md) with a more capable version that can be used not only to create Floor/Storey/Levels but also all kinds of situations where different Arch/BIM objects need to be grouped and that group might need to be handled as one object or replicated. @@ -135,5 +137,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BuildingPart/pt-br diff --git a/wiki/translations/pt-br/Arch_Check.md b/wiki/translations/pt-br/Arch_Check.md index 62641722c8..41c73f5df4 100644 --- a/wiki/translations/pt-br/Arch_Check.md +++ b/wiki/translations/pt-br/Arch_Check.md @@ -6,6 +6,8 @@ SeeAlso:[Arch CloseHoles](Arch_CloseHoles.md) --- +# Arch Check/pt-br + ## Descrição This tool checks the current document or the selected objects for non-solid ** [Part](Part_Workbench.md)** or ** [Arch](Arch_Workbench.md)** objects, that might give problems, since most operations of the Arch Workbench require solid objects. @@ -62,8 +64,5 @@ print(list_bad)
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Check/pt-br diff --git a/wiki/translations/pt-br/Arch_CloneComponent.md b/wiki/translations/pt-br/Arch_CloneComponent.md index 45f741e883..ce912373d0 100644 --- a/wiki/translations/pt-br/Arch_CloneComponent.md +++ b/wiki/translations/pt-br/Arch_CloneComponent.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Clone](Draft_Clone.md), [Arch Component](Arch_Component.md) --- +# Arch CloneComponent/pt-br + ## Descrição The ** [Arch Clone Component](Arch_CloneComponent.md)** produces ** [Arch Components](Arch_Component.md)** that are clones of selected Arch objects. @@ -30,5 +32,5 @@ The clone component will simply have its **CloneOf** property set to the selecte
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloneComponent/pt-br diff --git a/wiki/translations/pt-br/Arch_CloseHoles.md b/wiki/translations/pt-br/Arch_CloseHoles.md index 11752e633c..e5f5453b5c 100644 --- a/wiki/translations/pt-br/Arch_CloseHoles.md +++ b/wiki/translations/pt-br/Arch_CloseHoles.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Check](Arch_Check.md) --- +# Arch CloseHoles/pt-br + ## Descrição This tool identifies holes (circular sequence of open edges) in a [Shape](Part_Workbench.md) object and attempts to close it by adding it a new face made from that edges sequence. You must still verify yourself that the result is a solid, though. @@ -60,8 +62,5 @@ solid = Arch.closeHole(Wall.Shape)
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloseHoles/pt-br diff --git a/wiki/translations/pt-br/Arch_CompAxis.md b/wiki/translations/pt-br/Arch_CompAxis.md index 90959fb2d2..e6f61b391b 100644 --- a/wiki/translations/pt-br/Arch_CompAxis.md +++ b/wiki/translations/pt-br/Arch_CompAxis.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Axis](Arch_Axis.md), [Arch Axes system](Arch_AxisSystem.md), [Arch Grid](Arch_Grid.md) --- +# Arch CompAxis/pt-br + ## Descrição Create axis. @@ -26,5 +28,5 @@ Create axis.
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompAxis/pt-br diff --git a/wiki/translations/pt-br/Arch_CompPanel.md b/wiki/translations/pt-br/Arch_CompPanel.md index 7ea5bd724a..fa5025e648 100644 --- a/wiki/translations/pt-br/Arch_CompPanel.md +++ b/wiki/translations/pt-br/Arch_CompPanel.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Arch CompPanel/pt-br + ## Descrição Grouping of several Panel related tools. @@ -27,5 +29,5 @@ Grouping of several Panel related tools.
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompPanel/pt-br diff --git a/wiki/translations/pt-br/Arch_CompPipe.md b/wiki/translations/pt-br/Arch_CompPipe.md index 76fcb8a476..69e636d2a1 100644 --- a/wiki/translations/pt-br/Arch_CompPipe.md +++ b/wiki/translations/pt-br/Arch_CompPipe.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Arch CompPipe/pt-br + ## Descrição ## Tipos de @@ -23,5 +25,5 @@
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompPipe/pt-br diff --git a/wiki/translations/pt-br/Arch_CompRebarStraight.md b/wiki/translations/pt-br/Arch_CompRebarStraight.md index 862c5f02d7..9adf3a961f 100644 --- a/wiki/translations/pt-br/Arch_CompRebarStraight.md +++ b/wiki/translations/pt-br/Arch_CompRebarStraight.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Arch CompRebarStraight/pt-br + ## Descrição The Reinforcement Addon augments the [Arch Workbench](Arch_Workbench.md) by providing new interfaces and presets for the creation of common rebar types for use with [Arch Structures](Arch_Structure.md). It is also integrated into the external workbench [BIM](BIM_Workbench.md). @@ -47,5 +49,5 @@ Back to [Workbenches](Workbenches#External_workbenches.md) / [External Workbench
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompRebarStraight/pt-br diff --git a/wiki/translations/pt-br/Arch_CompSetMaterial.md b/wiki/translations/pt-br/Arch_CompSetMaterial.md index d8b5414c4e..af1883cf7c 100644 --- a/wiki/translations/pt-br/Arch_CompSetMaterial.md +++ b/wiki/translations/pt-br/Arch_CompSetMaterial.md @@ -7,6 +7,8 @@ SeeAlso:[Arch SetMaterial](Arch_SetMaterial.md), [Arch MultiMaterial](Arch_MultiMaterial.md) --- +# Arch CompSetMaterial/pt-br + ## Descrição The Material tools allows to add materials to the active document. @@ -25,5 +27,5 @@ The Material tools allows to add materials to the active document.
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompSetMaterial/pt-br diff --git a/wiki/translations/pt-br/Arch_Component.md b/wiki/translations/pt-br/Arch_Component.md index 214ed76273..8747fc2c35 100644 --- a/wiki/translations/pt-br/Arch_Component.md +++ b/wiki/translations/pt-br/Arch_Component.md @@ -6,6 +6,8 @@ Shortcut:**C** **M** --- +# Arch Component/pt-br + ## Descrição Creates a non-parametric [Arch](Arch_Workbench.md) component from any [Part](Part_Workbench.md)-based object. This gives the Part-based object the same attributes and properties as other Arch objects, and allows to specify how it should be exported to IFC by setting its **Role** property. @@ -55,8 +57,5 @@ The Arch component object is also a base shared by all other Arch objects (** - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Component/pt-br diff --git a/wiki/translations/pt-br/Arch_CurtainWall.md b/wiki/translations/pt-br/Arch_CurtainWall.md index 64cb15391a..35e38b0bf7 100644 --- a/wiki/translations/pt-br/Arch_CurtainWall.md +++ b/wiki/translations/pt-br/Arch_CurtainWall.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Grid](Arch_Grid.md) --- +# Arch CurtainWall/pt-br + ## Descrição This tool creates a [curtain wall](https://en.wikipedia.org/wiki/Curtain_wall_(architecture)) by subdividing a base face into quadrangular faces, then creating vertical mullion on the vertical edges, horizontal mullions on the horizontal edges, and filling the spaces between mullions with panels. @@ -148,8 +150,5 @@ curtainWall.VerticalSections = 6 FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CurtainWall/pt-br diff --git a/wiki/translations/pt-br/Arch_CutLine.md b/wiki/translations/pt-br/Arch_CutLine.md index c84779d31e..3f1da11460 100644 --- a/wiki/translations/pt-br/Arch_CutLine.md +++ b/wiki/translations/pt-br/Arch_CutLine.md @@ -7,6 +7,8 @@ SeeAlso:[Arch CutPlane](Arch_CutPlane.md) --- +# Arch CutLine/pt-br + ## Descrição The [Arch CutLine](Arch_CutLine.md) tool allows you to cut a solid Arch object like an [Arch Wall](Arch_Wall.md) or [Arch Structure](Arch_Structure.md) using a line that is crossing the object. @@ -31,8 +33,5 @@ The [Arch CutLine](Arch_CutLine.md) tool allows you to cut a solid Arch object l [Arch API](Arch_API.md) and [FreeCAD Scripting Basics](FreeCAD_Scripting_Basics.md). - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutLine/pt-br diff --git a/wiki/translations/pt-br/Arch_CutPlane.md b/wiki/translations/pt-br/Arch_CutPlane.md index 16bcba4948..3cade8c328 100644 --- a/wiki/translations/pt-br/Arch_CutPlane.md +++ b/wiki/translations/pt-br/Arch_CutPlane.md @@ -6,6 +6,8 @@ SeeAlso:[Arch CutLine](Arch_CutLine.md), [Arch Remove](Arch_Remove.md) --- +# Arch CutPlane/pt-br + ## Descrição The Cut Plane tool allows you to cut an Arch object according to a plane: @@ -101,5 +103,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutPlane/pt-br diff --git a/wiki/translations/pt-br/Arch_DAE.md b/wiki/translations/pt-br/Arch_DAE.md index 42d90fb5fb..192b66abdc 100644 --- a/wiki/translations/pt-br/Arch_DAE.md +++ b/wiki/translations/pt-br/Arch_DAE.md @@ -1,7 +1,4 @@ # Arch DAE/pt-br - - -
@@ -33,3 +30,6 @@ The Collada import functionality in the Arch workbench depends on [pycollada](ht [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch DAE/pt-br diff --git a/wiki/translations/pt-br/Arch_Equipment.md b/wiki/translations/pt-br/Arch_Equipment.md index a906b1f488..d34b63bbd6 100644 --- a/wiki/translations/pt-br/Arch_Equipment.md +++ b/wiki/translations/pt-br/Arch_Equipment.md @@ -7,6 +7,8 @@ SeeAlso:[Arch 3 views](Arch_3Views.md) --- +# Arch Equipment/pt-br + ## Descrição The Equipment tool offers you a simple and convenient way to insert non-structural, standalone elements such as pieces of furniture, hidro-sanitary equipments or electrical appliances to your projects. Equipments are based on [Part shapes](Part_Workbench.md), which allow them to benefit from the solidity and possibilities of BRep geometry, and generate nice views when rendered to plan and section views. @@ -74,8 +76,5 @@ FreeCAD.ActiveDocument.recompute()
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Equipment/pt-br diff --git a/wiki/translations/pt-br/Arch_Fence.md b/wiki/translations/pt-br/Arch_Fence.md index 39e91f62cd..a9cfa5ff96 100644 --- a/wiki/translations/pt-br/Arch_Fence.md +++ b/wiki/translations/pt-br/Arch_Fence.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Arch Fence/pt-br + ## Descrição The [Arch Fence](Arch_Fence.md) is a object that builds a fence by repeating a single fence post and section along a given path. @@ -103,5 +105,5 @@ Fence = Arch.buildFence(fence_section, post, sketch)
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Fence/pt-br diff --git a/wiki/translations/pt-br/Arch_Floor.md b/wiki/translations/pt-br/Arch_Floor.md index 53278d2663..451e97e622 100644 --- a/wiki/translations/pt-br/Arch_Floor.md +++ b/wiki/translations/pt-br/Arch_Floor.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Building](Arch_Building.md), [Arch BuildingPart](Arch_BuildingPart.md), [Arch Site](Arch_Site.md) --- +# Arch Floor/pt-br + ## Descrição The [Arch Floor](Arch_Floor.md) is a special type of FreeCAD group object that has a couple of additional properties particularly suited for building floors. Particularly, they have a height property, that its children objects ([walls](Arch_Wall.md) and [structures](Arch_Structure.md)) can use to set their own height automatically. They are mostly used to organize your model. @@ -75,8 +77,5 @@ FreeCAD.ActiveDocument.recompute()
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor/pt-br diff --git a/wiki/translations/pt-br/Arch_Frame.md b/wiki/translations/pt-br/Arch_Frame.md index 1c18323cb5..4f3699c39a 100644 --- a/wiki/translations/pt-br/Arch_Frame.md +++ b/wiki/translations/pt-br/Arch_Frame.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Structure](Arch_Structure.md) --- +# Arch Frame/pt-br + ## Descrição The ** [Arch Frame](Arch_Frame.md)** tool is used to build all kinds of frame objects based on a profile and a layout. The profile is extruded along the edges of the layout, which can be any 2D object such as a [sketch](Sketcher_Workbench.md), or a [Draft object](Draft_Workbench.md). It is especially useful to create railings, or frame walls. Frame objects can then easily be turned into [wall](Arch_Wall.md) or [structure](Arch_Structure.md) objects. @@ -82,8 +84,5 @@ FreeCAD.ActiveDocument.recompute()
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Frame/pt-br diff --git a/wiki/translations/pt-br/Arch_Grid.md b/wiki/translations/pt-br/Arch_Grid.md index f11e596422..e5ff102a46 100644 --- a/wiki/translations/pt-br/Arch_Grid.md +++ b/wiki/translations/pt-br/Arch_Grid.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Axis](Arch_Axis.md), [Arch AxisSystem](Arch_AxisSystem.md) --- +# Arch Grid/pt-br + ## Descrição The ** [Arch Grid](Arch_Grid.md)** tool allows you to place a grid-like object in the document. This object is meant to serve as a base to build Arch objects that need a regular but complex frame, such as windows, curtain walls, column grids, railings, etc. The Grid object is editable like a spreadsheet, where you can add or remove columns and rows, define their size, and merge cells. @@ -96,5 +98,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Grid/pt-br diff --git a/wiki/translations/pt-br/Arch_IFC.md b/wiki/translations/pt-br/Arch_IFC.md index 4f5c9be448..44721a7169 100644 --- a/wiki/translations/pt-br/Arch_IFC.md +++ b/wiki/translations/pt-br/Arch_IFC.md @@ -1,7 +1,4 @@ # Arch IFC/pt-br - - -
@@ -98,3 +95,6 @@ If the shape of exported objects is based on an extrusion or a boolean operation [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IFC/pt-br diff --git a/wiki/translations/pt-br/Arch_IfcExplorer.md b/wiki/translations/pt-br/Arch_IfcExplorer.md index a04ac34402..38a58d6eee 100644 --- a/wiki/translations/pt-br/Arch_IfcExplorer.md +++ b/wiki/translations/pt-br/Arch_IfcExplorer.md @@ -6,6 +6,8 @@ SeeAlso:[Arch IFC](Arch_IFC.md) --- +# Arch IfcExplorer/pt-br + ## Descrição The [IFC explorer](Arch_IfcExplorer.md) is a simple utility to explore the contents of an [IFC](Arch_IFC.md) file. IFC files are text files, and are therefore readable in a text editor, but the information is condensed, unformatted, and difficult to browse. This utility presents to the user the exact same content, but displayed in an organized and readable method. The \"[IfcOpenShell](IfcOpenShell.md)\" software library must be installed for this utility to work. @@ -37,3 +39,6 @@ The purpose of this explorer is simply to allow you to check what is really writ [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcExplorer/pt-br diff --git a/wiki/translations/pt-br/Arch_IfcSpreadsheet.md b/wiki/translations/pt-br/Arch_IfcSpreadsheet.md index 8cbd4e2322..6e3fa19820 100644 --- a/wiki/translations/pt-br/Arch_IfcSpreadsheet.md +++ b/wiki/translations/pt-br/Arch_IfcSpreadsheet.md @@ -7,6 +7,8 @@ SeeAlso:[Arch IFC](Arch_IFC.md), [Arch IfcExplorer](Arch_IfcExplorer.md) --- +# Arch IfcSpreadsheet/pt-br + ## Descrição This tool creates a spreadsheet to store [IFC](Arch_IFC.md) properties of an object. @@ -53,5 +55,5 @@ spreadsheet = Arch.makeIfcSpreadsheet(Wall)
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcSpreadsheet/pt-br diff --git a/wiki/translations/pt-br/Arch_JSON.md b/wiki/translations/pt-br/Arch_JSON.md index 98ca85ab5f..d0a671c796 100644 --- a/wiki/translations/pt-br/Arch_JSON.md +++ b/wiki/translations/pt-br/Arch_JSON.md @@ -1,7 +1,4 @@ # Arch JSON/pt-br - - -
@@ -43,3 +40,6 @@ Note that facets form triangles and their integer values reference points in the [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch JSON/pt-br diff --git a/wiki/translations/pt-br/Arch_MergeWalls.md b/wiki/translations/pt-br/Arch_MergeWalls.md index bd4a7f988d..c1f61ae07a 100644 --- a/wiki/translations/pt-br/Arch_MergeWalls.md +++ b/wiki/translations/pt-br/Arch_MergeWalls.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md) --- +# Arch MergeWalls/pt-br + ## Descrição The [MergeWalls](Arch_MergeWalls.md) tool fuses two or more selected ** [Arch Walls](Arch_Wall.md)**. @@ -56,5 +58,5 @@ base = Arch.joinWalls([Wall1, Wall2])
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MergeWalls/pt-br diff --git a/wiki/translations/pt-br/Arch_MeshToShape.md b/wiki/translations/pt-br/Arch_MeshToShape.md index c9a5a5f7af..00c1823e8a 100644 --- a/wiki/translations/pt-br/Arch_MeshToShape.md +++ b/wiki/translations/pt-br/Arch_MeshToShape.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch RemoveShape](Arch_RemoveShape.md) --- +# Arch MeshToShape/pt-br + ## Descrição [Arch MeshToShape](Arch_MeshToShape.md) converts a selected [Mesh](Mesh.md) ([Mesh Feature](Mesh_Feature.md)) object into a [Shape](Shape.md) ([Part Feature](Part_Feature.md)) object. @@ -67,5 +69,5 @@ new_obj = Arch.meshToShape(Box)
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MeshToShape/pt-br diff --git a/wiki/translations/pt-br/Arch_Module.md b/wiki/translations/pt-br/Arch_Module.md index de9d781b96..3b3461c6cd 100644 --- a/wiki/translations/pt-br/Arch_Module.md +++ b/wiki/translations/pt-br/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/pt-br 1. REDIRECT [Arch\_Workbench/pt-br](Arch_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/pt-br diff --git a/wiki/translations/pt-br/Arch_MultiMaterial.md b/wiki/translations/pt-br/Arch_MultiMaterial.md index 01e2ab156a..951b045875 100644 --- a/wiki/translations/pt-br/Arch_MultiMaterial.md +++ b/wiki/translations/pt-br/Arch_MultiMaterial.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SetMaterial](Arch_SetMaterial.md), [Arch CompSetMaterial](Arch_CompSetMaterial.md) --- +# Arch MultiMaterial/pt-br + ## Descrição The Multi-Material tool defines a list of [materials](Material.md) with, for each material, a name and a thickness value. This multi-materials list can then be added to an [Arch](Arch_Workbench.md) object instead of a single [Arch Material](Arch_SetMaterial.md) . @@ -57,5 +59,5 @@ This roughly corresponds to a combination of [IfcMaterialLayerSet](https://stand - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MultiMaterial/pt-br diff --git a/wiki/translations/pt-br/Arch_Nest.md b/wiki/translations/pt-br/Arch_Nest.md index da1b7f66f0..3ff42333da 100644 --- a/wiki/translations/pt-br/Arch_Nest.md +++ b/wiki/translations/pt-br/Arch_Nest.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Panel](Arch_Panel.md), [Arch Panel Sheet](Arch_Panel_Sheet.md) --- +# Arch Nest/pt-br + ## Descrição The ** [Arch Nest](Arch_Nest.md)** tool allows to select a flat shape to be a container, and a series of other flat shapes to be organized inside the space defined by the container shape. This is typically needed for CNC operations, where you want to cut a series of pieces out of a base panel, and need to organize those pieces in the best possible compact way so they occupy less space on the panel. @@ -47,5 +49,5 @@ The algorithm behind the Nest tool is in constant evolution, and is currently no - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Nest/pt-br diff --git a/wiki/translations/pt-br/Arch_OBJ.md b/wiki/translations/pt-br/Arch_OBJ.md index 20de542b91..161c397493 100644 --- a/wiki/translations/pt-br/Arch_OBJ.md +++ b/wiki/translations/pt-br/Arch_OBJ.md @@ -1,7 +1,4 @@ # Arch OBJ/pt-br - - -
@@ -65,3 +62,6 @@ mesh.write(Filename="new_example.obj", Material=face_colors, Format="obj") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch OBJ/pt-br diff --git a/wiki/translations/pt-br/Arch_Panel.md b/wiki/translations/pt-br/Arch_Panel.md index 912e2114d3..5216dfe0ca 100644 --- a/wiki/translations/pt-br/Arch_Panel.md +++ b/wiki/translations/pt-br/Arch_Panel.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Panel Cut](Arch_Panel_Cut.md), [Arch Panel Sheet](Arch_Panel_Sheet.md) --- +# Arch Panel/pt-br + ## Descrição This tool allows you to build all kinds of panel-like elements, typically for panel constructions like the [WikiHouse](http://www.wikihouse.cc/) project, but also for all kinds of objects that are based on a flat profile. @@ -98,5 +100,5 @@ Panel = Arch.makePanel(Rect, thickness=36)
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel/pt-br diff --git a/wiki/translations/pt-br/Arch_Panel_Cut.md b/wiki/translations/pt-br/Arch_Panel_Cut.md index 1c982d4660..cf5c429d5f 100644 --- a/wiki/translations/pt-br/Arch_Panel_Cut.md +++ b/wiki/translations/pt-br/Arch_Panel_Cut.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Panel](Arch_Panel.md), [Arch Panel Sheet](Arch_Panel_Sheet.md), [Arch Nest](Arch_Nest.md) --- +# Arch Panel Cut/pt-br + ## Descrição This tool creates, in the 3D document, a flat, 2D view of an [Arch Panel](Arch_Panel.md), to be included in an [Arch Panel Sheet](Arch_Panel_Sheet.md) or directly exported to [DXF](Draft_DXF.md). The Panel Cut objects are also supported by the [Path Workbench](Path_Workbench.md). @@ -104,5 +106,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Cut/pt-br diff --git a/wiki/translations/pt-br/Arch_Panel_Sheet.md b/wiki/translations/pt-br/Arch_Panel_Sheet.md index 171ef860da..8f7d82d313 100644 --- a/wiki/translations/pt-br/Arch_Panel_Sheet.md +++ b/wiki/translations/pt-br/Arch_Panel_Sheet.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Panel](Arch_Panel.md), [Arch Panel Cut](Arch_Panel_Cut.md), [Arch Nest](Arch_Nest.md) --- +# Arch Panel Sheet/pt-br + ## Descrição This tool allows to build a 2D sheet, including any number of [Arch Panel Cut](Arch_Panel_Cut.md) objects, or any other 2D object such as those made by the [Draft Workbench](Draft_Workbench.md) and [Sketcher Workbench](Sketcher_Workbench.md). The Panel Sheet is typically made to layout cuts to be made by a CNC machine. These sheets can then be exported to a [DXF](Draft_DXF.md) file. @@ -122,5 +124,5 @@ Sheet = Arch.makePanelSheet([Cut1, Cut2, Cut3]) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Sheet/pt-br diff --git a/wiki/translations/pt-br/Arch_Pipe.md b/wiki/translations/pt-br/Arch_Pipe.md index 503decfbf3..7f577d9394 100644 --- a/wiki/translations/pt-br/Arch_Pipe.md +++ b/wiki/translations/pt-br/Arch_Pipe.md @@ -8,6 +8,8 @@ SeeAlso:[Arch PipeConnector](Arch_PipeConnector.md), [Arch Equipment](Arch_Equipment.md) --- +# Arch Pipe/pt-br + ## Descrição This tool allows to create pipes from scratch, or from selected objects. The selected objects must be Part-based (Draft, Sketch, etc..) and contain one and only one open Wire. @@ -117,5 +119,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Pipe/pt-br diff --git a/wiki/translations/pt-br/Arch_PipeConnector.md b/wiki/translations/pt-br/Arch_PipeConnector.md index 5136a61639..5448a9c9fa 100644 --- a/wiki/translations/pt-br/Arch_PipeConnector.md +++ b/wiki/translations/pt-br/Arch_PipeConnector.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Pipe](Arch_Pipe.md), [Arch Equipment](Arch_Equipment.md) --- +# Arch PipeConnector/pt-br + ## Descrição This tool allows to create corner or tee connection between two or three selected [Arch Pipes](Arch_Pipe.md). @@ -82,8 +84,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch PipeConnector/pt-br diff --git a/wiki/translations/pt-br/Arch_Preferences.md b/wiki/translations/pt-br/Arch_Preferences.md index 53153d1490..8fdb201668 100644 --- a/wiki/translations/pt-br/Arch_Preferences.md +++ b/wiki/translations/pt-br/Arch_Preferences.md @@ -1,6 +1,4 @@ # Arch Preferences/pt-br - - The preferences for the [Arch Workbench](Arch_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), in the menu **Edit → Preferences → Arch**. There are two tabs: General settings, and Defaults. @@ -17,3 +15,6 @@ There are two tabs: General settings, and Defaults. [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Preferences/pt-br diff --git a/wiki/translations/pt-br/Arch_Profile.md b/wiki/translations/pt-br/Arch_Profile.md index 11bd89accf..63fc34d664 100644 --- a/wiki/translations/pt-br/Arch_Profile.md +++ b/wiki/translations/pt-br/Arch_Profile.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Arch Profile/pt-br + ## Description The Profile tool builds a parametric 2D profile object. This object can then be used as a base in different other tools that perform extrusions, such as [Arch Frame](Arch_Frame.md), [Arch CurtainWall](Arch_CurtainWall.md) or [Part Extrude](Part_Extrude.md). @@ -88,8 +90,5 @@ Arch.makeProfile([0,'REC','REC100x100','R',100,100]) Where the first element of the list is an order number that is not used yet. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Profile/pt-br diff --git a/wiki/translations/pt-br/Arch_Project.md b/wiki/translations/pt-br/Arch_Project.md index aae959ab32..fabb9cbe36 100644 --- a/wiki/translations/pt-br/Arch_Project.md +++ b/wiki/translations/pt-br/Arch_Project.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Site](Arch_Site.md), [Arch Building](Arch_Building.md) --- +# Arch Project/pt-br + ## Descrição The Arch Project is a special object suitable to add better compatibility with [IFC](Arch_IFC.md) files. Every IFC file is required to contain an [IfcProject](https://standards.buildingsmart.org/IFC/RELEASE/IFC4_1/FINAL/HTML/schema/ifckernel/lexical/ifcproject.htm) entity. The IfcProject is mostly used to define general project settings such as projection systems, for GIS compatibility, or units systems. @@ -29,5 +31,5 @@ Note that, although any other BIM object can be added to a Project, which the IF - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Project/pt-br diff --git a/wiki/translations/pt-br/Arch_Rebar.md b/wiki/translations/pt-br/Arch_Rebar.md index 27ba940a5b..b2004c6fbf 100644 --- a/wiki/translations/pt-br/Arch_Rebar.md +++ b/wiki/translations/pt-br/Arch_Rebar.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md), [Reinforcement](Reinforcement_Workbench.md) --- +# Arch Rebar/pt-br + ## Descrição The [Arch Rebar](Arch_Rebar.md) tool allows you to place [reinforcing bars](http://en.wikipedia.org/wiki/Rebar) inside [Arch Structure](Arch_Structure.md) objects. @@ -126,3 +128,6 @@ FreeCAD.ActiveDocument.recompute() [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar/pt-br diff --git a/wiki/translations/pt-br/Arch_Rebar_BOM.md b/wiki/translations/pt-br/Arch_Rebar_BOM.md index 4258ab2466..76b1580050 100644 --- a/wiki/translations/pt-br/Arch_Rebar_BOM.md +++ b/wiki/translations/pt-br/Arch_Rebar_BOM.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Reinforcement Bar Bending Schedule](Reinforcement_Bar_Bending_Schedule.md), [Arch Rebar Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) --- +# Arch Rebar BOM/pt-br + ## Descrição The [Bill Of Material](Arch_Rebar_BOM.md) tool allows the user to create a bill of material of reinforcing bars. @@ -524,3 +526,6 @@ BillOfMaterial_SVG.makeBillOfMaterialSVG( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BOM/pt-br diff --git a/wiki/translations/pt-br/Arch_Rebar_BeamReinforcement.md b/wiki/translations/pt-br/Arch_Rebar_BeamReinforcement.md index fc8ef095e9..b6364c53e0 100644 --- a/wiki/translations/pt-br/Arch_Rebar_BeamReinforcement.md +++ b/wiki/translations/pt-br/Arch_Rebar_BeamReinforcement.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) --- +# Arch Rebar BeamReinforcement/pt-br + ## Description The [Beam Reinforcement](Arch_Rebar_BeamReinforcement.md) tool allows the user to create reinforcing bars inside a Beam [Arch Structure](Arch_Structure.md) object. @@ -366,3 +368,6 @@ RebarGroup = TwoLeggedBeam.makeReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BeamReinforcement/pt-br diff --git a/wiki/translations/pt-br/Arch_Rebar_BentShape.md b/wiki/translations/pt-br/Arch_Rebar_BentShape.md index 42e14f6b4d..e0893cd146 100644 --- a/wiki/translations/pt-br/Arch_Rebar_BentShape.md +++ b/wiki/translations/pt-br/Arch_Rebar_BentShape.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Stirrup](Arch_Rebar_Stirrup.md) --- +# Arch Rebar BentShape/pt-br + ## Descrição The [BentShape Rebar](Arch_Rebar_BentShape.md) tool allows the user to create a set of bent reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -158,3 +160,6 @@ BentShapeRebar.editBentShapeRebar(Rebar2, 50, 35, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BentShape/pt-br diff --git a/wiki/translations/pt-br/Arch_Rebar_Circular_ColumnReinforcement.md b/wiki/translations/pt-br/Arch_Rebar_Circular_ColumnReinforcement.md index 4cc0106cf9..edc08258f4 100644 --- a/wiki/translations/pt-br/Arch_Rebar_Circular_ColumnReinforcement.md +++ b/wiki/translations/pt-br/Arch_Rebar_Circular_ColumnReinforcement.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md), [Arch Rebar](Arch_Rebar.md) --- +# Arch Rebar Circular ColumnReinforcement/pt-br + ## Descrição The [Column Reinforcement](Arch_Rebar_Circular_ColumnReinforcement.md) tool allows the user to create reinforcing bars inside a Column [Arch Structure](Arch_Structure.md) object. @@ -207,3 +209,6 @@ rebar_group = CircularColumn.editReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Circular ColumnReinforcement/pt-br diff --git a/wiki/translations/pt-br/Arch_Rebar_ColumnReinforcement.md b/wiki/translations/pt-br/Arch_Rebar_ColumnReinforcement.md index c8b140f061..25ccb37356 100644 --- a/wiki/translations/pt-br/Arch_Rebar_ColumnReinforcement.md +++ b/wiki/translations/pt-br/Arch_Rebar_ColumnReinforcement.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Helical Rebar](Arch_Rebar_Helical.md), [Arch ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) --- +# Arch Rebar ColumnReinforcement/pt-br + ## Descrição The [Column Reinforcement](Arch_Rebar_ColumnReinforcement.md) tool allows the user to create reinforcing bars inside a Column [Arch Structure](Arch_Structure.md) object. @@ -569,3 +571,6 @@ rebar_group = SingleTieMultipleRebars.editSingleTieMultipleRebars( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar ColumnReinforcement/pt-br diff --git a/wiki/translations/pt-br/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md b/wiki/translations/pt-br/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md index f3478aff37..2256230a75 100644 --- a/wiki/translations/pt-br/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md +++ b/wiki/translations/pt-br/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Rebar ColumnReinforcement TwoTiesSixRebars/pt-br + ## Descrição The [Column Reinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md) tool allows the user to create reinforcing bars (Two Ties Six Rebars) inside a Column [Arch Structure](Arch_Structure.md) object. @@ -342,3 +344,6 @@ rebar_group = TwoTiesSixRebars.editTwoTiesSixRebars( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar ColumnReinforcement TwoTiesSixRebars/pt-br diff --git a/wiki/translations/pt-br/Arch_Rebar_Drawing_Dimensioning.md b/wiki/translations/pt-br/Arch_Rebar_Drawing_Dimensioning.md index e39d64df74..bc78d1123d 100644 --- a/wiki/translations/pt-br/Arch_Rebar_Drawing_Dimensioning.md +++ b/wiki/translations/pt-br/Arch_Rebar_Drawing_Dimensioning.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar Bill Of Material](Arch_Rebar_BOM.md), [Reinforcement Rebar Shape Cut List](Reinforcement_Bar_Shape_Cut_List.md) --- +# Arch Rebar Drawing Dimensioning/pt-br + ## Descrição The [Reinforcement Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) tool allows the user to create drawing and dimensioning of reinforcing bars. @@ -1076,3 +1078,6 @@ for visible_rebar in visible_rebars: [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Drawing Dimensioning/pt-br diff --git a/wiki/translations/pt-br/Arch_Rebar_Helical.md b/wiki/translations/pt-br/Arch_Rebar_Helical.md index d6fef76f55..7b9557ddef 100644 --- a/wiki/translations/pt-br/Arch_Rebar_Helical.md +++ b/wiki/translations/pt-br/Arch_Rebar_Helical.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Stirrup](Arch_Rebar_Stirrup.md), [Arch Rebar Column Reinforcement](Arch_Rebar_ColumnReinforcement.md) --- +# Arch Rebar Helical/pt-br + ## Descrição The [Helical Rebar](Arch_Rebar_Helical.md) tool allows the user to create a continuous helical reinforcing bar inside an [Arch Structure](Arch_Structure.md) object. @@ -131,3 +133,6 @@ HelicalRebar.editHelicalRebar(Rebar, 20, 100, 20, 20, 100) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Helical/pt-br diff --git a/wiki/translations/pt-br/Arch_Rebar_LShape.md b/wiki/translations/pt-br/Arch_Rebar_LShape.md index 1d8a2496a4..a38dfd1c4f 100644 --- a/wiki/translations/pt-br/Arch_Rebar_LShape.md +++ b/wiki/translations/pt-br/Arch_Rebar_LShape.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Bent](Arch_Rebar_BentShape.md) --- +# Arch Rebar LShape/pt-br + ## Description The [LShape Rebar](Arch_Rebar_LShape.md) tool allows the user to create a set of L-shaped reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -149,3 +151,6 @@ LShapeRebar.editLShapeRebar(Rebar2, 50, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar LShape/pt-br diff --git a/wiki/translations/pt-br/Arch_Rebar_Stirrup.md b/wiki/translations/pt-br/Arch_Rebar_Stirrup.md index 0bd4a5d9fc..2e11c52172 100644 --- a/wiki/translations/pt-br/Arch_Rebar_Stirrup.md +++ b/wiki/translations/pt-br/Arch_Rebar_Stirrup.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Helical](Arch_Rebar_Helical.md) --- +# Arch Rebar Stirrup/pt-br + ## Description The [Stirrup Rebar](Arch_Rebar_Stirrup.md) tool allows the user to create a set of stirrup reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -142,3 +144,6 @@ Stirrup.editStirrup(Rebar, 20, 20, 20, 20, 50, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Stirrup/pt-br diff --git a/wiki/translations/pt-br/Arch_Rebar_Straight.md b/wiki/translations/pt-br/Arch_Rebar_Straight.md index b1af00aef4..81f6b8c45c 100644 --- a/wiki/translations/pt-br/Arch_Rebar_Straight.md +++ b/wiki/translations/pt-br/Arch_Rebar_Straight.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch Rebar Straight/pt-br + ## Description The [Arch Straight Rebar](Arch_Rebar_Straight.md) tool allows the user to create a set of straight reinforcing bars inside an [Arch Structure](Arch_Structure.md) object. @@ -205,3 +207,6 @@ StraightRebar.editStraightRebar(Rebar4, 50, ("Right Side", 50), 100, 100, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Straight/pt-br diff --git a/wiki/translations/pt-br/Arch_Rebar_UShape.md b/wiki/translations/pt-br/Arch_Rebar_UShape.md index 48f6ccff36..32f5feb154 100644 --- a/wiki/translations/pt-br/Arch_Rebar_UShape.md +++ b/wiki/translations/pt-br/Arch_Rebar_UShape.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch Rebar UShape/pt-br + ## Description The ** [UShape Rebar](Arch_Rebar_UShape.md)** tool allows the user to create a set of U-shaped reinforcing bars inside an ** [Arch Structure](Arch_Structure.md)** object. @@ -146,3 +148,6 @@ UShapeRebar.editUShapeRebar(Rebar2, 70, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar UShape/pt-br diff --git a/wiki/translations/pt-br/Arch_Reference.md b/wiki/translations/pt-br/Arch_Reference.md index 4df2ce0b54..126b14b7d9 100644 --- a/wiki/translations/pt-br/Arch_Reference.md +++ b/wiki/translations/pt-br/Arch_Reference.md @@ -6,6 +6,8 @@ SeeAlso:[Arch BuildingPart](Arch_BuildingPart.md) --- +# Arch Reference/pt-br + ## Descrição @@ -59,5 +61,5 @@ Arch.makeReference("/path/to/some/file.FSCtd","myPart") - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Reference/pt-br diff --git a/wiki/translations/pt-br/Arch_Remove.md b/wiki/translations/pt-br/Arch_Remove.md index 261250b8b4..d2e3a7b882 100644 --- a/wiki/translations/pt-br/Arch_Remove.md +++ b/wiki/translations/pt-br/Arch_Remove.md @@ -6,6 +6,8 @@ SeeAlso:[Arch CutLine](Arch_CutLine.md), [Arch CutPlane](Arch_CutPlane.md), [Arch Add](Arch_Add.md) --- +# Arch Remove/pt-br + ## Descrição The Remove tools allows you to do 2 kinds of operations: @@ -73,8 +75,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove/pt-br diff --git a/wiki/translations/pt-br/Arch_RemoveShape.md b/wiki/translations/pt-br/Arch_RemoveShape.md index 8b573df2d8..f7fb3c3673 100644 --- a/wiki/translations/pt-br/Arch_RemoveShape.md +++ b/wiki/translations/pt-br/Arch_RemoveShape.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch RemoveShape/pt-br + ## Descrição This tool attempts at removing the inner cubic shape of an ** [Arch Wall](Arch_Wall.md)** or ** [Arch Structure](Arch_Structure.md)**, and adjusting its properties, making it totally parametric. This tool will only work if the underlying shape is cubic (exactly 6 faces, all corners have only right angles). @@ -52,8 +54,5 @@ Arch.removeShape(Structure) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch RemoveShape/pt-br diff --git a/wiki/translations/pt-br/Arch_Roof.md b/wiki/translations/pt-br/Arch_Roof.md index 666a3f8256..c8c57ca9a1 100644 --- a/wiki/translations/pt-br/Arch_Roof.md +++ b/wiki/translations/pt-br/Arch_Roof.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Structure](Arch_Structure/pt-br.md), [Arch Wall](Arch_Wall/pt-br.md) --- +# Arch Roof/pt-br + @@ -125,5 +127,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Roof/pt-br diff --git a/wiki/translations/pt-br/Arch_SHP.md b/wiki/translations/pt-br/Arch_SHP.md index 4e6ef512d3..7d7928a33e 100644 --- a/wiki/translations/pt-br/Arch_SHP.md +++ b/wiki/translations/pt-br/Arch_SHP.md @@ -1,5 +1,5 @@ # Arch SHP/pt-br - FreeCAD is able to import [shapefiles](https://en.wikipedia.org/wiki/Shapefile) +FreeCAD is able to import [shapefiles](https://en.wikipedia.org/wiki/Shapefile) The importer uses the shapefile.py library from , it is not found on your system on first run, the importer will propose to download and install it for you. @@ -21,3 +21,6 @@ Note that all the question of georeferenced units, with hundreds of projection s [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SHP/pt-br diff --git a/wiki/translations/pt-br/Arch_Schedule.md b/wiki/translations/pt-br/Arch_Schedule.md index 7aa95fde5d..da3589d789 100644 --- a/wiki/translations/pt-br/Arch_Schedule.md +++ b/wiki/translations/pt-br/Arch_Schedule.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Equipment](Arch_Equipment.md) --- +# Arch Schedule/pt-br + ## Descrição The Schedule tool allows you to create and automatically populate a [spreadsheet](Spreadsheet_Workbench.md) with contents gathered from the model. @@ -105,5 +107,5 @@ It is possible to add your own properties to objects. These are called [Dynamic - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Schedule/pt-br diff --git a/wiki/translations/pt-br/Arch_SectionPlane.md b/wiki/translations/pt-br/Arch_SectionPlane.md index 0501d86b02..6dfc280001 100644 --- a/wiki/translations/pt-br/Arch_SectionPlane.md +++ b/wiki/translations/pt-br/Arch_SectionPlane.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Shape2DView](Draft_Shape2DView.md), [TechDraw ArchView](TechDraw_ArchView.md) --- +# Arch SectionPlane/pt-br + ## Descrição This tool places in the current document a section plane \"thing\", which defines a section or view plane. The \"thing\" takes its placement according to the current [Draft Working Plane](Draft_SelectPlane.md) and can be relocated and reoriented by moving and rotating it, until it describes the 2D view you want to obtain. The Section plane object will only consider a certain set of objects. Objects that are selected when you create a Section Plane will be added to that set automatically. Other objects can later be added or removed from a SectionPlane object with the [Arch Add component](Arch_Add.md) and [Arch Remove component](Arch_Remove.md) tools, or by double-clicking the Section Plane in the tree view. @@ -117,8 +119,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane/pt-br diff --git a/wiki/translations/pt-br/Arch_SelectNonSolidMeshes.md b/wiki/translations/pt-br/Arch_SelectNonSolidMeshes.md index 1a122ed816..1f021946a3 100644 --- a/wiki/translations/pt-br/Arch_SelectNonSolidMeshes.md +++ b/wiki/translations/pt-br/Arch_SelectNonSolidMeshes.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch SelectNonSolidMeshes/pt-br + ## Descrição This tool identifies and selects the non-solid (non-[manifold](http://en.wikipedia.org/wiki/Manifold)) meshes in a selected group of selected Mesh Workbench [Mesh](Mesh_Workbench.md) objects. @@ -24,5 +26,5 @@ This tool identifies and selects the non-solid (non-[manifold](http://en.wikiped - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SelectNonSolidMeshes/pt-br diff --git a/wiki/translations/pt-br/Arch_SetMaterial.md b/wiki/translations/pt-br/Arch_SetMaterial.md index 8d27f5b96a..0a7da1b5b9 100644 --- a/wiki/translations/pt-br/Arch_SetMaterial.md +++ b/wiki/translations/pt-br/Arch_SetMaterial.md @@ -7,6 +7,8 @@ SeeAlso:[Arch CompSetMaterial](Arch_CompSetMaterial.md), [Arch MultiMaterial](Arch_MultiMaterial.md) --- +# Arch SetMaterial/pt-br + ## Descrição The Material tools allows to add [materials](Material.md) to the active document, and attribute a material to an [Arch](Arch_Workbench.md) object. Materials can all the properties of a certain material, and control the color of the object to which it is attached. Materials are stored into a **Materials** folder in the active document. @@ -53,5 +55,5 @@ This roughly corresponds to [IfcMaterial](https://standards.buildingsmart.org/IF - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SetMaterial/pt-br diff --git a/wiki/translations/pt-br/Arch_Site.md b/wiki/translations/pt-br/Arch_Site.md index 7585fed538..e941a35cda 100644 --- a/wiki/translations/pt-br/Arch_Site.md +++ b/wiki/translations/pt-br/Arch_Site.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Floor](Arch_Floor.md), [Arch Building](Arch_Building.md) --- +# Arch Site/pt-br + ## Descrição The Arch Site is a special object that combines properties of a standard FreeCAD group object and Arch objects. It is particularly suited for representing a whole project site, or terrain. In IFC-based architectural work, it is mostly used to organize your model, by containing [building](Arch_Building.md) objects. The site is also used to manage and display a physical terrain, and can computes volumes of earth to be added or removed. @@ -172,5 +174,5 @@ FreeCAD.Gui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Site/pt-br diff --git a/wiki/translations/pt-br/Arch_Space.md b/wiki/translations/pt-br/Arch_Space.md index ef96636071..5418c86d76 100644 --- a/wiki/translations/pt-br/Arch_Space.md +++ b/wiki/translations/pt-br/Arch_Space.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Wall](Arch_Wall.md), [Arch Structure](Arch_Structure.md) --- +# Arch Space/pt-br + ## Description The Space tool allows you to define an empty volume, either by basing it on a solid shape, or by defining its boundaries, or a mix of both. If it is based solely on boundaries, the volume is calculated by starting from the bounding box of all the given boundaries, and subtracting the spaces behind each boundary. The space object always defines a solid volume. The floor area of a space object, calculated by intersecting a horizontal plane at the center of mass of the space volume, can also be displayed. @@ -145,5 +147,5 @@ Arch.removeSpaceBoundaries(Space, selection) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Space/pt-br diff --git a/wiki/translations/pt-br/Arch_SplitMesh.md b/wiki/translations/pt-br/Arch_SplitMesh.md index a1970a0b67..64a2fb8805 100644 --- a/wiki/translations/pt-br/Arch_SplitMesh.md +++ b/wiki/translations/pt-br/Arch_SplitMesh.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SelectNonSolidMeshes](Arch_SelectNonSolidMeshes.md), [Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch SplitMesh/pt-br + ## Descrição This tool splits a selected [Mesh](Mesh_Workbench.md) object into its separate components @@ -64,8 +66,5 @@ new_list = Arch.splitMesh(mesh_obj) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SplitMesh/pt-br diff --git a/wiki/translations/pt-br/Arch_Stairs.md b/wiki/translations/pt-br/Arch_Stairs.md index 8ec8aed269..bc672937cd 100644 --- a/wiki/translations/pt-br/Arch_Stairs.md +++ b/wiki/translations/pt-br/Arch_Stairs.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Structure](Arch_Structure/pt-br.md), [Arch Equipment](Arch_Equipment/pt-br.md) --- +# Arch Stairs/pt-br + @@ -106,5 +108,5 @@ Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Stairs/pt-br diff --git a/wiki/translations/pt-br/Arch_Structure.md b/wiki/translations/pt-br/Arch_Structure.md index 782ce1e7c5..34b134829f 100644 --- a/wiki/translations/pt-br/Arch_Structure.md +++ b/wiki/translations/pt-br/Arch_Structure.md @@ -7,6 +7,8 @@ SeeAlso:[Parede](Arch_Wall/pt-br.md), [Vergalhões](Arch_Rebar/pt-br.md) --- +# Arch Structure/pt-br + @@ -128,8 +130,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/pt-br diff --git a/wiki/translations/pt-br/Arch_Survey.md b/wiki/translations/pt-br/Arch_Survey.md index 7005923320..49f08e18ff 100644 --- a/wiki/translations/pt-br/Arch_Survey.md +++ b/wiki/translations/pt-br/Arch_Survey.md @@ -6,6 +6,8 @@ SeeAlso:[Macro FCInfo](Macro_FCInfo.md), [Macro SimpleProperties](Macro_SimpleProperties.md) --- +# Arch Survey/pt-br + ## Descrição The ** [Arch Survey](Arch_Survey.md)** tool enters a special surveying mode, which allows you to quickly grab measurements and information from a model, and transfer that information to other applications. Once you are in Survey mode, clicking on different subelements of 3D objects gathers the following information (depending on what you click): @@ -73,5 +75,5 @@ for obj in selection: - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Survey/pt-br diff --git a/wiki/translations/pt-br/Arch_ToggleIfcBrepFlag.md b/wiki/translations/pt-br/Arch_ToggleIfcBrepFlag.md index 94aa357ebb..1cc1e84f7b 100644 --- a/wiki/translations/pt-br/Arch_ToggleIfcBrepFlag.md +++ b/wiki/translations/pt-br/Arch_ToggleIfcBrepFlag.md @@ -6,6 +6,8 @@ SeeAlso:[Arch IfcExplorer](Arch_IfcExplorer.md), [Arch IFC](Arch_IFC.md) --- +# Arch ToggleIfcBrepFlag/pt-br + ## Descrição This tool turns the IfcBrep flag of a selected [Arch](Arch_Workbench.md) object on/off (the default is always off). If the flag in on, when exported to IFC, the object will be exported as an [IfcFacetedBrep](http://www.buildingsmart-tech.org/ifc/IFC4/final/html/schema/ifcgeometricmodelresource/lexical/ifcfacetedbrep.htm) object, even if a higher-level kind of export such as IfcExtrudedAreaSolid or IfcBooleanResult is possible. Although IfcFacetedBrep objects are heavier and less editable (they loose some geometry information such as the modeling history), they are often less error-prone. Setting this flag allows to solve some cases of objects that are not exported correctly when the flag is not set. @@ -24,8 +26,5 @@ This tool turns the IfcBrep flag of a selected [Arch](Arch_Workbench.md) object - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleIfcBrepFlag/pt-br diff --git a/wiki/translations/pt-br/Arch_ToggleSubs.md b/wiki/translations/pt-br/Arch_ToggleSubs.md index 3ecb33ab56..5d7ef97882 100644 --- a/wiki/translations/pt-br/Arch_ToggleSubs.md +++ b/wiki/translations/pt-br/Arch_ToggleSubs.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Component](Arch_Component.md) --- +# Arch ToggleSubs/pt-br + ## Descrição This tools toggles the visibility of all the subtractions of an [Arch](Arch_Workbench.md) object between visible and hidden. @@ -35,5 +37,5 @@ The [Draft construction](Draft_ToggleConstructionMode.md) style can be set in th - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleSubs/pt-br diff --git a/wiki/translations/pt-br/Arch_Truss.md b/wiki/translations/pt-br/Arch_Truss.md index c3bc28e9c5..df5fd64b78 100644 --- a/wiki/translations/pt-br/Arch_Truss.md +++ b/wiki/translations/pt-br/Arch_Truss.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Arch Truss/pt-br + ## Descrição The [Arch Truss](Arch_Truss.md) tool builds a [truss](https://en.wikipedia.org/wiki/Truss) object, either from a selected linear object (lie a [Draft Line](Draft_Line.md) or [Sketch](Sketcher_NewSketch.md)), or from scratch, if no object is selected when launching the command. @@ -98,5 +100,5 @@ truss.HeightEnd = 400 - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Truss/pt-br diff --git a/wiki/translations/pt-br/Arch_Wall.md b/wiki/translations/pt-br/Arch_Wall.md index 1fd1fc9c45..87fac7e947 100644 --- a/wiki/translations/pt-br/Arch_Wall.md +++ b/wiki/translations/pt-br/Arch_Wall.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Structure](Arch_Structure/pt-br.md) --- +# Arch Wall/pt-br + @@ -150,8 +152,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/pt-br diff --git a/wiki/translations/pt-br/Arch_Window.md b/wiki/translations/pt-br/Arch_Window.md index 7835055200..2fe742ace1 100644 --- a/wiki/translations/pt-br/Arch_Window.md +++ b/wiki/translations/pt-br/Arch_Window.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Wall](Arch_Wall/pt-br.md) --- +# Arch Window/pt-br + @@ -233,8 +235,5 @@ Door = Arch.makeWindowPreset("Simple door", - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Window/pt-br diff --git a/wiki/translations/pt-br/Arch_Workbench.md b/wiki/translations/pt-br/Arch_Workbench.md index fa7d0dd0f1..194b428726 100644 --- a/wiki/translations/pt-br/Arch_Workbench.md +++ b/wiki/translations/pt-br/Arch_Workbench.md @@ -1,10 +1,4 @@ -# Arch Workbench/pt-br - - - - - -Ícone da bancada de trabalho Arch +# Ícone da bancada de trabalho Arch Arch Workbench/pt-br {{TOCright}} @@ -145,3 +139,6 @@ A bancada (módulo) Arch pode ser usado em scripts [Python](Python/pt-br.md) e [ [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/pt-br diff --git a/wiki/translations/pt-br/Arch_panel_tutorial.md b/wiki/translations/pt-br/Arch_panel_tutorial.md index 7d378798f2..96515c7d6f 100644 --- a/wiki/translations/pt-br/Arch_panel_tutorial.md +++ b/wiki/translations/pt-br/Arch_panel_tutorial.md @@ -1,7 +1,4 @@ # Arch panel tutorial/pt-br - - - {{TutorialInfo |Topic= Modeling an architectural panel |Level= Beginner @@ -198,4 +195,7 @@ Both Draft Rotate and Move tools make use of the Draft Snapping system. Differen {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch panel tutorial/pt-br diff --git a/wiki/translations/pt-br/Arch_tutorial.md b/wiki/translations/pt-br/Arch_tutorial.md index ec8fe97698..2fdc8782c2 100644 --- a/wiki/translations/pt-br/Arch_tutorial.md +++ b/wiki/translations/pt-br/Arch_tutorial.md @@ -1,7 +1,4 @@ # Arch tutorial/pt-br - - -
@@ -561,4 +558,7 @@ The file created during this tutorial can be found [here](http://yorik.uncreated {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch tutorial/pt-br diff --git a/wiki/translations/pt-br/Artwork.md b/wiki/translations/pt-br/Artwork.md index e875f462b2..8a6d1b12c7 100644 --- a/wiki/translations/pt-br/Artwork.md +++ b/wiki/translations/pt-br/Artwork.md @@ -1,5 +1,5 @@ # Artwork/pt-br - Here is the artwork that has been created for FreeCAD. Feel free to reuse in other applications. If you would like to contribute with icons, please read the [artwork guidelines](Artwork_Guidelines.md). +Here is the artwork that has been created for FreeCAD. Feel free to reuse in other applications. If you would like to contribute with icons, please read the [artwork guidelines](Artwork_Guidelines.md). ## Miscellaneous icons @@ -157,3 +157,6 @@ See [Artwork Erroneous](Artwork_Erroneous.md). }} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork/pt-br diff --git a/wiki/translations/pt-br/Artwork_Guidelines.md b/wiki/translations/pt-br/Artwork_Guidelines.md index 7152203865..716d2f7414 100644 --- a/wiki/translations/pt-br/Artwork_Guidelines.md +++ b/wiki/translations/pt-br/Artwork_Guidelines.md @@ -1,6 +1,4 @@ # Artwork Guidelines/pt-br - - ## Introduction @@ -173,3 +171,6 @@ A grayscale image allows you to more easily identify problems in contrast, as on {{Artwork}} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Artwork Guidelines/pt-br diff --git a/wiki/translations/pt-br/Assembly.md b/wiki/translations/pt-br/Assembly.md index f7777c6fd2..4abb2de9e2 100644 --- a/wiki/translations/pt-br/Assembly.md +++ b/wiki/translations/pt-br/Assembly.md @@ -1,6 +1,4 @@ # Assembly/pt-br - - ## Introdução @@ -53,3 +51,6 @@ The assembly workbenches continue development, and it is expected that at some p }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Assembly/pt-br diff --git a/wiki/translations/pt-br/Assembly_project.md b/wiki/translations/pt-br/Assembly_project.md index 5bed8299fe..c425628d0a 100644 --- a/wiki/translations/pt-br/Assembly_project.md +++ b/wiki/translations/pt-br/Assembly_project.md @@ -1,7 +1,4 @@ # Assembly project/pt-br - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -156,3 +153,6 @@ Interface to allow (external) (multi)physics simulation software to take control - \... [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Assembly project/pt-br diff --git a/wiki/translations/pt-br/Basic_Part_Design_Tutorial.md b/wiki/translations/pt-br/Basic_Part_Design_Tutorial.md index e696d22858..9bc2d267d3 100644 --- a/wiki/translations/pt-br/Basic_Part_Design_Tutorial.md +++ b/wiki/translations/pt-br/Basic_Part_Design_Tutorial.md @@ -1,5 +1,5 @@ # Basic Part Design Tutorial/pt-br - {{TutorialInfo +{{TutorialInfo |Topic=Modeling |Level=Beginner |Author=Mark Stephen ([Quick61](User:Quick61.md)) and HarryGeier ([HarryGeier](User:HarryGeier.md)) @@ -148,4 +148,7 @@ This tutorial and your model are complete. {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Part Design Tutorial/pt-br diff --git a/wiki/translations/pt-br/Basic_Sketcher_Tutorial.md b/wiki/translations/pt-br/Basic_Sketcher_Tutorial.md index b5163b108f..a7985c9526 100644 --- a/wiki/translations/pt-br/Basic_Sketcher_Tutorial.md +++ b/wiki/translations/pt-br/Basic_Sketcher_Tutorial.md @@ -1,7 +1,4 @@ # Basic Sketcher Tutorial/pt-br - - - {{TutorialInfo |Topic=Sketcher |Level=Beginner @@ -292,4 +289,7 @@ Constraining a sketch can be done in many different ways. In general, it is reco {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Sketcher Tutorial/pt-br diff --git a/wiki/translations/pt-br/Basic_modeling_tutorial.md b/wiki/translations/pt-br/Basic_modeling_tutorial.md index fe556891c0..7396845d46 100644 --- a/wiki/translations/pt-br/Basic_modeling_tutorial.md +++ b/wiki/translations/pt-br/Basic_modeling_tutorial.md @@ -1,5 +1,5 @@ # Basic modeling tutorial/pt-br - {{TutorialInfo +{{TutorialInfo |Topic= Introduction to modelling |Level= Beginner |Time= 15 minutes @@ -131,4 +131,7 @@ The above instructions will work, no matter what label your button has. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Basic modeling tutorial/pt-br diff --git a/wiki/translations/pt-br/Bitmap.md b/wiki/translations/pt-br/Bitmap.md index 04d5f24cba..8bd18b5206 100644 --- a/wiki/translations/pt-br/Bitmap.md +++ b/wiki/translations/pt-br/Bitmap.md @@ -1,6 +1,4 @@ # Bitmap/pt-br - - ## Descrição [Bitmaps](https://en.wikipedia.org/wiki/Bitmap) or [raster graphics](http://en.wikipedia.org/wiki/Raster_graphics) are 2D images that are collections of pixels painted of different color shades. Together, thousands or millions of these pixels are able to represent an image or color picture to the human eye. @@ -17,3 +15,6 @@ FreeCAD can import bitmap images using the [Image Workbench](Image_Workbench.md) [Category:User Documentation](Category:User_Documentation.md) [Category:TechDraw](Category:TechDraw.md) [Category:Image](Category:Image.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Bitmap/pt-br diff --git a/wiki/translations/pt-br/Body.md b/wiki/translations/pt-br/Body.md index 4b121a7a42..fc846158d4 100644 --- a/wiki/translations/pt-br/Body.md +++ b/wiki/translations/pt-br/Body.md @@ -1,6 +1,4 @@ # Body/pt-br - - ## Introdução In FreeCAD the word \"[Body](Body.md)\" is normally used to refer to a [PartDesign Body](PartDesign_Body.md) object (`PartDesign::Body` class) that is defined by the [PartDesign Workbench](PartDesign_Workbench.md). This is a container object that can hold [2D sketches](Sketch.md) and [3D geometrical features](PartDesign_Feature.md) to build a solid shape. @@ -29,3 +27,6 @@ A Body is not required when using the [Part Workbench](Part_Workbench.md), as th }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Body/pt-br diff --git a/wiki/translations/pt-br/Branding.md b/wiki/translations/pt-br/Branding.md index 94321227c2..9bc48d8019 100644 --- a/wiki/translations/pt-br/Branding.md +++ b/wiki/translations/pt-br/Branding.md @@ -1,10 +1,4 @@ # Branding/pt-br - - - - - - {{TOCright}} ## Visão geral @@ -130,3 +124,6 @@ Todas as etiquetas listadas são opcionais. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Branding/pt-br diff --git a/wiki/translations/pt-br/Bug_Triage.md b/wiki/translations/pt-br/Bug_Triage.md index 3091aae380..6353c96cbf 100644 --- a/wiki/translations/pt-br/Bug_Triage.md +++ b/wiki/translations/pt-br/Bug_Triage.md @@ -1,10 +1,4 @@ # Bug Triage/pt-br - - - - - - {{TOCright}} ## Why @@ -155,3 +149,6 @@ An important methodology to track tickets by a certain subject/theme/category. I [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Bug Triage/pt-br diff --git a/wiki/translations/pt-br/Category:Addons.md b/wiki/translations/pt-br/Category:Addons.md index 7306c800ee..a5ecce504d 100644 --- a/wiki/translations/pt-br/Category:Addons.md +++ b/wiki/translations/pt-br/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/pt-br - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [Addon/pt-br](Addon/pt-br.md) , [Cfd Workbench/pt-br](Cfd_Workbench/pt-br.md) , [External workbenches/pt-br](External_workbenches/pt-br.md) , [How to install additional workbenches/pt-br](How_to_install_additional_workbenches/pt-br.md) , [Plot Module/pt-br](Plot_Module/pt-br.md) , [Reinforcement Workbench/pt-br](Reinforcement_Workbench/pt-br.md) , [Ship Workbench/pt-br](Ship_Workbench/pt-br.md) , , [Category:Categories](Category:Categories.md) [Category:External Workbenches/pt-br](Category:External_Workbenches/pt-br.md) [Category:Macros/pt-br](Category:Macros/pt-br.md) + +--- +[documentation index](../README.md) > Category:Addons/pt-br diff --git a/wiki/translations/pt-br/Category:Administration.md b/wiki/translations/pt-br/Category:Administration.md index 401ea8ab48..4926218189 100644 --- a/wiki/translations/pt-br/Category:Administration.md +++ b/wiki/translations/pt-br/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/pt-br](Template:Arch_Tools_navi/pt-br.md) , [Bug Triage/pt-br](Bug_Triage/pt-br.md) , [Template:Drawing Tools navi/pt-br](Template:Drawing_Tools_navi/pt-br.md) , [Template:FEM Tools navi/pt-br](Template:FEM_Tools_navi/pt-br.md) , [Template:Mesh Tools navi/pt-br](Template:Mesh_Tools_navi/pt-br.md) , [Template:OpenSCAD Tools navi/pt-br](Template:OpenSCAD_Tools_navi/pt-br.md) , [Template:Part Tools navi/pt-br](Template:Part_Tools_navi/pt-br.md) , [Template:PartDesign Tools navi/pt-br](Template:PartDesign_Tools_navi/pt-br.md) , [Template:Path Tools navi/pt-br](Template:Path_Tools_navi/pt-br.md) , [Template:Plot Tools navi/pt-br](Template:Plot_Tools_navi/pt-br.md) , [Template:Raytracing Tools navi/pt-br](Template:Raytracing_Tools_navi/pt-br.md) , [Template:Robot Tools navi/pt-br](Template:Robot_Tools_navi/pt-br.md) , [Template:Ship Tools navi/pt-br](Template:Ship_Tools_navi/pt-br.md) , [Template:Sketcher Tools navi/pt-br](Template:Sketcher_Tools_navi/pt-br.md) , [Tracker/pt-br](Tracker/pt-br.md) , [WikiPages/pt-br](WikiPages/pt-br.md) [Category:Categories/pt-br](Category:Categories/pt-br.md) + +--- +[documentation index](../README.md) > Category:Administration/pt-br diff --git a/wiki/translations/pt-br/Category:Arch.md b/wiki/translations/pt-br/Category:Arch.md index c61a76fbf2..8f0e3e5d74 100644 --- a/wiki/translations/pt-br/Category:Arch.md +++ b/wiki/translations/pt-br/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Arch 3DS/pt-br](Arch_3DS/pt-br.md) , [Arch 3Views/pt-br](Arch_3Views/pt-br.md) , [Arch Add/pt-br](Arch_Add/pt-br.md) , [Arch Axis/pt-br](Arch_Axis/pt-br.md) , [Arch AxisSystem/pt-br](Arch_AxisSystem/pt-br.md) , [Arch Building/pt-br](Arch_Building/pt-br.md) , [Arch BuildingPart/pt-br](Arch_BuildingPart/pt-br.md) , [Arch Check/pt-br](Arch_Check/pt-br.md) , [Arch CloneComponent/pt-br](Arch_CloneComponent/pt-br.md) , [Arch CloseHoles/pt-br](Arch_CloseHoles/pt-br.md) , [Arch CompAxis/pt-br](Arch_CompAxis/pt-br.md) , [Arch Component/pt-br](Arch_Component/pt-br.md) , [Arch CompPanel/pt-br](Arch_CompPanel/pt-br.md) , [Arch CompPipe/pt-br](Arch_CompPipe/pt-br.md) , [Arch CompRebarStraight/pt-br](Arch_CompRebarStraight/pt-br.md) , [Arch CompSetMaterial/pt-br](Arch_CompSetMaterial/pt-br.md) , [Arch CurtainWall/pt-br](Arch_CurtainWall/pt-br.md) , [Arch CutLine/pt-br](Arch_CutLine/pt-br.md) , [Arch CutPlane/pt-br](Arch_CutPlane/pt-br.md) , [Arch DAE/pt-br](Arch_DAE/pt-br.md) , [Arch Equipment/pt-br](Arch_Equipment/pt-br.md) , [Arch Fence/pt-br](Arch_Fence/pt-br.md) , [Arch Floor/pt-br](Arch_Floor/pt-br.md) , [Arch Frame/pt-br](Arch_Frame/pt-br.md) , [Arch Grid/pt-br](Arch_Grid/pt-br.md) , [Arch IFC/pt-br](Arch_IFC/pt-br.md) , [Arch IfcExplorer/pt-br](Arch_IfcExplorer/pt-br.md) , [Arch IfcSpreadsheet/pt-br](Arch_IfcSpreadsheet/pt-br.md) , [Arch JSON/pt-br](Arch_JSON/pt-br.md) , [Arch MergeWalls/pt-br](Arch_MergeWalls/pt-br.md) , [Arch MeshToShape/pt-br](Arch_MeshToShape/pt-br.md) , [Arch MultiMaterial/pt-br](Arch_MultiMaterial/pt-br.md) , [Arch Nest/pt-br](Arch_Nest/pt-br.md) , [Arch OBJ/pt-br](Arch_OBJ/pt-br.md) , [Arch Panel Cut/pt-br](Arch_Panel_Cut/pt-br.md) , [Arch Panel Sheet/pt-br](Arch_Panel_Sheet/pt-br.md) , [Arch panel tutorial/pt-br](Arch_panel_tutorial/pt-br.md) , [Arch Panel/pt-br](Arch_Panel/pt-br.md) , [Arch Pipe/pt-br](Arch_Pipe/pt-br.md) , [Arch PipeConnector/pt-br](Arch_PipeConnector/pt-br.md) , [Arch Preferences/pt-br](Arch_Preferences/pt-br.md) , [Arch Profile/pt-br](Arch_Profile/pt-br.md) , [Arch Project/pt-br](Arch_Project/pt-br.md) , [Arch Rebar BeamReinforcement/pt-br](Arch_Rebar_BeamReinforcement/pt-br.md) , [Arch Rebar BentShape/pt-br](Arch_Rebar_BentShape/pt-br.md) , [Arch Rebar Circular ColumnReinforcement/pt-br](Arch_Rebar_Circular_ColumnReinforcement/pt-br.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/pt-br](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/pt-br.md) , [Arch Rebar ColumnReinforcement/pt-br](Arch_Rebar_ColumnReinforcement/pt-br.md) , [Arch Rebar Drawing Dimensioning/pt-br](Arch_Rebar_Drawing_Dimensioning/pt-br.md) , [Arch Rebar Helical/pt-br](Arch_Rebar_Helical/pt-br.md) , [Arch Rebar LShape/pt-br](Arch_Rebar_LShape/pt-br.md) , [Arch Rebar Stirrup/pt-br](Arch_Rebar_Stirrup/pt-br.md) , [Arch Rebar Straight/pt-br](Arch_Rebar_Straight/pt-br.md) , [Arch Rebar UShape/pt-br](Arch_Rebar_UShape/pt-br.md) , [Arch Rebar/pt-br](Arch_Rebar/pt-br.md) , [Arch Reference/pt-br](Arch_Reference/pt-br.md) , [Arch Remove/pt-br](Arch_Remove/pt-br.md) , [Arch RemoveShape/pt-br](Arch_RemoveShape/pt-br.md) , [Arch Roof/pt-br](Arch_Roof/pt-br.md) , [Arch Schedule/pt-br](Arch_Schedule/pt-br.md) , [Arch SectionPlane/pt-br](Arch_SectionPlane/pt-br.md) , [Arch SelectNonSolidMeshes/pt-br](Arch_SelectNonSolidMeshes/pt-br.md) , [Arch SetMaterial/pt-br](Arch_SetMaterial/pt-br.md) , [Arch SHP/pt-br](Arch_SHP/pt-br.md) , [Arch Site/pt-br](Arch_Site/pt-br.md) , [Arch Space/pt-br](Arch_Space/pt-br.md) , [Arch SplitMesh/pt-br](Arch_SplitMesh/pt-br.md) , [Arch Stairs/pt-br](Arch_Stairs/pt-br.md) , [Arch Structure/pt-br](Arch_Structure/pt-br.md) , [Arch Survey/pt-br](Arch_Survey/pt-br.md) , [Arch ToggleIfcBrepFlag/pt-br](Arch_ToggleIfcBrepFlag/pt-br.md) , [Arch ToggleSubs/pt-br](Arch_ToggleSubs/pt-br.md) , [Template:Arch Tools navi/pt-br](Template:Arch_Tools_navi/pt-br.md) , [Arch Truss/pt-br](Arch_Truss/pt-br.md) , [Arch tutorial/pt-br](Arch_tutorial/pt-br.md) , [Arch Wall/pt-br](Arch_Wall/pt-br.md) , [Arch Window/pt-br](Arch_Window/pt-br.md) , [Arch Workbench/pt-br](Arch_Workbench/pt-br.md) , [Manual:BIM modeling/pt-br](Manual:BIM_modeling/pt-br.md) , [Material editor/pt-br](Material_editor/pt-br.md) , [Material/pt-br](Material/pt-br.md) [Category:User Documentation/pt-br](Category:User_Documentation/pt-br.md) [Category:BIM/pt-br](Category:BIM/pt-br.md) + +--- +[documentation index](../README.md) > Category:Arch/pt-br diff --git a/wiki/translations/pt-br/Category:BIM.md b/wiki/translations/pt-br/Category:BIM.md index d64a4122e9..7c6ffbf0f1 100644 --- a/wiki/translations/pt-br/Category:BIM.md +++ b/wiki/translations/pt-br/Category:BIM.md @@ -6,3 +6,6 @@ This category is for pages related to building information management (BIM). [Arch IfcExplorer/pt-br](Arch_IfcExplorer/pt-br.md) , [Manual:BIM modeling/pt-br](Manual:BIM_modeling/pt-br.md) , [Material/pt-br](Material/pt-br.md) , [Category:User Documentation/pt-br](Category:User_Documentation/pt-br.md) [Category:Arch/pt-br](Category:Arch/pt-br.md) + +--- +[documentation index](../README.md) > Category:BIM/pt-br diff --git a/wiki/translations/pt-br/Category:Categories.md b/wiki/translations/pt-br/Category:Categories.md index 5fda904415..767e991764 100644 --- a/wiki/translations/pt-br/Category:Categories.md +++ b/wiki/translations/pt-br/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , , , , [Category:Categories/pt-br](Category:Categories/pt-br.md) [Category:Addons/pt-br](Category:Addons/pt-br.md) [Category:Administration/pt-br](Category:Administration/pt-br.md) [Category:Categories/pt-br](Category:Categories/pt-br.md) [Category:Command Reference/pt-br](Category:Command_Reference/pt-br.md) [Category:Developer/pt-br](Category:Developer/pt-br.md) [Category:Documentation/pt-br](Category:Documentation/pt-br.md) [Category:Hubs/pt-br](Category:Hubs/pt-br.md) [Category:Macros/pt-br](Category:Macros/pt-br.md) [Category:Roadmap/pt-br](Category:Roadmap/pt-br.md) [Category:Template/pt-br](Category:Template/pt-br.md) [Category:Tutorials/pt-br](Category:Tutorials/pt-br.md) + +--- +[documentation index](../README.md) > Category:Categories/pt-br diff --git a/wiki/translations/pt-br/Category:Command_Reference.md b/wiki/translations/pt-br/Category:Command_Reference.md index 1273edf65f..4fee9c1f1d 100644 --- a/wiki/translations/pt-br/Category:Command_Reference.md +++ b/wiki/translations/pt-br/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD command. [Arch 3Views/pt-br](Arch_3Views/pt-br.md) , [Arch Add/pt-br](Arch_Add/pt-br.md) , [Arch Axis/pt-br](Arch_Axis/pt-br.md) , [Arch AxisSystem/pt-br](Arch_AxisSystem/pt-br.md) , [Arch Building/pt-br](Arch_Building/pt-br.md) , [Arch BuildingPart/pt-br](Arch_BuildingPart/pt-br.md) , [Arch Check/pt-br](Arch_Check/pt-br.md) , [Arch CloneComponent/pt-br](Arch_CloneComponent/pt-br.md) , [Arch CloseHoles/pt-br](Arch_CloseHoles/pt-br.md) , [Arch CompAxis/pt-br](Arch_CompAxis/pt-br.md) , [Arch Component/pt-br](Arch_Component/pt-br.md) , [Arch CompPanel/pt-br](Arch_CompPanel/pt-br.md) , [Arch CompPipe/pt-br](Arch_CompPipe/pt-br.md) , [Arch CompRebarStraight/pt-br](Arch_CompRebarStraight/pt-br.md) , [Arch CompSetMaterial/pt-br](Arch_CompSetMaterial/pt-br.md) , [Arch CurtainWall/pt-br](Arch_CurtainWall/pt-br.md) , [Arch CutLine/pt-br](Arch_CutLine/pt-br.md) , [Arch CutPlane/pt-br](Arch_CutPlane/pt-br.md) , [Arch Equipment/pt-br](Arch_Equipment/pt-br.md) , [Arch Fence/pt-br](Arch_Fence/pt-br.md) , [Arch Floor/pt-br](Arch_Floor/pt-br.md) , [Arch Frame/pt-br](Arch_Frame/pt-br.md) , [Arch Grid/pt-br](Arch_Grid/pt-br.md) , [Arch IfcExplorer/pt-br](Arch_IfcExplorer/pt-br.md) , [Arch IfcSpreadsheet/pt-br](Arch_IfcSpreadsheet/pt-br.md) , [Arch MergeWalls/pt-br](Arch_MergeWalls/pt-br.md) , [Arch MeshToShape/pt-br](Arch_MeshToShape/pt-br.md) , [Arch MultiMaterial/pt-br](Arch_MultiMaterial/pt-br.md) , [Arch Nest/pt-br](Arch_Nest/pt-br.md) , [Arch Panel Cut/pt-br](Arch_Panel_Cut/pt-br.md) , [Arch Panel Sheet/pt-br](Arch_Panel_Sheet/pt-br.md) , [Arch Panel/pt-br](Arch_Panel/pt-br.md) , [Arch Pipe/pt-br](Arch_Pipe/pt-br.md) , [Arch PipeConnector/pt-br](Arch_PipeConnector/pt-br.md) , [Arch Profile/pt-br](Arch_Profile/pt-br.md) , [Arch Project/pt-br](Arch_Project/pt-br.md) , [Arch Rebar BeamReinforcement/pt-br](Arch_Rebar_BeamReinforcement/pt-br.md) , [Arch Rebar BentShape/pt-br](Arch_Rebar_BentShape/pt-br.md) , [Arch Rebar BOM/pt-br](Arch_Rebar_BOM/pt-br.md) , [Arch Rebar Circular ColumnReinforcement/pt-br](Arch_Rebar_Circular_ColumnReinforcement/pt-br.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/pt-br](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/pt-br.md) , [Arch Rebar ColumnReinforcement/pt-br](Arch_Rebar_ColumnReinforcement/pt-br.md) , [Arch Rebar Drawing Dimensioning/pt-br](Arch_Rebar_Drawing_Dimensioning/pt-br.md) , [Arch Rebar Helical/pt-br](Arch_Rebar_Helical/pt-br.md) , [Arch Rebar LShape/pt-br](Arch_Rebar_LShape/pt-br.md) , [Arch Rebar Stirrup/pt-br](Arch_Rebar_Stirrup/pt-br.md) , [Arch Rebar Straight/pt-br](Arch_Rebar_Straight/pt-br.md) , [Arch Rebar UShape/pt-br](Arch_Rebar_UShape/pt-br.md) , [Arch Rebar/pt-br](Arch_Rebar/pt-br.md) , [Arch Reference/pt-br](Arch_Reference/pt-br.md) , [Arch Remove/pt-br](Arch_Remove/pt-br.md) , [Arch RemoveShape/pt-br](Arch_RemoveShape/pt-br.md) , [Arch Roof/pt-br](Arch_Roof/pt-br.md) , [Arch Schedule/pt-br](Arch_Schedule/pt-br.md) , [Arch SectionPlane/pt-br](Arch_SectionPlane/pt-br.md) , [Arch SelectNonSolidMeshes/pt-br](Arch_SelectNonSolidMeshes/pt-br.md) , [Arch SetMaterial/pt-br](Arch_SetMaterial/pt-br.md) , [Arch Site/pt-br](Arch_Site/pt-br.md) , [Arch Space/pt-br](Arch_Space/pt-br.md) , [Arch SplitMesh/pt-br](Arch_SplitMesh/pt-br.md) , [Arch Stairs/pt-br](Arch_Stairs/pt-br.md) , [Arch Structure/pt-br](Arch_Structure/pt-br.md) , [Arch Survey/pt-br](Arch_Survey/pt-br.md) , [Arch ToggleIfcBrepFlag/pt-br](Arch_ToggleIfcBrepFlag/pt-br.md) , [Arch ToggleSubs/pt-br](Arch_ToggleSubs/pt-br.md) , [Arch Truss/pt-br](Arch_Truss/pt-br.md) , [Arch Wall/pt-br](Arch_Wall/pt-br.md) , [Arch Window/pt-br](Arch_Window/pt-br.md) , [Draft AddConstruction/pt-br](Draft_AddConstruction/pt-br.md) , [Draft AddToGroup/pt-br](Draft_AddToGroup/pt-br.md) , [Draft AnnotationStyleEditor/pt-br](Draft_AnnotationStyleEditor/pt-br.md) , [Draft ApplyStyle/pt-br](Draft_ApplyStyle/pt-br.md) , [Draft Arc 3Points/pt-br](Draft_Arc_3Points/pt-br.md) , [Draft Arc/pt-br](Draft_Arc/pt-br.md) , [Draft Array/pt-br](Draft_Array/pt-br.md) , [Draft AutoGroup/pt-br](Draft_AutoGroup/pt-br.md) , [Draft BezCurve/pt-br](Draft_BezCurve/pt-br.md) , [Draft BSpline/pt-br](Draft_BSpline/pt-br.md) , [Draft Circle/pt-br](Draft_Circle/pt-br.md) , [Draft CircularArray/pt-br](Draft_CircularArray/pt-br.md) , [Draft Clone/pt-br](Draft_Clone/pt-br.md) , [Draft CubicBezCurve/pt-br](Draft_CubicBezCurve/pt-br.md) , [Draft Dimension/pt-br](Draft_Dimension/pt-br.md) , [Draft Downgrade/pt-br](Draft_Downgrade/pt-br.md) , [Draft Draft2Sketch/pt-br](Draft_Draft2Sketch/pt-br.md) , [Draft Drawing/pt-br](Draft_Drawing/pt-br.md) , [Draft Edit/pt-br](Draft_Edit/pt-br.md) , [Draft Ellipse/pt-br](Draft_Ellipse/pt-br.md) , [Draft Facebinder/pt-br](Draft_Facebinder/pt-br.md) , [Draft Fillet/pt-br](Draft_Fillet/pt-br.md) , [Draft FlipDimension/pt-br](Draft_FlipDimension/pt-br.md) , [Draft Heal/pt-br](Draft_Heal/pt-br.md) , [Draft Join/pt-br](Draft_Join/pt-br.md) , [Draft Label/pt-br](Draft_Label/pt-br.md) , [Draft Layer/pt-br](Draft_Layer/pt-br.md) , [Draft Line/pt-br](Draft_Line/pt-br.md) , [Draft Mirror/pt-br](Draft_Mirror/pt-br.md) , [Draft Move/pt-br](Draft_Move/pt-br.md) , [Draft Offset/pt-br](Draft_Offset/pt-br.md) , [Draft OrthoArray/pt-br](Draft_OrthoArray/pt-br.md) , [Draft PathArray/pt-br](Draft_PathArray/pt-br.md) , [Draft PathLinkArray/pt-br](Draft_PathLinkArray/pt-br.md) , [Draft Point/pt-br](Draft_Point/pt-br.md) , [Draft PointArray/pt-br](Draft_PointArray/pt-br.md) , [Draft PointLinkArray/pt-br](Draft_PointLinkArray/pt-br.md) , [Draft PolarArray/pt-br](Draft_PolarArray/pt-br.md) , [Draft Polygon/pt-br](Draft_Polygon/pt-br.md) , [Draft Rectangle/pt-br](Draft_Rectangle/pt-br.md) , [Draft Rotate/pt-br](Draft_Rotate/pt-br.md) , [Draft Scale/pt-br](Draft_Scale/pt-br.md) , [Draft SelectGroup/pt-br](Draft_SelectGroup/pt-br.md) , [Draft SelectPlane/pt-br](Draft_SelectPlane/pt-br.md) , [Draft SetStyle/pt-br](Draft_SetStyle/pt-br.md) , [Draft Shape2DView/pt-br](Draft_Shape2DView/pt-br.md) , [Draft ShapeString/pt-br](Draft_ShapeString/pt-br.md) , [Draft ShowSnapBar/pt-br](Draft_ShowSnapBar/pt-br.md) , [Draft Slope/pt-br](Draft_Slope/pt-br.md) , [Draft Snap Angle/pt-br](Draft_Snap_Angle/pt-br.md) , [Draft Snap Center/pt-br](Draft_Snap_Center/pt-br.md) , [Draft Snap Dimensions/pt-br](Draft_Snap_Dimensions/pt-br.md) , [Draft Snap Endpoint/pt-br](Draft_Snap_Endpoint/pt-br.md) , [Draft Snap Extension/pt-br](Draft_Snap_Extension/pt-br.md) , [Draft Snap Grid/pt-br](Draft_Snap_Grid/pt-br.md) , [Draft Snap Intersection/pt-br](Draft_Snap_Intersection/pt-br.md) , [Draft Snap Lock/pt-br](Draft_Snap_Lock/pt-br.md) , [Draft Snap Midpoint/pt-br](Draft_Snap_Midpoint/pt-br.md) , [Draft Snap Near/pt-br](Draft_Snap_Near/pt-br.md) , [Draft Snap Ortho/pt-br](Draft_Snap_Ortho/pt-br.md) , [Draft Snap Parallel/pt-br](Draft_Snap_Parallel/pt-br.md) , [Draft Snap Perpendicular/pt-br](Draft_Snap_Perpendicular/pt-br.md) , [Draft Snap Special/pt-br](Draft_Snap_Special/pt-br.md) , [Draft Snap WorkingPlane/pt-br](Draft_Snap_WorkingPlane/pt-br.md) , [Draft Split/pt-br](Draft_Split/pt-br.md) , [Draft Stretch/pt-br](Draft_Stretch/pt-br.md) , [Draft SubelementHighlight/pt-br](Draft_SubelementHighlight/pt-br.md) , [Draft Text/pt-br](Draft_Text/pt-br.md) , [Draft ToggleConstructionMode/pt-br](Draft_ToggleConstructionMode/pt-br.md) , [Draft ToggleContinueMode/pt-br](Draft_ToggleContinueMode/pt-br.md) , [Draft ToggleDisplayMode/pt-br](Draft_ToggleDisplayMode/pt-br.md) , [Draft ToggleGrid/pt-br](Draft_ToggleGrid/pt-br.md) , [Draft Trimex/pt-br](Draft_Trimex/pt-br.md) , [Draft Upgrade/pt-br](Draft_Upgrade/pt-br.md) , [Draft Wire/pt-br](Draft_Wire/pt-br.md) , [Draft WireToBSpline/pt-br](Draft_WireToBSpline/pt-br.md) , [Draft WorkingPlaneProxy/pt-br](Draft_WorkingPlaneProxy/pt-br.md) , [FEM Analysis/pt-br](FEM_Analysis/pt-br.md) , [FEM ConstraintElectrostaticPotential/pt-br](FEM_ConstraintElectrostaticPotential/pt-br.md) , [FEM ElementFluid1D/pt-br](FEM_ElementFluid1D/pt-br.md) , [FEM ElementGeometry1D/pt-br](FEM_ElementGeometry1D/pt-br.md) , [FEM ElementGeometry2D/pt-br](FEM_ElementGeometry2D/pt-br.md) , [FEM ElementRotation1D/pt-br](FEM_ElementRotation1D/pt-br.md) , [FEM MaterialFluid/pt-br](FEM_MaterialFluid/pt-br.md) , [FEM MaterialMechanicalNonlinear/pt-br](FEM_MaterialMechanicalNonlinear/pt-br.md) , [FEM MaterialReinforced/pt-br](FEM_MaterialReinforced/pt-br.md) , [FEM MaterialSolid/pt-br](FEM_MaterialSolid/pt-br.md) , [FEM MeshGmshFromShape/pt-br](FEM_MeshGmshFromShape/pt-br.md) , [FEM SolverCalculiX/pt-br](FEM_SolverCalculiX/pt-br.md) , [FEM SolverElmer/pt-br](FEM_SolverElmer/pt-br.md) , [FEM SolverZ88/pt-br](FEM_SolverZ88/pt-br.md) , [GuiCommand model/pt-br](GuiCommand_model/pt-br.md) , [Template:GuiCommand/pt-br](Template:GuiCommand/pt-br.md) , [Image CreateImagePlane/pt-br](Image_CreateImagePlane/pt-br.md) , [Image Open/pt-br](Image_Open/pt-br.md) , [Image Scaling/pt-br](Image_Scaling/pt-br.md) , [Material editor/pt-br](Material_editor/pt-br.md) , [Mesh FromPartShape/pt-br](Mesh_FromPartShape/pt-br.md) , [Part Boolean/pt-br](Part_Boolean/pt-br.md) , [Part BooleanFragments/pt-br](Part_BooleanFragments/pt-br.md) , [Part Box/pt-br](Part_Box/pt-br.md) , [Part BoxSelection/pt-br](Part_BoxSelection/pt-br.md) , [Part Builder/pt-br](Part_Builder/pt-br.md) , [Part Chamfer/pt-br](Part_Chamfer/pt-br.md) , [Part CheckGeometry/pt-br](Part_CheckGeometry/pt-br.md) , [Part Circle/pt-br](Part_Circle/pt-br.md) , [Part Common/pt-br](Part_Common/pt-br.md) , [Part CompCompoundTools/pt-br](Part_CompCompoundTools/pt-br.md) , [Part CompJoinFeatures/pt-br](Part_CompJoinFeatures/pt-br.md) , [Part CompOffsetTools/pt-br](Part_CompOffsetTools/pt-br.md) , [Part Compound/pt-br](Part_Compound/pt-br.md) , [Part CompoundFilter/pt-br](Part_CompoundFilter/pt-br.md) , [Part CompSplittingTools/pt-br](Part_CompSplittingTools/pt-br.md) , [Part Cone/pt-br](Part_Cone/pt-br.md) , [Part CrossSections/pt-br](Part_CrossSections/pt-br.md) , [Part Cut/pt-br](Part_Cut/pt-br.md) , [Part Cylinder/pt-br](Part_Cylinder/pt-br.md) , [Part Defeaturing/pt-br](Part_Defeaturing/pt-br.md) , [Part EditAttachment/pt-br](Part_EditAttachment/pt-br.md) , [Part ElementCopy/pt-br](Part_ElementCopy/pt-br.md) , [Part Ellipse/pt-br](Part_Ellipse/pt-br.md) , [Part Ellipsoid/pt-br](Part_Ellipsoid/pt-br.md) , [Part ExplodeCompound/pt-br](Part_ExplodeCompound/pt-br.md) , [Part Export/pt-br](Part_Export/pt-br.md) , [Part Extrude/pt-br](Part_Extrude/pt-br.md) , [Part FaceColors/pt-br](Part_FaceColors/pt-br.md) , [Part Fillet/pt-br](Part_Fillet/pt-br.md) , [Part Fuse/pt-br](Part_Fuse/pt-br.md) , [Part Helix/pt-br](Part_Helix/pt-br.md) , [Part Import/pt-br](Part_Import/pt-br.md) , [Part JoinConnect/pt-br](Part_JoinConnect/pt-br.md) , [Part JoinCutout/pt-br](Part_JoinCutout/pt-br.md) , [Part JoinEmbed/pt-br](Part_JoinEmbed/pt-br.md) , [Part Line/pt-br](Part_Line/pt-br.md) , [Part Loft/pt-br](Part_Loft/pt-br.md) , [Part MakeFace/pt-br](Part_MakeFace/pt-br.md) , [Part MakeSolid/pt-br](Part_MakeSolid/pt-br.md) , [Part Measure Angular/pt-br](Part_Measure_Angular/pt-br.md) , [Part Measure Clear All/pt-br](Part_Measure_Clear_All/pt-br.md) , [Part Measure Linear/pt-br](Part_Measure_Linear/pt-br.md) , [Part Measure Menu/pt-br](Part_Measure_Menu/pt-br.md) , [Part Measure Refresh/pt-br](Part_Measure_Refresh/pt-br.md) , [Part Measure Toggle 3d/pt-br](Part_Measure_Toggle_3d/pt-br.md) , [Part Measure Toggle All/pt-br](Part_Measure_Toggle_All/pt-br.md) , [Part Measure Toggle Delta/pt-br](Part_Measure_Toggle_Delta/pt-br.md) , [Part Mirror/pt-br](Part_Mirror/pt-br.md) , [Part Offset/pt-br](Part_Offset/pt-br.md) , [Part Offset2D/pt-br](Part_Offset2D/pt-br.md) , [Part Plane/pt-br](Part_Plane/pt-br.md) , [Part Point/pt-br](Part_Point/pt-br.md) , [Part PointsFromMesh/pt-br](Part_PointsFromMesh/pt-br.md) , [Part Primitives/pt-br](Part_Primitives/pt-br.md) , [Part Prism/pt-br](Part_Prism/pt-br.md) , [Part ProjectionOnSurface/pt-br](Part_ProjectionOnSurface/pt-br.md) , [Part RefineShape/pt-br](Part_RefineShape/pt-br.md) , [Part RegularPolygon/pt-br](Part_RegularPolygon/pt-br.md) , [Part ReverseShapes/pt-br](Part_ReverseShapes/pt-br.md) , [Part Revolve/pt-br](Part_Revolve/pt-br.md) , [Part RuledSurface/pt-br](Part_RuledSurface/pt-br.md) , [Part Section/pt-br](Part_Section/pt-br.md) , [Part ShapeFromMesh/pt-br](Part_ShapeFromMesh/pt-br.md) , [Part SimpleCopy/pt-br](Part_SimpleCopy/pt-br.md) , [Part Slice/pt-br](Part_Slice/pt-br.md) , [Part SliceApart/pt-br](Part_SliceApart/pt-br.md) , [Part Sphere/pt-br](Part_Sphere/pt-br.md) , [Part Spiral/pt-br](Part_Spiral/pt-br.md) , [Part Sweep/pt-br](Part_Sweep/pt-br.md) , [Part Thickness/pt-br](Part_Thickness/pt-br.md) , [Part Torus/pt-br](Part_Torus/pt-br.md) , [Part TransformedCopy/pt-br](Part_TransformedCopy/pt-br.md) , [Part Tube/pt-br](Part_Tube/pt-br.md) , [Part Wedge/pt-br](Part_Wedge/pt-br.md) , [Part XOR/pt-br](Part_XOR/pt-br.md) , [PartDesign AdditiveBox/pt-br](PartDesign_AdditiveBox/pt-br.md) , [PartDesign AdditiveCone/pt-br](PartDesign_AdditiveCone/pt-br.md) , [PartDesign AdditiveCylinder/pt-br](PartDesign_AdditiveCylinder/pt-br.md) , [PartDesign AdditiveEllipsoid/pt-br](PartDesign_AdditiveEllipsoid/pt-br.md) , [PartDesign AdditiveHelix/pt-br](PartDesign_AdditiveHelix/pt-br.md) , [PartDesign AdditiveLoft/pt-br](PartDesign_AdditiveLoft/pt-br.md) , [PartDesign AdditivePipe/pt-br](PartDesign_AdditivePipe/pt-br.md) , [PartDesign AdditivePrism/pt-br](PartDesign_AdditivePrism/pt-br.md) , [PartDesign AdditiveSphere/pt-br](PartDesign_AdditiveSphere/pt-br.md) , [PartDesign AdditiveTorus/pt-br](PartDesign_AdditiveTorus/pt-br.md) , [PartDesign AdditiveWedge/pt-br](PartDesign_AdditiveWedge/pt-br.md) , [PartDesign Body/pt-br](PartDesign_Body/pt-br.md) , [PartDesign Boolean/pt-br](PartDesign_Boolean/pt-br.md) , [PartDesign Chamfer/pt-br](PartDesign_Chamfer/pt-br.md) , [PartDesign Clone/pt-br](PartDesign_Clone/pt-br.md) , [PartDesign CompPrimitiveAdditive/pt-br](PartDesign_CompPrimitiveAdditive/pt-br.md) , [PartDesign CompPrimitiveSubtractive/pt-br](PartDesign_CompPrimitiveSubtractive/pt-br.md) , [PartDesign CoordinateSystem/pt-br](PartDesign_CoordinateSystem/pt-br.md) , [PartDesign Draft/pt-br](PartDesign_Draft/pt-br.md) , [PartDesign Fillet/pt-br](PartDesign_Fillet/pt-br.md) , [PartDesign Groove/pt-br](PartDesign_Groove/pt-br.md) , [PartDesign Hole/pt-br](PartDesign_Hole/pt-br.md) , [PartDesign InvoluteGear/pt-br](PartDesign_InvoluteGear/pt-br.md) , [PartDesign Line/pt-br](PartDesign_Line/pt-br.md) , [PartDesign LinearPattern/pt-br](PartDesign_LinearPattern/pt-br.md) , [PartDesign Migrate/pt-br](PartDesign_Migrate/pt-br.md) , [PartDesign Mirrored/pt-br](PartDesign_Mirrored/pt-br.md) , [PartDesign MoveFeature/pt-br](PartDesign_MoveFeature/pt-br.md) , [PartDesign MoveFeatureInTree/pt-br](PartDesign_MoveFeatureInTree/pt-br.md) , [PartDesign MoveTip/pt-br](PartDesign_MoveTip/pt-br.md) , [PartDesign MultiTransform/pt-br](PartDesign_MultiTransform/pt-br.md) , [PartDesign NewSketch/pt-br](PartDesign_NewSketch/pt-br.md) , [PartDesign Pad/pt-br](PartDesign_Pad/pt-br.md) , [PartDesign Plane/pt-br](PartDesign_Plane/pt-br.md) , [PartDesign Pocket/pt-br](PartDesign_Pocket/pt-br.md) , [PartDesign Point/pt-br](PartDesign_Point/pt-br.md) , [PartDesign PolarPattern/pt-br](PartDesign_PolarPattern/pt-br.md) , [PartDesign Revolution/pt-br](PartDesign_Revolution/pt-br.md) , [PartDesign ShapeBinder/pt-br](PartDesign_ShapeBinder/pt-br.md) , [PartDesign Sprocket/pt-br](PartDesign_Sprocket/pt-br.md) , [PartDesign SubShapeBinder/pt-br](PartDesign_SubShapeBinder/pt-br.md) , [PartDesign SubtractiveBox/pt-br](PartDesign_SubtractiveBox/pt-br.md) , [PartDesign SubtractiveCone/pt-br](PartDesign_SubtractiveCone/pt-br.md) , [PartDesign SubtractiveCylinder/pt-br](PartDesign_SubtractiveCylinder/pt-br.md) , [PartDesign SubtractiveEllipsoid/pt-br](PartDesign_SubtractiveEllipsoid/pt-br.md) , [PartDesign SubtractiveHelix/pt-br](PartDesign_SubtractiveHelix/pt-br.md) , [PartDesign SubtractiveLoft/pt-br](PartDesign_SubtractiveLoft/pt-br.md) , [PartDesign SubtractivePipe/pt-br](PartDesign_SubtractivePipe/pt-br.md) , [PartDesign SubtractivePrism/pt-br](PartDesign_SubtractivePrism/pt-br.md) , [PartDesign SubtractiveSphere/pt-br](PartDesign_SubtractiveSphere/pt-br.md) , [PartDesign SubtractiveTorus/pt-br](PartDesign_SubtractiveTorus/pt-br.md) , [PartDesign SubtractiveWedge/pt-br](PartDesign_SubtractiveWedge/pt-br.md) , [PartDesign Thickness/pt-br](PartDesign_Thickness/pt-br.md) , [PartDesign WizardShaft/pt-br](PartDesign_WizardShaft/pt-br.md) , [Path Adaptive/pt-br](Path_Adaptive/pt-br.md) , [Path Area Workplane/pt-br](Path_Area_Workplane/pt-br.md) , [Path Area/pt-br](Path_Area/pt-br.md) , [Path Array/pt-br](Path_Array/pt-br.md) , [Path Comment/pt-br](Path_Comment/pt-br.md) , [Path Copy/pt-br](Path_Copy/pt-br.md) , [Path Custom/pt-br](Path_Custom/pt-br.md) , [Path DressupDogbone/pt-br](Path_DressupDogbone/pt-br.md) , [Path DressupDragKnife/pt-br](Path_DressupDragKnife/pt-br.md) , [Path DressupLeadInOut/pt-br](Path_DressupLeadInOut/pt-br.md) , [Path DressupPathBoundary/pt-br](Path_DressupPathBoundary/pt-br.md) , [Path DressupRampEntry/pt-br](Path_DressupRampEntry/pt-br.md) , [Path DressupTag/pt-br](Path_DressupTag/pt-br.md) , [Path Drilling/pt-br](Path_Drilling/pt-br.md) , [Path Engrave/pt-br](Path_Engrave/pt-br.md) , [Path ExportTemplate/pt-br](Path_ExportTemplate/pt-br.md) , [Path Fixture/pt-br](Path_Fixture/pt-br.md) , [Path Helix/pt-br](Path_Helix/pt-br.md) , [Path Inspect/pt-br](Path_Inspect/pt-br.md) , [Path Job/pt-br](Path_Job/pt-br.md) , [Path MillFace/pt-br](Path_MillFace/pt-br.md) , [Path OpActiveToggle/pt-br](Path_OpActiveToggle/pt-br.md) , [Path Pocket 3D/pt-br](Path_Pocket_3D/pt-br.md) , [Path Pocket Shape/pt-br](Path_Pocket_Shape/pt-br.md) , [Path Post/pt-br](Path_Post/pt-br.md) , [Path Profile/pt-br](Path_Profile/pt-br.md) , [Path Sanity/pt-br](Path_Sanity/pt-br.md) , [Path SelectLoop/pt-br](Path_SelectLoop/pt-br.md) , [Path Shape/pt-br](Path_Shape/pt-br.md) , [Path SimpleCopy/pt-br](Path_SimpleCopy/pt-br.md) , [Path Simulator/pt-br](Path_Simulator/pt-br.md) , [Path Slot/pt-br](Path_Slot/pt-br.md) , [Path Stop/pt-br](Path_Stop/pt-br.md) , [Path Surface/pt-br](Path_Surface/pt-br.md) , [Path ToolLibraryEdit/pt-br](Path_ToolLibraryEdit/pt-br.md) , [Path Vcarve/pt-br](Path_Vcarve/pt-br.md) , [Path Waterline/pt-br](Path_Waterline/pt-br.md) , [Points Convert/pt-br](Points_Convert/pt-br.md) , [Points Export/pt-br](Points_Export/pt-br.md) , [Points Import/pt-br](Points_Import/pt-br.md) , [Points Merge/pt-br](Points_Merge/pt-br.md) , [Points PolyCut/pt-br](Points_PolyCut/pt-br.md) , [Points Structure/pt-br](Points_Structure/pt-br.md) , [Reinforcement Bar Bending Schedule/pt-br](Reinforcement_Bar_Bending_Schedule/pt-br.md) , [Reinforcement Bar Shape Cut List/pt-br](Reinforcement_Bar_Shape_Cut_List/pt-br.md) , [Robot CreateRobot/pt-br](Robot_CreateRobot/pt-br.md) , [Robot CreateTrajectory/pt-br](Robot_CreateTrajectory/pt-br.md) , [Robot Edge2Trac/pt-br](Robot_Edge2Trac/pt-br.md) , [Robot Export/pt-br](Robot_Export/pt-br.md) , [Robot InsertWaypoint/pt-br](Robot_InsertWaypoint/pt-br.md) , [Robot InsertWaypointPre/pt-br](Robot_InsertWaypointPre/pt-br.md) , [Robot RestoreHomePos/pt-br](Robot_RestoreHomePos/pt-br.md) , [Robot SetDefaultOrientation/pt-br](Robot_SetDefaultOrientation/pt-br.md) , [Robot SetDefaultValues/pt-br](Robot_SetDefaultValues/pt-br.md) , [Robot SetHomePos/pt-br](Robot_SetHomePos/pt-br.md) , [Robot Simulate/pt-br](Robot_Simulate/pt-br.md) , [Robot TrajectoryCompound/pt-br](Robot_TrajectoryCompound/pt-br.md) , [Robot TrajectoryDressUp/pt-br](Robot_TrajectoryDressUp/pt-br.md) , [Sketcher BSplineApproximate/pt-br](Sketcher_BSplineApproximate/pt-br.md) , [Sketcher BSplineComb/pt-br](Sketcher_BSplineComb/pt-br.md) , [Sketcher BSplineDecreaseDegree/pt-br](Sketcher_BSplineDecreaseDegree/pt-br.md) , [Sketcher BSplineDecreaseKnotMultiplicity/pt-br](Sketcher_BSplineDecreaseKnotMultiplicity/pt-br.md) , [Sketcher BSplineDegree/pt-br](Sketcher_BSplineDegree/pt-br.md) , [Sketcher BSplineIncreaseDegree/pt-br](Sketcher_BSplineIncreaseDegree/pt-br.md) , [Sketcher BSplineIncreaseKnotMultiplicity/pt-br](Sketcher_BSplineIncreaseKnotMultiplicity/pt-br.md) , [Sketcher BSplineKnotMultiplicity/pt-br](Sketcher_BSplineKnotMultiplicity/pt-br.md) , [Sketcher BSplinePoleWeight/pt-br](Sketcher_BSplinePoleWeight/pt-br.md) , [Sketcher BSplinePolygon/pt-br](Sketcher_BSplinePolygon/pt-br.md) , [Sketcher CarbonCopy/pt-br](Sketcher_CarbonCopy/pt-br.md) , [Sketcher Clone/pt-br](Sketcher_Clone/pt-br.md) , [Sketcher CloseShape/pt-br](Sketcher_CloseShape/pt-br.md) , [Sketcher CompCreateArc/pt-br](Sketcher_CompCreateArc/pt-br.md) , [Sketcher CompCreateBSpline/pt-br](Sketcher_CompCreateBSpline/pt-br.md) , [Sketcher CompCreateCircle/pt-br](Sketcher_CompCreateCircle/pt-br.md) , [Sketcher CompCreateConic/pt-br](Sketcher_CompCreateConic/pt-br.md) , [Sketcher CompCreateRectangles/pt-br](Sketcher_CompCreateRectangles/pt-br.md) , [Sketcher CompCreateRegularPolygon/pt-br](Sketcher_CompCreateRegularPolygon/pt-br.md) , [Sketcher ConnectLines/pt-br](Sketcher_ConnectLines/pt-br.md) , [Sketcher ConstrainAngle/pt-br](Sketcher_ConstrainAngle/pt-br.md) , [Sketcher ConstrainBlock/pt-br](Sketcher_ConstrainBlock/pt-br.md) , [Sketcher ConstrainCoincident/pt-br](Sketcher_ConstrainCoincident/pt-br.md) , [Sketcher ConstrainDiameter/pt-br](Sketcher_ConstrainDiameter/pt-br.md) , [Sketcher ConstrainDistance/pt-br](Sketcher_ConstrainDistance/pt-br.md) , [Sketcher ConstrainDistanceX/pt-br](Sketcher_ConstrainDistanceX/pt-br.md) , [Sketcher ConstrainDistanceY/pt-br](Sketcher_ConstrainDistanceY/pt-br.md) , [Sketcher ConstrainEqual/pt-br](Sketcher_ConstrainEqual/pt-br.md) , [Sketcher ConstrainHorizontal/pt-br](Sketcher_ConstrainHorizontal/pt-br.md) , [Sketcher ConstrainInternalAlignment/pt-br](Sketcher_ConstrainInternalAlignment/pt-br.md) , [Sketcher ConstrainLock/pt-br](Sketcher_ConstrainLock/pt-br.md) , [Sketcher ConstrainParallel/pt-br](Sketcher_ConstrainParallel/pt-br.md) , [Sketcher ConstrainPerpendicular/pt-br](Sketcher_ConstrainPerpendicular/pt-br.md) , [Sketcher ConstrainPointOnObject/pt-br](Sketcher_ConstrainPointOnObject/pt-br.md) , [Sketcher ConstrainRadiam/pt-br](Sketcher_ConstrainRadiam/pt-br.md) , [Sketcher ConstrainRadius/pt-br](Sketcher_ConstrainRadius/pt-br.md) , [Sketcher ConstrainSnellsLaw/pt-br](Sketcher_ConstrainSnellsLaw/pt-br.md) , [Sketcher ConstrainSymmetric/pt-br](Sketcher_ConstrainSymmetric/pt-br.md) , [Sketcher ConstrainTangent/pt-br](Sketcher_ConstrainTangent/pt-br.md) , [Sketcher ConstrainVertical/pt-br](Sketcher_ConstrainVertical/pt-br.md) , [Sketcher Copy/pt-br](Sketcher_Copy/pt-br.md) , [Sketcher Create3PointArc/pt-br](Sketcher_Create3PointArc/pt-br.md) , [Sketcher Create3PointCircle/pt-br](Sketcher_Create3PointCircle/pt-br.md) , [Sketcher CreateArc/pt-br](Sketcher_CreateArc/pt-br.md) , [Sketcher CreateArcOfEllipse/pt-br](Sketcher_CreateArcOfEllipse/pt-br.md) , [Sketcher CreateArcOfHyperbola/pt-br](Sketcher_CreateArcOfHyperbola/pt-br.md) , [Sketcher CreateArcOfParabola/pt-br](Sketcher_CreateArcOfParabola/pt-br.md) , [Sketcher CreateBSpline/pt-br](Sketcher_CreateBSpline/pt-br.md) , [Sketcher CreateCircle/pt-br](Sketcher_CreateCircle/pt-br.md) , [Sketcher CreateEllipseBy3Points/pt-br](Sketcher_CreateEllipseBy3Points/pt-br.md) , [Sketcher CreateEllipseByCenter/pt-br](Sketcher_CreateEllipseByCenter/pt-br.md) , [Sketcher CreateFillet/pt-br](Sketcher_CreateFillet/pt-br.md) , [Sketcher CreateHeptagon/pt-br](Sketcher_CreateHeptagon/pt-br.md) , [Sketcher CreateHexagon/pt-br](Sketcher_CreateHexagon/pt-br.md) , [Sketcher CreateLine/pt-br](Sketcher_CreateLine/pt-br.md) , [Sketcher CreateOblong/pt-br](Sketcher_CreateOblong/pt-br.md) , [Sketcher CreateOctagon/pt-br](Sketcher_CreateOctagon/pt-br.md) , [Sketcher CreatePentagon/pt-br](Sketcher_CreatePentagon/pt-br.md) , [Sketcher CreatePeriodicBSpline/pt-br](Sketcher_CreatePeriodicBSpline/pt-br.md) , [Sketcher CreatePoint/pt-br](Sketcher_CreatePoint/pt-br.md) , [Sketcher CreatePolyline/pt-br](Sketcher_CreatePolyline/pt-br.md) , [Sketcher CreateRectangle Center/pt-br](Sketcher_CreateRectangle_Center/pt-br.md) , [Sketcher CreateRectangle/pt-br](Sketcher_CreateRectangle/pt-br.md) , [Sketcher CreateRegularPolygon/pt-br](Sketcher_CreateRegularPolygon/pt-br.md) , [Sketcher CreateSlot/pt-br](Sketcher_CreateSlot/pt-br.md) , [Sketcher CreateSquare/pt-br](Sketcher_CreateSquare/pt-br.md) , [Sketcher CreateTriangle/pt-br](Sketcher_CreateTriangle/pt-br.md) , [Sketcher DeleteAllConstraints/pt-br](Sketcher_DeleteAllConstraints/pt-br.md) , [Sketcher DeleteAllGeometry/pt-br](Sketcher_DeleteAllGeometry/pt-br.md) , [Sketcher EditSketch/pt-br](Sketcher_EditSketch/pt-br.md) , [Sketcher Extend/pt-br](Sketcher_Extend/pt-br.md) , [Sketcher External/pt-br](Sketcher_External/pt-br.md) , [Sketcher LeaveSketch/pt-br](Sketcher_LeaveSketch/pt-br.md) , [Sketcher MapSketch/pt-br](Sketcher_MapSketch/pt-br.md) , [Sketcher MergeSketches/pt-br](Sketcher_MergeSketches/pt-br.md) , [Sketcher MirrorSketch/pt-br](Sketcher_MirrorSketch/pt-br.md) , [Sketcher Move/pt-br](Sketcher_Move/pt-br.md) , [Sketcher NewSketch/pt-br](Sketcher_NewSketch/pt-br.md) , [Sketcher RectangularArray/pt-br](Sketcher_RectangularArray/pt-br.md) , [Sketcher RemoveAxesAlignment/pt-br](Sketcher_RemoveAxesAlignment/pt-br.md) , [Sketcher ReorientSketch/pt-br](Sketcher_ReorientSketch/pt-br.md) , [Sketcher RestoreInternalAlignmentGeometry/pt-br](Sketcher_RestoreInternalAlignmentGeometry/pt-br.md) , [Sketcher SelectConflictingConstraints/pt-br](Sketcher_SelectConflictingConstraints/pt-br.md) , [Sketcher SelectConstraints/pt-br](Sketcher_SelectConstraints/pt-br.md) , [Sketcher SelectElementsAssociatedWithConstraints/pt-br](Sketcher_SelectElementsAssociatedWithConstraints/pt-br.md) , [Sketcher SelectElementsWithDoFs/pt-br](Sketcher_SelectElementsWithDoFs/pt-br.md) , [Sketcher SelectHorizontalAxis/pt-br](Sketcher_SelectHorizontalAxis/pt-br.md) , [Sketcher SelectOrigin/pt-br](Sketcher_SelectOrigin/pt-br.md) , [Sketcher SelectRedundantConstraints/pt-br](Sketcher_SelectRedundantConstraints/pt-br.md) , [Sketcher SelectVerticalAxis/pt-br](Sketcher_SelectVerticalAxis/pt-br.md) , [Sketcher Split/pt-br](Sketcher_Split/pt-br.md) , [Sketcher StopOperation/pt-br](Sketcher_StopOperation/pt-br.md) , [Sketcher SwitchVirtualSpace/pt-br](Sketcher_SwitchVirtualSpace/pt-br.md) , [Sketcher Symmetry/pt-br](Sketcher_Symmetry/pt-br.md) , [Sketcher ToggleActiveConstraint/pt-br](Sketcher_ToggleActiveConstraint/pt-br.md) , [Sketcher ToggleConstruction/pt-br](Sketcher_ToggleConstruction/pt-br.md) , [Sketcher ToggleDrivingConstraint/pt-br](Sketcher_ToggleDrivingConstraint/pt-br.md) , [Sketcher Trimming/pt-br](Sketcher_Trimming/pt-br.md) , [Sketcher ValidateSketch/pt-br](Sketcher_ValidateSketch/pt-br.md) , [Sketcher ViewSection/pt-br](Sketcher_ViewSection/pt-br.md) , [Sketcher ViewSketch/pt-br](Sketcher_ViewSketch/pt-br.md) , [Spreadsheet AlignBottom/pt-br](Spreadsheet_AlignBottom/pt-br.md) , [Spreadsheet AlignCenter/pt-br](Spreadsheet_AlignCenter/pt-br.md) , [Spreadsheet AlignLeft/pt-br](Spreadsheet_AlignLeft/pt-br.md) , [Spreadsheet AlignRight/pt-br](Spreadsheet_AlignRight/pt-br.md) , [Spreadsheet AlignTop/pt-br](Spreadsheet_AlignTop/pt-br.md) , [Spreadsheet AlignVCenter/pt-br](Spreadsheet_AlignVCenter/pt-br.md) , [Spreadsheet CreateSheet/pt-br](Spreadsheet_CreateSheet/pt-br.md) , [Spreadsheet Export/pt-br](Spreadsheet_Export/pt-br.md) , [Spreadsheet Import/pt-br](Spreadsheet_Import/pt-br.md) , [Spreadsheet MergeCells/pt-br](Spreadsheet_MergeCells/pt-br.md) , [Spreadsheet SetAlias/pt-br](Spreadsheet_SetAlias/pt-br.md) , [Spreadsheet SplitCell/pt-br](Spreadsheet_SplitCell/pt-br.md) , [Spreadsheet StyleBold/pt-br](Spreadsheet_StyleBold/pt-br.md) , [Spreadsheet StyleItalic/pt-br](Spreadsheet_StyleItalic/pt-br.md) , [Spreadsheet StyleUnderline/pt-br](Spreadsheet_StyleUnderline/pt-br.md) , [Std AddonMgr/pt-br](Std_AddonMgr/pt-br.md) , [Std BoxElementSelection/pt-br](Std_BoxElementSelection/pt-br.md) , [Std BoxSelection/pt-br](Std_BoxSelection/pt-br.md) , [Std DemoMode/pt-br](Std_DemoMode/pt-br.md) , [Std DependencyGraph/pt-br](Std_DependencyGraph/pt-br.md) , [Std Export/pt-br](Std_Export/pt-br.md) , [Std FreeCADForum/pt-br](Std_FreeCADForum/pt-br.md) , [Std FreeCADPowerUserHub/pt-br](Std_FreeCADPowerUserHub/pt-br.md) , [Std Group/pt-br](Std_Group/pt-br.md) , [Std Import/pt-br](Std_Import/pt-br.md) , [Std LinkImport/pt-br](Std_LinkImport/pt-br.md) , [Std LinkImportAll/pt-br](Std_LinkImportAll/pt-br.md) , [Std LinkMake/pt-br](Std_LinkMake/pt-br.md) , [Std LinkMakeRelative/pt-br](Std_LinkMakeRelative/pt-br.md) , [Std LinkReplace/pt-br](Std_LinkReplace/pt-br.md) , [Std LinkSelectAllLinks/pt-br](Std_LinkSelectAllLinks/pt-br.md) , [Std LinkSelectLinked/pt-br](Std_LinkSelectLinked/pt-br.md) , [Std LinkSelectLinkedFinal/pt-br](Std_LinkSelectLinkedFinal/pt-br.md) , [Std LinkUnlink/pt-br](Std_LinkUnlink/pt-br.md) , [Std Part/pt-br](Std_Part/pt-br.md) , [Std PythonHelp/pt-br](Std_PythonHelp/pt-br.md) , [Std SelBack/pt-br](Std_SelBack/pt-br.md) , [Std SelectAll/pt-br](Std_SelectAll/pt-br.md) , [Std SelForward/pt-br](Std_SelForward/pt-br.md) , [Std SetAppearance/pt-br](Std_SetAppearance/pt-br.md) , [Std ViewFitSelection/pt-br](Std_ViewFitSelection/pt-br.md) , [Std Workbench/pt-br](Std_Workbench/pt-br.md) , [TechDraw SpreadsheetView/pt-br](TechDraw_SpreadsheetView/pt-br.md) [Category:Categories/pt-br](Category:Categories/pt-br.md) + +--- +[documentation index](../README.md) > Category:Command Reference/pt-br diff --git a/wiki/translations/pt-br/Category:Developer.md b/wiki/translations/pt-br/Category:Developer.md index a171820cc6..046319a772 100644 --- a/wiki/translations/pt-br/Category:Developer.md +++ b/wiki/translations/pt-br/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Compile on Docker/pt-br](Compile_on_Docker/pt-br.md) , [Compile on Linux/pt-br](Compile_on_Linux/pt-br.md) , [Compile on MacOS/pt-br](Compile_on_MacOS/pt-br.md) , [Compile on Windows/pt-br](Compile_on_Windows/pt-br.md) , [Compiling (Speeding up)/pt-br](Compiling_(Speeding_up)/pt-br.md) , [Compiling/pt-br](Compiling/pt-br.md) , [Contributors/pt-br](Contributors/pt-br.md) , [File Format FCStd/pt-br](File_Format_FCStd/pt-br.md) , [Material/pt-br](Material/pt-br.md) [Category:Categories/pt-br](Category:Categories/pt-br.md) + +--- +[documentation index](../README.md) > Category:Developer/pt-br diff --git a/wiki/translations/pt-br/Category:Developer_Documentation.md b/wiki/translations/pt-br/Category:Developer_Documentation.md index 776184cef2..587baaa2f8 100644 --- a/wiki/translations/pt-br/Category:Developer_Documentation.md +++ b/wiki/translations/pt-br/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [AppImage/pt-br](AppImage/pt-br.md) , [Artwork Guidelines/pt-br](Artwork_Guidelines/pt-br.md) , [Artwork/pt-br](Artwork/pt-br.md) , [Branding/pt-br](Branding/pt-br.md) , [Bug Triage/pt-br](Bug_Triage/pt-br.md) , [Command/pt-br](Command/pt-br.md) , [Compile on Docker/pt-br](Compile_on_Docker/pt-br.md) , [Compile on Linux/pt-br](Compile_on_Linux/pt-br.md) , [Compile on MacOS/pt-br](Compile_on_MacOS/pt-br.md) , [Compile on Windows/pt-br](Compile_on_Windows/pt-br.md) , [Compiling (Speeding up)/pt-br](Compiling_(Speeding_up)/pt-br.md) , [Compiling/pt-br](Compiling/pt-br.md) , [Continuous Integration/pt-br](Continuous_Integration/pt-br.md) , [Debugging/pt-br](Debugging/pt-br.md) , [Developer hub/pt-br](Developer_hub/pt-br.md) , [Extra python modules/pt-br](Extra_python_modules/pt-br.md) , [File Format FCStd/pt-br](File_Format_FCStd/pt-br.md) , [Fine-tuning/pt-br](Fine-tuning/pt-br.md) , [FreeCAD Build Tool/pt-br](FreeCAD_Build_Tool/pt-br.md) , [FreeCAD Scripting Basics/pt-br](FreeCAD_Scripting_Basics/pt-br.md) , [Help FreeCAD/pt-br](Help_FreeCAD/pt-br.md) , [How to install macros/pt-br](How_to_install_macros/pt-br.md) , [Installing on Linux/pt-br](Installing_on_Linux/pt-br.md) , [Introduction to Python/pt-br](Introduction_to_Python/pt-br.md) , [Licence/pt-br](Licence/pt-br.md) , [Localisation/pt-br](Localisation/pt-br.md) , [Macros/pt-br](Macros/pt-br.md) , [Material/pt-br](Material/pt-br.md) , [Multithreading/pt-br](Multithreading/pt-br.md) , [OpenCASCADE/pt-br](OpenCASCADE/pt-br.md) , [Part scripting/pt-br](Part_scripting/pt-br.md) , [Path scripting/pt-br](Path_scripting/pt-br.md) , [Property/pt-br](Property/pt-br.md) , [PySide/pt-br](PySide/pt-br.md) , [Python/pt-br](Python/pt-br.md) , [Scenegraph/pt-br](Scenegraph/pt-br.md) , [Scripted objects/pt-br](Scripted_objects/pt-br.md) , [Scripting and macros/pt-br](Scripting_and_macros/pt-br.md) , [Source code management/pt-br](Source_code_management/pt-br.md) , [Source documentation/pt-br](Source_documentation/pt-br.md) , [Start up and Configuration/pt-br](Start_up_and_Configuration/pt-br.md) , [Testing/pt-br](Testing/pt-br.md) , [The FreeCAD source code/pt-br](The_FreeCAD_source_code/pt-br.md) , [Third Party Libraries/pt-br](Third_Party_Libraries/pt-br.md) , [Third Party Tools/pt-br](Third_Party_Tools/pt-br.md) , [Topological data scripting/pt-br](Topological_data_scripting/pt-br.md) , [Tracker/pt-br](Tracker/pt-br.md) [Category:Documentation/pt-br](Category:Documentation/pt-br.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/pt-br diff --git a/wiki/translations/pt-br/Category:Documentation.md b/wiki/translations/pt-br/Category:Documentation.md index 82c7a50143..cf4cd0fb17 100644 --- a/wiki/translations/pt-br/Category:Documentation.md +++ b/wiki/translations/pt-br/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [3D input devices/pt-br](3D_input_devices/pt-br.md) , [FreeCAD Community Portal/pt-br](FreeCAD_Community_Portal/pt-br.md) , [Frequently asked questions/pt-br](Frequently_asked_questions/pt-br.md) , [Help FreeCAD/pt-br](Help_FreeCAD/pt-br.md) , [Main Page/pt-br](Main_Page/pt-br.md) , [Online Help Toc/pt-br](Online_Help_Toc/pt-br.md) , [Part Measure Menu/pt-br](Part_Measure_Menu/pt-br.md) , [Release notes 0.19/pt-br](Release_notes_0.19/pt-br.md) , [Release notes 0.20/pt-br](Release_notes_0.20/pt-br.md) , [WikiPages/pt-br](WikiPages/pt-br.md) , , , [Category:Categories/pt-br](Category:Categories/pt-br.md) [Category:Developer Documentation/pt-br](Category:Developer_Documentation/pt-br.md) [Category:Poweruser Documentation/pt-br](Category:Poweruser_Documentation/pt-br.md) [Category:User Documentation/pt-br](Category:User_Documentation/pt-br.md) + +--- +[documentation index](../README.md) > Category:Documentation/pt-br diff --git a/wiki/translations/pt-br/Category:Draft.md b/wiki/translations/pt-br/Category:Draft.md index ff5c5e070d..acdf350421 100644 --- a/wiki/translations/pt-br/Category:Draft.md +++ b/wiki/translations/pt-br/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/pt-br\" and \"Work [Arch panel tutorial/pt-br](Arch_panel_tutorial/pt-br.md) , [Draft AddConstruction/pt-br](Draft_AddConstruction/pt-br.md) , [Draft AddToGroup/pt-br](Draft_AddToGroup/pt-br.md) , [Draft annotation scale widget/pt-br](Draft_annotation_scale_widget/pt-br.md) , [Draft AnnotationStyleEditor/pt-br](Draft_AnnotationStyleEditor/pt-br.md) , [Draft ApplyStyle/pt-br](Draft_ApplyStyle/pt-br.md) , [Draft Arc 3Points/pt-br](Draft_Arc_3Points/pt-br.md) , [Draft Arc/pt-br](Draft_Arc/pt-br.md) , [Draft Array/pt-br](Draft_Array/pt-br.md) , [Draft AutoGroup/pt-br](Draft_AutoGroup/pt-br.md) , [Draft BezCurve/pt-br](Draft_BezCurve/pt-br.md) , [Draft BSpline/pt-br](Draft_BSpline/pt-br.md) , [Draft Circle/pt-br](Draft_Circle/pt-br.md) , [Draft CircularArray/pt-br](Draft_CircularArray/pt-br.md) , [Draft Clone/pt-br](Draft_Clone/pt-br.md) , [Draft Constrain/pt-br](Draft_Constrain/pt-br.md) , [Draft CubicBezCurve/pt-br](Draft_CubicBezCurve/pt-br.md) , [Draft DAT/pt-br](Draft_DAT/pt-br.md) , [Draft Dimension/pt-br](Draft_Dimension/pt-br.md) , [Draft Downgrade/pt-br](Draft_Downgrade/pt-br.md) , [Draft Draft2Sketch/pt-br](Draft_Draft2Sketch/pt-br.md) , [Draft Drawing/pt-br](Draft_Drawing/pt-br.md) , [Draft DXF/pt-br](Draft_DXF/pt-br.md) , [Draft Edit/pt-br](Draft_Edit/pt-br.md) , [Draft Ellipse/pt-br](Draft_Ellipse/pt-br.md) , [Draft Facebinder/pt-br](Draft_Facebinder/pt-br.md) , [Draft Fillet/pt-br](Draft_Fillet/pt-br.md) , [Draft FlipDimension/pt-br](Draft_FlipDimension/pt-br.md) , [Draft Heal/pt-br](Draft_Heal/pt-br.md) , [Draft Join/pt-br](Draft_Join/pt-br.md) , [Draft Label/pt-br](Draft_Label/pt-br.md) , [Draft Layer/pt-br](Draft_Layer/pt-br.md) , [Draft Line/pt-br](Draft_Line/pt-br.md) , [Draft Mirror/pt-br](Draft_Mirror/pt-br.md) , [Draft Move/pt-br](Draft_Move/pt-br.md) , [Draft OCA/pt-br](Draft_OCA/pt-br.md) , [Draft Offset/pt-br](Draft_Offset/pt-br.md) , [Draft OrthoArray/pt-br](Draft_OrthoArray/pt-br.md) , [Draft PathArray/pt-br](Draft_PathArray/pt-br.md) , [Draft PathLinkArray/pt-br](Draft_PathLinkArray/pt-br.md) , [Draft Point/pt-br](Draft_Point/pt-br.md) , [Draft PointArray/pt-br](Draft_PointArray/pt-br.md) , [Draft PointLinkArray/pt-br](Draft_PointLinkArray/pt-br.md) , [Draft PolarArray/pt-br](Draft_PolarArray/pt-br.md) , [Draft Polygon/pt-br](Draft_Polygon/pt-br.md) , [Draft Preferences/pt-br](Draft_Preferences/pt-br.md) , [Draft Rectangle/pt-br](Draft_Rectangle/pt-br.md) , [Draft Rotate/pt-br](Draft_Rotate/pt-br.md) , [Draft Scale/pt-br](Draft_Scale/pt-br.md) , [Draft SelectGroup/pt-br](Draft_SelectGroup/pt-br.md) , [Draft SelectPlane/pt-br](Draft_SelectPlane/pt-br.md) , [Draft SetStyle/pt-br](Draft_SetStyle/pt-br.md) , [Draft Shape2DView/pt-br](Draft_Shape2DView/pt-br.md) , [Draft ShapeString/pt-br](Draft_ShapeString/pt-br.md) , [Draft ShowSnapBar/pt-br](Draft_ShowSnapBar/pt-br.md) , [Draft Slope/pt-br](Draft_Slope/pt-br.md) , [Draft Snap Angle/pt-br](Draft_Snap_Angle/pt-br.md) , [Draft Snap Center/pt-br](Draft_Snap_Center/pt-br.md) , [Draft Snap Dimensions/pt-br](Draft_Snap_Dimensions/pt-br.md) , [Draft Snap Endpoint/pt-br](Draft_Snap_Endpoint/pt-br.md) , [Draft Snap Extension/pt-br](Draft_Snap_Extension/pt-br.md) , [Draft Snap Grid/pt-br](Draft_Snap_Grid/pt-br.md) , [Draft Snap Intersection/pt-br](Draft_Snap_Intersection/pt-br.md) , [Draft Snap Lock/pt-br](Draft_Snap_Lock/pt-br.md) , [Draft Snap Midpoint/pt-br](Draft_Snap_Midpoint/pt-br.md) , [Draft Snap Near/pt-br](Draft_Snap_Near/pt-br.md) , [Draft Snap Ortho/pt-br](Draft_Snap_Ortho/pt-br.md) , [Draft Snap Parallel/pt-br](Draft_Snap_Parallel/pt-br.md) , [Draft Snap Perpendicular/pt-br](Draft_Snap_Perpendicular/pt-br.md) , [Draft Snap Special/pt-br](Draft_Snap_Special/pt-br.md) , [Draft snap widget/pt-br](Draft_snap_widget/pt-br.md) , [Draft Snap WorkingPlane/pt-br](Draft_Snap_WorkingPlane/pt-br.md) , [Draft Snap/pt-br](Draft_Snap/pt-br.md) , [Draft Split/pt-br](Draft_Split/pt-br.md) , [Draft Stretch/pt-br](Draft_Stretch/pt-br.md) , [Draft SubelementHighlight/pt-br](Draft_SubelementHighlight/pt-br.md) , [Draft SVG/pt-br](Draft_SVG/pt-br.md) , [Draft Text/pt-br](Draft_Text/pt-br.md) , [Draft ToggleConstructionMode/pt-br](Draft_ToggleConstructionMode/pt-br.md) , [Draft ToggleContinueMode/pt-br](Draft_ToggleContinueMode/pt-br.md) , [Draft ToggleDisplayMode/pt-br](Draft_ToggleDisplayMode/pt-br.md) , [Draft ToggleGrid/pt-br](Draft_ToggleGrid/pt-br.md) , [Draft Tray/pt-br](Draft_Tray/pt-br.md) , [Draft Trimex/pt-br](Draft_Trimex/pt-br.md) , [Draft Upgrade/pt-br](Draft_Upgrade/pt-br.md) , [Draft Wire/pt-br](Draft_Wire/pt-br.md) , [Draft WireToBSpline/pt-br](Draft_WireToBSpline/pt-br.md) , [Draft Workbench/pt-br](Draft_Workbench/pt-br.md) , [Draft WorkingPlaneProxy/pt-br](Draft_WorkingPlaneProxy/pt-br.md) , [DXF/pt-br](DXF/pt-br.md) , [FreeCAD and DWG Import/pt-br](FreeCAD_and_DWG_Import/pt-br.md) [Category:User Documentation/pt-br](Category:User_Documentation/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:Draft/pt-br diff --git a/wiki/translations/pt-br/Category:Drawing.md b/wiki/translations/pt-br/Category:Drawing.md index fcb12502a8..fa155cf8c6 100644 --- a/wiki/translations/pt-br/Category:Drawing.md +++ b/wiki/translations/pt-br/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/pt-br](Drawing_Workb [Template:Drawing Tools navi/pt-br](Template:Drawing_Tools_navi/pt-br.md) , [Drawing Workbench/pt-br](Drawing_Workbench/pt-br.md) [Category:Obsolete Workbenches/pt-br](Category:Obsolete_Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:Drawing/pt-br diff --git a/wiki/translations/pt-br/Category:External_Workbenches.md b/wiki/translations/pt-br/Category:External_Workbenches.md index 2ba92c0482..a2e3686664 100644 --- a/wiki/translations/pt-br/Category:External_Workbenches.md +++ b/wiki/translations/pt-br/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [External workbenches/pt-br](External_workbenches/pt-br.md) , [Cfd Workbench/pt-br](Cfd_Workbench/pt-br.md) , [How to install additional workbenches/pt-br](How_to_install_additional_workbenches/pt-br.md) , [Plot Module/pt-br](Plot_Module/pt-br.md) , [Reinforcement Workbench/pt-br](Reinforcement_Workbench/pt-br.md) , [Ship Workbench/pt-br](Ship_Workbench/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) [Category:Addons/pt-br](Category:Addons/pt-br.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/pt-br diff --git a/wiki/translations/pt-br/Category:FEM.md b/wiki/translations/pt-br/Category:FEM.md index b89dbc79a9..c46feffc15 100644 --- a/wiki/translations/pt-br/Category:FEM.md +++ b/wiki/translations/pt-br/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/pt-br](FEM_Workbench/pt- [FEM Analysis/pt-br](FEM_Analysis/pt-br.md) , [FEM ConstraintElectrostaticPotential/pt-br](FEM_ConstraintElectrostaticPotential/pt-br.md) , [FEM ElementFluid1D/pt-br](FEM_ElementFluid1D/pt-br.md) , [FEM ElementGeometry1D/pt-br](FEM_ElementGeometry1D/pt-br.md) , [FEM ElementGeometry2D/pt-br](FEM_ElementGeometry2D/pt-br.md) , [FEM ElementRotation1D/pt-br](FEM_ElementRotation1D/pt-br.md) , [FEM MaterialFluid/pt-br](FEM_MaterialFluid/pt-br.md) , [FEM MaterialMechanicalNonlinear/pt-br](FEM_MaterialMechanicalNonlinear/pt-br.md) , [FEM MaterialReinforced/pt-br](FEM_MaterialReinforced/pt-br.md) , [FEM MaterialSolid/pt-br](FEM_MaterialSolid/pt-br.md) , [FEM MeshGmshFromShape/pt-br](FEM_MeshGmshFromShape/pt-br.md) , [FEM SolverCalculiX/pt-br](FEM_SolverCalculiX/pt-br.md) , [FEM SolverElmer/pt-br](FEM_SolverElmer/pt-br.md) , [FEM SolverZ88/pt-br](FEM_SolverZ88/pt-br.md) , [Template:FEM Tools navi/pt-br](Template:FEM_Tools_navi/pt-br.md) , [FEM Workbench/pt-br](FEM_Workbench/pt-br.md) , [Material editor/pt-br](Material_editor/pt-br.md) , [Material/pt-br](Material/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:FEM/pt-br diff --git a/wiki/translations/pt-br/Category:File_Formats.md b/wiki/translations/pt-br/Category:File_Formats.md index ceb130a165..32b999e5d8 100644 --- a/wiki/translations/pt-br/Category:File_Formats.md +++ b/wiki/translations/pt-br/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [Arch 3DS/pt-br](Arch_3DS/pt-br.md) , [Arch DAE/pt-br](Arch_DAE/pt-br.md) , [Arch IFC/pt-br](Arch_IFC/pt-br.md) , [Arch JSON/pt-br](Arch_JSON/pt-br.md) , [Arch OBJ/pt-br](Arch_OBJ/pt-br.md) , [Arch SHP/pt-br](Arch_SHP/pt-br.md) , [Draft DAT/pt-br](Draft_DAT/pt-br.md) , [Draft DXF/pt-br](Draft_DXF/pt-br.md) , [Draft OCA/pt-br](Draft_OCA/pt-br.md) , [Draft SVG/pt-br](Draft_SVG/pt-br.md) , [DXF/pt-br](DXF/pt-br.md) , [Export to STL or OBJ/pt-br](Export_to_STL_or_OBJ/pt-br.md) , [File Format FCStd/pt-br](File_Format_FCStd/pt-br.md) , [FreeCAD and DWG Import/pt-br](FreeCAD_and_DWG_Import/pt-br.md) , [FreeCAD and DXF Import/pt-br](FreeCAD_and_DXF_Import/pt-br.md) , [Import Export Preferences/pt-br](Import_Export_Preferences/pt-br.md) , [Import Export/pt-br](Import_Export/pt-br.md) , [Import from STL or OBJ/pt-br](Import_from_STL_or_OBJ/pt-br.md) , [Material/pt-br](Material/pt-br.md) , [Std Export/pt-br](Std_Export/pt-br.md) , [Std Import/pt-br](Std_Import/pt-br.md) + +--- +[documentation index](../README.md) > Category:File Formats/pt-br diff --git a/wiki/translations/pt-br/Category:Hubs.md b/wiki/translations/pt-br/Category:Hubs.md index be2936552d..b7713f76fc 100644 --- a/wiki/translations/pt-br/Category:Hubs.md +++ b/wiki/translations/pt-br/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Developer hub/pt-br](Developer_hub/pt-br.md) , [Power users hub/pt-br](Power_users_hub/pt-br.md) , [User hub/pt-br](User_hub/pt-br.md) [Category:Categories/pt-br](Category:Categories/pt-br.md) + +--- +[documentation index](../README.md) > Category:Hubs/pt-br diff --git a/wiki/translations/pt-br/Category:Image.md b/wiki/translations/pt-br/Category:Image.md index 03c37e1e87..f08c458e25 100644 --- a/wiki/translations/pt-br/Category:Image.md +++ b/wiki/translations/pt-br/Category:Image.md @@ -6,3 +6,6 @@ This category lists pages related to the [Image Workbench/pt-br](Image_Workbench [Bitmap/pt-br](Bitmap/pt-br.md) , [Image CreateImagePlane/pt-br](Image_CreateImagePlane/pt-br.md) , [Image Open/pt-br](Image_Open/pt-br.md) , [Image Scaling/pt-br](Image_Scaling/pt-br.md) , [Image Workbench/pt-br](Image_Workbench/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:Image/pt-br diff --git a/wiki/translations/pt-br/Category:Inspection.md b/wiki/translations/pt-br/Category:Inspection.md index ea26164d9e..c6939ed0d0 100644 --- a/wiki/translations/pt-br/Category:Inspection.md +++ b/wiki/translations/pt-br/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench/pt-br](Inspection [Inspection Workbench/pt-br](Inspection_Workbench/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:Inspection/pt-br diff --git a/wiki/translations/pt-br/Category:Macros.md b/wiki/translations/pt-br/Category:Macros.md index 6e9a8e97ad..7dcedcfb28 100644 --- a/wiki/translations/pt-br/Category:Macros.md +++ b/wiki/translations/pt-br/Category:Macros.md @@ -6,3 +6,6 @@ This category contains macros to extend your FreeCAD installation with new funct [Macro Screen Wiki/pt-br](Macro_Screen_Wiki/pt-br.md) , [Macro Snip/pt-br](Macro_Snip/pt-br.md) , [Macros recipes/pt-br](Macros_recipes/pt-br.md) , [Macros/pt-br](Macros/pt-br.md) [Category:Addons](Category:Addons.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Macros/pt-br diff --git a/wiki/translations/pt-br/Category:Mesh.md b/wiki/translations/pt-br/Category:Mesh.md index ecfde2a164..f4a827f48c 100644 --- a/wiki/translations/pt-br/Category:Mesh.md +++ b/wiki/translations/pt-br/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/pt-br](Mesh_Workbench/ [Mesh FromPartShape/pt-br](Mesh_FromPartShape/pt-br.md) , [Template:Mesh Tools navi/pt-br](Template:Mesh_Tools_navi/pt-br.md) , [Mesh Workbench/pt-br](Mesh_Workbench/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:Mesh/pt-br diff --git a/wiki/translations/pt-br/Category:Obsolete_Workbenches.md b/wiki/translations/pt-br/Category:Obsolete_Workbenches.md index 949c2f605a..317dc23a83 100644 --- a/wiki/translations/pt-br/Category:Obsolete_Workbenches.md +++ b/wiki/translations/pt-br/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/pt-br](Drawing_Workb [Complete Workbench/pt-br](Complete_Workbench/pt-br.md) , [Drawing Workbench/pt-br](Drawing_Workbench/pt-br.md) , , [Category:Obsolete Workbenches/pt-br](Category:Obsolete_Workbenches/pt-br.md) [Category:Drawing/pt-br](Category:Drawing/pt-br.md) [Category:Obsolete Workbenches/pt-br](Category:Obsolete_Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/pt-br diff --git a/wiki/translations/pt-br/Category:OpenSCAD.md b/wiki/translations/pt-br/Category:OpenSCAD.md index c44fa164b5..4c487d5544 100644 --- a/wiki/translations/pt-br/Category:OpenSCAD.md +++ b/wiki/translations/pt-br/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/pt-br](OpenSCAD_Wo [Template:OpenSCAD Tools navi/pt-br](Template:OpenSCAD_Tools_navi/pt-br.md) , [OpenSCAD Workbench/pt-br](OpenSCAD_Workbench/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/pt-br diff --git a/wiki/translations/pt-br/Category:Part.md b/wiki/translations/pt-br/Category:Part.md index f9adc2c74a..d69aeee431 100644 --- a/wiki/translations/pt-br/Category:Part.md +++ b/wiki/translations/pt-br/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/pt-br](Part_Workbench/p [Basic modeling tutorial/pt-br](Basic_modeling_tutorial/pt-br.md) , [Constructive solid geometry/pt-br](Constructive_solid_geometry/pt-br.md) , [Part and PartDesign/pt-br](Part_and_PartDesign/pt-br.md) , [Part Boolean/pt-br](Part_Boolean/pt-br.md) , [Part BooleanFragments/pt-br](Part_BooleanFragments/pt-br.md) , [Part Box/pt-br](Part_Box/pt-br.md) , [Part BoxSelection/pt-br](Part_BoxSelection/pt-br.md) , [Part Builder/pt-br](Part_Builder/pt-br.md) , [Part Chamfer/pt-br](Part_Chamfer/pt-br.md) , [Part CheckGeometry/pt-br](Part_CheckGeometry/pt-br.md) , [Part Circle/pt-br](Part_Circle/pt-br.md) , [Part Common/pt-br](Part_Common/pt-br.md) , [Part CompCompoundTools/pt-br](Part_CompCompoundTools/pt-br.md) , [Part CompJoinFeatures/pt-br](Part_CompJoinFeatures/pt-br.md) , [Part CompOffsetTools/pt-br](Part_CompOffsetTools/pt-br.md) , [Part Compound/pt-br](Part_Compound/pt-br.md) , [Part CompoundFilter/pt-br](Part_CompoundFilter/pt-br.md) , [Part CompSplittingTools/pt-br](Part_CompSplittingTools/pt-br.md) , [Part Cone/pt-br](Part_Cone/pt-br.md) , [Part CrossSections/pt-br](Part_CrossSections/pt-br.md) , [Part Cut/pt-br](Part_Cut/pt-br.md) , [Part Cylinder/pt-br](Part_Cylinder/pt-br.md) , [Part Defeaturing/pt-br](Part_Defeaturing/pt-br.md) , [Part EditAttachment/pt-br](Part_EditAttachment/pt-br.md) , [Part ElementCopy/pt-br](Part_ElementCopy/pt-br.md) , [Part Ellipse/pt-br](Part_Ellipse/pt-br.md) , [Part Ellipsoid/pt-br](Part_Ellipsoid/pt-br.md) , [Part ExplodeCompound/pt-br](Part_ExplodeCompound/pt-br.md) , [Part Export/pt-br](Part_Export/pt-br.md) , [Part Extrude/pt-br](Part_Extrude/pt-br.md) , [Part Feature/pt-br](Part_Feature/pt-br.md) , [Part Fillet/pt-br](Part_Fillet/pt-br.md) , [Part Fuse/pt-br](Part_Fuse/pt-br.md) , [Part Helix/pt-br](Part_Helix/pt-br.md) , [Part Import/pt-br](Part_Import/pt-br.md) , [Part JoinConnect/pt-br](Part_JoinConnect/pt-br.md) , [Part JoinCutout/pt-br](Part_JoinCutout/pt-br.md) , [Part JoinEmbed/pt-br](Part_JoinEmbed/pt-br.md) , [Part Line/pt-br](Part_Line/pt-br.md) , [Part Loft/pt-br](Part_Loft/pt-br.md) , [Part MakeFace/pt-br](Part_MakeFace/pt-br.md) , [Part MakeSolid/pt-br](Part_MakeSolid/pt-br.md) , [Part Measure Angular/pt-br](Part_Measure_Angular/pt-br.md) , [Part Measure Clear All/pt-br](Part_Measure_Clear_All/pt-br.md) , [Part Measure Linear/pt-br](Part_Measure_Linear/pt-br.md) , [Part Measure Menu/pt-br](Part_Measure_Menu/pt-br.md) , [Part Measure Refresh/pt-br](Part_Measure_Refresh/pt-br.md) , [Part Measure Toggle 3d/pt-br](Part_Measure_Toggle_3d/pt-br.md) , [Part Measure Toggle All/pt-br](Part_Measure_Toggle_All/pt-br.md) , [Part Measure Toggle Delta/pt-br](Part_Measure_Toggle_Delta/pt-br.md) , [Part Mirror/pt-br](Part_Mirror/pt-br.md) , [Part Module/pt-br](Part_Module/pt-br.md) , [Part Offset/pt-br](Part_Offset/pt-br.md) , [Part Offset2D/pt-br](Part_Offset2D/pt-br.md) , [Part Part2DObject/pt-br](Part_Part2DObject/pt-br.md) , [Part Plane/pt-br](Part_Plane/pt-br.md) , [Part Point/pt-br](Part_Point/pt-br.md) , [Part PointsFromMesh/pt-br](Part_PointsFromMesh/pt-br.md) , [Part Primitives/pt-br](Part_Primitives/pt-br.md) , [Part Prism/pt-br](Part_Prism/pt-br.md) , [Part ProjectionOnSurface/pt-br](Part_ProjectionOnSurface/pt-br.md) , [Part RefineShape/pt-br](Part_RefineShape/pt-br.md) , [Part RegularPolygon/pt-br](Part_RegularPolygon/pt-br.md) , [Part ReverseShapes/pt-br](Part_ReverseShapes/pt-br.md) , [Part Revolve/pt-br](Part_Revolve/pt-br.md) , [Part RuledSurface/pt-br](Part_RuledSurface/pt-br.md) , [Part scripting/pt-br](Part_scripting/pt-br.md) , [Part Section/pt-br](Part_Section/pt-br.md) , [Part ShapeFromMesh/pt-br](Part_ShapeFromMesh/pt-br.md) , [Part SimpleCopy/pt-br](Part_SimpleCopy/pt-br.md) , [Part Slice/pt-br](Part_Slice/pt-br.md) , [Part SliceApart/pt-br](Part_SliceApart/pt-br.md) , [Part Sphere/pt-br](Part_Sphere/pt-br.md) , [Part Spiral/pt-br](Part_Spiral/pt-br.md) , [Part Sweep/pt-br](Part_Sweep/pt-br.md) , [Part Thickness/pt-br](Part_Thickness/pt-br.md) , [Template:Part Tools navi/pt-br](Template:Part_Tools_navi/pt-br.md) , [Part Torus/pt-br](Part_Torus/pt-br.md) , [Part TransformedCopy/pt-br](Part_TransformedCopy/pt-br.md) , [Part Tube/pt-br](Part_Tube/pt-br.md) , [Part Wedge/pt-br](Part_Wedge/pt-br.md) , [Part XOR/pt-br](Part_XOR/pt-br.md) , [Topological naming problem/pt-br](Topological_naming_problem/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:Part/pt-br diff --git a/wiki/translations/pt-br/Category:PartDesign.md b/wiki/translations/pt-br/Category:PartDesign.md index d11730a2f4..86ccc365ca 100644 --- a/wiki/translations/pt-br/Category:PartDesign.md +++ b/wiki/translations/pt-br/Category:PartDesign.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to PartDesign ### Contents: [Basic Part Design Tutorial/pt-br](Basic_Part_Design_Tutorial/pt-br.md) , [Body/pt-br](Body/pt-br.md) , [Creating a simple part with PartDesign/pt-br](Creating_a_simple_part_with_PartDesign/pt-br.md) , [Feature editing/pt-br](Feature_editing/pt-br.md) , [Part and PartDesign/pt-br](Part_and_PartDesign/pt-br.md) , [PartDesign AdditiveBox/pt-br](PartDesign_AdditiveBox/pt-br.md) , [PartDesign AdditiveCone/pt-br](PartDesign_AdditiveCone/pt-br.md) , [PartDesign AdditiveCylinder/pt-br](PartDesign_AdditiveCylinder/pt-br.md) , [PartDesign AdditiveEllipsoid/pt-br](PartDesign_AdditiveEllipsoid/pt-br.md) , [PartDesign AdditiveHelix/pt-br](PartDesign_AdditiveHelix/pt-br.md) , [PartDesign AdditiveLoft/pt-br](PartDesign_AdditiveLoft/pt-br.md) , [PartDesign AdditivePipe/pt-br](PartDesign_AdditivePipe/pt-br.md) , [PartDesign AdditivePrism/pt-br](PartDesign_AdditivePrism/pt-br.md) , [PartDesign AdditiveSphere/pt-br](PartDesign_AdditiveSphere/pt-br.md) , [PartDesign AdditiveTorus/pt-br](PartDesign_AdditiveTorus/pt-br.md) , [PartDesign AdditiveWedge/pt-br](PartDesign_AdditiveWedge/pt-br.md) , [PartDesign Body/pt-br](PartDesign_Body/pt-br.md) , [PartDesign Boolean/pt-br](PartDesign_Boolean/pt-br.md) , [PartDesign Chamfer/pt-br](PartDesign_Chamfer/pt-br.md) , [PartDesign Clone/pt-br](PartDesign_Clone/pt-br.md) , [PartDesign CompPrimitiveAdditive/pt-br](PartDesign_CompPrimitiveAdditive/pt-br.md) , [PartDesign CompPrimitiveSubtractive/pt-br](PartDesign_CompPrimitiveSubtractive/pt-br.md) , [PartDesign CoordinateSystem/pt-br](PartDesign_CoordinateSystem/pt-br.md) , [PartDesign Draft/pt-br](PartDesign_Draft/pt-br.md) , [PartDesign Fillet/pt-br](PartDesign_Fillet/pt-br.md) , [PartDesign Groove/pt-br](PartDesign_Groove/pt-br.md) , [PartDesign Hole/pt-br](PartDesign_Hole/pt-br.md) , [PartDesign InvoluteGear/pt-br](PartDesign_InvoluteGear/pt-br.md) , [PartDesign Line/pt-br](PartDesign_Line/pt-br.md) , [PartDesign LinearPattern/pt-br](PartDesign_LinearPattern/pt-br.md) , [PartDesign Migrate/pt-br](PartDesign_Migrate/pt-br.md) , [PartDesign Mirrored/pt-br](PartDesign_Mirrored/pt-br.md) , [PartDesign MoveFeature/pt-br](PartDesign_MoveFeature/pt-br.md) , [PartDesign MoveFeatureInTree/pt-br](PartDesign_MoveFeatureInTree/pt-br.md) , [PartDesign MoveTip/pt-br](PartDesign_MoveTip/pt-br.md) , [PartDesign MultiTransform/pt-br](PartDesign_MultiTransform/pt-br.md) , [PartDesign NewSketch/pt-br](PartDesign_NewSketch/pt-br.md) , [PartDesign Pad/pt-br](PartDesign_Pad/pt-br.md) , [PartDesign Plane/pt-br](PartDesign_Plane/pt-br.md) , [PartDesign Pocket/pt-br](PartDesign_Pocket/pt-br.md) , [PartDesign Point/pt-br](PartDesign_Point/pt-br.md) , [PartDesign PolarPattern/pt-br](PartDesign_PolarPattern/pt-br.md) , [PartDesign Preferences/pt-br](PartDesign_Preferences/pt-br.md) , [PartDesign Revolution/pt-br](PartDesign_Revolution/pt-br.md) , [PartDesign ShapeBinder/pt-br](PartDesign_ShapeBinder/pt-br.md) , [PartDesign Sprocket/pt-br](PartDesign_Sprocket/pt-br.md) , [PartDesign SubShapeBinder/pt-br](PartDesign_SubShapeBinder/pt-br.md) , [PartDesign SubtractiveBox/pt-br](PartDesign_SubtractiveBox/pt-br.md) , [PartDesign SubtractiveCone/pt-br](PartDesign_SubtractiveCone/pt-br.md) , [PartDesign SubtractiveCylinder/pt-br](PartDesign_SubtractiveCylinder/pt-br.md) , [PartDesign SubtractiveEllipsoid/pt-br](PartDesign_SubtractiveEllipsoid/pt-br.md) , [PartDesign SubtractiveHelix/pt-br](PartDesign_SubtractiveHelix/pt-br.md) , [PartDesign SubtractiveLoft/pt-br](PartDesign_SubtractiveLoft/pt-br.md) , [PartDesign SubtractivePipe/pt-br](PartDesign_SubtractivePipe/pt-br.md) , [PartDesign SubtractivePrism/pt-br](PartDesign_SubtractivePrism/pt-br.md) , [PartDesign SubtractiveSphere/pt-br](PartDesign_SubtractiveSphere/pt-br.md) , [PartDesign SubtractiveTorus/pt-br](PartDesign_SubtractiveTorus/pt-br.md) , [PartDesign SubtractiveWedge/pt-br](PartDesign_SubtractiveWedge/pt-br.md) , [PartDesign Thickness/pt-br](PartDesign_Thickness/pt-br.md) , [Template:PartDesign Tools navi/pt-br](Template:PartDesign_Tools_navi/pt-br.md) , [PartDesign WizardShaft/pt-br](PartDesign_WizardShaft/pt-br.md) , [PartDesign Workbench/pt-br](PartDesign_Workbench/pt-br.md) , [Topological naming problem/pt-br](Topological_naming_problem/pt-br.md) + +--- +[documentation index](../README.md) > Category:PartDesign/pt-br diff --git a/wiki/translations/pt-br/Category:Path.md b/wiki/translations/pt-br/Category:Path.md index 19f618fb7d..1206d0b676 100644 --- a/wiki/translations/pt-br/Category:Path.md +++ b/wiki/translations/pt-br/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/pt-br](PartDesign [Path Adaptive/pt-br](Path_Adaptive/pt-br.md) , [Path Area Workplane/pt-br](Path_Area_Workplane/pt-br.md) , [Path Area/pt-br](Path_Area/pt-br.md) , [Path Array/pt-br](Path_Array/pt-br.md) , [Path Comment/pt-br](Path_Comment/pt-br.md) , [Path Copy/pt-br](Path_Copy/pt-br.md) , [Path Custom/pt-br](Path_Custom/pt-br.md) , [Path Development Roadmap/pt-br](Path_Development_Roadmap/pt-br.md) , [Path DressupDogbone/pt-br](Path_DressupDogbone/pt-br.md) , [Path DressupDragKnife/pt-br](Path_DressupDragKnife/pt-br.md) , [Path DressupLeadInOut/pt-br](Path_DressupLeadInOut/pt-br.md) , [Path DressupPathBoundary/pt-br](Path_DressupPathBoundary/pt-br.md) , [Path DressupRampEntry/pt-br](Path_DressupRampEntry/pt-br.md) , [Path DressupTag/pt-br](Path_DressupTag/pt-br.md) , [Path Drilling/pt-br](Path_Drilling/pt-br.md) , [Path Engrave/pt-br](Path_Engrave/pt-br.md) , [Path experimental/pt-br](Path_experimental/pt-br.md) , [Path ExportTemplate/pt-br](Path_ExportTemplate/pt-br.md) , [Path Fixture/pt-br](Path_Fixture/pt-br.md) , [Path Helix/pt-br](Path_Helix/pt-br.md) , [Path Inspect/pt-br](Path_Inspect/pt-br.md) , [Path Job/pt-br](Path_Job/pt-br.md) , [Path MillFace/pt-br](Path_MillFace/pt-br.md) , [Path OpActiveToggle/pt-br](Path_OpActiveToggle/pt-br.md) , [Path Pocket 3D/pt-br](Path_Pocket_3D/pt-br.md) , [Path Pocket Shape/pt-br](Path_Pocket_Shape/pt-br.md) , [Path Post/pt-br](Path_Post/pt-br.md) , [Path Postprocessor Customization/pt-br](Path_Postprocessor_Customization/pt-br.md) , [Path Preferences/pt-br](Path_Preferences/pt-br.md) , [Path Profile/pt-br](Path_Profile/pt-br.md) , [Path Sanity/pt-br](Path_Sanity/pt-br.md) , [Path scripting/pt-br](Path_scripting/pt-br.md) , [Path SelectLoop/pt-br](Path_SelectLoop/pt-br.md) , [Path Shape/pt-br](Path_Shape/pt-br.md) , [Path SimpleCopy/pt-br](Path_SimpleCopy/pt-br.md) , [Path Simulator/pt-br](Path_Simulator/pt-br.md) , [Path Slot/pt-br](Path_Slot/pt-br.md) , [Path Stop/pt-br](Path_Stop/pt-br.md) , [Path Surface/pt-br](Path_Surface/pt-br.md) , [Path ToolLibraryEdit/pt-br](Path_ToolLibraryEdit/pt-br.md) , [Template:Path Tools navi/pt-br](Template:Path_Tools_navi/pt-br.md) , [Path Vcarve/pt-br](Path_Vcarve/pt-br.md) , [Path Walkthrough for the Impatient/pt-br](Path_Walkthrough_for_the_Impatient/pt-br.md) , [Path Waterline/pt-br](Path_Waterline/pt-br.md) , [Path Workbench/pt-br](Path_Workbench/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:Path/pt-br diff --git a/wiki/translations/pt-br/Category:Plot.md b/wiki/translations/pt-br/Category:Plot.md index 3909df8fc7..c3e5ad9eff 100644 --- a/wiki/translations/pt-br/Category:Plot.md +++ b/wiki/translations/pt-br/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/pt-br](Plot_Workbench/p [Plot Module/pt-br](Plot_Module/pt-br.md) , [Template:Plot Tools navi/pt-br](Template:Plot_Tools_navi/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:Plot/pt-br diff --git a/wiki/translations/pt-br/Category:Points.md b/wiki/translations/pt-br/Category:Points.md index 4dd27dc3f7..07f92f9583 100644 --- a/wiki/translations/pt-br/Category:Points.md +++ b/wiki/translations/pt-br/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/pt-br](Points_Workben [Points Convert/pt-br](Points_Convert/pt-br.md) , [Points Export/pt-br](Points_Export/pt-br.md) , [Points Import/pt-br](Points_Import/pt-br.md) , [Points Merge/pt-br](Points_Merge/pt-br.md) , [Points PolyCut/pt-br](Points_PolyCut/pt-br.md) , [Points Structure/pt-br](Points_Structure/pt-br.md) , [Points Workbench/pt-br](Points_Workbench/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:Points/pt-br diff --git a/wiki/translations/pt-br/Category:Poweruser_Documentation.md b/wiki/translations/pt-br/Category:Poweruser_Documentation.md index 6722444ebe..ed3c2c0cff 100644 --- a/wiki/translations/pt-br/Category:Poweruser_Documentation.md +++ b/wiki/translations/pt-br/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Path experimental/pt-br](Path_experimental/pt-br.md) [Category:Documentation/pt-br](Category:Documentation/pt-br.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/pt-br diff --git a/wiki/translations/pt-br/Category:Preferences.md b/wiki/translations/pt-br/Category:Preferences.md index 3a1dfe71e1..47b7b68db1 100644 --- a/wiki/translations/pt-br/Category:Preferences.md +++ b/wiki/translations/pt-br/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Arch Preferences/pt-br](Arch_Preferences/pt-br.md) , [Draft Preferences/pt-br](Draft_Preferences/pt-br.md) , [Import Export Preferences/pt-br](Import_Export_Preferences/pt-br.md) , [PartDesign Preferences/pt-br](PartDesign_Preferences/pt-br.md) , [Path Preferences/pt-br](Path_Preferences/pt-br.md) , [Preferences Editor/pt-br](Preferences_Editor/pt-br.md) , [Sketcher Preferences/pt-br](Sketcher_Preferences/pt-br.md) + +--- +[documentation index](../README.md) > Category:Preferences/pt-br diff --git a/wiki/translations/pt-br/Category:Raytracing.md b/wiki/translations/pt-br/Category:Raytracing.md index 67cc4110b9..878ee7ab4e 100644 --- a/wiki/translations/pt-br/Category:Raytracing.md +++ b/wiki/translations/pt-br/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/pt-br](Raytracing [Template:Raytracing Tools navi/pt-br](Template:Raytracing_Tools_navi/pt-br.md) , [Raytracing Workbench/pt-br](Raytracing_Workbench/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:Raytracing/pt-br diff --git a/wiki/translations/pt-br/Category:Roadmap.md b/wiki/translations/pt-br/Category:Roadmap.md index dc342f77d1..f41891b4da 100644 --- a/wiki/translations/pt-br/Category:Roadmap.md +++ b/wiki/translations/pt-br/Category:Roadmap.md @@ -6,3 +6,6 @@ This category gathers all articles documenting what is planned in the Roadmap of [Assembly project/pt-br](Assembly_project/pt-br.md) , [Development roadmap/pt-br](Development_roadmap/pt-br.md) , [Material/pt-br](Material/pt-br.md) [Category:Categories/pt-br](Category:Categories/pt-br.md) + +--- +[documentation index](../README.md) > Category:Roadmap/pt-br diff --git a/wiki/translations/pt-br/Category:Robot.md b/wiki/translations/pt-br/Category:Robot.md index bf76a0c68b..f1c4263f30 100644 --- a/wiki/translations/pt-br/Category:Robot.md +++ b/wiki/translations/pt-br/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/pt-br](Robot_Workbench [Robot 6-Axis/pt-br](Robot_6-Axis/pt-br.md) , [Robot CreateRobot/pt-br](Robot_CreateRobot/pt-br.md) , [Robot CreateTrajectory/pt-br](Robot_CreateTrajectory/pt-br.md) , [Robot Edge2Trac/pt-br](Robot_Edge2Trac/pt-br.md) , [Robot Export/pt-br](Robot_Export/pt-br.md) , [Robot InsertWaypoint/pt-br](Robot_InsertWaypoint/pt-br.md) , [Robot InsertWaypointPre/pt-br](Robot_InsertWaypointPre/pt-br.md) , [Robot RestoreHomePos/pt-br](Robot_RestoreHomePos/pt-br.md) , [Robot SetDefaultOrientation/pt-br](Robot_SetDefaultOrientation/pt-br.md) , [Robot SetDefaultValues/pt-br](Robot_SetDefaultValues/pt-br.md) , [Robot SetHomePos/pt-br](Robot_SetHomePos/pt-br.md) , [Robot Simulate/pt-br](Robot_Simulate/pt-br.md) , [Template:Robot Tools navi/pt-br](Template:Robot_Tools_navi/pt-br.md) , [Robot TrajectoryCompound/pt-br](Robot_TrajectoryCompound/pt-br.md) , [Robot TrajectoryDressUp/pt-br](Robot_TrajectoryDressUp/pt-br.md) , [Robot tutorial/pt-br](Robot_tutorial/pt-br.md) , [Robot Workbench/pt-br](Robot_Workbench/pt-br.md) , [VRML Preparation for Robot Simulation/pt-br](VRML_Preparation_for_Robot_Simulation/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:Robot/pt-br diff --git a/wiki/translations/pt-br/Category:Ship.md b/wiki/translations/pt-br/Category:Ship.md index 0c9847e4ee..3c0bc9515b 100644 --- a/wiki/translations/pt-br/Category:Ship.md +++ b/wiki/translations/pt-br/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/pt-br](Ship_Workbench/p [Template:Ship Tools navi/pt-br](Template:Ship_Tools_navi/pt-br.md) , [Ship Workbench/pt-br](Ship_Workbench/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:Ship/pt-br diff --git a/wiki/translations/pt-br/Category:Sketcher.md b/wiki/translations/pt-br/Category:Sketcher.md index 96cdce09e1..6fb7b6b963 100644 --- a/wiki/translations/pt-br/Category:Sketcher.md +++ b/wiki/translations/pt-br/Category:Sketcher.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to Sketcher ### Contents: [Arch panel tutorial/pt-br](Arch_panel_tutorial/pt-br.md) , [Basic Part Design Tutorial/pt-br](Basic_Part_Design_Tutorial/pt-br.md) , [Basic Sketcher Tutorial/pt-br](Basic_Sketcher_Tutorial/pt-br.md) , [Creating a simple part with PartDesign/pt-br](Creating_a_simple_part_with_PartDesign/pt-br.md) , [Part and PartDesign/pt-br](Part_and_PartDesign/pt-br.md) , [Sketch/pt-br](Sketch/pt-br.md) , [Sketcher BSplineApproximate/pt-br](Sketcher_BSplineApproximate/pt-br.md) , [Sketcher BSplineComb/pt-br](Sketcher_BSplineComb/pt-br.md) , [Sketcher BSplineDecreaseDegree/pt-br](Sketcher_BSplineDecreaseDegree/pt-br.md) , [Sketcher BSplineDecreaseKnotMultiplicity/pt-br](Sketcher_BSplineDecreaseKnotMultiplicity/pt-br.md) , [Sketcher BSplineDegree/pt-br](Sketcher_BSplineDegree/pt-br.md) , [Sketcher BSplineIncreaseDegree/pt-br](Sketcher_BSplineIncreaseDegree/pt-br.md) , [Sketcher BSplineIncreaseKnotMultiplicity/pt-br](Sketcher_BSplineIncreaseKnotMultiplicity/pt-br.md) , [Sketcher BSplineKnotMultiplicity/pt-br](Sketcher_BSplineKnotMultiplicity/pt-br.md) , [Sketcher BSplinePoleWeight/pt-br](Sketcher_BSplinePoleWeight/pt-br.md) , [Sketcher BSplinePolygon/pt-br](Sketcher_BSplinePolygon/pt-br.md) , [Sketcher CarbonCopy/pt-br](Sketcher_CarbonCopy/pt-br.md) , [Sketcher Clone/pt-br](Sketcher_Clone/pt-br.md) , [Sketcher CloseShape/pt-br](Sketcher_CloseShape/pt-br.md) , [Sketcher CompCreateArc/pt-br](Sketcher_CompCreateArc/pt-br.md) , [Sketcher CompCreateBSpline/pt-br](Sketcher_CompCreateBSpline/pt-br.md) , [Sketcher CompCreateCircle/pt-br](Sketcher_CompCreateCircle/pt-br.md) , [Sketcher CompCreateConic/pt-br](Sketcher_CompCreateConic/pt-br.md) , [Sketcher CompCreateRectangles/pt-br](Sketcher_CompCreateRectangles/pt-br.md) , [Sketcher CompCreateRegularPolygon/pt-br](Sketcher_CompCreateRegularPolygon/pt-br.md) , [Sketcher ConnectLines/pt-br](Sketcher_ConnectLines/pt-br.md) , [Sketcher ConstrainAngle/pt-br](Sketcher_ConstrainAngle/pt-br.md) , [Sketcher ConstrainBlock/pt-br](Sketcher_ConstrainBlock/pt-br.md) , [Sketcher ConstrainCoincident/pt-br](Sketcher_ConstrainCoincident/pt-br.md) , [Sketcher ConstrainDiameter/pt-br](Sketcher_ConstrainDiameter/pt-br.md) , [Sketcher ConstrainDistance/pt-br](Sketcher_ConstrainDistance/pt-br.md) , [Sketcher ConstrainDistanceX/pt-br](Sketcher_ConstrainDistanceX/pt-br.md) , [Sketcher ConstrainDistanceY/pt-br](Sketcher_ConstrainDistanceY/pt-br.md) , [Sketcher ConstrainEqual/pt-br](Sketcher_ConstrainEqual/pt-br.md) , [Sketcher ConstrainHorizontal/pt-br](Sketcher_ConstrainHorizontal/pt-br.md) , [Sketcher ConstrainInternalAlignment/pt-br](Sketcher_ConstrainInternalAlignment/pt-br.md) , [Sketcher ConstrainLock/pt-br](Sketcher_ConstrainLock/pt-br.md) , [Sketcher ConstrainParallel/pt-br](Sketcher_ConstrainParallel/pt-br.md) , [Sketcher ConstrainPerpendicular/pt-br](Sketcher_ConstrainPerpendicular/pt-br.md) , [Sketcher ConstrainPointOnObject/pt-br](Sketcher_ConstrainPointOnObject/pt-br.md) , [Sketcher ConstrainRadiam/pt-br](Sketcher_ConstrainRadiam/pt-br.md) , [Sketcher ConstrainRadius/pt-br](Sketcher_ConstrainRadius/pt-br.md) , [Sketcher ConstrainSnellsLaw/pt-br](Sketcher_ConstrainSnellsLaw/pt-br.md) , [Sketcher ConstrainSymmetric/pt-br](Sketcher_ConstrainSymmetric/pt-br.md) , [Sketcher ConstrainTangent/pt-br](Sketcher_ConstrainTangent/pt-br.md) , [Sketcher ConstrainVertical/pt-br](Sketcher_ConstrainVertical/pt-br.md) , [Sketcher Copy/pt-br](Sketcher_Copy/pt-br.md) , [Sketcher Create3PointArc/pt-br](Sketcher_Create3PointArc/pt-br.md) , [Sketcher Create3PointCircle/pt-br](Sketcher_Create3PointCircle/pt-br.md) , [Sketcher CreateArc/pt-br](Sketcher_CreateArc/pt-br.md) , [Sketcher CreateArcOfEllipse/pt-br](Sketcher_CreateArcOfEllipse/pt-br.md) , [Sketcher CreateArcOfHyperbola/pt-br](Sketcher_CreateArcOfHyperbola/pt-br.md) , [Sketcher CreateArcOfParabola/pt-br](Sketcher_CreateArcOfParabola/pt-br.md) , [Sketcher CreateBSpline/pt-br](Sketcher_CreateBSpline/pt-br.md) , [Sketcher CreateCircle/pt-br](Sketcher_CreateCircle/pt-br.md) , [Sketcher CreateEllipseBy3Points/pt-br](Sketcher_CreateEllipseBy3Points/pt-br.md) , [Sketcher CreateEllipseByCenter/pt-br](Sketcher_CreateEllipseByCenter/pt-br.md) , [Sketcher CreateFillet/pt-br](Sketcher_CreateFillet/pt-br.md) , [Sketcher CreateHeptagon/pt-br](Sketcher_CreateHeptagon/pt-br.md) , [Sketcher CreateHexagon/pt-br](Sketcher_CreateHexagon/pt-br.md) , [Sketcher CreateLine/pt-br](Sketcher_CreateLine/pt-br.md) , [Sketcher CreateOblong/pt-br](Sketcher_CreateOblong/pt-br.md) , [Sketcher CreateOctagon/pt-br](Sketcher_CreateOctagon/pt-br.md) , [Sketcher CreatePentagon/pt-br](Sketcher_CreatePentagon/pt-br.md) , [Sketcher CreatePeriodicBSpline/pt-br](Sketcher_CreatePeriodicBSpline/pt-br.md) , [Sketcher CreatePoint/pt-br](Sketcher_CreatePoint/pt-br.md) , [Sketcher CreatePolyline/pt-br](Sketcher_CreatePolyline/pt-br.md) , [Sketcher CreateRectangle Center/pt-br](Sketcher_CreateRectangle_Center/pt-br.md) , [Sketcher CreateRectangle/pt-br](Sketcher_CreateRectangle/pt-br.md) , [Sketcher CreateRegularPolygon/pt-br](Sketcher_CreateRegularPolygon/pt-br.md) , [Sketcher CreateSlot/pt-br](Sketcher_CreateSlot/pt-br.md) , [Sketcher CreateSquare/pt-br](Sketcher_CreateSquare/pt-br.md) , [Sketcher CreateTriangle/pt-br](Sketcher_CreateTriangle/pt-br.md) , [Sketcher DeleteAllConstraints/pt-br](Sketcher_DeleteAllConstraints/pt-br.md) , [Sketcher DeleteAllGeometry/pt-br](Sketcher_DeleteAllGeometry/pt-br.md) , [Sketcher Dialog/pt-br](Sketcher_Dialog/pt-br.md) , [Sketcher EditSketch/pt-br](Sketcher_EditSketch/pt-br.md) , [Sketcher Extend/pt-br](Sketcher_Extend/pt-br.md) , [Sketcher External/pt-br](Sketcher_External/pt-br.md) , [Sketcher helper constraint/pt-br](Sketcher_helper_constraint/pt-br.md) , [Sketcher LeaveSketch/pt-br](Sketcher_LeaveSketch/pt-br.md) , [Sketcher MapSketch/pt-br](Sketcher_MapSketch/pt-br.md) , [Sketcher MergeSketches/pt-br](Sketcher_MergeSketches/pt-br.md) , [Sketcher Micro Tutorial - Constraint Practices/pt-br](Sketcher_Micro_Tutorial_-_Constraint_Practices/pt-br.md) , [Sketcher MirrorSketch/pt-br](Sketcher_MirrorSketch/pt-br.md) , [Sketcher Move/pt-br](Sketcher_Move/pt-br.md) , [Sketcher NewSketch/pt-br](Sketcher_NewSketch/pt-br.md) , [Sketcher Preferences/pt-br](Sketcher_Preferences/pt-br.md) , [Sketcher RectangularArray/pt-br](Sketcher_RectangularArray/pt-br.md) , [Sketcher RemoveAxesAlignment/pt-br](Sketcher_RemoveAxesAlignment/pt-br.md) , [Sketcher ReorientSketch/pt-br](Sketcher_ReorientSketch/pt-br.md) , [Sketcher requirement for a sketch/pt-br](Sketcher_requirement_for_a_sketch/pt-br.md) , [Sketcher RestoreInternalAlignmentGeometry/pt-br](Sketcher_RestoreInternalAlignmentGeometry/pt-br.md) , [Sketcher scripting/pt-br](Sketcher_scripting/pt-br.md) , [Sketcher SelectConflictingConstraints/pt-br](Sketcher_SelectConflictingConstraints/pt-br.md) , [Sketcher SelectConstraints/pt-br](Sketcher_SelectConstraints/pt-br.md) , [Sketcher SelectElementsAssociatedWithConstraints/pt-br](Sketcher_SelectElementsAssociatedWithConstraints/pt-br.md) , [Sketcher SelectElementsWithDoFs/pt-br](Sketcher_SelectElementsWithDoFs/pt-br.md) , [Sketcher SelectHorizontalAxis/pt-br](Sketcher_SelectHorizontalAxis/pt-br.md) , [Sketcher SelectOrigin/pt-br](Sketcher_SelectOrigin/pt-br.md) , [Sketcher SelectRedundantConstraints/pt-br](Sketcher_SelectRedundantConstraints/pt-br.md) , [Sketcher SelectVerticalAxis/pt-br](Sketcher_SelectVerticalAxis/pt-br.md) , [Sketcher Split/pt-br](Sketcher_Split/pt-br.md) , [Sketcher StopOperation/pt-br](Sketcher_StopOperation/pt-br.md) , [Sketcher SwitchVirtualSpace/pt-br](Sketcher_SwitchVirtualSpace/pt-br.md) , [Sketcher Symmetry/pt-br](Sketcher_Symmetry/pt-br.md) , [Sketcher ToggleActiveConstraint/pt-br](Sketcher_ToggleActiveConstraint/pt-br.md) , [Sketcher ToggleConstruction/pt-br](Sketcher_ToggleConstruction/pt-br.md) , [Sketcher ToggleDrivingConstraint/pt-br](Sketcher_ToggleDrivingConstraint/pt-br.md) , [Template:Sketcher Tools navi/pt-br](Template:Sketcher_Tools_navi/pt-br.md) , [Sketcher Trimming/pt-br](Sketcher_Trimming/pt-br.md) , [Sketcher ValidateSketch/pt-br](Sketcher_ValidateSketch/pt-br.md) , [Sketcher ViewSection/pt-br](Sketcher_ViewSection/pt-br.md) , [Sketcher ViewSketch/pt-br](Sketcher_ViewSketch/pt-br.md) , [Sketcher Workbench/pt-br](Sketcher_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > Category:Sketcher/pt-br diff --git a/wiki/translations/pt-br/Category:Surface.md b/wiki/translations/pt-br/Category:Surface.md index e0dee16967..483e2e040b 100644 --- a/wiki/translations/pt-br/Category:Surface.md +++ b/wiki/translations/pt-br/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/pt-br](Surface_Workb [Surface Workbench/pt-br](Surface_Workbench/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:Surface/pt-br diff --git a/wiki/translations/pt-br/Category:TechDraw.md b/wiki/translations/pt-br/Category:TechDraw.md index 519cf71060..97d464e69a 100644 --- a/wiki/translations/pt-br/Category:TechDraw.md +++ b/wiki/translations/pt-br/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/pt-br](TechDraw_Wor [Bitmap/pt-br](Bitmap/pt-br.md) , [DXF/pt-br](DXF/pt-br.md) , [TechDraw SpreadsheetView/pt-br](TechDraw_SpreadsheetView/pt-br.md) , [TechDraw Workbench/pt-br](TechDraw_Workbench/pt-br.md) , [Topological naming problem/pt-br](Topological_naming_problem/pt-br.md) [Category:Workbenches/pt-br](Category:Workbenches/pt-br.md) + +--- +[documentation index](../README.md) > Category:TechDraw/pt-br diff --git a/wiki/translations/pt-br/Category:Template.md b/wiki/translations/pt-br/Category:Template.md index b906bdbf38..3c07c88f51 100644 --- a/wiki/translations/pt-br/Category:Template.md +++ b/wiki/translations/pt-br/Category:Template.md @@ -6,3 +6,6 @@ This category contains all the Templates [Template:Sketcher Tools/pt-br](Template:Sketcher_Tools/pt-br.md) , [Category:Categories/pt-br](Category:Categories/pt-br.md) [Category:Template:Navigation/pt-br](Category:Template:Navigation/pt-br.md) + +--- +[documentation index](../README.md) > Category:Template/pt-br diff --git a/wiki/translations/pt-br/Category:Template:Navigation.md b/wiki/translations/pt-br/Category:Template:Navigation.md index 44e6eb37ef..fdc1467283 100644 --- a/wiki/translations/pt-br/Category:Template:Navigation.md +++ b/wiki/translations/pt-br/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/pt-br](Template:Arch_Tools_navi/pt-br.md) , [Template:Drawing Tools navi/pt-br](Template:Drawing_Tools_navi/pt-br.md) , [Template:FEM Tools navi/pt-br](Template:FEM_Tools_navi/pt-br.md) , [Template:Mesh Tools navi/pt-br](Template:Mesh_Tools_navi/pt-br.md) , [Template:OpenSCAD Tools navi/pt-br](Template:OpenSCAD_Tools_navi/pt-br.md) , [Template:Part Tools navi/pt-br](Template:Part_Tools_navi/pt-br.md) , [Template:PartDesign Tools navi/pt-br](Template:PartDesign_Tools_navi/pt-br.md) , [Template:Path Tools navi/pt-br](Template:Path_Tools_navi/pt-br.md) , [Template:Plot Tools navi/pt-br](Template:Plot_Tools_navi/pt-br.md) , [Template:Raytracing Tools navi/pt-br](Template:Raytracing_Tools_navi/pt-br.md) , [Template:Robot Tools navi/pt-br](Template:Robot_Tools_navi/pt-br.md) , [Template:Ship Tools navi/pt-br](Template:Ship_Tools_navi/pt-br.md) , [Template:Sketcher Tools navi/pt-br](Template:Sketcher_Tools_navi/pt-br.md) [Category:Template/pt-br](Category:Template/pt-br.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/pt-br diff --git a/wiki/translations/pt-br/Category:Tutorials.md b/wiki/translations/pt-br/Category:Tutorials.md index 721070bee3..e87bd77159 100644 --- a/wiki/translations/pt-br/Category:Tutorials.md +++ b/wiki/translations/pt-br/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials](Offsite_tutorials/pt-br.md) and [Video tut [Arch panel tutorial/pt-br](Arch_panel_tutorial/pt-br.md) , [Arch tutorial/pt-br](Arch_tutorial/pt-br.md) , [Basic modeling tutorial/pt-br](Basic_modeling_tutorial/pt-br.md) , [Basic Part Design Tutorial/pt-br](Basic_Part_Design_Tutorial/pt-br.md) , [Basic Sketcher Tutorial/pt-br](Basic_Sketcher_Tutorial/pt-br.md) , [Creating a simple part with PartDesign/pt-br](Creating_a_simple_part_with_PartDesign/pt-br.md) , [Export to STL or OBJ/pt-br](Export_to_STL_or_OBJ/pt-br.md) , [How to install additional workbenches/pt-br](How_to_install_additional_workbenches/pt-br.md) , [How to install macros/pt-br](How_to_install_macros/pt-br.md) , [Import from STL or OBJ/pt-br](Import_from_STL_or_OBJ/pt-br.md) , [PartDesign Bearingholder Tutorial I/pt-br](PartDesign_Bearingholder_Tutorial_I/pt-br.md) , [PartDesign Bearingholder Tutorial II/pt-br](PartDesign_Bearingholder_Tutorial_II/pt-br.md) , [Path Walkthrough for the Impatient/pt-br](Path_Walkthrough_for_the_Impatient/pt-br.md) , [Robot 6-Axis/pt-br](Robot_6-Axis/pt-br.md) , [Robot tutorial/pt-br](Robot_tutorial/pt-br.md) , [Sketcher Micro Tutorial - Constraint Practices/pt-br](Sketcher_Micro_Tutorial_-_Constraint_Practices/pt-br.md) , [Sketcher requirement for a sketch/pt-br](Sketcher_requirement_for_a_sketch/pt-br.md) , [Template:TutorialInfo/pt-br](Template:TutorialInfo/pt-br.md) , [Tutorials/pt-br](Tutorials/pt-br.md) , [VRML Preparation for Robot Simulation/pt-br](VRML_Preparation_for_Robot_Simulation/pt-br.md) [Category:Categories/pt-br](Category:Categories/pt-br.md) + +--- +[documentation index](../README.md) > Category:Tutorials/pt-br diff --git a/wiki/translations/pt-br/Category:User_Documentation.md b/wiki/translations/pt-br/Category:User_Documentation.md index ec8b231b6b..dd63cb7fee 100644 --- a/wiki/translations/pt-br/Category:User_Documentation.md +++ b/wiki/translations/pt-br/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [3D view/pt-br](3D_view/pt-br.md) , [About FreeCAD/pt-br](About_FreeCAD/pt-br.md) , [Addon/pt-br](Addon/pt-br.md) , [App Link/pt-br](App_Link/pt-br.md) , [AppImage/pt-br](AppImage/pt-br.md) , [Arch 3DS/pt-br](Arch_3DS/pt-br.md) , [Arch 3Views/pt-br](Arch_3Views/pt-br.md) , [Arch Add/pt-br](Arch_Add/pt-br.md) , [Arch Axis/pt-br](Arch_Axis/pt-br.md) , [Arch AxisSystem/pt-br](Arch_AxisSystem/pt-br.md) , [Arch Building/pt-br](Arch_Building/pt-br.md) , [Arch BuildingPart/pt-br](Arch_BuildingPart/pt-br.md) , [Arch Check/pt-br](Arch_Check/pt-br.md) , [Arch CloneComponent/pt-br](Arch_CloneComponent/pt-br.md) , [Arch CloseHoles/pt-br](Arch_CloseHoles/pt-br.md) , [Arch CompAxis/pt-br](Arch_CompAxis/pt-br.md) , [Arch Component/pt-br](Arch_Component/pt-br.md) , [Arch CompPanel/pt-br](Arch_CompPanel/pt-br.md) , [Arch CompPipe/pt-br](Arch_CompPipe/pt-br.md) , [Arch CompRebarStraight/pt-br](Arch_CompRebarStraight/pt-br.md) , [Arch CompSetMaterial/pt-br](Arch_CompSetMaterial/pt-br.md) , [Arch CurtainWall/pt-br](Arch_CurtainWall/pt-br.md) , [Arch CutLine/pt-br](Arch_CutLine/pt-br.md) , [Arch CutPlane/pt-br](Arch_CutPlane/pt-br.md) , [Arch DAE/pt-br](Arch_DAE/pt-br.md) , [Arch Equipment/pt-br](Arch_Equipment/pt-br.md) , [Arch Fence/pt-br](Arch_Fence/pt-br.md) , [Arch Floor/pt-br](Arch_Floor/pt-br.md) , [Arch Frame/pt-br](Arch_Frame/pt-br.md) , [Arch Grid/pt-br](Arch_Grid/pt-br.md) , [Arch IFC/pt-br](Arch_IFC/pt-br.md) , [Arch IfcExplorer/pt-br](Arch_IfcExplorer/pt-br.md) , [Arch IfcSpreadsheet/pt-br](Arch_IfcSpreadsheet/pt-br.md) , [Arch JSON/pt-br](Arch_JSON/pt-br.md) , [Arch MergeWalls/pt-br](Arch_MergeWalls/pt-br.md) , [Arch MeshToShape/pt-br](Arch_MeshToShape/pt-br.md) , [Arch MultiMaterial/pt-br](Arch_MultiMaterial/pt-br.md) , [Arch Nest/pt-br](Arch_Nest/pt-br.md) , [Arch OBJ/pt-br](Arch_OBJ/pt-br.md) , [Arch Panel Cut/pt-br](Arch_Panel_Cut/pt-br.md) , [Arch Panel Sheet/pt-br](Arch_Panel_Sheet/pt-br.md) , [Arch panel tutorial/pt-br](Arch_panel_tutorial/pt-br.md) , [Arch Panel/pt-br](Arch_Panel/pt-br.md) , [Arch Pipe/pt-br](Arch_Pipe/pt-br.md) , [Arch PipeConnector/pt-br](Arch_PipeConnector/pt-br.md) , [Arch Preferences/pt-br](Arch_Preferences/pt-br.md) , [Arch Profile/pt-br](Arch_Profile/pt-br.md) , [Arch Project/pt-br](Arch_Project/pt-br.md) , [Arch Rebar BeamReinforcement/pt-br](Arch_Rebar_BeamReinforcement/pt-br.md) , [Arch Rebar BentShape/pt-br](Arch_Rebar_BentShape/pt-br.md) , [Arch Rebar BOM/pt-br](Arch_Rebar_BOM/pt-br.md) , [Arch Rebar Circular ColumnReinforcement/pt-br](Arch_Rebar_Circular_ColumnReinforcement/pt-br.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/pt-br](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/pt-br.md) , [Arch Rebar ColumnReinforcement/pt-br](Arch_Rebar_ColumnReinforcement/pt-br.md) , [Arch Rebar Drawing Dimensioning/pt-br](Arch_Rebar_Drawing_Dimensioning/pt-br.md) , [Arch Rebar Helical/pt-br](Arch_Rebar_Helical/pt-br.md) , [Arch Rebar LShape/pt-br](Arch_Rebar_LShape/pt-br.md) , [Arch Rebar Stirrup/pt-br](Arch_Rebar_Stirrup/pt-br.md) , [Arch Rebar Straight/pt-br](Arch_Rebar_Straight/pt-br.md) , [Arch Rebar UShape/pt-br](Arch_Rebar_UShape/pt-br.md) , [Arch Rebar/pt-br](Arch_Rebar/pt-br.md) , [Arch Reference/pt-br](Arch_Reference/pt-br.md) , [Arch Remove/pt-br](Arch_Remove/pt-br.md) , [Arch RemoveShape/pt-br](Arch_RemoveShape/pt-br.md) , [Arch Roof/pt-br](Arch_Roof/pt-br.md) , [Arch Schedule/pt-br](Arch_Schedule/pt-br.md) , [Arch SectionPlane/pt-br](Arch_SectionPlane/pt-br.md) , [Arch SelectNonSolidMeshes/pt-br](Arch_SelectNonSolidMeshes/pt-br.md) , [Arch SetMaterial/pt-br](Arch_SetMaterial/pt-br.md) , [Arch SHP/pt-br](Arch_SHP/pt-br.md) , [Arch Site/pt-br](Arch_Site/pt-br.md) , [Arch Space/pt-br](Arch_Space/pt-br.md) , [Arch SplitMesh/pt-br](Arch_SplitMesh/pt-br.md) , [Arch Stairs/pt-br](Arch_Stairs/pt-br.md) , [Arch Structure/pt-br](Arch_Structure/pt-br.md) , [Arch Survey/pt-br](Arch_Survey/pt-br.md) , [Arch ToggleIfcBrepFlag/pt-br](Arch_ToggleIfcBrepFlag/pt-br.md) , [Arch ToggleSubs/pt-br](Arch_ToggleSubs/pt-br.md) , [Arch Truss/pt-br](Arch_Truss/pt-br.md) , [Arch tutorial/pt-br](Arch_tutorial/pt-br.md) , [Arch Wall/pt-br](Arch_Wall/pt-br.md) , [Arch Window/pt-br](Arch_Window/pt-br.md) , [Arch Workbench/pt-br](Arch_Workbench/pt-br.md) , [Assembly/pt-br](Assembly/pt-br.md) , [Basic modeling tutorial/pt-br](Basic_modeling_tutorial/pt-br.md) , [Basic Part Design Tutorial/pt-br](Basic_Part_Design_Tutorial/pt-br.md) , [Basic Sketcher Tutorial/pt-br](Basic_Sketcher_Tutorial/pt-br.md) , [Bitmap/pt-br](Bitmap/pt-br.md) , [Body/pt-br](Body/pt-br.md) , [Branding/pt-br](Branding/pt-br.md) , [Bug Triage/pt-br](Bug_Triage/pt-br.md) , [Cfd Workbench/pt-br](Cfd_Workbench/pt-br.md) , [Combo view/pt-br](Combo_view/pt-br.md) , [Compile on Docker/pt-br](Compile_on_Docker/pt-br.md) , [Compile on Linux/pt-br](Compile_on_Linux/pt-br.md) , [Compile on MacOS/pt-br](Compile_on_MacOS/pt-br.md) , [Compile on Windows/pt-br](Compile_on_Windows/pt-br.md) , [Compiling (Speeding up)/pt-br](Compiling_(Speeding_up)/pt-br.md) , [Compiling/pt-br](Compiling/pt-br.md) , [Complete Workbench/pt-br](Complete_Workbench/pt-br.md) , [Constructive solid geometry/pt-br](Constructive_solid_geometry/pt-br.md) , [Continuous Integration/pt-br](Continuous_Integration/pt-br.md) , [Contributors/pt-br](Contributors/pt-br.md) , [Creating a simple part with PartDesign/pt-br](Creating_a_simple_part_with_PartDesign/pt-br.md) , [Developer hub/pt-br](Developer_hub/pt-br.md) , [Document structure/pt-br](Document_structure/pt-br.md) , [Donate/pt-br](Donate/pt-br.md) , [Download/pt-br](Download/pt-br.md) , [Draft AddConstruction/pt-br](Draft_AddConstruction/pt-br.md) , [Draft AddToGroup/pt-br](Draft_AddToGroup/pt-br.md) , [Draft annotation scale widget/pt-br](Draft_annotation_scale_widget/pt-br.md) , [Draft AnnotationStyleEditor/pt-br](Draft_AnnotationStyleEditor/pt-br.md) , [Draft ApplyStyle/pt-br](Draft_ApplyStyle/pt-br.md) , [Draft Arc 3Points/pt-br](Draft_Arc_3Points/pt-br.md) , [Draft Arc/pt-br](Draft_Arc/pt-br.md) , [Draft Array/pt-br](Draft_Array/pt-br.md) , [Draft AutoGroup/pt-br](Draft_AutoGroup/pt-br.md) , [Draft BezCurve/pt-br](Draft_BezCurve/pt-br.md) , [Draft BSpline/pt-br](Draft_BSpline/pt-br.md) , [Draft Circle/pt-br](Draft_Circle/pt-br.md) , [Draft CircularArray/pt-br](Draft_CircularArray/pt-br.md) , [Draft Clone/pt-br](Draft_Clone/pt-br.md) , [Draft Constrain/pt-br](Draft_Constrain/pt-br.md) , [Draft CubicBezCurve/pt-br](Draft_CubicBezCurve/pt-br.md) , [Draft DAT/pt-br](Draft_DAT/pt-br.md) , [Draft Dimension/pt-br](Draft_Dimension/pt-br.md) , [Draft Downgrade/pt-br](Draft_Downgrade/pt-br.md) , [Draft Draft2Sketch/pt-br](Draft_Draft2Sketch/pt-br.md) , [Draft Drawing/pt-br](Draft_Drawing/pt-br.md) , [Draft DXF/pt-br](Draft_DXF/pt-br.md) , [Draft Edit/pt-br](Draft_Edit/pt-br.md) , [Draft Ellipse/pt-br](Draft_Ellipse/pt-br.md) , [Draft Facebinder/pt-br](Draft_Facebinder/pt-br.md) , [Draft Fillet/pt-br](Draft_Fillet/pt-br.md) , [Draft FlipDimension/pt-br](Draft_FlipDimension/pt-br.md) , [Draft Heal/pt-br](Draft_Heal/pt-br.md) , [Draft Join/pt-br](Draft_Join/pt-br.md) , [Draft Label/pt-br](Draft_Label/pt-br.md) , [Draft Layer/pt-br](Draft_Layer/pt-br.md) , [Draft Line/pt-br](Draft_Line/pt-br.md) , [Draft Mirror/pt-br](Draft_Mirror/pt-br.md) , [Draft Move/pt-br](Draft_Move/pt-br.md) , [Draft OCA/pt-br](Draft_OCA/pt-br.md) , [Draft Offset/pt-br](Draft_Offset/pt-br.md) , [Draft OrthoArray/pt-br](Draft_OrthoArray/pt-br.md) , [Draft PathArray/pt-br](Draft_PathArray/pt-br.md) , [Draft PathLinkArray/pt-br](Draft_PathLinkArray/pt-br.md) , [Draft Point/pt-br](Draft_Point/pt-br.md) , [Draft PointArray/pt-br](Draft_PointArray/pt-br.md) , [Draft PointLinkArray/pt-br](Draft_PointLinkArray/pt-br.md) , [Draft PolarArray/pt-br](Draft_PolarArray/pt-br.md) , [Draft Polygon/pt-br](Draft_Polygon/pt-br.md) , [Draft Preferences/pt-br](Draft_Preferences/pt-br.md) , [Draft Rectangle/pt-br](Draft_Rectangle/pt-br.md) , [Draft Rotate/pt-br](Draft_Rotate/pt-br.md) , [Draft Scale/pt-br](Draft_Scale/pt-br.md) , [Draft SelectGroup/pt-br](Draft_SelectGroup/pt-br.md) , [Draft SelectPlane/pt-br](Draft_SelectPlane/pt-br.md) , [Draft SetStyle/pt-br](Draft_SetStyle/pt-br.md) , [Draft Shape2DView/pt-br](Draft_Shape2DView/pt-br.md) , [Draft ShapeString/pt-br](Draft_ShapeString/pt-br.md) , [Draft ShowSnapBar/pt-br](Draft_ShowSnapBar/pt-br.md) , [Draft Slope/pt-br](Draft_Slope/pt-br.md) , [Draft Snap Angle/pt-br](Draft_Snap_Angle/pt-br.md) , [Draft Snap Center/pt-br](Draft_Snap_Center/pt-br.md) , [Draft Snap Dimensions/pt-br](Draft_Snap_Dimensions/pt-br.md) , [Draft Snap Endpoint/pt-br](Draft_Snap_Endpoint/pt-br.md) , [Draft Snap Extension/pt-br](Draft_Snap_Extension/pt-br.md) , [Draft Snap Grid/pt-br](Draft_Snap_Grid/pt-br.md) , [Draft Snap Intersection/pt-br](Draft_Snap_Intersection/pt-br.md) , [Draft Snap Lock/pt-br](Draft_Snap_Lock/pt-br.md) , [Draft Snap Midpoint/pt-br](Draft_Snap_Midpoint/pt-br.md) , [Draft Snap Near/pt-br](Draft_Snap_Near/pt-br.md) , [Draft Snap Ortho/pt-br](Draft_Snap_Ortho/pt-br.md) , [Draft Snap Parallel/pt-br](Draft_Snap_Parallel/pt-br.md) , [Draft Snap Perpendicular/pt-br](Draft_Snap_Perpendicular/pt-br.md) , [Draft Snap Special/pt-br](Draft_Snap_Special/pt-br.md) , [Draft snap widget/pt-br](Draft_snap_widget/pt-br.md) , [Draft Snap WorkingPlane/pt-br](Draft_Snap_WorkingPlane/pt-br.md) , [Draft Snap/pt-br](Draft_Snap/pt-br.md) , [Draft Split/pt-br](Draft_Split/pt-br.md) , [Draft Stretch/pt-br](Draft_Stretch/pt-br.md) , [Draft SubelementHighlight/pt-br](Draft_SubelementHighlight/pt-br.md) , [Draft SVG/pt-br](Draft_SVG/pt-br.md) , [Draft Text/pt-br](Draft_Text/pt-br.md) , [Draft ToggleConstructionMode/pt-br](Draft_ToggleConstructionMode/pt-br.md) , [Draft ToggleContinueMode/pt-br](Draft_ToggleContinueMode/pt-br.md) , [Draft ToggleDisplayMode/pt-br](Draft_ToggleDisplayMode/pt-br.md) , [Draft ToggleGrid/pt-br](Draft_ToggleGrid/pt-br.md) , [Draft Tray/pt-br](Draft_Tray/pt-br.md) , [Draft Trimex/pt-br](Draft_Trimex/pt-br.md) , [Draft Upgrade/pt-br](Draft_Upgrade/pt-br.md) , [Draft Wire/pt-br](Draft_Wire/pt-br.md) , [Draft WireToBSpline/pt-br](Draft_WireToBSpline/pt-br.md) , [Draft Workbench/pt-br](Draft_Workbench/pt-br.md) , [Draft WorkingPlaneProxy/pt-br](Draft_WorkingPlaneProxy/pt-br.md) , [Drawing Workbench/pt-br](Drawing_Workbench/pt-br.md) , [DXF/pt-br](DXF/pt-br.md) , [Export to STL or OBJ/pt-br](Export_to_STL_or_OBJ/pt-br.md) , [External workbenches/pt-br](External_workbenches/pt-br.md) , [Extra python modules/pt-br](Extra_python_modules/pt-br.md) , [Feature editing/pt-br](Feature_editing/pt-br.md) , [Feature list/pt-br](Feature_list/pt-br.md) , [FEM Analysis/pt-br](FEM_Analysis/pt-br.md) , [FEM ConstraintElectrostaticPotential/pt-br](FEM_ConstraintElectrostaticPotential/pt-br.md) , [FEM ElementFluid1D/pt-br](FEM_ElementFluid1D/pt-br.md) , [FEM ElementGeometry1D/pt-br](FEM_ElementGeometry1D/pt-br.md) , [FEM ElementGeometry2D/pt-br](FEM_ElementGeometry2D/pt-br.md) , [FEM ElementRotation1D/pt-br](FEM_ElementRotation1D/pt-br.md) , [FEM MaterialFluid/pt-br](FEM_MaterialFluid/pt-br.md) , [FEM MaterialMechanicalNonlinear/pt-br](FEM_MaterialMechanicalNonlinear/pt-br.md) , [FEM MaterialReinforced/pt-br](FEM_MaterialReinforced/pt-br.md) , [FEM MaterialSolid/pt-br](FEM_MaterialSolid/pt-br.md) , [FEM MeshGmshFromShape/pt-br](FEM_MeshGmshFromShape/pt-br.md) , [FEM SolverCalculiX/pt-br](FEM_SolverCalculiX/pt-br.md) , [FEM SolverElmer/pt-br](FEM_SolverElmer/pt-br.md) , [FEM SolverZ88/pt-br](FEM_SolverZ88/pt-br.md) , [FEM Workbench/pt-br](FEM_Workbench/pt-br.md) , [File Format FCStd/pt-br](File_Format_FCStd/pt-br.md) , [Fine-tuning/pt-br](Fine-tuning/pt-br.md) , [FreeCAD and DWG Import/pt-br](FreeCAD_and_DWG_Import/pt-br.md) , [FreeCAD and DXF Import/pt-br](FreeCAD_and_DXF_Import/pt-br.md) , [FreeCAD Build Tool/pt-br](FreeCAD_Build_Tool/pt-br.md) , [FreeCAD used in production/pt-br](FreeCAD_used_in_production/pt-br.md) , [Frequently asked questions/pt-br](Frequently_asked_questions/pt-br.md) , [Getting started/pt-br](Getting_started/pt-br.md) , [Glossary/pt-br](Glossary/pt-br.md) , [GuiCommand model/pt-br](GuiCommand_model/pt-br.md) , [Template:GuiCommand/pt-br](Template:GuiCommand/pt-br.md) , [Help FreeCAD/pt-br](Help_FreeCAD/pt-br.md) , [How to install additional workbenches/pt-br](How_to_install_additional_workbenches/pt-br.md) , [How to install macros/pt-br](How_to_install_macros/pt-br.md) , [Image CreateImagePlane/pt-br](Image_CreateImagePlane/pt-br.md) , [Image Open/pt-br](Image_Open/pt-br.md) , [Image Scaling/pt-br](Image_Scaling/pt-br.md) , [Image Workbench/pt-br](Image_Workbench/pt-br.md) , [Import Export Preferences/pt-br](Import_Export_Preferences/pt-br.md) , [Import Export/pt-br](Import_Export/pt-br.md) , [Import from STL or OBJ/pt-br](Import_from_STL_or_OBJ/pt-br.md) , [Inspection Workbench/pt-br](Inspection_Workbench/pt-br.md) , [Installing additional components/pt-br](Installing_additional_components/pt-br.md) , [Installing Helpfile/pt-br](Installing_Helpfile/pt-br.md) , [Installing on Linux/pt-br](Installing_on_Linux/pt-br.md) , [Installing on Mac/pt-br](Installing_on_Mac/pt-br.md) , [Installing on Windows/pt-br](Installing_on_Windows/pt-br.md) , [Interface Customization/pt-br](Interface_Customization/pt-br.md) , [Interface/pt-br](Interface/pt-br.md) , [Licence/pt-br](Licence/pt-br.md) , [Localisation/pt-br](Localisation/pt-br.md) , [Macro Screen Wiki/pt-br](Macro_Screen_Wiki/pt-br.md) , [Macro Snip/pt-br](Macro_Snip/pt-br.md) , [Main Page/pt-br](Main_Page/pt-br.md) , [Main view area/pt-br](Main_view_area/pt-br.md) , [Manipulator/pt-br](Manipulator/pt-br.md) , [Material editor/pt-br](Material_editor/pt-br.md) , [Material/pt-br](Material/pt-br.md) , [Mesh FromPartShape/pt-br](Mesh_FromPartShape/pt-br.md) , [Mesh Workbench/pt-br](Mesh_Workbench/pt-br.md) , [Migrating to FreeCAD from Fusion360/pt-br](Migrating_to_FreeCAD_from_Fusion360/pt-br.md) , [Mouse navigation/pt-br](Mouse_navigation/pt-br.md) , [Navigation Cube/pt-br](Navigation_Cube/pt-br.md) , [Object name/pt-br](Object_name/pt-br.md) , [Offsite tutorials/pt-br](Offsite_tutorials/pt-br.md) , [Online Help Startpage/pt-br](Online_Help_Startpage/pt-br.md) , [Online Help Toc/pt-br](Online_Help_Toc/pt-br.md) , [OpenCamLib/pt-br](OpenCamLib/pt-br.md) , [OpenSCAD Workbench/pt-br](OpenSCAD_Workbench/pt-br.md) , [Part and PartDesign/pt-br](Part_and_PartDesign/pt-br.md) , [Part Boolean/pt-br](Part_Boolean/pt-br.md) , [Part BooleanFragments/pt-br](Part_BooleanFragments/pt-br.md) , [Part Box/pt-br](Part_Box/pt-br.md) , [Part BoxSelection/pt-br](Part_BoxSelection/pt-br.md) , [Part Builder/pt-br](Part_Builder/pt-br.md) , [Part Chamfer/pt-br](Part_Chamfer/pt-br.md) , [Part CheckGeometry/pt-br](Part_CheckGeometry/pt-br.md) , [Part Circle/pt-br](Part_Circle/pt-br.md) , [Part Common/pt-br](Part_Common/pt-br.md) , [Part CompCompoundTools/pt-br](Part_CompCompoundTools/pt-br.md) , [Part CompJoinFeatures/pt-br](Part_CompJoinFeatures/pt-br.md) , [Part CompOffsetTools/pt-br](Part_CompOffsetTools/pt-br.md) , [Part Compound/pt-br](Part_Compound/pt-br.md) , [Part CompoundFilter/pt-br](Part_CompoundFilter/pt-br.md) , [Part CompSplittingTools/pt-br](Part_CompSplittingTools/pt-br.md) , [Part Cone/pt-br](Part_Cone/pt-br.md) , [Part CrossSections/pt-br](Part_CrossSections/pt-br.md) , [Part Cut/pt-br](Part_Cut/pt-br.md) , [Part Cylinder/pt-br](Part_Cylinder/pt-br.md) , [Part Defeaturing/pt-br](Part_Defeaturing/pt-br.md) , [Part EditAttachment/pt-br](Part_EditAttachment/pt-br.md) , [Part ElementCopy/pt-br](Part_ElementCopy/pt-br.md) , [Part Ellipse/pt-br](Part_Ellipse/pt-br.md) , [Part Ellipsoid/pt-br](Part_Ellipsoid/pt-br.md) , [Part ExplodeCompound/pt-br](Part_ExplodeCompound/pt-br.md) , [Part Export/pt-br](Part_Export/pt-br.md) , [Part Extrude/pt-br](Part_Extrude/pt-br.md) , [Part FaceColors/pt-br](Part_FaceColors/pt-br.md) , [Part Feature/pt-br](Part_Feature/pt-br.md) , [Part Fillet/pt-br](Part_Fillet/pt-br.md) , [Part Fuse/pt-br](Part_Fuse/pt-br.md) , [Part Helix/pt-br](Part_Helix/pt-br.md) , [Part Import/pt-br](Part_Import/pt-br.md) , [Part JoinConnect/pt-br](Part_JoinConnect/pt-br.md) , [Part JoinCutout/pt-br](Part_JoinCutout/pt-br.md) , [Part JoinEmbed/pt-br](Part_JoinEmbed/pt-br.md) , [Part Line/pt-br](Part_Line/pt-br.md) , [Part Loft/pt-br](Part_Loft/pt-br.md) , [Part MakeFace/pt-br](Part_MakeFace/pt-br.md) , [Part MakeSolid/pt-br](Part_MakeSolid/pt-br.md) , [Part Measure Angular/pt-br](Part_Measure_Angular/pt-br.md) , [Part Measure Clear All/pt-br](Part_Measure_Clear_All/pt-br.md) , [Part Measure Linear/pt-br](Part_Measure_Linear/pt-br.md) , [Part Measure Menu/pt-br](Part_Measure_Menu/pt-br.md) , [Part Measure Refresh/pt-br](Part_Measure_Refresh/pt-br.md) , [Part Measure Toggle 3d/pt-br](Part_Measure_Toggle_3d/pt-br.md) , [Part Measure Toggle All/pt-br](Part_Measure_Toggle_All/pt-br.md) , [Part Measure Toggle Delta/pt-br](Part_Measure_Toggle_Delta/pt-br.md) , [Part Mirror/pt-br](Part_Mirror/pt-br.md) , [Part Module/pt-br](Part_Module/pt-br.md) , [Part Offset/pt-br](Part_Offset/pt-br.md) , [Part Offset2D/pt-br](Part_Offset2D/pt-br.md) , [Part Part2DObject/pt-br](Part_Part2DObject/pt-br.md) , [Part Plane/pt-br](Part_Plane/pt-br.md) , [Part Point/pt-br](Part_Point/pt-br.md) , [Part PointsFromMesh/pt-br](Part_PointsFromMesh/pt-br.md) , [Part Primitives/pt-br](Part_Primitives/pt-br.md) , [Part Prism/pt-br](Part_Prism/pt-br.md) , [Part ProjectionOnSurface/pt-br](Part_ProjectionOnSurface/pt-br.md) , [Part RefineShape/pt-br](Part_RefineShape/pt-br.md) , [Part RegularPolygon/pt-br](Part_RegularPolygon/pt-br.md) , [Part ReverseShapes/pt-br](Part_ReverseShapes/pt-br.md) , [Part Revolve/pt-br](Part_Revolve/pt-br.md) , [Part RuledSurface/pt-br](Part_RuledSurface/pt-br.md) , [Part Section/pt-br](Part_Section/pt-br.md) , [Part ShapeFromMesh/pt-br](Part_ShapeFromMesh/pt-br.md) , [Part SimpleCopy/pt-br](Part_SimpleCopy/pt-br.md) , [Part Slice/pt-br](Part_Slice/pt-br.md) , [Part SliceApart/pt-br](Part_SliceApart/pt-br.md) , [Part Sphere/pt-br](Part_Sphere/pt-br.md) , [Part Spiral/pt-br](Part_Spiral/pt-br.md) , [Part Sweep/pt-br](Part_Sweep/pt-br.md) , [Part Thickness/pt-br](Part_Thickness/pt-br.md) , [Part Torus/pt-br](Part_Torus/pt-br.md) , [Part TransformedCopy/pt-br](Part_TransformedCopy/pt-br.md) , [Part Tube/pt-br](Part_Tube/pt-br.md) , [Part Wedge/pt-br](Part_Wedge/pt-br.md) , [Part XOR/pt-br](Part_XOR/pt-br.md) , [PartDesign AdditiveBox/pt-br](PartDesign_AdditiveBox/pt-br.md) , [PartDesign AdditiveCone/pt-br](PartDesign_AdditiveCone/pt-br.md) , [PartDesign AdditiveCylinder/pt-br](PartDesign_AdditiveCylinder/pt-br.md) , [PartDesign AdditiveEllipsoid/pt-br](PartDesign_AdditiveEllipsoid/pt-br.md) , [PartDesign AdditiveHelix/pt-br](PartDesign_AdditiveHelix/pt-br.md) , [PartDesign AdditiveLoft/pt-br](PartDesign_AdditiveLoft/pt-br.md) , [PartDesign AdditivePipe/pt-br](PartDesign_AdditivePipe/pt-br.md) , [PartDesign AdditivePrism/pt-br](PartDesign_AdditivePrism/pt-br.md) , [PartDesign AdditiveSphere/pt-br](PartDesign_AdditiveSphere/pt-br.md) , [PartDesign AdditiveTorus/pt-br](PartDesign_AdditiveTorus/pt-br.md) , [PartDesign AdditiveWedge/pt-br](PartDesign_AdditiveWedge/pt-br.md) , [PartDesign Bearingholder Tutorial I/pt-br](PartDesign_Bearingholder_Tutorial_I/pt-br.md) , [PartDesign Bearingholder Tutorial II/pt-br](PartDesign_Bearingholder_Tutorial_II/pt-br.md) , [PartDesign Body/pt-br](PartDesign_Body/pt-br.md) , [PartDesign Boolean/pt-br](PartDesign_Boolean/pt-br.md) , [PartDesign Chamfer/pt-br](PartDesign_Chamfer/pt-br.md) , [PartDesign Clone/pt-br](PartDesign_Clone/pt-br.md) , [PartDesign CompPrimitiveAdditive/pt-br](PartDesign_CompPrimitiveAdditive/pt-br.md) , [PartDesign CompPrimitiveSubtractive/pt-br](PartDesign_CompPrimitiveSubtractive/pt-br.md) , [PartDesign CoordinateSystem/pt-br](PartDesign_CoordinateSystem/pt-br.md) , [PartDesign Draft/pt-br](PartDesign_Draft/pt-br.md) , [PartDesign Fillet/pt-br](PartDesign_Fillet/pt-br.md) , [PartDesign Groove/pt-br](PartDesign_Groove/pt-br.md) , [PartDesign Hole/pt-br](PartDesign_Hole/pt-br.md) , [PartDesign InvoluteGear/pt-br](PartDesign_InvoluteGear/pt-br.md) , [PartDesign Line/pt-br](PartDesign_Line/pt-br.md) , [PartDesign LinearPattern/pt-br](PartDesign_LinearPattern/pt-br.md) , [PartDesign Migrate/pt-br](PartDesign_Migrate/pt-br.md) , [PartDesign Mirrored/pt-br](PartDesign_Mirrored/pt-br.md) , [PartDesign MoveFeature/pt-br](PartDesign_MoveFeature/pt-br.md) , [PartDesign MoveFeatureInTree/pt-br](PartDesign_MoveFeatureInTree/pt-br.md) , [PartDesign MoveTip/pt-br](PartDesign_MoveTip/pt-br.md) , [PartDesign MultiTransform/pt-br](PartDesign_MultiTransform/pt-br.md) , [PartDesign NewSketch/pt-br](PartDesign_NewSketch/pt-br.md) , [PartDesign Pad/pt-br](PartDesign_Pad/pt-br.md) , [PartDesign Plane/pt-br](PartDesign_Plane/pt-br.md) , [PartDesign Pocket/pt-br](PartDesign_Pocket/pt-br.md) , [PartDesign Point/pt-br](PartDesign_Point/pt-br.md) , [PartDesign PolarPattern/pt-br](PartDesign_PolarPattern/pt-br.md) , [PartDesign Preferences/pt-br](PartDesign_Preferences/pt-br.md) , [PartDesign Revolution/pt-br](PartDesign_Revolution/pt-br.md) , [PartDesign ShapeBinder/pt-br](PartDesign_ShapeBinder/pt-br.md) , [PartDesign Sprocket/pt-br](PartDesign_Sprocket/pt-br.md) , [PartDesign SubShapeBinder/pt-br](PartDesign_SubShapeBinder/pt-br.md) , [PartDesign SubtractiveBox/pt-br](PartDesign_SubtractiveBox/pt-br.md) , [PartDesign SubtractiveCone/pt-br](PartDesign_SubtractiveCone/pt-br.md) , [PartDesign SubtractiveCylinder/pt-br](PartDesign_SubtractiveCylinder/pt-br.md) , [PartDesign SubtractiveEllipsoid/pt-br](PartDesign_SubtractiveEllipsoid/pt-br.md) , [PartDesign SubtractiveHelix/pt-br](PartDesign_SubtractiveHelix/pt-br.md) , [PartDesign SubtractiveLoft/pt-br](PartDesign_SubtractiveLoft/pt-br.md) , [PartDesign SubtractivePipe/pt-br](PartDesign_SubtractivePipe/pt-br.md) , [PartDesign SubtractivePrism/pt-br](PartDesign_SubtractivePrism/pt-br.md) , [PartDesign SubtractiveSphere/pt-br](PartDesign_SubtractiveSphere/pt-br.md) , [PartDesign SubtractiveTorus/pt-br](PartDesign_SubtractiveTorus/pt-br.md) , [PartDesign SubtractiveWedge/pt-br](PartDesign_SubtractiveWedge/pt-br.md) , [PartDesign Thickness/pt-br](PartDesign_Thickness/pt-br.md) , [PartDesign WizardShaft/pt-br](PartDesign_WizardShaft/pt-br.md) , [PartDesign Workbench/pt-br](PartDesign_Workbench/pt-br.md) , [Path Adaptive/pt-br](Path_Adaptive/pt-br.md) , [Path Area Workplane/pt-br](Path_Area_Workplane/pt-br.md) , [Path Area/pt-br](Path_Area/pt-br.md) , [Path Array/pt-br](Path_Array/pt-br.md) , [Path Comment/pt-br](Path_Comment/pt-br.md) , [Path Copy/pt-br](Path_Copy/pt-br.md) , [Path Custom/pt-br](Path_Custom/pt-br.md) , [Path Development Roadmap/pt-br](Path_Development_Roadmap/pt-br.md) , [Path DressupDogbone/pt-br](Path_DressupDogbone/pt-br.md) , [Path DressupDragKnife/pt-br](Path_DressupDragKnife/pt-br.md) , [Path DressupLeadInOut/pt-br](Path_DressupLeadInOut/pt-br.md) , [Path DressupPathBoundary/pt-br](Path_DressupPathBoundary/pt-br.md) , [Path DressupRampEntry/pt-br](Path_DressupRampEntry/pt-br.md) , [Path DressupTag/pt-br](Path_DressupTag/pt-br.md) , [Path Drilling/pt-br](Path_Drilling/pt-br.md) , [Path Engrave/pt-br](Path_Engrave/pt-br.md) , [Path experimental/pt-br](Path_experimental/pt-br.md) , [Path ExportTemplate/pt-br](Path_ExportTemplate/pt-br.md) , [Path Fixture/pt-br](Path_Fixture/pt-br.md) , [Path Helix/pt-br](Path_Helix/pt-br.md) , [Path Inspect/pt-br](Path_Inspect/pt-br.md) , [Path Job/pt-br](Path_Job/pt-br.md) , [Path MillFace/pt-br](Path_MillFace/pt-br.md) , [Path OpActiveToggle/pt-br](Path_OpActiveToggle/pt-br.md) , [Path Pocket 3D/pt-br](Path_Pocket_3D/pt-br.md) , [Path Pocket Shape/pt-br](Path_Pocket_Shape/pt-br.md) , [Path Post/pt-br](Path_Post/pt-br.md) , [Path Postprocessor Customization/pt-br](Path_Postprocessor_Customization/pt-br.md) , [Path Preferences/pt-br](Path_Preferences/pt-br.md) , [Path Profile/pt-br](Path_Profile/pt-br.md) , [Path Sanity/pt-br](Path_Sanity/pt-br.md) , [Path SelectLoop/pt-br](Path_SelectLoop/pt-br.md) , [Path Shape/pt-br](Path_Shape/pt-br.md) , [Path SimpleCopy/pt-br](Path_SimpleCopy/pt-br.md) , [Path Simulator/pt-br](Path_Simulator/pt-br.md) , [Path Slot/pt-br](Path_Slot/pt-br.md) , [Path Stop/pt-br](Path_Stop/pt-br.md) , [Path Surface/pt-br](Path_Surface/pt-br.md) , [Path ToolLibraryEdit/pt-br](Path_ToolLibraryEdit/pt-br.md) , [Path Vcarve/pt-br](Path_Vcarve/pt-br.md) , [Path Walkthrough for the Impatient/pt-br](Path_Walkthrough_for_the_Impatient/pt-br.md) , [Path Waterline/pt-br](Path_Waterline/pt-br.md) , [Path Workbench/pt-br](Path_Workbench/pt-br.md) , [Plot Module/pt-br](Plot_Module/pt-br.md) , [Points Convert/pt-br](Points_Convert/pt-br.md) , [Points Export/pt-br](Points_Export/pt-br.md) , [Points Import/pt-br](Points_Import/pt-br.md) , [Points Merge/pt-br](Points_Merge/pt-br.md) , [Points PolyCut/pt-br](Points_PolyCut/pt-br.md) , [Points Structure/pt-br](Points_Structure/pt-br.md) , [Points Workbench/pt-br](Points_Workbench/pt-br.md) , [Preferences Editor/pt-br](Preferences_Editor/pt-br.md) , [Property editor/pt-br](Property_editor/pt-br.md) , [Python console/pt-br](Python_console/pt-br.md) , [Raytracing Workbench/pt-br](Raytracing_Workbench/pt-br.md) , [Reinforcement Bar Bending Schedule/pt-br](Reinforcement_Bar_Bending_Schedule/pt-br.md) , [Reinforcement Bar Shape Cut List/pt-br](Reinforcement_Bar_Shape_Cut_List/pt-br.md) , [Reinforcement Workbench/pt-br](Reinforcement_Workbench/pt-br.md) , [Report view/pt-br](Report_view/pt-br.md) , [Reverse Engineering Workbench/pt-br](Reverse_Engineering_Workbench/pt-br.md) , [Robot 6-Axis/pt-br](Robot_6-Axis/pt-br.md) , [Robot API example/pt-br](Robot_API_example/pt-br.md) , [Robot CreateRobot/pt-br](Robot_CreateRobot/pt-br.md) , [Robot CreateTrajectory/pt-br](Robot_CreateTrajectory/pt-br.md) , [Robot Edge2Trac/pt-br](Robot_Edge2Trac/pt-br.md) , [Robot Export/pt-br](Robot_Export/pt-br.md) , [Robot InsertWaypoint/pt-br](Robot_InsertWaypoint/pt-br.md) , [Robot InsertWaypointPre/pt-br](Robot_InsertWaypointPre/pt-br.md) , [Robot RestoreHomePos/pt-br](Robot_RestoreHomePos/pt-br.md) , [Robot SetDefaultOrientation/pt-br](Robot_SetDefaultOrientation/pt-br.md) , [Robot SetDefaultValues/pt-br](Robot_SetDefaultValues/pt-br.md) , [Robot SetHomePos/pt-br](Robot_SetHomePos/pt-br.md) , [Robot Simulate/pt-br](Robot_Simulate/pt-br.md) , [Robot TrajectoryCompound/pt-br](Robot_TrajectoryCompound/pt-br.md) , [Robot TrajectoryDressUp/pt-br](Robot_TrajectoryDressUp/pt-br.md) , [Robot tutorial/pt-br](Robot_tutorial/pt-br.md) , [Robot Workbench/pt-br](Robot_Workbench/pt-br.md) , [Screenshots/pt-br](Screenshots/pt-br.md) , [Selection methods/pt-br](Selection_methods/pt-br.md) , [Selection view/pt-br](Selection_view/pt-br.md) , [Ship Workbench/pt-br](Ship_Workbench/pt-br.md) , [Sketch/pt-br](Sketch/pt-br.md) , [Sketcher BSplineApproximate/pt-br](Sketcher_BSplineApproximate/pt-br.md) , [Sketcher BSplineComb/pt-br](Sketcher_BSplineComb/pt-br.md) , [Sketcher BSplineDecreaseDegree/pt-br](Sketcher_BSplineDecreaseDegree/pt-br.md) , [Sketcher BSplineDecreaseKnotMultiplicity/pt-br](Sketcher_BSplineDecreaseKnotMultiplicity/pt-br.md) , [Sketcher BSplineDegree/pt-br](Sketcher_BSplineDegree/pt-br.md) , [Sketcher BSplineIncreaseDegree/pt-br](Sketcher_BSplineIncreaseDegree/pt-br.md) , [Sketcher BSplineIncreaseKnotMultiplicity/pt-br](Sketcher_BSplineIncreaseKnotMultiplicity/pt-br.md) , [Sketcher BSplineKnotMultiplicity/pt-br](Sketcher_BSplineKnotMultiplicity/pt-br.md) , [Sketcher BSplinePoleWeight/pt-br](Sketcher_BSplinePoleWeight/pt-br.md) , [Sketcher BSplinePolygon/pt-br](Sketcher_BSplinePolygon/pt-br.md) , [Sketcher CarbonCopy/pt-br](Sketcher_CarbonCopy/pt-br.md) , [Sketcher Clone/pt-br](Sketcher_Clone/pt-br.md) , [Sketcher CloseShape/pt-br](Sketcher_CloseShape/pt-br.md) , [Sketcher CompCreateArc/pt-br](Sketcher_CompCreateArc/pt-br.md) [Category:Documentation/pt-br](Category:Documentation/pt-br.md) + +--- +[documentation index](../README.md) > Category:User Documentation/pt-br diff --git a/wiki/translations/pt-br/Category:Workbenches.md b/wiki/translations/pt-br/Category:Workbenches.md index 4de93cdf16..789bb2dd7c 100644 --- a/wiki/translations/pt-br/Category:Workbenches.md +++ b/wiki/translations/pt-br/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/pt-br](Arch_Workbench/pt-br.md) , [Draft Workbench/pt-br](Draft_Workbench/pt-br.md) , [FEM Workbench/pt-br](FEM_Workbench/pt-br.md) , [Image Workbench/pt-br](Image_Workbench/pt-br.md) , [Inspection Workbench/pt-br](Inspection_Workbench/pt-br.md) , [Mesh Workbench/pt-br](Mesh_Workbench/pt-br.md) , [OpenSCAD Workbench/pt-br](OpenSCAD_Workbench/pt-br.md) , [Part Module/pt-br](Part_Module/pt-br.md) , [PartDesign Workbench/pt-br](PartDesign_Workbench/pt-br.md) , [Path Workbench/pt-br](Path_Workbench/pt-br.md) , [Points Workbench/pt-br](Points_Workbench/pt-br.md) , [Raytracing Workbench/pt-br](Raytracing_Workbench/pt-br.md) , [Reverse Engineering Workbench/pt-br](Reverse_Engineering_Workbench/pt-br.md) , [Robot Workbench/pt-br](Robot_Workbench/pt-br.md) , [Sketcher Workbench/pt-br](Sketcher_Workbench/pt-br.md) , [Spreadsheet Workbench/pt-br](Spreadsheet_Workbench/pt-br.md) , [Start Workbench/pt-br](Start_Workbench/pt-br.md) , [Std Base/pt-br](Std_Base/pt-br.md) , [Std Edit Menu/pt-br](Std_Edit_Menu/pt-br.md) , [Std File Menu/pt-br](Std_File_Menu/pt-br.md) , [Std Help Menu/pt-br](Std_Help_Menu/pt-br.md) , [Std Macro Menu/pt-br](Std_Macro_Menu/pt-br.md) , [Std Tools Menu/pt-br](Std_Tools_Menu/pt-br.md) , [Std View Menu/pt-br](Std_View_Menu/pt-br.md) , [Std Windows Menu/pt-br](Std_Windows_Menu/pt-br.md) , [Surface Workbench/pt-br](Surface_Workbench/pt-br.md) , [TechDraw Workbench/pt-br](TechDraw_Workbench/pt-br.md) , [Testing/pt-br](Testing/pt-br.md) , [Web Workbench/pt-br](Web_Workbench/pt-br.md) , [Workbenches/pt-br](Workbenches/pt-br.md) , , , , , , , , , , , , , , , , [Category:User Documentation/pt-br](Category:User_Documentation/pt-br.md) [Category:Draft/pt-br](Category:Draft/pt-br.md) [Category:External Workbenches/pt-br](Category:External_Workbenches/pt-br.md) [Category:FEM/pt-br](Category:FEM/pt-br.md) [Category:Image/pt-br](Category:Image/pt-br.md) [Category:Inspection/pt-br](Category:Inspection/pt-br.md) [Category:Mesh/pt-br](Category:Mesh/pt-br.md) [Category:OpenSCAD/pt-br](Category:OpenSCAD/pt-br.md) [Category:Part/pt-br](Category:Part/pt-br.md) [Category:Path/pt-br](Category:Path/pt-br.md) [Category:Plot/pt-br](Category:Plot/pt-br.md) [Category:Points/pt-br](Category:Points/pt-br.md) [Category:Raytracing/pt-br](Category:Raytracing/pt-br.md) [Category:Robot/pt-br](Category:Robot/pt-br.md) [Category:Ship/pt-br](Category:Ship/pt-br.md) [Category:Surface/pt-br](Category:Surface/pt-br.md) [Category:TechDraw/pt-br](Category:TechDraw/pt-br.md) + +--- +[documentation index](../README.md) > Category:Workbenches/pt-br diff --git a/wiki/translations/pt-br/Cfd_Workbench.md b/wiki/translations/pt-br/Cfd_Workbench.md index d0d67fce07..8c21b82977 100644 --- a/wiki/translations/pt-br/Cfd_Workbench.md +++ b/wiki/translations/pt-br/Cfd_Workbench.md @@ -1,6 +1,4 @@ # Cfd Workbench/pt-br - - ## Introdução @@ -61,3 +59,6 @@ To use CFD for FreeCAD [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Cfd Workbench/pt-br diff --git a/wiki/translations/pt-br/Combo_view.md b/wiki/translations/pt-br/Combo_view.md index af70d16e09..cd4d15e831 100644 --- a/wiki/translations/pt-br/Combo_view.md +++ b/wiki/translations/pt-br/Combo_view.md @@ -1,5 +1,5 @@ # Combo view/pt-br - {{TOCright}} +{{TOCright}} ## Introdução @@ -54,4 +54,7 @@ Then activate the view using the menu, **View → Panels → Tree view** or ** {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Combo view/pt-br diff --git a/wiki/translations/pt-br/Command.md b/wiki/translations/pt-br/Command.md index 7c4480c741..a8900a9ad5 100644 --- a/wiki/translations/pt-br/Command.md +++ b/wiki/translations/pt-br/Command.md @@ -1,6 +1,4 @@ # Command/pt-br - - ## Introdução @@ -101,3 +99,6 @@ See [Line drawing function](Line_drawing_function.md). }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Command_Reference|:Category:Command Reference]] page. Commands can be launched by a toolbar button, a menu item, or from a ](Category:Command_Reference|:Category:Command Reference]] page. Commands can be launched by a toolbar button, a menu item, or from a .md) > Command/pt-br diff --git a/wiki/translations/pt-br/CompileOnMac.md b/wiki/translations/pt-br/CompileOnMac.md index a336f11430..28ce00aa76 100644 --- a/wiki/translations/pt-br/CompileOnMac.md +++ b/wiki/translations/pt-br/CompileOnMac.md @@ -1,2 +1,5 @@ # CompileOnMac/pt-br 1. REDIRECT [Compile on MacOS/pt-br](Compile_on_MacOS/pt-br.md) + +--- +[documentation index](../README.md) > CompileOnMac/pt-br diff --git a/wiki/translations/pt-br/CompileOnUnix.md b/wiki/translations/pt-br/CompileOnUnix.md index d182a66025..f7734ab011 100644 --- a/wiki/translations/pt-br/CompileOnUnix.md +++ b/wiki/translations/pt-br/CompileOnUnix.md @@ -1,2 +1,5 @@ # CompileOnUnix/pt-br 1. REDIRECT [Compile\_on\_Linux/pt-br](Compile_on_Linux/pt-br.md) + +--- +[documentation index](../README.md) > CompileOnUnix/pt-br diff --git a/wiki/translations/pt-br/CompileOnWindows.md b/wiki/translations/pt-br/CompileOnWindows.md index 3e9ef9c463..c88f8c8da7 100644 --- a/wiki/translations/pt-br/CompileOnWindows.md +++ b/wiki/translations/pt-br/CompileOnWindows.md @@ -1,2 +1,5 @@ # CompileOnWindows/pt-br 1. REDIRECT [Compile on Windows/pt-br](Compile_on_Windows/pt-br.md) + +--- +[documentation index](../README.md) > CompileOnWindows/pt-br diff --git a/wiki/translations/pt-br/Compile_on_Docker.md b/wiki/translations/pt-br/Compile_on_Docker.md index e225f29c2c..6b0dade61d 100644 --- a/wiki/translations/pt-br/Compile_on_Docker.md +++ b/wiki/translations/pt-br/Compile_on_Docker.md @@ -1,10 +1,4 @@ # Compile on Docker/pt-br - - - - - - {{TOCright}} ## Visão geral @@ -142,3 +136,6 @@ You can find the attached directories in the `/mnt` directory. [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Compile on Docker/pt-br diff --git a/wiki/translations/pt-br/Compile_on_Linux.md b/wiki/translations/pt-br/Compile_on_Linux.md index 19b4831fbf..cc16b29038 100644 --- a/wiki/translations/pt-br/Compile_on_Linux.md +++ b/wiki/translations/pt-br/Compile_on_Linux.md @@ -1,10 +1,4 @@ # Compile on Linux/pt-br - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -1216,3 +1210,6 @@ To update FreeCAD to latest build just repeat from step 3. Update AUR repo when [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Linux/pt-br diff --git a/wiki/translations/pt-br/Compile_on_MacOS.md b/wiki/translations/pt-br/Compile_on_MacOS.md index 00b677affc..101e149f08 100644 --- a/wiki/translations/pt-br/Compile_on_MacOS.md +++ b/wiki/translations/pt-br/Compile_on_MacOS.md @@ -1,10 +1,4 @@ # Compile on MacOS/pt-br - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -194,3 +188,6 @@ FreeCAD can be built against the latest git master hosted on github, and launche [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS/pt-br diff --git a/wiki/translations/pt-br/Compile_on_Windows.md b/wiki/translations/pt-br/Compile_on_Windows.md index ca79c13fe4..7941d37c6f 100644 --- a/wiki/translations/pt-br/Compile_on_Windows.md +++ b/wiki/translations/pt-br/Compile_on_Windows.md @@ -1,10 +1,4 @@ # Compile on Windows/pt-br - - - - - - {{TOCright}} This page explains step by step **how to compile FreeCAD 0.19 or newer on Windows**. For other platforms see [Compiling](Compiling.md). @@ -465,3 +459,6 @@ See also [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows/pt-br diff --git a/wiki/translations/pt-br/Compiling.md b/wiki/translations/pt-br/Compiling.md index ce410e4bad..0b2c45f3ba 100644 --- a/wiki/translations/pt-br/Compiling.md +++ b/wiki/translations/pt-br/Compiling.md @@ -1,5 +1,5 @@ # Compiling/pt-br - Cada sistema operacional tem sua própria página para a compilação do FreeCAD na [Documentação de ajuda on-line](Online_Help_Toc/pt-br.md). +Cada sistema operacional tem sua própria página para a compilação do FreeCAD na [Documentação de ajuda on-line](Online_Help_Toc/pt-br.md). ------------------------------------------------------------ -------------------------------------------------------- -------------------------------------------------------- -------------------------------------------------------------------- [Compile on Docker container](Compile_on_Docker/pt-br.md) @@ -50,3 +50,6 @@ Para aprender a usar o sistema de controle de revisão e contribuir com o códig [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling/pt-br diff --git a/wiki/translations/pt-br/Compiling_(Speeding_up).md b/wiki/translations/pt-br/Compiling_(Speeding_up).md index 41138908d6..5792904965 100644 --- a/wiki/translations/pt-br/Compiling_(Speeding_up).md +++ b/wiki/translations/pt-br/Compiling_(Speeding_up).md @@ -1,10 +1,4 @@ # Compiling (Speeding up)/pt-br - - - - - - {{TOCright}} ## Overview @@ -64,3 +58,6 @@ The `distcc` program can be used to perform distributed compilation of C and C++ [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling (Speeding up)/pt-br diff --git a/wiki/translations/pt-br/Complete_Workbench.md b/wiki/translations/pt-br/Complete_Workbench.md index 97e806bb2b..902e719578 100644 --- a/wiki/translations/pt-br/Complete_Workbench.md +++ b/wiki/translations/pt-br/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/pt-br - - - **The [[Complete Workbench]] is deprecated.** @@ -14,3 +11,6 @@ See [Interface Customization](Interface_Customization.md) if you\'d like to adap [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/pt-br diff --git a/wiki/translations/pt-br/Constructive_solid_geometry.md b/wiki/translations/pt-br/Constructive_solid_geometry.md index 7ed4ed743a..5a6fabbece 100644 --- a/wiki/translations/pt-br/Constructive_solid_geometry.md +++ b/wiki/translations/pt-br/Constructive_solid_geometry.md @@ -1,5 +1,5 @@ # Constructive solid geometry/pt-br - {{TOCright}} +{{TOCright}} ## Introdução @@ -37,3 +37,6 @@ The [tutorials](tutorials.md) page provides some examples on creating solids wit [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Constructive solid geometry/pt-br diff --git a/wiki/translations/pt-br/Continuous_Integration.md b/wiki/translations/pt-br/Continuous_Integration.md index 744b1d88c9..e869aaf8d8 100644 --- a/wiki/translations/pt-br/Continuous_Integration.md +++ b/wiki/translations/pt-br/Continuous_Integration.md @@ -1,10 +1,4 @@ # Continuous Integration/pt-br - - - - - - {{TOCright}} ## Continuous Integration @@ -34,3 +28,6 @@ Currently the FreeCAD repository on GitHub will trigger a build on the below two [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Continuous Integration/pt-br diff --git a/wiki/translations/pt-br/Contributors.md b/wiki/translations/pt-br/Contributors.md index 1c72a1f066..fe4235709d 100644 --- a/wiki/translations/pt-br/Contributors.md +++ b/wiki/translations/pt-br/Contributors.md @@ -1,10 +1,4 @@ # Contributors/pt-br - - - - - - {{TOCright}} @@ -253,3 +247,6 @@ Developers of FreeCAD addons (retrieved from [Developer](Category:Developer.md) > Contributors/pt-br diff --git a/wiki/translations/pt-br/Creating_a_simple_part_with_PartDesign.md b/wiki/translations/pt-br/Creating_a_simple_part_with_PartDesign.md index 21bc3d427e..e0669c2324 100644 --- a/wiki/translations/pt-br/Creating_a_simple_part_with_PartDesign.md +++ b/wiki/translations/pt-br/Creating_a_simple_part_with_PartDesign.md @@ -1,7 +1,4 @@ # Creating a simple part with PartDesign/pt-br - - - {{TutorialInfo |Topic=Modeling |Level=Beginner @@ -267,4 +264,7 @@ You can also continue with this other tutorial of a slightly more complicated pa {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Creating a simple part with PartDesign/pt-br diff --git a/wiki/translations/pt-br/DXF.md b/wiki/translations/pt-br/DXF.md index ac4cdde97c..9705d81166 100644 --- a/wiki/translations/pt-br/DXF.md +++ b/wiki/translations/pt-br/DXF.md @@ -1,5 +1,5 @@ # DXF/pt-br - {{TOCright}} +{{TOCright}} ## Histórico @@ -43,3 +43,6 @@ In addition to the options under the Edit → Preferences, the [TechDraw Workben [Category:User Documentation](Category:User_Documentation.md) [Category:Draft](Category:Draft.md) [Category:TechDraw](Category:TechDraw.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > DXF/pt-br diff --git a/wiki/translations/pt-br/Debugging.md b/wiki/translations/pt-br/Debugging.md index 63003740bf..71252a7b39 100644 --- a/wiki/translations/pt-br/Debugging.md +++ b/wiki/translations/pt-br/Debugging.md @@ -1,10 +1,4 @@ # Debugging/pt-br - - - - - - {{TOCright}} ## Test First @@ -336,3 +330,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/pt-br diff --git a/wiki/translations/pt-br/Developer_hub.md b/wiki/translations/pt-br/Developer_hub.md index 6a9b7a3e90..316aa1dd0f 100644 --- a/wiki/translations/pt-br/Developer_hub.md +++ b/wiki/translations/pt-br/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/pt-br - - ![150](images/Crystal_Clear_app_tutorials.png ) Este é o lugar para vir se você quiser contribuir para o desenvolvimento do programa FreeCAD. @@ -126,3 +124,6 @@ FreeCAD, though usable in certain areas, is at the beginning of a long way into [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/pt-br diff --git a/wiki/translations/pt-br/Development_roadmap.md b/wiki/translations/pt-br/Development_roadmap.md index 24bcd4bf58..e72c832a7f 100644 --- a/wiki/translations/pt-br/Development_roadmap.md +++ b/wiki/translations/pt-br/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/pt-br - **Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** +**Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** FreeCAD - though usable in many applications - is at the beginning of a long journey into CAD mainstream. There is still a lot to do to reach a state where we can compete with commercial software. @@ -44,3 +44,6 @@ Like in the most [FLOSS](http://en.wikipedia.org/wiki/FLOSS) projects a release [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/pt-br diff --git a/wiki/translations/pt-br/Document_structure.md b/wiki/translations/pt-br/Document_structure.md index c284fa94a6..658292ad3e 100644 --- a/wiki/translations/pt-br/Document_structure.md +++ b/wiki/translations/pt-br/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/pt-br - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) Um documento FreeCAD contém todos os objetos de sua cena. Pode conter tanto grupos quanto objetos criados com qualquer oficina. Assim, você pode alternar entre as oficinas e ainda trabalhar no mesmo documento. Este documento é o que é salvo em disco quando você salva seu trabalho. Você também pode abrir vários documentos em simultâneo, no FreeCAD, e abrir várias visualizações do mesmo documento. @@ -42,8 +36,5 @@ FreeCADGui.ActiveDocument.Blob FreeCADGui.ActiveDocument.ActiveView ``` Retorna à visão atual - - - - - +--- +[documentation index](../README.md) > Document structure/pt-br diff --git a/wiki/translations/pt-br/Donate.md b/wiki/translations/pt-br/Donate.md index 0ce56c783f..740cd13da0 100644 --- a/wiki/translations/pt-br/Donate.md +++ b/wiki/translations/pt-br/Donate.md @@ -1,7 +1,4 @@ # Donate/pt-br - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddConstruction/pt-br diff --git a/wiki/translations/pt-br/Draft_AddToGroup.md b/wiki/translations/pt-br/Draft_AddToGroup.md index 0605b6d9be..11387f2c44 100644 --- a/wiki/translations/pt-br/Draft_AddToGroup.md +++ b/wiki/translations/pt-br/Draft_AddToGroup.md @@ -6,6 +6,8 @@ SeeAlso:[Std Group](Std_Group.md), [Draft AddConstruction](Draft_AddConstruction.md), [Draft AutoGroup](Draft_AutoGroup.md), [Draft SelectGroup](Draft_SelectGroup.md) --- +# Draft AddToGroup/pt-br + ## Description The **Draft AddToGroup** command moves objects to a [Std Group](Std_Group.md). It can also ungroup objects. @@ -39,5 +41,5 @@ In FreeCAD version 0.20 the command can also handle group-like [Arch](Arch_Workb
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddToGroup/pt-br diff --git a/wiki/translations/pt-br/Draft_AnnotationStyleEditor.md b/wiki/translations/pt-br/Draft_AnnotationStyleEditor.md index c94a55dfef..f76ca0649e 100644 --- a/wiki/translations/pt-br/Draft_AnnotationStyleEditor.md +++ b/wiki/translations/pt-br/Draft_AnnotationStyleEditor.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Draft AnnotationStyleEditor/pt-br + ## Descrição The **Draft AnnotationStyleEditor** command allows you to define styles that affect the visual properties of annotation-like objects, such as those create by the [Draft Text](Draft_Text.md), [Draft Dimension](Draft_Dimension.md) and [Draft Label](Draft_Label.md) commands. @@ -101,5 +103,5 @@ props = { - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AnnotationStyleEditor/pt-br diff --git a/wiki/translations/pt-br/Draft_ApplyStyle.md b/wiki/translations/pt-br/Draft_ApplyStyle.md index 4620e3c358..e8b12d7344 100644 --- a/wiki/translations/pt-br/Draft_ApplyStyle.md +++ b/wiki/translations/pt-br/Draft_ApplyStyle.md @@ -6,6 +6,8 @@ SeeAlso:[Draft SetStyle](Draft_SetStyle.md) --- +# Draft ApplyStyle/pt-br + ## Descrição The **Draft ApplyStyle** command applies the current style settings to selected objects. @@ -46,5 +48,5 @@ This command currently handles only five of the settings the [Draft SetStyle](Dr - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ApplyStyle/pt-br diff --git a/wiki/translations/pt-br/Draft_Arc.md b/wiki/translations/pt-br/Draft_Arc.md index 6049494261..6651ace75e 100644 --- a/wiki/translations/pt-br/Draft_Arc.md +++ b/wiki/translations/pt-br/Draft_Arc.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Arc 3Points](Draft_Arc_3Points.md), [Draft Circle](Draft_Circle.md) --- +# Draft Arc/pt-br + ## Descrição The **Draft Arc** command creates a circular arc in the current [working plane](Draft_SelectPlane.md) from a center, a radius, a start angle and an aperture angle. The radius and the angles can be defined by picking points. @@ -86,5 +88,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc/pt-br diff --git a/wiki/translations/pt-br/Draft_Arc_3Points.md b/wiki/translations/pt-br/Draft_Arc_3Points.md index 0c86eb78b0..568c29580e 100644 --- a/wiki/translations/pt-br/Draft_Arc_3Points.md +++ b/wiki/translations/pt-br/Draft_Arc_3Points.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Arc](Draft_Arc.md), [Draft Circle](Draft_Circle.md) --- +# Draft Arc 3Points/pt-br + ## Descrição The **Draft Arc 3Points** command creates a circular arc in the current [working plane](Draft_SelectPlane.md) from three points that define its circumference. The center and radius are calculated from these points. @@ -101,5 +103,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc 3Points/pt-br diff --git a/wiki/translations/pt-br/Draft_Array.md b/wiki/translations/pt-br/Draft_Array.md index c4dae92b5e..7d216e8ecf 100644 --- a/wiki/translations/pt-br/Draft_Array.md +++ b/wiki/translations/pt-br/Draft_Array.md @@ -5,6 +5,8 @@ SeeAlso:[Draft OrthoArray](Draft_OrthoArray.md), [Draft PolarArray](Draft_PolarArray.md), [Draft CircularArray](Draft_CircularArray.md) --- +# Draft Array/pt-br + ## Descrição The **Draft Array** command creates an orthogonal (3-axes) array from a selected object. The created array can be turned into a [polar array](Draft_PolarArray.md) or a [circular array](Draft_CircularArray.md) by changing its **Array Type** property. @@ -39,5 +41,5 @@ See [Draft OrthoArray](Draft_OrthoArray#Scripting.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Array/pt-br diff --git a/wiki/translations/pt-br/Draft_AutoGroup.md b/wiki/translations/pt-br/Draft_AutoGroup.md index 46238cf559..9156c84b3c 100644 --- a/wiki/translations/pt-br/Draft_AutoGroup.md +++ b/wiki/translations/pt-br/Draft_AutoGroup.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Layer](Draft_Layer.md), [Std Group](Std_Group.md) --- +# Draft AutoGroup/pt-br + ## Descrição The **Draft AutoGroup** command changes the active [Draft Layer](Draft_Layer.md) or, [optionally](#Preferences.md), the active [Std Group](Std_Group.md) or group-like [Arch](Arch_Workbench.md) object. New [Draft](Draft_Workbench.md) and [Arch](Arch_Workbench.md) objects are automatically placed in this active layer or group. @@ -78,5 +80,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AutoGroup/pt-br diff --git a/wiki/translations/pt-br/Draft_BSpline.md b/wiki/translations/pt-br/Draft_BSpline.md index 6794723717..bbf59b26c1 100644 --- a/wiki/translations/pt-br/Draft_BSpline.md +++ b/wiki/translations/pt-br/Draft_BSpline.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Wire](Draft_Wire.md), [Draft CubicBezCurve](Draft_CubicBezCurve.md), [Draft BezCurve](Draft_BezCurve.md) --- +# Draft BSpline/pt-br + ## Descrição The **Draft BSpline** command creates a [B-spline curve](http://en.wikipedia.org/wiki/B-spline) from several points. @@ -143,5 +145,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BSpline/pt-br diff --git a/wiki/translations/pt-br/Draft_BezCurve.md b/wiki/translations/pt-br/Draft_BezCurve.md index be92bff361..6194bf0a64 100644 --- a/wiki/translations/pt-br/Draft_BezCurve.md +++ b/wiki/translations/pt-br/Draft_BezCurve.md @@ -7,6 +7,8 @@ SeeAlso:[Draft CubicBezCurve](Draft_CubicBezCurve.md), [Draft BSpline](Draft_BSpline.md) --- +# Draft BezCurve/pt-br + ## Descrição The **Draft BezCurve** command creates a [Bézier curve](http://en.wikipedia.org/wiki/Bezier_curve) from several points. @@ -148,5 +150,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BezCurve/pt-br diff --git a/wiki/translations/pt-br/Draft_Circle.md b/wiki/translations/pt-br/Draft_Circle.md index 15cc04a483..30919d4c11 100644 --- a/wiki/translations/pt-br/Draft_Circle.md +++ b/wiki/translations/pt-br/Draft_Circle.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Arc](Draft_Arc.md), [Draft Arc 3Points](Draft_Arc_3Points.md) --- +# Draft Circle/pt-br + ## Descrição The **Draft Circle** command creates a circle in the current [working plane](Draft_SelectPlane.md) from a center and a radius. The radius can be defined by picking a point. @@ -134,5 +136,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Circle/pt-br diff --git a/wiki/translations/pt-br/Draft_CircularArray.md b/wiki/translations/pt-br/Draft_CircularArray.md index 1a0447eb90..438d02b433 100644 --- a/wiki/translations/pt-br/Draft_CircularArray.md +++ b/wiki/translations/pt-br/Draft_CircularArray.md @@ -7,6 +7,8 @@ SeeAlso:[Draft OrthoArray](Draft_OrthoArray.md), [Draft PolarArray](Draft_PolarArray.md), [Draft PathArray](Draft_PathArray.md), [Draft PathLinkArray](Draft_PathLinkArray.md), [Draft PointArray](Draft_PointArray.md), [Draft PointLinkArray](Draft_PointLinkArray.md) --- +# Draft CircularArray/pt-br + ## Descrição The **Draft CircularArray** command creates an array from a selected object by placing copies along concentric circumferences. The command can optionally create a [Link](App_Link.md) array, which is more efficient than a regular array. @@ -122,5 +124,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CircularArray/pt-br diff --git a/wiki/translations/pt-br/Draft_Clone.md b/wiki/translations/pt-br/Draft_Clone.md index 17e1f5b605..9f4dfc025f 100644 --- a/wiki/translations/pt-br/Draft_Clone.md +++ b/wiki/translations/pt-br/Draft_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Scale](Draft_Scale/pt-br.md) --- +# Draft Clone/pt-br + @@ -95,5 +97,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Clone/pt-br diff --git a/wiki/translations/pt-br/Draft_CloseLine.md b/wiki/translations/pt-br/Draft_CloseLine.md index acd2d3d001..41cf123722 100644 --- a/wiki/translations/pt-br/Draft_CloseLine.md +++ b/wiki/translations/pt-br/Draft_CloseLine.md @@ -1,2 +1,5 @@ # Draft CloseLine/pt-br 1. REDIRECT [Draft\_Wire/pt-br](Draft_Wire/pt-br.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CloseLine/pt-br diff --git a/wiki/translations/pt-br/Draft_Constrain.md b/wiki/translations/pt-br/Draft_Constrain.md index c1065df979..711b8d04fe 100644 --- a/wiki/translations/pt-br/Draft_Constrain.md +++ b/wiki/translations/pt-br/Draft_Constrain.md @@ -1,7 +1,4 @@ # Draft Constrain/pt-br - - -
@@ -67,5 +64,5 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Constrain/pt-br diff --git a/wiki/translations/pt-br/Draft_CubicBezCurve.md b/wiki/translations/pt-br/Draft_CubicBezCurve.md index f49dcdf072..ace7a0ca31 100644 --- a/wiki/translations/pt-br/Draft_CubicBezCurve.md +++ b/wiki/translations/pt-br/Draft_CubicBezCurve.md @@ -7,6 +7,8 @@ SeeAlso:[Draft BezCurve](Draft_BezCurve.md), [Draft BSpline](Draft_BSpline.md) --- +# Draft CubicBezCurve/pt-br + ## Descrição The **Draft CubicBezCurve** command creates a [Bézier curve](http://en.wikipedia.org/wiki/Bezier_curve) of the third degree (four points required). @@ -155,5 +157,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CubicBezCurve/pt-br diff --git a/wiki/translations/pt-br/Draft_DAT.md b/wiki/translations/pt-br/Draft_DAT.md index 916dd5fefb..1cb5bad846 100644 --- a/wiki/translations/pt-br/Draft_DAT.md +++ b/wiki/translations/pt-br/Draft_DAT.md @@ -1,7 +1,4 @@ # Draft DAT/pt-br - - -
@@ -37,3 +34,6 @@ There are many different dialects of this format so this import module tries to [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DAT/pt-br diff --git a/wiki/translations/pt-br/Draft_DXF.md b/wiki/translations/pt-br/Draft_DXF.md index 1a091e9371..8e31929db7 100644 --- a/wiki/translations/pt-br/Draft_DXF.md +++ b/wiki/translations/pt-br/Draft_DXF.md @@ -1,10 +1,4 @@ # Draft DXF/pt-br - - - - - - {{TOCright}} ## Description @@ -127,3 +121,6 @@ importDXF.export(objects, "/home/user/Pictures/myfile.dxf") [Category:User Documentation/pt-br](Category:User_Documentation/pt-br.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DXF/pt-br diff --git a/wiki/translations/pt-br/Draft_Dimension.md b/wiki/translations/pt-br/Draft_Dimension.md index b966eabb1a..577f834716 100644 --- a/wiki/translations/pt-br/Draft_Dimension.md +++ b/wiki/translations/pt-br/Draft_Dimension.md @@ -8,6 +8,8 @@ SeeAlso:[Draft FlipDimension](Draft_FlipDimension.md) --- +# Draft Dimension/pt-br + ## Descrição The **Draft Dimension** command [creates](#Create.md) a [linear dimension](#Usage_linear_dimension.md), a [radial dimension](#Usage_radial_dimension.md) or an [angular dimension](#Usage_angular_dimension.md). The command can also be used to [convert](#Convert.md) [Std MeasureDistance](Std_MeasureDistance.md) objects. @@ -306,5 +308,5 @@ doc.recompute()
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Dimension/pt-br diff --git a/wiki/translations/pt-br/Draft_Downgrade.md b/wiki/translations/pt-br/Draft_Downgrade.md index 88e52bc0b1..ae6086b07b 100644 --- a/wiki/translations/pt-br/Draft_Downgrade.md +++ b/wiki/translations/pt-br/Draft_Downgrade.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Upgrade](Draft_Upgrade.md), [Part Cut](Part_Cut.md) --- +# Draft Downgrade/pt-br + ## Descrição The **Draft Downgrade** command downgrades selected objects. The result depends on the number of selected objects and their type. The command can for example deconstruct a 3D solid into separate faces and a wire into separate edges. If two face are selected a [Part Cut](Part_Cut.md) object is created from them. Note that not all objects can be downgraded. This command is the counterpart of the [Draft Upgrade](Draft_Upgrade.md) command. @@ -81,5 +83,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Downgrade/pt-br diff --git a/wiki/translations/pt-br/Draft_Draft2Sketch.md b/wiki/translations/pt-br/Draft_Draft2Sketch.md index 6f13dea109..5af5735ad2 100644 --- a/wiki/translations/pt-br/Draft_Draft2Sketch.md +++ b/wiki/translations/pt-br/Draft_Draft2Sketch.md @@ -5,6 +5,8 @@ Workbenches:[Draft](Draft_Workbench.md), [Arch](Arch_Workbench.md) --- +# Draft Draft2Sketch/pt-br + ## Descrição The **Draft Draft2Sketch** command converts [Draft](Draft_Workbench.md) objects to [Sketcher Sketches](Sketcher_NewSketch.md) and vice versa. @@ -101,5 +103,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Draft2Sketch/pt-br diff --git a/wiki/translations/pt-br/Draft_Drawing.md b/wiki/translations/pt-br/Draft_Drawing.md index c781e32078..83162024eb 100644 --- a/wiki/translations/pt-br/Draft_Drawing.md +++ b/wiki/translations/pt-br/Draft_Drawing.md @@ -5,6 +5,8 @@ SeeAlso:[TechDraw DraftView](TechDraw_DraftView.md) --- +# Draft Drawing/pt-br + ## Descrição The **Draft Drawing** command inserts views of selected objects into a [drawing](Drawing_Workbench.md) page. @@ -33,5 +35,5 @@ This command is now obsolete. Use the [TechDraw Workbench](TechDraw_Workbench.md - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Drawing/pt-br diff --git a/wiki/translations/pt-br/Draft_Edit.md b/wiki/translations/pt-br/Draft_Edit.md index 36bdff2565..aa567a989e 100644 --- a/wiki/translations/pt-br/Draft_Edit.md +++ b/wiki/translations/pt-br/Draft_Edit.md @@ -7,6 +7,8 @@ SeeAlso:[Std Edit](Std_Edit.md) --- +# Draft Edit/pt-br + ## Descrição The **Draft Edit** command puts selected objects in Draft Edit mode. In this mode the properties of objects can be edited graphically. Typically nodes can be moved and in some cases context menu options can be selected. The command can handle most Draft objects, but also some other objects. See [Supported objects](#Supported_objects.md). Supported Draft objects can also be put in Draft Edit mode with the [Std Edit](Std_Edit.md) command. @@ -183,5 +185,5 @@ There is no Python method to Draft Edit objects. To emulate the results of the c - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Edit/pt-br diff --git a/wiki/translations/pt-br/Draft_Ellipse.md b/wiki/translations/pt-br/Draft_Ellipse.md index 2e6949c318..939bd093c9 100644 --- a/wiki/translations/pt-br/Draft_Ellipse.md +++ b/wiki/translations/pt-br/Draft_Ellipse.md @@ -7,6 +7,8 @@ Version:0.7 --- +# Draft Ellipse/pt-br + ## Descrição The **Draft Ellipse** command creates an ellipse in the current [working plane](Draft_SelectPlane.md) from two points defining a rectangle in which the ellipse will fit. @@ -130,5 +132,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Ellipse/pt-br diff --git a/wiki/translations/pt-br/Draft_Facebinder.md b/wiki/translations/pt-br/Draft_Facebinder.md index 9bbfc0fa5a..53d92b8aaf 100644 --- a/wiki/translations/pt-br/Draft_Facebinder.md +++ b/wiki/translations/pt-br/Draft_Facebinder.md @@ -7,6 +7,8 @@ Version:0.14 --- +# Draft Facebinder/pt-br + ## Descrição The **Draft Facebinder** command creates a surface object from selected faces. A Draft Facebinder is parametric, it will update if you modify its source object(s). @@ -125,5 +127,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Facebinder/pt-br diff --git a/wiki/translations/pt-br/Draft_Fillet.md b/wiki/translations/pt-br/Draft_Fillet.md index 59ad1ad2d9..2cf30dc818 100644 --- a/wiki/translations/pt-br/Draft_Fillet.md +++ b/wiki/translations/pt-br/Draft_Fillet.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Line](Draft_Line.md), [Draft Wire](Draft_Wire.md) --- +# Draft Fillet/pt-br + ## Descrição The **Draft Fillet** command creates a fillet, a rounded corner, or a chamfer, a straight edge, between two [Draft Lines](Draft_Line.md). @@ -119,5 +121,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Fillet/pt-br diff --git a/wiki/translations/pt-br/Draft_FinishLine.md b/wiki/translations/pt-br/Draft_FinishLine.md index 7d3292cbb7..9269c03767 100644 --- a/wiki/translations/pt-br/Draft_FinishLine.md +++ b/wiki/translations/pt-br/Draft_FinishLine.md @@ -1,2 +1,5 @@ # Draft FinishLine/pt-br 1. REDIRECT [Draft\_Wire/pt-br](Draft_Wire/pt-br.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FinishLine/pt-br diff --git a/wiki/translations/pt-br/Draft_FlipDimension.md b/wiki/translations/pt-br/Draft_FlipDimension.md index 737b720226..4a88d46528 100644 --- a/wiki/translations/pt-br/Draft_FlipDimension.md +++ b/wiki/translations/pt-br/Draft_FlipDimension.md @@ -5,6 +5,8 @@ Workbenches:[Draft](Draft_Workbench.md), [Arch](Arch_Workbench.md) --- +# Draft FlipDimension/pt-br + ## Descrição The **Draft FlipDimension** command rotates the dimension text of selected [Draft Dimensions](Draft_Dimension.md) 180° around the dimension line. It can be used to correct dimensions whose text appears mirrored. The command does not work properly for angular dimensions. @@ -54,5 +56,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FlipDimension/pt-br diff --git a/wiki/translations/pt-br/Draft_Heal.md b/wiki/translations/pt-br/Draft_Heal.md index 360eea4169..d47b3063f8 100644 --- a/wiki/translations/pt-br/Draft_Heal.md +++ b/wiki/translations/pt-br/Draft_Heal.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Upgrade](Draft_Upgrade.md), [Draft Downgrade](Draft_Downgrade.md) --- +# Draft Heal/pt-br + ## Descrição The **Draft Heal** command heals problematic [Draft](Draft_Workbench.md) objects found in very old files. It tries to recreate the old objects from scratch and transfer their properties to the new objects. @@ -25,5 +27,5 @@ The **Draft Heal** c - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Heal/pt-br diff --git a/wiki/translations/pt-br/Draft_Join.md b/wiki/translations/pt-br/Draft_Join.md index 4fa40a4507..cbfcde4a81 100644 --- a/wiki/translations/pt-br/Draft_Join.md +++ b/wiki/translations/pt-br/Draft_Join.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Split](Draft_Split.md) --- +# Draft Join/pt-br + ## Descrição The **Draft Join** command joins [Draft Lines](Draft_Line.md) and [Draft Wires](Draft_Wire.md) into a single wire. This command is the counterpart of the [Draft Split](Draft_Split.md) command. @@ -71,5 +73,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Join/pt-br diff --git a/wiki/translations/pt-br/Draft_Label.md b/wiki/translations/pt-br/Draft_Label.md index 5f1a4e0be9..39dc9cbfb5 100644 --- a/wiki/translations/pt-br/Draft_Label.md +++ b/wiki/translations/pt-br/Draft_Label.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Text](Draft_Text.md), [Draft ShapeString](Draft_ShapeString.md) --- +# Draft Label/pt-br + ## Descrição The **Draft Label** command creates a multi-line text with a 2-segment leader line and an arrow. @@ -223,5 +225,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Label/pt-br diff --git a/wiki/translations/pt-br/Draft_Layer.md b/wiki/translations/pt-br/Draft_Layer.md index de18c12770..f204afae20 100644 --- a/wiki/translations/pt-br/Draft_Layer.md +++ b/wiki/translations/pt-br/Draft_Layer.md @@ -7,6 +7,8 @@ SeeAlso:[Draft AutoGroup](Draft_AutoGroup.md) --- +# Draft Layer/pt-br + ## Descrição The **Draft Layer** command creates a Draft Layer. A layer is a special kind of group with a number of [visual properties](#View.md). These properties, and any changes to them, are propagated to the objects placed inside the layer. The layers themselves are put in another special group: the Draft LayerContainer. @@ -122,5 +124,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Layer/pt-br diff --git a/wiki/translations/pt-br/Draft_Line.md b/wiki/translations/pt-br/Draft_Line.md index 782acc0e82..15f5fad29a 100644 --- a/wiki/translations/pt-br/Draft_Line.md +++ b/wiki/translations/pt-br/Draft_Line.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Wire](Draft_Wire.md) --- +# Draft Line/pt-br + ## Descrição The **Draft Line** command creates a straight line. @@ -107,5 +109,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Line/pt-br diff --git a/wiki/translations/pt-br/Draft_Mirror.md b/wiki/translations/pt-br/Draft_Mirror.md index 87b243b6c2..2c9b74462d 100644 --- a/wiki/translations/pt-br/Draft_Mirror.md +++ b/wiki/translations/pt-br/Draft_Mirror.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Clone](Draft_Clone.md) --- +# Draft Mirror/pt-br + ## Descrição The **Draft Mirror** command creates mirrored copies, [Part Mirror](Part_Mirror.md) objects, from selected objects. A [Part Mirror](Part_Mirror.md) object is parametric, it will update if its source object changes. @@ -129,5 +131,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Mirror/pt-br diff --git a/wiki/translations/pt-br/Draft_Module.md b/wiki/translations/pt-br/Draft_Module.md index 57a534ac64..7e25aa66d6 100644 --- a/wiki/translations/pt-br/Draft_Module.md +++ b/wiki/translations/pt-br/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/pt-br 1. REDIRECT [Draft\_Workbench/pt-br](Draft_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/pt-br diff --git a/wiki/translations/pt-br/Draft_Move.md b/wiki/translations/pt-br/Draft_Move.md index 24a79b015c..3ea4d50a61 100644 --- a/wiki/translations/pt-br/Draft_Move.md +++ b/wiki/translations/pt-br/Draft_Move.md @@ -8,6 +8,8 @@ SeeAlso:[Draft SubelementHighlight](Draft_SubelementHighlight.md) --- +# Draft Move/pt-br + ## Descrição The **Draft Move** command moves or copies selected objects from one point to another. In subelement mode the command moves selected points and edges, or copies selected edges, of [Draft Lines](Draft_Line.md) and [Draft Wires](Draft_Wire.md). @@ -118,5 +120,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Move/pt-br diff --git a/wiki/translations/pt-br/Draft_OCA.md b/wiki/translations/pt-br/Draft_OCA.md index fb0ae2dd36..0f7da65f65 100644 --- a/wiki/translations/pt-br/Draft_OCA.md +++ b/wiki/translations/pt-br/Draft_OCA.md @@ -1,7 +1,4 @@ # Draft OCA/pt-br - - -
@@ -84,3 +81,6 @@ importOCA.export(objects, "/home/user/Pictures/myfile.oca") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft OCA/pt-br diff --git a/wiki/translations/pt-br/Draft_Offset.md b/wiki/translations/pt-br/Draft_Offset.md index 9c7977ad8b..2f79ebb153 100644 --- a/wiki/translations/pt-br/Draft_Offset.md +++ b/wiki/translations/pt-br/Draft_Offset.md @@ -7,6 +7,8 @@ SeeAlso:[Part Offset2D](Part_Offset2D.md) --- +# Draft Offset/pt-br + ## Descrição The **Draft Offset** command offsets each segment of a selected object over a given distance, or creates an offset copy of the selected object. @@ -115,5 +117,5 @@ doc.recompute()
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Offset/pt-br diff --git a/wiki/translations/pt-br/Draft_OrthoArray.md b/wiki/translations/pt-br/Draft_OrthoArray.md index eb4bac330f..7950dd3277 100644 --- a/wiki/translations/pt-br/Draft_OrthoArray.md +++ b/wiki/translations/pt-br/Draft_OrthoArray.md @@ -7,6 +7,8 @@ SeeAlso:[Draft PolarArray](Draft_PolarArray.md), [Draft CircularArray](Draft_CircularArray.md), [Draft PathArray](Draft_PathArray.md), [Draft PathLinkArray](Draft_PathLinkArray.md), [Draft PointArray](Draft_PointArray.md), [Draft PointLinkArray](Draft_PointLinkArray.md) --- +# Draft OrthoArray/pt-br + ## Descrição The **Draft OrthoArray** command creates an orthogonal (3-axes) array from a selected object. The command can optionally create a [Link](App_Link.md) array, which is more efficient than a regular array. @@ -346,5 +348,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft OrthoArray/pt-br diff --git a/wiki/translations/pt-br/Draft_PathArray.md b/wiki/translations/pt-br/Draft_PathArray.md index 01e551c6dc..fecf2dab3c 100644 --- a/wiki/translations/pt-br/Draft_PathArray.md +++ b/wiki/translations/pt-br/Draft_PathArray.md @@ -7,6 +7,8 @@ SeeAlso:[Draft OrthoArray](Draft_OrthoArray.md), [Draft PolarArray](Draft_PolarArray.md), [Draft CircularArray](Draft_CircularArray.md), [Draft PathLinkArray](Draft_PathLinkArray.md), [Draft PointArray](Draft_PointArray.md), [Draft PointLinkArray](Draft_PointLinkArray.md) --- +# Draft PathArray/pt-br + ## Descrição The **Draft PathArray** command creates a regular array from a selected object by placing copies along a path. Use the [Draft PathLinkArray](Draft_PathLinkArray.md) command to create a more efficient [Link](App_Link.md) array instead. Except for the type of array that is created, Link array or regular array, the [Draft PathLinkArray](Draft_PathLinkArray.md) command is identical to this command. @@ -263,5 +265,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathArray/pt-br diff --git a/wiki/translations/pt-br/Draft_PathLinkArray.md b/wiki/translations/pt-br/Draft_PathLinkArray.md index d703427581..1f995c74ff 100644 --- a/wiki/translations/pt-br/Draft_PathLinkArray.md +++ b/wiki/translations/pt-br/Draft_PathLinkArray.md @@ -7,6 +7,8 @@ SeeAlso:[Draft OrthoArray](Draft_OrthoArray.md), [Draft PolarArray](Draft_PolarArray.md), [Draft CircularArray](Draft_CircularArray.md), [Draft PathArray](Draft_PathArray.md), [Draft PointArray](Draft_PointArray.md), [Draft PointLinkArray](Draft_PointLinkArray.md) --- +# Draft PathLinkArray/pt-br + ## Descrição The **Draft PathLinkArray** command creates a [Link](App_Link.md) array from a selected object by placing copies along a path. Use the [Draft PathArray](Draft_PathArray.md) command to create a less efficient regular array instead. Except for the type of array that is created, [Link](App_Link.md) array or regular array, this command is identical to the [Draft PathArray](Draft_PathArray.md) command. See there for more information. @@ -20,5 +22,5 @@ The **Draft - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathLinkArray/pt-br diff --git a/wiki/translations/pt-br/Draft_Point.md b/wiki/translations/pt-br/Draft_Point.md index cdf96dcfbd..ab2c78d6d5 100644 --- a/wiki/translations/pt-br/Draft_Point.md +++ b/wiki/translations/pt-br/Draft_Point.md @@ -6,6 +6,8 @@ Version:0.7 --- +# Draft Point/pt-br + ## Descrição The **Draft Point** command creates a simple point. Draft points can be useful as a reference for placing lines, wires or other objects. @@ -146,5 +148,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Point/pt-br diff --git a/wiki/translations/pt-br/Draft_PointArray.md b/wiki/translations/pt-br/Draft_PointArray.md index 5ec215fbb4..d7c3578071 100644 --- a/wiki/translations/pt-br/Draft_PointArray.md +++ b/wiki/translations/pt-br/Draft_PointArray.md @@ -7,6 +7,8 @@ SeeAlso:[Draft OrthoArray](Draft_OrthoArray.md), [Draft PolarArray](Draft_PolarArray.md), [Draft CircularArray](Draft_CircularArray.md), [Draft PathArray](Draft_PathArray.md), [Draft PathLinkArray](Draft_PathLinkArray.md), [Draft PointLinkArray](Draft_PointLinkArray.md) --- +# Draft PointArray/pt-br + ## Descrição The **Draft PointArray** command creates a regular array from a selected object by placing copies at the points from a [point compound](#Point_compound.md). Use the [Draft PointLinkArray](Draft_PointLinkArray.md) command to create a more efficient [Link](App_Link.md) array instead. Except for the type of array that is created, Link array or regular array, the [Draft PointLinkArray](Draft_PointLinkArray.md) command is identical to this command. @@ -210,5 +212,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PointArray/pt-br diff --git a/wiki/translations/pt-br/Draft_PointLinkArray.md b/wiki/translations/pt-br/Draft_PointLinkArray.md index 9e5cb5cc8e..77d811bfbc 100644 --- a/wiki/translations/pt-br/Draft_PointLinkArray.md +++ b/wiki/translations/pt-br/Draft_PointLinkArray.md @@ -7,6 +7,8 @@ SeeAlso:[Draft OrthoArray](Draft_OrthoArray.md), [Draft PolarArray](Draft_PolarArray.md), [Draft CircularArray](Draft_CircularArray.md), [Draft PathArray](Draft_PathArray.md), [Draft PathLinkArray](Draft_PathLinkArray.md), [Draft PointArray](Draft_PointArray.md) --- +# Draft PointLinkArray/pt-br + ## Descrição The **Draft PointLinkArray** command creates a [Link](App_Link.md) array from a selected object by placing copies at the points from a [point compound](Draft_PointArray#Point_compound.md). Use the [Draft PointArray](Draft_PointArray.md) command to create a less efficient regular array instead. Except for the type of array that is created, [Link](App_Link.md) array or regular array, this command is identical to the [Draft PointArray](Draft_PointArray.md) command. See there for more information. @@ -20,5 +22,5 @@ The **Draf - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PointLinkArray/pt-br diff --git a/wiki/translations/pt-br/Draft_PolarArray.md b/wiki/translations/pt-br/Draft_PolarArray.md index 7ed08eea13..e6416dd6b2 100644 --- a/wiki/translations/pt-br/Draft_PolarArray.md +++ b/wiki/translations/pt-br/Draft_PolarArray.md @@ -7,6 +7,8 @@ SeeAlso:[Draft OrthoArray](Draft_OrthoArray.md), [Draft CircularArray](Draft_CircularArray.md), [Draft PathArray](Draft_PathArray.md), [Draft PathLinkArray](Draft_PathLinkArray.md), [Draft PointArray](Draft_PointArray.md), [Draft PointLinkArray](Draft_PointLinkArray.md) --- +# Draft PolarArray/pt-br + ## Descrição The **Draft PolarArray** command creates an array from a selected object by placing copies along a circumference. The command can optionally create a [Link](App_Link.md) array, which is more efficient than a regular array. @@ -144,5 +146,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PolarArray/pt-br diff --git a/wiki/translations/pt-br/Draft_Polygon.md b/wiki/translations/pt-br/Draft_Polygon.md index 7a13c4c9d5..52151ff22f 100644 --- a/wiki/translations/pt-br/Draft_Polygon.md +++ b/wiki/translations/pt-br/Draft_Polygon.md @@ -7,6 +7,8 @@ Version:0.7 --- +# Draft Polygon/pt-br + ## Descrição The **Draft Polygon** command creates a regular polygon in the current [working plane](Draft_SelectPlane.md) from a center and a radius. The radius can be defined by picking a point. @@ -131,5 +133,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Polygon/pt-br diff --git a/wiki/translations/pt-br/Draft_Preferences.md b/wiki/translations/pt-br/Draft_Preferences.md index 6fbcb2a050..cf64aac7c0 100644 --- a/wiki/translations/pt-br/Draft_Preferences.md +++ b/wiki/translations/pt-br/Draft_Preferences.md @@ -1,10 +1,4 @@ # Draft Preferences/pt-br - - - - - - {{TOCright}} The preferences for the [Draft Workbench](Draft_Workbench.md) can be found in the [Preferences Editor](Preferences_Editor.md). In the menu select **Edit → Preferences...** and then **Draft**. @@ -490,3 +484,6 @@ On the *Texts and dimensions* tab you can specify the following: [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Preferences/pt-br diff --git a/wiki/translations/pt-br/Draft_Rectangle.md b/wiki/translations/pt-br/Draft_Rectangle.md index d5726132aa..78c1982495 100644 --- a/wiki/translations/pt-br/Draft_Rectangle.md +++ b/wiki/translations/pt-br/Draft_Rectangle.md @@ -7,6 +7,8 @@ Version:0.7 --- +# Draft Rectangle/pt-br + ## Descrição The **Draft Rectangle** command creates a rectangle in the current [working plane](Draft_SelectPlane.md) from two points. @@ -133,5 +135,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rectangle/pt-br diff --git a/wiki/translations/pt-br/Draft_Rotate.md b/wiki/translations/pt-br/Draft_Rotate.md index 4d31acad29..b6ca425fbd 100644 --- a/wiki/translations/pt-br/Draft_Rotate.md +++ b/wiki/translations/pt-br/Draft_Rotate.md @@ -8,6 +8,8 @@ SeeAlso:[Draft SubelementHighlight](Draft_SubelementHighlight.md) --- +# Draft Rotate/pt-br + ## Descrição The **Draft Rotate** command rotates or copies selected objects around a center point by a given angle. In subelement mode the command rotates selected points and edges, or copies selected edges, of [Draft Lines](Draft_Line.md) and [Draft Wires](Draft_Wire.md). @@ -126,5 +128,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rotate/pt-br diff --git a/wiki/translations/pt-br/Draft_SVG.md b/wiki/translations/pt-br/Draft_SVG.md index 9b726d0e60..26ed42c2e3 100644 --- a/wiki/translations/pt-br/Draft_SVG.md +++ b/wiki/translations/pt-br/Draft_SVG.md @@ -1,7 +1,4 @@ # Draft SVG/pt-br - - -
@@ -116,3 +113,6 @@ importSVG.export(objects, "/home/user/Pictures/myfile.svg") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SVG/pt-br diff --git a/wiki/translations/pt-br/Draft_Scale.md b/wiki/translations/pt-br/Draft_Scale.md index 30ccae1131..abebc50569 100644 --- a/wiki/translations/pt-br/Draft_Scale.md +++ b/wiki/translations/pt-br/Draft_Scale.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Clone](Draft_Clone/pt-br.md) --- +# Draft Scale/pt-br +
@@ -125,5 +127,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Scale/pt-br diff --git a/wiki/translations/pt-br/Draft_SelectGroup.md b/wiki/translations/pt-br/Draft_SelectGroup.md index 7f17255c8e..d92ea78941 100644 --- a/wiki/translations/pt-br/Draft_SelectGroup.md +++ b/wiki/translations/pt-br/Draft_SelectGroup.md @@ -6,6 +6,8 @@ SeeAlso:[Std Group](Std_Group.md), [Draft AddToGroup](Draft_AddToGroup.md), [Draft AddConstruction](Draft_AddConstruction.md), [Draft AutoGroup](Draft_AutoGroup.md) --- +# Draft SelectGroup/pt-br + ## Descrição The **Draft SelectGroup** command selects the content of [Draft Layers](Draft_Layer.md), [Std Groups](Std_Group.md) or group-like [Arch](Arch_Workbench.md) objects. @@ -37,5 +39,5 @@ The command currently does not work well with layers and can produce confusing r - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectGroup/pt-br diff --git a/wiki/translations/pt-br/Draft_SelectPlane.md b/wiki/translations/pt-br/Draft_SelectPlane.md index eca5498b0d..c482b30ee3 100644 --- a/wiki/translations/pt-br/Draft_SelectPlane.md +++ b/wiki/translations/pt-br/Draft_SelectPlane.md @@ -8,6 +8,8 @@ SeeAlso:[Draft WorkingPlaneProxy](Draft_WorkingPlaneProxy.md) --- +# Draft SelectPlane/pt-br + @@ -145,5 +147,5 @@ print(projection) - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectPlane/pt-br diff --git a/wiki/translations/pt-br/Draft_SetStyle.md b/wiki/translations/pt-br/Draft_SetStyle.md index a6e18bef23..48d712263d 100644 --- a/wiki/translations/pt-br/Draft_SetStyle.md +++ b/wiki/translations/pt-br/Draft_SetStyle.md @@ -7,6 +7,8 @@ SeeAlso:[Draft AnnotationStyleEditor](Draft_AnnotationStyleEditor.md), [Draft ApplyStyle](Draft_ApplyStyle.md) --- +# Draft SetStyle/pt-br + ## Descrição The **Draft SetStyle** command sets the default style for new objects. @@ -147,5 +149,5 @@ The following preferences are involved: - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SetStyle/pt-br diff --git a/wiki/translations/pt-br/Draft_Shape2DView.md b/wiki/translations/pt-br/Draft_Shape2DView.md index 94fd3444b7..a3c3846af7 100644 --- a/wiki/translations/pt-br/Draft_Shape2DView.md +++ b/wiki/translations/pt-br/Draft_Shape2DView.md @@ -5,6 +5,8 @@ Workbenches:[Draft](Draft_Workbench.md), [Arch](Arch_Workbench.md) --- +# Draft Shape2DView/pt-br + ## Descrição The **Draft Shape2DView** command creates 2D projections from selected objects, usually 3D solids or [Arch SectionPlanes](Arch_SectionPlane.md). The projections are placed in the [3D view](3D_view.md). @@ -150,5 +152,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Shape2DView/pt-br diff --git a/wiki/translations/pt-br/Draft_ShapeString.md b/wiki/translations/pt-br/Draft_ShapeString.md index 9cd05aa594..2923221f8a 100644 --- a/wiki/translations/pt-br/Draft_ShapeString.md +++ b/wiki/translations/pt-br/Draft_ShapeString.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Text](Draft_Text.md), [Draft Label](Draft_Label.md), [Part Extrude](Part_Extrude.md) --- +# Draft ShapeString/pt-br + ## Descrição The **Draft ShapeString** command creates a compound shape that represents a text string. This shape can be used to create 3D letters with the [Part Extrude](Part_Extrude.md) command. @@ -141,5 +143,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString/pt-br diff --git a/wiki/translations/pt-br/Draft_ShowSnapBar.md b/wiki/translations/pt-br/Draft_ShowSnapBar.md index 8c6b8f6b45..8493fc4255 100644 --- a/wiki/translations/pt-br/Draft_ShowSnapBar.md +++ b/wiki/translations/pt-br/Draft_ShowSnapBar.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md) --- +# Draft ShowSnapBar/pt-br + ## Descrição The **Draft ShowSnapBar** command shows the Draft Snap toolbar. Some users only want to see this toolbar when a command is active and have changed their [preferences](Draft_Snap#Preferences.md) accordingly. For them this command is a way to show the toolbar to inspect, and optionally change, the [snap options](Draft_Snap.md). @@ -29,5 +31,5 @@ The **Draft S - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShowSnapBar/pt-br diff --git a/wiki/translations/pt-br/Draft_Slope.md b/wiki/translations/pt-br/Draft_Slope.md index 4b14f82a6b..54e1368cae 100644 --- a/wiki/translations/pt-br/Draft_Slope.md +++ b/wiki/translations/pt-br/Draft_Slope.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Draft Slope/pt-br + ## Descrição The **Draft Slope** command slopes selected [Draft Lines](Draft_Line.md) or [Draft Wires](Draft_Wire.md) by increasing, or decreasing, the Z coordinate of all points after the first one. It can also be used to flatten [Draft Wires](Draft_Wire.md). Note that the slope is relative to the XY plane defined by the **Placement** of the objects. @@ -37,5 +39,5 @@ There is no Python method to slope objects. To emulate the results of the Draft - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Slope/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap.md b/wiki/translations/pt-br/Draft_Snap.md index 54a3bc82d2..8821140b63 100644 --- a/wiki/translations/pt-br/Draft_Snap.md +++ b/wiki/translations/pt-br/Draft_Snap.md @@ -1,7 +1,4 @@ # Draft Snap/pt-br - - -
@@ -101,5 +98,5 @@ Note that after changing some preferences you must restart FreeCAD.
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_Angle.md b/wiki/translations/pt-br/Draft_Snap_Angle.md index 8f214b350f..c857c80fb7 100644 --- a/wiki/translations/pt-br/Draft_Snap_Angle.md +++ b/wiki/translations/pt-br/Draft_Snap_Angle.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md) --- +# Draft Snap Angle/pt-br + ## Descrição The **Draft Snap Angle** option snaps to the special cardinal points on circular edges, at multiples of 30° and 45°. The edges can belong to [Draft](Draft_Workbench.md) or [Arch](Arch_Workbench.md) objects but also to objects created with other [workbenches](Workbenches.md). @@ -42,5 +44,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Angle/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_Center.md b/wiki/translations/pt-br/Draft_Snap_Center.md index 82159d7641..4a0cd73d2a 100644 --- a/wiki/translations/pt-br/Draft_Snap_Center.md +++ b/wiki/translations/pt-br/Draft_Snap_Center.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md) --- +# Draft Snap Center/pt-br + ## Descrição The **Draft Snap Center** option snaps to the center point of faces and circular edges, and to the **Placement** point of [Draft WorkingPlaneProxies](Draft_WorkingPlaneProxy.md) and [Arch BuildingParts](Arch_BuildingPart.md). The faces and edges can belong to [Draft](Draft_Workbench.md) or [Arch](Arch_Workbench.md) objects but also to objects created with other [workbenches](Workbenches.md). @@ -49,5 +51,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Center/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_Dimensions.md b/wiki/translations/pt-br/Draft_Snap_Dimensions.md index 6e9bf52ff7..38188182c5 100644 --- a/wiki/translations/pt-br/Draft_Snap_Dimensions.md +++ b/wiki/translations/pt-br/Draft_Snap_Dimensions.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md), [Draft SelectPlane](Draft_SelectPlane.md) --- +# Draft Snap Dimensions/pt-br + ## Descrição The **Draft Snap Dimensions** option shows temporary X and Y dimensions. They display the X and Y distance between the cursor and the previous point in the [working plane](Draft_SelectPlane.md) coordinate system. The dimensions are created on the [working plane](Draft_SelectPlane.md). @@ -39,5 +41,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Dimensions/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_Endpoint.md b/wiki/translations/pt-br/Draft_Snap_Endpoint.md index 98e129bbe9..343774e242 100644 --- a/wiki/translations/pt-br/Draft_Snap_Endpoint.md +++ b/wiki/translations/pt-br/Draft_Snap_Endpoint.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md) --- +# Draft Snap Endpoint/pt-br + ## Descrição The **Draft Snap Endpoint** option snaps to the endpoints of edges. The edges can belong to [Draft](Draft_Workbench.md) or [Arch](Arch_Workbench.md) objects but also to objects created with other [workbenches](Workbenches.md). @@ -40,5 +42,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Endpoint/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_Extension.md b/wiki/translations/pt-br/Draft_Snap_Extension.md index d43ab50b28..0c19e4cba0 100644 --- a/wiki/translations/pt-br/Draft_Snap_Extension.md +++ b/wiki/translations/pt-br/Draft_Snap_Extension.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md) --- +# Draft Snap Extension/pt-br + ## Descrição The **Draft Snap Extension** option snaps to an imaginary line that extends beyond the endpoints of straight edges. The edges can belong to [Draft](Draft_Workbench.md) or [Arch](Arch_Workbench.md) objects but also to objects created with other [workbenches](Workbenches.md). @@ -42,5 +44,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Extension/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_Grid.md b/wiki/translations/pt-br/Draft_Snap_Grid.md index e8d9c2b3c0..d497629e62 100644 --- a/wiki/translations/pt-br/Draft_Snap_Grid.md +++ b/wiki/translations/pt-br/Draft_Snap_Grid.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md), [Draft ToggleGrid](Draft_ToggleGrid.md), [Draft SelectPlane](Draft_SelectPlane.md) --- +# Draft Snap Grid/pt-br + ## Descrição The **Draft Snap Grid** option snaps to the intersections of grid lines. The grid can only be used if the **Use grid** preference is selected. See [Preferences](#Preferences.md). @@ -43,5 +45,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Grid/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_Intersection.md b/wiki/translations/pt-br/Draft_Snap_Intersection.md index c2596ba9fb..b4b9263210 100644 --- a/wiki/translations/pt-br/Draft_Snap_Intersection.md +++ b/wiki/translations/pt-br/Draft_Snap_Intersection.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md) --- +# Draft Snap Intersection/pt-br + ## Descrição The **Draft Snap Intersection** option snaps to the intersection of two edges. The edges can belong to [Draft](Draft_Workbench.md) or [Arch](Arch_Workbench.md) objects but also to objects created with other [workbenches](Workbenches.md). @@ -40,5 +42,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Intersection/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_Lock.md b/wiki/translations/pt-br/Draft_Snap_Lock.md index 861cf04a3a..61b02c8ee7 100644 --- a/wiki/translations/pt-br/Draft_Snap_Lock.md +++ b/wiki/translations/pt-br/Draft_Snap_Lock.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md) --- +# Draft Snap Lock/pt-br + ## Descrição The **Draft Snap Lock** command enables or disables snapping globally. @@ -27,5 +29,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Lock/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_Midpoint.md b/wiki/translations/pt-br/Draft_Snap_Midpoint.md index 59692f35ef..11527a29a8 100644 --- a/wiki/translations/pt-br/Draft_Snap_Midpoint.md +++ b/wiki/translations/pt-br/Draft_Snap_Midpoint.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md) --- +# Draft Snap Midpoint/pt-br + ## Descrição The **Draft Snap Midpoint** option snaps to the midpoint of straight and circular edges. The edges can belong to [Draft](Draft_Workbench.md) or [Arch](Arch_Workbench.md) objects but also to objects created with other [workbenches](Workbenches.md). @@ -39,5 +41,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Midpoint/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_Near.md b/wiki/translations/pt-br/Draft_Snap_Near.md index 54df40299d..9b6d00cd0c 100644 --- a/wiki/translations/pt-br/Draft_Snap_Near.md +++ b/wiki/translations/pt-br/Draft_Snap_Near.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md) --- +# Draft Snap Near/pt-br + ## Descrição The **Draft Snap Near** option snaps to the nearest point on faces or edges. The faces and edges can belong to [Draft](Draft_Workbench.md) or [Arch](Arch_Workbench.md) objects but also to objects created with other [workbenches](Workbenches.md). @@ -44,5 +46,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Near/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_Ortho.md b/wiki/translations/pt-br/Draft_Snap_Ortho.md index 6dcc969e11..c3e404bea5 100644 --- a/wiki/translations/pt-br/Draft_Snap_Ortho.md +++ b/wiki/translations/pt-br/Draft_Snap_Ortho.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md) --- +# Draft Snap Ortho/pt-br + ## Descrição The **Draft Snap Ortho** option snaps to imaginary lines that cross the previous point at 0°, 45°, 90° and 135°. The lines and angles are relative to the XY plane of the [working plane](Draft_SelectPlane.md) coordinate system. @@ -39,5 +41,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Ortho/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_Parallel.md b/wiki/translations/pt-br/Draft_Snap_Parallel.md index 3014e4bd81..218f48eb68 100644 --- a/wiki/translations/pt-br/Draft_Snap_Parallel.md +++ b/wiki/translations/pt-br/Draft_Snap_Parallel.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md) --- +# Draft Snap Parallel/pt-br + ## Descrição The **Draft Snap Parallel** option snaps to an imaginary line parallel to straight edges. The edges can belong to [Draft](Draft_Workbench.md) or [Arch](Arch_Workbench.md) objects but also to objects created with other [workbenches](Workbenches.md). @@ -45,5 +47,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Parallel/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_Perpendicular.md b/wiki/translations/pt-br/Draft_Snap_Perpendicular.md index ba87b369bc..a7f2dc6c7b 100644 --- a/wiki/translations/pt-br/Draft_Snap_Perpendicular.md +++ b/wiki/translations/pt-br/Draft_Snap_Perpendicular.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md) --- +# Draft Snap Perpendicular/pt-br + ## Descrição The **Draft Snap Perpendicular** option snaps to the perpendicular point on edges. The edges can belong to [Draft](Draft_Workbench.md) or [Arch](Arch_Workbench.md) objects but also to objects created with other [workbenches](Workbenches.md). @@ -42,5 +44,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Perpendicular/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_Special.md b/wiki/translations/pt-br/Draft_Snap_Special.md index 2214830aea..3b83502ea8 100644 --- a/wiki/translations/pt-br/Draft_Snap_Special.md +++ b/wiki/translations/pt-br/Draft_Snap_Special.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md) --- +# Draft Snap Special/pt-br + ## Descrição The **Draft Snap Special** option snaps to [special points](#Supported_special_points.md) defined by the object. The supported objects are [Arch Walls](Arch_Wall.md), [Arch Structures](Arch_Structure.md) and [Arch Equipment](Arch_Equipment.md). @@ -47,5 +49,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Special/pt-br diff --git a/wiki/translations/pt-br/Draft_Snap_WorkingPlane.md b/wiki/translations/pt-br/Draft_Snap_WorkingPlane.md index ec8d5ca3f8..2e448fc006 100644 --- a/wiki/translations/pt-br/Draft_Snap_WorkingPlane.md +++ b/wiki/translations/pt-br/Draft_Snap_WorkingPlane.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md), [Draft SelectPlane](Draft_SelectPlane.md) --- +# Draft Snap WorkingPlane/pt-br + ## Descrição The **Draft Snap WorkingPlane** option projects the snap point onto the current [working plane](Draft_SelectPlane.md). It can only be used in combination with another snap option. @@ -41,5 +43,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap WorkingPlane/pt-br diff --git a/wiki/translations/pt-br/Draft_Split.md b/wiki/translations/pt-br/Draft_Split.md index dc7f352c22..e802452b49 100644 --- a/wiki/translations/pt-br/Draft_Split.md +++ b/wiki/translations/pt-br/Draft_Split.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Join](Draft_Join.md) --- +# Draft Split/pt-br + ## Descrição The **Draft Split** command splits a [Draft Line](Draft_Line.md) or [Draft Wire](Draft_Wire.md) at a specified point or edge. This command is the counterpart of the [Draft Join](Draft_Join.md) command. @@ -78,5 +80,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Split/pt-br diff --git a/wiki/translations/pt-br/Draft_Stretch.md b/wiki/translations/pt-br/Draft_Stretch.md index f857c994d0..d90d412cdd 100644 --- a/wiki/translations/pt-br/Draft_Stretch.md +++ b/wiki/translations/pt-br/Draft_Stretch.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Draft Stretch/pt-br + ## Descrição The **Draft Stretch** command stretches objects by moving selected points. @@ -64,5 +66,5 @@ There is no Python method to stretch objects. To emulate the results of the Draf - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Stretch/pt-br diff --git a/wiki/translations/pt-br/Draft_SubelementHighlight.md b/wiki/translations/pt-br/Draft_SubelementHighlight.md index dff06d59ed..2213176389 100644 --- a/wiki/translations/pt-br/Draft_SubelementHighlight.md +++ b/wiki/translations/pt-br/Draft_SubelementHighlight.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Move](Draft_Move.md), [Draft Rotate](Draft_Rotate.md), [Draft Scale](Draft_Scale.md) --- +# Draft SubelementHighlight/pt-br + ## Descrição The **Draft SubelementHighlight** command temporarily highlights selected objects, or the base objects of selected objects. It is intended to be used in conjunction with the subelement mode of the [Draft Move](Draft_Move.md) command, the [Draft Rotate](Draft_Rotate.md) command or the [Draft Scale](Draft_Scale.md) command. Currently subelement mode only works properly for [Draft Lines](Draft_Line.md) and [Draft Wires](Draft_Wire.md). @@ -44,5 +46,5 @@ The * - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SubelementHighlight/pt-br diff --git a/wiki/translations/pt-br/Draft_Text.md b/wiki/translations/pt-br/Draft_Text.md index 8ff710bd4e..6ddedb6c5e 100644 --- a/wiki/translations/pt-br/Draft_Text.md +++ b/wiki/translations/pt-br/Draft_Text.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Label](Draft_Label.md), [Draft ShapeString](Draft_ShapeString.md) --- +# Draft Text/pt-br + ## Descrição The **Draft Text** command creates a multi-line text at a given point. @@ -153,5 +155,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Text/pt-br diff --git a/wiki/translations/pt-br/Draft_ToggleConstructionMode.md b/wiki/translations/pt-br/Draft_ToggleConstructionMode.md index 16d7c9832d..92d50b9473 100644 --- a/wiki/translations/pt-br/Draft_ToggleConstructionMode.md +++ b/wiki/translations/pt-br/Draft_ToggleConstructionMode.md @@ -7,6 +7,8 @@ SeeAlso:[Draft AddConstruction](Draft_AddConstruction.md), [Draft AutoGroup](Draft_AutoGroup.md) --- +# Draft ToggleConstructionMode/pt-br + ## Descrição The **Draft ToggleConstructionMode** command switches Draft construction mode on or off. If construction mode is on new [Draft](Draft_Workbench.md) objects, except [Draft Points](Draft_Point.md), are placed in a dedicated group and given a predefined color. This feature is intended for, often temporary, construction geometry used to provide new [snap points](Draft_Snap.md) for creating other objects. When the construction geometry is no longer needed the construction group can easily be [hidden](Std_HideSelection.md) or [deleted](Std_Delete.md). @@ -44,5 +46,5 @@ In FreeCAD version 0.19 this command and the [Draft AddConstruction](Draft_AddCo - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleConstructionMode/pt-br diff --git a/wiki/translations/pt-br/Draft_ToggleContinueMode.md b/wiki/translations/pt-br/Draft_ToggleContinueMode.md index 571b0b24ea..e26dc0df0d 100644 --- a/wiki/translations/pt-br/Draft_ToggleContinueMode.md +++ b/wiki/translations/pt-br/Draft_ToggleContinueMode.md @@ -5,6 +5,8 @@ Workbenches:[Draft](Draft_Workbench.md), [Arch](Arch_Workbench.md) --- +# Draft ToggleContinueMode/pt-br + ## Descrição The **Draft ToggleContinueMode** command switches continue mode on or off. Many [Draft](Draft_Workbench.md) and [Arch](Arch_Workbench.md) commands support this mode. If continue mode is on they will restart after finishing. Continue mode can also be toggled in the task panel of those commands so in practice this command is rarely used. @@ -26,5 +28,5 @@ The ** - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleContinueMode/pt-br diff --git a/wiki/translations/pt-br/Draft_ToggleDisplayMode.md b/wiki/translations/pt-br/Draft_ToggleDisplayMode.md index 85f4ebb669..cb25572e02 100644 --- a/wiki/translations/pt-br/Draft_ToggleDisplayMode.md +++ b/wiki/translations/pt-br/Draft_ToggleDisplayMode.md @@ -7,6 +7,8 @@ SeeAlso:[Std ToggleVisibility](Std_ToggleVisibility.md) --- +# Draft ToggleDisplayMode/pt-br + ## Descrição The **Draft ToggleDisplayMode** command switches the **Display Mode** property of selected objects between {{Value|Flat Lines}} and {{Value|Wireframe}}. When this property of is set to {{Value|Wireframe}} only the vertices and edges of an object are visible making it possible to view and select objects behind it. @@ -32,5 +34,5 @@ The **D - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleDisplayMode/pt-br diff --git a/wiki/translations/pt-br/Draft_ToggleGrid.md b/wiki/translations/pt-br/Draft_ToggleGrid.md index 1faad7b6a5..6061a31864 100644 --- a/wiki/translations/pt-br/Draft_ToggleGrid.md +++ b/wiki/translations/pt-br/Draft_ToggleGrid.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Grid](Draft_Snap_Grid.md), [Draft SelectPlane](Draft_SelectPlane.md) --- +# Draft ToggleGrid/pt-br + ## Descrição The **Draft ToggleGrid** command switches the grid on or off. The grid can only be used if the **Use grid** preference is selected. See [Preferences](#Preferences.md). @@ -38,5 +40,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleGrid/pt-br diff --git a/wiki/translations/pt-br/Draft_Tray.md b/wiki/translations/pt-br/Draft_Tray.md index df6738ed46..05a875d9b7 100644 --- a/wiki/translations/pt-br/Draft_Tray.md +++ b/wiki/translations/pt-br/Draft_Tray.md @@ -1,10 +1,4 @@ # Draft Tray/pt-br - - - - - - {{TOCright}} ## Description @@ -23,8 +17,5 @@ The **Draft Tray** allows selecting the working plane, defining style settings, - ![](images/Draft_tray_button_layer.png ) [AutoGroup](Draft_AutoGroup.md): changes the active [Draft Layer](Draft_Layer.md) or, optionally, the active [Std Group](Std_Group.md) or group-like [Arch](Arch_Workbench.md) object. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Tray/pt-br diff --git a/wiki/translations/pt-br/Draft_Trimex.md b/wiki/translations/pt-br/Draft_Trimex.md index dc1219d6f6..10adc1c531 100644 --- a/wiki/translations/pt-br/Draft_Trimex.md +++ b/wiki/translations/pt-br/Draft_Trimex.md @@ -7,6 +7,8 @@ SeeAlso:[Part Extrude](Part_Extrude.md) --- +# Draft Trimex/pt-br + ## Descrição The **Draft Trimex** command [trims or extends](#Trim_or_extend.md) a selected object. Intersections with the edge of another object can be used to determine new endpoints. The command can also be used to [extrude](#Extrude.md) a face, in which case it creates a [Part Extrude](Part_Extrude.md) object. @@ -126,5 +128,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Trimex/pt-br diff --git a/wiki/translations/pt-br/Draft_UndoLine.md b/wiki/translations/pt-br/Draft_UndoLine.md index f073da0a20..5b730c1dfc 100644 --- a/wiki/translations/pt-br/Draft_UndoLine.md +++ b/wiki/translations/pt-br/Draft_UndoLine.md @@ -1,2 +1,5 @@ # Draft UndoLine/pt-br 1. REDIRECT [Draft\_Wire/pt-br](Draft_Wire/pt-br.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft UndoLine/pt-br diff --git a/wiki/translations/pt-br/Draft_Upgrade.md b/wiki/translations/pt-br/Draft_Upgrade.md index 09145f38c4..d0258a71e1 100644 --- a/wiki/translations/pt-br/Draft_Upgrade.md +++ b/wiki/translations/pt-br/Draft_Upgrade.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Downgrade](Draft_Downgrade.md) --- +# Draft Upgrade/pt-br + ## Descrição The **Draft Upgrade** command upgrades selected objects. The result depends on the number of selected objects and their type. The command can for example fuse elements and create faces. It is worth trying to upgrade a selection several times to see if a better result can be obtained. See the example in the image. Note that not all objects can be upgraded. This command is the counterpart of the [Draft Downgrade](Draft_Downgrade.md) command. @@ -88,5 +90,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Upgrade/pt-br diff --git a/wiki/translations/pt-br/Draft_Wire.md b/wiki/translations/pt-br/Draft_Wire.md index 92a2623ae9..7fe0a8ad9e 100644 --- a/wiki/translations/pt-br/Draft_Wire.md +++ b/wiki/translations/pt-br/Draft_Wire.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Line](Draft_Line.md), [Draft BSpline](Draft_BSpline.md) --- +# Draft Wire/pt-br + ## Descrição The **Draft Wire** command [creates](#Create.md) a polyline, a sequence of several connected line segments. The command can also be used to [join](#Join.md) [Draft Lines](Draft_Line.md) and Draft Wires. @@ -171,5 +173,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Wire/pt-br diff --git a/wiki/translations/pt-br/Draft_WireToBSpline.md b/wiki/translations/pt-br/Draft_WireToBSpline.md index 0092c4435f..0c2cbe4f69 100644 --- a/wiki/translations/pt-br/Draft_WireToBSpline.md +++ b/wiki/translations/pt-br/Draft_WireToBSpline.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Wire](Draft_Wire.md), [Draft BSpline](Draft_BSpline.md) --- +# Draft WireToBSpline/pt-br + ## Descrição The **Draft WireToBSpline** command converts [Draft Wires](Draft_Wire.md) to [Draft BSplines](Draft_BSpline.md) and vice versa. @@ -66,5 +68,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WireToBSpline/pt-br diff --git a/wiki/translations/pt-br/Draft_Workbench.md b/wiki/translations/pt-br/Draft_Workbench.md index a3ae7628ba..961171de91 100644 --- a/wiki/translations/pt-br/Draft_Workbench.md +++ b/wiki/translations/pt-br/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/pt-br - - - - - -Ícone da bancada de trabalho de draft +# Ícone da bancada de trabalho de draft Draft Workbench/pt-br {{TOCright}} @@ -456,3 +450,6 @@ A inspeção do código deste módulo é útil para entender como utilizar a int [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/pt-br diff --git a/wiki/translations/pt-br/Draft_WorkingPlaneProxy.md b/wiki/translations/pt-br/Draft_WorkingPlaneProxy.md index 07185f584e..2e1d83f34e 100644 --- a/wiki/translations/pt-br/Draft_WorkingPlaneProxy.md +++ b/wiki/translations/pt-br/Draft_WorkingPlaneProxy.md @@ -6,6 +6,8 @@ SeeAlso:[Draft SelectPlane](Draft_SelectPlane.md) --- +# Draft WorkingPlaneProxy/pt-br + ## Descrição The **Draft WorkingPlaneProxy** command creates a working plane proxy to save the current [Draft working plane](Draft_SelectPlane.md). A working plane proxy can be used to quickly restore a working plane. The camera position and visibility of the objects in the [3D view](3D_view.md) are also saved in the working plane proxy and can, [optionally](#Properties.md), be restored as well. @@ -125,5 +127,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WorkingPlaneProxy/pt-br diff --git a/wiki/translations/pt-br/Draft_annotation_scale_widget.md b/wiki/translations/pt-br/Draft_annotation_scale_widget.md index d7d1463333..40c26f6965 100644 --- a/wiki/translations/pt-br/Draft_annotation_scale_widget.md +++ b/wiki/translations/pt-br/Draft_annotation_scale_widget.md @@ -1,7 +1,4 @@ # Draft annotation scale widget/pt-br - - -
@@ -51,5 +48,5 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft annotation scale widget/pt-br diff --git a/wiki/translations/pt-br/Draft_snap_widget.md b/wiki/translations/pt-br/Draft_snap_widget.md index dde5de3630..4a0dcf0238 100644 --- a/wiki/translations/pt-br/Draft_snap_widget.md +++ b/wiki/translations/pt-br/Draft_snap_widget.md @@ -1,7 +1,4 @@ # Draft snap widget/pt-br - - -
@@ -31,8 +28,5 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr - The Draft snap widget is optional: **Edit → Preferences... → Draft → User interface settings → Draft Statusbar → Draft snap widget**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft snap widget/pt-br diff --git a/wiki/translations/pt-br/Drawing_Module.md b/wiki/translations/pt-br/Drawing_Module.md index 22eed7ec00..6ea17b71be 100644 --- a/wiki/translations/pt-br/Drawing_Module.md +++ b/wiki/translations/pt-br/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/pt-br 1. REDIRECT [Drawing\_Workbench/pt-br](Drawing_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/pt-br diff --git a/wiki/translations/pt-br/Drawing_Workbench.md b/wiki/translations/pt-br/Drawing_Workbench.md index 028eb1531d..e169bf3625 100644 --- a/wiki/translations/pt-br/Drawing_Workbench.md +++ b/wiki/translations/pt-br/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/pt-br - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** Ícone da bancada de trabalho Drawing @@ -84,3 +81,6 @@ Some notes on the programming side of the drawing module will be added to the [D }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/pt-br diff --git a/wiki/translations/pt-br/Export_to_STL_or_OBJ.md b/wiki/translations/pt-br/Export_to_STL_or_OBJ.md index 04125678cf..0614de66c3 100644 --- a/wiki/translations/pt-br/Export_to_STL_or_OBJ.md +++ b/wiki/translations/pt-br/Export_to_STL_or_OBJ.md @@ -1,7 +1,4 @@ # Export to STL or OBJ/pt-br - - - {{TutorialInfo |Topic=Export to STL or OBJ |Level=Beginner @@ -61,3 +58,6 @@ Method 2 is to be preferred. Among the reasons: [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Export to STL or OBJ/pt-br diff --git a/wiki/translations/pt-br/Expressions.md b/wiki/translations/pt-br/Expressions.md index fc94948c1e..566eb46d9f 100644 --- a/wiki/translations/pt-br/Expressions.md +++ b/wiki/translations/pt-br/Expressions.md @@ -1,5 +1,5 @@ # Expressions/pt-br - {{TOCright}} +{{TOCright}} ## Visão geral @@ -534,3 +534,6 @@ Of course, it\'s up to you to load the corresponding documents later when you wa }} [Category:Spreadsheet](Category:Spreadsheet.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Category:Spreadsheet.md) > Expressions/pt-br diff --git a/wiki/translations/pt-br/External_workbenches.md b/wiki/translations/pt-br/External_workbenches.md index 544808692e..95cf292b44 100644 --- a/wiki/translations/pt-br/External_workbenches.md +++ b/wiki/translations/pt-br/External_workbenches.md @@ -1,10 +1,4 @@ # External workbenches/pt-br - - - - - - {{TOCright}} ## Introdução @@ -142,3 +136,6 @@ See the wiki page for more information [Translating an external workbench](Trans [Category:Addons](Category:Addons.md) [\*](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > External workbenches/pt-br diff --git a/wiki/translations/pt-br/Extra_python_modules.md b/wiki/translations/pt-br/Extra_python_modules.md index fe9972c63e..724895df2d 100644 --- a/wiki/translations/pt-br/Extra_python_modules.md +++ b/wiki/translations/pt-br/Extra_python_modules.md @@ -1,7 +1,4 @@ # Extra python modules/pt-br - - -
@@ -733,3 +730,6 @@ utils = LazyLoader('PathScripts', globals(), 'PathScripts.PathUtils') [Category:Python Code](Category:Python_Code.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > Extra python modules/pt-br diff --git a/wiki/translations/pt-br/FAQ.md b/wiki/translations/pt-br/FAQ.md index d9a3491479..c30fbe5bc4 100644 --- a/wiki/translations/pt-br/FAQ.md +++ b/wiki/translations/pt-br/FAQ.md @@ -1,2 +1,5 @@ # FAQ/pt-br 1. REDIRECT [Frequently\_asked\_questions/pt-br](Frequently_asked_questions/pt-br.md) + +--- +[documentation index](../README.md) > FAQ/pt-br diff --git a/wiki/translations/pt-br/FEM_Analysis.md b/wiki/translations/pt-br/FEM_Analysis.md index aa50c6dff5..545dd4df33 100644 --- a/wiki/translations/pt-br/FEM_Analysis.md +++ b/wiki/translations/pt-br/FEM_Analysis.md @@ -7,6 +7,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM Analysis/pt-br + ## Descrição The FEM Analysis could be seen as a Container that holds all objects of a Finite Element Analysis. It is mandatory to have a analysis container which holds all the needed objects. At least one of the following objects is needed for a mechanical analysis: @@ -88,4 +90,7 @@ App.ActiveDocument.MechanicalAnalysis.Member = member {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Analysis/pt-br diff --git a/wiki/translations/pt-br/FEM_ConstraintElectrostaticPotential.md b/wiki/translations/pt-br/FEM_ConstraintElectrostaticPotential.md index 33113f6fca..6208df7961 100644 --- a/wiki/translations/pt-br/FEM_ConstraintElectrostaticPotential.md +++ b/wiki/translations/pt-br/FEM_ConstraintElectrostaticPotential.md @@ -6,6 +6,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM ConstraintElectrostaticPotential/pt-br + ## Descrição ToDo @@ -24,4 +26,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintElectrostaticPotential/pt-br diff --git a/wiki/translations/pt-br/FEM_ElementFluid1D.md b/wiki/translations/pt-br/FEM_ElementFluid1D.md index fe6d983f46..fd538388b6 100644 --- a/wiki/translations/pt-br/FEM_ElementFluid1D.md +++ b/wiki/translations/pt-br/FEM_ElementFluid1D.md @@ -6,6 +6,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM ElementFluid1D/pt-br + ## Descrição Creates a FEM fluid section element for pneumatic and hydraulic networks @@ -41,4 +43,7 @@ Creates a FEM fluid section element for pneumatic and hydraulic networks {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementFluid1D/pt-br diff --git a/wiki/translations/pt-br/FEM_ElementGeometry1D.md b/wiki/translations/pt-br/FEM_ElementGeometry1D.md index a1506dbed3..0d11eea1d0 100644 --- a/wiki/translations/pt-br/FEM_ElementGeometry1D.md +++ b/wiki/translations/pt-br/FEM_ElementGeometry1D.md @@ -7,6 +7,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM ElementGeometry1D/pt-br + ## Descrição ElementGeometry1D is used to define cross sections for beam elements. Currently the following types of cross sections are available: rectangular, circular and pipe. @@ -46,4 +48,7 @@ ElementGeometry1D is used to define cross sections for beam elements. Currently {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementGeometry1D/pt-br diff --git a/wiki/translations/pt-br/FEM_ElementGeometry2D.md b/wiki/translations/pt-br/FEM_ElementGeometry2D.md index ca858bf91e..96938f5b84 100644 --- a/wiki/translations/pt-br/FEM_ElementGeometry2D.md +++ b/wiki/translations/pt-br/FEM_ElementGeometry2D.md @@ -7,6 +7,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM ElementGeometry2D/pt-br + ## Descrição ElementGeometry2D is used to define thickness of 2D FEM elements, all or laying on the chosen surface. @@ -48,4 +50,7 @@ For viewing results from CalculiX solver on the mesh expanded to the prescribed {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementGeometry2D/pt-br diff --git a/wiki/translations/pt-br/FEM_ElementRotation1D.md b/wiki/translations/pt-br/FEM_ElementRotation1D.md index 7902cd5632..45108b035e 100644 --- a/wiki/translations/pt-br/FEM_ElementRotation1D.md +++ b/wiki/translations/pt-br/FEM_ElementRotation1D.md @@ -6,6 +6,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM ElementRotation1D/pt-br + ## Description @@ -50,4 +52,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementRotation1D/pt-br diff --git a/wiki/translations/pt-br/FEM_MaterialFluid.md b/wiki/translations/pt-br/FEM_MaterialFluid.md index 84abd6528e..9b29acf67c 100644 --- a/wiki/translations/pt-br/FEM_MaterialFluid.md +++ b/wiki/translations/pt-br/FEM_MaterialFluid.md @@ -6,6 +6,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM MaterialFluid/pt-br + ## Descrição Adds fluid properties to a part. @@ -38,4 +40,7 @@ Adds fluid properties to a part. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialFluid/pt-br diff --git a/wiki/translations/pt-br/FEM_MaterialMechanicalNonlinear.md b/wiki/translations/pt-br/FEM_MaterialMechanicalNonlinear.md index 12de53c815..aa8dd9dad6 100644 --- a/wiki/translations/pt-br/FEM_MaterialMechanicalNonlinear.md +++ b/wiki/translations/pt-br/FEM_MaterialMechanicalNonlinear.md @@ -6,6 +6,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM MaterialMechanicalNonlinear/pt-br + ## Descrição Adds nonlinear mechanical material model. Currently only plasticity with simple hardening is available. @@ -32,4 +34,7 @@ Adds nonlinear mechanical material model. Currently only plasticity with simple {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialMechanicalNonlinear/pt-br diff --git a/wiki/translations/pt-br/FEM_MaterialReinforced.md b/wiki/translations/pt-br/FEM_MaterialReinforced.md index 51fc2befd2..69e31e0471 100644 --- a/wiki/translations/pt-br/FEM_MaterialReinforced.md +++ b/wiki/translations/pt-br/FEM_MaterialReinforced.md @@ -6,6 +6,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM MaterialReinforced/pt-br + ToDo @@ -20,4 +22,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialReinforced/pt-br diff --git a/wiki/translations/pt-br/FEM_MaterialSolid.md b/wiki/translations/pt-br/FEM_MaterialSolid.md index 744cfbaadd..ea258dec85 100644 --- a/wiki/translations/pt-br/FEM_MaterialSolid.md +++ b/wiki/translations/pt-br/FEM_MaterialSolid.md @@ -7,6 +7,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM MaterialSolid/pt-br + ## Descrição Adds material properties to a part. @@ -43,4 +45,7 @@ Adds material properties to a part. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialSolid/pt-br diff --git a/wiki/translations/pt-br/FEM_MeshGmshFromShape.md b/wiki/translations/pt-br/FEM_MeshGmshFromShape.md index c639754ab6..3ec5a65ca1 100644 --- a/wiki/translations/pt-br/FEM_MeshGmshFromShape.md +++ b/wiki/translations/pt-br/FEM_MeshGmshFromShape.md @@ -6,6 +6,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM MeshGmshFromShape/pt-br + ## Descrição For a finite elements analysis the geometry needs to be discretized into a [FEM Mesh](FEM_Mesh.md). This command uses the program [Gmsh](https://en.wikipedia.org/wiki/Gmsh) (which needs to be installed on the system) for calculating the mesh. @@ -116,4 +118,7 @@ The *Simple* recombination algorithm will leave some triangles in the mesh in ca {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshGmshFromShape/pt-br diff --git a/wiki/translations/pt-br/FEM_Module.md b/wiki/translations/pt-br/FEM_Module.md index 14c9e5faff..c1e0a93cb9 100644 --- a/wiki/translations/pt-br/FEM_Module.md +++ b/wiki/translations/pt-br/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/pt-br 1. REDIRECT [FEM\_Workbench/pt-br](FEM_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > FEM Module/pt-br diff --git a/wiki/translations/pt-br/FEM_SolverCalculiX.md b/wiki/translations/pt-br/FEM_SolverCalculiX.md index 6ecf922293..e35b9582aa 100644 --- a/wiki/translations/pt-br/FEM_SolverCalculiX.md +++ b/wiki/translations/pt-br/FEM_SolverCalculiX.md @@ -7,6 +7,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM SolverCalculiX/pt-br + ## Descrição ToDo @@ -23,4 +25,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverCalculiX/pt-br diff --git a/wiki/translations/pt-br/FEM_SolverElmer.md b/wiki/translations/pt-br/FEM_SolverElmer.md index 5ded6bfcff..e540b17b39 100644 --- a/wiki/translations/pt-br/FEM_SolverElmer.md +++ b/wiki/translations/pt-br/FEM_SolverElmer.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Solver CalculiX](FEM_SolverCalculiX.md), [FEM Solver Z88](FEM_SolverZ88.md), [FEM tutorial](FEM_tutorial.md) --- +# FEM SolverElmer/pt-br + ## Descrição [Elmer](https://www.elmerfem.org) is an open source multiphysical simulation software mainly developed by CSC - IT Center for Science (CSC). Elmer development was started 1995 in collaboration with Finnish Universities, research institutes and industry. After it\'s open source publication in 2005, the use and development of Elmer has become international. @@ -91,4 +93,7 @@ The following link gives access to the full [documentation for Elmer](https://ww {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverElmer/pt-br diff --git a/wiki/translations/pt-br/FEM_SolverZ88.md b/wiki/translations/pt-br/FEM_SolverZ88.md index 094eec5377..9b6836100c 100644 --- a/wiki/translations/pt-br/FEM_SolverZ88.md +++ b/wiki/translations/pt-br/FEM_SolverZ88.md @@ -7,6 +7,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# FEM SolverZ88/pt-br + ## Descrição ToDo @@ -19,4 +21,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverZ88/pt-br diff --git a/wiki/translations/pt-br/FEM_Workbench.md b/wiki/translations/pt-br/FEM_Workbench.md index 12d0a7c849..dd426ef910 100644 --- a/wiki/translations/pt-br/FEM_Workbench.md +++ b/wiki/translations/pt-br/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/pt-br - - - - - -Ícone da bancada de trabalho FEM +# Ícone da bancada de trabalho FEM FEM Workbench/pt-br {{TOCright}} @@ -284,3 +278,6 @@ Um guia do desenvolvedor foi escrito para ajudar os usuários a entenderem a com }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/pt-br diff --git a/wiki/translations/pt-br/Feature_editing.md b/wiki/translations/pt-br/Feature_editing.md index c50c99c918..a5b7f16751 100644 --- a/wiki/translations/pt-br/Feature_editing.md +++ b/wiki/translations/pt-br/Feature_editing.md @@ -1,5 +1,5 @@ # Feature editing/pt-br - {{TOCright}} +{{TOCright}} ## Introdução @@ -170,3 +170,6 @@ The [tutorials](Tutorials.md) page provides some examples of using the [feature }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Feature editing/pt-br diff --git a/wiki/translations/pt-br/Feature_list.md b/wiki/translations/pt-br/Feature_list.md index cd1a122885..62b8fb5805 100644 --- a/wiki/translations/pt-br/Feature_list.md +++ b/wiki/translations/pt-br/Feature_list.md @@ -1,6 +1,4 @@ # Feature list/pt-br - - Esta é uma extensa, mas incompleta, lista de recursos que o FreeCAD disponibiliza. Se você quer ter uma noção a futuro, consulte o [Development roadmap](Development_roadmap.md) para uma rápida visão geral do que vem por aí. Além disso, recomenda-se consultar [Capturas de tela](Screenshots/pt-br.md). @@ -130,3 +128,6 @@ Usuários avançados criaram várias [bancadas de trabalho externas](external_wo [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/pt-br diff --git a/wiki/translations/pt-br/File_Format_FCStd.md b/wiki/translations/pt-br/File_Format_FCStd.md index 82ab77f7ff..db3f1380f7 100644 --- a/wiki/translations/pt-br/File_Format_FCStd.md +++ b/wiki/translations/pt-br/File_Format_FCStd.md @@ -1,5 +1,5 @@ # File Format FCStd/pt-br - {{TOCright}} +{{TOCright}} ## Overview @@ -167,3 +167,6 @@ See the forum thread, [PDF inside the project](https://forum.freecadweb.org/view [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > File Format FCStd/pt-br diff --git a/wiki/translations/pt-br/Fine-tuning.md b/wiki/translations/pt-br/Fine-tuning.md index 7d2d86787b..586cb0c367 100644 --- a/wiki/translations/pt-br/Fine-tuning.md +++ b/wiki/translations/pt-br/Fine-tuning.md @@ -1,7 +1,4 @@ # Fine-tuning/pt-br - - - {{TOCright}} This page holds different settings and parameters that you can use to fine-tune your FreeCAD installation or overcome problems. @@ -77,3 +74,6 @@ Any other characters are treated literally. If the resulting filename is illegal [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Fine-tuning/pt-br diff --git a/wiki/translations/pt-br/FreeCADShip_Workbench.md b/wiki/translations/pt-br/FreeCADShip_Workbench.md index 928a59c23e..5b8940b41e 100644 --- a/wiki/translations/pt-br/FreeCADShip_Workbench.md +++ b/wiki/translations/pt-br/FreeCADShip_Workbench.md @@ -1,2 +1,5 @@ # FreeCADShip Workbench/pt-br 1. REDIRECT [Ship\_Workbench/pt-br](Ship_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > FreeCADShip Workbench/pt-br diff --git a/wiki/translations/pt-br/FreeCAD_Build_Tool.md b/wiki/translations/pt-br/FreeCAD_Build_Tool.md index 5e6f4800e4..d293fe6370 100644 --- a/wiki/translations/pt-br/FreeCAD_Build_Tool.md +++ b/wiki/translations/pt-br/FreeCAD_Build_Tool.md @@ -1,10 +1,4 @@ # FreeCAD Build Tool/pt-br - - - - - - {{TOCright}} ## Overview @@ -72,3 +66,6 @@ The \"CM\" command [creates a new application module (Workbench)](Workbench_crea [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Build Tool/pt-br diff --git a/wiki/translations/pt-br/FreeCAD_Community_Portal.md b/wiki/translations/pt-br/FreeCAD_Community_Portal.md index 7fca0fcbfc..bef17c6bd9 100644 --- a/wiki/translations/pt-br/FreeCAD_Community_Portal.md +++ b/wiki/translations/pt-br/FreeCAD_Community_Portal.md @@ -1,6 +1,4 @@ # FreeCAD Community Portal/pt-br - - This is the place to put all kind of FreeCAD-related stuff! If you work on something FreeCAD-related, please include it here! ## Places where FreeCAD appears on the net @@ -87,3 +85,6 @@ These are FreeCAD community developed workbenches, scripts, macros, and addons f [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > FreeCAD Community Portal/pt-br diff --git a/wiki/translations/pt-br/FreeCAD_Docker_CLI_mode.md b/wiki/translations/pt-br/FreeCAD_Docker_CLI_mode.md index 4cd38797ab..3698a12ff9 100644 --- a/wiki/translations/pt-br/FreeCAD_Docker_CLI_mode.md +++ b/wiki/translations/pt-br/FreeCAD_Docker_CLI_mode.md @@ -1,10 +1,4 @@ # FreeCAD Docker CLI mode/pt-br - - - - - - {{TOCright}} ## Visão geral @@ -78,6 +72,5 @@ To launch FreeCAD inside Docker image, just run FreeCADCmd command. FreeCAD forum thread: - - - +--- +[documentation index](../README.md) > FreeCAD Docker CLI mode/pt-br diff --git a/wiki/translations/pt-br/FreeCAD_Scripting_Basics.md b/wiki/translations/pt-br/FreeCAD_Scripting_Basics.md index 28a5e73d0e..8b571f4597 100644 --- a/wiki/translations/pt-br/FreeCAD_Scripting_Basics.md +++ b/wiki/translations/pt-br/FreeCAD_Scripting_Basics.md @@ -1,7 +1,4 @@ # FreeCAD Scripting Basics/pt-br - - - {{TOCright}} ## Python scripting in FreeCAD @@ -211,3 +208,6 @@ Now you can really start playing with FreeCAD! For a complete list of available }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Scripting Basics/pt-br diff --git a/wiki/translations/pt-br/FreeCAD_and_DWG_Import.md b/wiki/translations/pt-br/FreeCAD_and_DWG_Import.md index bc38ca4bd4..71d08074b4 100644 --- a/wiki/translations/pt-br/FreeCAD_and_DWG_Import.md +++ b/wiki/translations/pt-br/FreeCAD_and_DWG_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DWG Import/pt-br - {{TOCright}} +{{TOCright}} {{Fake heading|sub=4|< Back to [[FreeCAD Howto Import Export]]}} @@ -134,3 +134,6 @@ In development version as mentioned above you can switch from the proprietary OD [Category:File\_Formats](Category:File_Formats.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > FreeCAD and DWG Import/pt-br diff --git a/wiki/translations/pt-br/FreeCAD_and_DXF_Import.md b/wiki/translations/pt-br/FreeCAD_and_DXF_Import.md index 11bacbec6f..f5a401d0a2 100644 --- a/wiki/translations/pt-br/FreeCAD_and_DXF_Import.md +++ b/wiki/translations/pt-br/FreeCAD_and_DXF_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DXF Import/pt-br - {{TOCright}} +{{TOCright}} ## Antecedentes @@ -52,3 +52,6 @@ You can also try: For an overview of all DXF related preferences see [Import Export Preferences](Import_Export_Preferences#DXF.md). [Category:User\_Documentation](Category:User_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > FreeCAD and DXF Import/pt-br diff --git a/wiki/translations/pt-br/FreeCAD_used_in_production.md b/wiki/translations/pt-br/FreeCAD_used_in_production.md index 91d148df1a..95a2df2088 100644 --- a/wiki/translations/pt-br/FreeCAD_used_in_production.md +++ b/wiki/translations/pt-br/FreeCAD_used_in_production.md @@ -1,9 +1,4 @@ # FreeCAD used in production/pt-br - - - - - ## Overview @@ -87,3 +82,6 @@ In order to add anything to this list it needs to be vetted by the community. No [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > FreeCAD used in production/pt-br diff --git a/wiki/translations/pt-br/Frequently_asked_questions.md b/wiki/translations/pt-br/Frequently_asked_questions.md index 6ce6727486..5a857a16a2 100644 --- a/wiki/translations/pt-br/Frequently_asked_questions.md +++ b/wiki/translations/pt-br/Frequently_asked_questions.md @@ -1,9 +1,4 @@ # Frequently asked questions/pt-br - - - - - Esta página tenta responder as perguntas mais comuns feitas nos fóruns do FreeCAD. Se você tiver algum problema ou pergunta em relação ao FreeCAD, verifique abaixo primeiro. Depois, se você não encontrar uma resposta para sua pergunta específica, vá para o [Fórum FreeCAD](http://forum.freecadweb.org/viewforum.php?f=3)! ## Instalação @@ -323,3 +318,6 @@ Sim, você pode usar as partes principais do FreeCAD em outras aplicações, des [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Frequently asked questions/pt-br diff --git a/wiki/translations/pt-br/Getting_started.md b/wiki/translations/pt-br/Getting_started.md index 3331218576..7c95e4b6ac 100644 --- a/wiki/translations/pt-br/Getting_started.md +++ b/wiki/translations/pt-br/Getting_started.md @@ -1,7 +1,4 @@ # Getting started/pt-br - - -
@@ -267,3 +264,6 @@ E, finalmente, um dos recursos mais poderosos do FreeCAD é o ambiente [ scripti [Category:User\_Documentation/pt-br](Category:User_Documentation/pt-br.md) + +--- +[documentation index](../README.md) > Getting started/pt-br diff --git a/wiki/translations/pt-br/Glossary.md b/wiki/translations/pt-br/Glossary.md index 93308a6a35..410856b905 100644 --- a/wiki/translations/pt-br/Glossary.md +++ b/wiki/translations/pt-br/Glossary.md @@ -1,9 +1,4 @@ # Glossary/pt-br - - - - - This page is a glossary of common FreeCAD terms and definitions. Jump to letter: {{CompactTOC|center=yes}} @@ -1140,3 +1135,6 @@ Jump to letter: {{CompactTOC|center=yes}} [Category:Wiki](Category:Wiki.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Wiki](Category:Wiki.md) > Glossary/pt-br diff --git a/wiki/translations/pt-br/GuiCommand_model.md b/wiki/translations/pt-br/GuiCommand_model.md index 07b0d3c4c6..e3d24787f6 100644 --- a/wiki/translations/pt-br/GuiCommand_model.md +++ b/wiki/translations/pt-br/GuiCommand_model.md @@ -9,6 +9,8 @@ SeeAlso: --- +# GuiCommand model/pt-br + ## Description While the page is under construction, add the [Template:UnfinishedDocu](Template:UnfinishedDocu.md) template at the top of the page by simply typing: **** @@ -206,3 +208,6 @@ Optional. }} [Category:Wiki:Example](Category:Wiki:Example.md) + +--- +[documentation index](../README.md) > [API]] and ](Category:API]] and .md) > GuiCommand model/pt-br diff --git a/wiki/translations/pt-br/Help_FreeCAD.md b/wiki/translations/pt-br/Help_FreeCAD.md index 52ba93a742..8a96be3512 100644 --- a/wiki/translations/pt-br/Help_FreeCAD.md +++ b/wiki/translations/pt-br/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/pt-br - - ## Introdução @@ -87,3 +85,6 @@ Escrever código para o FreeCAD não é difícil e você não precisa de nenhuma [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command Reference|:Categoria:Referência de Comando]] lista e documenta todos os ](Category:Command Reference|:Categoria:Referência de Comando]] lista e documenta todos os .md) > Help FreeCAD/pt-br diff --git a/wiki/translations/pt-br/History.md b/wiki/translations/pt-br/History.md index 0c45758283..36bdca32e3 100644 --- a/wiki/translations/pt-br/History.md +++ b/wiki/translations/pt-br/History.md @@ -1,5 +1,5 @@ # History/pt-br - \_\_FORCETOC\_\_ +\_\_FORCETOC\_\_ ## History @@ -140,3 +140,6 @@ In April 2019 the team of core developers was expanded: Jürgen, Werner and Yori - [Announcing FreeCAD Project](http://www.opencascade.org/org/forum/thread_6572/?forum=11) on the OpenCascade forum [Category:News](Category:News.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > History/pt-br diff --git a/wiki/translations/pt-br/How_to_install_additional_workbenches.md b/wiki/translations/pt-br/How_to_install_additional_workbenches.md index e8e36a8637..9a72939bd1 100644 --- a/wiki/translations/pt-br/How_to_install_additional_workbenches.md +++ b/wiki/translations/pt-br/How_to_install_additional_workbenches.md @@ -1,5 +1,5 @@ # How to install additional workbenches/pt-br - {{TutorialInfo +{{TutorialInfo |Topic=Programming |Level=Medium programmer |Time=15 minutes @@ -169,3 +169,6 @@ For the sake of this example, say you\'ve chosen the [Curves Workbench](Curves_W {{Powerdocnavi}} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External Workbenches](Category:External Workbenches.md) > How to install additional workbenches/pt-br diff --git a/wiki/translations/pt-br/How_to_install_macros.md b/wiki/translations/pt-br/How_to_install_macros.md index 662097695f..27dd7d1b8e 100644 --- a/wiki/translations/pt-br/How_to_install_macros.md +++ b/wiki/translations/pt-br/How_to_install_macros.md @@ -1,5 +1,5 @@ # How to install macros/pt-br - {{TutorialInfo +{{TutorialInfo |Topic=Programming |Level=Medium programmer |Time=15 minutes @@ -472,3 +472,6 @@ and then press the **OK** button. }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > How to install macros/pt-br diff --git a/wiki/translations/pt-br/Image_CreateImagePlane.md b/wiki/translations/pt-br/Image_CreateImagePlane.md index 074870a449..8fc92c0faa 100644 --- a/wiki/translations/pt-br/Image_CreateImagePlane.md +++ b/wiki/translations/pt-br/Image_CreateImagePlane.md @@ -6,6 +6,8 @@ SeeAlso:[Image Open](Image_Open.md), [Image Scaling](Image_Scaling.md) --- +# Image CreateImagePlane/pt-br + ## Descrição The [CreateImagePlane](Image_CreateImagePlane.md) tool imports a [bitmap](bitmap.md) image and places it on one of the XY, YZ or XZ planes. @@ -54,4 +56,7 @@ If no offset is given to the image initially, its position can still be adjusted {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image CreateImagePlane/pt-br diff --git a/wiki/translations/pt-br/Image_Module.md b/wiki/translations/pt-br/Image_Module.md index 851d75c77f..a6700580c2 100644 --- a/wiki/translations/pt-br/Image_Module.md +++ b/wiki/translations/pt-br/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/pt-br 1. REDIRECT [Image\_Workbench/pt-br](Image_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/pt-br diff --git a/wiki/translations/pt-br/Image_Open.md b/wiki/translations/pt-br/Image_Open.md index 2015aebfa4..f416e662e7 100644 --- a/wiki/translations/pt-br/Image_Open.md +++ b/wiki/translations/pt-br/Image_Open.md @@ -6,6 +6,8 @@ SeeAlso:[Image CreateImagePlane](Image_CreateImagePlane.md), [Image Scaling](Image_Scaling.md) --- +# Image Open/pt-br + ## Descrição The [Image Open](Image_Open.md) tool simply opens an image from your system in a new tab in the viewport. @@ -29,4 +31,7 @@ The image is placed in a new viewport, not in the 3D view. {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Open/pt-br diff --git a/wiki/translations/pt-br/Image_Scaling.md b/wiki/translations/pt-br/Image_Scaling.md index dec60990e1..1f4a17373c 100644 --- a/wiki/translations/pt-br/Image_Scaling.md +++ b/wiki/translations/pt-br/Image_Scaling.md @@ -7,6 +7,8 @@ SeeAlso:[Image Open](Image_Open.md), [Image CreateImagePlane](Image_CreateImagePlane.md) --- +# Image Scaling/pt-br + ## Descrição The [Image Scaling](Image_Scaling.md) tool scales an image that was imported with the [Image plane](Image_CreateImagePlane.md) tool. @@ -31,4 +33,7 @@ The [Image Scaling](Image_Scaling.md) tool scales an image that was imported wit {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Scaling/pt-br diff --git a/wiki/translations/pt-br/Image_Workbench.md b/wiki/translations/pt-br/Image_Workbench.md index a09cf2cf5f..21814c36c1 100644 --- a/wiki/translations/pt-br/Image_Workbench.md +++ b/wiki/translations/pt-br/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/pt-br - - -Ícone da bancada de trabalho de imagem +# Ícone da bancada de trabalho de imagem Image Workbench/pt-br ## Introdução @@ -39,3 +36,6 @@ O deslocamento da imagem pode ser configurado durante a importação ou alterada }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/pt-br diff --git a/wiki/translations/pt-br/Import_Export.md b/wiki/translations/pt-br/Import_Export.md index 45d78bbbba..15fd77e400 100644 --- a/wiki/translations/pt-br/Import_Export.md +++ b/wiki/translations/pt-br/Import_Export.md @@ -1,9 +1,4 @@ # Import Export/pt-br - - - - - ## Introdução This page lists the various file formats that FreeCAD can import and export. For completeness the FreeCAD native format is included in the list. Some formats have a related wiki page that can be reached by clicking on the extension in the first column. @@ -144,3 +139,6 @@ See the following pages for additional information: [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export/pt-br diff --git a/wiki/translations/pt-br/Import_Export_Preferences.md b/wiki/translations/pt-br/Import_Export_Preferences.md index 4143810da0..a96d53b98f 100644 --- a/wiki/translations/pt-br/Import_Export_Preferences.md +++ b/wiki/translations/pt-br/Import_Export_Preferences.md @@ -1,10 +1,4 @@ # Import Export Preferences/pt-br - - - - - - {{TOCright}} ## Introdução @@ -627,3 +621,6 @@ For the VTK format you can specify the following: [Category:Common Questions](Category:Common_Questions.md) [Category:Preferences](Category:Preferences.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preferences/pt-br diff --git a/wiki/translations/pt-br/Import_from_STL_or_OBJ.md b/wiki/translations/pt-br/Import_from_STL_or_OBJ.md index 5cf78eb0a0..80d571b572 100644 --- a/wiki/translations/pt-br/Import_from_STL_or_OBJ.md +++ b/wiki/translations/pt-br/Import_from_STL_or_OBJ.md @@ -1,5 +1,5 @@ # Import from STL or OBJ/pt-br - {{TutorialInfo +{{TutorialInfo |Topic= Import from STL or OBJ |Level= Beginner |Time= 30 minutes @@ -101,3 +101,6 @@ Since the created solid has no history and no editable features (like a simple c [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import from STL or OBJ/pt-br diff --git a/wiki/translations/pt-br/Inspection_Workbench.md b/wiki/translations/pt-br/Inspection_Workbench.md index 7d3a901ca7..66563167f2 100644 --- a/wiki/translations/pt-br/Inspection_Workbench.md +++ b/wiki/translations/pt-br/Inspection_Workbench.md @@ -1,7 +1,4 @@ -# Inspection Workbench/pt-br - - -Inspection workbench icon +# Inspection workbench icon Inspection Workbench/pt-br
@@ -45,3 +42,6 @@ Alternativamente, use a macro Inspection Workbench/pt-br diff --git a/wiki/translations/pt-br/Install_on_Linux.md b/wiki/translations/pt-br/Install_on_Linux.md index 8c37c47986..a935d3df76 100644 --- a/wiki/translations/pt-br/Install_on_Linux.md +++ b/wiki/translations/pt-br/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/pt-br 1. REDIRECT [Installing\_on\_Linux/pt-br](Installing_on_Linux/pt-br.md) + +--- +[documentation index](../README.md) > Install on Linux/pt-br diff --git a/wiki/translations/pt-br/Install_on_Mac.md b/wiki/translations/pt-br/Install_on_Mac.md index 573aff4d34..fce4dd76ca 100644 --- a/wiki/translations/pt-br/Install_on_Mac.md +++ b/wiki/translations/pt-br/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/pt-br 1. REDIRECT [Installing\_on\_Mac/pt-br](Installing_on_Mac/pt-br.md) + +--- +[documentation index](../README.md) > Install on Mac/pt-br diff --git a/wiki/translations/pt-br/Install_on_Unix.md b/wiki/translations/pt-br/Install_on_Unix.md index 216d8f858e..657ffe0334 100644 --- a/wiki/translations/pt-br/Install_on_Unix.md +++ b/wiki/translations/pt-br/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/pt-br 1. REDIRECT [Installing\_on\_Linux/pt-br](Installing_on_Linux/pt-br.md) + +--- +[documentation index](../README.md) > Install on Unix/pt-br diff --git a/wiki/translations/pt-br/Install_on_Windows.md b/wiki/translations/pt-br/Install_on_Windows.md index 76dce2ba3a..9565e66cbc 100644 --- a/wiki/translations/pt-br/Install_on_Windows.md +++ b/wiki/translations/pt-br/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/pt-br 1. REDIRECT [Installing\_on\_Windows/pt-br](Installing_on_Windows/pt-br.md) + +--- +[documentation index](../README.md) > Install on Windows/pt-br diff --git a/wiki/translations/pt-br/Installing.md b/wiki/translations/pt-br/Installing.md index 0d7eb7681f..365c1884de 100644 --- a/wiki/translations/pt-br/Installing.md +++ b/wiki/translations/pt-br/Installing.md @@ -1,2 +1,5 @@ # Installing/pt-br 1. REDIRECT [Installing\_additional\_components/pt-br](Installing_additional_components/pt-br.md) + +--- +[documentation index](../README.md) > Installing/pt-br diff --git a/wiki/translations/pt-br/Installing_Helpfile.md b/wiki/translations/pt-br/Installing_Helpfile.md index 2fd856c443..069eb77132 100644 --- a/wiki/translations/pt-br/Installing_Helpfile.md +++ b/wiki/translations/pt-br/Installing_Helpfile.md @@ -1,6 +1,4 @@ # Installing Helpfile/pt-br - - ## FreeCAD arquivo de ajuda @@ -62,5 +60,5 @@ Podem surgir dificuldades ao tentar instalar os pacotes de documentação no Ubu
- - +--- +[documentation index](../README.md) > Installing Helpfile/pt-br diff --git a/wiki/translations/pt-br/Installing_additional_components.md b/wiki/translations/pt-br/Installing_additional_components.md index fd05b0f617..830b4b3fdc 100644 --- a/wiki/translations/pt-br/Installing_additional_components.md +++ b/wiki/translations/pt-br/Installing_additional_components.md @@ -1,10 +1,4 @@ # Installing additional components/pt-br - - - - - - {{TOCright}} # Introdução @@ -153,3 +147,6 @@ O [ODA File Converter](https://www.opendesign.com/guestfiles/oda_file_converter) [Category:User Documentation/pt-br](Category:User_Documentation/pt-br.md) + +--- +[documentation index](../README.md) > Installing additional components/pt-br diff --git a/wiki/translations/pt-br/Installing_on_Linux.md b/wiki/translations/pt-br/Installing_on_Linux.md index 0b9d68156d..2ea9dc049a 100644 --- a/wiki/translations/pt-br/Installing_on_Linux.md +++ b/wiki/translations/pt-br/Installing_on_Linux.md @@ -1,9 +1,4 @@ # Installing on Linux/pt-br - - - - - ## Visão geral @@ -397,3 +392,6 @@ Uma vez que você tenha o FreeCAD instalado, é hora de [Começar a usar](Gettin [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/pt-br diff --git a/wiki/translations/pt-br/Installing_on_Mac.md b/wiki/translations/pt-br/Installing_on_Mac.md index 1d9b0be042..43ed5dc562 100644 --- a/wiki/translations/pt-br/Installing_on_Mac.md +++ b/wiki/translations/pt-br/Installing_on_Mac.md @@ -1,9 +1,4 @@ # Installing on Mac/pt-br - - - - - FreeCAD pode ser instalado no MacOS a partir de um pacote .dmg que você pode arrastar e soltar em sua pasta de Aplicações: @@ -50,8 +45,5 @@ Atualmente não há um desinstalador para FreeCAD instalado com o pacote dmg. Pa Se você instalou o FreeCAD com homebrew simplesmente use o comando `brew uninstall freecad`. É isso aí. - - - - - +--- +[documentation index](../README.md) > Installing on Mac/pt-br diff --git a/wiki/translations/pt-br/Installing_on_Windows.md b/wiki/translations/pt-br/Installing_on_Windows.md index 3071bee682..cf28935ac0 100644 --- a/wiki/translations/pt-br/Installing_on_Windows.md +++ b/wiki/translations/pt-br/Installing_on_Windows.md @@ -1,9 +1,4 @@ # Installing on Windows/pt-br - - - - - Você pode instalar o FreeCAD no Windows baixando um dos instaladores abaixo: @@ -190,8 +185,5 @@ msiexec /i Y:\\software\\FreeCAD.msi O FreeCAD está rodando, mas foi relatado que a tela OpenGL não funciona, como com outros programas rodando sob [Wine](wikipedia:Wine_(software).md), ou seja, Google [SketchUp](wikipedia:SketchUp.md). - - - - - +--- +[documentation index](../README.md) > Installing on Windows/pt-br diff --git a/wiki/translations/pt-br/Interface.md b/wiki/translations/pt-br/Interface.md index 7dc8f84c24..c1722c26a2 100644 --- a/wiki/translations/pt-br/Interface.md +++ b/wiki/translations/pt-br/Interface.md @@ -1,5 +1,5 @@ # Interface/pt-br - {{TOCright}} +{{TOCright}} ## Introdução @@ -79,4 +79,7 @@ These options are in the menu, **Tools → Customize**. See [interface customiza {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Interface/pt-br diff --git a/wiki/translations/pt-br/Interface_Customization.md b/wiki/translations/pt-br/Interface_Customization.md index 62dadd6603..a8a0b663f3 100644 --- a/wiki/translations/pt-br/Interface_Customization.md +++ b/wiki/translations/pt-br/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/pt-br - - - - - - {{TOCright}} ## Introdução @@ -285,4 +279,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/pt-br diff --git a/wiki/translations/pt-br/Introduction_to_Python.md b/wiki/translations/pt-br/Introduction_to_Python.md index 7f56e6b4c8..622379550f 100644 --- a/wiki/translations/pt-br/Introduction_to_Python.md +++ b/wiki/translations/pt-br/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/pt-br - - - {{TOCright}} ## Introduction @@ -501,3 +498,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/pt-br diff --git a/wiki/translations/pt-br/Licence.md b/wiki/translations/pt-br/Licence.md index bc2ff780dc..b61c5b9f54 100644 --- a/wiki/translations/pt-br/Licence.md +++ b/wiki/translations/pt-br/Licence.md @@ -1,10 +1,4 @@ # Licence/pt-br - - - - - - {{TOCright}} ## Licenças utilizadas no FreeCAD @@ -61,3 +55,6 @@ Nevertheless this decision is made only for the core system of FreeCAD. Every wr [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Licence/pt-br diff --git a/wiki/translations/pt-br/List_of_Commands.md b/wiki/translations/pt-br/List_of_Commands.md index 4f5a602c33..70102cb22e 100644 --- a/wiki/translations/pt-br/List_of_Commands.md +++ b/wiki/translations/pt-br/List_of_Commands.md @@ -1,2 +1,5 @@ # List of Commands/pt-br 1. REDIRECT [:Category:Command Reference/pt-br](:Category:Command_Reference/pt-br.md) + +--- +[documentation index](../README.md) > List of Commands/pt-br diff --git a/wiki/translations/pt-br/Localisation.md b/wiki/translations/pt-br/Localisation.md index c1b37174a1..154e24d2cb 100644 --- a/wiki/translations/pt-br/Localisation.md +++ b/wiki/translations/pt-br/Localisation.md @@ -1,7 +1,4 @@ # Localisation/pt-br - - -
@@ -251,3 +248,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/pt-br diff --git a/wiki/translations/pt-br/LuxCoreRender.md b/wiki/translations/pt-br/LuxCoreRender.md index 2b786eac5e..7102121c03 100644 --- a/wiki/translations/pt-br/LuxCoreRender.md +++ b/wiki/translations/pt-br/LuxCoreRender.md @@ -1,7 +1,4 @@ # LuxCoreRender/pt-br - - - **LuxCoreRender is not officially supported by the [Raytracing Workbench](Raytracing_Workbench.md), it is instead supported by the by the new [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This must not be confused with the halted and outdated [Render project](Render_project.md). The Render Workbench can be installed through the [Addon Manager](Std_AddonMgr.md).** # Description @@ -108,3 +105,6 @@ Set the LuxCore UI path to point to your installation of LuxCoreRender, usually After installing the Render Workbench and LuxCoreRender, launch FreeCAD, open the [Preferences Editor](Preferences_Editor.md), [load the Render Workbench](Preferences_Editor#Unloaded_Workbenches.md), and go to the Render Preferences. Set the LuxCore command (cli) path, something like *C:/Tools/LuxCore/pyluxcoretool.exe* and LuxCore UI path, something like *C:/Tools/LuxCore/luxcoreui.exe*, then apply. + +--- +[documentation index](../README.md) > LuxCoreRender/pt-br diff --git a/wiki/translations/pt-br/LuxRender.md b/wiki/translations/pt-br/LuxRender.md index e28e3082c6..c76375eaeb 100644 --- a/wiki/translations/pt-br/LuxRender.md +++ b/wiki/translations/pt-br/LuxRender.md @@ -1,7 +1,4 @@ # LuxRender/pt-br - - - **LuxRender is no longer in development as the project has been rebooted as [LuxCoreRender](LuxCoreRender.md) with a major code rewriting and a lot of compatibility breaking changes. The information here is provided because by default FreeCAD is still shipped (as of 0.19-24276) with the [Raytracing Workbench](Raytracing_Workbench.md), that officially only supports LuxRender. Anyway it also seem to work with [LuxCoreRender](LuxCoreRender.md), so consider giving it a try before using LuxRender** # Description @@ -58,3 +55,6 @@ There is no development version of LuxRender, as development has been halted in ## Render Workbench The [Render Workbench](https://github.com/FreeCAD/FreeCAD-render) has dropped support for LuxRender, as it is outdated. It supports instead the modern reboot [LuxCoreRender](LuxCoreRender.md). + +--- +[documentation index](../README.md) > LuxRender/pt-br diff --git a/wiki/translations/pt-br/Macro_Screen_Wiki.md b/wiki/translations/pt-br/Macro_Screen_Wiki.md index 832100cfa2..01309c385b 100644 --- a/wiki/translations/pt-br/Macro_Screen_Wiki.md +++ b/wiki/translations/pt-br/Macro_Screen_Wiki.md @@ -1,7 +1,4 @@ # Macro Screen Wiki/pt-br - - - {{Macro |Name=Macro Screen Wiki |Icon=Macro_Screen_Wiki.png @@ -277,3 +274,6 @@ Version=0.03: 2020/10/30 : create a tool bar for the image and new button for un Version=0.02: 2020/05/04 : correct bug color button (self.PB\_01\_Color obsolete) Version=0.01: 2020/03/21 + +--- +[documentation index](../README.md) > Macro Screen Wiki/pt-br diff --git a/wiki/translations/pt-br/Macro_Snip.md b/wiki/translations/pt-br/Macro_Snip.md index dd9735d4c3..13ff34540a 100644 --- a/wiki/translations/pt-br/Macro_Snip.md +++ b/wiki/translations/pt-br/Macro_Snip.md @@ -1,5 +1,5 @@ # Macro Snip/pt-br - {{Macro +{{Macro |Name=Snip |Icon=Snip.png |Description=Use this macro to easily post screenshots to the FreeCAD forum.
It is best to add this macro to your global custom macros toolbar for quick and easy access.
When posting to the FreeCAD forum it is often useful to be able to include screenshots. The problem is this is a somewhat tedious task. This macro is to make that task a bit easier.
The macro can take screenshots or it can use existing screenshots that have already been copied to the system clipboard. To bypass the image already in clipboard press the Shift key while invoking the macro. To use the macro to take the screenshot adjust the size and placement of the dialog that pops up, then click OK. Upon clicking OK the macro will attempt to take a screenshot of the area of the screen covered by the dialog. The dialog itself is semi-transparent, so you can see the contents beneath. @@ -324,3 +324,6 @@ if not userCanceled: ## Link The forum discussion [Snip macro](https://forum.freecadweb.org/viewtopic.php?f=9&t=38328&sid=385bf3174dcae7fb8bdf529f4e76dfed) + +--- +[documentation index](../README.md) > Macro Snip/pt-br diff --git a/wiki/translations/pt-br/Macros.md b/wiki/translations/pt-br/Macros.md index 907ba45955..af97fe1147 100644 --- a/wiki/translations/pt-br/Macros.md +++ b/wiki/translations/pt-br/Macros.md @@ -1,7 +1,4 @@ # Macros/pt-br - - - {{TOCright}} ## Introduction @@ -74,3 +71,6 @@ You can manually install extensions, however, it is much simpler to just use the }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/pt-br diff --git a/wiki/translations/pt-br/Main_Page.md b/wiki/translations/pt-br/Main_Page.md index 7a9f324d36..36754f8a14 100644 --- a/wiki/translations/pt-br/Main_Page.md +++ b/wiki/translations/pt-br/Main_Page.md @@ -1,7 +1,4 @@ # Main Page/pt-br - - -
## Introdução @@ -72,3 +69,6 @@ Visite o [Mapa de desenvolvimento](Development_roadmap/pt-br.md) para ver notíc [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/pt-br diff --git a/wiki/translations/pt-br/Main_view_area.md b/wiki/translations/pt-br/Main_view_area.md index 9bbc76a13b..7348974eb4 100644 --- a/wiki/translations/pt-br/Main_view_area.md +++ b/wiki/translations/pt-br/Main_view_area.md @@ -1,6 +1,4 @@ # Main view area/pt-br - - ## Introdução The [main view area](main_view_area.md) is the main widget that holds sub-windows in the [interface](interface.md). It is an instance of Qt\'s [QMdiArea](https://doc.qt.io/qt-5/qmdiarea.html). @@ -19,4 +17,7 @@ The windows in the main view area can be organized with commands located in the {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Main view area/pt-br diff --git a/wiki/translations/pt-br/Manipulator.md b/wiki/translations/pt-br/Manipulator.md index 9934a1188b..2225c65e48 100644 --- a/wiki/translations/pt-br/Manipulator.md +++ b/wiki/translations/pt-br/Manipulator.md @@ -1,5 +1,5 @@ # Manipulator/pt-br - } +} ## Description @@ -13,3 +13,6 @@ A **manipulator** can be used to modify an object\'s appearance, shape, or other [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Manipulator/pt-br diff --git a/wiki/translations/pt-br/Manual:BIM_modeling.md b/wiki/translations/pt-br/Manual:BIM_modeling.md index 4e5a5fd9b4..8884d416fb 100644 --- a/wiki/translations/pt-br/Manual:BIM_modeling.md +++ b/wiki/translations/pt-br/Manual:BIM_modeling.md @@ -1,5 +1,5 @@ # Manual:BIM modeling/pt-br - } +} @@ -243,3 +243,6 @@ Our page is now ready, and we can export it to SVG or DXF formats, or print it. }} [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Manual:BIM modeling/pt-br diff --git a/wiki/translations/pt-br/Manual:Introduction.md b/wiki/translations/pt-br/Manual:Introduction.md index 6791313874..978b137242 100644 --- a/wiki/translations/pt-br/Manual:Introduction.md +++ b/wiki/translations/pt-br/Manual:Introduction.md @@ -1,10 +1,4 @@ # Manual:Introduction/pt-br - - - - - - {{Manual:TOC}} ![150\|center](images/Crystal_Clear_manual.png ) @@ -19,6 +13,5 @@ Este manual está sendo escrito para a mais nova versão estável do FreeCAD, ve O conteúdo deste manual foi publicado sob a licença [Creative Commons 4.0](http://creativecommons.org/licenses/by/4.0/), e pode ser utilizada livremente, baixada, copiada e modificada. Os arquivos-fontes deste manual estão hospedados nesta [wiki](Main_Page/pt-br.md), e na conta original do [github](https://github.com/yorikvanhavre/FreeCAD-manual) utilizada para escrever a primeira versão deste livro. As versões para leitura em HTML, PDF, MOBI and EPUB estão disponíveis no [GitBook](https://www.gitbook.com/book/yorikvanhavre/a-freecad-manual/details). Uma versão impressa está sendo preparada. - - - +--- +[documentation index](../README.md) > Manual:Introduction/pt-br diff --git a/wiki/translations/pt-br/Manual:What_is_FreeCAD.md b/wiki/translations/pt-br/Manual:What_is_FreeCAD.md index 28ec8aaec0..54b051c1a7 100644 --- a/wiki/translations/pt-br/Manual:What_is_FreeCAD.md +++ b/wiki/translations/pt-br/Manual:What_is_FreeCAD.md @@ -1,7 +1,4 @@ # Manual:What is FreeCAD/pt-br - - - {{Manual:TOC}} ![](images/Freecad016_screenshot1.jpg ) @@ -22,6 +19,5 @@ The official website of FreeCAD is at - [List of features](Feature_list.md) - [Screenshots and user cases](http://forum.freecadweb.org/viewforum.php?f=24) - - - +--- +[documentation index](../README.md) > Manual:What is FreeCAD/pt-br diff --git a/wiki/translations/pt-br/Material.md b/wiki/translations/pt-br/Material.md index 629682bd97..e6b8463aa2 100644 --- a/wiki/translations/pt-br/Material.md +++ b/wiki/translations/pt-br/Material.md @@ -1,5 +1,5 @@ # Material/pt-br - } +} ## Overview @@ -170,3 +170,6 @@ This section defines material-properties which are related to the visual appeara {{FEM Tools navi}} [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Roadmap](Category:Roadmap.md) [Category:BIM](Category:BIM.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Material/pt-br diff --git a/wiki/translations/pt-br/Material_editor.md b/wiki/translations/pt-br/Material_editor.md index 7073363c96..4013377c02 100644 --- a/wiki/translations/pt-br/Material_editor.md +++ b/wiki/translations/pt-br/Material_editor.md @@ -8,6 +8,8 @@ SeeAlso:[Material](Material.md), [Arch SetMaterial](Arch_SetMaterial.md), [FEM tutorial](FEM_tutorial.md) --- +# Material editor/pt-br + ## Descrição The Material Editor allows you to edit and save the information contained in a [FreeCAD material](Material.md). Currently such materials are used by the ** [FEM](FEM_Workbench.md)** and ** [Arch](Arch_Workbench.md)** workbenches. @@ -68,4 +70,7 @@ MaterialEditor.openEditor() {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Material](Material_Workbench.md) > Material editor/pt-br diff --git a/wiki/translations/pt-br/Mesh_FromPartShape.md b/wiki/translations/pt-br/Mesh_FromPartShape.md index a1cb91d26c..80c9acc7b7 100644 --- a/wiki/translations/pt-br/Mesh_FromPartShape.md +++ b/wiki/translations/pt-br/Mesh_FromPartShape.md @@ -5,6 +5,8 @@ Workbenches:[Mesh](Mesh_Workbench.md) --- +# Mesh FromPartShape/pt-br + ## Descrição The **Mesh\_FromPartShape** command creates non-parametric [mesh](mesh.md) objects ([Mesh Features](Mesh_Feature.md)) from [shape](shape.md) objects ([Part Features](Part_Feature.md)). @@ -190,4 +192,7 @@ msh.ViewObject.DisplayMode = "Flat Lines" {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FromPartShape/pt-br diff --git a/wiki/translations/pt-br/Mesh_Module.md b/wiki/translations/pt-br/Mesh_Module.md index 99f2952488..6506155d82 100644 --- a/wiki/translations/pt-br/Mesh_Module.md +++ b/wiki/translations/pt-br/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/pt-br 1. REDIRECT [Mesh Workbench/pt-br](Mesh_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/pt-br diff --git a/wiki/translations/pt-br/Mesh_Workbench.md b/wiki/translations/pt-br/Mesh_Workbench.md index 7c5f24de3c..331907b016 100644 --- a/wiki/translations/pt-br/Mesh_Workbench.md +++ b/wiki/translations/pt-br/Mesh_Workbench.md @@ -1,7 +1,4 @@ # Mesh Workbench/pt-br - - -
@@ -123,3 +120,6 @@ As preferências da Bancada de Trabalho Mesh podem ser encontradas nas seguintes }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/pt-br diff --git a/wiki/translations/pt-br/Migrating_to_FreeCAD_from_Fusion360.md b/wiki/translations/pt-br/Migrating_to_FreeCAD_from_Fusion360.md index 6ecbdfd9a3..439b1970f6 100644 --- a/wiki/translations/pt-br/Migrating_to_FreeCAD_from_Fusion360.md +++ b/wiki/translations/pt-br/Migrating_to_FreeCAD_from_Fusion360.md @@ -1,5 +1,5 @@ # Migrating to FreeCAD from Fusion360/pt-br - {{TOCright}} +{{TOCright}} ## Background @@ -56,5 +56,5 @@ Is this wiki page missing something. Please make a request for [wiki permissions - [Migrating to FreeCAD from OnShape](Migrating_to_FreeCAD_from_OnShape.md) - - +--- +[documentation index](../README.md) > Migrating to FreeCAD from Fusion360/pt-br diff --git a/wiki/translations/pt-br/Module_Creation.md b/wiki/translations/pt-br/Module_Creation.md index 7455a4cf96..6cd025735b 100644 --- a/wiki/translations/pt-br/Module_Creation.md +++ b/wiki/translations/pt-br/Module_Creation.md @@ -1,2 +1,5 @@ # Module Creation/pt-br 1. REDIRECT [Workbench\_creation](Workbench_creation.md) + +--- +[documentation index](../README.md) > Module Creation/pt-br diff --git a/wiki/translations/pt-br/Mouse_Model.md b/wiki/translations/pt-br/Mouse_Model.md index 06b1f976af..03a7896d9b 100644 --- a/wiki/translations/pt-br/Mouse_Model.md +++ b/wiki/translations/pt-br/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/pt-br 1. REDIRECT [Mouse\_navigation/pt-br](Mouse_navigation/pt-br.md) + +--- +[documentation index](../README.md) > Mouse Model/pt-br diff --git a/wiki/translations/pt-br/Mouse_navigation.md b/wiki/translations/pt-br/Mouse_navigation.md index 320347916c..9aaa5000b3 100644 --- a/wiki/translations/pt-br/Mouse_navigation.md +++ b/wiki/translations/pt-br/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/pt-br - - - - - - {{TOCright}} ## Overview @@ -280,7 +274,5 @@ Recentemente recebemos relatórios [http://forum.freecadweb.org/viewtopic.php?f= The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mouse_navigation_option_to_FreeCAD.md) orients developers who want to develop a custom mouse navigation option. Familiarity with the C++ syntax is required. - - - - +--- +[documentation index](../README.md) > Mouse navigation/pt-br diff --git a/wiki/translations/pt-br/Multithreading.md b/wiki/translations/pt-br/Multithreading.md index 265454821b..4de5ed184c 100644 --- a/wiki/translations/pt-br/Multithreading.md +++ b/wiki/translations/pt-br/Multithreading.md @@ -1,7 +1,4 @@ # Multithreading/pt-br - - - **This is a stub that needs expanding.** ## Multithreading in FreeCAD @@ -21,3 +18,6 @@ }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Multithreading/pt-br diff --git a/wiki/translations/pt-br/Navigation_Cube.md b/wiki/translations/pt-br/Navigation_Cube.md index 94d88adfe5..6f5f01f297 100644 --- a/wiki/translations/pt-br/Navigation_Cube.md +++ b/wiki/translations/pt-br/Navigation_Cube.md @@ -1,10 +1,4 @@ # Navigation Cube/pt-br - - - - - - {{TOCright}} O controle do cubo de navegação, ou *\'cubo de navegação*, é uma ajuda gráfica de interface com o usuário para reorientar a visualização 3D. Por padrão, ele é visível e reside no canto superior direito da tela 3D. Se você estiver olhando para a vista 3D padrão, ela se parece com o seguinte: @@ -86,3 +80,6 @@ Para uma configuração mais avançada, consulte o **CubeMenu** [Bancadas de tra [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Navigation Cube/pt-br diff --git a/wiki/translations/pt-br/Object_name.md b/wiki/translations/pt-br/Object_name.md index 9ca61db78e..e0f881b3d8 100644 --- a/wiki/translations/pt-br/Object_name.md +++ b/wiki/translations/pt-br/Object_name.md @@ -1,6 +1,4 @@ # Object name/pt-br - - ## Introdução @@ -118,5 +116,5 @@ obj3 = App.ActiveDocument.getObjectsByLabel("Some special name for this cube__00 Given that the `Label` is in general not unique, the `getObjectsByLabel` method returns a list with all objects found with that `Label`. However, if the `Label` is unique in the document then the first element in that list should be the desired object. - - +--- +[documentation index](../README.md) > Object name/pt-br diff --git a/wiki/translations/pt-br/Offsite_tutorials.md b/wiki/translations/pt-br/Offsite_tutorials.md index 65ddccc782..f14cf0cf1d 100644 --- a/wiki/translations/pt-br/Offsite_tutorials.md +++ b/wiki/translations/pt-br/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/pt-br - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** This page lists FreeCAD tutorials found on other sites on the web. @@ -18,4 +18,7 @@ This page lists FreeCAD tutorials found on other sites on the web. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/pt-br diff --git a/wiki/translations/pt-br/Online_Help_Startpage.md b/wiki/translations/pt-br/Online_Help_Startpage.md index b8d7bfbda7..153059c4d3 100644 --- a/wiki/translations/pt-br/Online_Help_Startpage.md +++ b/wiki/translations/pt-br/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/pt-br - - ![150](images/Crystal_Clear_app_tutorials.png ) ## Bem-vindo à ajuda on-line do FreeCAD @@ -22,3 +20,6 @@ Como você pode ter experimentado algumas vezes, os programadores não sabem esc [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/pt-br diff --git a/wiki/translations/pt-br/Online_Help_Toc.md b/wiki/translations/pt-br/Online_Help_Toc.md index ba205bcdda..57ed526bd1 100644 --- a/wiki/translations/pt-br/Online_Help_Toc.md +++ b/wiki/translations/pt-br/Online_Help_Toc.md @@ -1,7 +1,4 @@ # Online Help Toc/pt-br - - -
Este é o índice utilizado para criação automática do sistema de ajuda on-line do FreeCAD. Também há uma versão para impressão deste manual [clicando aqui](https://github.com/FreeCAD/FreeCAD/releases). @@ -153,3 +150,6 @@ There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction. [Category:Documentation/pt-br](Category:Documentation/pt-br.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/pt-br diff --git a/wiki/translations/pt-br/OpenCASCADE.md b/wiki/translations/pt-br/OpenCASCADE.md index 92653af380..99496d5d70 100644 --- a/wiki/translations/pt-br/OpenCASCADE.md +++ b/wiki/translations/pt-br/OpenCASCADE.md @@ -1,7 +1,4 @@ # OpenCASCADE/pt-br - - - {{TOCright}} ## Description @@ -88,3 +85,6 @@ Thus, out of shapes you can build very complex parts or, the other way round, ex }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > OpenCASCADE/pt-br diff --git a/wiki/translations/pt-br/OpenCamLib.md b/wiki/translations/pt-br/OpenCamLib.md index 5da8844588..3c5ffba1f9 100644 --- a/wiki/translations/pt-br/OpenCamLib.md +++ b/wiki/translations/pt-br/OpenCamLib.md @@ -1,6 +1,4 @@ # OpenCamLib/pt-br - - ## Descrição @@ -115,3 +113,6 @@ Thank you to [Dr. Anders Wallin](http://www.anderswallin.net/about/) for providi [Category:User Documentation](Category:User_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > OpenCamLib/pt-br diff --git a/wiki/translations/pt-br/OpenSCAD_Module.md b/wiki/translations/pt-br/OpenSCAD_Module.md index 1e3a331afd..df35e15c0d 100644 --- a/wiki/translations/pt-br/OpenSCAD_Module.md +++ b/wiki/translations/pt-br/OpenSCAD_Module.md @@ -1,2 +1,5 @@ # OpenSCAD Module/pt-br 1. REDIRECT [OpenSCAD\_Workbench/pt-br](OpenSCAD_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Module/pt-br diff --git a/wiki/translations/pt-br/OpenSCAD_Workbench.md b/wiki/translations/pt-br/OpenSCAD_Workbench.md index 06b73a47b5..9352c4098c 100644 --- a/wiki/translations/pt-br/OpenSCAD_Workbench.md +++ b/wiki/translations/pt-br/OpenSCAD_Workbench.md @@ -1,7 +1,4 @@ # OpenSCAD Workbench/pt-br - - -
@@ -108,3 +105,6 @@ Se o FreeCAD travar ao importar o CSG, é altamente recomendável que você ativ }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/pt-br diff --git a/wiki/translations/pt-br/POV-Ray.md b/wiki/translations/pt-br/POV-Ray.md index 3ad1446afa..0c1d08fa71 100644 --- a/wiki/translations/pt-br/POV-Ray.md +++ b/wiki/translations/pt-br/POV-Ray.md @@ -1,5 +1,5 @@ # POV-Ray/pt-br - **The development of POV-Ray seems to be halted. The latest stable version is 3.7.0.8 (2018-05-27), the latest development version is 3.8.0-x (2019-02-19), the [https://github.com/POV-Ray/povray/ official project on GitHub] has been edited the last time on 2019-03-08. Please remove this warning if the situation changes** +**The development of POV-Ray seems to be halted. The latest stable version is 3.7.0.8 (2018-05-27), the latest development version is 3.8.0-x (2019-02-19), the [https://github.com/POV-Ray/povray/ official project on GitHub] has been edited the last time on 2019-03-08. Please remove this warning if the situation changes** # Description @@ -97,3 +97,6 @@ After installing the Render Workbench and POV-Ray, launch FreeCAD, open the [Pre Set the POV-Ray executable path to point to your installation of POV-Ray, usually it is *C:/Program Files/POV-Ray/v3.7/bin/pvengine64.exe*, and apply. Then, before trying to render something, start POV-Ray separately and [set I/O restrictions according to POV-Ray documentation](https://wiki.povray.org/content/Documentation:Windows_Section_2.1), otherwise rendering will not work properly (or will not work at all). + +--- +[documentation index](../README.md) > POV-Ray/pt-br diff --git a/wiki/translations/pt-br/PartDesign_AdditiveBox.md b/wiki/translations/pt-br/PartDesign_AdditiveBox.md index 87314d7072..df3fcd689c 100644 --- a/wiki/translations/pt-br/PartDesign_AdditiveBox.md +++ b/wiki/translations/pt-br/PartDesign_AdditiveBox.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Primitive additive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign AdditiveBox/pt-br + ## Description Inserts a primitive box in the active Body as the first feature, or fuses it to the existing feature(s). @@ -45,4 +47,7 @@ The Box can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveBox/pt-br diff --git a/wiki/translations/pt-br/PartDesign_AdditiveCone.md b/wiki/translations/pt-br/PartDesign_AdditiveCone.md index aa07d6ccd1..ddcbbd4109 100644 --- a/wiki/translations/pt-br/PartDesign_AdditiveCone.md +++ b/wiki/translations/pt-br/PartDesign_AdditiveCone.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create an additive primitive](PartDesign_CompPrimitiveAdditive.md), [PartDesign Subtractive Cone](PartDesign_SubtractiveCone.md) --- +# PartDesign AdditiveCone/pt-br + ## Description Inserts a primitive cone in the active Body as the first feature, or fuses it to the existing feature(s). @@ -47,4 +49,7 @@ The Cone can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCone/pt-br diff --git a/wiki/translations/pt-br/PartDesign_AdditiveCylinder.md b/wiki/translations/pt-br/PartDesign_AdditiveCylinder.md index a6ca28e018..8064d5d8cc 100644 --- a/wiki/translations/pt-br/PartDesign_AdditiveCylinder.md +++ b/wiki/translations/pt-br/PartDesign_AdditiveCylinder.md @@ -7,6 +7,8 @@ SeeAlso:[Create an additive primitive](PartDesign_CompPrimitiveAdditive.md), [Subtractive Cylinder](PartDesign_SubtractiveCylinder.md) --- +# PartDesign AdditiveCylinder/pt-br + ## Description Inserts a primitive cylinder in the active Body as the first feature, or fuses it to the existing feature(s). @@ -51,4 +53,7 @@ The Cylinder can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCylinder/pt-br diff --git a/wiki/translations/pt-br/PartDesign_AdditiveEllipsoid.md b/wiki/translations/pt-br/PartDesign_AdditiveEllipsoid.md index 515741a06b..935306fdfe 100644 --- a/wiki/translations/pt-br/PartDesign_AdditiveEllipsoid.md +++ b/wiki/translations/pt-br/PartDesign_AdditiveEllipsoid.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign AdditiveEllipsoid/pt-br + ## Description Inserts a primitive ellipsoid in the active Body as the first feature, or fuses it to the existing feature(s). @@ -51,4 +53,7 @@ The Ellipsoid can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveEllipsoid/pt-br diff --git a/wiki/translations/pt-br/PartDesign_AdditiveHelix.md b/wiki/translations/pt-br/PartDesign_AdditiveHelix.md index fa6355d682..828ad3d493 100644 --- a/wiki/translations/pt-br/PartDesign_AdditiveHelix.md +++ b/wiki/translations/pt-br/PartDesign_AdditiveHelix.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign SubtractiveHelix](PartDesign_SubtractiveHelix.md) --- +# PartDesign AdditiveHelix/pt-br + ## Description The **AdditiveHelix** tool creates a solid by sweeping a selected sketch or 2D object along a helix path. @@ -124,4 +126,7 @@ If checked, the helix will be shown in the view, and updated automatically on ev {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveHelix/pt-br diff --git a/wiki/translations/pt-br/PartDesign_AdditiveLoft.md b/wiki/translations/pt-br/PartDesign_AdditiveLoft.md index 7b4ba63bec..1393fcd532 100644 --- a/wiki/translations/pt-br/PartDesign_AdditiveLoft.md +++ b/wiki/translations/pt-br/PartDesign_AdditiveLoft.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign AdditivePipe](PartDesign_AdditivePipe.md), [PartDesign SubtractiveLoft](PartDesign_SubtractiveLoft.md) --- +# PartDesign AdditiveLoft/pt-br + ## Description **Additive Loft** creates a solid in the active Body by making a transition between two or more sketches (also referred to as cross-sections). If the Body already contains features, the additive loft will be merged to them. @@ -85,4 +87,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveLoft/pt-br diff --git a/wiki/translations/pt-br/PartDesign_AdditivePipe.md b/wiki/translations/pt-br/PartDesign_AdditivePipe.md index 39afb5efd1..715eeb83eb 100644 --- a/wiki/translations/pt-br/PartDesign_AdditivePipe.md +++ b/wiki/translations/pt-br/PartDesign_AdditivePipe.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Additive Loft](PartDesign_AdditiveLoft.md), [PartDesign Subtractive Pipe](PartDesign_SubtractivePipe.md) --- +# PartDesign AdditivePipe/pt-br + ## Description **Additive Pipe** creates a solid in the active Body by sweeping one or more sketches (also referred to as cross-sections) along an open or closed path. If the Body already contains features, the additive pipe will be merged to them. @@ -100,4 +102,7 @@ To use more than one cross-section, start with the first cross-section sketch as {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePipe/pt-br diff --git a/wiki/translations/pt-br/PartDesign_AdditivePrism.md b/wiki/translations/pt-br/PartDesign_AdditivePrism.md index 6662c80037..66f4ecc46f 100644 --- a/wiki/translations/pt-br/PartDesign_AdditivePrism.md +++ b/wiki/translations/pt-br/PartDesign_AdditivePrism.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create an additive primitive](PartDesign_CompPrimitiveAdditive.md), [PartDesign Subtractive Prism](PartDesign_SubtractivePrism.md) --- +# PartDesign AdditivePrism/pt-br + ## Description Inserts a primitive prism in the active Body as the first feature, or fuses it to the existing feature(s). @@ -51,4 +53,7 @@ The Prism can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePrism/pt-br diff --git a/wiki/translations/pt-br/PartDesign_AdditiveSphere.md b/wiki/translations/pt-br/PartDesign_AdditiveSphere.md index e621efe617..57396fbc43 100644 --- a/wiki/translations/pt-br/PartDesign_AdditiveSphere.md +++ b/wiki/translations/pt-br/PartDesign_AdditiveSphere.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign AdditiveSphere/pt-br + ## Description Inserts a primitive sphere in the active Body as the first feature, or fuses it to the existing feature(s). @@ -47,4 +49,7 @@ The Sphere can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveSphere/pt-br diff --git a/wiki/translations/pt-br/PartDesign_AdditiveTorus.md b/wiki/translations/pt-br/PartDesign_AdditiveTorus.md index dba2d76102..0f48839319 100644 --- a/wiki/translations/pt-br/PartDesign_AdditiveTorus.md +++ b/wiki/translations/pt-br/PartDesign_AdditiveTorus.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign AdditiveTorus/pt-br + ## Description Inserts a primitive torus in the active Body as the first feature, or fuses it to the existing feature(s). @@ -49,4 +51,7 @@ The Torus can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveTorus/pt-br diff --git a/wiki/translations/pt-br/PartDesign_AdditiveWedge.md b/wiki/translations/pt-br/PartDesign_AdditiveWedge.md index 60a0c34d48..fd5ca01399 100644 --- a/wiki/translations/pt-br/PartDesign_AdditiveWedge.md +++ b/wiki/translations/pt-br/PartDesign_AdditiveWedge.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create an additive primitive](PartDesign_CompPrimitiveAdditive.md), [PartDesign Subtractive Wedge](PartDesign_SubtractiveWedge.md) --- +# PartDesign AdditiveWedge/pt-br + ## Description Inserts a primitive wedge in the active Body as the first feature, or fuses it to the existing feature(s). @@ -51,4 +53,7 @@ Wedges can be used to create pyramids by setting **X2 min/max** and **Z2 min/max {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveWedge/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Bearingholder_Tutorial_I.md b/wiki/translations/pt-br/PartDesign_Bearingholder_Tutorial_I.md index e81b1d413c..20767bd453 100644 --- a/wiki/translations/pt-br/PartDesign_Bearingholder_Tutorial_I.md +++ b/wiki/translations/pt-br/PartDesign_Bearingholder_Tutorial_I.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial I/pt-br - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -116,3 +112,6 @@ We have modelled the bearing holder top with the dimensions it will have after c [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial I/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Bearingholder_Tutorial_II.md b/wiki/translations/pt-br/PartDesign_Bearingholder_Tutorial_II.md index 1a07f664f7..da78e2aa33 100644 --- a/wiki/translations/pt-br/PartDesign_Bearingholder_Tutorial_II.md +++ b/wiki/translations/pt-br/PartDesign_Bearingholder_Tutorial_II.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial II/pt-br - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -89,3 +85,6 @@ For the rest of the machining, create a new Body. The bottom of the holder will [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial II/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Body.md b/wiki/translations/pt-br/PartDesign_Body.md index 97a7a735cd..0e64fc69fb 100644 --- a/wiki/translations/pt-br/PartDesign_Body.md +++ b/wiki/translations/pt-br/PartDesign_Body.md @@ -7,6 +7,8 @@ SeeAlso:[Std Part](Std_Part.md), [Feature editing](Feature_editing.md) --- +# PartDesign Body/pt-br + ## Descrição A [PartDesign Body](PartDesign_Body.md) is the base element to create solids shapes with the [PartDesign Workbench](PartDesign_Workbench.md). It can contain [sketches](Sketch.md), [datum objects](Datum.md), and [PartDesign Features](PartDesign_Feature.md) that help in building a [single contiguous solid](PartDesign_Body#Single_contiguous_solid.md). @@ -289,4 +291,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Body/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Boolean.md b/wiki/translations/pt-br/PartDesign_Boolean.md index 9db7cc2563..2088247d7d 100644 --- a/wiki/translations/pt-br/PartDesign_Boolean.md +++ b/wiki/translations/pt-br/PartDesign_Boolean.md @@ -6,6 +6,8 @@ Version:0.17 --- +# PartDesign Boolean/pt-br + ## Description **PartDesign Boolean** imports one or more [PartDesign Bodies](PartDesign_Body.md) or [PartDesign Clones](PartDesign_Clone.md) (designated as \"tool bodies\") into the active PartDesign Body and applies a Boolean operation (fuse, cut or common). @@ -61,4 +63,7 @@ Alternatively, one or more Bodies can be selected prior to pressing the Boolean {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Boolean/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Chamfer.md b/wiki/translations/pt-br/PartDesign_Chamfer.md index 39395c432b..3d61070f37 100644 --- a/wiki/translations/pt-br/PartDesign_Chamfer.md +++ b/wiki/translations/pt-br/PartDesign_Chamfer.md @@ -6,6 +6,8 @@ SeeAlso:[PartDesign Fillet](PartDesign_Fillet.md), [Part Chamfer](Part_Chamfer.md) --- +# PartDesign Chamfer/pt-br + ## Description This tool creates chamfers on the selected edges of an object. A new separate Chamfer entry (followed by a consecutive number if there are already existing chamfers in the document) is created in the Project tree. @@ -35,4 +37,7 @@ This tool creates chamfers on the selected edges of an object. A new separate Ch {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Chamfer/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Clone.md b/wiki/translations/pt-br/PartDesign_Clone.md index c765c73343..0147965900 100644 --- a/wiki/translations/pt-br/PartDesign_Clone.md +++ b/wiki/translations/pt-br/PartDesign_Clone.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Clone](Draft_Clone.md) --- +# PartDesign Clone/pt-br + ## Description **PartDesign Clone** creates a linked copy of a selected object which will follow any future edits to the original object (except placement). For example, one use case is when you want to do [PartDesign Boolean](PartDesign_Boolean.md) on an object created in another workbench. Most types of objects are accepted, as long as they are single solids. If you need to clone multiple objects (i.e., bodies) or a [Part Container](Std_Part.md), you may use [Draft Workbench\'s clone](Draft_Clone.md). One caveat is that the Part Design Workbench\'s clone sets the current placement of the clone as zero (both Cartesian translation and spatial orientations). While the Draft\'s workbenches clone calculates and sets the numerical values of the current placement and orientation of the cloned objects with respect to the cloned object container. @@ -37,4 +39,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Clone/pt-br diff --git a/wiki/translations/pt-br/PartDesign_CompPrimitiveAdditive.md b/wiki/translations/pt-br/PartDesign_CompPrimitiveAdditive.md index 92bc30c254..3f49883c9f 100644 --- a/wiki/translations/pt-br/PartDesign_CompPrimitiveAdditive.md +++ b/wiki/translations/pt-br/PartDesign_CompPrimitiveAdditive.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign CompPrimitiveAdditive/pt-br + ## Description Creates an additive primitive in the active Body as the first feature, or fuses it to the existing feature(s). If no Body is found in the document, one will be automatically created. @@ -28,4 +30,7 @@ Creates an additive primitive in the active Body as the first feature, or fuses {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveAdditive/pt-br diff --git a/wiki/translations/pt-br/PartDesign_CompPrimitiveSubtractive.md b/wiki/translations/pt-br/PartDesign_CompPrimitiveSubtractive.md index 2881249f9f..33b5a8baa5 100644 --- a/wiki/translations/pt-br/PartDesign_CompPrimitiveSubtractive.md +++ b/wiki/translations/pt-br/PartDesign_CompPrimitiveSubtractive.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign CompPrimitiveSubtractive/pt-br + ## Description Creates a subtractive primitive in the active Body, subtracting its shape from the existing solid. @@ -28,4 +30,7 @@ Creates a subtractive primitive in the active Body, subtracting its shape from t {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveSubtractive/pt-br diff --git a/wiki/translations/pt-br/PartDesign_CoordinateSystem.md b/wiki/translations/pt-br/PartDesign_CoordinateSystem.md index 8c7bbf1efb..0ed369d4ea 100644 --- a/wiki/translations/pt-br/PartDesign_CoordinateSystem.md +++ b/wiki/translations/pt-br/PartDesign_CoordinateSystem.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Datum point](PartDesign_Point.md), [PartDesign Datum line](PartDesign_Line.md), [PartDesign Datum plane](PartDesign_Plane.md) --- +# PartDesign CoordinateSystem/pt-br + ## Description Creates a **local coordinate system** which can be used as reference for other datum geometry. It also helps identify the orientation of the referenced datum geometry in 3D space. ![](images/PartDesign_LocalCoordinateSystem_Example.png ) *Local coordinate system originating out of a datum plane's origin.* @@ -52,4 +54,7 @@ lcs = App.activeDocument().addObject( 'PartDesign::CoordinateSystem', 'LCS' ) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CoordinateSystem/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Draft.md b/wiki/translations/pt-br/PartDesign_Draft.md index 650586fca5..e37798a2ed 100644 --- a/wiki/translations/pt-br/PartDesign_Draft.md +++ b/wiki/translations/pt-br/PartDesign_Draft.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign Draft/pt-br + ### Description This tool creates angular draft on the selected faces of an object. A new separate Draft entry (followed by a sequential number if there are already existing drafts in the document) is created in the Project tree. @@ -50,4 +52,7 @@ This tool creates angular draft on the selected faces of an object. A new separa {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Draft/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Fillet.md b/wiki/translations/pt-br/PartDesign_Fillet.md index f72da6b383..9d239bfd1d 100644 --- a/wiki/translations/pt-br/PartDesign_Fillet.md +++ b/wiki/translations/pt-br/PartDesign_Fillet.md @@ -6,6 +6,8 @@ SeeAlso:[PartDesign Chamfer](PartDesign_Chamfer.md), [Part Fillet](Part_Fillet.md) --- +# PartDesign Fillet/pt-br + ## Description This tool creates fillets (rounds) on the selected edges of an object. A new separate Fillet entry (followed by a sequential number if there are already existing fillets in the document) is created in the project tree. @@ -99,4 +101,7 @@ Part.show(Box) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Fillet/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Groove.md b/wiki/translations/pt-br/PartDesign_Groove.md index 43a7b01aa3..a292d4e17b 100644 --- a/wiki/translations/pt-br/PartDesign_Groove.md +++ b/wiki/translations/pt-br/PartDesign_Groove.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign Groove/pt-br + ## Description The **Groove** tool revolves a selected sketch or profile about a given axis, cutting out material from the support . @@ -73,4 +75,7 @@ Below are properties which can be defined after creation of the feature. Data pr {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Groove/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Hole.md b/wiki/translations/pt-br/PartDesign_Hole.md index 3bbad472a4..09d698ce87 100644 --- a/wiki/translations/pt-br/PartDesign_Hole.md +++ b/wiki/translations/pt-br/PartDesign_Hole.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Pocket](PartDesign_Pocket.md) --- +# PartDesign Hole/pt-br + ## Description The **Hole** feature creates one or more holes from a selected sketch\'s circles and arcs. If arcs are present they must be part of closed contours. All non arc/circle entities are ignored but they still must form closed contours. Many parameters can be set such as threading and size, fit, hole type (countersink, counterbore, straight) and more. @@ -107,4 +109,7 @@ Example: {{Code|lang=json|code= {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Hole/pt-br diff --git a/wiki/translations/pt-br/PartDesign_InvoluteGear.md b/wiki/translations/pt-br/PartDesign_InvoluteGear.md index 7e2ad9af70..8b423de2ac 100644 --- a/wiki/translations/pt-br/PartDesign_InvoluteGear.md +++ b/wiki/translations/pt-br/PartDesign_InvoluteGear.md @@ -6,6 +6,8 @@ SeeAlso:[FCGear Workbench](FCGear_Workbench.md) --- +# PartDesign InvoluteGear/pt-br + ## Description This tool allows you to create a 2D profile of an involute gear. This 2D profile is fully parametric, and can be padded with the [PartDesign Pad](PartDesign_Pad.md) feature. @@ -42,4 +44,7 @@ For more detailed information see Wikipedia\'s entries for: [Gear](https://en.wi {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign InvoluteGear/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Legacy.md b/wiki/translations/pt-br/PartDesign_Legacy.md index 9e8e39d8ca..0877209b62 100644 --- a/wiki/translations/pt-br/PartDesign_Legacy.md +++ b/wiki/translations/pt-br/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/pt-br 1. REDIRECT [PartDesign\_Workbench/pt-br](PartDesign_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Line.md b/wiki/translations/pt-br/PartDesign_Line.md index 8d06f1b185..acb10828ac 100644 --- a/wiki/translations/pt-br/PartDesign_Line.md +++ b/wiki/translations/pt-br/PartDesign_Line.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Point](PartDesign_Point.md), [PartDesign Plane](PartDesign_Plane.md) --- +# PartDesign Line/pt-br + ## Description Creates a **datum line** which can be used as reference for sketches, other datum geometry or features. For example it can be used as revolution axis for Revolution and Groove features. @@ -42,4 +44,7 @@ Double-click the DatumLine label in the Model tree or right-click and select **E {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Line/pt-br diff --git a/wiki/translations/pt-br/PartDesign_LinearPattern.md b/wiki/translations/pt-br/PartDesign_LinearPattern.md index 1b40cf3ae5..13a08b5adf 100644 --- a/wiki/translations/pt-br/PartDesign_LinearPattern.md +++ b/wiki/translations/pt-br/PartDesign_LinearPattern.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign LinearPattern/pt-br + ## Description The ** '''LinearPattern'''** tool creates evenly spaced copies of a feature in a linear direction. As of (v0.17) the Linear pattern tool can pattern multiple features. @@ -86,4 +88,7 @@ Select one of the Body Origin\'s standard axis (X, Y or Z) as direction. {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign LinearPattern/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Migrate.md b/wiki/translations/pt-br/PartDesign_Migrate.md index cdbf613db4..5a42d040d0 100644 --- a/wiki/translations/pt-br/PartDesign_Migrate.md +++ b/wiki/translations/pt-br/PartDesign_Migrate.md @@ -6,6 +6,8 @@ Version:0.17 --- +# PartDesign Migrate/pt-br + ## Description The PartDesign workbench in FreeCAD v0.17 introduces new tools and elements that are not recognized by older FreeCAD versions (0.16 and older). FreeCAD documents created in older versions can still be opened and edited. To benefit from the new features, they must be migrated via the menu PartDesign → Migrate. @@ -32,4 +34,7 @@ The PartDesign workbench in FreeCAD v0.17 introduces new tools and elements that {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Migrate/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Mirrored.md b/wiki/translations/pt-br/PartDesign_Mirrored.md index 0dd0458054..ee28e2d9aa 100644 --- a/wiki/translations/pt-br/PartDesign_Mirrored.md +++ b/wiki/translations/pt-br/PartDesign_Mirrored.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign Mirrored/pt-br + ## Description The **Mirrored** tool mirrors features on a plane. @@ -80,4 +82,7 @@ The mirror result can be previewed in real time before clicking **OK** by checki {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Mirrored/pt-br diff --git a/wiki/translations/pt-br/PartDesign_MoveFeature.md b/wiki/translations/pt-br/PartDesign_MoveFeature.md index 2b3f52aa08..c9e07581d4 100644 --- a/wiki/translations/pt-br/PartDesign_MoveFeature.md +++ b/wiki/translations/pt-br/PartDesign_MoveFeature.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Set tip](PartDesign_MoveTip.md), [PartDesign Move object after other object](PartDesign_MoveFeatureInTree.md) --- +# PartDesign MoveFeature/pt-br + ## Description [Move object to other body](PartDesign_MoveFeature.md), as this command is labeled in the context menu, allows moving objects under a Body to another Body. The moved object is placed right below the other Body\'s tip. Sketches, datum geometry and features are supported. @@ -24,4 +26,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeature/pt-br diff --git a/wiki/translations/pt-br/PartDesign_MoveFeatureInTree.md b/wiki/translations/pt-br/PartDesign_MoveFeatureInTree.md index 34473bc7ca..1980793c3e 100644 --- a/wiki/translations/pt-br/PartDesign_MoveFeatureInTree.md +++ b/wiki/translations/pt-br/PartDesign_MoveFeatureInTree.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Set tip](PartDesign_MoveTip.md), [PartDesign Move object to other body](PartDesign_MoveFeature.md) --- +# PartDesign MoveFeatureInTree/pt-br + ## Description [Move object after other object](PartDesign_MoveFeatureInTree.md), as this command is labeled in the context menu, allows reordering of objects under a Body. Sketches, datum geometry and features are supported. @@ -30,4 +32,7 @@ The following three pictures show the same model with a pocket defined on a sket {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeatureInTree/pt-br diff --git a/wiki/translations/pt-br/PartDesign_MoveTip.md b/wiki/translations/pt-br/PartDesign_MoveTip.md index dd980f67c9..c270b53ce2 100644 --- a/wiki/translations/pt-br/PartDesign_MoveTip.md +++ b/wiki/translations/pt-br/PartDesign_MoveTip.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Move object to other body](PartDesign_MoveFeature.md), [PartDesign Move object after other object](PartDesign_MoveFeatureInTree.md) --- +# PartDesign MoveTip/pt-br + ## Description [Set tip](PartDesign_MoveTip.md), as this command is labeled in the context menu, redefines the tip, which is the feature exposed outside of the Body. By default, the tip is the last feature added to the Body; but sometimes it can be useful to temporarily set the tip to a feature earlier in the tree. This may be done to add a sketch, datum geometry or a feature which in retrospect should have been created earlier in the Body\'s history. @@ -29,4 +31,7 @@ The tip is visually distinguished in the Model tree by a small white down arrow {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveTip/pt-br diff --git a/wiki/translations/pt-br/PartDesign_MultiTransform.md b/wiki/translations/pt-br/PartDesign_MultiTransform.md index 2946ed415e..f6f97a5220 100644 --- a/wiki/translations/pt-br/PartDesign_MultiTransform.md +++ b/wiki/translations/pt-br/PartDesign_MultiTransform.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign MultiTransform/pt-br + ## Description \'Make a pattern from combinations of transformations\' - The **![](images/)_[MultiTransform](PartDesign_MultiTransform.md)** tool takes one (or a set of) part \'features\' as its input, and allows the user to apply multiple transformations to that feature (or set of features) progressively, in sequence - creating a combined or compound transformation. @@ -147,4 +149,7 @@ When initiated and completed in this way, the **![](images/)_[MultiTransform](P {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MultiTransform/pt-br diff --git a/wiki/translations/pt-br/PartDesign_NewSketch.md b/wiki/translations/pt-br/PartDesign_NewSketch.md index f8ac9f02a3..a7b050e76a 100644 --- a/wiki/translations/pt-br/PartDesign_NewSketch.md +++ b/wiki/translations/pt-br/PartDesign_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher NewSketch](Sketcher_NewSketch.md) --- +# PartDesign NewSketch/pt-br + ## Description This tool creates a new sketch, creates a new [PartDesign Body](PartDesign_Body.md) to contain the sketch if one does not exist and automatically opens the [Sketcher workbench](Sketcher_Workbench.md) after creation. @@ -62,4 +64,7 @@ To reference any items in the [PartDesign Pad](PartDesign_Pad.md)** tool extrudes a sketch into a solid in a direction normal to the sketch plane. As of (v0.17) faces on the solid can also be used. @@ -119,4 +121,7 @@ Reverses the direction of the pad. {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pad/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Plane.md b/wiki/translations/pt-br/PartDesign_Plane.md index 74f394390c..bd3641d516 100644 --- a/wiki/translations/pt-br/PartDesign_Plane.md +++ b/wiki/translations/pt-br/PartDesign_Plane.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Point](PartDesign_Point.md), [PartDesign Line](PartDesign_Line.md) --- +# PartDesign Plane/pt-br + ## Description Creates a **datum plane** which can be used as reference for sketches or other datum geometry. Sketches can be attached to datum planes. ![](images/Datum_plane.png ) *Datum Plane crossing 3 corners of the Cube with a Cylinder sketched on it using the Datum Plane as its X-Y Plane.* @@ -44,4 +46,7 @@ Double-click the DatumPlane label in the Model tree or right-click and select ** {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Plane/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Pocket.md b/wiki/translations/pt-br/PartDesign_Pocket.md index 96813b0f79..6a6e55b0cb 100644 --- a/wiki/translations/pt-br/PartDesign_Pocket.md +++ b/wiki/translations/pt-br/PartDesign_Pocket.md @@ -6,6 +6,8 @@ SeeAlso:[PartDesign Pad](PartDesign_Pad.md) --- +# PartDesign Pocket/pt-br + ## Description The **Pocket** tool cuts out a solid by extruding a sketch (or a face of the solid) in a straight path and subtracting it from the solid. @@ -62,4 +64,7 @@ An [example](http://forum.freecadweb.org/viewtopic.php?f=3&t=3733&start=10) with {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pocket/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Point.md b/wiki/translations/pt-br/PartDesign_Point.md index c29ce92dc4..073a19a2e7 100644 --- a/wiki/translations/pt-br/PartDesign_Point.md +++ b/wiki/translations/pt-br/PartDesign_Point.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Line](PartDesign_Line.md), [PartDesign Plane](PartDesign_Plane.md) --- +# PartDesign Point/pt-br + ## Description Creates a **datum point** which can be used as reference for sketches or other datum geometry. @@ -45,4 +47,7 @@ Double-click the DatumPoint label in the Model tree or right-click and select ** {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Point/pt-br diff --git a/wiki/translations/pt-br/PartDesign_PolarPattern.md b/wiki/translations/pt-br/PartDesign_PolarPattern.md index 36d795b116..6841010332 100644 --- a/wiki/translations/pt-br/PartDesign_PolarPattern.md +++ b/wiki/translations/pt-br/PartDesign_PolarPattern.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign PolarPattern/pt-br + ## Description The **polar pattern** tool takes a selected feature and creates a set of copies rotated around a chosen axis. Starting with v0.17, it can pattern multiple features. @@ -129,4 +131,7 @@ Specifies the angle to be covered by the pattern, and the total number of patter {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign PolarPattern/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Preferences.md b/wiki/translations/pt-br/PartDesign_Preferences.md index f8f9d3c002..7d055f2439 100644 --- a/wiki/translations/pt-br/PartDesign_Preferences.md +++ b/wiki/translations/pt-br/PartDesign_Preferences.md @@ -1,10 +1,4 @@ # PartDesign Preferences/pt-br - - - - - - {{TOCright}} ## Introduction @@ -116,3 +110,6 @@ Right click on **Mesh deviation** choose in the context menu **Change value**. S }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Preferences/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Revolution.md b/wiki/translations/pt-br/PartDesign_Revolution.md index ccd79b63d7..f940e19a6e 100644 --- a/wiki/translations/pt-br/PartDesign_Revolution.md +++ b/wiki/translations/pt-br/PartDesign_Revolution.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign Revolution/pt-br + ## Description The **Revolution** tool creates a solid by revolving a selected sketch or 2D object about a given axis. @@ -75,4 +77,7 @@ A [detailed example of use](http://forum.freecadweb.org/viewtopic.php?f=3&t=3674 {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Revolution/pt-br diff --git a/wiki/translations/pt-br/PartDesign_ShapeBinder.md b/wiki/translations/pt-br/PartDesign_ShapeBinder.md index 0d403a536d..349f3da2d0 100644 --- a/wiki/translations/pt-br/PartDesign_ShapeBinder.md +++ b/wiki/translations/pt-br/PartDesign_ShapeBinder.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign SubShapeBinder](PartDesign_SubShapeBinder.md), [PartDesign Clone](PartDesign_Clone.md) --- +# PartDesign ShapeBinder/pt-br + ## Description Creates a datum **shape binder** inside the active Body. A shape binder is a reference object that links to edges or faces from another Body. It also can be used to link a sketch from one body to another body. The shape binder object displays as translucent yellow in the [3D view](3D_view.md). @@ -108,4 +110,7 @@ There is a workaround for multiple selection: If you select all the elements you {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign ShapeBinder/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Sprocket.md b/wiki/translations/pt-br/PartDesign_Sprocket.md index 2bdde44f85..b9bd0671f8 100644 --- a/wiki/translations/pt-br/PartDesign_Sprocket.md +++ b/wiki/translations/pt-br/PartDesign_Sprocket.md @@ -6,6 +6,8 @@ Version:0.19 --- +# PartDesign Sprocket/pt-br + ## Description This tool allows you to create a 2D profile of a sprocket (or chainwheel). It can be padded with the [PartDesign Pad](PartDesign_Pad.md) feature. @@ -35,4 +37,7 @@ This tool allows you to create a 2D profile of a sprocket (or chainwheel). It ca {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Sprocket/pt-br diff --git a/wiki/translations/pt-br/PartDesign_SubShapeBinder.md b/wiki/translations/pt-br/PartDesign_SubShapeBinder.md index 87f2193009..3236938647 100644 --- a/wiki/translations/pt-br/PartDesign_SubShapeBinder.md +++ b/wiki/translations/pt-br/PartDesign_SubShapeBinder.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign ShapeBinder](PartDesign_ShapeBinder.md), [PartDesign Clone](PartDesign_Clone.md) --- +# PartDesign SubShapeBinder/pt-br + ## Description A [PartDesign\_SubShapeBinder](PartDesign_SubShapeBinder.md) imports an element from another Body into the active [Body](PartDesign_Body.md). It can take the [Shape](Shape.md) of, or be \"bound\" to one or multiple objects or subelements (edges or faces) from another object. @@ -79,4 +81,7 @@ See [Part Feature](Part_Feature.md). {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubShapeBinder/pt-br diff --git a/wiki/translations/pt-br/PartDesign_SubtractiveBox.md b/wiki/translations/pt-br/PartDesign_SubtractiveBox.md index 352c8c7e8c..2d7aa53a38 100644 --- a/wiki/translations/pt-br/PartDesign_SubtractiveBox.md +++ b/wiki/translations/pt-br/PartDesign_SubtractiveBox.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveBox/pt-br + ## Description Inserts a subtractive box in the active Body. Its shape is subtracted from the existing solid. @@ -45,4 +47,7 @@ The Box can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveBox/pt-br diff --git a/wiki/translations/pt-br/PartDesign_SubtractiveCone.md b/wiki/translations/pt-br/PartDesign_SubtractiveCone.md index 3fcf81c21f..870693c6ec 100644 --- a/wiki/translations/pt-br/PartDesign_SubtractiveCone.md +++ b/wiki/translations/pt-br/PartDesign_SubtractiveCone.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [PartDesign Additive Cone](PartDesign_AdditiveCone.md) --- +# PartDesign SubtractiveCone/pt-br + ## Description Inserts a subtractive cone in the active Body. Its shape is subtracted from the existing solid. @@ -49,4 +51,7 @@ The Cone can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCone/pt-br diff --git a/wiki/translations/pt-br/PartDesign_SubtractiveCylinder.md b/wiki/translations/pt-br/PartDesign_SubtractiveCylinder.md index f7a4085fbe..8f6787b980 100644 --- a/wiki/translations/pt-br/PartDesign_SubtractiveCylinder.md +++ b/wiki/translations/pt-br/PartDesign_SubtractiveCylinder.md @@ -7,6 +7,8 @@ SeeAlso:[Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [Additive Cylinder](PartDesign_AdditiveCylinder.md) --- +# PartDesign SubtractiveCylinder/pt-br + ## Description Inserts a subtractive cylinder in the active Body. Its shape is subtracted from the existing solid. @@ -53,4 +55,7 @@ The Cylinder can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCylinder/pt-br diff --git a/wiki/translations/pt-br/PartDesign_SubtractiveEllipsoid.md b/wiki/translations/pt-br/PartDesign_SubtractiveEllipsoid.md index 0d201a4f8f..fc52391e9e 100644 --- a/wiki/translations/pt-br/PartDesign_SubtractiveEllipsoid.md +++ b/wiki/translations/pt-br/PartDesign_SubtractiveEllipsoid.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveEllipsoid/pt-br + ## Description Inserts a subtractive ellipsoid in the active Body. Its shape is subtracted from the existing solid. @@ -53,4 +55,7 @@ The Ellipsoid can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveEllipsoid/pt-br diff --git a/wiki/translations/pt-br/PartDesign_SubtractiveHelix.md b/wiki/translations/pt-br/PartDesign_SubtractiveHelix.md index 81f3ceff29..9c6d6b9ac8 100644 --- a/wiki/translations/pt-br/PartDesign_SubtractiveHelix.md +++ b/wiki/translations/pt-br/PartDesign_SubtractiveHelix.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign AdditiveHelix](PartDesign_AdditiveHelix.md) --- +# PartDesign SubtractiveHelix/pt-br + ## Description The **SubtractiveHelix** tool modifies a solid by sweeping a selected sketch or 2D object along a helix path cutting away the material. @@ -122,4 +124,7 @@ If checked, the helix will be shown in the view, and updated automatically on ev {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveHelix/pt-br diff --git a/wiki/translations/pt-br/PartDesign_SubtractiveLoft.md b/wiki/translations/pt-br/PartDesign_SubtractiveLoft.md index dc4dcf71f0..a6061dc913 100644 --- a/wiki/translations/pt-br/PartDesign_SubtractiveLoft.md +++ b/wiki/translations/pt-br/PartDesign_SubtractiveLoft.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Additive loft](PartDesign_AdditiveLoft.md), [PartDesign Subtractive pipe](PartDesign_SubtractivePipe.md) --- +# PartDesign SubtractiveLoft/pt-br + ## Description **Subtractive Loft** creates a subtractive solid in the active Body by making a transition between two or more sketches (also referred to as cross-sections). Its shape is then subtracted from the existing solid. @@ -71,4 +73,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveLoft/pt-br diff --git a/wiki/translations/pt-br/PartDesign_SubtractivePipe.md b/wiki/translations/pt-br/PartDesign_SubtractivePipe.md index d231a1e4dc..5dca7084c0 100644 --- a/wiki/translations/pt-br/PartDesign_SubtractivePipe.md +++ b/wiki/translations/pt-br/PartDesign_SubtractivePipe.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Additive pipe](PartDesign_AdditivePipe.md), [PartDesign Subtractive loft](PartDesign_SubtractiveLoft.md) --- +# PartDesign SubtractivePipe/pt-br + ## Description **Subtractive Pipe** creates a subtractive solid in the active Body by sweeping one or more sketches (also referred to as cross-sections) along an open or closed path. Its shape is then subtracted from the existing solid. SubtractivePipe is often used in connection with [Part Helix](Part_Helix.md) and [PartDesign ShapeBinder](PartDesign_ShapeBinder.md) to create a thread; see the [Thread for Screw Tutorial](Thread_for_Screw_Tutorial.md) for details. @@ -86,4 +88,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePipe/pt-br diff --git a/wiki/translations/pt-br/PartDesign_SubtractivePrism.md b/wiki/translations/pt-br/PartDesign_SubtractivePrism.md index b354226ffd..3f8edee868 100644 --- a/wiki/translations/pt-br/PartDesign_SubtractivePrism.md +++ b/wiki/translations/pt-br/PartDesign_SubtractivePrism.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [PartDesign Additive Prism](PartDesign_AdditivePrism.md) --- +# PartDesign SubtractivePrism/pt-br + ## Description Inserts a subtractive prism in the active Body. Its shape is subtracted from the existing solid. @@ -53,4 +55,7 @@ The Prism can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePrism/pt-br diff --git a/wiki/translations/pt-br/PartDesign_SubtractiveSphere.md b/wiki/translations/pt-br/PartDesign_SubtractiveSphere.md index 3d50afe179..d8a24c0ac6 100644 --- a/wiki/translations/pt-br/PartDesign_SubtractiveSphere.md +++ b/wiki/translations/pt-br/PartDesign_SubtractiveSphere.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveSphere/pt-br + ## Description Inserts a subtractive sphere in the active Body. Its shape is subtracted from the existing solid. @@ -47,4 +49,7 @@ The Sphere can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveSphere/pt-br diff --git a/wiki/translations/pt-br/PartDesign_SubtractiveTorus.md b/wiki/translations/pt-br/PartDesign_SubtractiveTorus.md index bbe8a1d1fb..57fc6e5624 100644 --- a/wiki/translations/pt-br/PartDesign_SubtractiveTorus.md +++ b/wiki/translations/pt-br/PartDesign_SubtractiveTorus.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveTorus/pt-br + ## Description Inserts a subtractive torus in the active Body. Its shape is subtracted from the existing solid. @@ -49,4 +51,7 @@ The Torus can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveTorus/pt-br diff --git a/wiki/translations/pt-br/PartDesign_SubtractiveWedge.md b/wiki/translations/pt-br/PartDesign_SubtractiveWedge.md index c9b46d9643..fe2b931ad9 100644 --- a/wiki/translations/pt-br/PartDesign_SubtractiveWedge.md +++ b/wiki/translations/pt-br/PartDesign_SubtractiveWedge.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [PartDesign Additive Wedge](PartDesign_AdditiveWedge.md) --- +# PartDesign SubtractiveWedge/pt-br + ## Description Inserts a subtractive wedge in the active Body. Its shape is subtracted from the existing solid. @@ -51,4 +53,7 @@ Wedges can be used to create pyramids by setting **X2 min/max** and **Z2 min/max {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveWedge/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Thickness.md b/wiki/translations/pt-br/PartDesign_Thickness.md index c5a4dc0382..a166255b79 100644 --- a/wiki/translations/pt-br/PartDesign_Thickness.md +++ b/wiki/translations/pt-br/PartDesign_Thickness.md @@ -7,6 +7,8 @@ SeeAlso:[Part Thickness](Part_Thickness.md) --- +# PartDesign Thickness/pt-br + ## Description The **Thickness** tool works on a solid Body and transforms it into a thick-walled hollow object with at least one open face, giving to each of its remaining faces a uniform thickness. On some solids it allows you to significantly speed up the work, and avoids making extrusions and pockets. @@ -77,4 +79,7 @@ Result: ![](images/Brga-spessore.png ) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Thickness/pt-br diff --git a/wiki/translations/pt-br/PartDesign_WizardShaft.md b/wiki/translations/pt-br/PartDesign_WizardShaft.md index e0e9fe9bad..fa6061f47a 100644 --- a/wiki/translations/pt-br/PartDesign_WizardShaft.md +++ b/wiki/translations/pt-br/PartDesign_WizardShaft.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign WizardShaft/pt-br + ## Description This tool allows you to create a shaft from a table of values, and to analyse forces and moments. You can start the wizard from the Part Design menu **Part Design → Shaft design wizard...**. @@ -60,4 +62,7 @@ To add a new shaft segment, right-click into the empty space to the right of the {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign WizardShaft/pt-br diff --git a/wiki/translations/pt-br/PartDesign_Workbench.md b/wiki/translations/pt-br/PartDesign_Workbench.md index d910ec2394..df6e19d0b0 100644 --- a/wiki/translations/pt-br/PartDesign_Workbench.md +++ b/wiki/translations/pt-br/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/pt-br - - -ícone da bancada de trabalho PartDesign +# ícone da bancada de trabalho PartDesign PartDesign Workbench/pt-br {{TOCright}} @@ -212,3 +209,6 @@ Algumas funcionalidades adicionais encontradas no menu Design da peça: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/pt-br diff --git a/wiki/translations/pt-br/Part_Attachment.md b/wiki/translations/pt-br/Part_Attachment.md index e777265ad3..5f9ad28566 100644 --- a/wiki/translations/pt-br/Part_Attachment.md +++ b/wiki/translations/pt-br/Part_Attachment.md @@ -1,2 +1,5 @@ # Part Attachment/pt-br 1. REDIRECT [Part\_EditAttachment/pt-br](Part_EditAttachment/pt-br.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Attachment/pt-br diff --git a/wiki/translations/pt-br/Part_Boolean.md b/wiki/translations/pt-br/Part_Boolean.md index 577a4bba65..7e3e09786c 100644 --- a/wiki/translations/pt-br/Part_Boolean.md +++ b/wiki/translations/pt-br/Part_Boolean.md @@ -6,6 +6,8 @@ SeeAlso:[Part Cut](Part_Cut.md), [Part Fuse](Part_Fuse.md), [Part Common](Part_Common.md), [Part Section](Part_Section.md) --- +# Part Boolean/pt-br + ## Description @@ -62,8 +64,5 @@ In cases of coplanarity, even if the first boolean operation succeeds, subsequen *Left: shapes that share a face, a boolean union may produce incorrect results. Right: shapes that intersect each other clearly, the boolean union will be successful in most cases.* - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Boolean/pt-br diff --git a/wiki/translations/pt-br/Part_BooleanFragments.md b/wiki/translations/pt-br/Part_BooleanFragments.md index ca8e598e1b..83d6263a7e 100644 --- a/wiki/translations/pt-br/Part_BooleanFragments.md +++ b/wiki/translations/pt-br/Part_BooleanFragments.md @@ -7,6 +7,8 @@ SeeAlso:[Part Slice](Part_Slice.md), [Part XOR](Part_XOR.md), [Part Join features](Part_CompJoinFeatures.md), [Part Boolean](Part_Boolean.md) --- +# Part BooleanFragments/pt-br + ## Description Tool to compute all fragments that can result from applying Boolean operations between input shapes. For example, for two intersecting spheres, three non-overlapping but touching solids are generated. @@ -85,8 +87,5 @@ The tool itself is implemented in Python, see /Mod/Part/BOPTools/SplitFeatures.p The tool was introduced in FreeCAD v0.17.8053. FreeCAD needs to be compiled with OCC 6.9.0 or later; otherwise, the tool is unavailable. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part BooleanFragments/pt-br diff --git a/wiki/translations/pt-br/Part_Box.md b/wiki/translations/pt-br/Part_Box.md index 9c4a39685b..a6c545aa88 100644 --- a/wiki/translations/pt-br/Part_Box.md +++ b/wiki/translations/pt-br/Part_Box.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Box/pt-br + ## Description The Box command from the [Part Workbench](Part_Workbench.md) inserts a parametric, [rectangular cuboid](http://en.wikipedia.org/wiki/Cuboid#Rectangular_cuboid), geometric primitive into the active document. By default, the Box command will insert a 10x10x10 mm cube, positioned at the origin, with the label \"cube\". These parameters may be modified after the object has been added. @@ -65,8 +67,5 @@ You can change its placement with: FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6, 3), FreeCAD.Rotation(30, 45, 10)) ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Box/pt-br diff --git a/wiki/translations/pt-br/Part_BoxSelection.md b/wiki/translations/pt-br/Part_BoxSelection.md index 3514900af2..9902d647a8 100644 --- a/wiki/translations/pt-br/Part_BoxSelection.md +++ b/wiki/translations/pt-br/Part_BoxSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std BoxSelection](Std_BoxSelection.md), [Std BoxElementSelection](Std_BoxElementSelection.md), [Std SelectAll](Std_SelectAll.md) --- +# Part BoxSelection/pt-br + ## Description The ** [Part BoxSelection](Part_BoxSelection.md)** tool allows you to select the faces of the objects on the screen that are touched by the rectangular selection. @@ -26,8 +28,5 @@ The ** [Part BoxSelection](Pa ## Scripting - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part BoxSelection/pt-br diff --git a/wiki/translations/pt-br/Part_Builder.md b/wiki/translations/pt-br/Part_Builder.md index afd57d120b..f8da1dca41 100644 --- a/wiki/translations/pt-br/Part_Builder.md +++ b/wiki/translations/pt-br/Part_Builder.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Builder/pt-br + ## Description A tool to create more complex shapes from various parametric geometric primitives. @@ -69,8 +71,5 @@ A possible workflow could be: - Create a \"shell from faces\" - Create a \"solid from shell\" - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Builder/pt-br diff --git a/wiki/translations/pt-br/Part_Chamfer.md b/wiki/translations/pt-br/Part_Chamfer.md index 0fdd2a2071..c494dabeeb 100644 --- a/wiki/translations/pt-br/Part_Chamfer.md +++ b/wiki/translations/pt-br/Part_Chamfer.md @@ -6,6 +6,8 @@ SeeAlso:[Part Fillet](Part_Fillet.md) --- +# Part Chamfer/pt-br + ## Description Chamfers the selected edge(s) of an object. A dialog allows you to choose which edge(s) to work on as well as modify various chamfer parameters. @@ -150,8 +152,5 @@ FreeCAD.ActiveDocument.recompute() - Recomputes all altered components on the screen and refreshes the display. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Chamfer/pt-br diff --git a/wiki/translations/pt-br/Part_CheckGeometry.md b/wiki/translations/pt-br/Part_CheckGeometry.md index 38065ad4ac..1b2a81bc38 100644 --- a/wiki/translations/pt-br/Part_CheckGeometry.md +++ b/wiki/translations/pt-br/Part_CheckGeometry.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part CheckGeometry/pt-br + ## Description The ** [Part CheckGeometry](Part_CheckGeometry.md)** tool runs a verification and reports if geometry is a valid solid. The tool checks if the [Boundary representation](https://en.wikipedia.org/wiki/Boundary_representation) (BRep or [B-rep](Glossary#B.md)) of the model is valid. @@ -33,10 +35,7 @@ If ticked, additionally a Boolean OPerations (BOP) check is performed. (v ### Log errors -If ticked, any errors found are also logged in the [report view](Report_view.md). (v0.19) - - +If ticked, any errors found are also logged in the [report view](Report_view.md). (v0.19) - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CheckGeometry/pt-br diff --git a/wiki/translations/pt-br/Part_Circle.md b/wiki/translations/pt-br/Part_Circle.md index 1438cdb2e4..29ca0b54ab 100644 --- a/wiki/translations/pt-br/Part_Circle.md +++ b/wiki/translations/pt-br/Part_Circle.md @@ -6,6 +6,8 @@ SeeAlso: --- +# Part Circle/pt-br + ## Description This command will create a circular curved edge. With the default values, the circular curved edge will be closed and therefore will be a circle. If the properties Angle 0 or Angle 1 are changed from their default values (0 and 360) the edge will be an open curve, an arc. @@ -29,8 +31,5 @@ A Circle geometric primitive is available from the Create Primitives dialogue in - {{Parameter|Angle 1}}: end of the curved edge, (degrees anti-clockwise), the default value is 360 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Circle/pt-br diff --git a/wiki/translations/pt-br/Part_Common.md b/wiki/translations/pt-br/Part_Common.md index 2cbb04e812..aecb971bd9 100644 --- a/wiki/translations/pt-br/Part_Common.md +++ b/wiki/translations/pt-br/Part_Common.md @@ -6,6 +6,8 @@ SeeAlso:[Part Boolean](Part_Boolean.md), [Part Cut](Part_Cut.md), [Part Fuse](Part_Fuse.md) --- +# Part Common/pt-br + ## Description Extracts the common part (intersection) between selected Part objects. This operation is fully parametric and the components can be modified and the result recomputed. @@ -19,8 +21,5 @@ Extracts the common part (intersection) between selected Part objects. This oper Input objects must be [OpenCascade](OpenCascade.md) shapes. Examples: stuff made with Part, PartDesign, Sketcher workbenches. Not meshes (unless those were converted to shapes) - for meshes, there are specific Boolean tools in MeshDesign workbench. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Common/pt-br diff --git a/wiki/translations/pt-br/Part_CompCompoundTools.md b/wiki/translations/pt-br/Part_CompCompoundTools.md index d2f29c21a4..d6f6b62127 100644 --- a/wiki/translations/pt-br/Part_CompCompoundTools.md +++ b/wiki/translations/pt-br/Part_CompCompoundTools.md @@ -6,6 +6,8 @@ SeeAlso: --- +# Part CompCompoundTools/pt-br + ## Description A set of various Compound tools. @@ -16,8 +18,5 @@ A set of various Compound tools. - [Explode Compound](Part_ExplodeCompound.md): Tool to split up compounds of shapes - [Compound Filter](Part_Compound‏‎Filter.md): The CompoundFilter can be used to extract the individual pieces. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompCompoundTools/pt-br diff --git a/wiki/translations/pt-br/Part_CompJoinFeatures.md b/wiki/translations/pt-br/Part_CompJoinFeatures.md index 51869573e1..4cca9bd112 100644 --- a/wiki/translations/pt-br/Part_CompJoinFeatures.md +++ b/wiki/translations/pt-br/Part_CompJoinFeatures.md @@ -7,6 +7,8 @@ SeeAlso:[Part JoinConnect](Part_JoinConnect.md), [Part JoinEmbed](Part_JoinEmbed.md), [Part JoinCutout](Part_JoinCutout.md), [Part Boolean](Part_Boolean.md), [Part Thickness](Part_Thickness.md) --- +# Part CompJoinFeatures/pt-br + ## Description This command is a dropdown toolbar button containing all the Join tools. See individual tool pages for more info. @@ -22,8 +24,5 @@ This command is a dropdown toolbar button containing all the Join tools. See ind *Above: showing the result of each tool available* - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompJoinFeatures/pt-br diff --git a/wiki/translations/pt-br/Part_CompOffsetTools.md b/wiki/translations/pt-br/Part_CompOffsetTools.md index 9c94ccf870..a2e1d51f22 100644 --- a/wiki/translations/pt-br/Part_CompOffsetTools.md +++ b/wiki/translations/pt-br/Part_CompOffsetTools.md @@ -6,6 +6,8 @@ SeeAlso: --- +# Part CompOffsetTools/pt-br + ## Description A set of Offset tools @@ -15,8 +17,5 @@ A set of Offset tools - [3D Offset](Part_Offset.md): Constructs a parallel shape at a certain distance from original. - [2D Offset](Part_Offset2D.md): Constructs a parallel wire at certain distance from original, or enlarges/shrinks a planar face. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompOffsetTools/pt-br diff --git a/wiki/translations/pt-br/Part_CompSplittingTools.md b/wiki/translations/pt-br/Part_CompSplittingTools.md index 8e07b9fbf3..ef503d4de6 100644 --- a/wiki/translations/pt-br/Part_CompSplittingTools.md +++ b/wiki/translations/pt-br/Part_CompSplittingTools.md @@ -6,6 +6,8 @@ SeeAlso: --- +# Part CompSplittingTools/pt-br + ## Description A collection of splitting tools. @@ -17,8 +19,5 @@ A collection of splitting tools. - [Slice](Part_Slice.md): Splits an object into pieces by intersections with another object. - [XOR](Part_XOR.md): removes space shared by even number of objects (symmetric version of [Cut](Part_Cut.md)). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompSplittingTools/pt-br diff --git a/wiki/translations/pt-br/Part_Compound.md b/wiki/translations/pt-br/Part_Compound.md index 0597efbea9..b602ac1978 100644 --- a/wiki/translations/pt-br/Part_Compound.md +++ b/wiki/translations/pt-br/Part_Compound.md @@ -7,6 +7,8 @@ SeeAlso:[Part Fuse](Part_Fuse.md), [Part CompoundFilter](Part_CompoundFilter.md), [Part ExplodeCompound](Part_ExplodeCompound.md) --- +# Part Compound/pt-br + ## Description This command creates a compound of any kind of topological shapes. These can be solids or meshes or any other kind of topological shapes. @@ -24,8 +26,5 @@ A compound containing pieces that intersect or touch is **invalid** for Boolean To turn this check on go to **Tools → Edit Parameters → Preferences... → Mod → Part → CheckGeometry → RunBOPCheck** and set the parameter to `true`. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Compound/pt-br diff --git a/wiki/translations/pt-br/Part_CompoundFilter.md b/wiki/translations/pt-br/Part_CompoundFilter.md index c281cd9315..af89b1b034 100644 --- a/wiki/translations/pt-br/Part_CompoundFilter.md +++ b/wiki/translations/pt-br/Part_CompoundFilter.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Part CompoundFilter/pt-br + ![](images/CompoundFilter.png ) ## Description @@ -66,8 +68,5 @@ If there is only one child in the result, the output is the child. If there is m - **items**: List or range of elements to be selected if Filter Type is \"specific items\". - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompoundFilter/pt-br diff --git a/wiki/translations/pt-br/Part_Cone.md b/wiki/translations/pt-br/Part_Cone.md index 4dbbb6cb7a..cb204ef60b 100644 --- a/wiki/translations/pt-br/Part_Cone.md +++ b/wiki/translations/pt-br/Part_Cone.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Cone/pt-br + ## Description A parametric truncated Part Cone primitive is available in the Part workbench from the Part tool bar, Part menu (primitives sub-menu) and the Create Primitives dialogue. @@ -34,8 +36,5 @@ The cone properties can later be edited, either in the [Property editor](Propert - **Angle**: Number of degrees of the arc or circles defining the upper and lower faces of the truncated cone. The default 360° creates circular faces, a lower value will create a portion of a cone as defined by upper and lower faces each with edges defined by an arc of the number of degrees and two radii. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cone/pt-br diff --git a/wiki/translations/pt-br/Part_CrossSections.md b/wiki/translations/pt-br/Part_CrossSections.md index b206f927e1..78849ec6e2 100644 --- a/wiki/translations/pt-br/Part_CrossSections.md +++ b/wiki/translations/pt-br/Part_CrossSections.md @@ -6,6 +6,8 @@ SeeAlso:[Part Section](Part_Section.md) --- +# Part CrossSections/pt-br + ## Description The **Cross-sections** utility creates one or more cross-sections through the selected shape. @@ -34,8 +36,5 @@ The **Cross-sections** utility creates one or more cross-sections through the se ![Result](images/SectionCross3.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CrossSections/pt-br diff --git a/wiki/translations/pt-br/Part_Cut.md b/wiki/translations/pt-br/Part_Cut.md index 80dad13625..ecb5d63d67 100644 --- a/wiki/translations/pt-br/Part_Cut.md +++ b/wiki/translations/pt-br/Part_Cut.md @@ -6,6 +6,8 @@ SeeAlso: [Part Boolean](Part_Boolean.md), [Part Fuse](Part_Fuse.md), [Part Common](Part_Common.md) --- +# Part Cut/pt-br + ## Description Cuts (subtracts) selected Part objects, the last one being subtracted from the first one. This operation is fully parametric and the components can be modified and the result recomputed. @@ -25,8 +27,5 @@ Cuts (subtracts) selected Part objects, the last one being subtracted from the f Input objects must be [OpenCascade](OpenCascade.md) shapes. Examples: stuff made with Part, PartDesign, Sketcher workbenches. Not meshes (unless those were converted to shapes) - for meshes, there are specific Boolean tools in MeshDesign workbench. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cut/pt-br diff --git a/wiki/translations/pt-br/Part_Cylinder.md b/wiki/translations/pt-br/Part_Cylinder.md index 64cadbe65d..91bfeedf47 100644 --- a/wiki/translations/pt-br/Part_Cylinder.md +++ b/wiki/translations/pt-br/Part_Cylinder.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Cylinder/pt-br + ## Description Creates a simple parametric cylinder, with position, angle, radius and height parameters. @@ -33,10 +35,7 @@ The cylinder properties can later be edited, either in the [Property editor](Pro - **First Angle**: Angle in first direction. (v0.20) -- **Second Angle**: Angle in second direction. (v0.20) - - +- **Second Angle**: Angle in second direction. (v0.20) - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cylinder/pt-br diff --git a/wiki/translations/pt-br/Part_Defeaturing.md b/wiki/translations/pt-br/Part_Defeaturing.md index 06131a6551..7d8bc1cebe 100644 --- a/wiki/translations/pt-br/Part_Defeaturing.md +++ b/wiki/translations/pt-br/Part_Defeaturing.md @@ -6,6 +6,8 @@ Version:0.18 --- +# Part Defeaturing/pt-br + ## Description The **Defeaturing** tool is intended for removal of selected features from the model. In this context, features are meant as holes, protrusions, gaps, chamfers, fillets etc. found on the model. @@ -33,8 +35,5 @@ To be available, this tool requires FreeCAD to be based on Open Cascade 7.3.0 or - [3D Model Defeaturing](https://dev.opencascade.org/index.php?q=node/1211), the official announcement on the Open Cascade collaborative development portal. - [Defeaturing Workbench](Defeaturing_Workbench.md) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Defeaturing/pt-br diff --git a/wiki/translations/pt-br/Part_EditAttachment.md b/wiki/translations/pt-br/Part_EditAttachment.md index ea0ef45890..1d0aa744d3 100644 --- a/wiki/translations/pt-br/Part_EditAttachment.md +++ b/wiki/translations/pt-br/Part_EditAttachment.md @@ -7,6 +7,8 @@ SeeAlso:[Placement](Placement.md), [Basic Attachment Tutorial](Basic_Attachment_Tutorial.md), [Part Part2DObject](Part_Part2DObject.md) --- +# Part EditAttachment/pt-br + ## Description **Part EditAttachment** is a utility to attach an object to another one. The attached object is linked to the other object, which means that if the latter\'s placement is changed afterwards, the attached object will update to its new position. @@ -304,4 +306,7 @@ Attachment Offset is used to apply a linear or rotary offset from the referenced {{Part_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part EditAttachment/pt-br diff --git a/wiki/translations/pt-br/Part_ElementCopy.md b/wiki/translations/pt-br/Part_ElementCopy.md index 254bc5cc67..6cee9ee3c6 100644 --- a/wiki/translations/pt-br/Part_ElementCopy.md +++ b/wiki/translations/pt-br/Part_ElementCopy.md @@ -7,6 +7,8 @@ SeeAlso:[Part SimpleCopy](Part_SimpleCopy.md), [Part TransformedCopy](Part_TransformedCopy.md), [Part RefineShape](Part_RefineShape.md) --- +# Part ElementCopy/pt-br + ## Description [Part ElementCopy](Part_ElementCopy.md) produces a non-parametric copy of a sub-element of a particular object, that is, of a vertex, edge, or face. @@ -29,8 +31,5 @@ The copy has a simple **Placement** property like any other [Part Feature](Part_ The copy has simple view properties like any other [Part Feature](Part_Feature.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ElementCopy/pt-br diff --git a/wiki/translations/pt-br/Part_Ellipse.md b/wiki/translations/pt-br/Part_Ellipse.md index d3a6bd5d39..fb339249e8 100644 --- a/wiki/translations/pt-br/Part_Ellipse.md +++ b/wiki/translations/pt-br/Part_Ellipse.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Ellipse/pt-br + ## Description This command will create a elliptical curved edge. With the default values, the elliptical curved edge will be closed and therefore will be an ellipse. If the properties Angle 1 or Angle 2 are changed from their default values (0 and 360) the edge will be an open curve. @@ -21,8 +23,5 @@ The Create Primitives dialogue can be accessed via the [Primitives](Part_Primiti - **Angle 1:** start of the edge of the ellipse or elliptical curved edge, (degrees anti-clockwise), the default value is 0 - **Angle 2:** end of the edge of the ellipse or elliptical curved edge, (degrees anti-clockwise), the default value is 360 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipse/pt-br diff --git a/wiki/translations/pt-br/Part_Ellipsoid.md b/wiki/translations/pt-br/Part_Ellipsoid.md index 5e1b0bb12e..7db903b64d 100644 --- a/wiki/translations/pt-br/Part_Ellipsoid.md +++ b/wiki/translations/pt-br/Part_Ellipsoid.md @@ -6,6 +6,8 @@ SeeAlso:[Part Create primitives](Part_Primitives.md) --- +# Part Ellipsoid/pt-br + ## Description The [Part Ellipsoid](Part_Ellipsoid.md) command creates a parametric Ellipsoid solid. @@ -35,8 +37,5 @@ A parametric Ellipsoid solid is available from the Create Primitives dialogue in ![](images/Part_Ellipsoid_screenshot.jpg ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipsoid/pt-br diff --git a/wiki/translations/pt-br/Part_ExplodeCompound.md b/wiki/translations/pt-br/Part_ExplodeCompound.md index 71c670dfa9..2bf643e2ca 100644 --- a/wiki/translations/pt-br/Part_ExplodeCompound.md +++ b/wiki/translations/pt-br/Part_ExplodeCompound.md @@ -7,6 +7,8 @@ SeeAlso:[Part Compound](Part_Compound.md), [Draft Downgrade](Draft_Downgrade.md) --- +# Part ExplodeCompound/pt-br + ## Description Tool to split up compounds of shapes, to make each contained shape (child) available as a separate object in model tree. The children are automatically put into a [Group](Std_Group.md) if there is more than one child. @@ -30,8 +32,5 @@ The tool will also explode non-compound shapes into their lower-level constituen - Obtaining individual contours from multi-contour sketches and faces - Obtaining a pure solid from a solid-in-compound, for use in [FEM Workbench](FEM_Workbench.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ExplodeCompound/pt-br diff --git a/wiki/translations/pt-br/Part_Export.md b/wiki/translations/pt-br/Part_Export.md index 13aa0616b3..08979b9231 100644 --- a/wiki/translations/pt-br/Part_Export.md +++ b/wiki/translations/pt-br/Part_Export.md @@ -6,6 +6,8 @@ SeeAlso:[Part Import](Part_Import.md), [Std Export](Std_Export.md), [Import Export](Import_Export.md) --- +# Part Export/pt-br + ## Description The ** [Part Export](Part_Export.md)** tool opens a dialog that allows you to export objects in the document to the following CAD file formats: [IGES](http://en.wikipedia.org/wiki/IGES), [STEP](http://en.wikipedia.org/wiki/Step_file) and [BREP](http://en.wikipedia.org/wiki/BREP). @@ -17,14 +19,5 @@ The ** [Part Export](Part_Export.md 3. Go to the menu **Part → Export CAD**. 4. Select the file format and the output path. - - - - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Export/pt-br diff --git a/wiki/translations/pt-br/Part_Extrude.md b/wiki/translations/pt-br/Part_Extrude.md index b4131325f2..93fd87b02c 100644 --- a/wiki/translations/pt-br/Part_Extrude.md +++ b/wiki/translations/pt-br/Part_Extrude.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Trimex](Draft_Trimex.md) --- +# Part Extrude/pt-br + ![600px](images/Part_Extrude_demo.png) ## Description @@ -110,8 +112,5 @@ Part Extrude doesn\'t care where it is in model tree. PartDesign Pad can only li Part Extrude can extrude any object that has Part Geometry (OCC shape), except for solids and compsolids. And it can\'t extrude individual faces of other objects. PartDesign Pad will only accept a Sketch as a profile (and a small selection of other object types), or a face of a solid. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Extrude/pt-br diff --git a/wiki/translations/pt-br/Part_FaceColors.md b/wiki/translations/pt-br/Part_FaceColors.md index a2b8bab90f..360f6edfcb 100644 --- a/wiki/translations/pt-br/Part_FaceColors.md +++ b/wiki/translations/pt-br/Part_FaceColors.md @@ -6,6 +6,8 @@ SeeAlso:[Std Appearance](Std_SetAppearance.md) --- +# Part FaceColors/pt-br + ## Description The **FaceColors** feature allows you to define a color for each face or surface of an object. This way you can assign multiple colors to one part. To color whole parts, use instead is the feature *[SetAppearance](Std_SetAppearance.md)*. @@ -35,3 +37,6 @@ To reset all face colors: [Category:User Documentation](Category:User_Documentation.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part FaceColors/pt-br diff --git a/wiki/translations/pt-br/Part_Feature.md b/wiki/translations/pt-br/Part_Feature.md index 57c697cd13..393588c23d 100644 --- a/wiki/translations/pt-br/Part_Feature.md +++ b/wiki/translations/pt-br/Part_Feature.md @@ -1,6 +1,4 @@ # Part Feature/pt-br - - ## Introdução @@ -202,4 +200,7 @@ If desired, the `Label` attribute can be changed to a more meaningful text. - By default the `Label` is unique, just like the `Name`. However, this behavior can be changed in the [preferences editor](Preferences_Editor.md), **Edit → Preferences → General → Document → Allow duplicate object labels in one document**. This means that in general the `Label` may be repeated in the same document; when testing for a specific element the user should rely on the `Name` rather than on the `Label`. - {{Document objects navi}} + {{Document objects navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Feature/pt-br diff --git a/wiki/translations/pt-br/Part_Fillet.md b/wiki/translations/pt-br/Part_Fillet.md index f0f1243229..faf035ff7a 100644 --- a/wiki/translations/pt-br/Part_Fillet.md +++ b/wiki/translations/pt-br/Part_Fillet.md @@ -6,6 +6,8 @@ SeeAlso:[Part Chamfer](Part_Chamfer.md) --- +# Part Fillet/pt-br + ## Description This tool creates a fillet (round) on the selected edges of an object. A dialog allows you to choose which objects and which edges to work on. @@ -38,8 +40,5 @@ The fillet tool sometimes fails when trying to fillet complex objects. A common Also note that the part Fillet feature is affected by the [Topological naming problem](Topological_naming_problem.md) when the any change is done to a modeling step earlier in the chain that affects the number of facets or vertices. This could cause unpredictable result. Until that is resolved (possibly with V0.19) it is advised to apply Chamfer and [Fillet](Part_Fillet.md) operations at the last steps in the chain. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fillet/pt-br diff --git a/wiki/translations/pt-br/Part_Fuse.md b/wiki/translations/pt-br/Part_Fuse.md index edb5940122..ce1518ae63 100644 --- a/wiki/translations/pt-br/Part_Fuse.md +++ b/wiki/translations/pt-br/Part_Fuse.md @@ -6,6 +6,8 @@ SeeAlso:[Part Boolean](Part_Boolean.md), [Part Cut](Part_Cut.md), [Part Common](Part_Common.md) --- +# Part Fuse/pt-br + ## Description The **![](images/)_[Part_Fuse](Part_Fuse.md)** tool fuses (unites) selected Part objects into one. This operation is fully parametric and the components can be modified and the result recomputed. @@ -37,8 +39,5 @@ Items can be added and removed from the fusion, by dragging them in or out of th After this operation is complete, it may be necessary to clean up the shape with [RefineShape](Part_RefineShape.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fuse/pt-br diff --git a/wiki/translations/pt-br/Part_Helix.md b/wiki/translations/pt-br/Part_Helix.md index 714b194a8a..13a8c388da 100644 --- a/wiki/translations/pt-br/Part_Helix.md +++ b/wiki/translations/pt-br/Part_Helix.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Helix/pt-br + ## Description The ** [Part Helix](Part_Helix.md)** geometric primitive creates a helix shape, defined by a radius, a pitch, and a total height. @@ -61,8 +63,5 @@ Once you have created the helix you have the possibility to edit its parameters. | | | +----------------------------------------------------------+----------------------------------------------------------------------------------+ - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Helix/pt-br diff --git a/wiki/translations/pt-br/Part_Import.md b/wiki/translations/pt-br/Part_Import.md index 36c7d14d4c..0768af4692 100644 --- a/wiki/translations/pt-br/Part_Import.md +++ b/wiki/translations/pt-br/Part_Import.md @@ -6,6 +6,8 @@ SeeAlso:[Part Export](Part_Export.md), [Std Import](Std_Import.md), [Import Export](Import_Export.md) --- +# Part Import/pt-br + ## Description The ** [Part Import](Part_Import.md)** tool opens a dialog that allows you to import the following CAD file formats: [IGES](http://en.wikipedia.org/wiki/IGES), [STEP](http://en.wikipedia.org/wiki/Step_file) and [BREP](http://en.wikipedia.org/wiki/BREP) into the current document. @@ -16,8 +18,5 @@ The ** [Part Import](Part_Import.md 2. Go to the menu **Part → Import CAD**. 3. Select the file to be imported. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Import/pt-br diff --git a/wiki/translations/pt-br/Part_JoinConnect.md b/wiki/translations/pt-br/Part_JoinConnect.md index 4607433c51..8b883dc6dd 100644 --- a/wiki/translations/pt-br/Part_JoinConnect.md +++ b/wiki/translations/pt-br/Part_JoinConnect.md @@ -7,6 +7,8 @@ SeeAlso:[Part JoinEmbed](Part_JoinEmbed.md), [Part JoinCutout](Part_JoinCutout.md), [Part Boolean](Part_Boolean.md), [Part Thickness](Part_Thickness.md) --- +# Part JoinConnect/pt-br + ## Description Connect tool connects interiors of two walled objects (e.g., pipes). It can also join shells and wires. @@ -89,8 +91,5 @@ j.Objects = FreeCADGui.Selection.getSelection() - The tool was re-implemented to work via generalFuse in FreeCAD v0.17.8053 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinConnect/pt-br diff --git a/wiki/translations/pt-br/Part_JoinCutout.md b/wiki/translations/pt-br/Part_JoinCutout.md index c7ba85058e..299341dd95 100644 --- a/wiki/translations/pt-br/Part_JoinCutout.md +++ b/wiki/translations/pt-br/Part_JoinCutout.md @@ -7,6 +7,8 @@ SeeAlso:[Part JoinConnect](Part_JoinConnect.md), [Part JoinEmbed](Part_JoinEmbed.md), [Part Boolean](Part_Boolean.md), [Part Thickness](Part_Thickness.md) --- +# Part JoinCutout/pt-br + ## Description The [Part JoinCutout](Part_JoinCutout.md) tool creates a cutout in a walled object (e.g., a pipe) to fit another walled object. @@ -81,8 +83,5 @@ j.Tool = FreeCADGui.Selection.getSelection()[1] The tool itself is implemented in Python, see {{FileName|/Mod/Part/JoinFeatures.py}} ([Github link](https://github.com/FreeCAD/FreeCAD/blob/master/src/Mod/Part/JoinFeatures.py)) under where FreeCAD is installed. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinCutout/pt-br diff --git a/wiki/translations/pt-br/Part_JoinEmbed.md b/wiki/translations/pt-br/Part_JoinEmbed.md index 49978cb189..97a15e27a2 100644 --- a/wiki/translations/pt-br/Part_JoinEmbed.md +++ b/wiki/translations/pt-br/Part_JoinEmbed.md @@ -7,6 +7,8 @@ SeeAlso:[Part JoinConnect](Part_JoinConnect.md), [Part JoinCutout](Part_JoinCutout.md), [Part Boolean](Part_Boolean.md), [Part Thickness](Part_Thickness.md) --- +# Part JoinEmbed/pt-br + ## Description Embed tool embeds a walled object (e.g., a pipe) into another walled object. @@ -85,8 +87,5 @@ j.Tool = FreeCADGui.Selection.getSelection()[1] The tool itself is implemented in Python, see {{FileName|/Mod/Part/JoinFeatures.py}} ([Github link](https://github.com/FreeCAD/FreeCAD/blob/master/src/Mod/Part/JoinFeatures.py)) under where FreeCAD is installed. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinEmbed/pt-br diff --git a/wiki/translations/pt-br/Part_Line.md b/wiki/translations/pt-br/Part_Line.md index 3a10039ead..13e0efeee9 100644 --- a/wiki/translations/pt-br/Part_Line.md +++ b/wiki/translations/pt-br/Part_Line.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Line/pt-br + ## Description ## Usage @@ -83,11 +85,5 @@ | | : | +--------------------------------------------------------+------------------------------------------+ - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Line/pt-br diff --git a/wiki/translations/pt-br/Part_Loft.md b/wiki/translations/pt-br/Part_Loft.md index bb8ffaf7d6..6a9f970fd7 100644 --- a/wiki/translations/pt-br/Part_Loft.md +++ b/wiki/translations/pt-br/Part_Loft.md @@ -7,6 +7,8 @@ SeeAlso:[Part Sweep](Part_Sweep.md) --- +# Part Loft/pt-br + ## Overview The Loft tool is used to create a face, shell or a solid shape from two or more profiles. The profiles can be a point (vertex), line (Edge), wire or face. Edges and wires may be either open or closed. There are various [Limitations and complications](Part_Loft#Limitations_and_complications.md), see below, however the profiles may come from the Part Workbench primitives, Draft Workbench features and a Sketch. @@ -102,8 +104,5 @@ If you want to change the selection of the sections after creation of the loft, The sequence of sections depends on the sequence of clicks in the list. If you want to make substantial changes it is recommended to first deselect all and then start selection in the right order. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Loft/pt-br diff --git a/wiki/translations/pt-br/Part_MakeFace.md b/wiki/translations/pt-br/Part_MakeFace.md index 3d0dd99b61..2485815897 100644 --- a/wiki/translations/pt-br/Part_MakeFace.md +++ b/wiki/translations/pt-br/Part_MakeFace.md @@ -7,6 +7,8 @@ SeeAlso:[Part RuledSurface](Part_RuledSurface.md) --- +# Part MakeFace/pt-br + ## Description Part MakeFace‏‎ creates a [plane](Part_Plane.md) in a custom shape. The shape is defined by a closed sketch contour. @@ -23,8 +25,5 @@ It is possible to nest closed contours, for example to have circles inside a pol 1. Select a sketch defining at least one closed contour 2. Press the [Part MakeFace](Part_MakeFace.md) button - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeFace/pt-br diff --git a/wiki/translations/pt-br/Part_MakeSolid.md b/wiki/translations/pt-br/Part_MakeSolid.md index e19c810022..fd7eb11704 100644 --- a/wiki/translations/pt-br/Part_MakeSolid.md +++ b/wiki/translations/pt-br/Part_MakeSolid.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part MakeSolid/pt-br + ## Description This command creates a solid from a shape object. @@ -20,8 +22,5 @@ This command creates a solid from a shape object. - There will be no analyzing or validating of the shape object. - It is recommended to use [Part RefineShape](Part_RefineShape.md) before converting to a solid. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeSolid/pt-br diff --git a/wiki/translations/pt-br/Part_Measure_Angular.md b/wiki/translations/pt-br/Part_Measure_Angular.md index 4fcd3c2f44..22ce161c33 100644 --- a/wiki/translations/pt-br/Part_Measure_Angular.md +++ b/wiki/translations/pt-br/Part_Measure_Angular.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Measure Angular/pt-br + ## Description This tool measures the angle between two straight edges, two planar faces or one straight edge and a planar face and displays the measurement in the [3D view](3D_view.md). @@ -20,11 +22,5 @@ This tool measures the angle between two straight edges, two planar faces or one 3. Alternatively the command can be launched without prior selection. A selection dialog then opens in the [Task panel](Task_panel.md). A Control widget also provides buttons to reset the selection, toggle the measurement display in the [3D view](3D_view.md), and clear all measurements. 4. Measurements are automatically discarded when closing the document. - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Angular/pt-br diff --git a/wiki/translations/pt-br/Part_Measure_Clear_All.md b/wiki/translations/pt-br/Part_Measure_Clear_All.md index aa58fc2819..055884234b 100644 --- a/wiki/translations/pt-br/Part_Measure_Clear_All.md +++ b/wiki/translations/pt-br/Part_Measure_Clear_All.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Measure Clear All/pt-br + ## Description This tool clears all measurements from the 3D view. @@ -15,11 +17,5 @@ This tool clears all measurements from the 3D view. - Press the ** [Clear All](Part_Measure_Clear_All.md)** button. - Use the **Measure → Clear All** - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Clear All/pt-br diff --git a/wiki/translations/pt-br/Part_Measure_Linear.md b/wiki/translations/pt-br/Part_Measure_Linear.md index 4bab6ecb11..ef3171d8e8 100644 --- a/wiki/translations/pt-br/Part_Measure_Linear.md +++ b/wiki/translations/pt-br/Part_Measure_Linear.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Measure Linear/pt-br + ## Description This tool measures the distance between two selected topology elements (vertex, edge, face) and displays the measurement in the [3D view](3D_view.md). The shortest distance between the two elements is shown in red, and delta measurements (distances parallel to standard X, Y, Z axes) are shown in green. @@ -20,8 +22,5 @@ This tool measures the distance between two selected topology elements (vertex, 3. Alternatively the command can be launched without prior selection. A selection dialog then opens in the [Task panel](Task_panel.md). A Control widget also provides buttons to reset the selection, toggle the measurement display in the [3D view](3D_view.md), and clear all measurements. 4. Measurements are automatically discarded when closing the document. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Linear/pt-br diff --git a/wiki/translations/pt-br/Part_Measure_Menu.md b/wiki/translations/pt-br/Part_Measure_Menu.md index fd8f7c586b..411348a924 100644 --- a/wiki/translations/pt-br/Part_Measure_Menu.md +++ b/wiki/translations/pt-br/Part_Measure_Menu.md @@ -5,6 +5,8 @@ SeeAlso:[Std MeasureDistance](Std_MeasureDistance.md), [Draft Dimension](Draft_Dimension.md), [Arch Survey](Arch_Survey.md) --- +# Part Measure Menu/pt-br + {{StdMenu| Measure}} @@ -34,3 +36,6 @@ [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Menu/pt-br diff --git a/wiki/translations/pt-br/Part_Measure_Refresh.md b/wiki/translations/pt-br/Part_Measure_Refresh.md index efbf39c4ac..21600c8194 100644 --- a/wiki/translations/pt-br/Part_Measure_Refresh.md +++ b/wiki/translations/pt-br/Part_Measure_Refresh.md @@ -6,6 +6,8 @@ SeeAlso:[Part Measure Linear](Part_Measure_Linear.md), [Part Measure Angular](Part_Measure_Angular.md) --- +# Part Measure Refresh/pt-br + ## Descrição [Part Measure Refresh](Part_Measure_Refresh.md) updates the [3D view](3D_view.md) to display all measurements created with [Measure Linear](Part_Measure_Linear.md) and [Measure Angular](Part_Measure_Angular.md). @@ -16,8 +18,5 @@ - Press the ** [Measure Refresh](Part_Measure_Refresh.md)** button. - Use the **Measure → Refresh**. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Refresh/pt-br diff --git a/wiki/translations/pt-br/Part_Measure_Toggle_3d.md b/wiki/translations/pt-br/Part_Measure_Toggle_3d.md index e82dffd4cc..ca72c67022 100644 --- a/wiki/translations/pt-br/Part_Measure_Toggle_3d.md +++ b/wiki/translations/pt-br/Part_Measure_Toggle_3d.md @@ -6,6 +6,8 @@ SeeAlso:[Part Measure Toggle Delta](Part_Measure_Toggle_Delta.md) --- +# Part Measure Toggle 3d/pt-br + ## Description This tool toggles the visibility of linear (red) and angular (blue) measurements. @@ -16,8 +18,5 @@ This tool toggles the visibility of linear (red) and angular (blue) measurements - Press the ** '''Toggle 3d'''** button - Use the **Measure → Toggle 3d** - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle 3d/pt-br diff --git a/wiki/translations/pt-br/Part_Measure_Toggle_All.md b/wiki/translations/pt-br/Part_Measure_Toggle_All.md index 518ac41b87..68cd78c5db 100644 --- a/wiki/translations/pt-br/Part_Measure_Toggle_All.md +++ b/wiki/translations/pt-br/Part_Measure_Toggle_All.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Measure Toggle All/pt-br + ## Description This tool toggles the visibility of all measurements from the [3D view](3D_view.md). @@ -17,11 +19,5 @@ This tool toggles the visibility of all measurements from the [3D view](3D_view. - Press the ** '''Toggle All'''** button. - Use the **Measure → Toggle All** - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle All/pt-br diff --git a/wiki/translations/pt-br/Part_Measure_Toggle_Delta.md b/wiki/translations/pt-br/Part_Measure_Toggle_Delta.md index 0bd4c15ffa..d04fcc942e 100644 --- a/wiki/translations/pt-br/Part_Measure_Toggle_Delta.md +++ b/wiki/translations/pt-br/Part_Measure_Toggle_Delta.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Measure Toggle Delta/pt-br + ## Description This tool toggles the visibility of delta (green) measurements. @@ -15,8 +17,5 @@ This tool toggles the visibility of delta (green) measurements. - Press the ** '''Toggle Delta'''** button. - Use the **Measure → Toggle Delta** - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle Delta/pt-br diff --git a/wiki/translations/pt-br/Part_Mirror.md b/wiki/translations/pt-br/Part_Mirror.md index 72dc56a933..78bbb15906 100644 --- a/wiki/translations/pt-br/Part_Mirror.md +++ b/wiki/translations/pt-br/Part_Mirror.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Mirror/pt-br + ## Description \'Mirror Object\' - This tool creates a new object (image) which is a reflection of the original object (source). The image object is created behind a mirror plane. The mirror plane may be standard plane (**XY**, **YZ**, or **XZ**), or any plane parallel to a standard plane. @@ -43,8 +45,5 @@ The **Base point** boxes can be used to move the mirror plane parallel to the se - Arbitrary mirror planes (ie not parallel to a standard plane) are not supported. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Mirror/pt-br diff --git a/wiki/translations/pt-br/Part_Module.md b/wiki/translations/pt-br/Part_Module.md index 8babce9fd6..cbb5311e71 100644 --- a/wiki/translations/pt-br/Part_Module.md +++ b/wiki/translations/pt-br/Part_Module.md @@ -1,7 +1,4 @@ # Part Module/pt-br - - -
@@ -219,3 +216,6 @@ Veja [Script(roteiro) da peça](Part_scripting/pt-br.md). [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/pt-br diff --git a/wiki/translations/pt-br/Part_Offset.md b/wiki/translations/pt-br/Part_Offset.md index 0abefc4eb4..17f373241e 100644 --- a/wiki/translations/pt-br/Part_Offset.md +++ b/wiki/translations/pt-br/Part_Offset.md @@ -6,6 +6,8 @@ SeeAlso:[Thickness](Part_Thickness.md), [Part 2D Offset](Part_Offset2D.md) --- +# Part Offset/pt-br + ## Description The Part 3D Offset tool creates parallel copies of a selected shape at a certain distance from the base shape, giving a new object. @@ -54,10 +56,7 @@ same shape with a 3D Offset as SKIN and *filled* offset *filled* offset with 2 Cylinders creating boolean cuts. Cylinder A goes through the FILL whilst Cylinder B only goes thru the FILL and NOT through the source 2D shape. - - - + - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset/pt-br diff --git a/wiki/translations/pt-br/Part_Offset2D.md b/wiki/translations/pt-br/Part_Offset2D.md index 174d852d65..486b309937 100644 --- a/wiki/translations/pt-br/Part_Offset2D.md +++ b/wiki/translations/pt-br/Part_Offset2D.md @@ -7,6 +7,8 @@ SeeAlso:[Part Offset 3D](Part_Offset.md), [Part Thickness](Part_Thickness.md), [Draft Offset](Draft_Offset.md) --- +# Part Offset2D/pt-br + ## Description Part 2D Offset constructs a wire, parallel to the original wire, at a certain distance from it. Or enlarges/shrinks a planar face, similarly. @@ -114,8 +116,5 @@ Part.show(enlarged_circle) # structure follows that of source shape. }} - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset2D/pt-br diff --git a/wiki/translations/pt-br/Part_Part2DObject.md b/wiki/translations/pt-br/Part_Part2DObject.md index 89a8818ec1..190a9c2709 100644 --- a/wiki/translations/pt-br/Part_Part2DObject.md +++ b/wiki/translations/pt-br/Part_Part2DObject.md @@ -1,6 +1,4 @@ # Part Part2DObject/pt-br - - ## Introdução @@ -118,5 +116,5 @@ obj.Label = "Custom label" For example, most tools from the [Draft Workbench](Draft_Workbench.md), like [Draft Line](Draft_Line.md), [Draft Rectangle](Draft_Rectangle.md), [Draft Polygon](Draft_Polygon.md), etc., are `Part::Part2DObjectPython` objects with a custom icon and additional properties. - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Part2DObject/pt-br diff --git a/wiki/translations/pt-br/Part_Plane.md b/wiki/translations/pt-br/Part_Plane.md index 1942847a37..3fcd39575d 100644 --- a/wiki/translations/pt-br/Part_Plane.md +++ b/wiki/translations/pt-br/Part_Plane.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Plane/pt-br + ## Description Create a simple parametric plane 10 x 10 mm, with the parameters of position, length, and width. By default, the plane is positioned at the origin (0,0,0). @@ -46,8 +48,5 @@ The properties of the object can be edited, either in the [Property editor](Prop You have the standard properties view. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Plane/pt-br diff --git a/wiki/translations/pt-br/Part_Point.md b/wiki/translations/pt-br/Part_Point.md index 46768b43a2..52abc65150 100644 --- a/wiki/translations/pt-br/Part_Point.md +++ b/wiki/translations/pt-br/Part_Point.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Point/pt-br + ## Description A Point (vertex) geometric primitive. @@ -85,4 +87,7 @@ A Point (vertex) geometric primitive. {{Part_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Point/pt-br diff --git a/wiki/translations/pt-br/Part_PointsFromMesh.md b/wiki/translations/pt-br/Part_PointsFromMesh.md index 1648744d86..973cd5aa2f 100644 --- a/wiki/translations/pt-br/Part_PointsFromMesh.md +++ b/wiki/translations/pt-br/Part_PointsFromMesh.md @@ -7,6 +7,8 @@ SeeAlso:[Part ShapeFromMesh](Part_ShapeFromMesh.md), [Part ConvertToSolid](Part_MakeSolid.md), [Part RefineShape](Part_RefineShape.md) --- +# Part PointsFromMesh/pt-br + ## Description The ** [Part PointsFromMesh](Part_PointsFromMesh.md) @@ -31,8 +33,5 @@ There will be no analyzing or validating of the mesh object. Analyzing and repai ## Scripting - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part PointsFromMesh/pt-br diff --git a/wiki/translations/pt-br/Part_Primitives.md b/wiki/translations/pt-br/Part_Primitives.md index b145f9819a..def10416a6 100644 --- a/wiki/translations/pt-br/Part_Primitives.md +++ b/wiki/translations/pt-br/Part_Primitives.md @@ -6,6 +6,8 @@ SeeAlso:[Part Shapebuilder](Part_Builder.md) --- +# Part Primitives/pt-br + ## Description [Part Primitives](Part_Primitives.md) opens a dialog to create any of the parametric geometric primitives defined in the [Part Workbench](Part_Workbench.md). @@ -84,8 +86,5 @@ It can be used as input to the program as well. freecad $INSTALL_DIR/Mod/Part/parttests/part_test_objects.py ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Primitives/pt-br diff --git a/wiki/translations/pt-br/Part_Prism.md b/wiki/translations/pt-br/Part_Prism.md index b54f2aceb9..63fb62c239 100644 --- a/wiki/translations/pt-br/Part_Prism.md +++ b/wiki/translations/pt-br/Part_Prism.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md), [Part Box/Cube](Part_Box.md) --- +# Part Prism/pt-br + ## Description A Part Prism is a solid defined by a regular polygon cross section and a height. @@ -29,10 +31,7 @@ The prism properties can later be edited, either in the [Property editor](Proper - **First Angle**: Angle in first direction. (v0.19) -- **Second Angle**: Angle in second direction. (v0.19) - - +- **Second Angle**: Angle in second direction. (v0.19) - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Prism/pt-br diff --git a/wiki/translations/pt-br/Part_ProjectionOnSurface.md b/wiki/translations/pt-br/Part_ProjectionOnSurface.md index 5fc10bbafc..67c0198b4f 100644 --- a/wiki/translations/pt-br/Part_ProjectionOnSurface.md +++ b/wiki/translations/pt-br/Part_ProjectionOnSurface.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Part ProjectionOnSurface/pt-br + ## Description @@ -90,8 +92,5 @@ If this happens: ## Examples - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ProjectionOnSurface/pt-br diff --git a/wiki/translations/pt-br/Part_RefineShape.md b/wiki/translations/pt-br/Part_RefineShape.md index 9432b382fe..89de2d7fdb 100644 --- a/wiki/translations/pt-br/Part_RefineShape.md +++ b/wiki/translations/pt-br/Part_RefineShape.md @@ -6,6 +6,8 @@ SeeAlso:[Part SimpleCopy](Part_SimpleCopy.md), [Part TransformedCopy](Part_TransformedCopy.md), [Part ElementCopy](Part_ElementCopy.md), [OpenSCAD RefineShapeFeature](OpenSCAD_RefineShapeFeature.md) --- +# Part RefineShape/pt-br + ## Description The ** [Part RefineShape](Part_RefineShape.md)** produces a non-parametric copy with a refined shape, that is, with certain edges and faces cleaned up. @@ -53,8 +55,5 @@ The Python command for refining a shape is the following: shape.removeSplitter() ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RefineShape/pt-br diff --git a/wiki/translations/pt-br/Part_RegularPolygon.md b/wiki/translations/pt-br/Part_RegularPolygon.md index a01535080e..99b5874f64 100644 --- a/wiki/translations/pt-br/Part_RegularPolygon.md +++ b/wiki/translations/pt-br/Part_RegularPolygon.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part RegularPolygon/pt-br + ## Description Creates a RegularPolygon geometric primitive. @@ -25,8 +27,5 @@ The RegularPolygon is available from the Create Primitives dialogue in the Part - Polygon - the number of sides of the polygon which describes the cross section of the Part Prism - Circumradius - the circumradius is the distance from the centre of the polygon to a vertex. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RegularPolygon/pt-br diff --git a/wiki/translations/pt-br/Part_ReverseShapes.md b/wiki/translations/pt-br/Part_ReverseShapes.md index 543124cf43..88ccb65040 100644 --- a/wiki/translations/pt-br/Part_ReverseShapes.md +++ b/wiki/translations/pt-br/Part_ReverseShapes.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part ReverseShapes/pt-br + ## Description Flips the normals of all faces of the selected object. @@ -30,8 +32,5 @@ You can verify this by ## Scripting - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ReverseShapes/pt-br diff --git a/wiki/translations/pt-br/Part_Revolve.md b/wiki/translations/pt-br/Part_Revolve.md index 7c2ced32c3..9a4536826f 100644 --- a/wiki/translations/pt-br/Part_Revolve.md +++ b/wiki/translations/pt-br/Part_Revolve.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Revolve/pt-br + ## Description Revolves the selected object around a given axis. The following shape types are allowed, and lead to the listed output shapes ([See Notes for exceptions](#Notes.md)): @@ -30,8 +32,5 @@ If you select a user defined axis, the numbers define the direction of the revol - If your version of FreeCAD has a check box for Solid in the Revolve dialog, you can make Solids from closed Wires and Edges. - If Revolve is performed using an axis that intersects the face to rotate, and you want to create a solid, the result might be invalid. This can happen for various reasons, self-intersection, direction, etc. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Revolve/pt-br diff --git a/wiki/translations/pt-br/Part_RuledSurface.md b/wiki/translations/pt-br/Part_RuledSurface.md index cb016fd277..88bceff7df 100644 --- a/wiki/translations/pt-br/Part_RuledSurface.md +++ b/wiki/translations/pt-br/Part_RuledSurface.md @@ -6,6 +6,8 @@ SeeAlso:[Part MakeFace](Part_MakeFace.md) --- +# Part RuledSurface/pt-br + ## Description Create ruled surface @@ -18,8 +20,5 @@ Create ruled surface - Press the [Part RuledSurface](Part_RuledSurface.md) button - Use the **Part → RuledSurface** entry in the Part menu - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RuledSurface/pt-br diff --git a/wiki/translations/pt-br/Part_Section.md b/wiki/translations/pt-br/Part_Section.md index 26f18a3be6..bced8db6ef 100644 --- a/wiki/translations/pt-br/Part_Section.md +++ b/wiki/translations/pt-br/Part_Section.md @@ -6,6 +6,8 @@ SeeAlso:[Part CrossSections](Part_CrossSections.md) --- +# Part Section/pt-br + ## Description Extracts a section from the intersection of two selected shapes, the second one being used as a section plane. This operation is fully parametric and the components can be modified and the result recomputed. @@ -30,8 +32,5 @@ In this example, a cube is sectioned with a cylinder: To create sections with a section plane see [Cross-sections](Part_CrossSections.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Section/pt-br diff --git a/wiki/translations/pt-br/Part_ShapeFromMesh.md b/wiki/translations/pt-br/Part_ShapeFromMesh.md index 71556c790f..052c609aca 100644 --- a/wiki/translations/pt-br/Part_ShapeFromMesh.md +++ b/wiki/translations/pt-br/Part_ShapeFromMesh.md @@ -6,6 +6,8 @@ SeeAlso:[Part ConvertToSolid](Part_MakeSolid.md), [Part RefineShape](Part_RefineShape.md), [Part PointsFromMesh](Part_PointsFromMesh.md) --- +# Part ShapeFromMesh/pt-br + ## Introduction The ** [Part ShapeFromMesh](Part_ShapeFromMesh.md)** command creates a shape from a [mesh object](Mesh.md). Mesh objects have limited editing capabilities in FreeCAD, converting them to [shapes](Shape.md) will allow their use with many more boolean and modification tools. @@ -52,8 +54,5 @@ solid.purgeTouched() doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ShapeFromMesh/pt-br diff --git a/wiki/translations/pt-br/Part_SimpleCopy.md b/wiki/translations/pt-br/Part_SimpleCopy.md index 9668a4f225..3be61d7982 100644 --- a/wiki/translations/pt-br/Part_SimpleCopy.md +++ b/wiki/translations/pt-br/Part_SimpleCopy.md @@ -6,6 +6,8 @@ SeeAlso:[Std Copy](Std_Copy.md), [Std Duplicate Selection](Std_DuplicateSelection.md), [Part TransformedCopy](Part_TransformedCopy.md), [Part ElementCopy](Part_ElementCopy.md), [Part RefineShape](Part_RefineShape.md) --- +# Part SimpleCopy/pt-br + ## Description @@ -30,8 +32,5 @@ The copy has a simple **Placement** property like any other [Part Feature](Part_ The copy has simple view properties like any other [Part Feature](Part_Feature.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SimpleCopy/pt-br diff --git a/wiki/translations/pt-br/Part_Slice.md b/wiki/translations/pt-br/Part_Slice.md index 900c26fa72..44cf688199 100644 --- a/wiki/translations/pt-br/Part_Slice.md +++ b/wiki/translations/pt-br/Part_Slice.md @@ -7,6 +7,8 @@ SeeAlso:[Part Boolean Fragments](Part_BooleanFragments.md), [Part XOR](Part_XOR.md), [Part Join features](Part_CompJoinFeatures.md), [Part Boolean](Part_Boolean.md) --- +# Part Slice/pt-br + ## Description The [Part Slice](Part_Slice.md) also known as **Slice to compound** tool is used to split shapes by intersection with other shapes. For example, for a box and a plane, a compound of two solids is created. @@ -126,8 +128,5 @@ The tool itself is implemented in Python, see {{FileName|/Mod/Part/BOPTools/Spli - [FreeCAD Slice und Slice Apart und andere Tricks](https://www.youtube.com/watch?v=JJAL5JmqqKQ) (German language), author: Ha Gei - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Slice/pt-br diff --git a/wiki/translations/pt-br/Part_SliceApart.md b/wiki/translations/pt-br/Part_SliceApart.md index 9ff59fca5d..bc876f9a1c 100644 --- a/wiki/translations/pt-br/Part_SliceApart.md +++ b/wiki/translations/pt-br/Part_SliceApart.md @@ -7,6 +7,8 @@ SeeAlso:[Part Slice to compound](Part_Slice.md), [Part Explode Compound](Part_ExplodeCompound.md) --- +# Part SliceApart/pt-br + ## Description Tool to split shapes by intersection with other shapes. For example, for a box and a plane, two solids are created. ![600px](images/Part_Slice_Demo.png) @@ -65,8 +67,5 @@ Slice Apart was introduced in FreeCAD v0.18.15506. FreeCAD needs to be compiled - : FreeCAD Slice und Slice Apart und andere Tricks (German lanuage), author: Ha Gei - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SliceApart/pt-br diff --git a/wiki/translations/pt-br/Part_Sphere.md b/wiki/translations/pt-br/Part_Sphere.md index 1fa8508485..3f502c6d4a 100644 --- a/wiki/translations/pt-br/Part_Sphere.md +++ b/wiki/translations/pt-br/Part_Sphere.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Sphere/pt-br + ## Description Creates a simple parametric sphere, with position, angle1, angle2, angle3 and radius parameters. @@ -42,8 +44,5 @@ Because it is quite difficult to explain the meaning of the parameters angle 1, - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sphere/pt-br diff --git a/wiki/translations/pt-br/Part_Spiral.md b/wiki/translations/pt-br/Part_Spiral.md index 8c77970040..b1cc3fdbb9 100644 --- a/wiki/translations/pt-br/Part_Spiral.md +++ b/wiki/translations/pt-br/Part_Spiral.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Spiral/pt-br + ## Description ## Usage @@ -19,8 +21,5 @@ The Create Primitives dialogue can be accessed via the [Primitives](Part_Primiti ![](images/Spiral_y45_it.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Spiral/pt-br diff --git a/wiki/translations/pt-br/Part_Sweep.md b/wiki/translations/pt-br/Part_Sweep.md index 656d332073..bf736f83a5 100644 --- a/wiki/translations/pt-br/Part_Sweep.md +++ b/wiki/translations/pt-br/Part_Sweep.md @@ -6,6 +6,8 @@ SeeAlso:[Part Loft](Part_Loft.md) --- +# Part Sweep/pt-br + ## Description The [Part Sweep](Part_Sweep.md) tool is used to create a face, a shell, or a solid shape from one or more profiles (cross-sections) projected along a path. @@ -82,8 +84,5 @@ If \"Frenet\" is \"true\" the orientation of the profile is computed basing on l - Since Sweep is often used to create threads for screws, you should see [Thread for Screw Tutorial](Thread_for_Screw_Tutorial.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sweep/pt-br diff --git a/wiki/translations/pt-br/Part_Thickness.md b/wiki/translations/pt-br/Part_Thickness.md index 18ec8c4253..d7d5bf70b8 100644 --- a/wiki/translations/pt-br/Part_Thickness.md +++ b/wiki/translations/pt-br/Part_Thickness.md @@ -6,6 +6,8 @@ SeeAlso:[Part Offset](Part_Offset.md) --- +# Part Thickness/pt-br + ## Description The [Thickness](Part_Thickness.md) tool works on a solid shape and transforms it into a hollow object, giving to each of its faces a defined thickness. On some solids it allows you to significantly speed up the work, and avoids making extrusions and pockets. @@ -69,8 +71,5 @@ Notes: ![](images/ThicknessEsempio4.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Thickness/pt-br diff --git a/wiki/translations/pt-br/Part_Torus.md b/wiki/translations/pt-br/Part_Torus.md index 905e178d7a..d786fe87bf 100644 --- a/wiki/translations/pt-br/Part_Torus.md +++ b/wiki/translations/pt-br/Part_Torus.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Torus/pt-br + ## Description Creates a simple parametric torus, with position, angle1, angle2, angle3, radius1 and radius2 as parameters. @@ -50,10 +52,7 @@ as well as the standard set of placement parameters. The pictures below give a v ![](images/TorusExampleAngle2.jpg ) The parameter Angle2 has a value of 90°. -![](images/TorusExampleAngle3.jpg ) The parameter Angle3 has a value of 90°. - - +![](images/TorusExampleAngle3.jpg ) The parameter Angle3 has a value of 90°. - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Torus/pt-br diff --git a/wiki/translations/pt-br/Part_TransformedCopy.md b/wiki/translations/pt-br/Part_TransformedCopy.md index 26734c6b0c..b219704814 100644 --- a/wiki/translations/pt-br/Part_TransformedCopy.md +++ b/wiki/translations/pt-br/Part_TransformedCopy.md @@ -7,6 +7,8 @@ SeeAlso:[Part SimpleCopy](Part_SimpleCopy.md), [Part ElementCopy](Part_ElementCopy.md), [Part RefineShape](Part_RefineShape.md) --- +# Part TransformedCopy/pt-br + ## Description [Part TransformedCopy](Part_TransformedCopy.md) produces a non-parametric copy of an object that has been displaced from its original position. @@ -29,8 +31,5 @@ The copy has a simple **Placement** property like any other [Part Feature](Part_ The copy has simple view properties like any other [Part Feature](Part_Feature.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part TransformedCopy/pt-br diff --git a/wiki/translations/pt-br/Part_Tube.md b/wiki/translations/pt-br/Part_Tube.md index 6d8b48dbd6..05be372480 100644 --- a/wiki/translations/pt-br/Part_Tube.md +++ b/wiki/translations/pt-br/Part_Tube.md @@ -7,6 +7,8 @@ SeeAlso:[Part CreatePrimitives](Part_CreatePrimitives.md) --- +# Part Tube/pt-br + ## Description The Tube command inserts a tube into the active document. The tube is geometrically treated as a cut of a smaller cylinder into a larger one. By default, the command will insert a 10 mm high tube with an outer radius of 5 mm and an inner radius of 2 mm. These parameters can be modified after the object has been added. @@ -36,8 +38,5 @@ To edit the tube - **Placement:** Specifies the orientation and position of the Box in the 3D space. See [ Placement](Placement.md). The reference point is the left front lower corner of the box. - **Label:** The Label is the name given to the operation. This name can be changed at your convenience. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Tube/pt-br diff --git a/wiki/translations/pt-br/Part_Wedge.md b/wiki/translations/pt-br/Part_Wedge.md index e91f58b96c..e24014ca84 100644 --- a/wiki/translations/pt-br/Part_Wedge.md +++ b/wiki/translations/pt-br/Part_Wedge.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Wedge/pt-br + ## Description Create a parametric Wedge object. This Wedge defaults to a larger square base and a smaller square top. @@ -67,8 +69,5 @@ Create a parametric Wedge object. This Wedge defaults to a larger square base an ![](images/Wedge_examples.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Wedge/pt-br diff --git a/wiki/translations/pt-br/Part_Workbench.md b/wiki/translations/pt-br/Part_Workbench.md index e78ffbfb45..23ac2099f9 100644 --- a/wiki/translations/pt-br/Part_Workbench.md +++ b/wiki/translations/pt-br/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/pt-br 1. REDIRECT [Part\_Module/pt-br](Part_Module/pt-br.md) + +--- +[documentation index](../README.md) > Part Workbench/pt-br diff --git a/wiki/translations/pt-br/Part_XOR.md b/wiki/translations/pt-br/Part_XOR.md index 668e75cfd7..996ed2d8a5 100644 --- a/wiki/translations/pt-br/Part_XOR.md +++ b/wiki/translations/pt-br/Part_XOR.md @@ -7,6 +7,8 @@ SeeAlso:[Part Boolean Fragments](Part_BooleanFragments.md), [Part Slice](Part_Slice.md), [Part Join features](Part_CompJoinFeatures.md), [Part Boolean](Part_Boolean.md) --- +# Part XOR/pt-br + ## Description ## Usage @@ -17,8 +19,5 @@ ## Scripting - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part XOR/pt-br diff --git a/wiki/translations/pt-br/Part_and_PartDesign.md b/wiki/translations/pt-br/Part_and_PartDesign.md index 517cf7031a..fc1a8f4895 100644 --- a/wiki/translations/pt-br/Part_and_PartDesign.md +++ b/wiki/translations/pt-br/Part_and_PartDesign.md @@ -1,5 +1,5 @@ # Part and PartDesign/pt-br - {{TOCright}} +{{TOCright}} ## Visão geral @@ -172,4 +172,7 @@ Part and PartDesign workbenches can be used together with some care, creating qu {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part and PartDesign/pt-br diff --git a/wiki/translations/pt-br/Part_scripting.md b/wiki/translations/pt-br/Part_scripting.md index 1d95c505ce..99374fb601 100644 --- a/wiki/translations/pt-br/Part_scripting.md +++ b/wiki/translations/pt-br/Part_scripting.md @@ -1,7 +1,4 @@ # Part scripting/pt-br - - - {{TOCright}} ## Introduction @@ -156,3 +153,6 @@ Head to the [Topological data scripting](Topological_data_scripting.md) page if }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part scripting/pt-br diff --git a/wiki/translations/pt-br/Path_Adaptive.md b/wiki/translations/pt-br/Path_Adaptive.md index a85bc54912..b5b87514aa 100644 --- a/wiki/translations/pt-br/Path_Adaptive.md +++ b/wiki/translations/pt-br/Path_Adaptive.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Adaptive/pt-br + ## Description The [Adaptive](Path_Adaptive.md) tool uses an adaptive algorithm to create clearing and profiling paths that manage cutter engagement so that engagement and material removal never exceed a maximum value. @@ -221,4 +223,7 @@ Note: It is suggested that you do not edit the Placement property of path operat {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Adaptive/pt-br diff --git a/wiki/translations/pt-br/Path_Area.md b/wiki/translations/pt-br/Path_Area.md index 0d161ef590..acb6b4df52 100644 --- a/wiki/translations/pt-br/Path_Area.md +++ b/wiki/translations/pt-br/Path_Area.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Area/pt-br + ## Description Empty @@ -161,4 +163,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Area/pt-br diff --git a/wiki/translations/pt-br/Path_Area_Workplane.md b/wiki/translations/pt-br/Path_Area_Workplane.md index b32975890b..23d41b3a2b 100644 --- a/wiki/translations/pt-br/Path_Area_Workplane.md +++ b/wiki/translations/pt-br/Path_Area_Workplane.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Area Workplane/pt-br + ## Description Empty @@ -47,4 +49,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Area Workplane/pt-br diff --git a/wiki/translations/pt-br/Path_Array.md b/wiki/translations/pt-br/Path_Array.md index 93675c90aa..853f26e373 100644 --- a/wiki/translations/pt-br/Path_Array.md +++ b/wiki/translations/pt-br/Path_Array.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Array/pt-br + ## Description This tool creates a new path by duplicating another path several times at a certain interval distance. @@ -48,4 +50,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Array/pt-br diff --git a/wiki/translations/pt-br/Path_Comment.md b/wiki/translations/pt-br/Path_Comment.md index 4cbadeeab1..0946473f6e 100644 --- a/wiki/translations/pt-br/Path_Comment.md +++ b/wiki/translations/pt-br/Path_Comment.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Comment/pt-br + ## Description This tool inserts a comment. When exporting a project to G-code, the comments will be inserted in the G-code program, and can be read by people reading the file. Some machine controllers will also display comments on their display screens. @@ -38,4 +40,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Comment/pt-br diff --git a/wiki/translations/pt-br/Path_Copy.md b/wiki/translations/pt-br/Path_Copy.md index 894c24a83d..e7dbeb9a4e 100644 --- a/wiki/translations/pt-br/Path_Copy.md +++ b/wiki/translations/pt-br/Path_Copy.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Copy/pt-br + ## Description This tool creates a copy of a selected path @@ -31,4 +33,7 @@ The copy stays linked with the original path. If the original changes, so does t {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Copy/pt-br diff --git a/wiki/translations/pt-br/Path_Custom.md b/wiki/translations/pt-br/Path_Custom.md index cf865ea657..4ade711d1b 100644 --- a/wiki/translations/pt-br/Path_Custom.md +++ b/wiki/translations/pt-br/Path_Custom.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Custom/pt-br + ## Description This tool inserts a path object which is built from hand coded custom G-code. @@ -36,4 +38,7 @@ Note that Feed rates will be correctly generated by the Postprocessor, only if t {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Custom/pt-br diff --git a/wiki/translations/pt-br/Path_Development_Roadmap.md b/wiki/translations/pt-br/Path_Development_Roadmap.md index a6160bd118..cf43100ed4 100644 --- a/wiki/translations/pt-br/Path_Development_Roadmap.md +++ b/wiki/translations/pt-br/Path_Development_Roadmap.md @@ -1,10 +1,4 @@ # Path Development Roadmap/pt-br - - - - - - {{TOCright}} ## Purpose @@ -151,4 +145,7 @@ The following list is not individual bugs but shows how Path is inconsistent in {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Development Roadmap/pt-br diff --git a/wiki/translations/pt-br/Path_DressupDogbone.md b/wiki/translations/pt-br/Path_DressupDogbone.md index 66cd592ef1..8230a11771 100644 --- a/wiki/translations/pt-br/Path_DressupDogbone.md +++ b/wiki/translations/pt-br/Path_DressupDogbone.md @@ -6,6 +6,8 @@ SeeAlso:[Path DressupTag](Path_DressupTag.md), [Path DressupRampEntry](Path_DressupRampEntry.md), [Path DressupDragKnife](Path_DressupDragKnife.md) --- +# Path DressupDogbone/pt-br + ## Description This tool dresses up an existing path to overcut corners on inside angles of a profile or contour operation. A cylindrical cutter cannot cut all the way into an acute corner without colliding with the model. In certain cases, it may be preferable to violate the model and ensure that the material at the corner is removed. This is especially necessary if parts are going to intersect/interlock with each other. @@ -33,4 +35,7 @@ The dogbone dressup needs a straight path segment (G1) before and after the corn {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupDogbone/pt-br diff --git a/wiki/translations/pt-br/Path_DressupDragKnife.md b/wiki/translations/pt-br/Path_DressupDragKnife.md index c3fe349434..ddab1071f7 100644 --- a/wiki/translations/pt-br/Path_DressupDragKnife.md +++ b/wiki/translations/pt-br/Path_DressupDragKnife.md @@ -6,6 +6,8 @@ SeeAlso:[Path DressupTag](Path_DressupTag.md), [Path DressupRampEntry](Path_DressupRampEntry.md), [Path DressupDogbone](Path_DressupDogbone.md) --- +# Path DressupDragKnife/pt-br + ## Description A drag knife uses a cutting edge on a pivot to cut sheet material like vinyl, cardboard, and leather. The cutting point is not aligned with the center of the spindle but rather follows it as the spindle moves. Because the cutting point is offset, the path must be modified to extend past the endpoint of each segment. Also, the dragknife is incapable of making extremely tight turns. To compensate, a pivot \'corner action\' is inserted which momentarily lifts the blade slightly and then pivots into the new position. @@ -29,4 +31,7 @@ This tool dresses up an existing path to add corner actions and edge extensions {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupDragKnife/pt-br diff --git a/wiki/translations/pt-br/Path_DressupLeadInOut.md b/wiki/translations/pt-br/Path_DressupLeadInOut.md index 9d1e96c4a0..c36dc448d2 100644 --- a/wiki/translations/pt-br/Path_DressupLeadInOut.md +++ b/wiki/translations/pt-br/Path_DressupLeadInOut.md @@ -6,6 +6,8 @@ SeeAlso:[Path DressupDogbone](Path_DressupDogbone.md), [Path DressupTag](Path_DressupTag.md), [Path DressupRampEntry](Path_DressupRampEntry.md), [Path DressupDragKnife](Path_DressupDragKnife.md) --- +# Path DressupLeadInOut/pt-br + ## Description ## Usage @@ -31,4 +33,7 @@ Add python code here {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupLeadInOut/pt-br diff --git a/wiki/translations/pt-br/Path_DressupPathBoundary.md b/wiki/translations/pt-br/Path_DressupPathBoundary.md index 2b1c249e6c..144f22e808 100644 --- a/wiki/translations/pt-br/Path_DressupPathBoundary.md +++ b/wiki/translations/pt-br/Path_DressupPathBoundary.md @@ -6,6 +6,8 @@ SeeAlso:[Path DressupTag](Path_DressupTag.md), [Path DressupRampEntry](Path_DressupRampEntry.md) --- +# Path DressupPathBoundary/pt-br + ## Description Boundary dress-up allows restricting the extent of a path to a smaller part of the object. For example, restricting a profile path to just one face or part of the model. @@ -32,4 +34,7 @@ Boundary dress-up allows restricting the extent of a path to a smaller part of t {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupPathBoundary/pt-br diff --git a/wiki/translations/pt-br/Path_DressupRampEntry.md b/wiki/translations/pt-br/Path_DressupRampEntry.md index 9f51bbb91c..25bf7b43f1 100644 --- a/wiki/translations/pt-br/Path_DressupRampEntry.md +++ b/wiki/translations/pt-br/Path_DressupRampEntry.md @@ -6,6 +6,8 @@ SeeAlso:[Path DressupTag](Path_DressupTag.md), [Path DressupDogbone](Path_DressupDogbone.md), [Path DressupDragKnife](Path_DressupDragKnife.md) --- +# Path DressupRampEntry/pt-br + ## Description This tool dresses up an existing path to add a ramp entry @@ -33,4 +35,7 @@ This tool dresses up an existing path to add a ramp entry {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupRampEntry/pt-br diff --git a/wiki/translations/pt-br/Path_DressupTag.md b/wiki/translations/pt-br/Path_DressupTag.md index 343a76794e..caa70557f9 100644 --- a/wiki/translations/pt-br/Path_DressupTag.md +++ b/wiki/translations/pt-br/Path_DressupTag.md @@ -6,6 +6,8 @@ SeeAlso:[Path DressupRampEntry](Path_DressupRampEntry.md), [Path DressupDogbone](Path_DressupDogbone.md), [Path DressupDragKnife](Path_DressupDragKnife.md) --- +# Path DressupTag/pt-br + ## Description This tool dresses up an existing path (usually a 2D contour cutting path) to leave tags that hold the part in place. Without them a part (which is not fixed to the base) is liable to fly off the machine uncontrollably as the final cut is made. The tags are intended to be broken off by hand (or using a chisel) and then filed flat to finish the part. @@ -33,4 +35,7 @@ Tags are automatically generated evenly spaced along the contour, beginning with {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupTag/pt-br diff --git a/wiki/translations/pt-br/Path_Drilling.md b/wiki/translations/pt-br/Path_Drilling.md index 0125701b92..12f53d27c0 100644 --- a/wiki/translations/pt-br/Path_Drilling.md +++ b/wiki/translations/pt-br/Path_Drilling.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Drilling/pt-br + ## Description The Drilling command generates a drilling Operation in the Job. @@ -228,4 +230,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Drilling/pt-br diff --git a/wiki/translations/pt-br/Path_Engrave.md b/wiki/translations/pt-br/Path_Engrave.md index 8f5c9c76e3..3998d80bd2 100644 --- a/wiki/translations/pt-br/Path_Engrave.md +++ b/wiki/translations/pt-br/Path_Engrave.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Engrave/pt-br + ## Description The [Path Engrave](Path_Engrave.md) tool is primarily for engraving a [Draft ShapeString](Draft_ShapeString.md) onto a part. However, it may be useful for other kinds of 2D. @@ -97,4 +99,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Engrave/pt-br diff --git a/wiki/translations/pt-br/Path_ExportTemplate.md b/wiki/translations/pt-br/Path_ExportTemplate.md index 24baf8c952..a73deb4522 100644 --- a/wiki/translations/pt-br/Path_ExportTemplate.md +++ b/wiki/translations/pt-br/Path_ExportTemplate.md @@ -6,6 +6,8 @@ SeeAlso:[Path SetupSheet](Path_SetupSheet.md) --- +# Path ExportTemplate/pt-br + ## Description Exporting Job templates provides a convenient mechanism to save commonly used Job definitions from within an existing Job. This facilitates the setup of future Jobs, that are largely similar, by allowing Job template import during the Job creation process. @@ -49,4 +51,7 @@ The **Edit → Preferences... → Path → Job Preferences tab, Defaults → Tem {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ExportTemplate/pt-br diff --git a/wiki/translations/pt-br/Path_Fixture.md b/wiki/translations/pt-br/Path_Fixture.md index 1029a2c3df..199f969360 100644 --- a/wiki/translations/pt-br/Path_Fixture.md +++ b/wiki/translations/pt-br/Path_Fixture.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Fixture/pt-br + ## Description This tool sets the Work Offset Coordinate Fixture of the machine CNC controller. @@ -40,4 +42,7 @@ The G59 Fixture is used to expand available fixtures. The degree of expansion im {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Fixture/pt-br diff --git a/wiki/translations/pt-br/Path_Helix.md b/wiki/translations/pt-br/Path_Helix.md index 6725e5c6d9..6a4473ce78 100644 --- a/wiki/translations/pt-br/Path_Helix.md +++ b/wiki/translations/pt-br/Path_Helix.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Helix/pt-br + ## Description The [Path Helix](Path_Helix.md) command appends a helical interpolation Operation to the Job. Clockwise Helix interpolation outputs (G2) G-Code commands. Counterclockwise outputs (G3) G-Code commands. Step Over percentage specifies the concentric step-over as a percentage of the Tool diameter. @@ -54,4 +56,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Helix/pt-br diff --git a/wiki/translations/pt-br/Path_Inspect.md b/wiki/translations/pt-br/Path_Inspect.md index 69a5cdce94..3704dc9f13 100644 --- a/wiki/translations/pt-br/Path_Inspect.md +++ b/wiki/translations/pt-br/Path_Inspect.md @@ -6,6 +6,8 @@ Shortcut:**P** **I** --- +# Path Inspect/pt-br + ## Description This tool allows inspection of the internal FreeCAD G-code dialect contents of a Path Operation object. @@ -31,4 +33,7 @@ This tool allows inspection of the internal FreeCAD G-code dialect contents of a {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Inspect/pt-br diff --git a/wiki/translations/pt-br/Path_Job.md b/wiki/translations/pt-br/Path_Job.md index 0c437635e8..830011f487 100644 --- a/wiki/translations/pt-br/Path_Job.md +++ b/wiki/translations/pt-br/Path_Job.md @@ -6,6 +6,8 @@ Shortcut:**P** **J** --- +# Path Job/pt-br + ## Description The Job tool creates a new Job object in the active document. The Job object contains the following information: @@ -77,4 +79,7 @@ If you have a job which contends more than one path operation, you can determine {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Job/pt-br diff --git a/wiki/translations/pt-br/Path_MillFace.md b/wiki/translations/pt-br/Path_MillFace.md index 761a8e5065..adbb3a2c1c 100644 --- a/wiki/translations/pt-br/Path_MillFace.md +++ b/wiki/translations/pt-br/Path_MillFace.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path MillFace/pt-br + ## Description The [Mill Face](Path_MillFace.md) tool creates a path to perform a facing operation on a horizontal surface. This operation is generally used: @@ -215,4 +217,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path MillFace/pt-br diff --git a/wiki/translations/pt-br/Path_OpActiveToggle.md b/wiki/translations/pt-br/Path_OpActiveToggle.md index a849f203b2..aee2df2c36 100644 --- a/wiki/translations/pt-br/Path_OpActiveToggle.md +++ b/wiki/translations/pt-br/Path_OpActiveToggle.md @@ -6,6 +6,8 @@ Shortcut:**P** **X ** --- +# Path OpActiveToggle/pt-br + ## Description The ** [Active](Path_OpActiveToggle.md)** tool in the [Path Workbench](Path_Workbench.md) is used to toggle the active state of an existing path operation. This tool is not available, indicated as a light gray version of the icon, until you have created one or more path operations. Once your [Job](Path_Job.md) has at least one path operation the icon will be fully colored indicating it is available for use. @@ -63,4 +65,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path OpActiveToggle/pt-br diff --git a/wiki/translations/pt-br/Path_Pocket_3D.md b/wiki/translations/pt-br/Path_Pocket_3D.md index 77e127ed97..d1785d84a7 100644 --- a/wiki/translations/pt-br/Path_Pocket_3D.md +++ b/wiki/translations/pt-br/Path_Pocket_3D.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Pocket 3D/pt-br + ## Description This command inserts a path [3D Pocket](Path_Pocket_3D.md) object into the Job. This operation takes into account the bottom surface of the pocket, as well as selected walls that are not vertical. In its current state, this operation is used to rough out a pocket with non-vertical walls and/or non-horizontal bottom. A common finishing technique is to use a ball end mill with the experimental [3D Surface](Path_3DSurface.md) operation. Sample image of 3D Pocket operation used to clear cylindrical battery holder. @@ -210,4 +212,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Pocket 3D/pt-br diff --git a/wiki/translations/pt-br/Path_Pocket_Shape.md b/wiki/translations/pt-br/Path_Pocket_Shape.md index 2b256d989c..1ed347e488 100644 --- a/wiki/translations/pt-br/Path_Pocket_Shape.md +++ b/wiki/translations/pt-br/Path_Pocket_Shape.md @@ -1,3 +1,4 @@ +# Path Pocket Shape/pt-br --- - GuiCommand:/pt Name:Path Pocket Name/pt:Path Pocket Workbenches:[[Path Workbench/pt Path]]|MenuLocation:Path → Pocket Shape → Cavidade Shortcut:P,O SeeAlso:--- @@ -228,4 +229,7 @@ Note: It is suggested that you do not edit the Placement property of path operat {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Pocket Shape/pt-br diff --git a/wiki/translations/pt-br/Path_Post.md b/wiki/translations/pt-br/Path_Post.md index 8a3137e60f..9ffbd4483c 100644 --- a/wiki/translations/pt-br/Path_Post.md +++ b/wiki/translations/pt-br/Path_Post.md @@ -6,6 +6,8 @@ Shortcut:**P** **P** --- +# Path Post/pt-br + ## Description The ** [Post](Path_Post.md)** command exports the selected ** [Path Job](Path_Job.md)** to a G-code file. @@ -114,4 +116,7 @@ Included Postprocessors are saved in the **FreeCAD.Mod.Path.Pathscripts.Post** b {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Post/pt-br diff --git a/wiki/translations/pt-br/Path_Postprocessor_Customization.md b/wiki/translations/pt-br/Path_Postprocessor_Customization.md index 838d1e44b0..9f850d254f 100644 --- a/wiki/translations/pt-br/Path_Postprocessor_Customization.md +++ b/wiki/translations/pt-br/Path_Postprocessor_Customization.md @@ -1,10 +1,4 @@ # Path Postprocessor Customization/pt-br - - - - - - {{TOCright}} ## Introduction @@ -109,4 +103,7 @@ You\'ll see that both functions also call the \"linenumber()\" function. If the {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Postprocessor Customization/pt-br diff --git a/wiki/translations/pt-br/Path_Preferences.md b/wiki/translations/pt-br/Path_Preferences.md index 70864cf1a6..8ba4674c32 100644 --- a/wiki/translations/pt-br/Path_Preferences.md +++ b/wiki/translations/pt-br/Path_Preferences.md @@ -1,10 +1,4 @@ # Path Preferences/pt-br - - - - - - {{TOCright}} ## Visão geral @@ -46,3 +40,6 @@ There are three sections: General, Post processor, and Setup. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Preferences/pt-br diff --git a/wiki/translations/pt-br/Path_Profile.md b/wiki/translations/pt-br/Path_Profile.md index 7432c9262d..1c68e44ece 100644 --- a/wiki/translations/pt-br/Path_Profile.md +++ b/wiki/translations/pt-br/Path_Profile.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Profile/pt-br + ## Description The ** [Profile](Path_Profile.md)** tool creates a contour operation based on selected features of the model. The tool was introduced in version 0.19. It offers three operations that were handled by separate tools in previous versions. @@ -289,4 +291,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Profile/pt-br diff --git a/wiki/translations/pt-br/Path_Sanity.md b/wiki/translations/pt-br/Path_Sanity.md index 6736f4d1e9..c58ad758d9 100644 --- a/wiki/translations/pt-br/Path_Sanity.md +++ b/wiki/translations/pt-br/Path_Sanity.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Path Sanity/pt-br + ## Description Many Path users are hobbyists and DIYers. As such, they use their CNC machines to run G-code that they configured and generated themselves. That isn\'t the case for most professional/commercial users. In professional shops, different people are responsible for creating the G-code (CNC programmers) from those who run it on the machines (CNC operator). @@ -79,4 +81,7 @@ Asciidoctor is a fast open-source text processor for converting asciidoc into HT {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Sanity/pt-br diff --git a/wiki/translations/pt-br/Path_SelectLoop.md b/wiki/translations/pt-br/Path_SelectLoop.md index 90bc0e15b8..971b2c7a2c 100644 --- a/wiki/translations/pt-br/Path_SelectLoop.md +++ b/wiki/translations/pt-br/Path_SelectLoop.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Path SelectLoop/pt-br + ## Description The ** [Path SelectLoop](Path_SelectLoop.md)** command completes a selection of edges that form a loop. @@ -30,4 +32,7 @@ The ** [Path SelectLoop](Path_S {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SelectLoop/pt-br diff --git a/wiki/translations/pt-br/Path_Shape.md b/wiki/translations/pt-br/Path_Shape.md index 7250ed9e09..4a5bd03456 100644 --- a/wiki/translations/pt-br/Path_Shape.md +++ b/wiki/translations/pt-br/Path_Shape.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Shape/pt-br + ## Description Path Shape doesn\'t match the current Path workflow. For that reason it\'s moved to the experimental features. @@ -119,4 +121,7 @@ Path.fromShapes(shapes, start=Vector(), return_end=False arc_plane=1, sort_mode= {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Shape/pt-br diff --git a/wiki/translations/pt-br/Path_SimpleCopy.md b/wiki/translations/pt-br/Path_SimpleCopy.md index 866a634c34..728de4043c 100644 --- a/wiki/translations/pt-br/Path_SimpleCopy.md +++ b/wiki/translations/pt-br/Path_SimpleCopy.md @@ -6,6 +6,8 @@ SeeAlso:[Path Copy](Path_Copy.md) --- +# Path SimpleCopy/pt-br + ## Description This tool creates a non-parametric copy of a given path. @@ -25,4 +27,7 @@ This tool creates a non-parametric copy of a given path. {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SimpleCopy/pt-br diff --git a/wiki/translations/pt-br/Path_Simulator.md b/wiki/translations/pt-br/Path_Simulator.md index 3ea24c350b..1281c37d70 100644 --- a/wiki/translations/pt-br/Path_Simulator.md +++ b/wiki/translations/pt-br/Path_Simulator.md @@ -7,6 +7,8 @@ SeeAlso:[Path Inspect](Path_Inspect.md) --- +# Path Simulator/pt-br + ## Description This tool allows Simulation of the Path Job by sweeping 3D Models of the Tools used in each Operation, along the G-Code paths, subtracting material from the Stock, where the stock and tool overlap, providing visualization of the Job. This allows detection and isolation of errors prior to running the Job on a mill. @@ -46,4 +48,7 @@ This tool allows Simulation of the Path Job by sweeping 3D Models of the Tools u {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Simulator/pt-br diff --git a/wiki/translations/pt-br/Path_Slot.md b/wiki/translations/pt-br/Path_Slot.md index 30d9bfef55..d83c41d16a 100644 --- a/wiki/translations/pt-br/Path_Slot.md +++ b/wiki/translations/pt-br/Path_Slot.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Slot/pt-br + ## Description This tool creates a simple slotting operation using various methods of input. Inputs include: @@ -254,4 +256,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Slot/pt-br diff --git a/wiki/translations/pt-br/Path_Stop.md b/wiki/translations/pt-br/Path_Stop.md index ef707e3505..4340780da6 100644 --- a/wiki/translations/pt-br/Path_Stop.md +++ b/wiki/translations/pt-br/Path_Stop.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Stop/pt-br + ## Description This tool inserts a Stop command (M1). This command will Pause a running program on the CNC controller, waiting for user interaction to continue. @@ -25,4 +27,7 @@ This tool inserts a Stop command (M1). This command will Pause a running program {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Stop/pt-br diff --git a/wiki/translations/pt-br/Path_Surface.md b/wiki/translations/pt-br/Path_Surface.md index 7e5af2fd1c..d03241cd5f 100644 --- a/wiki/translations/pt-br/Path_Surface.md +++ b/wiki/translations/pt-br/Path_Surface.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Surface/pt-br + ## Description This tool creates a new ** [3D Surface](Path_3DSurface.md)** operation which is capable of generating G-Code paths for the entire top surface of a 3D model (or is able to work with selected faces) and allows for faces to be avoided. This operation offers multiple cut patterns: Line, Zigzag, Circular, Circular Zigzag, Offset, and Spiral (similar to an adaptive pattern). As of version 0.19, this operation offers many customizations to allow for greater productivity. @@ -416,4 +418,7 @@ Note: It is suggested that you do not edit the Placement property of path operat {{Path Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Surface/pt-br diff --git a/wiki/translations/pt-br/Path_ToolLibraryEdit.md b/wiki/translations/pt-br/Path_ToolLibraryEdit.md index 7a530feb51..3d89b70acd 100644 --- a/wiki/translations/pt-br/Path_ToolLibraryEdit.md +++ b/wiki/translations/pt-br/Path_ToolLibraryEdit.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Path ToolLibraryEdit/pt-br + ## Description The ** [Tool Manager/Editor](Path_ToolLibraryEdit.md)** allows to edit the different tools of the tooltable contained in the machine object of a ** [Path Job](Path_Job.md)**. This tooltable is used by the different operations contained in the project to obtain necessary information about the current tool. @@ -49,4 +51,7 @@ The handling is straight forward: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolLibraryEdit/pt-br diff --git a/wiki/translations/pt-br/Path_Vcarve.md b/wiki/translations/pt-br/Path_Vcarve.md index fe1e0952f7..6c6e9064fb 100644 --- a/wiki/translations/pt-br/Path_Vcarve.md +++ b/wiki/translations/pt-br/Path_Vcarve.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Vcarve/pt-br + ## Description The [Path Vcarve](Path_Vcarve.md) tool is primarily for center-line engraving a [Draft ShapeString](Draft_ShapeString.md) onto a part. However, it may be useful for other kinds of 2D. @@ -154,4 +156,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Vcarve/pt-br diff --git a/wiki/translations/pt-br/Path_Walkthrough_for_the_Impatient.md b/wiki/translations/pt-br/Path_Walkthrough_for_the_Impatient.md index 4c399e41e8..f80eafa970 100644 --- a/wiki/translations/pt-br/Path_Walkthrough_for_the_Impatient.md +++ b/wiki/translations/pt-br/Path_Walkthrough_for_the_Impatient.md @@ -1,7 +1,4 @@ # Path Walkthrough for the Impatient/pt-br - - - {{TutorialInfo |Topic=Path Workbench |Level=Beginner/Moderate @@ -157,4 +154,7 @@ The final step to generate G-Code for the target mill is to postprocess the Job. {{Tutorials navi -}} {{Path Tools navi}} +}} {{Path Tools navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Walkthrough for the Impatient/pt-br diff --git a/wiki/translations/pt-br/Path_Waterline.md b/wiki/translations/pt-br/Path_Waterline.md index 7839fe0a0f..413e93191b 100644 --- a/wiki/translations/pt-br/Path_Waterline.md +++ b/wiki/translations/pt-br/Path_Waterline.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Waterline/pt-br + ## Description This tool creates a new Waterline operation. As of 0.19\_pre, the Waterline operation works on the entire model to generate G-Code for the Job. Currently, within the operation\'s settings there is no functionality to select specific areas, faces, or regions of the model. @@ -259,4 +261,7 @@ Note: It is suggested that you do not edit the Placement property of path operat {{Path Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Waterline/pt-br diff --git a/wiki/translations/pt-br/Path_Workbench.md b/wiki/translations/pt-br/Path_Workbench.md index 9b5dc61ebd..02741fb69f 100644 --- a/wiki/translations/pt-br/Path_Workbench.md +++ b/wiki/translations/pt-br/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/pt-br - - - - - -ícone da bancada de trabalho Path +# ícone da bancada de trabalho Path Path Workbench/pt-br {{TOCright}} @@ -533,3 +527,6 @@ Confira a página [Path scripting](Path_scripting.md). }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench/pt-br diff --git a/wiki/translations/pt-br/Path_experimental.md b/wiki/translations/pt-br/Path_experimental.md index 0a262b73af..9be14732cc 100644 --- a/wiki/translations/pt-br/Path_experimental.md +++ b/wiki/translations/pt-br/Path_experimental.md @@ -1,7 +1,4 @@ # Path experimental/pt-br - - - {{TOCright}} ## Description @@ -41,3 +38,6 @@ Read more about the specific experimental commands on the [wiki pages that link {{Path Tools navi}} [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path experimental/pt-br diff --git a/wiki/translations/pt-br/Path_scripting.md b/wiki/translations/pt-br/Path_scripting.md index 7fb85a936f..c961419043 100644 --- a/wiki/translations/pt-br/Path_scripting.md +++ b/wiki/translations/pt-br/Path_scripting.md @@ -1,10 +1,4 @@ # Path scripting/pt-br - - - - - - {{TOCright}} ## Introduction @@ -447,3 +441,6 @@ doc.recompute() }} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path scripting/pt-br diff --git a/wiki/translations/pt-br/Plot_Module.md b/wiki/translations/pt-br/Plot_Module.md index 2d8fdee21c..5ac68dd1a0 100644 --- a/wiki/translations/pt-br/Plot_Module.md +++ b/wiki/translations/pt-br/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/pt-br - - -Plot workbench icon +# Plot workbench icon Plot Module/pt-br {{TOCright}} @@ -92,3 +89,6 @@ Como o Plot Workbench é uma camada sobre `matplotlib`, você está livre para u }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/pt-br diff --git a/wiki/translations/pt-br/Plot_Workbench.md b/wiki/translations/pt-br/Plot_Workbench.md index 8e8a4206c0..5a1493d32f 100644 --- a/wiki/translations/pt-br/Plot_Workbench.md +++ b/wiki/translations/pt-br/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/pt-br 1. REDIRECT [Plot\_Module/pt-br](Plot_Module/pt-br.md) + +--- +[documentation index](../README.md) > Plot Workbench/pt-br diff --git a/wiki/translations/pt-br/Points_Convert.md b/wiki/translations/pt-br/Points_Convert.md index 4e92643f4f..9482793627 100644 --- a/wiki/translations/pt-br/Points_Convert.md +++ b/wiki/translations/pt-br/Points_Convert.md @@ -5,6 +5,8 @@ Workbenches:[Points](Points_Workbench.md) --- +# Points Convert/pt-br + ## Description The **Points Convert** command creates point clouds from shape objects or mesh objects. @@ -54,4 +56,7 @@ Point cloud objects are [App GeoFeature](App_GeoFeature.md) objects with the fol {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Convert/pt-br diff --git a/wiki/translations/pt-br/Points_Export.md b/wiki/translations/pt-br/Points_Export.md index 987986e5d0..ba6c86829f 100644 --- a/wiki/translations/pt-br/Points_Export.md +++ b/wiki/translations/pt-br/Points_Export.md @@ -6,6 +6,8 @@ SeeAlso:[Import Export](Import_Export.md) --- +# Points Export/pt-br + ## Description The **Points Export** command exports a point cloud to a file. @@ -25,4 +27,7 @@ The **Points Export** command exports a point cloud to a file. {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Export/pt-br diff --git a/wiki/translations/pt-br/Points_Import.md b/wiki/translations/pt-br/Points_Import.md index cdf8d9a72e..704e890917 100644 --- a/wiki/translations/pt-br/Points_Import.md +++ b/wiki/translations/pt-br/Points_Import.md @@ -6,6 +6,8 @@ SeeAlso:[Import Export](Import_Export.md) --- +# Points Import/pt-br + ## Description The **Points Import** command imports a point cloud from a file. @@ -43,4 +45,7 @@ For testing you can use [this file](https://raw.githubusercontent.com/FreeCAD/Ex {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Import/pt-br diff --git a/wiki/translations/pt-br/Points_Merge.md b/wiki/translations/pt-br/Points_Merge.md index 8911573d62..04125291de 100644 --- a/wiki/translations/pt-br/Points_Merge.md +++ b/wiki/translations/pt-br/Points_Merge.md @@ -5,6 +5,8 @@ Workbenches:[Points](Points_Workbench.md) --- +# Points Merge/pt-br + ## Descrição The **Points Merge** command creates a point cloud by combining the points of two or more point clouds. @@ -24,4 +26,7 @@ See [Points Convert](Points_Convert.md). {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Merge/pt-br diff --git a/wiki/translations/pt-br/Points_Module.md b/wiki/translations/pt-br/Points_Module.md index ad5d3f4249..4d046d07a6 100644 --- a/wiki/translations/pt-br/Points_Module.md +++ b/wiki/translations/pt-br/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/pt-br 1. REDIRECT [Points\_Workbench/pt-br](Points_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/pt-br diff --git a/wiki/translations/pt-br/Points_PolyCut.md b/wiki/translations/pt-br/Points_PolyCut.md index fd3215ed05..48375fd8fb 100644 --- a/wiki/translations/pt-br/Points_PolyCut.md +++ b/wiki/translations/pt-br/Points_PolyCut.md @@ -5,6 +5,8 @@ Workbenches:[Points](Points_Workbench.md) --- +# Points PolyCut/pt-br + ## Description The **Points PolyCut** command cuts points from point clouds. @@ -39,4 +41,7 @@ The **Points PolyCut** command cuts points from point clouds. {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points PolyCut/pt-br diff --git a/wiki/translations/pt-br/Points_Structure.md b/wiki/translations/pt-br/Points_Structure.md index 18caeddb4c..b8a3b943ef 100644 --- a/wiki/translations/pt-br/Points_Structure.md +++ b/wiki/translations/pt-br/Points_Structure.md @@ -5,6 +5,8 @@ Workbenches:[Points](Points_Workbench.md) --- +# Points Structure/pt-br + ## Description The **Points Structure** command creates a structured point cloud from the points of an existing scattered point cloud. A structured point cloud has the advantage that tessellation is much easier. @@ -27,4 +29,7 @@ See [Points Convert](Points_Convert.md). {{Points Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Structure/pt-br diff --git a/wiki/translations/pt-br/Points_Workbench.md b/wiki/translations/pt-br/Points_Workbench.md index aeea103bd4..0cee99bdb7 100644 --- a/wiki/translations/pt-br/Points_Workbench.md +++ b/wiki/translations/pt-br/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/pt-br - - - - - -Ícone da Bancada de Trabalho Points +# Ícone da Bancada de Trabalho Points Points Workbench/pt-br ## Introdução @@ -51,3 +45,6 @@ Todas as ferramentas da Bancada de Trabalho Points podem ser acessadas do menu * }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/pt-br diff --git a/wiki/translations/pt-br/Power_users_hub.md b/wiki/translations/pt-br/Power_users_hub.md index 64281d0b7b..f85daa0c10 100644 --- a/wiki/translations/pt-br/Power_users_hub.md +++ b/wiki/translations/pt-br/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/pt-br - +# Power users hub/pt-br ------------------------------------------------------------------------ @@ -135,3 +134,6 @@ On the [Community portal](FreeCAD_Community_Portal.md), you can find other FreeC }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/pt-br diff --git a/wiki/translations/pt-br/Preferences_Editor.md b/wiki/translations/pt-br/Preferences_Editor.md index 00d51a5c3c..1f4240e10e 100644 --- a/wiki/translations/pt-br/Preferences_Editor.md +++ b/wiki/translations/pt-br/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/pt-br - - - - - - {{TOCright}} ## Introdução @@ -756,3 +750,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/pt-br diff --git a/wiki/translations/pt-br/Property.md b/wiki/translations/pt-br/Property.md index afafb1a41b..0db1779b6c 100644 --- a/wiki/translations/pt-br/Property.md +++ b/wiki/translations/pt-br/Property.md @@ -1,6 +1,4 @@ # Property/pt-br - - ## Introdução A [property](Property.md) is a piece of information like a number or a text string that is attached to a FreeCAD document or an object in a document. Public properties can be viewed and modified in the [Property editor](Property_editor.md). @@ -115,3 +113,6 @@ They are imported and initialized in `[https://github.com/FreeCAD/FreeCAD/blob/9 }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/pt-br diff --git a/wiki/translations/pt-br/Property_editor.md b/wiki/translations/pt-br/Property_editor.md index bcd5a04eec..635b36998f 100644 --- a/wiki/translations/pt-br/Property_editor.md +++ b/wiki/translations/pt-br/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/pt-br - - - - - - {{TOCright}} ## Introdução @@ -244,4 +238,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/pt-br diff --git a/wiki/translations/pt-br/PySide.md b/wiki/translations/pt-br/PySide.md index ca9d775a76..2f83e5137d 100644 --- a/wiki/translations/pt-br/PySide.md +++ b/wiki/translations/pt-br/PySide.md @@ -1,7 +1,4 @@ # PySide/pt-br - - - {{TOCright}} ## Introdução @@ -75,3 +72,6 @@ The PySide documentation refers to the Python-style classes; however, since Qt i }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide/pt-br diff --git a/wiki/translations/pt-br/Python.md b/wiki/translations/pt-br/Python.md index 063ee529d5..19ea71e247 100644 --- a/wiki/translations/pt-br/Python.md +++ b/wiki/translations/pt-br/Python.md @@ -1,5 +1,5 @@ # Python/pt-br - **FreeCAD was originally designed to work with Python 2.x. This series ended with 2.7.18 release dated April, 20th 2020 and is succeeded by Python 3. The further development of FreeCAD will be done exclusively with Python 3, and backwards compatibility will not be supported.** +**FreeCAD was originally designed to work with Python 2.x. This series ended with 2.7.18 release dated April, 20th 2020 and is succeeded by Python 3. The further development of FreeCAD will be done exclusively with Python 3, and backwards compatibility will not be supported.** ## Descrição @@ -127,3 +127,6 @@ Structure = Arch.make_structure(Wire, name="Big pillar") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:API Documentation](Category:API_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python/pt-br diff --git a/wiki/translations/pt-br/Python_console.md b/wiki/translations/pt-br/Python_console.md index 1892ea2c01..0de1187a76 100644 --- a/wiki/translations/pt-br/Python_console.md +++ b/wiki/translations/pt-br/Python_console.md @@ -1,5 +1,5 @@ # Python console/pt-br - **(January 2020) FreeCAD was originally designed to work with Python 2. Since Python 2 reached end of life in 2020, future development of FreeCAD will be done exclusively with Python 3, and backwards compatibility will not be supported.** +**(January 2020) FreeCAD was originally designed to work with Python 2. Since Python 2 reached end of life in 2020, future development of FreeCAD will be done exclusively with Python 3, and backwards compatibility will not be supported.** ## Introdução @@ -86,4 +86,7 @@ Right click on the Python console shows some commands: {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Python console/pt-br diff --git a/wiki/translations/pt-br/Ray_Tracing_Workbench.md b/wiki/translations/pt-br/Ray_Tracing_Workbench.md index 330a40cf96..bebee87a69 100644 --- a/wiki/translations/pt-br/Ray_Tracing_Workbench.md +++ b/wiki/translations/pt-br/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/pt-br 1. REDIRECT [Raytracing\_Workbench/pt-br](Raytracing_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/pt-br diff --git a/wiki/translations/pt-br/Raytracing_Module.md b/wiki/translations/pt-br/Raytracing_Module.md index 61a140bfb2..4c0e8611e6 100644 --- a/wiki/translations/pt-br/Raytracing_Module.md +++ b/wiki/translations/pt-br/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/pt-br 1. REDIRECT [Raytracing\_Workbench/pt-br](Raytracing_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/pt-br diff --git a/wiki/translations/pt-br/Raytracing_Workbench.md b/wiki/translations/pt-br/Raytracing_Workbench.md index 2db7bd0298..fffe04f21e 100644 --- a/wiki/translations/pt-br/Raytracing_Workbench.md +++ b/wiki/translations/pt-br/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/pt-br - - - **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. Nevertheless, the information in this page is generally useful for the new workbench, as both modules work basically in the same way. @@ -155,3 +152,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/pt-br diff --git a/wiki/translations/pt-br/Reinforcement_Bar_Bending_Schedule.md b/wiki/translations/pt-br/Reinforcement_Bar_Bending_Schedule.md index c28f4ae24a..b0a6f673e6 100644 --- a/wiki/translations/pt-br/Reinforcement_Bar_Bending_Schedule.md +++ b/wiki/translations/pt-br/Reinforcement_Bar_Bending_Schedule.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar BOM](Arch_Rebar_BOM.md), [Arch Rebar Reinforcement Drawing](Arch_Rebar_Drawing_Dimensioning.md) --- +# Reinforcement Bar Bending Schedule/pt-br + ## Descrição The [Bar Bending Schedule](Reinforcement_Bar_Bending_Schedule.md) tool allows the user to create the bar bending schedule of reinforcing bars. @@ -356,3 +358,6 @@ BBSfunc.getBarBendingSchedule( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Reinforcement Bar Bending Schedule/pt-br diff --git a/wiki/translations/pt-br/Reinforcement_Bar_Shape_Cut_List.md b/wiki/translations/pt-br/Reinforcement_Bar_Shape_Cut_List.md index cd9c1e07dd..fc16ff6475 100644 --- a/wiki/translations/pt-br/Reinforcement_Bar_Shape_Cut_List.md +++ b/wiki/translations/pt-br/Reinforcement_Bar_Shape_Cut_List.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar Reinforcement Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md), [Arch Rebar BOM](Arch_Rebar_BOM.md) --- +# Reinforcement Bar Shape Cut List/pt-br + ## Description The [Rebar Shape Cut List](Reinforcement_Bar_Shape_Cut_List.md) tool allows the user to create the rebar shape cut list of reinforcing bars. @@ -399,3 +401,6 @@ RebarShapeCutListfunc.getRebarShapeCutList( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Reinforcement Bar Shape Cut List/pt-br diff --git a/wiki/translations/pt-br/Reinforcement_Workbench.md b/wiki/translations/pt-br/Reinforcement_Workbench.md index 72349297be..f16af9673d 100644 --- a/wiki/translations/pt-br/Reinforcement_Workbench.md +++ b/wiki/translations/pt-br/Reinforcement_Workbench.md @@ -1,7 +1,4 @@ -# Reinforcement Workbench/pt-br - - -Reinforcement workbench icon +# Reinforcement workbench icon Reinforcement Workbench/pt-br {{TOCright}} @@ -60,3 +57,6 @@ The Reinforcement workbench is not bundled with the default FreeCAD package, but [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > Reinforcement Workbench/pt-br diff --git a/wiki/translations/pt-br/Release_notes_0.19.md b/wiki/translations/pt-br/Release_notes_0.19.md index 413f46786c..d695fbe18f 100644 --- a/wiki/translations/pt-br/Release_notes_0.19.md +++ b/wiki/translations/pt-br/Release_notes_0.19.md @@ -1,5 +1,5 @@ # Release notes 0.19/pt-br - {{TOCright}} +{{TOCright}} **FreeCAD 0.19** was released on **March 20th, 2021**, get it from the [Download](Download.md) page. This is a summary of the most interesting changes. The complete list of changes can be found in the [MantisBT bugtracker FC 0.19 changelog](https://www.freecadweb.org/tracker/changelog_page.php?version_id=122). @@ -777,3 +777,6 @@ these are the new workbenches created in this development cycle, or older workbe +-------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.19/pt-br diff --git a/wiki/translations/pt-br/Release_notes_0.20.md b/wiki/translations/pt-br/Release_notes_0.20.md index fb70d1c379..88342dd610 100644 --- a/wiki/translations/pt-br/Release_notes_0.20.md +++ b/wiki/translations/pt-br/Release_notes_0.20.md @@ -1,7 +1,4 @@ # Release notes 0.20/pt-br - - - **This page tracks new features as they are added to the development version of FreeCAD, which is currently 0.20. When the 0.20 feature freeze happens, delete these messages, and don't add more features to this page. FreeCAD 0.20 is expected to be released in 202x.** @@ -212,3 +209,6 @@ There is also a text box for feedback of OpenSCAD errors. ### Trails, PyTrails, Turns, pivy\_trackers, and Geomatics [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.20/pt-br diff --git a/wiki/translations/pt-br/Report_view.md b/wiki/translations/pt-br/Report_view.md index 48fe3f5590..bba6dd5eea 100644 --- a/wiki/translations/pt-br/Report_view.md +++ b/wiki/translations/pt-br/Report_view.md @@ -1,6 +1,4 @@ # Report view/pt-br - - ## Introdução The [Report view](Report_view.md) is a panel that shows text messages from FreeCAD processes and tools. It is available in the menu **{{StdMenu|[View](Std_View_Menu.md)** → Panels → Report view}}. @@ -53,4 +51,7 @@ Right click on the report view shows some commands: {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Report view/pt-br diff --git a/wiki/translations/pt-br/Reverse_Engineering_Workbench.md b/wiki/translations/pt-br/Reverse_Engineering_Workbench.md index 6f3ed62a15..5c094ae533 100644 --- a/wiki/translations/pt-br/Reverse_Engineering_Workbench.md +++ b/wiki/translations/pt-br/Reverse_Engineering_Workbench.md @@ -1,10 +1,4 @@ -# Reverse Engineering Workbench/pt-br - - - - - -ícone da bancada de trabalho Reverse Engineering +# ícone da bancada de trabalho Reverse Engineering Reverse Engineering Workbench/pt-br ## Introduction @@ -37,3 +31,6 @@ Link para os tópicos apropriados discutindo esta bancada de trabalho [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench/pt-br diff --git a/wiki/translations/pt-br/Robot_API_example.md b/wiki/translations/pt-br/Robot_API_example.md index 2bc8a58f02..1c9e74b145 100644 --- a/wiki/translations/pt-br/Robot_API_example.md +++ b/wiki/translations/pt-br/Robot_API_example.md @@ -1,6 +1,4 @@ # Robot API example/pt-br - - ## Introduction This example is based on the [RobotExample.py](https://github.com/FreeCAD/FreeCAD_sf_master/blob/master/src/Mod/Robot/RobotExample.py) example. @@ -169,3 +167,6 @@ for w in App.activeDocument().Trajectory.Trajectory.Waypoints: [Category:Robot API](Category:Robot_API.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot API example/pt-br diff --git a/wiki/translations/pt-br/Robot_CreateRobot.md b/wiki/translations/pt-br/Robot_CreateRobot.md index 667b6d145f..6c7546a8e8 100644 --- a/wiki/translations/pt-br/Robot_CreateRobot.md +++ b/wiki/translations/pt-br/Robot_CreateRobot.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot CreateRobot/pt-br + ## Description Insert a new robot (KUKA IR500) into the scene. @@ -44,4 +46,7 @@ The predefined robots are {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateRobot/pt-br diff --git a/wiki/translations/pt-br/Robot_CreateTrajectory.md b/wiki/translations/pt-br/Robot_CreateTrajectory.md index fd3b25ad15..9c7138e517 100644 --- a/wiki/translations/pt-br/Robot_CreateTrajectory.md +++ b/wiki/translations/pt-br/Robot_CreateTrajectory.md @@ -6,6 +6,8 @@ SeeAlso: --- +# Robot CreateTrajectory/pt-br + ## Description Inserts a new empty trajectory-object into the scene. @@ -22,4 +24,7 @@ Click on {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateTrajectory/pt-br diff --git a/wiki/translations/pt-br/Robot_Edge2Trac.md b/wiki/translations/pt-br/Robot_Edge2Trac.md index d46ac1b34f..662aae5cdb 100644 --- a/wiki/translations/pt-br/Robot_Edge2Trac.md +++ b/wiki/translations/pt-br/Robot_Edge2Trac.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot Edge2Trac/pt-br + ## Description Insert a new object which decompose edges to a trajectory. @@ -32,4 +34,7 @@ You are able to change values for this trajectory by defining a [Robot](Robot_Workbench.md) > Robot Edge2Trac/pt-br diff --git a/wiki/translations/pt-br/Robot_Export.md b/wiki/translations/pt-br/Robot_Export.md index 31a8fcaea9..5445749b02 100644 --- a/wiki/translations/pt-br/Robot_Export.md +++ b/wiki/translations/pt-br/Robot_Export.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot Export/pt-br + ## Description Export a robot program file. Export can either be a KUKA **compact** subroutine or a KUKA **full** subroutine. @@ -26,4 +28,7 @@ Result: A KRL file (\*.src) will be created. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Export/pt-br diff --git a/wiki/translations/pt-br/Robot_InsertWaypoint.md b/wiki/translations/pt-br/Robot_InsertWaypoint.md index d0f4ffc7db..5d3631d49e 100644 --- a/wiki/translations/pt-br/Robot_InsertWaypoint.md +++ b/wiki/translations/pt-br/Robot_InsertWaypoint.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Robot InsertWaypoint/pt-br + ## Description Insert a way-point from the current robot (tool) position into a trajectory. @@ -33,4 +35,7 @@ Moving a robot is done by {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot InsertWaypoint/pt-br diff --git a/wiki/translations/pt-br/Robot_InsertWaypointPre.md b/wiki/translations/pt-br/Robot_InsertWaypointPre.md index f3350e8693..4e61657c6f 100644 --- a/wiki/translations/pt-br/Robot_InsertWaypointPre.md +++ b/wiki/translations/pt-br/Robot_InsertWaypointPre.md @@ -7,6 +7,8 @@ SeeAlso:[Robot CreateTrajectory](Robot_CreateTrajectory.md), [Robot InsertWaypoint](Robot_InsertWaypoint.md) --- +# Robot InsertWaypointPre/pt-br + ## Description Inserts a waypoint from preselected objects into a trajectory. @@ -33,4 +35,7 @@ Selectable objects are: {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot InsertWaypointPre/pt-br diff --git a/wiki/translations/pt-br/Robot_Module.md b/wiki/translations/pt-br/Robot_Module.md index 1266af6fe1..5060d48de3 100644 --- a/wiki/translations/pt-br/Robot_Module.md +++ b/wiki/translations/pt-br/Robot_Module.md @@ -1,2 +1,5 @@ # Robot Module/pt-br 1. REDIRECT [Robot Workbench/pt-br](Robot_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Module/pt-br diff --git a/wiki/translations/pt-br/Robot_RestoreHomePos.md b/wiki/translations/pt-br/Robot_RestoreHomePos.md index ac3fbba788..984428002a 100644 --- a/wiki/translations/pt-br/Robot_RestoreHomePos.md +++ b/wiki/translations/pt-br/Robot_RestoreHomePos.md @@ -5,6 +5,8 @@ MenuLocation:Robot → Restore home position --- +# Robot RestoreHomePos/pt-br + ## Description Lets the selected robot move to its home position. @@ -26,4 +28,7 @@ Lets the selected robot move to its home position. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot RestoreHomePos/pt-br diff --git a/wiki/translations/pt-br/Robot_SetDefaultOrientation.md b/wiki/translations/pt-br/Robot_SetDefaultOrientation.md index 94acea5b65..7efef9c8c3 100644 --- a/wiki/translations/pt-br/Robot_SetDefaultOrientation.md +++ b/wiki/translations/pt-br/Robot_SetDefaultOrientation.md @@ -6,6 +6,8 @@ SeeAlso:... --- +# Robot SetDefaultOrientation/pt-br + ## Description ## Usage @@ -16,4 +18,7 @@ {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetDefaultOrientation/pt-br diff --git a/wiki/translations/pt-br/Robot_SetDefaultValues.md b/wiki/translations/pt-br/Robot_SetDefaultValues.md index e1134cb506..5caa0c5dff 100644 --- a/wiki/translations/pt-br/Robot_SetDefaultValues.md +++ b/wiki/translations/pt-br/Robot_SetDefaultValues.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot SetDefaultValues/pt-br + ## Description Set the default values for way-point creation. @@ -33,4 +35,7 @@ The program\'s default values are for {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetDefaultValues/pt-br diff --git a/wiki/translations/pt-br/Robot_SetHomePos.md b/wiki/translations/pt-br/Robot_SetHomePos.md index 6be9c5c1b6..dee1084a30 100644 --- a/wiki/translations/pt-br/Robot_SetHomePos.md +++ b/wiki/translations/pt-br/Robot_SetHomePos.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot SetHomePos/pt-br + ## Description Sets the current position/orientation of the selected robot as home position. @@ -26,4 +28,7 @@ Sets the current position/orientation of the selected robot as home position. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetHomePos/pt-br diff --git a/wiki/translations/pt-br/Robot_Simulate.md b/wiki/translations/pt-br/Robot_Simulate.md index 84f4d9c586..58e43e5086 100644 --- a/wiki/translations/pt-br/Robot_Simulate.md +++ b/wiki/translations/pt-br/Robot_Simulate.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot Simulate/pt-br + ## Description Opens the simulation dialog and lets you simulate robot movement along a trajectory. @@ -35,4 +37,7 @@ The buttons from left to right. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Simulate/pt-br diff --git a/wiki/translations/pt-br/Robot_TrajectoryCompound.md b/wiki/translations/pt-br/Robot_TrajectoryCompound.md index 6890da3bcf..76fcc878fe 100644 --- a/wiki/translations/pt-br/Robot_TrajectoryCompound.md +++ b/wiki/translations/pt-br/Robot_TrajectoryCompound.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot TrajectoryCompound/pt-br + ## Description Creates a compound out of some single trajectories. @@ -26,4 +28,7 @@ Creates a compound out of some single trajectories. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot TrajectoryCompound/pt-br diff --git a/wiki/translations/pt-br/Robot_TrajectoryDressUp.md b/wiki/translations/pt-br/Robot_TrajectoryDressUp.md index f4ce8fb0d4..6d5fae69b6 100644 --- a/wiki/translations/pt-br/Robot_TrajectoryDressUp.md +++ b/wiki/translations/pt-br/Robot_TrajectoryDressUp.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot TrajectoryDressUp/pt-br + ## Description Lets you override one or more properties of a trajectory. @@ -30,4 +32,7 @@ Resulting in the ability to change values for: {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot TrajectoryDressUp/pt-br diff --git a/wiki/translations/pt-br/Robot_Workbench.md b/wiki/translations/pt-br/Robot_Workbench.md index 301e290953..43fd53b207 100644 --- a/wiki/translations/pt-br/Robot_Workbench.md +++ b/wiki/translations/pt-br/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/pt-br - - - - - - **O Robot Workbench não está em manutenção. Se você tem experiência com o tópico e está interessado em mantê-lo, por favor, declare sua intenção na seção de desenvolvedores no [https://forum.freecadweb.org/index.php forum FreeCAD]. A razão pela qual esta bancada de trabalho ainda está no código-fonte mestre é porque esta bancada de trabalho está programada em C++. Se esta bancada de trabalho pudesse ser programada em Python, então ela poderia ser feita em uma [bancada de trabalho externa](external_workbenches/pt-br.md) e poderia ser movida para um repositório separado. @@ -81,3 +75,6 @@ Veja o exemplo [Robot API](Robot_API_example/pt-br.md) para obter uma descriçã }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/pt-br diff --git a/wiki/translations/pt-br/Robot_tutorial.md b/wiki/translations/pt-br/Robot_tutorial.md index f72760a19c..71ed6494f4 100644 --- a/wiki/translations/pt-br/Robot_tutorial.md +++ b/wiki/translations/pt-br/Robot_tutorial.md @@ -1,5 +1,5 @@ # Robot tutorial/pt-br - {{TutorialInfo +{{TutorialInfo |Topic= Robot Workbench |Level= Beginner |Time= @@ -52,4 +52,7 @@ This tutorial is targeting on the use of [industrial robots](http://en.wikipedia {{Tutorials navi -}} {{Robot Tools navi}} +}} {{Robot Tools navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot tutorial/pt-br diff --git a/wiki/translations/pt-br/Scenegraph.md b/wiki/translations/pt-br/Scenegraph.md index 8536a98f3f..d7d39ffcf9 100644 --- a/wiki/translations/pt-br/Scenegraph.md +++ b/wiki/translations/pt-br/Scenegraph.md @@ -1,7 +1,4 @@ # Scenegraph/pt-br - - - {{TOCright}} ## Introdução @@ -73,3 +70,6 @@ See [Coin3d snippets](Coin3d_snippets.md) courtesy of MariwanJ\'s research for t }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scenegraph/pt-br diff --git a/wiki/translations/pt-br/Screenshots.md b/wiki/translations/pt-br/Screenshots.md index 05f2a3fded..3e3639c701 100644 --- a/wiki/translations/pt-br/Screenshots.md +++ b/wiki/translations/pt-br/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/pt-br - {{TOCright}} +{{TOCright}} Aqui estão algumas screenshots mostrando diferentes partes do FreeCAD. Elas não estão ordenadas por uma linha de tempo em particular, portanto as imagens podem diferir de sua versão atual. Veja mais screenshots enviados por usuários do FreeCAD no [screenshot forum thread](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) e no [\"Mostre seu projeto aqui!\" Users Showcase forum part](http://forum.freecadweb.org/viewforum.php?f=24). @@ -222,3 +222,6 @@ FreeCAD rodando em modo console (sem interface gráfica) A caixa de diálogo para salvar uma imagem com dimensões personalizadas. [Category:User Documentation/pt-br](Category:User_Documentation/pt-br.md) [Category:Screenshots](Category:Screenshots.md) + +--- +[documentation index](../README.md) > Screenshots/pt-br diff --git a/wiki/translations/pt-br/Scripted_objects.md b/wiki/translations/pt-br/Scripted_objects.md index 5d5b9e787a..1fc3d35769 100644 --- a/wiki/translations/pt-br/Scripted_objects.md +++ b/wiki/translations/pt-br/Scripted_objects.md @@ -1,7 +1,4 @@ # Scripted objects/pt-br - - - {{TOCright}} ## Introdução @@ -890,3 +887,6 @@ In addition to the examples presented here have a look at FreeCAD source code [s }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects/pt-br diff --git a/wiki/translations/pt-br/Scripting_and_macros.md b/wiki/translations/pt-br/Scripting_and_macros.md index 77cae22e90..726b37e5e6 100644 --- a/wiki/translations/pt-br/Scripting_and_macros.md +++ b/wiki/translations/pt-br/Scripting_and_macros.md @@ -1,9 +1,4 @@ # Scripting and macros/pt-br - - - - - ## Overview of Python scripting pages - Python related pages in the Manual: @@ -96,3 +91,6 @@ }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripting and macros/pt-br diff --git a/wiki/translations/pt-br/Selection_methods.md b/wiki/translations/pt-br/Selection_methods.md index 296bcec390..a71c5366c3 100644 --- a/wiki/translations/pt-br/Selection_methods.md +++ b/wiki/translations/pt-br/Selection_methods.md @@ -1,10 +1,4 @@ # Selection methods/pt-br - - - - - - {{TOCright}} ## Visão geral @@ -101,5 +95,5 @@ Consulte a [Documentação do código-fonte](Source_documentation/pt-br.md) e [A
- - +--- +[documentation index](../README.md) > Selection methods/pt-br diff --git a/wiki/translations/pt-br/Selection_view.md b/wiki/translations/pt-br/Selection_view.md index 200b155fc1..e15984abed 100644 --- a/wiki/translations/pt-br/Selection_view.md +++ b/wiki/translations/pt-br/Selection_view.md @@ -1,6 +1,4 @@ # Selection view/pt-br - - ## Introdução @@ -79,4 +77,7 @@ Starting from v0.19, the **picked object list** checkbox is available. If this i {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Selection view/pt-br diff --git a/wiki/translations/pt-br/Ship_Workbench.md b/wiki/translations/pt-br/Ship_Workbench.md index a8d9223977..b8faa15506 100644 --- a/wiki/translations/pt-br/Ship_Workbench.md +++ b/wiki/translations/pt-br/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/pt-br - - -Ship workbench icon +# Ship workbench icon Ship Workbench/pt-br {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/pt-br diff --git a/wiki/translations/pt-br/Sketch.md b/wiki/translations/pt-br/Sketch.md index 987881b61e..44c65f574e 100644 --- a/wiki/translations/pt-br/Sketch.md +++ b/wiki/translations/pt-br/Sketch.md @@ -1,6 +1,4 @@ # Sketch/pt-br - - ## Introdução @@ -39,3 +37,6 @@ Nevertheless, a Sketch can always be created by itself for any other purpose; it }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Sketch/pt-br diff --git a/wiki/translations/pt-br/Sketcher_BSplineApproximate.md b/wiki/translations/pt-br/Sketcher_BSplineApproximate.md index 0f7190a9eb..31ecbeea82 100644 --- a/wiki/translations/pt-br/Sketcher_BSplineApproximate.md +++ b/wiki/translations/pt-br/Sketcher_BSplineApproximate.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Create B-spline](Sketcher_CompCreateBSpline.md) --- +# Sketcher BSplineApproximate/pt-br + ## Description Converts compatible geometry, edges and curves, into a B-spline (see [this page](B-Splines.md) for more info about B-splines). @@ -29,4 +31,7 @@ Make sure to have either the spline [degree](Sketcher_BSplineDegree.md), [polygo {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineApproximate/pt-br diff --git a/wiki/translations/pt-br/Sketcher_BSplineComb.md b/wiki/translations/pt-br/Sketcher_BSplineComb.md index 3292e564be..0e81f0efa0 100644 --- a/wiki/translations/pt-br/Sketcher_BSplineComb.md +++ b/wiki/translations/pt-br/Sketcher_BSplineComb.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Create B-spline](Sketcher_CompCreateBSpline.md) --- +# Sketcher BSplineComb/pt-br + ## Description Shows or hides the display of the Curvature Comb of a B-spline (see [this page](B-Splines.md) for more info about B-splines). @@ -26,4 +28,7 @@ The curvature comb indicates the curvature (value of the second-order derivative {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineComb/pt-br diff --git a/wiki/translations/pt-br/Sketcher_BSplineDecreaseDegree.md b/wiki/translations/pt-br/Sketcher_BSplineDecreaseDegree.md index adb77a7539..5f936f55a3 100644 --- a/wiki/translations/pt-br/Sketcher_BSplineDecreaseDegree.md +++ b/wiki/translations/pt-br/Sketcher_BSplineDecreaseDegree.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Show/hide B-spline degree](Sketcher_BSplineDegree.md), [Sketcher Increase B-spline degree](Sketcher_BSplineIncreaseDegree.md) --- +# Sketcher BSplineDecreaseDegree/pt-br + ## Description Decreases the degree (order) of a B-spline (see [this page](B-Splines.md) for more info about B-splines). @@ -41,4 +43,7 @@ If you take this result and increase the degree, you cannot get the initial stat {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineDecreaseDegree/pt-br diff --git a/wiki/translations/pt-br/Sketcher_BSplineDecreaseKnotMultiplicity.md b/wiki/translations/pt-br/Sketcher_BSplineDecreaseKnotMultiplicity.md index ded8fe4bac..41979fed85 100644 --- a/wiki/translations/pt-br/Sketcher_BSplineDecreaseKnotMultiplicity.md +++ b/wiki/translations/pt-br/Sketcher_BSplineDecreaseKnotMultiplicity.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Show/hide B-spline knot multiplicity](Sketcher_BSplineKnotMultiplicity.md), [Sketcher BSpline Increase knot multiplicity](Sketcher_BSplineIncreaseKnotMultiplicity.md) --- +# Sketcher BSplineDecreaseKnotMultiplicity/pt-br + ## Description Decreases the multiplicity of a B-spline knot. (See [this page](B-Splines.md) for more info about B-splines). @@ -45,4 +47,7 @@ One can see that the spline with knot multiplicity 1 is completely changed while {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineDecreaseKnotMultiplicity/pt-br diff --git a/wiki/translations/pt-br/Sketcher_BSplineDegree.md b/wiki/translations/pt-br/Sketcher_BSplineDegree.md index 827d70b807..08dcfb9406 100644 --- a/wiki/translations/pt-br/Sketcher_BSplineDegree.md +++ b/wiki/translations/pt-br/Sketcher_BSplineDegree.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Create B-spline](Sketcher_CompCreateBSpline.md) --- +# Sketcher BSplineDegree/pt-br + ## Description Shows or hides the display of the **degree** of a B-spline (see [this page](B-Splines.md) for more info about B-splines). @@ -23,4 +25,7 @@ Shows or hides the display of the **degree** of a B-spline (see [this page](B-Sp {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineDegree/pt-br diff --git a/wiki/translations/pt-br/Sketcher_BSplineIncreaseDegree.md b/wiki/translations/pt-br/Sketcher_BSplineIncreaseDegree.md index 67d5b7e92e..48d8bdfba0 100644 --- a/wiki/translations/pt-br/Sketcher_BSplineIncreaseDegree.md +++ b/wiki/translations/pt-br/Sketcher_BSplineIncreaseDegree.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Show/hide B-spline degree](Sketcher_BSplineDegree.md), [Sketcher Decrease B-spline degree](Sketcher_BSplineDecreaseDegree.md) --- +# Sketcher BSplineIncreaseDegree/pt-br + ## Description Increases the degree (order) of a B-spline (see [this page](B-Splines.md) for more info about B-splines). @@ -43,4 +45,7 @@ You can see that now each segment has 2 control points and the knots are coincid {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineIncreaseDegree/pt-br diff --git a/wiki/translations/pt-br/Sketcher_BSplineIncreaseKnotMultiplicity.md b/wiki/translations/pt-br/Sketcher_BSplineIncreaseKnotMultiplicity.md index 0db8851607..0138f8c668 100644 --- a/wiki/translations/pt-br/Sketcher_BSplineIncreaseKnotMultiplicity.md +++ b/wiki/translations/pt-br/Sketcher_BSplineIncreaseKnotMultiplicity.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Show/hide B-spline knot multiplicity](Sketcher_BSplineKnotMultiplicity.md), [Sketcher Decrease knot multiplicity](Sketcher_BSplineDecreaseKnotMultiplicity.md) --- +# Sketcher BSplineIncreaseKnotMultiplicity/pt-br + ## Description Increases the multiplicity of a B-spline knot. (See [this page](B-Splines.md) for more info about B-splines). @@ -41,4 +43,7 @@ One can see that the spline with knot multiplicity 1 is completely changed while {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineIncreaseKnotMultiplicity/pt-br diff --git a/wiki/translations/pt-br/Sketcher_BSplineKnotMultiplicity.md b/wiki/translations/pt-br/Sketcher_BSplineKnotMultiplicity.md index b4e7bfaaca..d99fa1cf50 100644 --- a/wiki/translations/pt-br/Sketcher_BSplineKnotMultiplicity.md +++ b/wiki/translations/pt-br/Sketcher_BSplineKnotMultiplicity.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Create B-spline](Sketcher_CompCreateBSpline.md) --- +# Sketcher BSplineKnotMultiplicity/pt-br + ## Description Shows or hides the display of the knot multiplicity of a B-spline. See [this page](Sketcher_BSplineDecreaseKnotMultiplicity#Description.md) for an explanation of the multiplicity. The multiplicity is shown in braces besides the knot. @@ -24,4 +26,7 @@ Shows or hides the display of the knot multiplicity of a B-spline. See [this pag {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineKnotMultiplicity/pt-br diff --git a/wiki/translations/pt-br/Sketcher_BSplinePoleWeight.md b/wiki/translations/pt-br/Sketcher_BSplinePoleWeight.md index 62f44a8a68..39d15543cf 100644 --- a/wiki/translations/pt-br/Sketcher_BSplinePoleWeight.md +++ b/wiki/translations/pt-br/Sketcher_BSplinePoleWeight.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Create B-spline](Sketcher_CompCreateBSpline.md) --- +# Sketcher BSplinePoleWeight/pt-br + ## Description Shows or hides the display of the **weights** for the control points of a B-spline curve (see [below](#Weight_Explanation.md) for an explanation of weights). @@ -58,4 +60,7 @@ How to change weights is described in [ this Wiki page](B-Splines#Changing_the_W {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplinePoleWeight/pt-br diff --git a/wiki/translations/pt-br/Sketcher_BSplinePolygon.md b/wiki/translations/pt-br/Sketcher_BSplinePolygon.md index 0767e4c101..f188399c89 100644 --- a/wiki/translations/pt-br/Sketcher_BSplinePolygon.md +++ b/wiki/translations/pt-br/Sketcher_BSplinePolygon.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Create B-spline](Sketcher_CompCreateBSpline.md) --- +# Sketcher BSplinePolygon/pt-br + ## Description Shows or hides the display of the defininig Polygon of a B-spline (see [this page](B-Splines.md) for more info about B-splines). @@ -23,4 +25,7 @@ Shows or hides the display of the defininig Polygon of a B-spline (see [this pag {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplinePolygon/pt-br diff --git a/wiki/translations/pt-br/Sketcher_CarbonCopy.md b/wiki/translations/pt-br/Sketcher_CarbonCopy.md index 48b2e34af2..9e5c8bf987 100644 --- a/wiki/translations/pt-br/Sketcher_CarbonCopy.md +++ b/wiki/translations/pt-br/Sketcher_CarbonCopy.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Sketcher CarbonCopy/pt-br + ## Description The ** [Sketcher CarbonCopy](Sketcher_CarbonCopy.md)** tool copies all the geometry and constraints from another sketch into the active sketch. @@ -37,4 +39,7 @@ Dimensional constraints which exist before the copy function remain linked to th {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CarbonCopy/pt-br diff --git a/wiki/translations/pt-br/Sketcher_Clone.md b/wiki/translations/pt-br/Sketcher_Clone.md index 72dd5e956e..5d2fd87ccd 100644 --- a/wiki/translations/pt-br/Sketcher_Clone.md +++ b/wiki/translations/pt-br/Sketcher_Clone.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Copy](Sketcher_Copy.md), [Sketcher Move](Sketcher_Move.md) --- +# Sketcher Clone/pt-br + ## Description Clones the selected sketch elements from one point to another, using the last selected point as reference. If any constraints are part of the source elements, then the new constraints are linked to the source constraints; if the constraints in the source are changed, the constraints in the clone are also changed. To avoid this linking see ** [Sketcher Copy](Sketcher_Copy.md)**. @@ -27,4 +29,7 @@ No extra constraints for clone-behaviour are added. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Clone/pt-br diff --git a/wiki/translations/pt-br/Sketcher_CloseShape.md b/wiki/translations/pt-br/Sketcher_CloseShape.md index 396c3c88ca..8c5887e7a3 100644 --- a/wiki/translations/pt-br/Sketcher_CloseShape.md +++ b/wiki/translations/pt-br/Sketcher_CloseShape.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher CloseShape/pt-br + ## Description This tool can be used to make a selected contour in sketcher closed by making an endpoint of a sketcher element coincident with the endpoint of the sketcher element selected next. @@ -29,4 +31,7 @@ The tool will connect the elements in the order of their selection, so make sure {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CloseShape/pt-br diff --git a/wiki/translations/pt-br/Sketcher_CompCreateArc.md b/wiki/translations/pt-br/Sketcher_CompCreateArc.md index 1ed57890fd..7c3e832ac6 100644 --- a/wiki/translations/pt-br/Sketcher_CompCreateArc.md +++ b/wiki/translations/pt-br/Sketcher_CompCreateArc.md @@ -6,6 +6,8 @@ MenuLocation:None (toolbar only) --- +# Sketcher CompCreateArc/pt-br +
@@ -24,4 +26,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateArc/pt-br diff --git a/wiki/translations/pt-br/Sketcher_CompCreateBSpline.md b/wiki/translations/pt-br/Sketcher_CompCreateBSpline.md index 774bdfe4f0..05db2a4a2a 100644 --- a/wiki/translations/pt-br/Sketcher_CompCreateBSpline.md +++ b/wiki/translations/pt-br/Sketcher_CompCreateBSpline.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Sketcher CompCreateBSpline/pt-br + ## Description **Create a B-Spline** is an icon button in the Sketcher geometries toolbar that groups tools to create a B-Spline curve. Click on the down arrow to its right to expand the icons below it and select a tool. @@ -22,4 +24,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateBSpline/pt-br diff --git a/wiki/translations/pt-br/Sketcher_CompCreateCircle.md b/wiki/translations/pt-br/Sketcher_CompCreateCircle.md index 25340feba5..24bd2d97de 100644 --- a/wiki/translations/pt-br/Sketcher_CompCreateCircle.md +++ b/wiki/translations/pt-br/Sketcher_CompCreateCircle.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench.md) --- +# Sketcher CompCreateCircle/pt-br + ## Description **Create a circle** is an icon button in the Sketcher geometries toolbar that groups tools to create a circle. Click on the down arrow to its right to expand the icons below it and select a tool. @@ -21,4 +23,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateCircle/pt-br diff --git a/wiki/translations/pt-br/Sketcher_CompCreateConic.md b/wiki/translations/pt-br/Sketcher_CompCreateConic.md index 4cdf8e1570..f6d1477796 100644 --- a/wiki/translations/pt-br/Sketcher_CompCreateConic.md +++ b/wiki/translations/pt-br/Sketcher_CompCreateConic.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench.md) --- +# Sketcher CompCreateConic/pt-br + ## Description **Create a conic** is an icon button in the Sketcher geometries toolbar that groups tools to create curves based on a section of a cone. Click on the down arrow to its right to expand the icons below it and select a tool. @@ -24,4 +26,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateConic/pt-br diff --git a/wiki/translations/pt-br/Sketcher_CompCreateRectangles.md b/wiki/translations/pt-br/Sketcher_CompCreateRectangles.md index 3cb488cf7b..d51beb0fa0 100644 --- a/wiki/translations/pt-br/Sketcher_CompCreateRectangles.md +++ b/wiki/translations/pt-br/Sketcher_CompCreateRectangles.md @@ -7,6 +7,8 @@ Version:0.20 --- +# Sketcher CompCreateRectangles/pt-br + ## Description **Create a rectangle** is an icon button in the Sketcher geometries toolbar that groups tools to create rectangles. Click on the down arrow to its right to expand the icons below it and select a tool. @@ -23,4 +25,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateRectangles/pt-br diff --git a/wiki/translations/pt-br/Sketcher_CompCreateRegularPolygon.md b/wiki/translations/pt-br/Sketcher_CompCreateRegularPolygon.md index 6386910e24..46b6a18b9c 100644 --- a/wiki/translations/pt-br/Sketcher_CompCreateRegularPolygon.md +++ b/wiki/translations/pt-br/Sketcher_CompCreateRegularPolygon.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench.md) --- +# Sketcher CompCreateRegularPolygon/pt-br + ## Description **Create a regular polygon** is an icon button in the Sketcher geometries toolbar that groups tools to create a regular polygon. Click on the down arrow to its right to expand the icons below it and select a tool. @@ -26,4 +28,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateRegularPolygon/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConnectLines.md b/wiki/translations/pt-br/Sketcher_ConnectLines.md index 61a1311620..4f9ae98956 100644 --- a/wiki/translations/pt-br/Sketcher_ConnectLines.md +++ b/wiki/translations/pt-br/Sketcher_ConnectLines.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher ConstrainCoincident](Sketcher_ConstrainCoincident.md) --- +# Sketcher ConnectLines/pt-br + ## Description Applies [Coincident constraints](Sketcher_ConstrainCoincident.md) to endpoints with the same coordinates of the selected elements. @@ -30,4 +32,7 @@ Before using this command make sure that obvious constraints (horizontal, vertic {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConnectLines/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainAngle.md b/wiki/translations/pt-br/Sketcher_ConstrainAngle.md index c0c4524a9f..5038dbf0d9 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainAngle.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainAngle.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainAngle/pt-br --- - GuiCommand:/pt-br Name:Constraint InternalAngle Name/pt-br:Constraint InternalAngle Workbenches:[PartDesign](Sketcher_Workbench/pt-br___Sketcher]],_[[PartDesign_Workbench/pt-br.md)|Shortcut:A MenuLocation:Sketch → Sketcher constraints → Constrain angle SeeAlso:[Constraint Length](Constraint_Length/pt-br.md), [Constraint Perpendicular](Constraint_Perpendicular/pt-br.md)--- @@ -101,4 +102,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainAngle/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainBlock.md b/wiki/translations/pt-br/Sketcher_ConstrainBlock.md index a294fd5597..b15b106622 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainBlock.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainBlock.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constrain Lock](Sketcher_ConstrainLock.md) --- +# Sketcher ConstrainBlock/pt-br + ## Description **Constrain Block** blocks a geometric element in place with a single constraint. @@ -33,4 +35,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainBlock/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainCoincident.md b/wiki/translations/pt-br/Sketcher_ConstrainCoincident.md index ffa5f205a4..9dda200254 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainCoincident.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainCoincident.md @@ -8,6 +8,8 @@ SeeAlso:[Constrain Lock](Sketcher_ConstrainLock/pt-br.md), [Constrain Point onto Object](Sketcher_ConstrainPointOnObject/pt-br.md) --- +# Sketcher ConstrainCoincident/pt-br +
@@ -90,3 +92,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/pt-br](Category:Sketcher/pt-br.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainCoincident/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainDiameter.md b/wiki/translations/pt-br/Sketcher_ConstrainDiameter.md index 15495c71e8..1a853efb11 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainDiameter.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainDiameter.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Sketcher ConstrainDiameter/pt-br + ## Description This constraint constrains the value of the diameter of a circle or arc to have a specific value. If more than one circle or arc is selected before launching the command : @@ -44,4 +46,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDiameter/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainDistance.md b/wiki/translations/pt-br/Sketcher_ConstrainDistance.md index eb34f000d8..c3f17e4ac1 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainDistance.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainDistance.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint HorizontalDistance](Sketcher_ConstrainDistanceX/pt-br.md), [Constraint VerticalDistance](Sketcher_ConstrainDistanceY/pt-br.md) --- +# Sketcher ConstrainDistance/pt-br +
@@ -62,4 +64,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistance/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainDistanceX.md b/wiki/translations/pt-br/Sketcher_ConstrainDistanceX.md index d4da415ac8..940a6133d2 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainDistanceX.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainDistanceX.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint Length](Sketcher_ConstrainDistance/pt-br.md), [Constraint VerticalDistance](Sketcher_ConstrainDistanceY/pt-br.md) --- +# Sketcher ConstrainDistanceX/pt-br +
@@ -53,4 +55,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceX/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainDistanceY.md b/wiki/translations/pt-br/Sketcher_ConstrainDistanceY.md index 33523e942e..0088e1b62e 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainDistanceY.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainDistanceY.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint HorizontalDistance](Sketcher_ConstrainDistanceX/pt-br.md), [Constraint Length](Sketcher_ConstrainDistance/pt-br.md) --- +# Sketcher ConstrainDistanceY/pt-br +
@@ -53,4 +55,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceY/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainEqual.md b/wiki/translations/pt-br/Sketcher_ConstrainEqual.md index a787bb5bc2..de0bbb314e 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainEqual.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainEqual.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainEqual/pt-br --- - GuiCommand:/pt-br Name:Constraint EqualLength Name/pt-br:Constraint EqualLength Workbenches:[PartDesign](Sketcher_Workbench/pt-br___Sketcher]],_[[PartDesign_Workbench/pt-br.md)|MenuLocation:Sketch → Sketcher constraints → Constrain equal SeeAlso:[Constraint Radius](Constraint_Radius/pt-br.md)--- @@ -59,4 +60,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainEqual/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainHorizontal.md b/wiki/translations/pt-br/Sketcher_ConstrainHorizontal.md index 859ae24d61..4ad509a237 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainHorizontal.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainHorizontal.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint Vertical](Constraint_Vertical/pt-br.md) --- +# Sketcher ConstrainHorizontal/pt-br +
@@ -57,3 +59,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/pt-br](Category:Sketcher/pt-br.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainHorizontal/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainInternalAlignment.md b/wiki/translations/pt-br/Sketcher_ConstrainInternalAlignment.md index 62506f4195..541e20fdab 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainInternalAlignment.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainInternalAlignment.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Show/Hide Internal Geometry](Sketcher_RestoreInternalAlignmentGeometry.md), [Sketcher Ellipse by Center](Sketcher_CreateEllipseByCenter.md) --- +# Sketcher ConstrainInternalAlignment/pt-br + ## Description The InternalAlignment constraint aligns lines and points to particular places of a complex sketcher element (there is just one \"complex\" element so far, the [Ellipse](Sketcher_CreateEllipseByCenter.md)). @@ -57,4 +59,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainInternalAlignment/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainLock.md b/wiki/translations/pt-br/Sketcher_ConstrainLock.md index 59c3db0bca..4e9a5e03fe 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainLock.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainLock.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainLock/pt-br --- - GuiCommand:/pt-br Name:Sketcher ConstrainLock Name/pt-br:Sketcher ConstrainLock Workbenches:[PartDesign](Sketcher_Workbench/pt-br___Sketcher]],_[[PartDesign_Workbench/pt-br.md)|MenuLocation:Sketch → Sketcher constraints → Constrain lock SeeAlso:[Constraint Coincident](Constraint_PointOnPoint/pt-br.md)--- @@ -26,4 +27,7 @@ The [Loc {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainLock/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainParallel.md b/wiki/translations/pt-br/Sketcher_ConstrainParallel.md index ff1862d90b..caaa16e0c6 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainParallel.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainParallel.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainParallel/pt-br --- - GuiCommand:/pt-br Name:Constraint Parallel Name/pt-br:Constraint Parallel Workbenches:[PartDesign](Sketcher_Workbench/pt-br___Sketcher]],_[[PartDesign_Workbench/pt-br.md)|MenuLocation:Sketch → Sketcher constraints → Constrain parallel SeeAlso:[Constraint Vertical](Constraint_Vertical/pt-br.md), [Constraint Horizontal](Constraint_Horizontal/pt-br.md)--- @@ -43,4 +44,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainParallel/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainPerpendicular.md b/wiki/translations/pt-br/Sketcher_ConstrainPerpendicular.md index 5e9fb33e7c..5b8226d482 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainPerpendicular.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainPerpendicular.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainPerpendicular/pt-br --- - GuiCommand:/pt-br Name:Constraint Perpendicular Name/pt-br:Constraint Perpendicular Workbenches:[PartDesign](Sketcher_Workbench/pt-br___Sketcher]],_[[PartDesign_Workbench/pt-br.md)|MenuLocation:Sketch → Sketcher constraints → Constrain perpendicular Shortcut:N SeeAlso:[Constraint Angle](Constraint_InternalAngle/pt-br.md)--- @@ -108,4 +109,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPerpendicular/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainPointOnObject.md b/wiki/translations/pt-br/Sketcher_ConstrainPointOnObject.md index 6c8aa64b89..5ab99b387d 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainPointOnObject.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainPointOnObject.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainPointOnObject/pt-br --- - GuiCommand:/pt-br Name:Constraint PointOnObject Name/pt-br:Constraint PointOnObject Workbenches:[PartDesign](Sketcher_Workbench/pt-br___Sketcher]],_[[PartDesign_Workbench/pt-br.md)|MenuLocation:Sketch → Sketcher constraints → Constrain point onto object SeeAlso:[Constraint Coincident](Constraint_PointOnPoint/pt-br.md)--- @@ -42,4 +43,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains how to identify th {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPointOnObject/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainRadiam.md b/wiki/translations/pt-br/Sketcher_ConstrainRadiam.md index d3408c2372..26ab268f3b 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainRadiam.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainRadiam.md @@ -7,6 +7,8 @@ Version:0.20 --- +# Sketcher ConstrainRadiam/pt-br + ## Description This constraint automatically constrains the value of the radius/diameter of a circle or arc to have a specific value. Following rules are applied : @@ -47,4 +49,7 @@ No specific scripting applies. See the [Sketcher scripting](Sketcher_scripting.m {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadiam/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainRadius.md b/wiki/translations/pt-br/Sketcher_ConstrainRadius.md index da798be87b..3589053563 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainRadius.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainRadius.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainRadius/pt-br --- - GuiCommand:/pt-br Name:Constraint Radius Name/pt-br:Constraint Radius Workbenches:[PartDesign](Sketcher_Workbench/pt-br___Sketcher]],_[[PartDesign_Workbench/pt-br.md)|MenuLocation:Sketch → Sketcher constraints → Constrain radius SeeAlso:[Constraint Distance](Constraint_Length/pt-br.md), [Constraint Horizontal](Constraint_Horizontal/pt-br.md), [Constraint Vertical](Constraint_Vertical/pt-br.md)--- @@ -43,4 +44,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadius/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainSnellsLaw.md b/wiki/translations/pt-br/Sketcher_ConstrainSnellsLaw.md index 16da2f2eae..1f50df1afe 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainSnellsLaw.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainSnellsLaw.md @@ -6,6 +6,8 @@ Version:0.15 --- +# Sketcher ConstrainSnellsLaw/pt-br + ## Description Constrains two lines to follow the law of refraction of light as it penetrates through an interface, where two materials of different refraction indices meet. See [Snell\'s law](http://en.wikipedia.org/wiki/Snell%27s_law) on Wikipedia for more info. @@ -95,4 +97,7 @@ App.ActiveDocument.recompute() {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSnellsLaw/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainSymmetric.md b/wiki/translations/pt-br/Sketcher_ConstrainSymmetric.md index 34978131a0..01cd786a19 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainSymmetric.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainSymmetric.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainSymmetric/pt-br --- - GuiCommand:/pt-br Name:Constraint Symmetric Name/pt-br:Constraint Symmetric Workbenches:[PartDesign](Sketcher_Workbench/pt-br___Sketcher]],_[[PartDesign_Workbench/pt-br.md)|MenuLocation:Sketch → Sketcher constraints → Constrain symmetrical SeeAlso:[Constraint Parallel](Constraint_Parallel/pt-br.md)--- @@ -57,4 +58,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSymmetric/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainTangent.md b/wiki/translations/pt-br/Sketcher_ConstrainTangent.md index d5a094f80a..74df178529 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainTangent.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainTangent.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constraint point on object](Sketcher_ConstrainPointOnObject.md) --- +# Sketcher ConstrainTangent/pt-br + ## Description Tangent Constraint makes two curves to touch each other (be tangent). Lines are treated infinite, and arcs are treated as full circles/ellipses. The constraint is also capable of connecting two curves, forcing them tangent at the joint, thus making the joint smooth. @@ -122,4 +124,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainTangent/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ConstrainVertical.md b/wiki/translations/pt-br/Sketcher_ConstrainVertical.md index 128a582173..837ca5f951 100644 --- a/wiki/translations/pt-br/Sketcher_ConstrainVertical.md +++ b/wiki/translations/pt-br/Sketcher_ConstrainVertical.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint Horizontal](Sketcher_ConstrainHorizontal/pt-br.md) --- +# Sketcher ConstrainVertical/pt-br +
@@ -50,3 +52,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/pt-br](Category:Sketcher/pt-br.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainVertical/pt-br diff --git a/wiki/translations/pt-br/Sketcher_Copy.md b/wiki/translations/pt-br/Sketcher_Copy.md index 6457732b76..d3a25b6416 100644 --- a/wiki/translations/pt-br/Sketcher_Copy.md +++ b/wiki/translations/pt-br/Sketcher_Copy.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Clone](Sketcher_Clone.md), [Sketcher Move](Sketcher_Move.md) --- +# Sketcher Copy/pt-br + ## Description Copies the selected sketch elements from one point to another, using the last selected point as reference. When a copy is made, there is no link established between the copy and the original, see ** [Sketcher Clone](Sketcher_Clone.md)**. @@ -25,4 +27,7 @@ No extra constraints are added. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Copy/pt-br diff --git a/wiki/translations/pt-br/Sketcher_Create3PointArc.md b/wiki/translations/pt-br/Sketcher_Create3PointArc.md index 9c1ddba357..004fcf83be 100644 --- a/wiki/translations/pt-br/Sketcher_Create3PointArc.md +++ b/wiki/translations/pt-br/Sketcher_Create3PointArc.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Sketcher Create3PointArc/pt-br + ## Description This tool draws an arc by picking three points: the start point, the end point and a point on the arc. @@ -24,4 +26,7 @@ When starting the tool, the mouse pointer changes to a white cross with a red ar {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Create3PointArc/pt-br diff --git a/wiki/translations/pt-br/Sketcher_Create3PointCircle.md b/wiki/translations/pt-br/Sketcher_Create3PointCircle.md index bdc172fc8f..876fa1757b 100644 --- a/wiki/translations/pt-br/Sketcher_Create3PointCircle.md +++ b/wiki/translations/pt-br/Sketcher_Create3PointCircle.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Sketcher Create3PointCircle/pt-br + ## Description This tool draws a circle by picking three points on the circle outline. When starting the tool, the mouse pointer changes to a white cross with a red circle icon. Besides are coordinates shown in real time. @@ -22,4 +24,7 @@ This tool \_\_TOC\_\_ @@ -217,4 +211,7 @@ You can set the following options: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Dialog/pt-br diff --git a/wiki/translations/pt-br/Sketcher_EditSketch.md b/wiki/translations/pt-br/Sketcher_EditSketch.md index c693e75f46..327085c298 100644 --- a/wiki/translations/pt-br/Sketcher_EditSketch.md +++ b/wiki/translations/pt-br/Sketcher_EditSketch.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher LeaveSketch](Sketcher_LeaveSketch.md) --- +# Sketcher EditSketch/pt-br + ## Descrição This command will let you edit an existing sketch. It will open the [Sketcher Dialog](Sketcher_Dialog.md). @@ -29,4 +31,7 @@ There are several ways to invoke the Edit Sketch command: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher EditSketch/pt-br diff --git a/wiki/translations/pt-br/Sketcher_Extend.md b/wiki/translations/pt-br/Sketcher_Extend.md index 722b8cf1a1..1f431511a4 100644 --- a/wiki/translations/pt-br/Sketcher_Extend.md +++ b/wiki/translations/pt-br/Sketcher_Extend.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Trim edge](Sketcher_Trimming.md) --- +# Sketcher Extend/pt-br + ## Description The **extend edge** tool extends an edge to an arbitrary location in the sketch, or to another edge. @@ -33,4 +35,7 @@ The **extend edge** tool extends an edge to an arbitrary location in the sketch, {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Extend/pt-br diff --git a/wiki/translations/pt-br/Sketcher_External.md b/wiki/translations/pt-br/Sketcher_External.md index a008f657d1..ba7bd33a3e 100644 --- a/wiki/translations/pt-br/Sketcher_External.md +++ b/wiki/translations/pt-br/Sketcher_External.md @@ -1,3 +1,4 @@ +# Sketcher External/pt-br --- - GuiCommand:/pt-br Name:Sketcher External Name/pt-br:Sketcher External Workbenches:[PartDesign](Sketcher_Workbench/pt-br___Sketcher]],_[[PartDesign_Workbench/pt-br.md)|Shortcut:E MenuLocation:Sketch → Sketcher geometries → Sketcher External SeeAlso:[ConstructionMode](Sketcher_ConstructionMode/pt-br.md)--- @@ -73,4 +74,7 @@ When the sketch edit mode is closed, external Geometry lines are not visible. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher External/pt-br diff --git a/wiki/translations/pt-br/Sketcher_LeaveSketch.md b/wiki/translations/pt-br/Sketcher_LeaveSketch.md index a28f0bdaee..56ad69cabe 100644 --- a/wiki/translations/pt-br/Sketcher_LeaveSketch.md +++ b/wiki/translations/pt-br/Sketcher_LeaveSketch.md @@ -1,3 +1,4 @@ +# Sketcher LeaveSketch/pt-br --- - GuiCommand:/pt-br Name:Sketcher LeaveSketch Name/pt-br:Sketcher LeaveSketch Workbenches:[PartDesign](Sketcher_Workbench/pt-br___Sketcher]],_[[PartDesign_Workbench/pt-br.md)|MenuLocation:Sketch → Leave sketch|--- @@ -26,3 +27,6 @@ The **Leave sketch** command exits the sketch editing mode and frees up the [Tas }} [Category:Sketcher/pt-br](Category:Sketcher/pt-br.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher LeaveSketch/pt-br diff --git a/wiki/translations/pt-br/Sketcher_MapSketch.md b/wiki/translations/pt-br/Sketcher_MapSketch.md index 6eafb45a7c..bbde1492ba 100644 --- a/wiki/translations/pt-br/Sketcher_MapSketch.md +++ b/wiki/translations/pt-br/Sketcher_MapSketch.md @@ -1,3 +1,4 @@ +# Sketcher MapSketch/pt-br --- - GuiCommand:/pt-br Name:Sketcher MapSketch Name/pt-br:Sketcher MapSketch Create a sketch on a face|Workbenches:[PartDesign](Sketcher_Workbench/pt-br___Sketcher]],_[[PartDesign_Workbench/pt-br.md)|MenuLocation:Part design → Create a sketch on a face SeeAlso:[Create a sketch](Sketcher_NewSketch/pt-br.md)--- @@ -57,3 +58,6 @@ Now we select the top face of Pad and then select the Map A Sketch To A Face too }} [Category:Sketcher/pt-br](Category:Sketcher/pt-br.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MapSketch/pt-br diff --git a/wiki/translations/pt-br/Sketcher_MergeSketches.md b/wiki/translations/pt-br/Sketcher_MergeSketches.md index a7378d0594..3c58f39ac4 100644 --- a/wiki/translations/pt-br/Sketcher_MergeSketches.md +++ b/wiki/translations/pt-br/Sketcher_MergeSketches.md @@ -6,6 +6,8 @@ Version:0.15 --- +# Sketcher MergeSketches/pt-br + ## Description Merge two or more sketches into one. @@ -22,4 +24,7 @@ Merge two or more sketches into one. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MergeSketches/pt-br diff --git a/wiki/translations/pt-br/Sketcher_Micro_Tutorial_-_Constraint_Practices.md b/wiki/translations/pt-br/Sketcher_Micro_Tutorial_-_Constraint_Practices.md index bbea5d634b..5a53294528 100644 --- a/wiki/translations/pt-br/Sketcher_Micro_Tutorial_-_Constraint_Practices.md +++ b/wiki/translations/pt-br/Sketcher_Micro_Tutorial_-_Constraint_Practices.md @@ -1,7 +1,4 @@ # Sketcher Micro Tutorial - Constraint Practices/pt-br - - - {{TutorialInfo |Topic=Sketcher |Level=Iniciante @@ -126,4 +123,7 @@ This is the best way to constrain this sketch, as we only used one datum (dimens {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Micro Tutorial - Constraint Practices/pt-br diff --git a/wiki/translations/pt-br/Sketcher_MirrorSketch.md b/wiki/translations/pt-br/Sketcher_MirrorSketch.md index 66eb7fcc1e..ba158c4205 100644 --- a/wiki/translations/pt-br/Sketcher_MirrorSketch.md +++ b/wiki/translations/pt-br/Sketcher_MirrorSketch.md @@ -6,6 +6,8 @@ Version:0.16 --- +# Sketcher MirrorSketch/pt-br + ## Description Mirror a sketch along the x-axis, the y-axis, or the origin. This command is invoked while *not* editing a sketch. It creates a new sketch which contains the mirrored geometry. @@ -26,4 +28,7 @@ Notes: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MirrorSketch/pt-br diff --git a/wiki/translations/pt-br/Sketcher_Module.md b/wiki/translations/pt-br/Sketcher_Module.md index fa4b30819d..e47bb1945a 100644 --- a/wiki/translations/pt-br/Sketcher_Module.md +++ b/wiki/translations/pt-br/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/pt-br 1. REDIRECT [Sketcher Workbench/pt-br](Sketcher_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/pt-br diff --git a/wiki/translations/pt-br/Sketcher_Move.md b/wiki/translations/pt-br/Sketcher_Move.md index 29ffa9a524..5730c1dd35 100644 --- a/wiki/translations/pt-br/Sketcher_Move.md +++ b/wiki/translations/pt-br/Sketcher_Move.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Clone](Sketcher_Clone.md), [Sketcher Copy](Sketcher_Copy.md) --- +# Sketcher Move/pt-br + ## Description Moves the selected sketch elements from one point to another, using the last selected point as reference. @@ -30,4 +32,7 @@ Moves the selected sketch elements from one point to another, using the last sel {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Move/pt-br diff --git a/wiki/translations/pt-br/Sketcher_NewSketch.md b/wiki/translations/pt-br/Sketcher_NewSketch.md index 2d6efeb812..896415c075 100644 --- a/wiki/translations/pt-br/Sketcher_NewSketch.md +++ b/wiki/translations/pt-br/Sketcher_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Mapear um esboço para uma face](Sketcher_MapSketch/pt-br.md), [Reorientar um esboço...](Sketcher_Reorient/pt-br.md) --- +# Sketcher NewSketch/pt-br +
@@ -40,4 +42,7 @@ The sketch can be moved in the [3D view](3D_view.md) using [Placement](Placement {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher NewSketch/pt-br diff --git a/wiki/translations/pt-br/Sketcher_Preferences.md b/wiki/translations/pt-br/Sketcher_Preferences.md index 99dc37d38a..aed578f0fa 100644 --- a/wiki/translations/pt-br/Sketcher_Preferences.md +++ b/wiki/translations/pt-br/Sketcher_Preferences.md @@ -1,7 +1,4 @@ # Sketcher Preferences/pt-br - - - {{TOCright}} The preferences screen of the [Sketcher Workbench](Sketcher_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → Sketcher**. @@ -246,3 +243,6 @@ In the *Colors* tab you can specify the following: }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Preferences/pt-br diff --git a/wiki/translations/pt-br/Sketcher_RectangularArray.md b/wiki/translations/pt-br/Sketcher_RectangularArray.md index 8d518e7fd5..ca44c7dbbf 100644 --- a/wiki/translations/pt-br/Sketcher_RectangularArray.md +++ b/wiki/translations/pt-br/Sketcher_RectangularArray.md @@ -6,6 +6,8 @@ Version:0.16 --- +# Sketcher RectangularArray/pt-br + ## Description Creates an array of selected sketcher elements. @@ -28,4 +30,7 @@ Creates an array of selected sketcher elements. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RectangularArray/pt-br diff --git a/wiki/translations/pt-br/Sketcher_RemoveAxesAlignment.md b/wiki/translations/pt-br/Sketcher_RemoveAxesAlignment.md index bdc1592fce..7a494b85e6 100644 --- a/wiki/translations/pt-br/Sketcher_RemoveAxesAlignment.md +++ b/wiki/translations/pt-br/Sketcher_RemoveAxesAlignment.md @@ -6,6 +6,8 @@ Version:0.20 --- +# Sketcher RemoveAxesAlignment/pt-br + ## Description This tool removes axis alignments ( [Horizontal](Sketcher_ConstrainHorizontal.md), [Vertical](Sketcher_ConstrainVertical.md) constraints) from the selected elements by trying to preserve the constraint relationship. @@ -29,4 +31,7 @@ As result the (horizontal, vertical constraints) will be removed. In the example {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RemoveAxesAlignment/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ReorientSketch.md b/wiki/translations/pt-br/Sketcher_ReorientSketch.md index 460d611321..87e73adda1 100644 --- a/wiki/translations/pt-br/Sketcher_ReorientSketch.md +++ b/wiki/translations/pt-br/Sketcher_ReorientSketch.md @@ -8,6 +8,8 @@ SeeAlso:[Map sketch](Sketcher_MapSketch/pt-br.md), [New Sketch](Sketcher_NewSketch/pt-br.md) --- +# Sketcher ReorientSketch/pt-br + @@ -35,4 +37,7 @@ Allows you to detach a sketch from a face and attach it to one of the main plane {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ReorientSketch/pt-br diff --git a/wiki/translations/pt-br/Sketcher_RestoreInternalAlignmentGeometry.md b/wiki/translations/pt-br/Sketcher_RestoreInternalAlignmentGeometry.md index bd7918fd93..2d6fecca91 100644 --- a/wiki/translations/pt-br/Sketcher_RestoreInternalAlignmentGeometry.md +++ b/wiki/translations/pt-br/Sketcher_RestoreInternalAlignmentGeometry.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Ellipse](Sketcher_CreateEllipseByCenter.md), [Sketcher Internal Alignment Constraint](Sketcher_ConstrainInternalAlignment.md) --- +# Sketcher RestoreInternalAlignmentGeometry/pt-br + ## Description The command deletes unused elements aligned to internal geometry, or recreates the missing ones. @@ -33,4 +35,7 @@ If there are free alignment places for the selected element, new construction ge {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RestoreInternalAlignmentGeometry/pt-br diff --git a/wiki/translations/pt-br/Sketcher_SelectConflictingConstraints.md b/wiki/translations/pt-br/Sketcher_SelectConflictingConstraints.md index 09271917fb..d2d71ba9a0 100644 --- a/wiki/translations/pt-br/Sketcher_SelectConflictingConstraints.md +++ b/wiki/translations/pt-br/Sketcher_SelectConflictingConstraints.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectConflictingConstraints/pt-br + ## Description Selects the conflicting constraints of a sketch. @@ -23,4 +25,7 @@ Selects the conflicting constraints of a sketch. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConflictingConstraints/pt-br diff --git a/wiki/translations/pt-br/Sketcher_SelectConstraints.md b/wiki/translations/pt-br/Sketcher_SelectConstraints.md index 2ef60a2e42..cc1dbc033c 100644 --- a/wiki/translations/pt-br/Sketcher_SelectConstraints.md +++ b/wiki/translations/pt-br/Sketcher_SelectConstraints.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectConstraints/pt-br + ## Description Selects the constraints of a sketcher element. @@ -30,4 +32,7 @@ Selects the constraints of a sketcher element. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConstraints/pt-br diff --git a/wiki/translations/pt-br/Sketcher_SelectElementsAssociatedWithConstraints.md b/wiki/translations/pt-br/Sketcher_SelectElementsAssociatedWithConstraints.md index e53f1ba85a..5e1e521e9b 100644 --- a/wiki/translations/pt-br/Sketcher_SelectElementsAssociatedWithConstraints.md +++ b/wiki/translations/pt-br/Sketcher_SelectElementsAssociatedWithConstraints.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectElementsAssociatedWithConstraints/pt-br + ## Description Select sketcher Elements associated with constraints. @@ -23,4 +25,7 @@ Select sketcher Elements associated with constraints. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsAssociatedWithConstraints/pt-br diff --git a/wiki/translations/pt-br/Sketcher_SelectElementsWithDoFs.md b/wiki/translations/pt-br/Sketcher_SelectElementsWithDoFs.md index 08fa049901..758d451499 100644 --- a/wiki/translations/pt-br/Sketcher_SelectElementsWithDoFs.md +++ b/wiki/translations/pt-br/Sketcher_SelectElementsWithDoFs.md @@ -6,6 +6,8 @@ Version:0.18 --- +# Sketcher SelectElementsWithDoFs/pt-br + ## Description This tool is meant to aid in fully constraining a sketch by highlighting in green the sketch elements with remaining degrees of freedom (DoF). @@ -33,4 +35,7 @@ where \"X\" is the number of degrees of freedom remaining in the sketch; you wil {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsWithDoFs/pt-br diff --git a/wiki/translations/pt-br/Sketcher_SelectHorizontalAxis.md b/wiki/translations/pt-br/Sketcher_SelectHorizontalAxis.md index 15b3c21330..a90722ec9f 100644 --- a/wiki/translations/pt-br/Sketcher_SelectHorizontalAxis.md +++ b/wiki/translations/pt-br/Sketcher_SelectHorizontalAxis.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectHorizontalAxis/pt-br + ## Description Selects the horizontal axis of a sketch. @@ -23,4 +25,7 @@ Selects the horizontal axis of a sketch. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectHorizontalAxis/pt-br diff --git a/wiki/translations/pt-br/Sketcher_SelectOrigin.md b/wiki/translations/pt-br/Sketcher_SelectOrigin.md index 36d5613175..cc5550468d 100644 --- a/wiki/translations/pt-br/Sketcher_SelectOrigin.md +++ b/wiki/translations/pt-br/Sketcher_SelectOrigin.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectOrigin/pt-br + ## Description Selects the origin of a sketch. @@ -23,4 +25,7 @@ Selects the origin of a sketch. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectOrigin/pt-br diff --git a/wiki/translations/pt-br/Sketcher_SelectRedundantConstraints.md b/wiki/translations/pt-br/Sketcher_SelectRedundantConstraints.md index d945de0fde..1c458d5eab 100644 --- a/wiki/translations/pt-br/Sketcher_SelectRedundantConstraints.md +++ b/wiki/translations/pt-br/Sketcher_SelectRedundantConstraints.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectRedundantConstraints/pt-br + ## Description Selects the redundant constraints of a sketch. @@ -23,4 +25,7 @@ Selects the redundant constraints of a sketch. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectRedundantConstraints/pt-br diff --git a/wiki/translations/pt-br/Sketcher_SelectVerticalAxis.md b/wiki/translations/pt-br/Sketcher_SelectVerticalAxis.md index 7277d3f8ba..c6a5650fc5 100644 --- a/wiki/translations/pt-br/Sketcher_SelectVerticalAxis.md +++ b/wiki/translations/pt-br/Sketcher_SelectVerticalAxis.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher SelectVerticalAxis/pt-br + ## Description Selects the vertical axis of a sketch. @@ -23,4 +25,7 @@ Selects the vertical axis of a sketch. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectVerticalAxis/pt-br diff --git a/wiki/translations/pt-br/Sketcher_Split.md b/wiki/translations/pt-br/Sketcher_Split.md index c1124747a1..f0df32f844 100644 --- a/wiki/translations/pt-br/Sketcher_Split.md +++ b/wiki/translations/pt-br/Sketcher_Split.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Trimming](Sketcher_Trimming.md) --- +# Sketcher Split/pt-br + ## Description This tool allows to divide an edge into two identical ones, while most of the constraints are duplicated, so both parts remain constrained apart from split point position. For a special case of a circle, this is converted to an loose ends arc with existing circle constraints being transferred to the new arc. @@ -44,4 +46,7 @@ This tool allows to divide an edge into two identical ones, while most of the co {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Split/pt-br diff --git a/wiki/translations/pt-br/Sketcher_StopOperation.md b/wiki/translations/pt-br/Sketcher_StopOperation.md index 29eddbf4ca..cfdca7b448 100644 --- a/wiki/translations/pt-br/Sketcher_StopOperation.md +++ b/wiki/translations/pt-br/Sketcher_StopOperation.md @@ -5,6 +5,8 @@ MenuLocation:Sketch → Stop operation --- +# Sketcher StopOperation/pt-br + ## Description @@ -24,4 +26,7 @@ This is similar to pressing the **Esc** key. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher StopOperation/pt-br diff --git a/wiki/translations/pt-br/Sketcher_SwitchVirtualSpace.md b/wiki/translations/pt-br/Sketcher_SwitchVirtualSpace.md index 6e52cd0ffc..57cd65cbf7 100644 --- a/wiki/translations/pt-br/Sketcher_SwitchVirtualSpace.md +++ b/wiki/translations/pt-br/Sketcher_SwitchVirtualSpace.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Sketcher SwitchVirtualSpace/pt-br + ## Description The FreeCAD Sketcher has two virtual spaces on which constraints can be set. Usually all constraints gets set on virtual space one. You can move some constraints to virtual space two. This can help to inspect only on a few constraints at a time. @@ -33,4 +35,7 @@ if you decide to set constraints on the second virtual space, don\'t forget abou {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SwitchVirtualSpace/pt-br diff --git a/wiki/translations/pt-br/Sketcher_Symmetry.md b/wiki/translations/pt-br/Sketcher_Symmetry.md index 1207f78f5f..df441fca23 100644 --- a/wiki/translations/pt-br/Sketcher_Symmetry.md +++ b/wiki/translations/pt-br/Sketcher_Symmetry.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher MirrorSketch](Sketcher_MirrorSketch.md) --- +# Sketcher Symmetry/pt-br + ## Description Mirrors sketcher geometry in reference to a chosen line or sketch axis. @@ -25,4 +27,7 @@ Note that no extra symmetry constraint will be added. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Symmetry/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ToggleActiveConstraint.md b/wiki/translations/pt-br/Sketcher_ToggleActiveConstraint.md index 4d327a96b3..dcbeadf1b6 100644 --- a/wiki/translations/pt-br/Sketcher_ToggleActiveConstraint.md +++ b/wiki/translations/pt-br/Sketcher_ToggleActiveConstraint.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Sketcher ToggleActiveConstraint/pt-br + ## Description @@ -61,4 +63,7 @@ sketch.toggleActive(3) {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleActiveConstraint/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ToggleConstruction.md b/wiki/translations/pt-br/Sketcher_ToggleConstruction.md index 8f455ab7f5..26406e265b 100644 --- a/wiki/translations/pt-br/Sketcher_ToggleConstruction.md +++ b/wiki/translations/pt-br/Sketcher_ToggleConstruction.md @@ -7,6 +7,8 @@ MenuLocation:Sketch → Geometrias do esboço → Ativa/desativa a geometria de construção --- +# Sketcher ToggleConstruction/pt-br + @@ -51,4 +53,7 @@ and once you ** [lea {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleConstruction/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ToggleDrivingConstraint.md b/wiki/translations/pt-br/Sketcher_ToggleDrivingConstraint.md index 4599fba9e3..d0df6f9e2a 100644 --- a/wiki/translations/pt-br/Sketcher_ToggleDrivingConstraint.md +++ b/wiki/translations/pt-br/Sketcher_ToggleDrivingConstraint.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Toggle Construction](Sketcher_ToggleConstruction.md) --- +# Sketcher ToggleDrivingConstraint/pt-br + ## Description The ** [Toggle driving constraint](Sketcher_ToggleDrivingConstraint.md)** tool turns dimensional constraints (Lock, Horizontal/Vertical distance, Length, Radius and Angle) into reference mode, and back. The icons in the toolbar turn blue, and rather than dimensional constraints, reference dimensions are created. Reference dimensions do not constrain the sketch. It can be useful to create reference dimensions in a sketch as a way to check on measurements; when given a name, they can also be used to drive constraints in another sketch through [expressions](Expressions.md). @@ -28,4 +30,7 @@ The ** [ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleDrivingConstraint/pt-br diff --git a/wiki/translations/pt-br/Sketcher_Trimming.md b/wiki/translations/pt-br/Sketcher_Trimming.md index a5ef916692..c605b795b5 100644 --- a/wiki/translations/pt-br/Sketcher_Trimming.md +++ b/wiki/translations/pt-br/Sketcher_Trimming.md @@ -1,3 +1,4 @@ +# Sketcher Trimming/pt-br --- - GuiCommand:/pt-br Name:Sketcher Trimming Name/pt-br:Sketcher Trimming Workbenches:[PartDesign](Sketcher_Workbench/pt-br___Sketcher]],_[[PartDesign_Workbench/pt-br.md)|Shortcut:T MenuLocation:Sketch → Sketcher geometries → Trim edge--- @@ -27,4 +28,7 @@ This tool trims an edge to the nearest overlapping edge. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Trimming/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ValidateSketch.md b/wiki/translations/pt-br/Sketcher_ValidateSketch.md index 5a14dc6658..e407537e4c 100644 --- a/wiki/translations/pt-br/Sketcher_ValidateSketch.md +++ b/wiki/translations/pt-br/Sketcher_ValidateSketch.md @@ -7,6 +7,8 @@ MenuLocation:Sketch / Part Design → Validate sketch --- +# Sketcher ValidateSketch/pt-br + @@ -81,4 +83,7 @@ The locking mechanism typically works well and this tool should not be needed. * {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ValidateSketch/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ViewSection.md b/wiki/translations/pt-br/Sketcher_ViewSection.md index 65c2e6548b..4aa4d73ec9 100644 --- a/wiki/translations/pt-br/Sketcher_ViewSection.md +++ b/wiki/translations/pt-br/Sketcher_ViewSection.md @@ -6,6 +6,8 @@ Version:0.18 --- +# Sketcher ViewSection/pt-br + ## Description The **View section** tool creates a section plane that temporarily hides any matter in front of the sketch plane. @@ -26,4 +28,7 @@ Several ways to invoke this command: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSection/pt-br diff --git a/wiki/translations/pt-br/Sketcher_ViewSketch.md b/wiki/translations/pt-br/Sketcher_ViewSketch.md index 997f476799..14588c3d61 100644 --- a/wiki/translations/pt-br/Sketcher_ViewSketch.md +++ b/wiki/translations/pt-br/Sketcher_ViewSketch.md @@ -1,3 +1,4 @@ +# Sketcher ViewSketch/pt-br --- - GuiCommand:/pt-br Name:Sketcher ViewSketch Name/pt-br:Sketcher ViewSketch Workbenches:[PartDesign](Sketcher_Workbench/pt-br___Sketcher]],_[[PartDesign_Workbench/pt-br.md)|MenuLocation:Sketch → View sketch--- @@ -21,4 +22,7 @@ While in sketch edit mode, either {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSketch/pt-br diff --git a/wiki/translations/pt-br/Sketcher_Workbench.md b/wiki/translations/pt-br/Sketcher_Workbench.md index 57022f2a41..fbfe881d55 100644 --- a/wiki/translations/pt-br/Sketcher_Workbench.md +++ b/wiki/translations/pt-br/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/pt-br - - - - - -Ícone da Sketcher workbench +# Ícone da Sketcher workbench Sketcher Workbench/pt-br {{TOCright}} @@ -507,3 +501,6 @@ A página [Sketcher scripting](Sketcher_scripting/pt-br.md) contém exemplos de }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/pt-br diff --git a/wiki/translations/pt-br/Sketcher_helper_constraint.md b/wiki/translations/pt-br/Sketcher_helper_constraint.md index 53e4fcb2cc..3eee6af886 100644 --- a/wiki/translations/pt-br/Sketcher_helper_constraint.md +++ b/wiki/translations/pt-br/Sketcher_helper_constraint.md @@ -1,6 +1,4 @@ # Sketcher helper constraint/pt-br - - ## Overview Example of a helper constraint (Constraint5 - point on circle) for a tangent constraint (Constraint6; in tangent-via-point mode). Only one helper constraint is used in this case, since the point of tangency is the endpoint of ellipse\'s major diameter, which inherently lies on the ellipse. @@ -39,4 +37,7 @@ Helper constraints were introduced in v0.15.4387 {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher helper constraint/pt-br diff --git a/wiki/translations/pt-br/Sketcher_requirement_for_a_sketch.md b/wiki/translations/pt-br/Sketcher_requirement_for_a_sketch.md index ec8e00229b..797c2f6eee 100644 --- a/wiki/translations/pt-br/Sketcher_requirement_for_a_sketch.md +++ b/wiki/translations/pt-br/Sketcher_requirement_for_a_sketch.md @@ -1,7 +1,4 @@ # Sketcher requirement for a sketch/pt-br - - - {{TutorialInfo |Topic=Sketch |Level=Beginner @@ -44,4 +41,7 @@ If you accidentally create an \"overmodulation\", a warning appears in the combo {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher requirement for a sketch/pt-br diff --git a/wiki/translations/pt-br/Sketcher_scripting.md b/wiki/translations/pt-br/Sketcher_scripting.md index 31dc4f2b9a..b4eb9a4749 100644 --- a/wiki/translations/pt-br/Sketcher_scripting.md +++ b/wiki/translations/pt-br/Sketcher_scripting.md @@ -1,5 +1,5 @@ # Sketcher scripting/pt-br - {{TOCright}} +{{TOCright}} ## Creating a constraint using Python @@ -200,4 +200,7 @@ The command `Sketch.addConstraint(Sketcher.Constraint('Coincident',0,2,2,2))` yi {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher scripting/pt-br diff --git a/wiki/translations/pt-br/Source_code_management.md b/wiki/translations/pt-br/Source_code_management.md index 4f9c550767..5744c89fad 100644 --- a/wiki/translations/pt-br/Source_code_management.md +++ b/wiki/translations/pt-br/Source_code_management.md @@ -1,5 +1,5 @@ # Source code management/pt-br - {{TOCright}} +{{TOCright}} ## Introdução @@ -964,3 +964,6 @@ Head to the development section of the [FreeCAD forum](https://forum.freecadweb. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source code management/pt-br diff --git a/wiki/translations/pt-br/Source_documentation.md b/wiki/translations/pt-br/Source_documentation.md index ef08e35af6..b0dd19d469 100644 --- a/wiki/translations/pt-br/Source_documentation.md +++ b/wiki/translations/pt-br/Source_documentation.md @@ -1,10 +1,4 @@ # Source documentation/pt-br - - - - - - {{TOCright}} ## Overview @@ -131,3 +125,6 @@ void removeTaskWatcher(void); [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source documentation/pt-br diff --git a/wiki/translations/pt-br/Splash_screen.md b/wiki/translations/pt-br/Splash_screen.md index 0dcb3ddca6..7ed05b7d49 100644 --- a/wiki/translations/pt-br/Splash_screen.md +++ b/wiki/translations/pt-br/Splash_screen.md @@ -1,4 +1,7 @@ # Splash screen/pt-br - A **tela de splash** é uma imagem que aparece durante a inicialização do FreeCAD. Você pode desabilitar a tela de splash no menu Preferências do FreeCAD removendo a opção \"Mostrar a tela de splash ao iniciar\". +A **tela de splash** é uma imagem que aparece durante a inicialização do FreeCAD. Você pode desabilitar a tela de splash no menu Preferências do FreeCAD removendo a opção \"Mostrar a tela de splash ao iniciar\". [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Splash screen/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_AlignBottom.md b/wiki/translations/pt-br/Spreadsheet_AlignBottom.md index 8b8e17b6eb..9791b5dbe5 100644 --- a/wiki/translations/pt-br/Spreadsheet_AlignBottom.md +++ b/wiki/translations/pt-br/Spreadsheet_AlignBottom.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet AlignBottom/pt-br + ## Description The ** [Spreadsheet AlignBottom](Spreadsheet_AlignBottom.md)** tool makes the text inside the cell align to the bottom of the cell. @@ -22,4 +24,7 @@ The ** [Spreadshe {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignBottom/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_AlignCenter.md b/wiki/translations/pt-br/Spreadsheet_AlignCenter.md index 37e3040b83..2ced716c6a 100644 --- a/wiki/translations/pt-br/Spreadsheet_AlignCenter.md +++ b/wiki/translations/pt-br/Spreadsheet_AlignCenter.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet AlignCenter/pt-br + ## Description The ** [Spreadsheet AlignCenter](Spreadsheet_AlignCenter.md)** tool makes the text inside the cell align to the center. @@ -22,4 +24,7 @@ The ** [Spreadshe {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignCenter/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_AlignLeft.md b/wiki/translations/pt-br/Spreadsheet_AlignLeft.md index 6a0d310aec..fd0bc630f6 100644 --- a/wiki/translations/pt-br/Spreadsheet_AlignLeft.md +++ b/wiki/translations/pt-br/Spreadsheet_AlignLeft.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet AlignLeft/pt-br + ## Description The ** [Spreadsheet AlignLeft](Spreadsheet_AlignLeft.md)** tool makes the text inside the cell align to the left. @@ -22,4 +24,7 @@ The ** [Spreadsheet {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignLeft/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_AlignRight.md b/wiki/translations/pt-br/Spreadsheet_AlignRight.md index 1251a63918..f5e91b4bb6 100644 --- a/wiki/translations/pt-br/Spreadsheet_AlignRight.md +++ b/wiki/translations/pt-br/Spreadsheet_AlignRight.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet AlignRight/pt-br + ## Description The ** [Spreadsheet AlignRight](Spreadsheet_AlignRight.md)** tool makes the text inside the cell align to the right. @@ -22,4 +24,7 @@ The ** [Spreadshee {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignRight/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_AlignTop.md b/wiki/translations/pt-br/Spreadsheet_AlignTop.md index 875fa6b127..7e7a4d83b3 100644 --- a/wiki/translations/pt-br/Spreadsheet_AlignTop.md +++ b/wiki/translations/pt-br/Spreadsheet_AlignTop.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet AlignTop/pt-br + ## Description The ** [Spreadsheet AlignTop](Spreadsheet_AlignTop.md)** tool makes the text inside the cell align to the top of the cell. @@ -22,4 +24,7 @@ The ** [Spreadsheet {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignTop/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_AlignVCenter.md b/wiki/translations/pt-br/Spreadsheet_AlignVCenter.md index 19e3a9df37..e94ced47fd 100644 --- a/wiki/translations/pt-br/Spreadsheet_AlignVCenter.md +++ b/wiki/translations/pt-br/Spreadsheet_AlignVCenter.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet AlignVCenter/pt-br + ## Description The ** [Spreadsheet AlignVCenter](Spreadsheet_AlignVCenter.md)** tool makes the text inside the cell align vertically to the center of the cell. @@ -22,4 +24,7 @@ The ** [Spreadsh {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignVCenter/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_CreateSheet.md b/wiki/translations/pt-br/Spreadsheet_CreateSheet.md index 626f17a63c..5cdd7079fc 100644 --- a/wiki/translations/pt-br/Spreadsheet_CreateSheet.md +++ b/wiki/translations/pt-br/Spreadsheet_CreateSheet.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet CreateSheet/pt-br + ## Description The ** [Spreadsheet CreateSheet](Spreadsheet_CreateSheet.md)** tool adds a new spreadsheet object to the active document, which will be opened in a new tab in the [main view area](main_view_area.md). @@ -22,4 +24,7 @@ The ** [Spreadshe {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet CreateSheet/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_Export.md b/wiki/translations/pt-br/Spreadsheet_Export.md index b4400f53af..fc60f69577 100644 --- a/wiki/translations/pt-br/Spreadsheet_Export.md +++ b/wiki/translations/pt-br/Spreadsheet_Export.md @@ -7,6 +7,8 @@ SeeAlso:[Spreadsheet Import](Spreadsheet_Import.md) --- +# Spreadsheet Export/pt-br + ## Description The ** [Spreadsheet Export](Spreadsheet_Export.md)** tool allows you to export a spreadsheet as a tab-separated values file (loosely denoted as CSV), which subsequently can be opened and used in other applications. @@ -22,4 +24,7 @@ The ** [Spreadsheet Ex {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Export/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_Import.md b/wiki/translations/pt-br/Spreadsheet_Import.md index 3e4ac7bdb0..86b904a987 100644 --- a/wiki/translations/pt-br/Spreadsheet_Import.md +++ b/wiki/translations/pt-br/Spreadsheet_Import.md @@ -7,6 +7,8 @@ SeeAlso:[Spreadsheet Export](Spreadsheet_Export.md) --- +# Spreadsheet Import/pt-br + ## Description The ** [Spreadsheet Import](Spreadsheet_Import.md)** tool allows you to import a tab-separated values file (loosely denoted as CSV) into a spreadsheet so that it can be modified and used with [expressions](expressions.md). @@ -26,4 +28,7 @@ The ** [Spreadsheet Im {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Import/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_MergeCells.md b/wiki/translations/pt-br/Spreadsheet_MergeCells.md index b9fd1b3d3a..670cb6abf2 100644 --- a/wiki/translations/pt-br/Spreadsheet_MergeCells.md +++ b/wiki/translations/pt-br/Spreadsheet_MergeCells.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet MergeCells/pt-br + ## Description The ** [Spreadsheet MergeCells](Spreadsheet_MergeCells.md)** tool merges at least two selected cells in an existing spreadsheet in the active document. @@ -22,4 +24,7 @@ The ** [Spreadshee {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet MergeCells/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_Module.md b/wiki/translations/pt-br/Spreadsheet_Module.md index 7311a11071..e8c400bd99 100644 --- a/wiki/translations/pt-br/Spreadsheet_Module.md +++ b/wiki/translations/pt-br/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module/pt-br 1. REDIRECT [Spreadsheet Workbench/pt-br](Spreadsheet_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_SetAlias.md b/wiki/translations/pt-br/Spreadsheet_SetAlias.md index 7b71fc10a2..c070e405c9 100644 --- a/wiki/translations/pt-br/Spreadsheet_SetAlias.md +++ b/wiki/translations/pt-br/Spreadsheet_SetAlias.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet SetAlias/pt-br + ## Description The ** [Spreadsheet SetAlias](Spreadsheet_SetAlias.md)** tool opens a dialog to set up an alias for a cell. Instead of using the exact cell name like A2, B3, or C4, a custom name can be used. @@ -23,4 +25,7 @@ The ** [Spreadsheet {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet SetAlias/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_SplitCell.md b/wiki/translations/pt-br/Spreadsheet_SplitCell.md index 335a85b1d9..52bf0c1a86 100644 --- a/wiki/translations/pt-br/Spreadsheet_SplitCell.md +++ b/wiki/translations/pt-br/Spreadsheet_SplitCell.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet SplitCell/pt-br + ## Description The ** [Spreadsheet SplitCell](Spreadsheet_SplitCell.md)** tool splits apart a cell that was merged into one in an existing spreadsheet in the active document. @@ -22,4 +24,7 @@ The ** [Spreadsheet {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet SplitCell/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_StyleBold.md b/wiki/translations/pt-br/Spreadsheet_StyleBold.md index 6d5afae755..56d12cbc2b 100644 --- a/wiki/translations/pt-br/Spreadsheet_StyleBold.md +++ b/wiki/translations/pt-br/Spreadsheet_StyleBold.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet StyleBold/pt-br + ## Description The ** [Spreadsheet StyleBold](Spreadsheet_StyleBold.md)** tool makes the text inside the cell adopt **bold** style. @@ -22,4 +24,7 @@ The ** [Spreadsheet {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleBold/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_StyleItalic.md b/wiki/translations/pt-br/Spreadsheet_StyleItalic.md index 020cabd540..15d55d9dfa 100644 --- a/wiki/translations/pt-br/Spreadsheet_StyleItalic.md +++ b/wiki/translations/pt-br/Spreadsheet_StyleItalic.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet StyleItalic/pt-br + ## Description The ** [Spreadsheet StyleItalic](Spreadsheet_StyleItalic.md)** tool makes the text inside the cell adopt *italic* style. @@ -22,4 +24,7 @@ The ** [Spreadshe {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleItalic/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_StyleUnderline.md b/wiki/translations/pt-br/Spreadsheet_StyleUnderline.md index 02094571a8..a15ae1cae9 100644 --- a/wiki/translations/pt-br/Spreadsheet_StyleUnderline.md +++ b/wiki/translations/pt-br/Spreadsheet_StyleUnderline.md @@ -6,6 +6,8 @@ Version:0.17 --- +# Spreadsheet StyleUnderline/pt-br + ## Description The underline style. @@ -22,4 +24,7 @@ The underline style. {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleUnderline/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_Workbench.md b/wiki/translations/pt-br/Spreadsheet_Workbench.md index 3aff116687..6a9839bb5e 100644 --- a/wiki/translations/pt-br/Spreadsheet_Workbench.md +++ b/wiki/translations/pt-br/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/pt-br - {{Page_in_progress}} @@ -241,3 +240,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/pt-br diff --git a/wiki/translations/pt-br/Spreadsheet_legacy.md b/wiki/translations/pt-br/Spreadsheet_legacy.md index a86f2a9e34..62dbe7fc96 100644 --- a/wiki/translations/pt-br/Spreadsheet_legacy.md +++ b/wiki/translations/pt-br/Spreadsheet_legacy.md @@ -1,2 +1,5 @@ # Spreadsheet legacy/pt-br 1. REDIRECT [Spreadsheet\_Workbench/pt-br](Spreadsheet_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet legacy/pt-br diff --git a/wiki/translations/pt-br/Standard_Menu.md b/wiki/translations/pt-br/Standard_Menu.md index 0f17306b01..1b12067168 100644 --- a/wiki/translations/pt-br/Standard_Menu.md +++ b/wiki/translations/pt-br/Standard_Menu.md @@ -1,5 +1,5 @@ # Standard Menu/pt-br - {{TOCright}} +{{TOCright}} ## Introdução @@ -44,4 +44,7 @@ O menu padrão é composto por 7 submenus: {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Standard Menu/pt-br diff --git a/wiki/translations/pt-br/Start_Workbench.md b/wiki/translations/pt-br/Start_Workbench.md index a354d9b5f3..17790a117d 100644 --- a/wiki/translations/pt-br/Start_Workbench.md +++ b/wiki/translations/pt-br/Start_Workbench.md @@ -1,7 +1,4 @@ # Start Workbench/pt-br - - -
@@ -41,3 +38,6 @@ From this interface you can see useful information and jump to recently opened f [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench/pt-br diff --git a/wiki/translations/pt-br/Start_up_and_Configuration.md b/wiki/translations/pt-br/Start_up_and_Configuration.md index 38ca7cdc92..f672afec74 100644 --- a/wiki/translations/pt-br/Start_up_and_Configuration.md +++ b/wiki/translations/pt-br/Start_up_and_Configuration.md @@ -1,10 +1,4 @@ # Start up and Configuration/pt-br - - - - - - {{TOCright}} ## Overview @@ -417,3 +411,6 @@ Now double-click the batch file to start FreeCAD. ([see](https://forum.freecadwe [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start up and Configuration/pt-br diff --git a/wiki/translations/pt-br/Status_bar.md b/wiki/translations/pt-br/Status_bar.md index a13da17ea8..773f48220a 100644 --- a/wiki/translations/pt-br/Status_bar.md +++ b/wiki/translations/pt-br/Status_bar.md @@ -1,6 +1,4 @@ # Status bar/pt-br - - ## Introdução The [status bar](status_bar.md) is a simple ribbon that appears at the bottom of the FreeCAD [interface](interface.md). @@ -20,4 +18,7 @@ The status bar also shows the last pre-selected object (any object under the poi {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Status bar/pt-br diff --git a/wiki/translations/pt-br/Std_AddonMgr.md b/wiki/translations/pt-br/Std_AddonMgr.md index f523450c4b..e9ca892230 100644 --- a/wiki/translations/pt-br/Std_AddonMgr.md +++ b/wiki/translations/pt-br/Std_AddonMgr.md @@ -9,6 +9,8 @@ Version:0.17 --- +# Std AddonMgr/pt-br +
@@ -82,4 +84,7 @@ If you develop a workbench in C++, it cannot be run directly by users and must b {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std AddonMgr/pt-br diff --git a/wiki/translations/pt-br/Std_Base.md b/wiki/translations/pt-br/Std_Base.md index deb9d35857..6186a3a819 100644 --- a/wiki/translations/pt-br/Std_Base.md +++ b/wiki/translations/pt-br/Std_Base.md @@ -1,7 +1,4 @@ # Std Base/pt-br - - -
@@ -79,3 +76,6 @@ O menu padrão é composto de 7 sub-menus. Cada sub-menu tem uma página dedicad }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Base/pt-br diff --git a/wiki/translations/pt-br/Std_BoxElementSelection.md b/wiki/translations/pt-br/Std_BoxElementSelection.md index 48df722e8f..aeffec9f8b 100644 --- a/wiki/translations/pt-br/Std_BoxElementSelection.md +++ b/wiki/translations/pt-br/Std_BoxElementSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std BoxSelection](Std_BoxSelection.md), [Std SelectAll](Std_SelectAll.md) --- +# Std BoxElementSelection/pt-br + ## Description The **Std BoxElementSelection** command selects faces from a user defined rectangular area, a box, in the [3D view](3D_view.md). @@ -30,4 +32,7 @@ The **Std BoxElementSelection** command selects faces from a user defined rectan {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std BoxElementSelection/pt-br diff --git a/wiki/translations/pt-br/Std_BoxSelection.md b/wiki/translations/pt-br/Std_BoxSelection.md index 0087e39458..c024f4f985 100644 --- a/wiki/translations/pt-br/Std_BoxSelection.md +++ b/wiki/translations/pt-br/Std_BoxSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std BoxElementSelection](Std_BoxElementSelection.md), [Std SelectAll](Std_SelectAll.md) --- +# Std BoxSelection/pt-br + ## Description The **Std BoxSelection** command selects objects from a user defined rectangular area, a box, in the [3D view](3D_view.md). @@ -35,4 +37,7 @@ The **Std BoxSelection** command selects objects from a user defined rectangular {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std BoxSelection/pt-br diff --git a/wiki/translations/pt-br/Std_DemoMode.md b/wiki/translations/pt-br/Std_DemoMode.md index 731c1b0850..9f3ebd167a 100644 --- a/wiki/translations/pt-br/Std_DemoMode.md +++ b/wiki/translations/pt-br/Std_DemoMode.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std DemoMode/pt-br + ## Descrição The **Std DemoMode** command will continuously rotate the camera in a [3D view](3D_view.md). @@ -35,4 +37,7 @@ The **Std DemoMode** command will continuously rotate the camera in a [3D view]( {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DemoMode/pt-br diff --git a/wiki/translations/pt-br/Std_DependencyGraph.md b/wiki/translations/pt-br/Std_DependencyGraph.md index bba54a8662..2bae79d065 100644 --- a/wiki/translations/pt-br/Std_DependencyGraph.md +++ b/wiki/translations/pt-br/Std_DependencyGraph.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std DependencyGraph/pt-br + ## Descrição The **Std DependencyGraph** command displays the dependencies between objects in the active document in a \'dependency graph\'. As opposed to the [Tree view](Tree_view.md), objects are listed in reverse chronological order, with the first created object at the bottom. @@ -93,3 +95,6 @@ You can save a dependency graph: }} [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > Std DependencyGraph/pt-br diff --git a/wiki/translations/pt-br/Std_Edit_Menu.md b/wiki/translations/pt-br/Std_Edit_Menu.md index 3329e53f5f..2996a20005 100644 --- a/wiki/translations/pt-br/Std_Edit_Menu.md +++ b/wiki/translations/pt-br/Std_Edit_Menu.md @@ -1,10 +1,4 @@ -# Std Edit Menu/pt-br - - - - - -Std Base icon +# Std Base icon Std Edit Menu/pt-br {{TOCright}} @@ -81,3 +75,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Edit Menu/pt-br diff --git a/wiki/translations/pt-br/Std_Export.md b/wiki/translations/pt-br/Std_Export.md index 4bf8afee08..b31a131e38 100644 --- a/wiki/translations/pt-br/Std_Export.md +++ b/wiki/translations/pt-br/Std_Export.md @@ -7,6 +7,8 @@ SeeAlso:[Std PrintPdf](Std_PrintPdf.md), [Import Export](Import_Export.md), [Import Export Preferences](Import_Export_Preferences.md) --- +# Std Export/pt-br + ## Description The **Std Export** command exports selected objects to a different file format. Many file formats are supported and for some formats multiple export options exist. See [Import Export](Import_Export.md) for more information. @@ -50,3 +52,6 @@ The **Std Export** command exports selected objects to a different file format. }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Export/pt-br diff --git a/wiki/translations/pt-br/Std_File_Menu.md b/wiki/translations/pt-br/Std_File_Menu.md index 4a53ad9d32..61f518d57a 100644 --- a/wiki/translations/pt-br/Std_File_Menu.md +++ b/wiki/translations/pt-br/Std_File_Menu.md @@ -1,10 +1,4 @@ -# Std File Menu/pt-br - - - - - -Std Base icon +# Std Base icon Std File Menu/pt-br {{TOCright}} @@ -82,3 +76,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std File Menu/pt-br diff --git a/wiki/translations/pt-br/Std_FreeCADForum.md b/wiki/translations/pt-br/Std_FreeCADForum.md index 8084268825..5ccb453cad 100644 --- a/wiki/translations/pt-br/Std_FreeCADForum.md +++ b/wiki/translations/pt-br/Std_FreeCADForum.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreeCADWebsite](Std_FreeCADWebsite.md), [Std FreeCADUserHub](Std_FreeCADUserHub.md), [Std FreeCADPowerUserHub](Std_FreeCADPowerUserHub.md), [Std FreeCADFAQ](Std_FreeCADFAQ.md) --- +# Std FreeCADForum/pt-br + ## Description The **Std FreeCADForum** command opens the FreeCAD forum website in the system\'s default Internet browser. The command requires a working Internet connection. @@ -22,4 +24,7 @@ Currently the command points to [](https://forum.f {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADForum/pt-br diff --git a/wiki/translations/pt-br/Std_FreeCADPowerUserHub.md b/wiki/translations/pt-br/Std_FreeCADPowerUserHub.md index 2baddd2dc6..c11e86ed32 100644 --- a/wiki/translations/pt-br/Std_FreeCADPowerUserHub.md +++ b/wiki/translations/pt-br/Std_FreeCADPowerUserHub.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreeCADWebsite](Std_FreeCADWebsite.md), [Std FreeCADUserHub](Std_FreeCADUserHub.md), [Std FreeCADForum](Std_FreeCADForum.md), [Std FreeCADFAQ](Std_FreeCADFAQ.md) --- +# Std FreeCADPowerUserHub/pt-br + ## Description The **Std FreeCADPowerUserHub** command opens the FreeCAD Power users documentation page in the system\'s default Internet browser. The command requires a working Internet connection. @@ -22,4 +24,7 @@ Currently the command points to [ Std FreeCADPowerUserHub/pt-br diff --git a/wiki/translations/pt-br/Std_Group.md b/wiki/translations/pt-br/Std_Group.md index 8627f5c80f..b50f17aff4 100644 --- a/wiki/translations/pt-br/Std_Group.md +++ b/wiki/translations/pt-br/Std_Group.md @@ -8,6 +8,8 @@ SeeAlso:[Std Part](Std_Part.md), [Draft SelectGroup](Draft_SelectGroup.md), [Draft AddToGroup](Draft_AddToGroup.md) --- +# Std Group/pt-br + ## Description [Std Group](Std_Group.md) (internally called [App DocumentObjectGroup](App_DocumentObjectGroup.md)) is a general purpose container that allows you to group different types of objects in the [tree view](tree_view.md), regardless of their data type. It is used as a simple folder to categorize and organize the objects in your model, in order to keep a logical structure. Std Groups may be nested inside other Std Groups. @@ -124,4 +126,7 @@ For example, a [FEM Analysis](FEM_Analysis.md) is an `App::DocumentObjectGroupPy {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Group/pt-br diff --git a/wiki/translations/pt-br/Std_Help_Menu.md b/wiki/translations/pt-br/Std_Help_Menu.md index 971fcc856a..0e9de5281a 100644 --- a/wiki/translations/pt-br/Std_Help_Menu.md +++ b/wiki/translations/pt-br/Std_Help_Menu.md @@ -1,10 +1,4 @@ -# Std Help Menu/pt-br - - - - - -Std Base icon +# Std Base icon Std Help Menu/pt-br {{TOCright}} @@ -64,3 +58,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Help Menu/pt-br diff --git a/wiki/translations/pt-br/Std_Import.md b/wiki/translations/pt-br/Std_Import.md index ee750a9975..149bc8b946 100644 --- a/wiki/translations/pt-br/Std_Import.md +++ b/wiki/translations/pt-br/Std_Import.md @@ -7,6 +7,8 @@ SeeAlso:[Std Open](Std_Open.md), [Import Export](Import_Export.md), [Import Export Preferences](Import_Export_Preferences.md) --- +# Std Import/pt-br + ## Description The **Std Import** command imports geometry from a different file format into the active document. Many file formats are supported and for some formats multiple import options exist. See [Import Export](Import_Export.md) for more information. @@ -45,3 +47,6 @@ The **Std Import** command imports geometry from a different file format into th }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Import/pt-br diff --git a/wiki/translations/pt-br/Std_InterfaceCustomization.md b/wiki/translations/pt-br/Std_InterfaceCustomization.md index 4e9445a942..396331ae6f 100644 --- a/wiki/translations/pt-br/Std_InterfaceCustomization.md +++ b/wiki/translations/pt-br/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/pt-br 1. REDIRECT [Interface\_Customization/pt-br](Interface_Customization/pt-br.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/pt-br diff --git a/wiki/translations/pt-br/Std_LinkImport.md b/wiki/translations/pt-br/Std_LinkImport.md index 3bd1a36c2d..40bd382537 100644 --- a/wiki/translations/pt-br/Std_LinkImport.md +++ b/wiki/translations/pt-br/Std_LinkImport.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkMake](Std_LinkMake.md), [Std LinkMakeRelative](Std_LinkMakeRelative.md), [Std LinkImportAll](Std_LinkImportAll.md) --- +# Std LinkImport/pt-br + ## Descrição @@ -37,4 +39,7 @@ A copy of the original ** [Std P {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkImport/pt-br diff --git a/wiki/translations/pt-br/Std_LinkImportAll.md b/wiki/translations/pt-br/Std_LinkImportAll.md index 700499358f..b0b51f12a9 100644 --- a/wiki/translations/pt-br/Std_LinkImportAll.md +++ b/wiki/translations/pt-br/Std_LinkImportAll.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkMake](Std_LinkMake.md), [Std LinkMakeRelative](Std_LinkMakeRelative.md), [Std LinkImport](Std_LinkImport.md) --- +# Std LinkImportAll/pt-br + ## Descrição @@ -32,4 +34,7 @@ This command essentially runs ** Std LinkMake/pt-br diff --git a/wiki/translations/pt-br/Std_LinkMakeRelative.md b/wiki/translations/pt-br/Std_LinkMakeRelative.md index c55bc04b86..046c828070 100644 --- a/wiki/translations/pt-br/Std_LinkMakeRelative.md +++ b/wiki/translations/pt-br/Std_LinkMakeRelative.md @@ -7,6 +7,8 @@ SeeAlso:[Std Part](Std_Part.md), [Std Group](Std_Group.md), [Std LinkMake](Std_LinkMake.md) --- +# Std LinkMakeRelative/pt-br + ## Descrição @@ -63,4 +65,7 @@ App.ActiveDocument.recompute() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkMakeRelative/pt-br diff --git a/wiki/translations/pt-br/Std_LinkReplace.md b/wiki/translations/pt-br/Std_LinkReplace.md index d79fc5ebe4..0d522f5c02 100644 --- a/wiki/translations/pt-br/Std_LinkReplace.md +++ b/wiki/translations/pt-br/Std_LinkReplace.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkMake](Std_LinkMake.md), [Std LinkMakeRelative](Std_LinkMakeRelative.md), [Std LinkUnlink](Std_LinkUnlink.md) --- +# Std LinkReplace/pt-br + ## Descrição @@ -48,4 +50,7 @@ This command creates a new +# Std Base icon Std Macro Menu/pt-br {{TOCright}} @@ -68,3 +62,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Macro Menu/pt-br diff --git a/wiki/translations/pt-br/Std_Part.md b/wiki/translations/pt-br/Std_Part.md index c52ae04910..d87769ade8 100644 --- a/wiki/translations/pt-br/Std_Part.md +++ b/wiki/translations/pt-br/Std_Part.md @@ -7,6 +7,8 @@ SeeAlso:[Std Group](Std_Group.md), [PartDesign Body](PartDesign_Body.md) --- +# Std Part/pt-br + ## Descrição @@ -270,4 +272,7 @@ App.ActiveDocument.addObject('Part::FeaturePython', 'Group', group.MyGroup(), gr {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Part/pt-br diff --git a/wiki/translations/pt-br/Std_PythonHelp.md b/wiki/translations/pt-br/Std_PythonHelp.md index 328eb641fb..f019c36c96 100644 --- a/wiki/translations/pt-br/Std_PythonHelp.md +++ b/wiki/translations/pt-br/Std_PythonHelp.md @@ -6,6 +6,8 @@ Veja também :[Std FreeCADPowerUserHub](Std_FreeCADPowerUserHub/pt-br.md) --- +# Std PythonHelp/pt-br + ## Descrição O comando *\'Std PythonHelp* inicia um servidor web que se comunica com o navegador de Internet padrão do sistema através de uma conexão local. O servidor web exibe informações sobre os módulos [Python](Python/pt-br.md) disponíveis, classes e funções do FreeCAD. As páginas necessárias são geradas automaticamente. @@ -23,4 +25,7 @@ O servidor web é baseado no módulo Python [pydoc](https://docs.python.org/3.8/ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PythonHelp/pt-br diff --git a/wiki/translations/pt-br/Std_SelBack.md b/wiki/translations/pt-br/Std_SelBack.md index 793b5dc5fd..09480c16ba 100644 --- a/wiki/translations/pt-br/Std_SelBack.md +++ b/wiki/translations/pt-br/Std_SelBack.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkSelectLinked](Std_LinkSelectLinked.md), [Std LinkSelectLinkedFinal](Std_LinkSelectLinkedFinal.md), [Std LinkSelectAllLinks](Std_LinkSelectAllLinks.md), [Std SelForward](Std_SelForward.md) --- +# Std SelBack/pt-br + ## Descrição The **Std SelBack** command restores the previous recorded [Tree view](Tree_view.md) selection. Note that selections are only recorded if [Tree RecordSelection mode](Std_TreeRecordSelection.md) is switched on. @@ -27,4 +29,7 @@ The **Std SelBack** command restores the previous recorded [Tree view](Tree_view {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelBack/pt-br diff --git a/wiki/translations/pt-br/Std_SelForward.md b/wiki/translations/pt-br/Std_SelForward.md index e88fe611aa..b2c3382d1e 100644 --- a/wiki/translations/pt-br/Std_SelForward.md +++ b/wiki/translations/pt-br/Std_SelForward.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkSelectLinked](Std_LinkSelectLinked.md), [Std LinkSelectLinkedFinal](Std_LinkSelectLinkedFinal.md), [Std LinkSelectAllLinks](Std_LinkSelectAllLinks.md), [Std SelBack](Std_SelBack.md) --- +# Std SelForward/pt-br + ## Descrição The **Std SelForward** command restores the next recorded [Tree view](Tree_view.md) selection. Note that selections are only recorded if [Tree RecordSelection mode](Std_TreeRecordSelection.md) is switched on. @@ -27,4 +29,7 @@ The **Std SelForward** command restores the next recorded [Tree view](Tree_view. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelForward/pt-br diff --git a/wiki/translations/pt-br/Std_SelectAll.md b/wiki/translations/pt-br/Std_SelectAll.md index b66ad2e227..2a94b56a53 100644 --- a/wiki/translations/pt-br/Std_SelectAll.md +++ b/wiki/translations/pt-br/Std_SelectAll.md @@ -6,6 +6,8 @@ SeeAlso:[Std BoxSelection](Std_BoxSelection.md), [Std BoxElementSelection](Std_BoxElementSelection.md) --- +# Std SelectAll/pt-br + ## Description The **Std SelectAll** command selects all objects in the [Tree view](Tree_view.md). @@ -24,4 +26,7 @@ The **Std SelectAll** command selects all objects in the [Tree view](Tree_view.m {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelectAll/pt-br diff --git a/wiki/translations/pt-br/Std_SetAppearance.md b/wiki/translations/pt-br/Std_SetAppearance.md index 73ce213436..1a1289b4ab 100644 --- a/wiki/translations/pt-br/Std_SetAppearance.md +++ b/wiki/translations/pt-br/Std_SetAppearance.md @@ -7,6 +7,8 @@ SeeAlso:[Part FaceColors](Part_FaceColors.md) --- +# Std SetAppearance/pt-br + ## Description The **Std SetAppearance** command shows the Display properties [task panel](Task_panel.md) for selected objects. @@ -53,4 +55,7 @@ The **Std SetAppearance** command shows the Display properties [task panel](Task {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SetAppearance/pt-br diff --git a/wiki/translations/pt-br/Std_Tools_Menu.md b/wiki/translations/pt-br/Std_Tools_Menu.md index d5a5365cc8..5d79761a5c 100644 --- a/wiki/translations/pt-br/Std_Tools_Menu.md +++ b/wiki/translations/pt-br/Std_Tools_Menu.md @@ -1,10 +1,4 @@ -# Std Tools Menu/pt-br - - - - - -Std Base icon +# Std Base icon Std Tools Menu/pt-br {{TOCright}} @@ -68,3 +62,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Tools Menu/pt-br diff --git a/wiki/translations/pt-br/Std_ViewFitSelection.md b/wiki/translations/pt-br/Std_ViewFitSelection.md index c134ca4ebe..8c168b6b44 100644 --- a/wiki/translations/pt-br/Std_ViewFitSelection.md +++ b/wiki/translations/pt-br/Std_ViewFitSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewFitAll](Std_ViewFitAll.md) --- +# Std ViewFitSelection/pt-br + ## Descrição The **Std ViewFitSelection** command zooms and pans the camera so that all selected objects fit inside the active [3D view](3D_view.md). @@ -42,4 +44,7 @@ FreeCADGui.SendMsgToActiveView('ViewSelection') {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFitSelection/pt-br diff --git a/wiki/translations/pt-br/Std_View_Menu.md b/wiki/translations/pt-br/Std_View_Menu.md index a6f48ad039..d086e2e873 100644 --- a/wiki/translations/pt-br/Std_View_Menu.md +++ b/wiki/translations/pt-br/Std_View_Menu.md @@ -1,10 +1,4 @@ -# Std View Menu/pt-br - - - - - -Std Base icon +# Std Base icon Std View Menu/pt-br {{TOCright}} @@ -165,3 +159,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std View Menu/pt-br diff --git a/wiki/translations/pt-br/Std_Windows_Menu.md b/wiki/translations/pt-br/Std_Windows_Menu.md index 4b2c7e0735..768005d221 100644 --- a/wiki/translations/pt-br/Std_Windows_Menu.md +++ b/wiki/translations/pt-br/Std_Windows_Menu.md @@ -1,10 +1,4 @@ -# Std Windows Menu/pt-br - - - - - -Std Base icon +# Std Base icon Std Windows Menu/pt-br {{TOCright}} @@ -58,3 +52,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Windows Menu/pt-br diff --git a/wiki/translations/pt-br/Std_Workbench.md b/wiki/translations/pt-br/Std_Workbench.md index 2f571cba62..0c38c8647d 100644 --- a/wiki/translations/pt-br/Std_Workbench.md +++ b/wiki/translations/pt-br/Std_Workbench.md @@ -6,6 +6,8 @@ Workbenches:[Workbenches](Workbenches.md) --- +# Std Workbench/pt-br + ## Descrição The **Std Workbench** command activates a selected [workbench](Workbenches.md) including its graphical user interface (GUI). @@ -49,4 +51,7 @@ FreeCADGui.activateWorkbench("PartDesignWorkbench") {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Std Workbench/pt-br diff --git a/wiki/translations/pt-br/Surface_Module.md b/wiki/translations/pt-br/Surface_Module.md index 7a1a8d696d..f565e7ae36 100644 --- a/wiki/translations/pt-br/Surface_Module.md +++ b/wiki/translations/pt-br/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/pt-br 1. REDIRECT [Surface\_Workbench/pt-br](Surface_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/pt-br diff --git a/wiki/translations/pt-br/Surface_Workbench.md b/wiki/translations/pt-br/Surface_Workbench.md index 114dcb032c..1d708d020f 100644 --- a/wiki/translations/pt-br/Surface_Workbench.md +++ b/wiki/translations/pt-br/Surface_Workbench.md @@ -1,7 +1,4 @@ # Surface Workbench/pt-br - - -
@@ -70,3 +67,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/pt-br diff --git a/wiki/translations/pt-br/Task_panel.md b/wiki/translations/pt-br/Task_panel.md index d8533ba30d..d1a73ac1e6 100644 --- a/wiki/translations/pt-br/Task_panel.md +++ b/wiki/translations/pt-br/Task_panel.md @@ -1,5 +1,5 @@ # Task panel/pt-br - {{TOCright}} +{{TOCright}} ## Introdução @@ -54,4 +54,7 @@ Gui::Control().closeDialog(); {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Task panel/pt-br diff --git a/wiki/translations/pt-br/TechDraw_Module.md b/wiki/translations/pt-br/TechDraw_Module.md index 1254b81ac9..01c7520095 100644 --- a/wiki/translations/pt-br/TechDraw_Module.md +++ b/wiki/translations/pt-br/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/pt-br 1. REDIRECT [TechDraw\_Workbench/pt-br](TechDraw_Workbench/pt-br.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/pt-br diff --git a/wiki/translations/pt-br/TechDraw_SpreadsheetView.md b/wiki/translations/pt-br/TechDraw_SpreadsheetView.md index 2b71969f8d..e461ec9d44 100644 --- a/wiki/translations/pt-br/TechDraw_SpreadsheetView.md +++ b/wiki/translations/pt-br/TechDraw_SpreadsheetView.md @@ -5,6 +5,8 @@ Workbenches:[TechDraw](TechDraw_Workbench.md), [Spreadsheet](Spreadsheet_Workbench.md) --- +# TechDraw SpreadsheetView/pt-br + ## Description This tool allows you to place a view of a selected [spreadsheet](Spreadsheet_Workbench.md) on a [Page](TechDraw_Workbench.md). @@ -38,4 +40,7 @@ This tool allows you to place a view of a selected [spreadsheet](Spreadsheet_Wor {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SpreadsheetView/pt-br diff --git a/wiki/translations/pt-br/TechDraw_Workbench.md b/wiki/translations/pt-br/TechDraw_Workbench.md index 5d6baa67bf..b9b574ab21 100644 --- a/wiki/translations/pt-br/TechDraw_Workbench.md +++ b/wiki/translations/pt-br/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/pt-br - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/pt-br ## Introdução @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/pt-br diff --git a/wiki/translations/pt-br/Testing.md b/wiki/translations/pt-br/Testing.md index 02233e0647..9ead618df9 100644 --- a/wiki/translations/pt-br/Testing.md +++ b/wiki/translations/pt-br/Testing.md @@ -1,10 +1,4 @@ -# Testing/pt-br - - - - - -Test workbench icon +# Test workbench icon Testing/pt-br {{TOCright}} @@ -162,3 +156,6 @@ r.run(suite) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Test Framework](Category:Test_Framework.md) [Category:Workbenches](Category:Workbenches.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Testing/pt-br diff --git a/wiki/translations/pt-br/The_FreeCAD_source_code.md b/wiki/translations/pt-br/The_FreeCAD_source_code.md index 26ff78ed77..e16a64f3bb 100644 --- a/wiki/translations/pt-br/The_FreeCAD_source_code.md +++ b/wiki/translations/pt-br/The_FreeCAD_source_code.md @@ -1,5 +1,5 @@ # The FreeCAD source code/pt-br - O [FreeCAD source code](https://github.com/FreeCAD/FreeCAD) é gerenciado com git e é público, aberto e disponível sob a licença [LGPL](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License). Pode ser copiado, baixado, lido, analisado, redistribuído e modificado por qualquer pessoa. Se você planeja fazer modificações que deseja ver incluídas no próprio código oficial, lembre-se de que suas alterações precisarão ser aprovadas pelos desenvolvedores do FreeCAD, por isso é aconselhável discutir primeiro suas intenções em \[http: // forum.freecadweb.org forum\] para evitar o risco de ter suas alterações rejeitadas por algum motivo que você não previu. +O [FreeCAD source code](https://github.com/FreeCAD/FreeCAD) é gerenciado com git e é público, aberto e disponível sob a licença [LGPL](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License). Pode ser copiado, baixado, lido, analisado, redistribuído e modificado por qualquer pessoa. Se você planeja fazer modificações que deseja ver incluídas no próprio código oficial, lembre-se de que suas alterações precisarão ser aprovadas pelos desenvolvedores do FreeCAD, por isso é aconselhável discutir primeiro suas intenções em \[http: // forum.freecadweb.org forum\] para evitar o risco de ter suas alterações rejeitadas por algum motivo que você não previu. Abaixo estão algumas dicas e informações úteis para colocar você nos trilhos, caso esteja interessado em explorar o código do FreeCAD. @@ -33,3 +33,6 @@ Abaixo estão algumas dicas e informações úteis para colocar você nos trilho - [FCStd](File_Format_FCStd.md) - the FreeCAD file format [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > The FreeCAD source code/pt-br diff --git a/wiki/translations/pt-br/Third_Party_Libraries.md b/wiki/translations/pt-br/Third_Party_Libraries.md index 08ad374680..76e7356b62 100644 --- a/wiki/translations/pt-br/Third_Party_Libraries.md +++ b/wiki/translations/pt-br/Third_Party_Libraries.md @@ -1,10 +1,4 @@ # Third Party Libraries/pt-br - - - - - - {{TOCright}} ## Overview @@ -282,3 +276,6 @@ It includes among other things: Boost 1.67, Coin3D 4.0.0a, Eigen3, Open CASCADE [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Libraries/pt-br diff --git a/wiki/translations/pt-br/Third_Party_Tools.md b/wiki/translations/pt-br/Third_Party_Tools.md index 39f7e57e4d..fd087aa25f 100644 --- a/wiki/translations/pt-br/Third_Party_Tools.md +++ b/wiki/translations/pt-br/Third_Party_Tools.md @@ -1,10 +1,4 @@ # Third Party Tools/pt-br - - - - - - {{TOCright}} ## Tool Page @@ -77,3 +71,6 @@ TODO [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Tools/pt-br diff --git a/wiki/translations/pt-br/Topological_Naming_Project.md b/wiki/translations/pt-br/Topological_Naming_Project.md index 0fd2d3d9f0..7cf3607d58 100644 --- a/wiki/translations/pt-br/Topological_Naming_Project.md +++ b/wiki/translations/pt-br/Topological_Naming_Project.md @@ -1,6 +1,4 @@ # Topological Naming Project/pt-br - - This page is dedicated to the description of the Google Summer of Code project idea regarding topological naming. For the topic in itself please see [Naming project](Naming_project.md). The linked wiki page can also serve as a starting point to get into the naming problem. ## Outline @@ -42,3 +40,6 @@ Hard ### Additional Information [Category:Google Summer of Code](Category:Google_Summer_of_Code.md) + +--- +[documentation index](../README.md) > Topological Naming Project/pt-br diff --git a/wiki/translations/pt-br/Topological_data_scripting.md b/wiki/translations/pt-br/Topological_data_scripting.md index b5cc734ddb..f328c51d9a 100644 --- a/wiki/translations/pt-br/Topological_data_scripting.md +++ b/wiki/translations/pt-br/Topological_data_scripting.md @@ -1,7 +1,4 @@ # Topological data scripting/pt-br - - - {{TOCright}} ## Introdução @@ -938,3 +935,6 @@ s.read("test.stp") ```{{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting/pt-br diff --git a/wiki/translations/pt-br/Topological_naming_problem.md b/wiki/translations/pt-br/Topological_naming_problem.md index 21d951dfc1..11176f2d40 100644 --- a/wiki/translations/pt-br/Topological_naming_problem.md +++ b/wiki/translations/pt-br/Topological_naming_problem.md @@ -1,6 +1,4 @@ # Topological naming problem/pt-br - - ## Introdução @@ -130,3 +128,6 @@ Datum objects, [points](PartDesign_Point.md), [lines](PartDesign_Line.md), [plan {{TechDraw Tools navi}} {{PartDesign Tools navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Topological naming problem/pt-br diff --git a/wiki/translations/pt-br/Tracker.md b/wiki/translations/pt-br/Tracker.md index 69d0cc51be..68f9cad535 100644 --- a/wiki/translations/pt-br/Tracker.md +++ b/wiki/translations/pt-br/Tracker.md @@ -1,10 +1,4 @@ # Tracker/pt-br - - - - - - {{TOCright}} ![](images/Mantis_logo_262x90.png ) @@ -188,3 +182,6 @@ For the inquisitive here is the regex MantisBT uses for this operation: [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Tracker/pt-br diff --git a/wiki/translations/pt-br/Tree_view.md b/wiki/translations/pt-br/Tree_view.md index 16698ede15..7de2d34a00 100644 --- a/wiki/translations/pt-br/Tree_view.md +++ b/wiki/translations/pt-br/Tree_view.md @@ -1,5 +1,5 @@ # Tree view/pt-br - {{TOCright}} +{{TOCright}} ## Introdução @@ -147,4 +147,7 @@ This indicates that the object has an error that needs to be fixed. After recomp {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Tree view/pt-br diff --git a/wiki/translations/pt-br/Tutorials.md b/wiki/translations/pt-br/Tutorials.md index f71ec8000d..cc79958d29 100644 --- a/wiki/translations/pt-br/Tutorials.md +++ b/wiki/translations/pt-br/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/pt-br - - - - - - {{TOCright}} Esta página apresenta uma seleção de tutoriais escritos de alta qualidade. Uma lista completa e não classificada de tutoriais pode ser encontrada em [:Category:Tutorials](:Category:Tutorials.md), uma lista completa e classificável pode ser encontrada em [tabela abaixo](#Tutoriais_-_Lista_completa.md). @@ -284,3 +278,6 @@ Aqui estão listados todos os tutoriais que não estão no manual *\"independent [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials]], uma lista completa e classificável pode ser encontrada em ](Category:Tutorials]], uma lista completa e classificável pode ser encontrada em .md) > Tutorials/pt-br diff --git a/wiki/translations/pt-br/Ubuntu_Snap.md b/wiki/translations/pt-br/Ubuntu_Snap.md index 5ab0ed5fbb..816bb0fe06 100644 --- a/wiki/translations/pt-br/Ubuntu_Snap.md +++ b/wiki/translations/pt-br/Ubuntu_Snap.md @@ -1,6 +1,4 @@ # Ubuntu Snap/pt-br - - ## Introduction An [Ubuntu Snap](Ubuntu_Snap.md) package, or just [Snap](Ubuntu_Snap.md) is a distribution format similar to [AppImage](AppImage.md) in that it is intended to be a \"universal installable package\" to deploy software in Linux systems. Snaps were introduced by Ubuntu but they are intended to run in all Linux distributions as long as the Snap daemon, or `snapd`, is available in the target system. @@ -37,5 +35,5 @@ More information about current efforts to deal with Snaps. - [0.19 Snap Preview needs \"testers\"](https://forum.freecadweb.org/viewtopic.php?f=4&t=46044), older Snap by **vejmarie** - [Discussion: State of the snap (Snap Packaging)](https://forum.freecadweb.org/viewtopic.php?f=42&t=46853), newer version of the Snap by **ppd** - - +--- +[documentation index](../README.md) > Ubuntu Snap/pt-br diff --git a/wiki/translations/pt-br/Units.md b/wiki/translations/pt-br/Units.md index 063ac31d95..afba926adb 100644 --- a/wiki/translations/pt-br/Units.md +++ b/wiki/translations/pt-br/Units.md @@ -1,6 +1,4 @@ # Units/pt-br - - Some reading about units: - [Metrology](http://en.wikipedia.org/wiki/Metrology) @@ -292,4 +290,7 @@ It becomes thus very easy to manage any number of properties with any kind of un {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Units/pt-br diff --git a/wiki/translations/pt-br/User_hub.md b/wiki/translations/pt-br/User_hub.md index 6be056f2b2..f5db71194a 100644 --- a/wiki/translations/pt-br/User_hub.md +++ b/wiki/translations/pt-br/User_hub.md @@ -1,5 +1,4 @@ -# User hub/pt-br - +# User hub/pt-br ------------------------------------------------------------------------ @@ -128,3 +127,6 @@ Esta é a ajuda online oficial do FreeCAD. Note que o sistema de ajuda online es [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/pt-br diff --git a/wiki/translations/pt-br/VRML_Preparation_for_Robot_Simulation.md b/wiki/translations/pt-br/VRML_Preparation_for_Robot_Simulation.md index 33f6060ca6..f89a51b174 100644 --- a/wiki/translations/pt-br/VRML_Preparation_for_Robot_Simulation.md +++ b/wiki/translations/pt-br/VRML_Preparation_for_Robot_Simulation.md @@ -1,5 +1,5 @@ # VRML Preparation for Robot Simulation/pt-br - {{TutorialInfo +{{TutorialInfo |Topic=Robot Workbench |Level=Intermediate |Time= @@ -383,3 +383,6 @@ Group { [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > VRML Preparation for Robot Simulation/pt-br diff --git a/wiki/translations/pt-br/Video_tutorials.md b/wiki/translations/pt-br/Video_tutorials.md index 38261587bd..9e8ab436e7 100644 --- a/wiki/translations/pt-br/Video_tutorials.md +++ b/wiki/translations/pt-br/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials/pt-br - - - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** This page presents a selection of video tutorials made by FreeCAD users and developers. Visit the [Tutorials and videos](https://forum.freecadweb.org/viewforum.php?f=36) subforum for more links. A useful source of video tutorials is [YouTube](https://YouTube.com). @@ -95,3 +92,6 @@ For more see [Video tutorials obsolete](Video_tutorials_obsolete.md). }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Video tutorials/pt-br diff --git a/wiki/translations/pt-br/Web_Workbench.md b/wiki/translations/pt-br/Web_Workbench.md index 0f6bcf4047..8e0f54c144 100644 --- a/wiki/translations/pt-br/Web_Workbench.md +++ b/wiki/translations/pt-br/Web_Workbench.md @@ -1,7 +1,4 @@ # Web Workbench/pt-br - - -
@@ -31,3 +28,6 @@ A partir desse navegador você é capaz de navegar na web, clicar em links, ler [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/pt-br diff --git a/wiki/translations/pt-br/WikiPages.md b/wiki/translations/pt-br/WikiPages.md index f6bad3a4b6..aeb2474d33 100644 --- a/wiki/translations/pt-br/WikiPages.md +++ b/wiki/translations/pt-br/WikiPages.md @@ -1,5 +1,5 @@ # WikiPages/pt-br - {{TOCright}} +{{TOCright}} Esta página é uma extensão da página [Help:Editing](Special:MyLanguage/Help:Editing.md) e dá orientações comuns para escrever e atualizar a documentação do wiki FreeCAD. Resume várias discussões e sessões de troca de ideias. @@ -554,3 +554,6 @@ Consulte [Glossário](Glossary.md). - [Polonês](Polish_translation.md) [Category:Documentation](Category:Documentation.md) [Category:Wiki](Category:Wiki.md) [Category:Wiki Documentation](Category:Wiki_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > WikiPages/pt-br diff --git a/wiki/translations/pt-br/Workbenches.md b/wiki/translations/pt-br/Workbenches.md index 0ed51ce136..a283dc4f3e 100644 --- a/wiki/translations/pt-br/Workbenches.md +++ b/wiki/translations/pt-br/Workbenches.md @@ -1,9 +1,4 @@ # Workbenches/pt-br - - - - - O FreeCAD, como muitos aplicativos de design modernos, como [Revit](wikipedia:Revit.md) ou [CATIA](wikipedia:CATIA.md), baseia-se no conceito de [Workbench](wikipedia:Workbench.md) (Bancada de trabalho). Uma bancada de trabalho pode ser considerada um conjunto de ferramentas especialmente agrupadas para uma determinada tarefa. Em uma oficina de móveis tradicional, você teria uma mesa de trabalho para quem trabalha com madeira, outra para quem trabalha com peças de metal e talvez uma terceira para quem monta todas as peças. No FreeCAD aplica-se o mesmo conceito. As ferramentas são agrupadas em bancadas, de acordo com as tarefas em que são utilizadas. @@ -104,3 +99,6 @@ Novas bancadas de trabalho estão sempre em desenvolvimento. Fique atento! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/pt-br diff --git a/wiki/translations/pt/About_FreeCAD.md b/wiki/translations/pt/About_FreeCAD.md index d7304f892f..16e0a667c4 100644 --- a/wiki/translations/pt/About_FreeCAD.md +++ b/wiki/translations/pt/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/pt - - - +# About FreeCAD/pt
@@ -82,3 +79,6 @@ FreeCAD é mantido e desenvolvido por uma comunidade de desenvolvedores entusias [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/pt diff --git a/wiki/translations/pt/Addon_Manager.md b/wiki/translations/pt/Addon_Manager.md index 5a01f8fdb8..5ddce3ba29 100644 --- a/wiki/translations/pt/Addon_Manager.md +++ b/wiki/translations/pt/Addon_Manager.md @@ -1,2 +1,5 @@ # Addon Manager/pt 1. REDIRECT [Std AddonMgr/pt](Std_AddonMgr/pt.md) + +--- +[documentation index](../README.md) > Addon Manager/pt diff --git a/wiki/translations/pt/Arch_Floor.md b/wiki/translations/pt/Arch_Floor.md index 2d8e65de7e..e89e225641 100644 --- a/wiki/translations/pt/Arch_Floor.md +++ b/wiki/translations/pt/Arch_Floor.md @@ -1,3 +1,4 @@ +# Arch Floor/pt --- - GuiCommand:/pt Name:Arch Floor Name/pt:Arch Floor Workbenches:[MenuLocation:Arch → Floor Shortcut:F L SeeAlso:[[Arch Building/pt|Arch Building](Arch_Workbench/pt___Arch]].md), [Arch Site](Arch_Site/pt.md)--- @@ -82,8 +83,5 @@ FreeCAD.ActiveDocument.recompute()
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor/pt diff --git a/wiki/translations/pt/Arch_Module.md b/wiki/translations/pt/Arch_Module.md index 1474dbe359..3c11d2db05 100644 --- a/wiki/translations/pt/Arch_Module.md +++ b/wiki/translations/pt/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/pt 1. REDIRECT [Arch\_Workbench/pt](Arch_Workbench/pt.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/pt diff --git a/wiki/translations/pt/Arch_Workbench.md b/wiki/translations/pt/Arch_Workbench.md index 1c10cb5aa7..086ee2da84 100644 --- a/wiki/translations/pt/Arch_Workbench.md +++ b/wiki/translations/pt/Arch_Workbench.md @@ -1,7 +1,4 @@ # Arch Workbench/pt - - - {{docnav/pt|[Workbenches/pt](Workbenches/pt.md)|[Draft Workbench/pt](Draft_Workbench/pt.md)|IconL=|IconR=Workbench_Draft.svg}} Arch workbench icon @@ -135,3 +132,6 @@ O módulo Arch (Arquitetura) pode ser usado em scripts python e [ macros](macros [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/pt diff --git a/wiki/translations/pt/Basic_Sketcher_Tutorial.md b/wiki/translations/pt/Basic_Sketcher_Tutorial.md index e9575fa17d..0dbc13f5ef 100644 --- a/wiki/translations/pt/Basic_Sketcher_Tutorial.md +++ b/wiki/translations/pt/Basic_Sketcher_Tutorial.md @@ -1,7 +1,4 @@ # Basic Sketcher Tutorial/pt - - -
@@ -298,4 +295,7 @@ Constraining a sketch can be done in many different ways. In general, it is reco {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Sketcher Tutorial/pt diff --git a/wiki/translations/pt/Basic_modeling_tutorial.md b/wiki/translations/pt/Basic_modeling_tutorial.md index d2ff663c75..4a27e33cfd 100644 --- a/wiki/translations/pt/Basic_modeling_tutorial.md +++ b/wiki/translations/pt/Basic_modeling_tutorial.md @@ -1,5 +1,5 @@ # Basic modeling tutorial/pt - {{TutorialInfo/pt +{{TutorialInfo/pt |Topic = Introdução à modelação |Level = Iniciante |Time = 15 minutos @@ -137,4 +137,7 @@ The above instructions will work, no matter what label your button has. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Basic modeling tutorial/pt diff --git a/wiki/translations/pt/Category:Addons.md b/wiki/translations/pt/Category:Addons.md index 1342ae33cc..6b24a6cace 100644 --- a/wiki/translations/pt/Category:Addons.md +++ b/wiki/translations/pt/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/pt - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [External workbenches/pt](External_workbenches/pt.md) , [Plot Module/pt](Plot_Module/pt.md) , [Ship Workbench/pt](Ship_Workbench/pt.md) , , [Category:Categories](Category:Categories.md) [Category:External Workbenches/pt](Category:External_Workbenches/pt.md) [Category:Macros/pt](Category:Macros/pt.md) + +--- +[documentation index](../README.md) > Category:Addons/pt diff --git a/wiki/translations/pt/Category:Administration.md b/wiki/translations/pt/Category:Administration.md index 8153d958e0..639627bb2a 100644 --- a/wiki/translations/pt/Category:Administration.md +++ b/wiki/translations/pt/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/pt](Template:Arch_Tools_navi/pt.md) , [Template:Drawing Tools navi/pt](Template:Drawing_Tools_navi/pt.md) , [Template:FEM Tools navi/pt](Template:FEM_Tools_navi/pt.md) , [Template:Mesh Tools navi/pt](Template:Mesh_Tools_navi/pt.md) , [Template:OpenSCAD Tools navi/pt](Template:OpenSCAD_Tools_navi/pt.md) , [Template:Part Tools navi/pt](Template:Part_Tools_navi/pt.md) , [Template:PartDesign Tools navi/pt](Template:PartDesign_Tools_navi/pt.md) , [Template:Path Tools navi/pt](Template:Path_Tools_navi/pt.md) , [Template:Plot Tools navi/pt](Template:Plot_Tools_navi/pt.md) , [Template:Powerdocnavi/pt](Template:Powerdocnavi/pt.md) , [Template:PropertyData/pt](Template:PropertyData/pt.md) , [Template:PropertyView/pt](Template:PropertyView/pt.md) , [Template:Raytracing Tools navi/pt](Template:Raytracing_Tools_navi/pt.md) , [Template:Robot Tools navi/pt](Template:Robot_Tools_navi/pt.md) , [Template:Ship Tools navi/pt](Template:Ship_Tools_navi/pt.md) , [Template:Sketcher Tools navi/pt](Template:Sketcher_Tools_navi/pt.md) , [Tracker/pt](Tracker/pt.md) , [Template:UnfinishedDocu/pt](Template:UnfinishedDocu/pt.md) , [Category:Categories/pt](Category:Categories/pt.md) [Category:Wiki/pt](Category:Wiki/pt.md) + +--- +[documentation index](../README.md) > Category:Administration/pt diff --git a/wiki/translations/pt/Category:Arch.md b/wiki/translations/pt/Category:Arch.md index 881d73b4bd..85e449fc65 100644 --- a/wiki/translations/pt/Category:Arch.md +++ b/wiki/translations/pt/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Arch Floor/pt](Arch_Floor/pt.md) , [Template:Arch Tools navi/pt](Template:Arch_Tools_navi/pt.md) , [Arch Workbench/pt](Arch_Workbench/pt.md) [Category:User Documentation/pt](Category:User_Documentation/pt.md) [Category:BIM/pt](Category:BIM/pt.md) + +--- +[documentation index](../README.md) > Category:Arch/pt diff --git a/wiki/translations/pt/Category:BIM.md b/wiki/translations/pt/Category:BIM.md index d05f4581d7..93e347f9ab 100644 --- a/wiki/translations/pt/Category:BIM.md +++ b/wiki/translations/pt/Category:BIM.md @@ -4,3 +4,6 @@ This category is for pages related to building information management (BIM). ### Contents: [Category:User Documentation/pt](Category:User_Documentation/pt.md) [Category:Arch/pt](Category:Arch/pt.md) + +--- +[documentation index](../README.md) > Category:BIM/pt diff --git a/wiki/translations/pt/Category:Base.md b/wiki/translations/pt/Category:Base.md index e4da38e4df..1fed5d03a2 100644 --- a/wiki/translations/pt/Category:Base.md +++ b/wiki/translations/pt/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/pt](Category:User_Documentation/pt.md) + +--- +[documentation index](../README.md) > Category:Base/pt diff --git a/wiki/translations/pt/Category:Categories.md b/wiki/translations/pt/Category:Categories.md index 8cc47e2e60..f20a43d7f8 100644 --- a/wiki/translations/pt/Category:Categories.md +++ b/wiki/translations/pt/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , , , , , , , [Category:Categories/pt](Category:Categories/pt.md) [Category:Addons/pt](Category:Addons/pt.md) [Category:Administration/pt](Category:Administration/pt.md) [Category:Categories/pt](Category:Categories/pt.md) [Category:Command Reference/pt](Category:Command_Reference/pt.md) [Category:Developer/pt](Category:Developer/pt.md) [Category:Documentation/pt](Category:Documentation/pt.md) [Category:Hubs/pt](Category:Hubs/pt.md) [Category:Macros/pt](Category:Macros/pt.md) [Category:News/pt](Category:News/pt.md) [Category:Python Code/pt](Category:Python_Code/pt.md) [Category:Roadmap/pt](Category:Roadmap/pt.md) [Category:Template/pt](Category:Template/pt.md) [Category:Tutorials/pt](Category:Tutorials/pt.md) [Category:Wiki/pt](Category:Wiki/pt.md) + +--- +[documentation index](../README.md) > Category:Categories/pt diff --git a/wiki/translations/pt/Category:Command_Reference.md b/wiki/translations/pt/Category:Command_Reference.md index 69b10b39f2..d8b89be163 100644 --- a/wiki/translations/pt/Category:Command_Reference.md +++ b/wiki/translations/pt/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD command. [Arch Floor/pt](Arch_Floor/pt.md) , [Template:GuiCommand/pt](Template:GuiCommand/pt.md) , [Sketcher CarbonCopy/pt](Sketcher_CarbonCopy/pt.md) , [Sketcher CompCreateArc/pt](Sketcher_CompCreateArc/pt.md) , [Sketcher ConstrainAngle/pt](Sketcher_ConstrainAngle/pt.md) , [Sketcher ConstrainCoincident/pt](Sketcher_ConstrainCoincident/pt.md) , [Sketcher ConstrainDistance/pt](Sketcher_ConstrainDistance/pt.md) , [Sketcher ConstrainDistanceX/pt](Sketcher_ConstrainDistanceX/pt.md) , [Sketcher ConstrainDistanceY/pt](Sketcher_ConstrainDistanceY/pt.md) , [Sketcher ConstrainEqual/pt](Sketcher_ConstrainEqual/pt.md) , [Sketcher ConstrainHorizontal/pt](Sketcher_ConstrainHorizontal/pt.md) , [Sketcher ConstrainLock/pt](Sketcher_ConstrainLock/pt.md) , [Sketcher ConstrainParallel/pt](Sketcher_ConstrainParallel/pt.md) , [Sketcher ConstrainPerpendicular/pt](Sketcher_ConstrainPerpendicular/pt.md) , [Sketcher ConstrainPointOnObject/pt](Sketcher_ConstrainPointOnObject/pt.md) , [Sketcher ConstrainRadius/pt](Sketcher_ConstrainRadius/pt.md) , [Sketcher ConstrainSymmetric/pt](Sketcher_ConstrainSymmetric/pt.md) , [Sketcher ConstrainVertical/pt](Sketcher_ConstrainVertical/pt.md) , [Sketcher CreateArc/pt](Sketcher_CreateArc/pt.md) , [Sketcher CreateCircle/pt](Sketcher_CreateCircle/pt.md) , [Sketcher CreateFillet/pt](Sketcher_CreateFillet/pt.md) , [Sketcher CreateLine/pt](Sketcher_CreateLine/pt.md) , [Sketcher CreatePoint/pt](Sketcher_CreatePoint/pt.md) , [Sketcher CreatePolyline/pt](Sketcher_CreatePolyline/pt.md) , [Sketcher CreateRectangle/pt](Sketcher_CreateRectangle/pt.md) , [Sketcher External/pt](Sketcher_External/pt.md) , [Sketcher LeaveSketch/pt](Sketcher_LeaveSketch/pt.md) , [Sketcher MapSketch/pt](Sketcher_MapSketch/pt.md) , [Sketcher Move/pt](Sketcher_Move/pt.md) , [Sketcher NewSketch/pt](Sketcher_NewSketch/pt.md) , [Sketcher ReorientSketch/pt](Sketcher_ReorientSketch/pt.md) , [Sketcher SelectElementsWithDoFs/pt](Sketcher_SelectElementsWithDoFs/pt.md) , [Sketcher ToggleConstruction/pt](Sketcher_ToggleConstruction/pt.md) , [Sketcher Trimming/pt](Sketcher_Trimming/pt.md) , [Sketcher ValidateSketch/pt](Sketcher_ValidateSketch/pt.md) , [Sketcher ViewSketch/pt](Sketcher_ViewSketch/pt.md) , [Std AddonMgr/pt](Std_AddonMgr/pt.md) , [Std ViewScreenShot/pt](Std_ViewScreenShot/pt.md) [Category:Categories/pt](Category:Categories/pt.md) + +--- +[documentation index](../README.md) > Category:Command Reference/pt diff --git a/wiki/translations/pt/Category:Common_Questions.md b/wiki/translations/pt/Category:Common_Questions.md index dc373f1767..4316871011 100644 --- a/wiki/translations/pt/Category:Common_Questions.md +++ b/wiki/translations/pt/Category:Common_Questions.md @@ -4,3 +4,6 @@ This category has links to common questions on how to do something in FC. This i ### Contents: [Help FreeCAD/pt](Help_FreeCAD/pt.md) , [Installing on Linux/pt](Installing_on_Linux/pt.md) , [Video tutorials/pt](Video_tutorials/pt.md) + +--- +[documentation index](../README.md) > Category:Common Questions/pt diff --git a/wiki/translations/pt/Category:Developer.md b/wiki/translations/pt/Category:Developer.md index 07a4da8834..6a774f2a18 100644 --- a/wiki/translations/pt/Category:Developer.md +++ b/wiki/translations/pt/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Compile on Linux/pt](Compile_on_Linux/pt.md) , [Compile on MacOS/pt](Compile_on_MacOS/pt.md) , [Compile on Windows/pt](Compile_on_Windows/pt.md) , [Contributors/pt](Contributors/pt.md) , [File Format FCStd/pt](File_Format_FCStd/pt.md) [Category:Categories/pt](Category:Categories/pt.md) + +--- +[documentation index](../README.md) > Category:Developer/pt diff --git a/wiki/translations/pt/Category:Developer_Documentation.md b/wiki/translations/pt/Category:Developer_Documentation.md index 9ce5155d9c..827a547219 100644 --- a/wiki/translations/pt/Category:Developer_Documentation.md +++ b/wiki/translations/pt/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Compile on Linux/pt](Compile_on_Linux/pt.md) , [Compile on MacOS/pt](Compile_on_MacOS/pt.md) , [Compile on Windows/pt](Compile_on_Windows/pt.md) , [Debugging/pt](Debugging/pt.md) , [Developer hub/pt](Developer_hub/pt.md) , [Embedding FreeCAD/pt](Embedding_FreeCAD/pt.md) , [File Format FCStd/pt](File_Format_FCStd/pt.md) , [FreeCAD Scripting Basics/pt](FreeCAD_Scripting_Basics/pt.md) , [Help FreeCAD/pt](Help_FreeCAD/pt.md) , [Installing on Linux/pt](Installing_on_Linux/pt.md) , [Introduction to Python/pt](Introduction_to_Python/pt.md) , [Localisation/pt](Localisation/pt.md) , [Macros/pt](Macros/pt.md) , [Property/pt](Property/pt.md) , [PySide/pt](PySide/pt.md) , [Python scripting tutorial/pt](Python_scripting_tutorial/pt.md) , [Scenegraph/pt](Scenegraph/pt.md) , [Scripted objects/pt](Scripted_objects/pt.md) , [Topological data scripting/pt](Topological_data_scripting/pt.md) , [Tracker/pt](Tracker/pt.md) [Category:Documentation/pt](Category:Documentation/pt.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/pt diff --git a/wiki/translations/pt/Category:Documentation.md b/wiki/translations/pt/Category:Documentation.md index 8247293258..b4e6e00ab4 100644 --- a/wiki/translations/pt/Category:Documentation.md +++ b/wiki/translations/pt/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [Help FreeCAD/pt](Help_FreeCAD/pt.md) , [Main Page/pt](Main_Page/pt.md) , [Online Help Toc/pt](Online_Help_Toc/pt.md) , [Release notes 0.15/pt](Release_notes_0.15/pt.md) , [Release notes 0.16/pt](Release_notes_0.16/pt.md) , [Release notes 0.17/pt](Release_notes_0.17/pt.md) , , , , , [Category:Categories/pt](Category:Categories/pt.md) [Category:Developer Documentation/pt](Category:Developer_Documentation/pt.md) [Category:Poweruser Documentation/pt](Category:Poweruser_Documentation/pt.md) [Category:Screenshots/pt](Category:Screenshots/pt.md) [Category:User Documentation/pt](Category:User_Documentation/pt.md) [Category:Wiki/pt](Category:Wiki/pt.md) + +--- +[documentation index](../README.md) > Category:Documentation/pt diff --git a/wiki/translations/pt/Category:Draft.md b/wiki/translations/pt/Category:Draft.md index f5da0d9959..bd8f6014e1 100644 --- a/wiki/translations/pt/Category:Draft.md +++ b/wiki/translations/pt/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/pt\" and \"Workben [Draft tutorial/pt](Draft_tutorial/pt.md) , [Draft Workbench/pt](Draft_Workbench/pt.md) [Category:User Documentation/pt](Category:User_Documentation/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:Draft/pt diff --git a/wiki/translations/pt/Category:Drawing.md b/wiki/translations/pt/Category:Drawing.md index 1ded40cc1c..b2d8544419 100644 --- a/wiki/translations/pt/Category:Drawing.md +++ b/wiki/translations/pt/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/pt](Drawing_Workbenc [Template:Drawing Tools navi/pt](Template:Drawing_Tools_navi/pt.md) , [Drawing Workbench/pt](Drawing_Workbench/pt.md) [Category:Obsolete Workbenches/pt](Category:Obsolete_Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:Drawing/pt diff --git a/wiki/translations/pt/Category:External_Workbenches.md b/wiki/translations/pt/Category:External_Workbenches.md index 1779eb6fbc..e2beaf348b 100644 --- a/wiki/translations/pt/Category:External_Workbenches.md +++ b/wiki/translations/pt/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [External workbenches/pt](External_workbenches/pt.md) , [Plot Module/pt](Plot_Module/pt.md) , [Ship Workbench/pt](Ship_Workbench/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) [Category:Addons/pt](Category:Addons/pt.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/pt diff --git a/wiki/translations/pt/Category:FEM.md b/wiki/translations/pt/Category:FEM.md index ab9ef3fa57..3bc927144f 100644 --- a/wiki/translations/pt/Category:FEM.md +++ b/wiki/translations/pt/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/pt](FEM_Workbench/pt.md) [Template:FEM Tools navi/pt](Template:FEM_Tools_navi/pt.md) , [FEM Workbench/pt](FEM_Workbench/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:FEM/pt diff --git a/wiki/translations/pt/Category:File_Formats.md b/wiki/translations/pt/Category:File_Formats.md index c5b23ac849..ab69c8d2f2 100644 --- a/wiki/translations/pt/Category:File_Formats.md +++ b/wiki/translations/pt/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [File Format FCStd/pt](File_Format_FCStd/pt.md) , [Import Export/pt](Import_Export/pt.md) + +--- +[documentation index](../README.md) > Category:File Formats/pt diff --git a/wiki/translations/pt/Category:Hubs.md b/wiki/translations/pt/Category:Hubs.md index 710f5b2be2..ec9e183b7a 100644 --- a/wiki/translations/pt/Category:Hubs.md +++ b/wiki/translations/pt/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Developer hub/pt](Developer_hub/pt.md) , [Power users hub/pt](Power_users_hub/pt.md) , [User hub/pt](User_hub/pt.md) [Category:Categories/pt](Category:Categories/pt.md) + +--- +[documentation index](../README.md) > Category:Hubs/pt diff --git a/wiki/translations/pt/Category:Image.md b/wiki/translations/pt/Category:Image.md index b4d2496624..65c5f85269 100644 --- a/wiki/translations/pt/Category:Image.md +++ b/wiki/translations/pt/Category:Image.md @@ -6,3 +6,6 @@ This category lists pages related to the [Image Workbench/pt](Image_Workbench/pt [Image Workbench/pt](Image_Workbench/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:Image/pt diff --git a/wiki/translations/pt/Category:Inspection.md b/wiki/translations/pt/Category:Inspection.md index eb0b765255..39f3652fcc 100644 --- a/wiki/translations/pt/Category:Inspection.md +++ b/wiki/translations/pt/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Inspection Workbench/pt](Inspection_Workbench/pt.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection/pt diff --git a/wiki/translations/pt/Category:Macros.md b/wiki/translations/pt/Category:Macros.md index ff36b429f9..5169b5f24a 100644 --- a/wiki/translations/pt/Category:Macros.md +++ b/wiki/translations/pt/Category:Macros.md @@ -6,3 +6,6 @@ This category contains macros to extend your FreeCAD installation with new funct [Macros/pt](Macros/pt.md) [Category:Addons](Category:Addons.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Macros/pt diff --git a/wiki/translations/pt/Category:Mesh.md b/wiki/translations/pt/Category:Mesh.md index e1eba7f937..ec21a44a52 100644 --- a/wiki/translations/pt/Category:Mesh.md +++ b/wiki/translations/pt/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/pt](Mesh_Workbench/pt. [Template:Mesh Tools navi/pt](Template:Mesh_Tools_navi/pt.md) , [Mesh Workbench/pt](Mesh_Workbench/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:Mesh/pt diff --git a/wiki/translations/pt/Category:News.md b/wiki/translations/pt/Category:News.md index ce99cefe52..2f1a434737 100644 --- a/wiki/translations/pt/Category:News.md +++ b/wiki/translations/pt/Category:News.md @@ -6,3 +6,6 @@ This category contains articles with news and messages about FreeCAD. [History/pt](History/pt.md) , [Release notes 0.15/pt](Release_notes_0.15/pt.md) , [Release notes 0.16/pt](Release_notes_0.16/pt.md) , [Release notes 0.17/pt](Release_notes_0.17/pt.md) [Category:Categories/pt](Category:Categories/pt.md) + +--- +[documentation index](../README.md) > Category:News/pt diff --git a/wiki/translations/pt/Category:Obsolete_Workbenches.md b/wiki/translations/pt/Category:Obsolete_Workbenches.md index a5a8ffad38..9492016bbd 100644 --- a/wiki/translations/pt/Category:Obsolete_Workbenches.md +++ b/wiki/translations/pt/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/pt](Drawing_Workbenc [Complete Workbench/pt](Complete_Workbench/pt.md) , [Drawing Workbench/pt](Drawing_Workbench/pt.md) , , [Category:Obsolete Workbenches/pt](Category:Obsolete_Workbenches/pt.md) [Category:Drawing/pt](Category:Drawing/pt.md) [Category:Obsolete Workbenches/pt](Category:Obsolete_Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/pt diff --git a/wiki/translations/pt/Category:OpenSCAD.md b/wiki/translations/pt/Category:OpenSCAD.md index 9977825408..6166697bee 100644 --- a/wiki/translations/pt/Category:OpenSCAD.md +++ b/wiki/translations/pt/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/pt](OpenSCAD_Workb [Template:OpenSCAD Tools navi/pt](Template:OpenSCAD_Tools_navi/pt.md) , [OpenSCAD Workbench/pt](OpenSCAD_Workbench/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/pt diff --git a/wiki/translations/pt/Category:Part.md b/wiki/translations/pt/Category:Part.md index 087a4ffc27..95691c42a6 100644 --- a/wiki/translations/pt/Category:Part.md +++ b/wiki/translations/pt/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/pt](Part_Workbench/pt.m [Basic modeling tutorial/pt](Basic_modeling_tutorial/pt.md) , [Part Module/pt](Part_Module/pt.md) , [Template:Part Tools navi/pt](Template:Part_Tools_navi/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:Part/pt diff --git a/wiki/translations/pt/Category:PartDesign.md b/wiki/translations/pt/Category:PartDesign.md index ddf6abc872..c51ee98a7a 100644 --- a/wiki/translations/pt/Category:PartDesign.md +++ b/wiki/translations/pt/Category:PartDesign.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to PartDesign ### Contents: [Template:PartDesign Tools navi/pt](Template:PartDesign_Tools_navi/pt.md) , [PartDesign Workbench/pt](PartDesign_Workbench/pt.md) + +--- +[documentation index](../README.md) > Category:PartDesign/pt diff --git a/wiki/translations/pt/Category:Path.md b/wiki/translations/pt/Category:Path.md index 9e6404ffc3..9e37cac877 100644 --- a/wiki/translations/pt/Category:Path.md +++ b/wiki/translations/pt/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/pt](PartDesign_Wo [Template:Path Tools navi/pt](Template:Path_Tools_navi/pt.md) , [Path Workbench/pt](Path_Workbench/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:Path/pt diff --git a/wiki/translations/pt/Category:Plot.md b/wiki/translations/pt/Category:Plot.md index 45e706bd14..f8a5f3d71a 100644 --- a/wiki/translations/pt/Category:Plot.md +++ b/wiki/translations/pt/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/pt](Plot_Workbench/pt.m [Plot Module/pt](Plot_Module/pt.md) , [Template:Plot Tools navi/pt](Template:Plot_Tools_navi/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:Plot/pt diff --git a/wiki/translations/pt/Category:Points.md b/wiki/translations/pt/Category:Points.md index 6a94ea3582..b6169489c6 100644 --- a/wiki/translations/pt/Category:Points.md +++ b/wiki/translations/pt/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/pt](Points_Workbench/ [Points Workbench/pt](Points_Workbench/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:Points/pt diff --git a/wiki/translations/pt/Category:Poweruser_Documentation.md b/wiki/translations/pt/Category:Poweruser_Documentation.md index 76612765bf..d6a2032234 100644 --- a/wiki/translations/pt/Category:Poweruser_Documentation.md +++ b/wiki/translations/pt/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Debugging/pt](Debugging/pt.md) , [Embedding FreeCAD/pt](Embedding_FreeCAD/pt.md) , [FreeCAD Scripting Basics/pt](FreeCAD_Scripting_Basics/pt.md) , [Gui Command/pt](Gui_Command/pt.md) , [Introduction to Python/pt](Introduction_to_Python/pt.md) , [Macros/pt](Macros/pt.md) , [Power users hub/pt](Power_users_hub/pt.md) , [Property/pt](Property/pt.md) , [PySide/pt](PySide/pt.md) , [Python scripting tutorial/pt](Python_scripting_tutorial/pt.md) , [Scenegraph/pt](Scenegraph/pt.md) , [Scripted objects/pt](Scripted_objects/pt.md) , [Topological data scripting/pt](Topological_data_scripting/pt.md) [Category:Documentation/pt](Category:Documentation/pt.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/pt diff --git a/wiki/translations/pt/Category:Preferences.md b/wiki/translations/pt/Category:Preferences.md index 134ea88ee4..304e4b3aab 100644 --- a/wiki/translations/pt/Category:Preferences.md +++ b/wiki/translations/pt/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Preferences Editor/pt](Preferences_Editor/pt.md) + +--- +[documentation index](../README.md) > Category:Preferences/pt diff --git a/wiki/translations/pt/Category:Python_Code.md b/wiki/translations/pt/Category:Python_Code.md index e6ea70cf9b..9cb7b92b57 100644 --- a/wiki/translations/pt/Category:Python_Code.md +++ b/wiki/translations/pt/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Debugging/pt](Debugging/pt.md) , [Embedding FreeCAD/pt](Embedding_FreeCAD/pt.md) , [FreeCAD Scripting Basics/pt](FreeCAD_Scripting_Basics/pt.md) , [Introduction to Python/pt](Introduction_to_Python/pt.md) , [Macros/pt](Macros/pt.md) , [Property/pt](Property/pt.md) , [PySide/pt](PySide/pt.md) , [Python scripting tutorial/pt](Python_scripting_tutorial/pt.md) , [Scripted objects/pt](Scripted_objects/pt.md) , [Topological data scripting/pt](Topological_data_scripting/pt.md) [Category:Categories/pt](Category:Categories/pt.md) + +--- +[documentation index](../README.md) > Category:Python Code/pt diff --git a/wiki/translations/pt/Category:Raytracing.md b/wiki/translations/pt/Category:Raytracing.md index 1753978b7a..362f8fb458 100644 --- a/wiki/translations/pt/Category:Raytracing.md +++ b/wiki/translations/pt/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/pt](Raytracing_Wo [Template:Raytracing Tools navi/pt](Template:Raytracing_Tools_navi/pt.md) , [Raytracing Workbench/pt](Raytracing_Workbench/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:Raytracing/pt diff --git a/wiki/translations/pt/Category:Roadmap.md b/wiki/translations/pt/Category:Roadmap.md index b45306dca6..6fdf8d74eb 100644 --- a/wiki/translations/pt/Category:Roadmap.md +++ b/wiki/translations/pt/Category:Roadmap.md @@ -6,3 +6,6 @@ This category gathers all articles documenting what is planned in the Roadmap of [Development roadmap/pt](Development_roadmap/pt.md) [Category:Categories/pt](Category:Categories/pt.md) + +--- +[documentation index](../README.md) > Category:Roadmap/pt diff --git a/wiki/translations/pt/Category:Robot.md b/wiki/translations/pt/Category:Robot.md index cd493fe0f1..bacdfff900 100644 --- a/wiki/translations/pt/Category:Robot.md +++ b/wiki/translations/pt/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/pt](Robot_Workbench/pt [Template:Robot Tools navi/pt](Template:Robot_Tools_navi/pt.md) , [Robot Workbench/pt](Robot_Workbench/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:Robot/pt diff --git a/wiki/translations/pt/Category:Screenshots.md b/wiki/translations/pt/Category:Screenshots.md index 2d2ec14c99..99c67f589a 100644 --- a/wiki/translations/pt/Category:Screenshots.md +++ b/wiki/translations/pt/Category:Screenshots.md @@ -6,3 +6,6 @@ This category lists pages with screenshots. [Screenshots/pt](Screenshots/pt.md) [Category:Documentation/pt](Category:Documentation/pt.md) + +--- +[documentation index](../README.md) > Category:Screenshots/pt diff --git a/wiki/translations/pt/Category:Ship.md b/wiki/translations/pt/Category:Ship.md index abe04901f6..46e907d9a1 100644 --- a/wiki/translations/pt/Category:Ship.md +++ b/wiki/translations/pt/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/pt](Ship_Workbench/pt.m [Template:Ship Tools navi/pt](Template:Ship_Tools_navi/pt.md) , [Ship Workbench/pt](Ship_Workbench/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:Ship/pt diff --git a/wiki/translations/pt/Category:Sketcher.md b/wiki/translations/pt/Category:Sketcher.md index 38ba485874..133266fb9b 100644 --- a/wiki/translations/pt/Category:Sketcher.md +++ b/wiki/translations/pt/Category:Sketcher.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to Sketcher ### Contents: [Basic Sketcher Tutorial/pt](Basic_Sketcher_Tutorial/pt.md) , [Sketcher CarbonCopy/pt](Sketcher_CarbonCopy/pt.md) , [Sketcher CompCreateArc/pt](Sketcher_CompCreateArc/pt.md) , [Sketcher ConstrainAngle/pt](Sketcher_ConstrainAngle/pt.md) , [Sketcher ConstrainCoincident/pt](Sketcher_ConstrainCoincident/pt.md) , [Sketcher ConstrainDistance/pt](Sketcher_ConstrainDistance/pt.md) , [Sketcher ConstrainDistanceX/pt](Sketcher_ConstrainDistanceX/pt.md) , [Sketcher ConstrainDistanceY/pt](Sketcher_ConstrainDistanceY/pt.md) , [Sketcher ConstrainEqual/pt](Sketcher_ConstrainEqual/pt.md) , [Sketcher ConstrainHorizontal/pt](Sketcher_ConstrainHorizontal/pt.md) , [Sketcher ConstrainLock/pt](Sketcher_ConstrainLock/pt.md) , [Sketcher ConstrainParallel/pt](Sketcher_ConstrainParallel/pt.md) , [Sketcher ConstrainPerpendicular/pt](Sketcher_ConstrainPerpendicular/pt.md) , [Sketcher ConstrainPointOnObject/pt](Sketcher_ConstrainPointOnObject/pt.md) , [Sketcher ConstrainRadius/pt](Sketcher_ConstrainRadius/pt.md) , [Sketcher ConstrainSymmetric/pt](Sketcher_ConstrainSymmetric/pt.md) , [Sketcher ConstrainVertical/pt](Sketcher_ConstrainVertical/pt.md) , [Sketcher CreateArc/pt](Sketcher_CreateArc/pt.md) , [Sketcher CreateCircle/pt](Sketcher_CreateCircle/pt.md) , [Sketcher CreateFillet/pt](Sketcher_CreateFillet/pt.md) , [Sketcher CreateLine/pt](Sketcher_CreateLine/pt.md) , [Sketcher CreatePoint/pt](Sketcher_CreatePoint/pt.md) , [Sketcher CreatePolyline/pt](Sketcher_CreatePolyline/pt.md) , [Sketcher CreateRectangle/pt](Sketcher_CreateRectangle/pt.md) , [Sketcher External/pt](Sketcher_External/pt.md) , [Sketcher LeaveSketch/pt](Sketcher_LeaveSketch/pt.md) , [Sketcher MapSketch/pt](Sketcher_MapSketch/pt.md) , [Sketcher Move/pt](Sketcher_Move/pt.md) , [Sketcher NewSketch/pt](Sketcher_NewSketch/pt.md) , [Sketcher ReorientSketch/pt](Sketcher_ReorientSketch/pt.md) , [Sketcher SelectElementsWithDoFs/pt](Sketcher_SelectElementsWithDoFs/pt.md) , [Sketcher ToggleConstruction/pt](Sketcher_ToggleConstruction/pt.md) , [Template:Sketcher Tools navi/pt](Template:Sketcher_Tools_navi/pt.md) , [Sketcher Trimming/pt](Sketcher_Trimming/pt.md) , [Sketcher ValidateSketch/pt](Sketcher_ValidateSketch/pt.md) , [Sketcher ViewSketch/pt](Sketcher_ViewSketch/pt.md) , [Sketcher Workbench/pt](Sketcher_Workbench/pt.md) + +--- +[documentation index](../README.md) > Category:Sketcher/pt diff --git a/wiki/translations/pt/Category:Surface.md b/wiki/translations/pt/Category:Surface.md index a2e0701c9b..b556984977 100644 --- a/wiki/translations/pt/Category:Surface.md +++ b/wiki/translations/pt/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/pt](Surface_Workbenc [Surface Workbench/pt](Surface_Workbench/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:Surface/pt diff --git a/wiki/translations/pt/Category:TechDraw.md b/wiki/translations/pt/Category:TechDraw.md index 9c3906d9da..556864bf35 100644 --- a/wiki/translations/pt/Category:TechDraw.md +++ b/wiki/translations/pt/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/pt](TechDraw_Workbe [TechDraw Workbench/pt](TechDraw_Workbench/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:TechDraw/pt diff --git a/wiki/translations/pt/Category:Template.md b/wiki/translations/pt/Category:Template.md index 12290a9ae6..31ec179ad9 100644 --- a/wiki/translations/pt/Category:Template.md +++ b/wiki/translations/pt/Category:Template.md @@ -8,3 +8,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) [Template:CAD Navigation/pt](Template:CAD_Navigation/pt.md) , [Template:Languages/pt](Template:Languages/pt.md) , [Template:Pt](Template:Pt.md) , [Template:Sketcher Tools/pt](Template:Sketcher_Tools/pt.md) , [Category:Categories/pt](Category:Categories/pt.md) [Category:Template:Navigation/pt](Category:Template:Navigation/pt.md) + +--- +[documentation index](../README.md) > Category:Template/pt diff --git a/wiki/translations/pt/Category:Template:Navigation.md b/wiki/translations/pt/Category:Template:Navigation.md index 7fec73d3da..59de6804c4 100644 --- a/wiki/translations/pt/Category:Template:Navigation.md +++ b/wiki/translations/pt/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/pt](Template:Arch_Tools_navi/pt.md) , [Template:Drawing Tools navi/pt](Template:Drawing_Tools_navi/pt.md) , [Template:FEM Tools navi/pt](Template:FEM_Tools_navi/pt.md) , [Template:Mesh Tools navi/pt](Template:Mesh_Tools_navi/pt.md) , [Template:OpenSCAD Tools navi/pt](Template:OpenSCAD_Tools_navi/pt.md) , [Template:Part Tools navi/pt](Template:Part_Tools_navi/pt.md) , [Template:PartDesign Tools navi/pt](Template:PartDesign_Tools_navi/pt.md) , [Template:Path Tools navi/pt](Template:Path_Tools_navi/pt.md) , [Template:Plot Tools navi/pt](Template:Plot_Tools_navi/pt.md) , [Template:Powerdocnavi/pt](Template:Powerdocnavi/pt.md) , [Template:Raytracing Tools navi/pt](Template:Raytracing_Tools_navi/pt.md) , [Template:Robot Tools navi/pt](Template:Robot_Tools_navi/pt.md) , [Template:Ship Tools navi/pt](Template:Ship_Tools_navi/pt.md) , [Template:Sketcher Tools navi/pt](Template:Sketcher_Tools_navi/pt.md) [Category:Template/pt](Category:Template/pt.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/pt diff --git a/wiki/translations/pt/Category:Tutorials.md b/wiki/translations/pt/Category:Tutorials.md index 47f78d2461..1c919f8213 100644 --- a/wiki/translations/pt/Category:Tutorials.md +++ b/wiki/translations/pt/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials/pt](Offsite_tutorials/pt.md) and [Video tut [Basic modeling tutorial/pt](Basic_modeling_tutorial/pt.md) , [Basic Sketcher Tutorial/pt](Basic_Sketcher_Tutorial/pt.md) , [Draft tutorial/pt](Draft_tutorial/pt.md) , [Template:TutorialInfo/pt](Template:TutorialInfo/pt.md) [Category:Categories/pt](Category:Categories/pt.md) + +--- +[documentation index](../README.md) > Category:Tutorials/pt diff --git a/wiki/translations/pt/Category:User_Documentation.md b/wiki/translations/pt/Category:User_Documentation.md index fc8e030f23..1a4aca3d35 100644 --- a/wiki/translations/pt/Category:User_Documentation.md +++ b/wiki/translations/pt/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [About FreeCAD/pt](About_FreeCAD/pt.md) , [Arch Floor/pt](Arch_Floor/pt.md) , [Arch Workbench/pt](Arch_Workbench/pt.md) , [Basic modeling tutorial/pt](Basic_modeling_tutorial/pt.md) , [Basic Sketcher Tutorial/pt](Basic_Sketcher_Tutorial/pt.md) , [Compile on Linux/pt](Compile_on_Linux/pt.md) , [Compile on MacOS/pt](Compile_on_MacOS/pt.md) , [Compile on Windows/pt](Compile_on_Windows/pt.md) , [Complete Workbench/pt](Complete_Workbench/pt.md) , [Contributors/pt](Contributors/pt.md) , [Developer hub/pt](Developer_hub/pt.md) , [Document structure/pt](Document_structure/pt.md) , [Download/pt](Download/pt.md) , [Draft tutorial/pt](Draft_tutorial/pt.md) , [Draft Workbench/pt](Draft_Workbench/pt.md) , [Drawing Workbench/pt](Drawing_Workbench/pt.md) , [External workbenches/pt](External_workbenches/pt.md) , [Feature list/pt](Feature_list/pt.md) , [FEM Workbench/pt](FEM_Workbench/pt.md) , [File Format FCStd/pt](File_Format_FCStd/pt.md) , [Getting started/pt](Getting_started/pt.md) , [Template:GuiCommand/pt](Template:GuiCommand/pt.md) , [Help FreeCAD/pt](Help_FreeCAD/pt.md) , [Image Workbench/pt](Image_Workbench/pt.md) , [Import Export/pt](Import_Export/pt.md) , [Inspection Workbench/pt](Inspection_Workbench/pt.md) , [Installing additional components/pt](Installing_additional_components/pt.md) , [Installing on Linux/pt](Installing_on_Linux/pt.md) , [Installing on Mac/pt](Installing_on_Mac/pt.md) , [Installing on Windows/pt](Installing_on_Windows/pt.md) , [Interface Customization/pt](Interface_Customization/pt.md) , [Localisation/pt](Localisation/pt.md) , [Main Page/pt](Main_Page/pt.md) , [Mesh Workbench/pt](Mesh_Workbench/pt.md) , [Mouse navigation/pt](Mouse_navigation/pt.md) , [Offsite tutorials/pt](Offsite_tutorials/pt.md) , [Online Help Startpage/pt](Online_Help_Startpage/pt.md) , [Online Help Toc/pt](Online_Help_Toc/pt.md) , [OpenSCAD Workbench/pt](OpenSCAD_Workbench/pt.md) , [Part Module/pt](Part_Module/pt.md) , [PartDesign Workbench/pt](PartDesign_Workbench/pt.md) , [Path Workbench/pt](Path_Workbench/pt.md) , [Plot Module/pt](Plot_Module/pt.md) , [Points Workbench/pt](Points_Workbench/pt.md) , [Preferences Editor/pt](Preferences_Editor/pt.md) , [Property editor/pt](Property_editor/pt.md) , [Raytracing Workbench/pt](Raytracing_Workbench/pt.md) , [Reverse Engineering Workbench/pt](Reverse_Engineering_Workbench/pt.md) , [Robot Workbench/pt](Robot_Workbench/pt.md) , [Screenshots/pt](Screenshots/pt.md) , [Ship Workbench/pt](Ship_Workbench/pt.md) , [Sketcher CarbonCopy/pt](Sketcher_CarbonCopy/pt.md) , [Sketcher CompCreateArc/pt](Sketcher_CompCreateArc/pt.md) , [Sketcher ConstrainAngle/pt](Sketcher_ConstrainAngle/pt.md) , [Sketcher ConstrainCoincident/pt](Sketcher_ConstrainCoincident/pt.md) , [Sketcher ConstrainDistance/pt](Sketcher_ConstrainDistance/pt.md) , [Sketcher ConstrainDistanceX/pt](Sketcher_ConstrainDistanceX/pt.md) , [Sketcher ConstrainDistanceY/pt](Sketcher_ConstrainDistanceY/pt.md) , [Sketcher ConstrainEqual/pt](Sketcher_ConstrainEqual/pt.md) , [Sketcher ConstrainHorizontal/pt](Sketcher_ConstrainHorizontal/pt.md) , [Sketcher ConstrainLock/pt](Sketcher_ConstrainLock/pt.md) , [Sketcher ConstrainParallel/pt](Sketcher_ConstrainParallel/pt.md) , [Sketcher ConstrainPerpendicular/pt](Sketcher_ConstrainPerpendicular/pt.md) , [Sketcher ConstrainPointOnObject/pt](Sketcher_ConstrainPointOnObject/pt.md) , [Sketcher ConstrainRadius/pt](Sketcher_ConstrainRadius/pt.md) , [Sketcher ConstrainSymmetric/pt](Sketcher_ConstrainSymmetric/pt.md) , [Sketcher ConstrainVertical/pt](Sketcher_ConstrainVertical/pt.md) , [Sketcher CreateArc/pt](Sketcher_CreateArc/pt.md) , [Sketcher CreateCircle/pt](Sketcher_CreateCircle/pt.md) , [Sketcher CreateFillet/pt](Sketcher_CreateFillet/pt.md) , [Sketcher CreateLine/pt](Sketcher_CreateLine/pt.md) , [Sketcher CreatePoint/pt](Sketcher_CreatePoint/pt.md) , [Sketcher CreatePolyline/pt](Sketcher_CreatePolyline/pt.md) , [Sketcher CreateRectangle/pt](Sketcher_CreateRectangle/pt.md) , [Sketcher External/pt](Sketcher_External/pt.md) , [Sketcher LeaveSketch/pt](Sketcher_LeaveSketch/pt.md) , [Sketcher MapSketch/pt](Sketcher_MapSketch/pt.md) , [Sketcher Move/pt](Sketcher_Move/pt.md) , [Sketcher NewSketch/pt](Sketcher_NewSketch/pt.md) , [Sketcher ReorientSketch/pt](Sketcher_ReorientSketch/pt.md) , [Sketcher SelectElementsWithDoFs/pt](Sketcher_SelectElementsWithDoFs/pt.md) , [Sketcher ToggleConstruction/pt](Sketcher_ToggleConstruction/pt.md) , [Sketcher Trimming/pt](Sketcher_Trimming/pt.md) , [Sketcher ValidateSketch/pt](Sketcher_ValidateSketch/pt.md) , [Sketcher ViewSketch/pt](Sketcher_ViewSketch/pt.md) , [Sketcher Workbench/pt](Sketcher_Workbench/pt.md) , [Spreadsheet Workbench/pt](Spreadsheet_Workbench/pt.md) , [Standard Menu/pt](Standard_Menu/pt.md) , [Start Workbench/pt](Start_Workbench/pt.md) , [Std AddonMgr/pt](Std_AddonMgr/pt.md) , [Std Tools Menu/pt](Std_Tools_Menu/pt.md) , [Std ViewScreenShot/pt](Std_ViewScreenShot/pt.md) , [Surface Workbench/pt](Surface_Workbench/pt.md) , [TechDraw Workbench/pt](TechDraw_Workbench/pt.md) , [Tracker/pt](Tracker/pt.md) , [Template:TutorialInfo/pt](Template:TutorialInfo/pt.md) , [User hub/pt](User_hub/pt.md) , [Video tutorials/pt](Video_tutorials/pt.md) , [Web Workbench/pt](Web_Workbench/pt.md) , [Workbenches/pt](Workbenches/pt.md) , , , , , , , [Category:Documentation/pt](Category:Documentation/pt.md) [Category:Arch/pt](Category:Arch/pt.md) [Category:Base/pt](Category:Base/pt.md) [Category:BIM/pt](Category:BIM/pt.md) [Category:Draft/pt](Category:Draft/pt.md) [Category:Inspection/pt](Category:Inspection/pt.md) [Category:Macros/pt](Category:Macros/pt.md) [Category:Workbenches/pt](Category:Workbenches/pt.md) + +--- +[documentation index](../README.md) > Category:User Documentation/pt diff --git a/wiki/translations/pt/Category:Wiki.md b/wiki/translations/pt/Category:Wiki.md index 0a59a8b3e3..dfe3ff66e8 100644 --- a/wiki/translations/pt/Category:Wiki.md +++ b/wiki/translations/pt/Category:Wiki.md @@ -6,3 +6,6 @@ This category contains all documents that relate to the Wiki. [Localisation/pt](Localisation/pt.md) [Category:Administration/pt](Category:Administration/pt.md) [Category:Categories/pt](Category:Categories/pt.md) [Category:Documentation/pt](Category:Documentation/pt.md) + +--- +[documentation index](../README.md) > Category:Wiki/pt diff --git a/wiki/translations/pt/Category:Workbenches.md b/wiki/translations/pt/Category:Workbenches.md index 2dd101701d..2b8acd37ec 100644 --- a/wiki/translations/pt/Category:Workbenches.md +++ b/wiki/translations/pt/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/pt](Arch_Workbench/pt.md) , [Draft Workbench/pt](Draft_Workbench/pt.md) , [FEM Workbench/pt](FEM_Workbench/pt.md) , [Image Workbench/pt](Image_Workbench/pt.md) , [Inspection Workbench/pt](Inspection_Workbench/pt.md) , [Mesh Workbench/pt](Mesh_Workbench/pt.md) , [OpenSCAD Workbench/pt](OpenSCAD_Workbench/pt.md) , [Part Module/pt](Part_Module/pt.md) , [PartDesign Workbench/pt](PartDesign_Workbench/pt.md) , [Path Workbench/pt](Path_Workbench/pt.md) , [Points Workbench/pt](Points_Workbench/pt.md) , [Raytracing Workbench/pt](Raytracing_Workbench/pt.md) , [Reverse Engineering Workbench/pt](Reverse_Engineering_Workbench/pt.md) , [Robot Workbench/pt](Robot_Workbench/pt.md) , [Sketcher Workbench/pt](Sketcher_Workbench/pt.md) , [Spreadsheet Workbench/pt](Spreadsheet_Workbench/pt.md) , [Start Workbench/pt](Start_Workbench/pt.md) , [Std Tools Menu/pt](Std_Tools_Menu/pt.md) , [Surface Workbench/pt](Surface_Workbench/pt.md) , [TechDraw Workbench/pt](TechDraw_Workbench/pt.md) , [Web Workbench/pt](Web_Workbench/pt.md) , [Workbenches/pt](Workbenches/pt.md) , , , , , , , , , , , , , , , , [Category:User Documentation/pt](Category:User_Documentation/pt.md) [Category:Draft/pt](Category:Draft/pt.md) [Category:External Workbenches/pt](Category:External_Workbenches/pt.md) [Category:FEM/pt](Category:FEM/pt.md) [Category:Image/pt](Category:Image/pt.md) [Category:Inspection/pt](Category:Inspection/pt.md) [Category:Mesh/pt](Category:Mesh/pt.md) [Category:OpenSCAD/pt](Category:OpenSCAD/pt.md) [Category:Part/pt](Category:Part/pt.md) [Category:Path/pt](Category:Path/pt.md) [Category:Plot/pt](Category:Plot/pt.md) [Category:Points/pt](Category:Points/pt.md) [Category:Raytracing/pt](Category:Raytracing/pt.md) [Category:Robot/pt](Category:Robot/pt.md) [Category:Ship/pt](Category:Ship/pt.md) [Category:Surface/pt](Category:Surface/pt.md) [Category:TechDraw/pt](Category:TechDraw/pt.md) + +--- +[documentation index](../README.md) > Category:Workbenches/pt diff --git a/wiki/translations/pt/CompileOnMac.md b/wiki/translations/pt/CompileOnMac.md index 998a2c7cc5..f6b1cc5c7f 100644 --- a/wiki/translations/pt/CompileOnMac.md +++ b/wiki/translations/pt/CompileOnMac.md @@ -1,2 +1,5 @@ # CompileOnMac/pt 1. REDIRECT [Compile on MacOS/pt](Compile_on_MacOS/pt.md) + +--- +[documentation index](../README.md) > CompileOnMac/pt diff --git a/wiki/translations/pt/CompileOnUnix.md b/wiki/translations/pt/CompileOnUnix.md index 8c9ca29314..14e6bfeacf 100644 --- a/wiki/translations/pt/CompileOnUnix.md +++ b/wiki/translations/pt/CompileOnUnix.md @@ -1,2 +1,5 @@ # CompileOnUnix/pt 1. REDIRECT [Compile\_on\_Linux/pt](Compile_on_Linux/pt.md) + +--- +[documentation index](../README.md) > CompileOnUnix/pt diff --git a/wiki/translations/pt/CompileOnWindows.md b/wiki/translations/pt/CompileOnWindows.md index 1b7ca02d0d..4452466e48 100644 --- a/wiki/translations/pt/CompileOnWindows.md +++ b/wiki/translations/pt/CompileOnWindows.md @@ -1,2 +1,5 @@ # CompileOnWindows/pt 1. REDIRECT [Compile on Windows/pt](Compile_on_Windows/pt.md) + +--- +[documentation index](../README.md) > CompileOnWindows/pt diff --git a/wiki/translations/pt/Compile_on_Linux.md b/wiki/translations/pt/Compile_on_Linux.md index 079e813cc6..e735aebdaf 100644 --- a/wiki/translations/pt/Compile_on_Linux.md +++ b/wiki/translations/pt/Compile_on_Linux.md @@ -1,10 +1,4 @@ # Compile on Linux/pt - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -1216,3 +1210,6 @@ To update FreeCAD to latest build just repeat from step 3. Update AUR repo when [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Linux/pt diff --git a/wiki/translations/pt/Compile_on_MacOS.md b/wiki/translations/pt/Compile_on_MacOS.md index 0bb398abcb..cf0cae8818 100644 --- a/wiki/translations/pt/Compile_on_MacOS.md +++ b/wiki/translations/pt/Compile_on_MacOS.md @@ -1,10 +1,4 @@ # Compile on MacOS/pt - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -194,3 +188,6 @@ FreeCAD can be built against the latest git master hosted on github, and launche [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS/pt diff --git a/wiki/translations/pt/Compile_on_Windows.md b/wiki/translations/pt/Compile_on_Windows.md index f0226a2434..d785479f32 100644 --- a/wiki/translations/pt/Compile_on_Windows.md +++ b/wiki/translations/pt/Compile_on_Windows.md @@ -1,10 +1,4 @@ # Compile on Windows/pt - - - - - - {{TOCright}} This page explains step by step **how to compile FreeCAD 0.19 or newer on Windows**. For other platforms see [Compiling](Compiling.md). @@ -471,3 +465,6 @@ See also [Category:Developer Documentation/pt](Category:Developer_Documentation/pt.md) [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows/pt diff --git a/wiki/translations/pt/Complete_Workbench.md b/wiki/translations/pt/Complete_Workbench.md index 4f273a0a79..25dca27899 100644 --- a/wiki/translations/pt/Complete_Workbench.md +++ b/wiki/translations/pt/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/pt - - - **The [[Complete Workbench]] is deprecated.** @@ -14,3 +11,6 @@ See [Interface Customization](Interface_Customization.md) if you\'d like to adap [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/pt diff --git a/wiki/translations/pt/Contributors.md b/wiki/translations/pt/Contributors.md index c5b15309ba..030ff7e87a 100644 --- a/wiki/translations/pt/Contributors.md +++ b/wiki/translations/pt/Contributors.md @@ -1,10 +1,4 @@ # Contributors/pt - - - - - - {{TOCright}} @@ -259,3 +253,6 @@ Desenvolvedores de Extras para FreeCAD (obtido a partir de [Developer](Category:Developer.md) > Contributors/pt diff --git a/wiki/translations/pt/Debugging.md b/wiki/translations/pt/Debugging.md index b76c43d271..aba554a65e 100644 --- a/wiki/translations/pt/Debugging.md +++ b/wiki/translations/pt/Debugging.md @@ -1,10 +1,4 @@ # Debugging/pt - - - - - - {{TOCright}} ## Test First @@ -336,3 +330,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/pt diff --git a/wiki/translations/pt/Developer_hub.md b/wiki/translations/pt/Developer_hub.md index d2958bedaa..00463092bc 100644 --- a/wiki/translations/pt/Developer_hub.md +++ b/wiki/translations/pt/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/pt - - ![150](images/Crystal_Clear_app_tutorials.png ) This is the place to come if you want to contribute to the development of the FreeCAD software. @@ -126,3 +124,6 @@ FreeCAD, though usable in certain areas, is at the beginning of a long way into [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/pt diff --git a/wiki/translations/pt/Development_roadmap.md b/wiki/translations/pt/Development_roadmap.md index 2c0e13ab0f..f2e7a1b0a6 100644 --- a/wiki/translations/pt/Development_roadmap.md +++ b/wiki/translations/pt/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/pt - **Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** +**Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** FreeCAD - though usable in many applications - is at the beginning of a long journey into CAD mainstream. There is still a lot to do to reach a state where we can compete with commercial software. @@ -44,3 +44,6 @@ Like in the most [FLOSS](http://en.wikipedia.org/wiki/FLOSS) projects a release [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/pt diff --git a/wiki/translations/pt/Document_structure.md b/wiki/translations/pt/Document_structure.md index 51b69def35..c1c4500c15 100644 --- a/wiki/translations/pt/Document_structure.md +++ b/wiki/translations/pt/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/pt - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) O documento FreeCAD contém todos os objectos da sua cena. Ele pode conter grupos e objectos feitos com qualquer bancada. Portanto, você pode alternar entre bancadas de trabalho, e ainda trabalhar no mesmo documento. O documento é o que fica guardado no disco quando você salvar seu trabalho. Você também pode abrir vários documentos ao mesmo tempo em FreeCAD e abra várias vistas do mesmo documento. @@ -85,5 +79,5 @@ FreeCADGui.ActiveDocument.ActiveView
- - +--- +[documentation index](../README.md) > Document structure/pt diff --git a/wiki/translations/pt/Download.md b/wiki/translations/pt/Download.md index 7da6499c78..9bc0740cd2 100644 --- a/wiki/translations/pt/Download.md +++ b/wiki/translations/pt/Download.md @@ -1,5 +1,5 @@ # Download/pt - {{TOCright}} +{{TOCright}}
@@ -86,5 +86,5 @@ The FreeCAD community provides a wealth of additional modules and macros. They c
- - +--- +[documentation index](../README.md) > Download/pt diff --git a/wiki/translations/pt/Draft_Module.md b/wiki/translations/pt/Draft_Module.md index caa8f10bca..2d58f7e096 100644 --- a/wiki/translations/pt/Draft_Module.md +++ b/wiki/translations/pt/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/pt 1. REDIRECT [Draft\_Workbench/pt](Draft_Workbench/pt.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/pt diff --git a/wiki/translations/pt/Draft_Workbench.md b/wiki/translations/pt/Draft_Workbench.md index 6c6916b415..1a3e459380 100644 --- a/wiki/translations/pt/Draft_Workbench.md +++ b/wiki/translations/pt/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/pt - - - - - -Draft workbench icon +# Draft workbench icon Draft Workbench/pt {{TOCright}} @@ -361,3 +355,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/pt diff --git a/wiki/translations/pt/Draft_tutorial.md b/wiki/translations/pt/Draft_tutorial.md index ad98d6a82f..796ca633e4 100644 --- a/wiki/translations/pt/Draft_tutorial.md +++ b/wiki/translations/pt/Draft_tutorial.md @@ -1,7 +1,4 @@ # Draft tutorial/pt - - -
@@ -398,4 +395,7 @@ The [Draft Workbench](Draft_Workbench.md) in many ways is similar to the [Sketch {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft tutorial/pt diff --git a/wiki/translations/pt/Drawing_Module.md b/wiki/translations/pt/Drawing_Module.md index e25de87ce0..a14d66e6ce 100644 --- a/wiki/translations/pt/Drawing_Module.md +++ b/wiki/translations/pt/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/pt 1. REDIRECT [Drawing\_Workbench/pt](Drawing_Workbench/pt.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/pt diff --git a/wiki/translations/pt/Drawing_Workbench.md b/wiki/translations/pt/Drawing_Workbench.md index 65a260600d..00fcb994a4 100644 --- a/wiki/translations/pt/Drawing_Workbench.md +++ b/wiki/translations/pt/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/pt - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** Drawing workbench icon @@ -84,3 +81,6 @@ Some notes on the programming side of the drawing module will be added to the [D }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/pt diff --git a/wiki/translations/pt/Embedding_FreeCAD.md b/wiki/translations/pt/Embedding_FreeCAD.md index 40562cc48a..a08c254bff 100644 --- a/wiki/translations/pt/Embedding_FreeCAD.md +++ b/wiki/translations/pt/Embedding_FreeCAD.md @@ -1,7 +1,4 @@ # Embedding FreeCAD/pt - - - {{TOCright}} ## Introduction @@ -134,3 +131,6 @@ Since the FreeCAD Python module is compiled from C++ (rather than being a pure P }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCAD/pt diff --git a/wiki/translations/pt/External_workbenches.md b/wiki/translations/pt/External_workbenches.md index 883fa8363b..87c22c208e 100644 --- a/wiki/translations/pt/External_workbenches.md +++ b/wiki/translations/pt/External_workbenches.md @@ -1,10 +1,4 @@ # External workbenches/pt - - - - - - {{TOCright}} ## Introduction @@ -142,3 +136,6 @@ See the wiki page for more information [Translating an external workbench](Trans [Category:Addons](Category:Addons.md) [\*](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > External workbenches/pt diff --git a/wiki/translations/pt/FEM_Module.md b/wiki/translations/pt/FEM_Module.md index 203d239b41..1cef96aee5 100644 --- a/wiki/translations/pt/FEM_Module.md +++ b/wiki/translations/pt/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/pt 1. REDIRECT [FEM\_Workbench/pt](FEM_Workbench/pt.md) + +--- +[documentation index](../README.md) > FEM Module/pt diff --git a/wiki/translations/pt/FEM_Workbench.md b/wiki/translations/pt/FEM_Workbench.md index 2c28252517..feddb758b4 100644 --- a/wiki/translations/pt/FEM_Workbench.md +++ b/wiki/translations/pt/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/pt - - - - - -FEM workbench icon +# FEM workbench icon FEM Workbench/pt {{TOCright}} @@ -286,3 +280,6 @@ A developer\'s guide has been written to help power users in understanding the c }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/pt diff --git a/wiki/translations/pt/Fcstd_file_format.md b/wiki/translations/pt/Fcstd_file_format.md index 958cd5a23d..c9b81ac179 100644 --- a/wiki/translations/pt/Fcstd_file_format.md +++ b/wiki/translations/pt/Fcstd_file_format.md @@ -1,2 +1,5 @@ # Fcstd file format/pt 1. REDIRECT [File\_Format\_FCStd/pt](File_Format_FCStd/pt.md) + +--- +[documentation index](../README.md) > Fcstd file format/pt diff --git a/wiki/translations/pt/Feature_list.md b/wiki/translations/pt/Feature_list.md index df9aed0777..5869e8c518 100644 --- a/wiki/translations/pt/Feature_list.md +++ b/wiki/translations/pt/Feature_list.md @@ -1,7 +1,4 @@ # Feature list/pt - - -
Esta é uma lista extensiva, ainda que incompleta dos recursos que o FreeCAD disponibiliza. Se quiser ter uma ideia de como será o FreeCAD no futuro consulte [Development roadmap](Development_roadmap/pt.md) para uma rápida visão geral do que vem aí. Além disso, a consulta de [Screenshots](Screenshots/pt.md) pode ser interessante. @@ -287,3 +284,6 @@ Utilizadores avançados criaram várias [Bancadas de trabalho externas](external [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/pt diff --git a/wiki/translations/pt/File_Format_FCStd.md b/wiki/translations/pt/File_Format_FCStd.md index 228e9c28aa..15a90f0dfb 100644 --- a/wiki/translations/pt/File_Format_FCStd.md +++ b/wiki/translations/pt/File_Format_FCStd.md @@ -1,5 +1,5 @@ # File Format FCStd/pt - {{TOCright}} +{{TOCright}} ## Overview @@ -167,3 +167,6 @@ See the forum thread, [PDF inside the project](https://forum.freecadweb.org/view [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > File Format FCStd/pt diff --git a/wiki/translations/pt/FreeCADShip_Workbench.md b/wiki/translations/pt/FreeCADShip_Workbench.md index cebede1e30..2c2e61fc0e 100644 --- a/wiki/translations/pt/FreeCADShip_Workbench.md +++ b/wiki/translations/pt/FreeCADShip_Workbench.md @@ -1,2 +1,5 @@ # FreeCADShip Workbench/pt 1. REDIRECT [Ship\_Workbench/pt](Ship_Workbench/pt.md) + +--- +[documentation index](../README.md) > FreeCADShip Workbench/pt diff --git a/wiki/translations/pt/FreeCAD_Scripting_Basics.md b/wiki/translations/pt/FreeCAD_Scripting_Basics.md index 6f9687aa1a..9ef983ebf8 100644 --- a/wiki/translations/pt/FreeCAD_Scripting_Basics.md +++ b/wiki/translations/pt/FreeCAD_Scripting_Basics.md @@ -1,7 +1,4 @@ # FreeCAD Scripting Basics/pt - - - {{TOCright}} ## Python scripting in FreeCAD @@ -211,3 +208,6 @@ Now you can really start playing with FreeCAD! For a complete list of available }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Scripting Basics/pt diff --git a/wiki/translations/pt/Getting_started.md b/wiki/translations/pt/Getting_started.md index a49295cba3..100e4f3bc7 100644 --- a/wiki/translations/pt/Getting_started.md +++ b/wiki/translations/pt/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/pt - - - - - - {{TOCright}} ## Introdução @@ -348,3 +342,6 @@ E finalmente, um dos recursos mais poderoso do FreeCAD é o ambiente de [ progra [Category:User Documentation/pt](Category:User_Documentation/pt.md) + +--- +[documentation index](../README.md) > Getting started/pt diff --git a/wiki/translations/pt/Gui_Command.md b/wiki/translations/pt/Gui_Command.md index 530cb4bd0d..82adb1e906 100644 --- a/wiki/translations/pt/Gui_Command.md +++ b/wiki/translations/pt/Gui_Command.md @@ -1,5 +1,5 @@ # Gui Command/pt - The GuiCommand is one of the most important functions of FreeCAD in the main interaction point of the user. Every time the user selects a menu item or presses a toolbar button it activates a GuiCommand. Some of the attributes of a GuiCommand are: +The GuiCommand is one of the most important functions of FreeCAD in the main interaction point of the user. Every time the user selects a menu item or presses a toolbar button it activates a GuiCommand. Some of the attributes of a GuiCommand are: - Defines a name - Contains an icon @@ -60,4 +60,7 @@ Hopefully this becomes true for all GuiCommands in the [List of Commands](List_o {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Gui Command/pt diff --git a/wiki/translations/pt/Help_FreeCAD.md b/wiki/translations/pt/Help_FreeCAD.md index 83170a8a5b..e448a74bfd 100644 --- a/wiki/translations/pt/Help_FreeCAD.md +++ b/wiki/translations/pt/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/pt - - ## Introduction @@ -87,3 +85,6 @@ Writing code for FreeCAD is not hard, and you don\'t need any permission, you ca [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command Reference]] page lists and documents all of the FreeCAD ](Category:Command Reference]] page lists and documents all of the FreeCAD .md) > Help FreeCAD/pt diff --git a/wiki/translations/pt/History.md b/wiki/translations/pt/History.md index 182c6f5da2..b9c8a30f40 100644 --- a/wiki/translations/pt/History.md +++ b/wiki/translations/pt/History.md @@ -1,5 +1,5 @@ # History/pt - \_\_FORCETOC\_\_ +\_\_FORCETOC\_\_
@@ -144,3 +144,6 @@ In April 2019 the team of core developers was expanded: Jürgen, Werner and Yori - [Announcing FreeCAD Project](http://www.opencascade.org/org/forum/thread_6572/?forum=11) on the OpenCascade forum [Category:News](Category:News.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > History/pt diff --git a/wiki/translations/pt/Image_Module.md b/wiki/translations/pt/Image_Module.md index 47da98bed7..f056078117 100644 --- a/wiki/translations/pt/Image_Module.md +++ b/wiki/translations/pt/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/pt 1. REDIRECT [Image\_Workbench/pt](Image_Workbench/pt.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/pt diff --git a/wiki/translations/pt/Image_Workbench.md b/wiki/translations/pt/Image_Workbench.md index 208e5169f5..a339c12fc0 100644 --- a/wiki/translations/pt/Image_Workbench.md +++ b/wiki/translations/pt/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/pt - - -Image workbench icon +# Image workbench icon Image Workbench/pt ## Introduction @@ -39,3 +36,6 @@ The offset of the image can be set during import, or changed later through its p }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/pt diff --git a/wiki/translations/pt/Import_Export.md b/wiki/translations/pt/Import_Export.md index 0c0881317d..af3346be25 100644 --- a/wiki/translations/pt/Import_Export.md +++ b/wiki/translations/pt/Import_Export.md @@ -1,9 +1,4 @@ # Import Export/pt - - - - - ## Introduction This page lists the various file formats that FreeCAD can import and export. For completeness the FreeCAD native format is included in the list. Some formats have a related wiki page that can be reached by clicking on the extension in the first column. @@ -144,3 +139,6 @@ See the following pages for additional information: [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export/pt diff --git a/wiki/translations/pt/Inspection_Workbench.md b/wiki/translations/pt/Inspection_Workbench.md index dbeff4331b..c14fb873bb 100644 --- a/wiki/translations/pt/Inspection_Workbench.md +++ b/wiki/translations/pt/Inspection_Workbench.md @@ -1,7 +1,4 @@ -# Inspection Workbench/pt - - -Inspection workbench icon +# Inspection workbench icon Inspection Workbench/pt ## Introduction @@ -27,3 +24,6 @@ Alternatively, use the macro Inspection Workbench/pt diff --git a/wiki/translations/pt/Install_on_Linux.md b/wiki/translations/pt/Install_on_Linux.md index d3d71f64ae..b1fad3f04b 100644 --- a/wiki/translations/pt/Install_on_Linux.md +++ b/wiki/translations/pt/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/pt 1. REDIRECT [Installing\_on\_Linux/pt](Installing_on_Linux/pt.md) + +--- +[documentation index](../README.md) > Install on Linux/pt diff --git a/wiki/translations/pt/Install_on_Mac.md b/wiki/translations/pt/Install_on_Mac.md index 84a4a44bc3..63312cbf0e 100644 --- a/wiki/translations/pt/Install_on_Mac.md +++ b/wiki/translations/pt/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/pt 1. REDIRECT [Installing\_on\_Mac/pt](Installing_on_Mac/pt.md) + +--- +[documentation index](../README.md) > Install on Mac/pt diff --git a/wiki/translations/pt/Install_on_Unix.md b/wiki/translations/pt/Install_on_Unix.md index 0c08b0020b..59250b53bc 100644 --- a/wiki/translations/pt/Install_on_Unix.md +++ b/wiki/translations/pt/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/pt 1. REDIRECT [Installing\_on\_Linux/pt](Installing_on_Linux/pt.md) + +--- +[documentation index](../README.md) > Install on Unix/pt diff --git a/wiki/translations/pt/Install_on_Windows.md b/wiki/translations/pt/Install_on_Windows.md index 9e2a3001fd..38c7071a93 100644 --- a/wiki/translations/pt/Install_on_Windows.md +++ b/wiki/translations/pt/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/pt 1. REDIRECT [Installing\_on\_Windows/pt](Installing_on_Windows/pt.md) + +--- +[documentation index](../README.md) > Install on Windows/pt diff --git a/wiki/translations/pt/Installing.md b/wiki/translations/pt/Installing.md index bcb1b3da33..342b23ad03 100644 --- a/wiki/translations/pt/Installing.md +++ b/wiki/translations/pt/Installing.md @@ -1,2 +1,5 @@ # Installing/pt 1. REDIRECT [Installing\_additional\_components/pt](Installing_additional_components/pt.md) + +--- +[documentation index](../README.md) > Installing/pt diff --git a/wiki/translations/pt/Installing_additional_components.md b/wiki/translations/pt/Installing_additional_components.md index 0b65328de4..fbf71a790a 100644 --- a/wiki/translations/pt/Installing_additional_components.md +++ b/wiki/translations/pt/Installing_additional_components.md @@ -1,10 +1,4 @@ # Installing additional components/pt - - - - - - {{TOCright}} # Introduction @@ -142,3 +136,6 @@ The [ODA File Converter](https://www.opendesign.com/guestfiles/oda_file_converte
[Category:User\_Documentation/pt](Category:User_Documentation/pt.md) + +--- +[documentation index](../README.md) > Installing additional components/pt diff --git a/wiki/translations/pt/Installing_on_Linux.md b/wiki/translations/pt/Installing_on_Linux.md index 2a222ba569..0516a36f0e 100644 --- a/wiki/translations/pt/Installing_on_Linux.md +++ b/wiki/translations/pt/Installing_on_Linux.md @@ -1,7 +1,4 @@ # Installing on Linux/pt - - -
@@ -383,3 +380,6 @@ Once you\'ve got FreeCAD installed, it\'s time to [get started](Getting_started. [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/pt diff --git a/wiki/translations/pt/Installing_on_Mac.md b/wiki/translations/pt/Installing_on_Mac.md index d521bdc2a9..f4c42e8850 100644 --- a/wiki/translations/pt/Installing_on_Mac.md +++ b/wiki/translations/pt/Installing_on_Mac.md @@ -1,10 +1,4 @@ # Installing on Mac/pt - - - - - -
A instalação em Mac OSX pode ser feita num passo usando o Instalador. {{DownloadMacStable}} @@ -73,5 +67,5 @@ Neste momento não há um desinstalador para o FreeCAD. Para o remover completam
- - +--- +[documentation index](../README.md) > Installing on Mac/pt diff --git a/wiki/translations/pt/Installing_on_Windows.md b/wiki/translations/pt/Installing_on_Windows.md index 0bbcdab7a6..69ce65c9f9 100644 --- a/wiki/translations/pt/Installing_on_Windows.md +++ b/wiki/translations/pt/Installing_on_Windows.md @@ -1,9 +1,4 @@ # Installing on Windows/pt - - - - - A maneira mais fácil de instalar o FreeCAD no Windows é correndo o programa de instalação seguinte: @@ -237,5 +232,5 @@ FreeCAD is running, but it has been reported that the OpenGL display does not wo
- - +--- +[documentation index](../README.md) > Installing on Windows/pt diff --git a/wiki/translations/pt/Interface_Customization.md b/wiki/translations/pt/Interface_Customization.md index 7ce1b0db6c..f9f25f60d5 100644 --- a/wiki/translations/pt/Interface_Customization.md +++ b/wiki/translations/pt/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/pt - - - - - - {{TOCright}} ## Introduction @@ -299,4 +293,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/pt diff --git a/wiki/translations/pt/Introduction_to_Python.md b/wiki/translations/pt/Introduction_to_Python.md index 5a561abb93..749907f413 100644 --- a/wiki/translations/pt/Introduction_to_Python.md +++ b/wiki/translations/pt/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/pt - - - {{TOCright}} ## Introduction @@ -501,3 +498,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/pt diff --git a/wiki/translations/pt/List_of_Commands.md b/wiki/translations/pt/List_of_Commands.md index 600c00499a..5271192bd0 100644 --- a/wiki/translations/pt/List_of_Commands.md +++ b/wiki/translations/pt/List_of_Commands.md @@ -1,2 +1,5 @@ # List of Commands/pt 1. REDIRECT [:Category:Command Reference/pt](:Category:Command_Reference/pt.md) + +--- +[documentation index](../README.md) > List of Commands/pt diff --git a/wiki/translations/pt/Localisation.md b/wiki/translations/pt/Localisation.md index 444e2bad69..d6feeee286 100644 --- a/wiki/translations/pt/Localisation.md +++ b/wiki/translations/pt/Localisation.md @@ -1,10 +1,4 @@ # Localisation/pt - - - - - - {{TOCright}} ## Overview @@ -239,3 +233,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/pt diff --git a/wiki/translations/pt/Macros.md b/wiki/translations/pt/Macros.md index 28b87338d1..d9fe031c89 100644 --- a/wiki/translations/pt/Macros.md +++ b/wiki/translations/pt/Macros.md @@ -1,7 +1,4 @@ # Macros/pt - - - {{TOCright}} ## Introduction @@ -80,3 +77,6 @@ You can manually install extensions, however, it is much simpler to just use the }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/pt diff --git a/wiki/translations/pt/Main_Page.md b/wiki/translations/pt/Main_Page.md index 51e26d14df..b9b88e3aad 100644 --- a/wiki/translations/pt/Main_Page.md +++ b/wiki/translations/pt/Main_Page.md @@ -1,7 +1,4 @@ # Main Page/pt - - -
## Introducão @@ -107,3 +104,6 @@ Visite o [ Mapa de desenvolvimento](Development_roadmap/en.md) para ver notícia [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/pt diff --git a/wiki/translations/pt/Mesh_Module.md b/wiki/translations/pt/Mesh_Module.md index 21e5381179..09e6f0582a 100644 --- a/wiki/translations/pt/Mesh_Module.md +++ b/wiki/translations/pt/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/pt 1. REDIRECT [Mesh Workbench/pt](Mesh_Workbench/pt.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/pt diff --git a/wiki/translations/pt/Mesh_Workbench.md b/wiki/translations/pt/Mesh_Workbench.md index 95b5a3596b..34e3298158 100644 --- a/wiki/translations/pt/Mesh_Workbench.md +++ b/wiki/translations/pt/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/pt - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench/pt {{TOCright}} @@ -117,3 +111,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/pt diff --git a/wiki/translations/pt/Mouse_Model.md b/wiki/translations/pt/Mouse_Model.md index c66036aadf..c01081bd7c 100644 --- a/wiki/translations/pt/Mouse_Model.md +++ b/wiki/translations/pt/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/pt 1. REDIRECT [Mouse\_navigation/pt](Mouse_navigation/pt.md) + +--- +[documentation index](../README.md) > Mouse Model/pt diff --git a/wiki/translations/pt/Mouse_navigation.md b/wiki/translations/pt/Mouse_navigation.md index d7c77272cb..5c25fceb9c 100644 --- a/wiki/translations/pt/Mouse_navigation.md +++ b/wiki/translations/pt/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/pt - - - - - - {{TOCright}} ## Overview @@ -376,5 +370,5 @@ The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mous {{docnav/pt|Getting started/pt|Document structure/pt}} - - +--- +[documentation index](../README.md) > Mouse navigation/pt diff --git a/wiki/translations/pt/Offsite_tutorials.md b/wiki/translations/pt/Offsite_tutorials.md index ba20dc75f1..9b6be81207 100644 --- a/wiki/translations/pt/Offsite_tutorials.md +++ b/wiki/translations/pt/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/pt - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** This page lists FreeCAD tutorials found on other sites on the web. @@ -18,4 +18,7 @@ This page lists FreeCAD tutorials found on other sites on the web. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/pt diff --git a/wiki/translations/pt/Online_Help_Startpage.md b/wiki/translations/pt/Online_Help_Startpage.md index 4164a25e2b..a67bd79286 100644 --- a/wiki/translations/pt/Online_Help_Startpage.md +++ b/wiki/translations/pt/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/pt - - ![150](images/Crystal_Clear_app_tutorials.png ) ## Bem-vindo à ajuda online do FreeCAD @@ -46,3 +44,6 @@ Como já deve ter reparado, os programadores são muito maus a escrever document [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/pt diff --git a/wiki/translations/pt/Online_Help_Toc.md b/wiki/translations/pt/Online_Help_Toc.md index e55d8178bd..4413132801 100644 --- a/wiki/translations/pt/Online_Help_Toc.md +++ b/wiki/translations/pt/Online_Help_Toc.md @@ -1,6 +1,4 @@ # Online Help Toc/pt - - Este é a tabela de conteúdos usada para a construção automática do sistema *\'Ajuda Online* do FreeCAD. Uma versão para impressão deste manual está também disponível na página [releases page](https://github.com/FreeCAD/FreeCAD/releases). Se tiver alguma questão ou precisar de ajuda com o FreeCAD, consulte a página [ajuda](Help/pt.md), incluindo os fóruns e grupos de conversação. Existe outro índice para o [FreeCAD MANUAL](Manual:Introduction.md). @@ -146,3 +144,6 @@ Existe outro índice para o [FreeCAD MANUAL](Manual:Introduction.md). [Documentação](Category:Documentation/pt.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/pt diff --git a/wiki/translations/pt/OpenSCAD_Module.md b/wiki/translations/pt/OpenSCAD_Module.md index d7b0862993..ea06722be9 100644 --- a/wiki/translations/pt/OpenSCAD_Module.md +++ b/wiki/translations/pt/OpenSCAD_Module.md @@ -1,2 +1,5 @@ # OpenSCAD Module/pt 1. REDIRECT [OpenSCAD\_Workbench/pt](OpenSCAD_Workbench/pt.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Module/pt diff --git a/wiki/translations/pt/OpenSCAD_Workbench.md b/wiki/translations/pt/OpenSCAD_Workbench.md index 2e07d8d711..f710768096 100644 --- a/wiki/translations/pt/OpenSCAD_Workbench.md +++ b/wiki/translations/pt/OpenSCAD_Workbench.md @@ -1,10 +1,4 @@ -# OpenSCAD Workbench/pt - - - - - -OpenSCAD workbench icon +# OpenSCAD workbench icon OpenSCAD Workbench/pt ## Introduction @@ -114,3 +108,6 @@ If FreeCAD crashes when importing CSG, it is strongly recommended that you enabl }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/pt diff --git a/wiki/translations/pt/PartDesign_Legacy.md b/wiki/translations/pt/PartDesign_Legacy.md index 3593c13f1d..b455cf4058 100644 --- a/wiki/translations/pt/PartDesign_Legacy.md +++ b/wiki/translations/pt/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/pt 1. REDIRECT [PartDesign\_Workbench/pt](PartDesign_Workbench/pt.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/pt diff --git a/wiki/translations/pt/PartDesign_Workbench.md b/wiki/translations/pt/PartDesign_Workbench.md index 284464e4a5..01f08a5807 100644 --- a/wiki/translations/pt/PartDesign_Workbench.md +++ b/wiki/translations/pt/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/pt - - -PartDesign workbench icon +# PartDesign workbench icon PartDesign Workbench/pt {{TOCright}} @@ -223,3 +220,6 @@ Some additional functionality found in the Part Design menu: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/pt diff --git a/wiki/translations/pt/Part_Module.md b/wiki/translations/pt/Part_Module.md index 41e4c6b42e..2b9542e814 100644 --- a/wiki/translations/pt/Part_Module.md +++ b/wiki/translations/pt/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/pt - - - - - -Part workbench icon +# Part workbench icon Part Module/pt {{TOCright}} @@ -219,3 +213,6 @@ See [Part scripting](Part_scripting.md). [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/pt diff --git a/wiki/translations/pt/Part_Workbench.md b/wiki/translations/pt/Part_Workbench.md index a233a691af..75fbf4195d 100644 --- a/wiki/translations/pt/Part_Workbench.md +++ b/wiki/translations/pt/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/pt 1. REDIRECT [Part\_Module/pt](Part_Module/pt.md) + +--- +[documentation index](../README.md) > Part Workbench/pt diff --git a/wiki/translations/pt/Path_Workbench.md b/wiki/translations/pt/Path_Workbench.md index 42edc9c9d2..fa3060f531 100644 --- a/wiki/translations/pt/Path_Workbench.md +++ b/wiki/translations/pt/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/pt - - - - - -Path workbench icon +# Path workbench icon Path Workbench/pt {{TOCright}} @@ -228,3 +222,6 @@ See [Path scripting](Path_scripting.md). }} [Category:User Documentation/pt](Category:User_Documentation/pt.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench/pt diff --git a/wiki/translations/pt/Plot_Module.md b/wiki/translations/pt/Plot_Module.md index bf35f1b7fd..840f439474 100644 --- a/wiki/translations/pt/Plot_Module.md +++ b/wiki/translations/pt/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/pt - - -Plot workbench icon +# Plot workbench icon Plot Module/pt {{TOCright}} @@ -64,3 +61,6 @@ Since the Plot Workbench is a layer on top of `matplotlib`, you are free to use }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/pt diff --git a/wiki/translations/pt/Plot_Workbench.md b/wiki/translations/pt/Plot_Workbench.md index 9b94e88ba2..631808750e 100644 --- a/wiki/translations/pt/Plot_Workbench.md +++ b/wiki/translations/pt/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/pt 1. REDIRECT [Plot\_Module/pt](Plot_Module/pt.md) + +--- +[documentation index](../README.md) > Plot Workbench/pt diff --git a/wiki/translations/pt/Points_Module.md b/wiki/translations/pt/Points_Module.md index d877cc21a6..0a48760438 100644 --- a/wiki/translations/pt/Points_Module.md +++ b/wiki/translations/pt/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/pt 1. REDIRECT [Points\_Workbench/pt](Points_Workbench/pt.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/pt diff --git a/wiki/translations/pt/Points_Workbench.md b/wiki/translations/pt/Points_Workbench.md index 474b034f5c..1a33521cff 100644 --- a/wiki/translations/pt/Points_Workbench.md +++ b/wiki/translations/pt/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/pt - - - - - -Points workbench icon +# Points workbench icon Points Workbench/pt ## Introduction @@ -51,3 +45,6 @@ All Points Workbench tools can be accessed from the **Points** menu. Some tools }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/pt diff --git a/wiki/translations/pt/Power_users_hub.md b/wiki/translations/pt/Power_users_hub.md index 8442988cfc..1fda6d2834 100644 --- a/wiki/translations/pt/Power_users_hub.md +++ b/wiki/translations/pt/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/pt - +# Power users hub/pt ------------------------------------------------------------------------ @@ -135,3 +134,6 @@ On the [Community portal](FreeCAD_Community_Portal.md), you can find other FreeC }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/pt diff --git a/wiki/translations/pt/Preferences_Editor.md b/wiki/translations/pt/Preferences_Editor.md index 6a17850022..63150f655d 100644 --- a/wiki/translations/pt/Preferences_Editor.md +++ b/wiki/translations/pt/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/pt - - - - - - {{TOCright}} ## Introduction @@ -716,3 +710,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/pt diff --git a/wiki/translations/pt/Property.md b/wiki/translations/pt/Property.md index 30bb08ff9c..66a3da8801 100644 --- a/wiki/translations/pt/Property.md +++ b/wiki/translations/pt/Property.md @@ -1,6 +1,4 @@ # Property/pt - - ## Introduction @@ -158,3 +156,6 @@ They are imported and initialized in `[https://github.com/FreeCAD/FreeCAD/blob/9 }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/pt diff --git a/wiki/translations/pt/Property_editor.md b/wiki/translations/pt/Property_editor.md index d145643b21..b25a4dae66 100644 --- a/wiki/translations/pt/Property_editor.md +++ b/wiki/translations/pt/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/pt - - - - - - {{TOCright}} ## Introduction @@ -388,4 +382,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/pt diff --git a/wiki/translations/pt/PySide.md b/wiki/translations/pt/PySide.md index 9e6a6735f6..b24ab34e34 100644 --- a/wiki/translations/pt/PySide.md +++ b/wiki/translations/pt/PySide.md @@ -1,7 +1,4 @@ # PySide/pt - - - {{TOCright}} ## Introduction @@ -75,3 +72,6 @@ The PySide documentation refers to the Python-style classes; however, since Qt i }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide/pt diff --git a/wiki/translations/pt/Python_scripting_tutorial.md b/wiki/translations/pt/Python_scripting_tutorial.md index 0b9ebab3e2..6d99f5f141 100644 --- a/wiki/translations/pt/Python_scripting_tutorial.md +++ b/wiki/translations/pt/Python_scripting_tutorial.md @@ -1,7 +1,4 @@ # Python scripting tutorial/pt - - - {{TOCright}} ## Introduction @@ -292,3 +289,6 @@ Now you are ready for more in-depth FreeCAD scripting. So head on to the [Power }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python scripting tutorial/pt diff --git a/wiki/translations/pt/Ray_Tracing_Workbench.md b/wiki/translations/pt/Ray_Tracing_Workbench.md index 850c5fe052..f356b8623c 100644 --- a/wiki/translations/pt/Ray_Tracing_Workbench.md +++ b/wiki/translations/pt/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/pt 1. REDIRECT [Raytracing\_Workbench/pt](Raytracing_Workbench/pt.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/pt diff --git a/wiki/translations/pt/Raytracing_Module.md b/wiki/translations/pt/Raytracing_Module.md index f1d2cbfb02..7574b84b4b 100644 --- a/wiki/translations/pt/Raytracing_Module.md +++ b/wiki/translations/pt/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/pt 1. REDIRECT [Raytracing\_Workbench/pt](Raytracing_Workbench/pt.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/pt diff --git a/wiki/translations/pt/Raytracing_Workbench.md b/wiki/translations/pt/Raytracing_Workbench.md index e01c842c64..900ca82ef3 100644 --- a/wiki/translations/pt/Raytracing_Workbench.md +++ b/wiki/translations/pt/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/pt - - - **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. Nevertheless, the information in this page is generally useful for the new workbench, as both modules work basically in the same way. @@ -157,3 +154,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/pt diff --git a/wiki/translations/pt/Release_notes_0.15.md b/wiki/translations/pt/Release_notes_0.15.md index fafaa5e186..744d8677d5 100644 --- a/wiki/translations/pt/Release_notes_0.15.md +++ b/wiki/translations/pt/Release_notes_0.15.md @@ -1,5 +1,5 @@ # Release notes 0.15/pt - FreeCAD 0.15 was released on April 8, 2015. This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) +FreeCAD 0.15 was released on April 8, 2015. This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -152,3 +152,6 @@ The [WorkFeature macro](https://github.com/Rentlau/WorkFeature) adds a wide rang [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.15/pt diff --git a/wiki/translations/pt/Release_notes_0.16.md b/wiki/translations/pt/Release_notes_0.16.md index bdd733488a..b1bbae2f55 100644 --- a/wiki/translations/pt/Release_notes_0.16.md +++ b/wiki/translations/pt/Release_notes_0.16.md @@ -1,7 +1,4 @@ # Release notes 0.16/pt - - -
O FreeCAD 0.16 foi lançado a 18 abril, 2016 descarregue aqui [Download](Download.md). Este é o sumário das alterações mais interessantes. A lista completa de alterações pode ser encontrada na [Histórico de alterações](http://www.freecadweb.org/tracker/changelog_page.php). Versões antigas em: [0.15](Release_notes_0.15/pt.md) - [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -142,3 +139,6 @@ A couple of new [addons workbenches](https://github.com/FreeCAD/FreeCAD-addons) ![](images/Macro_installer_02.jpg ) [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.16/pt diff --git a/wiki/translations/pt/Release_notes_0.17.md b/wiki/translations/pt/Release_notes_0.17.md index 7b2dd0568e..575347226b 100644 --- a/wiki/translations/pt/Release_notes_0.17.md +++ b/wiki/translations/pt/Release_notes_0.17.md @@ -1,7 +1,4 @@ # Release notes 0.17/pt - - -
\"Esta versão do FreeCAD é dedicada ao nosso amigo Roland Frank [que nos deixou em 2017](https://forum.freecadweb.org/viewtopic.php?f=8&t=25673). Ele foi um membro do forum do FreeCAD muito ativo e bem apreciado, e os seus videos e tuturiais nos canais do youtube em [Learn FreeCAD](https://www.youtube.com/watch?v=_HEvhclR4-o&list=PL6fZ68Cq3L8k0JhxnIVjZQN26cn9idJrj) and [BPLFRE](https://www.youtube.com/watch?v=m49z0weonog&list=PLsrwVwvqYb8G4Ri0iz1JIebsOXkgoytAY) ajudaram muita gente a iniciar-se no FreeCAD. @@ -305,3 +302,6 @@ Some of the new community modules that were created. - [Kicad StepUp Workbench](https://www.freecadweb.org/wiki/KicadStepUp_Workbench) is aimed to help KiCad and FreeCAD users in ECAD and MCAD collaboration. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.17/pt diff --git a/wiki/translations/pt/Reverse_Engineering_Workbench.md b/wiki/translations/pt/Reverse_Engineering_Workbench.md index 13173c4ccb..606bc38155 100644 --- a/wiki/translations/pt/Reverse_Engineering_Workbench.md +++ b/wiki/translations/pt/Reverse_Engineering_Workbench.md @@ -1,10 +1,4 @@ -# Reverse Engineering Workbench/pt - - - - - -Reverse Engineering workbench icon +# Reverse Engineering workbench icon Reverse Engineering Workbench/pt ## Introduction @@ -29,3 +23,6 @@ Link to appropriate threads discussing this workbench [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench/pt diff --git a/wiki/translations/pt/Robot_Module.md b/wiki/translations/pt/Robot_Module.md index 298ee65d3a..8337de5099 100644 --- a/wiki/translations/pt/Robot_Module.md +++ b/wiki/translations/pt/Robot_Module.md @@ -1,2 +1,5 @@ # Robot Module/pt 1. REDIRECT [Robot Workbench/pt](Robot_Workbench/pt.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Module/pt diff --git a/wiki/translations/pt/Robot_Workbench.md b/wiki/translations/pt/Robot_Workbench.md index a42e586291..5472dad96e 100644 --- a/wiki/translations/pt/Robot_Workbench.md +++ b/wiki/translations/pt/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/pt - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. @@ -87,3 +81,6 @@ See the [Robot API example](Robot_API_example.md) for a description of the funct }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/pt diff --git a/wiki/translations/pt/Scenegraph.md b/wiki/translations/pt/Scenegraph.md index 3dbbaad618..48ea9e34a5 100644 --- a/wiki/translations/pt/Scenegraph.md +++ b/wiki/translations/pt/Scenegraph.md @@ -1,7 +1,4 @@ # Scenegraph/pt - - - {{TOCright}} ## Introduction @@ -73,3 +70,6 @@ See [Coin3d snippets](Coin3d_snippets.md) courtesy of MariwanJ\'s research for t }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scenegraph/pt diff --git a/wiki/translations/pt/Screenshots.md b/wiki/translations/pt/Screenshots.md index 78b8a6e255..9ecac26905 100644 --- a/wiki/translations/pt/Screenshots.md +++ b/wiki/translations/pt/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/pt - {{TOCright}} +{{TOCright}} Aqui estão algumas capturas de ecrã mostrando diferentes partes do FreeCAD. Não estão ordenadas de forma cronológica, as imagens apresentadas podem divergir da versão atual. Veja maos capturas de ecrã submetidas por utilizadores em [screenshot forum thread](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) e em [\"Show your project here!\" Users Showcase forum part](http://forum.freecadweb.org/viewforum.php?f=24). @@ -232,3 +232,6 @@ O FreeCAD corre em modo consola (sem gui) Caixa de dialogo para salvar imagens com tamanhos arbitrários. [Category:User\_Documentation/pt](Category:User_Documentation/pt.md) [Category:Screenshots/pt](Category:Screenshots/pt.md) + +--- +[documentation index](../README.md) > Screenshots/pt diff --git a/wiki/translations/pt/Scripted_objects.md b/wiki/translations/pt/Scripted_objects.md index 890be6dc8b..0c28c2f400 100644 --- a/wiki/translations/pt/Scripted_objects.md +++ b/wiki/translations/pt/Scripted_objects.md @@ -1,7 +1,4 @@ # Scripted objects/pt - - - {{TOCright}} ## Introduction @@ -890,3 +887,6 @@ In addition to the examples presented here have a look at FreeCAD source code [s }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects/pt diff --git a/wiki/translations/pt/Scripting.md b/wiki/translations/pt/Scripting.md index 0da9dd74a8..bbaa24dbe0 100644 --- a/wiki/translations/pt/Scripting.md +++ b/wiki/translations/pt/Scripting.md @@ -1,2 +1,5 @@ # Scripting/pt 1. REDIRECT [Power users hub/pt](Power_users_hub/pt.md) + +--- +[documentation index](../README.md) > Scripting/pt diff --git a/wiki/translations/pt/Ship_Workbench.md b/wiki/translations/pt/Ship_Workbench.md index aa5cd5c3b2..14f50679f0 100644 --- a/wiki/translations/pt/Ship_Workbench.md +++ b/wiki/translations/pt/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/pt - - -Ship workbench icon +# Ship workbench icon Ship Workbench/pt {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/pt diff --git a/wiki/translations/pt/Sketcher_CarbonCopy.md b/wiki/translations/pt/Sketcher_CarbonCopy.md index a7bc4ec6e4..76ddb9cdf5 100644 --- a/wiki/translations/pt/Sketcher_CarbonCopy.md +++ b/wiki/translations/pt/Sketcher_CarbonCopy.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Sketcher CarbonCopy/pt +
@@ -41,4 +43,7 @@ Dimensional constraints which exist before the copy function remain linked to th {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CarbonCopy/pt diff --git a/wiki/translations/pt/Sketcher_CompCreateArc.md b/wiki/translations/pt/Sketcher_CompCreateArc.md index 8b1cf31288..37b18265ee 100644 --- a/wiki/translations/pt/Sketcher_CompCreateArc.md +++ b/wiki/translations/pt/Sketcher_CompCreateArc.md @@ -6,6 +6,8 @@ MenuLocation:None (toolbar only) --- +# Sketcher CompCreateArc/pt +
@@ -24,4 +26,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateArc/pt diff --git a/wiki/translations/pt/Sketcher_ConstrainAngle.md b/wiki/translations/pt/Sketcher_ConstrainAngle.md index edac0b16c4..7bf417a50e 100644 --- a/wiki/translations/pt/Sketcher_ConstrainAngle.md +++ b/wiki/translations/pt/Sketcher_ConstrainAngle.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainAngle/pt --- - GuiCommand:/pt Name:Constraint InternalAngle Name/pt:Constraint InternalAngle Workbenches:[PartDesign](Sketcher_Workbench/pt___Sketcher]],_[[PartDesign_Workbench/pt.md)|Shortcut:A MenuLocation:Sketch → Sketcher constraints → Constrain angle SeeAlso:[Constraint Length](Constraint_Length/pt.md), [Constraint Perpendicular](Constraint_Perpendicular/pt.md)--- @@ -101,4 +102,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainAngle/pt diff --git a/wiki/translations/pt/Sketcher_ConstrainCoincident.md b/wiki/translations/pt/Sketcher_ConstrainCoincident.md index 9a4256bb80..ab4c44f2ed 100644 --- a/wiki/translations/pt/Sketcher_ConstrainCoincident.md +++ b/wiki/translations/pt/Sketcher_ConstrainCoincident.md @@ -7,6 +7,8 @@ SeeAlso:[Constrain Lock](Sketcher_ConstrainLock/pt.md), [Constrain Point onto Object](Sketcher_ConstrainPointOnObject/pt.md) --- +# Sketcher ConstrainCoincident/pt +
@@ -89,3 +91,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/pt](Category:Sketcher/pt.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainCoincident/pt diff --git a/wiki/translations/pt/Sketcher_ConstrainDistance.md b/wiki/translations/pt/Sketcher_ConstrainDistance.md index a2281b3f98..8a050dbb11 100644 --- a/wiki/translations/pt/Sketcher_ConstrainDistance.md +++ b/wiki/translations/pt/Sketcher_ConstrainDistance.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint HorizontalDistance](Sketcher_ConstrainDistanceX/pt.md), [Constraint VerticalDistance](Sketcher_ConstrainDistanceY/pt.md) --- +# Sketcher ConstrainDistance/pt +
@@ -62,4 +64,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistance/pt diff --git a/wiki/translations/pt/Sketcher_ConstrainDistanceX.md b/wiki/translations/pt/Sketcher_ConstrainDistanceX.md index 1994d86698..b9168ca912 100644 --- a/wiki/translations/pt/Sketcher_ConstrainDistanceX.md +++ b/wiki/translations/pt/Sketcher_ConstrainDistanceX.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint Length](Sketcher_ConstrainDistance/pt.md), [Constraint VerticalDistance](Sketcher_ConstrainDistanceY/pt.md) --- +# Sketcher ConstrainDistanceX/pt +
@@ -53,4 +55,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceX/pt diff --git a/wiki/translations/pt/Sketcher_ConstrainDistanceY.md b/wiki/translations/pt/Sketcher_ConstrainDistanceY.md index fed6386e4e..860480527a 100644 --- a/wiki/translations/pt/Sketcher_ConstrainDistanceY.md +++ b/wiki/translations/pt/Sketcher_ConstrainDistanceY.md @@ -7,6 +7,8 @@ SeeAlso:[Constraint HorizontalDistance](Sketcher_ConstrainDistanceX/pt.md), [Constraint Length](Sketcher_ConstrainDistance/pt.md) --- +# Sketcher ConstrainDistanceY/pt +
@@ -52,4 +54,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceY/pt diff --git a/wiki/translations/pt/Sketcher_ConstrainEqual.md b/wiki/translations/pt/Sketcher_ConstrainEqual.md index 31882357d1..957717b1c8 100644 --- a/wiki/translations/pt/Sketcher_ConstrainEqual.md +++ b/wiki/translations/pt/Sketcher_ConstrainEqual.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainEqual/pt --- - GuiCommand:/pt Name:Constraint EqualLength Name/pt:Constraint EqualLength Workbenches:[PartDesign](Sketcher_Workbench/pt___Sketcher]],_[[PartDesign_Workbench/pt.md)|MenuLocation:Sketch → Sketcher constraints → Constrain equal SeeAlso:[Constraint Radius](Constraint_Radius/pt.md)--- @@ -59,4 +60,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainEqual/pt diff --git a/wiki/translations/pt/Sketcher_ConstrainHorizontal.md b/wiki/translations/pt/Sketcher_ConstrainHorizontal.md index dbce1852ed..df169ef040 100644 --- a/wiki/translations/pt/Sketcher_ConstrainHorizontal.md +++ b/wiki/translations/pt/Sketcher_ConstrainHorizontal.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint Vertical](Constraint_Vertical/pt.md) --- +# Sketcher ConstrainHorizontal/pt +
@@ -57,3 +59,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/pt](Category:Sketcher/pt.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainHorizontal/pt diff --git a/wiki/translations/pt/Sketcher_ConstrainLock.md b/wiki/translations/pt/Sketcher_ConstrainLock.md index fd75459d34..ddc2bc9d81 100644 --- a/wiki/translations/pt/Sketcher_ConstrainLock.md +++ b/wiki/translations/pt/Sketcher_ConstrainLock.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainLock/pt --- - GuiCommand:/pt Name:Sketcher ConstrainLock Name/pt:Sketcher ConstrainLock Workbenches:[PartDesign](Sketcher_Workbench/pt___Sketcher]],_[[PartDesign_Workbench/pt.md)|MenuLocation:Sketch → Sketcher constraints → Constrain lock SeeAlso:[Constraint Coincident](Constraint_PointOnPoint/pt.md)--- @@ -26,4 +27,7 @@ The [Loc {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainLock/pt diff --git a/wiki/translations/pt/Sketcher_ConstrainParallel.md b/wiki/translations/pt/Sketcher_ConstrainParallel.md index 345f2f05f2..4eb40cec9c 100644 --- a/wiki/translations/pt/Sketcher_ConstrainParallel.md +++ b/wiki/translations/pt/Sketcher_ConstrainParallel.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainParallel/pt --- - GuiCommand:/pt Name:Constraint Parallel Name/pt:Constraint Parallel Workbenches:[PartDesign](Sketcher_Workbench/pt___Sketcher]],_[[PartDesign_Workbench/pt.md)|MenuLocation:Sketch → Sketcher constraints → Constrain parallel SeeAlso:[Constraint Vertical](Constraint_Vertical/pt.md), [Constraint Horizontal](Constraint_Horizontal/pt.md)--- @@ -43,4 +44,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainParallel/pt diff --git a/wiki/translations/pt/Sketcher_ConstrainPerpendicular.md b/wiki/translations/pt/Sketcher_ConstrainPerpendicular.md index c74fc68e37..00a1c695d9 100644 --- a/wiki/translations/pt/Sketcher_ConstrainPerpendicular.md +++ b/wiki/translations/pt/Sketcher_ConstrainPerpendicular.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainPerpendicular/pt --- - GuiCommand:/pt Name:Constraint Perpendicular Name/pt:Constraint Perpendicular Workbenches:[PartDesign](Sketcher_Workbench/pt___Sketcher]],_[[PartDesign_Workbench/pt.md)|MenuLocation:Sketch → Sketcher constraints → Constrain perpendicular Shortcut:N SeeAlso:[Constraint Angle](Constraint_InternalAngle/pt.md)--- @@ -108,4 +109,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPerpendicular/pt diff --git a/wiki/translations/pt/Sketcher_ConstrainPointOnObject.md b/wiki/translations/pt/Sketcher_ConstrainPointOnObject.md index 84fef1f4d4..f68d45f5f2 100644 --- a/wiki/translations/pt/Sketcher_ConstrainPointOnObject.md +++ b/wiki/translations/pt/Sketcher_ConstrainPointOnObject.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainPointOnObject/pt --- - GuiCommand:/pt Name:Constraint PointOnObject Name/pt:Constraint PointOnObject Workbenches:[PartDesign](Sketcher_Workbench/pt___Sketcher]],_[[PartDesign_Workbench/pt.md)|MenuLocation:Sketch → Sketcher constraints → Constrain point onto object SeeAlso:[Constraint Coincident](Constraint_PointOnPoint/pt.md)--- @@ -42,4 +43,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains how to identify th {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPointOnObject/pt diff --git a/wiki/translations/pt/Sketcher_ConstrainRadius.md b/wiki/translations/pt/Sketcher_ConstrainRadius.md index b0ece28afc..7afe62ec8c 100644 --- a/wiki/translations/pt/Sketcher_ConstrainRadius.md +++ b/wiki/translations/pt/Sketcher_ConstrainRadius.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainRadius/pt --- - GuiCommand:/pt Name:Constraint Radius Name/pt:Constraint Radius Workbenches:[PartDesign](Sketcher_Workbench/pt___Sketcher]],_[[PartDesign_Workbench/pt.md)|MenuLocation:Sketch → Sketcher constraints → Constrain radius SeeAlso:[Constraint Distance](Constraint_Length/pt.md), [Constraint Horizontal](Constraint_Horizontal/pt.md), [Constraint Vertical](Constraint_Vertical/pt.md)--- @@ -43,4 +44,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadius/pt diff --git a/wiki/translations/pt/Sketcher_ConstrainSymmetric.md b/wiki/translations/pt/Sketcher_ConstrainSymmetric.md index a8a13e5130..dc8ca970bb 100644 --- a/wiki/translations/pt/Sketcher_ConstrainSymmetric.md +++ b/wiki/translations/pt/Sketcher_ConstrainSymmetric.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainSymmetric/pt --- - GuiCommand:/pt Name:Constraint Symmetric Name/pt:Constraint Symmetric Workbenches:[PartDesign](Sketcher_Workbench/pt___Sketcher]],_[[PartDesign_Workbench/pt.md)|MenuLocation:Sketch → Sketcher constraints → Constrain symmetrical SeeAlso:[Constraint Parallel](Constraint_Parallel/pt.md)--- @@ -57,4 +58,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSymmetric/pt diff --git a/wiki/translations/pt/Sketcher_ConstrainVertical.md b/wiki/translations/pt/Sketcher_ConstrainVertical.md index 0237eb384f..ade3cb44fd 100644 --- a/wiki/translations/pt/Sketcher_ConstrainVertical.md +++ b/wiki/translations/pt/Sketcher_ConstrainVertical.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint Horizontal](Sketcher_ConstrainHorizontal/pt.md) --- +# Sketcher ConstrainVertical/pt +
@@ -50,3 +52,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/pt](Category:Sketcher/pt.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainVertical/pt diff --git a/wiki/translations/pt/Sketcher_CreateArc.md b/wiki/translations/pt/Sketcher_CreateArc.md index 2a5d2fcc72..0d8b6854af 100644 --- a/wiki/translations/pt/Sketcher_CreateArc.md +++ b/wiki/translations/pt/Sketcher_CreateArc.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Circle](Sketcher_CompCreateCircle/pt.md) --- +# Sketcher CreateArc/pt + @@ -29,4 +31,7 @@ When starting the tool, the mouse pointer changes to a white cross with a red ar {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateArc/pt diff --git a/wiki/translations/pt/Sketcher_CreateCircle.md b/wiki/translations/pt/Sketcher_CreateCircle.md index 91cfae4e99..480ae6cfb1 100644 --- a/wiki/translations/pt/Sketcher_CreateCircle.md +++ b/wiki/translations/pt/Sketcher_CreateCircle.md @@ -1,3 +1,4 @@ +# Sketcher CreateCircle/pt --- - GuiCommand:/pt Name:Sketcher CreateCircle Name/pt:Sketcher Circle Workbenches:[MenuLocation:Sketch → Sketcher geometries → Create circle SeeAlso:[[Sketcher CompCreateArc/pt|Sketcher Arc](Sketcher_Workbench/pt___Sketcher]].md)--- @@ -21,4 +22,7 @@ This tool draws a circle by picking two points: the center, and a point along th {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateCircle/pt diff --git a/wiki/translations/pt/Sketcher_CreateFillet.md b/wiki/translations/pt/Sketcher_CreateFillet.md index 674557572c..8f9447dc5a 100644 --- a/wiki/translations/pt/Sketcher_CreateFillet.md +++ b/wiki/translations/pt/Sketcher_CreateFillet.md @@ -1,3 +1,4 @@ +# Sketcher CreateFillet/pt --- - GuiCommand:/pt Name:Sketcher CreateFillet Name/pt:Sketcher CreateFillet Workbenches:[[Sketcher Workbench/pt Sketcher]]|Shortcut:F MenuLocation:Sketch → Sketcher geometries → Create fillet--- @@ -24,4 +25,7 @@ When starting the tool, selections are cleared and the mouse pointer changes to {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateFillet/pt diff --git a/wiki/translations/pt/Sketcher_CreateLine.md b/wiki/translations/pt/Sketcher_CreateLine.md index aced315afb..20b1e0aa78 100644 --- a/wiki/translations/pt/Sketcher_CreateLine.md +++ b/wiki/translations/pt/Sketcher_CreateLine.md @@ -1,3 +1,4 @@ +# Sketcher CreateLine/pt --- - GuiCommand:/pt Name:Sketcher CreateLine Name/pt:Sketcher Line Workbenches:[MenuLocation:Sketch → Sketcher geometries → Create line Shortcut:L SeeAlso:[[Sketcher CreatePolyline/pt|Sketcher Polyline](Sketcher_Workbench/pt___Sketcher]].md)--- @@ -23,4 +24,7 @@ The created line object starts and ends at the given points, but the line is inf {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateLine/pt diff --git a/wiki/translations/pt/Sketcher_CreatePoint.md b/wiki/translations/pt/Sketcher_CreatePoint.md index 85415dc60a..a6ec19122d 100644 --- a/wiki/translations/pt/Sketcher_CreatePoint.md +++ b/wiki/translations/pt/Sketcher_CreatePoint.md @@ -1,3 +1,4 @@ +# Sketcher CreatePoint/pt --- - GuiCommand:/pt Name:Sketcher CreatePoint Name/pt:Sketcher Point Workbenches:[[Sketcher Workbench/pt Sketcher]]|MenuLocation:Sketch → Sketcher geometries → Create point--- @@ -30,4 +31,7 @@ The created point is not available outside of the sketch. In case a point is nee {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreatePoint/pt diff --git a/wiki/translations/pt/Sketcher_CreatePolyline.md b/wiki/translations/pt/Sketcher_CreatePolyline.md index 4a031aa53d..b18e873be7 100644 --- a/wiki/translations/pt/Sketcher_CreatePolyline.md +++ b/wiki/translations/pt/Sketcher_CreatePolyline.md @@ -1,3 +1,4 @@ +# Sketcher CreatePolyline/pt --- - GuiCommand:/pt Name:Sketcher CreatePolyline Name/pt:Sketcher CreatePolyline Workbenches:[MenuLocation:Sketch → Sketcher geometries → Create polyline SeeAlso:[[Sketcher CreateLine/pt|Sketcher Line](Sketcher_Workbench/pt___Sketcher]].md)--- @@ -38,4 +39,7 @@ The polyline always starts with a straight line segment: click - move the mouse {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreatePolyline/pt diff --git a/wiki/translations/pt/Sketcher_CreateRectangle.md b/wiki/translations/pt/Sketcher_CreateRectangle.md index 769f2f4773..36bfb342c9 100644 --- a/wiki/translations/pt/Sketcher_CreateRectangle.md +++ b/wiki/translations/pt/Sketcher_CreateRectangle.md @@ -1,3 +1,4 @@ +# Sketcher CreateRectangle/pt --- - GuiCommand:/pt Name:Sketcher CreateRectangle Name/pt:Sketcher CreateRectangle Workbenches:[Shortcut:R MenuLocation:Sketch → Sketcher geometries → Create rectangle SeeAlso:[[Sketcher CreatePolyline/pt|Sketcher Polyline](Sketcher_Workbench/pt___Sketcher]].md)--- @@ -23,4 +24,7 @@ To define a rectangle via a center point and an edge point, use the [Centered re {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateRectangle/pt diff --git a/wiki/translations/pt/Sketcher_External.md b/wiki/translations/pt/Sketcher_External.md index 832da6ce46..85f7ed504b 100644 --- a/wiki/translations/pt/Sketcher_External.md +++ b/wiki/translations/pt/Sketcher_External.md @@ -1,3 +1,4 @@ +# Sketcher External/pt --- - GuiCommand:/pt Name:Sketcher External Name/pt:Sketcher External Workbenches:[PartDesign](Sketcher_Workbench/pt___Sketcher]],_[[PartDesign_Workbench/pt.md)|Shortcut:E MenuLocation:Sketch → Sketcher geometries → Sketcher External SeeAlso:[ConstructionMode](Sketcher_ConstructionMode/pt.md)--- @@ -73,4 +74,7 @@ When the sketch edit mode is closed, external Geometry lines are not visible. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher External/pt diff --git a/wiki/translations/pt/Sketcher_LeaveSketch.md b/wiki/translations/pt/Sketcher_LeaveSketch.md index 55d86509b1..a3e80b6b42 100644 --- a/wiki/translations/pt/Sketcher_LeaveSketch.md +++ b/wiki/translations/pt/Sketcher_LeaveSketch.md @@ -1,3 +1,4 @@ +# Sketcher LeaveSketch/pt --- - GuiCommand:/pt Name:Sketcher LeaveSketch Name/pt:Sketcher LeaveSketch Workbenches:[PartDesign](Sketcher_Workbench/pt___Sketcher]],_[[PartDesign_Workbench/pt.md)|MenuLocation:Sketch → Leave sketch|--- @@ -26,3 +27,6 @@ The **Leave sketch** command exits the sketch editing mode and frees up the [Tas }} [Category:Sketcher/pt](Category:Sketcher/pt.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher LeaveSketch/pt diff --git a/wiki/translations/pt/Sketcher_MapSketch.md b/wiki/translations/pt/Sketcher_MapSketch.md index 8baa167740..6b906394c9 100644 --- a/wiki/translations/pt/Sketcher_MapSketch.md +++ b/wiki/translations/pt/Sketcher_MapSketch.md @@ -1,3 +1,4 @@ +# Sketcher MapSketch/pt --- - GuiCommand:/pt Name:Sketcher MapSketch Name/pt:Sketcher MapSketch Create a sketch on a face|Workbenches:[PartDesign](Sketcher_Workbench/pt___Sketcher]],_[[PartDesign_Workbench/pt.md)|MenuLocation:Part design → Create a sketch on a face SeeAlso:[Create a sketch](Sketcher_NewSketch/pt.md)--- @@ -57,3 +58,6 @@ Now we select the top face of Pad and then select the Map A Sketch To A Face too }} [Category:Sketcher/pt](Category:Sketcher/pt.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MapSketch/pt diff --git a/wiki/translations/pt/Sketcher_Move.md b/wiki/translations/pt/Sketcher_Move.md index 1604c3b52b..fe4dcd3151 100644 --- a/wiki/translations/pt/Sketcher_Move.md +++ b/wiki/translations/pt/Sketcher_Move.md @@ -9,6 +9,8 @@ SeeAlso:[Clonar](Sketcher_Clone/pt.md), [Copiar](Sketcher_Copy/pt.md) --- +# Sketcher Move/pt + @@ -34,4 +36,7 @@ Moves the selected sketch elements from one point to another, using the last sel {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Move/pt diff --git a/wiki/translations/pt/Sketcher_NewSketch.md b/wiki/translations/pt/Sketcher_NewSketch.md index 71db6262fc..dee78a1751 100644 --- a/wiki/translations/pt/Sketcher_NewSketch.md +++ b/wiki/translations/pt/Sketcher_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Mapear esboço na face...](Sketcher_MapSketch/pt.md), [Reorientar esboço...](Sketcher_Reorient/pt.md) --- +# Sketcher NewSketch/pt + @@ -40,4 +42,7 @@ The sketch can be moved in the [3D view](3D_view.md) using [Placement](Placement {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher NewSketch/pt diff --git a/wiki/translations/pt/Sketcher_ReorientSketch.md b/wiki/translations/pt/Sketcher_ReorientSketch.md index cfaef8f846..18595204ce 100644 --- a/wiki/translations/pt/Sketcher_ReorientSketch.md +++ b/wiki/translations/pt/Sketcher_ReorientSketch.md @@ -8,6 +8,8 @@ SeeAlso:[Map sketch](Sketcher_MapSketch/pt.md), [New Sketch](Sketcher_NewSketch/pt.md) --- +# Sketcher ReorientSketch/pt + @@ -35,4 +37,7 @@ Allows you to detach a sketch from a face and attach it to one of the main plane {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ReorientSketch/pt diff --git a/wiki/translations/pt/Sketcher_SelectElementsWithDoFs.md b/wiki/translations/pt/Sketcher_SelectElementsWithDoFs.md index 9c7278bd7a..31a1a64fc0 100644 --- a/wiki/translations/pt/Sketcher_SelectElementsWithDoFs.md +++ b/wiki/translations/pt/Sketcher_SelectElementsWithDoFs.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Sketcher SelectElementsWithDoFs/pt + @@ -37,4 +39,7 @@ where \"X\" is the number of degrees of freedom remaining in the sketch; you wil {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsWithDoFs/pt diff --git a/wiki/translations/pt/Sketcher_ToggleConstruction.md b/wiki/translations/pt/Sketcher_ToggleConstruction.md index c7f5352dec..db5aabbfda 100644 --- a/wiki/translations/pt/Sketcher_ToggleConstruction.md +++ b/wiki/translations/pt/Sketcher_ToggleConstruction.md @@ -7,6 +7,8 @@ MenuLocation:Sketch → Geometrias do Sketcher → Ativa/desativa a geometria de construção --- +# Sketcher ToggleConstruction/pt + @@ -51,4 +53,7 @@ and once you ** [lea {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleConstruction/pt diff --git a/wiki/translations/pt/Sketcher_Trimming.md b/wiki/translations/pt/Sketcher_Trimming.md index 7a8ec63073..8dfcb5651c 100644 --- a/wiki/translations/pt/Sketcher_Trimming.md +++ b/wiki/translations/pt/Sketcher_Trimming.md @@ -1,3 +1,4 @@ +# Sketcher Trimming/pt --- - GuiCommand:/pt Name:Sketcher Trimming Name/pt:Sketcher Trimming Workbenches:[PartDesign](Sketcher_Workbench/pt___Sketcher]],_[[PartDesign_Workbench/pt.md)|Shortcut:T MenuLocation:Sketch → Sketcher geometries → Trim edge--- @@ -27,4 +28,7 @@ This tool trims an edge to the nearest overlapping edge. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Trimming/pt diff --git a/wiki/translations/pt/Sketcher_ValidateSketch.md b/wiki/translations/pt/Sketcher_ValidateSketch.md index 17e2a34814..8525ab2dcd 100644 --- a/wiki/translations/pt/Sketcher_ValidateSketch.md +++ b/wiki/translations/pt/Sketcher_ValidateSketch.md @@ -7,6 +7,8 @@ MenuLocation:Sketcher → Validate sketch --- +# Sketcher ValidateSketch/pt + @@ -81,4 +83,7 @@ The locking mechanism typically works well and this tool should not be needed. * {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ValidateSketch/pt diff --git a/wiki/translations/pt/Sketcher_ViewSketch.md b/wiki/translations/pt/Sketcher_ViewSketch.md index f7264cfdb3..c22f45f3a7 100644 --- a/wiki/translations/pt/Sketcher_ViewSketch.md +++ b/wiki/translations/pt/Sketcher_ViewSketch.md @@ -1,3 +1,4 @@ +# Sketcher ViewSketch/pt --- - GuiCommand:/pt Name:Sketcher ViewSketch Name/pt:Sketcher ViewSketch Workbenches:[PartDesign](Sketcher_Workbench/pt___Sketcher]],_[[PartDesign_Workbench/pt.md)|MenuLocation:Sketch → View sketch--- @@ -21,4 +22,7 @@ While in sketch edit mode, either {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSketch/pt diff --git a/wiki/translations/pt/Sketcher_Workbench.md b/wiki/translations/pt/Sketcher_Workbench.md index 7ad31e4c12..1cffdde95f 100644 --- a/wiki/translations/pt/Sketcher_Workbench.md +++ b/wiki/translations/pt/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/pt - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/pt {{TOCright}} @@ -322,3 +316,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [Category:User Documentation/pt](Category:User_Documentation/pt.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/pt diff --git a/wiki/translations/pt/Spreadsheet_Module.md b/wiki/translations/pt/Spreadsheet_Module.md index 3f4a464b42..7428a8a63c 100644 --- a/wiki/translations/pt/Spreadsheet_Module.md +++ b/wiki/translations/pt/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module/pt 1. REDIRECT [Spreadsheet Workbench/pt](Spreadsheet_Workbench/pt.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module/pt diff --git a/wiki/translations/pt/Spreadsheet_Workbench.md b/wiki/translations/pt/Spreadsheet_Workbench.md index b2272193ea..d31bb1538b 100644 --- a/wiki/translations/pt/Spreadsheet_Workbench.md +++ b/wiki/translations/pt/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/pt - {{Page_in_progress}} @@ -249,3 +248,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/pt diff --git a/wiki/translations/pt/Standard_Menu.md b/wiki/translations/pt/Standard_Menu.md index b731445e68..7ca6dd9571 100644 --- a/wiki/translations/pt/Standard_Menu.md +++ b/wiki/translations/pt/Standard_Menu.md @@ -1,5 +1,5 @@ # Standard Menu/pt - {{TOCright}} +{{TOCright}} ## Introduction @@ -47,4 +47,7 @@ The standard menu is composed of 7 sub-menus: {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Standard Menu/pt diff --git a/wiki/translations/pt/Start_Workbench.md b/wiki/translations/pt/Start_Workbench.md index 038f4f4117..63af6dfa48 100644 --- a/wiki/translations/pt/Start_Workbench.md +++ b/wiki/translations/pt/Start_Workbench.md @@ -1,10 +1,4 @@ -# Start Workbench/pt - - - - - -Start workbench icon +# Start workbench icon Start Workbench/pt The [Start Workbench](Start_Workbench.md) is not really a workbench, it\'s just the page that is presented when you open FreeCAD with no document loaded. @@ -26,3 +20,6 @@ From this interface you can see useful information and jump to recently opened f [Category:User\_Documentation/pt](Category:User_Documentation/pt.md) [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench/pt diff --git a/wiki/translations/pt/Std_AddonMgr.md b/wiki/translations/pt/Std_AddonMgr.md index d0af889256..4827b82b8e 100644 --- a/wiki/translations/pt/Std_AddonMgr.md +++ b/wiki/translations/pt/Std_AddonMgr.md @@ -9,6 +9,8 @@ Version:0.17 --- +# Std AddonMgr/pt + @@ -82,4 +84,7 @@ If you develop a workbench in C++, it cannot be run directly by users and must b {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std AddonMgr/pt diff --git a/wiki/translations/pt/Std_InterfaceCustomization.md b/wiki/translations/pt/Std_InterfaceCustomization.md index f3a2afa659..964dd70c46 100644 --- a/wiki/translations/pt/Std_InterfaceCustomization.md +++ b/wiki/translations/pt/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/pt 1. REDIRECT [Interface\_Customization/pt](Interface_Customization/pt.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/pt diff --git a/wiki/translations/pt/Std_Tools_Menu.md b/wiki/translations/pt/Std_Tools_Menu.md index 4196e5f83e..ffa50e8273 100644 --- a/wiki/translations/pt/Std_Tools_Menu.md +++ b/wiki/translations/pt/Std_Tools_Menu.md @@ -1,10 +1,4 @@ -# Std Tools Menu/pt - - - - - -Std Base icon +# Std Base icon Std Tools Menu/pt {{TOCright}} @@ -59,3 +53,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Tools Menu/pt diff --git a/wiki/translations/pt/Std_ViewScreenShot.md b/wiki/translations/pt/Std_ViewScreenShot.md index 89e7cf53d6..20c3547366 100644 --- a/wiki/translations/pt/Std_ViewScreenShot.md +++ b/wiki/translations/pt/Std_ViewScreenShot.md @@ -1,3 +1,4 @@ +# Std ViewScreenShot/pt --- - GuiCommand:/pt Name:Std ViewScreenShot Name/pt:Std ViewScreenShot MenuLocation:[[Std Tools Menu/pt Tools]] → Save picture...|Workbenches:All SeeAlso:...--- @@ -121,4 +122,7 @@ App.closeDocument(App.ActiveDocument.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewScreenShot/pt diff --git a/wiki/translations/pt/Surface_Module.md b/wiki/translations/pt/Surface_Module.md index eb681605e3..d5c04a6345 100644 --- a/wiki/translations/pt/Surface_Module.md +++ b/wiki/translations/pt/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/pt 1. REDIRECT [Surface\_Workbench/pt](Surface_Workbench/pt.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/pt diff --git a/wiki/translations/pt/Surface_Workbench.md b/wiki/translations/pt/Surface_Workbench.md index 3621da80f3..17c0d5b4db 100644 --- a/wiki/translations/pt/Surface_Workbench.md +++ b/wiki/translations/pt/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/pt - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/pt {{TOCright}} @@ -57,3 +51,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/pt diff --git a/wiki/translations/pt/TechDraw_Module.md b/wiki/translations/pt/TechDraw_Module.md index 715f4b7c39..4c6d0ac1e4 100644 --- a/wiki/translations/pt/TechDraw_Module.md +++ b/wiki/translations/pt/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/pt 1. REDIRECT [TechDraw\_Workbench/pt](TechDraw_Workbench/pt.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/pt diff --git a/wiki/translations/pt/TechDraw_Workbench.md b/wiki/translations/pt/TechDraw_Workbench.md index a109bb40c7..0ed6a38d32 100644 --- a/wiki/translations/pt/TechDraw_Workbench.md +++ b/wiki/translations/pt/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/pt - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/pt ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/pt diff --git a/wiki/translations/pt/Topological_data_scripting.md b/wiki/translations/pt/Topological_data_scripting.md index a4def86134..71e71f2ef9 100644 --- a/wiki/translations/pt/Topological_data_scripting.md +++ b/wiki/translations/pt/Topological_data_scripting.md @@ -1,7 +1,4 @@ # Topological data scripting/pt - - - {{TOCright}} ## Introduction @@ -938,3 +935,6 @@ s.read("test.stp") ```{{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting/pt diff --git a/wiki/translations/pt/Tracker.md b/wiki/translations/pt/Tracker.md index eba4e60245..939502ac47 100644 --- a/wiki/translations/pt/Tracker.md +++ b/wiki/translations/pt/Tracker.md @@ -1,10 +1,4 @@ # Tracker/pt - - - - - - {{TOCright}} ![](images/Mantis_logo_262x90.png ) @@ -188,3 +182,6 @@ For the inquisitive here is the regex MantisBT uses for this operation: [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Tracker/pt diff --git a/wiki/translations/pt/User_hub.md b/wiki/translations/pt/User_hub.md index fda4b9c4d3..74551bcaab 100644 --- a/wiki/translations/pt/User_hub.md +++ b/wiki/translations/pt/User_hub.md @@ -1,5 +1,4 @@ -# User hub/pt - +# User hub/pt ------------------------------------------------------------------------ @@ -195,3 +194,6 @@ Esta é a ajuda online oficial do FreeCAD. Note que o sistema de ajuda online es [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/pt diff --git a/wiki/translations/pt/Video_tutorials.md b/wiki/translations/pt/Video_tutorials.md index 23b5daa8bf..0aa767b494 100644 --- a/wiki/translations/pt/Video_tutorials.md +++ b/wiki/translations/pt/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials/pt - - - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** This page presents a selection of video tutorials made by FreeCAD users and developers. Visit the [Tutorials and videos](https://forum.freecadweb.org/viewforum.php?f=36) subforum for more links. A useful source of video tutorials is [YouTube](https://YouTube.com). @@ -95,3 +92,6 @@ For more see [Video tutorials obsolete](Video_tutorials_obsolete.md). }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Video tutorials/pt diff --git a/wiki/translations/pt/Web_Workbench.md b/wiki/translations/pt/Web_Workbench.md index f67b60a2e1..b14d30569f 100644 --- a/wiki/translations/pt/Web_Workbench.md +++ b/wiki/translations/pt/Web_Workbench.md @@ -1,10 +1,4 @@ -# Web Workbench/pt - - - - - -Web workbench icon +# Web workbench icon Web Workbench/pt ## Introduction @@ -19,3 +13,6 @@ From this browser you are able to navigate the web, click on links, read the onl [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/pt diff --git a/wiki/translations/pt/Workbenches.md b/wiki/translations/pt/Workbenches.md index e7869b83d7..71f8236505 100644 --- a/wiki/translations/pt/Workbenches.md +++ b/wiki/translations/pt/Workbenches.md @@ -1,7 +1,4 @@ # Workbenches/pt - - -
O FreeCAD, como outros programas como o [Revit](wikipedia:Revit.md) ou [Catia](wikipedia:CATIA.md), é baseado no conceito de bancadas. Uma bancada pode ser considerada como um conjunto de ferramentas agrupadas para fazer uma certa tarefa. Numa oficina de carpintaria tradicional, haveria uma mesa para a pessoa que trabalha com madeira, outra para peças metálicas, e talvez uma terceira para a pessoa que faz a montagem das várias peças. @@ -112,3 +109,6 @@ Há mais bancadas em desenvolvimento, mantenha-se atento! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/pt diff --git a/wiki/translations/ro/3D_input_devices.md b/wiki/translations/ro/3D_input_devices.md index 4ebb039ded..883dce21e2 100644 --- a/wiki/translations/ro/3D_input_devices.md +++ b/wiki/translations/ro/3D_input_devices.md @@ -1,5 +1,5 @@ # 3D input devices/ro - FreeCAD suporta unele dispozitive specializate de intrare, precum mouse-uri 3D. Acestea permit utilizatorului sa roteasca, translateze si mareasca obiectele in trei dimensiuni. +FreeCAD suporta unele dispozitive specializate de intrare, precum mouse-uri 3D. Acestea permit utilizatorului sa roteasca, translateze si mareasca obiectele in trei dimensiuni. ## Dispozitive Suportate @@ -13,3 +13,6 @@
[category:Documentation](category:Documentation.md) + +--- +[documentation index](../README.md) > 3D input devices/ro diff --git a/wiki/translations/ro/3Dconnexion_input_devices.md b/wiki/translations/ro/3Dconnexion_input_devices.md index b21da5042d..34bd4d7000 100644 --- a/wiki/translations/ro/3Dconnexion_input_devices.md +++ b/wiki/translations/ro/3Dconnexion_input_devices.md @@ -1,5 +1,4 @@ -# 3Dconnexion input devices/ro - 3Dconnexion SpaceNavigator {{TOCright}} +# 3Dconnexion SpaceNavigator {{TOCright}} 3Dconnexion input devices/ro
@@ -385,3 +384,6 @@ Pentru a conecta anumite comenzi cu un buton, selectați butonul din partea stâ - Forum thread [Space navigator axis confusion](https://forum.freecadweb.org/viewtopic.php?f=8&t=57188) [Category:User Documentation](Category:User_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > 3Dconnexion input devices/ro diff --git a/wiki/translations/ro/ANSI_templates.md b/wiki/translations/ro/ANSI_templates.md index 6cff3a6bb1..9fbc247739 100644 --- a/wiki/translations/ro/ANSI_templates.md +++ b/wiki/translations/ro/ANSI_templates.md @@ -1,5 +1,5 @@ # ANSI templates/ro - Această pagină listează șabloanele conform cu standardul American National Standards Institute [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) +Această pagină listează șabloanele conform cu standardul American National Standards Institute [ANSI](http://en.wikipedia.org/wiki/American_National_Standards_Institute) ### ANSI A @@ -62,3 +62,6 @@ Șablonul este desenat de către [Quick61](User:Quick61.md) și listat de [FreeCAD-Drawing-Templates](https://github.com/quick61/FreeCAD-Drawing-Templates). [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > ANSI templates/ro diff --git a/wiki/translations/ro/API_documentation.md b/wiki/translations/ro/API_documentation.md index 8a3693e168..7a7595d31c 100644 --- a/wiki/translations/ro/API_documentation.md +++ b/wiki/translations/ro/API_documentation.md @@ -1,2 +1,5 @@ # API documentation/ro 1. REDIRECT [:Category:API/ro](:Category:API/ro.md) + +--- +[documentation index](../README.md) > API documentation/ro diff --git a/wiki/translations/ro/About_FreeCAD.md b/wiki/translations/ro/About_FreeCAD.md index b97948a190..df49598701 100644 --- a/wiki/translations/ro/About_FreeCAD.md +++ b/wiki/translations/ro/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/ro - - - +# About FreeCAD/ro
@@ -76,3 +73,6 @@ FreeCAD este menținută și dezvoltată de o comunitate de dezvoltatori și uti [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/ro diff --git a/wiki/translations/ro/Add_FEM_Constraint_Tutorial.md b/wiki/translations/ro/Add_FEM_Constraint_Tutorial.md index b25de28dee..95464ef71f 100644 --- a/wiki/translations/ro/Add_FEM_Constraint_Tutorial.md +++ b/wiki/translations/ro/Add_FEM_Constraint_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Constraint Tutorial/ro 1. REDIRECT [Add\_FEM\_constraint\_tutorial/ro](Add_FEM_constraint_tutorial/ro.md) + +--- +[documentation index](../README.md) > Add FEM Constraint Tutorial/ro diff --git a/wiki/translations/ro/Add_FEM_Equation_Tutorial.md b/wiki/translations/ro/Add_FEM_Equation_Tutorial.md index abaf729637..ba25cf74f8 100644 --- a/wiki/translations/ro/Add_FEM_Equation_Tutorial.md +++ b/wiki/translations/ro/Add_FEM_Equation_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Equation Tutorial/ro 1. REDIRECT [Add\_FEM\_equation\_tutorial/ro](Add_FEM_equation_tutorial/ro.md) + +--- +[documentation index](../README.md) > Add FEM Equation Tutorial/ro diff --git a/wiki/translations/ro/Add_FEM_constraint_tutorial.md b/wiki/translations/ro/Add_FEM_constraint_tutorial.md index 86c9118b14..3b2e1c6828 100644 --- a/wiki/translations/ro/Add_FEM_constraint_tutorial.md +++ b/wiki/translations/ro/Add_FEM_constraint_tutorial.md @@ -1,7 +1,4 @@ # Add FEM constraint tutorial/ro - - -
@@ -378,3 +375,6 @@ def _handleFlowBndConditions(self): ``` [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM constraint tutorial/ro diff --git a/wiki/translations/ro/Add_FEM_equation_tutorial.md b/wiki/translations/ro/Add_FEM_equation_tutorial.md index e3d2ecd372..32b454f275 100644 --- a/wiki/translations/ro/Add_FEM_equation_tutorial.md +++ b/wiki/translations/ro/Add_FEM_equation_tutorial.md @@ -1,7 +1,4 @@ # Add FEM equation tutorial/ro - - - {{TutorialInfo/ro |Topic= |Level= @@ -175,3 +172,6 @@ We now finished the function part of the new equation. Next we\'ll connect the n We have just created a new equation class. To access it from the FEM GUI, we need to create a button and link it to the new equation class. Here is a tutorial: [Add button to FEM toolbar tutorial](Add_button_to_FEM_toolbar_tutorial.md). [Category:FEM](Category:FEM.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM equation tutorial/ro diff --git a/wiki/translations/ro/Addon_Manager.md b/wiki/translations/ro/Addon_Manager.md index 26eb63ff42..bcc3df64e9 100644 --- a/wiki/translations/ro/Addon_Manager.md +++ b/wiki/translations/ro/Addon_Manager.md @@ -1,2 +1,5 @@ # Addon Manager/ro 1. REDIRECT [Std AddonMgr/ro](Std_AddonMgr/ro.md) + +--- +[documentation index](../README.md) > Addon Manager/ro diff --git a/wiki/translations/ro/Aeroplane.md b/wiki/translations/ro/Aeroplane.md index 1a0329ce5e..04f66ce0f3 100644 --- a/wiki/translations/ro/Aeroplane.md +++ b/wiki/translations/ro/Aeroplane.md @@ -1,7 +1,4 @@ # Aeroplane/ro - - -
@@ -225,4 +222,7 @@ Sper că acest tutorial mic v-a ajutat să vă resimțiți rotațiile. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Aeroplane/ro diff --git a/wiki/translations/ro/Arch_3Views.md b/wiki/translations/ro/Arch_3Views.md index 29b51cbe36..f4247afcbd 100644 --- a/wiki/translations/ro/Arch_3Views.md +++ b/wiki/translations/ro/Arch_3Views.md @@ -6,6 +6,8 @@ SeeAlso:[[Arch SplitMesh]], [[Arch MeshToShape]] --- +# Arch 3Views/ro +
@@ -90,8 +92,5 @@ mesh_obj.ViewObject.Visibility = False
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3Views/ro diff --git a/wiki/translations/ro/Arch_API.md b/wiki/translations/ro/Arch_API.md index 4415b9a660..b495b97c1c 100644 --- a/wiki/translations/ro/Arch_API.md +++ b/wiki/translations/ro/Arch_API.md @@ -1,5 +1,5 @@ # Arch API/ro - **(November 2018) API Arch este listat în [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) API Arch este listat în [https://www.freecadweb.org/api autogenerated API documentation].** Funcțiile API care fac parte din atelierul Arch [Arch Workbench](Arch_Workbench.md) pot fi utilizate atât în macro-uri[macros](macros.md) cât și din consola [Python](Python.md) după ce a fost importat modulul {{incode | Arch}}. Atelierul [Reinforcement Addon](Reinforcement_Addon.md) are propriul [Reinforcement API](Reinforcement_API.md). @@ -18,3 +18,6 @@ Arch.makeWall(baseline, length=None, width=200, height=2000) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch API/ro diff --git a/wiki/translations/ro/Arch_Add.md b/wiki/translations/ro/Arch_Add.md index 4adaea265d..cbf43a04ef 100644 --- a/wiki/translations/ro/Arch_Add.md +++ b/wiki/translations/ro/Arch_Add.md @@ -1,3 +1,4 @@ +# Arch Add/ro --- - GuiCommand:/ro Name:Arch Add Name/ro:Arch Add Workbenches:[MenuLocation:Arch → Add SeeAlso:[[Arch Remove|Arch Remove](Arch_Workbench/ro___Arch]].md)--- @@ -106,11 +107,5 @@ Arch.addComponents(Wall2, Wall) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Add/ro diff --git a/wiki/translations/ro/Arch_Axis.md b/wiki/translations/ro/Arch_Axis.md index a5af61aff7..aa46fde9d9 100644 --- a/wiki/translations/ro/Arch_Axis.md +++ b/wiki/translations/ro/Arch_Axis.md @@ -8,6 +8,8 @@ SeeAlso:[Axis System](Arch_AxisSystem/ro.md), [Grid](Arch_Grid.md) --- +# Arch Axis/ro +
@@ -147,5 +149,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Axis/ro diff --git a/wiki/translations/ro/Arch_AxisSystem.md b/wiki/translations/ro/Arch_AxisSystem.md index c7d2b5aa04..e74be587b8 100644 --- a/wiki/translations/ro/Arch_AxisSystem.md +++ b/wiki/translations/ro/Arch_AxisSystem.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Axis](Arch_Axis/ro.md), [Grid](Arch_Grid/ro.md) --- +# Arch AxisSystem/ro + @@ -127,5 +129,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch AxisSystem/ro diff --git a/wiki/translations/ro/Arch_BimServer.md b/wiki/translations/ro/Arch_BimServer.md index 3695239e26..1cbafedad4 100644 --- a/wiki/translations/ro/Arch_BimServer.md +++ b/wiki/translations/ro/Arch_BimServer.md @@ -1,2 +1,5 @@ # Arch BimServer/ro 1. REDIRECT [WebTools\_BimServer/ro](WebTools_BimServer/ro.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BimServer/ro diff --git a/wiki/translations/ro/Arch_Building.md b/wiki/translations/ro/Arch_Building.md index c4f2015443..1635cfa4d5 100644 --- a/wiki/translations/ro/Arch_Building.md +++ b/wiki/translations/ro/Arch_Building.md @@ -1,3 +1,4 @@ +# Arch Building/ro --- - GuiCommand:/ro Name:Arch Building Name/ro:Arch Building Workbenches:[MenuLocation:Arch → Building Shortcut:B U SeeAlso:[[Arch Floor](Arch_Workbench/ro___Arch]].md), [[Arch Site]]--- @@ -100,5 +101,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Building/ro diff --git a/wiki/translations/ro/Arch_BuildingPart.md b/wiki/translations/ro/Arch_BuildingPart.md index 1a9c7fa5a5..49368f4930 100644 --- a/wiki/translations/ro/Arch_BuildingPart.md +++ b/wiki/translations/ro/Arch_BuildingPart.md @@ -8,6 +8,8 @@ SeeAlso:[[Arch Building]], [[Arch Floor]] --- +# Arch BuildingPart/ro + @@ -231,5 +233,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BuildingPart/ro diff --git a/wiki/translations/ro/Arch_Check.md b/wiki/translations/ro/Arch_Check.md index 10806ce0df..e5ad7611a9 100644 --- a/wiki/translations/ro/Arch_Check.md +++ b/wiki/translations/ro/Arch_Check.md @@ -6,6 +6,8 @@ SeeAlso:[Arch CloseHoles](Arch_CloseHoles.md) --- +# Arch Check/ro + @@ -95,8 +97,5 @@ print(list_bad) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Check/ro diff --git a/wiki/translations/ro/Arch_CloneComponent.md b/wiki/translations/ro/Arch_CloneComponent.md index 7f4fda0054..93687c8ec0 100644 --- a/wiki/translations/ro/Arch_CloneComponent.md +++ b/wiki/translations/ro/Arch_CloneComponent.md @@ -8,6 +8,8 @@ Icon:Arch_Component_Clone.svg --- +# Arch CloneComponent/ro + @@ -46,5 +48,5 @@ Componenta clonei va avea pur și simplu proprietatea \'\'\' CloneOf \'\'\'setat - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloneComponent/ro diff --git a/wiki/translations/ro/Arch_CloseHoles.md b/wiki/translations/ro/Arch_CloseHoles.md index 4fcb1251c1..a38c862be4 100644 --- a/wiki/translations/ro/Arch_CloseHoles.md +++ b/wiki/translations/ro/Arch_CloseHoles.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Check](Arch_Check/ro.md) --- +# Arch CloseHoles/ro + @@ -89,11 +91,5 @@ FreeCAD.ActiveDocument.recompute() solid = Arch.closeHole(Wall.Shape) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloseHoles/ro diff --git a/wiki/translations/ro/Arch_Component.md b/wiki/translations/ro/Arch_Component.md index f44b22cf32..ee97dfbf16 100644 --- a/wiki/translations/ro/Arch_Component.md +++ b/wiki/translations/ro/Arch_Component.md @@ -7,6 +7,8 @@ Shortcut:**C** **M** --- +# Arch Component/ro + @@ -141,8 +143,5 @@ Obiectul componentă Arch este, de asemenea, o bază partajată de toate celelal - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Component/ro diff --git a/wiki/translations/ro/Arch_Frame.md b/wiki/translations/ro/Arch_Frame.md index 0d13bcaf2b..6ffc160c83 100644 --- a/wiki/translations/ro/Arch_Frame.md +++ b/wiki/translations/ro/Arch_Frame.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Wall]], [[Arch Structure]] --- +# Arch Frame/ro + @@ -126,8 +128,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Frame/ro diff --git a/wiki/translations/ro/Arch_Git.md b/wiki/translations/ro/Arch_Git.md index 2ca2f82243..c7207e4a11 100644 --- a/wiki/translations/ro/Arch_Git.md +++ b/wiki/translations/ro/Arch_Git.md @@ -1,2 +1,5 @@ # Arch Git/ro 1. REDIRECT [WebTools\_Git/ro](WebTools_Git/ro.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Git/ro diff --git a/wiki/translations/ro/Arch_IfcExplorer.md b/wiki/translations/ro/Arch_IfcExplorer.md index 858afdf2fe..e0d8eef539 100644 --- a/wiki/translations/ro/Arch_IfcExplorer.md +++ b/wiki/translations/ro/Arch_IfcExplorer.md @@ -7,6 +7,8 @@ SeeAlso:[Arch IFC](Arch_IFC/ro.md) --- +# Arch IfcExplorer/ro + @@ -59,3 +61,6 @@ Scopul acestui explorator este pur și simplu să vă permită să verificați c [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcExplorer/ro diff --git a/wiki/translations/ro/Arch_IfcSpreadsheet.md b/wiki/translations/ro/Arch_IfcSpreadsheet.md index 36be6024eb..b6df51c21f 100644 --- a/wiki/translations/ro/Arch_IfcSpreadsheet.md +++ b/wiki/translations/ro/Arch_IfcSpreadsheet.md @@ -9,6 +9,8 @@ Icon:Arch_Schedule.svg --- +# Arch IfcSpreadsheet/ro + @@ -58,5 +60,5 @@ spreadsheet = Arch.makeIfcSpreadsheet(Wall) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcSpreadsheet/ro diff --git a/wiki/translations/ro/Arch_MakeIfcSpreadsheet.md b/wiki/translations/ro/Arch_MakeIfcSpreadsheet.md index 4f53995c42..7b4a21c161 100644 --- a/wiki/translations/ro/Arch_MakeIfcSpreadsheet.md +++ b/wiki/translations/ro/Arch_MakeIfcSpreadsheet.md @@ -1,2 +1,5 @@ # Arch MakeIfcSpreadsheet/ro 1. REDIRECT [Arch\_IfcSpreadsheet/ro](Arch_IfcSpreadsheet/ro.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MakeIfcSpreadsheet/ro diff --git a/wiki/translations/ro/Arch_MergeWalls.md b/wiki/translations/ro/Arch_MergeWalls.md index d4930a58ea..df14bc7a0d 100644 --- a/wiki/translations/ro/Arch_MergeWalls.md +++ b/wiki/translations/ro/Arch_MergeWalls.md @@ -6,6 +6,8 @@ SeeAlso:[[Arch Wall/ro]] --- +# Arch MergeWalls/ro + @@ -59,5 +61,5 @@ base = Arch.joinWalls([Wall1, Wall2]) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MergeWalls/ro diff --git a/wiki/translations/ro/Arch_MeshToShape.md b/wiki/translations/ro/Arch_MeshToShape.md index ae66e80140..90ea1d74c0 100644 --- a/wiki/translations/ro/Arch_MeshToShape.md +++ b/wiki/translations/ro/Arch_MeshToShape.md @@ -7,6 +7,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh/ro.md), [Arch RemoveShape](Arch_RemoveShape/ro.md) --- +# Arch MeshToShape/ro + @@ -94,5 +96,5 @@ new_obj = Arch.meshToShape(Box) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MeshToShape/ro diff --git a/wiki/translations/ro/Arch_Module.md b/wiki/translations/ro/Arch_Module.md index 553ce4e5ac..f74195f882 100644 --- a/wiki/translations/ro/Arch_Module.md +++ b/wiki/translations/ro/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/ro 1. REDIRECT [Arch\_Workbench/ro](Arch_Workbench/ro.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/ro diff --git a/wiki/translations/ro/Arch_MultiMaterial.md b/wiki/translations/ro/Arch_MultiMaterial.md index 3ce9e3b127..3bbb8e61bf 100644 --- a/wiki/translations/ro/Arch_MultiMaterial.md +++ b/wiki/translations/ro/Arch_MultiMaterial.md @@ -5,6 +5,8 @@ MenuLocation:Arch → Multi-Material --- +# Arch MultiMaterial/ro + @@ -84,5 +86,5 @@ This roughly corresponds to a combination of [IfcMaterialLayerSet](https://stand - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MultiMaterial/ro diff --git a/wiki/translations/ro/Arch_Nest.md b/wiki/translations/ro/Arch_Nest.md index cc1a6803c3..fe6958c99f 100644 --- a/wiki/translations/ro/Arch_Nest.md +++ b/wiki/translations/ro/Arch_Nest.md @@ -6,6 +6,8 @@ SeeAlso:[[Arch Panel/ro]], [[Arch Panel Sheet/ro]] --- +# Arch Nest/ro + @@ -68,5 +70,5 @@ Algoritmul din spatele instrumentului Nest (Economizor) este în evoluție const - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Nest/ro diff --git a/wiki/translations/ro/Arch_Panel.md b/wiki/translations/ro/Arch_Panel.md index 001bddb6d6..5af42271e4 100644 --- a/wiki/translations/ro/Arch_Panel.md +++ b/wiki/translations/ro/Arch_Panel.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Arch Panel/ro + @@ -142,5 +144,5 @@ Panel = Arch.makePanel(Rect, thickness=36) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel/ro diff --git a/wiki/translations/ro/Arch_Panel_Cut.md b/wiki/translations/ro/Arch_Panel_Cut.md index 98f87197c9..2a48c4099c 100644 --- a/wiki/translations/ro/Arch_Panel_Cut.md +++ b/wiki/translations/ro/Arch_Panel_Cut.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Panel/ro]], [[Arch Panel Sheet/ro]], [[Arch Nest/ro]], [[Path Workbench/ro]] --- +# Arch Panel Cut/ro + @@ -143,5 +145,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Cut/ro diff --git a/wiki/translations/ro/Arch_Pipe.md b/wiki/translations/ro/Arch_Pipe.md index 71eca4c03e..418547dd9a 100644 --- a/wiki/translations/ro/Arch_Pipe.md +++ b/wiki/translations/ro/Arch_Pipe.md @@ -8,6 +8,8 @@ SeeAlso:[Arch PipeConnector](Arch_PipeConnector/ro.md), [Arch Equipment](Arch_Equipment/ro.md) --- +# Arch Pipe/ro + @@ -160,5 +162,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Pipe/ro diff --git a/wiki/translations/ro/Arch_PipeConnector.md b/wiki/translations/ro/Arch_PipeConnector.md index b1a9a023eb..31779a3fe8 100644 --- a/wiki/translations/ro/Arch_PipeConnector.md +++ b/wiki/translations/ro/Arch_PipeConnector.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch PipeConnector/ro + @@ -116,8 +118,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch PipeConnector/ro diff --git a/wiki/translations/ro/Arch_Rebar.md b/wiki/translations/ro/Arch_Rebar.md index be5a9211d2..b4e83f3c1b 100644 --- a/wiki/translations/ro/Arch_Rebar.md +++ b/wiki/translations/ro/Arch_Rebar.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Structure](Arch_Structure/ro.md) --- +# Arch Rebar/ro + @@ -24,6 +26,8 @@ SeeAlso:[Arch Structure](Arch_Structure/ro.md) --- +# Arch Rebar/ro + @@ -177,3 +181,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/ro](Category:Arch/ro.md) [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar/ro diff --git a/wiki/translations/ro/Arch_Rebar_BentShape.md b/wiki/translations/ro/Arch_Rebar_BentShape.md index 5e7e139e92..959146542c 100644 --- a/wiki/translations/ro/Arch_Rebar_BentShape.md +++ b/wiki/translations/ro/Arch_Rebar_BentShape.md @@ -1,3 +1,4 @@ +# Arch Rebar BentShape/ro --- - GuiCommand:Addon Name:Arch Rebar BentShape Workbenches:[Addon:Reinforcement MenuLocation:Arch → Rebar tools Shortcut:None SeeAlso:[[Arch_Rebar_Stirrup|Stirrup](Arch_Workbench/ro___Arch]].md)--- @@ -178,3 +179,6 @@ BentShapeRebar.editBentShapeRebar(Rebar2, 50, 35, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BentShape/ro diff --git a/wiki/translations/ro/Arch_Rebar_Helical.md b/wiki/translations/ro/Arch_Rebar_Helical.md index ccef8882f0..8aefc16bc2 100644 --- a/wiki/translations/ro/Arch_Rebar_Helical.md +++ b/wiki/translations/ro/Arch_Rebar_Helical.md @@ -9,6 +9,8 @@ Addon:Reinforcement --- +# Arch Rebar Helical/ro + @@ -161,3 +163,6 @@ HelicalRebar.editHelicalRebar(Rebar, 20, 100, 20, 20, 100) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Helical/ro diff --git a/wiki/translations/ro/Arch_Rebar_LShape.md b/wiki/translations/ro/Arch_Rebar_LShape.md index 89486787ee..88a8d94c7f 100644 --- a/wiki/translations/ro/Arch_Rebar_LShape.md +++ b/wiki/translations/ro/Arch_Rebar_LShape.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch Rebar LShape/ro + @@ -188,3 +190,6 @@ LShapeRebar.editLShapeRebar(Rebar2, 50, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar LShape/ro diff --git a/wiki/translations/ro/Arch_Rebar_Stirrup.md b/wiki/translations/ro/Arch_Rebar_Stirrup.md index 51addcad05..2392c62c2a 100644 --- a/wiki/translations/ro/Arch_Rebar_Stirrup.md +++ b/wiki/translations/ro/Arch_Rebar_Stirrup.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch Rebar Stirrup/ro + @@ -195,3 +197,6 @@ Stirrup.editStirrup(Rebar, 20, 20, 20, 20, 50, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Stirrup/ro diff --git a/wiki/translations/ro/Arch_Rebar_Straight.md b/wiki/translations/ro/Arch_Rebar_Straight.md index e245bcd978..3f5ca081f3 100644 --- a/wiki/translations/ro/Arch_Rebar_Straight.md +++ b/wiki/translations/ro/Arch_Rebar_Straight.md @@ -9,6 +9,8 @@ Addon:Reinforcement --- +# Arch Rebar Straight/ro + @@ -248,3 +250,6 @@ StraightRebar.editStraightRebar(Rebar4, 50, ("Right Side", 50), 100, 100, [Category:Arch/ro](Category:Arch/ro.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Straight/ro diff --git a/wiki/translations/ro/Arch_Rebar_UShape.md b/wiki/translations/ro/Arch_Rebar_UShape.md index 023e68185a..7106b4afea 100644 --- a/wiki/translations/ro/Arch_Rebar_UShape.md +++ b/wiki/translations/ro/Arch_Rebar_UShape.md @@ -9,6 +9,8 @@ Addon:Reinforcement --- +# Arch Rebar UShape/ro + @@ -187,3 +189,6 @@ UShapeRebar.editUShapeRebar(Rebar2, 70, 50, 20, 20, [Category:Arch/ro](Category:Arch/ro.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar UShape/ro diff --git a/wiki/translations/ro/Arch_Reference.md b/wiki/translations/ro/Arch_Reference.md index 3321e0e14b..6398a76781 100644 --- a/wiki/translations/ro/Arch_Reference.md +++ b/wiki/translations/ro/Arch_Reference.md @@ -8,6 +8,8 @@ SeeAlso:[[Arch BuildingPart]] --- +# Arch Reference/ro + @@ -87,8 +89,5 @@ import Arch Arch.makeReference("/path/to/some/file.FSCtd","myPart") ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Reference/ro diff --git a/wiki/translations/ro/Arch_Remove.md b/wiki/translations/ro/Arch_Remove.md index 4727ef29bc..3c2172bc48 100644 --- a/wiki/translations/ro/Arch_Remove.md +++ b/wiki/translations/ro/Arch_Remove.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Add]] --- +# Arch Remove/ro + @@ -119,8 +121,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove/ro diff --git a/wiki/translations/ro/Arch_RemoveShape.md b/wiki/translations/ro/Arch_RemoveShape.md index 360c015ca2..5d878b2ceb 100644 --- a/wiki/translations/ro/Arch_RemoveShape.md +++ b/wiki/translations/ro/Arch_RemoveShape.md @@ -6,6 +6,8 @@ SeeAlso:[Arch MeshToShape](Arch_MeshToShape.md) --- +# Arch RemoveShape/ro + @@ -85,5 +87,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch RemoveShape/ro diff --git a/wiki/translations/ro/Arch_Roof.md b/wiki/translations/ro/Arch_Roof.md index 0397ef87b3..368c483aca 100644 --- a/wiki/translations/ro/Arch_Roof.md +++ b/wiki/translations/ro/Arch_Roof.md @@ -8,6 +8,8 @@ SeeAlso:[[Arch Structure]], [[Arch Wall]] --- +# Arch Roof/ro + @@ -159,3 +161,6 @@ doc.recompute() [Category:Arch/ro](Category:Arch/ro.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Roof/ro diff --git a/wiki/translations/ro/Arch_Schedule.md b/wiki/translations/ro/Arch_Schedule.md index 7d204f9234..2e922842de 100644 --- a/wiki/translations/ro/Arch_Schedule.md +++ b/wiki/translations/ro/Arch_Schedule.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Equipment]] --- +# Arch Schedule/ro + @@ -117,8 +119,5 @@ The spreadsheet can then be exported to csv normally, from the Spreadsheet workb It is possible to add your own properties to objects. These are called [Dynamic properties](Property_editor#Actions.md). If they have been added with the **Prefix group name** option selected, their names will indeed start with the group name, but this prefix is not displayed in the [Property editor](Property_editor.md). Their names have this form: `NameOfGroup_NameOfProperty`. To reference them in a schedule this full name must be used. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Schedule/ro diff --git a/wiki/translations/ro/Arch_SectionPlane.md b/wiki/translations/ro/Arch_SectionPlane.md index 43bb6aa811..6e3780b34b 100644 --- a/wiki/translations/ro/Arch_SectionPlane.md +++ b/wiki/translations/ro/Arch_SectionPlane.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Shape2DView](Draft_Shape2DView.md), [TechDraw NewArch](TechDraw_NewArch.md) --- +# Arch SectionPlane/ro + @@ -186,3 +188,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/ro](Category:Arch/ro.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane/ro diff --git a/wiki/translations/ro/Arch_SelectNonSolidMeshes.md b/wiki/translations/ro/Arch_SelectNonSolidMeshes.md index da8cf89280..eb67acfc7b 100644 --- a/wiki/translations/ro/Arch_SelectNonSolidMeshes.md +++ b/wiki/translations/ro/Arch_SelectNonSolidMeshes.md @@ -7,6 +7,8 @@ SeeAlso:[Arch MeshToShape](Arch_SplitMesh]],_[[Arch_MeshToShape.md) --- +# Arch SelectNonSolidMeshes/ro + @@ -37,8 +39,5 @@ Acest instrument identifică și selectează obiecte non solide/neprintabile 3D - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SelectNonSolidMeshes/ro diff --git a/wiki/translations/ro/Arch_SetMaterial.md b/wiki/translations/ro/Arch_SetMaterial.md index 260267492a..6f6dd6eb57 100644 --- a/wiki/translations/ro/Arch_SetMaterial.md +++ b/wiki/translations/ro/Arch_SetMaterial.md @@ -6,6 +6,8 @@ Shortcut:**M** **T** --- +# Arch SetMaterial/ro + @@ -83,5 +85,5 @@ This roughly corresponds to [IfcMaterial](https://standards.buildingsmart.org/IF - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SetMaterial/ro diff --git a/wiki/translations/ro/Arch_Site.md b/wiki/translations/ro/Arch_Site.md index 0c2c931721..aff7ed7585 100644 --- a/wiki/translations/ro/Arch_Site.md +++ b/wiki/translations/ro/Arch_Site.md @@ -1,3 +1,4 @@ +# Arch Site/ro --- - GuiCommand: Name:Arch Site Workbenches:[MenuLocation:Arch → Site Shortcut:S I SeeAlso:[[Arch Floor|Arch Floor](Arch_Workbench/ro___Arch]].md), [Arch Building](Arch_Building.md)--- @@ -236,5 +237,5 @@ FreeCAD.Gui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Site/ro diff --git a/wiki/translations/ro/Arch_Space.md b/wiki/translations/ro/Arch_Space.md index ece879f6a0..f14123b797 100644 --- a/wiki/translations/ro/Arch_Space.md +++ b/wiki/translations/ro/Arch_Space.md @@ -8,6 +8,8 @@ Version:0.14 --- +# Arch Space/ro + @@ -201,5 +203,5 @@ Arch.removeSpaceBoundaries(Space, selection) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Space/ro diff --git a/wiki/translations/ro/Arch_SplitMesh.md b/wiki/translations/ro/Arch_SplitMesh.md index 981ad84415..e5dcc31d8e 100644 --- a/wiki/translations/ro/Arch_SplitMesh.md +++ b/wiki/translations/ro/Arch_SplitMesh.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch SelectNonSolidMeshes]], [[Arch MeshToShape]] --- +# Arch SplitMesh/ro + @@ -86,11 +88,5 @@ mesh_obj.ViewObject.DisplayMode = "Flat Lines" new_list = Arch.splitMesh(mesh_obj) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SplitMesh/ro diff --git a/wiki/translations/ro/Arch_Stairs.md b/wiki/translations/ro/Arch_Stairs.md index fb0afe7f6d..2a8dd95406 100644 --- a/wiki/translations/ro/Arch_Stairs.md +++ b/wiki/translations/ro/Arch_Stairs.md @@ -9,6 +9,8 @@ Version:0.14 --- +# Arch Stairs/ro + @@ -156,5 +158,5 @@ Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Stairs/ro diff --git a/wiki/translations/ro/Arch_Structure.md b/wiki/translations/ro/Arch_Structure.md index 667956a7a6..9ef20e4888 100644 --- a/wiki/translations/ro/Arch_Structure.md +++ b/wiki/translations/ro/Arch_Structure.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall/ro](Arch_Wall/ro.md), [Arch Rebar/ro](Arch_Rebar/ro.md) --- +# Arch Structure/ro + @@ -161,8 +163,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/ro diff --git a/wiki/translations/ro/Arch_Survey.md b/wiki/translations/ro/Arch_Survey.md index e123209fed..7bc4d12be5 100644 --- a/wiki/translations/ro/Arch_Survey.md +++ b/wiki/translations/ro/Arch_Survey.md @@ -7,6 +7,8 @@ SeeAlso:[FCInfo (macro)](Macro_FCInfo/ro.md) --- +# Arch Survey/ro + @@ -94,8 +96,5 @@ for obj in selection: print("Center of Mass: %f", element.CenterOfMass) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Survey/ro diff --git a/wiki/translations/ro/Arch_ToggleIfcBrepFlag.md b/wiki/translations/ro/Arch_ToggleIfcBrepFlag.md index 05b599b2f8..a3f257ac13 100644 --- a/wiki/translations/ro/Arch_ToggleIfcBrepFlag.md +++ b/wiki/translations/ro/Arch_ToggleIfcBrepFlag.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Arch ToggleIfcBrepFlag/ro + @@ -41,11 +43,5 @@ Acest instrument activează / dezactivează opțiunea IfcBrep a unui obiect [Mod - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleIfcBrepFlag/ro diff --git a/wiki/translations/ro/Arch_ToggleSubs.md b/wiki/translations/ro/Arch_ToggleSubs.md index 97e7a917eb..097ac6f547 100644 --- a/wiki/translations/ro/Arch_ToggleSubs.md +++ b/wiki/translations/ro/Arch_ToggleSubs.md @@ -1,3 +1,4 @@ +# Arch ToggleSubs/ro --- - GuiCommand: Name:Arch ToggleSubs Workbenches:[[Arch_Workbench/ro Arch]]|MenuLocation:Arch → Utilities → Toggle Subcomponents Shortcut:‏‎ SeeAlso:--- @@ -48,8 +49,5 @@ Opțiunea preferinței **Edit -\> Preferences → Arch → Apply Construction st The [Draft construction](Draft_ToggleConstructionMode.md) style can be set in the [Draft Preferences](Draft_Preferences.md), in the menu **Preferences → Draft → General Draft**. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleSubs/ro diff --git a/wiki/translations/ro/Arch_Wall.md b/wiki/translations/ro/Arch_Wall.md index 10f5afa221..05fbc6b876 100644 --- a/wiki/translations/ro/Arch_Wall.md +++ b/wiki/translations/ro/Arch_Wall.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Structure](Arch_Structure/ro.md) --- +# Arch Wall/ro + @@ -225,3 +227,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/ro](Category:Arch/ro.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/ro diff --git a/wiki/translations/ro/Arch_Window.md b/wiki/translations/ro/Arch_Window.md index b1822f0463..dcd6235397 100644 --- a/wiki/translations/ro/Arch_Window.md +++ b/wiki/translations/ro/Arch_Window.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Wall](Arch_Wall/ro.md) --- +# Arch Window/ro + @@ -317,3 +319,6 @@ Door = Arch.makeWindowPreset("Simple door", [Category:Arch/ro](Category:Arch/ro.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Window/ro diff --git a/wiki/translations/ro/Arch_Workbench.md b/wiki/translations/ro/Arch_Workbench.md index 70fb90abe0..43ab54af1a 100644 --- a/wiki/translations/ro/Arch_Workbench.md +++ b/wiki/translations/ro/Arch_Workbench.md @@ -1,7 +1,4 @@ # Arch Workbench/ro - - - {{docnav/ro |[Workbenches](Workbenches/ro.md) |[Draft Module](Draft_Workbench/ro.md) @@ -151,3 +148,6 @@ Modulul Arch poate fi folosit în scripturile [Python](Python.md) scripts și [m [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/ro diff --git a/wiki/translations/ro/Arch_panel_tutorial.md b/wiki/translations/ro/Arch_panel_tutorial.md index d41b214de3..d935052754 100644 --- a/wiki/translations/ro/Arch_panel_tutorial.md +++ b/wiki/translations/ro/Arch_panel_tutorial.md @@ -1,7 +1,4 @@ # Arch panel tutorial/ro - - - {{TutorialInfo/ro |Topic= Modeling an architectural panel |Level= Beginner @@ -198,4 +195,7 @@ Atât instrumentele Draft Rotire cât și Move utilizează sistemul de ancorare {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch panel tutorial/ro diff --git a/wiki/translations/ro/Arch_tutorial.md b/wiki/translations/ro/Arch_tutorial.md index 6480c995dc..f1b4df0bd7 100644 --- a/wiki/translations/ro/Arch_tutorial.md +++ b/wiki/translations/ro/Arch_tutorial.md @@ -1,7 +1,4 @@ # Arch tutorial/ro - - -
@@ -659,4 +656,7 @@ Fișierul creat pe durata acestui tutorial poate fi găsit la [here](http://yori {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch tutorial/ro diff --git a/wiki/translations/ro/Assembly_project.md b/wiki/translations/ro/Assembly_project.md index b7beb3c6a8..448b1e0d5f 100644 --- a/wiki/translations/ro/Assembly_project.md +++ b/wiki/translations/ro/Assembly_project.md @@ -1,7 +1,4 @@ # Assembly project/ro - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -156,3 +153,6 @@ Interface to allow (external) (multi)physics simulation software to take control - \... [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Assembly project/ro diff --git a/wiki/translations/ro/BIM_Box.md b/wiki/translations/ro/BIM_Box.md index 0401bc0b52..9ace195686 100644 --- a/wiki/translations/ro/BIM_Box.md +++ b/wiki/translations/ro/BIM_Box.md @@ -7,6 +7,8 @@ SeeAlso:[Part Box](Part_Box.md) --- +# BIM Box/ro + ## Descriere @@ -27,3 +29,6 @@ Instrumentul BIM Box vă permite să creați un [Part Box](Part_Box.md) standard 3. Faceți clic pe un al doilea punct pentru a defini o primă margine a casetei, pornind de la primul punct 4. Faceți clic pe un al treilea punct pentru a defini o primă față a cutiei, ortogonală cu prima margine 5. Click pe al patrulea punct pentru a defini distanța de extruziune a primei fațete, formând caseta finală + +--- +[documentation index](../README.md) > BIM Box/ro diff --git a/wiki/translations/ro/BIM_Copy.md b/wiki/translations/ro/BIM_Copy.md index 18beeef370..81b640f213 100644 --- a/wiki/translations/ro/BIM_Copy.md +++ b/wiki/translations/ro/BIM_Copy.md @@ -7,6 +7,11 @@ SeeAlso:[Draft Move](Draft_Move.md) --- +# BIM Copy/ro + ## Descriere Instrumentul de copiere BIM este o comandă rapidă pentru instrumentul [Draft Move](Draft_Move.md), dar pornind de la opțiunea **Copiere** activată, permițând astfel crearea unei copii a unui obiect și plasarea lui într-o locație dată, dintr-o singură mișcare. + +--- +[documentation index](../README.md) > BIM Copy/ro diff --git a/wiki/translations/ro/BIM_Library.md b/wiki/translations/ro/BIM_Library.md index 09b272d29f..a0294434d1 100644 --- a/wiki/translations/ro/BIM_Library.md +++ b/wiki/translations/ro/BIM_Library.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Equipment]] --- +# BIM Library/ro +
@@ -66,3 +68,6 @@ Instrumentul Bibliotecă vă permite să plasați, în modelul curent, un obiect [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM Library/ro diff --git a/wiki/translations/ro/BIM_Project.md b/wiki/translations/ro/BIM_Project.md index 8ca9a0d818..e460fbf04c 100644 --- a/wiki/translations/ro/BIM_Project.md +++ b/wiki/translations/ro/BIM_Project.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Project --- +# BIM Project/ro + @@ -41,3 +43,6 @@ După ce ați completat diferitele opțiuni, conținutul expertului de configura Alternatively, you can also save the contents of the current document as a template. This will save the currently opened document as a standard **.FCStd** file, but also include additional BIM settings like the current working plane, or current units. By using the **restore** option anytime, the contents of that template file will be merged into the active document and all settings found in it applied. + +--- +[documentation index](../README.md) > BIM Project/ro diff --git a/wiki/translations/ro/BIM_Setup.md b/wiki/translations/ro/BIM_Setup.md index 790223659a..bbc66de7cd 100644 --- a/wiki/translations/ro/BIM_Setup.md +++ b/wiki/translations/ro/BIM_Setup.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Setup --- +# BIM Setup/ro + ## Descriere @@ -13,3 +15,6 @@ Sistemul de preferințe al FreeCAD, situat sub meniul **Edit -\> Preferences**, este foarte complex. \'\'\'Dialogul de configurare BIM \'\'\' oferă o versiune simplificată a acestuia, prin colectarea unor setări de preferințe utilizate cel mai frecvent pentru lucrul BIM sub un singur ecran simplu. Schimbarea oricărei opțiuni de preferință are același efect ca schimbarea setării corespunzătoare din Editare -\> Preferințe. Dacă glisați mouse-ul peste fiecare setare, veți primi un ttoltip care explică ce este folosit și locația setării corespunzătoare în sistemul general de preferințe FreeCAD. + +--- +[documentation index](../README.md) > BIM Setup/ro diff --git a/wiki/translations/ro/Base_API.md b/wiki/translations/ro/Base_API.md index 872fa9430b..6ec537e6b3 100644 --- a/wiki/translations/ro/Base_API.md +++ b/wiki/translations/ro/Base_API.md @@ -1,5 +1,5 @@ # Base API/ro - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Modulul de bază este conținut în interiorul modulului FreeCAD și conține constructori pentru diferite tipuri de obiecte folosite în mod frecvent în FreeCAD. @@ -30,3 +30,6 @@ O cutie de legare este un cub ortografic, care este o modalitate de a descrie gr [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Base API/ro diff --git a/wiki/translations/ro/Basic_Part_Design_Tutorial.md b/wiki/translations/ro/Basic_Part_Design_Tutorial.md index d8c7885437..a11b174eeb 100644 --- a/wiki/translations/ro/Basic_Part_Design_Tutorial.md +++ b/wiki/translations/ro/Basic_Part_Design_Tutorial.md @@ -1,7 +1,4 @@ # Basic Part Design Tutorial/ro - - -
@@ -157,4 +154,7 @@ This tutorial and your model are complete. {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Part Design Tutorial/ro diff --git a/wiki/translations/ro/Basic_Part_Design_Tutorial_017.md b/wiki/translations/ro/Basic_Part_Design_Tutorial_017.md index ff1f6f57dd..8b8ad0d818 100644 --- a/wiki/translations/ro/Basic_Part_Design_Tutorial_017.md +++ b/wiki/translations/ro/Basic_Part_Design_Tutorial_017.md @@ -1,2 +1,5 @@ # Basic Part Design Tutorial 017/ro 1. REDIRECT [Basic\_Part\_Design\_Tutorial/ro](Basic_Part_Design_Tutorial/ro.md) + +--- +[documentation index](../README.md) > Basic Part Design Tutorial 017/ro diff --git a/wiki/translations/ro/Basic_Sketcher_Tutorial.md b/wiki/translations/ro/Basic_Sketcher_Tutorial.md index 4b74327bfe..d7639519c2 100644 --- a/wiki/translations/ro/Basic_Sketcher_Tutorial.md +++ b/wiki/translations/ro/Basic_Sketcher_Tutorial.md @@ -1,7 +1,4 @@ # Basic Sketcher Tutorial/ro - - -
@@ -441,3 +438,6 @@ Constraining a sketch can be done in many different ways. In general, it is reco }} {{Sketcher Tools navi}} [Category:Sketcher](Category:Sketcher.md) + +--- +[documentation index](../README.md) > Basic Sketcher Tutorial/ro diff --git a/wiki/translations/ro/Basic_TechDraw_Tutorial.md b/wiki/translations/ro/Basic_TechDraw_Tutorial.md index b52a5bb63e..c3405c22f0 100644 --- a/wiki/translations/ro/Basic_TechDraw_Tutorial.md +++ b/wiki/translations/ro/Basic_TechDraw_Tutorial.md @@ -1,7 +1,4 @@ # Basic TechDraw Tutorial/ro - - -
@@ -145,4 +142,7 @@ There is much more functionality in TechDraw for you to explore - Section Views, {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Basic TechDraw Tutorial/ro diff --git a/wiki/translations/ro/Basic_modeling_tutorial.md b/wiki/translations/ro/Basic_modeling_tutorial.md index 341d3c5b52..e5459b790f 100644 --- a/wiki/translations/ro/Basic_modeling_tutorial.md +++ b/wiki/translations/ro/Basic_modeling_tutorial.md @@ -1,5 +1,5 @@ # Basic modeling tutorial/ro - {{TutorialInfo/ro +{{TutorialInfo/ro |Topic= Introduction to modelling |Level= Beginner |Time= 15 minutes @@ -203,4 +203,7 @@ Instrucțiunile de mai sus vor funcționa, indiferent de eticheta pe care o are {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Basic modeling tutorial/ro diff --git a/wiki/translations/ro/Branding.md b/wiki/translations/ro/Branding.md index eddad679e5..c682570ffb 100644 --- a/wiki/translations/ro/Branding.md +++ b/wiki/translations/ro/Branding.md @@ -1,10 +1,4 @@ # Branding/ro - - - - - - {{TOCright}} ## Overview @@ -148,3 +142,6 @@ Toate etichetele enumerate sunt opționale. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Branding/ro diff --git a/wiki/translations/ro/Builtin_modules.md b/wiki/translations/ro/Builtin_modules.md index fdd324076c..6255c2fa28 100644 --- a/wiki/translations/ro/Builtin_modules.md +++ b/wiki/translations/ro/Builtin_modules.md @@ -1,5 +1,5 @@ # Builtin modules/ro - **(October 2019) Do not edit these pages. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself by following [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit these pages. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself by following [Source documentation](Source_documentation.md).** Această pagină oferă informații detaliate despre modulele integrate în FreeCAD și care sunt caracteristicile și proprietățile disponibile. Această pagină nu este o listă completă a conținutului acestor module și, datorită evoluției rapide a FreeCAD, informațiile prezentate aici pot fi depășite, dar ar trebui să vă ofere o imagine de ansamblu asupra posibilităților sale. Pentru o listă completă a conținutului modulului, utilizați funcția dir (nume\_model) în interpretul încorporat în FreeCAD. @@ -29,3 +29,6 @@ Această pagină oferă informații detaliate despre modulele integrate în Free }} [Category:API](Category:API.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Builtin modules/ro diff --git a/wiki/translations/ro/CAM_project.md b/wiki/translations/ro/CAM_project.md index 1a4cfec804..2765a07f56 100644 --- a/wiki/translations/ro/CAM_project.md +++ b/wiki/translations/ro/CAM_project.md @@ -1,7 +1,10 @@ # CAM project/ro - Baza de lucru CAM și proiectul sunt abandonate. Vedeți în schimb [Path Workbench](Path_Workbench.md) +Baza de lucru CAM și proiectul sunt abandonate. Vedeți în schimb [Path Workbench](Path_Workbench.md) [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > CAM project/ro diff --git a/wiki/translations/ro/Category:3rd_Party.md b/wiki/translations/ro/Category:3rd_Party.md index 3467e80292..f797af36be 100644 --- a/wiki/translations/ro/Category:3rd_Party.md +++ b/wiki/translations/ro/Category:3rd_Party.md @@ -4,3 +4,6 @@ External aka 3rd-Party applications/libraries that FreeCAD depends on or are of ### Contents: [3Dconnexion input devices/ro](3Dconnexion_input_devices/ro.md) , [Import/Export IFC - compiling IfcOpenShell/ro](Import/Export_IFC_-_compiling_IfcOpenShell/ro.md) , [Std DependencyGraph/ro](Std_DependencyGraph/ro.md) + +--- +[documentation index](../README.md) > Category:3rd Party/ro diff --git a/wiki/translations/ro/Category:API.md b/wiki/translations/ro/Category:API.md index 81bf309464..3ce732f880 100644 --- a/wiki/translations/ro/Category:API.md +++ b/wiki/translations/ro/Category:API.md @@ -9,3 +9,6 @@ This category gathers article that list objects and methods available to the pyt [Arch API/ro](Arch_API/ro.md) , [Base API/ro](Base_API/ro.md) , [Builtin modules/ro](Builtin_modules/ro.md) , [Console API/ro](Console_API/ro.md) , [Draft API/ro](Draft_API/ro.md) , [FreeCAD API/ro](FreeCAD_API/ro.md) , [FreeCADGui API/ro](FreeCADGui_API/ro.md) , [Matrix API/ro](Matrix_API/ro.md) , [Mesh API/ro](Mesh_API/ro.md) , [Object API/ro](Object_API/ro.md) , [Part API/ro](Part_API/ro.md) , [Placement API/ro](Placement_API/ro.md) , [TechDraw API/ro](TechDraw_API/ro.md) , [TechDrawGui API/ro](TechDrawGui_API/ro.md) , [TopoShape API/ro](TopoShape_API/ro.md) , [Vector API/ro](Vector_API/ro.md) , [ViewObject API/ro](ViewObject_API/ro.md) [Category:Categories/ro](Category:Categories/ro.md) + +--- +[documentation index](../README.md) > Category:API/ro diff --git a/wiki/translations/ro/Category:API_Documentation.md b/wiki/translations/ro/Category:API_Documentation.md index 2493280bd3..70bba23eb8 100644 --- a/wiki/translations/ro/Category:API_Documentation.md +++ b/wiki/translations/ro/Category:API_Documentation.md @@ -6,3 +6,6 @@ This category gathers all articles documenting the python API of FreeCAD and its [Python/ro](Python/ro.md) [Category:Documentation/ro](Category:Documentation/ro.md) + +--- +[documentation index](../README.md) > Category:API Documentation/ro diff --git a/wiki/translations/ro/Category:Addons.md b/wiki/translations/ro/Category:Addons.md index 2b88cb03bc..252a0d5ea2 100644 --- a/wiki/translations/ro/Category:Addons.md +++ b/wiki/translations/ro/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/ro - - Această pagină afișează addon la atelierele care au o pagină în acest wiki. Addon sunt module sau ateliere de lucru cu care contribuie comunitatea și nu fac parte din FreeCAD standard. ### Contents: @@ -8,3 +6,6 @@ Această pagină afișează addon la atelierele care au o pagină în acest wiki [External workbenches/ro](External_workbenches/ro.md) , [How to install additional workbenches/ro](How_to_install_additional_workbenches/ro.md) , [Plot Axes/ro](Plot_Axes/ro.md) , [Plot Grid/ro](Plot_Grid/ro.md) , [Plot Labels/ro](Plot_Labels/ro.md) , [Plot Legend/ro](Plot_Legend/ro.md) , [Plot Module/ro](Plot_Module/ro.md) , [Plot Positions/ro](Plot_Positions/ro.md) , [Plot Save/ro](Plot_Save/ro.md) , [Plot Series/ro](Plot_Series/ro.md) , [Render project/ro](Render_project/ro.md) , [Ship Workbench/ro](Ship_Workbench/ro.md) , , [Category:Categories](Category:Categories.md) [Category:External Workbenches/ro](Category:External_Workbenches/ro.md) [Category:Macros/ro](Category:Macros/ro.md) + +--- +[documentation index](../README.md) > Category:Addons/ro diff --git a/wiki/translations/ro/Category:Administration.md b/wiki/translations/ro/Category:Administration.md index dde1a98f11..b16d0a72be 100644 --- a/wiki/translations/ro/Category:Administration.md +++ b/wiki/translations/ro/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/ro](Template:Arch_Tools_navi/ro.md) , [Template:Drawing Tools navi/ro](Template:Drawing_Tools_navi/ro.md) , [Template:FEM Tools navi/ro](Template:FEM_Tools_navi/ro.md) , [Template:Mesh Tools navi/ro](Template:Mesh_Tools_navi/ro.md) , [Template:OpenSCAD Tools navi/ro](Template:OpenSCAD_Tools_navi/ro.md) , [Template:Part Tools navi/ro](Template:Part_Tools_navi/ro.md) , [Template:PartDesign Tools navi/ro](Template:PartDesign_Tools_navi/ro.md) , [Template:Path Tools navi/ro](Template:Path_Tools_navi/ro.md) , [Template:Plot Tools navi/ro](Template:Plot_Tools_navi/ro.md) , [Template:Powerdocnavi/ro](Template:Powerdocnavi/ro.md) , [Template:PropertyData/ro](Template:PropertyData/ro.md) , [Template:PropertyView/ro](Template:PropertyView/ro.md) , [Template:Raytracing Tools navi/ro](Template:Raytracing_Tools_navi/ro.md) , [Template:Robot Tools navi/ro](Template:Robot_Tools_navi/ro.md) , [Template:Ship Tools navi/ro](Template:Ship_Tools_navi/ro.md) , [Template:Sketcher Tools navi/ro](Template:Sketcher_Tools_navi/ro.md) , [Template:Std Base/ro](Template:Std_Base/ro.md) , [Template:StdMenu/ro](Template:StdMenu/ro.md) , [Tracker/ro](Tracker/ro.md) , [Template:UnfinishedDocu/ro](Template:UnfinishedDocu/ro.md) , , [Category:Categories/ro](Category:Categories/ro.md) [Category:UnfinishedDocu/ro](Category:UnfinishedDocu/ro.md) [Category:Wiki/ro](Category:Wiki/ro.md) + +--- +[documentation index](../README.md) > Category:Administration/ro diff --git a/wiki/translations/ro/Category:Arch.md b/wiki/translations/ro/Category:Arch.md index bf01738bcb..5b520aba09 100644 --- a/wiki/translations/ro/Category:Arch.md +++ b/wiki/translations/ro/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Arch 3Views/ro](Arch_3Views/ro.md) , [Arch Add/ro](Arch_Add/ro.md) , [Arch API/ro](Arch_API/ro.md) , [Arch Axis/ro](Arch_Axis/ro.md) , [Arch AxisSystem/ro](Arch_AxisSystem/ro.md) , [Arch Building/ro](Arch_Building/ro.md) , [Arch BuildingPart/ro](Arch_BuildingPart/ro.md) , [Arch Check/ro](Arch_Check/ro.md) , [Arch CloneComponent/ro](Arch_CloneComponent/ro.md) , [Arch CloseHoles/ro](Arch_CloseHoles/ro.md) , [Arch Component/ro](Arch_Component/ro.md) , [Arch Frame/ro](Arch_Frame/ro.md) , [Arch IfcExplorer/ro](Arch_IfcExplorer/ro.md) , [Arch IfcSpreadsheet/ro](Arch_IfcSpreadsheet/ro.md) , [Arch MergeWalls/ro](Arch_MergeWalls/ro.md) , [Arch MeshToShape/ro](Arch_MeshToShape/ro.md) , [Arch MultiMaterial/ro](Arch_MultiMaterial/ro.md) , [Arch Nest/ro](Arch_Nest/ro.md) , [Arch Panel Cut/ro](Arch_Panel_Cut/ro.md) , [Arch panel tutorial/ro](Arch_panel_tutorial/ro.md) , [Arch Panel/ro](Arch_Panel/ro.md) , [Arch Pipe/ro](Arch_Pipe/ro.md) , [Arch PipeConnector/ro](Arch_PipeConnector/ro.md) , [Arch Rebar BentShape/ro](Arch_Rebar_BentShape/ro.md) , [Arch Rebar Helical/ro](Arch_Rebar_Helical/ro.md) , [Arch Rebar LShape/ro](Arch_Rebar_LShape/ro.md) , [Arch Rebar Stirrup/ro](Arch_Rebar_Stirrup/ro.md) , [Arch Rebar Straight/ro](Arch_Rebar_Straight/ro.md) , [Arch Rebar UShape/ro](Arch_Rebar_UShape/ro.md) , [Arch Rebar/ro](Arch_Rebar/ro.md) , [Arch Reference/ro](Arch_Reference/ro.md) , [Arch Remove/ro](Arch_Remove/ro.md) , [Arch RemoveShape/ro](Arch_RemoveShape/ro.md) , [Arch Roof/ro](Arch_Roof/ro.md) , [Arch Schedule/ro](Arch_Schedule/ro.md) , [Arch SectionPlane/ro](Arch_SectionPlane/ro.md) , [Arch SelectNonSolidMeshes/ro](Arch_SelectNonSolidMeshes/ro.md) , [Arch SetMaterial/ro](Arch_SetMaterial/ro.md) , [Arch Site/ro](Arch_Site/ro.md) , [Arch Space/ro](Arch_Space/ro.md) , [Arch SplitMesh/ro](Arch_SplitMesh/ro.md) , [Arch Stairs/ro](Arch_Stairs/ro.md) , [Arch Structure/ro](Arch_Structure/ro.md) , [Arch Survey/ro](Arch_Survey/ro.md) , [Arch ToggleIfcBrepFlag/ro](Arch_ToggleIfcBrepFlag/ro.md) , [Arch ToggleSubs/ro](Arch_ToggleSubs/ro.md) , [Template:Arch Tools navi/ro](Template:Arch_Tools_navi/ro.md) , [Arch tutorial/ro](Arch_tutorial/ro.md) , [Arch Wall/ro](Arch_Wall/ro.md) , [Arch Window/ro](Arch_Window/ro.md) , [Arch Workbench/ro](Arch_Workbench/ro.md) , [BIM Library/ro](BIM_Library/ro.md) , [Custom Spacing/ro](Custom_Spacing/ro.md) , [Import/Export IFC - compiling IfcOpenShell/ro](Import/Export_IFC_-_compiling_IfcOpenShell/ro.md) , [Manual:BIM modeling/ro](Manual:BIM_modeling/ro.md) , [Material editor/ro](Material_editor/ro.md) , [Category:User Documentation/ro](Category:User_Documentation/ro.md) [Category:BIM/ro](Category:BIM/ro.md) [Category:Reinforcement/ro](Category:Reinforcement/ro.md) + +--- +[documentation index](../README.md) > Category:Arch/ro diff --git a/wiki/translations/ro/Category:BIM.md b/wiki/translations/ro/Category:BIM.md index 5d0912db2f..2114241124 100644 --- a/wiki/translations/ro/Category:BIM.md +++ b/wiki/translations/ro/Category:BIM.md @@ -6,3 +6,6 @@ This category is for pages related to building information management (BIM). [Arch IfcExplorer/ro](Arch_IfcExplorer/ro.md) , [BIM Library/ro](BIM_Library/ro.md) , [Import/Export IFC - compiling IfcOpenShell/ro](Import/Export_IFC_-_compiling_IfcOpenShell/ro.md) , [Manual:BIM modeling/ro](Manual:BIM_modeling/ro.md) , [Category:User Documentation/ro](Category:User_Documentation/ro.md) [Category:Arch/ro](Category:Arch/ro.md) + +--- +[documentation index](../README.md) > Category:BIM/ro diff --git a/wiki/translations/ro/Category:Base.md b/wiki/translations/ro/Category:Base.md index e4f3f7cb6e..315800c6dc 100644 --- a/wiki/translations/ro/Category:Base.md +++ b/wiki/translations/ro/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/ro](Category:User_Documentation/ro.md) + +--- +[documentation index](../README.md) > Category:Base/ro diff --git a/wiki/translations/ro/Category:Categories.md b/wiki/translations/ro/Category:Categories.md index 0f91f39ecb..0a77508efe 100644 --- a/wiki/translations/ro/Category:Categories.md +++ b/wiki/translations/ro/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , , , , , , , , , , [Category:Categories/ro](Category:Categories/ro.md) [Category:Addons/ro](Category:Addons/ro.md) [Category:Administration/ro](Category:Administration/ro.md) [Category:API/ro](Category:API/ro.md) [Category:Categories/ro](Category:Categories/ro.md) [Category:Command Reference/ro](Category:Command_Reference/ro.md) [Category:Developer/ro](Category:Developer/ro.md) [Category:Documentation/ro](Category:Documentation/ro.md) [Category:Hubs/ro](Category:Hubs/ro.md) [Category:Macros/ro](Category:Macros/ro.md) [Category:News/ro](Category:News/ro.md) [Category:Python Code/ro](Category:Python_Code/ro.md) [Category:Repository/ro](Category:Repository/ro.md) [Category:Roadmap/ro](Category:Roadmap/ro.md) [Category:Template/ro](Category:Template/ro.md) [Category:Tutorials/ro](Category:Tutorials/ro.md) [Category:UnfinishedDocu/ro](Category:UnfinishedDocu/ro.md) [Category:Wiki/ro](Category:Wiki/ro.md) + +--- +[documentation index](../README.md) > Category:Categories/ro diff --git a/wiki/translations/ro/Category:Command_Reference.md b/wiki/translations/ro/Category:Command_Reference.md index 801ffd15a4..b3f168f783 100644 --- a/wiki/translations/ro/Category:Command_Reference.md +++ b/wiki/translations/ro/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD command. [Arch 3Views/ro](Arch_3Views/ro.md) , [Arch Add/ro](Arch_Add/ro.md) , [Arch Axis/ro](Arch_Axis/ro.md) , [Arch AxisSystem/ro](Arch_AxisSystem/ro.md) , [Arch Building/ro](Arch_Building/ro.md) , [Arch BuildingPart/ro](Arch_BuildingPart/ro.md) , [Arch Check/ro](Arch_Check/ro.md) , [Arch CloneComponent/ro](Arch_CloneComponent/ro.md) , [Arch CloseHoles/ro](Arch_CloseHoles/ro.md) , [Arch Component/ro](Arch_Component/ro.md) , [Arch Frame/ro](Arch_Frame/ro.md) , [Arch IfcExplorer/ro](Arch_IfcExplorer/ro.md) , [Arch IfcSpreadsheet/ro](Arch_IfcSpreadsheet/ro.md) , [Arch MergeWalls/ro](Arch_MergeWalls/ro.md) , [Arch MeshToShape/ro](Arch_MeshToShape/ro.md) , [Arch MultiMaterial/ro](Arch_MultiMaterial/ro.md) , [Arch Nest/ro](Arch_Nest/ro.md) , [Arch Panel Cut/ro](Arch_Panel_Cut/ro.md) , [Arch Panel/ro](Arch_Panel/ro.md) , [Arch Pipe/ro](Arch_Pipe/ro.md) , [Arch PipeConnector/ro](Arch_PipeConnector/ro.md) , [Arch Rebar BentShape/ro](Arch_Rebar_BentShape/ro.md) , [Arch Rebar Helical/ro](Arch_Rebar_Helical/ro.md) , [Arch Rebar LShape/ro](Arch_Rebar_LShape/ro.md) , [Arch Rebar Stirrup/ro](Arch_Rebar_Stirrup/ro.md) , [Arch Rebar Straight/ro](Arch_Rebar_Straight/ro.md) , [Arch Rebar UShape/ro](Arch_Rebar_UShape/ro.md) , [Arch Rebar/ro](Arch_Rebar/ro.md) , [Arch Reference/ro](Arch_Reference/ro.md) , [Arch Remove/ro](Arch_Remove/ro.md) , [Arch RemoveShape/ro](Arch_RemoveShape/ro.md) , [Arch Roof/ro](Arch_Roof/ro.md) , [Arch Schedule/ro](Arch_Schedule/ro.md) , [Arch SectionPlane/ro](Arch_SectionPlane/ro.md) , [Arch SelectNonSolidMeshes/ro](Arch_SelectNonSolidMeshes/ro.md) , [Arch SetMaterial/ro](Arch_SetMaterial/ro.md) , [Arch Site/ro](Arch_Site/ro.md) , [Arch Space/ro](Arch_Space/ro.md) , [Arch SplitMesh/ro](Arch_SplitMesh/ro.md) , [Arch Stairs/ro](Arch_Stairs/ro.md) , [Arch Structure/ro](Arch_Structure/ro.md) , [Arch Survey/ro](Arch_Survey/ro.md) , [Arch ToggleIfcBrepFlag/ro](Arch_ToggleIfcBrepFlag/ro.md) , [Arch ToggleSubs/ro](Arch_ToggleSubs/ro.md) , [Arch Wall/ro](Arch_Wall/ro.md) , [Arch Window/ro](Arch_Window/ro.md) , [BIM Box/ro](BIM_Box/ro.md) , [BIM Copy/ro](BIM_Copy/ro.md) , [BIM Library/ro](BIM_Library/ro.md) , [BIM Project/ro](BIM_Project/ro.md) , [BIM Setup/ro](BIM_Setup/ro.md) , [Draft AddConstruction/ro](Draft_AddConstruction/ro.md) , [Draft AddToGroup/ro](Draft_AddToGroup/ro.md) , [Draft ApplyStyle/ro](Draft_ApplyStyle/ro.md) , [Draft Arc/ro](Draft_Arc/ro.md) , [Draft Array/ro](Draft_Array/ro.md) , [Draft AutoGroup/ro](Draft_AutoGroup/ro.md) , [Draft BezCurve/ro](Draft_BezCurve/ro.md) , [Draft BSpline/ro](Draft_BSpline/ro.md) , [Draft Circle/ro](Draft_Circle/ro.md) , [Draft Clone/ro](Draft_Clone/ro.md) , [Draft Dimension/ro](Draft_Dimension/ro.md) , [Draft Downgrade/ro](Draft_Downgrade/ro.md) , [Draft Draft2Sketch/ro](Draft_Draft2Sketch/ro.md) , [Draft Drawing/ro](Draft_Drawing/ro.md) , [Draft Edit/ro](Draft_Edit/ro.md) , [Draft Ellipse/ro](Draft_Ellipse/ro.md) , [Draft Facebinder/ro](Draft_Facebinder/ro.md) , [Draft FlipDimension/ro](Draft_FlipDimension/ro.md) , [Draft Heal/ro](Draft_Heal/ro.md) , [Draft Label/ro](Draft_Label/ro.md) , [Draft Line/ro](Draft_Line/ro.md) , [Draft Mirror/ro](Draft_Mirror/ro.md) , [Draft Move/ro](Draft_Move/ro.md) , [Draft Offset/ro](Draft_Offset/ro.md) , [Draft PathArray/ro](Draft_PathArray/ro.md) , [Draft Point/ro](Draft_Point/ro.md) , [Draft PointArray/ro](Draft_PointArray/ro.md) , [Draft Polygon/ro](Draft_Polygon/ro.md) , [Draft Rectangle/ro](Draft_Rectangle/ro.md) , [Draft Rotate/ro](Draft_Rotate/ro.md) , [Draft Scale/ro](Draft_Scale/ro.md) , [Draft SelectGroup/ro](Draft_SelectGroup/ro.md) , [Draft SelectPlane/ro](Draft_SelectPlane/ro.md) , [Draft Shape2DView/ro](Draft_Shape2DView/ro.md) , [Draft ShapeString/ro](Draft_ShapeString/ro.md) , [Draft ShowSnapBar/ro](Draft_ShowSnapBar/ro.md) , [Draft Slope/ro](Draft_Slope/ro.md) , [Draft Snap Angle/ro](Draft_Snap_Angle/ro.md) , [Draft Snap Center/ro](Draft_Snap_Center/ro.md) , [Draft Snap Endpoint/ro](Draft_Snap_Endpoint/ro.md) , [Draft Snap Extension/ro](Draft_Snap_Extension/ro.md) , [Draft Snap Grid/ro](Draft_Snap_Grid/ro.md) , [Draft Snap Intersection/ro](Draft_Snap_Intersection/ro.md) , [Draft Snap Lock/ro](Draft_Snap_Lock/ro.md) , [Draft Snap Midpoint/ro](Draft_Snap_Midpoint/ro.md) , [Draft Snap Near/ro](Draft_Snap_Near/ro.md) , [Draft Snap Parallel/ro](Draft_Snap_Parallel/ro.md) , [Draft Snap Special/ro](Draft_Snap_Special/ro.md) , [Draft Snap WorkingPlane/ro](Draft_Snap_WorkingPlane/ro.md) , [Draft Stretch/ro](Draft_Stretch/ro.md) , [Draft Text/ro](Draft_Text/ro.md) , [Draft ToggleConstructionMode/ro](Draft_ToggleConstructionMode/ro.md) , [Draft ToggleContinueMode/ro](Draft_ToggleContinueMode/ro.md) , [Draft ToggleDisplayMode/ro](Draft_ToggleDisplayMode/ro.md) , [Draft ToggleGrid/ro](Draft_ToggleGrid/ro.md) , [Draft Trimex/ro](Draft_Trimex/ro.md) , [Draft Upgrade/ro](Draft_Upgrade/ro.md) , [Draft Wire/ro](Draft_Wire/ro.md) , [Draft WireToBSpline/ro](Draft_WireToBSpline/ro.md) , [Draft WorkingPlaneProxy/ro](Draft_WorkingPlaneProxy/ro.md) , [Drawing Annotation/ro](Drawing_Annotation/ro.md) , [Drawing Clip/ro](Drawing_Clip/ro.md) , [Drawing Landscape A3/ro](Drawing_Landscape_A3/ro.md) , [Drawing Open SVG/ro](Drawing_Open_SVG/ro.md) , [Drawing Openbrowser/ro](Drawing_Openbrowser/ro.md) , [Drawing Orthoviews/ro](Drawing_Orthoviews/ro.md) , [Drawing ProjectShape/ro](Drawing_ProjectShape/ro.md) , [Drawing Save/ro](Drawing_Save/ro.md) , [Drawing SpreadsheetView/ro](Drawing_SpreadsheetView/ro.md) , [Drawing Symbol/ro](Drawing_Symbol/ro.md) , [Drawing View/ro](Drawing_View/ro.md) , [FEM Analysis/ro](FEM_Analysis/ro.md) , [FEM ConstraintBearing/ro](FEM_ConstraintBearing/ro.md) , [FEM ConstraintContact/ro](FEM_ConstraintContact/ro.md) , [FEM ConstraintDisplacement/ro](FEM_ConstraintDisplacement/ro.md) , [FEM ConstraintFixed/ro](FEM_ConstraintFixed/ro.md) , [FEM ConstraintForce/ro](FEM_ConstraintForce/ro.md) , [FEM ConstraintHeatflux/ro](FEM_ConstraintHeatflux/ro.md) , [FEM ConstraintInitialTemperature/ro](FEM_ConstraintInitialTemperature/ro.md) , [FEM ConstraintPlaneRotation/ro](FEM_ConstraintPlaneRotation/ro.md) , [FEM ConstraintPressure/ro](FEM_ConstraintPressure/ro.md) , [FEM ConstraintPulley/ro](FEM_ConstraintPulley/ro.md) , [FEM ConstraintSelfWeight/ro](FEM_ConstraintSelfWeight/ro.md) , [FEM ConstraintTemperature/ro](FEM_ConstraintTemperature/ro.md) , [FEM ConstraintTransform/ro](FEM_ConstraintTransform/ro.md) , [FEM CreateNodesSet/ro](FEM_CreateNodesSet/ro.md) , [FEM ElementFluid1D/ro](FEM_ElementFluid1D/ro.md) , [FEM ElementGeometry1D/ro](FEM_ElementGeometry1D/ro.md) , [FEM ElementGeometry2D/ro](FEM_ElementGeometry2D/ro.md) , [FEM ElementRotation1D/ro](FEM_ElementRotation1D/ro.md) , [FEM EquationElasticity/ro](FEM_EquationElasticity/ro.md) , [FEM EquationFlow/ro](FEM_EquationFlow/ro.md) , [FEM EquationFlux/ro](FEM_EquationFlux/ro.md) , [FEM EquationHeat/ro](FEM_EquationHeat/ro.md) , [FEM FemMesh2Mesh/ro](FEM_FemMesh2Mesh/ro.md) , [FEM MaterialFluid/ro](FEM_MaterialFluid/ro.md) , [FEM MaterialMechanicalNonlinear/ro](FEM_MaterialMechanicalNonlinear/ro.md) , [FEM MaterialSolid/ro](FEM_MaterialSolid/ro.md) , [FEM PostPipelineFromResult/ro](FEM_PostPipelineFromResult/ro.md) , [FEM SolverCalculixCxxtools/ro](FEM_SolverCalculixCxxtools/ro.md) , [FEM SolverZ88/ro](FEM_SolverZ88/ro.md) , [GuiCommand model/ro](GuiCommand_model/ro.md) , [Template:GuiCommand/ro](Template:GuiCommand/ro.md) , [Template:GuiCommandAddon/ro](Template:GuiCommandAddon/ro.md) , [Material editor/ro](Material_editor/ro.md) , [Mesh BoundingBox/ro](Mesh_BoundingBox/ro.md) , [Mesh BuildRegularSolid/ro](Mesh_BuildRegularSolid/ro.md) , [Mesh Difference/ro](Mesh_Difference/ro.md) , [Mesh EvaluateFacet/ro](Mesh_EvaluateFacet/ro.md) , [Mesh Export/ro](Mesh_Export/ro.md) , [Mesh FillInteractiveHole/ro](Mesh_FillInteractiveHole/ro.md) , [Mesh FlipNormals/ro](Mesh_FlipNormals/ro.md) , [Mesh FromPartShape/ro](Mesh_FromPartShape/ro.md) , [Mesh HarmonizeNormals/ro](Mesh_HarmonizeNormals/ro.md) , [Mesh Import/ro](Mesh_Import/ro.md) , [Mesh Intersection/ro](Mesh_Intersection/ro.md) , [Mesh Merge/ro](Mesh_Merge/ro.md) , [Mesh RemoveComponents/ro](Mesh_RemoveComponents/ro.md) , [Mesh Union/ro](Mesh_Union/ro.md) , [OpenSCAD AddOpenSCADElement/ro](OpenSCAD_AddOpenSCADElement/ro.md) , [OpenSCAD ColorCodeShape/ro](OpenSCAD_ColorCodeShape/ro.md) , [OpenSCAD Edgestofaces/ro](OpenSCAD_Edgestofaces/ro.md) , [OpenSCAD ExplodeGroup/ro](OpenSCAD_ExplodeGroup/ro.md) , [OpenSCAD Hull/ro](OpenSCAD_Hull/ro.md) , [OpenSCAD IncreaseToleranceFeature/ro](OpenSCAD_IncreaseToleranceFeature/ro.md) , [OpenSCAD MeshBoolean/ro](OpenSCAD_MeshBoolean/ro.md) , [OpenSCAD Minkowski/ro](OpenSCAD_Minkowski/ro.md) , [OpenSCAD RefineShapeFeature/ro](OpenSCAD_RefineShapeFeature/ro.md) , [OpenSCAD RemoveSubtree/ro](OpenSCAD_RemoveSubtree/ro.md) , [OpenSCAD ReplaceObject/ro](OpenSCAD_ReplaceObject/ro.md) , [Part Boolean/ro](Part_Boolean/ro.md) , [Part BooleanFragments/ro](Part_BooleanFragments/ro.md) , [Part Box/ro](Part_Box/ro.md) , [Part Builder/ro](Part_Builder/ro.md) , [Part Chamfer/ro](Part_Chamfer/ro.md) , [Part CheckGeometry/ro](Part_CheckGeometry/ro.md) , [Part Circle/ro](Part_Circle/ro.md) , [Part Common/ro](Part_Common/ro.md) , [Part CompJoinFeatures/ro](Part_CompJoinFeatures/ro.md) , [Part Compound/ro](Part_Compound/ro.md) , [Part CompoundFilter/ro](Part_CompoundFilter/ro.md) , [Part Cone/ro](Part_Cone/ro.md) , [Part CrossSections/ro](Part_CrossSections/ro.md) , [Part Cut/ro](Part_Cut/ro.md) , [Part Cylinder/ro](Part_Cylinder/ro.md) , [Part EditAttachment/ro](Part_EditAttachment/ro.md) , [Part Ellipse/ro](Part_Ellipse/ro.md) , [Part Ellipsoid/ro](Part_Ellipsoid/ro.md) , [Part Extrude/ro](Part_Extrude/ro.md) , [Part Fillet/ro](Part_Fillet/ro.md) , [Part Fuse/ro](Part_Fuse/ro.md) , [Part Helix/ro](Part_Helix/ro.md) , [Part Import/ro](Part_Import/ro.md) , [Part JoinConnect/ro](Part_JoinConnect/ro.md) , [Part JoinCutout/ro](Part_JoinCutout/ro.md) , [Part JoinEmbed/ro](Part_JoinEmbed/ro.md) , [Part Line/ro](Part_Line/ro.md) , [Part Loft/ro](Part_Loft/ro.md) , [Part MakeSolid/ro](Part_MakeSolid/ro.md) , [Part Measure Angular/ro](Part_Measure_Angular/ro.md) , [Part Measure Clear All/ro](Part_Measure_Clear_All/ro.md) , [Part Measure Linear/ro](Part_Measure_Linear/ro.md) , [Part Measure Menu/ro](Part_Measure_Menu/ro.md) , [Part Measure Toggle 3d/ro](Part_Measure_Toggle_3d/ro.md) , [Part Measure Toggle All/ro](Part_Measure_Toggle_All/ro.md) , [Part Measure Toggle Delta/ro](Part_Measure_Toggle_Delta/ro.md) , [Part Mirror/ro](Part_Mirror/ro.md) , [Part Offset/ro](Part_Offset/ro.md) , [Part Offset2D/ro](Part_Offset2D/ro.md) , [Part Plane/ro](Part_Plane/ro.md) , [Part Primitives/ro](Part_Primitives/ro.md) , [Part RefineShape/ro](Part_RefineShape/ro.md) , [Part RegularPolygon/ro](Part_RegularPolygon/ro.md) , [Part ReverseShapes/ro](Part_ReverseShapes/ro.md) , [Part Revolve/ro](Part_Revolve/ro.md) , [Part RuledSurface/ro](Part_RuledSurface/ro.md) , [Part Section/ro](Part_Section/ro.md) , [Part ShapeFromMesh/ro](Part_ShapeFromMesh/ro.md) , [Part SimpleCopy/ro](Part_SimpleCopy/ro.md) , [Part Slice/ro](Part_Slice/ro.md) , [Part Sphere/ro](Part_Sphere/ro.md) , [Part Spiral/ro](Part_Spiral/ro.md) , [Part Sweep/ro](Part_Sweep/ro.md) , [Part Thickness/ro](Part_Thickness/ro.md) , [Part Torus/ro](Part_Torus/ro.md) , [Part Wedge/ro](Part_Wedge/ro.md) , [PartDesign AdditiveBox/ro](PartDesign_AdditiveBox/ro.md) , [PartDesign AdditiveCone/ro](PartDesign_AdditiveCone/ro.md) , [PartDesign AdditiveCylinder/ro](PartDesign_AdditiveCylinder/ro.md) , [PartDesign AdditiveEllipsoid/ro](PartDesign_AdditiveEllipsoid/ro.md) , [PartDesign AdditiveLoft/ro](PartDesign_AdditiveLoft/ro.md) , [PartDesign AdditivePipe/ro](PartDesign_AdditivePipe/ro.md) , [PartDesign AdditivePrism/ro](PartDesign_AdditivePrism/ro.md) , [PartDesign AdditiveSphere/ro](PartDesign_AdditiveSphere/ro.md) , [PartDesign AdditiveTorus/ro](PartDesign_AdditiveTorus/ro.md) , [PartDesign AdditiveWedge/ro](PartDesign_AdditiveWedge/ro.md) , [PartDesign Body/ro](PartDesign_Body/ro.md) , [PartDesign Boolean/ro](PartDesign_Boolean/ro.md) , [PartDesign Chamfer/ro](PartDesign_Chamfer/ro.md) , [PartDesign Clone/ro](PartDesign_Clone/ro.md) , [PartDesign CompPrimitiveAdditive/ro](PartDesign_CompPrimitiveAdditive/ro.md) , [PartDesign CompPrimitiveSubtractive/ro](PartDesign_CompPrimitiveSubtractive/ro.md) , [PartDesign Draft/ro](PartDesign_Draft/ro.md) , [PartDesign Fillet/ro](PartDesign_Fillet/ro.md) , [PartDesign Groove/ro](PartDesign_Groove/ro.md) , [PartDesign Hole/ro](PartDesign_Hole/ro.md) , [PartDesign InvoluteGear/ro](PartDesign_InvoluteGear/ro.md) , [PartDesign Line/ro](PartDesign_Line/ro.md) , [PartDesign LinearPattern/ro](PartDesign_LinearPattern/ro.md) , [PartDesign Migrate/ro](PartDesign_Migrate/ro.md) , [PartDesign Mirrored/ro](PartDesign_Mirrored/ro.md) , [PartDesign MoveFeature/ro](PartDesign_MoveFeature/ro.md) , [PartDesign MoveFeatureInTree/ro](PartDesign_MoveFeatureInTree/ro.md) , [PartDesign MoveTip/ro](PartDesign_MoveTip/ro.md) , [PartDesign MultiTransform/ro](PartDesign_MultiTransform/ro.md) , [PartDesign NewSketch/ro](PartDesign_NewSketch/ro.md) , [PartDesign Pad/ro](PartDesign_Pad/ro.md) , [PartDesign Plane/ro](PartDesign_Plane/ro.md) , [PartDesign Pocket/ro](PartDesign_Pocket/ro.md) , [PartDesign Point/ro](PartDesign_Point/ro.md) , [PartDesign PolarPattern/ro](PartDesign_PolarPattern/ro.md) , [PartDesign Revolution/ro](PartDesign_Revolution/ro.md) , [PartDesign Scaled/ro](PartDesign_Scaled/ro.md) , [PartDesign ShapeBinder/ro](PartDesign_ShapeBinder/ro.md) , [PartDesign SubtractiveBox/ro](PartDesign_SubtractiveBox/ro.md) , [PartDesign SubtractiveCone/ro](PartDesign_SubtractiveCone/ro.md) , [PartDesign SubtractiveCylinder/ro](PartDesign_SubtractiveCylinder/ro.md) , [PartDesign SubtractiveEllipsoid/ro](PartDesign_SubtractiveEllipsoid/ro.md) , [PartDesign SubtractiveLoft/ro](PartDesign_SubtractiveLoft/ro.md) , [PartDesign SubtractivePipe/ro](PartDesign_SubtractivePipe/ro.md) , [PartDesign SubtractivePrism/ro](PartDesign_SubtractivePrism/ro.md) , [PartDesign SubtractiveSphere/ro](PartDesign_SubtractiveSphere/ro.md) , [PartDesign SubtractiveTorus/ro](PartDesign_SubtractiveTorus/ro.md) , [PartDesign SubtractiveWedge/ro](PartDesign_SubtractiveWedge/ro.md) , [PartDesign Thickness/ro](PartDesign_Thickness/ro.md) , [PartDesign WizardShaft/ro](PartDesign_WizardShaft/ro.md) , [Path Array/ro](Path_Array/ro.md) , [Path Comment/ro](Path_Comment/ro.md) , [Path Copy/ro](Path_Copy/ro.md) , [Path Custom/ro](Path_Custom/ro.md) , [Path DressupDogbone/ro](Path_DressupDogbone/ro.md) , [Path DressupDragKnife/ro](Path_DressupDragKnife/ro.md) , [Path DressupRampEntry/ro](Path_DressupRampEntry/ro.md) , [Path DressupTag/ro](Path_DressupTag/ro.md) , [Path Drilling/ro](Path_Drilling/ro.md) , [Path Engrave/ro](Path_Engrave/ro.md) , [Path ExportTemplate/ro](Path_ExportTemplate/ro.md) , [Path Fixture/ro](Path_Fixture/ro.md) , [Path Helix/ro](Path_Helix/ro.md) , [Path Inspect/ro](Path_Inspect/ro.md) , [Path Job/ro](Path_Job/ro.md) , [Path MillFace/ro](Path_MillFace/ro.md) , [Path Pocket 3D/ro](Path_Pocket_3D/ro.md) , [Path Post/ro](Path_Post/ro.md) , [Path Profile/ro](Path_Profile/ro.md) , [Path SelectLoop/ro](Path_SelectLoop/ro.md) , [Path Shape/ro](Path_Shape/ro.md) , [Path SimpleCopy/ro](Path_SimpleCopy/ro.md) , [Path Simulator/ro](Path_Simulator/ro.md) , [Path Stop/ro](Path_Stop/ro.md) , [Path Surface/ro](Path_Surface/ro.md) , [Plot Axes/ro](Plot_Axes/ro.md) , [Plot Grid/ro](Plot_Grid/ro.md) , [Plot Labels/ro](Plot_Labels/ro.md) , [Plot Legend/ro](Plot_Legend/ro.md) , [Plot Positions/ro](Plot_Positions/ro.md) , [Plot Save/ro](Plot_Save/ro.md) , [Plot Series/ro](Plot_Series/ro.md) , [Raytracing ExportProject/ro](Raytracing_ExportProject/ro.md) , [Raytracing InsertPart/ro](Raytracing_InsertPart/ro.md) , [Raytracing Lux/ro](Raytracing_Lux/ro.md) , [Raytracing New/ro](Raytracing_New/ro.md) , [Raytracing Render/ro](Raytracing_Render/ro.md) , [Raytracing ResetCamera/ro](Raytracing_ResetCamera/ro.md) , [Raytracing WriteCamera/ro](Raytracing_WriteCamera/ro.md) , [Raytracing WritePart/ro](Raytracing_WritePart/ro.md) , [Raytracing WriteView/ro](Raytracing_WriteView/ro.md) , [Robot CreateRobot/ro](Robot_CreateRobot/ro.md) , [Robot CreateTrajectory/ro](Robot_CreateTrajectory/ro.md) , [Robot Edge2Trac/ro](Robot_Edge2Trac/ro.md) , [Robot Export/ro](Robot_Export/ro.md) , [Robot InsertWaypoint/ro](Robot_InsertWaypoint/ro.md) , [Robot InsertWaypointPre/ro](Robot_InsertWaypointPre/ro.md) , [Robot RestoreHomePos/ro](Robot_RestoreHomePos/ro.md) , [Robot SetDefaultOrientation/ro](Robot_SetDefaultOrientation/ro.md) , [Robot SetDefaultValues/ro](Robot_SetDefaultValues/ro.md) , [Robot SetHomePos/ro](Robot_SetHomePos/ro.md) , [Robot Simulate/ro](Robot_Simulate/ro.md) , [Robot TrajectoryCompound/ro](Robot_TrajectoryCompound/ro.md) , [Robot TrajectoryDressUp/ro](Robot_TrajectoryDressUp/ro.md) , [Ship Area/ro](Ship_Area/ro.md) , [Ship Geometries Examples/ro](Ship_Geometries_Examples/ro.md) , [Ship Hydrostatics/ro](Ship_Hydrostatics/ro.md) , [Ship Loading/ro](Ship_Loading/ro.md) , [Ship New/ro](Ship_New/ro.md) , [Ship Outline/ro](Ship_Outline/ro.md) , [Ship PlotGZ/ro](Ship_PlotGZ/ro.md) , [Ship TankCapacity/ro](Ship_TankCapacity/ro.md) , [Ship TankNew/ro](Ship_TankNew/ro.md) , [Sketcher CarbonCopy/ro](Sketcher_CarbonCopy/ro.md) , [Sketcher Clone/ro](Sketcher_Clone/ro.md) , [Sketcher CloseShape/ro](Sketcher_CloseShape/ro.md) , [Sketcher CompCreateArc/ro](Sketcher_CompCreateArc/ro.md) , [Sketcher CompCreateConic/ro](Sketcher_CompCreateConic/ro.md) , [Sketcher ConnectLines/ro](Sketcher_ConnectLines/ro.md) , [Sketcher ConstrainAngle/ro](Sketcher_ConstrainAngle/ro.md) , [Sketcher ConstrainBlock/ro](Sketcher_ConstrainBlock/ro.md) , [Sketcher ConstrainCoincident/ro](Sketcher_ConstrainCoincident/ro.md) , [Sketcher ConstrainDistance/ro](Sketcher_ConstrainDistance/ro.md) , [Sketcher ConstrainDistanceX/ro](Sketcher_ConstrainDistanceX/ro.md) , [Sketcher ConstrainDistanceY/ro](Sketcher_ConstrainDistanceY/ro.md) , [Sketcher ConstrainEqual/ro](Sketcher_ConstrainEqual/ro.md) , [Sketcher ConstrainHorizontal/ro](Sketcher_ConstrainHorizontal/ro.md) , [Sketcher ConstrainInternalAlignment/ro](Sketcher_ConstrainInternalAlignment/ro.md) , [Sketcher ConstrainLock/ro](Sketcher_ConstrainLock/ro.md) , [Sketcher ConstrainParallel/ro](Sketcher_ConstrainParallel/ro.md) , [Sketcher ConstrainPointOnObject/ro](Sketcher_ConstrainPointOnObject/ro.md) , [Sketcher ConstrainRadius/ro](Sketcher_ConstrainRadius/ro.md) , [Sketcher ConstrainSymmetric/ro](Sketcher_ConstrainSymmetric/ro.md) , [Sketcher ConstrainTangent/ro](Sketcher_ConstrainTangent/ro.md) , [Sketcher ConstrainVertical/ro](Sketcher_ConstrainVertical/ro.md) , [Sketcher Copy/ro](Sketcher_Copy/ro.md) , [Sketcher Create3PointArc/ro](Sketcher_Create3PointArc/ro.md) , [Sketcher Create3PointCircle/ro](Sketcher_Create3PointCircle/ro.md) , [Sketcher CreateArc/ro](Sketcher_CreateArc/ro.md) , [Sketcher CreateArcOfEllipse/ro](Sketcher_CreateArcOfEllipse/ro.md) , [Sketcher CreateArcOfHyperbola/ro](Sketcher_CreateArcOfHyperbola/ro.md) , [Sketcher CreateArcOfParabola/ro](Sketcher_CreateArcOfParabola/ro.md) , [Sketcher CreateCircle/ro](Sketcher_CreateCircle/ro.md) , [Sketcher CreateEllipseBy3Points/ro](Sketcher_CreateEllipseBy3Points/ro.md) , [Sketcher CreateEllipseByCenter/ro](Sketcher_CreateEllipseByCenter/ro.md) , [Sketcher CreateFillet/ro](Sketcher_CreateFillet/ro.md) , [Sketcher CreateHeptagon/ro](Sketcher_CreateHeptagon/ro.md) , [Sketcher CreateHexagon/ro](Sketcher_CreateHexagon/ro.md) , [Sketcher CreateOctagon/ro](Sketcher_CreateOctagon/ro.md) , [Sketcher CreatePentagon/ro](Sketcher_CreatePentagon/ro.md) , [Sketcher CreatePoint/ro](Sketcher_CreatePoint/ro.md) , [Sketcher CreatePolyline/ro](Sketcher_CreatePolyline/ro.md) , [Sketcher CreateRectangle/ro](Sketcher_CreateRectangle/ro.md) , [Sketcher CreateSlot/ro](Sketcher_CreateSlot/ro.md) , [Sketcher CreateSquare/ro](Sketcher_CreateSquare/ro.md) , [Sketcher CreateTriangle/ro](Sketcher_CreateTriangle/ro.md) , [Sketcher EditSketch/ro](Sketcher_EditSketch/ro.md) , [Sketcher Extend/ro](Sketcher_Extend/ro.md) , [Sketcher External/ro](Sketcher_External/ro.md) , [Sketcher LeaveSketch/ro](Sketcher_LeaveSketch/ro.md) , [Sketcher MapSketch/ro](Sketcher_MapSketch/ro.md) , [Sketcher MergeSketches/ro](Sketcher_MergeSketches/ro.md) , [Sketcher MirrorSketch/ro](Sketcher_MirrorSketch/ro.md) , [Sketcher Move/ro](Sketcher_Move/ro.md) , [Sketcher NewSketch/ro](Sketcher_NewSketch/ro.md) , [Sketcher RectangularArray/ro](Sketcher_RectangularArray/ro.md) , [Sketcher ReorientSketch/ro](Sketcher_ReorientSketch/ro.md) , [Sketcher RestoreInternalAlignmentGeometry/ro](Sketcher_RestoreInternalAlignmentGeometry/ro.md) , [Sketcher SelectConflictingConstraints/ro](Sketcher_SelectConflictingConstraints/ro.md) , [Sketcher SelectConstraints/ro](Sketcher_SelectConstraints/ro.md) , [Sketcher SelectElementsAssociatedWithConstraints/ro](Sketcher_SelectElementsAssociatedWithConstraints/ro.md) , [Sketcher SelectElementsWithDoFs/ro](Sketcher_SelectElementsWithDoFs/ro.md) , [Sketcher SelectHorizontalAxis/ro](Sketcher_SelectHorizontalAxis/ro.md) , [Sketcher SelectOrigin/ro](Sketcher_SelectOrigin/ro.md) , [Sketcher SelectRedundantConstraints/ro](Sketcher_SelectRedundantConstraints/ro.md) , [Sketcher SelectVerticalAxis/ro](Sketcher_SelectVerticalAxis/ro.md) , [Sketcher Symmetry/ro](Sketcher_Symmetry/ro.md) , [Sketcher ToggleConstruction/ro](Sketcher_ToggleConstruction/ro.md) , [Sketcher ToggleDrivingConstraint/ro](Sketcher_ToggleDrivingConstraint/ro.md) , [Sketcher Trimming/ro](Sketcher_Trimming/ro.md) , [Sketcher ValidateSketch/ro](Sketcher_ValidateSketch/ro.md) , [Sketcher ViewSection/ro](Sketcher_ViewSection/ro.md) , [Sketcher ViewSketch/ro](Sketcher_ViewSketch/ro.md) , [Std About/ro](Std_About/ro.md) , [Std AddonMgr/ro](Std_AddonMgr/ro.md) , [Std Alignment/ro](Std_Alignment/ro.md) , [Std BoxSelection/ro](Std_BoxSelection/ro.md) , [Std CloseActiveWindow/ro](Std_CloseActiveWindow/ro.md) , [Std CloseAllWindows/ro](Std_CloseAllWindows/ro.md) , [Std Copy/ro](Std_Copy/ro.md) , [Std Cut/ro](Std_Cut/ro.md) , [Std Delete/ro](Std_Delete/ro.md) , [Std DependencyGraph/ro](Std_DependencyGraph/ro.md) , [Std DlgCustomize/ro](Std_DlgCustomize/ro.md) , [Std DlgMacroExecute/ro](Std_DlgMacroExecute/ro.md) , [Std DlgMacroExecuteDirect/ro](Std_DlgMacroExecuteDirect/ro.md) , [Std DlgMacroRecord/ro](Std_DlgMacroRecord/ro.md) , [Std DlgParameter/ro](Std_DlgParameter/ro.md) , [Std DlgPreferences/ro](Std_DlgPreferences/ro.md) , [Std DuplicateSelection/ro](Std_DuplicateSelection/ro.md) , [Std Edit/ro](Std_Edit/ro.md) , [Std Export/ro](Std_Export/ro.md) , [Std FreeCADUserHub/ro](Std_FreeCADUserHub/ro.md) , [Std FreeCADWebsite/ro](Std_FreeCADWebsite/ro.md) , [Std FreezeViews/ro](Std_FreezeViews/ro.md) , [Std Group/ro](Std_Group/ro.md) , [Std Import/ro](Std_Import/ro.md) , [Std MacroStartDebug/ro](Std_MacroStartDebug/ro.md) , [Std MacroStepInto/ro](Std_MacroStepInto/ro.md) , [Std MacroStepOver/ro](Std_MacroStepOver/ro.md) , [Std MacroStopDebug/ro](Std_MacroStopDebug/ro.md) , [Std MacroStopRecord/ro](Std_MacroStopRecord/ro.md) , [Std MeasureDistance/ro](Std_MeasureDistance/ro.md) , [Std MergeProjects/ro](Std_MergeProjects/ro.md) , [Std New/ro](Std_New/ro.md) , [Std OnlineHelp/ro](Std_OnlineHelp/ro.md) , [Std Open/ro](Std_Open/ro.md) , [Std OrthographicCamera/ro](Std_OrthographicCamera/ro.md) , [Std Part/ro](Std_Part/ro.md) , [Std Paste/ro](Std_Paste/ro.md) , [Std PerspectiveCamera/ro](Std_PerspectiveCamera/ro.md) , [Std Placement/ro](Std_Placement/ro.md) , [Std Print/ro](Std_Print/ro.md) , [Std PrintPdf/ro](Std_PrintPdf/ro.md) , [Std PrintPreview/ro](Std_PrintPreview/ro.md) , [Std ProjectInfo/ro](Std_ProjectInfo/ro.md) , [Std Quit/ro](Std_Quit/ro.md) , [Std RecentFiles/ro](Std_RecentFiles/ro.md) , [Std Redo/ro](Std_Redo/ro.md) , [Std Revert/ro](Std_Revert/ro.md) , [Std Save/ro](Std_Save/ro.md) , [Std SaveAs/ro](Std_SaveAs/ro.md) , [Std SaveCopy/ro](Std_SaveCopy/ro.md) , [Std SceneInspector/ro](Std_SceneInspector/ro.md) , [Std SelectAll/ro](Std_SelectAll/ro.md) , [Std ToggleBreakpoint/ro](Std_ToggleBreakpoint/ro.md) , [Std ToggleClipPlane/ro](Std_ToggleClipPlane/ro.md) , [Std Undo/ro](Std_Undo/ro.md) , [Std UnitsCalculator/ro](Std_UnitsCalculator/ro.md) , [Std ViewBoxZoom/ro](Std_ViewBoxZoom/ro.md) , [Std ViewCreate/ro](Std_ViewCreate/ro.md) , [Std ViewDockUndockFullscreen/ro](Std_ViewDockUndockFullscreen/ro.md) , [Std ViewFitAll/ro](Std_ViewFitAll/ro.md) , [Std ViewFitSelection/ro](Std_ViewFitSelection/ro.md) , [Std ViewIvIssueCamPos/ro](Std_ViewIvIssueCamPos/ro.md) , [Std ViewRotateLeft/ro](Std_ViewRotateLeft/ro.md) , [Std ViewRotateRight/ro](Std_ViewRotateRight/ro.md) , [Std ViewScreenShot/ro](Std_ViewScreenShot/ro.md) , [Std ViewZoomIn/ro](Std_ViewZoomIn/ro.md) , [Std ViewZoomOut/ro](Std_ViewZoomOut/ro.md) , [Std WhatsThis/ro](Std_WhatsThis/ro.md) , [Std Workbench/ro](Std_Workbench/ro.md) , [Surface CurveOnMesh/ro](Surface_CurveOnMesh/ro.md) , [Surface Filling/ro](Surface_Filling/ro.md) , [Surface GeomFillSurface/ro](Surface_GeomFillSurface/ro.md) , [Tasks Placement/ro](Tasks_Placement/ro.md) , [TechDraw AngleDimension/ro](TechDraw_AngleDimension/ro.md) , [TechDraw DiameterDimension/ro](TechDraw_DiameterDimension/ro.md) , [TechDraw Hatch/ro](TechDraw_Hatch/ro.md) , [TechDraw HorizontalDimension/ro](TechDraw_HorizontalDimension/ro.md) , [TechDraw Image/ro](TechDraw_Image/ro.md) , [TechDraw LengthDimension/ro](TechDraw_LengthDimension/ro.md) , [TechDraw LinkDimension/ro](TechDraw_LinkDimension/ro.md) [Category:Categories/ro](Category:Categories/ro.md) + +--- +[documentation index](../README.md) > Category:Command Reference/ro diff --git a/wiki/translations/ro/Category:Common_Questions.md b/wiki/translations/ro/Category:Common_Questions.md index 35e2b310b8..501d016e29 100644 --- a/wiki/translations/ro/Category:Common_Questions.md +++ b/wiki/translations/ro/Category:Common_Questions.md @@ -4,3 +4,6 @@ This category has links to common questions on how to do something in FC. This i ### Contents: [Feature editing/ro](Feature_editing/ro.md) , [Help FreeCAD/ro](Help_FreeCAD/ro.md) , [Import Export Preferences/ro](Import_Export_Preferences/ro.md) , [Installing on Linux/ro](Installing_on_Linux/ro.md) , [Std About/ro](Std_About/ro.md) , [Video tutorials/ro](Video_tutorials/ro.md) + +--- +[documentation index](../README.md) > Category:Common Questions/ro diff --git a/wiki/translations/ro/Category:Developer.md b/wiki/translations/ro/Category:Developer.md index 2e36c10c25..28634b1099 100644 --- a/wiki/translations/ro/Category:Developer.md +++ b/wiki/translations/ro/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Compile on Linux/ro](Compile_on_Linux/ro.md) , [Compile on MacOS/ro](Compile_on_MacOS/ro.md) , [Compile on Windows with VS2013/ro](Compile_on_Windows_with_VS2013/ro.md) , [Compile on Windows/ro](Compile_on_Windows/ro.md) , [Compiling (Speeding up)/ro](Compiling_(Speeding_up)/ro.md) , [Compiling/ro](Compiling/ro.md) , [Contributors/ro](Contributors/ro.md) , [FEM CalculiX/ro](FEM_CalculiX/ro.md) , [File Format FCStd/ro](File_Format_FCStd/ro.md) , [ImageConv/ro](ImageConv/ro.md) , [Land Survey Workbench Blueprint/ro](Land_Survey_Workbench_Blueprint/ro.md) [Category:Categories/ro](Category:Categories/ro.md) + +--- +[documentation index](../README.md) > Category:Developer/ro diff --git a/wiki/translations/ro/Category:Developer_Documentation.md b/wiki/translations/ro/Category:Developer_Documentation.md index d0117d023d..fb8580ae22 100644 --- a/wiki/translations/ro/Category:Developer_Documentation.md +++ b/wiki/translations/ro/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Add FEM equation tutorial/ro](Add_FEM_equation_tutorial/ro.md) , [ANSI templates/ro](ANSI_templates/ro.md) , [Branding/ro](Branding/ro.md) , [Code snippets/ro](Code_snippets/ro.md) , [Command/ro](Command/ro.md) , [Compile on Linux/ro](Compile_on_Linux/ro.md) , [Compile on MacOS/ro](Compile_on_MacOS/ro.md) , [Compile on Windows with VS2013/ro](Compile_on_Windows_with_VS2013/ro.md) , [Compile on Windows/ro](Compile_on_Windows/ro.md) , [Compiling (Speeding up)/ro](Compiling_(Speeding_up)/ro.md) , [Compiling/ro](Compiling/ro.md) , [Continuous Integration/ro](Continuous_Integration/ro.md) , [Debugging/ro](Debugging/ro.md) , [Developer hub/ro](Developer_hub/ro.md) , [Dialog creation/ro](Dialog_creation/ro.md) , [Drawing API example/ro](Drawing_API_example/ro.md) , [Drawing Documentation/ro](Drawing_Documentation/ro.md) , [Embedding FreeCAD/ro](Embedding_FreeCAD/ro.md) , [Embedding FreeCADGui/ro](Embedding_FreeCADGui/ro.md) , [Extra python modules/ro](Extra_python_modules/ro.md) , [File Format FCStd/ro](File_Format_FCStd/ro.md) , [FreeCAD Build Tool/ro](FreeCAD_Build_Tool/ro.md) , [FreeCAD Scripting Basics/ro](FreeCAD_Scripting_Basics/ro.md) , [FreeCAD vector math library/ro](FreeCAD_vector_math_library/ro.md) , [Help FreeCAD/ro](Help_FreeCAD/ro.md) , [How to install macros/ro](How_to_install_macros/ro.md) , [Installing more workbenches/ro](Installing_more_workbenches/ro.md) , [Installing on Linux/ro](Installing_on_Linux/ro.md) , [Introduction to Python/ro](Introduction_to_Python/ro.md) , [Licence/ro](Licence/ro.md) , [Line drawing function/ro](Line_drawing_function/ro.md) , [Localisation/ro](Localisation/ro.md) , [Macros/ro](Macros/ro.md) , [Manual:A gentle introduction/ro](Manual:A_gentle_introduction/ro.md) , [Manual:Creating and manipulating geometry/ro](Manual:Creating_and_manipulating_geometry/ro.md) , [Manual:Creating interface tools/ro](Manual:Creating_interface_tools/ro.md) , [Manual:Creating parametric objects/ro](Manual:Creating_parametric_objects/ro.md) , [Mesh Scripting/ro](Mesh_Scripting/ro.md) , [Mesh to Part/ro](Mesh_to_Part/ro.md) , [Path scripting/ro](Path_scripting/ro.md) , [Pivy/ro](Pivy/ro.md) , [Property/ro](Property/ro.md) , [PySide/ro](PySide/ro.md) , [Python scripting tutorial/ro](Python_scripting_tutorial/ro.md) , [Python/ro](Python/ro.md) , [PythonOCC/ro](PythonOCC/ro.md) , [Scenegraph/ro](Scenegraph/ro.md) , [Scripted objects/ro](Scripted_objects/ro.md) , [Scripted Parts: Ball Bearing - Part 1/ro](Scripted_Parts:_Ball_Bearing_-_Part_1/ro.md) , [Scripting and macros/ro](Scripting_and_macros/ro.md) , [Source documentation/ro](Source_documentation/ro.md) , [Start up and Configuration/ro](Start_up_and_Configuration/ro.md) , [Testing/ro](Testing/ro.md) , [Third Party Libraries/ro](Third_Party_Libraries/ro.md) , [Third Party Tools/ro](Third_Party_Tools/ro.md) , [Topological data scripting/ro](Topological_data_scripting/ro.md) , [Tracker/ro](Tracker/ro.md) , [Workbench creation/ro](Workbench_creation/ro.md) [Category:Documentation/ro](Category:Documentation/ro.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/ro diff --git a/wiki/translations/ro/Category:Documentation.md b/wiki/translations/ro/Category:Documentation.md index 3ad365f6e6..6918c635c1 100644 --- a/wiki/translations/ro/Category:Documentation.md +++ b/wiki/translations/ro/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [3D input devices/ro](3D_input_devices/ro.md) , [ANSI templates/ro](ANSI_templates/ro.md) , [Help FreeCAD/ro](Help_FreeCAD/ro.md) , [Main Page/ro](Main_Page/ro.md) , [Online Help Toc/ro](Online_Help_Toc/ro.md) , [Part Measure Menu/ro](Part_Measure_Menu/ro.md) , [Release notes 0.17/ro](Release_notes_0.17/ro.md) , , , , , [Category:Categories/ro](Category:Categories/ro.md) [Category:API Documentation/ro](Category:API_Documentation/ro.md) [Category:Developer Documentation/ro](Category:Developer_Documentation/ro.md) [Category:Poweruser Documentation/ro](Category:Poweruser_Documentation/ro.md) [Category:User Documentation/ro](Category:User_Documentation/ro.md) [Category:Wiki/ro](Category:Wiki/ro.md) + +--- +[documentation index](../README.md) > Category:Documentation/ro diff --git a/wiki/translations/ro/Category:Draft.md b/wiki/translations/ro/Category:Draft.md index a0ea9d9225..94454362bf 100644 --- a/wiki/translations/ro/Category:Draft.md +++ b/wiki/translations/ro/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/ro\" and \"Workben [Arch panel tutorial/ro](Arch_panel_tutorial/ro.md) , [Draft AddConstruction/ro](Draft_AddConstruction/ro.md) , [Draft AddToGroup/ro](Draft_AddToGroup/ro.md) , [Draft API/ro](Draft_API/ro.md) , [Draft ApplyStyle/ro](Draft_ApplyStyle/ro.md) , [Draft Arc/ro](Draft_Arc/ro.md) , [Draft Array/ro](Draft_Array/ro.md) , [Draft AutoGroup/ro](Draft_AutoGroup/ro.md) , [Draft BezCurve/ro](Draft_BezCurve/ro.md) , [Draft BSpline/ro](Draft_BSpline/ro.md) , [Draft Circle/ro](Draft_Circle/ro.md) , [Draft Clone/ro](Draft_Clone/ro.md) , [Draft Constrain/ro](Draft_Constrain/ro.md) , [Draft Dimension/ro](Draft_Dimension/ro.md) , [Draft Downgrade/ro](Draft_Downgrade/ro.md) , [Draft Draft2Sketch/ro](Draft_Draft2Sketch/ro.md) , [Draft Drawing/ro](Draft_Drawing/ro.md) , [Draft DXF/ro](Draft_DXF/ro.md) , [Draft Edit/ro](Draft_Edit/ro.md) , [Draft Ellipse/ro](Draft_Ellipse/ro.md) , [Draft Facebinder/ro](Draft_Facebinder/ro.md) , [Draft FlipDimension/ro](Draft_FlipDimension/ro.md) , [Draft Heal/ro](Draft_Heal/ro.md) , [Draft Label/ro](Draft_Label/ro.md) , [Draft Line/ro](Draft_Line/ro.md) , [Draft Mirror/ro](Draft_Mirror/ro.md) , [Draft Move/ro](Draft_Move/ro.md) , [Draft Offset/ro](Draft_Offset/ro.md) , [Draft PathArray/ro](Draft_PathArray/ro.md) , [Draft Point/ro](Draft_Point/ro.md) , [Draft PointArray/ro](Draft_PointArray/ro.md) , [Draft Polygon/ro](Draft_Polygon/ro.md) , [Draft Preferences/ro](Draft_Preferences/ro.md) , [Draft Rectangle/ro](Draft_Rectangle/ro.md) , [Draft Rotate/ro](Draft_Rotate/ro.md) , [Draft Scale/ro](Draft_Scale/ro.md) , [Draft SelectGroup/ro](Draft_SelectGroup/ro.md) , [Draft SelectPlane/ro](Draft_SelectPlane/ro.md) , [Draft Shape2DView/ro](Draft_Shape2DView/ro.md) , [Draft ShapeString/ro](Draft_ShapeString/ro.md) , [Draft ShowSnapBar/ro](Draft_ShowSnapBar/ro.md) , [Draft Slope/ro](Draft_Slope/ro.md) , [Draft Snap Angle/ro](Draft_Snap_Angle/ro.md) , [Draft Snap Center/ro](Draft_Snap_Center/ro.md) , [Draft Snap Endpoint/ro](Draft_Snap_Endpoint/ro.md) , [Draft Snap Extension/ro](Draft_Snap_Extension/ro.md) , [Draft Snap Grid/ro](Draft_Snap_Grid/ro.md) , [Draft Snap Intersection/ro](Draft_Snap_Intersection/ro.md) , [Draft Snap Lock/ro](Draft_Snap_Lock/ro.md) , [Draft Snap Midpoint/ro](Draft_Snap_Midpoint/ro.md) , [Draft Snap Near/ro](Draft_Snap_Near/ro.md) , [Draft Snap Parallel/ro](Draft_Snap_Parallel/ro.md) , [Draft Snap Special/ro](Draft_Snap_Special/ro.md) , [Draft Snap WorkingPlane/ro](Draft_Snap_WorkingPlane/ro.md) , [Draft Snap/ro](Draft_Snap/ro.md) , [Draft Stretch/ro](Draft_Stretch/ro.md) , [Draft Text/ro](Draft_Text/ro.md) , [Draft ToggleConstructionMode/ro](Draft_ToggleConstructionMode/ro.md) , [Draft ToggleContinueMode/ro](Draft_ToggleContinueMode/ro.md) , [Draft ToggleDisplayMode/ro](Draft_ToggleDisplayMode/ro.md) , [Draft ToggleGrid/ro](Draft_ToggleGrid/ro.md) , [Draft Trimex/ro](Draft_Trimex/ro.md) , [Draft tutorial/ro](Draft_tutorial/ro.md) , [Draft Upgrade/ro](Draft_Upgrade/ro.md) , [Draft Wire/ro](Draft_Wire/ro.md) , [Draft WireToBSpline/ro](Draft_WireToBSpline/ro.md) , [Draft Workbench/ro](Draft_Workbench/ro.md) , [Draft WorkingPlaneProxy/ro](Draft_WorkingPlaneProxy/ro.md) , [Manual:Traditional 2D drafting/ro](Manual:Traditional_2D_drafting/ro.md) [Category:User Documentation/ro](Category:User_Documentation/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:Draft/ro diff --git a/wiki/translations/ro/Category:Drawing.md b/wiki/translations/ro/Category:Drawing.md index 0b0ca105b9..44ffb97a7e 100644 --- a/wiki/translations/ro/Category:Drawing.md +++ b/wiki/translations/ro/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/ro](Drawing_Workbenc [ANSI templates/ro](ANSI_templates/ro.md) , [Drawing Annotation/ro](Drawing_Annotation/ro.md) , [Drawing API example/ro](Drawing_API_example/ro.md) , [Drawing Clip/ro](Drawing_Clip/ro.md) , [Drawing Documentation/ro](Drawing_Documentation/ro.md) , [Drawing Landscape A3/ro](Drawing_Landscape_A3/ro.md) , [Drawing Open SVG/ro](Drawing_Open_SVG/ro.md) , [Drawing Openbrowser/ro](Drawing_Openbrowser/ro.md) , [Drawing Orthoviews/ro](Drawing_Orthoviews/ro.md) , [Drawing ProjectShape/ro](Drawing_ProjectShape/ro.md) , [Drawing Save/ro](Drawing_Save/ro.md) , [Drawing SpreadsheetView/ro](Drawing_SpreadsheetView/ro.md) , [Drawing Symbol/ro](Drawing_Symbol/ro.md) , [Drawing Template HowTo/ro](Drawing_Template_HowTo/ro.md) , [Template:Drawing Tools navi/ro](Template:Drawing_Tools_navi/ro.md) , [Drawing tutorial/ro](Drawing_tutorial/ro.md) , [Drawing View/ro](Drawing_View/ro.md) , [Drawing Workbench/ro](Drawing_Workbench/ro.md) [Category:Obsolete Workbenches/ro](Category:Obsolete_Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:Drawing/ro diff --git a/wiki/translations/ro/Category:External_Workbenches.md b/wiki/translations/ro/Category:External_Workbenches.md index 1a9c2a8e37..eb811b28fe 100644 --- a/wiki/translations/ro/Category:External_Workbenches.md +++ b/wiki/translations/ro/Category:External_Workbenches.md @@ -4,3 +4,6 @@ [External workbenches/ro](External_workbenches/ro.md) , [How to install additional workbenches/ro](How_to_install_additional_workbenches/ro.md) , [Plot Axes/ro](Plot_Axes/ro.md) , [Plot Grid/ro](Plot_Grid/ro.md) , [Plot Labels/ro](Plot_Labels/ro.md) , [Plot Legend/ro](Plot_Legend/ro.md) , [Plot Module/ro](Plot_Module/ro.md) , [Plot Positions/ro](Plot_Positions/ro.md) , [Plot Save/ro](Plot_Save/ro.md) , [Plot Series/ro](Plot_Series/ro.md) , [Render project/ro](Render_project/ro.md) , [Ship Workbench/ro](Ship_Workbench/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) [Category:Addons/ro](Category:Addons/ro.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/ro diff --git a/wiki/translations/ro/Category:FEM.md b/wiki/translations/ro/Category:FEM.md index 38344057e5..75ab09a97a 100644 --- a/wiki/translations/ro/Category:FEM.md +++ b/wiki/translations/ro/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/ro](FEM_Workbench/ro.md) [Add FEM constraint tutorial/ro](Add_FEM_constraint_tutorial/ro.md) , [Add FEM equation tutorial/ro](Add_FEM_equation_tutorial/ro.md) , [Extend FEM Module/ro](Extend_FEM_Module/ro.md) , [FEM Analysis/ro](FEM_Analysis/ro.md) , [FEM CalculiX Cantilever 3D/ro](FEM_CalculiX_Cantilever_3D/ro.md) , [FEM CalculiX/ro](FEM_CalculiX/ro.md) , [FEM ConstraintBearing/ro](FEM_ConstraintBearing/ro.md) , [FEM ConstraintContact/ro](FEM_ConstraintContact/ro.md) , [FEM ConstraintDisplacement/ro](FEM_ConstraintDisplacement/ro.md) , [FEM ConstraintFixed/ro](FEM_ConstraintFixed/ro.md) , [FEM ConstraintForce/ro](FEM_ConstraintForce/ro.md) , [FEM ConstraintHeatflux/ro](FEM_ConstraintHeatflux/ro.md) , [FEM ConstraintInitialTemperature/ro](FEM_ConstraintInitialTemperature/ro.md) , [FEM ConstraintPlaneRotation/ro](FEM_ConstraintPlaneRotation/ro.md) , [FEM ConstraintPressure/ro](FEM_ConstraintPressure/ro.md) , [FEM ConstraintPulley/ro](FEM_ConstraintPulley/ro.md) , [FEM ConstraintSelfWeight/ro](FEM_ConstraintSelfWeight/ro.md) , [FEM ConstraintTemperature/ro](FEM_ConstraintTemperature/ro.md) , [FEM ConstraintTransform/ro](FEM_ConstraintTransform/ro.md) , [FEM CreateNodesSet/ro](FEM_CreateNodesSet/ro.md) , [FEM ElementFluid1D/ro](FEM_ElementFluid1D/ro.md) , [FEM ElementGeometry1D/ro](FEM_ElementGeometry1D/ro.md) , [FEM ElementGeometry2D/ro](FEM_ElementGeometry2D/ro.md) , [FEM ElementRotation1D/ro](FEM_ElementRotation1D/ro.md) , [FEM EquationElasticity/ro](FEM_EquationElasticity/ro.md) , [FEM EquationFlow/ro](FEM_EquationFlow/ro.md) , [FEM EquationFlux/ro](FEM_EquationFlux/ro.md) , [FEM EquationHeat/ro](FEM_EquationHeat/ro.md) , [FEM FemMesh2Mesh/ro](FEM_FemMesh2Mesh/ro.md) , [FEM Install/ro](FEM_Install/ro.md) , [FEM MaterialFluid/ro](FEM_MaterialFluid/ro.md) , [FEM MaterialMechanicalNonlinear/ro](FEM_MaterialMechanicalNonlinear/ro.md) , [FEM MaterialSolid/ro](FEM_MaterialSolid/ro.md) , [FEM Mesh/ro](FEM_Mesh/ro.md) , [FEM PostPipelineFromResult/ro](FEM_PostPipelineFromResult/ro.md) , [FEM project/ro](FEM_project/ro.md) , [FEM Shear of a Composite Block/ro](FEM_Shear_of_a_Composite_Block/ro.md) , [FEM Solver/ro](FEM_Solver/ro.md) , [FEM SolverCalculixCxxtools/ro](FEM_SolverCalculixCxxtools/ro.md) , [FEM SolverZ88/ro](FEM_SolverZ88/ro.md) , [Template:FEM Tools navi/ro](Template:FEM_Tools_navi/ro.md) , [FEM Tutorial Python/ro](FEM_Tutorial_Python/ro.md) , [FEM tutorial/ro](FEM_tutorial/ro.md) , [FEM Workbench/ro](FEM_Workbench/ro.md) , [Material editor/ro](Material_editor/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:FEM/ro diff --git a/wiki/translations/ro/Category:File_Formats.md b/wiki/translations/ro/Category:File_Formats.md index 87ed147e6b..7c8a8a7d4d 100644 --- a/wiki/translations/ro/Category:File_Formats.md +++ b/wiki/translations/ro/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [Draft DXF/ro](Draft_DXF/ro.md) , [Export to STL or OBJ/ro](Export_to_STL_or_OBJ/ro.md) , [File Format FCStd/ro](File_Format_FCStd/ro.md) , [Import Export Preferences/ro](Import_Export_Preferences/ro.md) , [Import Export/ro](Import_Export/ro.md) , [Import from STL or OBJ/ro](Import_from_STL_or_OBJ/ro.md) , [Import/Export IFC - compiling IfcOpenShell/ro](Import/Export_IFC_-_compiling_IfcOpenShell/ro.md) , [Std Export/ro](Std_Export/ro.md) , [Std Import/ro](Std_Import/ro.md) + +--- +[documentation index](../README.md) > Category:File Formats/ro diff --git a/wiki/translations/ro/Category:Glossary.md b/wiki/translations/ro/Category:Glossary.md index a3e6776ad2..85427169b9 100644 --- a/wiki/translations/ro/Category:Glossary.md +++ b/wiki/translations/ro/Category:Glossary.md @@ -4,3 +4,6 @@ This category tracks pages that explain definitions of words related to FreeCAD ### Contents: [Command/ro](Command/ro.md) , [Glossary/ro](Glossary/ro.md) , [Manipulator/ro](Manipulator/ro.md) , [Python/ro](Python/ro.md) + +--- +[documentation index](../README.md) > Category:Glossary/ro diff --git a/wiki/translations/ro/Category:Hubs.md b/wiki/translations/ro/Category:Hubs.md index bd74456980..379bbb8c27 100644 --- a/wiki/translations/ro/Category:Hubs.md +++ b/wiki/translations/ro/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Developer hub/ro](Developer_hub/ro.md) , [Power users hub/ro](Power_users_hub/ro.md) , [User hub/ro](User_hub/ro.md) [Category:Categories/ro](Category:Categories/ro.md) + +--- +[documentation index](../README.md) > Category:Hubs/ro diff --git a/wiki/translations/ro/Category:Image.md b/wiki/translations/ro/Category:Image.md index 5d093dffcb..f0a8586128 100644 --- a/wiki/translations/ro/Category:Image.md +++ b/wiki/translations/ro/Category:Image.md @@ -6,3 +6,6 @@ This category lists pages related to the [Image Workbench/ro](Image_Workbench/ro [Image Workbench/ro](Image_Workbench/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:Image/ro diff --git a/wiki/translations/ro/Category:Inspection.md b/wiki/translations/ro/Category:Inspection.md index 582ad53f62..6095cc19a3 100644 --- a/wiki/translations/ro/Category:Inspection.md +++ b/wiki/translations/ro/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Inspection Workbench/ro](Inspection_Workbench/ro.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection/ro diff --git a/wiki/translations/ro/Category:Macros.md b/wiki/translations/ro/Category:Macros.md index 501f33380f..b768b2e988 100644 --- a/wiki/translations/ro/Category:Macros.md +++ b/wiki/translations/ro/Category:Macros.md @@ -6,3 +6,6 @@ This category contains macros to extend your FreeCAD installation with new funct [Macro HighlightDifference/ro](Macro_HighlightDifference/ro.md) , [Macro Unroll Ruled Surface/ro](Macro_Unroll_Ruled_Surface/ro.md) , [Template:Macro/ro](Template:Macro/ro.md) , [Macros recipes/ro](Macros_recipes/ro.md) , [Macros/ro](Macros/ro.md) [Category:Addons/ro](Category:Addons/ro.md) [Category:User Documentation/ro](Category:User_Documentation/ro.md) [Category:Categories/ro](Category:Categories/ro.md) + +--- +[documentation index](../README.md) > Category:Macros/ro diff --git a/wiki/translations/ro/Category:Mesh.md b/wiki/translations/ro/Category:Mesh.md index 1a9873c106..b95d54aa2f 100644 --- a/wiki/translations/ro/Category:Mesh.md +++ b/wiki/translations/ro/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/ro](Mesh_Workbench/ro. [Manual:Preparing models for 3D printing/ro](Manual:Preparing_models_for_3D_printing/ro.md) , [Mesh BoundingBox/ro](Mesh_BoundingBox/ro.md) , [Mesh BuildRegularSolid/ro](Mesh_BuildRegularSolid/ro.md) , [Mesh Difference/ro](Mesh_Difference/ro.md) , [Mesh EvaluateFacet/ro](Mesh_EvaluateFacet/ro.md) , [Mesh Export/ro](Mesh_Export/ro.md) , [Mesh FillInteractiveHole/ro](Mesh_FillInteractiveHole/ro.md) , [Mesh FlipNormals/ro](Mesh_FlipNormals/ro.md) , [Mesh FromPartShape/ro](Mesh_FromPartShape/ro.md) , [Mesh HarmonizeNormals/ro](Mesh_HarmonizeNormals/ro.md) , [Mesh Import/ro](Mesh_Import/ro.md) , [Mesh Intersection/ro](Mesh_Intersection/ro.md) , [Mesh Merge/ro](Mesh_Merge/ro.md) , [Mesh RemoveComponents/ro](Mesh_RemoveComponents/ro.md) , [Mesh Scripting/ro](Mesh_Scripting/ro.md) , [Mesh to Part/ro](Mesh_to_Part/ro.md) , [Template:Mesh Tools navi/ro](Template:Mesh_Tools_navi/ro.md) , [Mesh Union/ro](Mesh_Union/ro.md) , [Mesh Workbench/ro](Mesh_Workbench/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:Mesh/ro diff --git a/wiki/translations/ro/Category:News.md b/wiki/translations/ro/Category:News.md index eef85fb3a7..3fa75f650e 100644 --- a/wiki/translations/ro/Category:News.md +++ b/wiki/translations/ro/Category:News.md @@ -6,3 +6,6 @@ This category contains articles with news and messages about FreeCAD. [History/ro](History/ro.md) , [Release notes 0.17/ro](Release_notes_0.17/ro.md) [Category:Categories/ro](Category:Categories/ro.md) + +--- +[documentation index](../README.md) > Category:News/ro diff --git a/wiki/translations/ro/Category:Obsolete_Workbenches.md b/wiki/translations/ro/Category:Obsolete_Workbenches.md index 8b026d9301..28b96b8da4 100644 --- a/wiki/translations/ro/Category:Obsolete_Workbenches.md +++ b/wiki/translations/ro/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/ro](Drawing_Workbenc [Complete Workbench/ro](Complete_Workbench/ro.md) , [Drawing Workbench/ro](Drawing_Workbench/ro.md) , , [Category:Obsolete Workbenches/ro](Category:Obsolete_Workbenches/ro.md) [Category:Drawing/ro](Category:Drawing/ro.md) [Category:Obsolete Workbenches/ro](Category:Obsolete_Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/ro diff --git a/wiki/translations/ro/Category:OpenSCAD.md b/wiki/translations/ro/Category:OpenSCAD.md index 6b95452705..76fd61ddcb 100644 --- a/wiki/translations/ro/Category:OpenSCAD.md +++ b/wiki/translations/ro/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/ro](OpenSCAD_Workb [Import OpenSCAD code/ro](Import_OpenSCAD_code/ro.md) , [OpenSCAD AddOpenSCADElement/ro](OpenSCAD_AddOpenSCADElement/ro.md) , [OpenSCAD ColorCodeShape/ro](OpenSCAD_ColorCodeShape/ro.md) , [OpenSCAD Edgestofaces/ro](OpenSCAD_Edgestofaces/ro.md) , [OpenSCAD ExplodeGroup/ro](OpenSCAD_ExplodeGroup/ro.md) , [OpenSCAD Hull/ro](OpenSCAD_Hull/ro.md) , [OpenSCAD IncreaseToleranceFeature/ro](OpenSCAD_IncreaseToleranceFeature/ro.md) , [OpenSCAD MeshBoolean/ro](OpenSCAD_MeshBoolean/ro.md) , [OpenSCAD Minkowski/ro](OpenSCAD_Minkowski/ro.md) , [OpenSCAD RefineShapeFeature/ro](OpenSCAD_RefineShapeFeature/ro.md) , [OpenSCAD RemoveSubtree/ro](OpenSCAD_RemoveSubtree/ro.md) , [OpenSCAD ReplaceObject/ro](OpenSCAD_ReplaceObject/ro.md) , [Template:OpenSCAD Tools navi/ro](Template:OpenSCAD_Tools_navi/ro.md) , [OpenSCAD Workbench/ro](OpenSCAD_Workbench/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/ro diff --git a/wiki/translations/ro/Category:Part.md b/wiki/translations/ro/Category:Part.md index c5cc569512..9bf886672a 100644 --- a/wiki/translations/ro/Category:Part.md +++ b/wiki/translations/ro/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/ro](Part_Workbench/ro.m [Aeroplane/ro](Aeroplane/ro.md) , [Basic modeling tutorial/ro](Basic_modeling_tutorial/ro.md) , [Draft ShapeString tutorial/ro](Draft_ShapeString_tutorial/ro.md) , [Part Boolean/ro](Part_Boolean/ro.md) , [Part BooleanFragments/ro](Part_BooleanFragments/ro.md) , [Part Box/ro](Part_Box/ro.md) , [Part Builder/ro](Part_Builder/ro.md) , [Part Chamfer/ro](Part_Chamfer/ro.md) , [Part CheckGeometry/ro](Part_CheckGeometry/ro.md) , [Part Circle/ro](Part_Circle/ro.md) , [Part Common/ro](Part_Common/ro.md) , [Part CompJoinFeatures/ro](Part_CompJoinFeatures/ro.md) , [Part Compound/ro](Part_Compound/ro.md) , [Part CompoundFilter/ro](Part_CompoundFilter/ro.md) , [Part Cone/ro](Part_Cone/ro.md) , [Part CrossSections/ro](Part_CrossSections/ro.md) , [Part Cut/ro](Part_Cut/ro.md) , [Part Cylinder/ro](Part_Cylinder/ro.md) , [Part EditAttachment/ro](Part_EditAttachment/ro.md) , [Part Ellipse/ro](Part_Ellipse/ro.md) , [Part Ellipsoid/ro](Part_Ellipsoid/ro.md) , [Part Extrude/ro](Part_Extrude/ro.md) , [Part Fillet/ro](Part_Fillet/ro.md) , [Part Fuse/ro](Part_Fuse/ro.md) , [Part Helix/ro](Part_Helix/ro.md) , [Part Import/ro](Part_Import/ro.md) , [Part JoinConnect/ro](Part_JoinConnect/ro.md) , [Part JoinCutout/ro](Part_JoinCutout/ro.md) , [Part JoinEmbed/ro](Part_JoinEmbed/ro.md) , [Part Line/ro](Part_Line/ro.md) , [Part Loft Technical Details/ro](Part_Loft_Technical_Details/ro.md) , [Part Loft/ro](Part_Loft/ro.md) , [Part MakeSolid/ro](Part_MakeSolid/ro.md) , [Part Measure Angular/ro](Part_Measure_Angular/ro.md) , [Part Measure Clear All/ro](Part_Measure_Clear_All/ro.md) , [Part Measure Linear/ro](Part_Measure_Linear/ro.md) , [Part Measure Menu/ro](Part_Measure_Menu/ro.md) , [Part Measure Toggle 3d/ro](Part_Measure_Toggle_3d/ro.md) , [Part Measure Toggle All/ro](Part_Measure_Toggle_All/ro.md) , [Part Measure Toggle Delta/ro](Part_Measure_Toggle_Delta/ro.md) , [Part Mirror/ro](Part_Mirror/ro.md) , [Part Module/ro](Part_Module/ro.md) , [Part Offset/ro](Part_Offset/ro.md) , [Part Offset2D/ro](Part_Offset2D/ro.md) , [Part Plane/ro](Part_Plane/ro.md) , [Part Primitives/ro](Part_Primitives/ro.md) , [Part RefineShape/ro](Part_RefineShape/ro.md) , [Part RegularPolygon/ro](Part_RegularPolygon/ro.md) , [Part ReverseShapes/ro](Part_ReverseShapes/ro.md) , [Part Revolve/ro](Part_Revolve/ro.md) , [Part RuledSurface/ro](Part_RuledSurface/ro.md) , [Part Section/ro](Part_Section/ro.md) , [Part ShapeFromMesh/ro](Part_ShapeFromMesh/ro.md) , [Part SimpleCopy/ro](Part_SimpleCopy/ro.md) , [Part Slice/ro](Part_Slice/ro.md) , [Part Sphere/ro](Part_Sphere/ro.md) , [Part Spiral/ro](Part_Spiral/ro.md) , [Part Sweep/ro](Part_Sweep/ro.md) , [Part Thickness/ro](Part_Thickness/ro.md) , [Template:Part Tools navi/ro](Template:Part_Tools_navi/ro.md) , [Part Torus/ro](Part_Torus/ro.md) , [Part Wedge/ro](Part_Wedge/ro.md) , [Ship Loading/ro](Ship_Loading/ro.md) , [Thread for Screw Tutorial/ro](Thread_for_Screw_Tutorial/ro.md) , [Whiffle Ball tutorial/ro](Whiffle_Ball_tutorial/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:Part/ro diff --git a/wiki/translations/ro/Category:PartDesign.md b/wiki/translations/ro/Category:PartDesign.md index 0efc5f496c..ec34767716 100644 --- a/wiki/translations/ro/Category:PartDesign.md +++ b/wiki/translations/ro/Category:PartDesign.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to PartDesign ### Contents: [Basic Part Design Tutorial/ro](Basic_Part_Design_Tutorial/ro.md) , [Creating a simple part with PartDesign/ro](Creating_a_simple_part_with_PartDesign/ro.md) , [Draft ShapeString tutorial/ro](Draft_ShapeString_tutorial/ro.md) , [Feature editing/ro](Feature_editing/ro.md) , [PartDesign AdditiveBox/ro](PartDesign_AdditiveBox/ro.md) , [PartDesign AdditiveCone/ro](PartDesign_AdditiveCone/ro.md) , [PartDesign AdditiveCylinder/ro](PartDesign_AdditiveCylinder/ro.md) , [PartDesign AdditiveEllipsoid/ro](PartDesign_AdditiveEllipsoid/ro.md) , [PartDesign AdditiveLoft/ro](PartDesign_AdditiveLoft/ro.md) , [PartDesign AdditivePipe/ro](PartDesign_AdditivePipe/ro.md) , [PartDesign AdditivePrism/ro](PartDesign_AdditivePrism/ro.md) , [PartDesign AdditiveSphere/ro](PartDesign_AdditiveSphere/ro.md) , [PartDesign AdditiveTorus/ro](PartDesign_AdditiveTorus/ro.md) , [PartDesign AdditiveWedge/ro](PartDesign_AdditiveWedge/ro.md) , [PartDesign Body/ro](PartDesign_Body/ro.md) , [PartDesign Boolean/ro](PartDesign_Boolean/ro.md) , [PartDesign Chamfer/ro](PartDesign_Chamfer/ro.md) , [PartDesign Clone/ro](PartDesign_Clone/ro.md) , [PartDesign CompPrimitiveAdditive/ro](PartDesign_CompPrimitiveAdditive/ro.md) , [PartDesign CompPrimitiveSubtractive/ro](PartDesign_CompPrimitiveSubtractive/ro.md) , [PartDesign Draft/ro](PartDesign_Draft/ro.md) , [PartDesign Fillet/ro](PartDesign_Fillet/ro.md) , [PartDesign Groove/ro](PartDesign_Groove/ro.md) , [PartDesign Hole/ro](PartDesign_Hole/ro.md) , [PartDesign InvoluteGear/ro](PartDesign_InvoluteGear/ro.md) , [PartDesign Line/ro](PartDesign_Line/ro.md) , [PartDesign LinearPattern/ro](PartDesign_LinearPattern/ro.md) , [PartDesign Migrate/ro](PartDesign_Migrate/ro.md) , [PartDesign Mirrored/ro](PartDesign_Mirrored/ro.md) , [PartDesign MoveFeature/ro](PartDesign_MoveFeature/ro.md) , [PartDesign MoveFeatureInTree/ro](PartDesign_MoveFeatureInTree/ro.md) , [PartDesign MoveTip/ro](PartDesign_MoveTip/ro.md) , [PartDesign MultiTransform/ro](PartDesign_MultiTransform/ro.md) , [PartDesign NewSketch/ro](PartDesign_NewSketch/ro.md) , [PartDesign Pad/ro](PartDesign_Pad/ro.md) , [PartDesign Plane/ro](PartDesign_Plane/ro.md) , [PartDesign Pocket/ro](PartDesign_Pocket/ro.md) , [PartDesign Point/ro](PartDesign_Point/ro.md) , [PartDesign PolarPattern/ro](PartDesign_PolarPattern/ro.md) , [PartDesign Revolution/ro](PartDesign_Revolution/ro.md) , [PartDesign ShapeBinder/ro](PartDesign_ShapeBinder/ro.md) , [PartDesign SubtractiveBox/ro](PartDesign_SubtractiveBox/ro.md) , [PartDesign SubtractiveCone/ro](PartDesign_SubtractiveCone/ro.md) , [PartDesign SubtractiveCylinder/ro](PartDesign_SubtractiveCylinder/ro.md) , [PartDesign SubtractiveEllipsoid/ro](PartDesign_SubtractiveEllipsoid/ro.md) , [PartDesign SubtractiveLoft/ro](PartDesign_SubtractiveLoft/ro.md) , [PartDesign SubtractivePipe/ro](PartDesign_SubtractivePipe/ro.md) , [PartDesign SubtractivePrism/ro](PartDesign_SubtractivePrism/ro.md) , [PartDesign SubtractiveSphere/ro](PartDesign_SubtractiveSphere/ro.md) , [PartDesign SubtractiveTorus/ro](PartDesign_SubtractiveTorus/ro.md) , [PartDesign SubtractiveWedge/ro](PartDesign_SubtractiveWedge/ro.md) , [PartDesign Thickness/ro](PartDesign_Thickness/ro.md) , [Template:PartDesign Tools navi/ro](Template:PartDesign_Tools_navi/ro.md) , [PartDesign WizardShaft/ro](PartDesign_WizardShaft/ro.md) , [PartDesign Workbench/ro](PartDesign_Workbench/ro.md) , [Thread for Screw Tutorial/ro](Thread_for_Screw_Tutorial/ro.md) , [Toothbrush Head Stand/ro](Toothbrush_Head_Stand/ro.md) + +--- +[documentation index](../README.md) > Category:PartDesign/ro diff --git a/wiki/translations/ro/Category:Path.md b/wiki/translations/ro/Category:Path.md index e9c9ae38c6..6432d8f568 100644 --- a/wiki/translations/ro/Category:Path.md +++ b/wiki/translations/ro/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/ro](PartDesign_Wo [Manual:Preparing models for 3D printing/ro](Manual:Preparing_models_for_3D_printing/ro.md) , [Path Array/ro](Path_Array/ro.md) , [Path Comment/ro](Path_Comment/ro.md) , [Path Copy/ro](Path_Copy/ro.md) , [Path Custom/ro](Path_Custom/ro.md) , [Path DressupDogbone/ro](Path_DressupDogbone/ro.md) , [Path DressupDragKnife/ro](Path_DressupDragKnife/ro.md) , [Path DressupRampEntry/ro](Path_DressupRampEntry/ro.md) , [Path DressupTag/ro](Path_DressupTag/ro.md) , [Path Drilling/ro](Path_Drilling/ro.md) , [Path Engrave/ro](Path_Engrave/ro.md) , [Path ExportTemplate/ro](Path_ExportTemplate/ro.md) , [Path Fixture/ro](Path_Fixture/ro.md) , [Path Helix/ro](Path_Helix/ro.md) , [Path Inspect/ro](Path_Inspect/ro.md) , [Path Job/ro](Path_Job/ro.md) , [Path MillFace/ro](Path_MillFace/ro.md) , [Path Pocket 3D/ro](Path_Pocket_3D/ro.md) , [Path Post/ro](Path_Post/ro.md) , [Path Profile/ro](Path_Profile/ro.md) , [Path scripting/ro](Path_scripting/ro.md) , [Path SelectLoop/ro](Path_SelectLoop/ro.md) , [Path Shape/ro](Path_Shape/ro.md) , [Path SimpleCopy/ro](Path_SimpleCopy/ro.md) , [Path Simulator/ro](Path_Simulator/ro.md) , [Path Stop/ro](Path_Stop/ro.md) , [Path Surface/ro](Path_Surface/ro.md) , [Template:Path Tools navi/ro](Template:Path_Tools_navi/ro.md) , [Path Walkthrough for the Impatient/ro](Path_Walkthrough_for_the_Impatient/ro.md) , [Path Workbench/ro](Path_Workbench/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:Path/ro diff --git a/wiki/translations/ro/Category:Plot.md b/wiki/translations/ro/Category:Plot.md index cf2ac8fe18..a97e7ec5f2 100644 --- a/wiki/translations/ro/Category:Plot.md +++ b/wiki/translations/ro/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/ro](Plot_Workbench/ro.m [Plot Axes/ro](Plot_Axes/ro.md) , [Plot Grid/ro](Plot_Grid/ro.md) , [Plot Labels/ro](Plot_Labels/ro.md) , [Plot Legend/ro](Plot_Legend/ro.md) , [Plot Module/ro](Plot_Module/ro.md) , [Plot Positions/ro](Plot_Positions/ro.md) , [Plot Save/ro](Plot_Save/ro.md) , [Plot Series/ro](Plot_Series/ro.md) , [Template:Plot Tools navi/ro](Template:Plot_Tools_navi/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:Plot/ro diff --git a/wiki/translations/ro/Category:Points.md b/wiki/translations/ro/Category:Points.md index 9e333211d2..8eeaf274f1 100644 --- a/wiki/translations/ro/Category:Points.md +++ b/wiki/translations/ro/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/ro](Points_Workbench/ [Points Workbench/ro](Points_Workbench/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:Points/ro diff --git a/wiki/translations/ro/Category:Poweruser_Documentation.md b/wiki/translations/ro/Category:Poweruser_Documentation.md index 61ecb4be6c..7f2b5029bf 100644 --- a/wiki/translations/ro/Category:Poweruser_Documentation.md +++ b/wiki/translations/ro/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Arch API/ro](Arch_API/ro.md) , [Base API/ro](Base_API/ro.md) , [Builtin modules/ro](Builtin_modules/ro.md) , [Code snippets/ro](Code_snippets/ro.md) , [Command/ro](Command/ro.md) , [Console API/ro](Console_API/ro.md) , [Debugging/ro](Debugging/ro.md) , [Dialog creation/ro](Dialog_creation/ro.md) , [Draft API/ro](Draft_API/ro.md) , [Drawing API example/ro](Drawing_API_example/ro.md) , [Embedding FreeCAD/ro](Embedding_FreeCAD/ro.md) , [Embedding FreeCADGui/ro](Embedding_FreeCADGui/ro.md) , [FEM CalculiX/ro](FEM_CalculiX/ro.md) , [FreeCAD API/ro](FreeCAD_API/ro.md) , [FreeCAD Scripting Basics/ro](FreeCAD_Scripting_Basics/ro.md) , [FreeCAD vector math library/ro](FreeCAD_vector_math_library/ro.md) , [FreeCADGui API/ro](FreeCADGui_API/ro.md) , [Gui Command/ro](Gui_Command/ro.md) , [How to install additional workbenches/ro](How_to_install_additional_workbenches/ro.md) , [How to install macros/ro](How_to_install_macros/ro.md) , [Installing more workbenches/ro](Installing_more_workbenches/ro.md) , [Introduction to Python/ro](Introduction_to_Python/ro.md) , [Line drawing function/ro](Line_drawing_function/ro.md) , [Macros/ro](Macros/ro.md) , [Manual:A gentle introduction/ro](Manual:A_gentle_introduction/ro.md) , [Manual:Creating and manipulating geometry/ro](Manual:Creating_and_manipulating_geometry/ro.md) , [Manual:Creating interface tools/ro](Manual:Creating_interface_tools/ro.md) , [Manual:Creating parametric objects/ro](Manual:Creating_parametric_objects/ro.md) , [Manual:Import and export to other filetypes/ro](Manual:Import_and_export_to_other_filetypes/ro.md) , [Manual:Installing/ro](Manual:Installing/ro.md) , [Manual:Parametric objects/ro](Manual:Parametric_objects/ro.md) , [Matrix API/ro](Matrix_API/ro.md) , [Mesh API/ro](Mesh_API/ro.md) , [Mesh Scripting/ro](Mesh_Scripting/ro.md) , [Mesh to Part/ro](Mesh_to_Part/ro.md) , [Object API/ro](Object_API/ro.md) , [Part API/ro](Part_API/ro.md) , [Path scripting/ro](Path_scripting/ro.md) , [Pivy/ro](Pivy/ro.md) , [Placement API/ro](Placement_API/ro.md) , [Power users hub/ro](Power_users_hub/ro.md) , [Property/ro](Property/ro.md) , [PySide/ro](PySide/ro.md) , [Python scripting tutorial/ro](Python_scripting_tutorial/ro.md) , [Python/ro](Python/ro.md) , [PythonOCC/ro](PythonOCC/ro.md) , [Scenegraph/ro](Scenegraph/ro.md) , [Scripted objects/ro](Scripted_objects/ro.md) , [Scripted Parts: Ball Bearing - Part 1/ro](Scripted_Parts:_Ball_Bearing_-_Part_1/ro.md) , [Scripting and macros/ro](Scripting_and_macros/ro.md) , [TechDraw API/ro](TechDraw_API/ro.md) , [TechDrawGui API/ro](TechDrawGui_API/ro.md) , [Topological data scripting/ro](Topological_data_scripting/ro.md) , [TopoShape API/ro](TopoShape_API/ro.md) , [Units/ro](Units/ro.md) , [Vector API/ro](Vector_API/ro.md) , [ViewObject API/ro](ViewObject_API/ro.md) , [Workbench creation/ro](Workbench_creation/ro.md) [Category:Documentation/ro](Category:Documentation/ro.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/ro diff --git a/wiki/translations/ro/Category:Preferences.md b/wiki/translations/ro/Category:Preferences.md index 50f61082c9..f5e1115404 100644 --- a/wiki/translations/ro/Category:Preferences.md +++ b/wiki/translations/ro/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Customize Toolbars/ro](Customize_Toolbars/ro.md) , [Draft Preferences/ro](Draft_Preferences/ro.md) , [Import Export Preferences/ro](Import_Export_Preferences/ro.md) , [Preferences Editor/ro](Preferences_Editor/ro.md) + +--- +[documentation index](../README.md) > Category:Preferences/ro diff --git a/wiki/translations/ro/Category:Python_Code.md b/wiki/translations/ro/Category:Python_Code.md index f8d510ffcb..2dd2d236f2 100644 --- a/wiki/translations/ro/Category:Python_Code.md +++ b/wiki/translations/ro/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Code snippets/ro](Code_snippets/ro.md) , [Command/ro](Command/ro.md) , [Debugging/ro](Debugging/ro.md) , [Dialog creation/ro](Dialog_creation/ro.md) , [Drawing API example/ro](Drawing_API_example/ro.md) , [Embedding FreeCAD/ro](Embedding_FreeCAD/ro.md) , [Embedding FreeCADGui/ro](Embedding_FreeCADGui/ro.md) , [Extra python modules/ro](Extra_python_modules/ro.md) , [FEM Tutorial Python/ro](FEM_Tutorial_Python/ro.md) , [FreeCAD Scripting Basics/ro](FreeCAD_Scripting_Basics/ro.md) , [FreeCAD vector math library/ro](FreeCAD_vector_math_library/ro.md) , [How to install macros/ro](How_to_install_macros/ro.md) , [Introduction to Python/ro](Introduction_to_Python/ro.md) , [Line drawing function/ro](Line_drawing_function/ro.md) , [Macros recipes/ro](Macros_recipes/ro.md) , [Macros/ro](Macros/ro.md) , [Manual:A gentle introduction/ro](Manual:A_gentle_introduction/ro.md) , [Manual:Creating and manipulating geometry/ro](Manual:Creating_and_manipulating_geometry/ro.md) , [Manual:Creating interface tools/ro](Manual:Creating_interface_tools/ro.md) , [Manual:Creating parametric objects/ro](Manual:Creating_parametric_objects/ro.md) , [Mesh Scripting/ro](Mesh_Scripting/ro.md) , [Mesh to Part/ro](Mesh_to_Part/ro.md) , [Path scripting/ro](Path_scripting/ro.md) , [Pivy/ro](Pivy/ro.md) , [Property/ro](Property/ro.md) , [PySide/ro](PySide/ro.md) , [Python scripting tutorial/ro](Python_scripting_tutorial/ro.md) , [Python/ro](Python/ro.md) , [PythonOCC/ro](PythonOCC/ro.md) , [Scripted objects/ro](Scripted_objects/ro.md) , [Scripted Parts: Ball Bearing - Part 1/ro](Scripted_Parts:_Ball_Bearing_-_Part_1/ro.md) , [Scripting and macros/ro](Scripting_and_macros/ro.md) , [Topological data scripting/ro](Topological_data_scripting/ro.md) , [Workbench creation/ro](Workbench_creation/ro.md) [Category:Categories/ro](Category:Categories/ro.md) + +--- +[documentation index](../README.md) > Category:Python Code/ro diff --git a/wiki/translations/ro/Category:Raytracing.md b/wiki/translations/ro/Category:Raytracing.md index d668722725..2213c90b11 100644 --- a/wiki/translations/ro/Category:Raytracing.md +++ b/wiki/translations/ro/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/ro](Raytracing_Wo [Manual:Creating renderings/ro](Manual:Creating_renderings/ro.md) , [Raytracing ExportProject/ro](Raytracing_ExportProject/ro.md) , [Raytracing InsertPart/ro](Raytracing_InsertPart/ro.md) , [Raytracing Lux/ro](Raytracing_Lux/ro.md) , [Raytracing New/ro](Raytracing_New/ro.md) , [Raytracing Render/ro](Raytracing_Render/ro.md) , [Raytracing ResetCamera/ro](Raytracing_ResetCamera/ro.md) , [Template:Raytracing Tools navi/ro](Template:Raytracing_Tools_navi/ro.md) , [Raytracing tutorial/ro](Raytracing_tutorial/ro.md) , [Raytracing Workbench/ro](Raytracing_Workbench/ro.md) , [Raytracing WriteCamera/ro](Raytracing_WriteCamera/ro.md) , [Raytracing WritePart/ro](Raytracing_WritePart/ro.md) , [Raytracing WriteView/ro](Raytracing_WriteView/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:Raytracing/ro diff --git a/wiki/translations/ro/Category:Reinforcement.md b/wiki/translations/ro/Category:Reinforcement.md index c99c5c04f2..beb4cec1a9 100644 --- a/wiki/translations/ro/Category:Reinforcement.md +++ b/wiki/translations/ro/Category:Reinforcement.md @@ -4,3 +4,6 @@ [Arch Rebar BentShape/ro](Arch_Rebar_BentShape/ro.md) , [Arch Rebar Helical/ro](Arch_Rebar_Helical/ro.md) , [Arch Rebar LShape/ro](Arch_Rebar_LShape/ro.md) , [Arch Rebar Stirrup/ro](Arch_Rebar_Stirrup/ro.md) , [Arch Rebar Straight/ro](Arch_Rebar_Straight/ro.md) , [Arch Rebar UShape/ro](Arch_Rebar_UShape/ro.md) , [Arch Rebar/ro](Arch_Rebar/ro.md) , [Custom Spacing/ro](Custom_Spacing/ro.md) [Category:Arch/ro](Category:Arch/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:Reinforcement/ro diff --git a/wiki/translations/ro/Category:Repository.md b/wiki/translations/ro/Category:Repository.md index 55047699dd..4d6eacb768 100644 --- a/wiki/translations/ro/Category:Repository.md +++ b/wiki/translations/ro/Category:Repository.md @@ -4,3 +4,6 @@ This category gathers pages that act as a repository of resources for FreeCAD, s ### Contents: [Category:Categories/ro](Category:Categories/ro.md) + +--- +[documentation index](../README.md) > Category:Repository/ro diff --git a/wiki/translations/ro/Category:Roadmap.md b/wiki/translations/ro/Category:Roadmap.md index 6225fdf228..258c3a2730 100644 --- a/wiki/translations/ro/Category:Roadmap.md +++ b/wiki/translations/ro/Category:Roadmap.md @@ -6,3 +6,6 @@ This category gathers all articles documenting what is planned in the Roadmap of [Assembly project/ro](Assembly_project/ro.md) , [CAM project/ro](CAM_project/ro.md) , [Development roadmap/ro](Development_roadmap/ro.md) , [FEM project/ro](FEM_project/ro.md) , [Land Survey Workbench Blueprint/ro](Land_Survey_Workbench_Blueprint/ro.md) , [Material data model/ro](Material_data_model/ro.md) , [Naming project/ro](Naming_project/ro.md) , [PartDesign project/ro](PartDesign_project/ro.md) , [Quality project/ro](Quality_project/ro.md) , [Raytracing project/ro](Raytracing_project/ro.md) , [Resource framework project/ro](Resource_framework_project/ro.md) , [Robot project/ro](Robot_project/ro.md) , [STEP project/ro](STEP_project/ro.md) , [Units project/ro](Units_project/ro.md) , [UTF Project/ro](UTF_Project/ro.md) [Category:Categories/ro](Category:Categories/ro.md) + +--- +[documentation index](../README.md) > Category:Roadmap/ro diff --git a/wiki/translations/ro/Category:Robot.md b/wiki/translations/ro/Category:Robot.md index a5996feb4f..6b169af561 100644 --- a/wiki/translations/ro/Category:Robot.md +++ b/wiki/translations/ro/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/ro](Robot_Workbench/ro [Robot 6-Axis/ro](Robot_6-Axis/ro.md) , [Robot CreateRobot/ro](Robot_CreateRobot/ro.md) , [Robot CreateTrajectory/ro](Robot_CreateTrajectory/ro.md) , [Robot Edge2Trac/ro](Robot_Edge2Trac/ro.md) , [Robot Export/ro](Robot_Export/ro.md) , [Robot InsertWaypoint/ro](Robot_InsertWaypoint/ro.md) , [Robot InsertWaypointPre/ro](Robot_InsertWaypointPre/ro.md) , [Robot RestoreHomePos/ro](Robot_RestoreHomePos/ro.md) , [Robot SetDefaultOrientation/ro](Robot_SetDefaultOrientation/ro.md) , [Robot SetDefaultValues/ro](Robot_SetDefaultValues/ro.md) , [Robot SetHomePos/ro](Robot_SetHomePos/ro.md) , [Robot Simulate/ro](Robot_Simulate/ro.md) , [Template:Robot Tools navi/ro](Template:Robot_Tools_navi/ro.md) , [Robot TrajectoryCompound/ro](Robot_TrajectoryCompound/ro.md) , [Robot TrajectoryDressUp/ro](Robot_TrajectoryDressUp/ro.md) , [Robot tutorial/ro](Robot_tutorial/ro.md) , [Robot Workbench/ro](Robot_Workbench/ro.md) , [VRML Preparation for Robot Simulation/ro](VRML_Preparation_for_Robot_Simulation/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:Robot/ro diff --git a/wiki/translations/ro/Category:Ship.md b/wiki/translations/ro/Category:Ship.md index fbba7aa8a3..ac42881298 100644 --- a/wiki/translations/ro/Category:Ship.md +++ b/wiki/translations/ro/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/ro](Ship_Workbench/ro.m [FreeCAD-Ship s60 tutorial (II)/ro](FreeCAD-Ship_s60_tutorial_(II)/ro.md) , [FreeCAD-Ship s60 tutorial/ro](FreeCAD-Ship_s60_tutorial/ro.md) , [Ship Area/ro](Ship_Area/ro.md) , [Ship Geometries Examples/ro](Ship_Geometries_Examples/ro.md) , [Ship Hydrostatics/ro](Ship_Hydrostatics/ro.md) , [Ship New/ro](Ship_New/ro.md) , [Ship Outline/ro](Ship_Outline/ro.md) , [Template:Ship Tools navi/ro](Template:Ship_Tools_navi/ro.md) , [Ship Workbench/ro](Ship_Workbench/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:Ship/ro diff --git a/wiki/translations/ro/Category:Sketcher.md b/wiki/translations/ro/Category:Sketcher.md index ae7df8af78..70d4f1c8dd 100644 --- a/wiki/translations/ro/Category:Sketcher.md +++ b/wiki/translations/ro/Category:Sketcher.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to Sketcher ### Contents: [Arch panel tutorial/ro](Arch_panel_tutorial/ro.md) , [Basic Part Design Tutorial/ro](Basic_Part_Design_Tutorial/ro.md) , [Basic Sketcher Tutorial/ro](Basic_Sketcher_Tutorial/ro.md) , [Creating a simple part with PartDesign/ro](Creating_a_simple_part_with_PartDesign/ro.md) , [Draft ShapeString tutorial/ro](Draft_ShapeString_tutorial/ro.md) , [Sketcher CarbonCopy/ro](Sketcher_CarbonCopy/ro.md) , [Sketcher Clone/ro](Sketcher_Clone/ro.md) , [Sketcher CloseShape/ro](Sketcher_CloseShape/ro.md) , [Sketcher CompCreateArc/ro](Sketcher_CompCreateArc/ro.md) , [Sketcher CompCreateConic/ro](Sketcher_CompCreateConic/ro.md) , [Sketcher ConnectLines/ro](Sketcher_ConnectLines/ro.md) , [Sketcher ConstrainAngle/ro](Sketcher_ConstrainAngle/ro.md) , [Sketcher ConstrainBlock/ro](Sketcher_ConstrainBlock/ro.md) , [Sketcher ConstrainCoincident/ro](Sketcher_ConstrainCoincident/ro.md) , [Sketcher ConstrainDistance/ro](Sketcher_ConstrainDistance/ro.md) , [Sketcher ConstrainDistanceX/ro](Sketcher_ConstrainDistanceX/ro.md) , [Sketcher ConstrainDistanceY/ro](Sketcher_ConstrainDistanceY/ro.md) , [Sketcher ConstrainEqual/ro](Sketcher_ConstrainEqual/ro.md) , [Sketcher ConstrainHorizontal/ro](Sketcher_ConstrainHorizontal/ro.md) , [Sketcher ConstrainInternalAlignment/ro](Sketcher_ConstrainInternalAlignment/ro.md) , [Sketcher ConstrainLock/ro](Sketcher_ConstrainLock/ro.md) , [Sketcher ConstrainParallel/ro](Sketcher_ConstrainParallel/ro.md) , [Sketcher ConstrainPointOnObject/ro](Sketcher_ConstrainPointOnObject/ro.md) , [Sketcher ConstrainRadius/ro](Sketcher_ConstrainRadius/ro.md) , [Sketcher ConstrainSymmetric/ro](Sketcher_ConstrainSymmetric/ro.md) , [Sketcher ConstrainTangent/ro](Sketcher_ConstrainTangent/ro.md) , [Sketcher ConstrainVertical/ro](Sketcher_ConstrainVertical/ro.md) , [Sketcher Copy/ro](Sketcher_Copy/ro.md) , [Sketcher Create3PointArc/ro](Sketcher_Create3PointArc/ro.md) , [Sketcher Create3PointCircle/ro](Sketcher_Create3PointCircle/ro.md) , [Sketcher CreateArc/ro](Sketcher_CreateArc/ro.md) , [Sketcher CreateArcOfEllipse/ro](Sketcher_CreateArcOfEllipse/ro.md) , [Sketcher CreateArcOfHyperbola/ro](Sketcher_CreateArcOfHyperbola/ro.md) , [Sketcher CreateArcOfParabola/ro](Sketcher_CreateArcOfParabola/ro.md) , [Sketcher CreateCircle/ro](Sketcher_CreateCircle/ro.md) , [Sketcher CreateEllipseBy3Points/ro](Sketcher_CreateEllipseBy3Points/ro.md) , [Sketcher CreateEllipseByCenter/ro](Sketcher_CreateEllipseByCenter/ro.md) , [Sketcher CreateFillet/ro](Sketcher_CreateFillet/ro.md) , [Sketcher CreateHeptagon/ro](Sketcher_CreateHeptagon/ro.md) , [Sketcher CreateHexagon/ro](Sketcher_CreateHexagon/ro.md) , [Sketcher CreateOctagon/ro](Sketcher_CreateOctagon/ro.md) , [Sketcher CreatePentagon/ro](Sketcher_CreatePentagon/ro.md) , [Sketcher CreatePoint/ro](Sketcher_CreatePoint/ro.md) , [Sketcher CreatePolyline/ro](Sketcher_CreatePolyline/ro.md) , [Sketcher CreateRectangle/ro](Sketcher_CreateRectangle/ro.md) , [Sketcher CreateSlot/ro](Sketcher_CreateSlot/ro.md) , [Sketcher CreateSquare/ro](Sketcher_CreateSquare/ro.md) , [Sketcher CreateTriangle/ro](Sketcher_CreateTriangle/ro.md) , [Sketcher EditSketch/ro](Sketcher_EditSketch/ro.md) , [Sketcher Extend/ro](Sketcher_Extend/ro.md) , [Sketcher External/ro](Sketcher_External/ro.md) , [Sketcher LeaveSketch/ro](Sketcher_LeaveSketch/ro.md) , [Sketcher MapSketch/ro](Sketcher_MapSketch/ro.md) , [Sketcher MergeSketches/ro](Sketcher_MergeSketches/ro.md) , [Sketcher Micro Tutorial - Constraint Practices/ro](Sketcher_Micro_Tutorial_-_Constraint_Practices/ro.md) , [Sketcher MirrorSketch/ro](Sketcher_MirrorSketch/ro.md) , [Sketcher Move/ro](Sketcher_Move/ro.md) , [Sketcher NewSketch/ro](Sketcher_NewSketch/ro.md) , [Sketcher RectangularArray/ro](Sketcher_RectangularArray/ro.md) , [Sketcher ReorientSketch/ro](Sketcher_ReorientSketch/ro.md) , [Sketcher RestoreInternalAlignmentGeometry/ro](Sketcher_RestoreInternalAlignmentGeometry/ro.md) , [Sketcher SelectConflictingConstraints/ro](Sketcher_SelectConflictingConstraints/ro.md) , [Sketcher SelectConstraints/ro](Sketcher_SelectConstraints/ro.md) , [Sketcher SelectElementsAssociatedWithConstraints/ro](Sketcher_SelectElementsAssociatedWithConstraints/ro.md) , [Sketcher SelectElementsWithDoFs/ro](Sketcher_SelectElementsWithDoFs/ro.md) , [Sketcher SelectHorizontalAxis/ro](Sketcher_SelectHorizontalAxis/ro.md) , [Sketcher SelectOrigin/ro](Sketcher_SelectOrigin/ro.md) , [Sketcher SelectRedundantConstraints/ro](Sketcher_SelectRedundantConstraints/ro.md) , [Sketcher SelectVerticalAxis/ro](Sketcher_SelectVerticalAxis/ro.md) , [Sketcher Symmetry/ro](Sketcher_Symmetry/ro.md) , [Sketcher ToggleConstruction/ro](Sketcher_ToggleConstruction/ro.md) , [Sketcher ToggleDrivingConstraint/ro](Sketcher_ToggleDrivingConstraint/ro.md) , [Template:Sketcher Tools navi/ro](Template:Sketcher_Tools_navi/ro.md) , [Sketcher Trimming/ro](Sketcher_Trimming/ro.md) , [Sketcher ValidateSketch/ro](Sketcher_ValidateSketch/ro.md) , [Sketcher ViewSection/ro](Sketcher_ViewSection/ro.md) , [Sketcher ViewSketch/ro](Sketcher_ViewSketch/ro.md) , [Sketcher Workbench/ro](Sketcher_Workbench/ro.md) , [Thread for Screw Tutorial/ro](Thread_for_Screw_Tutorial/ro.md) , [Toothbrush Head Stand/ro](Toothbrush_Head_Stand/ro.md) + +--- +[documentation index](../README.md) > Category:Sketcher/ro diff --git a/wiki/translations/ro/Category:Std_Base.md b/wiki/translations/ro/Category:Std_Base.md index 7bb5e29fe7..05e9069d9c 100644 --- a/wiki/translations/ro/Category:Std_Base.md +++ b/wiki/translations/ro/Category:Std_Base.md @@ -6,3 +6,6 @@ This category list pages related to the [Std Base](Std_Base/ro.md), which collec [Template:Std Base/ro](Template:Std_Base/ro.md) [Category:User\_Documentation/ro](Category:User_Documentation/ro.md) + +--- +[documentation index](../README.md) > Category:Std Base/ro diff --git a/wiki/translations/ro/Category:Surface.md b/wiki/translations/ro/Category:Surface.md index 2f47d2d1e3..e110490a38 100644 --- a/wiki/translations/ro/Category:Surface.md +++ b/wiki/translations/ro/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/ro](Surface_Workbenc [Surface CurveOnMesh/ro](Surface_CurveOnMesh/ro.md) , [Surface Filling/ro](Surface_Filling/ro.md) , [Surface GeomFillSurface/ro](Surface_GeomFillSurface/ro.md) , [Surface Workbench/ro](Surface_Workbench/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:Surface/ro diff --git a/wiki/translations/ro/Category:TechDraw.md b/wiki/translations/ro/Category:TechDraw.md index 116eb858f9..88f7344f10 100644 --- a/wiki/translations/ro/Category:TechDraw.md +++ b/wiki/translations/ro/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/ro](TechDraw_Workbe [Basic TechDraw Tutorial/ro](Basic_TechDraw_Tutorial/ro.md) , [TechDraw AngleDimension/ro](TechDraw_AngleDimension/ro.md) , [TechDraw API/ro](TechDraw_API/ro.md) , [TechDraw DiameterDimension/ro](TechDraw_DiameterDimension/ro.md) , [TechDraw Hatch/ro](TechDraw_Hatch/ro.md) , [TechDraw HorizontalDimension/ro](TechDraw_HorizontalDimension/ro.md) , [TechDraw Image/ro](TechDraw_Image/ro.md) , [TechDraw LengthDimension/ro](TechDraw_LengthDimension/ro.md) , [TechDraw LinkDimension/ro](TechDraw_LinkDimension/ro.md) , [TechDraw RadiusDimension/ro](TechDraw_RadiusDimension/ro.md) , [TechDraw Symbol/ro](TechDraw_Symbol/ro.md) , [TechDraw VerticalDimension/ro](TechDraw_VerticalDimension/ro.md) , [TechDraw View/ro](TechDraw_View/ro.md) , [TechDraw Workbench/ro](TechDraw_Workbench/ro.md) , [TechDrawGui API/ro](TechDrawGui_API/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) + +--- +[documentation index](../README.md) > Category:TechDraw/ro diff --git a/wiki/translations/ro/Category:Template.md b/wiki/translations/ro/Category:Template.md index a74ed7c41a..b3ca91df01 100644 --- a/wiki/translations/ro/Category:Template.md +++ b/wiki/translations/ro/Category:Template.md @@ -6,3 +6,6 @@ This category contains all the Templates [Template:Blender Navigation/ro](Template:Blender_Navigation/ro.md) , [Template:CAD Navigation/ro](Template:CAD_Navigation/ro.md) , [Template:Inventor Navigation/ro](Template:Inventor_Navigation/ro.md) , [Template:Languages/ro](Template:Languages/ro.md) , [Template:Version/ro](Template:Version/ro.md) , , [Category:Categories/ro](Category:Categories/ro.md) [Category:Template:Doc/ro](Category:Template:Doc/ro.md) [Category:Template:Navigation/ro](Category:Template:Navigation/ro.md) + +--- +[documentation index](../README.md) > Category:Template/ro diff --git a/wiki/translations/ro/Category:Template:Doc.md b/wiki/translations/ro/Category:Template:Doc.md index b4f38711a0..6d0c63d201 100644 --- a/wiki/translations/ro/Category:Template:Doc.md +++ b/wiki/translations/ro/Category:Template:Doc.md @@ -6,3 +6,6 @@ This category lists templates that produce text boxes used for documenting comma [Template:Macro/ro](Template:Macro/ro.md) [Category:Template/ro](Category:Template/ro.md) + +--- +[documentation index](../README.md) > Category:Template:Doc/ro diff --git a/wiki/translations/ro/Category:Template:Navigation.md b/wiki/translations/ro/Category:Template:Navigation.md index ecefe2d9e8..ba2003c41f 100644 --- a/wiki/translations/ro/Category:Template:Navigation.md +++ b/wiki/translations/ro/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/ro](Template:Arch_Tools_navi/ro.md) , [Template:Drawing Tools navi/ro](Template:Drawing_Tools_navi/ro.md) , [Template:FEM Tools navi/ro](Template:FEM_Tools_navi/ro.md) , [Template:Mesh Tools navi/ro](Template:Mesh_Tools_navi/ro.md) , [Template:OpenSCAD Tools navi/ro](Template:OpenSCAD_Tools_navi/ro.md) , [Template:Part Tools navi/ro](Template:Part_Tools_navi/ro.md) , [Template:PartDesign Tools navi/ro](Template:PartDesign_Tools_navi/ro.md) , [Template:Path Tools navi/ro](Template:Path_Tools_navi/ro.md) , [Template:Plot Tools navi/ro](Template:Plot_Tools_navi/ro.md) , [Template:Powerdocnavi/ro](Template:Powerdocnavi/ro.md) , [Template:Raytracing Tools navi/ro](Template:Raytracing_Tools_navi/ro.md) , [Template:Robot Tools navi/ro](Template:Robot_Tools_navi/ro.md) , [Template:Ship Tools navi/ro](Template:Ship_Tools_navi/ro.md) , [Template:Sketcher Tools navi/ro](Template:Sketcher_Tools_navi/ro.md) , [Template:Std Base/ro](Template:Std_Base/ro.md) [Category:Template/ro](Category:Template/ro.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/ro diff --git a/wiki/translations/ro/Category:Test_Framework.md b/wiki/translations/ro/Category:Test_Framework.md index 9368f82b7e..a45b996cde 100644 --- a/wiki/translations/ro/Category:Test_Framework.md +++ b/wiki/translations/ro/Category:Test_Framework.md @@ -6,3 +6,6 @@ This category lists pages related to the [Test Framework Workbench/ro](Test_Fram [Testing/ro](Testing/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) [Category:User\_Documentation/ro](Category:User_Documentation/ro.md) [Category:Testing/ro](Category:Testing/ro.md) + +--- +[documentation index](../README.md) > Category:Test Framework/ro diff --git a/wiki/translations/ro/Category:Testing.md b/wiki/translations/ro/Category:Testing.md index ba3580bb2d..aff4231637 100644 --- a/wiki/translations/ro/Category:Testing.md +++ b/wiki/translations/ro/Category:Testing.md @@ -6,3 +6,6 @@ Pages related to testing in regards to unit testing, continuous integration, qua [Continuous Integration/ro](Continuous_Integration/ro.md) , [Testing/ro](Testing/ro.md) , [Category:Test Framework/ro](Category:Test_Framework/ro.md) + +--- +[documentation index](../README.md) > Category:Testing/ro diff --git a/wiki/translations/ro/Category:Tutorials.md b/wiki/translations/ro/Category:Tutorials.md index 9812f433b0..9e1edacb6e 100644 --- a/wiki/translations/ro/Category:Tutorials.md +++ b/wiki/translations/ro/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials/ro](Offsite_tutorials/ro.md) and [Video tut [Add FEM constraint tutorial/ro](Add_FEM_constraint_tutorial/ro.md) , [Add FEM equation tutorial/ro](Add_FEM_equation_tutorial/ro.md) , [Aeroplane/ro](Aeroplane/ro.md) , [Arch panel tutorial/ro](Arch_panel_tutorial/ro.md) , [Arch tutorial/ro](Arch_tutorial/ro.md) , [Basic modeling tutorial/ro](Basic_modeling_tutorial/ro.md) , [Basic Part Design Tutorial/ro](Basic_Part_Design_Tutorial/ro.md) , [Basic Sketcher Tutorial/ro](Basic_Sketcher_Tutorial/ro.md) , [Basic TechDraw Tutorial/ro](Basic_TechDraw_Tutorial/ro.md) , [Creating a simple part with PartDesign/ro](Creating_a_simple_part_with_PartDesign/ro.md) , [Customize Toolbars/ro](Customize_Toolbars/ro.md) , [Draft ShapeString tutorial/ro](Draft_ShapeString_tutorial/ro.md) , [Draft tutorial/ro](Draft_tutorial/ro.md) , [Drawing Template HowTo/ro](Drawing_Template_HowTo/ro.md) , [Drawing tutorial/ro](Drawing_tutorial/ro.md) , [Dxf Importer Install/ro](Dxf_Importer_Install/ro.md) , [Engine Block Tutorial/ro](Engine_Block_Tutorial/ro.md) , [Export to STL or OBJ/ro](Export_to_STL_or_OBJ/ro.md) , [Extend FEM Module/ro](Extend_FEM_Module/ro.md) , [FEM CalculiX Cantilever 3D/ro](FEM_CalculiX_Cantilever_3D/ro.md) , [FEM Shear of a Composite Block/ro](FEM_Shear_of_a_Composite_Block/ro.md) , [FEM Tutorial Python/ro](FEM_Tutorial_Python/ro.md) , [FEM tutorial/ro](FEM_tutorial/ro.md) , [FreeCAD-Ship s60 tutorial (II)/ro](FreeCAD-Ship_s60_tutorial_(II)/ro.md) , [FreeCAD-Ship s60 tutorial/ro](FreeCAD-Ship_s60_tutorial/ro.md) , [How to install additional workbenches/ro](How_to_install_additional_workbenches/ro.md) , [How to install macros/ro](How_to_install_macros/ro.md) , [Import from STL or OBJ/ro](Import_from_STL_or_OBJ/ro.md) , [Import OpenSCAD code/ro](Import_OpenSCAD_code/ro.md) , [Import text and geometry from Inkscape/ro](Import_text_and_geometry_from_Inkscape/ro.md) , [Import/Export IFC - compiling IfcOpenShell/ro](Import/Export_IFC_-_compiling_IfcOpenShell/ro.md) , [Manual:Creating renderings/ro](Manual:Creating_renderings/ro.md) , [Manual:Generating 2D drawings/ro](Manual:Generating_2D_drawings/ro.md) , [Manual:Import and export to other filetypes/ro](Manual:Import_and_export_to_other_filetypes/ro.md) , [Manual:Installing/ro](Manual:Installing/ro.md) , [Manual:Modeling for product design/ro](Manual:Modeling_for_product_design/ro.md) , [Manual:Parametric objects/ro](Manual:Parametric_objects/ro.md) , [Manual:Preparing models for 3D printing/ro](Manual:Preparing_models_for_3D_printing/ro.md) , [Manual:Traditional 2D drafting/ro](Manual:Traditional_2D_drafting/ro.md) , [Manual:Traditional modeling, the CSG way/ro](Manual:Traditional_modeling,_the_CSG_way/ro.md) , [Manual:Using spreadsheets/ro](Manual:Using_spreadsheets/ro.md) , [Part Loft Technical Details/ro](Part_Loft_Technical_Details/ro.md) , [PartDesign Bearingholder Tutorial I/ro](PartDesign_Bearingholder_Tutorial_I/ro.md) , [PartDesign Bearingholder Tutorial II/ro](PartDesign_Bearingholder_Tutorial_II/ro.md) , [PartDesign tutorial/ro](PartDesign_tutorial/ro.md) , [Path Walkthrough for the Impatient/ro](Path_Walkthrough_for_the_Impatient/ro.md) , [Raytracing tutorial/ro](Raytracing_tutorial/ro.md) , [Robot 6-Axis/ro](Robot_6-Axis/ro.md) , [Robot tutorial/ro](Robot_tutorial/ro.md) , [Scripted Parts: Ball Bearing - Part 1/ro](Scripted_Parts:_Ball_Bearing_-_Part_1/ro.md) , [Sketcher Micro Tutorial - Constraint Practices/ro](Sketcher_Micro_Tutorial_-_Constraint_Practices/ro.md) , [Thread for Screw Tutorial/ro](Thread_for_Screw_Tutorial/ro.md) , [Toothbrush Head Stand/ro](Toothbrush_Head_Stand/ro.md) , [Template:TutorialInfo/ro](Template:TutorialInfo/ro.md) , [Tutorials/ro](Tutorials/ro.md) , [VRML Preparation for Robot Simulation/ro](VRML_Preparation_for_Robot_Simulation/ro.md) , [Whiffle Ball tutorial/ro](Whiffle_Ball_tutorial/ro.md) , [Wikihouse porting tutorial/ro](Wikihouse_porting_tutorial/ro.md) [Category:Categories/ro](Category:Categories/ro.md) + +--- +[documentation index](../README.md) > Category:Tutorials/ro diff --git a/wiki/translations/ro/Category:UnfinishedDocu.md b/wiki/translations/ro/Category:UnfinishedDocu.md index 3cb1bc8900..3b9cb4d7a0 100644 --- a/wiki/translations/ro/Category:UnfinishedDocu.md +++ b/wiki/translations/ro/Category:UnfinishedDocu.md @@ -4,3 +4,6 @@ This category contains all Unfinished Documents ### Contents: [Category:Administration/ro](Category:Administration/ro.md) [Category:Categories/ro](Category:Categories/ro.md) + +--- +[documentation index](../README.md) > Category:UnfinishedDocu/ro diff --git a/wiki/translations/ro/Category:User_Documentation.md b/wiki/translations/ro/Category:User_Documentation.md index 848b35c839..4155be0196 100644 --- a/wiki/translations/ro/Category:User_Documentation.md +++ b/wiki/translations/ro/Category:User_Documentation.md @@ -4,3 +4,6 @@ [Template:GuiCommandAddon/ro](Template:GuiCommandAddon/ro.md) , [3Dconnexion input devices/ro](3Dconnexion_input_devices/ro.md) , [About FreeCAD/ro](About_FreeCAD/ro.md) , [Add FEM constraint tutorial/ro](Add_FEM_constraint_tutorial/ro.md) , [Add FEM equation tutorial/ro](Add_FEM_equation_tutorial/ro.md) , [Aeroplane/ro](Aeroplane/ro.md) , [Arch 3Views/ro](Arch_3Views/ro.md) , [Arch Add/ro](Arch_Add/ro.md) , [Arch API/ro](Arch_API/ro.md) , [Arch Axis/ro](Arch_Axis/ro.md) , [Arch AxisSystem/ro](Arch_AxisSystem/ro.md) , [Arch Building/ro](Arch_Building/ro.md) , [Arch BuildingPart/ro](Arch_BuildingPart/ro.md) , [Arch Check/ro](Arch_Check/ro.md) , [Arch CloneComponent/ro](Arch_CloneComponent/ro.md) , [Arch CloseHoles/ro](Arch_CloseHoles/ro.md) , [Arch Component/ro](Arch_Component/ro.md) , [Arch Frame/ro](Arch_Frame/ro.md) , [Arch IfcExplorer/ro](Arch_IfcExplorer/ro.md) , [Arch IfcSpreadsheet/ro](Arch_IfcSpreadsheet/ro.md) , [Arch MergeWalls/ro](Arch_MergeWalls/ro.md) , [Arch MeshToShape/ro](Arch_MeshToShape/ro.md) , [Arch MultiMaterial/ro](Arch_MultiMaterial/ro.md) , [Arch Nest/ro](Arch_Nest/ro.md) , [Arch Panel Cut/ro](Arch_Panel_Cut/ro.md) , [Arch panel tutorial/ro](Arch_panel_tutorial/ro.md) , [Arch Panel/ro](Arch_Panel/ro.md) , [Arch Pipe/ro](Arch_Pipe/ro.md) , [Arch PipeConnector/ro](Arch_PipeConnector/ro.md) , [Arch Rebar BentShape/ro](Arch_Rebar_BentShape/ro.md) , [Arch Rebar Helical/ro](Arch_Rebar_Helical/ro.md) , [Arch Rebar LShape/ro](Arch_Rebar_LShape/ro.md) , [Arch Rebar Stirrup/ro](Arch_Rebar_Stirrup/ro.md) , [Arch Rebar Straight/ro](Arch_Rebar_Straight/ro.md) , [Arch Rebar UShape/ro](Arch_Rebar_UShape/ro.md) , [Arch Rebar/ro](Arch_Rebar/ro.md) , [Arch Reference/ro](Arch_Reference/ro.md) , [Arch Remove/ro](Arch_Remove/ro.md) , [Arch RemoveShape/ro](Arch_RemoveShape/ro.md) , [Arch Roof/ro](Arch_Roof/ro.md) , [Arch Schedule/ro](Arch_Schedule/ro.md) , [Arch SectionPlane/ro](Arch_SectionPlane/ro.md) , [Arch SelectNonSolidMeshes/ro](Arch_SelectNonSolidMeshes/ro.md) , [Arch SetMaterial/ro](Arch_SetMaterial/ro.md) , [Arch Site/ro](Arch_Site/ro.md) , [Arch Space/ro](Arch_Space/ro.md) , [Arch SplitMesh/ro](Arch_SplitMesh/ro.md) , [Arch Stairs/ro](Arch_Stairs/ro.md) , [Arch Structure/ro](Arch_Structure/ro.md) , [Arch Survey/ro](Arch_Survey/ro.md) , [Arch ToggleIfcBrepFlag/ro](Arch_ToggleIfcBrepFlag/ro.md) , [Arch ToggleSubs/ro](Arch_ToggleSubs/ro.md) , [Arch tutorial/ro](Arch_tutorial/ro.md) , [Arch Wall/ro](Arch_Wall/ro.md) , [Arch Window/ro](Arch_Window/ro.md) , [Arch Workbench/ro](Arch_Workbench/ro.md) , [Base API/ro](Base_API/ro.md) , [Basic modeling tutorial/ro](Basic_modeling_tutorial/ro.md) , [Basic Part Design Tutorial/ro](Basic_Part_Design_Tutorial/ro.md) , [Basic Sketcher Tutorial/ro](Basic_Sketcher_Tutorial/ro.md) , [Basic TechDraw Tutorial/ro](Basic_TechDraw_Tutorial/ro.md) , [BIM Box/ro](BIM_Box/ro.md) , [BIM Copy/ro](BIM_Copy/ro.md) , [BIM Library/ro](BIM_Library/ro.md) , [BIM Project/ro](BIM_Project/ro.md) , [BIM Setup/ro](BIM_Setup/ro.md) , [Branding/ro](Branding/ro.md) , [Compile on Linux/ro](Compile_on_Linux/ro.md) , [Compile on MacOS/ro](Compile_on_MacOS/ro.md) , [Compile on Windows with VS2013/ro](Compile_on_Windows_with_VS2013/ro.md) , [Compile on Windows/ro](Compile_on_Windows/ro.md) , [Compiling (Speeding up)/ro](Compiling_(Speeding_up)/ro.md) , [Compiling/ro](Compiling/ro.md) , [Complete Workbench/ro](Complete_Workbench/ro.md) , [Console API/ro](Console_API/ro.md) , [Continuous Integration/ro](Continuous_Integration/ro.md) , [Contributors/ro](Contributors/ro.md) , [Copying Objects/ro](Copying_Objects/ro.md) , [Creating a simple part with PartDesign/ro](Creating_a_simple_part_with_PartDesign/ro.md) , [Custom Spacing/ro](Custom_Spacing/ro.md) , [Customize Toolbars/ro](Customize_Toolbars/ro.md) , [Developer hub/ro](Developer_hub/ro.md) , [Document structure/ro](Document_structure/ro.md) , [Download/ro](Download/ro.md) , [Draft AddConstruction/ro](Draft_AddConstruction/ro.md) , [Draft AddToGroup/ro](Draft_AddToGroup/ro.md) , [Draft API/ro](Draft_API/ro.md) , [Draft ApplyStyle/ro](Draft_ApplyStyle/ro.md) , [Draft Arc/ro](Draft_Arc/ro.md) , [Draft Array/ro](Draft_Array/ro.md) , [Draft AutoGroup/ro](Draft_AutoGroup/ro.md) , [Draft BezCurve/ro](Draft_BezCurve/ro.md) , [Draft BSpline/ro](Draft_BSpline/ro.md) , [Draft Circle/ro](Draft_Circle/ro.md) , [Draft Clone/ro](Draft_Clone/ro.md) , [Draft Constrain/ro](Draft_Constrain/ro.md) , [Draft Dimension/ro](Draft_Dimension/ro.md) , [Draft Downgrade/ro](Draft_Downgrade/ro.md) , [Draft Draft2Sketch/ro](Draft_Draft2Sketch/ro.md) , [Draft Drawing/ro](Draft_Drawing/ro.md) , [Draft DXF/ro](Draft_DXF/ro.md) , [Draft Edit/ro](Draft_Edit/ro.md) , [Draft Ellipse/ro](Draft_Ellipse/ro.md) , [Draft Facebinder/ro](Draft_Facebinder/ro.md) , [Draft FlipDimension/ro](Draft_FlipDimension/ro.md) , [Draft Heal/ro](Draft_Heal/ro.md) , [Draft Label/ro](Draft_Label/ro.md) , [Draft Line/ro](Draft_Line/ro.md) , [Draft Mirror/ro](Draft_Mirror/ro.md) , [Draft Move/ro](Draft_Move/ro.md) , [Draft Offset/ro](Draft_Offset/ro.md) , [Draft PathArray/ro](Draft_PathArray/ro.md) , [Draft Point/ro](Draft_Point/ro.md) , [Draft PointArray/ro](Draft_PointArray/ro.md) , [Draft Polygon/ro](Draft_Polygon/ro.md) , [Draft Preferences/ro](Draft_Preferences/ro.md) , [Draft Rectangle/ro](Draft_Rectangle/ro.md) , [Draft Rotate/ro](Draft_Rotate/ro.md) , [Draft Scale/ro](Draft_Scale/ro.md) , [Draft SelectGroup/ro](Draft_SelectGroup/ro.md) , [Draft SelectPlane/ro](Draft_SelectPlane/ro.md) , [Draft Shape2DView/ro](Draft_Shape2DView/ro.md) , [Draft ShapeString tutorial/ro](Draft_ShapeString_tutorial/ro.md) , [Draft ShapeString/ro](Draft_ShapeString/ro.md) , [Draft ShowSnapBar/ro](Draft_ShowSnapBar/ro.md) , [Draft Slope/ro](Draft_Slope/ro.md) , [Draft Snap Angle/ro](Draft_Snap_Angle/ro.md) , [Draft Snap Center/ro](Draft_Snap_Center/ro.md) , [Draft Snap Endpoint/ro](Draft_Snap_Endpoint/ro.md) , [Draft Snap Extension/ro](Draft_Snap_Extension/ro.md) , [Draft Snap Grid/ro](Draft_Snap_Grid/ro.md) , [Draft Snap Intersection/ro](Draft_Snap_Intersection/ro.md) , [Draft Snap Lock/ro](Draft_Snap_Lock/ro.md) , [Draft Snap Midpoint/ro](Draft_Snap_Midpoint/ro.md) , [Draft Snap Near/ro](Draft_Snap_Near/ro.md) , [Draft Snap Parallel/ro](Draft_Snap_Parallel/ro.md) , [Draft Snap Special/ro](Draft_Snap_Special/ro.md) , [Draft Snap WorkingPlane/ro](Draft_Snap_WorkingPlane/ro.md) , [Draft Snap/ro](Draft_Snap/ro.md) , [Draft Stretch/ro](Draft_Stretch/ro.md) , [Draft Text/ro](Draft_Text/ro.md) , [Draft ToggleConstructionMode/ro](Draft_ToggleConstructionMode/ro.md) , [Draft ToggleContinueMode/ro](Draft_ToggleContinueMode/ro.md) , [Draft ToggleDisplayMode/ro](Draft_ToggleDisplayMode/ro.md) , [Draft ToggleGrid/ro](Draft_ToggleGrid/ro.md) , [Draft Trimex/ro](Draft_Trimex/ro.md) , [Draft tutorial/ro](Draft_tutorial/ro.md) , [Draft Upgrade/ro](Draft_Upgrade/ro.md) , [Draft Wire/ro](Draft_Wire/ro.md) , [Draft WireToBSpline/ro](Draft_WireToBSpline/ro.md) , [Draft Workbench/ro](Draft_Workbench/ro.md) , [Draft WorkingPlaneProxy/ro](Draft_WorkingPlaneProxy/ro.md) , [Drawing Annotation/ro](Drawing_Annotation/ro.md) , [Drawing Clip/ro](Drawing_Clip/ro.md) , [Drawing Landscape A3/ro](Drawing_Landscape_A3/ro.md) , [Drawing Open SVG/ro](Drawing_Open_SVG/ro.md) , [Drawing Openbrowser/ro](Drawing_Openbrowser/ro.md) , [Drawing Orthoviews/ro](Drawing_Orthoviews/ro.md) , [Drawing ProjectShape/ro](Drawing_ProjectShape/ro.md) , [Drawing Save/ro](Drawing_Save/ro.md) , [Drawing SpreadsheetView/ro](Drawing_SpreadsheetView/ro.md) , [Drawing Symbol/ro](Drawing_Symbol/ro.md) , [Drawing Template HowTo/ro](Drawing_Template_HowTo/ro.md) , [Drawing tutorial/ro](Drawing_tutorial/ro.md) , [Drawing View/ro](Drawing_View/ro.md) , [Drawing Workbench/ro](Drawing_Workbench/ro.md) , [Dxf Importer Install/ro](Dxf_Importer_Install/ro.md) , [Engine Block Tutorial/ro](Engine_Block_Tutorial/ro.md) , [Export to STL or OBJ/ro](Export_to_STL_or_OBJ/ro.md) , [Extend FEM Module/ro](Extend_FEM_Module/ro.md) , [External workbenches/ro](External_workbenches/ro.md) , [Extra python modules/ro](Extra_python_modules/ro.md) , [Feature editing/ro](Feature_editing/ro.md) , [Feature list/ro](Feature_list/ro.md) , [FEM Analysis/ro](FEM_Analysis/ro.md) , [FEM CalculiX Cantilever 3D/ro](FEM_CalculiX_Cantilever_3D/ro.md) , [FEM ConstraintBearing/ro](FEM_ConstraintBearing/ro.md) , [FEM ConstraintContact/ro](FEM_ConstraintContact/ro.md) , [FEM ConstraintDisplacement/ro](FEM_ConstraintDisplacement/ro.md) , [FEM ConstraintFixed/ro](FEM_ConstraintFixed/ro.md) , [FEM ConstraintForce/ro](FEM_ConstraintForce/ro.md) , [FEM ConstraintHeatflux/ro](FEM_ConstraintHeatflux/ro.md) , [FEM ConstraintInitialTemperature/ro](FEM_ConstraintInitialTemperature/ro.md) , [FEM ConstraintPlaneRotation/ro](FEM_ConstraintPlaneRotation/ro.md) , [FEM ConstraintPressure/ro](FEM_ConstraintPressure/ro.md) , [FEM ConstraintPulley/ro](FEM_ConstraintPulley/ro.md) , [FEM ConstraintSelfWeight/ro](FEM_ConstraintSelfWeight/ro.md) , [FEM ConstraintTemperature/ro](FEM_ConstraintTemperature/ro.md) , [FEM ConstraintTransform/ro](FEM_ConstraintTransform/ro.md) , [FEM CreateNodesSet/ro](FEM_CreateNodesSet/ro.md) , [FEM ElementFluid1D/ro](FEM_ElementFluid1D/ro.md) , [FEM ElementGeometry1D/ro](FEM_ElementGeometry1D/ro.md) , [FEM ElementGeometry2D/ro](FEM_ElementGeometry2D/ro.md) , [FEM ElementRotation1D/ro](FEM_ElementRotation1D/ro.md) , [FEM EquationElasticity/ro](FEM_EquationElasticity/ro.md) , [FEM EquationFlow/ro](FEM_EquationFlow/ro.md) , [FEM EquationFlux/ro](FEM_EquationFlux/ro.md) , [FEM EquationHeat/ro](FEM_EquationHeat/ro.md) , [FEM FemMesh2Mesh/ro](FEM_FemMesh2Mesh/ro.md) , [FEM Install/ro](FEM_Install/ro.md) , [FEM MaterialFluid/ro](FEM_MaterialFluid/ro.md) , [FEM MaterialMechanicalNonlinear/ro](FEM_MaterialMechanicalNonlinear/ro.md) , [FEM MaterialSolid/ro](FEM_MaterialSolid/ro.md) , [FEM Mesh/ro](FEM_Mesh/ro.md) , [FEM PostPipelineFromResult/ro](FEM_PostPipelineFromResult/ro.md) , [FEM project/ro](FEM_project/ro.md) , [FEM Shear of a Composite Block/ro](FEM_Shear_of_a_Composite_Block/ro.md) , [FEM Solver/ro](FEM_Solver/ro.md) , [FEM SolverCalculixCxxtools/ro](FEM_SolverCalculixCxxtools/ro.md) , [FEM SolverZ88/ro](FEM_SolverZ88/ro.md) , [FEM Tutorial Python/ro](FEM_Tutorial_Python/ro.md) , [FEM tutorial/ro](FEM_tutorial/ro.md) , [FEM Workbench/ro](FEM_Workbench/ro.md) , [File Format FCStd/ro](File_Format_FCStd/ro.md) , [FreeCAD API/ro](FreeCAD_API/ro.md) , [FreeCAD Build Tool/ro](FreeCAD_Build_Tool/ro.md) , [FreeCAD-Ship s60 tutorial (II)/ro](FreeCAD-Ship_s60_tutorial_(II)/ro.md) , [FreeCAD-Ship s60 tutorial/ro](FreeCAD-Ship_s60_tutorial/ro.md) , [FreeCADGui API/ro](FreeCADGui_API/ro.md) , [Getting started/ro](Getting_started/ro.md) , [Glossary/ro](Glossary/ro.md) , [GuiCommand model/ro](GuiCommand_model/ro.md) , [Template:GuiCommand/ro](Template:GuiCommand/ro.md) , [Help FreeCAD/ro](Help_FreeCAD/ro.md) , [How to install additional workbenches/ro](How_to_install_additional_workbenches/ro.md) , [How to install macros/ro](How_to_install_macros/ro.md) , [Image Workbench/ro](Image_Workbench/ro.md) , [Import Export Preferences/ro](Import_Export_Preferences/ro.md) , [Import Export/ro](Import_Export/ro.md) , [Import from STL or OBJ/ro](Import_from_STL_or_OBJ/ro.md) , [Import OpenSCAD code/ro](Import_OpenSCAD_code/ro.md) , [Import text and geometry from Inkscape/ro](Import_text_and_geometry_from_Inkscape/ro.md) , [Import/Export IFC - compiling IfcOpenShell/ro](Import/Export_IFC_-_compiling_IfcOpenShell/ro.md) , [Inspection Workbench/ro](Inspection_Workbench/ro.md) , [Installing additional components/ro](Installing_additional_components/ro.md) , [Installing on Linux/ro](Installing_on_Linux/ro.md) , [Installing on Mac/ro](Installing_on_Mac/ro.md) , [Installing on Windows/ro](Installing_on_Windows/ro.md) , [Interface Customization/ro](Interface_Customization/ro.md) , [Licence/ro](Licence/ro.md) , [Localisation/ro](Localisation/ro.md) , [Macro HighlightDifference/ro](Macro_HighlightDifference/ro.md) , [Macro Unroll Ruled Surface/ro](Macro_Unroll_Ruled_Surface/ro.md) , [Template:Macro/ro](Template:Macro/ro.md) , [Main Page/ro](Main_Page/ro.md) , [Manipulator/ro](Manipulator/ro.md) , [Manual:Creating renderings/ro](Manual:Creating_renderings/ro.md) , [Material editor/ro](Material_editor/ro.md) , [Matrix API/ro](Matrix_API/ro.md) , [Mesh API/ro](Mesh_API/ro.md) , [Mesh BoundingBox/ro](Mesh_BoundingBox/ro.md) , [Mesh BuildRegularSolid/ro](Mesh_BuildRegularSolid/ro.md) , [Mesh Difference/ro](Mesh_Difference/ro.md) , [Mesh EvaluateFacet/ro](Mesh_EvaluateFacet/ro.md) , [Mesh Export/ro](Mesh_Export/ro.md) , [Mesh FillInteractiveHole/ro](Mesh_FillInteractiveHole/ro.md) , [Mesh FlipNormals/ro](Mesh_FlipNormals/ro.md) , [Mesh FromPartShape/ro](Mesh_FromPartShape/ro.md) , [Mesh HarmonizeNormals/ro](Mesh_HarmonizeNormals/ro.md) , [Mesh Import/ro](Mesh_Import/ro.md) , [Mesh Intersection/ro](Mesh_Intersection/ro.md) , [Mesh Merge/ro](Mesh_Merge/ro.md) , [Mesh RemoveComponents/ro](Mesh_RemoveComponents/ro.md) , [Mesh Union/ro](Mesh_Union/ro.md) , [Mesh Workbench/ro](Mesh_Workbench/ro.md) , [Mouse navigation/ro](Mouse_navigation/ro.md) , [Naming project/ro](Naming_project/ro.md) , [Navigation Cube/ro](Navigation_Cube/ro.md) , [Object API/ro](Object_API/ro.md) , [Offsite tutorials/ro](Offsite_tutorials/ro.md) , [Online Help Startpage/ro](Online_Help_Startpage/ro.md) , [Online Help Toc/ro](Online_Help_Toc/ro.md) , [OpenSCAD AddOpenSCADElement/ro](OpenSCAD_AddOpenSCADElement/ro.md) , [OpenSCAD ColorCodeShape/ro](OpenSCAD_ColorCodeShape/ro.md) , [OpenSCAD Edgestofaces/ro](OpenSCAD_Edgestofaces/ro.md) , [OpenSCAD ExplodeGroup/ro](OpenSCAD_ExplodeGroup/ro.md) , [OpenSCAD Hull/ro](OpenSCAD_Hull/ro.md) , [OpenSCAD IncreaseToleranceFeature/ro](OpenSCAD_IncreaseToleranceFeature/ro.md) , [OpenSCAD MeshBoolean/ro](OpenSCAD_MeshBoolean/ro.md) , [OpenSCAD Minkowski/ro](OpenSCAD_Minkowski/ro.md) , [OpenSCAD RefineShapeFeature/ro](OpenSCAD_RefineShapeFeature/ro.md) , [OpenSCAD RemoveSubtree/ro](OpenSCAD_RemoveSubtree/ro.md) , [OpenSCAD ReplaceObject/ro](OpenSCAD_ReplaceObject/ro.md) , [OpenSCAD Workbench/ro](OpenSCAD_Workbench/ro.md) , [Part API/ro](Part_API/ro.md) , [Part Boolean/ro](Part_Boolean/ro.md) , [Part BooleanFragments/ro](Part_BooleanFragments/ro.md) , [Part Box/ro](Part_Box/ro.md) , [Part Builder/ro](Part_Builder/ro.md) , [Part Chamfer/ro](Part_Chamfer/ro.md) , [Part CheckGeometry/ro](Part_CheckGeometry/ro.md) , [Part Circle/ro](Part_Circle/ro.md) , [Part Common/ro](Part_Common/ro.md) , [Part CompJoinFeatures/ro](Part_CompJoinFeatures/ro.md) , [Part Compound/ro](Part_Compound/ro.md) , [Part CompoundFilter/ro](Part_CompoundFilter/ro.md) , [Part Cone/ro](Part_Cone/ro.md) , [Part CrossSections/ro](Part_CrossSections/ro.md) , [Part Cut/ro](Part_Cut/ro.md) , [Part Cylinder/ro](Part_Cylinder/ro.md) , [Part EditAttachment/ro](Part_EditAttachment/ro.md) , [Part Ellipse/ro](Part_Ellipse/ro.md) , [Part Ellipsoid/ro](Part_Ellipsoid/ro.md) , [Part Extrude/ro](Part_Extrude/ro.md) , [Part Fillet/ro](Part_Fillet/ro.md) , [Part Fuse/ro](Part_Fuse/ro.md) , [Part Helix/ro](Part_Helix/ro.md) , [Part Import/ro](Part_Import/ro.md) , [Part JoinConnect/ro](Part_JoinConnect/ro.md) , [Part JoinCutout/ro](Part_JoinCutout/ro.md) , [Part JoinEmbed/ro](Part_JoinEmbed/ro.md) , [Part Line/ro](Part_Line/ro.md) , [Part Loft Technical Details/ro](Part_Loft_Technical_Details/ro.md) , [Part Loft/ro](Part_Loft/ro.md) , [Part MakeSolid/ro](Part_MakeSolid/ro.md) , [Part Measure Angular/ro](Part_Measure_Angular/ro.md) , [Part Measure Clear All/ro](Part_Measure_Clear_All/ro.md) , [Part Measure Linear/ro](Part_Measure_Linear/ro.md) , [Part Measure Menu/ro](Part_Measure_Menu/ro.md) , [Part Measure Toggle 3d/ro](Part_Measure_Toggle_3d/ro.md) , [Part Measure Toggle All/ro](Part_Measure_Toggle_All/ro.md) , [Part Measure Toggle Delta/ro](Part_Measure_Toggle_Delta/ro.md) , [Part Mirror/ro](Part_Mirror/ro.md) , [Part Module/ro](Part_Module/ro.md) , [Part Offset/ro](Part_Offset/ro.md) , [Part Offset2D/ro](Part_Offset2D/ro.md) , [Part Plane/ro](Part_Plane/ro.md) , [Part Primitives/ro](Part_Primitives/ro.md) , [Part RefineShape/ro](Part_RefineShape/ro.md) , [Part RegularPolygon/ro](Part_RegularPolygon/ro.md) , [Part ReverseShapes/ro](Part_ReverseShapes/ro.md) , [Part Revolve/ro](Part_Revolve/ro.md) , [Part RuledSurface/ro](Part_RuledSurface/ro.md) , [Part Section/ro](Part_Section/ro.md) , [Part ShapeFromMesh/ro](Part_ShapeFromMesh/ro.md) , [Part SimpleCopy/ro](Part_SimpleCopy/ro.md) , [Part Slice/ro](Part_Slice/ro.md) , [Part Sphere/ro](Part_Sphere/ro.md) , [Part Spiral/ro](Part_Spiral/ro.md) , [Part Sweep/ro](Part_Sweep/ro.md) , [Part Thickness/ro](Part_Thickness/ro.md) , [Part Torus/ro](Part_Torus/ro.md) , [Part Wedge/ro](Part_Wedge/ro.md) , [PartDesign AdditiveBox/ro](PartDesign_AdditiveBox/ro.md) , [PartDesign AdditiveCone/ro](PartDesign_AdditiveCone/ro.md) , [PartDesign AdditiveCylinder/ro](PartDesign_AdditiveCylinder/ro.md) , [PartDesign AdditiveEllipsoid/ro](PartDesign_AdditiveEllipsoid/ro.md) , [PartDesign AdditiveLoft/ro](PartDesign_AdditiveLoft/ro.md) , [PartDesign AdditivePipe/ro](PartDesign_AdditivePipe/ro.md) , [PartDesign AdditivePrism/ro](PartDesign_AdditivePrism/ro.md) , [PartDesign AdditiveSphere/ro](PartDesign_AdditiveSphere/ro.md) , [PartDesign AdditiveTorus/ro](PartDesign_AdditiveTorus/ro.md) , [PartDesign AdditiveWedge/ro](PartDesign_AdditiveWedge/ro.md) , [PartDesign Bearingholder Tutorial I/ro](PartDesign_Bearingholder_Tutorial_I/ro.md) , [PartDesign Bearingholder Tutorial II/ro](PartDesign_Bearingholder_Tutorial_II/ro.md) , [PartDesign Body/ro](PartDesign_Body/ro.md) , [PartDesign Boolean/ro](PartDesign_Boolean/ro.md) , [PartDesign Chamfer/ro](PartDesign_Chamfer/ro.md) , [PartDesign Clone/ro](PartDesign_Clone/ro.md) , [PartDesign CompPrimitiveAdditive/ro](PartDesign_CompPrimitiveAdditive/ro.md) , [PartDesign CompPrimitiveSubtractive/ro](PartDesign_CompPrimitiveSubtractive/ro.md) , [PartDesign Draft/ro](PartDesign_Draft/ro.md) , [PartDesign Fillet/ro](PartDesign_Fillet/ro.md) , [PartDesign Groove/ro](PartDesign_Groove/ro.md) , [PartDesign Hole/ro](PartDesign_Hole/ro.md) , [PartDesign InvoluteGear/ro](PartDesign_InvoluteGear/ro.md) , [PartDesign Line/ro](PartDesign_Line/ro.md) , [PartDesign LinearPattern/ro](PartDesign_LinearPattern/ro.md) , [PartDesign Migrate/ro](PartDesign_Migrate/ro.md) , [PartDesign Mirrored/ro](PartDesign_Mirrored/ro.md) , [PartDesign MoveFeature/ro](PartDesign_MoveFeature/ro.md) , [PartDesign MoveFeatureInTree/ro](PartDesign_MoveFeatureInTree/ro.md) , [PartDesign MoveTip/ro](PartDesign_MoveTip/ro.md) , [PartDesign MultiTransform/ro](PartDesign_MultiTransform/ro.md) , [PartDesign NewSketch/ro](PartDesign_NewSketch/ro.md) , [PartDesign Pad/ro](PartDesign_Pad/ro.md) , [PartDesign Plane/ro](PartDesign_Plane/ro.md) , [PartDesign Pocket/ro](PartDesign_Pocket/ro.md) , [PartDesign Point/ro](PartDesign_Point/ro.md) , [PartDesign PolarPattern/ro](PartDesign_PolarPattern/ro.md) , [PartDesign Revolution/ro](PartDesign_Revolution/ro.md) , [PartDesign Scaled/ro](PartDesign_Scaled/ro.md) , [PartDesign ShapeBinder/ro](PartDesign_ShapeBinder/ro.md) , [PartDesign SubtractiveBox/ro](PartDesign_SubtractiveBox/ro.md) , [PartDesign SubtractiveCone/ro](PartDesign_SubtractiveCone/ro.md) , [PartDesign SubtractiveCylinder/ro](PartDesign_SubtractiveCylinder/ro.md) , [PartDesign SubtractiveEllipsoid/ro](PartDesign_SubtractiveEllipsoid/ro.md) , [PartDesign SubtractiveLoft/ro](PartDesign_SubtractiveLoft/ro.md) , [PartDesign SubtractivePipe/ro](PartDesign_SubtractivePipe/ro.md) , [PartDesign SubtractivePrism/ro](PartDesign_SubtractivePrism/ro.md) , [PartDesign SubtractiveSphere/ro](PartDesign_SubtractiveSphere/ro.md) , [PartDesign SubtractiveTorus/ro](PartDesign_SubtractiveTorus/ro.md) , [PartDesign SubtractiveWedge/ro](PartDesign_SubtractiveWedge/ro.md) , [PartDesign Thickness/ro](PartDesign_Thickness/ro.md) , [PartDesign tutorial/ro](PartDesign_tutorial/ro.md) , [PartDesign WizardShaft/ro](PartDesign_WizardShaft/ro.md) , [PartDesign Workbench/ro](PartDesign_Workbench/ro.md) , [Path Array/ro](Path_Array/ro.md) , [Path Comment/ro](Path_Comment/ro.md) , [Path Copy/ro](Path_Copy/ro.md) , [Path Custom/ro](Path_Custom/ro.md) , [Path DressupDogbone/ro](Path_DressupDogbone/ro.md) , [Path DressupDragKnife/ro](Path_DressupDragKnife/ro.md) , [Path DressupRampEntry/ro](Path_DressupRampEntry/ro.md) , [Path DressupTag/ro](Path_DressupTag/ro.md) , [Path Drilling/ro](Path_Drilling/ro.md) , [Path Engrave/ro](Path_Engrave/ro.md) , [Path ExportTemplate/ro](Path_ExportTemplate/ro.md) , [Path Fixture/ro](Path_Fixture/ro.md) , [Path Helix/ro](Path_Helix/ro.md) , [Path Inspect/ro](Path_Inspect/ro.md) , [Path Job/ro](Path_Job/ro.md) , [Path MillFace/ro](Path_MillFace/ro.md) , [Path Pocket 3D/ro](Path_Pocket_3D/ro.md) , [Path Post/ro](Path_Post/ro.md) , [Path Profile/ro](Path_Profile/ro.md) , [Path SelectLoop/ro](Path_SelectLoop/ro.md) , [Path Shape/ro](Path_Shape/ro.md) , [Path SimpleCopy/ro](Path_SimpleCopy/ro.md) , [Path Simulator/ro](Path_Simulator/ro.md) , [Path Stop/ro](Path_Stop/ro.md) , [Path Surface/ro](Path_Surface/ro.md) , [Path Walkthrough for the Impatient/ro](Path_Walkthrough_for_the_Impatient/ro.md) , [Path Workbench/ro](Path_Workbench/ro.md) , [Placement API/ro](Placement_API/ro.md) , [Placement/ro](Placement/ro.md) , [Plot Axes/ro](Plot_Axes/ro.md) , [Plot Grid/ro](Plot_Grid/ro.md) , [Plot Labels/ro](Plot_Labels/ro.md) , [Plot Legend/ro](Plot_Legend/ro.md) , [Plot Module/ro](Plot_Module/ro.md) , [Plot Positions/ro](Plot_Positions/ro.md) , [Plot Save/ro](Plot_Save/ro.md) , [Plot Series/ro](Plot_Series/ro.md) , [Points Workbench/ro](Points_Workbench/ro.md) , [Preferences Editor/ro](Preferences_Editor/ro.md) , [Property editor/ro](Property_editor/ro.md) , [Quality project/ro](Quality_project/ro.md) , [Raytracing ExportProject/ro](Raytracing_ExportProject/ro.md) , [Raytracing InsertPart/ro](Raytracing_InsertPart/ro.md) , [Raytracing Lux/ro](Raytracing_Lux/ro.md) , [Raytracing New/ro](Raytracing_New/ro.md) , [Raytracing Render/ro](Raytracing_Render/ro.md) , [Raytracing ResetCamera/ro](Raytracing_ResetCamera/ro.md) , [Raytracing tutorial/ro](Raytracing_tutorial/ro.md) , [Raytracing Workbench/ro](Raytracing_Workbench/ro.md) , [Raytracing WriteCamera/ro](Raytracing_WriteCamera/ro.md) , [Raytracing WritePart/ro](Raytracing_WritePart/ro.md) , [Raytracing WriteView/ro](Raytracing_WriteView/ro.md) , [Render project/ro](Render_project/ro.md) , [Reverse Engineering Workbench/ro](Reverse_Engineering_Workbench/ro.md) , [Robot 6-Axis/ro](Robot_6-Axis/ro.md) , [Robot CreateRobot/ro](Robot_CreateRobot/ro.md) , [Robot CreateTrajectory/ro](Robot_CreateTrajectory/ro.md) , [Robot Edge2Trac/ro](Robot_Edge2Trac/ro.md) , [Robot Export/ro](Robot_Export/ro.md) , [Robot InsertWaypoint/ro](Robot_InsertWaypoint/ro.md) , [Robot InsertWaypointPre/ro](Robot_InsertWaypointPre/ro.md) , [Robot RestoreHomePos/ro](Robot_RestoreHomePos/ro.md) , [Robot SetDefaultOrientation/ro](Robot_SetDefaultOrientation/ro.md) , [Robot SetDefaultValues/ro](Robot_SetDefaultValues/ro.md) , [Robot SetHomePos/ro](Robot_SetHomePos/ro.md) , [Robot Simulate/ro](Robot_Simulate/ro.md) , [Robot TrajectoryCompound/ro](Robot_TrajectoryCompound/ro.md) , [Robot TrajectoryDressUp/ro](Robot_TrajectoryDressUp/ro.md) , [Robot tutorial/ro](Robot_tutorial/ro.md) , [Robot Workbench/ro](Robot_Workbench/ro.md) , [Scripted Parts: Ball Bearing - Part 1/ro](Scripted_Parts:_Ball_Bearing_-_Part_1/ro.md) , [Ship Area/ro](Ship_Area/ro.md) , [Ship Geometries Examples/ro](Ship_Geometries_Examples/ro.md) , [Ship Hydrostatics/ro](Ship_Hydrostatics/ro.md) , [Ship Loading/ro](Ship_Loading/ro.md) , [Ship New/ro](Ship_New/ro.md) , [Ship Outline/ro](Ship_Outline/ro.md) , [Ship PlotGZ/ro](Ship_PlotGZ/ro.md) , [Ship TankCapacity/ro](Ship_TankCapacity/ro.md) , [Ship TankNew/ro](Ship_TankNew/ro.md) , [Ship Workbench/ro](Ship_Workbench/ro.md) , [Sketcher CarbonCopy/ro](Sketcher_CarbonCopy/ro.md) , [Sketcher Clone/ro](Sketcher_Clone/ro.md) , [Sketcher CloseShape/ro](Sketcher_CloseShape/ro.md) , [Sketcher CompCreateArc/ro](Sketcher_CompCreateArc/ro.md) , [Sketcher CompCreateConic/ro](Sketcher_CompCreateConic/ro.md) , [Sketcher ConnectLines/ro](Sketcher_ConnectLines/ro.md) , [Sketcher ConstrainAngle/ro](Sketcher_ConstrainAngle/ro.md) , [Sketcher ConstrainBlock/ro](Sketcher_ConstrainBlock/ro.md) , [Sketcher ConstrainCoincident/ro](Sketcher_ConstrainCoincident/ro.md) , [Sketcher ConstrainDistance/ro](Sketcher_ConstrainDistance/ro.md) , [Sketcher ConstrainDistanceX/ro](Sketcher_ConstrainDistanceX/ro.md) , [Sketcher ConstrainDistanceY/ro](Sketcher_ConstrainDistanceY/ro.md) , [Sketcher ConstrainEqual/ro](Sketcher_ConstrainEqual/ro.md) , [Sketcher ConstrainHorizontal/ro](Sketcher_ConstrainHorizontal/ro.md) , [Sketcher ConstrainInternalAlignment/ro](Sketcher_ConstrainInternalAlignment/ro.md) , [Sketcher ConstrainLock/ro](Sketcher_ConstrainLock/ro.md) , [Sketcher ConstrainParallel/ro](Sketcher_ConstrainParallel/ro.md) , [Sketcher ConstrainPointOnObject/ro](Sketcher_ConstrainPointOnObject/ro.md) , [Sketcher ConstrainRadius/ro](Sketcher_ConstrainRadius/ro.md) , [Sketcher ConstrainSymmetric/ro](Sketcher_ConstrainSymmetric/ro.md) , [Sketcher ConstrainTangent/ro](Sketcher_ConstrainTangent/ro.md) , [Sketcher ConstrainVertical/ro](Sketcher_ConstrainVertical/ro.md) [Category:Documentation/ro](Category:Documentation/ro.md) + +--- +[documentation index](../README.md) > Category:User Documentation/ro diff --git a/wiki/translations/ro/Category:Wiki.md b/wiki/translations/ro/Category:Wiki.md index 0204ef433a..d9e4bc4333 100644 --- a/wiki/translations/ro/Category:Wiki.md +++ b/wiki/translations/ro/Category:Wiki.md @@ -6,3 +6,6 @@ This category contains all documents that relate to the Wiki/ro. [Glossary/ro](Glossary/ro.md) , [Localisation/ro](Localisation/ro.md) [Category:Administration/ro](Category:Administration/ro.md) [Category:Categories/ro](Category:Categories/ro.md) [Category:Documentation/ro](Category:Documentation/ro.md) + +--- +[documentation index](../README.md) > Category:Wiki/ro diff --git a/wiki/translations/ro/Category:Workbenches.md b/wiki/translations/ro/Category:Workbenches.md index 5bf2ad77a4..9955cae599 100644 --- a/wiki/translations/ro/Category:Workbenches.md +++ b/wiki/translations/ro/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/ro](Arch_Workbench/ro.md) , [Draft Workbench/ro](Draft_Workbench/ro.md) , [FEM Workbench/ro](FEM_Workbench/ro.md) , [Image Workbench/ro](Image_Workbench/ro.md) , [Inspection Workbench/ro](Inspection_Workbench/ro.md) , [Mesh Workbench/ro](Mesh_Workbench/ro.md) , [OpenSCAD Workbench/ro](OpenSCAD_Workbench/ro.md) , [Part Module/ro](Part_Module/ro.md) , [PartDesign Workbench/ro](PartDesign_Workbench/ro.md) , [Path Workbench/ro](Path_Workbench/ro.md) , [Points Workbench/ro](Points_Workbench/ro.md) , [Raytracing Workbench/ro](Raytracing_Workbench/ro.md) , [Reverse Engineering Workbench/ro](Reverse_Engineering_Workbench/ro.md) , [Robot Workbench/ro](Robot_Workbench/ro.md) , [Sketcher Workbench/ro](Sketcher_Workbench/ro.md) , [Spreadsheet Workbench/ro](Spreadsheet_Workbench/ro.md) , [Start Workbench/ro](Start_Workbench/ro.md) , [Std Base/ro](Std_Base/ro.md) , [Std File Menu/ro](Std_File_Menu/ro.md) , [Std Macro Menu/ro](Std_Macro_Menu/ro.md) , [Std Tools Menu/ro](Std_Tools_Menu/ro.md) , [Std View Menu/ro](Std_View_Menu/ro.md) , [Std Windows Menu/ro](Std_Windows_Menu/ro.md) , [Surface Workbench/ro](Surface_Workbench/ro.md) , [TechDraw Workbench/ro](TechDraw_Workbench/ro.md) , [Testing/ro](Testing/ro.md) , [Web Workbench/ro](Web_Workbench/ro.md) , [Workbenches/ro](Workbenches/ro.md) , , , , , , , , , , , , , , , , , , [Category:User Documentation/ro](Category:User_Documentation/ro.md) [Category:Draft/ro](Category:Draft/ro.md) [Category:External Workbenches/ro](Category:External_Workbenches/ro.md) [Category:FEM/ro](Category:FEM/ro.md) [Category:Image/ro](Category:Image/ro.md) [Category:Inspection/ro](Category:Inspection/ro.md) [Category:Mesh/ro](Category:Mesh/ro.md) [Category:OpenSCAD/ro](Category:OpenSCAD/ro.md) [Category:Part/ro](Category:Part/ro.md) [Category:Path/ro](Category:Path/ro.md) [Category:Plot/ro](Category:Plot/ro.md) [Category:Points/ro](Category:Points/ro.md) [Category:Raytracing/ro](Category:Raytracing/ro.md) [Category:Reinforcement/ro](Category:Reinforcement/ro.md) [Category:Robot/ro](Category:Robot/ro.md) [Category:Ship/ro](Category:Ship/ro.md) [Category:Surface/ro](Category:Surface/ro.md) [Category:TechDraw/ro](Category:TechDraw/ro.md) [Category:Test Framework/ro](Category:Test_Framework/ro.md) + +--- +[documentation index](../README.md) > Category:Workbenches/ro diff --git a/wiki/translations/ro/Code_snippets.md b/wiki/translations/ro/Code_snippets.md index a855799e69..2ca26f502e 100644 --- a/wiki/translations/ro/Code_snippets.md +++ b/wiki/translations/ro/Code_snippets.md @@ -1,7 +1,4 @@ # Code snippets/ro - - - {{TOCright}} ## Introduction @@ -1961,3 +1958,6 @@ See [Coin3d snippets](Coin3d_snippets.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Code snippets/ro diff --git a/wiki/translations/ro/Command.md b/wiki/translations/ro/Command.md index b22dba762b..9cb0b99e41 100644 --- a/wiki/translations/ro/Command.md +++ b/wiki/translations/ro/Command.md @@ -1,6 +1,4 @@ # Command/ro - - ## Introduction @@ -139,3 +137,6 @@ See [Line drawing function](Line_drawing_function.md). }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Command/ro diff --git a/wiki/translations/ro/CompileOnMac.md b/wiki/translations/ro/CompileOnMac.md index 4762fb2b05..cba660243c 100644 --- a/wiki/translations/ro/CompileOnMac.md +++ b/wiki/translations/ro/CompileOnMac.md @@ -1,2 +1,5 @@ # CompileOnMac/ro 1. REDIRECT [Compile on MacOS/ro](Compile_on_MacOS/ro.md) + +--- +[documentation index](../README.md) > CompileOnMac/ro diff --git a/wiki/translations/ro/CompileOnUnix.md b/wiki/translations/ro/CompileOnUnix.md index 8838000f88..1a10252f7f 100644 --- a/wiki/translations/ro/CompileOnUnix.md +++ b/wiki/translations/ro/CompileOnUnix.md @@ -1,2 +1,5 @@ # CompileOnUnix/ro 1. REDIRECT [Compile\_on\_Linux/ro](Compile_on_Linux/ro.md) + +--- +[documentation index](../README.md) > CompileOnUnix/ro diff --git a/wiki/translations/ro/CompileOnWindows.md b/wiki/translations/ro/CompileOnWindows.md index 610243ae35..7e3cc5aeeb 100644 --- a/wiki/translations/ro/CompileOnWindows.md +++ b/wiki/translations/ro/CompileOnWindows.md @@ -1,2 +1,5 @@ # CompileOnWindows/ro 1. REDIRECT [Compile on Windows/ro](Compile_on_Windows/ro.md) + +--- +[documentation index](../README.md) > CompileOnWindows/ro diff --git a/wiki/translations/ro/Compile_on_Linux.md b/wiki/translations/ro/Compile_on_Linux.md index ac6c4fab60..11be8ee5cd 100644 --- a/wiki/translations/ro/Compile_on_Linux.md +++ b/wiki/translations/ro/Compile_on_Linux.md @@ -1,10 +1,4 @@ # Compile on Linux/ro - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -1216,3 +1210,6 @@ To update FreeCAD to latest build just repeat from step 3. Update AUR repo when [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Linux/ro diff --git a/wiki/translations/ro/Compile_on_MacOS.md b/wiki/translations/ro/Compile_on_MacOS.md index dff3d3b8ba..c88bd9e1d2 100644 --- a/wiki/translations/ro/Compile_on_MacOS.md +++ b/wiki/translations/ro/Compile_on_MacOS.md @@ -1,10 +1,4 @@ # Compile on MacOS/ro - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -346,3 +340,6 @@ FreeCAD can be built against the latest git master hosted on github, and launche [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS/ro diff --git a/wiki/translations/ro/Compile_on_Windows.md b/wiki/translations/ro/Compile_on_Windows.md index 701674bade..1c8ab90217 100644 --- a/wiki/translations/ro/Compile_on_Windows.md +++ b/wiki/translations/ro/Compile_on_Windows.md @@ -1,7 +1,4 @@ # Compile on Windows/ro - - -
@@ -561,3 +558,6 @@ A se vedea și [Category:Developer Documentation/ro](Category:Developer_Documentation/ro.md) [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows/ro diff --git a/wiki/translations/ro/Compile_on_Windows_with_VS2013.md b/wiki/translations/ro/Compile_on_Windows_with_VS2013.md index 21291b2765..fd50d4c555 100644 --- a/wiki/translations/ro/Compile_on_Windows_with_VS2013.md +++ b/wiki/translations/ro/Compile_on_Windows_with_VS2013.md @@ -1,7 +1,4 @@ # Compile on Windows with VS2013/ro - - -
Următoarea procedură va funcționa pentru Windows Vista / 7/8, pentru XP este necesar un set de instrumente alternative VS pentru VS 2012 și 2013, care a fost finalizat cu succes cu Libpacks actuale. Pentru a viza XP (ambele și x32 și x64), este recomandat să utilizați VS2008 și LibpackFreeCADLibs\_11.0\_x86\_VC9.7z @@ -156,3 +153,6 @@ Dacă nu primiți nici un mesaj de eroare. Ieșiți din Visual Studio și porni [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows with VS2013/ro diff --git a/wiki/translations/ro/Compiling.md b/wiki/translations/ro/Compiling.md index f504302111..3d29b81275 100644 --- a/wiki/translations/ro/Compiling.md +++ b/wiki/translations/ro/Compiling.md @@ -1,7 +1,4 @@ # Compiling/ro - - -
Fiecare sistem de operare are propria pagină de compilare a FreeCAD în [Online Help Documentation](Online_Help_Toc.md). @@ -34,3 +31,6 @@ To learn to use revision control system and contribute code see [Source code man [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling/ro diff --git a/wiki/translations/ro/Compiling_(Speeding_up).md b/wiki/translations/ro/Compiling_(Speeding_up).md index bc39ae399e..76f184b9f8 100644 --- a/wiki/translations/ro/Compiling_(Speeding_up).md +++ b/wiki/translations/ro/Compiling_(Speeding_up).md @@ -1,10 +1,4 @@ # Compiling (Speeding up)/ro - - - - - - {{TOCright}} ## Overview @@ -102,3 +96,6 @@ Distcc poate fi utilizat pentru compilarea distribuită în rețea. [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling (Speeding up)/ro diff --git a/wiki/translations/ro/Complete_Workbench.md b/wiki/translations/ro/Complete_Workbench.md index 84b89b8788..38d3c8b3fb 100644 --- a/wiki/translations/ro/Complete_Workbench.md +++ b/wiki/translations/ro/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/ro - - - **The [[Complete Workbench]] is deprecated.** @@ -14,3 +11,6 @@ See [Interface Customization](Interface_Customization.md) if you\'d like to adap [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/ro diff --git a/wiki/translations/ro/Console_API.md b/wiki/translations/ro/Console_API.md index 79fef5f021..0b696effad 100644 --- a/wiki/translations/ro/Console_API.md +++ b/wiki/translations/ro/Console_API.md @@ -1,5 +1,5 @@ # Console API/ro - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Acest modul este conținut în modulul FreeCAD și conține metode de trimitere a textului la consola de ieșire FreeCAD și la bara de stare. Mesajele vor avea o culoare diferită, funcție de tipul lor : mesaje, avertismenter sau erori. @@ -30,3 +30,6 @@ FreeCAD.Console.PrintMessage("Hello World!\n") [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Console API/ro diff --git a/wiki/translations/ro/Continuous_Integration.md b/wiki/translations/ro/Continuous_Integration.md index fdc9eef63a..e57404cec8 100644 --- a/wiki/translations/ro/Continuous_Integration.md +++ b/wiki/translations/ro/Continuous_Integration.md @@ -1,10 +1,4 @@ # Continuous Integration/ro - - - - - - {{TOCright}} @@ -46,3 +40,6 @@ Dacă adăugaţi [skip ci] sau [ci skip] pentru comiterea unui \"git\", aceasta [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Continuous Integration/ro diff --git a/wiki/translations/ro/Contributors.md b/wiki/translations/ro/Contributors.md index a76d780aa6..feb9ebb09a 100644 --- a/wiki/translations/ro/Contributors.md +++ b/wiki/translations/ro/Contributors.md @@ -1,10 +1,4 @@ # Contributors/ro - - - - - - {{TOCright}} @@ -259,3 +253,6 @@ Dezvoltatori ai FreeCAD addons (preluat din [Developer](Category:Developer.md) > Contributors/ro diff --git a/wiki/translations/ro/Copying_Objects.md b/wiki/translations/ro/Copying_Objects.md index eeb237d321..71c969a427 100644 --- a/wiki/translations/ro/Copying_Objects.md +++ b/wiki/translations/ro/Copying_Objects.md @@ -1,5 +1,5 @@ # Copying Objects/ro - {{TOCright}} +{{TOCright}}
@@ -73,5 +73,5 @@ Ca multe lucruri în FreeCAD, există multe modalități de a face o copie. Pent - [Paste](Std_Paste.md) - [Duplicate Selection](Std_DuplicateSelection.md) - - +--- +[documentation index](../README.md) > Copying Objects/ro diff --git a/wiki/translations/ro/Creating_a_simple_part_with_PartDesign.md b/wiki/translations/ro/Creating_a_simple_part_with_PartDesign.md index db5ab165d5..6f7b0299e6 100644 --- a/wiki/translations/ro/Creating_a_simple_part_with_PartDesign.md +++ b/wiki/translations/ro/Creating_a_simple_part_with_PartDesign.md @@ -1,7 +1,4 @@ # Creating a simple part with PartDesign/ro - - - {{TutorialInfo/ro |Topic=Modeling |Level=Beginner @@ -279,4 +276,7 @@ You can also continue with this other tutorial of a slightly more complicated pa {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Creating a simple part with PartDesign/ro diff --git a/wiki/translations/ro/Custom_Spacing.md b/wiki/translations/ro/Custom_Spacing.md index 6239abc4e0..7c7ee2827d 100644 --- a/wiki/translations/ro/Custom_Spacing.md +++ b/wiki/translations/ro/Custom_Spacing.md @@ -1,6 +1,4 @@ # Custom Spacing/ro - - ## Descriere Instrumentul Distribuire personalizată permite utilizatorului să creeze o distribuție a barei de armătură în elementul structural. Puteți defini trei segmente pentru distribuție. Pentru primul și al treilea segmente, puteți oferi atât o serie de bare de armare, cât și distanțele dintre barele de armare. Dar pentru cel de-al doilea segment, puteți da fie un număr de bare de armare sau spațiere între barele de bare, deoarece o valoare determină automat pe celelalte. @@ -31,3 +29,6 @@ Rezultaul produs de dialogul Rebar Distribution atunci când utilizatorul face c [Category:User Documentation](Category:User_Documentation.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Custom Spacing/ro diff --git a/wiki/translations/ro/Customize_Toolbars.md b/wiki/translations/ro/Customize_Toolbars.md index a61203c4e7..f16259432a 100644 --- a/wiki/translations/ro/Customize_Toolbars.md +++ b/wiki/translations/ro/Customize_Toolbars.md @@ -1,5 +1,5 @@ # Customize Toolbars/ro - {{TutorialInfo/ro|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} +{{TutorialInfo/ro|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} ## Synopsis @@ -132,3 +132,6 @@ See also [Interface Customization](Interface_Customization.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Customize Toolbars/ro diff --git a/wiki/translations/ro/Debugging.md b/wiki/translations/ro/Debugging.md index 1b2ade310b..ef3aef15a4 100644 --- a/wiki/translations/ro/Debugging.md +++ b/wiki/translations/ro/Debugging.md @@ -1,7 +1,4 @@ # Debugging/ro - - -
@@ -432,3 +429,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/ro diff --git a/wiki/translations/ro/Developer_hub.md b/wiki/translations/ro/Developer_hub.md index 714dcb9403..610daafdfe 100644 --- a/wiki/translations/ro/Developer_hub.md +++ b/wiki/translations/ro/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/ro - - ![150](images/Crystal_Clear_app_tutorials.png ) Acesta este locul unde veți veni dacă doriți să contribuiți la dezvoltarea software-ului FreeCAD. @@ -193,3 +191,6 @@ FreeCAD, deși utilizabilă în anumite domenii, este la începutul unei lungi d [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/ro diff --git a/wiki/translations/ro/Development_roadmap.md b/wiki/translations/ro/Development_roadmap.md index f933b504dd..afd549e300 100644 --- a/wiki/translations/ro/Development_roadmap.md +++ b/wiki/translations/ro/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/ro - **Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** +**Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** FreeCAD - deși utilizabilă în multe aplicații - este la începutul unei lungi călătorii în marele curent CAD. Mai sunt încă multe de făcut pentru a ajunge la o stare în care să putem concura cu software-ul comercial. @@ -44,3 +44,6 @@ Ca și în cele mai multe proiecte [FLOSS](http://en.wikipedia.org/wiki/FLOSS) u [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/ro diff --git a/wiki/translations/ro/Dialog_creation.md b/wiki/translations/ro/Dialog_creation.md index 3554e911db..b6eb7477a8 100644 --- a/wiki/translations/ro/Dialog_creation.md +++ b/wiki/translations/ro/Dialog_creation.md @@ -1,7 +1,4 @@ # Dialog creation/ro - - - {{TOCright}} ## Introduction @@ -309,3 +306,6 @@ class plane(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation/ro diff --git a/wiki/translations/ro/Document_structure.md b/wiki/translations/ro/Document_structure.md index 9ab3b109a7..dfa385c41c 100644 --- a/wiki/translations/ro/Document_structure.md +++ b/wiki/translations/ro/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/ro - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) Un document FreeCAD conține toate obiectele din scenă. Poate conține grupuri și obiecte realizate cu oricare atelier.Ca urmare atelierele pot fi schimbate fără a părăsi documentul. Conținutul documentului este cel salvat pe disc. Mai multe documente pot fi deschise în acelasi timp și mai multe vizualizări al aceluiași document pot fi deschise în același timp. @@ -75,5 +69,5 @@ FreeCADGui.ActiveDocument.ActiveView
- - +--- +[documentation index](../README.md) > Document structure/ro diff --git a/wiki/translations/ro/Download.md b/wiki/translations/ro/Download.md index dbb710d04b..89afe03e00 100644 --- a/wiki/translations/ro/Download.md +++ b/wiki/translations/ro/Download.md @@ -1,5 +1,5 @@ # Download/ro - {{TOCright}} +{{TOCright}}
@@ -109,5 +109,5 @@ Comunitatea FreeCAD oferă o multitudine de module și macrocomenzi suplimentare
- - +--- +[documentation index](../README.md) > Download/ro diff --git a/wiki/translations/ro/Draft_API.md b/wiki/translations/ro/Draft_API.md index ce0238544c..a02be81c8d 100644 --- a/wiki/translations/ro/Draft_API.md +++ b/wiki/translations/ro/Draft_API.md @@ -1,7 +1,4 @@ # Draft API/ro - - -
Aceste funcții fac parte din modulul Draft-Desen 2D și pot fi utilizate în scripturi și macrocomenzi sau de la interpretorul python, odată ce modulul Draft a fost importat. @@ -85,3 +82,6 @@ Draft.move(myrect, mydistance) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft API/ro diff --git a/wiki/translations/ro/Draft_AddConstruction.md b/wiki/translations/ro/Draft_AddConstruction.md index 6edabbcbc8..4de21a8655 100644 --- a/wiki/translations/ro/Draft_AddConstruction.md +++ b/wiki/translations/ro/Draft_AddConstruction.md @@ -7,6 +7,8 @@ SeeAlso:[[Draft_ToggleConstructionMode]] --- +# Draft AddConstruction/ro +
@@ -56,5 +58,5 @@ In FreeCAD version 0.19 this command and the [Draft ToggleConstructionMode](Draf
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddConstruction/ro diff --git a/wiki/translations/ro/Draft_AddToGroup.md b/wiki/translations/ro/Draft_AddToGroup.md index b30f4014f8..16ec0895fd 100644 --- a/wiki/translations/ro/Draft_AddToGroup.md +++ b/wiki/translations/ro/Draft_AddToGroup.md @@ -7,6 +7,8 @@ SeeAlso:[Draft SelectGroup](Draft_SelectGroup/ro.md), [Std Group](Std_Group/ro.md) --- +# Draft AddToGroup/ro +
@@ -61,5 +63,5 @@ In FreeCAD version 0.20 the command can also handle group-like [Arch](Arch_Workb
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddToGroup/ro diff --git a/wiki/translations/ro/Draft_Apply.md b/wiki/translations/ro/Draft_Apply.md index 110721f9a6..839f2ef4c3 100644 --- a/wiki/translations/ro/Draft_Apply.md +++ b/wiki/translations/ro/Draft_Apply.md @@ -1,2 +1,5 @@ # Draft Apply/ro 1. REDIRECT [Draft\_ApplyStyle/ro](Draft_ApplyStyle/ro.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Apply/ro diff --git a/wiki/translations/ro/Draft_ApplyStyle.md b/wiki/translations/ro/Draft_ApplyStyle.md index 36b1de72d5..0a94566a68 100644 --- a/wiki/translations/ro/Draft_ApplyStyle.md +++ b/wiki/translations/ro/Draft_ApplyStyle.md @@ -7,6 +7,8 @@ SeeAlso:[Draft SetStyle](Draft_SetStyle.md) --- +# Draft ApplyStyle/ro +
@@ -57,8 +59,5 @@ This command currently handles only five of the settings the [Draft SetStyle](Dr - In FreeCAD version 0.20 the [Draft SetStyle](Draft_SetStyle.md) command can also apply the settings. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ApplyStyle/ro diff --git a/wiki/translations/ro/Draft_Arc.md b/wiki/translations/ro/Draft_Arc.md index b9d623b674..e4e802c25e 100644 --- a/wiki/translations/ro/Draft_Arc.md +++ b/wiki/translations/ro/Draft_Arc.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Circle](Draft_Circle/ro.md) --- +# Draft Arc/ro +
@@ -133,8 +135,5 @@ arc3 = Draft.make_circle(750, startangle=-30, endangle=-150) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc/ro diff --git a/wiki/translations/ro/Draft_Array.md b/wiki/translations/ro/Draft_Array.md index 6b049524be..a12f9aedee 100644 --- a/wiki/translations/ro/Draft_Array.md +++ b/wiki/translations/ro/Draft_Array.md @@ -6,6 +6,8 @@ SeeAlso:[PolarArray](Draft_PolarArray.md), [CircularArray](Draft_CircularArray.md), [PathArray](Draft_PathArray.md), [PointArray](Draft_PointArray.md), [Clone](Draft_Clone.md) --- +# Draft Array/ro +
@@ -112,5 +114,5 @@ Instrumentul Array poate fi utilizat în [macros](macros.md) și din consola Pyt
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Array/ro diff --git a/wiki/translations/ro/Draft_AutoGroup.md b/wiki/translations/ro/Draft_AutoGroup.md index 450180fea9..26d201571a 100644 --- a/wiki/translations/ro/Draft_AutoGroup.md +++ b/wiki/translations/ro/Draft_AutoGroup.md @@ -1,3 +1,4 @@ +# Draft AutoGroup/ro --- - GuiCommand: Name:Draft AutoGroup Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → Utilities → AutoGroup SeeAlso:--- @@ -88,8 +89,5 @@ Draft.autogroup(polygon3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AutoGroup/ro diff --git a/wiki/translations/ro/Draft_BSpline.md b/wiki/translations/ro/Draft_BSpline.md index 566917c65a..75435ab909 100644 --- a/wiki/translations/ro/Draft_BSpline.md +++ b/wiki/translations/ro/Draft_BSpline.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Wire](Draft_Wire/ro.md) --- +# Draft BSpline/ro + @@ -201,8 +203,5 @@ spline3 = Draft.make_bspline([1.3*p3, p1, -1.7*p2], closed=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BSpline/ro diff --git a/wiki/translations/ro/Draft_BezCurve.md b/wiki/translations/ro/Draft_BezCurve.md index a9d753defd..e8a36ad47a 100644 --- a/wiki/translations/ro/Draft_BezCurve.md +++ b/wiki/translations/ro/Draft_BezCurve.md @@ -7,6 +7,8 @@ Shortcut:B Z --- +# Draft BezCurve/ro + @@ -201,8 +203,5 @@ bezcurve3 = Draft.make_bezcurve([1.7*p3, 1.5*p4, 2.1*p2, p1], closed=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BezCurve/ro diff --git a/wiki/translations/ro/Draft_Circle.md b/wiki/translations/ro/Draft_Circle.md index 21c8efb2d2..75909ccc4f 100644 --- a/wiki/translations/ro/Draft_Circle.md +++ b/wiki/translations/ro/Draft_Circle.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Arc](Draft_Arc/ro.md) --- +# Draft Circle/ro + @@ -169,8 +171,5 @@ circle3 = Draft.make_circle(750, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Circle/ro diff --git a/wiki/translations/ro/Draft_Clone.md b/wiki/translations/ro/Draft_Clone.md index e8cce426fd..82110d90fd 100644 --- a/wiki/translations/ro/Draft_Clone.md +++ b/wiki/translations/ro/Draft_Clone.md @@ -1,3 +1,4 @@ +# Draft Clone/ro --- - GuiCommand: Name:Draft Clone Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → Clone SeeAlso:[Draft Scale](Draft_Scale.md)--- @@ -119,8 +120,5 @@ cloned_object.Fuse = True doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Clone/ro diff --git a/wiki/translations/ro/Draft_CloseLine.md b/wiki/translations/ro/Draft_CloseLine.md index a7f3fd1b55..4e6d898d66 100644 --- a/wiki/translations/ro/Draft_CloseLine.md +++ b/wiki/translations/ro/Draft_CloseLine.md @@ -1,2 +1,5 @@ # Draft CloseLine/ro 1. REDIRECT [Draft\_Wire/ro](Draft_Wire/ro.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CloseLine/ro diff --git a/wiki/translations/ro/Draft_Constrain.md b/wiki/translations/ro/Draft_Constrain.md index 6acadffabf..6740944051 100644 --- a/wiki/translations/ro/Draft_Constrain.md +++ b/wiki/translations/ro/Draft_Constrain.md @@ -1,10 +1,4 @@ # Draft Constrain/ro - - - - - - {{TOCright}} ## Description @@ -68,3 +62,6 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr [Category:User Documentation/ro](Category:User_Documentation/ro.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Constrain/ro diff --git a/wiki/translations/ro/Draft_DXF.md b/wiki/translations/ro/Draft_DXF.md index 881536c5c2..67a7e9496a 100644 --- a/wiki/translations/ro/Draft_DXF.md +++ b/wiki/translations/ro/Draft_DXF.md @@ -1,10 +1,4 @@ # Draft DXF/ro - - - - - - {{TOCright}} ## Description @@ -192,3 +186,6 @@ importDXF.export(objects, "/home/user/Pictures/myfile.dxf") [Category:User Documentation](Category:User_Documentation.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DXF/ro diff --git a/wiki/translations/ro/Draft_Dimension.md b/wiki/translations/ro/Draft_Dimension.md index 11ab2a7e3e..07514aae00 100644 --- a/wiki/translations/ro/Draft_Dimension.md +++ b/wiki/translations/ro/Draft_Dimension.md @@ -8,6 +8,8 @@ SeeAlso:[FlipDimension](Draft_FlipDimension/ro.md) --- +# Draft Dimension/ro + @@ -371,8 +373,5 @@ dimension4.ViewObject.FontSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Dimension/ro diff --git a/wiki/translations/ro/Draft_Downgrade.md b/wiki/translations/ro/Draft_Downgrade.md index 72962f1420..05902c34c5 100644 --- a/wiki/translations/ro/Draft_Downgrade.md +++ b/wiki/translations/ro/Draft_Downgrade.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Upgrade](Draft_Upgrade.md) --- +# Draft Downgrade/ro + @@ -105,8 +107,5 @@ add_list4, delete_list4 = Draft.downgrade(box, delete=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Downgrade/ro diff --git a/wiki/translations/ro/Draft_Draft2Sketch.md b/wiki/translations/ro/Draft_Draft2Sketch.md index bc834e5b99..4fee07c8a6 100644 --- a/wiki/translations/ro/Draft_Draft2Sketch.md +++ b/wiki/translations/ro/Draft_Draft2Sketch.md @@ -1,3 +1,4 @@ +# Draft Draft2Sketch/ro --- - GuiCommand: Name:Draft Draft2Sketch Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Drafting → Draft to Sketch--- @@ -119,8 +120,5 @@ draft_from_sketch = Draft.draftify(sketch_from_draft, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Draft2Sketch/ro diff --git a/wiki/translations/ro/Draft_Drawing.md b/wiki/translations/ro/Draft_Drawing.md index 0adad01b86..7c5bf38605 100644 --- a/wiki/translations/ro/Draft_Drawing.md +++ b/wiki/translations/ro/Draft_Drawing.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/ro.md), [Arch](Arch_Workbench/ro.md) --- +# Draft Drawing/ro + @@ -43,8 +45,5 @@ This command is now obsolete. Use the [TechDraw Workbench](TechDraw_Workbench.md - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Drawing/ro diff --git a/wiki/translations/ro/Draft_Edit.md b/wiki/translations/ro/Draft_Edit.md index dde2a28470..c45756a004 100644 --- a/wiki/translations/ro/Draft_Edit.md +++ b/wiki/translations/ro/Draft_Edit.md @@ -1,3 +1,4 @@ +# Draft Edit/ro --- - GuiCommand: Name:Draft Edit Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → Edit--- @@ -197,8 +198,5 @@ Nu e disponibil. Fiecare obiect de mai sus poate fi modificat prin schimbarea pr - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Edit/ro diff --git a/wiki/translations/ro/Draft_Ellipse.md b/wiki/translations/ro/Draft_Ellipse.md index 1cf3e16a20..9744e7b838 100644 --- a/wiki/translations/ro/Draft_Ellipse.md +++ b/wiki/translations/ro/Draft_Ellipse.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Circle](Draft_Circle/ro.md) --- +# Draft Ellipse/ro + @@ -171,8 +173,5 @@ ellipse3 = Draft.make_ellipse(700, 1000, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Ellipse/ro diff --git a/wiki/translations/ro/Draft_Facebinder.md b/wiki/translations/ro/Draft_Facebinder.md index b5f089b7aa..2344b33e2a 100644 --- a/wiki/translations/ro/Draft_Facebinder.md +++ b/wiki/translations/ro/Draft_Facebinder.md @@ -7,6 +7,8 @@ Shortcut:**F** **F** --- +# Draft Facebinder/ro + @@ -142,8 +144,5 @@ facebinder.ViewObject.ShapeColor = (0.99, 0.99, 0.4) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Facebinder/ro diff --git a/wiki/translations/ro/Draft_FinishLine.md b/wiki/translations/ro/Draft_FinishLine.md index 7aaa196662..12186e4f07 100644 --- a/wiki/translations/ro/Draft_FinishLine.md +++ b/wiki/translations/ro/Draft_FinishLine.md @@ -1,2 +1,5 @@ # Draft FinishLine/ro 1. REDIRECT [Draft\_Wire/ro](Draft_Wire/ro.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FinishLine/ro diff --git a/wiki/translations/ro/Draft_FlipDimension.md b/wiki/translations/ro/Draft_FlipDimension.md index b2aab27823..67c117ba83 100644 --- a/wiki/translations/ro/Draft_FlipDimension.md +++ b/wiki/translations/ro/Draft_FlipDimension.md @@ -1,3 +1,4 @@ +# Draft FlipDimension/ro --- - GuiCommand:/ro Name:Draft FlipDimension Name/ro:Draft FlipDimension Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → Utilities → Flip Dimension SeeAlso:[Dimension](Draft_Dimension.md)--- @@ -59,8 +60,5 @@ dimension.Normal = dimension.Normal.negative() doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FlipDimension/ro diff --git a/wiki/translations/ro/Draft_Heal.md b/wiki/translations/ro/Draft_Heal.md index 523586112a..cc5da9c7d4 100644 --- a/wiki/translations/ro/Draft_Heal.md +++ b/wiki/translations/ro/Draft_Heal.md @@ -1,3 +1,4 @@ +# Draft Heal/ro --- - GuiCommand: Name:Draft Heal Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → Utilities → Heal--- @@ -30,8 +31,5 @@ Din cauza evoluției rapide a FreeCAD, unele definiții de obiecte s-ar putea sc - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Heal/ro diff --git a/wiki/translations/ro/Draft_Label.md b/wiki/translations/ro/Draft_Label.md index 26f378d972..d2dda315c4 100644 --- a/wiki/translations/ro/Draft_Label.md +++ b/wiki/translations/ro/Draft_Label.md @@ -7,6 +7,8 @@ Shortcut:**D** **L** --- +# Draft Label/ro + @@ -260,8 +262,5 @@ label3.ViewObject.TextSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Label/ro diff --git a/wiki/translations/ro/Draft_Line.md b/wiki/translations/ro/Draft_Line.md index db237a669f..92bb465187 100644 --- a/wiki/translations/ro/Draft_Line.md +++ b/wiki/translations/ro/Draft_Line.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Wire](Draft_Wire/ro.md) --- +# Draft Line/ro + @@ -155,8 +157,5 @@ line2 = Draft.make_line(p3, p4) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Line/ro diff --git a/wiki/translations/ro/Draft_Linestyle.md b/wiki/translations/ro/Draft_Linestyle.md index 706ce64c16..f8ca4d0ff7 100644 --- a/wiki/translations/ro/Draft_Linestyle.md +++ b/wiki/translations/ro/Draft_Linestyle.md @@ -1,2 +1,5 @@ # Draft Linestyle/ro 1. REDIRECT [Draft\_Tray](Draft_Tray.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Linestyle/ro diff --git a/wiki/translations/ro/Draft_Mirror.md b/wiki/translations/ro/Draft_Mirror.md index 950801306f..894dd13a89 100644 --- a/wiki/translations/ro/Draft_Mirror.md +++ b/wiki/translations/ro/Draft_Mirror.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Scale](Draft_Scale/ro.md) --- +# Draft Mirror/ro + @@ -160,8 +162,5 @@ mirrored2 = Draft.mirror([polygon1, polygon2], -p1, -p2) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Mirror/ro diff --git a/wiki/translations/ro/Draft_Module.md b/wiki/translations/ro/Draft_Module.md index 2cbab21bcf..db74d1cb35 100644 --- a/wiki/translations/ro/Draft_Module.md +++ b/wiki/translations/ro/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/ro 1. REDIRECT [Draft\_Workbench/ro](Draft_Workbench/ro.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/ro diff --git a/wiki/translations/ro/Draft_Move.md b/wiki/translations/ro/Draft_Move.md index 59d7fd5911..b40b2b5f62 100644 --- a/wiki/translations/ro/Draft_Move.md +++ b/wiki/translations/ro/Draft_Move.md @@ -9,6 +9,8 @@ SeeAlso:[Draft SubelementHighlight](Draft_SubelementHighlight.md) --- +# Draft Move/ro + @@ -134,8 +136,5 @@ list3 = Draft.move(list1, -2*vector, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Move/ro diff --git a/wiki/translations/ro/Draft_Offset.md b/wiki/translations/ro/Draft_Offset.md index 3fa3a4d5fb..bb68614418 100644 --- a/wiki/translations/ro/Draft_Offset.md +++ b/wiki/translations/ro/Draft_Offset.md @@ -8,6 +8,8 @@ SeeAlso:[Part 2D Offset](Part_Offset2D/ro.md) --- +# Draft Offset/ro + @@ -133,8 +135,5 @@ offset5 = Draft.offset(wire, 1.5*vector, copy=True, occ=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Offset/ro diff --git a/wiki/translations/ro/Draft_PathArray.md b/wiki/translations/ro/Draft_PathArray.md index d82c5d6696..26eabb60d0 100644 --- a/wiki/translations/ro/Draft_PathArray.md +++ b/wiki/translations/ro/Draft_PathArray.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Array](Draft_Array/ro.md) --- +# Draft PathArray/ro + @@ -279,8 +281,5 @@ path_array2 = Draft.make_path_array(obj, wire, count=3, extra=App.Vector(0, -500 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathArray/ro diff --git a/wiki/translations/ro/Draft_Point.md b/wiki/translations/ro/Draft_Point.md index eb471aeda1..b5f60d2c86 100644 --- a/wiki/translations/ro/Draft_Point.md +++ b/wiki/translations/ro/Draft_Point.md @@ -7,6 +7,8 @@ Shortcut:P T --- +# Draft Point/ro + @@ -176,8 +178,5 @@ for i in range(N): doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Point/ro diff --git a/wiki/translations/ro/Draft_PointArray.md b/wiki/translations/ro/Draft_PointArray.md index 05f6ab6333..4a068f13f3 100644 --- a/wiki/translations/ro/Draft_PointArray.md +++ b/wiki/translations/ro/Draft_PointArray.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Array](Draft_Array.md), [[Draft PathArray]] --- +# Draft PointArray/ro + @@ -234,8 +236,5 @@ point_array = Draft.make_point_array(polygon, compound) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PointArray/ro diff --git a/wiki/translations/ro/Draft_Polygon.md b/wiki/translations/ro/Draft_Polygon.md index 612adb8530..257722009c 100644 --- a/wiki/translations/ro/Draft_Polygon.md +++ b/wiki/translations/ro/Draft_Polygon.md @@ -8,6 +8,8 @@ Version:0.7 --- +# Draft Polygon/ro + @@ -190,8 +192,5 @@ Polygon3 = Draft.make_polygon(6, radius=1450, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Polygon/ro diff --git a/wiki/translations/ro/Draft_Preferences.md b/wiki/translations/ro/Draft_Preferences.md index 6922d75ee7..ee32f4058c 100644 --- a/wiki/translations/ro/Draft_Preferences.md +++ b/wiki/translations/ro/Draft_Preferences.md @@ -1,10 +1,4 @@ # Draft Preferences/ro - - - - - - {{TOCright}} @@ -508,3 +502,6 @@ On the *Texts and dimensions* tab you can specify the following: [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Preferences/ro diff --git a/wiki/translations/ro/Draft_Rectangle.md b/wiki/translations/ro/Draft_Rectangle.md index dccade8ffd..781a3233d9 100644 --- a/wiki/translations/ro/Draft_Rectangle.md +++ b/wiki/translations/ro/Draft_Rectangle.md @@ -10,6 +10,8 @@ SeeAlso:[Part Box](Part_Box/ro.md) --- +# Draft Rectangle/ro + @@ -201,8 +203,5 @@ rectangle3 = Draft.make_rectangle(3500, 250, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rectangle/ro diff --git a/wiki/translations/ro/Draft_Rotate.md b/wiki/translations/ro/Draft_Rotate.md index 1e54bbdfca..349eca351b 100644 --- a/wiki/translations/ro/Draft_Rotate.md +++ b/wiki/translations/ro/Draft_Rotate.md @@ -7,6 +7,8 @@ Shortcut:**R** **O** --- +# Draft Rotate/ro + @@ -145,8 +147,5 @@ rot_list4 = Draft.rotate(list2, 4*angle2, center=cen, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rotate/ro diff --git a/wiki/translations/ro/Draft_Scale.md b/wiki/translations/ro/Draft_Scale.md index 82a993df3c..0fa3699cb6 100644 --- a/wiki/translations/ro/Draft_Scale.md +++ b/wiki/translations/ro/Draft_Scale.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Clone](Draft_Clone/ro.md) --- +# Draft Scale/ro + @@ -141,8 +143,5 @@ wires = Draft.scale([wire1, wire2], scale2, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Scale/ro diff --git a/wiki/translations/ro/Draft_Select.md b/wiki/translations/ro/Draft_Select.md index ecde395373..f9e286c3af 100644 --- a/wiki/translations/ro/Draft_Select.md +++ b/wiki/translations/ro/Draft_Select.md @@ -1,2 +1,5 @@ # Draft Select/ro 1. REDIRECT [Selection\_methods](Selection_methods.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Select/ro diff --git a/wiki/translations/ro/Draft_SelectGroup.md b/wiki/translations/ro/Draft_SelectGroup.md index adb007c981..4a602d505d 100644 --- a/wiki/translations/ro/Draft_SelectGroup.md +++ b/wiki/translations/ro/Draft_SelectGroup.md @@ -7,6 +7,8 @@ SeeAlso:[Draft AddToGroup](Draft_AddToGroup.md), [Std Group](Std_Group.md) --- +# Draft SelectGroup/ro + @@ -52,8 +54,5 @@ The command currently does not work well with layers and can produce confusing r - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectGroup/ro diff --git a/wiki/translations/ro/Draft_SelectPlane.md b/wiki/translations/ro/Draft_SelectPlane.md index 2e4ece0a27..84f15f93ed 100644 --- a/wiki/translations/ro/Draft_SelectPlane.md +++ b/wiki/translations/ro/Draft_SelectPlane.md @@ -8,6 +8,8 @@ SeeAlso:[[Draft SetWorkingPlaneProxy]] --- +# Draft SelectPlane/ro + @@ -168,8 +170,5 @@ projection = my_plane.projectPoint(App.Vector(10, 15, 2)) print(projection) ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectPlane/ro diff --git a/wiki/translations/ro/Draft_SetWorkingPlaneProxy.md b/wiki/translations/ro/Draft_SetWorkingPlaneProxy.md index eb825315ea..d27e709854 100644 --- a/wiki/translations/ro/Draft_SetWorkingPlaneProxy.md +++ b/wiki/translations/ro/Draft_SetWorkingPlaneProxy.md @@ -1,2 +1,5 @@ # Draft SetWorkingPlaneProxy/ro 1. REDIRECT [Draft\_WorkingPlaneProxy/ro](Draft_WorkingPlaneProxy/ro.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SetWorkingPlaneProxy/ro diff --git a/wiki/translations/ro/Draft_Shape2DView.md b/wiki/translations/ro/Draft_Shape2DView.md index 3421b9bd09..36da7fd5d2 100644 --- a/wiki/translations/ro/Draft_Shape2DView.md +++ b/wiki/translations/ro/Draft_Shape2DView.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/ro.md), [Arch](Arch_Workbench/ro.md) --- +# Draft Shape2DView/ro + @@ -142,8 +144,5 @@ shape3.ProjectionMode = "Individual Faces" doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Shape2DView/ro diff --git a/wiki/translations/ro/Draft_ShapeString.md b/wiki/translations/ro/Draft_ShapeString.md index 2a50eed261..4f4077eece 100644 --- a/wiki/translations/ro/Draft_ShapeString.md +++ b/wiki/translations/ro/Draft_ShapeString.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Text](Draft_Text/ro.md), [Part Extrude](Part_Extrude/ro.md) --- +# Draft ShapeString/ro + @@ -219,8 +221,5 @@ S3.Placement.Rotation = App.Rotation(zaxis, 180) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString/ro diff --git a/wiki/translations/ro/Draft_ShapeString_tutorial.md b/wiki/translations/ro/Draft_ShapeString_tutorial.md index c103610e42..15aa2be23c 100644 --- a/wiki/translations/ro/Draft_ShapeString_tutorial.md +++ b/wiki/translations/ro/Draft_ShapeString_tutorial.md @@ -1,7 +1,4 @@ # Draft ShapeString tutorial/ro - - -
@@ -332,4 +329,7 @@ See the forum thread, [How to use ShapeStrings in PartDesign](https://forum.free {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString tutorial/ro diff --git a/wiki/translations/ro/Draft_ShowSnapBar.md b/wiki/translations/ro/Draft_ShowSnapBar.md index b34ddffb6d..247202820f 100644 --- a/wiki/translations/ro/Draft_ShowSnapBar.md +++ b/wiki/translations/ro/Draft_ShowSnapBar.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/ro.md), [Arch](Arch_Workbench/ro.md) --- +# Draft ShowSnapBar/ro +
@@ -31,8 +33,5 @@ Această comandă afișează/ascunde bara de instrumente [ snapping](Draft_Snap. - Select the **View → Toolbars → Draft Snap** option from the menu. - Right-click an empty space in the [toolbar area](Interface.md) and select the **Draft Snap** option from the menu that appears. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShowSnapBar/ro diff --git a/wiki/translations/ro/Draft_Slope.md b/wiki/translations/ro/Draft_Slope.md index 09c0944ed4..9b7fd25bc7 100644 --- a/wiki/translations/ro/Draft_Slope.md +++ b/wiki/translations/ro/Draft_Slope.md @@ -1,3 +1,4 @@ +# Draft Slope/ro --- - GuiCommand: Name:Draft Slope Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → Utilities → Set Slope SeeAlso:--- @@ -40,8 +41,5 @@ See also: [Autogenerated API documentation](https://freecad.github.io/SourceDoc/ There is no Python method to slope objects. To emulate the results of the Draft Slope command the `Points` property of wire objects has to be modified. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Slope/ro diff --git a/wiki/translations/ro/Draft_Snap.md b/wiki/translations/ro/Draft_Snap.md index 8a21089436..a05a4cae52 100644 --- a/wiki/translations/ro/Draft_Snap.md +++ b/wiki/translations/ro/Draft_Snap.md @@ -1,10 +1,4 @@ # Draft Snap/ro - - - - - - {{TOCright}} ## Description @@ -118,3 +112,6 @@ Note that after changing some preferences you must restart FreeCAD. [Category:User Documentation/ro](Category:User_Documentation/ro.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap/ro diff --git a/wiki/translations/ro/Draft_Snap_Angle.md b/wiki/translations/ro/Draft_Snap_Angle.md index 984a0786a7..41e2f638a5 100644 --- a/wiki/translations/ro/Draft_Snap_Angle.md +++ b/wiki/translations/ro/Draft_Snap_Angle.md @@ -1,3 +1,4 @@ +# Draft Snap Angle/ro --- - GuiCommand: Name:Draft Angle Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [[Draft Snap Snap]] → Angle|Shortcut: SeeAlso:--- @@ -42,8 +43,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Angle/ro diff --git a/wiki/translations/ro/Draft_Snap_Center.md b/wiki/translations/ro/Draft_Snap_Center.md index 16a79d9b2e..5c22a005a0 100644 --- a/wiki/translations/ro/Draft_Snap_Center.md +++ b/wiki/translations/ro/Draft_Snap_Center.md @@ -1,3 +1,4 @@ +# Draft Snap Center/ro --- - GuiCommand: Name:Draft Center Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [[Draft Snap Snap]] → Center|Shortcut: SeeAlso:--- @@ -42,8 +43,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Center/ro diff --git a/wiki/translations/ro/Draft_Snap_Endpoint.md b/wiki/translations/ro/Draft_Snap_Endpoint.md index 4225015e07..1aac4e1d6d 100644 --- a/wiki/translations/ro/Draft_Snap_Endpoint.md +++ b/wiki/translations/ro/Draft_Snap_Endpoint.md @@ -1,3 +1,4 @@ +# Draft Snap Endpoint/ro --- - GuiCommand: Name:Draft Endpoint Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [[Draft Snap Snap]] → Endpoint|Shortcut: SeeAlso:--- @@ -44,8 +45,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Endpoint/ro diff --git a/wiki/translations/ro/Draft_Snap_Extension.md b/wiki/translations/ro/Draft_Snap_Extension.md index 5fa327e9d9..02810a924c 100644 --- a/wiki/translations/ro/Draft_Snap_Extension.md +++ b/wiki/translations/ro/Draft_Snap_Extension.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Snap](Draft_Snap/ro.md), [Draft ToggleSnap](Draft_ToggleSnap/ro.md) --- +# Draft Snap Extension/ro + @@ -44,8 +46,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Extension/ro diff --git a/wiki/translations/ro/Draft_Snap_Grid.md b/wiki/translations/ro/Draft_Snap_Grid.md index 9c6590814a..7be527c6e0 100644 --- a/wiki/translations/ro/Draft_Snap_Grid.md +++ b/wiki/translations/ro/Draft_Snap_Grid.md @@ -7,6 +7,8 @@ SeeAlso:[[Draft ToggleGrid/ro]], [[Draft Snap/ro]] --- +# Draft Snap Grid/ro + @@ -50,5 +52,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Grid/ro diff --git a/wiki/translations/ro/Draft_Snap_Intersection.md b/wiki/translations/ro/Draft_Snap_Intersection.md index 765fdeb32c..4661e1d68d 100644 --- a/wiki/translations/ro/Draft_Snap_Intersection.md +++ b/wiki/translations/ro/Draft_Snap_Intersection.md @@ -1,3 +1,4 @@ +# Draft Snap Intersection/ro --- - GuiCommand: Name:Draft Intersection Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [[Draft_Snap Snap]] → Intersection|Shortcut: SeeAlso:--- @@ -37,8 +38,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Intersection/ro diff --git a/wiki/translations/ro/Draft_Snap_Lock.md b/wiki/translations/ro/Draft_Snap_Lock.md index e308721079..4626dde3ac 100644 --- a/wiki/translations/ro/Draft_Snap_Lock.md +++ b/wiki/translations/ro/Draft_Snap_Lock.md @@ -7,6 +7,8 @@ SeeAlso:[[Draft Snap/ro]], [[Draft ToggleGrid/ro]] --- +# Draft Snap Lock/ro + @@ -29,8 +31,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). - Press the **** button in the [Draft snap widget](Draft_snap_widget.md) and in the menu select the ** Snap Lock** option. - Use the \"in-command\" shortcut: **S**. This shortcut can only be used if a command is active and does not work for all commands. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Lock/ro diff --git a/wiki/translations/ro/Draft_Snap_Midpoint.md b/wiki/translations/ro/Draft_Snap_Midpoint.md index e8192e2175..a6afde0a2d 100644 --- a/wiki/translations/ro/Draft_Snap_Midpoint.md +++ b/wiki/translations/ro/Draft_Snap_Midpoint.md @@ -1,3 +1,4 @@ +# Draft Snap Midpoint/ro --- - GuiCommand: Name:Draft Midpoint Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [Shortcut:''None'' SeeAlso:[[Draft Snap](Draft_Snap___Snap]]_→_Midpoint.md)--- @@ -40,8 +41,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Midpoint/ro diff --git a/wiki/translations/ro/Draft_Snap_Near.md b/wiki/translations/ro/Draft_Snap_Near.md index 1be9cecf91..550c592151 100644 --- a/wiki/translations/ro/Draft_Snap_Near.md +++ b/wiki/translations/ro/Draft_Snap_Near.md @@ -1,3 +1,4 @@ +# Draft Snap Near/ro --- - GuiCommand: Name:Draft Snap Near Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [[Draft Snap Snap]] → Near|Shortcut: SeeAlso:--- @@ -58,8 +59,5 @@ Funcționează și cu Draft Move and Draft Rotate. See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Near/ro diff --git a/wiki/translations/ro/Draft_Snap_Parallel.md b/wiki/translations/ro/Draft_Snap_Parallel.md index ba17beaa27..f436bffd10 100644 --- a/wiki/translations/ro/Draft_Snap_Parallel.md +++ b/wiki/translations/ro/Draft_Snap_Parallel.md @@ -1,3 +1,4 @@ +# Draft Snap Parallel/ro --- - GuiCommand: Name:Draft Parallel Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [[Draft Snap Snap]] → Parallel|Shortcut: SeeAlso:--- @@ -40,8 +41,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Parallel/ro diff --git a/wiki/translations/ro/Draft_Snap_Special.md b/wiki/translations/ro/Draft_Snap_Special.md index 1ce3282801..5797743dcf 100644 --- a/wiki/translations/ro/Draft_Snap_Special.md +++ b/wiki/translations/ro/Draft_Snap_Special.md @@ -1,3 +1,4 @@ +# Draft Snap Special/ro --- - GuiCommand: Name:Draft Special Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [[Draft Snap Snap]] → Special|Shortcut: SeeAlso:--- @@ -44,8 +45,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Special/ro diff --git a/wiki/translations/ro/Draft_Snap_WorkingPlane.md b/wiki/translations/ro/Draft_Snap_WorkingPlane.md index 9b40da7e06..4f64221f1f 100644 --- a/wiki/translations/ro/Draft_Snap_WorkingPlane.md +++ b/wiki/translations/ro/Draft_Snap_WorkingPlane.md @@ -1,3 +1,4 @@ +# Draft Snap WorkingPlane/ro --- - GuiCommand: Name:Draft WorkingPlane Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → [[Draft Snap Snap]] → WorkingPlane|Shortcut: SeeAlso:--- @@ -37,8 +38,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap WorkingPlane/ro diff --git a/wiki/translations/ro/Draft_Stretch.md b/wiki/translations/ro/Draft_Stretch.md index 3878d3f9c2..ad043a385a 100644 --- a/wiki/translations/ro/Draft_Stretch.md +++ b/wiki/translations/ro/Draft_Stretch.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Offset](Draft_Offset/ro.md) --- +# Draft Stretch/ro + @@ -88,8 +90,5 @@ Instrumentul Stretch nu are nicio funcție directă de tip python deoarece tot c There is no Python method to stretch objects. To emulate the results of the Draft Stretch command geometric properties of objects have to be modified. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Stretch/ro diff --git a/wiki/translations/ro/Draft_Text.md b/wiki/translations/ro/Draft_Text.md index 2219315516..d4306be546 100644 --- a/wiki/translations/ro/Draft_Text.md +++ b/wiki/translations/ro/Draft_Text.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Label](Draft_Label.md), [Draft ShapeString](Draft_ShapeString.md) --- +# Draft Text/ro + @@ -214,8 +216,5 @@ text3.ViewObject.FontSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Text/ro diff --git a/wiki/translations/ro/Draft_ToggleConstructionMode.md b/wiki/translations/ro/Draft_ToggleConstructionMode.md index c0f6c27da3..895bacc054 100644 --- a/wiki/translations/ro/Draft_ToggleConstructionMode.md +++ b/wiki/translations/ro/Draft_ToggleConstructionMode.md @@ -1,3 +1,4 @@ +# Draft ToggleConstructionMode/ro --- - GuiCommand: Name:Draft ToggleConstructionMode Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → Utilities → Toggle construction mode SeeAlso:[[Draft_AddConstruction]]--- @@ -54,8 +55,5 @@ In FreeCAD version 0.19 this command and the [Draft AddConstruction](Draft_AddCo - To change the label ((v0.20) ) of the construction group: **Edit → Preferences... → Draft → General settings → Construction Geometry → Construction group name**. - To change the color that is used: **Edit → Preferences... → Draft → General settings → Construction Geometry → Construction geometry color**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleConstructionMode/ro diff --git a/wiki/translations/ro/Draft_ToggleContinueMode.md b/wiki/translations/ro/Draft_ToggleContinueMode.md index 0c611961f5..cf803634e0 100644 --- a/wiki/translations/ro/Draft_ToggleContinueMode.md +++ b/wiki/translations/ro/Draft_ToggleContinueMode.md @@ -1,3 +1,4 @@ +# Draft ToggleContinueMode/ro --- - GuiCommand: Name:Draft ToggleContinueMode Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → Utilities → Toggle continue mode--- @@ -31,8 +32,5 @@ Unele instrumente ale modulelor Draft și Arch conțin o casetă de selectare Co - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleContinueMode/ro diff --git a/wiki/translations/ro/Draft_ToggleDisplayMode.md b/wiki/translations/ro/Draft_ToggleDisplayMode.md index b3a6022db9..4c15ad5fcd 100644 --- a/wiki/translations/ro/Draft_ToggleDisplayMode.md +++ b/wiki/translations/ro/Draft_ToggleDisplayMode.md @@ -1,3 +1,4 @@ +# Draft ToggleDisplayMode/ro --- - GuiCommand: Name:Draft ToggleDisplayMode Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → Utilities → Toggle display mode Shortcut:Shift + Space--- @@ -33,8 +34,5 @@ Acest instrument comută afișarea obiectelor selectate între Wireframe și Fla - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleDisplayMode/ro diff --git a/wiki/translations/ro/Draft_ToggleGrid.md b/wiki/translations/ro/Draft_ToggleGrid.md index b03d6f29a7..89f57b0a7a 100644 --- a/wiki/translations/ro/Draft_ToggleGrid.md +++ b/wiki/translations/ro/Draft_ToggleGrid.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Grid](Draft_Snap_Grid.md), [Draft SelectPlane](Draft_SelectPlane.md) --- +# Draft ToggleGrid/ro + @@ -42,8 +44,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - To use the grid select: **Edit → Preferences... → Draft → Grid and snapping → Grid → Use grid**. After changing this preference you must restart FreeCAD. - Several other grid preferences are also available: **Edit → Preferences... → Draft → Grid and snapping → Grid**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleGrid/ro diff --git a/wiki/translations/ro/Draft_Trimex.md b/wiki/translations/ro/Draft_Trimex.md index 27887f7a7c..acc0de7dfc 100644 --- a/wiki/translations/ro/Draft_Trimex.md +++ b/wiki/translations/ro/Draft_Trimex.md @@ -8,6 +8,8 @@ SeeAlso:[Part Extrude](Part_Extrude/ro.md) --- +# Draft Trimex/ro + @@ -141,8 +143,5 @@ solid = Draft.extrude(rectangle, vector, solid=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Trimex/ro diff --git a/wiki/translations/ro/Draft_UndoLine.md b/wiki/translations/ro/Draft_UndoLine.md index c74d3aa1f4..1714c26036 100644 --- a/wiki/translations/ro/Draft_UndoLine.md +++ b/wiki/translations/ro/Draft_UndoLine.md @@ -1,2 +1,5 @@ # Draft UndoLine/ro 1. REDIRECT [Draft\_Wire/ro](Draft_Wire/ro.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft UndoLine/ro diff --git a/wiki/translations/ro/Draft_Upgrade.md b/wiki/translations/ro/Draft_Upgrade.md index 7475c7ee5f..4c686f2576 100644 --- a/wiki/translations/ro/Draft_Upgrade.md +++ b/wiki/translations/ro/Draft_Upgrade.md @@ -1,3 +1,4 @@ +# Draft Upgrade/ro --- - GuiCommand: Name:Draft Upgrade Name:Draft Upgrade Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft -> Upgrade Shortcut:U P SeeAlso:[Draft Downgrade](Draft_Downgrade.md)--- @@ -100,8 +101,5 @@ add_list5, delete_list5 = Draft.upgrade(face, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Upgrade/ro diff --git a/wiki/translations/ro/Draft_Wire.md b/wiki/translations/ro/Draft_Wire.md index ecd7c8ab3d..b35eeb5f96 100644 --- a/wiki/translations/ro/Draft_Wire.md +++ b/wiki/translations/ro/Draft_Wire.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Line](Draft_Line/ro.md), [Draft BSpline](Draft_BSpline/ro.md) --- +# Draft Wire/ro + @@ -214,8 +216,5 @@ wire3 = Draft.make_wire([1.3*p3, p1, -1.7*p2], closed=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Wire/ro diff --git a/wiki/translations/ro/Draft_WireToBSpline.md b/wiki/translations/ro/Draft_WireToBSpline.md index 69806c7155..1492f6a4ab 100644 --- a/wiki/translations/ro/Draft_WireToBSpline.md +++ b/wiki/translations/ro/Draft_WireToBSpline.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/ro.md), [Arch](Arch_Workbench/ro.md) --- +# Draft WireToBSpline/ro + @@ -94,8 +96,5 @@ wire_from_spline = Draft.make_wire(points2) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WireToBSpline/ro diff --git a/wiki/translations/ro/Draft_Workbench.md b/wiki/translations/ro/Draft_Workbench.md index b0aa032ae1..487506f532 100644 --- a/wiki/translations/ro/Draft_Workbench.md +++ b/wiki/translations/ro/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/ro - - - - - -Draft workbench icon +# Draft workbench icon Draft Workbench/ro {{TOCright}} @@ -419,3 +413,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/ro diff --git a/wiki/translations/ro/Draft_WorkingPlaneProxy.md b/wiki/translations/ro/Draft_WorkingPlaneProxy.md index 3587f5f859..0eafdb228d 100644 --- a/wiki/translations/ro/Draft_WorkingPlaneProxy.md +++ b/wiki/translations/ro/Draft_WorkingPlaneProxy.md @@ -1,3 +1,4 @@ +# Draft WorkingPlaneProxy/ro --- - GuiCommand: Name:Draft SetWorkingPlaneProxy Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → Utilities → Create WP Proxy SeeAlso:[[Draft SelectPlane]]--- @@ -139,8 +140,5 @@ Gui.Snapper.setGrid() doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WorkingPlaneProxy/ro diff --git a/wiki/translations/ro/Draft_tutorial.md b/wiki/translations/ro/Draft_tutorial.md index 6b407aa035..565649ebc5 100644 --- a/wiki/translations/ro/Draft_tutorial.md +++ b/wiki/translations/ro/Draft_tutorial.md @@ -1,7 +1,4 @@ # Draft tutorial/ro - - -
@@ -398,4 +395,7 @@ The [Draft Workbench](Draft_Workbench.md) in many ways is similar to the [Sketch {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft tutorial/ro diff --git a/wiki/translations/ro/Drawing_API_example.md b/wiki/translations/ro/Drawing_API_example.md index 64718665ab..b53428c8b9 100644 --- a/wiki/translations/ro/Drawing_API_example.md +++ b/wiki/translations/ro/Drawing_API_example.md @@ -1,6 +1,4 @@ # Drawing API example/ro - - ## Introducere Fluxul de lucru pentru interfața grafică pentru [Drawing Workbench](Drawing_Workbench.md) este limitat, astfel încât API-ul de scripting este mai interesant. @@ -246,3 +244,6 @@ With those two, you can proceed as above for displaying them on the drawing page }} {{Drawing Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing API example/ro diff --git a/wiki/translations/ro/Drawing_Annotation.md b/wiki/translations/ro/Drawing_Annotation.md index c76456f3ef..46c5f3c6d5 100644 --- a/wiki/translations/ro/Drawing_Annotation.md +++ b/wiki/translations/ro/Drawing_Annotation.md @@ -1,3 +1,4 @@ +# Drawing Annotation/ro --- - GuiCommand: Name:Drawing Annotation Workbenches:[[Drawing Workbench Drawing]], Complete|MenuLocation:Drawing → Annotation Shortcut:none--- @@ -44,4 +45,7 @@ Această comandă vă permite să plasați un bloc de text pe un [Drawing page]( {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Annotation/ro diff --git a/wiki/translations/ro/Drawing_Clip.md b/wiki/translations/ro/Drawing_Clip.md index d53f8b7c12..ccc874c0fb 100644 --- a/wiki/translations/ro/Drawing_Clip.md +++ b/wiki/translations/ro/Drawing_Clip.md @@ -1,3 +1,4 @@ +# Drawing Clip/ro --- - GuiCommand: Name:Drawing Clip Workbenches:[[Drawing Workbench Drawing]], Complete|MenuLocation:Drawing → Clip Shortcut:none--- @@ -34,4 +35,7 @@ Această comandă vă permite să plasați un dreptunghi de tăiere pe un ecran {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Clip/ro diff --git a/wiki/translations/ro/Drawing_Documentation.md b/wiki/translations/ro/Drawing_Documentation.md index 9aa6aef6d1..c4ab193fac 100644 --- a/wiki/translations/ro/Drawing_Documentation.md +++ b/wiki/translations/ro/Drawing_Documentation.md @@ -1,5 +1,5 @@ # Drawing Documentation/ro - Această pagină documentează înțelegerea de către jcc242 a modulului Desen. Acesta include fișiere și caracteristici pe care le lucrează în prezent și este posibil să nu fie încă în ramura master. Sursa pentru aceste fișiere este pe [lui Github](https://github.com/jcc242/FreeCAD), dar aveți grijă, deoarece este foarte instabilă! +Această pagină documentează înțelegerea de către jcc242 a modulului Desen. Acesta include fișiere și caracteristici pe care le lucrează în prezent și este posibil să nu fie încă în ramura master. Sursa pentru aceste fișiere este pe [lui Github](https://github.com/jcc242/FreeCAD), dar aveți grijă, deoarece este foarte instabilă! ## Baza (Mod/Drawing) @@ -139,3 +139,6 @@ CanvasView is the actual QGraphicsScene object and DrawingView processes a list {{Drawing Tools navi}} [Category:Developer\_Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Documentation/ro diff --git a/wiki/translations/ro/Drawing_Landscape_A3.md b/wiki/translations/ro/Drawing_Landscape_A3.md index 6c09ef1de5..629116c626 100644 --- a/wiki/translations/ro/Drawing_Landscape_A3.md +++ b/wiki/translations/ro/Drawing_Landscape_A3.md @@ -1,3 +1,4 @@ +# Drawing Landscape A3/ro --- - GuiCommand: Name:Drawing Landscape A3 Workbenches:[[Drawing Workbench Drawing]], Complete|MenuLocation:Drawing → Insert new drawing → A3 Landscape Shortcut:none--- @@ -21,4 +22,7 @@ Dacă pagina nu apare, faceți clic pe [Drawing](Drawing_Workbench.md) > Drawing Landscape A3/ro diff --git a/wiki/translations/ro/Drawing_Module.md b/wiki/translations/ro/Drawing_Module.md index e2282d4688..24dff3752f 100644 --- a/wiki/translations/ro/Drawing_Module.md +++ b/wiki/translations/ro/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/ro 1. REDIRECT [Drawing\_Workbench/ro](Drawing_Workbench/ro.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/ro diff --git a/wiki/translations/ro/Drawing_Open_SVG.md b/wiki/translations/ro/Drawing_Open_SVG.md index 98047ee26a..e96fe31df4 100644 --- a/wiki/translations/ro/Drawing_Open_SVG.md +++ b/wiki/translations/ro/Drawing_Open_SVG.md @@ -1,3 +1,4 @@ +# Drawing Open SVG/ro --- - GuiCommand:/ro Name:Drawing Open SVG Name/ro:Drawing Open SVG Workbenches:[MenuLocation:Drawing → Open SVG... Shortcut:none SeeAlso:[[Drawing Save/ro|Drawing Save](Drawing_Workbench/ro___Drawing]],_Complete.md)--- @@ -15,4 +16,7 @@ Acest instrument deschide o foaie de desen creată anterior ca fișier SVG (graf {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Open SVG/ro diff --git a/wiki/translations/ro/Drawing_Openbrowser.md b/wiki/translations/ro/Drawing_Openbrowser.md index 4e3055c78f..145e9ce7d3 100644 --- a/wiki/translations/ro/Drawing_Openbrowser.md +++ b/wiki/translations/ro/Drawing_Openbrowser.md @@ -1,3 +1,4 @@ +# Drawing Openbrowser/ro --- - GuiCommand: Name:Drawing Openbrowser Workbenches:[[Drawing Workbench Drawing]], Complete|MenuLocation:Drawing → Open Browser Shortcut:none--- @@ -35,4 +36,7 @@ Această comandă vă permite să afișați o [ Drawing page](Drawing_Landscape_ {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Openbrowser/ro diff --git a/wiki/translations/ro/Drawing_Orthoviews.md b/wiki/translations/ro/Drawing_Orthoviews.md index 6dd79a0281..1884f4dc1e 100644 --- a/wiki/translations/ro/Drawing_Orthoviews.md +++ b/wiki/translations/ro/Drawing_Orthoviews.md @@ -1,3 +1,4 @@ +# Drawing Orthoviews/ro --- - GuiCommand: Name:Drawing Orthoviews Workbenches:[MenuLocation:Drawing → Insert orthographic views Shortcut:none SeeAlso:[[Drawing Landscape A3|Drawing Landscape A3](Drawing_Workbench___Drawing]],_Complete.md)--- @@ -68,4 +69,7 @@ De completat {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Orthoviews/ro diff --git a/wiki/translations/ro/Drawing_ProjectShape.md b/wiki/translations/ro/Drawing_ProjectShape.md index 55861f33a1..eed743e343 100644 --- a/wiki/translations/ro/Drawing_ProjectShape.md +++ b/wiki/translations/ro/Drawing_ProjectShape.md @@ -6,6 +6,8 @@ MenuLocation:Drawing → Project shape --- +# Drawing ProjectShape/ro +
@@ -108,4 +110,7 @@ Acest instrument creează o proiecți a obiectului selectate (Source) în the 3D {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing ProjectShape/ro diff --git a/wiki/translations/ro/Drawing_Save.md b/wiki/translations/ro/Drawing_Save.md index 63f260a3cc..0ba1ec80ae 100644 --- a/wiki/translations/ro/Drawing_Save.md +++ b/wiki/translations/ro/Drawing_Save.md @@ -1,3 +1,4 @@ +# Drawing Save/ro --- - GuiCommand:/ro Name:Drawing Save Name/ro:Drawing Save Workbenches:[MenuLocation:Drawing → Export page... Shortcut:none SeeAlso:[[Drawing Open SVG|Drawing Open SVG](Drawing_Workbench/ro___Drawing]],_Complete.md)--- @@ -17,4 +18,7 @@ Fișierele SVG sunt frecvente și pot fi vizualizate în majoritatea browserelor {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Save/ro diff --git a/wiki/translations/ro/Drawing_SpreadsheetView.md b/wiki/translations/ro/Drawing_SpreadsheetView.md index 5fcd691cc3..311a3de404 100644 --- a/wiki/translations/ro/Drawing_SpreadsheetView.md +++ b/wiki/translations/ro/Drawing_SpreadsheetView.md @@ -1,3 +1,4 @@ +# Drawing SpreadsheetView/ro --- - GuiCommand: Name:Drawing SpreadsheetView Workbenches:[[Drawing Workbench Drawing]]|MenuLocation:Drawing → Spreadsheet View--- @@ -48,4 +49,7 @@ Acest instrument vă permite să plasați o vizualizarea [spreadsheet](Spreadshe {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing SpreadsheetView/ro diff --git a/wiki/translations/ro/Drawing_Symbol.md b/wiki/translations/ro/Drawing_Symbol.md index aba3bdecc7..56a5e29338 100644 --- a/wiki/translations/ro/Drawing_Symbol.md +++ b/wiki/translations/ro/Drawing_Symbol.md @@ -1,3 +1,4 @@ +# Drawing Symbol/ro --- - GuiCommand: Name:Drawing Symbol Workbenches:[[Drawing Workbench Drawing]], Complete|MenuLocation:Drawing → Symbol Shortcut:none--- @@ -32,4 +33,7 @@ Această comandă vă permite să adăugați conținutul unei imagini SVG pe un {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Symbol/ro diff --git a/wiki/translations/ro/Drawing_Template_HowTo.md b/wiki/translations/ro/Drawing_Template_HowTo.md index 9b8b16db0b..4445386894 100644 --- a/wiki/translations/ro/Drawing_Template_HowTo.md +++ b/wiki/translations/ro/Drawing_Template_HowTo.md @@ -1,7 +1,4 @@ # Drawing Template HowTo/ro - - - **The [Drawing Workbench](Drawing_Workbench.md) became obsolete in v0.17. Consider using the [TechDraw Workbench](TechDraw_Workbench.md) instead.** @@ -233,4 +230,7 @@ Cele două instrumente folosite în acest tutorial au fost Inkscape și Kate. Ac {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Template HowTo/ro diff --git a/wiki/translations/ro/Drawing_View.md b/wiki/translations/ro/Drawing_View.md index f5f5db5001..cfe9aef33b 100644 --- a/wiki/translations/ro/Drawing_View.md +++ b/wiki/translations/ro/Drawing_View.md @@ -1,3 +1,4 @@ +# Drawing View/ro --- - GuiCommand:/ro Name:Drawing View Name/ro:Drawing View Workbenches:[MenuLocation:Drawing → Insert view in drawing Shortcut:none SeeAlso:[[Drawing Landscape A3/ro|Drawing Landscape A3](Drawing_Workbench/ro___Drawing]],_Complete.md)--- @@ -58,4 +59,7 @@ If you are looking for persective-orthographic toggling in 3D view check [Std Pe {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing View/ro diff --git a/wiki/translations/ro/Drawing_Workbench.md b/wiki/translations/ro/Drawing_Workbench.md index 99b3152a07..978112906b 100644 --- a/wiki/translations/ro/Drawing_Workbench.md +++ b/wiki/translations/ro/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/ro - - - **Development of the [[Drawing Workbench]] Elaborarea modulului de desenare a fost oprită și un nou modul [[TechDraw Workbench]] care intenționează să-l înlocuiască va fi introdus în versiunea 0.17. Ambele module vor fi furnizate în v0.17, dar modulul Desenare poate fi eliminat în versiunile viitoare.** Drawing workbench icon @@ -85,3 +82,6 @@ Unele note despre partea de programare a modulului de desen vor fi adăugate la }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/ro diff --git a/wiki/translations/ro/Drawing_tutorial.md b/wiki/translations/ro/Drawing_tutorial.md index f6a854ff34..a0c44f309a 100644 --- a/wiki/translations/ro/Drawing_tutorial.md +++ b/wiki/translations/ro/Drawing_tutorial.md @@ -1,5 +1,5 @@ # Drawing tutorial/ro - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** +**Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** {{TutorialInfo/ro @@ -136,4 +136,7 @@ FreeCAD supports the export of SVG and PDF files based on your **Drawings** {{Tutorials navi -}} {{Drawing Tools navi}} +}} {{Drawing Tools navi}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing tutorial/ro diff --git a/wiki/translations/ro/Dxf_Importer_Install.md b/wiki/translations/ro/Dxf_Importer_Install.md index e2aeb7e714..8a8c2ab627 100644 --- a/wiki/translations/ro/Dxf_Importer_Install.md +++ b/wiki/translations/ro/Dxf_Importer_Install.md @@ -1,7 +1,4 @@ # Dxf Importer Install/ro - - -
@@ -185,3 +182,6 @@ Utilizare Teigha. Teigha este un program complet și poate fi folosit fără Fre ### Links Video tutorial [FreeCAD Tutorial 24 - DXF/DWG Import](https://www.youtube.com/watch?v=wHxTWuDhc3M) + +--- +[documentation index](../README.md) > Dxf Importer Install/ro diff --git a/wiki/translations/ro/Embedding_FreeCAD.md b/wiki/translations/ro/Embedding_FreeCAD.md index c2371f0a62..5e8a8b0ac5 100644 --- a/wiki/translations/ro/Embedding_FreeCAD.md +++ b/wiki/translations/ro/Embedding_FreeCAD.md @@ -1,7 +1,4 @@ # Embedding FreeCAD/ro - - - {{TOCright}} ## Introduction @@ -185,3 +182,6 @@ Deoarece modulul FreeCAD Python este compilat din C ++ (mai degrabă decât de a }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCAD/ro diff --git a/wiki/translations/ro/Embedding_FreeCADGui.md b/wiki/translations/ro/Embedding_FreeCADGui.md index 61b909613c..519b931354 100644 --- a/wiki/translations/ro/Embedding_FreeCADGui.md +++ b/wiki/translations/ro/Embedding_FreeCADGui.md @@ -1,6 +1,4 @@ # Embedding FreeCADGui/ro - - ## Introduction It is possible to [import the FreeCAD module](Embedding_FreeCAD.md) into a [Python](Python.md) application, and use all its tools from the host application, but the graphical user interface (GUI) can be imported as a Python module as well. Normally you can only import the complete interface as a whole, not pieces of it; this is because the FreeCAD interface system is not only made of independent widgets and toolbars, but is a complex construction where several invisible components (such as the selection system, etc) are needed for the main [3D view](3D_view.md) to be able to function. @@ -488,3 +486,6 @@ In the source code there are examples of embedding FreeCAD with various graphica }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCADGui/ro diff --git a/wiki/translations/ro/Engine_Block_Tutorial.md b/wiki/translations/ro/Engine_Block_Tutorial.md index acf507b69d..ce5e8cb9b3 100644 --- a/wiki/translations/ro/Engine_Block_Tutorial.md +++ b/wiki/translations/ro/Engine_Block_Tutorial.md @@ -1,5 +1,5 @@ # Engine Block Tutorial/ro - } +}
@@ -298,6 +298,5 @@ Now that we have 3D objects for the bore holes and the outer shape, we can use a Your final object should look like the picture on the right. - - - +--- +[documentation index](../README.md) > Engine Block Tutorial/ro diff --git a/wiki/translations/ro/Export_to_STL_or_OBJ.md b/wiki/translations/ro/Export_to_STL_or_OBJ.md index 164ef1eb72..3cceefec5c 100644 --- a/wiki/translations/ro/Export_to_STL_or_OBJ.md +++ b/wiki/translations/ro/Export_to_STL_or_OBJ.md @@ -1,7 +1,4 @@ # Export to STL or OBJ/ro - - -
@@ -115,3 +112,6 @@ Puteți utiliza propriul fișier FreeCAD, dar puteți crea, de asemenea, un fiș [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Export to STL or OBJ/ro diff --git a/wiki/translations/ro/Extend_FEM_Module.md b/wiki/translations/ro/Extend_FEM_Module.md index e9673a3f29..a1510ba333 100644 --- a/wiki/translations/ro/Extend_FEM_Module.md +++ b/wiki/translations/ro/Extend_FEM_Module.md @@ -1,7 +1,4 @@ # Extend FEM Module/ro - - -
@@ -206,3 +203,6 @@ Adăugarea de noi constrângeri este destul de simplă. Pentru nou-veniți, exis
[Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Extend FEM Module/ro diff --git a/wiki/translations/ro/External_workbenches.md b/wiki/translations/ro/External_workbenches.md index 9057354f09..f09f2d38c1 100644 --- a/wiki/translations/ro/External_workbenches.md +++ b/wiki/translations/ro/External_workbenches.md @@ -1,10 +1,4 @@ # External workbenches/ro - - - - - - {{TOCright}} @@ -148,3 +142,6 @@ See the wiki page for more information [Translating an external workbench](Trans [Category:Addons](Category:Addons.md) [\*](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > External workbenches/ro diff --git a/wiki/translations/ro/Extra_python_modules.md b/wiki/translations/ro/Extra_python_modules.md index 6646ee1311..d92176dfcc 100644 --- a/wiki/translations/ro/Extra_python_modules.md +++ b/wiki/translations/ro/Extra_python_modules.md @@ -1,7 +1,4 @@ # Extra python modules/ro - - -
@@ -749,3 +746,6 @@ utils = LazyLoader('PathScripts', globals(), 'PathScripts.PathUtils') [Category:Python Code](Category:Python_Code.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > Extra python modules/ro diff --git a/wiki/translations/ro/FEM_Analysis.md b/wiki/translations/ro/FEM_Analysis.md index 1e35ad18c1..1e6d277d15 100644 --- a/wiki/translations/ro/FEM_Analysis.md +++ b/wiki/translations/ro/FEM_Analysis.md @@ -1,3 +1,4 @@ +# FEM Analysis/ro --- - GuiCommand:/ro Name:FEM Analysis Name/ro:FEM Analysis MenuLocation:Model → Analysis container‏‎ |Workbenches:[Shortcut:N,A SeeAlso:[[FEM_tutorial/ro|FEM tutorial](FEM_Workbench/ro___FEM]].md)--- @@ -93,4 +94,7 @@ App.ActiveDocument.MechanicalAnalysis.Member = member {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Analysis/ro diff --git a/wiki/translations/ro/FEM_CalculiX.md b/wiki/translations/ro/FEM_CalculiX.md index 5eca39eca1..4b40a3d59e 100644 --- a/wiki/translations/ro/FEM_CalculiX.md +++ b/wiki/translations/ro/FEM_CalculiX.md @@ -1,5 +1,5 @@ # FEM CalculiX/ro - {{TOCright}} +{{TOCright}} ## Introduction @@ -88,3 +88,6 @@ Reaction forces can be found in ccx\_dat\_file which contains reaction force com }} [Category:Poweruser\_Documentation](Category:Poweruser_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Poweruser_Documentation](Category:Poweruser_Documentation.md) > FEM CalculiX/ro diff --git a/wiki/translations/ro/FEM_CalculiX_Cantilever_3D.md b/wiki/translations/ro/FEM_CalculiX_Cantilever_3D.md index ec28f1b53f..5cc5c33d1c 100644 --- a/wiki/translations/ro/FEM_CalculiX_Cantilever_3D.md +++ b/wiki/translations/ro/FEM_CalculiX_Cantilever_3D.md @@ -1,7 +1,4 @@ # FEM CalculiX Cantilever 3D/ro - - -
@@ -248,4 +245,7 @@ Deformarea în direcția x trebuie să fie de 19,05 mm. {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM CalculiX Cantilever 3D/ro diff --git a/wiki/translations/ro/FEM_ConstraintBearing.md b/wiki/translations/ro/FEM_ConstraintBearing.md index a692857666..60b1db54bc 100644 --- a/wiki/translations/ro/FEM_ConstraintBearing.md +++ b/wiki/translations/ro/FEM_ConstraintBearing.md @@ -1,3 +1,4 @@ +# FEM ConstraintBearing/ro --- - GuiCommand: Name:FEM ConstraintBearing MenuLocation:Model → Mechanical Constraints → Constraint bearing |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -28,4 +29,7 @@ Not supported by CalculiX Interface! {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintBearing/ro diff --git a/wiki/translations/ro/FEM_ConstraintContact.md b/wiki/translations/ro/FEM_ConstraintContact.md index f8e4373bd6..23671c0b2d 100644 --- a/wiki/translations/ro/FEM_ConstraintContact.md +++ b/wiki/translations/ro/FEM_ConstraintContact.md @@ -1,3 +1,4 @@ +# FEM ConstraintContact/ro --- - GuiCommand:/ro Name:FEM ConstraintContact Name/ro:FEM ConstraintContact MenuLocation:Model → Mechanical Constraints → Constraint contact |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/ro|FEM tutorial](FEM_Workbench/ro___FEM]].md)--- @@ -74,4 +75,7 @@ Creează o constrângere MEF pentru contactul între două suprafețe. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintContact/ro diff --git a/wiki/translations/ro/FEM_ConstraintDisplacement.md b/wiki/translations/ro/FEM_ConstraintDisplacement.md index 4b456bb12b..ea36d6e0d4 100644 --- a/wiki/translations/ro/FEM_ConstraintDisplacement.md +++ b/wiki/translations/ro/FEM_ConstraintDisplacement.md @@ -1,3 +1,4 @@ +# FEM ConstraintDisplacement/ro --- - GuiCommand:/ro Name:FEM ConstraintDisplacement Name/ro:FEM ConstraintDisplacement MenuLocation:Model → Mechanical Constraints → Constraint displacement |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/ro|FEM tutorial](FEM_Workbench/ro___FEM]].md)--- @@ -39,4 +40,7 @@ Creează o constrângere MEF pentru a o deplasare prescrisă a unui obiect selec {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintDisplacement/ro diff --git a/wiki/translations/ro/FEM_ConstraintFixed.md b/wiki/translations/ro/FEM_ConstraintFixed.md index cc5a80c581..d961c135bf 100644 --- a/wiki/translations/ro/FEM_ConstraintFixed.md +++ b/wiki/translations/ro/FEM_ConstraintFixed.md @@ -1,3 +1,4 @@ +# FEM ConstraintFixed/ro --- - GuiCommand:/ro Name:FEM ConstraintFixed Name/ro:FEM ConstraintFixed MenuLocation:Model → Mechanical Constraints → Constraint fixed |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/ro|FEM tutorial](FEM_Workbench/ro___FEM]].md)--- @@ -40,4 +41,7 @@ Nu puteți amesteca tipuri diferite de obiecte în aceeași constrângere. Utliz {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintFixed/ro diff --git a/wiki/translations/ro/FEM_ConstraintForce.md b/wiki/translations/ro/FEM_ConstraintForce.md index 11ac91a2eb..83b60ed664 100644 --- a/wiki/translations/ro/FEM_ConstraintForce.md +++ b/wiki/translations/ro/FEM_ConstraintForce.md @@ -1,3 +1,4 @@ +# FEM ConstraintForce/ro --- - GuiCommand: Name:FEM ConstraintForce MenuLocation:Model → Mechanical Constraints → Constraint force |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -72,4 +73,7 @@ Această comandă aplică o forță de valoare dată \[N\] la geometria țintei {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintForce/ro diff --git a/wiki/translations/ro/FEM_ConstraintHeatflux.md b/wiki/translations/ro/FEM_ConstraintHeatflux.md index 4feac3a990..1343e116ba 100644 --- a/wiki/translations/ro/FEM_ConstraintHeatflux.md +++ b/wiki/translations/ro/FEM_ConstraintHeatflux.md @@ -1,3 +1,4 @@ +# FEM ConstraintHeatflux/ro --- - GuiCommand: Name:FEM ConstraintHeatflux MenuLocation:Model → Thermal Constraints → Constraint heatflux |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -36,4 +37,7 @@ Această constrângere specifică schimbul de căldură (transferul de căldură {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintHeatflux/ro diff --git a/wiki/translations/ro/FEM_ConstraintInitialTemperature.md b/wiki/translations/ro/FEM_ConstraintInitialTemperature.md index c14920d52d..e70a9cc1a2 100644 --- a/wiki/translations/ro/FEM_ConstraintInitialTemperature.md +++ b/wiki/translations/ro/FEM_ConstraintInitialTemperature.md @@ -1,3 +1,4 @@ +# FEM ConstraintInitialTemperature/ro --- - GuiCommand: Name:FEM ConstraintInitialTemperature MenuLocation:Model → Thermal Constraints → Constraint initial temperature |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -39,4 +40,7 @@ The constraint applies the initial temperature to all nodes in the FEA model {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintInitialTemperature/ro diff --git a/wiki/translations/ro/FEM_ConstraintPlaneRotation.md b/wiki/translations/ro/FEM_ConstraintPlaneRotation.md index 8ba6a6e3cd..7d99e945a6 100644 --- a/wiki/translations/ro/FEM_ConstraintPlaneRotation.md +++ b/wiki/translations/ro/FEM_ConstraintPlaneRotation.md @@ -1,3 +1,4 @@ +# FEM ConstraintPlaneRotation/ro --- - GuiCommand:/ro Name:FEM ConstraintPlaneRotation Name/ro:FEM ConstraintPlaneRotation MenuLocation:Model → Mechanical Constraints → Constraint plane rotation |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/ro|FEM tutorial](FEM_Workbench/ro___FEM]].md)--- @@ -52,4 +53,7 @@ Creează o constrângere FEM pentru păstrarea nodurilor în același plan {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintPlaneRotation/ro diff --git a/wiki/translations/ro/FEM_ConstraintPressure.md b/wiki/translations/ro/FEM_ConstraintPressure.md index f5a37f6b7c..99d1fd2c30 100644 --- a/wiki/translations/ro/FEM_ConstraintPressure.md +++ b/wiki/translations/ro/FEM_ConstraintPressure.md @@ -1,3 +1,4 @@ +# FEM ConstraintPressure/ro --- - GuiCommand:/ro Name:FEM ConstraintPressure Name/ro:FEM ConstraintPressure MenuLocation:Model → Mechanical Constraints → Constraint pressure |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/ro|FEM tutorial](FEM_Workbench/ro___FEM]].md)--- @@ -45,4 +46,7 @@ Distribuția presiunii este întotdeauna uniformă și întotdeauna perpendicula {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintPressure/ro diff --git a/wiki/translations/ro/FEM_ConstraintPulley.md b/wiki/translations/ro/FEM_ConstraintPulley.md index bd29a17940..7e7b21ac26 100644 --- a/wiki/translations/ro/FEM_ConstraintPulley.md +++ b/wiki/translations/ro/FEM_ConstraintPulley.md @@ -1,3 +1,4 @@ +# FEM ConstraintPulley/ro --- - GuiCommand: Name:FEM ConstraintPulley MenuLocation:Model → Mechanical Constraints → Constraint pulley |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -22,4 +23,7 @@ Nu este suportată de către CalculiX Interface! {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintPulley/ro diff --git a/wiki/translations/ro/FEM_ConstraintSelfWeight.md b/wiki/translations/ro/FEM_ConstraintSelfWeight.md index 7d68ba8522..3168b42d49 100644 --- a/wiki/translations/ro/FEM_ConstraintSelfWeight.md +++ b/wiki/translations/ro/FEM_ConstraintSelfWeight.md @@ -1,3 +1,4 @@ +# FEM ConstraintSelfWeight/ro --- - GuiCommand:/ro Name:FEM ConstraintSelfWeight Name/ro:FEM ConstraintSelfWeight MenuLocation:Model → Mechanical Constraints → Constraint self weight |Workbenches:[Shortcut:C,W SeeAlso:[[FEM_tutorial/ro|FEM tutorial](FEM_Workbench/ro___FEM]].md)--- @@ -103,4 +104,7 @@ Eall,GRAV,9810,0.0,0.0,-1.0 {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintSelfWeight/ro diff --git a/wiki/translations/ro/FEM_ConstraintTemperature.md b/wiki/translations/ro/FEM_ConstraintTemperature.md index 467c3a6a43..989d528413 100644 --- a/wiki/translations/ro/FEM_ConstraintTemperature.md +++ b/wiki/translations/ro/FEM_ConstraintTemperature.md @@ -1,3 +1,4 @@ +# FEM ConstraintTemperature/ro --- - GuiCommand: Name:FEM ConstraintTemperature MenuLocation:Model → Thermal Constraints → Constraint temperature |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -39,4 +40,7 @@ Crée une contrainte FEM pour une condition de limite de température. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintTemperature/ro diff --git a/wiki/translations/ro/FEM_ConstraintTransform.md b/wiki/translations/ro/FEM_ConstraintTransform.md index f6a71f4043..5f857c1e37 100644 --- a/wiki/translations/ro/FEM_ConstraintTransform.md +++ b/wiki/translations/ro/FEM_ConstraintTransform.md @@ -1,3 +1,4 @@ +# FEM ConstraintTransform/ro --- - GuiCommand: Name:FEM ConstraintTransform MenuLocation: Model → Mechanical constraints → Constraint transform |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -20,4 +21,7 @@ De completat {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintTransform/ro diff --git a/wiki/translations/ro/FEM_CreateNodesSet.md b/wiki/translations/ro/FEM_CreateNodesSet.md index a24a4bea04..2b96356a8f 100644 --- a/wiki/translations/ro/FEM_CreateNodesSet.md +++ b/wiki/translations/ro/FEM_CreateNodesSet.md @@ -1,3 +1,4 @@ +# FEM CreateNodesSet/ro --- - GuiCommand: Name:FEM CreateNodesSet MenuLocation:Mesh → Nodes set |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -30,4 +31,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM CreateNodesSet/ro diff --git a/wiki/translations/ro/FEM_ElementFluid1D.md b/wiki/translations/ro/FEM_ElementFluid1D.md index 6bdf42ffa3..f415891510 100644 --- a/wiki/translations/ro/FEM_ElementFluid1D.md +++ b/wiki/translations/ro/FEM_ElementFluid1D.md @@ -1,3 +1,4 @@ +# FEM ElementFluid1D/ro --- - GuiCommand:/ro Name:FEM ElementFluid1D Name/ro:FEM ElementFluid1D MenuLocation:Model → Fluid section for 1D flow |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/ro|FEM tutorial](FE,_Workbench/ro___FEM]].md)--- @@ -55,4 +56,7 @@ Creează o MEF în secțiunea de fluid pentru rețele aerodinamice și hidraulic {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementFluid1D/ro diff --git a/wiki/translations/ro/FEM_ElementGeometry1D.md b/wiki/translations/ro/FEM_ElementGeometry1D.md index 1ee012f2a2..cf95a1ea8f 100644 --- a/wiki/translations/ro/FEM_ElementGeometry1D.md +++ b/wiki/translations/ro/FEM_ElementGeometry1D.md @@ -1,3 +1,4 @@ +# FEM ElementGeometry1D/ro --- - GuiCommand: Name:FEM ElementGeometry1D MenuLocation:Model → Beam cross section |Workbenches:[Shortcut:C,B SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -43,4 +44,7 @@ ElementGeometry1D is used to define cross sections for beam elements. Currently {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementGeometry1D/ro diff --git a/wiki/translations/ro/FEM_ElementGeometry2D.md b/wiki/translations/ro/FEM_ElementGeometry2D.md index c57e04d05b..2458755414 100644 --- a/wiki/translations/ro/FEM_ElementGeometry2D.md +++ b/wiki/translations/ro/FEM_ElementGeometry2D.md @@ -1,3 +1,4 @@ +# FEM ElementGeometry2D/ro --- - GuiCommand: Name:FEM ElementGeometry2D MenuLocation:Model →Shell plate tickness |Workbenches:[Shortcut:C,S SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -51,4 +52,7 @@ For viewing results from CalculiX solver on the mesh expanded to the prescribed {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementGeometry2D/ro diff --git a/wiki/translations/ro/FEM_ElementRotation1D.md b/wiki/translations/ro/FEM_ElementRotation1D.md index 41b500cf05..7f21d40db3 100644 --- a/wiki/translations/ro/FEM_ElementRotation1D.md +++ b/wiki/translations/ro/FEM_ElementRotation1D.md @@ -1,3 +1,4 @@ +# FEM ElementRotation1D/ro --- - GuiCommand: Name:FEM ElementRotation1D MenuLocation: Model → Beam rotation |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -39,4 +40,7 @@ De completat {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementRotation1D/ro diff --git a/wiki/translations/ro/FEM_EquationElasticity.md b/wiki/translations/ro/FEM_EquationElasticity.md index 752ca62bb1..2e2f3496f4 100644 --- a/wiki/translations/ro/FEM_EquationElasticity.md +++ b/wiki/translations/ro/FEM_EquationElasticity.md @@ -1,3 +1,4 @@ +# FEM EquationElasticity/ro --- - GuiCommand: Name:FEM EquationElasticity MenuLocation: Solve → Equation elasticity |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -16,4 +17,7 @@ De completat {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationElasticity/ro diff --git a/wiki/translations/ro/FEM_EquationFlow.md b/wiki/translations/ro/FEM_EquationFlow.md index 757cc80208..d116f4ef49 100644 --- a/wiki/translations/ro/FEM_EquationFlow.md +++ b/wiki/translations/ro/FEM_EquationFlow.md @@ -1,3 +1,4 @@ +# FEM EquationFlow/ro --- - GuiCommand: Name:FEM EquationFlow MenuLocation: Solve → Equation flow |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -14,4 +15,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationFlow/ro diff --git a/wiki/translations/ro/FEM_EquationFlux.md b/wiki/translations/ro/FEM_EquationFlux.md index 9c6f69f4e0..baae17e709 100644 --- a/wiki/translations/ro/FEM_EquationFlux.md +++ b/wiki/translations/ro/FEM_EquationFlux.md @@ -1,3 +1,4 @@ +# FEM EquationFlux/ro --- - GuiCommand: Name:FEM EquationFluxsolver MenuLocation: Solve → Equation fluxsolver |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -16,4 +17,7 @@ De completat {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationFlux/ro diff --git a/wiki/translations/ro/FEM_EquationFluxsolver.md b/wiki/translations/ro/FEM_EquationFluxsolver.md index 0aadc0a5d8..cc4586bdc1 100644 --- a/wiki/translations/ro/FEM_EquationFluxsolver.md +++ b/wiki/translations/ro/FEM_EquationFluxsolver.md @@ -1,2 +1,5 @@ # FEM EquationFluxsolver/ro 1. REDIRECT [FEM\_EquationFlux/ro](FEM_EquationFlux/ro.md) + +--- +[documentation index](../README.md) > FEM EquationFluxsolver/ro diff --git a/wiki/translations/ro/FEM_EquationHeat.md b/wiki/translations/ro/FEM_EquationHeat.md index c832994699..bb39db1192 100644 --- a/wiki/translations/ro/FEM_EquationHeat.md +++ b/wiki/translations/ro/FEM_EquationHeat.md @@ -1,3 +1,4 @@ +# FEM EquationHeat/ro --- - GuiCommand: Name:FEM EquationHeat MenuLocation: Solve → Equation heat |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -16,4 +17,7 @@ De completat {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationHeat/ro diff --git a/wiki/translations/ro/FEM_FemMesh2Mesh.md b/wiki/translations/ro/FEM_FemMesh2Mesh.md index f0faae27fd..927cbf3ff0 100644 --- a/wiki/translations/ro/FEM_FemMesh2Mesh.md +++ b/wiki/translations/ro/FEM_FemMesh2Mesh.md @@ -1,3 +1,4 @@ +# FEM FemMesh2Mesh/ro --- - GuiCommand:/ro Name:FEM FemMesh2Mesh Name/ro:FEM FemMesh2Mesh MenuLocation:Mesh → FEM mesh to mesh |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/ro|FEM tutorial](FEM_Workbench/ro___FEM]].md)--- @@ -95,4 +96,7 @@ Mesh.show(obj) {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM FemMesh2Mesh/ro diff --git a/wiki/translations/ro/FEM_Install.md b/wiki/translations/ro/FEM_Install.md index f7ba54b178..3ab3f8fdd0 100644 --- a/wiki/translations/ro/FEM_Install.md +++ b/wiki/translations/ro/FEM_Install.md @@ -1,7 +1,4 @@ # FEM Install/ro - - - {{TOCright}} @@ -275,4 +272,7 @@ If you have problems installing Netgen, Gmsh, or CalculiX, or another external t {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Install/ro diff --git a/wiki/translations/ro/FEM_MaterialFluid.md b/wiki/translations/ro/FEM_MaterialFluid.md index 8a1cde05dd..3c2d809d57 100644 --- a/wiki/translations/ro/FEM_MaterialFluid.md +++ b/wiki/translations/ro/FEM_MaterialFluid.md @@ -1,3 +1,4 @@ +# FEM MaterialFluid/ro --- - GuiCommand: Name:FEM MaterialFluid MenuLocation: Model → Material for fluid |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -36,4 +37,7 @@ De completat {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialFluid/ro diff --git a/wiki/translations/ro/FEM_MaterialMechanicalNonlinear.md b/wiki/translations/ro/FEM_MaterialMechanicalNonlinear.md index 914f74825a..a9b425bcd9 100644 --- a/wiki/translations/ro/FEM_MaterialMechanicalNonlinear.md +++ b/wiki/translations/ro/FEM_MaterialMechanicalNonlinear.md @@ -1,3 +1,4 @@ +# FEM MaterialMechanicalNonlinear/ro --- - GuiCommand: Name:FEM MaterialMechanicalNonlinear MenuLocation: Model → Nonlinear mechanical material |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -24,4 +25,7 @@ Adds nonlinear mechanical material model. Currently only plasticity with simple {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialMechanicalNonlinear/ro diff --git a/wiki/translations/ro/FEM_MaterialSolid.md b/wiki/translations/ro/FEM_MaterialSolid.md index 6917e95e61..601e7151d3 100644 --- a/wiki/translations/ro/FEM_MaterialSolid.md +++ b/wiki/translations/ro/FEM_MaterialSolid.md @@ -1,3 +1,4 @@ +# FEM MaterialSolid/ro --- - GuiCommand: Name:FEM MaterialSolid MenuLocation:Model → FEM material for solid |Workbenches:[Shortcut:M,M SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -53,4 +54,7 @@ Adaugă proprietăți materiale la o piesă. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialSolid/ro diff --git a/wiki/translations/ro/FEM_Mesh.md b/wiki/translations/ro/FEM_Mesh.md index 4f0ececf79..b117240237 100644 --- a/wiki/translations/ro/FEM_Mesh.md +++ b/wiki/translations/ro/FEM_Mesh.md @@ -1,5 +1,5 @@ # FEM Mesh/ro - {{TOCright}} +{{TOCright}}
@@ -802,4 +802,7 @@ See for example FEM Mesh/ro diff --git a/wiki/translations/ro/FEM_Module.md b/wiki/translations/ro/FEM_Module.md index 4843583651..ece8bd646b 100644 --- a/wiki/translations/ro/FEM_Module.md +++ b/wiki/translations/ro/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/ro 1. REDIRECT [FEM\_Workbench/ro](FEM_Workbench/ro.md) + +--- +[documentation index](../README.md) > FEM Module/ro diff --git a/wiki/translations/ro/FEM_PostPipelineFromResult.md b/wiki/translations/ro/FEM_PostPipelineFromResult.md index 6e7b5dae76..2cffae7fc4 100644 --- a/wiki/translations/ro/FEM_PostPipelineFromResult.md +++ b/wiki/translations/ro/FEM_PostPipelineFromResult.md @@ -1,3 +1,4 @@ +# FEM PostPipelineFromResult/ro --- - GuiCommand: Name:FEM PostPipelineFromResult MenuLocation: Results → post pipeline from result |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -54,4 +55,7 @@ Conducta este un obiect rezultat, care creează o nouă reprezentare grafică a {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostPipelineFromResult/ro diff --git a/wiki/translations/ro/FEM_Shear_of_a_Composite_Block.md b/wiki/translations/ro/FEM_Shear_of_a_Composite_Block.md index 947ac52e9c..0977e26ac9 100644 --- a/wiki/translations/ro/FEM_Shear_of_a_Composite_Block.md +++ b/wiki/translations/ro/FEM_Shear_of_a_Composite_Block.md @@ -1,7 +1,4 @@ # FEM Shear of a Composite Block/ro - - -
@@ -199,4 +196,7 @@ Fișierul FC pentru acest tutorial este atașat mai jos ca un punct de pornire. -Distracție Plăcută ! {{Tutorials navi}} {{FEM Tools navi}} +Distracție Plăcută ! {{Tutorials navi}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM Shear of a Composite Block/ro diff --git a/wiki/translations/ro/FEM_Solver.md b/wiki/translations/ro/FEM_Solver.md index b91ed084bd..e94b1112f3 100644 --- a/wiki/translations/ro/FEM_Solver.md +++ b/wiki/translations/ro/FEM_Solver.md @@ -1,7 +1,4 @@ # FEM Solver/ro - - -
## Prefață @@ -240,4 +237,7 @@ Technog was successfully used in FreeCAD as a substitute of CalculiX, although t {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Solver/ro diff --git a/wiki/translations/ro/FEM_SolverCalculixCxxtools.md b/wiki/translations/ro/FEM_SolverCalculixCxxtools.md index dbd31c891b..72b3b424fe 100644 --- a/wiki/translations/ro/FEM_SolverCalculixCxxtools.md +++ b/wiki/translations/ro/FEM_SolverCalculixCxxtools.md @@ -1,3 +1,4 @@ +# FEM SolverCalculixCxxtools/ro --- - GuiCommand: Name:FEM Solver MenuLocation:Solve → Solver CalculiX Standard |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -210,4 +211,7 @@ Documentația originală CalculiX poate fi găsită la in th {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverCalculixCxxtools/ro diff --git a/wiki/translations/ro/FEM_SolverZ88.md b/wiki/translations/ro/FEM_SolverZ88.md index d584262950..dbcb1b198a 100644 --- a/wiki/translations/ro/FEM_SolverZ88.md +++ b/wiki/translations/ro/FEM_SolverZ88.md @@ -1,3 +1,4 @@ +# FEM SolverZ88/ro --- - GuiCommand: Name:FEM SolverZ88 MenuLocation: Solve → solver Z88 |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial|FEM tutorial](FEM_Workbench___FEM]].md)--- @@ -16,4 +17,7 @@ De completat {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverZ88/ro diff --git a/wiki/translations/ro/FEM_Tutorial_Python.md b/wiki/translations/ro/FEM_Tutorial_Python.md index 7bceb8b323..2b0e57dea2 100644 --- a/wiki/translations/ro/FEM_Tutorial_Python.md +++ b/wiki/translations/ro/FEM_Tutorial_Python.md @@ -1,7 +1,4 @@ # FEM Tutorial Python/ro - - -
@@ -667,3 +664,6 @@ Distracție plăcută! }} {{FEM Tools navi}} [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > FEM Tutorial Python/ro diff --git a/wiki/translations/ro/FEM_Workbench.md b/wiki/translations/ro/FEM_Workbench.md index 9b75cfb33c..58f06aa83d 100644 --- a/wiki/translations/ro/FEM_Workbench.md +++ b/wiki/translations/ro/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/ro - - - - - -FEM workbench icon +# FEM workbench icon FEM Workbench/ro {{TOCright}} @@ -283,3 +277,6 @@ A developer\'s guide has been written to help power users in understanding the c }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/ro diff --git a/wiki/translations/ro/FEM_project.md b/wiki/translations/ro/FEM_project.md index 27f7f703ac..3d591f0b27 100644 --- a/wiki/translations/ro/FEM_project.md +++ b/wiki/translations/ro/FEM_project.md @@ -1,5 +1,5 @@ # FEM project/ro - Acesta este planul proiectului pentru integrarea MEF FreeCAD ca parte a foii de parcurs [Development roadmap](Development_roadmap.md). +Acesta este planul proiectului pentru integrarea MEF FreeCAD ca parte a foii de parcurs [Development roadmap](Development_roadmap.md). ## Unități de măsură @@ -68,3 +68,6 @@ unii solver sunt }} [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > FEM project/ro diff --git a/wiki/translations/ro/FEM_tutorial.md b/wiki/translations/ro/FEM_tutorial.md index ffe3590aad..045c2236e6 100644 --- a/wiki/translations/ro/FEM_tutorial.md +++ b/wiki/translations/ro/FEM_tutorial.md @@ -1,7 +1,4 @@ # FEM tutorial/ro - - -
@@ -227,4 +224,7 @@ Am terminat acum cu fluxul de lucru de bază pentru [FEM Workbench](FEM_Workbenc {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM tutorial/ro diff --git a/wiki/translations/ro/Fcstd_file_format.md b/wiki/translations/ro/Fcstd_file_format.md index 2b16b01b8f..3476c72796 100644 --- a/wiki/translations/ro/Fcstd_file_format.md +++ b/wiki/translations/ro/Fcstd_file_format.md @@ -1,2 +1,5 @@ # Fcstd file format/ro 1. REDIRECT [File\_Format\_FCStd/ro](File_Format_FCStd/ro.md) + +--- +[documentation index](../README.md) > Fcstd file format/ro diff --git a/wiki/translations/ro/Feature_editing.md b/wiki/translations/ro/Feature_editing.md index 7bf9259818..84f44940fa 100644 --- a/wiki/translations/ro/Feature_editing.md +++ b/wiki/translations/ro/Feature_editing.md @@ -1,5 +1,5 @@ # Feature editing/ro - {{TOCright}} +{{TOCright}} ## Introducere @@ -216,3 +216,6 @@ The [tutorials](Tutorials.md) page provides some examples of using the [feature }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Feature editing/ro diff --git a/wiki/translations/ro/Feature_list.md b/wiki/translations/ro/Feature_list.md index 5fd2c0bebb..93c5c4d875 100644 --- a/wiki/translations/ro/Feature_list.md +++ b/wiki/translations/ro/Feature_list.md @@ -1,7 +1,4 @@ # Feature list/ro - - -
Aceasta pagina prezinta o mare parte dintre funcționalitățile FreeCAD. Daca doriti sa priviti in viitor vizitati [pagina de planificare](Development_roadmap/ro.md). Pagina de [screenshot-uri](Screenshots.md) va poate face o iede rapida despre capabilitati. @@ -293,3 +290,6 @@ Power users have created various custom [external workbenches](external_workbenc [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/ro diff --git a/wiki/translations/ro/File_Format_FCStd.md b/wiki/translations/ro/File_Format_FCStd.md index 057173436f..824e31d9c3 100644 --- a/wiki/translations/ro/File_Format_FCStd.md +++ b/wiki/translations/ro/File_Format_FCStd.md @@ -1,5 +1,5 @@ # File Format FCStd/ro - {{TOCright}} +{{TOCright}} ## Overview @@ -256,3 +256,6 @@ Here, a file Converter utility [ImageConv](ImageConv.md). [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > File Format FCStd/ro diff --git a/wiki/translations/ro/FreeCAD-Ship_s60_tutorial.md b/wiki/translations/ro/FreeCAD-Ship_s60_tutorial.md index 8d0b1440d6..9343553177 100644 --- a/wiki/translations/ro/FreeCAD-Ship_s60_tutorial.md +++ b/wiki/translations/ro/FreeCAD-Ship_s60_tutorial.md @@ -1,7 +1,4 @@ # FreeCAD-Ship s60 tutorial/ro - - - {{TutorialInfo/ro |Topic=Ship Workbench |Level=Beginner @@ -466,3 +463,6 @@ The [FreeCAD Ship s60 tutorial (II)](FreeCAD-Ship_s60_tutorial_(II).md) is the s {{Ship Tools navi }} + +--- +[documentation index](../README.md) > FreeCAD-Ship s60 tutorial/ro diff --git a/wiki/translations/ro/FreeCAD-Ship_s60_tutorial_(II).md b/wiki/translations/ro/FreeCAD-Ship_s60_tutorial_(II).md index 2e788bc29e..a52fb73793 100644 --- a/wiki/translations/ro/FreeCAD-Ship_s60_tutorial_(II).md +++ b/wiki/translations/ro/FreeCAD-Ship_s60_tutorial_(II).md @@ -1,7 +1,4 @@ # FreeCAD-Ship s60 tutorial (II)/ro - - - {{TutorialInfo/ro |Topic=Ship Workbench |Level= Beginner @@ -296,3 +293,6 @@ Desigur, acest exemplu nu este real (mai întâi pentru toate cisternele de comb {{Ship Tools navi }} + +--- +[documentation index](../README.md) > FreeCAD-Ship s60 tutorial (II)/ro diff --git a/wiki/translations/ro/FreeCADGui_API.md b/wiki/translations/ro/FreeCADGui_API.md index a2c2ac5b94..63021da1db 100644 --- a/wiki/translations/ro/FreeCADGui_API.md +++ b/wiki/translations/ro/FreeCADGui_API.md @@ -1,5 +1,5 @@ # FreeCADGui API/ro - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Acest modul este contrapartida modulului FreeCAD. Conține tot ce este legat de interfața de utilizator și de vizualizările 3D. exemplu: ```python @@ -70,3 +70,6 @@ gui_doc.activateWorkbench("myWorkbench") [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FreeCADGui API/ro diff --git a/wiki/translations/ro/FreeCADShip_Workbench.md b/wiki/translations/ro/FreeCADShip_Workbench.md index 6dcb659e71..5e688fb813 100644 --- a/wiki/translations/ro/FreeCADShip_Workbench.md +++ b/wiki/translations/ro/FreeCADShip_Workbench.md @@ -1,2 +1,5 @@ # FreeCADShip Workbench/ro 1. REDIRECT [Ship\_Workbench/ro](Ship_Workbench/ro.md) + +--- +[documentation index](../README.md) > FreeCADShip Workbench/ro diff --git a/wiki/translations/ro/FreeCAD_API.md b/wiki/translations/ro/FreeCAD_API.md index 7817a2ea39..5a289faacb 100644 --- a/wiki/translations/ro/FreeCAD_API.md +++ b/wiki/translations/ro/FreeCAD_API.md @@ -1,5 +1,5 @@ # FreeCAD API/ro - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Acesta este modulul principal (root) al FreeCAD. Poate fi numit și prin \"App\" de la interpretul FreeCAD. Conține tot ceea ce este necesar pentru a manipula documentele și conținutul lor (obiecte). @@ -68,3 +68,6 @@ mydoc = FreeCAD.activeDocument() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FreeCAD API/ro diff --git a/wiki/translations/ro/FreeCAD_Build_Tool.md b/wiki/translations/ro/FreeCAD_Build_Tool.md index e6f6321c9b..1c5ef86391 100644 --- a/wiki/translations/ro/FreeCAD_Build_Tool.md +++ b/wiki/translations/ro/FreeCAD_Build_Tool.md @@ -1,10 +1,4 @@ # FreeCAD Build Tool/ro - - - - - - {{TOCright}} @@ -100,3 +94,6 @@ Comanda \"CM\" [creates a new application module](Module_Creation.md). [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Build Tool/ro diff --git a/wiki/translations/ro/FreeCAD_Scripting_Basics.md b/wiki/translations/ro/FreeCAD_Scripting_Basics.md index db7edd096f..51cb91f837 100644 --- a/wiki/translations/ro/FreeCAD_Scripting_Basics.md +++ b/wiki/translations/ro/FreeCAD_Scripting_Basics.md @@ -1,7 +1,4 @@ # FreeCAD Scripting Basics/ro - - - {{TOCright}} @@ -411,3 +408,6 @@ Acum puteți începe să jucați cu FreeCAD! Pentru a vedea ce puteți face cu [ }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Scripting Basics/ro diff --git a/wiki/translations/ro/FreeCAD_vector_math_library.md b/wiki/translations/ro/FreeCAD_vector_math_library.md index 53766221fc..a92fb92993 100644 --- a/wiki/translations/ro/FreeCAD_vector_math_library.md +++ b/wiki/translations/ro/FreeCAD_vector_math_library.md @@ -1,6 +1,4 @@ # FreeCAD vector math library/ro - - ## Introduction This is a [Python](Python.md) module containing a couple of useful functions to manipulate vectors. This library is included in the [Draft\_Workbench](Draft_Workbench.md) and can be accessed like this from the Python interpreter: @@ -87,3 +85,6 @@ def project(first, other): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD vector math library/ro diff --git a/wiki/translations/ro/Getting_started.md b/wiki/translations/ro/Getting_started.md index dec9934861..f815283c61 100644 --- a/wiki/translations/ro/Getting_started.md +++ b/wiki/translations/ro/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/ro - - - - - - {{TOCright}} ## Cuvânt înainte @@ -336,3 +330,6 @@ Iar, la sfârşit, să remarcăm că una dintre cele mai puternice caracteristic [Category:User Documentation/ro](Category:User_Documentation/ro.md) + +--- +[documentation index](../README.md) > Getting started/ro diff --git a/wiki/translations/ro/Glossary.md b/wiki/translations/ro/Glossary.md index 2de41f9beb..f35f5c218d 100644 --- a/wiki/translations/ro/Glossary.md +++ b/wiki/translations/ro/Glossary.md @@ -1,9 +1,4 @@ # Glossary/ro - - - - - Această pagină este un glosar de termeni și definiții comune ale FreeCAD. Salt la literă: {{CompactTOC|center=yes}} @@ -1152,3 +1147,6 @@ Salt la literă: {{CompactTOC|center=yes}} [Category:Wiki](Category:Wiki.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Wiki](Category:Wiki.md) > Glossary/ro diff --git a/wiki/translations/ro/Group.md b/wiki/translations/ro/Group.md index 9d2297eccc..80e232fad1 100644 --- a/wiki/translations/ro/Group.md +++ b/wiki/translations/ro/Group.md @@ -1,2 +1,5 @@ # Group/ro 1. REDIRECT [Std\_Group/ro](Std_Group/ro.md) + +--- +[documentation index](../README.md) > Group/ro diff --git a/wiki/translations/ro/GuiCommand_model.md b/wiki/translations/ro/GuiCommand_model.md index 59f7b3c30a..102ae09841 100644 --- a/wiki/translations/ro/GuiCommand_model.md +++ b/wiki/translations/ro/GuiCommand_model.md @@ -7,6 +7,8 @@ SeeAlso: --- +# GuiCommand model/ro +
@@ -297,3 +299,6 @@ Optional. }} [Category:Wiki:Example](Category:Wiki:Example.md) + +--- +[documentation index](../README.md) > [API]] and ](Category:API]] and .md) > GuiCommand model/ro diff --git a/wiki/translations/ro/Gui_Command.md b/wiki/translations/ro/Gui_Command.md index 9a10afbfa2..7007764b68 100644 --- a/wiki/translations/ro/Gui_Command.md +++ b/wiki/translations/ro/Gui_Command.md @@ -1,7 +1,4 @@ # Gui Command/ro - - -
GuiCommand este una dintre cele mai importante funcții ale FreeCAD în principalul punct de interacțiune al utilizatorului. De fiecare dată când utilizatorul selectează un element de meniu sau apasă butonul unei bare de instrumente pe care îl activează a GuiCommand. Unele dintre atributele unui GuiCommand sunt: @@ -139,4 +136,7 @@ Sperăm că acest lucru devine adevărat pentru toți GuiCommands din[List of Co {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Gui Command/ro diff --git a/wiki/translations/ro/Help_FreeCAD.md b/wiki/translations/ro/Help_FreeCAD.md index 56da36f0b2..ba1022f65b 100644 --- a/wiki/translations/ro/Help_FreeCAD.md +++ b/wiki/translations/ro/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/ro - - ## Introduction @@ -184,3 +182,6 @@ Writing code for FreeCAD is not hard, and you don\'t need any permission, you ca [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command Reference]] de pagini și documente pentru comenzile ](Category:Command Reference]] de pagini și documente pentru comenzile .md) > Help FreeCAD/ro diff --git a/wiki/translations/ro/History.md b/wiki/translations/ro/History.md index 046dd7650d..ac72d46f6c 100644 --- a/wiki/translations/ro/History.md +++ b/wiki/translations/ro/History.md @@ -1,5 +1,5 @@ # History/ro - \_\_FORCETOC\_\_ +\_\_FORCETOC\_\_
@@ -256,3 +256,6 @@ In April 2019 the team of core developers was expanded: Jürgen, Werner and Yori
[Category:News](Category:News.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > History/ro diff --git a/wiki/translations/ro/How_to_install_additional_workbenches.md b/wiki/translations/ro/How_to_install_additional_workbenches.md index f14684bbef..1f4762a75d 100644 --- a/wiki/translations/ro/How_to_install_additional_workbenches.md +++ b/wiki/translations/ro/How_to_install_additional_workbenches.md @@ -1,7 +1,4 @@ # How to install additional workbenches/ro - - -
@@ -261,3 +258,6 @@ This method is possible but not necessary with the introduction of the [Addon Ma {{Powerdocnavi}} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External Workbenches](Category:External Workbenches.md) > How to install additional workbenches/ro diff --git a/wiki/translations/ro/How_to_install_macros.md b/wiki/translations/ro/How_to_install_macros.md index e940d6428f..210fcccd54 100644 --- a/wiki/translations/ro/How_to_install_macros.md +++ b/wiki/translations/ro/How_to_install_macros.md @@ -1,7 +1,4 @@ # How to install macros/ro - - -
@@ -1094,3 +1091,6 @@ and click the **OK** button }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > How to install macros/ro diff --git a/wiki/translations/ro/ImageConv.md b/wiki/translations/ro/ImageConv.md index 55831c5ca1..524f246c22 100644 --- a/wiki/translations/ro/ImageConv.md +++ b/wiki/translations/ro/ImageConv.md @@ -1,6 +1,4 @@ # ImageConv/ro - - **ImageConv** este un program folosit pentru a converti imagini din diferite formate în format XPM, care pot fi utilizate și compilate în FreeCAD. ## Building @@ -33,3 +31,6 @@ ImageConv este un instrument tip linie de comandă.
[Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > ImageConv/ro diff --git a/wiki/translations/ro/Image_Module.md b/wiki/translations/ro/Image_Module.md index ffdd2478c9..10104bfe1e 100644 --- a/wiki/translations/ro/Image_Module.md +++ b/wiki/translations/ro/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/ro 1. REDIRECT [Image\_Workbench/ro](Image_Workbench/ro.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/ro diff --git a/wiki/translations/ro/Image_Workbench.md b/wiki/translations/ro/Image_Workbench.md index 9c78c3958c..b16d4aaf2b 100644 --- a/wiki/translations/ro/Image_Workbench.md +++ b/wiki/translations/ro/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/ro - - -Image workbench icon +# Image workbench icon Image Workbench/ro ## Introducere @@ -53,3 +50,6 @@ Decalajul imaginii poate fi setat în timpul importului sau poate fi modificat m }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/ro diff --git a/wiki/translations/ro/Import.md b/wiki/translations/ro/Import.md index 336a5dba41..b5b8c81761 100644 --- a/wiki/translations/ro/Import.md +++ b/wiki/translations/ro/Import.md @@ -1,7 +1,4 @@ # Import/Export IFC - compiling IfcOpenShell/ro - - -
@@ -196,3 +193,6 @@ Subiectul este pe Forum la [here](http://forum.freecadweb.org/viewtopic.php?f=23 [Category:BIM](Category:BIM.md) [Category:Arch](Category:Arch.md) [Category:3rd Party](Category:3rd_Party.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Import/Export IFC - compiling IfcOpenShell/ro diff --git a/wiki/translations/ro/Import_Export.md b/wiki/translations/ro/Import_Export.md index f12c65529c..9bd40f91c9 100644 --- a/wiki/translations/ro/Import_Export.md +++ b/wiki/translations/ro/Import_Export.md @@ -1,9 +1,4 @@ # Import Export/ro - - - - - ## Introduction @@ -82,3 +77,6 @@ See the following pages for additional information: [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export/ro diff --git a/wiki/translations/ro/Import_Export_Preference.md b/wiki/translations/ro/Import_Export_Preference.md index 6e11eb45c1..cc1b80791c 100644 --- a/wiki/translations/ro/Import_Export_Preference.md +++ b/wiki/translations/ro/Import_Export_Preference.md @@ -1,2 +1,5 @@ # Import Export Preference/ro 1. REDIRECT [Import Export Preferences/ro](Import_Export_Preferences/ro.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preference/ro diff --git a/wiki/translations/ro/Import_Export_Preferences.md b/wiki/translations/ro/Import_Export_Preferences.md index bb543f50f3..3d0a512849 100644 --- a/wiki/translations/ro/Import_Export_Preferences.md +++ b/wiki/translations/ro/Import_Export_Preferences.md @@ -1,7 +1,4 @@ # Import Export Preferences/ro - - -
### Preference DXF @@ -634,3 +631,6 @@ For the VTK format you can specify the following: [Category:Common Questions](Category:Common_Questions.md) [Category:Preferences](Category:Preferences.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preferences/ro diff --git a/wiki/translations/ro/Import_OpenSCAD_code.md b/wiki/translations/ro/Import_OpenSCAD_code.md index 7eef2c2a8e..9bb111799e 100644 --- a/wiki/translations/ro/Import_OpenSCAD_code.md +++ b/wiki/translations/ro/Import_OpenSCAD_code.md @@ -1,7 +1,4 @@ # Import OpenSCAD code/ro - - - {{TutorialInfo/ro |Topic= Import OpenSCAD code |Level= Beginner @@ -94,3 +91,6 @@ Aici vom folosi exemplu005.scad-fișierul din exemplele (vechi) OpenSCAD, dar nu - [Import Export Preferences](Import_Export_Preferences.md) [Category:OpenSCAD](Category:OpenSCAD.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import OpenSCAD code/ro diff --git a/wiki/translations/ro/Import_from_STL_or_OBJ.md b/wiki/translations/ro/Import_from_STL_or_OBJ.md index 6dde7a7145..39d409672a 100644 --- a/wiki/translations/ro/Import_from_STL_or_OBJ.md +++ b/wiki/translations/ro/Import_from_STL_or_OBJ.md @@ -1,5 +1,5 @@ # Import from STL or OBJ/ro - {{TutorialInfo/ro +{{TutorialInfo/ro |Topic= Import from STL or OBJ |Level= Beginner |Time= 30 minutes @@ -152,3 +152,6 @@ Deoarece solidul creat nu are istorie si nici funcții editabile (ca o copie sim [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import from STL or OBJ/ro diff --git a/wiki/translations/ro/Import_text_and_geometry_from_Inkscape.md b/wiki/translations/ro/Import_text_and_geometry_from_Inkscape.md index a802fa6c0e..d609082576 100644 --- a/wiki/translations/ro/Import_text_and_geometry_from_Inkscape.md +++ b/wiki/translations/ro/Import_text_and_geometry_from_Inkscape.md @@ -1,5 +1,5 @@ # Import text and geometry from Inkscape/ro - {{TutorialInfo/ro +{{TutorialInfo/ro |Topic= Importaţi text şi forme geometrice create cu InkScape |Nivel= Începător |Timp= 30 minute @@ -56,6 +56,5 @@ Since inkscape and FreeCAD seem to have different approaches on how to apply dim Le mulţumesc utilizatorilor \"freecad-heini-1\" şi \"herbk\" pentru testare şi pentru furnizarea unor impresii şi informaţii de un real folos. - - - +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import text and geometry from Inkscape/ro diff --git a/wiki/translations/ro/Inspection_Workbench.md b/wiki/translations/ro/Inspection_Workbench.md index 66ef4ce805..bf5424008d 100644 --- a/wiki/translations/ro/Inspection_Workbench.md +++ b/wiki/translations/ro/Inspection_Workbench.md @@ -1,7 +1,4 @@ -# Inspection Workbench/ro - - -Inspection workbench icon +# Inspection workbench icon Inspection Workbench/ro
@@ -56,3 +53,6 @@ Ca alternativă, puteţi folosi macro-comanda [HighlightDifference](Macro_Highli [Category:Inspection](Category:Inspection.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Inspection Workbench/ro diff --git a/wiki/translations/ro/Install_on_Linux.md b/wiki/translations/ro/Install_on_Linux.md index ce44853638..565f256213 100644 --- a/wiki/translations/ro/Install_on_Linux.md +++ b/wiki/translations/ro/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/ro 1. REDIRECT [Installing\_on\_Linux/ro](Installing_on_Linux/ro.md) + +--- +[documentation index](../README.md) > Install on Linux/ro diff --git a/wiki/translations/ro/Install_on_Mac.md b/wiki/translations/ro/Install_on_Mac.md index d0af6e7295..a366c8d131 100644 --- a/wiki/translations/ro/Install_on_Mac.md +++ b/wiki/translations/ro/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/ro 1. REDIRECT [Installing\_on\_Mac/ro](Installing_on_Mac/ro.md) + +--- +[documentation index](../README.md) > Install on Mac/ro diff --git a/wiki/translations/ro/Install_on_Unix.md b/wiki/translations/ro/Install_on_Unix.md index d6856b28b0..8a426c1a2c 100644 --- a/wiki/translations/ro/Install_on_Unix.md +++ b/wiki/translations/ro/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/ro 1. REDIRECT [Installing\_on\_Linux/ro](Installing_on_Linux/ro.md) + +--- +[documentation index](../README.md) > Install on Unix/ro diff --git a/wiki/translations/ro/Install_on_Windows.md b/wiki/translations/ro/Install_on_Windows.md index def64172cd..553d777562 100644 --- a/wiki/translations/ro/Install_on_Windows.md +++ b/wiki/translations/ro/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/ro 1. REDIRECT [Installing\_on\_Windows/ro](Installing_on_Windows/ro.md) + +--- +[documentation index](../README.md) > Install on Windows/ro diff --git a/wiki/translations/ro/Installing.md b/wiki/translations/ro/Installing.md index 2420dc6e50..1106ab7589 100644 --- a/wiki/translations/ro/Installing.md +++ b/wiki/translations/ro/Installing.md @@ -1,2 +1,5 @@ # Installing/ro 1. REDIRECT [Installing\_additional\_components/ro](Installing_additional_components/ro.md) + +--- +[documentation index](../README.md) > Installing/ro diff --git a/wiki/translations/ro/Installing_additional_components.md b/wiki/translations/ro/Installing_additional_components.md index 3b28bc2d82..17cf6033c5 100644 --- a/wiki/translations/ro/Installing_additional_components.md +++ b/wiki/translations/ro/Installing_additional_components.md @@ -1,7 +1,4 @@ # Installing additional components/ro - - -
@@ -288,3 +285,6 @@ O bibliotecă pentru exploatarea și manipularea câmpului (FOAM), care este nec
[Category:User Documentation/ro](Category:User_Documentation/ro.md) + +--- +[documentation index](../README.md) > Installing additional components/ro diff --git a/wiki/translations/ro/Installing_more_workbenches.md b/wiki/translations/ro/Installing_more_workbenches.md index d11e0d2d7d..8e9b39dd8d 100644 --- a/wiki/translations/ro/Installing_more_workbenches.md +++ b/wiki/translations/ro/Installing_more_workbenches.md @@ -1,6 +1,4 @@ # Installing more workbenches/ro - - ## Introduction Since v0.17 it is easy to add [external workbenches](external_workbenches.md) by using the [Addon Manager](Std_AddonMgr.md). A regular user doesn\'t need to do more than use this tool. @@ -48,3 +46,6 @@ See also a detailed description in the page [how to install additional workbench }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Installing more workbenches/ro diff --git a/wiki/translations/ro/Installing_on_Linux.md b/wiki/translations/ro/Installing_on_Linux.md index 73a776c36b..1b51705cb8 100644 --- a/wiki/translations/ro/Installing_on_Linux.md +++ b/wiki/translations/ro/Installing_on_Linux.md @@ -1,7 +1,4 @@ # Installing on Linux/ro - - -
@@ -389,3 +386,6 @@ Once you\'ve got FreeCAD installed, it\'s time to [get started](Getting_started. [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/ro diff --git a/wiki/translations/ro/Installing_on_Mac.md b/wiki/translations/ro/Installing_on_Mac.md index 70f0b5e366..d705e39628 100644 --- a/wiki/translations/ro/Installing_on_Mac.md +++ b/wiki/translations/ro/Installing_on_Mac.md @@ -1,10 +1,4 @@ # Installing on Mac/ro - - - - - -
FreeCAD poate fi instalat in Mac OS X intr-un singur pas folosind programul de instalare. @@ -75,5 +69,5 @@ Asta-i tot.
- - +--- +[documentation index](../README.md) > Installing on Mac/ro diff --git a/wiki/translations/ro/Installing_on_Windows.md b/wiki/translations/ro/Installing_on_Windows.md index 1304466168..736aa8bc41 100644 --- a/wiki/translations/ro/Installing_on_Windows.md +++ b/wiki/translations/ro/Installing_on_Windows.md @@ -1,7 +1,4 @@ # Installing on Windows/ro - - -
@@ -246,5 +243,5 @@ FreeCAD rulează dar s-a raportat că interfața OpenGL nu funcționează, la fe
- - +--- +[documentation index](../README.md) > Installing on Windows/ro diff --git a/wiki/translations/ro/Interface_Customization.md b/wiki/translations/ro/Interface_Customization.md index fad62183b4..aa328c75fa 100644 --- a/wiki/translations/ro/Interface_Customization.md +++ b/wiki/translations/ro/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/ro - - - - - - {{TOCright}} ## Introduction @@ -305,4 +299,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/ro diff --git a/wiki/translations/ro/Introduction_to_Python.md b/wiki/translations/ro/Introduction_to_Python.md index 065d007542..af3d8dfa71 100644 --- a/wiki/translations/ro/Introduction_to_Python.md +++ b/wiki/translations/ro/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/ro - - - {{TOCright}} ## Introduction @@ -935,3 +932,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/ro diff --git a/wiki/translations/ro/Land_Survey_Workbench_Blueprint.md b/wiki/translations/ro/Land_Survey_Workbench_Blueprint.md index c689876998..d556db969a 100644 --- a/wiki/translations/ro/Land_Survey_Workbench_Blueprint.md +++ b/wiki/translations/ro/Land_Survey_Workbench_Blueprint.md @@ -1,7 +1,4 @@ # Land Survey Workbench Blueprint/ro - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -63,3 +60,6 @@ Notă: informațiile din această pagină se bazează pe o înțelegere superfic [Category:Roadmap](Category:Roadmap.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > Land Survey Workbench Blueprint/ro diff --git a/wiki/translations/ro/Licence.md b/wiki/translations/ro/Licence.md index fc5f8f32ea..bbd49c2f28 100644 --- a/wiki/translations/ro/Licence.md +++ b/wiki/translations/ro/Licence.md @@ -1,10 +1,4 @@ # Licence/ro - - - - - - {{TOCright}} ## Licențe utilizate sub FreeCAD @@ -93,3 +87,6 @@ Această decizie se face numai pentru nucleul sistemul FreeCAD. Fiecare scriitor [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Licence/ro diff --git a/wiki/translations/ro/Line_drawing_function.md b/wiki/translations/ro/Line_drawing_function.md index 1438006a84..6efa25c5a8 100644 --- a/wiki/translations/ro/Line_drawing_function.md +++ b/wiki/translations/ro/Line_drawing_function.md @@ -1,7 +1,4 @@ # Line drawing function/ro - - - {{TOCright}} ## Introduction @@ -465,3 +462,6 @@ Nu ezitați să vă scrieți întrebările sau ideile pe [forum](http://forum.fr Don\'t hesitate to ask questions or share ideas on the [forum](https://forum.freecadweb.org/)! {{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Line drawing function/ro diff --git a/wiki/translations/ro/List_of_Commands.md b/wiki/translations/ro/List_of_Commands.md index ecff69c67a..70ae55ce16 100644 --- a/wiki/translations/ro/List_of_Commands.md +++ b/wiki/translations/ro/List_of_Commands.md @@ -1,2 +1,5 @@ # List of Commands/ro 1. REDIRECT [:Category:Command Reference/ro](:Category:Command_Reference/ro.md) + +--- +[documentation index](../README.md) > List of Commands/ro diff --git a/wiki/translations/ro/Macro_HighlightDifference.md b/wiki/translations/ro/Macro_HighlightDifference.md index 0e0483afcf..fd6b2a4c87 100644 --- a/wiki/translations/ro/Macro_HighlightDifference.md +++ b/wiki/translations/ro/Macro_HighlightDifference.md @@ -1,5 +1,5 @@ # Macro HighlightDifference/ro - {{Macro +{{Macro |Name=HighlightDifference |Descriere = Calculați diferența dintre două forme. Adăugările sunt marcate cu roșu, iar mișcările sunt marcate verde. Ambele părți originale vor fi pe jumătate transparente. Volumul completărilor și eliminărilor este imprimat în consolă. |Author=Gaël Ecorchard @@ -41,3 +41,6 @@ Codul este vizibil pe Github: [Utility/HighlightDifference.FCMacro](https://gith [Macro\_HighlightCommon](Macro_HighlightCommon.md) - Discuția pe forum [\"collision detection\", overlapping](http://forum.freecadweb.org/viewtopic.php?f=22&t=12426) + +--- +[documentation index](../README.md) > Macro HighlightDifference/ro diff --git a/wiki/translations/ro/Macro_Unroll_Ruled_Surface.md b/wiki/translations/ro/Macro_Unroll_Ruled_Surface.md index a6b477a170..2e8919287e 100644 --- a/wiki/translations/ro/Macro_Unroll_Ruled_Surface.md +++ b/wiki/translations/ro/Macro_Unroll_Ruled_Surface.md @@ -1,7 +1,4 @@ # Macro Unroll Ruled Surface/ro - - -
@@ -754,6 +751,5 @@ DialogBox.show() }} - - - +--- +[documentation index](../README.md) > Macro Unroll Ruled Surface/ro diff --git a/wiki/translations/ro/Macros.md b/wiki/translations/ro/Macros.md index 29d5169d9c..9b1dd161a3 100644 --- a/wiki/translations/ro/Macros.md +++ b/wiki/translations/ro/Macros.md @@ -1,7 +1,4 @@ # Macros/ro - - - {{TOCright}} ## Introduction @@ -154,3 +151,6 @@ You can manually install extensions, however, it is much simpler to just use the }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/ro diff --git a/wiki/translations/ro/Main_Page.md b/wiki/translations/ro/Main_Page.md index 20d455408e..8b04c86340 100644 --- a/wiki/translations/ro/Main_Page.md +++ b/wiki/translations/ro/Main_Page.md @@ -1,7 +1,4 @@ # Main Page/ro - - -
## Introducere @@ -108,3 +105,6 @@ Verificați foaia de parcurs [Development roadmap](Development_roadmap.md) pentr [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/ro diff --git a/wiki/translations/ro/Manipulator.md b/wiki/translations/ro/Manipulator.md index c6a327234c..164be17183 100644 --- a/wiki/translations/ro/Manipulator.md +++ b/wiki/translations/ro/Manipulator.md @@ -1,5 +1,5 @@ # Manipulator/ro - } +}
@@ -17,3 +17,6 @@ Un \'\'\'manipulator \'\'\'este un mâner care poate fi folosit pentru a modific [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Manipulator/ro diff --git a/wiki/translations/ro/Manual.md b/wiki/translations/ro/Manual.md index 0584f53852..64e8204372 100644 --- a/wiki/translations/ro/Manual.md +++ b/wiki/translations/ro/Manual.md @@ -1,2 +1,5 @@ # Manual/ro 1. Redirect:[Manual:Introduction/ro](Manual:Introduction/ro.md) + +--- +[documentation index](../README.md) > Manual/ro diff --git a/wiki/translations/ro/Manual:A_gentle_introduction.md b/wiki/translations/ro/Manual:A_gentle_introduction.md index 5321a8e6db..e2fe7bf6e3 100644 --- a/wiki/translations/ro/Manual:A_gentle_introduction.md +++ b/wiki/translations/ro/Manual:A_gentle_introduction.md @@ -1,10 +1,4 @@ # Manual:A gentle introduction/ro - - - - - - {{Manual:TOC/ro}} [Python](https://en.wikipedia.org/wiki/Python_%28programming_language%29) este un limbaj de programare popular, open source, foarte adesea încorporat în aplicații ca limbaj de scripting, ca în cazul FreeCAD. Are o serie de caracteristici care îl fac potrivite pentru utilizatorii noștri de pe FreeCAD: este foarte ușor de învățat, mai ales pentru cei care nu au programat niciodată înainte și este încorporat în multe alte aplicații. Acest lucru face ca acesta să fie un instrument valoros pentru a învăța, așa cum îl veți putea folosi în alte programe, cum ar fi [Blender](http://www.blender.org), [Inkscape](http://www.inkscape.org) ori [GRASS](http://grass.osgeo.org/). @@ -122,3 +116,6 @@ box.Placement = otherpla }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:A gentle introduction/ro diff --git a/wiki/translations/ro/Manual:All_workbenches_at_a_glance.md b/wiki/translations/ro/Manual:All_workbenches_at_a_glance.md index 25c45f1641..66efbb3794 100644 --- a/wiki/translations/ro/Manual:All_workbenches_at_a_glance.md +++ b/wiki/translations/ro/Manual:All_workbenches_at_a_glance.md @@ -1,10 +1,4 @@ # Manual:All workbenches at a glance/ro - - - - - - {{Manual:TOC/ro}} @@ -225,6 +219,5 @@ Există, de asemenea, multe alte ateliere de lucru foarte folositoare produse de
- - - +--- +[documentation index](../README.md) > Manual:All workbenches at a glance/ro diff --git a/wiki/translations/ro/Manual:BIM_modeling.md b/wiki/translations/ro/Manual:BIM_modeling.md index d70bf73e74..d36c51f9cc 100644 --- a/wiki/translations/ro/Manual:BIM_modeling.md +++ b/wiki/translations/ro/Manual:BIM_modeling.md @@ -1,5 +1,5 @@ # Manual:BIM modeling/ro - } +} @@ -340,3 +340,6 @@ Our page is now ready, and we can export it to SVG or DXF formats, or print it. }} [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Manual:BIM modeling/ro diff --git a/wiki/translations/ro/Manual:Creating_FEM_analyses.md b/wiki/translations/ro/Manual:Creating_FEM_analyses.md index 49f5ae0ff4..55dbdadf99 100644 --- a/wiki/translations/ro/Manual:Creating_FEM_analyses.md +++ b/wiki/translations/ro/Manual:Creating_FEM_analyses.md @@ -1,10 +1,4 @@ # Manual:Creating FEM analyses/ro - - - - - - {{Manual:TOC/ro}} MEF înseamnă [Finite Element Method](https://en.wikipedia.org/wiki/Finite_element_method). Este un subiect matematic vast, dar în FreeCAD ne putem gândi la acesta ca la o modalitate de a calcula propagările în interiorul unui obiect 3D, prin tăierea lui în bucăți infinitezimal mici și analizarea impactului fiecărei bucăți mici asupra vecinilor săi. Acest lucru are mai multe utilizări în diverse domenii ale ingineriei în general și al câmpuri electromagnetice ( ca alt exemplu), dar ne vom concentra pe o utilizare deja dezvoltată în FreeCAD, care simulează deformările în obiecte care sunt supuse forțelor și greutăților. @@ -213,3 +207,6 @@ The results displayed by the FEM workbench are of course currently not enough to {{Tutorials navi }} + +--- +[documentation index](../README.md) > Manual:Creating FEM analyses/ro diff --git a/wiki/translations/ro/Manual:Creating_and_manipulating_geometry.md b/wiki/translations/ro/Manual:Creating_and_manipulating_geometry.md index 50dcca4743..19ed9643a0 100644 --- a/wiki/translations/ro/Manual:Creating_and_manipulating_geometry.md +++ b/wiki/translations/ro/Manual:Creating_and_manipulating_geometry.md @@ -1,7 +1,4 @@ # Manual:Creating and manipulating geometry/ro - - - {{Manual:TOC/ro}} În capitolele anterioare, am aflat despre diferitele ateliere de lucru ale FreeCAD și despre modul în care fiecare dintre ele implementează propriile instrumente și tipuri de geometrii. Același concept se aplică atunci când lucrați din codul Python. @@ -249,3 +246,6 @@ Toate cele de mai sus, și multe altele, sunt explicate în detaliu pe pagina [ }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating and manipulating geometry/ro diff --git a/wiki/translations/ro/Manual:Creating_interface_tools.md b/wiki/translations/ro/Manual:Creating_interface_tools.md index 792912ba34..b0036999aa 100644 --- a/wiki/translations/ro/Manual:Creating_interface_tools.md +++ b/wiki/translations/ro/Manual:Creating_interface_tools.md @@ -1,7 +1,4 @@ # Manual:Creating interface tools/ro - - - {{Manual:TOC/ro}} În ultimele două capitole, am văzut cum să [create Part geometry](Manual:Creating_and_manipulating_geometry.md) și [create parametric objects](Manual:Creating_parametric_objects.md). O ultimă piesă lipsește pentru a obține un control deplin peste FreeCAD: Creați instrumente care vor interacționa cu utilizatorul. @@ -160,3 +157,6 @@ Aceasta este foarte util de a fi încercat. }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating interface tools/ro diff --git a/wiki/translations/ro/Manual:Creating_parametric_objects.md b/wiki/translations/ro/Manual:Creating_parametric_objects.md index 5048d179f3..4d9253d58b 100644 --- a/wiki/translations/ro/Manual:Creating_parametric_objects.md +++ b/wiki/translations/ro/Manual:Creating_parametric_objects.md @@ -1,7 +1,4 @@ # Manual:Creating parametric objects/ro - - - {{Manual:TOC/ro}} În [previous chapter](Manual:Creating_and_manipulating_geometry.md), Am văzut cum este creată geometrie Pieselor și cum este afișată aceasta pe ecran, atașând-o la un documente obeict \"dumb\" (non-parametric). Acest lucru este obositor când vrem să schimbăm forma acestui obiect. Va trebui să creăm o nouă formă, apoi să o atribuim din nou obiectului nostru. @@ -126,3 +123,6 @@ Rețineți că, dacă doriți să distribuiți fișiere create cu acest nou inst }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating parametric objects/ro diff --git a/wiki/translations/ro/Manual:Creating_renderings.md b/wiki/translations/ro/Manual:Creating_renderings.md index 53996701b1..0236c1b786 100644 --- a/wiki/translations/ro/Manual:Creating_renderings.md +++ b/wiki/translations/ro/Manual:Creating_renderings.md @@ -1,7 +1,4 @@ # Manual:Creating renderings/ro - - - {{Manual:TOC/ro}} In limbajul computerului, cuvântul [rendering](https://en.wikipedia.org/wiki/Rendering_%28computer_graphics%29) este utilizat pentru a descrie o imagine frumoasă produsă de către un model 3D. Desigur, am putea spune că ceea ce vedem într-o vizualizarea 3D FreeCAD este deja ceva plăcut. Cu toate acestea, oricine a văzut un film recent de la Hollywood, știe că este posibil să se producă imagini cu un computer aproape că nu pot fi deosebite de o fotografie. @@ -130,3 +127,6 @@ Puteți extinde foarte mult posibilitățile de randare ale FreeCAD, creând noi {{Raytracing Tools navi}} [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials](Category:Tutorials.md) > Manual:Creating renderings/ro diff --git a/wiki/translations/ro/Manual:Generating_2D_drawings.md b/wiki/translations/ro/Manual:Generating_2D_drawings.md index fad12db2db..007709a1fe 100644 --- a/wiki/translations/ro/Manual:Generating_2D_drawings.md +++ b/wiki/translations/ro/Manual:Generating_2D_drawings.md @@ -1,10 +1,4 @@ # Manual:Generating 2D drawings/ro - - - - - - {{Manual:TOC/ro}} @@ -196,3 +190,6 @@ Pagina noastră poate fi acum exportată în SVG pentru a fi utilizată în cont [Category:Tutorials/ro](Category:Tutorials/ro.md) + +--- +[documentation index](../README.md) > Manual:Generating 2D drawings/ro diff --git a/wiki/translations/ro/Manual:Import_and_export_to_other_filetypes.md b/wiki/translations/ro/Manual:Import_and_export_to_other_filetypes.md index bbfae6a78a..b92fe2d3d8 100644 --- a/wiki/translations/ro/Manual:Import_and_export_to_other_filetypes.md +++ b/wiki/translations/ro/Manual:Import_and_export_to_other_filetypes.md @@ -1,7 +1,4 @@ # Manual:Import and export to other filetypes/ro - - - {{Manual:TOC/ro}} FreeCAD poate importa și exporta multe tipuri de fișiere. Iată o listă cu cele mai importante, cu o scurtă descriere a caracteristicilor disponibile: @@ -61,3 +58,6 @@ Unele dintre aceste formate de fișiere au opțiuni. Acestea pot fi configurate [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Import and export to other filetypes/ro diff --git a/wiki/translations/ro/Manual:Installing.md b/wiki/translations/ro/Manual:Installing.md index 21323db603..4e4bfa2722 100644 --- a/wiki/translations/ro/Manual:Installing.md +++ b/wiki/translations/ro/Manual:Installing.md @@ -1,7 +1,4 @@ # Manual:Installing/ro - - -
@@ -196,3 +193,6 @@ If you are using the Ubuntu operating system, some of the addons above are also
[Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Installing/ro diff --git a/wiki/translations/ro/Manual:Introduction.md b/wiki/translations/ro/Manual:Introduction.md index 1cd9e422eb..95da974095 100644 --- a/wiki/translations/ro/Manual:Introduction.md +++ b/wiki/translations/ro/Manual:Introduction.md @@ -1,10 +1,4 @@ # Manual:Introduction/ro - - - - - -
@@ -45,6 +39,5 @@ Tot conținutul manualului acesta este publicat sub licența [Creative Commons 4
- - - +--- +[documentation index](../README.md) > Manual:Introduction/ro diff --git a/wiki/translations/ro/Manual:Modeling_for_product_design.md b/wiki/translations/ro/Manual:Modeling_for_product_design.md index 5b64bfd34d..57eae3889e 100644 --- a/wiki/translations/ro/Manual:Modeling_for_product_design.md +++ b/wiki/translations/ro/Manual:Modeling_for_product_design.md @@ -1,7 +1,4 @@ # Manual:Modeling for product design/ro - - - {{Manual:TOC/ro}} [Product design](https://en.wikipedia.org/wiki/Product_design) este inițial un termen comercial, dar în lumea 3D, adesea înseamnă a modela ceva cu ideea de a o avea [3D-printed](https://en.wikipedia.org/wiki/3D_printing) sau, în general, fabricate de o mașină unealtă, de exemplu o imprimantă 3D sau o [CNC machine](https://en.wikipedia.org/wiki/Numerical_control). @@ -251,3 +248,6 @@ Dar cea mai bună lume dintre cele două există, și este un addon [Assembly2 W [Category:Tutorials/ro](Category:Tutorials/ro.md) + +--- +[documentation index](../README.md) > Manual:Modeling for product design/ro diff --git a/wiki/translations/ro/Manual:Navigating_in_the_3D_view.md b/wiki/translations/ro/Manual:Navigating_in_the_3D_view.md index 95ba6dbc03..f00764b2f4 100644 --- a/wiki/translations/ro/Manual:Navigating_in_the_3D_view.md +++ b/wiki/translations/ro/Manual:Navigating_in_the_3D_view.md @@ -1,10 +1,4 @@ # Manual:Navigating in the 3D view/ro - - - - - - {{Manual:TOC/ro}} ### O vorbă despre spațiul 3D @@ -150,6 +144,5 @@ De asemenea, puteți utiliza Selection View pentru a selecta obiecte prin căuta
- - - +--- +[documentation index](../README.md) > Manual:Navigating in the 3D view/ro diff --git a/wiki/translations/ro/Manual:Parametric_objects.md b/wiki/translations/ro/Manual:Parametric_objects.md index 9caef622cc..2e0a5b8a88 100644 --- a/wiki/translations/ro/Manual:Parametric_objects.md +++ b/wiki/translations/ro/Manual:Parametric_objects.md @@ -1,7 +1,4 @@ # Manual:Parametric objects/ro - - -
@@ -69,3 +66,6 @@ Cu toate acestea, toate obiectele, parametrice sau nu, vor avea câțiva dintre
[Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Parametric objects/ro diff --git a/wiki/translations/ro/Manual:Preparing_models_for_3D_printing.md b/wiki/translations/ro/Manual:Preparing_models_for_3D_printing.md index 7ddcd308e8..91995dcd94 100644 --- a/wiki/translations/ro/Manual:Preparing_models_for_3D_printing.md +++ b/wiki/translations/ro/Manual:Preparing_models_for_3D_printing.md @@ -1,10 +1,4 @@ # Manual:Preparing models for 3D printing/ro - - - - - - {{Manual:TOC/ro}} Una dintre principalele utilizări ale FreeCAD este de a produce obiecte în lumea reală. Acestea pot fi proiectate în FreeCAD și apoi materializat în diferite moduri, cum ar fi cele comunicarea altor persoane care le vor construi sau, tot mai des, trimise direct la o [3D printer](https://en.wikipedia.org/wiki/3D_printing) sau la o [CNC mill](https://en.wikipedia.org/wiki/Milling_%28machining%29). Capitolul său vă va arăta cum să vă pregătiți modelele pentru a le trimite la aceste mașini-unelte. @@ -224,3 +218,6 @@ Există numeroase aplicații disponibile pentru a simula uzinarea reală, una di [Category:Path](Category:Path.md) [Category:Mesh](Category:Mesh.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Path](Category:Path.md) > Manual:Preparing models for 3D printing/ro diff --git a/wiki/translations/ro/Manual:Summary.md b/wiki/translations/ro/Manual:Summary.md index 381e29cf99..36443ab01d 100644 --- a/wiki/translations/ro/Manual:Summary.md +++ b/wiki/translations/ro/Manual:Summary.md @@ -1,7 +1,4 @@ # Manual:Summary/ro - - -
@@ -69,3 +66,6 @@ There is another table of contents for the [FreeCAD **Online Help** system](Onli [Category:Manual](Category:Manual.md) + +--- +[documentation index](../README.md) > [Manual](Category:Manual.md) > Manual:Summary/ro diff --git a/wiki/translations/ro/Manual:The_Community.md b/wiki/translations/ro/Manual:The_Community.md index d08f3f45bd..f6f8561d9e 100644 --- a/wiki/translations/ro/Manual:The_Community.md +++ b/wiki/translations/ro/Manual:The_Community.md @@ -1,7 +1,4 @@ # Manual:The Community/ro - - - {{Manual:TOC/ro}} Nici un manual care să se ocupe de software-ul gratuit și de tip open source n-ar fi complet fără un capitol despre comunitate. Fiindcă marea majoritate a proiectelor software sunt gratuite și open source, FreeCAD este realizată de către o comunitate și susținută de această comunitate. În loc de o firma opacă, necunoscută, impersonală și inaccesibilă, care este mai mult decât adesea găsită în spatele software-ului comercial, comunitățile de software gratuite și open source sunt spații deschise, unde sunteți bineveniți ca utilizator și unde puteți obține răspunsuri foarte rapid și chiar să vă spuneți punctul de vedere în dezvoltarea software-ului în sine. Sunteți, de asemenea, mai mult decât bineveniți să ajutați, există sarcini pentru toată lumea. @@ -51,6 +48,5 @@ Sperăm că am reușit să vă oferim o bună prezentare pentru FreeCAD în aces
- - - +--- +[documentation index](../README.md) > Manual:The Community/ro diff --git a/wiki/translations/ro/Manual:The_FreeCAD_Interface.md b/wiki/translations/ro/Manual:The_FreeCAD_Interface.md index 456c28aad8..8b4347c7f0 100644 --- a/wiki/translations/ro/Manual:The_FreeCAD_Interface.md +++ b/wiki/translations/ro/Manual:The_FreeCAD_Interface.md @@ -1,10 +1,4 @@ # Manual:The FreeCAD Interface/ro - - - - - - {{Manual:TOC}} @@ -147,6 +141,5 @@ Aceste opțiuni avansate de personalizare sunt disponibile de la **Tools -> Cust - [Workbenches](Workbenches.md) - [More about Python](https://www.python.org) - - - +--- +[documentation index](../README.md) > Manual:The FreeCAD Interface/ro diff --git a/wiki/translations/ro/Manual:The_FreeCAD_document.md b/wiki/translations/ro/Manual:The_FreeCAD_document.md index 03ee22e34d..a72abff84b 100644 --- a/wiki/translations/ro/Manual:The_FreeCAD_document.md +++ b/wiki/translations/ro/Manual:The_FreeCAD_document.md @@ -1,10 +1,4 @@ # Manual:The FreeCAD document/ro - - - - - - {{Manual:TOC/ro}} Un documentul FreeCAD conține toate obiectele din scenă. Poate conține grupuri și obiecte realizate cu orice atelier de lucru. Puteți, prin urmare, să comutați între atelierele de lucru și să lucrați în același document și / sau obiecte în acel document. Când salvați lucrarea, documentul este salvat pe disc. De asemenea, puteți deschide mai multe documente în același timp în FreeCAD și puteți deschide mai multe vizualizări ale aceluiași document. @@ -32,6 +26,5 @@ Documentele FreeCAD sunt slavate cu extensia .FcStd , care este arhivată pe baz - [The FreeCAD document](Document_structure.md) - [File Format FCStd](File_Format_FCStd.md) - - - +--- +[documentation index](../README.md) > Manual:The FreeCAD document/ro diff --git a/wiki/translations/ro/Manual:Traditional_2D_drafting.md b/wiki/translations/ro/Manual:Traditional_2D_drafting.md index 0d145c9a5a..ede17441f2 100644 --- a/wiki/translations/ro/Manual:Traditional_2D_drafting.md +++ b/wiki/translations/ro/Manual:Traditional_2D_drafting.md @@ -1,7 +1,4 @@ # Manual:Traditional 2D drafting/ro - - - {{Manual:TOC/ro}} @@ -231,3 +228,6 @@ Pentru a arăta fluxul de lucru și posibilitățile Atelierului, vom trece prin
[Category:Tutorials/ro](Category:Tutorials/ro.md) [Category:Tutorials](Category:Tutorials.md) [Category:Draft](Category:Draft.md) + +--- +[documentation index](../README.md) > [Tutorials](Category:Tutorials.md) > Manual:Traditional 2D drafting/ro diff --git a/wiki/translations/ro/Manual:Traditional_modeling,_the_CSG_way.md b/wiki/translations/ro/Manual:Traditional_modeling,_the_CSG_way.md index 107af66e27..6ae75abecf 100644 --- a/wiki/translations/ro/Manual:Traditional_modeling,_the_CSG_way.md +++ b/wiki/translations/ro/Manual:Traditional_modeling,_the_CSG_way.md @@ -1,7 +1,4 @@ # Manual:Traditional modeling, the CSG way/ro - - - {{Manual:TOC/ro}} CSG înseamnă Constructive Solid Geometry [Constructive Solid Geometry](https://en.wikipedia.org/wiki/Constructive_solid_geometry)și descrie maniera cea mai simplă de a lucra cu geometria 3D solidă, care creează obiecte complexe prin adăugarea/eliminarea unor elemente de volum prin utilizarea operațiilor booleene cum ar fi unirea, scăderea sau intersecția solidelor. @@ -174,3 +171,6 @@ S-ar putea să vă uitați la masa de mai sus și să vă gândiți că designul [Category:Tutorials/ro](Category:Tutorials/ro.md) + +--- +[documentation index](../README.md) > Manual:Traditional modeling, the CSG way/ro diff --git a/wiki/translations/ro/Manual:Using_spreadsheets.md b/wiki/translations/ro/Manual:Using_spreadsheets.md index b6b78854bc..38ecd516fb 100644 --- a/wiki/translations/ro/Manual:Using_spreadsheets.md +++ b/wiki/translations/ro/Manual:Using_spreadsheets.md @@ -1,7 +1,4 @@ # Manual:Using spreadsheets/ro - - - {{Manual:TOC/ro}} @@ -131,3 +128,6 @@ Puteți, de asemenea, să dați aliasuri constrângerilor dimensionale (orizonta [Category:Tutorials/ro](Category:Tutorials/ro.md) + +--- +[documentation index](../README.md) > Manual:Using spreadsheets/ro diff --git a/wiki/translations/ro/Manual:What_is_FreeCAD.md b/wiki/translations/ro/Manual:What_is_FreeCAD.md index bd25378fd9..b0b04b9af1 100644 --- a/wiki/translations/ro/Manual:What_is_FreeCAD.md +++ b/wiki/translations/ro/Manual:What_is_FreeCAD.md @@ -1,7 +1,4 @@ # Manual:What is FreeCAD/ro - - -
@@ -57,6 +54,5 @@ Site-ul oficial al FreeCAD este la - [List of features](Feature_list.md) - [Screenshots and user cases](http://forum.freecadweb.org/viewforum.php?f=24) - - - +--- +[documentation index](../README.md) > Manual:What is FreeCAD/ro diff --git a/wiki/translations/ro/Material_data_model.md b/wiki/translations/ro/Material_data_model.md index 8688345f84..2102834161 100644 --- a/wiki/translations/ro/Material_data_model.md +++ b/wiki/translations/ro/Material_data_model.md @@ -1,7 +1,4 @@ # Material data model/ro - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -237,3 +234,6 @@ codul CSI/MasterFormat (întrucât există mai multe sisteme utilizate în indus [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Material](Material_Workbench.md) > Material data model/ro diff --git a/wiki/translations/ro/Material_editor.md b/wiki/translations/ro/Material_editor.md index e2d49e152b..b7c04eb319 100644 --- a/wiki/translations/ro/Material_editor.md +++ b/wiki/translations/ro/Material_editor.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial.md) --- +# Material editor/ro +
@@ -89,4 +91,7 @@ MaterialEditor.openEditor() {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Material](Material_Workbench.md) > Material editor/ro diff --git a/wiki/translations/ro/Matrix_API.md b/wiki/translations/ro/Matrix_API.md index a6dce7ba46..558f7fbe57 100644 --- a/wiki/translations/ro/Matrix_API.md +++ b/wiki/translations/ro/Matrix_API.md @@ -1,5 +1,5 @@ # Matrix API/ro - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Matricile 4x4 sunt utilizate peste tot în FreeCAD și pot fi create prin una din următoarele modalități: ```python @@ -96,3 +96,6 @@ print m.A21() # print m[1][0] [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Matrix API/ro diff --git a/wiki/translations/ro/Mesh_API.md b/wiki/translations/ro/Mesh_API.md index 71f0edc307..7ce16a68d7 100644 --- a/wiki/translations/ro/Mesh_API.md +++ b/wiki/translations/ro/Mesh_API.md @@ -1,7 +1,4 @@ # Mesh API/ro - - - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** @@ -242,3 +239,6 @@ d.recompute() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh API/ro diff --git a/wiki/translations/ro/Mesh_BoundingBox.md b/wiki/translations/ro/Mesh_BoundingBox.md index 95fd298c5c..6b18d14cb3 100644 --- a/wiki/translations/ro/Mesh_BoundingBox.md +++ b/wiki/translations/ro/Mesh_BoundingBox.md @@ -1,3 +1,4 @@ +# Mesh BoundingBox/ro --- - GuiCommand: Name:Mesh BoundingBox‏‎ MenuLocation:Meshes → Analyze → Boundings info... Workbenches:[[Mesh Workbench Mesh]]|Shortcut: SeeAlso:--- @@ -38,4 +39,7 @@ Vă oferă coordonatele Min / Max ale unei casete de delimitare pentru o singur {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh BoundingBox/ro diff --git a/wiki/translations/ro/Mesh_BuildRegularSolid.md b/wiki/translations/ro/Mesh_BuildRegularSolid.md index af08b202c9..026aee1e9e 100644 --- a/wiki/translations/ro/Mesh_BuildRegularSolid.md +++ b/wiki/translations/ro/Mesh_BuildRegularSolid.md @@ -1,3 +1,4 @@ +# Mesh BuildRegularSolid/ro --- - GuiCommand: Name:Mesh BuildRegularSolid Workbenches:[[Mesh Workbench Mesh]]|MenuLocation:Meshes → Regular solid... Shortcut: SeeAlso:--- @@ -135,4 +136,7 @@ Mesh objects created with this command inherit all [Mesh Feature](Mesh_Feature.m {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh BuildRegularSolid/ro diff --git a/wiki/translations/ro/Mesh_Difference.md b/wiki/translations/ro/Mesh_Difference.md index 448c1e274d..18ae412c26 100644 --- a/wiki/translations/ro/Mesh_Difference.md +++ b/wiki/translations/ro/Mesh_Difference.md @@ -1,3 +1,4 @@ +# Mesh Difference/ro --- - GuiCommand: Name:Mesh Difference MenuLocation:Meshes → Boolean → Difference Workbenches:[[Mesh Workbench Mesh]]|Shortcut: SeeAlso:--- @@ -57,4 +58,7 @@ See: [Mesh Feature](Mesh_Feature.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Difference/ro diff --git a/wiki/translations/ro/Mesh_EvaluateFacet.md b/wiki/translations/ro/Mesh_EvaluateFacet.md index 43d8170592..096006c1e3 100644 --- a/wiki/translations/ro/Mesh_EvaluateFacet.md +++ b/wiki/translations/ro/Mesh_EvaluateFacet.md @@ -1,3 +1,4 @@ +# Mesh EvaluateFacet/ro --- - GuiCommand: Name:Mesh_EvaluateFacet MenuLocation:Meshes → Analyze → Face info Workbenches:[[Mesh Workbench Mesh]]|Shortcut: SeeAlso:--- @@ -43,4 +44,7 @@ Triangle: <[1.964574, 0.047063, 0.748046], [1.937166, 0.062461, 0.992797], {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateFacet/ro diff --git a/wiki/translations/ro/Mesh_Export.md b/wiki/translations/ro/Mesh_Export.md index 4c9113fb14..7a1ccc33bc 100644 --- a/wiki/translations/ro/Mesh_Export.md +++ b/wiki/translations/ro/Mesh_Export.md @@ -6,6 +6,8 @@ SeeAlso:[Std Export](Std_Export.md), [Import Export](Import_Export.md) --- +# Mesh Export/ro + ## Description The **Mesh Export** command exports a mesh object to a mesh file format. Several file formats are supported. @@ -51,4 +53,7 @@ Mesh.export([doc.Cone, doc.Cylinder], 'D:/testfiles/mymodel.stl') {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Export/ro diff --git a/wiki/translations/ro/Mesh_FillInteractiveHole.md b/wiki/translations/ro/Mesh_FillInteractiveHole.md index 0d9a35e3e6..637b6cca3d 100644 --- a/wiki/translations/ro/Mesh_FillInteractiveHole.md +++ b/wiki/translations/ro/Mesh_FillInteractiveHole.md @@ -1,3 +1,4 @@ +# Mesh FillInteractiveHole/ro --- - GuiCommand: Name:Mesh FillInteractiveHole‏‎ MenuLocation:Meshes → Close hole Workbenches:[[Mesh Workbench Mesh]]|Shortcut: SeeAlso:--- @@ -47,4 +48,7 @@ {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FillInteractiveHole/ro diff --git a/wiki/translations/ro/Mesh_FlipNormals.md b/wiki/translations/ro/Mesh_FlipNormals.md index 9bbf801d81..72f7e5a0f7 100644 --- a/wiki/translations/ro/Mesh_FlipNormals.md +++ b/wiki/translations/ro/Mesh_FlipNormals.md @@ -1,3 +1,4 @@ +# Mesh FlipNormals/ro --- - GuiCommand: Name:Mesh FlipNormals‏‎ MenuLocation:Meshes → Flip Normals Workbenches:[[Mesh Workbench Mesh]]|Shortcut: SeeAlso:--- @@ -52,4 +53,7 @@ Verificați această acțiune prin {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FlipNormals/ro diff --git a/wiki/translations/ro/Mesh_FromPartShape.md b/wiki/translations/ro/Mesh_FromPartShape.md index e7c0ba70b7..15e1f6ab17 100644 --- a/wiki/translations/ro/Mesh_FromPartShape.md +++ b/wiki/translations/ro/Mesh_FromPartShape.md @@ -1,3 +1,4 @@ +# Mesh FromPartShape/ro --- - GuiCommand: Name:Mesh MeshFromShape‏‎ MenuLocation:Meshes → Create Mesh from Shape Workbenches:[[Mesh Workbench Mesh]]|SeeAlso:--- @@ -252,4 +253,7 @@ msh.ViewObject.DisplayMode = "Flat Lines" {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FromPartShape/ro diff --git a/wiki/translations/ro/Mesh_HarmonizeNormals.md b/wiki/translations/ro/Mesh_HarmonizeNormals.md index 44d86207a2..96d26936ed 100644 --- a/wiki/translations/ro/Mesh_HarmonizeNormals.md +++ b/wiki/translations/ro/Mesh_HarmonizeNormals.md @@ -1,3 +1,4 @@ +# Mesh HarmonizeNormals/ro --- - GuiCommand: Name:Mesh HarmonizeNormals‏‎ MenuLocation:Meshes → Harmonize normals Workbenches:[[Mesh Workbench Mesh]]|Shortcut: SeeAlso:--- @@ -46,4 +47,7 @@ Armonizați normalele plaselor sau ochiurilor selectate. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh HarmonizeNormals/ro diff --git a/wiki/translations/ro/Mesh_Import.md b/wiki/translations/ro/Mesh_Import.md index 6333d01630..9a678a1c3b 100644 --- a/wiki/translations/ro/Mesh_Import.md +++ b/wiki/translations/ro/Mesh_Import.md @@ -1,3 +1,4 @@ +# Mesh Import/ro --- - GuiCommand: Name:Mesh ImportMesh‏‎ MenuLocation:Meshes → Import Mesh Workbenches:[SeeAlso:[[Std_Import|Std Import](Mesh_Workbench___Mesh]].md)--- @@ -63,4 +64,7 @@ Mesh.insert('D:/testfiles/cylinder.stl') {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Import/ro diff --git a/wiki/translations/ro/Mesh_Intersection.md b/wiki/translations/ro/Mesh_Intersection.md index c9cdc4ccd3..a539947318 100644 --- a/wiki/translations/ro/Mesh_Intersection.md +++ b/wiki/translations/ro/Mesh_Intersection.md @@ -1,3 +1,4 @@ +# Mesh Intersection/ro --- - GuiCommand: Name:Mesh Intersection‏‎ MenuLocation:Meshes → Boolean → Intersection Workbenches:[[Mesh Workbench Mesh]]|Shortcut: SeeAlso:--- @@ -57,4 +58,7 @@ See: [Mesh Feature](Mesh_Feature.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Intersection/ro diff --git a/wiki/translations/ro/Mesh_Merge.md b/wiki/translations/ro/Mesh_Merge.md index f976e12d76..8e16374207 100644 --- a/wiki/translations/ro/Mesh_Merge.md +++ b/wiki/translations/ro/Mesh_Merge.md @@ -1,3 +1,4 @@ +# Mesh Merge/ro --- - GuiCommand: Name:Mesh Merge‏‎ MenuLocation:Meshes → Merge Workbenches:[Shortcut: SeeAlso:[[Mesh_Union|Boolean Union](Mesh_Workbench___Mesh]].md)--- @@ -41,4 +42,7 @@ See: [Mesh Feature](Mesh_Feature.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Merge/ro diff --git a/wiki/translations/ro/Mesh_Module.md b/wiki/translations/ro/Mesh_Module.md index b8fbb5ad9b..ca6964dc10 100644 --- a/wiki/translations/ro/Mesh_Module.md +++ b/wiki/translations/ro/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/ro 1. REDIRECT [Mesh Workbench/ro](Mesh_Workbench/ro.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/ro diff --git a/wiki/translations/ro/Mesh_RemoveComponents.md b/wiki/translations/ro/Mesh_RemoveComponents.md index eeeaa5977c..b9a9fa070a 100644 --- a/wiki/translations/ro/Mesh_RemoveComponents.md +++ b/wiki/translations/ro/Mesh_RemoveComponents.md @@ -1,3 +1,4 @@ +# Mesh RemoveComponents/ro --- - GuiCommand: Name:Mesh RemoveComponents‏‎ MenuLocation:Meshes → Remove components Workbenches:[[Mesh Workbench Mesh]]|Shortcut: SeeAlso:--- @@ -51,4 +52,7 @@ Dacă este marcată \"Selectați întreaga componentă\", selectați întreaga c {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemoveComponents/ro diff --git a/wiki/translations/ro/Mesh_Scripting.md b/wiki/translations/ro/Mesh_Scripting.md index db757a847b..c73cf5a8a2 100644 --- a/wiki/translations/ro/Mesh_Scripting.md +++ b/wiki/translations/ro/Mesh_Scripting.md @@ -1,7 +1,4 @@ # Mesh Scripting/ro - - - {{TOCright}} @@ -174,3 +171,6 @@ See also [Mesh API](Mesh_API.md) }} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scripting/ro diff --git a/wiki/translations/ro/Mesh_Union.md b/wiki/translations/ro/Mesh_Union.md index 024877ec85..e4f1458704 100644 --- a/wiki/translations/ro/Mesh_Union.md +++ b/wiki/translations/ro/Mesh_Union.md @@ -1,3 +1,4 @@ +# Mesh Union/ro --- - GuiCommand: Name:Mesh Union‏‎ MenuLocation:Meshes → Boolean → Union Workbenches:[Shortcut: SeeAlso:[[Mesh_Merge|Merge](Mesh_Workbench___Mesh]].md)--- @@ -57,4 +58,7 @@ See: [Mesh Feature](Mesh_Feature.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Union/ro diff --git a/wiki/translations/ro/Mesh_Workbench.md b/wiki/translations/ro/Mesh_Workbench.md index f6130d4130..0dbd7fc955 100644 --- a/wiki/translations/ro/Mesh_Workbench.md +++ b/wiki/translations/ro/Mesh_Workbench.md @@ -1,7 +1,4 @@ # Mesh Workbench/ro - - -
@@ -187,3 +184,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/ro diff --git a/wiki/translations/ro/Mesh_to_Part.md b/wiki/translations/ro/Mesh_to_Part.md index 748fae4d5a..bf751bdec3 100644 --- a/wiki/translations/ro/Mesh_to_Part.md +++ b/wiki/translations/ro/Mesh_to_Part.md @@ -1,7 +1,4 @@ # Mesh to Part/ro - - - {{TOCright}} @@ -152,3 +149,6 @@ Part.show(solid) }} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh to Part/ro diff --git a/wiki/translations/ro/Module_Creation.md b/wiki/translations/ro/Module_Creation.md index e81af203de..722b98cd17 100644 --- a/wiki/translations/ro/Module_Creation.md +++ b/wiki/translations/ro/Module_Creation.md @@ -1,2 +1,5 @@ # Module Creation/ro 1. REDIRECT [Workbench\_creation/ro](Workbench_creation/ro.md) + +--- +[documentation index](../README.md) > Module Creation/ro diff --git a/wiki/translations/ro/Mouse_Model.md b/wiki/translations/ro/Mouse_Model.md index 91cc48df0d..9c86783c8b 100644 --- a/wiki/translations/ro/Mouse_Model.md +++ b/wiki/translations/ro/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/ro 1. REDIRECT [Mouse\_navigation/ro](Mouse_navigation/ro.md) + +--- +[documentation index](../README.md) > Mouse Model/ro diff --git a/wiki/translations/ro/Mouse_navigation.md b/wiki/translations/ro/Mouse_navigation.md index eec08df749..ad5b27fd29 100644 --- a/wiki/translations/ro/Mouse_navigation.md +++ b/wiki/translations/ro/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/ro - - - - - - {{TOCright}} ## Overview @@ -387,5 +381,5 @@ The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mous {{docnav/ro|Getting started/ro|Document structure/ro}} - - +--- +[documentation index](../README.md) > Mouse navigation/ro diff --git a/wiki/translations/ro/Naming_project.md b/wiki/translations/ro/Naming_project.md index 560d8fa057..0f4e728f80 100644 --- a/wiki/translations/ro/Naming_project.md +++ b/wiki/translations/ro/Naming_project.md @@ -1,7 +1,4 @@ # Naming project/ro - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -205,3 +202,6 @@ Vezi [here](https://github.com/ezzieyguywuf/freecadTopoTesting/blob/master/TNami [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Naming project/ro diff --git a/wiki/translations/ro/Navigation_Cube.md b/wiki/translations/ro/Navigation_Cube.md index 8caf165f17..ac53e8c46c 100644 --- a/wiki/translations/ro/Navigation_Cube.md +++ b/wiki/translations/ro/Navigation_Cube.md @@ -1,10 +1,4 @@ # Navigation Cube/ro - - - - - - {{TOCright}} The navigational cube control, or **navigation cube**, is a user interface graphic aid for reorienting the 3D view. By default, it is visible and resides in the upper right corner of the 3D display. If you are looking at the standard 3D view, it looks like the following: @@ -98,3 +92,6 @@ For more advanced configuration, refer to the [CubeMenu](Interface_Customization [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Navigation Cube/ro diff --git a/wiki/translations/ro/Object_API.md b/wiki/translations/ro/Object_API.md index 82197ef240..e693be915f 100644 --- a/wiki/translations/ro/Object_API.md +++ b/wiki/translations/ro/Object_API.md @@ -1,5 +1,5 @@ # Object API/ro - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Fiind parametrice, obiectele document în FreeCAD pot avea multe proprietăți suplimentare, dar acestea sunt cele de bază prezente în fiecare Document Object FreeCAD. Obiectele pot fi recuperate pur și simplu după nume. De exemplu: ```python @@ -59,3 +59,6 @@ print myObj.PropertiesList [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Object API/ro diff --git a/wiki/translations/ro/Offsite_tutorials.md b/wiki/translations/ro/Offsite_tutorials.md index 6666a88f1c..60afabd8b0 100644 --- a/wiki/translations/ro/Offsite_tutorials.md +++ b/wiki/translations/ro/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/ro - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** Această pagină afișează tutorialele FreeCAD găsite pe alte site-uri de pe web. @@ -18,4 +18,7 @@ Această pagină afișează tutorialele FreeCAD găsite pe alte site-uri de pe w {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/ro diff --git a/wiki/translations/ro/Online_Help_Startpage.md b/wiki/translations/ro/Online_Help_Startpage.md index 0bc25175fe..41224e2577 100644 --- a/wiki/translations/ro/Online_Help_Startpage.md +++ b/wiki/translations/ro/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/ro - - ![150](images/Crystal_Clear_app_tutorials.png ) ## Bine ati venit la ajutorul on-line @@ -46,3 +44,6 @@ După cum poate ați observat uneori, programatorii nu sunt foarte pricepuți la [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/ro diff --git a/wiki/translations/ro/Online_Help_Toc.md b/wiki/translations/ro/Online_Help_Toc.md index 43001280fe..7b77fc766d 100644 --- a/wiki/translations/ro/Online_Help_Toc.md +++ b/wiki/translations/ro/Online_Help_Toc.md @@ -1,7 +1,4 @@ # Online Help Toc/ro - - -
Acesta este cuprinsul utilizat pentru construirea automată a sistemului de ajutor online din FreeCAD. Versiunea printabilă a acestui manual este de asemenea disponibilă în pagina [releases page](https://github.com/FreeCAD/FreeCAD/releases) @@ -184,3 +181,6 @@ Aici este un alt conținut de cuprins pentru [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/ro diff --git a/wiki/translations/ro/OpenSCAD_AddOpenSCADElement.md b/wiki/translations/ro/OpenSCAD_AddOpenSCADElement.md index 823755a42e..27798c753f 100644 --- a/wiki/translations/ro/OpenSCAD_AddOpenSCADElement.md +++ b/wiki/translations/ro/OpenSCAD_AddOpenSCADElement.md @@ -1,3 +1,4 @@ +# OpenSCAD AddOpenSCADElement/ro --- - GuiCommand:/ro Nume:OpenSCAD_AddOpenSCADElement Name/ro:OpenSCAD_AddOpenSCADElement Workbenches:[[OpenSCAD Workbench/ro OpenSCAD]]|MenuLocation:OpenSCAD → Add OpenSCAD Element--- @@ -79,4 +80,7 @@ Pornind de la FreeCAD Version 0.14, FreeCAD va căuta executabilul OpenSCAD dac {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD AddOpenSCADElement/ro diff --git a/wiki/translations/ro/OpenSCAD_ColorCodeShape.md b/wiki/translations/ro/OpenSCAD_ColorCodeShape.md index 4893298ad4..672ce1f604 100644 --- a/wiki/translations/ro/OpenSCAD_ColorCodeShape.md +++ b/wiki/translations/ro/OpenSCAD_ColorCodeShape.md @@ -1,3 +1,4 @@ +# OpenSCAD ColorCodeShape/ro --- - GuiCommand: Name:OpenSCAD ColorCodeShape‏‎ MenuLocation:OpenSCAD → ColorCodeShape‏‎ |Workbenches:[[OpenSCAD Workbench OpenSCAD]]|Shortcut:none SeeAlso:------ @@ -24,4 +25,7 @@ {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ColorCodeShape/ro diff --git a/wiki/translations/ro/OpenSCAD_Edgestofaces.md b/wiki/translations/ro/OpenSCAD_Edgestofaces.md index d795aeb48d..82adbd1272 100644 --- a/wiki/translations/ro/OpenSCAD_Edgestofaces.md +++ b/wiki/translations/ro/OpenSCAD_Edgestofaces.md @@ -1,3 +1,4 @@ +# OpenSCAD Edgestofaces/ro --- - GuiCommand: Name:OpenSCAD Edgestofaces MenuLocation:OpenSCAD → EdgesToFaces‏‎ |Workbenches:[[OpenSCAD Workbench OpenSCAD]]|Shortcut:none SeeAlso:------ @@ -55,4 +56,7 @@ A se vedea și [Draft Upgrade](Draft_Upgrade.md) pentru o alternativă la modul {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Edgestofaces/ro diff --git a/wiki/translations/ro/OpenSCAD_ExplodeGroup.md b/wiki/translations/ro/OpenSCAD_ExplodeGroup.md index a25f01ade5..2b423e0d1e 100644 --- a/wiki/translations/ro/OpenSCAD_ExplodeGroup.md +++ b/wiki/translations/ro/OpenSCAD_ExplodeGroup.md @@ -1,3 +1,4 @@ +# OpenSCAD ExplodeGroup/ro --- - GuiCommand: Name:OpenSCAD ExplodeGroup MenuLocation:OpenSCAD → Explode Group‏‎ |Workbenches:[[OpenSCAD Workbench OpenSCAD]]|Shortcut:none SeeAlso:------ @@ -73,4 +74,7 @@ Pentru a dezmembra matricile de reptabilitata din Atelierul Draft, utilizați in {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ExplodeGroup/ro diff --git a/wiki/translations/ro/OpenSCAD_Hull.md b/wiki/translations/ro/OpenSCAD_Hull.md index 68873a735a..2d0681de6b 100644 --- a/wiki/translations/ro/OpenSCAD_Hull.md +++ b/wiki/translations/ro/OpenSCAD_Hull.md @@ -1,3 +1,4 @@ +# OpenSCAD Hull/ro --- - GuiCommand: Name:OpenSCAD Hull MenuLocation:OpenSCAD → Hull‏‎ |Workbenches:[[OpenSCAD Workbench OpenSCAD]]|Shortcut:none SeeAlso:------ @@ -65,4 +66,7 @@ Funcțiile necesara OpenSCAD sunt instalate și configurate pe traseul ** Edit** {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Hull/ro diff --git a/wiki/translations/ro/OpenSCAD_IncreaseTolerance.md b/wiki/translations/ro/OpenSCAD_IncreaseTolerance.md index c1f42dee0c..739f610faf 100644 --- a/wiki/translations/ro/OpenSCAD_IncreaseTolerance.md +++ b/wiki/translations/ro/OpenSCAD_IncreaseTolerance.md @@ -1,2 +1,5 @@ # OpenSCAD IncreaseTolerance/ro 1. REDIRECT [OpenSCAD\_IncreaseToleranceFeature/ro](OpenSCAD_IncreaseToleranceFeature/ro.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD IncreaseTolerance/ro diff --git a/wiki/translations/ro/OpenSCAD_IncreaseToleranceFeature.md b/wiki/translations/ro/OpenSCAD_IncreaseToleranceFeature.md index d24b16a533..dfbe405464 100644 --- a/wiki/translations/ro/OpenSCAD_IncreaseToleranceFeature.md +++ b/wiki/translations/ro/OpenSCAD_IncreaseToleranceFeature.md @@ -1,3 +1,4 @@ +# OpenSCAD IncreaseToleranceFeature/ro --- - GuiCommand: Name:OpenSCAD IncreaseTolerance‏‎ MenuLocation:OpenSCAD → Increase Tolerance Feature‏‎ |Workbenches:[[OpenSCAD Workbench OpenSCAD]]|Shortcut:none SeeAlso:------ @@ -26,4 +27,7 @@ Crește toleranța muchiilor/fațetelor/vertex a obiectelor selectate. {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD IncreaseToleranceFeature/ro diff --git a/wiki/translations/ro/OpenSCAD_MeshBoolean.md b/wiki/translations/ro/OpenSCAD_MeshBoolean.md index abc0c62140..d667ab6236 100644 --- a/wiki/translations/ro/OpenSCAD_MeshBoolean.md +++ b/wiki/translations/ro/OpenSCAD_MeshBoolean.md @@ -1,3 +1,4 @@ +# OpenSCAD MeshBoolean/ro --- - GuiCommand: Name:OpenSCAD MeshBoolean MenuLocation:OpenSCAD → Mesh Boolean...‏‎ |Workbenches:[[OpenSCAD Workbench OpenSCAD]]|Shortcut:none SeeAlso:------ @@ -53,4 +54,7 @@ Funcțiile necesara OpenSCAD sunt instalate și configurate pe traseul ** Edit** {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD MeshBoolean/ro diff --git a/wiki/translations/ro/OpenSCAD_Minkowski.md b/wiki/translations/ro/OpenSCAD_Minkowski.md index f5e895c947..f19fbf6dad 100644 --- a/wiki/translations/ro/OpenSCAD_Minkowski.md +++ b/wiki/translations/ro/OpenSCAD_Minkowski.md @@ -1,3 +1,4 @@ +# OpenSCAD Minkowski/ro --- - GuiCommand: Name:OpenSCAD Minkowski MenuLocation:OpenSCAD → Minkowski‏‎ |Workbenches:[[OpenSCAD Workbench OpenSCAD]]|Shortcut:none SeeAlso:------ @@ -76,4 +77,7 @@ Funcțiile necesara OpenSCAD sunt instalate și configurate pe traseul ** Edit** {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Minkowski/ro diff --git a/wiki/translations/ro/OpenSCAD_Module.md b/wiki/translations/ro/OpenSCAD_Module.md index 2415da2f48..d149bf778e 100644 --- a/wiki/translations/ro/OpenSCAD_Module.md +++ b/wiki/translations/ro/OpenSCAD_Module.md @@ -1,2 +1,5 @@ # OpenSCAD Module/ro 1. REDIRECT [OpenSCAD\_Workbench/ro](OpenSCAD_Workbench/ro.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Module/ro diff --git a/wiki/translations/ro/OpenSCAD_RefineShapeFeature.md b/wiki/translations/ro/OpenSCAD_RefineShapeFeature.md index 11d2975585..1432b5c798 100644 --- a/wiki/translations/ro/OpenSCAD_RefineShapeFeature.md +++ b/wiki/translations/ro/OpenSCAD_RefineShapeFeature.md @@ -1,3 +1,4 @@ +# OpenSCAD RefineShapeFeature/ro --- - GuiCommand: Name:OpenSCAD RefineShapeFeature MenuLocation:OpenSCAD → Refine Shape Feature Workbenches:[[OpenSCAD Workbench OpenSCAD]]|SeeAlso:------ @@ -67,4 +68,7 @@ Curata liniile inutile. După o operație booleană, unele linii care definesc f {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD RefineShapeFeature/ro diff --git a/wiki/translations/ro/OpenSCAD_RemoveSubtree.md b/wiki/translations/ro/OpenSCAD_RemoveSubtree.md index 574e1a6aa4..888419fc3a 100644 --- a/wiki/translations/ro/OpenSCAD_RemoveSubtree.md +++ b/wiki/translations/ro/OpenSCAD_RemoveSubtree.md @@ -1,3 +1,4 @@ +# OpenSCAD RemoveSubtree/ro --- - GuiCommand: Name:OpenSCAD RemoveSubtree‏‎ MenuLocation:OpenSCAD → RemoveSubtree |Workbenches:[[OpenSCAD Workbench OpenSCAD]]|Shortcut:none SeeAlso:------ @@ -51,4 +52,7 @@ Elimină obiectele selectate și toți copiii care nu sunt menționați de alte {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD RemoveSubtree/ro diff --git a/wiki/translations/ro/OpenSCAD_ReplaceObject.md b/wiki/translations/ro/OpenSCAD_ReplaceObject.md index 2c83f2ef85..4b9db5547b 100644 --- a/wiki/translations/ro/OpenSCAD_ReplaceObject.md +++ b/wiki/translations/ro/OpenSCAD_ReplaceObject.md @@ -1,3 +1,4 @@ +# OpenSCAD ReplaceObject/ro --- - GuiCommand: Name:OpenSCAD ReplaceObject‏‎ MenuLocation:OpenSCAD → ReplaceObject‏‎ |Workbenches:[[OpenSCAD Workbench OpenSCAD]]|Shortcut:none SeeAlso:------ @@ -61,4 +62,7 @@ Puteți utiliza această funcție, de exemplu, pentru a înlocui o parte din int {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ReplaceObject/ro diff --git a/wiki/translations/ro/OpenSCAD_Workbench.md b/wiki/translations/ro/OpenSCAD_Workbench.md index 6c3e108b38..26bcd62828 100644 --- a/wiki/translations/ro/OpenSCAD_Workbench.md +++ b/wiki/translations/ro/OpenSCAD_Workbench.md @@ -1,10 +1,4 @@ -# OpenSCAD Workbench/ro - - - - - -OpenSCAD workbench icon +# OpenSCAD workbench icon OpenSCAD Workbench/ro ## Introducere @@ -105,3 +99,6 @@ Dacă FreeCAD se blochează atunci când importați CSG, este recomandat să act }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/ro diff --git a/wiki/translations/ro/PartDesign_AdditiveBox.md b/wiki/translations/ro/PartDesign_AdditiveBox.md index cd4d7b41fe..0c45bcb682 100644 --- a/wiki/translations/ro/PartDesign_AdditiveBox.md +++ b/wiki/translations/ro/PartDesign_AdditiveBox.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitive additive](PartDesign_CompPrimitiveAdditive/ro.md) --- +# PartDesign AdditiveBox/ro +
@@ -73,4 +75,7 @@ Caseta poate fi editată după crearea acesteia în două moduri: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveBox/ro diff --git a/wiki/translations/ro/PartDesign_AdditiveCone.md b/wiki/translations/ro/PartDesign_AdditiveCone.md index 3e5728215b..a846e5ef96 100644 --- a/wiki/translations/ro/PartDesign_AdditiveCone.md +++ b/wiki/translations/ro/PartDesign_AdditiveCone.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive/ro.md) --- +# PartDesign AdditiveCone/ro +
@@ -75,4 +77,7 @@ Conul poate fi editat după crearea pe două căi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCone/ro diff --git a/wiki/translations/ro/PartDesign_AdditiveCylinder.md b/wiki/translations/ro/PartDesign_AdditiveCylinder.md index 399164d93b..f65cd5c5ae 100644 --- a/wiki/translations/ro/PartDesign_AdditiveCylinder.md +++ b/wiki/translations/ro/PartDesign_AdditiveCylinder.md @@ -1,3 +1,4 @@ +# PartDesign AdditiveCylinder/ro --- - GuiCommand: Name:PartDesign AdditiveCylinder Workbenches:[MenuLocation:Part Design → Create an additive primitive → Additive Cylinder Shortcut:None SeeAlso:[[PartDesign CompPrimitiveAdditive](PartDesign_Workbench___PartDesign]].md)--- @@ -68,4 +69,7 @@ Cilindrul poate fi editat, după crearea sa, în două moduri: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCylinder/ro diff --git a/wiki/translations/ro/PartDesign_AdditiveEllipsoid.md b/wiki/translations/ro/PartDesign_AdditiveEllipsoid.md index ccdcf6ef76..7f09bf3c12 100644 --- a/wiki/translations/ro/PartDesign_AdditiveEllipsoid.md +++ b/wiki/translations/ro/PartDesign_AdditiveEllipsoid.md @@ -1,3 +1,4 @@ +# PartDesign AdditiveEllipsoid/ro --- - GuiCommand: Name:PartDesign AdditiveEllipsoid Workbenches:[MenuLocation:Part Design → Create an additive primitive → Additive Ellipsoid Shortcut:None SeeAlso:[[PartDesign CompPrimitiveAdditive](PartDesign_Workbench___PartDesign]].md)--- @@ -72,4 +73,7 @@ Elipsoidul poate fi editat după crearea sa în două moduri: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveEllipsoid/ro diff --git a/wiki/translations/ro/PartDesign_AdditiveLoft.md b/wiki/translations/ro/PartDesign_AdditiveLoft.md index 28191f25cb..5dfd0733e3 100644 --- a/wiki/translations/ro/PartDesign_AdditiveLoft.md +++ b/wiki/translations/ro/PartDesign_AdditiveLoft.md @@ -8,6 +8,8 @@ SeeAlso:[[PartDesign AdditivePipe/ro]] --- +# PartDesign AdditiveLoft/ro +
@@ -126,4 +128,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveLoft/ro diff --git a/wiki/translations/ro/PartDesign_AdditivePipe.md b/wiki/translations/ro/PartDesign_AdditivePipe.md index 52ce9d8e6c..821aec9fe0 100644 --- a/wiki/translations/ro/PartDesign_AdditivePipe.md +++ b/wiki/translations/ro/PartDesign_AdditivePipe.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Additive Loft](PartDesign_AdditiveLoft/ro.md) --- +# PartDesign AdditivePipe/ro +
@@ -109,4 +111,7 @@ To use more than one cross-section, start with the first cross-section sketch as {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePipe/ro diff --git a/wiki/translations/ro/PartDesign_AdditivePrism.md b/wiki/translations/ro/PartDesign_AdditivePrism.md index 2153ef682f..0e9ac74739 100644 --- a/wiki/translations/ro/PartDesign_AdditivePrism.md +++ b/wiki/translations/ro/PartDesign_AdditivePrism.md @@ -1,3 +1,4 @@ +# PartDesign AdditivePrism/ro --- - GuiCommand: Name:PartDesign AdditivePrism Workbenches:[MenuLocation:Part Design → Create an additive primitive → Additive Prism Shortcut: SeeAlso:[[PartDesign CompPrimitiveAdditive](PartDesign_Workbench___PartDesign]].md)--- @@ -68,4 +69,7 @@ Prisma pote fi editată după crearea sa în două moduri: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePrism/ro diff --git a/wiki/translations/ro/PartDesign_AdditiveSphere.md b/wiki/translations/ro/PartDesign_AdditiveSphere.md index 80c9926ac1..8f4b3191ae 100644 --- a/wiki/translations/ro/PartDesign_AdditiveSphere.md +++ b/wiki/translations/ro/PartDesign_AdditiveSphere.md @@ -1,3 +1,4 @@ +# PartDesign AdditiveSphere/ro --- - GuiCommand: Name:PartDesign AdditiveSphere Workbenches:[MenuLocation:Part Design → Create an additive primitive → Additive Sphere Shortcut:None SeeAlso:[[PartDesign CompPrimitiveAdditive](PartDesign_Workbench___PartDesign]].md)--- @@ -68,4 +69,7 @@ Sfera poate fi editată după crearea sa pe două căi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveSphere/ro diff --git a/wiki/translations/ro/PartDesign_AdditiveTorus.md b/wiki/translations/ro/PartDesign_AdditiveTorus.md index 2764d2f1a3..15fafcabb0 100644 --- a/wiki/translations/ro/PartDesign_AdditiveTorus.md +++ b/wiki/translations/ro/PartDesign_AdditiveTorus.md @@ -1,3 +1,4 @@ +# PartDesign AdditiveTorus/ro --- - GuiCommand: Name:PartDesign AdditiveTorus Workbenches:[MenuLocation:Part Design → Create an additive primitive → Additive Torus Shortcut: SeeAlso:[[PartDesign CompPrimitiveAdditive](PartDesign_Workbench___PartDesign]].md)--- @@ -70,4 +71,7 @@ Torul poate fi definit după crearea sa în două moduri: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveTorus/ro diff --git a/wiki/translations/ro/PartDesign_AdditiveWedge.md b/wiki/translations/ro/PartDesign_AdditiveWedge.md index 7155fcd8f9..8ebc108507 100644 --- a/wiki/translations/ro/PartDesign_AdditiveWedge.md +++ b/wiki/translations/ro/PartDesign_AdditiveWedge.md @@ -1,3 +1,4 @@ +# PartDesign AdditiveWedge/ro --- - GuiCommand: Name:PartDesign AdditiveWedge Workbenches:[MenuLocation:Part Design → Create an additive primitive → Additive Wedge Shortcut:None SeeAlso:[[PartDesign CompPrimitiveAdditive](PartDesign_Workbench___PartDesign]].md)--- @@ -66,4 +67,7 @@ Wedges can be used to create pyramids by setting **X2 min/max** and **Z2 min/max {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveWedge/ro diff --git a/wiki/translations/ro/PartDesign_Bearingholder_Tutorial_I.md b/wiki/translations/ro/PartDesign_Bearingholder_Tutorial_I.md index 499a0eece4..a343e26e02 100644 --- a/wiki/translations/ro/PartDesign_Bearingholder_Tutorial_I.md +++ b/wiki/translations/ro/PartDesign_Bearingholder_Tutorial_I.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial I/ro - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -122,3 +118,6 @@ We have modelled the bearing holder top with the dimensions it will have after c [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial I/ro diff --git a/wiki/translations/ro/PartDesign_Bearingholder_Tutorial_II.md b/wiki/translations/ro/PartDesign_Bearingholder_Tutorial_II.md index 98f12f9ac5..6d757941ab 100644 --- a/wiki/translations/ro/PartDesign_Bearingholder_Tutorial_II.md +++ b/wiki/translations/ro/PartDesign_Bearingholder_Tutorial_II.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial II/ro - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -96,3 +92,6 @@ For the rest of the machining, create a new Body. The bottom of the holder will [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial II/ro diff --git a/wiki/translations/ro/PartDesign_Body.md b/wiki/translations/ro/PartDesign_Body.md index e261cc0b43..9c44e9cbd2 100644 --- a/wiki/translations/ro/PartDesign_Body.md +++ b/wiki/translations/ro/PartDesign_Body.md @@ -9,6 +9,8 @@ SeeAlso:[Std Piesă](Std_Part/ro.md) --- +# PartDesign Body/ro +
@@ -390,4 +392,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Body/ro diff --git a/wiki/translations/ro/PartDesign_Boolean.md b/wiki/translations/ro/PartDesign_Boolean.md index 310be406af..5d7f165b07 100644 --- a/wiki/translations/ro/PartDesign_Boolean.md +++ b/wiki/translations/ro/PartDesign_Boolean.md @@ -7,6 +7,8 @@ Version:0.17 --- +# PartDesign Boolean/ro +
@@ -94,4 +96,7 @@ De asemenea, puteți selecta unul sau mai multe corpuri înainte de a apăsa but {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Boolean/ro diff --git a/wiki/translations/ro/PartDesign_Chamfer.md b/wiki/translations/ro/PartDesign_Chamfer.md index 996e7cf739..f0eba21700 100644 --- a/wiki/translations/ro/PartDesign_Chamfer.md +++ b/wiki/translations/ro/PartDesign_Chamfer.md @@ -1,3 +1,4 @@ +# PartDesign Chamfer/ro --- - GuiCommand: Name:PartDesign Chamfer Workbenches:[MenuLocation:Part Design → Chamfer SeeAlso:[[Part Chamfer|Chamfer Part](PartDesign_Workbench___PartDesign]],_Complete.md)--- @@ -156,4 +157,7 @@ Bien qu\'ils partagent la même icône, ces outils sont différents, et s\'utili {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Chamfer/ro diff --git a/wiki/translations/ro/PartDesign_Clone.md b/wiki/translations/ro/PartDesign_Clone.md index 1e25e3c17a..f86cc85ae0 100644 --- a/wiki/translations/ro/PartDesign_Clone.md +++ b/wiki/translations/ro/PartDesign_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Clone](Draft_Clone/ro.md) --- +# PartDesign Clone/ro +
@@ -65,4 +67,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Clone/ro diff --git a/wiki/translations/ro/PartDesign_CompPrimitiveAdditive.md b/wiki/translations/ro/PartDesign_CompPrimitiveAdditive.md index a17eeb7742..5113fdf6b6 100644 --- a/wiki/translations/ro/PartDesign_CompPrimitiveAdditive.md +++ b/wiki/translations/ro/PartDesign_CompPrimitiveAdditive.md @@ -9,6 +9,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive/ro.md) --- +# PartDesign CompPrimitiveAdditive/ro +
@@ -39,4 +41,7 @@ Creează o primitivă geometrică aditivă în Corpul activ ca primă funcție(o {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveAdditive/ro diff --git a/wiki/translations/ro/PartDesign_CompPrimitiveSubtractive.md b/wiki/translations/ro/PartDesign_CompPrimitiveSubtractive.md index 93ab414530..f8f47b0f2a 100644 --- a/wiki/translations/ro/PartDesign_CompPrimitiveSubtractive.md +++ b/wiki/translations/ro/PartDesign_CompPrimitiveSubtractive.md @@ -8,6 +8,8 @@ Version:0.17 --- +# PartDesign CompPrimitiveSubtractive/ro +
@@ -38,4 +40,7 @@ Creează primitive geometrice substractive în corpul activ, extrăgându-le/sc {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveSubtractive/ro diff --git a/wiki/translations/ro/PartDesign_Draft.md b/wiki/translations/ro/PartDesign_Draft.md index 7f6295c9a5..d4acc983fa 100644 --- a/wiki/translations/ro/PartDesign_Draft.md +++ b/wiki/translations/ro/PartDesign_Draft.md @@ -1,3 +1,4 @@ +# PartDesign Draft/ro --- - GuiCommand: Name:PartDesign Draft MenuLocation:Part Design → Draft Workbenches:[[PartDesign_Workbench Part Design]]|Shortcut:None SeeAlso:None--- @@ -93,4 +94,7 @@ Acest instrument creează o pantă unghiulară (înclinarea fațetelor) pe fațe {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Draft/ro diff --git a/wiki/translations/ro/PartDesign_Fillet.md b/wiki/translations/ro/PartDesign_Fillet.md index e6b8686710..0d3d076ea5 100644 --- a/wiki/translations/ro/PartDesign_Fillet.md +++ b/wiki/translations/ro/PartDesign_Fillet.md @@ -1,3 +1,4 @@ +# PartDesign Fillet/ro --- - GuiCommand: Name:PartDesign Fillet Workbenches:[MenuLocation:PartDesign → Fillet SeeAlso:[[Part Fillet|Part Fillet](PartDesign_Workbench___PartDesign]],_Complete.md)--- @@ -181,4 +182,7 @@ Part.show(Box) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Fillet/ro diff --git a/wiki/translations/ro/PartDesign_Groove.md b/wiki/translations/ro/PartDesign_Groove.md index 20e9ad506e..e97fa9a299 100644 --- a/wiki/translations/ro/PartDesign_Groove.md +++ b/wiki/translations/ro/PartDesign_Groove.md @@ -1,3 +1,4 @@ +# PartDesign Groove/ro --- - GuiCommand: Name:PartDesign Groove Workbenches:[[PartDesign Workbench PartDesign]], Complete|MenuLocation:PartDesign → Groove--- @@ -97,4 +98,7 @@ Dacă este setat la true, curăță solidul de margini reziduale lăsate de func {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Groove/ro diff --git a/wiki/translations/ro/PartDesign_Hole.md b/wiki/translations/ro/PartDesign_Hole.md index 0d30d474e0..af3529b9b7 100644 --- a/wiki/translations/ro/PartDesign_Hole.md +++ b/wiki/translations/ro/PartDesign_Hole.md @@ -1,3 +1,4 @@ +# PartDesign Hole/ro --- - GuiCommand: Name:PartDesign Hole Workbenches:[MenuLocation:Part Design → Hole Shortcut:None SeeAlso:[[PartDesign Pocket](PartDesign_Workbench___PartDesign]].md)--- @@ -154,4 +155,7 @@ Example: {{Code|lang=json|code= {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Hole/ro diff --git a/wiki/translations/ro/PartDesign_InvoluteGear.md b/wiki/translations/ro/PartDesign_InvoluteGear.md index 537ad71746..f525f20f0e 100644 --- a/wiki/translations/ro/PartDesign_InvoluteGear.md +++ b/wiki/translations/ro/PartDesign_InvoluteGear.md @@ -7,6 +7,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign InvoluteGear/ro +
@@ -95,4 +97,7 @@ Valoarea implicită este de 20 de grade. ([More info](http://en.wikipedia {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign InvoluteGear/ro diff --git a/wiki/translations/ro/PartDesign_Legacy.md b/wiki/translations/ro/PartDesign_Legacy.md index cbdd8293f5..5484dff574 100644 --- a/wiki/translations/ro/PartDesign_Legacy.md +++ b/wiki/translations/ro/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/ro 1. REDIRECT [PartDesign\_Workbench/ro](PartDesign_Workbench/ro.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/ro diff --git a/wiki/translations/ro/PartDesign_Line.md b/wiki/translations/ro/PartDesign_Line.md index 70d3f49399..507cb5694d 100644 --- a/wiki/translations/ro/PartDesign_Line.md +++ b/wiki/translations/ro/PartDesign_Line.md @@ -8,6 +8,8 @@ SeeAlso:[[PartDesign Point/ro]], [[PartDesign Plane/ro]] --- +# PartDesign Line/ro +
@@ -65,4 +67,7 @@ Faceți dublu clic pe eticheta DatumLine din arborescența Model sau faceți cli {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Line/ro diff --git a/wiki/translations/ro/PartDesign_LinearPattern.md b/wiki/translations/ro/PartDesign_LinearPattern.md index db2b8ec31d..2b4fa60437 100644 --- a/wiki/translations/ro/PartDesign_LinearPattern.md +++ b/wiki/translations/ro/PartDesign_LinearPattern.md @@ -1,3 +1,4 @@ +# PartDesign LinearPattern/ro --- - GuiCommand: Name:PartDesign LinearPattern Workbenches:[[PartDesign Workbench PartDesign]], Complete|MenuLocation:PartDesign → LinearPattern--- @@ -119,4 +120,7 @@ v0.17 and above Select one of the Body Origin\'s standard axis (X, Y or Z) as di {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign LinearPattern/ro diff --git a/wiki/translations/ro/PartDesign_Migrate.md b/wiki/translations/ro/PartDesign_Migrate.md index 29394db9c6..3fe73009ce 100644 --- a/wiki/translations/ro/PartDesign_Migrate.md +++ b/wiki/translations/ro/PartDesign_Migrate.md @@ -7,6 +7,8 @@ Version:0.17 --- +# PartDesign Migrate/ro +
@@ -48,4 +50,7 @@ Atelierul PartDesign în FreeCAD v0.17 introduce noi instrumente și elemente ca {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Migrate/ro diff --git a/wiki/translations/ro/PartDesign_Mirrored.md b/wiki/translations/ro/PartDesign_Mirrored.md index 7d521e1241..eeb779bc40 100644 --- a/wiki/translations/ro/PartDesign_Mirrored.md +++ b/wiki/translations/ro/PartDesign_Mirrored.md @@ -1,3 +1,4 @@ +# PartDesign Mirrored/ro --- - GuiCommand: Name:PartDesign Mirrored Workbenches:[[PartDesign Workbench PartDesign]], Complete|MenuLocation:PartDesign → Mirrored--- @@ -135,4 +136,7 @@ The mirror result can be previewed in real time before clicking OK by checking \ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Mirrored/ro diff --git a/wiki/translations/ro/PartDesign_MoveFeature.md b/wiki/translations/ro/PartDesign_MoveFeature.md index 56bf0f3e03..87c2a6ff4e 100644 --- a/wiki/translations/ro/PartDesign_MoveFeature.md +++ b/wiki/translations/ro/PartDesign_MoveFeature.md @@ -8,6 +8,8 @@ SeeAlso:[Set tip](PartDesign_MoveTip.md), [Move object after other object](PartDesign_MoveFeatureInTree.md) --- +# PartDesign MoveFeature/ro +
@@ -46,4 +48,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeature/ro diff --git a/wiki/translations/ro/PartDesign_MoveFeatureInTree.md b/wiki/translations/ro/PartDesign_MoveFeatureInTree.md index e1bbf0bc37..422ea3e81d 100644 --- a/wiki/translations/ro/PartDesign_MoveFeatureInTree.md +++ b/wiki/translations/ro/PartDesign_MoveFeatureInTree.md @@ -9,6 +9,8 @@ Version:0.17 --- +# PartDesign MoveFeatureInTree/ro +
@@ -53,4 +55,7 @@ Următoarele trei imagini prezintă același model cu un buzunar definit pe o sc {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeatureInTree/ro diff --git a/wiki/translations/ro/PartDesign_MoveTip.md b/wiki/translations/ro/PartDesign_MoveTip.md index 89d681c68c..cf0a942560 100644 --- a/wiki/translations/ro/PartDesign_MoveTip.md +++ b/wiki/translations/ro/PartDesign_MoveTip.md @@ -1,3 +1,4 @@ +# PartDesign MoveTip/ro --- - GuiCommand: Name:PartDesign MoveTip MenuLocation:Contextual menu → Set tip Workbenches:[Shortcut:None SeeAlso:[[PartDesign MoveFeature|Move object to other body](PartDesign_Workbench___PartDesign]].md), [Move object after other object](PartDesign_MoveFeatureInTree.md)--- @@ -56,4 +57,7 @@ Trucul este distins vizual în arborele model printr-o săgeată mică albă în {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveTip/ro diff --git a/wiki/translations/ro/PartDesign_MultiTransform.md b/wiki/translations/ro/PartDesign_MultiTransform.md index 1bbe4fb8ac..232a6e58f6 100644 --- a/wiki/translations/ro/PartDesign_MultiTransform.md +++ b/wiki/translations/ro/PartDesign_MultiTransform.md @@ -1,3 +1,4 @@ +# PartDesign MultiTransform/ro --- - GuiCommand: Name:PartDesign MultiTransform Workbenches:[[PartDesign Workbench PartDesign]], Complete|MenuLocation:PartDesign -> MultiTransform--- @@ -197,4 +198,7 @@ Allows changing the order of transformations in the list \|} {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MultiTransform/ro diff --git a/wiki/translations/ro/PartDesign_NewSketch.md b/wiki/translations/ro/PartDesign_NewSketch.md index b310a0eeeb..0a21a94c49 100644 --- a/wiki/translations/ro/PartDesign_NewSketch.md +++ b/wiki/translations/ro/PartDesign_NewSketch.md @@ -1,3 +1,4 @@ +# PartDesign NewSketch/ro --- - GuiCommand: Name:PartDesign NewSketch Workbenches:[[PartDesign Workbench PartDesign]], Complete|MenuLocation:Part Design → Create sketch Shortcut: SeeAlso:--- @@ -61,4 +62,7 @@ To reference any items in the [PartDesign](PartDesign_Workbench.md) > PartDesign Scaled/ro diff --git a/wiki/translations/ro/PartDesign_ShapeBinder.md b/wiki/translations/ro/PartDesign_ShapeBinder.md index 8697cb444b..741079cec8 100644 --- a/wiki/translations/ro/PartDesign_ShapeBinder.md +++ b/wiki/translations/ro/PartDesign_ShapeBinder.md @@ -8,6 +8,8 @@ SeeAlso:[[PartDesign Clone/ro]] --- +# PartDesign ShapeBinder/ro +
@@ -153,4 +155,7 @@ There is a workaround for multiple selection: If you select all the elements you {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign ShapeBinder/ro diff --git a/wiki/translations/ro/PartDesign_SubtractiveBox.md b/wiki/translations/ro/PartDesign_SubtractiveBox.md index 72358f3f8b..a1158bc598 100644 --- a/wiki/translations/ro/PartDesign_SubtractiveBox.md +++ b/wiki/translations/ro/PartDesign_SubtractiveBox.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveBox/ro --- - GuiCommand: Name:PartDesign SubtractiveBox Workbenches:[MenuLocation:Part Design → Create a subtractive primitive → Subtractive box Shortcut:None SeeAlso:[[PartDesign CompPrimitiveSubtractive](PartDesign_Workbench___PartDesign]].md)--- @@ -69,4 +70,7 @@ The Box can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveBox/ro diff --git a/wiki/translations/ro/PartDesign_SubtractiveCone.md b/wiki/translations/ro/PartDesign_SubtractiveCone.md index 1ec3333db9..7ac99a5a4e 100644 --- a/wiki/translations/ro/PartDesign_SubtractiveCone.md +++ b/wiki/translations/ro/PartDesign_SubtractiveCone.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveCone/ro --- - GuiCommand: Name:PartDesign SubtractiveCone Workbenches:[MenuLocation:Part Design → Create a subtractive primitive → Subtractive Cone Shortcut:None SeeAlso:[[PartDesign CompPrimitiveSubtractive](PartDesign_Workbench___PartDesign]].md)--- @@ -70,4 +71,7 @@ Conul poate fi editat după crearea pe două căi: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCone/ro diff --git a/wiki/translations/ro/PartDesign_SubtractiveCylinder.md b/wiki/translations/ro/PartDesign_SubtractiveCylinder.md index d648376dbf..72a2ca29d9 100644 --- a/wiki/translations/ro/PartDesign_SubtractiveCylinder.md +++ b/wiki/translations/ro/PartDesign_SubtractiveCylinder.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveCylinder/ro --- - GuiCommand: Name:PartDesign SubtractiveCylinder Workbenches:[MenuLocation:Part Design → Create a subtractive primitive → Subtractive Cylinder Shortcut:None SeeAlso:[[PartDesign CompPrimitiveSubtractive](PartDesign_Workbench___PartDesign]].md)--- @@ -70,4 +71,7 @@ Cilindrul poate fi editat, după crearea sa, în două moduri: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCylinder/ro diff --git a/wiki/translations/ro/PartDesign_SubtractiveEllipsoid.md b/wiki/translations/ro/PartDesign_SubtractiveEllipsoid.md index 49b37a31af..8977b1c9f2 100644 --- a/wiki/translations/ro/PartDesign_SubtractiveEllipsoid.md +++ b/wiki/translations/ro/PartDesign_SubtractiveEllipsoid.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveEllipsoid/ro --- - GuiCommand: Name:PartDesign SubtractiveEllipsoid Workbenches:[MenuLocation:Part Design → Create an subtractive primitive → Subtractive Ellipsoid Shortcut:None SeeAlso:[[PartDesign CompPrimitiveSubtractive](PartDesign_Workbench___PartDesign]].md)--- @@ -74,4 +75,7 @@ Elipsoidul poate fi editat după crearea sa în două moduri: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveEllipsoid/ro diff --git a/wiki/translations/ro/PartDesign_SubtractiveLoft.md b/wiki/translations/ro/PartDesign_SubtractiveLoft.md index f5839bfb21..b8409e1f40 100644 --- a/wiki/translations/ro/PartDesign_SubtractiveLoft.md +++ b/wiki/translations/ro/PartDesign_SubtractiveLoft.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveLoft/ro --- - GuiCommand: Name:PartDesign SubtractiveLoft Workbenches:[MenuLocation:Part Design → Subtractive loft Shortcut:None SeeAlso:[[PartDesign AdditiveLoft|Additive loft](PartDesign_Workbench___PartDesign]].md), [Subtractive pipe](PartDesign_SubtractivePipe.md)--- @@ -93,4 +94,7 @@ Instrumentul **Subtractive Loft** creează un solid substractiv în Corpul activ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveLoft/ro diff --git a/wiki/translations/ro/PartDesign_SubtractivePipe.md b/wiki/translations/ro/PartDesign_SubtractivePipe.md index 2f2839d638..252decd6c9 100644 --- a/wiki/translations/ro/PartDesign_SubtractivePipe.md +++ b/wiki/translations/ro/PartDesign_SubtractivePipe.md @@ -1,3 +1,4 @@ +# PartDesign SubtractivePipe/ro --- - GuiCommand: Name:PartDesign SubtractivePipe Workbenches:[MenuLocation:Part Design → Subtractive pipe Shortcut:None SeeAlso:[[PartDesign AdditivePipe|Additive pipe](PartDesign_Workbench___PartDesign]].md), [Subtractive loft](PartDesign_SubtractiveLoft.md)--- @@ -108,4 +109,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePipe/ro diff --git a/wiki/translations/ro/PartDesign_SubtractivePrism.md b/wiki/translations/ro/PartDesign_SubtractivePrism.md index 1bf06645e4..1c9b8c2d94 100644 --- a/wiki/translations/ro/PartDesign_SubtractivePrism.md +++ b/wiki/translations/ro/PartDesign_SubtractivePrism.md @@ -1,3 +1,4 @@ +# PartDesign SubtractivePrism/ro --- - GuiCommand: Name:PartDesign SubtractivePrism Workbenches:[MenuLocation:Part Design → Create a subtractive primitive → Subtractive Prism Shortcut:None SeeAlso:[[PartDesign CompPrimitiveSubtractive](PartDesign_Workbench___PartDesign]].md)--- @@ -70,4 +71,7 @@ Prisma poate fi definită după crearea sa în două moduri: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePrism/ro diff --git a/wiki/translations/ro/PartDesign_SubtractiveSphere.md b/wiki/translations/ro/PartDesign_SubtractiveSphere.md index 5563175d91..6f4df0a8fc 100644 --- a/wiki/translations/ro/PartDesign_SubtractiveSphere.md +++ b/wiki/translations/ro/PartDesign_SubtractiveSphere.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveSphere/ro --- - GuiCommand: Name:PartDesign SubtractiveSphere Workbenches:[MenuLocation:Part Design → Create a subtractive primitive → Subtractive Sphere Shortcut:None SeeAlso:[[PartDesign CompPrimitiveSubtractive](PartDesign_Workbench___PartDesign]].md)--- @@ -68,4 +69,7 @@ The Sphere can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveSphere/ro diff --git a/wiki/translations/ro/PartDesign_SubtractiveTorus.md b/wiki/translations/ro/PartDesign_SubtractiveTorus.md index d08549464e..5fbba00519 100644 --- a/wiki/translations/ro/PartDesign_SubtractiveTorus.md +++ b/wiki/translations/ro/PartDesign_SubtractiveTorus.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveTorus/ro --- - GuiCommand: Name:PartDesign SubtractiveTorus Workbenches:[MenuLocation:Part Design → Create a subtractive primitive → Subtractive Torus Shortcut:None SeeAlso:[[PartDesign CompPrimitiveSubtractive](PartDesign_Workbench___PartDesign]].md)--- @@ -70,4 +71,7 @@ The Torus can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveTorus/ro diff --git a/wiki/translations/ro/PartDesign_SubtractiveWedge.md b/wiki/translations/ro/PartDesign_SubtractiveWedge.md index 03cda1a46d..75d04cbf1a 100644 --- a/wiki/translations/ro/PartDesign_SubtractiveWedge.md +++ b/wiki/translations/ro/PartDesign_SubtractiveWedge.md @@ -1,3 +1,4 @@ +# PartDesign SubtractiveWedge/ro --- - GuiCommand: Name:PartDesign SubtractiveWedge Workbenches:[MenuLocation:Part Design → Create a subtractive primitive → Subtractive Wedge Shortcut:None SeeAlso:[[PartDesign CompPrimitiveSubtractive](PartDesign_Workbench___PartDesign]].md)--- @@ -68,4 +69,7 @@ Wedges can be used to create pyramids by setting **X2 min/max** and **Z2 min/max {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveWedge/ro diff --git a/wiki/translations/ro/PartDesign_Thickness.md b/wiki/translations/ro/PartDesign_Thickness.md index 405012183d..79553e9e4c 100644 --- a/wiki/translations/ro/PartDesign_Thickness.md +++ b/wiki/translations/ro/PartDesign_Thickness.md @@ -1,3 +1,4 @@ +# PartDesign Thickness/ro --- - GuiCommand: Name:PartDesign Thickness Workbenches:[MenuLocation:Part Design → Thickness Shortcut:None SeeAlso:[[Part_Thickness|Part Thickness](PartDesign_Workbench___PartDesign]].md)--- @@ -97,4 +98,7 @@ Resultat: ![](images/Brga-spessore.png ) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Thickness/ro diff --git a/wiki/translations/ro/PartDesign_WizardShaft.md b/wiki/translations/ro/PartDesign_WizardShaft.md index 033b5c9e51..5552ae0182 100644 --- a/wiki/translations/ro/PartDesign_WizardShaft.md +++ b/wiki/translations/ro/PartDesign_WizardShaft.md @@ -1,3 +1,4 @@ +# PartDesign WizardShaft/ro --- - GuiCommand: Name:PartDesign WizardShaft MenuLocation:Part Design → Shaft design wizard... Workbenches:[PartDesign](PartDesign_Workbench.md), Complete--- @@ -98,4 +99,7 @@ Pentru a adăuga un nou segment de arbore, faceți clic dreapta în spațiul gol {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign WizardShaft/ro diff --git a/wiki/translations/ro/PartDesign_Workbench.md b/wiki/translations/ro/PartDesign_Workbench.md index f84abf699e..d3137c0956 100644 --- a/wiki/translations/ro/PartDesign_Workbench.md +++ b/wiki/translations/ro/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/ro - - -PartDesign workbench icon +# PartDesign workbench icon PartDesign Workbench/ro {{TOCright}} @@ -566,3 +563,6 @@ Unele funcționalități suplimentare găsite în meniul PartDesign: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/ro diff --git a/wiki/translations/ro/PartDesign_project.md b/wiki/translations/ro/PartDesign_project.md index 937f265b4f..838a625f26 100644 --- a/wiki/translations/ro/PartDesign_project.md +++ b/wiki/translations/ro/PartDesign_project.md @@ -1,7 +1,4 @@ # PartDesign project/ro - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -171,3 +168,6 @@ Rotate a Sketch along one of its Axis and a certain angle. **Done \[jrheinlaende [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign project/ro diff --git a/wiki/translations/ro/PartDesign_tutorial.md b/wiki/translations/ro/PartDesign_tutorial.md index 2af07ab4a7..f1f0630f43 100644 --- a/wiki/translations/ro/PartDesign_tutorial.md +++ b/wiki/translations/ro/PartDesign_tutorial.md @@ -1,5 +1,5 @@ # PartDesign tutorial/ro - {{TutorialInfo/ro +{{TutorialInfo/ro |Topic= Sketcher |Level= Beginner |Time= 15 minutes @@ -158,3 +158,6 @@ După finalizarea acestei sarcini, trebuie să aveți următorul rezultat. If not, re-edit the MultiTransform operation by double clicking on it in the Tree View. Check both pattern features to detect necessary modifications, such as the **Axis** and if the **Direction** needs to be reversed. Suntem terminați acum cu fluxul de lucru de bază pentru [PartDesign Workbench](PartDesign_Workbench.md). + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign tutorial/ro diff --git a/wiki/translations/ro/Part_API.md b/wiki/translations/ro/Part_API.md index 0926e7204f..3c870556c0 100644 --- a/wiki/translations/ro/Part_API.md +++ b/wiki/translations/ro/Part_API.md @@ -1,5 +1,5 @@ # Part API/ro - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** Modulul Parte este conexiunea directă dintre FreeCAD și kernelul OpenCasCade. Acesta oferă în principal [ TopoShapes](TopoShape_API.md), care este tipul principal de obiect utilizat de OpenCascade. Modulul Parte conține, de asemenea, o varietate de funcții de comoditate pentru a crea și manipula topoShapes. Exemplu: ```python @@ -101,3 +101,6 @@ Part.Shape [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part API/ro diff --git a/wiki/translations/ro/Part_Attachment.md b/wiki/translations/ro/Part_Attachment.md index af8eb27a39..9fefc9434e 100644 --- a/wiki/translations/ro/Part_Attachment.md +++ b/wiki/translations/ro/Part_Attachment.md @@ -1,2 +1,5 @@ # Part Attachment/ro 1. REDIRECT [Part\_EditAttachment/ro](Part_EditAttachment/ro.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Attachment/ro diff --git a/wiki/translations/ro/Part_Boolean.md b/wiki/translations/ro/Part_Boolean.md index 1438cda362..1b9df26760 100644 --- a/wiki/translations/ro/Part_Boolean.md +++ b/wiki/translations/ro/Part_Boolean.md @@ -7,6 +7,8 @@ SeeAlso:[Part Union](Part_Union/ro.md), [Part Common](Part_Common/ro.md) and [Part Cut](Part_Cut/ro.md) --- +# Part Boolean/ro +
@@ -72,8 +74,5 @@ In cases of coplanarity, even if the first boolean operation succeeds, subsequen *Left: shapes that share a face, a boolean union may produce incorrect results. Right: shapes that intersect each other clearly, the boolean union will be successful in most cases.* - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Boolean/ro diff --git a/wiki/translations/ro/Part_BooleanFragments.md b/wiki/translations/ro/Part_BooleanFragments.md index 544ab28d46..0813ce74ad 100644 --- a/wiki/translations/ro/Part_BooleanFragments.md +++ b/wiki/translations/ro/Part_BooleanFragments.md @@ -7,6 +7,8 @@ SeeAlso:[Part Slice](Part_Slice.md), [Part XOR](Part_XOR.md), [Part Join features](Part_CompJoinFeatures.md), [Part Boolean](Part_Boolean.md) --- +# Part BooleanFragments/ro +
@@ -149,8 +151,5 @@ Acest instrument a fost introdus în FreeCAD v0.17.8053. FreeCAD și necesită c
- - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part BooleanFragments/ro diff --git a/wiki/translations/ro/Part_Box.md b/wiki/translations/ro/Part_Box.md index 8176483502..df1da6a6da 100644 --- a/wiki/translations/ro/Part_Box.md +++ b/wiki/translations/ro/Part_Box.md @@ -1,3 +1,4 @@ +# Part Box/ro --- - GuiCommand: Name:Part Box MenuLocation:Part → Primitives → Cube |Workbenches:[SeeAlso:[[Part_CreatePrimitives|Part CreatePrimitives](Part_Workbench___Part]],_Complete.md)--- @@ -81,8 +82,5 @@ Puteți schimba amplasamentul cu: FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6, 3), FreeCAD.Rotation(30, 45, 10)) ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Box/ro diff --git a/wiki/translations/ro/Part_Builder.md b/wiki/translations/ro/Part_Builder.md index 164f529e84..e454e352e5 100644 --- a/wiki/translations/ro/Part_Builder.md +++ b/wiki/translations/ro/Part_Builder.md @@ -8,6 +8,8 @@ SeeAlso:[Part CreatePrimitives](Part_CreatePrimitives/ro.md) --- +# Part Builder/ro + @@ -122,8 +124,5 @@ Un posibil flux de lucru ar putea fi: - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Builder/ro diff --git a/wiki/translations/ro/Part_Chamfer.md b/wiki/translations/ro/Part_Chamfer.md index 1c3e9a6f72..bc19855374 100644 --- a/wiki/translations/ro/Part_Chamfer.md +++ b/wiki/translations/ro/Part_Chamfer.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part Chamfer/ro + @@ -602,8 +604,5 @@ FreeCAD.ActiveDocument.recompute() - Recalculează toate componentele modificate de pe ecran și reîmprospătează afișajul. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Chamfer/ro diff --git a/wiki/translations/ro/Part_CheckGeometry.md b/wiki/translations/ro/Part_CheckGeometry.md index 8fc068fef4..c056120b92 100644 --- a/wiki/translations/ro/Part_CheckGeometry.md +++ b/wiki/translations/ro/Part_CheckGeometry.md @@ -1,3 +1,4 @@ +# Part CheckGeometry/ro --- - GuiCommand: Name:Part CheckGeometry‏‎ MenuLocation:Part → Check geometry Workbenches:[[Part Workbench Part]]|SeeAlso:--- @@ -48,10 +49,7 @@ Dacă doriți să activați verificările extra BOP (BOP = Operații booleene), ### Log errors -If ticked, any errors found are also logged in the [report view](Report_view.md). (v0.19) +If ticked, any errors found are also logged in the [report view](Report_view.md). (v0.19) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CheckGeometry/ro diff --git a/wiki/translations/ro/Part_Circle.md b/wiki/translations/ro/Part_Circle.md index c4e7c23966..47e4b1cbaf 100644 --- a/wiki/translations/ro/Part_Circle.md +++ b/wiki/translations/ro/Part_Circle.md @@ -1,3 +1,4 @@ +# Part Circle/ro --- - GuiCommand: Name:Part Circle MenuLocation:Part → [Workbenches:[[Part Workbench Part](Part_CreatePrimitives___Create_Primitives]]_→_Circle.md), [OpenSCAD](OpenSCAD_Workbench.md)|SeeAlso:..--- @@ -70,8 +71,5 @@ Utilizăm meniul {{KEY/it| [Part](Part_Workbench.md) > Part Circle/ro diff --git a/wiki/translations/ro/Part_Common.md b/wiki/translations/ro/Part_Common.md index 4fd56e19f9..8fa4d55177 100644 --- a/wiki/translations/ro/Part_Common.md +++ b/wiki/translations/ro/Part_Common.md @@ -7,6 +7,8 @@ SeeAlso:[Part Union](Part_Union/ro.md), [Part Cut](Part_Cut/ro.md) --- +# Part Common/ro + @@ -78,8 +80,5 @@ Elementele de intrare trebuie să fie forme OpenCascade. Exemple: chestii realiz - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Common/ro diff --git a/wiki/translations/ro/Part_CompJoinFeatures.md b/wiki/translations/ro/Part_CompJoinFeatures.md index e7b7f1b88d..2cc853ace2 100644 --- a/wiki/translations/ro/Part_CompJoinFeatures.md +++ b/wiki/translations/ro/Part_CompJoinFeatures.md @@ -7,6 +7,8 @@ SeeAlso:[Part JoinConnect](Part_JoinConnect.md), [Part JoinEmbed](Part_JoinEmbed.md), [Part JoinCutout](Part_JoinCutout.md), [Part Boolean](Part_Boolean.md), [Part Thickness](Part_Thickness.md) --- +# Part CompJoinFeatures/ro + @@ -43,8 +45,5 @@ Această comandă este un meniu derulant din bara de instrumente Booleană și c - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompJoinFeatures/ro diff --git a/wiki/translations/ro/Part_Compound.md b/wiki/translations/ro/Part_Compound.md index 94b5dc2f00..1e68c4e047 100644 --- a/wiki/translations/ro/Part_Compound.md +++ b/wiki/translations/ro/Part_Compound.md @@ -1,3 +1,4 @@ +# Part Compound/ro --- - GuiCommand: Name:Part MakeCompound‏‎ MenuLocation:Part → Make compound Workbenches:[[Part Workbench Part]]|SeeAlso:--- @@ -27,8 +28,5 @@ Un compus/compound care conține piese care se intersectează sau atinge este ** To turn this check on go to **Tools → Edit Parameters → Preferences... → Mod → Part → CheckGeometry → RunBOPCheck** and set the parameter to `true`. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Compound/ro diff --git a/wiki/translations/ro/Part_CompoundFilter.md b/wiki/translations/ro/Part_CompoundFilter.md index 57228e9017..c5c0fdeb6a 100644 --- a/wiki/translations/ro/Part_CompoundFilter.md +++ b/wiki/translations/ro/Part_CompoundFilter.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Part CompoundFilter/ro + @@ -90,8 +92,5 @@ Repetați procedura de selecție de mai sus. Felia și subelementele sale vor fi - **items**: List or range of elements to be selected if Filter Type is \"specific items\". - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompoundFilter/ro diff --git a/wiki/translations/ro/Part_Cone.md b/wiki/translations/ro/Part_Cone.md index 1c4c8e7e61..2b01e0e76b 100644 --- a/wiki/translations/ro/Part_Cone.md +++ b/wiki/translations/ro/Part_Cone.md @@ -8,6 +8,8 @@ SeeAlso:[Part CreatePrimitives](Part_CreatePrimitives/ro.md) --- +# Part Cone/ro + @@ -111,8 +113,5 @@ The cone properties can later be edited, either in the [Property editor](Propert - **Angle**: Number of degrees of the arc or circles defining the upper and lower faces of the truncated cone. The default 360° creates circular faces, a lower value will create a portion of a cone as defined by upper and lower faces each with edges defined by an arc of the number of degrees and two radii. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cone/ro diff --git a/wiki/translations/ro/Part_CreatePrimitives.md b/wiki/translations/ro/Part_CreatePrimitives.md index 49eb99169b..3b8b47a940 100644 --- a/wiki/translations/ro/Part_CreatePrimitives.md +++ b/wiki/translations/ro/Part_CreatePrimitives.md @@ -1,2 +1,5 @@ # Part CreatePrimitives/ro 1. REDIRECT [Part\_Primitives/ro](Part_Primitives/ro.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CreatePrimitives/ro diff --git a/wiki/translations/ro/Part_CrossSections.md b/wiki/translations/ro/Part_CrossSections.md index 77c46bb897..5033128d64 100644 --- a/wiki/translations/ro/Part_CrossSections.md +++ b/wiki/translations/ro/Part_CrossSections.md @@ -6,6 +6,8 @@ SeeAlso:[Part Section](Part_Section.md) --- +# Part CrossSections/ro + @@ -37,8 +39,5 @@ Utilitarul **Cross-sections** crează una sau mai multe secțiuni transversale p ![Result](images/SectionCross3.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CrossSections/ro diff --git a/wiki/translations/ro/Part_Cut.md b/wiki/translations/ro/Part_Cut.md index fbedd03e32..1b80844142 100644 --- a/wiki/translations/ro/Part_Cut.md +++ b/wiki/translations/ro/Part_Cut.md @@ -1,3 +1,4 @@ +# Part Cut/ro --- - GuiCommand: Name:Part Cut MenuLocation:Part → Cut Workbenches:[Complete](Part_Workbench___Part]],_[[Complete_Workbench.md)|SeeAlso:[Part Union](Part_Union.md), [Part Common](Part_Common.md)--- @@ -54,8 +55,5 @@ Input objects must be OpenCascade shapes. Examples: stuff made with Part, PartDe - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cut/ro diff --git a/wiki/translations/ro/Part_Cylinder.md b/wiki/translations/ro/Part_Cylinder.md index 76d04a98ba..224f9b6311 100644 --- a/wiki/translations/ro/Part_Cylinder.md +++ b/wiki/translations/ro/Part_Cylinder.md @@ -1,3 +1,4 @@ +# Part Cylinder/ro --- - GuiCommand:/ro Name:Part Cylinder @@ -67,10 +68,7 @@ Proprietățile pot fi ulterior editate în fila de date pentru cilindru: - **First Angle**: Angle in first direction. (v0.20) -- **Second Angle**: Angle in second direction. (v0.20) +- **Second Angle**: Angle in second direction. (v0.20) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cylinder/ro diff --git a/wiki/translations/ro/Part_EditAttachment.md b/wiki/translations/ro/Part_EditAttachment.md index 950022d9ee..519950d5ff 100644 --- a/wiki/translations/ro/Part_EditAttachment.md +++ b/wiki/translations/ro/Part_EditAttachment.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Part EditAttachment/ro + @@ -313,4 +315,7 @@ Attachment Offset is used to apply a linear or rotary offset from the referenced {{Part_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part EditAttachment/ro diff --git a/wiki/translations/ro/Part_Ellipse.md b/wiki/translations/ro/Part_Ellipse.md index ba09eeba2d..d76b55c098 100644 --- a/wiki/translations/ro/Part_Ellipse.md +++ b/wiki/translations/ro/Part_Ellipse.md @@ -1,3 +1,4 @@ +# Part Ellipse/ro --- - GuiCommand: Name:Part Ellipse MenuLocation:Part → [Workbenches:[[Part Workbench Part](Part_CreatePrimitives___Create_Primitives]]_→_Ellipse.md), [OpenSCAD](OpenSCAD_Workbench.md)|SeeAlso:..--- @@ -33,8 +34,5 @@ Dialogul Create Primitives pote fi accesat via iconiței [CreatePrimitives](Part - **Angle 1:** pornește muchia elipsei sau curba eliptică, (grade, sens antiorar/trigonometric), valaorea implicită este 0 - **Angle 2:** încheierea muchiei elipsei sau curbei eliptice, (exprimate în grade, sens antiorar), valoarea implictă este 360 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipse/ro diff --git a/wiki/translations/ro/Part_Ellipsoid.md b/wiki/translations/ro/Part_Ellipsoid.md index b9657bcd92..851da4c9ee 100644 --- a/wiki/translations/ro/Part_Ellipsoid.md +++ b/wiki/translations/ro/Part_Ellipsoid.md @@ -1,3 +1,4 @@ +# Part Ellipsoid/ro --- - GuiCommand: Name:Part Ellipsoid MenuLocation:Part → [Workbenches:[[Part Workbench Part](Part_CreatePrimitives___Create_Primitives]]_→_Ellipsoid.md), [OpenSCAD](OpenSCAD_Workbench.md)|SeeAlso:..--- @@ -56,8 +57,5 @@ este, de asemenea, raza maximă a secțiunii circulare ![](images/Part_Ellipsoid_screenshot.jpg ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipsoid/ro diff --git a/wiki/translations/ro/Part_Extrude.md b/wiki/translations/ro/Part_Extrude.md index 145c62d44a..c0d7a22d2f 100644 --- a/wiki/translations/ro/Part_Extrude.md +++ b/wiki/translations/ro/Part_Extrude.md @@ -1,3 +1,4 @@ +# Part Extrude/ro --- - GuiCommand: Name:Part Extrude MenuLocation:Part → Extrude Workbenches:[[Part_Workbench Part]]|SeeAlso:--- @@ -210,8 +211,5 @@ Part Extrude doesn\'t care where it is in model tree. PartDesign Pad can only li Part Extrude poate extruda orice obiect care are Part Geometry (forma OCC), cu excepția solidelor și compsolids. Și nu poate extruda fațetele individuale ale altor obiecte. PartDesign Pad va accepta doar o schiță ca profil (și o mică selecție de alte tipuri de obiecte) sau o fațetă a unui solid. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Extrude/ro diff --git a/wiki/translations/ro/Part_Fillet.md b/wiki/translations/ro/Part_Fillet.md index 9bdc8fe250..ec4509624b 100644 --- a/wiki/translations/ro/Part_Fillet.md +++ b/wiki/translations/ro/Part_Fillet.md @@ -7,6 +7,8 @@ SeeAlso:[Part Chamfer](Part_Chamfer/ro.md) --- +# Part Fillet/ro + @@ -80,8 +82,5 @@ The fillet tool sometimes fails when trying to fillet complex objects. A common Also note that the part Fillet feature is affected by the [Topological naming problem](Topological_naming_problem.md) when the any change is done to a modeling step earlier in the chain that affects the number of facets or vertices. This could cause unpredictable result. Until that is resolved (possibly with V0.19) it is advised to apply Chamfer and [Fillet](Part_Fillet.md) operations at the last steps in the chain. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fillet/ro diff --git a/wiki/translations/ro/Part_Fuse.md b/wiki/translations/ro/Part_Fuse.md index 34a4f878dc..59634a810d 100644 --- a/wiki/translations/ro/Part_Fuse.md +++ b/wiki/translations/ro/Part_Fuse.md @@ -7,6 +7,8 @@ SeeAlso:[Part Cut](Part_Cut/ro.md), [Part Common](Part_Common/ro.md) --- +# Part Fuse/ro + @@ -47,8 +49,5 @@ Elementele pot fi adăugate și scoase din fuziune/uniune, tragându-le în sau După această operație, este posibil să fie necesară curățarea formei [RefineShape](Part_RefineShape.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fuse/ro diff --git a/wiki/translations/ro/Part_Helix.md b/wiki/translations/ro/Part_Helix.md index ef4ccaab8a..95fe976106 100644 --- a/wiki/translations/ro/Part_Helix.md +++ b/wiki/translations/ro/Part_Helix.md @@ -1,3 +1,4 @@ +# Part Helix/ro --- - GuiCommand:/ro Name:Part Helix Name/ro:Part Elice MenuLocation:Part → [Workbenches:[[Part Workbench/ro|Part](Part_CreatePrimitives/ro___Create_Primitives]]_→_Helix.md), [OpenSCAD](OpenSCAD_Workbench/ro.md)--- @@ -142,8 +143,5 @@ Odată ce ați creat elicea, aveți opțiunea de a modifica parametrii. | | | +----------------------------------------------------------+----------------------------------------------------------------------------------+ - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Helix/ro diff --git a/wiki/translations/ro/Part_Import.md b/wiki/translations/ro/Part_Import.md index c2a1455c5a..86efe70614 100644 --- a/wiki/translations/ro/Part_Import.md +++ b/wiki/translations/ro/Part_Import.md @@ -6,6 +6,8 @@ SeeAlso:[Std Import](Std_Import.md) --- +# Part Import/ro + @@ -36,8 +38,5 @@ Acest instrument vă permite să a dăugați un fișier [\*.IGES](http://en.wiki - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Import/ro diff --git a/wiki/translations/ro/Part_JoinConnect.md b/wiki/translations/ro/Part_JoinConnect.md index 75ba49dc7d..da69df1d75 100644 --- a/wiki/translations/ro/Part_JoinConnect.md +++ b/wiki/translations/ro/Part_JoinConnect.md @@ -7,6 +7,8 @@ SeeAlso:[Part JoinEmbed](Part_JoinEmbed.md), [Part JoinCutout](Part_JoinCutout.md), [Part Boolean](Part_Boolean.md), [Part Thickness](Part_Thickness.md) --- +# Part JoinConnect/ro + @@ -156,8 +158,5 @@ Instrumentul este re-implementat via generalFuse in FreeCAD v0.17.8053 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinConnect/ro diff --git a/wiki/translations/ro/Part_JoinCutout.md b/wiki/translations/ro/Part_JoinCutout.md index 975191b7c3..5aa0b2e778 100644 --- a/wiki/translations/ro/Part_JoinCutout.md +++ b/wiki/translations/ro/Part_JoinCutout.md @@ -7,6 +7,8 @@ SeeAlso:[Part JoinConnect](Part_JoinConnect.md), [Part JoinEmbed](Part_JoinEmbed.md), [Part Boolean](Part_Boolean.md), [Part Thickness](Part_Thickness.md) --- +# Part JoinCutout/ro + @@ -157,8 +159,5 @@ Instrumentul propriu-zis este implementat în Python, vezi /Mod/Part/JoinFeature - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinCutout/ro diff --git a/wiki/translations/ro/Part_JoinEmbed.md b/wiki/translations/ro/Part_JoinEmbed.md index 02c788423e..878023f24c 100644 --- a/wiki/translations/ro/Part_JoinEmbed.md +++ b/wiki/translations/ro/Part_JoinEmbed.md @@ -7,6 +7,8 @@ SeeAlso:[Part JoinConnect](Part_JoinConnect.md), [Part JoinCutout](Part_JoinCutout.md), [Part Boolean](Part_Boolean.md), [Part Thickness](Part_Thickness.md) --- +# Part JoinEmbed/ro + @@ -147,8 +149,5 @@ The tool itself is implemented in Python, see /Mod/Part/JoinFeatures.py under wh - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinEmbed/ro diff --git a/wiki/translations/ro/Part_Loft.md b/wiki/translations/ro/Part_Loft.md index 4cc77892d0..2c8720362a 100644 --- a/wiki/translations/ro/Part_Loft.md +++ b/wiki/translations/ro/Part_Loft.md @@ -8,6 +8,8 @@ SeeAlso:[Part Sweep](Part_Sweep/ro.md) --- +# Part Loft/ro + @@ -190,8 +192,5 @@ If you want to change the selection of the sections after creation of the loft, The sequence of sections depends on the sequence of clicks in the list. If you want to make substantial changes it is recommended to first deselect all and then start selection in the right order. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Loft/ro diff --git a/wiki/translations/ro/Part_Loft_Technical_Details.md b/wiki/translations/ro/Part_Loft_Technical_Details.md index 2e62ef5156..a94708041d 100644 --- a/wiki/translations/ro/Part_Loft_Technical_Details.md +++ b/wiki/translations/ro/Part_Loft_Technical_Details.md @@ -1,5 +1,5 @@ # Part Loft Technical Details/ro - Această pagină explică în detalii cum este creată o suprafață [Loft](Part_Loft.md). Aceasta este un caz particular de suprafața baleiată [Part Sweep](Part_Sweep.md) dar creată de-a lungul unei traiectorii drepte, dar sunt și alte diferențe. +Această pagină explică în detalii cum este creată o suprafață [Loft](Part_Loft.md). Aceasta este un caz particular de suprafața baleiată [Part Sweep](Part_Sweep.md) dar creată de-a lungul unei traiectorii drepte, dar sunt și alte diferențe. Informațiile furnizate sunt specifice implementării și se pot schimba. Starea actuală este relevantă pentru FreeCAD 0.15.4119, versiunea OCC: 6.7.0. @@ -73,3 +73,6 @@ Rețineți că Loft are o proprietate \"Riglat\". Dacă este setat la adevărat, [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Loft Technical Details/ro diff --git a/wiki/translations/ro/Part_MakeCompound.md b/wiki/translations/ro/Part_MakeCompound.md index de1fd22190..77339472a4 100644 --- a/wiki/translations/ro/Part_MakeCompound.md +++ b/wiki/translations/ro/Part_MakeCompound.md @@ -1,2 +1,5 @@ # Part MakeCompound/ro 1. REDIRECT [Part Compound/ro](Part_Compound/ro.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeCompound/ro diff --git a/wiki/translations/ro/Part_MakeSolid.md b/wiki/translations/ro/Part_MakeSolid.md index be1cf90acf..b435cbceeb 100644 --- a/wiki/translations/ro/Part_MakeSolid.md +++ b/wiki/translations/ro/Part_MakeSolid.md @@ -1,3 +1,4 @@ +# Part MakeSolid/ro --- - GuiCommand: Name:Part ConvertToSolid‏‎ MenuLocation:Part → Convert to solid Workbenches:[[Part Workbench Part]]|SeeAlso:--- @@ -39,8 +40,5 @@ Este recomandabil să utilizați traseul ** Part** → ** Refine Shape** înaint - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeSolid/ro diff --git a/wiki/translations/ro/Part_Measure_Angular.md b/wiki/translations/ro/Part_Measure_Angular.md index 54644ee33e..c3e38b8426 100644 --- a/wiki/translations/ro/Part_Measure_Angular.md +++ b/wiki/translations/ro/Part_Measure_Angular.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Measure Angular/ro + @@ -39,11 +41,5 @@ Acest instrument măsoară unghiul între două muchii drepte , două fațete pl - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Angular/ro diff --git a/wiki/translations/ro/Part_Measure_Clear_All.md b/wiki/translations/ro/Part_Measure_Clear_All.md index 33fcd48b75..feeacb1bb7 100644 --- a/wiki/translations/ro/Part_Measure_Clear_All.md +++ b/wiki/translations/ro/Part_Measure_Clear_All.md @@ -5,6 +5,8 @@ Workbenches:[Part](Part_Workbench.md) --- +# Part Measure Clear All/ro + @@ -22,11 +24,5 @@ Acest instrument șterge toate măsurătorile din vizualizarea 3D . - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Clear All/ro diff --git a/wiki/translations/ro/Part_Measure_Linear.md b/wiki/translations/ro/Part_Measure_Linear.md index 14f056f63f..a35858075b 100644 --- a/wiki/translations/ro/Part_Measure_Linear.md +++ b/wiki/translations/ro/Part_Measure_Linear.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/ro.md) --- +# Part Measure Linear/ro + @@ -34,8 +36,5 @@ Acest instrument măsoară distanța dintre două elemente de topologie selectat - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Linear/ro diff --git a/wiki/translations/ro/Part_Measure_Menu.md b/wiki/translations/ro/Part_Measure_Menu.md index bd64ccbcc0..d3ad68b858 100644 --- a/wiki/translations/ro/Part_Measure_Menu.md +++ b/wiki/translations/ro/Part_Measure_Menu.md @@ -6,6 +6,8 @@ SeeAlso:[Std MeasureDistance](Std_MeasureDistance.md), [Draft Dimension](Draft_Dimension.md), [Arch Survey](Arch_Survey.md) --- +# Part Measure Menu/ro + @@ -46,3 +48,6 @@ A nu se confunda acest meniu cu instrumentul [Part](Part_Workbench.md) > Part Measure Menu/ro diff --git a/wiki/translations/ro/Part_Measure_Toggle_3d.md b/wiki/translations/ro/Part_Measure_Toggle_3d.md index 83305cddc8..dfab3a9f88 100644 --- a/wiki/translations/ro/Part_Measure_Toggle_3d.md +++ b/wiki/translations/ro/Part_Measure_Toggle_3d.md @@ -6,6 +6,8 @@ SeeAlso:[Part Measure Toggle Delta](Part_Measure_Toggle_Delta.md) --- +# Part Measure Toggle 3d/ro + @@ -33,8 +35,5 @@ Acest instrument comută între vizibilitatea măsurătorilor lineară (roșu) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle 3d/ro diff --git a/wiki/translations/ro/Part_Measure_Toggle_All.md b/wiki/translations/ro/Part_Measure_Toggle_All.md index 08f91272a5..fb10253c81 100644 --- a/wiki/translations/ro/Part_Measure_Toggle_All.md +++ b/wiki/translations/ro/Part_Measure_Toggle_All.md @@ -1,3 +1,4 @@ +# Part Measure Toggle All/ro --- - GuiCommand: Name:Std MeasureToggleAll MenuLocation:[|Workbenches:[[Part_Workbench Part](Std_Measure_Menu___Measure]]_→_Toggle_All‏‎.md)|Shortcut: SeeAlso:--- @@ -24,11 +25,5 @@ - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle All/ro diff --git a/wiki/translations/ro/Part_Measure_Toggle_Delta.md b/wiki/translations/ro/Part_Measure_Toggle_Delta.md index 25bca8af36..bd287649d1 100644 --- a/wiki/translations/ro/Part_Measure_Toggle_Delta.md +++ b/wiki/translations/ro/Part_Measure_Toggle_Delta.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/ro.md) --- +# Part Measure Toggle Delta/ro + @@ -33,8 +35,5 @@ Acest instrument activează/dezactivează vizibilitatea măsurătorilor delta (v - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle Delta/ro diff --git a/wiki/translations/ro/Part_Mirror.md b/wiki/translations/ro/Part_Mirror.md index e4e5833ea5..42b1b288d2 100644 --- a/wiki/translations/ro/Part_Mirror.md +++ b/wiki/translations/ro/Part_Mirror.md @@ -1,3 +1,4 @@ +# Part Mirror/ro --- - GuiCommand: Name:Part Mirror MenuLocation:Part -> Mirror Workbenches:[Complete](Part_Workbench___Part]],_[[Complete_Workbench.md)|SeeAlso:------ @@ -83,8 +84,5 @@ Casetele **Base point** pot fi utilizate pentru a mișca planul oglinzii paralel - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Mirror/ro diff --git a/wiki/translations/ro/Part_Module.md b/wiki/translations/ro/Part_Module.md index 7ed93dc76b..05b151cf31 100644 --- a/wiki/translations/ro/Part_Module.md +++ b/wiki/translations/ro/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/ro - - - - - -Part workbench icon +# Part workbench icon Part Module/ro {{TOCright}} @@ -357,3 +351,6 @@ See [Part scripting](Part_scripting.md). [Category:Part/ro](Category:Part/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/ro diff --git a/wiki/translations/ro/Part_Offset.md b/wiki/translations/ro/Part_Offset.md index d9b625e63d..7a01ea1589 100644 --- a/wiki/translations/ro/Part_Offset.md +++ b/wiki/translations/ro/Part_Offset.md @@ -6,6 +6,8 @@ SeeAlso:[Thickness](Part_Thickness.md), [Part 2D Offset](Part_Offset2D.md) --- +# Part Offset/ro + @@ -85,10 +87,7 @@ same shape with a 3D Offset as SKIN and *filled* offset *filled* offset with 2 Cylinders creating boolean cuts. Cylinder A goes through the FILL whilst Cylinder B only goes thru the FILL and NOT through the source 2D shape. - - - + - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset/ro diff --git a/wiki/translations/ro/Part_Offset2D.md b/wiki/translations/ro/Part_Offset2D.md index 6eb061e977..c3596243ee 100644 --- a/wiki/translations/ro/Part_Offset2D.md +++ b/wiki/translations/ro/Part_Offset2D.md @@ -8,6 +8,8 @@ SeeAlso:[Part Offset 3D](Part_Offset/ro.md), [Part Thickness](Part_Thickness/ro.md), [Draft Offset](Draft_Offset/ro.md) --- +# Part Offset2D/ro + @@ -130,8 +132,5 @@ Part.show(enlarged_circle) # structure follows that of source shape. }} - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset2D/ro diff --git a/wiki/translations/ro/Part_Plane.md b/wiki/translations/ro/Part_Plane.md index 4a97e7edae..d072460efb 100644 --- a/wiki/translations/ro/Part_Plane.md +++ b/wiki/translations/ro/Part_Plane.md @@ -1,3 +1,4 @@ +# Part Plane/ro --- - GuiCommand: Name:Part CreatePrimitives Workbenches:[OpenSCAD](Part_Workbench___Part]],_[[OpenSCAD_Workbench.md)|MenuLocation:[Part](Part_Workbench.md) → [Create Primitives](Part_CreatePrimitives.md) → Plane| SeeAlso=[Create Primitives](Part_CreatePrimitives.md)--- @@ -67,8 +68,5 @@ The properties can be changed later in the **Combined View → Data**, after sel You have the standard properties view. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Plane/ro diff --git a/wiki/translations/ro/Part_Primitives.md b/wiki/translations/ro/Part_Primitives.md index 6f71828cb0..4c3559cb2b 100644 --- a/wiki/translations/ro/Part_Primitives.md +++ b/wiki/translations/ro/Part_Primitives.md @@ -1,3 +1,4 @@ +# Part Primitives/ro --- - GuiCommand:/ro Name:Part CreatePrimitives @@ -116,8 +117,5 @@ It can be used as input to the program as well. freecad $INSTALL_DIR/Mod/Part/parttests/part_test_objects.py ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Primitives/ro diff --git a/wiki/translations/ro/Part_RefineShape.md b/wiki/translations/ro/Part_RefineShape.md index d6416c8ee6..b99d7a227d 100644 --- a/wiki/translations/ro/Part_RefineShape.md +++ b/wiki/translations/ro/Part_RefineShape.md @@ -6,6 +6,8 @@ SeeAlso:[Part SimpleCopy](Part_SimpleCopy.md), [Part TransformedCopy](Part_TransformedCopy.md), [Part ElementCopy](Part_ElementCopy.md), [OpenSCAD RefineShapeFeature](OpenSCAD_RefineShapeFeature.md) --- +# Part RefineShape/ro + @@ -113,8 +115,5 @@ The Python command for refining a shape is the following: shape.removeSplitter() ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RefineShape/ro diff --git a/wiki/translations/ro/Part_RegularPolygon.md b/wiki/translations/ro/Part_RegularPolygon.md index 9f67d1a83a..883424a6ce 100644 --- a/wiki/translations/ro/Part_RegularPolygon.md +++ b/wiki/translations/ro/Part_RegularPolygon.md @@ -1,3 +1,4 @@ +# Part RegularPolygon/ro --- - GuiCommand: Name:Part RegularPolygon MenuLocation:Part → [Workbenches:[[Part Workbench Part](Part_CreatePrimitives___Create_Primitives]]_→_Regular_Polygon.md), [OpenSCAD](OpenSCAD_Workbench.md)|Version:0.14 SeeAlso:--- @@ -44,8 +45,5 @@ The RegularPolygon is available from the Create Primitives dialogue in the Part - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RegularPolygon/ro diff --git a/wiki/translations/ro/Part_ReverseShapes.md b/wiki/translations/ro/Part_ReverseShapes.md index a51d90b769..42a66b5d6f 100644 --- a/wiki/translations/ro/Part_ReverseShapes.md +++ b/wiki/translations/ro/Part_ReverseShapes.md @@ -1,3 +1,4 @@ +# Part ReverseShapes/ro --- - GuiCommand: Name:Part ReverseShapes‏‎ MenuLocation:Part → Reverse Shapes Workbenches:[[Part Workbench Part]]|SeeAlso:--- @@ -61,8 +62,5 @@ You can verify this by ## Scripting - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ReverseShapes/ro diff --git a/wiki/translations/ro/Part_Revolve.md b/wiki/translations/ro/Part_Revolve.md index 9551a44972..d5997f50e3 100644 --- a/wiki/translations/ro/Part_Revolve.md +++ b/wiki/translations/ro/Part_Revolve.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part Revolve/ro + @@ -57,8 +59,5 @@ If you select a user defined axis, the numbers define the direction of the revol - Dacă versiunea dvs. de FreeCAD are o casetă de selectare pentru dialogul Solid în dialogul Revolve, puteți face Solids din filamente și muchii închise. - Dacă Revolve este efectuată utilizând o axă care intersectează fața pentru a se roti și doriți să creați un solid, rezultatul poate fi nevalid. Acest lucru se poate întâmpla din diferite motive, auto-intersecție, direcție etc. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Revolve/ro diff --git a/wiki/translations/ro/Part_RuledSurface.md b/wiki/translations/ro/Part_RuledSurface.md index 4823411d57..f399b2aaa0 100644 --- a/wiki/translations/ro/Part_RuledSurface.md +++ b/wiki/translations/ro/Part_RuledSurface.md @@ -6,6 +6,8 @@ SeeAlso:[Part MakeFace](Part_MakeFace.md) --- +# Part RuledSurface/ro + @@ -47,8 +49,5 @@ Macro [Sviluppa superfici rigate](Macro_Unroll_Ruled_Surface/it.md) permite crea - Press the [Part RuledSurface](Part_RuledSurface.md) button - Use the **Part → RuledSurface** entry in the Part menu - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RuledSurface/ro diff --git a/wiki/translations/ro/Part_Section.md b/wiki/translations/ro/Part_Section.md index 149ca88a8c..e33957dd45 100644 --- a/wiki/translations/ro/Part_Section.md +++ b/wiki/translations/ro/Part_Section.md @@ -1,3 +1,4 @@ +# Part Section/ro --- - GuiCommand: Name:Part Section MenuLocation:Part → Section Workbenches:[Complete](Part_Workbench___Part]],_[[Complete_Workbench.md)|SeeAlso:[Cross-sections](Part_SectionCross.md)--- @@ -54,8 +55,5 @@ To create sections with a section plane see [Cross-sections](Part_SectionCross.m - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Section/ro diff --git a/wiki/translations/ro/Part_SectionCross.md b/wiki/translations/ro/Part_SectionCross.md index fafffda641..e1ed4ccabc 100644 --- a/wiki/translations/ro/Part_SectionCross.md +++ b/wiki/translations/ro/Part_SectionCross.md @@ -1,2 +1,5 @@ # Part SectionCross/ro 1. REDIRECT [Part\_CrossSections/ro](Part_CrossSections/ro.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SectionCross/ro diff --git a/wiki/translations/ro/Part_ShapeFromMesh.md b/wiki/translations/ro/Part_ShapeFromMesh.md index 694f08fee5..295a82fe94 100644 --- a/wiki/translations/ro/Part_ShapeFromMesh.md +++ b/wiki/translations/ro/Part_ShapeFromMesh.md @@ -1,3 +1,4 @@ +# Part ShapeFromMesh/ro --- - GuiCommand: Name:Part ShapeFromMesh‏‎ MenuLocation:Part → Create shape from mesh... Workbenches:[SeeAlso:[[Part ConvertToSolid](Part_Workbench___Part]].md), [[Part RefineShape]]--- @@ -76,8 +77,5 @@ solid.purgeTouched() doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ShapeFromMesh/ro diff --git a/wiki/translations/ro/Part_Shapebuilder.md b/wiki/translations/ro/Part_Shapebuilder.md index f4bde2922b..c99ce71660 100644 --- a/wiki/translations/ro/Part_Shapebuilder.md +++ b/wiki/translations/ro/Part_Shapebuilder.md @@ -1,2 +1,5 @@ # Part Shapebuilder/ro 1. REDIRECT [Part\_Builder/ro](Part_Builder/ro.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Shapebuilder/ro diff --git a/wiki/translations/ro/Part_SimpleCopy.md b/wiki/translations/ro/Part_SimpleCopy.md index a1eab4dfcc..06c5a2f721 100644 --- a/wiki/translations/ro/Part_SimpleCopy.md +++ b/wiki/translations/ro/Part_SimpleCopy.md @@ -1,3 +1,4 @@ +# Part SimpleCopy/ro --- - GuiCommand:/ro Name:Part CreateSimpleCopy‏‎ Name/ro:Part CreateSimpleCopy‏‎ MenuLocation:Part → Create simple copy Workbenches:[SeeAlso:[[Draft_Clone/ro Clone](Part_Workbench/ro___Part]].md), [Copy](Std_Copy/ro.md), [Duplicate Selection](Std_DuplicateSelection/ro.md)|Icon:Tree_Part.svg--- @@ -44,8 +45,5 @@ The copy has a simple **Placement** property like any other [Part Feature](Part_ The copy has simple view properties like any other [Part Feature](Part_Feature.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SimpleCopy/ro diff --git a/wiki/translations/ro/Part_Slice.md b/wiki/translations/ro/Part_Slice.md index ae65f4efd1..66f93219e5 100644 --- a/wiki/translations/ro/Part_Slice.md +++ b/wiki/translations/ro/Part_Slice.md @@ -7,6 +7,8 @@ SeeAlso:[Part Boolean Fragments](Part_BooleanFragments.md), [Part XOR](Part_XOR.md), [Part Join features](Part_CompJoinFeatures.md), [Part Boolean](Part_Boolean.md) --- +# Part Slice/ro + @@ -215,8 +217,5 @@ Instrumentul propriu-zis este implementat în Python, vezi /Mod/Part/BOPTools/Sp - [FreeCAD Slice und Slice Apart und andere Tricks](https://www.youtube.com/watch?v=JJAL5JmqqKQ) (German language), author: Ha Gei - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Slice/ro diff --git a/wiki/translations/ro/Part_Sphere.md b/wiki/translations/ro/Part_Sphere.md index af17b2b46b..62f4a00f9a 100644 --- a/wiki/translations/ro/Part_Sphere.md +++ b/wiki/translations/ro/Part_Sphere.md @@ -8,6 +8,8 @@ SeeAlso:[Part CreatePrimitives](Part_CreatePrimitives/ro.md) --- +# Part Sphere/ro + @@ -66,8 +68,5 @@ Deoarece este destul de dificil să se explice semnificația unghiului 1, unghiu - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sphere/ro diff --git a/wiki/translations/ro/Part_Spiral.md b/wiki/translations/ro/Part_Spiral.md index a1f745ef8b..30882733e8 100644 --- a/wiki/translations/ro/Part_Spiral.md +++ b/wiki/translations/ro/Part_Spiral.md @@ -1,3 +1,4 @@ +# Part Spiral/ro --- - GuiCommand: Name:Part Spiral MenuLocation:[Create Primitives](Part_Workbench___Part]]_→_[[Part_CreatePrimitives.md) → Spiral|Workbenches:[OpenSCAD](Part_Workbench___Part]],__[[OpenSCAD_Workbench.md)|SeeAlso:[Create Primitives](Part_CreatePrimitives.md)--- @@ -30,8 +31,5 @@ The Create Primitives dialogue can be accessed via the [CreatePrimitives](Part_C ![](images/Spiral_y45_it.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Spiral/ro diff --git a/wiki/translations/ro/Part_Sweep.md b/wiki/translations/ro/Part_Sweep.md index e793f2feea..d67dbb4238 100644 --- a/wiki/translations/ro/Part_Sweep.md +++ b/wiki/translations/ro/Part_Sweep.md @@ -8,6 +8,8 @@ SeeAlso:[Part Loft](Part_Loft/ro.md) --- +# Part Sweep/ro + @@ -167,8 +169,5 @@ If \"Frenet\" is \"true\" the orientation of the profile is computed basing on l - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sweep/ro diff --git a/wiki/translations/ro/Part_Thickness.md b/wiki/translations/ro/Part_Thickness.md index b584dba85c..a68f2c7e06 100644 --- a/wiki/translations/ro/Part_Thickness.md +++ b/wiki/translations/ro/Part_Thickness.md @@ -6,6 +6,8 @@ SeeAlso:[Part Offset](Part_Offset.md) --- +# Part Thickness/ro + @@ -113,8 +115,5 @@ Notes: ![](images/ThicknessEsempio4.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Thickness/ro diff --git a/wiki/translations/ro/Part_Torus.md b/wiki/translations/ro/Part_Torus.md index 8c886e0dbb..b15fd6990d 100644 --- a/wiki/translations/ro/Part_Torus.md +++ b/wiki/translations/ro/Part_Torus.md @@ -8,6 +8,8 @@ SeeAlso:[Part CreatePrimitives](Part_CreatePrimitives/ro.md) --- +# Part Torus/ro + @@ -80,8 +82,5 @@ precum și setul standard de parametri de plasare. Imaginile de mai jos oferă o - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Torus/ro diff --git a/wiki/translations/ro/Part_Union.md b/wiki/translations/ro/Part_Union.md index fde693520e..3641dd20ba 100644 --- a/wiki/translations/ro/Part_Union.md +++ b/wiki/translations/ro/Part_Union.md @@ -1,2 +1,5 @@ # Part Union/ro 1. REDIRECT [Part\_Fuse/ro](Part_Fuse/ro.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Union/ro diff --git a/wiki/translations/ro/Part_Wedge.md b/wiki/translations/ro/Part_Wedge.md index f844fb50f6..5a21467ed4 100644 --- a/wiki/translations/ro/Part_Wedge.md +++ b/wiki/translations/ro/Part_Wedge.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Wedge/ro + @@ -149,8 +151,5 @@ Creați un obiect parametric Pană/Wedge. Valoarea implicită pentru această re ![](images/Wedge_examples.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Wedge/ro diff --git a/wiki/translations/ro/Part_Workbench.md b/wiki/translations/ro/Part_Workbench.md index 0b1430c067..0f2df7f6b1 100644 --- a/wiki/translations/ro/Part_Workbench.md +++ b/wiki/translations/ro/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/ro 1. REDIRECT [Part\_Module/ro](Part_Module/ro.md) + +--- +[documentation index](../README.md) > Part Workbench/ro diff --git a/wiki/translations/ro/Path_3DSurface.md b/wiki/translations/ro/Path_3DSurface.md index c7c5a5359b..a0a8fde15a 100644 --- a/wiki/translations/ro/Path_3DSurface.md +++ b/wiki/translations/ro/Path_3DSurface.md @@ -1,2 +1,5 @@ # Path 3DSurface/ro 1. REDIRECT [Path\_Surface/ro](Path_Surface/ro.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path 3DSurface/ro diff --git a/wiki/translations/ro/Path_Array.md b/wiki/translations/ro/Path_Array.md index b63fd07f21..6c3a34e9d2 100644 --- a/wiki/translations/ro/Path_Array.md +++ b/wiki/translations/ro/Path_Array.md @@ -1,3 +1,4 @@ +# Path Array/ro --- - GuiCommand: Name:Path Array Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Path Modification → Array Shortcut: SeeAlso:--- @@ -59,4 +60,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Array/ro diff --git a/wiki/translations/ro/Path_Comment.md b/wiki/translations/ro/Path_Comment.md index c3f6871b06..9cb1092858 100644 --- a/wiki/translations/ro/Path_Comment.md +++ b/wiki/translations/ro/Path_Comment.md @@ -1,3 +1,4 @@ +# Path Comment/ro --- - GuiCommand: Name:Path Comment Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Partial Commands → Comment Shortcut:P,C SeeAlso:--- @@ -44,4 +45,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Comment/ro diff --git a/wiki/translations/ro/Path_Contour.md b/wiki/translations/ro/Path_Contour.md index 6793d65cf8..b07fa25b21 100644 --- a/wiki/translations/ro/Path_Contour.md +++ b/wiki/translations/ro/Path_Contour.md @@ -1,2 +1,5 @@ # Path Contour/ro 1. REDIRECT [Path\_Profile/ro](Path_Profile/ro.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Contour/ro diff --git a/wiki/translations/ro/Path_Copy.md b/wiki/translations/ro/Path_Copy.md index 14395236fe..71714da5a9 100644 --- a/wiki/translations/ro/Path_Copy.md +++ b/wiki/translations/ro/Path_Copy.md @@ -1,3 +1,4 @@ +# Path Copy/ro --- - GuiCommand: Name:Path Copy Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Path Modification → Copy Shortcut:P,Y SeeAlso:--- @@ -34,4 +35,7 @@ Copia este legată cu traiectoria originală. Dacă originalul se schimbă, la f {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Copy/ro diff --git a/wiki/translations/ro/Path_Custom.md b/wiki/translations/ro/Path_Custom.md index 690db15a68..4cb52ab326 100644 --- a/wiki/translations/ro/Path_Custom.md +++ b/wiki/translations/ro/Path_Custom.md @@ -1,3 +1,4 @@ +# Path Custom/ro --- - GuiCommand: Name:Path Custom Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Partial Commands → Custom Shortcut: SeeAlso:--- @@ -44,4 +45,7 @@ a noului obiect creat. Consulatați pagina [Path scripting](Path_scripting {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Custom/ro diff --git a/wiki/translations/ro/Path_Dressup.md b/wiki/translations/ro/Path_Dressup.md index a37ae1de80..36a0c1cfd3 100644 --- a/wiki/translations/ro/Path_Dressup.md +++ b/wiki/translations/ro/Path_Dressup.md @@ -1,2 +1,5 @@ # Path Dressup/ro 1. REDIRECT [Path\_Workbench/ro](Path_Workbench/ro.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Dressup/ro diff --git a/wiki/translations/ro/Path_DressupDogbone.md b/wiki/translations/ro/Path_DressupDogbone.md index bc8356495c..18ab92754e 100644 --- a/wiki/translations/ro/Path_DressupDogbone.md +++ b/wiki/translations/ro/Path_DressupDogbone.md @@ -1,3 +1,4 @@ +# Path DressupDogbone/ro --- - GuiCommand: Name:Path DressupTag Workbenches:[MenuLocation:Path → Path Dressup → Dogbone Dress-up SeeAlso:[[Path_DressupTag|Path_DressupTag](Path_Workbench___Path]].md), [Path_DressupRampEntry](Path_DressupRampEntry.md), [Path_DressupDragKnife](Path_DressupDragKnife.md) --- @@ -50,4 +51,7 @@ Pentru a îmbrăca traiectoria de corecție a colțurilor, este nevoie de un seg {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupDogbone/ro diff --git a/wiki/translations/ro/Path_DressupDragKnife.md b/wiki/translations/ro/Path_DressupDragKnife.md index 98151dc311..0a458722f7 100644 --- a/wiki/translations/ro/Path_DressupDragKnife.md +++ b/wiki/translations/ro/Path_DressupDragKnife.md @@ -1,3 +1,4 @@ +# Path DressupDragKnife/ro --- - GuiCommand: Name:Path DressupTag Workbenches:[MenuLocation:Path → Path Dressup → Dragknife Dress-up SeeAlso:[[Path_DressupTag|Path DressupTag](Path_Workbench___Path]].md), [Path DressupRampEntry](Path_DressupRampEntry.md), [Path DressupDogbone](Path_DressupDogbone.md) --- @@ -51,4 +52,7 @@ Acest instrument îmbracă o cale existentă pentru a adăuga acțiuni de colț {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupDragKnife/ro diff --git a/wiki/translations/ro/Path_DressupRampEntry.md b/wiki/translations/ro/Path_DressupRampEntry.md index ff131f22df..c395e8bda1 100644 --- a/wiki/translations/ro/Path_DressupRampEntry.md +++ b/wiki/translations/ro/Path_DressupRampEntry.md @@ -1,3 +1,4 @@ +# Path DressupRampEntry/ro --- - GuiCommand: Name:Path DressupTag Workbenches:[MenuLocation:Path → Path Dressup → RampEntry Dress-up SeeAlso:[[Path_DressupTag|Path_DressupTag](Path_Workbench___Path]].md), [Path_DressupDogbone](Path_DressupDogbone.md) , [Path_DressupDragKnife](Path_DressupDragKnife.md) --- @@ -37,4 +38,7 @@ Acest instrument utilizează o cale existentă pentru a adăuga punți/etichete {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupRampEntry/ro diff --git a/wiki/translations/ro/Path_DressupTag.md b/wiki/translations/ro/Path_DressupTag.md index 5fd500c076..cbbda48561 100644 --- a/wiki/translations/ro/Path_DressupTag.md +++ b/wiki/translations/ro/Path_DressupTag.md @@ -1,3 +1,4 @@ +# Path DressupTag/ro --- - GuiCommand: Name:Path DressupTag Workbenches:[MenuLocation:Path → Path Dressup → Tag Dress-up SeeAlso:[[Path_DressupRampEntry|Path_DressupRampEntry](Path_Workbench___Path]].md), [Path_DressupDogbone](Path_DressupDogbone.md) , [Path_DressupDragKnife](Path_DressupDragKnife.md) --- @@ -49,4 +50,7 @@ Tags are automatically generated evenly spaced along the contour, beginning with {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path DressupTag/ro diff --git a/wiki/translations/ro/Path_Drilling.md b/wiki/translations/ro/Path_Drilling.md index 9639a30400..9046a2443a 100644 --- a/wiki/translations/ro/Path_Drilling.md +++ b/wiki/translations/ro/Path_Drilling.md @@ -1,3 +1,4 @@ +# Path Drilling/ro --- - GuiCommand: Name:Path Drilling Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Drilling Shortcut:P,D SeeAlso:--- @@ -214,4 +215,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Drilling/ro diff --git a/wiki/translations/ro/Path_Engrave.md b/wiki/translations/ro/Path_Engrave.md index f90acfe42c..7013dec4d2 100644 --- a/wiki/translations/ro/Path_Engrave.md +++ b/wiki/translations/ro/Path_Engrave.md @@ -1,3 +1,4 @@ +# Path Engrave/ro --- - GuiCommand: Name:Path Engrave Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Engrave Shortcut|SeeAlso:--- @@ -104,4 +105,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Engrave/ro diff --git a/wiki/translations/ro/Path_ExportTemplate.md b/wiki/translations/ro/Path_ExportTemplate.md index 195949707d..066a5fc757 100644 --- a/wiki/translations/ro/Path_ExportTemplate.md +++ b/wiki/translations/ro/Path_ExportTemplate.md @@ -1,3 +1,4 @@ +# Path ExportTemplate/ro --- - GuiCommand: Name:Path ExportTemplate Workbenches:[MenuLocation:Path → Export Template SeeAlso:[[Path_SetupSheet|Path SetupSheet](Path_Workbench___Path]].md) --- @@ -97,4 +98,7 @@ Crearea unui Șablon {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ExportTemplate/ro diff --git a/wiki/translations/ro/Path_FacePocket.md b/wiki/translations/ro/Path_FacePocket.md index bbb9df7317..03d36563bf 100644 --- a/wiki/translations/ro/Path_FacePocket.md +++ b/wiki/translations/ro/Path_FacePocket.md @@ -1,2 +1,5 @@ # Path FacePocket/ro 1. REDIRECT [Path\_Pocket\_Shape](Path_Pocket_Shape.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FacePocket/ro diff --git a/wiki/translations/ro/Path_FaceProfile.md b/wiki/translations/ro/Path_FaceProfile.md index 708270d360..9abb85916e 100644 --- a/wiki/translations/ro/Path_FaceProfile.md +++ b/wiki/translations/ro/Path_FaceProfile.md @@ -1,2 +1,5 @@ # Path FaceProfile/ro 1. REDIRECT [Path\_Profile/ro](Path_Profile/ro.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FaceProfile/ro diff --git a/wiki/translations/ro/Path_Fixture.md b/wiki/translations/ro/Path_Fixture.md index ac79e01a8a..0d1b4550f9 100644 --- a/wiki/translations/ro/Path_Fixture.md +++ b/wiki/translations/ro/Path_Fixture.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Path Fixture/ro + @@ -70,4 +72,7 @@ Fixarea G59 este utilizată pentru a extinde dispozitivele disponibile. Gradul d {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Fixture/ro diff --git a/wiki/translations/ro/Path_FromShapes.md b/wiki/translations/ro/Path_FromShapes.md index 17b370f126..1124945b83 100644 --- a/wiki/translations/ro/Path_FromShapes.md +++ b/wiki/translations/ro/Path_FromShapes.md @@ -1,2 +1,5 @@ # Path FromShapes/ro 1. REDIRECT [Path\_Shape/ro](Path_Shape/ro.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FromShapes/ro diff --git a/wiki/translations/ro/Path_GcodeFromShape.md b/wiki/translations/ro/Path_GcodeFromShape.md index 87e917410b..fa66dd2e5d 100644 --- a/wiki/translations/ro/Path_GcodeFromShape.md +++ b/wiki/translations/ro/Path_GcodeFromShape.md @@ -1,2 +1,5 @@ # Path GcodeFromShape/ro 1. REDIRECT [Path\_Shape/ro](Path_Shape/ro.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path GcodeFromShape/ro diff --git a/wiki/translations/ro/Path_Helix.md b/wiki/translations/ro/Path_Helix.md index f1cab72126..f81bea2828 100644 --- a/wiki/translations/ro/Path_Helix.md +++ b/wiki/translations/ro/Path_Helix.md @@ -1,3 +1,4 @@ +# Path Helix/ro --- - GuiCommand: Name:Path Helix Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Helix Shortcut: SeeAlso:--- @@ -63,4 +64,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Helix/ro diff --git a/wiki/translations/ro/Path_Inspect.md b/wiki/translations/ro/Path_Inspect.md index b1404a7b70..e84eb6ed9c 100644 --- a/wiki/translations/ro/Path_Inspect.md +++ b/wiki/translations/ro/Path_Inspect.md @@ -1,3 +1,4 @@ +# Path Inspect/ro --- - GuiCommand: Name:Path Inspect G-code Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Inspect G-code Shortcut: SeeAlso:--- @@ -38,4 +39,7 @@ Acest instrument permite inspectarea dialectului de codul G intern FreeCAD pentr {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Inspect/ro diff --git a/wiki/translations/ro/Path_Job.md b/wiki/translations/ro/Path_Job.md index a62b3afc0f..9c026a860c 100644 --- a/wiki/translations/ro/Path_Job.md +++ b/wiki/translations/ro/Path_Job.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Job/ro + @@ -115,4 +117,7 @@ Dacă aveți o activitate care susține mai multe operațiuni de traiectorie, pu {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Job/ro diff --git a/wiki/translations/ro/Path_MillFace.md b/wiki/translations/ro/Path_MillFace.md index d97feb65de..5654c15729 100644 --- a/wiki/translations/ro/Path_MillFace.md +++ b/wiki/translations/ro/Path_MillFace.md @@ -1,3 +1,4 @@ +# Path MillFace/ro --- - GuiCommand: Name:Path-Face Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Face Shortcut|SeeAlso:--- @@ -217,4 +218,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path MillFace/ro diff --git a/wiki/translations/ro/Path_Pocket_3D.md b/wiki/translations/ro/Path_Pocket_3D.md index 252e831f3c..5dba325ebb 100644 --- a/wiki/translations/ro/Path_Pocket_3D.md +++ b/wiki/translations/ro/Path_Pocket_3D.md @@ -1,3 +1,4 @@ +# Path Pocket 3D/ro --- - GuiCommand: Name:Path 3DPocket Workbenches:[[Path Workbench Path]]|MenuLocation:Path → 3D Pocket Shortcut: SeeAlso:--- @@ -225,4 +226,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Pocket 3D/ro diff --git a/wiki/translations/ro/Path_Post.md b/wiki/translations/ro/Path_Post.md index b8650f81ff..d26260d042 100644 --- a/wiki/translations/ro/Path_Post.md +++ b/wiki/translations/ro/Path_Post.md @@ -1,3 +1,4 @@ +# Path Post/ro --- - GuiCommand: Name:Path PostProcess Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Post Process Shortcut:P,P SeeAlso:--- @@ -141,4 +142,7 @@ Included Postprocessors are saved in the FreeCAD.Mod.Path.Pathscripts.Post by de {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Post/ro diff --git a/wiki/translations/ro/Path_Profile.md b/wiki/translations/ro/Path_Profile.md index d8efaa7c70..b878d29762 100644 --- a/wiki/translations/ro/Path_Profile.md +++ b/wiki/translations/ro/Path_Profile.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Profile/ro + ## Description The ** [Profile](Path_Profile.md)** tool creates a contour operation based on selected features of the model. The tool was introduced in version 0.19. It offers three operations that were handled by separate tools in previous versions. @@ -295,4 +297,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Profile/ro diff --git a/wiki/translations/ro/Path_ProfileEdges.md b/wiki/translations/ro/Path_ProfileEdges.md index a806b2327c..f2045468f1 100644 --- a/wiki/translations/ro/Path_ProfileEdges.md +++ b/wiki/translations/ro/Path_ProfileEdges.md @@ -1,2 +1,5 @@ # Path ProfileEdges/ro 1. REDIRECT [Path\_Profile/ro](Path_Profile/ro.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ProfileEdges/ro diff --git a/wiki/translations/ro/Path_ProfileFace.md b/wiki/translations/ro/Path_ProfileFace.md index 7ef534a974..4f93a66ede 100644 --- a/wiki/translations/ro/Path_ProfileFace.md +++ b/wiki/translations/ro/Path_ProfileFace.md @@ -1,2 +1,5 @@ # Path ProfileFace/ro 1. REDIRECT [Path\_Profile/ro](Path_Profile/ro.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ProfileFace/ro diff --git a/wiki/translations/ro/Path_Project.md b/wiki/translations/ro/Path_Project.md index fe4ff5800e..f70f1359ff 100644 --- a/wiki/translations/ro/Path_Project.md +++ b/wiki/translations/ro/Path_Project.md @@ -1,2 +1,5 @@ # Path Project/ro 1. REDIRECT [Path\_Job/ro](Path_Job/ro.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Project/ro diff --git a/wiki/translations/ro/Path_SelectLoop.md b/wiki/translations/ro/Path_SelectLoop.md index 7fb3af84e9..19036757de 100644 --- a/wiki/translations/ro/Path_SelectLoop.md +++ b/wiki/translations/ro/Path_SelectLoop.md @@ -1,3 +1,4 @@ +# Path SelectLoop/ro --- - GuiCommand: Name:Path SelectLoop Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Finish Selecting Loop Shortcut:P,L SeeAlso:--- @@ -36,4 +37,7 @@ Pentru a utiliza: selectați două margini care au un vârf comun. Apoi executa {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SelectLoop/ro diff --git a/wiki/translations/ro/Path_Shape.md b/wiki/translations/ro/Path_Shape.md index 3a18353ae1..6732ee0c88 100644 --- a/wiki/translations/ro/Path_Shape.md +++ b/wiki/translations/ro/Path_Shape.md @@ -1,3 +1,4 @@ +# Path Shape/ro --- - GuiCommand: Name:Path FromShapes Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Partial commands → From Shape Shortcut: SeeAlso:--- @@ -137,4 +138,7 @@ Path.fromShapes(shapes, start=Vector(), return_end=False arc_plane=1, sort_mode= {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Shape/ro diff --git a/wiki/translations/ro/Path_SimpleCopy.md b/wiki/translations/ro/Path_SimpleCopy.md index 9141a002f9..e20d864489 100644 --- a/wiki/translations/ro/Path_SimpleCopy.md +++ b/wiki/translations/ro/Path_SimpleCopy.md @@ -1,3 +1,4 @@ +# Path SimpleCopy/ro --- - GuiCommand: Name:Path SimpleCopy Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Path Modification → Simple Copy Shortcut: SeeAlso:--- @@ -35,4 +36,7 @@ This tool creates a non-parametric copy of a given path. {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SimpleCopy/ro diff --git a/wiki/translations/ro/Path_Simulator.md b/wiki/translations/ro/Path_Simulator.md index bd7c84e6a1..951c17eac5 100644 --- a/wiki/translations/ro/Path_Simulator.md +++ b/wiki/translations/ro/Path_Simulator.md @@ -1,3 +1,4 @@ +# Path Simulator/ro --- - GuiCommand: Name:Path Simulator Workbenches:[MenuLocation:Path → CAM Simulator SeeAlso:[[Path_Inspect|Path Inspect](Path_Workbench___Path]].md) --- @@ -54,4 +55,7 @@ Acest instrument simulează lucrarea de desen prin scanarea modelelor 3D ale ins {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Simulator/ro diff --git a/wiki/translations/ro/Path_Stop.md b/wiki/translations/ro/Path_Stop.md index 05275b6ca1..727dcdfedf 100644 --- a/wiki/translations/ro/Path_Stop.md +++ b/wiki/translations/ro/Path_Stop.md @@ -1,3 +1,4 @@ +# Path Stop/ro --- - GuiCommand: Name:Path Stop Workbenches:[[Path Workbench Path]]|MenuLocation:Path → Partial Commands → Stop Shortcut: SeeAlso:--- @@ -37,4 +38,7 @@ Rețineți că acest lucru nu oprește axul. {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Stop/ro diff --git a/wiki/translations/ro/Path_Surface.md b/wiki/translations/ro/Path_Surface.md index 69109a5f2b..d2a8a70e16 100644 --- a/wiki/translations/ro/Path_Surface.md +++ b/wiki/translations/ro/Path_Surface.md @@ -1,3 +1,4 @@ +# Path Surface/ro --- - GuiCommand: Name:Path 3DSurface Workbenches:[[Path Workbench Path]]|MenuLocation:Path → 3D Surface Shortcut: SeeAlso:--- @@ -397,4 +398,7 @@ Note: It is suggested that you do not edit the Placement property of path operat {{Path Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Surface/ro diff --git a/wiki/translations/ro/Path_Walkthrough_for_the_Impatient.md b/wiki/translations/ro/Path_Walkthrough_for_the_Impatient.md index 7912aa5019..8f05c70530 100644 --- a/wiki/translations/ro/Path_Walkthrough_for_the_Impatient.md +++ b/wiki/translations/ro/Path_Walkthrough_for_the_Impatient.md @@ -1,7 +1,4 @@ # Path Walkthrough for the Impatient/ro - - -
@@ -325,4 +322,7 @@ Ultimul pas în generarea Codului G pentru mașina de frezare țintă este post- {{Tutorials navi -}} {{Path Tools navi}} +}} {{Path Tools navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Walkthrough for the Impatient/ro diff --git a/wiki/translations/ro/Path_Workbench.md b/wiki/translations/ro/Path_Workbench.md index 4b925ec626..0510dad09e 100644 --- a/wiki/translations/ro/Path_Workbench.md +++ b/wiki/translations/ro/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/ro - - - - - -Path workbench icon +# Path workbench icon Path Workbench/ro {{TOCright}} @@ -487,3 +481,6 @@ A se vedea pagina [Path scripting](Path_scripting/ro.md). }} [Category:Path/ro](Category:Path/ro.md) [Category:Workbenches/ro](Category:Workbenches/ro.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench/ro diff --git a/wiki/translations/ro/Path_scripting.md b/wiki/translations/ro/Path_scripting.md index fe31d1cba4..060a0d594a 100644 --- a/wiki/translations/ro/Path_scripting.md +++ b/wiki/translations/ro/Path_scripting.md @@ -1,10 +1,4 @@ # Path scripting/ro - - - - - - {{TOCright}} ## Introducere @@ -477,3 +471,6 @@ doc.recompute() }} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path scripting/ro diff --git a/wiki/translations/ro/Pivy.md b/wiki/translations/ro/Pivy.md index 170c00df9a..9c82cd898d 100644 --- a/wiki/translations/ro/Pivy.md +++ b/wiki/translations/ro/Pivy.md @@ -1,7 +1,4 @@ # Pivy/ro - - - {{TOCright}} ## Introduction @@ -258,3 +255,6 @@ These links provide reference documentation for Coin v3.x. The differences with }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Pivy/ro diff --git a/wiki/translations/ro/Placement.md b/wiki/translations/ro/Placement.md index f24fc2112b..2959072471 100644 --- a/wiki/translations/ro/Placement.md +++ b/wiki/translations/ro/Placement.md @@ -1,7 +1,4 @@ # Placement/ro - - -
## Descriere @@ -305,5 +302,5 @@ To make the placement of \"Sketch\" equal to that of \"Cylinder\", you would ent
- - +--- +[documentation index](../README.md) > Placement/ro diff --git a/wiki/translations/ro/Placement_API.md b/wiki/translations/ro/Placement_API.md index fd9eff2b3f..69ba427b9e 100644 --- a/wiki/translations/ro/Placement_API.md +++ b/wiki/translations/ro/Placement_API.md @@ -1,5 +1,5 @@ # Placement API/ro - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** În FreeCAD, Plasamentul definește poziția și rotația unui obiect. Conceptul de Plasament este explicat în detaliu aici: [Placement](Placement.md). @@ -20,3 +20,6 @@ myObj.Placement = pl [[Category:API\]\] [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Placement API/ro diff --git a/wiki/translations/ro/Plot_Axes.md b/wiki/translations/ro/Plot_Axes.md index 597625dfde..61ef8157e8 100644 --- a/wiki/translations/ro/Plot_Axes.md +++ b/wiki/translations/ro/Plot_Axes.md @@ -1,3 +1,4 @@ +# Plot Axes/ro --- - GuiCommand: Name:Plot Axes MenuLocation:Plot → Axes‏‎ |Workbenches:[[Plot Module Plot]]|Shortcut: SeeAlso:--- @@ -45,3 +46,6 @@ Finally you can set the minimum and maximum values considered for each set of ax }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Axes/ro diff --git a/wiki/translations/ro/Plot_Grid.md b/wiki/translations/ro/Plot_Grid.md index f7325dcfe4..dcacee7772 100644 --- a/wiki/translations/ro/Plot_Grid.md +++ b/wiki/translations/ro/Plot_Grid.md @@ -1,3 +1,4 @@ +# Plot Grid/ro --- - GuiCommand: Name:Plot Grid MenuLocation:Plot → Grid‏‎ |Workbenches:[[Plot Module Plot]]|Shortcut: SeeAlso:--- @@ -25,3 +26,6 @@ This tool acts on the active set of axis. In case of multi-axes plots you can se }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Grid/ro diff --git a/wiki/translations/ro/Plot_Labels.md b/wiki/translations/ro/Plot_Labels.md index bcabfe1d35..57b8046205 100644 --- a/wiki/translations/ro/Plot_Labels.md +++ b/wiki/translations/ro/Plot_Labels.md @@ -1,3 +1,4 @@ +# Plot Labels/ro --- - GuiCommand: Name:Plot Labels MenuLocation:Plot → Labels‏‎ |Workbenches:[[Plot Module Plot]]|Shortcut: SeeAlso:--- @@ -34,3 +35,6 @@ Select the plot tab that you want to edit, and run this tool. In case of multi-a }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Labels/ro diff --git a/wiki/translations/ro/Plot_Legend.md b/wiki/translations/ro/Plot_Legend.md index 9b0225b4a4..ce1d4b8105 100644 --- a/wiki/translations/ro/Plot_Legend.md +++ b/wiki/translations/ro/Plot_Legend.md @@ -1,3 +1,4 @@ +# Plot Legend/ro --- - GuiCommand: Name:Plot Legend MenuLocation:Plot → Legend‏‎ |Workbenches:[[Plot Module Plot]]|Shortcut: SeeAlso:--- @@ -25,3 +26,6 @@ Remember that the styles and labels of the data series can be edited with the [d }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Legend/ro diff --git a/wiki/translations/ro/Plot_Module.md b/wiki/translations/ro/Plot_Module.md index ec9243aba1..0f246c4f2d 100644 --- a/wiki/translations/ro/Plot_Module.md +++ b/wiki/translations/ro/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/ro - - -Plot workbench icon +# Plot workbench icon Plot Module/ro {{TOCright}} @@ -92,3 +89,6 @@ Deoarece Plot este un strat peste `matplotlib`, aveți libertatea de a folosi or }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/ro diff --git a/wiki/translations/ro/Plot_Positions.md b/wiki/translations/ro/Plot_Positions.md index 198d76e07e..d1d5bb5db2 100644 --- a/wiki/translations/ro/Plot_Positions.md +++ b/wiki/translations/ro/Plot_Positions.md @@ -1,3 +1,4 @@ +# Plot Positions/ro --- - GuiCommand: Name:Plot Positions MenuLocation:Plot → Positions |Workbenches:[[Plot Module Plot]]|Shortcut: SeeAlso:--- @@ -30,3 +31,6 @@ Select the plot tab that you want to edit, and run this tool. Then you can selec }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Positions/ro diff --git a/wiki/translations/ro/Plot_Save.md b/wiki/translations/ro/Plot_Save.md index 98a5edcf4b..df2e2cc8ca 100644 --- a/wiki/translations/ro/Plot_Save.md +++ b/wiki/translations/ro/Plot_Save.md @@ -1,3 +1,4 @@ +# Plot Save/ro --- - GuiCommand: Name:Plot Save Workbenches:[[Plot Module Plot]]|MenuLocation:Plot → Save plot--- @@ -55,3 +56,6 @@ Selectați fila de plotare pe care doriți să o salvați și rulați acest inst }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Save/ro diff --git a/wiki/translations/ro/Plot_Series.md b/wiki/translations/ro/Plot_Series.md index 2e763da716..b678e72716 100644 --- a/wiki/translations/ro/Plot_Series.md +++ b/wiki/translations/ro/Plot_Series.md @@ -1,3 +1,4 @@ +# Plot Series/ro --- - GuiCommand: Name:Plot Series MenuLocation:Plot → Series‏‎ |Workbenches:[[Plot Module Plot]]|Shortcut: SeeAlso:--- @@ -35,3 +36,6 @@ Select the plot tab that you want to edit, and run this tool. Then select the se }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Series/ro diff --git a/wiki/translations/ro/Plot_Workbench.md b/wiki/translations/ro/Plot_Workbench.md index 3eb3490485..566155087c 100644 --- a/wiki/translations/ro/Plot_Workbench.md +++ b/wiki/translations/ro/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/ro 1. REDIRECT [Plot\_Module/ro](Plot_Module/ro.md) + +--- +[documentation index](../README.md) > Plot Workbench/ro diff --git a/wiki/translations/ro/Points_Module.md b/wiki/translations/ro/Points_Module.md index 64b38a3a65..ee4c373fec 100644 --- a/wiki/translations/ro/Points_Module.md +++ b/wiki/translations/ro/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/ro 1. REDIRECT [Points\_Workbench/ro](Points_Workbench/ro.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/ro diff --git a/wiki/translations/ro/Points_Workbench.md b/wiki/translations/ro/Points_Workbench.md index 0e7857d91c..14e782619d 100644 --- a/wiki/translations/ro/Points_Workbench.md +++ b/wiki/translations/ro/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/ro - - - - - -Points workbench icon +# Points workbench icon Points Workbench/ro ## Introducere @@ -63,3 +57,6 @@ Utilizarea metodei de ancorare [Endpoint](Draft_Endpoint.md) va asigura că inst }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/ro diff --git a/wiki/translations/ro/Power_users_hub.md b/wiki/translations/ro/Power_users_hub.md index 88681e3837..4df9d85058 100644 --- a/wiki/translations/ro/Power_users_hub.md +++ b/wiki/translations/ro/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/ro - +# Power users hub/ro ------------------------------------------------------------------------ @@ -259,3 +258,6 @@ Pe pagina [Community portal](FreeCAD_Community_Portal.md), puteți căuta alte p }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/ro diff --git a/wiki/translations/ro/Preferences_Editor.md b/wiki/translations/ro/Preferences_Editor.md index 06786c274b..f2f8fdcbb4 100644 --- a/wiki/translations/ro/Preferences_Editor.md +++ b/wiki/translations/ro/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/ro - - - - - - {{TOCright}} ## Introduction @@ -722,3 +716,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/ro diff --git a/wiki/translations/ro/Property.md b/wiki/translations/ro/Property.md index 89087ce105..cf76bd1d90 100644 --- a/wiki/translations/ro/Property.md +++ b/wiki/translations/ro/Property.md @@ -1,6 +1,4 @@ # Property/ro - - ## Introduction @@ -158,3 +156,6 @@ They are imported and initialized in `[https://github.com/FreeCAD/FreeCAD/blob/9 }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/ro diff --git a/wiki/translations/ro/Property_editor.md b/wiki/translations/ro/Property_editor.md index 53dc4cc076..9272cb0bcf 100644 --- a/wiki/translations/ro/Property_editor.md +++ b/wiki/translations/ro/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/ro - - - - - - {{TOCright}} @@ -354,4 +348,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/ro diff --git a/wiki/translations/ro/PySide.md b/wiki/translations/ro/PySide.md index eb748dd8cb..ea1e13f446 100644 --- a/wiki/translations/ro/PySide.md +++ b/wiki/translations/ro/PySide.md @@ -1,7 +1,4 @@ # PySide/ro - - - {{TOCright}} @@ -111,3 +108,6 @@ The PySide documentation refers to the Python-style classes; however, since Qt i }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide/ro diff --git a/wiki/translations/ro/Python.md b/wiki/translations/ro/Python.md index 3f42e2fdcd..24a2683374 100644 --- a/wiki/translations/ro/Python.md +++ b/wiki/translations/ro/Python.md @@ -1,7 +1,4 @@ # Python/ro - - -
@@ -149,3 +146,6 @@ Structure = Arch.make_structure(Wire, name="Big pillar") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:API Documentation](Category:API_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python/ro diff --git a/wiki/translations/ro/PythonOCC.md b/wiki/translations/ro/PythonOCC.md index c83325e7f7..e6850fa583 100644 --- a/wiki/translations/ro/PythonOCC.md +++ b/wiki/translations/ro/PythonOCC.md @@ -1,6 +1,4 @@ # PythonOCC/ro - - ## Description [PythonOCC](PythonOCC.md) is a project that aims at providing the entire range of [OpenCASCADE Technology](OpenCASCADE.md) (OCCT) functions through the [Python](Python.md) module `OCC`. This is a different approach from FreeCAD\'s, where only certain components of OCCT are exposed through the [Part Workbench](Part_Workbench.md). @@ -45,3 +43,6 @@ You can also self compile pythonOCC (see [instructions](https://github.com/tpavi }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PythonOCC/ro diff --git a/wiki/translations/ro/Python_scripting_tutorial.md b/wiki/translations/ro/Python_scripting_tutorial.md index a346da0dd7..45d0bd0a25 100644 --- a/wiki/translations/ro/Python_scripting_tutorial.md +++ b/wiki/translations/ro/Python_scripting_tutorial.md @@ -1,7 +1,4 @@ # Python scripting tutorial/ro - - - {{TOCright}} ## Introduction @@ -573,3 +570,6 @@ Acum sunteți gata pentru mai multă programare/script FreeCAD în profunzime. D }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python scripting tutorial/ro diff --git a/wiki/translations/ro/Quality_project.md b/wiki/translations/ro/Quality_project.md index 8607292a84..9aba07ad2c 100644 --- a/wiki/translations/ro/Quality_project.md +++ b/wiki/translations/ro/Quality_project.md @@ -1,7 +1,4 @@ # Quality project/ro - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -44,3 +41,6 @@ Work through all the unfinished commands and make a documentation: [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Quality project/ro diff --git a/wiki/translations/ro/Ray_Tracing_Workbench.md b/wiki/translations/ro/Ray_Tracing_Workbench.md index de76abce81..e37c7a90f7 100644 --- a/wiki/translations/ro/Ray_Tracing_Workbench.md +++ b/wiki/translations/ro/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/ro 1. REDIRECT [Raytracing\_Workbench/ro](Raytracing_Workbench/ro.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/ro diff --git a/wiki/translations/ro/Raytracing_ExportProject.md b/wiki/translations/ro/Raytracing_ExportProject.md index cfd9097294..823ac8bdd4 100644 --- a/wiki/translations/ro/Raytracing_ExportProject.md +++ b/wiki/translations/ro/Raytracing_ExportProject.md @@ -1,3 +1,4 @@ +# Raytracing ExportProject/ro --- - GuiCommand: Name:Raytracing ExportProject MenuLocation:Raytracing → ExportProject |Workbenches:[[Raytracing_Workbench Raytracing]]|Shortcut: SeeAlso:--- @@ -41,4 +42,7 @@ Exportă proiectul raytracing selectat într-un fișier. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing ExportProject/ro diff --git a/wiki/translations/ro/Raytracing_InsertPart.md b/wiki/translations/ro/Raytracing_InsertPart.md index 644be9f407..fbbfa20373 100644 --- a/wiki/translations/ro/Raytracing_InsertPart.md +++ b/wiki/translations/ro/Raytracing_InsertPart.md @@ -1,3 +1,4 @@ +# Raytracing InsertPart/ro --- - GuiCommand: Name:Raytracing InsertPart MenuLocation:Raytracing → InsertPart‏‎ |Workbenches:[[Raytracing_Workbench Raytracing]]|Shortcut: SeeAlso:--- @@ -43,4 +44,7 @@ Inserați o vizualizarea a unei Piese într-un proiect de randarea raytracing . {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing InsertPart/ro diff --git a/wiki/translations/ro/Raytracing_Lux.md b/wiki/translations/ro/Raytracing_Lux.md index 8d16f1378d..e0a8bf97e5 100644 --- a/wiki/translations/ro/Raytracing_Lux.md +++ b/wiki/translations/ro/Raytracing_Lux.md @@ -1,3 +1,4 @@ +# Raytracing Lux/ro --- - GuiCommand: Name:Raytracing Lux MenuLocation:Raytracing → New Luxrender project‏‎ |Workbenches:[[Raytracing_Workbench Raytracing]]|Shortcut: SeeAlso:--- @@ -48,4 +49,7 @@ Setările suplimentare de proiect ar necesita definirea unor șabloane supliment {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Lux/ro diff --git a/wiki/translations/ro/Raytracing_Module.md b/wiki/translations/ro/Raytracing_Module.md index a77c41a9e0..64c610d0cb 100644 --- a/wiki/translations/ro/Raytracing_Module.md +++ b/wiki/translations/ro/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/ro 1. REDIRECT [Raytracing\_Workbench/ro](Raytracing_Workbench/ro.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/ro diff --git a/wiki/translations/ro/Raytracing_New.md b/wiki/translations/ro/Raytracing_New.md index c11b24fa4e..81af4e6b66 100644 --- a/wiki/translations/ro/Raytracing_New.md +++ b/wiki/translations/ro/Raytracing_New.md @@ -1,3 +1,4 @@ +# Raytracing New/ro --- - GuiCommand:/ro Name:Raytracing New Name/ro:Raytracing New MenuLocation:Raytracing → New‏‎ |Workbenches:[[Raytracing Workbench/ro Raytracing]]|Shortcut: SeeAlso:--- @@ -56,4 +57,7 @@ Setările suplimentare de proiect ar necesita definirea unor șabloane supliment {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing New/ro diff --git a/wiki/translations/ro/Raytracing_Render.md b/wiki/translations/ro/Raytracing_Render.md index 721937e3f2..48c383d303 100644 --- a/wiki/translations/ro/Raytracing_Render.md +++ b/wiki/translations/ro/Raytracing_Render.md @@ -1,3 +1,4 @@ +# Raytracing Render/ro --- - GuiCommand: Name:Raytracing Render MenuLocation:Raytracing → Render‏‎ |Workbenches:[[Raytracing_Workbench Raytracing]]|Shortcut: SeeAlso:--- @@ -37,4 +38,7 @@ Randează proiectul selectat folosind un renderer extern. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Render/ro diff --git a/wiki/translations/ro/Raytracing_ResetCamera.md b/wiki/translations/ro/Raytracing_ResetCamera.md index 9c0e2fd589..05ec80fcf1 100644 --- a/wiki/translations/ro/Raytracing_ResetCamera.md +++ b/wiki/translations/ro/Raytracing_ResetCamera.md @@ -1,3 +1,4 @@ +# Raytracing ResetCamera/ro --- - GuiCommand: Name:Raytracing ResetCamera MenuLocation:Raytracing → ResetCamera |Workbenches:[[Raytracing_Workbench Raytracing]]|Shortcut: SeeAlso:--- @@ -55,4 +56,7 @@ Setează camera pentru proiectul selectat de raytracing pentru a se potrivi cu v {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing ResetCamera/ro diff --git a/wiki/translations/ro/Raytracing_Workbench.md b/wiki/translations/ro/Raytracing_Workbench.md index ee88c6e1dc..b8d29dfa20 100644 --- a/wiki/translations/ro/Raytracing_Workbench.md +++ b/wiki/translations/ro/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/ro - - - **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. Nevertheless, the information in this page is generally useful for the new workbench, as both modules work basically in the same way. @@ -160,3 +157,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/ro diff --git a/wiki/translations/ro/Raytracing_WriteCamera.md b/wiki/translations/ro/Raytracing_WriteCamera.md index 1bdbee10df..be6f895a1e 100644 --- a/wiki/translations/ro/Raytracing_WriteCamera.md +++ b/wiki/translations/ro/Raytracing_WriteCamera.md @@ -1,3 +1,4 @@ +# Raytracing WriteCamera/ro --- - GuiCommand:/ro Name:Raytracing Camera Name/ro:Raytracing Camera‏‎‏‎ MenuLocation:Raytracing → Camera‏‎ |Workbenches:[[Raytracing Workbench/ro Raytracing]]|Shortcut: SeeAlso:--- @@ -28,4 +29,7 @@ Exportă proprietățile curente ale camerei într-un fișier pov pentru a fi ut {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteCamera/ro diff --git a/wiki/translations/ro/Raytracing_WritePart.md b/wiki/translations/ro/Raytracing_WritePart.md index e252702f65..d4da39b214 100644 --- a/wiki/translations/ro/Raytracing_WritePart.md +++ b/wiki/translations/ro/Raytracing_WritePart.md @@ -1,3 +1,4 @@ +# Raytracing WritePart/ro --- - GuiCommand:/ro Name:Raytracing Part‏‎ Name/ro:Raytracing Part MenuLocation:Raytracing → Part‏‎ |Workbenches:[[Raytracing Workbench/ro Raytracing]]|Shortcut: SeeAlso:--- @@ -29,4 +30,7 @@ Exportă piesa selectată către un fișier tip pov pentru a fi utilizat într-u {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WritePart/ro diff --git a/wiki/translations/ro/Raytracing_WriteView.md b/wiki/translations/ro/Raytracing_WriteView.md index be6d144bea..1b34e92247 100644 --- a/wiki/translations/ro/Raytracing_WriteView.md +++ b/wiki/translations/ro/Raytracing_WriteView.md @@ -1,3 +1,4 @@ +# Raytracing WriteView/ro --- - GuiCommand: Name:Raytracing Export‏‎ MenuLocation:Raytracing → Export‏‎ |Workbenches:[[Raytracing Workbench Raytracing]]|Shortcut: SeeAlso:--- @@ -29,4 +30,7 @@ Exportă proprietățile de vizualizare curente într-un fișier pov pentru util {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteView/ro diff --git a/wiki/translations/ro/Raytracing_project.md b/wiki/translations/ro/Raytracing_project.md index 1e61615c95..2fac0b21ae 100644 --- a/wiki/translations/ro/Raytracing_project.md +++ b/wiki/translations/ro/Raytracing_project.md @@ -1,7 +1,4 @@ # Raytracing project/ro - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -88,3 +85,6 @@ Featured is a part that was creating using PartDesign/Sketcher then rendered usi [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing project/ro diff --git a/wiki/translations/ro/Raytracing_tutorial.md b/wiki/translations/ro/Raytracing_tutorial.md index 64fc0a5551..3d8b8f74b7 100644 --- a/wiki/translations/ro/Raytracing_tutorial.md +++ b/wiki/translations/ro/Raytracing_tutorial.md @@ -1,6 +1,4 @@ # Raytracing tutorial/ro - - ## Raytracing Workbench @@ -109,4 +107,7 @@ We are now finished with the basic workflow for the [Raytracing Workbench](Raytr {{Tutorials navi -}} {{Raytracing Tools navi}} +}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing tutorial/ro diff --git a/wiki/translations/ro/Release_notes_0.17.md b/wiki/translations/ro/Release_notes_0.17.md index 3839575764..eaea04e0ca 100644 --- a/wiki/translations/ro/Release_notes_0.17.md +++ b/wiki/translations/ro/Release_notes_0.17.md @@ -1,7 +1,4 @@ # Release notes 0.17/ro - - -
*Aceasată ediție FreeCAD este dedicată prietenului nostru Roland Frank [who left us in 2017](https://forum.freecadweb.org/viewtopic.php?f=8&t=25673). A fost un membru activ și bine-apreciat a forumului FreeCAD, și tutorialele sale de la [Learn FreeCAD](https://www.youtube.com/watch?v=_HEvhclR4-o&list=PL6fZ68Cq3L8k0JhxnIVjZQN26cn9idJrj) și [BPLFRE](https://www.youtube.com/watch?v=m49z0weonog&list=PLsrwVwvqYb8G4Ri0iz1JIebsOXkgoytAY) de pe canalul Youtube au ajutate mulți oameni să facă primii pași în FreeCAD.* @@ -431,3 +428,6 @@ Câteva dintre noile module pe care comunitatea le-a creat. - [Kicad StepUp Workbench](https://www.freecadweb.org/wiki/KicadStepUp_Workbench) is aimed to help KiCad and FreeCAD users in ECAD and MCAD collaboration. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.17/ro diff --git a/wiki/translations/ro/Render_project.md b/wiki/translations/ro/Render_project.md index de6f4ea184..0a105fd075 100644 --- a/wiki/translations/ro/Render_project.md +++ b/wiki/translations/ro/Render_project.md @@ -1,5 +1,5 @@ # Render project/ro - **(2020) This page refers to an attempt to update the [Raytracing Workbench](Raytracing_Workbench.md), proposed around 2012. Its original author never completed the implementation so this information is outdated, and should not be considered current. +**(2020) This page refers to an attempt to update the [Raytracing Workbench](Raytracing_Workbench.md), proposed around 2012. Its original author never completed the implementation so this information is outdated, and should not be considered current. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], a complete Python replacement for the [Raytracing Workbench](Raytracing_Workbench.md). @@ -129,3 +129,6 @@ See also [Raytracing tutorial](Raytracing_tutorial.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Render](Category:Render.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Render project/ro diff --git a/wiki/translations/ro/Resource_framework_project.md b/wiki/translations/ro/Resource_framework_project.md index c8857065ca..5edd4725b5 100644 --- a/wiki/translations/ro/Resource_framework_project.md +++ b/wiki/translations/ro/Resource_framework_project.md @@ -1,7 +1,4 @@ # Resource framework project/ro - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -123,3 +120,6 @@ A class design for the Resource framwork. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Resource framework project/ro diff --git a/wiki/translations/ro/Reverse_Engineering_Workbench.md b/wiki/translations/ro/Reverse_Engineering_Workbench.md index 70b91b2725..3ca5801597 100644 --- a/wiki/translations/ro/Reverse_Engineering_Workbench.md +++ b/wiki/translations/ro/Reverse_Engineering_Workbench.md @@ -1,7 +1,4 @@ # Reverse Engineering Workbench/ro - - -
@@ -49,3 +46,6 @@ Link to appropriate threads discussing this workbench [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench/ro diff --git a/wiki/translations/ro/Robot_CreateRobot.md b/wiki/translations/ro/Robot_CreateRobot.md index 559d338027..c3c6ea7365 100644 --- a/wiki/translations/ro/Robot_CreateRobot.md +++ b/wiki/translations/ro/Robot_CreateRobot.md @@ -1,3 +1,4 @@ +# Robot CreateRobot/ro --- - GuiCommand: Name:Robot CreateRobot Workbenches:[[Robot_Workbench Robot]]|MenuLocation:Robot → Insert robot--- @@ -62,4 +63,7 @@ Roboții predefiniți sunt: {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateRobot/ro diff --git a/wiki/translations/ro/Robot_CreateTrajectory.md b/wiki/translations/ro/Robot_CreateTrajectory.md index 6c73f87c8c..a753567415 100644 --- a/wiki/translations/ro/Robot_CreateTrajectory.md +++ b/wiki/translations/ro/Robot_CreateTrajectory.md @@ -1,3 +1,4 @@ +# Robot CreateTrajectory/ro --- - GuiCommand: Name:Robot CreateTrajectory Workbenches:[[Robot_Workbench Robot]]|MenuLocation:Robot → Create trajectory--- @@ -38,4 +39,7 @@ Click pe {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateTrajectory/ro diff --git a/wiki/translations/ro/Robot_Edge2Trac.md b/wiki/translations/ro/Robot_Edge2Trac.md index 61e55e4bc7..a4efcefcaa 100644 --- a/wiki/translations/ro/Robot_Edge2Trac.md +++ b/wiki/translations/ro/Robot_Edge2Trac.md @@ -1,3 +1,4 @@ +# Robot Edge2Trac/ro --- - GuiCommand: Name:Robot Edge2Trac Workbenches:[[Robot_Workbench Robot]]|MenuLocation:Robot → Edge to trajectory--- @@ -42,4 +43,7 @@ Puteți modifica valori pentru această traiectorie prin definirea unei valori [ {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Edge2Trac/ro diff --git a/wiki/translations/ro/Robot_Export.md b/wiki/translations/ro/Robot_Export.md index 3abbb0dd79..cbeffb9eb5 100644 --- a/wiki/translations/ro/Robot_Export.md +++ b/wiki/translations/ro/Robot_Export.md @@ -1,3 +1,4 @@ +# Robot Export/ro --- - GuiCommand: Name:Robot Export Workbenches:[[Robot_Workbench Robot]]|MenuLocation:Robot → Export trajectory--- @@ -58,4 +59,7 @@ Un fișier KRL cu extensia (\*.src) va fi creat. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Export/ro diff --git a/wiki/translations/ro/Robot_InsertWaypoint.md b/wiki/translations/ro/Robot_InsertWaypoint.md index 5de70e3a64..0b5b694495 100644 --- a/wiki/translations/ro/Robot_InsertWaypoint.md +++ b/wiki/translations/ro/Robot_InsertWaypoint.md @@ -1,3 +1,4 @@ +# Robot InsertWaypoint/ro --- - GuiCommand: Name:Robot InsertWaypoint Workbenches:[[Robot_Workbench Robot]]|MenuLocation:Robot → Insert in trajectory Shortcut:A SeeAlso:------ @@ -45,4 +46,7 @@ Mișcarea botului este dată de: {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot InsertWaypoint/ro diff --git a/wiki/translations/ro/Robot_InsertWaypointPre.md b/wiki/translations/ro/Robot_InsertWaypointPre.md index 6f05fa80dc..02afb9d356 100644 --- a/wiki/translations/ro/Robot_InsertWaypointPre.md +++ b/wiki/translations/ro/Robot_InsertWaypointPre.md @@ -1,3 +1,4 @@ +# Robot InsertWaypointPre/ro --- - GuiCommand: Name:Robot InsertWaypointPre Workbenches:[[Robot_Workbench Robot]]|MenuLocation:Robot → Insert in trajectory Shortcut:W SeeAlso:------ @@ -47,4 +48,7 @@ Obeictele selectabile sunt: {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot InsertWaypointPre/ro diff --git a/wiki/translations/ro/Robot_Module.md b/wiki/translations/ro/Robot_Module.md index ff15cb5b99..0e5a86dade 100644 --- a/wiki/translations/ro/Robot_Module.md +++ b/wiki/translations/ro/Robot_Module.md @@ -1,2 +1,5 @@ # Robot Module/ro 1. REDIRECT [Robot Workbench/ro](Robot_Workbench/ro.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Module/ro diff --git a/wiki/translations/ro/Robot_RestoreHomePos.md b/wiki/translations/ro/Robot_RestoreHomePos.md index 94215164c5..fa808e6ab5 100644 --- a/wiki/translations/ro/Robot_RestoreHomePos.md +++ b/wiki/translations/ro/Robot_RestoreHomePos.md @@ -1,3 +1,4 @@ +# Robot RestoreHomePos/ro --- - GuiCommand: Name:Robot RestoreHomePos Workbenches:[[Robot_Workbench Robot]]|MenuLocation:Robot → Restore home position--- @@ -43,4 +44,7 @@ If no home position has been specified via [Robot\_SetHomePos](Robot_SetHomePos. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot RestoreHomePos/ro diff --git a/wiki/translations/ro/Robot_SetDefaultOrientation.md b/wiki/translations/ro/Robot_SetDefaultOrientation.md index c1f987f458..cfb73d2566 100644 --- a/wiki/translations/ro/Robot_SetDefaultOrientation.md +++ b/wiki/translations/ro/Robot_SetDefaultOrientation.md @@ -1,3 +1,4 @@ +# Robot SetDefaultOrientation/ro --- - GuiCommand: Name:Robot SetDefaultOrientation Workbenches:[[Robot_Workbench Robot]]|MenuLocation:Robot → Set default orientation--- @@ -26,4 +27,7 @@ {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetDefaultOrientation/ro diff --git a/wiki/translations/ro/Robot_SetDefaultValues.md b/wiki/translations/ro/Robot_SetDefaultValues.md index f76a550623..10953e5b5e 100644 --- a/wiki/translations/ro/Robot_SetDefaultValues.md +++ b/wiki/translations/ro/Robot_SetDefaultValues.md @@ -1,3 +1,4 @@ +# Robot SetDefaultValues/ro --- - GuiCommand: Name:Robot SetDefaultValues Workbenches:[[Robot_Workbench Robot]]|MenuLocation:Robot → Set default values--- @@ -48,4 +49,7 @@ Valorile implicite ale programului sunt:he program\'s {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetDefaultValues/ro diff --git a/wiki/translations/ro/Robot_SetHomePos.md b/wiki/translations/ro/Robot_SetHomePos.md index 020255ab0b..7087e1b39b 100644 --- a/wiki/translations/ro/Robot_SetHomePos.md +++ b/wiki/translations/ro/Robot_SetHomePos.md @@ -1,3 +1,4 @@ +# Robot SetHomePos/ro --- - GuiCommand: Name:Robot SetHomePos Workbenches:[[Robot_Workbench Robot]]|MenuLocation:Robot → Set home position--- @@ -43,4 +44,7 @@ Inițial, poziția în care robotul este introdus în scenă va fi definit ca po {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetHomePos/ro diff --git a/wiki/translations/ro/Robot_Simulate.md b/wiki/translations/ro/Robot_Simulate.md index 388b6f991d..cb7ce7d667 100644 --- a/wiki/translations/ro/Robot_Simulate.md +++ b/wiki/translations/ro/Robot_Simulate.md @@ -1,3 +1,4 @@ +# Robot Simulate/ro --- - GuiCommand: Name:Robot Simulate Workbenches:[[Robot_Workbench Robot]]|MenuLocation:Robot → Simulate a trajectory--- @@ -54,4 +55,7 @@ Butoanele de la stânga la dreapta sunt: {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Simulate/ro diff --git a/wiki/translations/ro/Robot_TrajectoryCompound.md b/wiki/translations/ro/Robot_TrajectoryCompound.md index d77793a029..747d742f54 100644 --- a/wiki/translations/ro/Robot_TrajectoryCompound.md +++ b/wiki/translations/ro/Robot_TrajectoryCompound.md @@ -1,3 +1,4 @@ +# Robot TrajectoryCompound/ro --- - GuiCommand: Name:Robot TrajectoryCompound Workbenches:[[Robot_Workbench Robot]]|MenuLocation:Robot → TrajectoryCompound--- @@ -42,4 +43,7 @@ Creează un compus din mai multe traiectorii singulare. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot TrajectoryCompound/ro diff --git a/wiki/translations/ro/Robot_TrajectoryDressUp.md b/wiki/translations/ro/Robot_TrajectoryDressUp.md index 6ff52e044d..df9f83f85c 100644 --- a/wiki/translations/ro/Robot_TrajectoryDressUp.md +++ b/wiki/translations/ro/Robot_TrajectoryDressUp.md @@ -1,3 +1,4 @@ +# Robot TrajectoryDressUp/ro --- - GuiCommand: Name:Robot TrajectoryDressUp Workbenches:[[Robot_Workbench Robot]]|MenuLocation:Robot → TrajectoryDressUp --- @@ -53,4 +54,7 @@ Apoi puteți schimba valori pentru {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot TrajectoryDressUp/ro diff --git a/wiki/translations/ro/Robot_Workbench.md b/wiki/translations/ro/Robot_Workbench.md index dcf3c37be6..b8ff605e12 100644 --- a/wiki/translations/ro/Robot_Workbench.md +++ b/wiki/translations/ro/Robot_Workbench.md @@ -1,7 +1,4 @@ # Robot Workbench/ro - - -
@@ -129,3 +126,6 @@ A se vedea [Robot API example](Robot_API_example.md) pentru o descriere a funcț }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/ro diff --git a/wiki/translations/ro/Robot_project.md b/wiki/translations/ro/Robot_project.md index 3012bf218c..ffaf0a1863 100644 --- a/wiki/translations/ro/Robot_project.md +++ b/wiki/translations/ro/Robot_project.md @@ -1,7 +1,4 @@ # Robot project/ro - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -103,3 +100,6 @@ Simularea Robotului [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot project/ro diff --git a/wiki/translations/ro/Robot_tutorial.md b/wiki/translations/ro/Robot_tutorial.md index 8213b31a39..e8dbdb2cdf 100644 --- a/wiki/translations/ro/Robot_tutorial.md +++ b/wiki/translations/ro/Robot_tutorial.md @@ -1,5 +1,5 @@ # Robot tutorial/ro - {{TutorialInfo/ro +{{TutorialInfo/ro |Topic= Robot Workbench |Level= Beginner |Time= @@ -86,4 +86,7 @@ This tutorial is targeting on the use of [industrial robots](http://en.wikipedia {{Tutorials navi -}} {{Robot Tools navi}} +}} {{Robot Tools navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot tutorial/ro diff --git a/wiki/translations/ro/STEP_project.md b/wiki/translations/ro/STEP_project.md index e65cfd27bd..5fcdde5e55 100644 --- a/wiki/translations/ro/STEP_project.md +++ b/wiki/translations/ro/STEP_project.md @@ -1,7 +1,4 @@ # STEP project/ro - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -115,3 +112,6 @@ Aici sunt câteva link uri cu informații: [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > STEP project/ro diff --git a/wiki/translations/ro/Scenegraph.md b/wiki/translations/ro/Scenegraph.md index 15d4504170..e9b0e47e67 100644 --- a/wiki/translations/ro/Scenegraph.md +++ b/wiki/translations/ro/Scenegraph.md @@ -1,7 +1,4 @@ # Scenegraph/ro - - - {{TOCright}} ## Introduction @@ -152,3 +149,6 @@ See [Coin3d snippets](Coin3d_snippets.md) courtesy of MariwanJ\'s research for t }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scenegraph/ro diff --git a/wiki/translations/ro/Scripted_Parts:_Ball_Bearing_-_Part_1.md b/wiki/translations/ro/Scripted_Parts:_Ball_Bearing_-_Part_1.md index d64a0266e2..c733be1647 100644 --- a/wiki/translations/ro/Scripted_Parts:_Ball_Bearing_-_Part_1.md +++ b/wiki/translations/ro/Scripted_Parts:_Ball_Bearing_-_Part_1.md @@ -1,5 +1,5 @@ # Scripted Parts: Ball Bearing - Part 1/ro - {{TutorialInfo/ro +{{TutorialInfo/ro |Topic= Part Scripting - Ball Bearing #1 |Level= Beginner |Time= 30 min @@ -142,3 +142,6 @@ Gui.SendMsgToActiveView("ViewFit") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted Parts: Ball Bearing - Part 1/ro diff --git a/wiki/translations/ro/Scripted_objects.md b/wiki/translations/ro/Scripted_objects.md index 57b8999aa8..13d0e78baf 100644 --- a/wiki/translations/ro/Scripted_objects.md +++ b/wiki/translations/ro/Scripted_objects.md @@ -1,7 +1,4 @@ # Scripted objects/ro - - - {{TOCright}} ## Introduction @@ -934,3 +931,6 @@ Interesting forum threads about scripted objects: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects/ro diff --git a/wiki/translations/ro/Scripting_and_macros.md b/wiki/translations/ro/Scripting_and_macros.md index a556e79106..6ece638055 100644 --- a/wiki/translations/ro/Scripting_and_macros.md +++ b/wiki/translations/ro/Scripting_and_macros.md @@ -1,9 +1,4 @@ # Scripting and macros/ro - - - - - ## Overview of Python scripting pages - Python related pages in the Manual: @@ -96,3 +91,6 @@ }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripting and macros/ro diff --git a/wiki/translations/ro/Scripting_examples.md b/wiki/translations/ro/Scripting_examples.md index a577fcd5cf..28234e556b 100644 --- a/wiki/translations/ro/Scripting_examples.md +++ b/wiki/translations/ro/Scripting_examples.md @@ -1,2 +1,5 @@ # Scripting examples/ro 1. REDIRECT [Scripting\_and\_macros/ro](Scripting_and_macros/ro.md) + +--- +[documentation index](../README.md) > Scripting examples/ro diff --git a/wiki/translations/ro/Ship_Area.md b/wiki/translations/ro/Ship_Area.md index 478f7f6981..50e31f6b98 100644 --- a/wiki/translations/ro/Ship_Area.md +++ b/wiki/translations/ro/Ship_Area.md @@ -1,3 +1,4 @@ +# Ship Area/ro --- - GuiCommand: Name:Ship Area MenuLocation:Ship design → Areas curve |Workbenches:[[Ship Workbench Ship]]|Shortcut: SeeAlso:--- @@ -32,4 +33,7 @@ Plot the transversal areas curve {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Area/ro diff --git a/wiki/translations/ro/Ship_Geometries_Examples.md b/wiki/translations/ro/Ship_Geometries_Examples.md index a7f7dfa864..c21968f159 100644 --- a/wiki/translations/ro/Ship_Geometries_Examples.md +++ b/wiki/translations/ro/Ship_Geometries_Examples.md @@ -1,3 +1,4 @@ +# Ship Geometries Examples/ro --- - GuiCommand: Name:Ship Load‏‎ Example MenuLocation:Ship design → Load‏‎ an example ship geometry |Workbenches:[[Ship Workbench Ship]]|Shortcut: SeeAlso:--- @@ -94,4 +95,7 @@ Executing the tool (Ship design/Load an example ship geometry) a task dialogue w {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Geometries Examples/ro diff --git a/wiki/translations/ro/Ship_Hydrostatics.md b/wiki/translations/ro/Ship_Hydrostatics.md index 80bfb79fae..b1e8fdb52b 100644 --- a/wiki/translations/ro/Ship_Hydrostatics.md +++ b/wiki/translations/ro/Ship_Hydrostatics.md @@ -1,3 +1,4 @@ +# Ship Hydrostatics/ro --- - GuiCommand: Name:Ship Hydrostatics MenuLocation:Ship design → Hydrostatics |Workbenches:[[Ship Workbench Ship]]|Shortcut: SeeAlso:--- @@ -37,4 +38,7 @@ When the Hydrostatics tool is executed, a task dialog is shown. Usually Hydrosta {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Hydrostatics/ro diff --git a/wiki/translations/ro/Ship_Loading.md b/wiki/translations/ro/Ship_Loading.md index f1ee8a732d..707354b576 100644 --- a/wiki/translations/ro/Ship_Loading.md +++ b/wiki/translations/ro/Ship_Loading.md @@ -1,3 +1,4 @@ +# Ship Loading/ro --- - GuiCommand: Name:Ship Loading MenuLocation:Weights → Create a new loading condition |Workbenches:[[Ship Workbench Ship]]|Shortcut: SeeAlso:--- @@ -16,9 +17,5 @@ De făcut {{Part Tools navi/ro}} - - - - - - +--- +[documentation index](../README.md) > Ship Loading/ro diff --git a/wiki/translations/ro/Ship_New.md b/wiki/translations/ro/Ship_New.md index 42fd58d320..a977a4767f 100644 --- a/wiki/translations/ro/Ship_New.md +++ b/wiki/translations/ro/Ship_New.md @@ -1,3 +1,4 @@ +# Ship New/ro --- - GuiCommand: Name:Ship New‏‎ MenuLocation:Ship design → Create a new ship |Workbenches:[[Ship Workbench Ship]]|Shortcut: SeeAlso:--- @@ -114,4 +115,7 @@ De aici mi departe, trebuie să avem **Ship** selectată înainte de a executa o {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship New/ro diff --git a/wiki/translations/ro/Ship_Outline.md b/wiki/translations/ro/Ship_Outline.md index a707d48914..e18059d19f 100644 --- a/wiki/translations/ro/Ship_Outline.md +++ b/wiki/translations/ro/Ship_Outline.md @@ -1,3 +1,4 @@ +# Ship Outline/ro --- - GuiCommand: Name:Ship Outline MenuLocation:Ship design → Outline draw |Workbenches:[[Ship Workbench Ship]]|Shortcut: SeeAlso:--- @@ -139,4 +140,7 @@ Outline draw plot. {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Outline/ro diff --git a/wiki/translations/ro/Ship_PlotGZ.md b/wiki/translations/ro/Ship_PlotGZ.md index 80e49a0fdc..d1826ab006 100644 --- a/wiki/translations/ro/Ship_PlotGZ.md +++ b/wiki/translations/ro/Ship_PlotGZ.md @@ -1,3 +1,4 @@ +# Ship PlotGZ/ro --- - GuiCommand: Name:Ship PlotGZ MenuLocation:Weights → GZ curve computation |Workbenches:[[Ship Workbench Ship]]|Shortcut: SeeAlso:--- @@ -16,9 +17,5 @@ De făcut {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship PlotGZ/ro diff --git a/wiki/translations/ro/Ship_TankCapacity.md b/wiki/translations/ro/Ship_TankCapacity.md index 8270dec2aa..a5fb9f1d8b 100644 --- a/wiki/translations/ro/Ship_TankCapacity.md +++ b/wiki/translations/ro/Ship_TankCapacity.md @@ -1,3 +1,4 @@ +# Ship TankCapacity/ro --- - GuiCommand: Name:Ship TankCapacity MenuLocation:Weights → Tank capacity curve |Workbenches:[[Ship Workbench Ship]]|Shortcut: SeeAlso:--- @@ -16,9 +17,5 @@ De făcut {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship TankCapacity/ro diff --git a/wiki/translations/ro/Ship_TankNew.md b/wiki/translations/ro/Ship_TankNew.md index 2d30577704..eb1dc4b1c9 100644 --- a/wiki/translations/ro/Ship_TankNew.md +++ b/wiki/translations/ro/Ship_TankNew.md @@ -1,3 +1,4 @@ +# Ship TankNew/ro --- - GuiCommand: Name:Ship TankNew MenuLocation:Weights → Create a new tank |Workbenches:[[Ship Workbench Ship]]|Shortcut: SeeAlso:--- @@ -16,9 +17,5 @@ De făcut {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship TankNew/ro diff --git a/wiki/translations/ro/Ship_Workbench.md b/wiki/translations/ro/Ship_Workbench.md index 5678654cb0..9c18cfa4d7 100644 --- a/wiki/translations/ro/Ship_Workbench.md +++ b/wiki/translations/ro/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/ro - - -Ship workbench icon +# Ship workbench icon Ship Workbench/ro {{TOCright}} @@ -73,3 +70,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/ro diff --git a/wiki/translations/ro/Sketcher_CarbonCopy.md b/wiki/translations/ro/Sketcher_CarbonCopy.md index 4c1634324d..3e05c70b03 100644 --- a/wiki/translations/ro/Sketcher_CarbonCopy.md +++ b/wiki/translations/ro/Sketcher_CarbonCopy.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Sketcher CarbonCopy/ro +
@@ -41,4 +43,7 @@ Dimensional constraints which exist before the copy function remain linked to th {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CarbonCopy/ro diff --git a/wiki/translations/ro/Sketcher_Clone.md b/wiki/translations/ro/Sketcher_Clone.md index 632eb64afa..c8c1afb4e4 100644 --- a/wiki/translations/ro/Sketcher_Clone.md +++ b/wiki/translations/ro/Sketcher_Clone.md @@ -14,6 +14,8 @@ SeeAlso:[Sketcher Copiere](Sketcher_Copy/ro.md), [Sketcher Move](Sketcher_Move/ro.md) --- +# Sketcher Clone/ro +
@@ -57,4 +59,7 @@ Nu sunt adăugate extra constrâgeri pentru compartamentul clonei. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Clone/ro diff --git a/wiki/translations/ro/Sketcher_CloseShape.md b/wiki/translations/ro/Sketcher_CloseShape.md index d29e15525c..c430999c4d 100644 --- a/wiki/translations/ro/Sketcher_CloseShape.md +++ b/wiki/translations/ro/Sketcher_CloseShape.md @@ -1,3 +1,4 @@ +# Sketcher CloseShape/ro --- - GuiCommand: Name:Sketcher CloseShape Workbenches:[[Sketcher Workbench Sketcher]]|MenuLocation:Sketch → Sketcher tools → Close Shape Shortcut:Shift+Ctrl+S Version:0.15--- @@ -34,4 +35,7 @@ Instrumentul va conecta elementele în ordinea alegerii lor, deci asigurați-vă {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CloseShape/ro diff --git a/wiki/translations/ro/Sketcher_CompCreateArc.md b/wiki/translations/ro/Sketcher_CompCreateArc.md index f108009e11..f764ed7dd4 100644 --- a/wiki/translations/ro/Sketcher_CompCreateArc.md +++ b/wiki/translations/ro/Sketcher_CompCreateArc.md @@ -6,6 +6,8 @@ MenuLocation:None (toolbar only) --- +# Sketcher CompCreateArc/ro +
@@ -24,4 +26,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateArc/ro diff --git a/wiki/translations/ro/Sketcher_CompCreateConic.md b/wiki/translations/ro/Sketcher_CompCreateConic.md index db8d7e2f1a..499df2d201 100644 --- a/wiki/translations/ro/Sketcher_CompCreateConic.md +++ b/wiki/translations/ro/Sketcher_CompCreateConic.md @@ -6,6 +6,8 @@ MenuLocation:None (toolbar only) --- +# Sketcher CompCreateConic/ro +
@@ -45,4 +47,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateConic/ro diff --git a/wiki/translations/ro/Sketcher_ConnectLines.md b/wiki/translations/ro/Sketcher_ConnectLines.md index 88e6676ac7..b54b9c2477 100644 --- a/wiki/translations/ro/Sketcher_ConnectLines.md +++ b/wiki/translations/ro/Sketcher_ConnectLines.md @@ -1,3 +1,4 @@ +# Sketcher ConnectLines/ro --- - GuiCommand:/ro Name:Sketcher ConnectLines Name/ro:Sketcher ConnectLines Workbenches:[[Sketcher Workbench/ro Sketcher]]|MenuLocation:Sketch → Sketcher tools → Connect Edges Shortcut:Ctrl+Shift+K Version:0.15--- @@ -40,4 +41,7 @@ Selectați elementele din vizualizarea 3D sau din caseta de listă din partea st {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConnectLines/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainAngle.md b/wiki/translations/ro/Sketcher_ConstrainAngle.md index 5adefc253c..e4ab39615e 100644 --- a/wiki/translations/ro/Sketcher_ConstrainAngle.md +++ b/wiki/translations/ro/Sketcher_ConstrainAngle.md @@ -7,6 +7,8 @@ SeeAlso:[Constrain distance](Sketcher_ConstrainDistance.md), [Constraint Perpendicular](Sketcher_ConstrainPerpendicular.md) --- +# Sketcher ConstrainAngle/ro +
@@ -185,4 +187,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainAngle/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainBlock.md b/wiki/translations/ro/Sketcher_ConstrainBlock.md index 56924066f0..9df5d631b6 100644 --- a/wiki/translations/ro/Sketcher_ConstrainBlock.md +++ b/wiki/translations/ro/Sketcher_ConstrainBlock.md @@ -7,6 +7,8 @@ SeeAlso:[Constrângere fixă](Sketcher_ConstrainLock/ro.md) --- +# Sketcher ConstrainBlock/ro + @@ -56,4 +58,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainBlock/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainCoincident.md b/wiki/translations/ro/Sketcher_ConstrainCoincident.md index f5051fb28b..9a13ecfd01 100644 --- a/wiki/translations/ro/Sketcher_ConstrainCoincident.md +++ b/wiki/translations/ro/Sketcher_ConstrainCoincident.md @@ -8,6 +8,8 @@ SeeAlso:[Constrain Lock](Sketcher_ConstrainLock/ro.md), [Constrain Point onto Object](Sketcher_ConstrainPointOnObject/ro.md) --- +# Sketcher ConstrainCoincident/ro + @@ -110,3 +112,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/ro](Category:Sketcher/ro.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainCoincident/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainDistance.md b/wiki/translations/ro/Sketcher_ConstrainDistance.md index 4e76922eef..13fbf66ab9 100644 --- a/wiki/translations/ro/Sketcher_ConstrainDistance.md +++ b/wiki/translations/ro/Sketcher_ConstrainDistance.md @@ -7,6 +7,8 @@ SeeAlso:[Constrain horizontal distance](Sketcher_ConstrainDistanceX.md), [Constrain vertical distance](Sketcher_ConstrainDistanceY.md) --- +# Sketcher ConstrainDistance/ro + @@ -92,4 +94,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistance/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainDistanceX.md b/wiki/translations/ro/Sketcher_ConstrainDistanceX.md index 8f660b4a09..15b5737c68 100644 --- a/wiki/translations/ro/Sketcher_ConstrainDistanceX.md +++ b/wiki/translations/ro/Sketcher_ConstrainDistanceX.md @@ -7,6 +7,8 @@ SeeAlso:[Constrain Length](Sketcher_ConstrainDistance.md), [Constrain Vertical Distance](Sketcher_ConstrainDistanceY.md) --- +# Sketcher ConstrainDistanceX/ro + @@ -76,4 +78,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceX/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainDistanceY.md b/wiki/translations/ro/Sketcher_ConstrainDistanceY.md index bfb089be2f..f08eb5dd82 100644 --- a/wiki/translations/ro/Sketcher_ConstrainDistanceY.md +++ b/wiki/translations/ro/Sketcher_ConstrainDistanceY.md @@ -7,6 +7,8 @@ SeeAlso:[Constrain Horizontal Distance](Sketcher_ConstrainDistanceX.md), [Constrain Length](Sketcher_ConstrainDistance.md) --- +# Sketcher ConstrainDistanceY/ro + @@ -76,4 +78,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceY/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainEqual.md b/wiki/translations/ro/Sketcher_ConstrainEqual.md index 8f66f7e3d0..e5c490e465 100644 --- a/wiki/translations/ro/Sketcher_ConstrainEqual.md +++ b/wiki/translations/ro/Sketcher_ConstrainEqual.md @@ -7,6 +7,8 @@ SeeAlso:[Constrain radius](Sketcher_ConstrainRadius.md) --- +# Sketcher ConstrainEqual/ro + @@ -96,4 +98,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainEqual/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainHorizontal.md b/wiki/translations/ro/Sketcher_ConstrainHorizontal.md index f1b5c7bda0..6d8b12fce2 100644 --- a/wiki/translations/ro/Sketcher_ConstrainHorizontal.md +++ b/wiki/translations/ro/Sketcher_ConstrainHorizontal.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint Vertical](Sketcher_ConstrainVertical/ro.md) --- +# Sketcher ConstrainHorizontal/ro + @@ -66,3 +68,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/ro](Category:Sketcher/ro.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainHorizontal/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainInternalAlignment.md b/wiki/translations/ro/Sketcher_ConstrainInternalAlignment.md index e367284f45..7c7f55f472 100644 --- a/wiki/translations/ro/Sketcher_ConstrainInternalAlignment.md +++ b/wiki/translations/ro/Sketcher_ConstrainInternalAlignment.md @@ -7,6 +7,8 @@ SeeAlso:[Show/Hide Internal Geometry](Sketcher_RestoreInternalAlignmentGeometry.md), [Ellipse](Sketcher_CreateEllipseByCenter.md) --- +# Sketcher ConstrainInternalAlignment/ro + @@ -95,4 +97,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainInternalAlignment/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainLock.md b/wiki/translations/ro/Sketcher_ConstrainLock.md index af6f7cc218..5baba0463a 100644 --- a/wiki/translations/ro/Sketcher_ConstrainLock.md +++ b/wiki/translations/ro/Sketcher_ConstrainLock.md @@ -7,6 +7,8 @@ SeeAlso:[Constraint Block](Sketcher_ConstrainBlock/ro.md) --- +# Sketcher ConstrainLock/ro + @@ -50,4 +52,7 @@ The [Loc {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainLock/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainParallel.md b/wiki/translations/ro/Sketcher_ConstrainParallel.md index 1b87faf44a..7638f03a7d 100644 --- a/wiki/translations/ro/Sketcher_ConstrainParallel.md +++ b/wiki/translations/ro/Sketcher_ConstrainParallel.md @@ -7,6 +7,8 @@ SeeAlso:[Constraint Vertical](Sketcher_ConstrainVertical.md), [Constraint Horizontal](Sketcher_ConstrainHorizontal.md) --- +# Sketcher ConstrainParallel/ro + @@ -95,4 +97,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainParallel/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainPointOnObject.md b/wiki/translations/ro/Sketcher_ConstrainPointOnObject.md index fb82bb4a61..16814da067 100644 --- a/wiki/translations/ro/Sketcher_ConstrainPointOnObject.md +++ b/wiki/translations/ro/Sketcher_ConstrainPointOnObject.md @@ -7,6 +7,8 @@ SeeAlso:[Constrain Coincident](Sketcher_ConstrainCoincident.md) --- +# Sketcher ConstrainPointOnObject/ro + @@ -89,4 +91,7 @@ Pentru a identifica numărul care are indică liniile și punctele? Vă rog să {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPointOnObject/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainRadius.md b/wiki/translations/ro/Sketcher_ConstrainRadius.md index 90f6d8db01..6846891290 100644 --- a/wiki/translations/ro/Sketcher_ConstrainRadius.md +++ b/wiki/translations/ro/Sketcher_ConstrainRadius.md @@ -6,6 +6,8 @@ SeeAlso:[Constrain distance](Sketcher_ConstrainDistance.md), [Constrain horizontal distance](Sketcher_ConstrainDistanceX.md), [Constrain vertical distance](Sketcher_ConstrainDistanceY.md) --- +# Sketcher ConstrainRadius/ro + @@ -74,4 +76,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadius/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainSymmetric.md b/wiki/translations/ro/Sketcher_ConstrainSymmetric.md index 58c7aae4b7..137fc5cf7c 100644 --- a/wiki/translations/ro/Sketcher_ConstrainSymmetric.md +++ b/wiki/translations/ro/Sketcher_ConstrainSymmetric.md @@ -7,6 +7,8 @@ SeeAlso:[Constraint Parallel](Sketcher_ConstrainParallel.md) --- +# Sketcher ConstrainSymmetric/ro + @@ -84,4 +86,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSymmetric/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainTangent.md b/wiki/translations/ro/Sketcher_ConstrainTangent.md index 55592205f2..f8f8918208 100644 --- a/wiki/translations/ro/Sketcher_ConstrainTangent.md +++ b/wiki/translations/ro/Sketcher_ConstrainTangent.md @@ -7,6 +7,8 @@ SeeAlso:[Constraint point on object](Sketcher_ConstrainPointOnObject.md) --- +# Sketcher ConstrainTangent/ro + @@ -168,4 +170,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainTangent/ro diff --git a/wiki/translations/ro/Sketcher_ConstrainVertical.md b/wiki/translations/ro/Sketcher_ConstrainVertical.md index 7bb9fe7eeb..63aeaebc61 100644 --- a/wiki/translations/ro/Sketcher_ConstrainVertical.md +++ b/wiki/translations/ro/Sketcher_ConstrainVertical.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint Horizontal](Sketcher_ConstrainHorizontal/ro.md) --- +# Sketcher ConstrainVertical/ro + @@ -56,3 +58,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/ro](Category:Sketcher/ro.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainVertical/ro diff --git a/wiki/translations/ro/Sketcher_Copy.md b/wiki/translations/ro/Sketcher_Copy.md index 8b613d6fbb..380fd75683 100644 --- a/wiki/translations/ro/Sketcher_Copy.md +++ b/wiki/translations/ro/Sketcher_Copy.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Clonă](Sketcher_Clone/ro.md), [Sketcher Move](Sketcher_Move/ro.md) --- +# Sketcher Copy/ro + @@ -41,4 +43,7 @@ Nu sunt adăugate extra constrâgeri pentru comportamentul copiei. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Copy/ro diff --git a/wiki/translations/ro/Sketcher_Create3PointArc.md b/wiki/translations/ro/Sketcher_Create3PointArc.md index 2b3dd8e6ba..340478107b 100644 --- a/wiki/translations/ro/Sketcher_Create3PointArc.md +++ b/wiki/translations/ro/Sketcher_Create3PointArc.md @@ -1,3 +1,4 @@ +# Sketcher Create3PointArc/ro --- - GuiCommand:/ro Name:Sketcher Create3PointArc Name/ro:Sketcher Create3PointArc Workbenches:[[Sketcher Workbench/ro Sketcher]]|MenuLocation:Sketch → Sketcher geometries → Create Arc by three points Shortcut: SeeAlso:--- @@ -27,4 +28,7 @@ Când instrumentul este activat, indicatorul maouse-ului se schimbă într-o cur {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Create3PointArc/ro diff --git a/wiki/translations/ro/Sketcher_Create3PointCircle.md b/wiki/translations/ro/Sketcher_Create3PointCircle.md index bfe9e438c2..1c5ea9651a 100644 --- a/wiki/translations/ro/Sketcher_Create3PointCircle.md +++ b/wiki/translations/ro/Sketcher_Create3PointCircle.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Sketcher Create3PointCircle/ro + @@ -44,4 +46,7 @@ Acest instrument @@ -143,4 +140,7 @@ This is the best way to constrain this sketch, as we only used one datum (dimens {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Micro Tutorial - Constraint Practices/ro diff --git a/wiki/translations/ro/Sketcher_MirrorSketch.md b/wiki/translations/ro/Sketcher_MirrorSketch.md index 907eb9f207..a6cf474d97 100644 --- a/wiki/translations/ro/Sketcher_MirrorSketch.md +++ b/wiki/translations/ro/Sketcher_MirrorSketch.md @@ -6,6 +6,8 @@ Version:0.16 --- +# Sketcher MirrorSketch/ro + ## Descriere @@ -44,4 +46,7 @@ Notes: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MirrorSketch/ro diff --git a/wiki/translations/ro/Sketcher_Module.md b/wiki/translations/ro/Sketcher_Module.md index ea5ccb7806..6e25ec1c7c 100644 --- a/wiki/translations/ro/Sketcher_Module.md +++ b/wiki/translations/ro/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/ro 1. REDIRECT [Sketcher Workbench/ro](Sketcher_Workbench/ro.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/ro diff --git a/wiki/translations/ro/Sketcher_Move.md b/wiki/translations/ro/Sketcher_Move.md index 5ac095be5d..3ba87ec2a2 100644 --- a/wiki/translations/ro/Sketcher_Move.md +++ b/wiki/translations/ro/Sketcher_Move.md @@ -9,6 +9,8 @@ SeeAlso:[Clonă](Sketcher_Clone/ro.md), [Copiere](Sketcher_Copy/ro.md) --- +# Sketcher Move/ro + @@ -34,4 +36,7 @@ Moves the selected sketch elements from one point to another, using the last sel {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Move/ro diff --git a/wiki/translations/ro/Sketcher_NewSketch.md b/wiki/translations/ro/Sketcher_NewSketch.md index fd24a306e1..4ca1746242 100644 --- a/wiki/translations/ro/Sketcher_NewSketch.md +++ b/wiki/translations/ro/Sketcher_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Asociază schiţa unei feţe...](Sketcher_MapSketch/ro.md), [Reorientați schița...](Sketcher_Reorient/ro.md) --- +# Sketcher NewSketch/ro + @@ -58,4 +60,7 @@ The sketch can be moved in the 3D-Space using [Placement](Placement.md). {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher NewSketch/ro diff --git a/wiki/translations/ro/Sketcher_RectangularArray.md b/wiki/translations/ro/Sketcher_RectangularArray.md index 1e5a771282..8875bef7a2 100644 --- a/wiki/translations/ro/Sketcher_RectangularArray.md +++ b/wiki/translations/ro/Sketcher_RectangularArray.md @@ -1,3 +1,4 @@ +# Sketcher RectangularArray/ro --- - GuiCommand: Name:Sketcher RectangularArray Workbenches:[PartDesign](Sketcher_Workbench___Sketcher]],_[[PartDesign_Workbench.md)|MenuLocation:Sketch → Sketcher tools → Rectangular Array Version:0.16--- @@ -38,4 +39,7 @@ Opțiuni pentru Array {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RectangularArray/ro diff --git a/wiki/translations/ro/Sketcher_Reorient.md b/wiki/translations/ro/Sketcher_Reorient.md index 4a9589080c..e56fbba218 100644 --- a/wiki/translations/ro/Sketcher_Reorient.md +++ b/wiki/translations/ro/Sketcher_Reorient.md @@ -1,2 +1,5 @@ # Sketcher Reorient/ro 1. REDIRECT [Sketcher\_ReorientSketch/ro](Sketcher_ReorientSketch/ro.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Reorient/ro diff --git a/wiki/translations/ro/Sketcher_ReorientSketch.md b/wiki/translations/ro/Sketcher_ReorientSketch.md index 33bc758c6f..3ff809b7f8 100644 --- a/wiki/translations/ro/Sketcher_ReorientSketch.md +++ b/wiki/translations/ro/Sketcher_ReorientSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Map sketch](Sketcher_MapSketch.md), [New Sketch](Sketcher_NewSketch.md) --- +# Sketcher ReorientSketch/ro + @@ -61,4 +63,7 @@ Orientarea schiței {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ReorientSketch/ro diff --git a/wiki/translations/ro/Sketcher_RestoreInternalAlignmentGeometry.md b/wiki/translations/ro/Sketcher_RestoreInternalAlignmentGeometry.md index cabe146385..a41dd7bc1b 100644 --- a/wiki/translations/ro/Sketcher_RestoreInternalAlignmentGeometry.md +++ b/wiki/translations/ro/Sketcher_RestoreInternalAlignmentGeometry.md @@ -1,3 +1,4 @@ +# Sketcher RestoreInternalAlignmentGeometry/ro --- - GuiCommand: Name:Sketcher RestoreInternalAlignmentGeometry Workbenches:[PartDesign](Sketcher_Workbench___Sketcher]],_[[PartDesign_Workbench.md)|MenuLocation:Sketch → Sketcher tools → Show/hide internal geometry Shortcut:Ctrl+Shift+E SeeAlso:[Ellipse](Sketcher_Ellipse.md), [Internal Alignment Constraint](Sketcher_ConstrainInternalAlignment.md)--- @@ -57,4 +58,7 @@ Creați o nouă elipsă. Noi elipse sunt întotdeauna complet ambalate. Veți ve {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RestoreInternalAlignmentGeometry/ro diff --git a/wiki/translations/ro/Sketcher_SelectConflictingConstraints.md b/wiki/translations/ro/Sketcher_SelectConflictingConstraints.md index 7bc3ee205c..b4feefcd10 100644 --- a/wiki/translations/ro/Sketcher_SelectConflictingConstraints.md +++ b/wiki/translations/ro/Sketcher_SelectConflictingConstraints.md @@ -1,3 +1,4 @@ +# Sketcher SelectConflictingConstraints/ro --- - GuiCommand: Name:Sketcher SelectConflictingConstraints Workbenches:[[Sketcher Workbench Sketcher]]|MenuLocation:Sketch → Sketcher tools → Select Conflicting Constraints Shortcut:Shift+Ctrl+E Version:0.15--- @@ -32,4 +33,7 @@ Selectează constrângerile conflictuale dintr-o schiță. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConflictingConstraints/ro diff --git a/wiki/translations/ro/Sketcher_SelectConstraints.md b/wiki/translations/ro/Sketcher_SelectConstraints.md index 1a470e5de5..fb5ba2fbfb 100644 --- a/wiki/translations/ro/Sketcher_SelectConstraints.md +++ b/wiki/translations/ro/Sketcher_SelectConstraints.md @@ -1,3 +1,4 @@ +# Sketcher SelectConstraints/ro --- - GuiCommand:/ro Name:Sketcher SelectConstraints Workbenches:[[Sketcher Workbench Sketcher]]|MenuLocation:Sketch → Sketcher tools → Select Constraints Shortcut:Shift+Ctrl+C SeeAlso: Version:0.15--- @@ -42,4 +43,7 @@ Nu funcționează cu constrângeri Point-on-Object constraints. Disponibil înce {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConstraints/ro diff --git a/wiki/translations/ro/Sketcher_SelectElementsAssociatedWithConstraints.md b/wiki/translations/ro/Sketcher_SelectElementsAssociatedWithConstraints.md index 61d59ad07d..6c766faeae 100644 --- a/wiki/translations/ro/Sketcher_SelectElementsAssociatedWithConstraints.md +++ b/wiki/translations/ro/Sketcher_SelectElementsAssociatedWithConstraints.md @@ -1,3 +1,4 @@ +# Sketcher SelectElementsAssociatedWithConstraints/ro --- - GuiCommand:/ro Name:Sketcher SelectElementsAssociatedWithConstraints Name/ro:Sketcher SelectElementsAssociatedWithConstraints Workbenches:[[Sketcher Workbench/ro Sketcher]]|MenuLocation:Sketch → Sketcher tools → Select Elements Associated with constraints Shortcut:Shift+Ctrl+E SeeAlso: Version:0.15--- @@ -32,4 +33,7 @@ Selectați Elementele schiței asociate cu constrângerile. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsAssociatedWithConstraints/ro diff --git a/wiki/translations/ro/Sketcher_SelectElementsWithDoFs.md b/wiki/translations/ro/Sketcher_SelectElementsWithDoFs.md index 8892160bf5..d604fca43c 100644 --- a/wiki/translations/ro/Sketcher_SelectElementsWithDoFs.md +++ b/wiki/translations/ro/Sketcher_SelectElementsWithDoFs.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Sketcher SelectElementsWithDoFs/ro + @@ -37,4 +39,7 @@ where \"X\" is the number of degrees of freedom remaining in the sketch; you wil {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsWithDoFs/ro diff --git a/wiki/translations/ro/Sketcher_SelectHorizontalAxis.md b/wiki/translations/ro/Sketcher_SelectHorizontalAxis.md index 6f2c382e23..57dc21ad65 100644 --- a/wiki/translations/ro/Sketcher_SelectHorizontalAxis.md +++ b/wiki/translations/ro/Sketcher_SelectHorizontalAxis.md @@ -1,3 +1,4 @@ +# Sketcher SelectHorizontalAxis/ro --- - GuiCommand:/ro Name:Sketcher SelectHorizontalAxis Name/ro:Sketcher SelectHorizontalAxis Workbenches:[[Sketcher Workbench/ro Sketcher]]|MenuLocation:Sketch → Sketcher tools → Select Horizontal Axis Shortcut:Shift+Ctrl+H Version:0.15--- @@ -32,4 +33,7 @@ Selectează axa orizontală a schiței. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectHorizontalAxis/ro diff --git a/wiki/translations/ro/Sketcher_SelectOrigin.md b/wiki/translations/ro/Sketcher_SelectOrigin.md index 4e1037012e..fc45f54bc9 100644 --- a/wiki/translations/ro/Sketcher_SelectOrigin.md +++ b/wiki/translations/ro/Sketcher_SelectOrigin.md @@ -1,3 +1,4 @@ +# Sketcher SelectOrigin/ro --- - GuiCommand: Name:Sketcher SelectOrigin Workbenches:[[Sketcher Workbench Sketcher]]|MenuLocation:Sketch → Sketcher tools → Select Origin Shortcut:Shift+Ctrl+O Version:0.15--- @@ -32,4 +33,7 @@ Selectează originea schiței. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectOrigin/ro diff --git a/wiki/translations/ro/Sketcher_SelectRedundantConstraints.md b/wiki/translations/ro/Sketcher_SelectRedundantConstraints.md index 9b5a942efa..2ef9e502fb 100644 --- a/wiki/translations/ro/Sketcher_SelectRedundantConstraints.md +++ b/wiki/translations/ro/Sketcher_SelectRedundantConstraints.md @@ -1,3 +1,4 @@ +# Sketcher SelectRedundantConstraints/ro --- - GuiCommand:/ro Name:Sketcher SelectRedundantConstraints Name/ro:Sketcher SelectRedundantConstraints Workbenches:[[Sketcher Workbench/ro Sketcher]]|MenuLocation:Sketch → Sketcher tools → Select Redundant Constraints Shortcut:Shift+Ctrl+R Version:0.15--- @@ -40,4 +41,7 @@ Selectează constrângerile redundante dintr-o schiță. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectRedundantConstraints/ro diff --git a/wiki/translations/ro/Sketcher_SelectVerticalAxis.md b/wiki/translations/ro/Sketcher_SelectVerticalAxis.md index cf066e9393..df16ea9403 100644 --- a/wiki/translations/ro/Sketcher_SelectVerticalAxis.md +++ b/wiki/translations/ro/Sketcher_SelectVerticalAxis.md @@ -1,3 +1,4 @@ +# Sketcher SelectVerticalAxis/ro --- - GuiCommand:/ro Name:Sketcher SelectVerticalAxis Name/ro:Sketcher SelectVerticalAxis Workbenches:[[Sketcher Workbench/ro Sketcher]]|MenuLocation:Sketch → Sketcher tools → Select Vertical Axis Shortcut:Shift+Ctrl+V Version:0.15--- @@ -32,4 +33,7 @@ Selects the vertical axis of a sketch. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectVerticalAxis/ro diff --git a/wiki/translations/ro/Sketcher_Symmetry.md b/wiki/translations/ro/Sketcher_Symmetry.md index d1d8e05c7b..ef9ffac8b6 100644 --- a/wiki/translations/ro/Sketcher_Symmetry.md +++ b/wiki/translations/ro/Sketcher_Symmetry.md @@ -6,6 +6,8 @@ Version:0.16 --- +# Sketcher Symmetry/ro + @@ -41,4 +43,7 @@ Copiază un simetric la un element al schiței față de o linie aleasă . {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Symmetry/ro diff --git a/wiki/translations/ro/Sketcher_ToggleConstruction.md b/wiki/translations/ro/Sketcher_ToggleConstruction.md index 4f51b81714..767c731e5e 100644 --- a/wiki/translations/ro/Sketcher_ToggleConstruction.md +++ b/wiki/translations/ro/Sketcher_ToggleConstruction.md @@ -7,6 +7,8 @@ MenuLocation:Sketch → Geometria schitei → Activează/dezactivează construcția geometrică --- +# Sketcher ToggleConstruction/ro + @@ -78,3 +80,6 @@ Utilizați Construction mode pe câteva elemente dals schiței, }} [Category:Sketcher/ro](Category:Sketcher/ro.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleConstruction/ro diff --git a/wiki/translations/ro/Sketcher_ToggleDrivingConstraint.md b/wiki/translations/ro/Sketcher_ToggleDrivingConstraint.md index 50e8908fcc..0dc6fc49ad 100644 --- a/wiki/translations/ro/Sketcher_ToggleDrivingConstraint.md +++ b/wiki/translations/ro/Sketcher_ToggleDrivingConstraint.md @@ -6,6 +6,8 @@ SeeAlso:[Toggle Construction](Sketcher_ToggleConstruction.md) --- +# Sketcher ToggleDrivingConstraint/ro + @@ -64,4 +66,7 @@ Iconița **Toggle Constraint** comută constrângerile dimensionale (bloc, dista {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleDrivingConstraint/ro diff --git a/wiki/translations/ro/Sketcher_Trimming.md b/wiki/translations/ro/Sketcher_Trimming.md index 0c79321772..3bfabb49f2 100644 --- a/wiki/translations/ro/Sketcher_Trimming.md +++ b/wiki/translations/ro/Sketcher_Trimming.md @@ -8,6 +8,8 @@ SeeAlso:[Prelungirea muchiei](Sketcher_Extend/ro.md) --- +# Sketcher Trimming/ro + @@ -56,4 +58,7 @@ Pentru a utiliza instrumentul, faceți: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Trimming/ro diff --git a/wiki/translations/ro/Sketcher_ValidateSketch.md b/wiki/translations/ro/Sketcher_ValidateSketch.md index e5959793ac..7ef9fd671d 100644 --- a/wiki/translations/ro/Sketcher_ValidateSketch.md +++ b/wiki/translations/ro/Sketcher_ValidateSketch.md @@ -7,6 +7,8 @@ MenuLocation:Sketch / Part Design → Validate sketch --- +# Sketcher ValidateSketch/ro + @@ -81,4 +83,7 @@ The locking mechanism typically works well and this tool should not be needed. * {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ValidateSketch/ro diff --git a/wiki/translations/ro/Sketcher_ViewSection.md b/wiki/translations/ro/Sketcher_ViewSection.md index 5b24043b7a..d42c5a9068 100644 --- a/wiki/translations/ro/Sketcher_ViewSection.md +++ b/wiki/translations/ro/Sketcher_ViewSection.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Sketcher ViewSection/ro + @@ -39,4 +41,7 @@ Instrumentul **View section** creează un plan de secțiune care ascunde tempora {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSection/ro diff --git a/wiki/translations/ro/Sketcher_ViewSketch.md b/wiki/translations/ro/Sketcher_ViewSketch.md index 8b45349f81..126c894ca3 100644 --- a/wiki/translations/ro/Sketcher_ViewSketch.md +++ b/wiki/translations/ro/Sketcher_ViewSketch.md @@ -1,3 +1,4 @@ +# Sketcher ViewSketch/ro --- - GuiCommand:/ro Name:Sketcher ViewSketch Name/ro:Sketcher ViewSketch Workbenches:[PartDesign](Sketcher_Workbench___Sketcher]],_[[PartDesign_Workbench.md)|MenuLocation:Sketch → View sketch--- @@ -33,4 +34,7 @@ Atunci când Sketch este în edit mode, sau {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSketch/ro diff --git a/wiki/translations/ro/Sketcher_Workbench.md b/wiki/translations/ro/Sketcher_Workbench.md index f844201c18..6486c45f2b 100644 --- a/wiki/translations/ro/Sketcher_Workbench.md +++ b/wiki/translations/ro/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/ro - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/ro {{TOCright}} @@ -928,3 +922,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/ro diff --git a/wiki/translations/ro/Source_documentation.md b/wiki/translations/ro/Source_documentation.md index 1651e082fd..24ba23248c 100644 --- a/wiki/translations/ro/Source_documentation.md +++ b/wiki/translations/ro/Source_documentation.md @@ -1,10 +1,4 @@ # Source documentation/ro - - - - - - {{TOCright}} @@ -219,3 +213,6 @@ void removeTaskWatcher(void); [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source documentation/ro diff --git a/wiki/translations/ro/Spinning.md b/wiki/translations/ro/Spinning.md index 5a99c8cc4d..3fe1d48828 100644 --- a/wiki/translations/ro/Spinning.md +++ b/wiki/translations/ro/Spinning.md @@ -1,2 +1,5 @@ # Spinning/ro 1. REDIRECT [Std\_DemoMode](Std_DemoMode.md) + +--- +[documentation index](../README.md) > Spinning/ro diff --git a/wiki/translations/ro/Spreadsheet_Controller.md b/wiki/translations/ro/Spreadsheet_Controller.md index 3b1ea63199..29f05512e6 100644 --- a/wiki/translations/ro/Spreadsheet_Controller.md +++ b/wiki/translations/ro/Spreadsheet_Controller.md @@ -1,2 +1,5 @@ # Spreadsheet Controller/ro 1. REDIRECT [Arch\_Schedule/ro](Arch_Schedule/ro.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Controller/ro diff --git a/wiki/translations/ro/Spreadsheet_Create.md b/wiki/translations/ro/Spreadsheet_Create.md index e53f0f2c65..84c805ebd7 100644 --- a/wiki/translations/ro/Spreadsheet_Create.md +++ b/wiki/translations/ro/Spreadsheet_Create.md @@ -1,2 +1,5 @@ # Spreadsheet Create/ro 1. REDIRECT [Spreadsheet\_CreateSheet](Spreadsheet_CreateSheet.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Create/ro diff --git a/wiki/translations/ro/Spreadsheet_Module.md b/wiki/translations/ro/Spreadsheet_Module.md index 5e8cbc1b8f..7322c69e60 100644 --- a/wiki/translations/ro/Spreadsheet_Module.md +++ b/wiki/translations/ro/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module/ro 1. REDIRECT [Spreadsheet Workbench/ro](Spreadsheet_Workbench/ro.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module/ro diff --git a/wiki/translations/ro/Spreadsheet_Workbench.md b/wiki/translations/ro/Spreadsheet_Workbench.md index 52be83d8b5..d381071584 100644 --- a/wiki/translations/ro/Spreadsheet_Workbench.md +++ b/wiki/translations/ro/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/ro - {{Page_in_progress}} @@ -365,3 +364,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/ro diff --git a/wiki/translations/ro/Standard_Menu.md b/wiki/translations/ro/Standard_Menu.md index 7d32b51cd1..432b9808e7 100644 --- a/wiki/translations/ro/Standard_Menu.md +++ b/wiki/translations/ro/Standard_Menu.md @@ -1,5 +1,5 @@ # Standard Menu/ro - {{TOCright}} +{{TOCright}}
@@ -43,4 +43,7 @@ The standard menu is composed of 7 sub-menus: {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Standard Menu/ro diff --git a/wiki/translations/ro/Start_Workbench.md b/wiki/translations/ro/Start_Workbench.md index ac9ade72e5..704146c6a8 100644 --- a/wiki/translations/ro/Start_Workbench.md +++ b/wiki/translations/ro/Start_Workbench.md @@ -1,10 +1,4 @@ -# Start Workbench/ro - - - - - -Start workbench icon +# Start workbench icon Start Workbench/ro
@@ -62,3 +56,6 @@ Din această interfață puteți vedea informații utile și puteți să accesa [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench/ro diff --git a/wiki/translations/ro/Start_up_and_Configuration.md b/wiki/translations/ro/Start_up_and_Configuration.md index 9ac96c8da9..d35ea36d7a 100644 --- a/wiki/translations/ro/Start_up_and_Configuration.md +++ b/wiki/translations/ro/Start_up_and_Configuration.md @@ -1,10 +1,4 @@ # Start up and Configuration/ro - - - - - - {{TOCright}} @@ -469,3 +463,6 @@ Now double-click the batch file to start FreeCAD. ([see](https://forum.freecadwe [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start up and Configuration/ro diff --git a/wiki/translations/ro/Std_About.md b/wiki/translations/ro/Std_About.md index caec5da9a6..03d7199774 100644 --- a/wiki/translations/ro/Std_About.md +++ b/wiki/translations/ro/Std_About.md @@ -1,3 +1,4 @@ +# Std About/ro --- - GuiCommand: Name:Std About Workbenches:All MenuLocation:Help → About FreeCAD SeeAlso:[[Standard Menu]]--- @@ -79,3 +80,6 @@ The Libraries tab shows a list of the external libraries used by the program, an {{Std Base navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Std About/ro diff --git a/wiki/translations/ro/Std_AddonMgr.md b/wiki/translations/ro/Std_AddonMgr.md index d934f4c08c..2104842454 100644 --- a/wiki/translations/ro/Std_AddonMgr.md +++ b/wiki/translations/ro/Std_AddonMgr.md @@ -9,6 +9,8 @@ Version:0.17 --- +# Std AddonMgr/ro +
@@ -130,4 +132,7 @@ Dacă dezvoltați un aelier de lucru în C ++, acesta nu poate fi rulat direct d {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std AddonMgr/ro diff --git a/wiki/translations/ro/Std_Alignment.md b/wiki/translations/ro/Std_Alignment.md index f0032e2470..d8063a946a 100644 --- a/wiki/translations/ro/Std_Alignment.md +++ b/wiki/translations/ro/Std_Alignment.md @@ -1,3 +1,4 @@ +# Std Alignment/ro --- - GuiCommand: Name:Std Alignment MenuLocation:[Workbenches:All SeeAlso:[[Std Placement|Placement](Std_Edit_Menu___Edit]]_→_Alignment....md)--- @@ -46,4 +47,7 @@ The following additional options are available in the context menu: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Alignment/ro diff --git a/wiki/translations/ro/Std_Base.md b/wiki/translations/ro/Std_Base.md index 2a91e5f94b..13cf53ce11 100644 --- a/wiki/translations/ro/Std_Base.md +++ b/wiki/translations/ro/Std_Base.md @@ -1,10 +1,4 @@ -# Std Base/ro - - - - - -Std Base icon +# Std Base icon Std Base/ro {{TOCright}} @@ -67,3 +61,6 @@ The standard menu is composed of 7 sub-menus. Each sub-menu has a dedicated page }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Base/ro diff --git a/wiki/translations/ro/Std_BoxSelection.md b/wiki/translations/ro/Std_BoxSelection.md index 7131a72565..d70a0ff8c9 100644 --- a/wiki/translations/ro/Std_BoxSelection.md +++ b/wiki/translations/ro/Std_BoxSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Fit Selection](Std_ViewFitSelection.md) --- +# Std BoxSelection/ro +
@@ -51,4 +53,7 @@ The **Std BoxSelection** command selects objects from a user defined rectangular {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std BoxSelection/ro diff --git a/wiki/translations/ro/Std_CloseActiveWindow.md b/wiki/translations/ro/Std_CloseActiveWindow.md index 380b775ae9..d7205db5d7 100644 --- a/wiki/translations/ro/Std_CloseActiveWindow.md +++ b/wiki/translations/ro/Std_CloseActiveWindow.md @@ -1,3 +1,4 @@ +# Std CloseActiveWindow/ro --- - GuiCommand: Name:Std Close MenuLocation:[|Workbenches:All Shortcut:Ctrl+W SeeAlso:[[Std CloseAll|CloseAll](Std_File_Menu___File]]_→_Close.md)--- @@ -69,4 +70,7 @@ To close a document use the `closeDocument` method of the FreeCAD application. F {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CloseActiveWindow/ro diff --git a/wiki/translations/ro/Std_CloseAllWindows.md b/wiki/translations/ro/Std_CloseAllWindows.md index cda533c741..a52a11eb1f 100644 --- a/wiki/translations/ro/Std_CloseAllWindows.md +++ b/wiki/translations/ro/Std_CloseAllWindows.md @@ -1,3 +1,4 @@ +# Std CloseAllWindows/ro --- - GuiCommand: Name:Std_CloseAll MenuLocation:[Workbenches:All Shortcut:... SeeAlso:[[Std_Close|Close](Std_File_Menu___File]]_→_Close_All.md), [Save As...](Std_SaveAs.md) e [Save](Std_Save.md)--- @@ -58,4 +59,7 @@ To close a document use the `closeDocument` method of the FreeCAD application. F {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CloseAllWindows/ro diff --git a/wiki/translations/ro/Std_Copy.md b/wiki/translations/ro/Std_Copy.md index f3f6a1d8b3..cb01929911 100644 --- a/wiki/translations/ro/Std_Copy.md +++ b/wiki/translations/ro/Std_Copy.md @@ -1,3 +1,4 @@ +# Std Copy/ro --- - GuiCommand: Name:Std Copy MenuLocation:[Shortcut:Ctrl+C Workbenches:All SeeAlso:[[Std_Paste|Paste](Std_Edit_Menu___Edit]]_→_Copy.md), [Duplicate Selection](Std_DuplicateSelection.md)--- @@ -40,4 +41,7 @@ Comanda **[16px|text-top=Std Copy|link=Std Copy/fr](File:Std_Copy.png.md) [copie {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Copy/ro diff --git a/wiki/translations/ro/Std_Cut.md b/wiki/translations/ro/Std_Cut.md index 11019894e5..01c3ca6263 100644 --- a/wiki/translations/ro/Std_Cut.md +++ b/wiki/translations/ro/Std_Cut.md @@ -1,3 +1,4 @@ +# Std Cut/ro --- - GuiCommand: Name:Std Cut MenuLocation:[Shortcut:Ctrl+X Workbenches:All SeeAlso:[[Std Copy|Copy](Std_Edit_Menu___Edit]]_→_Cut.md), [Paste](Std_Paste.md), [Delete](Std_Delete.md)--- @@ -54,4 +55,7 @@ Pentru [select](Draft_Select/it.md) mai multe obiecte: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Cut/ro diff --git a/wiki/translations/ro/Std_Delete.md b/wiki/translations/ro/Std_Delete.md index 8b14a1c227..5a0892232c 100644 --- a/wiki/translations/ro/Std_Delete.md +++ b/wiki/translations/ro/Std_Delete.md @@ -1,3 +1,4 @@ +# Std Delete/ro --- - GuiCommand: Name:Std Delete Workbenches:All MenuLocation:[Edit](Std_Edit_Menu.md) → Delete--- @@ -52,4 +53,7 @@ FreeCAD.ActiveDocument.removeObject("myObjectName") {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Delete/ro diff --git a/wiki/translations/ro/Std_DependencyGraph.md b/wiki/translations/ro/Std_DependencyGraph.md index 57e54f3c11..daa963fb88 100644 --- a/wiki/translations/ro/Std_DependencyGraph.md +++ b/wiki/translations/ro/Std_DependencyGraph.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std DependencyGraph/ro + @@ -165,3 +167,6 @@ Puteți salva / exporta graficul de dependență afișat ca fișier imagine. În }} [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > Std DependencyGraph/ro diff --git a/wiki/translations/ro/Std_DlgCustomize.md b/wiki/translations/ro/Std_DlgCustomize.md index 901f46caed..a2e6e416e8 100644 --- a/wiki/translations/ro/Std_DlgCustomize.md +++ b/wiki/translations/ro/Std_DlgCustomize.md @@ -1,3 +1,4 @@ +# Std DlgCustomize/ro --- - GuiCommand: Name:Std DlgCustomize MenuLocation:[Workbenches:All Shortcut: SeeAlso:[[Interface_Customization|Interface Customization](Std_Tools_Menu___Tools]]_→_Customize....md)--- @@ -41,4 +42,7 @@ Alegeți ** Tools** → ** Cus {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgCustomize/ro diff --git a/wiki/translations/ro/Std_DlgMacroExecute.md b/wiki/translations/ro/Std_DlgMacroExecute.md index 1f7b5f357d..92a6cf0d02 100644 --- a/wiki/translations/ro/Std_DlgMacroExecute.md +++ b/wiki/translations/ro/Std_DlgMacroExecute.md @@ -1,3 +1,4 @@ +# Std DlgMacroExecute/ro --- - GuiCommand: Name:Std DlgMacroExecute MenuLocation:[Shortcut:CTRL+F6 Workbenches:All SeeAlso:[[Std_DlgMacroExecuteDirect|Execute Direct](Macros___Macros]]_→_Execute_macro.md)--- @@ -126,4 +127,7 @@ Când tastați în ** +# Std Base icon Std File Menu/ro {{TOCright}} @@ -172,3 +166,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std File Menu/ro diff --git a/wiki/translations/ro/Std_FreeCADUserHub.md b/wiki/translations/ro/Std_FreeCADUserHub.md index 3f1a4be347..f4e4b773c0 100644 --- a/wiki/translations/ro/Std_FreeCADUserHub.md +++ b/wiki/translations/ro/Std_FreeCADUserHub.md @@ -6,6 +6,8 @@ SeeAlso:[Help](Std_OnlineHelp.md) --- +# Std FreeCADUserHub/ro + @@ -41,4 +43,7 @@ Currently the command points to [](htt {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADUserHub/ro diff --git a/wiki/translations/ro/Std_FreeCADWebsite.md b/wiki/translations/ro/Std_FreeCADWebsite.md index 2f5f1c5d15..9c8ba88f67 100644 --- a/wiki/translations/ro/Std_FreeCADWebsite.md +++ b/wiki/translations/ro/Std_FreeCADWebsite.md @@ -5,6 +5,8 @@ ‎ Workbenches:All --- +# Std FreeCADWebsite/ro + @@ -40,4 +42,7 @@ Currently the command points to [](https://www.freec {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADWebsite/ro diff --git a/wiki/translations/ro/Std_FreezeViews.md b/wiki/translations/ro/Std_FreezeViews.md index 781c1bf0ff..92d3bb4385 100644 --- a/wiki/translations/ro/Std_FreezeViews.md +++ b/wiki/translations/ro/Std_FreezeViews.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewIvIssueCamPos](Std_ViewIvIssueCamPos.md) --- +# Std FreezeViews/ro + ## Introduction FreeCAD can store camera settings in up to 50 \'frozen views\'. The menu options that deal with frozen views can be found in the **View → Freeze display** submenu. Frozen views are not stored in the document and, if not saved with the **[Save views\...](#Save_views.md)** menu option, will be lost when the FreeCAD application closes. @@ -87,4 +89,7 @@ For each frozen view a **Restore view** option is added with which it can be res {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreezeViews/ro diff --git a/wiki/translations/ro/Std_Group.md b/wiki/translations/ro/Std_Group.md index 0b9bee2367..819758cf1a 100644 --- a/wiki/translations/ro/Std_Group.md +++ b/wiki/translations/ro/Std_Group.md @@ -1,3 +1,4 @@ +# Std Group/ro --- - GuiCommand: Name:Std Group MenuLocation:Tree View → Right click on the document name |Workbenches:All Shortcut: SeeAlso:[Draft SelectGroup](Draft_SelectGroup.md), [Draft AddToGroup](Draft_AddToGroup.md)--- @@ -162,4 +163,7 @@ For example, a [FEM Analysis](FEM_Analysis.md) is an `App::DocumentObjectGroupPy {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Group/ro diff --git a/wiki/translations/ro/Std_Import.md b/wiki/translations/ro/Std_Import.md index d8ced0705a..f377e5c180 100644 --- a/wiki/translations/ro/Std_Import.md +++ b/wiki/translations/ro/Std_Import.md @@ -1,3 +1,4 @@ +# Std Import/ro --- - GuiCommand:/ro Name:Std Import Name/ro:Importul Workbenches:All MenuLocation:File → Importul Shortcut:CTRL+I SeeAlso:[Deschidere](Std_Open/ro.md)...--- @@ -49,3 +50,6 @@ Când este încărcat, fișierul este adăugat la proiectul curent(de asemenea d }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Import/ro diff --git a/wiki/translations/ro/Std_InterfaceCustomization.md b/wiki/translations/ro/Std_InterfaceCustomization.md index 7cf442a7ff..aab0c1dd11 100644 --- a/wiki/translations/ro/Std_InterfaceCustomization.md +++ b/wiki/translations/ro/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/ro 1. REDIRECT [Interface\_Customization/ro](Interface_Customization/ro.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/ro diff --git a/wiki/translations/ro/Std_MacroStartDebug.md b/wiki/translations/ro/Std_MacroStartDebug.md index 43c1167670..960e57aa3e 100644 --- a/wiki/translations/ro/Std_MacroStartDebug.md +++ b/wiki/translations/ro/Std_MacroStartDebug.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Std MacroStartDebug/ro + @@ -21,4 +23,7 @@ This command does not work at this time. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MacroStartDebug/ro diff --git a/wiki/translations/ro/Std_MacroStepInto.md b/wiki/translations/ro/Std_MacroStepInto.md index 4739e4e6d8..6ed5b73f1d 100644 --- a/wiki/translations/ro/Std_MacroStepInto.md +++ b/wiki/translations/ro/Std_MacroStepInto.md @@ -1,3 +1,4 @@ +# Std MacroStepInto/ro --- - GuiCommand: Name:Std DebugInto Workbenches:All MenuLocation:[[Std Macro Menu Macro]] → Step into |Shortcut:F11 SeeAlso:--- @@ -14,4 +15,7 @@ This command does not work at this time. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MacroStepInto/ro diff --git a/wiki/translations/ro/Std_MacroStepOver.md b/wiki/translations/ro/Std_MacroStepOver.md index a7a5201655..843a7d64b6 100644 --- a/wiki/translations/ro/Std_MacroStepOver.md +++ b/wiki/translations/ro/Std_MacroStepOver.md @@ -1,3 +1,4 @@ +# Std MacroStepOver/ro --- - GuiCommand: Name:Std DebugOver Workbenches:All MenuLocation:[[Std Macro Menu Macro]] → Debug Over |Shortcut:F10 SeeAlso:--- @@ -14,4 +15,7 @@ This command does not work at this time. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MacroStepOver/ro diff --git a/wiki/translations/ro/Std_MacroStopDebug.md b/wiki/translations/ro/Std_MacroStopDebug.md index 9a0e08a734..4f77276ce4 100644 --- a/wiki/translations/ro/Std_MacroStopDebug.md +++ b/wiki/translations/ro/Std_MacroStopDebug.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Std MacroStopDebug/ro + @@ -20,4 +22,7 @@ This command does not work at this time. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MacroStopDebug/ro diff --git a/wiki/translations/ro/Std_MacroStopRecord.md b/wiki/translations/ro/Std_MacroStopRecord.md index 98ec38a9c2..b2172ae743 100644 --- a/wiki/translations/ro/Std_MacroStopRecord.md +++ b/wiki/translations/ro/Std_MacroStopRecord.md @@ -6,6 +6,8 @@ SeeAlso:... --- +# Std MacroStopRecord/ro + @@ -51,4 +53,7 @@ Când porniți o ** Std MacroStopRecord/ro diff --git a/wiki/translations/ro/Std_Macro_Menu.md b/wiki/translations/ro/Std_Macro_Menu.md index 32140967ba..8b621c0473 100644 --- a/wiki/translations/ro/Std_Macro_Menu.md +++ b/wiki/translations/ro/Std_Macro_Menu.md @@ -1,10 +1,4 @@ -# Std Macro Menu/ro - - - - - -Std Base icon +# Std Base icon Std Macro Menu/ro {{TOCright}} @@ -129,3 +123,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Macro Menu/ro diff --git a/wiki/translations/ro/Std_MeasureDistance.md b/wiki/translations/ro/Std_MeasureDistance.md index d8876ae27f..9d3ddffce1 100644 --- a/wiki/translations/ro/Std_MeasureDistance.md +++ b/wiki/translations/ro/Std_MeasureDistance.md @@ -1,3 +1,4 @@ +# Std MeasureDistance/ro --- - GuiCommand: Name:Std MeasureDistance MenuLocation:[[Std View Menu View]] → Measure distance‏‎||Workbenches:All Shortcut: SeeAlso:--- @@ -91,4 +92,7 @@ Pentru mai multe posibilități de măsurare / dimensionare puteți utiliza {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MeasureDistance/ro diff --git a/wiki/translations/ro/Std_MergeProject.md b/wiki/translations/ro/Std_MergeProject.md index df182517f0..6a7be31c20 100644 --- a/wiki/translations/ro/Std_MergeProject.md +++ b/wiki/translations/ro/Std_MergeProject.md @@ -1,2 +1,5 @@ # Std MergeProject/ro 1. REDIRECT [Std\_MergeProjects/ro](Std_MergeProjects/ro.md) + +--- +[documentation index](../README.md) > Std MergeProject/ro diff --git a/wiki/translations/ro/Std_MergeProjects.md b/wiki/translations/ro/Std_MergeProjects.md index d5d0526163..b74ddadb31 100644 --- a/wiki/translations/ro/Std_MergeProjects.md +++ b/wiki/translations/ro/Std_MergeProjects.md @@ -1,3 +1,4 @@ +# Std MergeProjects/ro --- - GuiCommand:/ro Name:Std MergeProject Name/ro:Fuzionați Proiectul Workbenches:All MenuLocation:[[Std File Menu/ro File]] → Fuzionați Proiectul|Shortcut: SeeAlso:--- @@ -45,4 +46,7 @@ The **Std MergeProjects** command adds the contents of a FreeCAD file into the a {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MergeProjects/ro diff --git a/wiki/translations/ro/Std_New.md b/wiki/translations/ro/Std_New.md index 956f0c6a26..26c8caba5f 100644 --- a/wiki/translations/ro/Std_New.md +++ b/wiki/translations/ro/Std_New.md @@ -1,3 +1,4 @@ +# Std New/ro --- - GuiCommand:/ro Name:Std New Name/ro:Std New MenuLocation:[Workbenches:All Shortcut:Ctrl+N SeeAlso:[[Std Open/ro|Std Open](Std_File_Menu/ro___File]]_→_New.md),[Std Import](Std_Import/ro.md)--- @@ -98,4 +99,7 @@ FreeCAD.closeDocument(doc.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std New/ro diff --git a/wiki/translations/ro/Std_OnlineHelp.md b/wiki/translations/ro/Std_OnlineHelp.md index 83f83e8e51..7b39956a96 100644 --- a/wiki/translations/ro/Std_OnlineHelp.md +++ b/wiki/translations/ro/Std_OnlineHelp.md @@ -1,3 +1,4 @@ +# Std OnlineHelp/ro --- - GuiCommand: Name:Std OnlineHelp MenuLocation:[[Std Help Menu Help]] → FreeCAD Website‏‎||Workbenches:All Shortcut: SeeAlso:--- @@ -33,4 +34,7 @@ The **Std OnlineHelp** command opens the help documentation. To open the documen {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std OnlineHelp/ro diff --git a/wiki/translations/ro/Std_Open.md b/wiki/translations/ro/Std_Open.md index 41b262c93e..33a91b4f0b 100644 --- a/wiki/translations/ro/Std_Open.md +++ b/wiki/translations/ro/Std_Open.md @@ -1,3 +1,4 @@ +# Std Open/ro --- - GuiCommand: Name:Std Open Name/ro:Deschidere MenuLocation:[Workbenches:All Shortcut:Ctrl+O SeeAlso:[[Std Save/ro|Salvare](Std_File_Menu/ro___File]]_→_Deschidere.md),[Importul](Std_Import/ro.md)--- @@ -51,4 +52,7 @@ For a scripting example see [Std New](Std_New#Scripting.md). {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Open/ro diff --git a/wiki/translations/ro/Std_OrthographicCamera.md b/wiki/translations/ro/Std_OrthographicCamera.md index 2648b0d22f..c47f4c677d 100644 --- a/wiki/translations/ro/Std_OrthographicCamera.md +++ b/wiki/translations/ro/Std_OrthographicCamera.md @@ -1,3 +1,4 @@ +# Std OrthographicCamera/ro --- - GuiCommand: Name:Std OrthographicCamera MenuLocation:[|Workbenches:All Shortcut:O SeeAlso:[[Std PerspectiveCamera|Perspective View](Std_View_Menu___View]]_→_Orthographic_view.md)--- @@ -65,4 +66,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std OrthographicCamera/ro diff --git a/wiki/translations/ro/Std_Part.md b/wiki/translations/ro/Std_Part.md index cf07b7cb21..e924435164 100644 --- a/wiki/translations/ro/Std_Part.md +++ b/wiki/translations/ro/Std_Part.md @@ -8,6 +8,8 @@ SeeAlso:[Std Group](Std_Group/ro.md), [PartDesign Body](PartDesign_Body/ro.md) --- +# Std Part/ro + @@ -336,4 +338,7 @@ App.ActiveDocument.addObject('Part::FeaturePython', 'Group', group.MyGroup(), gr {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Part/ro diff --git a/wiki/translations/ro/Std_Paste.md b/wiki/translations/ro/Std_Paste.md index a53d9777dd..41c888e4c5 100644 --- a/wiki/translations/ro/Std_Paste.md +++ b/wiki/translations/ro/Std_Paste.md @@ -1,3 +1,4 @@ +# Std Paste/ro --- - GuiCommand: Name:Std_Paste MenuLocation:Edit → Paste Shortcut:Ctrl+V Workbenches:All SeeAlso:[Copy](Std_Copy.md), [Duplicate Selection](Std_DuplicateSelection.md)--- @@ -50,4 +51,7 @@ The **Std Paste** command pastes objects from the Clipboard into the active docu {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Paste/ro diff --git a/wiki/translations/ro/Std_PerspectiveCamera.md b/wiki/translations/ro/Std_PerspectiveCamera.md index ed2711cfab..00ffeee3ed 100644 --- a/wiki/translations/ro/Std_PerspectiveCamera.md +++ b/wiki/translations/ro/Std_PerspectiveCamera.md @@ -1,3 +1,4 @@ +# Std PerspectiveCamera/ro --- - GuiCommand: Name:Std PerspectiveCamera MenuLocation:[|Workbenches:All Shortcut:P SeeAlso:[[Std OrthographicCamera|Orthographic view](Std_View_Menu___View]]_→_Perspective_view‏‎.md)--- @@ -64,4 +65,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PerspectiveCamera/ro diff --git a/wiki/translations/ro/Std_Placement.md b/wiki/translations/ro/Std_Placement.md index df97bbed4b..597f118f87 100644 --- a/wiki/translations/ro/Std_Placement.md +++ b/wiki/translations/ro/Std_Placement.md @@ -1,3 +1,4 @@ +# Std Placement/ro --- - GuiCommand: Name:Std Placement MenuLocation:[|Workbenches:All Shortcut: SeeAlso:[[Tasks Placement|Tasks Placement](Std_Edit_Menu___Edit]]_→_Placement...‏‎.md), [Placement](Placement.md)--- @@ -100,4 +101,7 @@ print(obj.Placement.Matrix) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Placement/ro diff --git a/wiki/translations/ro/Std_Print.md b/wiki/translations/ro/Std_Print.md index 3c2846a77d..51f8876718 100644 --- a/wiki/translations/ro/Std_Print.md +++ b/wiki/translations/ro/Std_Print.md @@ -1,3 +1,4 @@ +# Std Print/ro --- - GuiCommand:/ro Name:Std Print Name/ro:Imprimare MenuLocation:[Workbenches:All Shortcut:Ctrl+P SeeAlso:[[Std_PrintPreview/ro|Previzualizare tipărire...](Std_File_Menu/ro___File]]_→_Imprimare....md)--- @@ -35,4 +36,7 @@ The **Std Print** command is primarily intended to print [TechDraw Workbench](Te {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Print/ro diff --git a/wiki/translations/ro/Std_PrintPdf.md b/wiki/translations/ro/Std_PrintPdf.md index 75813b5499..2eb0c6db26 100644 --- a/wiki/translations/ro/Std_PrintPdf.md +++ b/wiki/translations/ro/Std_PrintPdf.md @@ -1,3 +1,4 @@ +# Std PrintPdf/ro --- - GuiCommand:/ro Name:Std PrintPdf Name/ro:Std PrintPdf Workbenches:All MenuLocation:[Shortcut: SeeAlso:File [[Std_Export/ro|Export](Std_File_Menu___File]]_→_PrintPdf_.md)--- @@ -40,4 +41,7 @@ The **Std PrintPdf** command is primarily intended to create [PDF](PDF.md) files {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PrintPdf/ro diff --git a/wiki/translations/ro/Std_PrintPreview.md b/wiki/translations/ro/Std_PrintPreview.md index 645e05b8da..00af1a2ec7 100644 --- a/wiki/translations/ro/Std_PrintPreview.md +++ b/wiki/translations/ro/Std_PrintPreview.md @@ -1,3 +1,4 @@ +# Std PrintPreview/ro --- - GuiCommand:/ro Name:Std PrintPreview Name/ro:Previzualizare tipărire Workbenches:All MenuLocation:[Shortcut:Ctrl+P SeeAlso:[[Std Print/ro|Imprimare](Std_File_Menu/ro___File]]_→_Previzualizare_tipărire_.md)--- @@ -44,4 +45,7 @@ Această funcție vă permite să definiți aspectul paginii care va fi tipărit {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PrintPreview/ro diff --git a/wiki/translations/ro/Std_ProjectInfo.md b/wiki/translations/ro/Std_ProjectInfo.md index 86972ac396..f3d0e5bdfe 100644 --- a/wiki/translations/ro/Std_ProjectInfo.md +++ b/wiki/translations/ro/Std_ProjectInfo.md @@ -1,3 +1,4 @@ +# Std ProjectInfo/ro --- - GuiCommand:/ro Name:Std ProjectInfo Name/ro:Informații despre proiect MenuLocation:[[Std File Menu/ro File]] → Informații despre proiect||Workbenches:All Shortcut: SeeAlso:--- @@ -68,4 +69,7 @@ Apoi, următoarele informații pot fi introduse într-o fereastră: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ProjectInfo/ro diff --git a/wiki/translations/ro/Std_Quit.md b/wiki/translations/ro/Std_Quit.md index 29172c2484..1aa9e4cf5d 100644 --- a/wiki/translations/ro/Std_Quit.md +++ b/wiki/translations/ro/Std_Quit.md @@ -1,3 +1,4 @@ +# Std Quit/ro --- - GuiCommand:/ro Name:Std Quit Name/ro:Ieșire MenuLocation:[Workbenches:All Shortcut:Alt+F4 SeeAlso:[[Std Open/ro|Std Deschidere](Std_File_Menu/ro___File]]_→_Ieșire.md),[Std Importul](Std_Import/ro.md)--- @@ -32,4 +33,7 @@ The **Std Quit** command closes the FreeCAD application and optionally saves uns {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Quit/ro diff --git a/wiki/translations/ro/Std_RecentFiles.md b/wiki/translations/ro/Std_RecentFiles.md index b043973f82..06e867fa4f 100644 --- a/wiki/translations/ro/Std_RecentFiles.md +++ b/wiki/translations/ro/Std_RecentFiles.md @@ -1,3 +1,4 @@ +# Std RecentFiles/ro --- - GuiCommand:/ro Name:Std RecentFiles Name/ro:Fișiere recente MenuLocation:[|Workbenches:All Shortcut: SeeAlso:[[Std Open/ro|Deschidere](Std_File_Menu/ro___File]]_→_Fișiere_recente.md), [Importul](Std_Import/ro.md)--- @@ -45,4 +46,7 @@ Documentul este deschis și inserat în proiect. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std RecentFiles/ro diff --git a/wiki/translations/ro/Std_Redo.md b/wiki/translations/ro/Std_Redo.md index 9ffd6ac8b9..5dbb832363 100644 --- a/wiki/translations/ro/Std_Redo.md +++ b/wiki/translations/ro/Std_Redo.md @@ -1,3 +1,4 @@ +# Std Redo/ro --- - GuiCommand: Name:Std Redo MenuLocation:[|Workbenches:All Shortcut:Maiusc+Ctrl+Z SeeAlso:[[Std_Undo|Undo](Std_Edit_Menu___Edit]]_→_Redo‏‎.md)--- @@ -70,4 +71,7 @@ FreeCAD.ActiveDocument.redo() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Redo/ro diff --git a/wiki/translations/ro/Std_Revert.md b/wiki/translations/ro/Std_Revert.md index 48f4a4c80a..e4ec562e67 100644 --- a/wiki/translations/ro/Std_Revert.md +++ b/wiki/translations/ro/Std_Revert.md @@ -1,3 +1,4 @@ +# Std Revert/ro --- - GuiCommand:/ro Name:Std Revert Name/ro:Restabilire MenuLocation:[[Std_File_Menu/ro File]] → Restabilire|Workbenches:All Shortcut: SeeAlso:--- @@ -23,4 +24,7 @@ The **Std Revert** command closes the active document and reopens the last saved {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Revert/ro diff --git a/wiki/translations/ro/Std_Save.md b/wiki/translations/ro/Std_Save.md index 4d3803332c..7ace1b3c57 100644 --- a/wiki/translations/ro/Std_Save.md +++ b/wiki/translations/ro/Std_Save.md @@ -1,3 +1,4 @@ +# Std Save/ro --- - GuiCommand:/ro Name:Std Save Name/ro:Salvare MenuLocation:[Workbenches:All Shortcut:Crtl+S SeeAlso:[[Std_SaveAs/ro|Save as...](Std_File_Menu/ro___File]]_→_Salvare.md)--- @@ -43,4 +44,7 @@ To save a document use the `save` method of the document object. A new document {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Save/ro diff --git a/wiki/translations/ro/Std_SaveAs.md b/wiki/translations/ro/Std_SaveAs.md index a693ec9471..60ea363cad 100644 --- a/wiki/translations/ro/Std_SaveAs.md +++ b/wiki/translations/ro/Std_SaveAs.md @@ -1,3 +1,4 @@ +# Std SaveAs/ro --- - GuiCommand:/ro Name:Std SaveAs Name/ro:Std SaveAs MenuLocation:[Workbenches:All Shortcut:Maius+Crtl+S SeeAlso:[[Std_Save/ro|Save](Std_File_Menu/ro___File]]_→_Save_as....md)--- @@ -68,4 +69,7 @@ To save a document under a new name use the `saveAs` method of the document obje {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveAs/ro diff --git a/wiki/translations/ro/Std_SaveCopy.md b/wiki/translations/ro/Std_SaveCopy.md index 789df097d6..e231efe82e 100644 --- a/wiki/translations/ro/Std_SaveCopy.md +++ b/wiki/translations/ro/Std_SaveCopy.md @@ -1,3 +1,4 @@ +# Std SaveCopy/ro --- - GuiCommand:/ro Name:Std SaveaCopy Name/ro:Std SaveaCopy MenuLocation:[Workbenches:All Shortcut:C SeeAlso:[[Std_Save/ro|Save](Std_File_Menu/ro___File]]_→_Save_a_Copy....md), [Save as...](Std_SaveAs/ro.md) --- @@ -57,4 +58,7 @@ doc.saveCopy(fnm) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveCopy/ro diff --git a/wiki/translations/ro/Std_SceneInspector.md b/wiki/translations/ro/Std_SceneInspector.md index 2e220d0b19..7cf8dc51fd 100644 --- a/wiki/translations/ro/Std_SceneInspector.md +++ b/wiki/translations/ro/Std_SceneInspector.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std SceneInspector/ro + ## Description The **Std SceneInspector** command opens a dialog box displaying an overview of all nodes in the [scenegraph](Scenegraph.md) of the active [3D view](3D_view.md). It is more a utility for programmers than for average users. It can be used to find out why the rendering is slow or why something isn\'t rendered properly. @@ -23,4 +25,7 @@ The **Std SceneInspector** command opens a dialog box displaying an overview of {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SceneInspector/ro diff --git a/wiki/translations/ro/Std_SelectAll.md b/wiki/translations/ro/Std_SelectAll.md index a92f490564..5ba72befc3 100644 --- a/wiki/translations/ro/Std_SelectAll.md +++ b/wiki/translations/ro/Std_SelectAll.md @@ -1,3 +1,4 @@ +# Std SelectAll/ro --- - GuiCommand: Name:Std SelectAll MenuLocation:[[Std Edit Menu Edit]] → Select All|Workbenches:All Shortcut:... SeeAlso:...--- @@ -49,4 +50,7 @@ Pentru mai multe informații despre modul de selectare, puteți consulta și pag {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelectAll/ro diff --git a/wiki/translations/ro/Std_ToggleBreakpoint.md b/wiki/translations/ro/Std_ToggleBreakpoint.md index cdb9e9784f..832af61f13 100644 --- a/wiki/translations/ro/Std_ToggleBreakpoint.md +++ b/wiki/translations/ro/Std_ToggleBreakpoint.md @@ -1,3 +1,4 @@ +# Std ToggleBreakpoint/ro --- - GuiCommand: Name:Std DebugToggle Workbenches:All MenuLocation:[[Std Macro Menu Macro]] → Toggle breakpoint |Shortcut:F9 SeeAlso:--- @@ -14,4 +15,7 @@ This command does not work at this time. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleBreakpoint/ro diff --git a/wiki/translations/ro/Std_ToggleClipPlane.md b/wiki/translations/ro/Std_ToggleClipPlane.md index 8ec5745f94..c64dcda3a0 100644 --- a/wiki/translations/ro/Std_ToggleClipPlane.md +++ b/wiki/translations/ro/Std_ToggleClipPlane.md @@ -1,3 +1,4 @@ +# Std ToggleClipPlane/ro --- - GuiCommand:/ro Name:Std ClippingPlane Name/ro:Std ClippingPlane MenuLocation:[[Std View Menu/ro View]] → Clipping plane‏‎||Workbenches:All Shortcut: SeeAlso:--- @@ -44,4 +45,7 @@ Un \'\'\'plan de secționare \'\'\' este un plan care împarte volumul obiectulu {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleClipPlane/ro diff --git a/wiki/translations/ro/Std_Tools_Menu.md b/wiki/translations/ro/Std_Tools_Menu.md index e49397c370..5ed7369ebd 100644 --- a/wiki/translations/ro/Std_Tools_Menu.md +++ b/wiki/translations/ro/Std_Tools_Menu.md @@ -1,10 +1,4 @@ -# Std Tools Menu/ro - - - - - -Std Base icon +# Std Base icon Std Tools Menu/ro {{TOCright}} @@ -107,3 +101,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Tools Menu/ro diff --git a/wiki/translations/ro/Std_Undo.md b/wiki/translations/ro/Std_Undo.md index a94a3bc311..9fe15516cb 100644 --- a/wiki/translations/ro/Std_Undo.md +++ b/wiki/translations/ro/Std_Undo.md @@ -1,3 +1,4 @@ +# Std Undo/ro --- - GuiCommand: Name:Std Undo MenuLocation:[Workbenches:All Shortcut:Ctrl+Z SeeAlso:[[Std Redo|Redo](Std_Edit_Menu___Edit]]_→_Undo.md)--- @@ -63,4 +64,7 @@ FreeCAD.ActiveDocument.undo() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Undo/ro diff --git a/wiki/translations/ro/Std_UnitsCalculator.md b/wiki/translations/ro/Std_UnitsCalculator.md index 85ed038408..91da7a22cc 100644 --- a/wiki/translations/ro/Std_UnitsCalculator.md +++ b/wiki/translations/ro/Std_UnitsCalculator.md @@ -1,3 +1,4 @@ +# Std UnitsCalculator/ro --- - GuiCommand: Name:Std_UnitsCalculator MenuLocation:Tools → Unit calculator... Workbenches:All SeeAlso:...--- @@ -70,4 +71,7 @@ Deschide caseta de dialog a calculatorului unității, care permite transformare {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std UnitsCalculator/ro diff --git a/wiki/translations/ro/Std_ViewBoxZoom.md b/wiki/translations/ro/Std_ViewBoxZoom.md index 8f09235e07..9ed4a04ec8 100644 --- a/wiki/translations/ro/Std_ViewBoxZoom.md +++ b/wiki/translations/ro/Std_ViewBoxZoom.md @@ -1,3 +1,4 @@ +# Std ViewBoxZoom/ro --- - GuiCommand: Name:Std ViewBoxZoom Workbenches:All MenuLocation:[[Std View Menu View]] → Zoom |Shortcut: SeeAlso:--- @@ -67,4 +68,7 @@ Dreptunghiul de selecție pentru a mări ![](images/ZoomEs1.png ) Zona extinsă {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewBoxZoom/ro diff --git a/wiki/translations/ro/Std_ViewCreate.md b/wiki/translations/ro/Std_ViewCreate.md index 2437472c32..672bfb860a 100644 --- a/wiki/translations/ro/Std_ViewCreate.md +++ b/wiki/translations/ro/Std_ViewCreate.md @@ -1,3 +1,4 @@ +# Std ViewCreate/ro --- - GuiCommand: Name:Std ViewCreate MenuLocation:[[Std View Menu View]] → Create new view‏‎||Workbenches:All Shortcut: SeeAlso:--- @@ -56,4 +57,7 @@ Această funcționalitate vă permite să creați ferestre noi de vizualizare 3D {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewCreate/ro diff --git a/wiki/translations/ro/Std_ViewDockUndockFullscreen.md b/wiki/translations/ro/Std_ViewDockUndockFullscreen.md index 98cd8ce51f..350cc2133f 100644 --- a/wiki/translations/ro/Std_ViewDockUndockFullscreen.md +++ b/wiki/translations/ro/Std_ViewDockUndockFullscreen.md @@ -1,3 +1,4 @@ +# Std ViewDockUndockFullscreen/ro --- - GuiCommand: Name:Std ViewDockUndockFullscreen MenuLocation:[[Std View Menu View]] → Document window‏‎||Workbenches:All Shortcut: SeeAlso:--- @@ -49,4 +50,7 @@ The **Undocked** menu option undocks the active [3D view](3D_view.md) from the m {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewDockUndockFullscreen/ro diff --git a/wiki/translations/ro/Std_ViewFitAll.md b/wiki/translations/ro/Std_ViewFitAll.md index f1841a91c6..54a5633421 100644 --- a/wiki/translations/ro/Std_ViewFitAll.md +++ b/wiki/translations/ro/Std_ViewFitAll.md @@ -1,3 +1,4 @@ +# Std ViewFitAll/ro --- - GuiCommand: Name:Std ViewFitAll MenuLocation:[|Workbenches:All Shortcut: SeeAlso:[[Std_ViewFitSelection|Fit Selection](Std_View_Menu___View]]_→_Standard_views‏‎_→_FitAll.md)--- @@ -68,4 +69,7 @@ FreeCADGui.SendMsgToActiveView('ViewFit') {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFitAll/ro diff --git a/wiki/translations/ro/Std_ViewFitSelection.md b/wiki/translations/ro/Std_ViewFitSelection.md index 082d334e2d..5a33b76c08 100644 --- a/wiki/translations/ro/Std_ViewFitSelection.md +++ b/wiki/translations/ro/Std_ViewFitSelection.md @@ -1,3 +1,4 @@ +# Std ViewFitSelection/ro --- - GuiCommand: Name:Std ViewFitSelection MenuLocation:[[Std View Menu View]] → Fit Selection|Workbenches:All Shortcut: SeeAlso:--- @@ -56,4 +57,7 @@ FreeCADGui.SendMsgToActiveView('ViewSelection') {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFitSelection/ro diff --git a/wiki/translations/ro/Std_ViewIvIssueCamPos.md b/wiki/translations/ro/Std_ViewIvIssueCamPos.md index 2ec8a64683..b74650a82d 100644 --- a/wiki/translations/ro/Std_ViewIvIssueCamPos.md +++ b/wiki/translations/ro/Std_ViewIvIssueCamPos.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreezeViews](Std_FreezeViews.md) --- +# Std ViewIvIssueCamPos/ro +
@@ -63,4 +65,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCamera() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvIssueCamPos/ro diff --git a/wiki/translations/ro/Std_ViewRotateLeft.md b/wiki/translations/ro/Std_ViewRotateLeft.md index 5c6da02b2d..501bc88b52 100644 --- a/wiki/translations/ro/Std_ViewRotateLeft.md +++ b/wiki/translations/ro/Std_ViewRotateLeft.md @@ -1,3 +1,4 @@ +# Std ViewRotateLeft/ro --- - GuiCommand: Name:Std_RotateLeft Workbenches:All SeeAlso:...--- @@ -53,4 +54,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRotateLeft/ro diff --git a/wiki/translations/ro/Std_ViewRotateRight.md b/wiki/translations/ro/Std_ViewRotateRight.md index b099c36ae5..0c21646b7b 100644 --- a/wiki/translations/ro/Std_ViewRotateRight.md +++ b/wiki/translations/ro/Std_ViewRotateRight.md @@ -1,3 +1,4 @@ +# Std ViewRotateRight/ro --- - GuiCommand: Name:Std_RotateRight Workbenches:All SeeAlso:...--- @@ -53,4 +54,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRotateRight/ro diff --git a/wiki/translations/ro/Std_ViewScreenShot.md b/wiki/translations/ro/Std_ViewScreenShot.md index 50d6a9db44..0d6232fe2d 100644 --- a/wiki/translations/ro/Std_ViewScreenShot.md +++ b/wiki/translations/ro/Std_ViewScreenShot.md @@ -1,3 +1,4 @@ +# Std ViewScreenShot/ro --- - GuiCommand: Name:Std ViewScreenShot MenuLocation:[[Std Tools Menu Tools]] → Save picture...|Workbenches:All SeeAlso:...--- @@ -129,4 +130,7 @@ App.closeDocument(App.ActiveDocument.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewScreenShot/ro diff --git a/wiki/translations/ro/Std_ViewZoomIn.md b/wiki/translations/ro/Std_ViewZoomIn.md index c1315287b5..4ffbe5118c 100644 --- a/wiki/translations/ro/Std_ViewZoomIn.md +++ b/wiki/translations/ro/Std_ViewZoomIn.md @@ -8,6 +8,8 @@ SeeAlso:[Zoom Out](Std_ViewZoomOut.md), [Zoom box](Std_ViewBoxZoom.md) --- +# Std ViewZoomIn/ro +
@@ -66,4 +68,7 @@ FreeCADGui.ActiveDocument.ActiveView.zoomIn() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewZoomIn/ro diff --git a/wiki/translations/ro/Std_ViewZoomOut.md b/wiki/translations/ro/Std_ViewZoomOut.md index ab1443f648..75a5b9bbd4 100644 --- a/wiki/translations/ro/Std_ViewZoomOut.md +++ b/wiki/translations/ro/Std_ViewZoomOut.md @@ -8,6 +8,8 @@ SeeAlso:[Zoom In](Std_ViewZoomIn.md), [Zoom box](Std_ViewBoxZoom.md) --- +# Std ViewZoomOut/ro + @@ -66,4 +68,7 @@ FreeCADGui.ActiveDocument.ActiveView.zoomOut() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewZoomOut/ro diff --git a/wiki/translations/ro/Std_View_Menu.md b/wiki/translations/ro/Std_View_Menu.md index 28e75165a3..6746787b68 100644 --- a/wiki/translations/ro/Std_View_Menu.md +++ b/wiki/translations/ro/Std_View_Menu.md @@ -1,10 +1,4 @@ -# Std View Menu/ro - - - - - -Std Base icon +# Std Base icon Std View Menu/ro {{TOCright}} @@ -324,3 +318,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std View Menu/ro diff --git a/wiki/translations/ro/Std_WhatsThis.md b/wiki/translations/ro/Std_WhatsThis.md index b98f4e87d7..adb0ecced3 100644 --- a/wiki/translations/ro/Std_WhatsThis.md +++ b/wiki/translations/ro/Std_WhatsThis.md @@ -7,6 +7,8 @@ SeeAlso:[Std Online Help](Std_OnlineHelp.md) --- +# Std WhatsThis/ro + @@ -53,4 +55,7 @@ Read this post to understand how the commands must be named in the code to match {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std WhatsThis/ro diff --git a/wiki/translations/ro/Std_Windows_Menu.md b/wiki/translations/ro/Std_Windows_Menu.md index 0336bb5d60..1cb8049a6c 100644 --- a/wiki/translations/ro/Std_Windows_Menu.md +++ b/wiki/translations/ro/Std_Windows_Menu.md @@ -1,10 +1,4 @@ -# Std Windows Menu/ro - - - - - -Std Base icon +# Std Base icon Std Windows Menu/ro {{TOCright}} @@ -94,3 +88,6 @@ Ferestre\... }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Windows Menu/ro diff --git a/wiki/translations/ro/Std_Workbench.md b/wiki/translations/ro/Std_Workbench.md index 952c3b9b2d..0a84b30de4 100644 --- a/wiki/translations/ro/Std_Workbench.md +++ b/wiki/translations/ro/Std_Workbench.md @@ -1,3 +1,4 @@ +# Std Workbench/ro --- - GuiCommand: Name:Std Workbench MenuLocation:[[Std View Menu View]] → Workbench|Workbenches:All Shortcut:... SeeAlso:...--- @@ -53,4 +54,7 @@ FreeCADGui.activateWorkbench("PartDesignWorkbench") {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Std Workbench/ro diff --git a/wiki/translations/ro/Surface_CurveOnMesh.md b/wiki/translations/ro/Surface_CurveOnMesh.md index 2bfe1854ea..0fbb732889 100644 --- a/wiki/translations/ro/Surface_CurveOnMesh.md +++ b/wiki/translations/ro/Surface_CurveOnMesh.md @@ -1,3 +1,4 @@ +# Surface CurveOnMesh/ro --- - GuiCommand: Name:Surface CurveOnMesh MenuLocation:Surface → CurveOnMesh Workbenches:[Surface](Surface_Workbench.md)|--- @@ -102,4 +103,7 @@ In addition to the properties described in [Part Feature](Part_Feature.md), the {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface CurveOnMesh/ro diff --git a/wiki/translations/ro/Surface_Filling.md b/wiki/translations/ro/Surface_Filling.md index 1333fc9359..d9ec43063a 100644 --- a/wiki/translations/ro/Surface_Filling.md +++ b/wiki/translations/ro/Surface_Filling.md @@ -1,3 +1,4 @@ +# Surface Filling/ro --- - GuiCommand: Icon:Filling.svg Name:Surface Filling MenuLocation:Surface → Filling... Workbenches:[Surface](Surface_Workbench.md)|--- @@ -173,4 +174,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Filling/ro diff --git a/wiki/translations/ro/Surface_GeomFillSurface.md b/wiki/translations/ro/Surface_GeomFillSurface.md index 77c2f11bf8..e5acd0a09b 100644 --- a/wiki/translations/ro/Surface_GeomFillSurface.md +++ b/wiki/translations/ro/Surface_GeomFillSurface.md @@ -1,3 +1,4 @@ +# Surface GeomFillSurface/ro --- - GuiCommand: Icon:BSplineSurf.svg Name:Surface Fill boundary curves MenuLocation:Surface → Fill boundary curves Workbenches:[Surface](Surface_Workbench.md)|--- @@ -172,4 +173,7 @@ doc.recompute() {{Surface Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface GeomFillSurface/ro diff --git a/wiki/translations/ro/Surface_Module.md b/wiki/translations/ro/Surface_Module.md index 730e6a0234..e80790c661 100644 --- a/wiki/translations/ro/Surface_Module.md +++ b/wiki/translations/ro/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/ro 1. REDIRECT [Surface\_Workbench/ro](Surface_Workbench/ro.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/ro diff --git a/wiki/translations/ro/Surface_Workbench.md b/wiki/translations/ro/Surface_Workbench.md index ad76c847e2..3bcf4f0561 100644 --- a/wiki/translations/ro/Surface_Workbench.md +++ b/wiki/translations/ro/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/ro - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/ro {{TOCright}} @@ -75,3 +69,6 @@ creează o suprafață de la două, trei sau patru margini de graniță. Sunt di }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Surface Workbench/ro diff --git a/wiki/translations/ro/Tasks_Placement.md b/wiki/translations/ro/Tasks_Placement.md index 412449f8e6..fb6cd1305e 100644 --- a/wiki/translations/ro/Tasks_Placement.md +++ b/wiki/translations/ro/Tasks_Placement.md @@ -1,6 +1,4 @@ # Tasks Placement/ro - - ## Descriere Comanda pentru a modifica **Placement**. Aceste opțiuni afectează numai poziția și orientarea obiectului în spațiu, ele nu afectează celelalte atribute ale formei. Plasarea este stocată intern sub formă de poziție și rotație (axa de rotație și unghiul transformat în quaternion.[1](https://en.wikipedia.org/wiki/Quaternions_and_spatial_rotation)). Deși există mai multe metode de specificare a unei rotații, de exemplu cu un centru de rotație, aceasta este utilizată doar pentru a calcula rotația și nu este stocată pentru operații ulterioare. Similar, dacă se specifică o axă de rotație de (1,1,1), aceasta poate fi normalizată atunci când este stocată în quaternion și apare ca (0.58, 0.58, 0.58) atunci când se navighează peste obiect mai târziu. @@ -148,3 +146,6 @@ Altă explicație este pe [Placement](Placement.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Command_Reference](Category:Command_Reference.md) > Tasks Placement/ro diff --git a/wiki/translations/ro/TechDrawGui_API.md b/wiki/translations/ro/TechDrawGui_API.md index 579138e5eb..14ce76db79 100644 --- a/wiki/translations/ro/TechDrawGui_API.md +++ b/wiki/translations/ro/TechDrawGui_API.md @@ -1,5 +1,5 @@ # TechDrawGui API/ro - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** These functions are part of the [TechDraw Workbench](TechDraw_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `TechDrawGui` module has been imported. +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** These functions are part of the [TechDraw Workbench](TechDraw_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `TechDrawGui` module has been imported. See the [TechDraw API](TechDraw_API.md) for more functions. @@ -44,3 +44,6 @@ Options: }} [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > TechDrawGui API/ro diff --git a/wiki/translations/ro/TechDraw_API.md b/wiki/translations/ro/TechDraw_API.md index 5d20040509..667d9c14cc 100644 --- a/wiki/translations/ro/TechDraw_API.md +++ b/wiki/translations/ro/TechDraw_API.md @@ -1,7 +1,4 @@ # TechDraw API/ro - - -
Aceste funcții fac parte din [TechDraw Workbench](TechDraw_Workbench.md) și pot fi utilizate în script-uri și [macro](macro.md) sau din interpretorul [Python](Python.md), odată ce modulul TechDraw \ a fost importat. Exemple bune de programare-script de bază TechDraw pot fi găsite în [unit test scripts](https://github.com/FreeCAD/FreeCAD/tree/master/src/Mod/TechDraw/TDTest). @@ -367,3 +364,6 @@ dvp.requestPaint() Redraw the graphic for this View. }} [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw API/ro diff --git a/wiki/translations/ro/TechDraw_AngleDimension.md b/wiki/translations/ro/TechDraw_AngleDimension.md index 2ae98617bf..92540f5b1a 100644 --- a/wiki/translations/ro/TechDraw_AngleDimension.md +++ b/wiki/translations/ro/TechDraw_AngleDimension.md @@ -1,3 +1,4 @@ +# TechDraw AngleDimension/ro --- - GuiCommand: Name:TechDraw Dimension Angle Workbenches:[[TechDraw_Workbench TechDraw]]|MenuLocation:TechDraw → Dimension Angle Shortcut: SeeAlso:--- @@ -65,4 +66,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw AngleDimension/ro diff --git a/wiki/translations/ro/TechDraw_Clip.md b/wiki/translations/ro/TechDraw_Clip.md index 5c112551a3..898cb19049 100644 --- a/wiki/translations/ro/TechDraw_Clip.md +++ b/wiki/translations/ro/TechDraw_Clip.md @@ -1,2 +1,5 @@ # TechDraw Clip/ro 1. REDIRECT [TechDraw\_ClipGroup](TechDraw_ClipGroup.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Clip/ro diff --git a/wiki/translations/ro/TechDraw_ClipMinus.md b/wiki/translations/ro/TechDraw_ClipMinus.md index 5e5dba5d69..e5325b717a 100644 --- a/wiki/translations/ro/TechDraw_ClipMinus.md +++ b/wiki/translations/ro/TechDraw_ClipMinus.md @@ -1,2 +1,5 @@ # TechDraw ClipMinus/ro 1. REDIRECT [TechDraw\_ClipGroupRemove](TechDraw_ClipGroupRemove.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipMinus/ro diff --git a/wiki/translations/ro/TechDraw_ClipPlus.md b/wiki/translations/ro/TechDraw_ClipPlus.md index 71bb0f6c8c..ac92ce55a6 100644 --- a/wiki/translations/ro/TechDraw_ClipPlus.md +++ b/wiki/translations/ro/TechDraw_ClipPlus.md @@ -1,2 +1,5 @@ # TechDraw ClipPlus/ro 1. REDIRECT [TechDraw\_ClipGroupAdd](TechDraw_ClipGroupAdd.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipPlus/ro diff --git a/wiki/translations/ro/TechDraw_DiameterDimension.md b/wiki/translations/ro/TechDraw_DiameterDimension.md index f154dda584..c6dfc50ec2 100644 --- a/wiki/translations/ro/TechDraw_DiameterDimension.md +++ b/wiki/translations/ro/TechDraw_DiameterDimension.md @@ -1,3 +1,4 @@ +# TechDraw DiameterDimension/ro --- - GuiCommand: Name:TechDraw Dimension Diameter Workbenches:[[TechDraw_Workbench TechDraw]]|MenuLocation:TechDraw → Dimension Diameter Shortcut: SeeAlso:--- @@ -65,4 +66,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DiameterDimension/ro diff --git a/wiki/translations/ro/TechDraw_Dimension_Angle.md b/wiki/translations/ro/TechDraw_Dimension_Angle.md index 0ee483ffe3..8a3625e493 100644 --- a/wiki/translations/ro/TechDraw_Dimension_Angle.md +++ b/wiki/translations/ro/TechDraw_Dimension_Angle.md @@ -1,2 +1,5 @@ # TechDraw Dimension Angle/ro 1. REDIRECT [TechDraw\_AngleDimension/ro](TechDraw_AngleDimension/ro.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Angle/ro diff --git a/wiki/translations/ro/TechDraw_Dimension_Diameter.md b/wiki/translations/ro/TechDraw_Dimension_Diameter.md index a3c8139569..a5d66c9ec5 100644 --- a/wiki/translations/ro/TechDraw_Dimension_Diameter.md +++ b/wiki/translations/ro/TechDraw_Dimension_Diameter.md @@ -1,2 +1,5 @@ # TechDraw Dimension Diameter/ro 1. REDIRECT [TechDraw\_DiameterDimension/ro](TechDraw_DiameterDimension/ro.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Diameter/ro diff --git a/wiki/translations/ro/TechDraw_Dimension_Horizontal.md b/wiki/translations/ro/TechDraw_Dimension_Horizontal.md index 74a8bc46f6..bcad3c4854 100644 --- a/wiki/translations/ro/TechDraw_Dimension_Horizontal.md +++ b/wiki/translations/ro/TechDraw_Dimension_Horizontal.md @@ -1,2 +1,5 @@ # TechDraw Dimension Horizontal/ro 1. REDIRECT [TechDraw\_HorizontalDimension/ro](TechDraw_HorizontalDimension/ro.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Horizontal/ro diff --git a/wiki/translations/ro/TechDraw_Dimension_Length.md b/wiki/translations/ro/TechDraw_Dimension_Length.md index 23edad72c4..04959bf30c 100644 --- a/wiki/translations/ro/TechDraw_Dimension_Length.md +++ b/wiki/translations/ro/TechDraw_Dimension_Length.md @@ -1,2 +1,5 @@ # TechDraw Dimension Length/ro 1. REDIRECT [TechDraw\_LengthDimension/ro](TechDraw_LengthDimension/ro.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Length/ro diff --git a/wiki/translations/ro/TechDraw_Dimension_Link.md b/wiki/translations/ro/TechDraw_Dimension_Link.md index 1ec1706b80..94550ec8b2 100644 --- a/wiki/translations/ro/TechDraw_Dimension_Link.md +++ b/wiki/translations/ro/TechDraw_Dimension_Link.md @@ -1,2 +1,5 @@ # TechDraw Dimension Link/ro 1. REDIRECT [TechDraw\_LinkDimension/ro](TechDraw_LinkDimension/ro.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Link/ro diff --git a/wiki/translations/ro/TechDraw_Dimension_Radius.md b/wiki/translations/ro/TechDraw_Dimension_Radius.md index e12e539b89..11026c01ab 100644 --- a/wiki/translations/ro/TechDraw_Dimension_Radius.md +++ b/wiki/translations/ro/TechDraw_Dimension_Radius.md @@ -1,2 +1,5 @@ # TechDraw Dimension Radius/ro 1. REDIRECT [TechDraw\_RadiusDimension/ro](TechDraw_RadiusDimension/ro.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Radius/ro diff --git a/wiki/translations/ro/TechDraw_Dimension_Vertical.md b/wiki/translations/ro/TechDraw_Dimension_Vertical.md index 5cb92015f6..567c58ee98 100644 --- a/wiki/translations/ro/TechDraw_Dimension_Vertical.md +++ b/wiki/translations/ro/TechDraw_Dimension_Vertical.md @@ -1,2 +1,5 @@ # TechDraw Dimension Vertical/ro 1. REDIRECT [TechDraw\_VerticalDimension/ro](TechDraw_VerticalDimension/ro.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Vertical/ro diff --git a/wiki/translations/ro/TechDraw_GeomHatch.md b/wiki/translations/ro/TechDraw_GeomHatch.md index 8633f8105d..fa7c1920f1 100644 --- a/wiki/translations/ro/TechDraw_GeomHatch.md +++ b/wiki/translations/ro/TechDraw_GeomHatch.md @@ -1,2 +1,5 @@ # TechDraw GeomHatch/ro 1. REDIRECT [TechDraw\_GeometricHatch](TechDraw_GeometricHatch.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw GeomHatch/ro diff --git a/wiki/translations/ro/TechDraw_Hatch.md b/wiki/translations/ro/TechDraw_Hatch.md index 9c2decd0c3..b5bbbb8bf2 100644 --- a/wiki/translations/ro/TechDraw_Hatch.md +++ b/wiki/translations/ro/TechDraw_Hatch.md @@ -1,3 +1,4 @@ +# TechDraw Hatch/ro --- - GuiCommand: Name:TechDraw Hatch Workbenches:[MenuLocation:TechDraw → Hatch Shortcut: SeeAlso:[[TechDraw_Hatching|TechDraw Hatching](TechDraw_Workbench___TechDraw]].md)--- @@ -116,4 +117,7 @@ rc = page.addView(hatch) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Hatch/ro diff --git a/wiki/translations/ro/TechDraw_HorizontalDimension.md b/wiki/translations/ro/TechDraw_HorizontalDimension.md index f548b3ca3c..a8454c8e12 100644 --- a/wiki/translations/ro/TechDraw_HorizontalDimension.md +++ b/wiki/translations/ro/TechDraw_HorizontalDimension.md @@ -1,3 +1,4 @@ +# TechDraw HorizontalDimension/ro --- - GuiCommand: Name:TechDraw Dimension Horizontal Workbenches:[[TechDraw_Workbench TechDraw]]|MenuLocation:TechDraw → Dimension Horizontal Shortcut: SeeAlso:--- @@ -65,4 +66,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HorizontalDimension/ro diff --git a/wiki/translations/ro/TechDraw_Image.md b/wiki/translations/ro/TechDraw_Image.md index 1282508130..b3bb6a19f5 100644 --- a/wiki/translations/ro/TechDraw_Image.md +++ b/wiki/translations/ro/TechDraw_Image.md @@ -1,3 +1,4 @@ +# TechDraw Image/ro --- - GuiCommand: Name:TechDraw Image Workbenches:[[TechDraw_Workbench TechDraw]]|MenuLocation:TechDraw → Image Shortcut: SeeAlso:--- @@ -78,4 +79,7 @@ dvi.Width = 200 {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Image/ro diff --git a/wiki/translations/ro/TechDraw_LengthDimension.md b/wiki/translations/ro/TechDraw_LengthDimension.md index abcf3cfa11..09bbbaa2ef 100644 --- a/wiki/translations/ro/TechDraw_LengthDimension.md +++ b/wiki/translations/ro/TechDraw_LengthDimension.md @@ -1,3 +1,4 @@ +# TechDraw LengthDimension/ro --- - GuiCommand: Name:TechDraw Dimension Length Workbenches:[[TechDraw_Workbench TechDraw]]|MenuLocation:TechDraw → Dimension Length Shortcut: SeeAlso:--- @@ -286,4 +287,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LengthDimension/ro diff --git a/wiki/translations/ro/TechDraw_LinkDimension.md b/wiki/translations/ro/TechDraw_LinkDimension.md index 78796b0138..de12f83f41 100644 --- a/wiki/translations/ro/TechDraw_LinkDimension.md +++ b/wiki/translations/ro/TechDraw_LinkDimension.md @@ -6,6 +6,8 @@ SeeAlso:[TechDraw NewView](TechDraw_NewView.md), [TechDraw NewProjGroup](TechDraw_NewProjGroup.md) --- +# TechDraw LinkDimension/ro +
@@ -90,4 +92,7 @@ to be defined {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LinkDimension/ro diff --git a/wiki/translations/ro/TechDraw_Module.md b/wiki/translations/ro/TechDraw_Module.md index cd8208bc24..1a694fd92c 100644 --- a/wiki/translations/ro/TechDraw_Module.md +++ b/wiki/translations/ro/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/ro 1. REDIRECT [TechDraw\_Workbench/ro](TechDraw_Workbench/ro.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/ro diff --git a/wiki/translations/ro/TechDraw_NewAnnotation.md b/wiki/translations/ro/TechDraw_NewAnnotation.md index 8cd45f26a8..3142ffc6b6 100644 --- a/wiki/translations/ro/TechDraw_NewAnnotation.md +++ b/wiki/translations/ro/TechDraw_NewAnnotation.md @@ -1,2 +1,5 @@ # TechDraw NewAnnotation/ro 1. REDIRECT [TechDraw\_Annotation](TechDraw_Annotation.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewAnnotation/ro diff --git a/wiki/translations/ro/TechDraw_NewArch.md b/wiki/translations/ro/TechDraw_NewArch.md index 04426cf678..d0eb527a02 100644 --- a/wiki/translations/ro/TechDraw_NewArch.md +++ b/wiki/translations/ro/TechDraw_NewArch.md @@ -1,2 +1,5 @@ # TechDraw NewArch/ro 1. REDIRECT [TechDraw\_ArchView](TechDraw_ArchView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewArch/ro diff --git a/wiki/translations/ro/TechDraw_NewDetail.md b/wiki/translations/ro/TechDraw_NewDetail.md index 029bb0d45c..5ec52e85c3 100644 --- a/wiki/translations/ro/TechDraw_NewDetail.md +++ b/wiki/translations/ro/TechDraw_NewDetail.md @@ -1,2 +1,5 @@ # TechDraw NewDetail/ro 1. REDIRECT [TechDraw\_DetailView](TechDraw_DetailView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewDetail/ro diff --git a/wiki/translations/ro/TechDraw_NewDraft.md b/wiki/translations/ro/TechDraw_NewDraft.md index 01be7d95e8..7fad91b853 100644 --- a/wiki/translations/ro/TechDraw_NewDraft.md +++ b/wiki/translations/ro/TechDraw_NewDraft.md @@ -1,2 +1,5 @@ # TechDraw NewDraft/ro 1. REDIRECT [TechDraw\_DraftView](TechDraw_DraftView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewDraft/ro diff --git a/wiki/translations/ro/TechDraw_NewMulti.md b/wiki/translations/ro/TechDraw_NewMulti.md index ab120d8c63..0e6834cc66 100644 --- a/wiki/translations/ro/TechDraw_NewMulti.md +++ b/wiki/translations/ro/TechDraw_NewMulti.md @@ -1,2 +1,5 @@ # TechDraw NewMulti/ro 1. REDIRECT [TechDraw\_ProjectionGroup](TechDraw_ProjectionGroup.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewMulti/ro diff --git a/wiki/translations/ro/TechDraw_NewProjGroup.md b/wiki/translations/ro/TechDraw_NewProjGroup.md index becf85f578..98d6a6ccd8 100644 --- a/wiki/translations/ro/TechDraw_NewProjGroup.md +++ b/wiki/translations/ro/TechDraw_NewProjGroup.md @@ -1,2 +1,5 @@ # TechDraw NewProjGroup/ro 1. REDIRECT [TechDraw\_ProjectionGroup](TechDraw_ProjectionGroup.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewProjGroup/ro diff --git a/wiki/translations/ro/TechDraw_NewSection.md b/wiki/translations/ro/TechDraw_NewSection.md index 059280a59c..0a6d73365d 100644 --- a/wiki/translations/ro/TechDraw_NewSection.md +++ b/wiki/translations/ro/TechDraw_NewSection.md @@ -1,2 +1,5 @@ # TechDraw NewSection/ro 1. REDIRECT [TechDraw\_SectionView](TechDraw_SectionView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewSection/ro diff --git a/wiki/translations/ro/TechDraw_New_Default.md b/wiki/translations/ro/TechDraw_New_Default.md index 59c05e7bb7..0e8ccd0aa7 100644 --- a/wiki/translations/ro/TechDraw_New_Default.md +++ b/wiki/translations/ro/TechDraw_New_Default.md @@ -1,2 +1,5 @@ # TechDraw New Default/ro 1. REDIRECT [TechDraw\_PageDefault](TechDraw_PageDefault.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw New Default/ro diff --git a/wiki/translations/ro/TechDraw_New_Pick.md b/wiki/translations/ro/TechDraw_New_Pick.md index fb32f733c1..5ccdd43c19 100644 --- a/wiki/translations/ro/TechDraw_New_Pick.md +++ b/wiki/translations/ro/TechDraw_New_Pick.md @@ -1,2 +1,5 @@ # TechDraw New Pick/ro 1. REDIRECT [TechDraw\_PageTemplate](TechDraw_PageTemplate.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw New Pick/ro diff --git a/wiki/translations/ro/TechDraw_RadiusDimension.md b/wiki/translations/ro/TechDraw_RadiusDimension.md index c02bd700e1..e89e929637 100644 --- a/wiki/translations/ro/TechDraw_RadiusDimension.md +++ b/wiki/translations/ro/TechDraw_RadiusDimension.md @@ -1,3 +1,4 @@ +# TechDraw RadiusDimension/ro --- - GuiCommand: Name:TechDraw Dimension Radius Workbenches:[[TechDraw_Workbench TechDraw]]|MenuLocation:TechDraw → Dimension Radius Shortcut: SeeAlso:--- @@ -65,4 +66,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RadiusDimension/ro diff --git a/wiki/translations/ro/TechDraw_Redraw.md b/wiki/translations/ro/TechDraw_Redraw.md index b36da39f3a..e3f212474d 100644 --- a/wiki/translations/ro/TechDraw_Redraw.md +++ b/wiki/translations/ro/TechDraw_Redraw.md @@ -1,2 +1,5 @@ # TechDraw Redraw/ro 1. REDIRECT [TechDraw\_RedrawPage](TechDraw_RedrawPage.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Redraw/ro diff --git a/wiki/translations/ro/TechDraw_SaveDXF.md b/wiki/translations/ro/TechDraw_SaveDXF.md index 9fa69a8a8b..ed05a7745b 100644 --- a/wiki/translations/ro/TechDraw_SaveDXF.md +++ b/wiki/translations/ro/TechDraw_SaveDXF.md @@ -1,2 +1,5 @@ # TechDraw SaveDXF/ro 1. REDIRECT [TechDraw\_ExportPageDXF](TechDraw_ExportPageDXF.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SaveDXF/ro diff --git a/wiki/translations/ro/TechDraw_SaveSVG.md b/wiki/translations/ro/TechDraw_SaveSVG.md index 744a252d27..4867c62fd6 100644 --- a/wiki/translations/ro/TechDraw_SaveSVG.md +++ b/wiki/translations/ro/TechDraw_SaveSVG.md @@ -1,2 +1,5 @@ # TechDraw SaveSVG/ro 1. REDIRECT [TechDraw\_ExportPageSVG](TechDraw_ExportPageSVG.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SaveSVG/ro diff --git a/wiki/translations/ro/TechDraw_Spreadsheet.md b/wiki/translations/ro/TechDraw_Spreadsheet.md index 83b9e48e3e..0437334c40 100644 --- a/wiki/translations/ro/TechDraw_Spreadsheet.md +++ b/wiki/translations/ro/TechDraw_Spreadsheet.md @@ -1,2 +1,5 @@ # TechDraw Spreadsheet/ro 1. REDIRECT [TechDraw\_SpreadsheetView](TechDraw_SpreadsheetView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Spreadsheet/ro diff --git a/wiki/translations/ro/TechDraw_Symbol.md b/wiki/translations/ro/TechDraw_Symbol.md index fa52a772f4..ea4c539dd7 100644 --- a/wiki/translations/ro/TechDraw_Symbol.md +++ b/wiki/translations/ro/TechDraw_Symbol.md @@ -1,3 +1,4 @@ +# TechDraw Symbol/ro --- - GuiCommand: Name:TechDraw Symbol Workbenches:[[TechDraw Workbench TechDraw]]|MenuLocation:TechDraw → Symbol Shortcut: SeeAlso:--- @@ -76,4 +77,7 @@ rc = page.addView(sym) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Symbol/ro diff --git a/wiki/translations/ro/TechDraw_Toggle.md b/wiki/translations/ro/TechDraw_Toggle.md index 6b535f0fbc..1e23a6a85e 100644 --- a/wiki/translations/ro/TechDraw_Toggle.md +++ b/wiki/translations/ro/TechDraw_Toggle.md @@ -1,2 +1,5 @@ # TechDraw Toggle/ro 1. REDIRECT [TechDraw\_ToggleFrame](TechDraw_ToggleFrame.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Toggle/ro diff --git a/wiki/translations/ro/TechDraw_VerticalDimension.md b/wiki/translations/ro/TechDraw_VerticalDimension.md index b6e6623322..8de179c31e 100644 --- a/wiki/translations/ro/TechDraw_VerticalDimension.md +++ b/wiki/translations/ro/TechDraw_VerticalDimension.md @@ -8,6 +8,8 @@ SeeAlso:[TechDraw Dimension Length](TechDraw_Dimension_Length.md), [TechDraw Dimension Horizontal](TechDraw_Dimension_Horizontal.md) --- +# TechDraw VerticalDimension/ro + @@ -78,4 +80,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw VerticalDimension/ro diff --git a/wiki/translations/ro/TechDraw_View.md b/wiki/translations/ro/TechDraw_View.md index 0eef75a216..6ca8f6d1f1 100644 --- a/wiki/translations/ro/TechDraw_View.md +++ b/wiki/translations/ro/TechDraw_View.md @@ -6,6 +6,8 @@ SeeAlso:[Insert Projection Group](TechDraw_ProjectionGroup.md), [Insert Section View](TechDraw_SectionView.md) --- +# TechDraw View/ro + @@ -194,4 +196,7 @@ FreeCAD.ActiveDocument.View.Direction = (0.0,0.0,1.0) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw View/ro diff --git a/wiki/translations/ro/TechDraw_Workbench.md b/wiki/translations/ro/TechDraw_Workbench.md index b2866f708c..fa0342f357 100644 --- a/wiki/translations/ro/TechDraw_Workbench.md +++ b/wiki/translations/ro/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/ro - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/ro ## Introducere @@ -294,3 +288,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/ro diff --git a/wiki/translations/ro/Test_Framework_Workbench.md b/wiki/translations/ro/Test_Framework_Workbench.md index 051867a4ae..1c2943beff 100644 --- a/wiki/translations/ro/Test_Framework_Workbench.md +++ b/wiki/translations/ro/Test_Framework_Workbench.md @@ -1,2 +1,5 @@ # Test Framework Workbench/ro 1. REDIRECT [Testing/ro](Testing/ro.md) + +--- +[documentation index](../README.md) > Test Framework Workbench/ro diff --git a/wiki/translations/ro/Testing.md b/wiki/translations/ro/Testing.md index 21e56440ad..fb4e62d34d 100644 --- a/wiki/translations/ro/Testing.md +++ b/wiki/translations/ro/Testing.md @@ -1,10 +1,4 @@ -# Testing/ro - - - - - -Test workbench icon +# Test workbench icon Testing/ro {{TOCright}} @@ -286,3 +280,6 @@ r.run(suite) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Test Framework](Category:Test_Framework.md) [Category:Workbenches](Category:Workbenches.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Testing/ro diff --git a/wiki/translations/ro/Third_Party_Libraries.md b/wiki/translations/ro/Third_Party_Libraries.md index 58c74fc02c..619ed02f9d 100644 --- a/wiki/translations/ro/Third_Party_Libraries.md +++ b/wiki/translations/ro/Third_Party_Libraries.md @@ -1,10 +1,4 @@ # Third Party Libraries/ro - - - - - - {{TOCright}} @@ -539,3 +533,6 @@ It includes among other things: Boost 1.67, Coin3D 4.0.0a, Eigen3, Open CASCADE [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Libraries/ro diff --git a/wiki/translations/ro/Third_Party_Tools.md b/wiki/translations/ro/Third_Party_Tools.md index 2ad817f053..6b4c697667 100644 --- a/wiki/translations/ro/Third_Party_Tools.md +++ b/wiki/translations/ro/Third_Party_Tools.md @@ -1,10 +1,4 @@ # Third Party Tools/ro - - - - - - {{TOCright}} ## Tool Page @@ -169,3 +163,6 @@ TODO [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Tools/ro diff --git a/wiki/translations/ro/Thread_for_Screw_Tutorial.md b/wiki/translations/ro/Thread_for_Screw_Tutorial.md index 17e779c5a8..9f4af7d0d0 100644 --- a/wiki/translations/ro/Thread_for_Screw_Tutorial.md +++ b/wiki/translations/ro/Thread_for_Screw_Tutorial.md @@ -1,7 +1,4 @@ # Thread for Screw Tutorial/ro - - -
@@ -331,4 +328,7 @@ ISO and other threads have relieved, ie flat, inner and outer edges rather than ![761PX](images/Threadform.PNG ) -Această metodă produce solide fiabile, care sunt boolean în mod corespunzător. În timp ce nu produce șuruburi \"parametrice\" în dimensiuni standard, în sensul de a avea un acces simplu la forma prin mărimea șurubului, este o modalitate ușoară de a produce o bibliotecă precisă pentru reutilizare și modele de forme specializate cum ar fi ACME sau șuruburi Archimedian , sunt, de asemenea, necomplicate ca excepții. {{Tutorials navi}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +Această metodă produce solide fiabile, care sunt boolean în mod corespunzător. În timp ce nu produce șuruburi \"parametrice\" în dimensiuni standard, în sensul de a avea un acces simplu la forma prin mărimea șurubului, este o modalitate ușoară de a produce o bibliotecă precisă pentru reutilizare și modele de forme specializate cum ar fi ACME sau șuruburi Archimedian , sunt, de asemenea, necomplicate ca excepții. {{Tutorials navi}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Thread for Screw Tutorial/ro diff --git a/wiki/translations/ro/Toothbrush_Head_Stand.md b/wiki/translations/ro/Toothbrush_Head_Stand.md index 45dfac49db..4136d997ea 100644 --- a/wiki/translations/ro/Toothbrush_Head_Stand.md +++ b/wiki/translations/ro/Toothbrush_Head_Stand.md @@ -1,5 +1,5 @@ # Toothbrush Head Stand/ro - {{TutorialInfo/ro|Topic=Modeling|Level=Beginner|Author=[EmmanuelG](User:EmmanuelG.md)|Time=1 hour|FCVersion=0.16 or greater|Files=[https://www.thingiverse.com/thing:2403310 Thingiverse 2403310]}} +{{TutorialInfo/ro|Topic=Modeling|Level=Beginner|Author=[EmmanuelG](User:EmmanuelG.md)|Time=1 hour|FCVersion=0.16 or greater|Files=[https://www.thingiverse.com/thing:2403310 Thingiverse 2403310]}} ## A daily-life problem @@ -427,4 +427,7 @@ Perfect ! {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Toothbrush Head Stand/ro diff --git a/wiki/translations/ro/TopoShape_API.md b/wiki/translations/ro/TopoShape_API.md index 4aac25af55..2c2513e2ec 100644 --- a/wiki/translations/ro/TopoShape_API.md +++ b/wiki/translations/ro/TopoShape_API.md @@ -1,5 +1,5 @@ # TopoShape API/ro - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** The TopoShape is the mother object of the Part Module. All shape types (wire, face, solid, etc\...) of the Part module are TopoShapes, and share the following attributes and methods. Example: ```python @@ -229,3 +229,6 @@ Some attributes and methods apply only to certain TopoShapes. These items apply [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > TopoShape API/ro diff --git a/wiki/translations/ro/Topological_data_scripting.md b/wiki/translations/ro/Topological_data_scripting.md index c8ac22840d..2a96a0338f 100644 --- a/wiki/translations/ro/Topological_data_scripting.md +++ b/wiki/translations/ro/Topological_data_scripting.md @@ -1,7 +1,4 @@ # Topological data scripting/ro - - - {{TOCright}} @@ -1697,3 +1694,6 @@ Pentru a converti un fișier **.stp** în **.igs** este simplu : }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting/ro diff --git a/wiki/translations/ro/Tracker.md b/wiki/translations/ro/Tracker.md index a5b639fb55..8a38dc3b1d 100644 --- a/wiki/translations/ro/Tracker.md +++ b/wiki/translations/ro/Tracker.md @@ -1,7 +1,4 @@ # Tracker/ro - - -
@@ -230,3 +227,6 @@ For the inquisitive here is the regex MantisBT uses for this operation: [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Tracker/ro diff --git a/wiki/translations/ro/UTF_Project.md b/wiki/translations/ro/UTF_Project.md index eb24137cca..7a68024108 100644 --- a/wiki/translations/ro/UTF_Project.md +++ b/wiki/translations/ro/UTF_Project.md @@ -1,7 +1,4 @@ # UTF Project/ro - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -38,3 +35,6 @@ Pentru a îmbunătăți capabilitățile multi limbaj în FreeCAD prin implement [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > UTF Project/ro diff --git a/wiki/translations/ro/Units.md b/wiki/translations/ro/Units.md index 6a46cdf71f..d28e812c31 100644 --- a/wiki/translations/ro/Units.md +++ b/wiki/translations/ro/Units.md @@ -1,6 +1,4 @@ # Units/ro - - Some reading about units: - [Metrology](http://en.wikipedia.org/wiki/Metrology) @@ -292,4 +290,7 @@ It becomes thus very easy to manage any number of properties with any kind of un {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Units/ro diff --git a/wiki/translations/ro/Units_project.md b/wiki/translations/ro/Units_project.md index f77e84e395..39f392f4d8 100644 --- a/wiki/translations/ro/Units_project.md +++ b/wiki/translations/ro/Units_project.md @@ -1,7 +1,4 @@ # Units project/ro - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -53,3 +50,6 @@ Schimbați proprietățile de ex din PropertyLength în PropertyUntit cu o semn [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Units project/ro diff --git a/wiki/translations/ro/User_hub.md b/wiki/translations/ro/User_hub.md index 38323a471d..533cdafc1b 100644 --- a/wiki/translations/ro/User_hub.md +++ b/wiki/translations/ro/User_hub.md @@ -1,5 +1,4 @@ -# User hub/ro - +# User hub/ro ------------------------------------------------------------------------ @@ -202,3 +201,6 @@ Acesta este ajutorul online oficial al FreeCAD. Rețineți că întregul sistem [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/ro diff --git a/wiki/translations/ro/VRML_Preparation_for_Robot_Simulation.md b/wiki/translations/ro/VRML_Preparation_for_Robot_Simulation.md index d011df8b1e..5479c78327 100644 --- a/wiki/translations/ro/VRML_Preparation_for_Robot_Simulation.md +++ b/wiki/translations/ro/VRML_Preparation_for_Robot_Simulation.md @@ -1,7 +1,4 @@ # VRML Preparation for Robot Simulation/ro - - -
@@ -444,3 +441,6 @@ Iată un patch pentru a obține fișierul vrml potrivit pentru simularea robotul [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > VRML Preparation for Robot Simulation/ro diff --git a/wiki/translations/ro/Vector_API.md b/wiki/translations/ro/Vector_API.md index 94ebd254d1..3f7d74ce9c 100644 --- a/wiki/translations/ro/Vector_API.md +++ b/wiki/translations/ro/Vector_API.md @@ -1,7 +1,4 @@ # Vector API/ro - - -
Vectorii sunt utilizați peste tot în FreeCAD. @@ -76,3 +73,6 @@ print v3.Length [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Vector API/ro diff --git a/wiki/translations/ro/Video_tutorials.md b/wiki/translations/ro/Video_tutorials.md index 96ce44f471..2fcc8da0e5 100644 --- a/wiki/translations/ro/Video_tutorials.md +++ b/wiki/translations/ro/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials/ro - - -
@@ -156,3 +153,6 @@ For more see [Video tutorials obsolete](Video_tutorials_obsolete.md). }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Video tutorials/ro diff --git a/wiki/translations/ro/ViewObject_API.md b/wiki/translations/ro/ViewObject_API.md index 8b888005bb..4f2c09b7e5 100644 --- a/wiki/translations/ro/ViewObject_API.md +++ b/wiki/translations/ro/ViewObject_API.md @@ -1,5 +1,5 @@ # ViewObject API/ro - **(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [Source documentation](Source_documentation.md).** Când GUI este activată, fiecare obiect din documentul FreeCAD are un ViewObject asociat, care se află în documentul corespondent/omolog FreeCADGui. Un obiect de vizualizare poate fi preluat în două moduri. Exemplu: ```python @@ -84,3 +84,6 @@ print myViewObj.IV [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > ViewObject API/ro diff --git a/wiki/translations/ro/WebTools_BimServer.md b/wiki/translations/ro/WebTools_BimServer.md index 3077418fbc..4bc175e102 100644 --- a/wiki/translations/ro/WebTools_BimServer.md +++ b/wiki/translations/ro/WebTools_BimServer.md @@ -7,6 +7,8 @@ SeeAlso: --- +# WebTools BimServer/ro +
@@ -88,3 +90,5 @@ Pentru a utiliza această comandă, trebuie îndeplinite următoarele condiții:
+--- +[documentation index](../README.md) > WebTools BimServer/ro diff --git a/wiki/translations/ro/WebTools_Git.md b/wiki/translations/ro/WebTools_Git.md index fe6f662c15..c6c5404ee2 100644 --- a/wiki/translations/ro/WebTools_Git.md +++ b/wiki/translations/ro/WebTools_Git.md @@ -1,3 +1,4 @@ +# WebTools Git/ro --- - GuiCommand: Name:Arch Git‏‎ Workbenches:[[Arch_Workbench/ro Arch]]|MenuLocation:Arch → Utilities → Git Shortcut:‏‎ SeeAlso:--- @@ -159,3 +160,5 @@ Pentru a permite utilizarea fcinfo (numai Linux și Mac - TODO: adăugați instr
+--- +[documentation index](../README.md) > WebTools Git/ro diff --git a/wiki/translations/ro/WebTools_Sketchfab.md b/wiki/translations/ro/WebTools_Sketchfab.md index 27c61e2c70..fdc4e7a4b6 100644 --- a/wiki/translations/ro/WebTools_Sketchfab.md +++ b/wiki/translations/ro/WebTools_Sketchfab.md @@ -1,3 +1,4 @@ +# WebTools Sketchfab/ro --- - GuiCommand: Name:WebTools Sketchfab MenuLocation:WebTools → Sketchfab |Workbenches:[[WebTools Workbench WebTools]]|Shortcut: SeeAlso:--- @@ -38,3 +39,6 @@ Acest instrument vă permite să exportați sau să faceți upload de obiecte pe - Once your model is uploaded, Sketchfab offers a pretty advanced interface where you can further configure materials, lighting and environment. - When you press the \"Upload button\", after the upload finished, if everything went well, the button will turn into a \"View your model online\" button, which, when clicked, will take you directly to the model page on Sketchfab. - Unele formate, cum ar fi OBJ, sun interpretat diferit de Sketchfab și FreeCAD. FreeCAD consideră axa Z să fie orientată în sus, în timp ce Sketchfab consideră că aceasta indică persoana care se află în spatele ecranului. To remedy this, after the upload is finished, the exporter will use the Sketchfab API to rotate the model to its correct position. If this operation fails, you will be warned, but your model will still be correctly uploaded. Ysau îl puteți roti în interfața Sketchfab, apăsând pe săgeata dreapta axa \"X\" din tab-ul de orientare a modelului. + +--- +[documentation index](../README.md) > WebTools Sketchfab/ro diff --git a/wiki/translations/ro/Web_Workbench.md b/wiki/translations/ro/Web_Workbench.md index e289ab8425..c0a9e2b984 100644 --- a/wiki/translations/ro/Web_Workbench.md +++ b/wiki/translations/ro/Web_Workbench.md @@ -1,10 +1,4 @@ -# Web Workbench/ro - - - - - -Web workbench icon +# Web workbench icon Web Workbench/ro ## Introduction @@ -25,3 +19,6 @@ Pornind de aici, puteţi parcurge întregul Internet, să vă autentifi [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/ro diff --git a/wiki/translations/ro/Whiffle_Ball_tutorial.md b/wiki/translations/ro/Whiffle_Ball_tutorial.md index 3462f34528..40fee6e2e2 100644 --- a/wiki/translations/ro/Whiffle_Ball_tutorial.md +++ b/wiki/translations/ro/Whiffle_Ball_tutorial.md @@ -1,7 +1,4 @@ # Whiffle Ball tutorial/ro - - -
@@ -402,4 +399,7 @@ Felicitări! Tocmai ați terminat cu succes acest tutorial! {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Whiffle Ball tutorial/ro diff --git a/wiki/translations/ro/Wikihouse_porting_tutorial.md b/wiki/translations/ro/Wikihouse_porting_tutorial.md index d4c3b0d3d6..d8c08a1dbb 100644 --- a/wiki/translations/ro/Wikihouse_porting_tutorial.md +++ b/wiki/translations/ro/Wikihouse_porting_tutorial.md @@ -1,7 +1,4 @@ # Wikihouse porting tutorial/ro - - - {{TutorialInfo/ro |Topic= Wikihouse porting tutorial |Level= Intermediate/Advanced @@ -165,3 +162,6 @@ The last step is simply to select all the sheets, then export them to DXF from m ![](images/Arch_Wikihouse_04.jpg ) Aceste fișiere sunt gata pentru a fi trimise la atelierele care vor efectua așchierea propriu-zisă. Este posibil de generat codul G-Code și de trimis direct la mașina CNC de la FreeCAD de asemenea, dar aceasta este materia pentru un alt tutorial. + +--- +[documentation index](../README.md) > Wikihouse porting tutorial/ro diff --git a/wiki/translations/ro/Workbench_creation.md b/wiki/translations/ro/Workbench_creation.md index ec9de4c6e1..3fee00d17d 100644 --- a/wiki/translations/ro/Workbench_creation.md +++ b/wiki/translations/ro/Workbench_creation.md @@ -1,10 +1,4 @@ # Workbench creation/ro - - - - - - {{TOCright}} ## Introduction @@ -350,3 +344,6 @@ os.remove(qrc_filename) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > Workbench creation/ro diff --git a/wiki/translations/ro/Workbenches.md b/wiki/translations/ro/Workbenches.md index 425b2505f1..436d2e937d 100644 --- a/wiki/translations/ro/Workbenches.md +++ b/wiki/translations/ro/Workbenches.md @@ -1,7 +1,4 @@ # Workbenches/ro - - -
@@ -125,3 +122,6 @@ Noi ateliere sunt în curs de dezvoltare, fiți pe recepție! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/ro diff --git a/wiki/translations/ru/3D_input_devices.md b/wiki/translations/ru/3D_input_devices.md index f74251598a..aa30968e95 100644 --- a/wiki/translations/ru/3D_input_devices.md +++ b/wiki/translations/ru/3D_input_devices.md @@ -1,5 +1,5 @@ # 3D input devices/ru - FreeCAD поддерживает некоторые специальные входные устройства, такие как трёхмерные мыши. Это позволяет пользователям вращать, транслировать и приближать/отдалять объекты в трёх измерениях. +FreeCAD поддерживает некоторые специальные входные устройства, такие как трёхмерные мыши. Это позволяет пользователям вращать, транслировать и приближать/отдалять объекты в трёх измерениях. ## Поддерживаемая аппаратура @@ -7,3 +7,6 @@ - Инструкции по установке: [3Dconnexion input devices/ru](3Dconnexion_input_devices/ru.md) [category:Documentation](category:Documentation.md) + +--- +[documentation index](../README.md) > 3D input devices/ru diff --git a/wiki/translations/ru/3D_view.md b/wiki/translations/ru/3D_view.md index f18babfc9d..a8827ad580 100644 --- a/wiki/translations/ru/3D_view.md +++ b/wiki/translations/ru/3D_view.md @@ -1,6 +1,4 @@ # 3D view/ru - - ## Введение @@ -99,4 +97,7 @@ FreeCAD использует библиотеку Quarter для использ {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > 3D view/ru diff --git a/wiki/translations/ru/3Dconnexion_input_devices.md b/wiki/translations/ru/3Dconnexion_input_devices.md index ed716543ca..246415becb 100644 --- a/wiki/translations/ru/3Dconnexion_input_devices.md +++ b/wiki/translations/ru/3Dconnexion_input_devices.md @@ -1,5 +1,4 @@ -# 3Dconnexion input devices/ru - 3Dconnexion SpaceNavigator {{TOCright}} +# 3Dconnexion SpaceNavigator {{TOCright}} 3Dconnexion input devices/ru
@@ -385,3 +384,6 @@ When you open this tab for the first time, it will be empty and unavailable. To - Forum thread [Space navigator axis confusion](https://forum.freecadweb.org/viewtopic.php?f=8&t=57188) [Category:User Documentation](Category:User_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > 3Dconnexion input devices/ru diff --git a/wiki/translations/ru/A2plus_Workbench.md b/wiki/translations/ru/A2plus_Workbench.md index 3552e31516..d2f33fb57f 100644 --- a/wiki/translations/ru/A2plus_Workbench.md +++ b/wiki/translations/ru/A2plus_Workbench.md @@ -1,5 +1,4 @@ -# A2plus Workbench/ru - Иконка верстака A2plus +# Иконка верстака A2plus A2plus Workbench/ru ## Введение @@ -632,3 +631,6 @@ while AnimationDialog.isVisible(): [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > A2plus Workbench/ru diff --git a/wiki/translations/ru/ANSI_templates.md b/wiki/translations/ru/ANSI_templates.md index 8723697372..4bcbff4640 100644 --- a/wiki/translations/ru/ANSI_templates.md +++ b/wiki/translations/ru/ANSI_templates.md @@ -1,5 +1,5 @@ # ANSI templates/ru - Эта страница перечисляет шаблоны, соответствующие стандартам Америка́нского национа́льного институ́та станда́ртов [ANSI](https://ru.wikipedia.org/wiki/Американский_национальный_институт_стандартов) +Эта страница перечисляет шаблоны, соответствующие стандартам Америка́нского национа́льного институ́та станда́ртов [ANSI](https://ru.wikipedia.org/wiki/Американский_национальный_институт_стандартов) ### ANSI A @@ -62,3 +62,6 @@ Шаблоны созданы [Quick61](User:Quick61.md) и записаны в [FreeCAD-Drawing-Templates](https://github.com/quick61/FreeCAD-Drawing-Templates). [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Drawing](Category:Drawing.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > ANSI templates/ru diff --git a/wiki/translations/ru/About_FreeCAD.md b/wiki/translations/ru/About_FreeCAD.md index a0597d91ac..79f6576425 100644 --- a/wiki/translations/ru/About_FreeCAD.md +++ b/wiki/translations/ru/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/ru - - - +# About FreeCAD/ru **FreeCAD** это универсальная параметрическая 3D [**САПР**](https://ru.wikipedia.org/wiki/%D0%A1%D0%B8%D1%81%D1%82%D0%B5%D0%BC%D0%B0_%D0%B0%D0%B2%D1%82%D0%BE%D0%BC%D0%B0%D1%82%D0%B8%D0%B7%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%BD%D0%BE%D0%B3%D0%BE_%D0%BF%D1%80%D0%BE%D0%B5%D0%BA%D1%82%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D1%8F) , чья разработка полностью базируется на принципах [открытого исходного кода](http://en.wikipedia.org/wiki/Open_source) ([LGPL License](https://www.gnu.org/licenses/lgpl-3.0.en.html)). FreeCAD непосредственно направлен на разработку в сферах [машиностроения](http://en.wikipedia.org/wiki/Mechanical_engineering) и [дизайна объектов](http://en.wikipedia.org/wiki/Product_design), но также подходит для более широкого круга применений в инженерных задачах, таких как архитектура, анализ методом конечных элементов, 3D печать, и других. @@ -28,3 +25,6 @@ FreeCAD поддерживается и проектируется сообще [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/ru diff --git a/wiki/translations/ru/Add_FEM_Constraint_Tutorial.md b/wiki/translations/ru/Add_FEM_Constraint_Tutorial.md index 04ff7b2278..bbc09f3ecd 100644 --- a/wiki/translations/ru/Add_FEM_Constraint_Tutorial.md +++ b/wiki/translations/ru/Add_FEM_Constraint_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Constraint Tutorial/ru 1. REDIRECT [Add\_FEM\_constraint\_tutorial/ru](Add_FEM_constraint_tutorial/ru.md) + +--- +[documentation index](../README.md) > Add FEM Constraint Tutorial/ru diff --git a/wiki/translations/ru/Add_FEM_Equation_Tutorial.md b/wiki/translations/ru/Add_FEM_Equation_Tutorial.md index 9a3415d27a..9d0affe4be 100644 --- a/wiki/translations/ru/Add_FEM_Equation_Tutorial.md +++ b/wiki/translations/ru/Add_FEM_Equation_Tutorial.md @@ -1,2 +1,5 @@ # Add FEM Equation Tutorial/ru 1. REDIRECT [Add\_FEM\_equation\_tutorial/ru](Add_FEM_equation_tutorial/ru.md) + +--- +[documentation index](../README.md) > Add FEM Equation Tutorial/ru diff --git a/wiki/translations/ru/Add_FEM_constraint_tutorial.md b/wiki/translations/ru/Add_FEM_constraint_tutorial.md index 5e0dedb526..996fa2ed1d 100644 --- a/wiki/translations/ru/Add_FEM_constraint_tutorial.md +++ b/wiki/translations/ru/Add_FEM_constraint_tutorial.md @@ -1,7 +1,4 @@ # Add FEM constraint tutorial/ru - - -
@@ -318,3 +315,6 @@ def _handleFlowBndConditions(self): ``` [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM constraint tutorial/ru diff --git a/wiki/translations/ru/Add_FEM_equation_tutorial.md b/wiki/translations/ru/Add_FEM_equation_tutorial.md index 16d50d5127..226fc5e6a6 100644 --- a/wiki/translations/ru/Add_FEM_equation_tutorial.md +++ b/wiki/translations/ru/Add_FEM_equation_tutorial.md @@ -1,7 +1,4 @@ # Add FEM equation tutorial/ru - - - {{TutorialInfo/ru |Topic= Учебник по добавлению уравнений в верстак FEM |Level= @@ -186,3 +183,6 @@ We now finished the function part of the new equation. Next we\'ll connect the n We have just created a new equation class. To access it from the FEM GUI, we need to create a button and link it to the new equation class. Here is a tutorial: [Add button to FEM toolbar tutorial](Add_button_to_FEM_toolbar_tutorial.md). [Category:FEM](Category:FEM.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Add FEM equation tutorial/ru diff --git a/wiki/translations/ru/Addon.md b/wiki/translations/ru/Addon.md index 34e529e598..bf589d599d 100644 --- a/wiki/translations/ru/Addon.md +++ b/wiki/translations/ru/Addon.md @@ -1,6 +1,4 @@ # Addon/ru - - ## Введение В FreeCAD и в этой документации [Дополнения](Addon/ru.md) - это любой компонент, который не является частью базовой установки, но который может быть добавлен в систему определенными методами. @@ -37,3 +35,6 @@ $HOME/.FreeCAD/Mod/ [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Addon/ru diff --git a/wiki/translations/ru/Addon_Manager.md b/wiki/translations/ru/Addon_Manager.md index 4c15c79ada..333911f711 100644 --- a/wiki/translations/ru/Addon_Manager.md +++ b/wiki/translations/ru/Addon_Manager.md @@ -1,2 +1,5 @@ # Addon Manager/ru 1. REDIRECT [Std AddonMgr/ru](Std_AddonMgr/ru.md) + +--- +[documentation index](../README.md) > Addon Manager/ru diff --git a/wiki/translations/ru/Advanced_TechDraw_Tutorial.md b/wiki/translations/ru/Advanced_TechDraw_Tutorial.md index 68cf30145d..e837374054 100644 --- a/wiki/translations/ru/Advanced_TechDraw_Tutorial.md +++ b/wiki/translations/ru/Advanced_TechDraw_Tutorial.md @@ -1,10 +1,4 @@ # Advanced TechDraw Tutorial/ru - - - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -92,4 +86,7 @@ However, the described path could represent the starting point (or the idea) to {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Advanced TechDraw Tutorial/ru diff --git a/wiki/translations/ru/Aeroplane.md b/wiki/translations/ru/Aeroplane.md index 1c8fc3a8d5..051b1a35e1 100644 --- a/wiki/translations/ru/Aeroplane.md +++ b/wiki/translations/ru/Aeroplane.md @@ -1,5 +1,5 @@ # Aeroplane/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic=Part Workbench |Level=Beginner |Time=10 minutes @@ -129,4 +129,7 @@ {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Aeroplane/ru diff --git a/wiki/translations/ru/Analysis_of_reinforced_concrete_with_FEM.md b/wiki/translations/ru/Analysis_of_reinforced_concrete_with_FEM.md index 75460f943e..ba80e989ac 100644 --- a/wiki/translations/ru/Analysis_of_reinforced_concrete_with_FEM.md +++ b/wiki/translations/ru/Analysis_of_reinforced_concrete_with_FEM.md @@ -1,7 +1,4 @@ # Analysis of reinforced concrete with FEM/ru - - -
@@ -192,4 +189,7 @@ The tensile stress pattern suggests an alternative design concept using pre-stre {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Analysis of reinforced concrete with FEM/ru diff --git a/wiki/translations/ru/Animation_Workbench.md b/wiki/translations/ru/Animation_Workbench.md index b7e27de6aa..8e870e1850 100644 --- a/wiki/translations/ru/Animation_Workbench.md +++ b/wiki/translations/ru/Animation_Workbench.md @@ -1,5 +1,4 @@ # Animation Workbench/ru - {{Template:UnfinishedDocu }} @@ -101,3 +100,6 @@ Other - [External workbenches](External_workbenches.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Animation Workbench/ru diff --git a/wiki/translations/ru/AppImage.md b/wiki/translations/ru/AppImage.md index 375603045d..201537b45b 100644 --- a/wiki/translations/ru/AppImage.md +++ b/wiki/translations/ru/AppImage.md @@ -1,5 +1,5 @@ # AppImage/ru - **По состоянию на 7 июля 2019 года сообщество FreeCAD отмечает, что загрузка AppImages из Github, похоже, истекает по таймауту до завершения. Мы не уверены, почему это происходит. Если это произойдет с вами, попробуйте загрузить еще раз. Это займет несколько попыток. Рекомендуется использовать [функцию автоматического обновления](#Автообновление/ru.md) AppImage, которая восстановит загрузку с того места, где произошла ошибка.** +**По состоянию на 7 июля 2019 года сообщество FreeCAD отмечает, что загрузка AppImages из Github, похоже, истекает по таймауту до завершения. Мы не уверены, почему это происходит. Если это произойдет с вами, попробуйте загрузить еще раз. Это займет несколько попыток. Рекомендуется использовать [функцию автоматического обновления](#Автообновление/ru.md) AppImage, которая восстановит загрузку с того места, где произошла ошибка.** {{TOCright}} @@ -182,3 +182,6 @@ The repository for these scripts is at [realthunder/FreeCADMakeImage](https://gi [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > AppImage/ru diff --git a/wiki/translations/ru/App_DocumentObject.md b/wiki/translations/ru/App_DocumentObject.md index 2d213af7f0..6de6aca657 100644 --- a/wiki/translations/ru/App_DocumentObject.md +++ b/wiki/translations/ru/App_DocumentObject.md @@ -1,5 +1,5 @@ # App DocumentObject/ru - {{TOCright}} +{{TOCright}} ## Введение @@ -69,4 +69,7 @@ obj.Label = "Custom label" {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App DocumentObject/ru diff --git a/wiki/translations/ru/App_FeaturePython.md b/wiki/translations/ru/App_FeaturePython.md index 1ee84ecccb..9b33cb826d 100644 --- a/wiki/translations/ru/App_FeaturePython.md +++ b/wiki/translations/ru/App_FeaturePython.md @@ -1,6 +1,4 @@ # App FeaturePython/ru - - ## Введение Объект [App FeaturePython](App_FeaturePython/ru.md), или формально `Приложение::FeaturePython`, является простым экземпляром [App DocumentObject](App_DocumentObject/ru.md) в [Python](Python/ru.md). @@ -95,4 +93,7 @@ If the desired object should have a placement, a shape, an attachment, or other {{Document objects navi -}} +}} + +--- +[documentation index](../README.md) > App FeaturePython/ru diff --git a/wiki/translations/ru/App_Link.md b/wiki/translations/ru/App_Link.md index e813a9f340..9e5e8c2a0a 100644 --- a/wiki/translations/ru/App_Link.md +++ b/wiki/translations/ru/App_Link.md @@ -1,5 +1,5 @@ # App Link/ru - {{TOCright}} +{{TOCright}} ## Введение @@ -48,4 +48,7 @@ An [App Link](App_Link.md) (`App::Link` class) is derived from the basic [App Do {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Link/ru diff --git a/wiki/translations/ru/App_Part.md b/wiki/translations/ru/App_Part.md index 57258deb92..3c5a1dc2be 100644 --- a/wiki/translations/ru/App_Part.md +++ b/wiki/translations/ru/App_Part.md @@ -1,6 +1,4 @@ # App Part/ru - - ## Вступление @@ -31,4 +29,7 @@ See the full list of properties in the [Std Part](Std_Part.md) page. {{Std Base navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > App Part/ru diff --git a/wiki/translations/ru/Arch_3DS.md b/wiki/translations/ru/Arch_3DS.md index 522d01dea3..e2df65fb2d 100644 --- a/wiki/translations/ru/Arch_3DS.md +++ b/wiki/translations/ru/Arch_3DS.md @@ -1,7 +1,4 @@ # Arch 3DS/ru - - -
@@ -31,3 +28,6 @@ The Arch Workbench supports importing [3DS](https://en.wikipedia.org/wiki/.3ds) [Category:User Documentation](Category:User_Documentation.md) [Category:Arch](Category:Arch.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3DS/ru diff --git a/wiki/translations/ru/Arch_3Views.md b/wiki/translations/ru/Arch_3Views.md index d071e98048..c50c9d8e0d 100644 --- a/wiki/translations/ru/Arch_3Views.md +++ b/wiki/translations/ru/Arch_3Views.md @@ -8,6 +8,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh/ru.md), [Arch MeshToShape](Arch_MeshToShape/ru.md) --- +# Arch 3Views/ru +
@@ -85,8 +87,5 @@ mesh_obj.ViewObject.Visibility = False
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3Views/ru diff --git a/wiki/translations/ru/Arch_API.md b/wiki/translations/ru/Arch_API.md index bd7c620f1a..988514452d 100644 --- a/wiki/translations/ru/Arch_API.md +++ b/wiki/translations/ru/Arch_API.md @@ -1,5 +1,5 @@ # Arch API/ru - **(November 2018) The Arch API is listed in the [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) The Arch API is listed in the [https://www.freecadweb.org/api autogenerated API documentation].** The functions of the API are part of the [Arch Workbench](Arch_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `Arch` module has been imported. The [Reinforcement Addon](Reinforcement_Addon.md) has its own [Reinforcement API](Reinforcement_API.md). @@ -18,3 +18,6 @@ Arch.makeWall(baseline, length=None, width=200, height=2000) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch API/ru diff --git a/wiki/translations/ru/Arch_Add.md b/wiki/translations/ru/Arch_Add.md index 14f37e6583..9ba8dd87b0 100644 --- a/wiki/translations/ru/Arch_Add.md +++ b/wiki/translations/ru/Arch_Add.md @@ -7,6 +7,8 @@ SeeAlso:[Удалить компонент](Arch_Remove/ru.md) --- +# Arch Add/ru +
@@ -95,11 +97,5 @@ Arch.addComponents(Wall2, Wall) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Add/ru diff --git a/wiki/translations/ru/Arch_Axis.md b/wiki/translations/ru/Arch_Axis.md index 8d08d36ac3..be20dc6ec2 100644 --- a/wiki/translations/ru/Arch_Axis.md +++ b/wiki/translations/ru/Arch_Axis.md @@ -8,6 +8,8 @@ SeeAlso:[Axis System](Arch_AxisSystem/ru.md), [Arch Grid](Arch_Grid/ru.md) --- +# Arch Axis/ru +
@@ -107,5 +109,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Axis/ru diff --git a/wiki/translations/ru/Arch_AxisSystem.md b/wiki/translations/ru/Arch_AxisSystem.md index 2829e24a86..aefd4e3151 100644 --- a/wiki/translations/ru/Arch_AxisSystem.md +++ b/wiki/translations/ru/Arch_AxisSystem.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Axis](Arch_Axis.md), [Arch Grid](Arch_Grid.md) --- +# Arch AxisSystem/ru +
@@ -99,5 +101,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch AxisSystem/ru diff --git a/wiki/translations/ru/Arch_BimServer.md b/wiki/translations/ru/Arch_BimServer.md index 9d1a9e9fb4..9de083013d 100644 --- a/wiki/translations/ru/Arch_BimServer.md +++ b/wiki/translations/ru/Arch_BimServer.md @@ -1,2 +1,5 @@ # Arch BimServer/ru 1. REDIRECT [WebTools\_BimServer/ru](WebTools_BimServer/ru.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BimServer/ru diff --git a/wiki/translations/ru/Arch_Building.md b/wiki/translations/ru/Arch_Building.md index 23ce82cedf..db2748ace7 100644 --- a/wiki/translations/ru/Arch_Building.md +++ b/wiki/translations/ru/Arch_Building.md @@ -8,6 +8,8 @@ SeeAlso:[Строительная деталь](Arch_BuildingPart/ru.md), [Местность](Arch_Site/ru.md) --- +# Arch Building/ru + ## Описание Arch Building - это особый тип объекта группы FreeCAD, который особенно подходит для представления целого здания. Они в основном используются для организации вашей модели с помощью объектов [ floor](Arch_Floor.md). @@ -62,8 +64,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Building/ru diff --git a/wiki/translations/ru/Arch_BuildingPart.md b/wiki/translations/ru/Arch_BuildingPart.md index 1545dc857e..794c1f1a62 100644 --- a/wiki/translations/ru/Arch_BuildingPart.md +++ b/wiki/translations/ru/Arch_BuildingPart.md @@ -8,6 +8,8 @@ SeeAlso:[Arch_Building](Arch_Building/ru.md), [Arch_Site](Arch_Site/ru.md) --- +# Arch BuildingPart/ru + ## Описание @@ -133,8 +135,5 @@ Site = Arch.makeSite(Building) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch BuildingPart/ru diff --git a/wiki/translations/ru/Arch_Check.md b/wiki/translations/ru/Arch_Check.md index 8812d6ab92..06c1ee88fe 100644 --- a/wiki/translations/ru/Arch_Check.md +++ b/wiki/translations/ru/Arch_Check.md @@ -7,6 +7,8 @@ SeeAlso:[Убрать отверстия](Arch_CloseHoles/ru.md) --- +# Arch Check/ru +
@@ -85,8 +87,5 @@ print(list_bad) - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Check/ru diff --git a/wiki/translations/ru/Arch_CloneComponent.md b/wiki/translations/ru/Arch_CloneComponent.md index 460d9ee2b5..919f38d35d 100644 --- a/wiki/translations/ru/Arch_CloneComponent.md +++ b/wiki/translations/ru/Arch_CloneComponent.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Clone](Draft_Clone/ru.md), [Arch Component](Arch_Component/ru.md) --- +# Arch CloneComponent/ru + @@ -46,5 +48,5 @@ - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloneComponent/ru diff --git a/wiki/translations/ru/Arch_CloseHoles.md b/wiki/translations/ru/Arch_CloseHoles.md index 102fd6b27f..2cf3c01d95 100644 --- a/wiki/translations/ru/Arch_CloseHoles.md +++ b/wiki/translations/ru/Arch_CloseHoles.md @@ -7,6 +7,8 @@ SeeAlso:[Проверь](Arch_Check/ru.md) --- +# Arch CloseHoles/ru + @@ -67,11 +69,5 @@ FreeCAD.ActiveDocument.recompute() solid = Arch.closeHole(Wall.Shape) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloseHoles/ru diff --git a/wiki/translations/ru/Arch_CompAxis.md b/wiki/translations/ru/Arch_CompAxis.md index ccfd704cf8..bff3723b68 100644 --- a/wiki/translations/ru/Arch_CompAxis.md +++ b/wiki/translations/ru/Arch_CompAxis.md @@ -1,5 +1,5 @@ # Arch CompAxis/ru - } +}
@@ -37,4 +37,5 @@ Create axis.
- +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompAxis/ru diff --git a/wiki/translations/ru/Arch_CompPanel.md b/wiki/translations/ru/Arch_CompPanel.md index 01cbcb7bc3..b6391b7c3b 100644 --- a/wiki/translations/ru/Arch_CompPanel.md +++ b/wiki/translations/ru/Arch_CompPanel.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch CompPanel/ru + @@ -30,5 +32,5 @@ Grouping of several Panel related tools. - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompPanel/ru diff --git a/wiki/translations/ru/Arch_CompPipe.md b/wiki/translations/ru/Arch_CompPipe.md index de3ffe2985..ef5e234989 100644 --- a/wiki/translations/ru/Arch_CompPipe.md +++ b/wiki/translations/ru/Arch_CompPipe.md @@ -7,15 +7,14 @@ SeeAlso: --- +# Arch CompPipe/ru + ## Описание ## Types of - [Pipe](Arch_Pipe.md): Creates a pipe (v0.17) -- [Pipe Connector](Arch_PipeConnector.md): Creates a corner or tee connection between 2 or 3 selected pipes (v0.17) - - +- [Pipe Connector](Arch_PipeConnector.md): Creates a corner or tee connection between 2 or 3 selected pipes (v0.17) - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompPipe/ru diff --git a/wiki/translations/ru/Arch_CompRebarStraight.md b/wiki/translations/ru/Arch_CompRebarStraight.md index a4490e0faa..8cf3898a9c 100644 --- a/wiki/translations/ru/Arch_CompRebarStraight.md +++ b/wiki/translations/ru/Arch_CompRebarStraight.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch CompRebarStraight/ru + @@ -51,5 +53,5 @@ Back to [Workbenches](Workbenches#External_workbenches.md) / [External Workbench - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompRebarStraight/ru diff --git a/wiki/translations/ru/Arch_CompSetMaterial.md b/wiki/translations/ru/Arch_CompSetMaterial.md index 47e480d72b..5269a75e91 100644 --- a/wiki/translations/ru/Arch_CompSetMaterial.md +++ b/wiki/translations/ru/Arch_CompSetMaterial.md @@ -7,6 +7,8 @@ SeeAlso:[Arch SetMaterial](Arch_SetMaterial.md), [Arch MultiMaterial](Arch_MultiMaterial.md) --- +# Arch CompSetMaterial/ru + ## Описание The Material tools allows to add materials to the active document. @@ -14,10 +16,7 @@ The Material tools allows to add materials to the active document. ## Types of - [Material](Arch_SetMaterial.md): Creates a material and attributes it to selected objects, if any -- [Multi-Material](Arch_MultiMaterial.md): Creates a multi-material and attributes it to selected objects, if any (v0.17) - - +- [Multi-Material](Arch_MultiMaterial.md): Creates a multi-material and attributes it to selected objects, if any (v0.17) - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CompSetMaterial/ru diff --git a/wiki/translations/ru/Arch_Component.md b/wiki/translations/ru/Arch_Component.md index 7d06ffa890..d9c6c72db6 100644 --- a/wiki/translations/ru/Arch_Component.md +++ b/wiki/translations/ru/Arch_Component.md @@ -9,6 +9,8 @@ SeeAlso: --- +# Arch Component/ru + @@ -73,8 +75,5 @@ The Arch component object is also a base shared by all other Arch objects (** - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Component/ru diff --git a/wiki/translations/ru/Arch_CurtainWall.md b/wiki/translations/ru/Arch_CurtainWall.md index 6522ace8c9..a8c8f774ec 100644 --- a/wiki/translations/ru/Arch_CurtainWall.md +++ b/wiki/translations/ru/Arch_CurtainWall.md @@ -9,6 +9,8 @@ SeeAlso:[Arch Wall](Arch_Wall/ru.md), [Arch Grid](Arch_Grid/ru.md) --- +# Arch CurtainWall/ru + @@ -152,8 +154,5 @@ curtainWall.VerticalSections = 6 FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CurtainWall/ru diff --git a/wiki/translations/ru/Arch_CutPlane.md b/wiki/translations/ru/Arch_CutPlane.md index f9ac6f7415..8e05f28eda 100644 --- a/wiki/translations/ru/Arch_CutPlane.md +++ b/wiki/translations/ru/Arch_CutPlane.md @@ -7,6 +7,8 @@ SeeAlso:[Удалить компонент](Arch_Remove/ru.md) --- +# Arch CutPlane/ru + @@ -105,5 +107,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CutPlane/ru diff --git a/wiki/translations/ru/Arch_DAE.md b/wiki/translations/ru/Arch_DAE.md index 78daa9c9dc..673ec0751e 100644 --- a/wiki/translations/ru/Arch_DAE.md +++ b/wiki/translations/ru/Arch_DAE.md @@ -1,7 +1,4 @@ # Arch DAE/ru - - -
Формат файлов [Collada (DAE)](http://en.wikipedia.org/wiki/COLLADA) представляет собой стандарт для обмена данными в виде сеток. [Архитектурный модуль](Arch_Workbench/ru.md) может импортировать сетки из файлов .dae, и экспортировать архитектурные и другие [оболочковые](Part_Workbench/ru.md) объекты в формат .dae. @@ -42,3 +39,6 @@ [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch DAE/ru diff --git a/wiki/translations/ru/Arch_Door.md b/wiki/translations/ru/Arch_Door.md index fd1aa099c6..51dd330dd7 100644 --- a/wiki/translations/ru/Arch_Door.md +++ b/wiki/translations/ru/Arch_Door.md @@ -8,6 +8,8 @@ Icon:Arch_Window.svg --- +# Arch Door/ru +
@@ -26,5 +28,5 @@ All properties are described in the [Arch Window](Arch_Window.md) tool. Door *Door being constructed from a [Sketch](Sketcher_Workbench.md)* - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Door/ru diff --git a/wiki/translations/ru/Arch_Equipment.md b/wiki/translations/ru/Arch_Equipment.md index 4170d0e2b7..0ec958d34b 100644 --- a/wiki/translations/ru/Arch_Equipment.md +++ b/wiki/translations/ru/Arch_Equipment.md @@ -8,6 +8,8 @@ SeeAlso:[3 вида на основе полигональной сетки](Arch_3Views/ru.md) --- +# Arch Equipment/ru + ## Описание The Equipment tool offers you a simple and convenient way to insert non-structural, standalone elements such as pieces of furniture, hidro-sanitary equipments or electrical appliances to your projects. Equipments are based on [Part shapes](Part_Workbench.md), which allow them to benefit from the solidity and possibilities of BRep geometry, and generate nice views when rendered to plan and section views. @@ -66,11 +68,5 @@ Equip = Arch.makeEquipment(Box) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Equipment/ru diff --git a/wiki/translations/ru/Arch_Fence.md b/wiki/translations/ru/Arch_Fence.md index 14e26c3a20..7d7c563b8c 100644 --- a/wiki/translations/ru/Arch_Fence.md +++ b/wiki/translations/ru/Arch_Fence.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Fence/ru + ## Описание The [Arch Fence](Arch_Fence.md) is a object that builds a fence by repeating a single fence post and section along a given path. @@ -95,8 +97,5 @@ post = FreeCAD.ActiveDocument.Post Fence = Arch.buildFence(fence_section, post, sketch) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Fence/ru diff --git a/wiki/translations/ru/Arch_Floor.md b/wiki/translations/ru/Arch_Floor.md index 164c671324..8862ac08c4 100644 --- a/wiki/translations/ru/Arch_Floor.md +++ b/wiki/translations/ru/Arch_Floor.md @@ -8,6 +8,8 @@ SeeAlso:[Здание](Arch_Building/ru.md), [Место](Arch_BuildingPart]],_[[Arch_Site/ru.md) --- +# Arch Floor/ru + @@ -79,8 +81,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor/ru diff --git a/wiki/translations/ru/Arch_Frame.md b/wiki/translations/ru/Arch_Frame.md index d27b0c7795..0b810ab504 100644 --- a/wiki/translations/ru/Arch_Frame.md +++ b/wiki/translations/ru/Arch_Frame.md @@ -8,6 +8,8 @@ SeeAlso:[[Arch Wall/ru]], [[Arch Structure/ru]] --- +# Arch Frame/ru + @@ -99,8 +101,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Frame/ru diff --git a/wiki/translations/ru/Arch_Git.md b/wiki/translations/ru/Arch_Git.md index 3ed77b70c1..0414dbfeb6 100644 --- a/wiki/translations/ru/Arch_Git.md +++ b/wiki/translations/ru/Arch_Git.md @@ -1,2 +1,5 @@ # Arch Git/ru 1. REDIRECT [WebTools\_Git/ru](WebTools_Git/ru.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Git/ru diff --git a/wiki/translations/ru/Arch_Grid.md b/wiki/translations/ru/Arch_Grid.md index 247743c568..801baf256f 100644 --- a/wiki/translations/ru/Arch_Grid.md +++ b/wiki/translations/ru/Arch_Grid.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Axis/ru]], [[Arch AxisSystem/ru]] --- +# Arch Grid/ru + @@ -100,5 +102,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Grid/ru diff --git a/wiki/translations/ru/Arch_IFC.md b/wiki/translations/ru/Arch_IFC.md index da16937e69..e23b6b1ab4 100644 --- a/wiki/translations/ru/Arch_IFC.md +++ b/wiki/translations/ru/Arch_IFC.md @@ -1,7 +1,4 @@ # Arch IFC/ru - - -
@@ -90,3 +87,6 @@ If the shape of exported objects is based on an extrusion or a boolean operation [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IFC/ru diff --git a/wiki/translations/ru/Arch_IfcExplorer.md b/wiki/translations/ru/Arch_IfcExplorer.md index d624cc9252..7059c21060 100644 --- a/wiki/translations/ru/Arch_IfcExplorer.md +++ b/wiki/translations/ru/Arch_IfcExplorer.md @@ -7,6 +7,8 @@ SeeAlso:[Arch IFC](Arch_IFC/ru.md) --- +# Arch IfcExplorer/ru +
@@ -53,3 +55,6 @@ [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcExplorer/ru diff --git a/wiki/translations/ru/Arch_IfcSpreadsheet.md b/wiki/translations/ru/Arch_IfcSpreadsheet.md index 5bdde16f70..f4587eb55d 100644 --- a/wiki/translations/ru/Arch_IfcSpreadsheet.md +++ b/wiki/translations/ru/Arch_IfcSpreadsheet.md @@ -8,6 +8,8 @@ SeeAlso:[Arch IFC](Arch_IFC/ru.md), [Arch IfcExplorer](Arch_IfcExplorer/ru.md) --- +# Arch IfcSpreadsheet/ru + @@ -57,5 +59,5 @@ spreadsheet = Arch.makeIfcSpreadsheet(Wall) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcSpreadsheet/ru diff --git a/wiki/translations/ru/Arch_JSON.md b/wiki/translations/ru/Arch_JSON.md index df06ee41d8..89a9c49fbc 100644 --- a/wiki/translations/ru/Arch_JSON.md +++ b/wiki/translations/ru/Arch_JSON.md @@ -1,7 +1,4 @@ # Arch JSON/ru - - -
@@ -51,3 +48,6 @@ Note that facets form triangles and their integer values reference points in the [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch JSON/ru diff --git a/wiki/translations/ru/Arch_MakeIfcSpreadsheet.md b/wiki/translations/ru/Arch_MakeIfcSpreadsheet.md index 1247adc6f4..cea6625b41 100644 --- a/wiki/translations/ru/Arch_MakeIfcSpreadsheet.md +++ b/wiki/translations/ru/Arch_MakeIfcSpreadsheet.md @@ -1,2 +1,5 @@ # Arch MakeIfcSpreadsheet/ru 1. REDIRECT [Arch\_IfcSpreadsheet/ru](Arch_IfcSpreadsheet/ru.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MakeIfcSpreadsheet/ru diff --git a/wiki/translations/ru/Arch_MergeWalls.md b/wiki/translations/ru/Arch_MergeWalls.md index b245cfd4e7..f113d1798e 100644 --- a/wiki/translations/ru/Arch_MergeWalls.md +++ b/wiki/translations/ru/Arch_MergeWalls.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Wall]] --- +# Arch MergeWalls/ru +
@@ -60,5 +62,5 @@ base = Arch.joinWalls([Wall1, Wall2]) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MergeWalls/ru diff --git a/wiki/translations/ru/Arch_MeshToShape.md b/wiki/translations/ru/Arch_MeshToShape.md index fb1f169d51..9241edfbd0 100644 --- a/wiki/translations/ru/Arch_MeshToShape.md +++ b/wiki/translations/ru/Arch_MeshToShape.md @@ -7,6 +7,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh/ru.md), [Удалить форму из Архитектуры](Arch_RemoveShape/ru.md) --- +# Arch MeshToShape/ru + @@ -83,5 +85,5 @@ new_obj = Arch.meshToShape(Box) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MeshToShape/ru diff --git a/wiki/translations/ru/Arch_Module.md b/wiki/translations/ru/Arch_Module.md index 9e34757243..29753f95eb 100644 --- a/wiki/translations/ru/Arch_Module.md +++ b/wiki/translations/ru/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/ru 1. REDIRECT [Arch\_Workbench/ru](Arch_Workbench/ru.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/ru diff --git a/wiki/translations/ru/Arch_MultiMaterial.md b/wiki/translations/ru/Arch_MultiMaterial.md index 5fd7ad2cb4..7fd02ce55b 100644 --- a/wiki/translations/ru/Arch_MultiMaterial.md +++ b/wiki/translations/ru/Arch_MultiMaterial.md @@ -5,6 +5,8 @@ Workbenches:[Arch](Arch_Workbench/ru.md) --- +# Arch MultiMaterial/ru + @@ -59,5 +61,5 @@ This roughly corresponds to a combination of [IfcMaterialLayerSet](https://stand - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MultiMaterial/ru diff --git a/wiki/translations/ru/Arch_Nest.md b/wiki/translations/ru/Arch_Nest.md index d3d1a08f8c..843705cfcc 100644 --- a/wiki/translations/ru/Arch_Nest.md +++ b/wiki/translations/ru/Arch_Nest.md @@ -6,6 +6,8 @@ SeeAlso:[[Arch Panel/ru]], [[Arch Panel Sheet/ru]] --- +# Arch Nest/ru + @@ -50,5 +52,5 @@ The algorithm behind the Nest tool is in constant evolution, and is currently no - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Nest/ru diff --git a/wiki/translations/ru/Arch_OBJ.md b/wiki/translations/ru/Arch_OBJ.md index eece079df2..ed0a963aa6 100644 --- a/wiki/translations/ru/Arch_OBJ.md +++ b/wiki/translations/ru/Arch_OBJ.md @@ -1,7 +1,4 @@ # Arch OBJ/ru - - -
@@ -71,3 +68,6 @@ mesh.write(Filename="new_example.obj", Material=face_colors, Format="obj") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch OBJ/ru diff --git a/wiki/translations/ru/Arch_Panel.md b/wiki/translations/ru/Arch_Panel.md index 37e67f1aa4..ae13e2105b 100644 --- a/wiki/translations/ru/Arch_Panel.md +++ b/wiki/translations/ru/Arch_Panel.md @@ -8,6 +8,8 @@ SeeAlso:[Структура](Arch_Structure/ru.md), [Arch Panel Cut](Arch_Panel_Cut/ru.md), [Arch Panel Sheet](Arch_Panel_Sheet/ru.md) --- +# Arch Panel/ru +
@@ -121,5 +123,5 @@ Panel = Arch.makePanel(Rect, thickness=36) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel/ru diff --git a/wiki/translations/ru/Arch_Panel_Cut.md b/wiki/translations/ru/Arch_Panel_Cut.md index 1563315ee1..21e2f2bc93 100644 --- a/wiki/translations/ru/Arch_Panel_Cut.md +++ b/wiki/translations/ru/Arch_Panel_Cut.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Panel](Arch_Panel/ru.md), [Arch Panel Sheet](Arch_Panel_Sheet/ru.md), [Arch Nest](Arch_Nest/ru.md) --- +# Arch Panel Cut/ru + @@ -114,5 +116,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Cut/ru diff --git a/wiki/translations/ru/Arch_Panel_Sheet.md b/wiki/translations/ru/Arch_Panel_Sheet.md index 0f5b1dd567..3c80a62e6c 100644 --- a/wiki/translations/ru/Arch_Panel_Sheet.md +++ b/wiki/translations/ru/Arch_Panel_Sheet.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Panel](Arch_Panel/ru.md), [Arch Panel Cut](Arch_Panel_Cut/ru.md), [Arch Nest](Arch_Nest/ru.md) --- +# Arch Panel Sheet/ru + @@ -126,5 +128,5 @@ Sheet = Arch.makePanelSheet([Cut1, Cut2, Cut3]) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel Sheet/ru diff --git a/wiki/translations/ru/Arch_Pipe.md b/wiki/translations/ru/Arch_Pipe.md index 47d9e6a7f8..7331f497e0 100644 --- a/wiki/translations/ru/Arch_Pipe.md +++ b/wiki/translations/ru/Arch_Pipe.md @@ -9,6 +9,8 @@ Version:0.17 --- +# Arch Pipe/ru + @@ -142,5 +144,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Pipe/ru diff --git a/wiki/translations/ru/Arch_PipeConnector.md b/wiki/translations/ru/Arch_PipeConnector.md index 90d4caf568..1b20dff173 100644 --- a/wiki/translations/ru/Arch_PipeConnector.md +++ b/wiki/translations/ru/Arch_PipeConnector.md @@ -9,6 +9,8 @@ Version:0.17 --- +# Arch PipeConnector/ru + @@ -118,8 +120,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch PipeConnector/ru diff --git a/wiki/translations/ru/Arch_Preferences.md b/wiki/translations/ru/Arch_Preferences.md index a7316f1cab..678ba5c740 100644 --- a/wiki/translations/ru/Arch_Preferences.md +++ b/wiki/translations/ru/Arch_Preferences.md @@ -1,6 +1,4 @@ # Arch Preferences/ru - - The preferences for the [Arch Workbench](Arch_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), in the menu **Edit → Preferences → Arch**. There are two tabs: General settings, and Defaults. @@ -27,3 +25,6 @@ There are two tabs: General settings, and Defaults. [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Preferences/ru diff --git a/wiki/translations/ru/Arch_Rebar.md b/wiki/translations/ru/Arch_Rebar.md index 9c7d6aa4b4..dec707c05d 100644 --- a/wiki/translations/ru/Arch_Rebar.md +++ b/wiki/translations/ru/Arch_Rebar.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md), [Reinforcement Addon](Reinforcement_Addon.md) --- +# Arch Rebar/ru + @@ -130,3 +132,6 @@ FreeCAD.ActiveDocument.recompute() [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar/ru diff --git a/wiki/translations/ru/Arch_Rebar_BOM.md b/wiki/translations/ru/Arch_Rebar_BOM.md index 5bd7027eae..a85c2826f0 100644 --- a/wiki/translations/ru/Arch_Rebar_BOM.md +++ b/wiki/translations/ru/Arch_Rebar_BOM.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Reinforcement Bar Bending Schedule](Reinforcement_Bar_Bending_Schedule.md), [Arch Rebar Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) --- +# Arch Rebar BOM/ru + ## Описание The [Bill Of Material](Arch_Rebar_BOM.md) tool allows the user to create a bill of material of reinforcing bars. @@ -530,3 +532,6 @@ BillOfMaterial_SVG.makeBillOfMaterialSVG( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BOM/ru diff --git a/wiki/translations/ru/Arch_Rebar_BeamReinforcement.md b/wiki/translations/ru/Arch_Rebar_BeamReinforcement.md index 89b9840ce6..3fb183ad28 100644 --- a/wiki/translations/ru/Arch_Rebar_BeamReinforcement.md +++ b/wiki/translations/ru/Arch_Rebar_BeamReinforcement.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar BeamReinforcement/ru + @@ -376,3 +378,6 @@ RebarGroup = TwoLeggedBeam.makeReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BeamReinforcement/ru diff --git a/wiki/translations/ru/Arch_Rebar_BentShape.md b/wiki/translations/ru/Arch_Rebar_BentShape.md index 4b7597835d..8784bd0d0a 100644 --- a/wiki/translations/ru/Arch_Rebar_BentShape.md +++ b/wiki/translations/ru/Arch_Rebar_BentShape.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar](Arch_Rebar.md), [Arch Rebar Stirrup](Arch_Rebar_Stirrup.md) --- +# Arch Rebar BentShape/ru + ## Описание @@ -180,3 +182,6 @@ BentShapeRebar.editBentShapeRebar(Rebar2, 50, 35, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar BentShape/ru diff --git a/wiki/translations/ru/Arch_Rebar_Circular_ColumnReinforcement.md b/wiki/translations/ru/Arch_Rebar_Circular_ColumnReinforcement.md index a39f246a66..4848422bc0 100644 --- a/wiki/translations/ru/Arch_Rebar_Circular_ColumnReinforcement.md +++ b/wiki/translations/ru/Arch_Rebar_Circular_ColumnReinforcement.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch ColumnReinforcement TwoTiesSixRebars](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md), [Arch Rebar](Arch_Rebar.md) --- +# Arch Rebar Circular ColumnReinforcement/ru + ## Описание The [Column Reinforcement](Arch_Rebar_Circular_ColumnReinforcement.md) tool allows the user to create reinforcing bars inside a Column [Arch Structure](Arch_Structure.md) object. @@ -207,3 +209,6 @@ rebar_group = CircularColumn.editReinforcement( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Circular ColumnReinforcement/ru diff --git a/wiki/translations/ru/Arch_Rebar_ColumnReinforcement.md b/wiki/translations/ru/Arch_Rebar_ColumnReinforcement.md index 4c51469761..fcc16999c5 100644 --- a/wiki/translations/ru/Arch_Rebar_ColumnReinforcement.md +++ b/wiki/translations/ru/Arch_Rebar_ColumnReinforcement.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar ColumnReinforcement/ru + @@ -573,3 +575,6 @@ rebar_group = SingleTieMultipleRebars.editSingleTieMultipleRebars( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar ColumnReinforcement/ru diff --git a/wiki/translations/ru/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md b/wiki/translations/ru/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md index 964817373a..888b2794bd 100644 --- a/wiki/translations/ru/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md +++ b/wiki/translations/ru/Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Arch Rebar ColumnReinforcement TwoTiesSixRebars/ru + @@ -346,3 +348,6 @@ rebar_group = TwoTiesSixRebars.editTwoTiesSixRebars( [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar ColumnReinforcement TwoTiesSixRebars/ru diff --git a/wiki/translations/ru/Arch_Rebar_Drawing_Dimensioning.md b/wiki/translations/ru/Arch_Rebar_Drawing_Dimensioning.md index 49bf3316e9..0057690a30 100644 --- a/wiki/translations/ru/Arch_Rebar_Drawing_Dimensioning.md +++ b/wiki/translations/ru/Arch_Rebar_Drawing_Dimensioning.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar Bill Of Material](Arch_Rebar_BOM.md), [Reinforcement Rebar Shape Cut List](Reinforcement_Bar_Shape_Cut_List.md) --- +# Arch Rebar Drawing Dimensioning/ru + ## Описание The [Reinforcement Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md) tool allows the user to create drawing and dimensioning of reinforcing bars. @@ -1076,3 +1078,6 @@ for visible_rebar in visible_rebars: [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Drawing Dimensioning/ru diff --git a/wiki/translations/ru/Arch_Rebar_Helical.md b/wiki/translations/ru/Arch_Rebar_Helical.md index 9867c04632..5bae3a7577 100644 --- a/wiki/translations/ru/Arch_Rebar_Helical.md +++ b/wiki/translations/ru/Arch_Rebar_Helical.md @@ -9,6 +9,8 @@ Version:0.17 --- +# Arch Rebar Helical/ru + @@ -148,3 +150,6 @@ HelicalRebar.editHelicalRebar(Rebar, 20, 100, 20, 20, 100) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Helical/ru diff --git a/wiki/translations/ru/Arch_Rebar_LShape.md b/wiki/translations/ru/Arch_Rebar_LShape.md index 1ae23ec17e..abc9a7546a 100644 --- a/wiki/translations/ru/Arch_Rebar_LShape.md +++ b/wiki/translations/ru/Arch_Rebar_LShape.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Arch Rebar LShape/ru + @@ -172,3 +174,6 @@ LShapeRebar.editLShapeRebar(Rebar2, 50, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar LShape/ru diff --git a/wiki/translations/ru/Arch_Rebar_Stirrup.md b/wiki/translations/ru/Arch_Rebar_Stirrup.md index ca8e725228..77136f7510 100644 --- a/wiki/translations/ru/Arch_Rebar_Stirrup.md +++ b/wiki/translations/ru/Arch_Rebar_Stirrup.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch Rebar Stirrup/ru + @@ -174,3 +176,6 @@ Stirrup.editStirrup(Rebar, 20, 20, 20, 20, 50, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Stirrup/ru diff --git a/wiki/translations/ru/Arch_Rebar_Straight.md b/wiki/translations/ru/Arch_Rebar_Straight.md index b81723b900..47875a404d 100644 --- a/wiki/translations/ru/Arch_Rebar_Straight.md +++ b/wiki/translations/ru/Arch_Rebar_Straight.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Arch Rebar Straight/ru +
@@ -211,3 +213,6 @@ StraightRebar.editStraightRebar(Rebar4, 50, ("Right Side", 50), 100, 100, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar Straight/ru diff --git a/wiki/translations/ru/Arch_Rebar_UShape.md b/wiki/translations/ru/Arch_Rebar_UShape.md index 0032bf6b81..83d85a7714 100644 --- a/wiki/translations/ru/Arch_Rebar_UShape.md +++ b/wiki/translations/ru/Arch_Rebar_UShape.md @@ -9,6 +9,8 @@ SeeAlso:[Bent UShape Rebar](Arch_Rebar_BentShape/ru.md) --- +# Arch Rebar UShape/ru +
@@ -185,3 +187,6 @@ UShapeRebar.editUShapeRebar(Rebar2, 70, 50, 20, 20, [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar UShape/ru diff --git a/wiki/translations/ru/Arch_Reference.md b/wiki/translations/ru/Arch_Reference.md index eccc9f20bd..be453e1744 100644 --- a/wiki/translations/ru/Arch_Reference.md +++ b/wiki/translations/ru/Arch_Reference.md @@ -7,6 +7,8 @@ SeeAlso:[Строительная деталь](Arch_BuildingPart/ru.md) --- +# Arch Reference/ru + ## Описание @@ -64,8 +66,5 @@ import Arch Arch.makeReference("/path/to/some/file.FSCtd","myPart") ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Reference/ru diff --git a/wiki/translations/ru/Arch_Remove.md b/wiki/translations/ru/Arch_Remove.md index 2bc0422952..afa2a1de52 100644 --- a/wiki/translations/ru/Arch_Remove.md +++ b/wiki/translations/ru/Arch_Remove.md @@ -7,6 +7,8 @@ SeeAlso:[Arch CutLine](Arch_CutLine.md), [Arch CutPlane](Arch_CutPlane.md), [Добавить компонент](Arch_Add/ru.md) --- +# Arch Remove/ru + @@ -97,8 +99,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove/ru diff --git a/wiki/translations/ru/Arch_RemoveShape.md b/wiki/translations/ru/Arch_RemoveShape.md index e19071b3a1..5ea621639a 100644 --- a/wiki/translations/ru/Arch_RemoveShape.md +++ b/wiki/translations/ru/Arch_RemoveShape.md @@ -7,6 +7,8 @@ SeeAlso:[Сетка в фигуру](Arch_MeshToShape/ru.md) --- +# Arch RemoveShape/ru + @@ -56,8 +58,5 @@ Arch.removeShape(Structure) FreeCAD.ActiveDocument.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch RemoveShape/ru diff --git a/wiki/translations/ru/Arch_Roof.md b/wiki/translations/ru/Arch_Roof.md index ec2dd8b8b9..a13bc18a56 100644 --- a/wiki/translations/ru/Arch_Roof.md +++ b/wiki/translations/ru/Arch_Roof.md @@ -7,6 +7,8 @@ Shortcut:**R** **F** --- +# Arch Roof/ru + @@ -118,5 +120,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Roof/ru diff --git a/wiki/translations/ru/Arch_Schedule.md b/wiki/translations/ru/Arch_Schedule.md index 30700a5188..f7bb6183b5 100644 --- a/wiki/translations/ru/Arch_Schedule.md +++ b/wiki/translations/ru/Arch_Schedule.md @@ -7,6 +7,8 @@ Shortcut: --- +# Arch Schedule/ru + @@ -100,8 +102,5 @@ The spreadsheet can then be exported to csv normally, from the Spreadsheet workb It is possible to add your own properties to objects. These are called [Dynamic properties](Property_editor#Actions.md). If they have been added with the **Prefix group name** option selected, their names will indeed start with the group name, but this prefix is not displayed in the [Property editor](Property_editor.md). Their names have this form: `NameOfGroup_NameOfProperty`. To reference them in a schedule this full name must be used. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Schedule/ru diff --git a/wiki/translations/ru/Arch_SectionPlane.md b/wiki/translations/ru/Arch_SectionPlane.md index 4b3e8508b8..047681b004 100644 --- a/wiki/translations/ru/Arch_SectionPlane.md +++ b/wiki/translations/ru/Arch_SectionPlane.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Shape2DView](Draft_Shape2DView/ru.md), [TechDraw NewArch](TechDraw_NewArch/ru.md) --- +# Arch SectionPlane/ru + @@ -140,8 +142,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane/ru diff --git a/wiki/translations/ru/Arch_SelectNonSolidMeshes.md b/wiki/translations/ru/Arch_SelectNonSolidMeshes.md index 49a98beb59..c8eab5a525 100644 --- a/wiki/translations/ru/Arch_SelectNonSolidMeshes.md +++ b/wiki/translations/ru/Arch_SelectNonSolidMeshes.md @@ -7,6 +7,8 @@ SeeAlso:[Сетка в фигуру](Arch_MeshToShape/ru.md) --- +# Arch SelectNonSolidMeshes/ru + @@ -19,8 +21,5 @@ This tool identifies and selects the non-solid (non-[manifold](http://en.wikiped 1. Select a mesh object. 2. Press the ** [Select non solid](Arch_SelectNonSolidMeshes.md)** entry in **Arch → Utilities → Select non solid**. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SelectNonSolidMeshes/ru diff --git a/wiki/translations/ru/Arch_SetMaterial.md b/wiki/translations/ru/Arch_SetMaterial.md index f278c17005..c1576e0ef2 100644 --- a/wiki/translations/ru/Arch_SetMaterial.md +++ b/wiki/translations/ru/Arch_SetMaterial.md @@ -8,6 +8,8 @@ SeeAlso:[Arch CompSetMaterial](Arch_CompSetMaterial/ru.md), [Arch MultiMaterial](Arch_MultiMaterial/ru.md) --- +# Arch SetMaterial/ru + @@ -69,5 +71,5 @@ This roughly corresponds to [IfcMaterial](https://standards.buildingsmart.org/IF - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SetMaterial/ru diff --git a/wiki/translations/ru/Arch_Site.md b/wiki/translations/ru/Arch_Site.md index 4310f31afc..6b9c98c6cd 100644 --- a/wiki/translations/ru/Arch_Site.md +++ b/wiki/translations/ru/Arch_Site.md @@ -8,6 +8,8 @@ SeeAlso:[Уровень](Arch_Floor/ru.md), [Здание](Arch_Building/ru.md) --- +# Arch Site/ru + ## Описание The Arch Site is a special object that combines properties of a standard FreeCAD group object and Arch objects. It is particularly suited for representing a whole project site, or terrain. In IFC-based architectural work, it is mostly used to organize your model, by containing [building](Arch_Building.md) objects. The site is also used to manage and display a physical terrain, and can computes volumes of earth to be added or removed. @@ -164,8 +166,5 @@ Node = Arch.makeSolarDiagram(-46.38, -23.33, scale=10000, complete=True) FreeCAD.Gui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Site/ru diff --git a/wiki/translations/ru/Arch_Space.md b/wiki/translations/ru/Arch_Space.md index e31cea5d0c..5851381c2f 100644 --- a/wiki/translations/ru/Arch_Space.md +++ b/wiki/translations/ru/Arch_Space.md @@ -9,6 +9,8 @@ SeeAlso:[[Arch Wall/ru]], [[Arch Structure/ru]] --- +# Arch Space/ru + @@ -144,8 +146,5 @@ selection = FreeCADGui.Selection.getSelectionEx() Arch.removeSpaceBoundaries(Space, selection) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Space/ru diff --git a/wiki/translations/ru/Arch_SplitMesh.md b/wiki/translations/ru/Arch_SplitMesh.md index 52af5f245d..31e1c8e94e 100644 --- a/wiki/translations/ru/Arch_SplitMesh.md +++ b/wiki/translations/ru/Arch_SplitMesh.md @@ -7,6 +7,8 @@ SeeAlso:[Выбрать не-разнородные сетки](Arch_SelectNonSolidMeshes/ru.md) --- +# Arch SplitMesh/ru + @@ -71,11 +73,5 @@ mesh_obj.ViewObject.DisplayMode = "Flat Lines" new_list = Arch.splitMesh(mesh_obj) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SplitMesh/ru diff --git a/wiki/translations/ru/Arch_Stairs.md b/wiki/translations/ru/Arch_Stairs.md index 182680e745..15947c16b2 100644 --- a/wiki/translations/ru/Arch_Stairs.md +++ b/wiki/translations/ru/Arch_Stairs.md @@ -9,6 +9,8 @@ SeeAlso:[[Arch Structure/ru]], [[Arch Equipment/ru]] --- +# Arch Stairs/ru + @@ -133,5 +135,5 @@ Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Stairs/ru diff --git a/wiki/translations/ru/Arch_Structure.md b/wiki/translations/ru/Arch_Structure.md index f328a61854..fb045d24da 100644 --- a/wiki/translations/ru/Arch_Structure.md +++ b/wiki/translations/ru/Arch_Structure.md @@ -8,6 +8,8 @@ SeeAlso:[Стена](Arch_Wall/ru.md), [Арматура](Arch_Rebar/ru.md) --- +# Arch Structure/ru + ## Описание @@ -127,10 +129,7 @@ FreeCAD.ActiveDocument.recompute() Structure2 = Arch.makeStructure(None, length=500, width=1000, height=3000) Draft.move(Structure2, FreeCAD.Vector(2000, 0, 0)) FreeCAD.ActiveDocument.recompute() -``` - - - - - +``` +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/ru diff --git a/wiki/translations/ru/Arch_Survey.md b/wiki/translations/ru/Arch_Survey.md index 707b92aa65..d52076d0dd 100644 --- a/wiki/translations/ru/Arch_Survey.md +++ b/wiki/translations/ru/Arch_Survey.md @@ -7,6 +7,8 @@ SeeAlso:[FCInfo (macro)](Macro_FCInfo/ru.md) --- +# Arch Survey/ru + @@ -68,8 +70,5 @@ for obj in selection: print("Center of Mass: %f", element.CenterOfMass) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Survey/ru diff --git a/wiki/translations/ru/Arch_ToggleIfcBrepFlag.md b/wiki/translations/ru/Arch_ToggleIfcBrepFlag.md index 74645e188e..3e93fcbd60 100644 --- a/wiki/translations/ru/Arch_ToggleIfcBrepFlag.md +++ b/wiki/translations/ru/Arch_ToggleIfcBrepFlag.md @@ -8,6 +8,8 @@ SeeAlso:[Arch IfcExplorer](Arch_IfcExplorer.md), [Arch IFC](Arch_IFC.md) --- +# Arch ToggleIfcBrepFlag/ru + @@ -39,11 +41,5 @@ - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleIfcBrepFlag/ru diff --git a/wiki/translations/ru/Arch_ToggleSubs.md b/wiki/translations/ru/Arch_ToggleSubs.md index d25fa7d91d..b3415b9d29 100644 --- a/wiki/translations/ru/Arch_ToggleSubs.md +++ b/wiki/translations/ru/Arch_ToggleSubs.md @@ -8,6 +8,8 @@ ‏‎ SeeAlso: --- +# Arch ToggleSubs/ru + @@ -49,8 +51,5 @@ The color of a subtraction element can follow the style of [Draft construction]( The [Draft construction](Draft_ToggleConstructionMode.md) style can be set in the [Draft Preferences](Draft_Preferences.md), in the menu **Preferences → Draft → General Draft**. - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch ToggleSubs/ru diff --git a/wiki/translations/ru/Arch_Truss.md b/wiki/translations/ru/Arch_Truss.md index e39f0e89ef..664559e7d5 100644 --- a/wiki/translations/ru/Arch_Truss.md +++ b/wiki/translations/ru/Arch_Truss.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Arch Truss/ru + ## Описание The [Arch Truss](Arch_Truss.md) tool builds a [truss](https://en.wikipedia.org/wiki/Truss) object, either from a selected linear object (lie a [Draft Line](Draft_Line.md) or [Sketch](Sketcher_NewSketch.md)), or from scratch, if no object is selected when launching the command. @@ -90,8 +92,5 @@ truss.HeightEnd = 400 # adjust other needed properties ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Truss/ru diff --git a/wiki/translations/ru/Arch_Wall.md b/wiki/translations/ru/Arch_Wall.md index 3f0fd64de5..7cd537ad5e 100644 --- a/wiki/translations/ru/Arch_Wall.md +++ b/wiki/translations/ru/Arch_Wall.md @@ -1,3 +1,4 @@ +# Arch Wall/ru --- - GuiCommand:/ru Name:Arch_Wall @@ -143,11 +144,5 @@ Draft.move(Wall2, FreeCAD.Vector(0, -1000, 0)) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/ru diff --git a/wiki/translations/ru/Arch_Window.md b/wiki/translations/ru/Arch_Window.md index 301107a7c2..2b5019cdb4 100644 --- a/wiki/translations/ru/Arch_Window.md +++ b/wiki/translations/ru/Arch_Window.md @@ -8,6 +8,8 @@ SeeAlso:[Стена](Arch_Wall/ru.md), [Добавить компонент](Arch_Add/ru.md) --- +# Arch Window/ru + ## Описание [Arch Window](Arch_Window/ru.md) (окно) это базовый объект для всех типов \"внедряемых\" объектов, таких как окна, двери и т.д\... Он спроектирован так, что может быть и независим, и \"базироваться\" на другом компоненте вроде [стены](Arch_Wall/ru.md), [структуры](Arch_Structure/ru.md), или [крыши](Arch_Roof/ru.md). У него своя собственная геометрия, которая может быть сделана из нескольких твердотельных компонентов (обычно оконная рама и внутренняя панель), и определяет объём, которые будет вычитаться из базового объекта, чтобы сделать проём. @@ -241,11 +243,5 @@ Door = Arch.makeWindowPreset("Simple door", placement=place) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Window/ru diff --git a/wiki/translations/ru/Arch_Workbench.md b/wiki/translations/ru/Arch_Workbench.md index f44abd1c51..5b24af249e 100644 --- a/wiki/translations/ru/Arch_Workbench.md +++ b/wiki/translations/ru/Arch_Workbench.md @@ -1,10 +1,4 @@ -# Arch Workbench/ru - - - - - -Логотип верстака Arch +# Логотип верстака Arch Arch Workbench/ru {{TOCright}} @@ -145,3 +139,6 @@ The developers of Draft, Arch, and BIM also collaborate with the greater [OSArch [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/ru diff --git a/wiki/translations/ru/Arch_panel_tutorial.md b/wiki/translations/ru/Arch_panel_tutorial.md index a4ea7511dd..0b787189cc 100644 --- a/wiki/translations/ru/Arch_panel_tutorial.md +++ b/wiki/translations/ru/Arch_panel_tutorial.md @@ -1,7 +1,4 @@ # Arch panel tutorial/ru - - - {{TutorialInfo/ru |Topic= Моделирование архитектурной панели |Level= Начинающие @@ -198,4 +195,7 @@ Both Draft Rotate and Move tools make use of the Draft Snapping system. Differen {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch panel tutorial/ru diff --git a/wiki/translations/ru/Arch_tutorial.md b/wiki/translations/ru/Arch_tutorial.md index 2b1f0f6a03..cff0d980c4 100644 --- a/wiki/translations/ru/Arch_tutorial.md +++ b/wiki/translations/ru/Arch_tutorial.md @@ -1,7 +1,4 @@ # Arch tutorial/ru - - -
@@ -640,4 +637,7 @@ To populate a spreadsheet with values extracted from the model the Arch\_Schedul {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch tutorial/ru diff --git a/wiki/translations/ru/Artwork.md b/wiki/translations/ru/Artwork.md index df8175eeb3..8f88eaeeac 100644 --- a/wiki/translations/ru/Artwork.md +++ b/wiki/translations/ru/Artwork.md @@ -1,5 +1,5 @@ # Artwork/ru - Здесь представлены художественные работы созданные для FreeCAD. Не стесняйтесь повторно использовать их в других приложениях. Если вы хотите внести свой вклад с помощью иконок, пожалуйста, прочитайте [руководство по художественному оформлению](Artwork_Guidelines/ru.md). +Здесь представлены художественные работы созданные для FreeCAD. Не стесняйтесь повторно использовать их в других приложениях. Если вы хотите внести свой вклад с помощью иконок, пожалуйста, прочитайте [руководство по художественному оформлению](Artwork_Guidelines/ru.md). ## Различные иконки (пиктограммы) @@ -169,3 +169,6 @@ }} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork/ru diff --git a/wiki/translations/ru/Artwork_Arch.md b/wiki/translations/ru/Artwork_Arch.md index c4f5154abb..e38fdecee6 100644 --- a/wiki/translations/ru/Artwork_Arch.md +++ b/wiki/translations/ru/Artwork_Arch.md @@ -1,5 +1,5 @@ # Artwork Arch/ru - Эти иконки находятся в указанной исходной папке. +Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -19,3 +19,6 @@ }} [Category:Arch](Category:Arch.md) + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Artwork Arch/ru diff --git a/wiki/translations/ru/Artwork_Assembly.md b/wiki/translations/ru/Artwork_Assembly.md index 139c706085..7281a48d98 100644 --- a/wiki/translations/ru/Artwork_Assembly.md +++ b/wiki/translations/ru/Artwork_Assembly.md @@ -1,6 +1,4 @@ # Artwork Assembly/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -29,3 +27,6 @@ }} [Category:Assembly](Category:Assembly.md) + +--- +[documentation index](../README.md) > [Assembly](Category:Assembly.md) > Artwork Assembly/ru diff --git a/wiki/translations/ru/Artwork_Complete.md b/wiki/translations/ru/Artwork_Complete.md index e13916a65c..017e0d7b9f 100644 --- a/wiki/translations/ru/Artwork_Complete.md +++ b/wiki/translations/ru/Artwork_Complete.md @@ -1,6 +1,4 @@ # Artwork Complete/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -14,3 +12,5 @@ {{Artwork/ru}} +--- +[documentation index](../README.md) > Artwork Complete/ru diff --git a/wiki/translations/ru/Artwork_Draft.md b/wiki/translations/ru/Artwork_Draft.md index 507f43549d..f2eea66d1b 100644 --- a/wiki/translations/ru/Artwork_Draft.md +++ b/wiki/translations/ru/Artwork_Draft.md @@ -1,6 +1,4 @@ # Artwork Draft/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -21,3 +19,6 @@ [Category:Draft](Category:Draft.md) + +--- +[documentation index](../README.md) > [Draft](Category:Draft.md) > Artwork Draft/ru diff --git a/wiki/translations/ru/Artwork_Drawing.md b/wiki/translations/ru/Artwork_Drawing.md index 0d55518f51..29b4e2088c 100644 --- a/wiki/translations/ru/Artwork_Drawing.md +++ b/wiki/translations/ru/Artwork_Drawing.md @@ -1,6 +1,4 @@ # Artwork Drawing/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -46,3 +44,5 @@ {{Artwork/ru}} +--- +[documentation index](../README.md) > Artwork Drawing/ru diff --git a/wiki/translations/ru/Artwork_Erroneous.md b/wiki/translations/ru/Artwork_Erroneous.md index 326a198635..d21f797753 100644 --- a/wiki/translations/ru/Artwork_Erroneous.md +++ b/wiki/translations/ru/Artwork_Erroneous.md @@ -1,6 +1,4 @@ # Artwork Erroneous/ru - - Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -26,3 +24,6 @@ }} [Category:Icon](Category:Icon.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Icon](Category:Icon.md) > Artwork Erroneous/ru diff --git a/wiki/translations/ru/Artwork_Fem.md b/wiki/translations/ru/Artwork_Fem.md index ac7c9e5775..fd938d12db 100644 --- a/wiki/translations/ru/Artwork_Fem.md +++ b/wiki/translations/ru/Artwork_Fem.md @@ -1,6 +1,4 @@ # Artwork Fem/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -17,3 +15,6 @@ }} [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Artwork Fem/ru diff --git a/wiki/translations/ru/Artwork_Gui.md b/wiki/translations/ru/Artwork_Gui.md index 7d372a2957..1a3568940c 100644 --- a/wiki/translations/ru/Artwork_Gui.md +++ b/wiki/translations/ru/Artwork_Gui.md @@ -1,5 +1,5 @@ # Artwork Gui/ru - Эти иконки находятся в указанной исходной папке. +Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -22,4 +22,7 @@ {{Artwork -}} +}} + +--- +[documentation index](../README.md) > Artwork Gui/ru diff --git a/wiki/translations/ru/Artwork_Guidelines.md b/wiki/translations/ru/Artwork_Guidelines.md index f2704604b9..f9bbce20be 100644 --- a/wiki/translations/ru/Artwork_Guidelines.md +++ b/wiki/translations/ru/Artwork_Guidelines.md @@ -1,6 +1,4 @@ # Artwork Guidelines/ru - - ## Введение @@ -179,3 +177,6 @@ Inkscape имеет удобный инструмент для проверки {{Artwork}} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Artwork Guidelines/ru diff --git a/wiki/translations/ru/Artwork_Image.md b/wiki/translations/ru/Artwork_Image.md index 130d4bdf1f..37e97675a8 100644 --- a/wiki/translations/ru/Artwork_Image.md +++ b/wiki/translations/ru/Artwork_Image.md @@ -1,6 +1,4 @@ # Artwork Image/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -17,3 +15,6 @@ }} [Category:Image](Category:Image.md) + +--- +[documentation index](../README.md) > [Image](Category:Image.md) > Artwork Image/ru diff --git a/wiki/translations/ru/Artwork_Inspection.md b/wiki/translations/ru/Artwork_Inspection.md index f22abd2a41..c2cd37c2a5 100644 --- a/wiki/translations/ru/Artwork_Inspection.md +++ b/wiki/translations/ru/Artwork_Inspection.md @@ -1,6 +1,4 @@ # Artwork Inspection/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -17,3 +15,6 @@ }} [Category:Inspection](Category:Inspection.md) + +--- +[documentation index](../README.md) > [Inspection](Category:Inspection.md) > Artwork Inspection/ru diff --git a/wiki/translations/ru/Artwork_Material.md b/wiki/translations/ru/Artwork_Material.md index ebed44d70e..c5526a2724 100644 --- a/wiki/translations/ru/Artwork_Material.md +++ b/wiki/translations/ru/Artwork_Material.md @@ -1,6 +1,4 @@ # Artwork Material/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -15,3 +13,6 @@ {{Artwork }} + +--- +[documentation index](../README.md) > Artwork Material/ru diff --git a/wiki/translations/ru/Artwork_Mesh.md b/wiki/translations/ru/Artwork_Mesh.md index fd05dfed92..70fe512a10 100644 --- a/wiki/translations/ru/Artwork_Mesh.md +++ b/wiki/translations/ru/Artwork_Mesh.md @@ -1,6 +1,4 @@ # Artwork Mesh/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -21,3 +19,6 @@ }} [Category:Mesh](Category:Mesh.md) + +--- +[documentation index](../README.md) > [Mesh](Category:Mesh.md) > Artwork Mesh/ru diff --git a/wiki/translations/ru/Artwork_MeshPart.md b/wiki/translations/ru/Artwork_MeshPart.md index b507093071..d04caadfcc 100644 --- a/wiki/translations/ru/Artwork_MeshPart.md +++ b/wiki/translations/ru/Artwork_MeshPart.md @@ -1,6 +1,4 @@ # Artwork MeshPart/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -19,3 +17,6 @@ {{Artwork }} {{Mesh Tools navi}} + +--- +[documentation index](../README.md) > Artwork MeshPart/ru diff --git a/wiki/translations/ru/Artwork_OpenSCAD.md b/wiki/translations/ru/Artwork_OpenSCAD.md index 8b682b358c..44032837d5 100644 --- a/wiki/translations/ru/Artwork_OpenSCAD.md +++ b/wiki/translations/ru/Artwork_OpenSCAD.md @@ -1,6 +1,4 @@ # Artwork OpenSCAD/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -17,3 +15,6 @@ }} [Category:OpenSCAD](Category:OpenSCAD.md) + +--- +[documentation index](../README.md) > [OpenSCAD](Category:OpenSCAD.md) > Artwork OpenSCAD/ru diff --git a/wiki/translations/ru/Artwork_Part.md b/wiki/translations/ru/Artwork_Part.md index 9932c01337..14419cdc45 100644 --- a/wiki/translations/ru/Artwork_Part.md +++ b/wiki/translations/ru/Artwork_Part.md @@ -1,6 +1,4 @@ # Artwork Part/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -34,4 +32,7 @@ {{Artwork -}} +}} + +--- +[documentation index](../README.md) > Artwork Part/ru diff --git a/wiki/translations/ru/Artwork_PartDesign.md b/wiki/translations/ru/Artwork_PartDesign.md index e9875080a3..5234effdbf 100644 --- a/wiki/translations/ru/Artwork_PartDesign.md +++ b/wiki/translations/ru/Artwork_PartDesign.md @@ -1,6 +1,4 @@ # Artwork PartDesign/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -25,3 +23,6 @@ }} [Category:PartDesign](Category:PartDesign.md) + +--- +[documentation index](../README.md) > [PartDesign](Category:PartDesign.md) > Artwork PartDesign/ru diff --git a/wiki/translations/ru/Artwork_Path.md b/wiki/translations/ru/Artwork_Path.md index 50d759756f..f631b6f451 100644 --- a/wiki/translations/ru/Artwork_Path.md +++ b/wiki/translations/ru/Artwork_Path.md @@ -1,6 +1,4 @@ # Artwork Path/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -17,3 +15,6 @@ }} [Category:Path](Category:Path.md) + +--- +[documentation index](../README.md) > [Path](Category:Path.md) > Artwork Path/ru diff --git a/wiki/translations/ru/Artwork_Plot.md b/wiki/translations/ru/Artwork_Plot.md index 93a6057451..7e913ee0c4 100644 --- a/wiki/translations/ru/Artwork_Plot.md +++ b/wiki/translations/ru/Artwork_Plot.md @@ -1,6 +1,4 @@ # Artwork Plot/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -29,3 +27,6 @@ }} [Category:Plot](Category:Plot.md) + +--- +[documentation index](../README.md) > [Plot](Category:Plot.md) > Artwork Plot/ru diff --git a/wiki/translations/ru/Artwork_Points.md b/wiki/translations/ru/Artwork_Points.md index 1b5b87ec80..fab0321d42 100644 --- a/wiki/translations/ru/Artwork_Points.md +++ b/wiki/translations/ru/Artwork_Points.md @@ -1,6 +1,4 @@ # Artwork Points/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -17,3 +15,6 @@ }} [Category:Points](Category:Points.md) + +--- +[documentation index](../README.md) > [Points](Category:Points.md) > Artwork Points/ru diff --git a/wiki/translations/ru/Artwork_Raytracing.md b/wiki/translations/ru/Artwork_Raytracing.md index b0754aaca4..ba84ba373a 100644 --- a/wiki/translations/ru/Artwork_Raytracing.md +++ b/wiki/translations/ru/Artwork_Raytracing.md @@ -1,6 +1,4 @@ # Artwork Raytracing/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -17,3 +15,6 @@ }} [Category:Raytracing](Category:Raytracing.md) + +--- +[documentation index](../README.md) > [Raytracing](Category:Raytracing.md) > Artwork Raytracing/ru diff --git a/wiki/translations/ru/Artwork_Reinforcement.md b/wiki/translations/ru/Artwork_Reinforcement.md index f397ddd127..b4653e16eb 100644 --- a/wiki/translations/ru/Artwork_Reinforcement.md +++ b/wiki/translations/ru/Artwork_Reinforcement.md @@ -1,6 +1,4 @@ # Artwork Reinforcement/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -14,3 +12,5 @@ {{Artwork/ru}} +--- +[documentation index](../README.md) > Artwork Reinforcement/ru diff --git a/wiki/translations/ru/Artwork_ReverseEngineering.md b/wiki/translations/ru/Artwork_ReverseEngineering.md index 916c27db7a..d4fd97ea1b 100644 --- a/wiki/translations/ru/Artwork_ReverseEngineering.md +++ b/wiki/translations/ru/Artwork_ReverseEngineering.md @@ -1,6 +1,4 @@ # Artwork ReverseEngineering/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -21,3 +19,6 @@ }} [Category:Reverse Engineering](Category:Reverse_Engineering.md) + +--- +[documentation index](../README.md) > [Reverse Engineering](Category:Reverse Engineering.md) > Artwork ReverseEngineering/ru diff --git a/wiki/translations/ru/Artwork_Robot.md b/wiki/translations/ru/Artwork_Robot.md index 4c56659887..aa78f860ac 100644 --- a/wiki/translations/ru/Artwork_Robot.md +++ b/wiki/translations/ru/Artwork_Robot.md @@ -1,6 +1,4 @@ # Artwork Robot/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -17,3 +15,6 @@ }} [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > Artwork Robot/ru diff --git a/wiki/translations/ru/Artwork_Ship.md b/wiki/translations/ru/Artwork_Ship.md index 0801b8db29..38be7b4ed6 100644 --- a/wiki/translations/ru/Artwork_Ship.md +++ b/wiki/translations/ru/Artwork_Ship.md @@ -1,6 +1,4 @@ # Artwork Ship/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -29,3 +27,6 @@ }} [Category:Ship](Category:Ship.md) + +--- +[documentation index](../README.md) > [Ship](Category:Ship.md) > Artwork Ship/ru diff --git a/wiki/translations/ru/Artwork_Sketcher.md b/wiki/translations/ru/Artwork_Sketcher.md index 5d2d963d61..41258bcb6f 100644 --- a/wiki/translations/ru/Artwork_Sketcher.md +++ b/wiki/translations/ru/Artwork_Sketcher.md @@ -1,6 +1,4 @@ # Artwork Sketcher/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -53,3 +51,6 @@ {{Artwork }} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Artwork Sketcher/ru diff --git a/wiki/translations/ru/Artwork_Splash_screen.md b/wiki/translations/ru/Artwork_Splash_screen.md index 5608d6d15b..801d32fe76 100644 --- a/wiki/translations/ru/Artwork_Splash_screen.md +++ b/wiki/translations/ru/Artwork_Splash_screen.md @@ -1,6 +1,4 @@ # Artwork Splash screen/ru - - Это заставки, которые использовались для каждой версии программы. ![](images/Splashscreen09.png ) @@ -27,3 +25,6 @@ {{Artwork }} + +--- +[documentation index](../README.md) > Artwork Splash screen/ru diff --git a/wiki/translations/ru/Artwork_Spreadsheet.md b/wiki/translations/ru/Artwork_Spreadsheet.md index 9c017d324f..3c9c93fd7b 100644 --- a/wiki/translations/ru/Artwork_Spreadsheet.md +++ b/wiki/translations/ru/Artwork_Spreadsheet.md @@ -1,6 +1,4 @@ # Artwork Spreadsheet/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -17,3 +15,6 @@ }} [Category:Spreadsheet](Category:Spreadsheet.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Category:Spreadsheet.md) > Artwork Spreadsheet/ru diff --git a/wiki/translations/ru/Artwork_Start.md b/wiki/translations/ru/Artwork_Start.md index c73f4c12ec..0efdfd8324 100644 --- a/wiki/translations/ru/Artwork_Start.md +++ b/wiki/translations/ru/Artwork_Start.md @@ -1,6 +1,4 @@ # Artwork Start/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -35,3 +33,6 @@ }} [Category:Start](Category:Start.md) + +--- +[documentation index](../README.md) > [Start](Category:Start.md) > Artwork Start/ru diff --git a/wiki/translations/ru/Artwork_Surface.md b/wiki/translations/ru/Artwork_Surface.md index 456e3d2528..5338665159 100644 --- a/wiki/translations/ru/Artwork_Surface.md +++ b/wiki/translations/ru/Artwork_Surface.md @@ -1,6 +1,4 @@ # Artwork Surface/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -15,3 +13,6 @@ {{Surface Tools navi }} {{Artwork}} + +--- +[documentation index](../README.md) > Artwork Surface/ru diff --git a/wiki/translations/ru/Artwork_TechDraw.md b/wiki/translations/ru/Artwork_TechDraw.md index 210be2c8cf..5d1ead04b8 100644 --- a/wiki/translations/ru/Artwork_TechDraw.md +++ b/wiki/translations/ru/Artwork_TechDraw.md @@ -1,6 +1,4 @@ # Artwork TechDraw/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -33,3 +31,6 @@ }} [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [TechDraw](Category:TechDraw.md) > Artwork TechDraw/ru diff --git a/wiki/translations/ru/Artwork_Test.md b/wiki/translations/ru/Artwork_Test.md index c256d64cc6..1188475f74 100644 --- a/wiki/translations/ru/Artwork_Test.md +++ b/wiki/translations/ru/Artwork_Test.md @@ -1,6 +1,4 @@ # Artwork Test/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -14,3 +12,5 @@ {{Artwork/ru}} +--- +[documentation index](../README.md) > Artwork Test/ru diff --git a/wiki/translations/ru/Artwork_Tux.md b/wiki/translations/ru/Artwork_Tux.md index da5c953efb..00803895ed 100644 --- a/wiki/translations/ru/Artwork_Tux.md +++ b/wiki/translations/ru/Artwork_Tux.md @@ -1,6 +1,4 @@ # Artwork Tux/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -14,3 +12,5 @@ {{Artwork/ru}} +--- +[documentation index](../README.md) > Artwork Tux/ru diff --git a/wiki/translations/ru/Artwork_Web.md b/wiki/translations/ru/Artwork_Web.md index 73090d552b..52f4d41402 100644 --- a/wiki/translations/ru/Artwork_Web.md +++ b/wiki/translations/ru/Artwork_Web.md @@ -1,6 +1,4 @@ # Artwork Web/ru - - Эти иконки находятся в указанной исходной папке. Для всех иконок в исходнике смотри [Художественное оформление](Artwork/ru.md). @@ -21,3 +19,6 @@ }} [Category:Web](Category:Web.md) + +--- +[documentation index](../README.md) > [Web](Category:Web.md) > Artwork Web/ru diff --git a/wiki/translations/ru/Assembly.md b/wiki/translations/ru/Assembly.md index 8805f1a777..f15c650af9 100644 --- a/wiki/translations/ru/Assembly.md +++ b/wiki/translations/ru/Assembly.md @@ -1,6 +1,4 @@ # Assembly/ru - - ## Введение @@ -59,3 +57,6 @@ }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Assembly/ru diff --git a/wiki/translations/ru/Assembly2_Workbench.md b/wiki/translations/ru/Assembly2_Workbench.md index 6c519a594e..23761ab300 100644 --- a/wiki/translations/ru/Assembly2_Workbench.md +++ b/wiki/translations/ru/Assembly2_Workbench.md @@ -1,7 +1,4 @@ # Assembly2 Workbench/ru - - - **Верстак Assembly2 устарел. Его автор более не поддерживает его, так что он может не работать с FreeCAD версии 0.17 и выше. Информация на этой странице не поддерживается, и оставлена для исторических задач.** @@ -152,3 +149,6 @@ To update to the latest version, delete the assembly2 folder and redownload the [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Assembly2 Workbench/ru diff --git a/wiki/translations/ru/Assembly3_Workbench.md b/wiki/translations/ru/Assembly3_Workbench.md index 52761087dd..6db88bd117 100644 --- a/wiki/translations/ru/Assembly3_Workbench.md +++ b/wiki/translations/ru/Assembly3_Workbench.md @@ -1,7 +1,4 @@ -# Assembly3 Workbench/ru - - -Assembly3 workbench icon +# Assembly3 workbench icon Assembly3 Workbench/ru {{TOCright}} @@ -729,3 +726,6 @@ Assembly3 не предлагает смещение с константами, [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Assembly3 Workbench/ru diff --git a/wiki/translations/ru/Assembly4_Workbench.md b/wiki/translations/ru/Assembly4_Workbench.md index 755fe74006..8b3109758a 100644 --- a/wiki/translations/ru/Assembly4_Workbench.md +++ b/wiki/translations/ru/Assembly4_Workbench.md @@ -1,7 +1,4 @@ -# Assembly4 Workbench/ru - - -External workbench icon +# External workbench icon Assembly4 Workbench/ru ## Введение @@ -47,3 +44,6 @@ Assembly4 создавался под влиянием верстаков Assembly4 Workbench/ru diff --git a/wiki/translations/ru/Assembly_Workbench.md b/wiki/translations/ru/Assembly_Workbench.md index 79b82efe4b..127f57b720 100644 --- a/wiki/translations/ru/Assembly_Workbench.md +++ b/wiki/translations/ru/Assembly_Workbench.md @@ -1,2 +1,5 @@ # Assembly Workbench/ru 1. REDIRECT [Assembly project/ru](Assembly_project/ru.md) + +--- +[documentation index](../README.md) > Assembly Workbench/ru diff --git a/wiki/translations/ru/Assembly_project.md b/wiki/translations/ru/Assembly_project.md index 0108d30aba..5a3ec15620 100644 --- a/wiki/translations/ru/Assembly_project.md +++ b/wiki/translations/ru/Assembly_project.md @@ -1,7 +1,4 @@ # Assembly project/ru - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -165,3 +162,6 @@ Assembly потребует некоторые изменения в базов - \... [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Assembly project/ru diff --git a/wiki/translations/ru/Axonometric_view.md b/wiki/translations/ru/Axonometric_view.md index 074718a075..1edc114960 100644 --- a/wiki/translations/ru/Axonometric_view.md +++ b/wiki/translations/ru/Axonometric_view.md @@ -1,2 +1,5 @@ # Axonometric view/ru 1. REDIRECT [Std\_View\_Menu/ru](Std_View_Menu/ru.md) + +--- +[documentation index](../README.md) > Axonometric view/ru diff --git a/wiki/translations/ru/B-Splines.md b/wiki/translations/ru/B-Splines.md index 2846c55eda..ffbae1bc14 100644 --- a/wiki/translations/ru/B-Splines.md +++ b/wiki/translations/ru/B-Splines.md @@ -1,5 +1,5 @@ # B-Splines/ru - {{TOCright}} +{{TOCright}} This page describes how to use B-splines in FreeCAD. It gives also background information what B-splines are and for what applications they are useful. @@ -257,3 +257,6 @@ But is this really sufficient? At the point of geometric transition we have now So we have also spatial areas in which the intensity of reflected light is different. To avoid this, we need at the geometrical point of transition also a continuity of the second order derivative and thus a cubic B-spline. + +--- +[documentation index](../README.md) > B-Splines/ru diff --git a/wiki/translations/ru/BIM_Box.md b/wiki/translations/ru/BIM_Box.md index 29bd13dfc9..757ebdf9f3 100644 --- a/wiki/translations/ru/BIM_Box.md +++ b/wiki/translations/ru/BIM_Box.md @@ -7,6 +7,8 @@ SeeAlso:[[Part Box]] --- +# BIM Box/ru +
@@ -35,3 +37,6 @@ 3. Click a second point to define a first edge of the box, starting from the first point 4. Click a third point to define a first face of the box, orthogonal to the first edge 5. Click a fourth point to define the extrusion distance of the first face, forming the final box + +--- +[documentation index](../README.md) > BIM Box/ru diff --git a/wiki/translations/ru/BIM_Copy.md b/wiki/translations/ru/BIM_Copy.md index 0fe252c6d3..b6fabc91d8 100644 --- a/wiki/translations/ru/BIM_Copy.md +++ b/wiki/translations/ru/BIM_Copy.md @@ -7,6 +7,8 @@ SeeAlso:[[Draft Move]] --- +# BIM Copy/ru + @@ -20,3 +22,5 @@ +--- +[documentation index](../README.md) > BIM Copy/ru diff --git a/wiki/translations/ru/BIM_Library.md b/wiki/translations/ru/BIM_Library.md index 7038b6599a..606974cfd6 100644 --- a/wiki/translations/ru/BIM_Library.md +++ b/wiki/translations/ru/BIM_Library.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Equipment](Arch_Equipment/ru.md) --- +# BIM Library/ru + ## Описание Инструмент «Библиотека BIM» позволяет разместить в текущей модели объект из [FreeCAD Parts Library](Parts_Library.md), который должен быть установлен с помощью [Addon Manager](Addon_Manager.md), чтобы этот инструмент был доступен. @@ -36,3 +38,6 @@ [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM Library/ru diff --git a/wiki/translations/ru/BIM_Project.md b/wiki/translations/ru/BIM_Project.md index 249bc4f2b9..0b8a83047c 100644 --- a/wiki/translations/ru/BIM_Project.md +++ b/wiki/translations/ru/BIM_Project.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Project --- +# BIM Project/ru + @@ -29,3 +31,6 @@ The Project tool supports two kinds of templates: Once you have filled the different options, the contents of the BIM project setup wizard can be **saved** as a template. These templates can be **restored** and adapted at a later time. Project templates are stored as plain text files in your FreeCAD user folder. Alternatively, you can also save the contents of the current document as a template. This will save the currently opened document as a standard **.FCStd** file, but also include additional BIM settings like the current working plane, or current units. By using the **restore** option anytime, the contents of that template file will be merged into the active document and all settings found in it applied. + +--- +[documentation index](../README.md) > BIM Project/ru diff --git a/wiki/translations/ru/BIM_Setup.md b/wiki/translations/ru/BIM_Setup.md index a17e16d70d..4798f395dd 100644 --- a/wiki/translations/ru/BIM_Setup.md +++ b/wiki/translations/ru/BIM_Setup.md @@ -6,6 +6,8 @@ MenuLocation:Manage → Setup --- +# BIM Setup/ru + ## Описание @@ -13,3 +15,6 @@ Система предпочтений FreeCAD, расположенная в меню «Редактировать -\> Настройки», очень сложна. Диалоговое окно **BIM setup** предлагает упрощенную версию, собрав некоторые настройки параметров, наиболее часто используемые для работы BIM, на одном простом экране. Изменение любого из параметров предпочтений имеет тот же эффект, что и изменение соответствующей настройки в разделе «Редактирование -\> Настройки». Наведите указатель мыши на каждый параметр, вам будет показан ttoltip, объясняющий, для чего он используется, и расположение соответствующего параметра в общей системе предпочтений FreeCAD. + +--- +[documentation index](../README.md) > BIM Setup/ru diff --git a/wiki/translations/ru/BIM_Workbench.md b/wiki/translations/ru/BIM_Workbench.md index e0674382a4..bbf3dd0a2a 100644 --- a/wiki/translations/ru/BIM_Workbench.md +++ b/wiki/translations/ru/BIM_Workbench.md @@ -1,8 +1,4 @@ -# BIM Workbench/ru - - - -Иконка верстака BIM. Данный верстак является внешним. +# Иконка верстака BIM. Данный верстак является внешним. BIM Workbench/ru {{TOCright}} @@ -187,3 +183,6 @@ New workbenches are in development, stay tuned! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > BIM Workbench/ru diff --git a/wiki/translations/ru/BIM_ingame_tutorial.md b/wiki/translations/ru/BIM_ingame_tutorial.md index 3c75e2dad9..679c897cce 100644 --- a/wiki/translations/ru/BIM_ingame_tutorial.md +++ b/wiki/translations/ru/BIM_ingame_tutorial.md @@ -1,8 +1,4 @@ -# BIM ingame tutorial/ru - - - - +# BIM ingame tutorial/ru {{BIMTutorialAction @@ -522,3 +518,6 @@ FreeCAD is free software, developed by an enthusiast community of users, some of {{BIMTutorialAction|descr=No action to perform for this step}} [Category:BIM](Category:BIM.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > BIM ingame tutorial/ru diff --git a/wiki/translations/ru/Basic_Part_Design_Tutorial.md b/wiki/translations/ru/Basic_Part_Design_Tutorial.md index c5a876cfd2..6cb91abdc8 100644 --- a/wiki/translations/ru/Basic_Part_Design_Tutorial.md +++ b/wiki/translations/ru/Basic_Part_Design_Tutorial.md @@ -1,7 +1,4 @@ # Basic Part Design Tutorial/ru - - -
@@ -169,4 +166,7 @@ Close the Sketcher. {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Part Design Tutorial/ru diff --git a/wiki/translations/ru/Basic_Part_Design_Tutorial_017.md b/wiki/translations/ru/Basic_Part_Design_Tutorial_017.md index dc1f99c5a4..ce4254658a 100644 --- a/wiki/translations/ru/Basic_Part_Design_Tutorial_017.md +++ b/wiki/translations/ru/Basic_Part_Design_Tutorial_017.md @@ -1,2 +1,5 @@ # Basic Part Design Tutorial 017/ru 1. REDIRECT [Basic\_Part\_Design\_Tutorial/ru](Basic_Part_Design_Tutorial/ru.md) + +--- +[documentation index](../README.md) > Basic Part Design Tutorial 017/ru diff --git a/wiki/translations/ru/Basic_Sketcher_Tutorial.md b/wiki/translations/ru/Basic_Sketcher_Tutorial.md index c64b256945..dbf97c292f 100644 --- a/wiki/translations/ru/Basic_Sketcher_Tutorial.md +++ b/wiki/translations/ru/Basic_Sketcher_Tutorial.md @@ -1,7 +1,4 @@ # Basic Sketcher Tutorial/ru - - -
@@ -298,4 +295,7 @@ Constraining a sketch can be done in many different ways. In general, it is reco {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Sketcher Tutorial/ru diff --git a/wiki/translations/ru/Basic_TechDraw_Tutorial.md b/wiki/translations/ru/Basic_TechDraw_Tutorial.md index c03cf02eeb..51aeee83d2 100644 --- a/wiki/translations/ru/Basic_TechDraw_Tutorial.md +++ b/wiki/translations/ru/Basic_TechDraw_Tutorial.md @@ -1,5 +1,5 @@ # Basic TechDraw Tutorial/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic=Моделирование |Level=Для начинающих |Author=[WandererFan](User:WandererFan.md) @@ -186,4 +186,7 @@ {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > Basic TechDraw Tutorial/ru diff --git a/wiki/translations/ru/Basic_modeling_tutorial.md b/wiki/translations/ru/Basic_modeling_tutorial.md index 3a8b47dc21..75b1488889 100644 --- a/wiki/translations/ru/Basic_modeling_tutorial.md +++ b/wiki/translations/ru/Basic_modeling_tutorial.md @@ -1,5 +1,5 @@ # Basic modeling tutorial/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic= Introduction to modelling |Level= Beginner |Time= 15 minutes @@ -131,4 +131,7 @@ The above instructions will work, no matter what label your button has. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Basic modeling tutorial/ru diff --git a/wiki/translations/ru/Bitmap.md b/wiki/translations/ru/Bitmap.md index cbd184f80f..f75a3235d2 100644 --- a/wiki/translations/ru/Bitmap.md +++ b/wiki/translations/ru/Bitmap.md @@ -1,6 +1,4 @@ # Bitmap/ru - - ## Описание [Bitmaps](https://en.wikipedia.org/wiki/Bitmap) or [raster graphics](http://en.wikipedia.org/wiki/Raster_graphics) are 2D images that are collections of pixels painted of different color shades. Together, thousands or millions of these pixels are able to represent an image or color picture to the human eye. @@ -23,3 +21,6 @@ FreeCAD can import bitmap images using the [Image Workbench](Image_Workbench.md) [Category:User Documentation](Category:User_Documentation.md) [Category:TechDraw](Category:TechDraw.md) [Category:Image](Category:Image.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Bitmap/ru diff --git a/wiki/translations/ru/Body.md b/wiki/translations/ru/Body.md index 1746e10511..d9bd299ee9 100644 --- a/wiki/translations/ru/Body.md +++ b/wiki/translations/ru/Body.md @@ -1,6 +1,4 @@ # Body/ru - - ## Введение В FreeCAD слово \"[Тело(Body)](Body/ru.md)\" обычно используется для ссылки на объект [Тело](PartDesign_Body/ru.md) (класс `PartDesign::Body`), определённый в [верстаке PartDesign](PartDesign_Workbench/ru.md). Это контейнер, который может содержать [2-х мерный параметрический эскиз](Sketch/ru.md) и [3-х мерные геометрические операции(функций)](PartDesign_Feature/ru.md) для создания твёрдого тела. @@ -29,3 +27,6 @@ Body не требуется при использовании [верстака }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Body/ru diff --git a/wiki/translations/ru/Branding.md b/wiki/translations/ru/Branding.md index 383efb8ee9..64d9b128a4 100644 --- a/wiki/translations/ru/Branding.md +++ b/wiki/translations/ru/Branding.md @@ -1,10 +1,4 @@ # Branding/ru - - - - - - {{TOCright}} ## Overview @@ -122,3 +116,6 @@ All listed tags are optional. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Branding/ru diff --git a/wiki/translations/ru/Bug_Triage.md b/wiki/translations/ru/Bug_Triage.md index 21a2185739..d0b4706a11 100644 --- a/wiki/translations/ru/Bug_Triage.md +++ b/wiki/translations/ru/Bug_Triage.md @@ -1,10 +1,4 @@ # Bug Triage/ru - - - - - - {{TOCright}} ## Для чего @@ -155,3 +149,6 @@ An important methodology to track tickets by a certain subject/theme/category. I [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Bug Triage/ru diff --git a/wiki/translations/ru/Builtin_modules.md b/wiki/translations/ru/Builtin_modules.md index abaa31ac11..9c803ce12b 100644 --- a/wiki/translations/ru/Builtin_modules.md +++ b/wiki/translations/ru/Builtin_modules.md @@ -1,5 +1,5 @@ # Builtin modules/ru - **(October 2019) Do not edit these pages. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself by following [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit these pages. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself by following [Source documentation](Source_documentation.md).** This page presents more in-depth information over the built-in FreeCAD modules, and what are the functions and properties availible to you. This page is not a complete list of all the contents of these modules, and, because of the fast evolution of FreeCAD, the information presented here might be slightly outdated, but it should give you a good overview of the possibilities. For complete list of the modules content, use the dir(module) function in the interpreter. @@ -25,3 +25,6 @@ This page presents more in-depth information over the built-in FreeCAD modules, }} [Category:API](Category:API.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Builtin modules/ru diff --git a/wiki/translations/ru/CAM_project.md b/wiki/translations/ru/CAM_project.md index 49150097e6..97188ef71d 100644 --- a/wiki/translations/ru/CAM_project.md +++ b/wiki/translations/ru/CAM_project.md @@ -1,7 +1,10 @@ # CAM project/ru - Верстак и проект CAM устарели. См. вместо этого [Верстак Path](Path_Workbench/ru.md) +Верстак и проект CAM устарели. См. вместо этого [Верстак Path](Path_Workbench/ru.md) [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > CAM project/ru diff --git a/wiki/translations/ru/Category:3rd_Party.md b/wiki/translations/ru/Category:3rd_Party.md index adab42eac4..03cbf55996 100644 --- a/wiki/translations/ru/Category:3rd_Party.md +++ b/wiki/translations/ru/Category:3rd_Party.md @@ -4,3 +4,6 @@ External aka 3rd-Party applications/libraries that FreeCAD depends on or are of ### Contents: [3Dconnexion input devices/ru](3Dconnexion_input_devices/ru.md) , [Doxygen/ru](Doxygen/ru.md) , [Import/Export IFC - compiling IfcOpenShell/ru](Import/Export_IFC_-_compiling_IfcOpenShell/ru.md) , [OpenCamLib/ru](OpenCamLib/ru.md) , [Std DependencyGraph/ru](Std_DependencyGraph/ru.md) + +--- +[documentation index](../README.md) > Category:3rd Party/ru diff --git a/wiki/translations/ru/Category:API.md b/wiki/translations/ru/Category:API.md index a67f97030d..4d15cb5aaf 100644 --- a/wiki/translations/ru/Category:API.md +++ b/wiki/translations/ru/Category:API.md @@ -8,3 +8,6 @@ This category gathers article that list objects and methods available to the pyt [Arch API/ru](Arch_API/ru.md) , [Builtin modules/ru](Builtin_modules/ru.md) , [Draft API/ru](Draft_API/ru.md) , [FeaturePython Custom Properties/ru](FeaturePython_Custom_Properties/ru.md) , [FreeCAD API/ru](FreeCAD_API/ru.md) , [Part API/ru](Part_API/ru.md) , [TechDraw API/ru](TechDraw_API/ru.md) , [TechDrawGui API/ru](TechDrawGui_API/ru.md) [Category:Categories/ru](Category:Categories/ru.md) + +--- +[documentation index](../README.md) > Category:API/ru diff --git a/wiki/translations/ru/Category:API_Documentation.md b/wiki/translations/ru/Category:API_Documentation.md index 9ca73b0011..220419bbbf 100644 --- a/wiki/translations/ru/Category:API_Documentation.md +++ b/wiki/translations/ru/Category:API_Documentation.md @@ -6,3 +6,6 @@ This category gathers all articles documenting the python API of FreeCAD and its [Python/ru](Python/ru.md) [Category:Documentation/ru](Category:Documentation/ru.md) + +--- +[documentation index](../README.md) > Category:API Documentation/ru diff --git a/wiki/translations/ru/Category:Addons.md b/wiki/translations/ru/Category:Addons.md index 34f87c362d..2b4aa66bd0 100644 --- a/wiki/translations/ru/Category:Addons.md +++ b/wiki/translations/ru/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/ru - - На этой странице перечислены внешние верстаки надстроек(addons), у которых есть страница в этой вики. Надстройки-это модули или верстаки, созданные сообществом и не являющиеся частью стандартного FreeCAD. **ВАЖНО!** В списке представлены только категории имеющие страницы на русском языке. Полный список см. английскую версию страницы! ### Contents: @@ -8,3 +6,6 @@ [A2plus Workbench/ru](A2plus_Workbench/ru.md) , [Addon/ru](Addon/ru.md) , [Animation Workbench/ru](Animation_Workbench/ru.md) , [Assembly2 Workbench/ru](Assembly2_Workbench/ru.md) , [Assembly3 Workbench/ru](Assembly3_Workbench/ru.md) , [Assembly4 Workbench/ru](Assembly4_Workbench/ru.md) , [BIM Workbench/ru](BIM_Workbench/ru.md) , [Cfd Workbench/ru](Cfd_Workbench/ru.md) , [External workbenches/ru](External_workbenches/ru.md) , [Fasteners Workbench/ru](Fasteners_Workbench/ru.md) , [How to install additional workbenches/ru](How_to_install_additional_workbenches/ru.md) , [Lattice2 Workbench/ru](Lattice2_Workbench/ru.md) , [Macro WorkFeatures/ru](Macro_WorkFeatures/ru.md) , [Manipulator Workbench/ru](Manipulator_Workbench/ru.md) , [Plot Axes/ru](Plot_Axes/ru.md) , [Plot Basic tutorial/ru](Plot_Basic_tutorial/ru.md) , [Plot Grid/ru](Plot_Grid/ru.md) , [Plot Labels/ru](Plot_Labels/ru.md) , [Plot Legend/ru](Plot_Legend/ru.md) , [Plot Module/ru](Plot_Module/ru.md) , [Plot MultiAxes tutorial/ru](Plot_MultiAxes_tutorial/ru.md) , [Plot Positions/ru](Plot_Positions/ru.md) , [Plot Save/ru](Plot_Save/ru.md) , [Plot Series/ru](Plot_Series/ru.md) , [Reinforcement Workbench/ru](Reinforcement_Workbench/ru.md) , [Render project/ru](Render_project/ru.md) , [Rocket Workbench/ru](Rocket_Workbench/ru.md) , [SheetMetal Workbench/ru](SheetMetal_Workbench/ru.md) , [Ship Workbench/ru](Ship_Workbench/ru.md) , [Workfeature Workbench/ru](Workfeature_Workbench/ru.md) , [Category:Categories](Category:Categories.md) [Category:External Workbenches/ru](Category:External_Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Addons/ru diff --git a/wiki/translations/ru/Category:Administration.md b/wiki/translations/ru/Category:Administration.md index 40b24df063..2051adffc8 100644 --- a/wiki/translations/ru/Category:Administration.md +++ b/wiki/translations/ru/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/ru](Template:Arch_Tools_navi/ru.md) , [Bug Triage/ru](Bug_Triage/ru.md) , [Changelog/ru](Changelog/ru.md) , [Crowdin Administration/ru](Crowdin_Administration/ru.md) , [Crowdin Scripts/ru](Crowdin_Scripts/ru.md) , [Template:Document objects navi/ru](Template:Document_objects_navi/ru.md) , [Template:Drawing Tools navi/ru](Template:Drawing_Tools_navi/ru.md) , [Template:FEM Tools navi/ru](Template:FEM_Tools_navi/ru.md) , [Template:Interface navi/ru](Template:Interface_navi/ru.md) , [Template:Mesh Tools navi/ru](Template:Mesh_Tools_navi/ru.md) , [Template:OpenSCAD Tools navi/ru](Template:OpenSCAD_Tools_navi/ru.md) , [Organization chart/ru](Organization_chart/ru.md) , [Template:Part Tools navi/ru](Template:Part_Tools_navi/ru.md) , [Template:PartDesign Tools navi/ru](Template:PartDesign_Tools_navi/ru.md) , [Template:Path Tools navi/ru](Template:Path_Tools_navi/ru.md) , [Template:Plot Tools navi/ru](Template:Plot_Tools_navi/ru.md) , [Template:Powerdocnavi/ru](Template:Powerdocnavi/ru.md) , [Template:PropertyData/ru](Template:PropertyData/ru.md) , [Template:PropertyView/ru](Template:PropertyView/ru.md) , [Template:Raytracing Tools navi/ru](Template:Raytracing_Tools_navi/ru.md) , [Template:Robot Tools navi/ru](Template:Robot_Tools_navi/ru.md) , [Template:Ship Tools navi/ru](Template:Ship_Tools_navi/ru.md) , [Template:Sketcher Tools navi/ru](Template:Sketcher_Tools_navi/ru.md) , [Template:Spreadsheet Tools navi/ru](Template:Spreadsheet_Tools_navi/ru.md) , [Template:Std Base navi/ru](Template:Std_Base_navi/ru.md) , [Template:Std Base/ru](Template:Std_Base/ru.md) , [Tracker/ru](Tracker/ru.md) , [Template:Tutorials navi/ru](Template:Tutorials_navi/ru.md) , [Template:UnfinishedDocu/ru](Template:UnfinishedDocu/ru.md) , [WikiPages/ru](WikiPages/ru.md) , [Category:Categories/ru](Category:Categories/ru.md) [Category:Wiki/ru](Category:Wiki/ru.md) + +--- +[documentation index](../README.md) > Category:Administration/ru diff --git a/wiki/translations/ru/Category:Arch.md b/wiki/translations/ru/Category:Arch.md index 33c8aa7800..bcf00d2111 100644 --- a/wiki/translations/ru/Category:Arch.md +++ b/wiki/translations/ru/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Arch 3DS/ru](Arch_3DS/ru.md) , [Arch 3Views/ru](Arch_3Views/ru.md) , [Arch Add/ru](Arch_Add/ru.md) , [Arch API/ru](Arch_API/ru.md) , [Arch Axis/ru](Arch_Axis/ru.md) , [Arch AxisSystem/ru](Arch_AxisSystem/ru.md) , [Arch Building/ru](Arch_Building/ru.md) , [Arch BuildingPart/ru](Arch_BuildingPart/ru.md) , [Arch Check/ru](Arch_Check/ru.md) , [Arch CloneComponent/ru](Arch_CloneComponent/ru.md) , [Arch CloseHoles/ru](Arch_CloseHoles/ru.md) , [Arch CompAxis/ru](Arch_CompAxis/ru.md) , [Arch Component/ru](Arch_Component/ru.md) , [Arch CompPanel/ru](Arch_CompPanel/ru.md) , [Arch CompPipe/ru](Arch_CompPipe/ru.md) , [Arch CompRebarStraight/ru](Arch_CompRebarStraight/ru.md) , [Arch CompSetMaterial/ru](Arch_CompSetMaterial/ru.md) , [Arch CurtainWall/ru](Arch_CurtainWall/ru.md) , [Arch CutPlane/ru](Arch_CutPlane/ru.md) , [Arch DAE/ru](Arch_DAE/ru.md) , [Arch Door/ru](Arch_Door/ru.md) , [Arch Equipment/ru](Arch_Equipment/ru.md) , [Arch Fence/ru](Arch_Fence/ru.md) , [Arch Floor/ru](Arch_Floor/ru.md) , [Arch Frame/ru](Arch_Frame/ru.md) , [Arch Grid/ru](Arch_Grid/ru.md) , [Arch IFC/ru](Arch_IFC/ru.md) , [Arch IfcExplorer/ru](Arch_IfcExplorer/ru.md) , [Arch IfcSpreadsheet/ru](Arch_IfcSpreadsheet/ru.md) , [Arch JSON/ru](Arch_JSON/ru.md) , [Arch MergeWalls/ru](Arch_MergeWalls/ru.md) , [Arch MeshToShape/ru](Arch_MeshToShape/ru.md) , [Arch MultiMaterial/ru](Arch_MultiMaterial/ru.md) , [Arch Nest/ru](Arch_Nest/ru.md) , [Arch OBJ/ru](Arch_OBJ/ru.md) , [Arch Panel Cut/ru](Arch_Panel_Cut/ru.md) , [Arch Panel Sheet/ru](Arch_Panel_Sheet/ru.md) , [Arch panel tutorial/ru](Arch_panel_tutorial/ru.md) , [Arch Panel/ru](Arch_Panel/ru.md) , [Arch Pipe/ru](Arch_Pipe/ru.md) , [Arch PipeConnector/ru](Arch_PipeConnector/ru.md) , [Arch Preferences/ru](Arch_Preferences/ru.md) , [Arch Rebar BeamReinforcement/ru](Arch_Rebar_BeamReinforcement/ru.md) , [Arch Rebar BentShape/ru](Arch_Rebar_BentShape/ru.md) , [Arch Rebar Circular ColumnReinforcement/ru](Arch_Rebar_Circular_ColumnReinforcement/ru.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/ru](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/ru.md) , [Arch Rebar ColumnReinforcement/ru](Arch_Rebar_ColumnReinforcement/ru.md) , [Arch Rebar Drawing Dimensioning/ru](Arch_Rebar_Drawing_Dimensioning/ru.md) , [Arch Rebar Helical/ru](Arch_Rebar_Helical/ru.md) , [Arch Rebar LShape/ru](Arch_Rebar_LShape/ru.md) , [Arch Rebar Stirrup/ru](Arch_Rebar_Stirrup/ru.md) , [Arch Rebar Straight/ru](Arch_Rebar_Straight/ru.md) , [Arch Rebar UShape/ru](Arch_Rebar_UShape/ru.md) , [Arch Rebar/ru](Arch_Rebar/ru.md) , [Arch Reference/ru](Arch_Reference/ru.md) , [Arch Remove/ru](Arch_Remove/ru.md) , [Arch RemoveShape/ru](Arch_RemoveShape/ru.md) , [Arch Roof/ru](Arch_Roof/ru.md) , [Arch Schedule/ru](Arch_Schedule/ru.md) , [Arch SectionPlane/ru](Arch_SectionPlane/ru.md) , [Arch SelectNonSolidMeshes/ru](Arch_SelectNonSolidMeshes/ru.md) , [Arch SetMaterial/ru](Arch_SetMaterial/ru.md) , [Arch Site/ru](Arch_Site/ru.md) , [Arch Space/ru](Arch_Space/ru.md) , [Arch SplitMesh/ru](Arch_SplitMesh/ru.md) , [Arch Stairs/ru](Arch_Stairs/ru.md) , [Arch Structure/ru](Arch_Structure/ru.md) , [Arch Survey/ru](Arch_Survey/ru.md) , [Arch ToggleIfcBrepFlag/ru](Arch_ToggleIfcBrepFlag/ru.md) , [Arch ToggleSubs/ru](Arch_ToggleSubs/ru.md) , [Template:Arch Tools navi/ru](Template:Arch_Tools_navi/ru.md) , [Arch Truss/ru](Arch_Truss/ru.md) , [Arch tutorial/ru](Arch_tutorial/ru.md) , [Arch Wall/ru](Arch_Wall/ru.md) , [Arch Window/ru](Arch_Window/ru.md) , [Arch Workbench/ru](Arch_Workbench/ru.md) , [Artwork Arch/ru](Artwork_Arch/ru.md) , [BIM Library/ru](BIM_Library/ru.md) , [Custom Spacing/ru](Custom_Spacing/ru.md) , [Import/Export IFC - compiling IfcOpenShell/ru](Import/Export_IFC_-_compiling_IfcOpenShell/ru.md) , [Manual:BIM modeling/ru](Manual:BIM_modeling/ru.md) , [Material editor/ru](Material_editor/ru.md) , [Material/ru](Material/ru.md) , [Tutorial custom placing of windows and doors/ru](Tutorial_custom_placing_of_windows_and_doors/ru.md) , [Tutorial for open windows/ru](Tutorial_for_open_windows/ru.md) , [Category:User Documentation/ru](Category:User_Documentation/ru.md) [Category:BIM/ru](Category:BIM/ru.md) [Category:Reinforcement/ru](Category:Reinforcement/ru.md) + +--- +[documentation index](../README.md) > Category:Arch/ru diff --git a/wiki/translations/ru/Category:BIM.md b/wiki/translations/ru/Category:BIM.md index 9e8ac9c169..cb458f08e8 100644 --- a/wiki/translations/ru/Category:BIM.md +++ b/wiki/translations/ru/Category:BIM.md @@ -6,3 +6,6 @@ This category is for pages related to building information management (BIM). [Arch IfcExplorer/ru](Arch_IfcExplorer/ru.md) , [BIM ingame tutorial/ru](BIM_ingame_tutorial/ru.md) , [BIM Library/ru](BIM_Library/ru.md) , [BIM Workbench/ru](BIM_Workbench/ru.md) , [Import/Export IFC - compiling IfcOpenShell/ru](Import/Export_IFC_-_compiling_IfcOpenShell/ru.md) , [Manual:BIM modeling/ru](Manual:BIM_modeling/ru.md) , [Material/ru](Material/ru.md) , [Category:User Documentation/ru](Category:User_Documentation/ru.md) [Category:Arch/ru](Category:Arch/ru.md) + +--- +[documentation index](../README.md) > Category:BIM/ru diff --git a/wiki/translations/ru/Category:Base.md b/wiki/translations/ru/Category:Base.md index e32db6822e..e0b59d07ca 100644 --- a/wiki/translations/ru/Category:Base.md +++ b/wiki/translations/ru/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/ru](Category:User_Documentation/ru.md) + +--- +[documentation index](../README.md) > Category:Base/ru diff --git a/wiki/translations/ru/Category:Categories.md b/wiki/translations/ru/Category:Categories.md index 0cf6d9f1d4..0c6fab44e6 100644 --- a/wiki/translations/ru/Category:Categories.md +++ b/wiki/translations/ru/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , , , , , , , , , , [Category:Categories/ru](Category:Categories/ru.md) [Category:Addons/ru](Category:Addons/ru.md) [Category:Administration/ru](Category:Administration/ru.md) [Category:API/ru](Category:API/ru.md) [Category:Categories/ru](Category:Categories/ru.md) [Category:Command Reference/ru](Category:Command_Reference/ru.md) [Category:Developer/ru](Category:Developer/ru.md) [Category:Documentation/ru](Category:Documentation/ru.md) [Category:Help/ru](Category:Help/ru.md) [Category:Hubs/ru](Category:Hubs/ru.md) [Category:Macros/ru](Category:Macros/ru.md) [Category:News/ru](Category:News/ru.md) [Category:Python Code/ru](Category:Python_Code/ru.md) [Category:Repository/ru](Category:Repository/ru.md) [Category:Roadmap/ru](Category:Roadmap/ru.md) [Category:Template/ru](Category:Template/ru.md) [Category:Tutorials/ru](Category:Tutorials/ru.md) [Category:Wiki/ru](Category:Wiki/ru.md) + +--- +[documentation index](../README.md) > Category:Categories/ru diff --git a/wiki/translations/ru/Category:Command_Reference.md b/wiki/translations/ru/Category:Command_Reference.md index 86d60b375e..79bc75538d 100644 --- a/wiki/translations/ru/Category:Command_Reference.md +++ b/wiki/translations/ru/Category:Command_Reference.md @@ -6,3 +6,6 @@ [Arch 3Views/ru](Arch_3Views/ru.md) , [Arch Add/ru](Arch_Add/ru.md) , [Arch Axis/ru](Arch_Axis/ru.md) , [Arch AxisSystem/ru](Arch_AxisSystem/ru.md) , [Arch Building/ru](Arch_Building/ru.md) , [Arch BuildingPart/ru](Arch_BuildingPart/ru.md) , [Arch Check/ru](Arch_Check/ru.md) , [Arch CloneComponent/ru](Arch_CloneComponent/ru.md) , [Arch CloseHoles/ru](Arch_CloseHoles/ru.md) , [Arch CompAxis/ru](Arch_CompAxis/ru.md) , [Arch Component/ru](Arch_Component/ru.md) , [Arch CompPanel/ru](Arch_CompPanel/ru.md) , [Arch CompPipe/ru](Arch_CompPipe/ru.md) , [Arch CompRebarStraight/ru](Arch_CompRebarStraight/ru.md) , [Arch CompSetMaterial/ru](Arch_CompSetMaterial/ru.md) , [Arch CurtainWall/ru](Arch_CurtainWall/ru.md) , [Arch CutPlane/ru](Arch_CutPlane/ru.md) , [Arch Door/ru](Arch_Door/ru.md) , [Arch Equipment/ru](Arch_Equipment/ru.md) , [Arch Fence/ru](Arch_Fence/ru.md) , [Arch Floor/ru](Arch_Floor/ru.md) , [Arch Frame/ru](Arch_Frame/ru.md) , [Arch Grid/ru](Arch_Grid/ru.md) , [Arch IfcExplorer/ru](Arch_IfcExplorer/ru.md) , [Arch IfcSpreadsheet/ru](Arch_IfcSpreadsheet/ru.md) , [Arch MergeWalls/ru](Arch_MergeWalls/ru.md) , [Arch MeshToShape/ru](Arch_MeshToShape/ru.md) , [Arch MultiMaterial/ru](Arch_MultiMaterial/ru.md) , [Arch Nest/ru](Arch_Nest/ru.md) , [Arch Panel Cut/ru](Arch_Panel_Cut/ru.md) , [Arch Panel Sheet/ru](Arch_Panel_Sheet/ru.md) , [Arch Panel/ru](Arch_Panel/ru.md) , [Arch Pipe/ru](Arch_Pipe/ru.md) , [Arch PipeConnector/ru](Arch_PipeConnector/ru.md) , [Arch Rebar BeamReinforcement/ru](Arch_Rebar_BeamReinforcement/ru.md) , [Arch Rebar BentShape/ru](Arch_Rebar_BentShape/ru.md) , [Arch Rebar BOM/ru](Arch_Rebar_BOM/ru.md) , [Arch Rebar Circular ColumnReinforcement/ru](Arch_Rebar_Circular_ColumnReinforcement/ru.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/ru](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/ru.md) , [Arch Rebar ColumnReinforcement/ru](Arch_Rebar_ColumnReinforcement/ru.md) , [Arch Rebar Drawing Dimensioning/ru](Arch_Rebar_Drawing_Dimensioning/ru.md) , [Arch Rebar Helical/ru](Arch_Rebar_Helical/ru.md) , [Arch Rebar LShape/ru](Arch_Rebar_LShape/ru.md) , [Arch Rebar Stirrup/ru](Arch_Rebar_Stirrup/ru.md) , [Arch Rebar Straight/ru](Arch_Rebar_Straight/ru.md) , [Arch Rebar UShape/ru](Arch_Rebar_UShape/ru.md) , [Arch Rebar/ru](Arch_Rebar/ru.md) , [Arch Reference/ru](Arch_Reference/ru.md) , [Arch Remove/ru](Arch_Remove/ru.md) , [Arch RemoveShape/ru](Arch_RemoveShape/ru.md) , [Arch Roof/ru](Arch_Roof/ru.md) , [Arch Schedule/ru](Arch_Schedule/ru.md) , [Arch SectionPlane/ru](Arch_SectionPlane/ru.md) , [Arch SelectNonSolidMeshes/ru](Arch_SelectNonSolidMeshes/ru.md) , [Arch SetMaterial/ru](Arch_SetMaterial/ru.md) , [Arch Site/ru](Arch_Site/ru.md) , [Arch Space/ru](Arch_Space/ru.md) , [Arch SplitMesh/ru](Arch_SplitMesh/ru.md) , [Arch Stairs/ru](Arch_Stairs/ru.md) , [Arch Structure/ru](Arch_Structure/ru.md) , [Arch Survey/ru](Arch_Survey/ru.md) , [Arch ToggleIfcBrepFlag/ru](Arch_ToggleIfcBrepFlag/ru.md) , [Arch ToggleSubs/ru](Arch_ToggleSubs/ru.md) , [Arch Truss/ru](Arch_Truss/ru.md) , [Arch Wall/ru](Arch_Wall/ru.md) , [Arch Window/ru](Arch_Window/ru.md) , [BIM Box/ru](BIM_Box/ru.md) , [BIM Copy/ru](BIM_Copy/ru.md) , [BIM Library/ru](BIM_Library/ru.md) , [BIM Project/ru](BIM_Project/ru.md) , [BIM Setup/ru](BIM_Setup/ru.md) , [Draft AddConstruction/ru](Draft_AddConstruction/ru.md) , [Draft AddToGroup/ru](Draft_AddToGroup/ru.md) , [Draft AnnotationStyleEditor/ru](Draft_AnnotationStyleEditor/ru.md) , [Draft ApplyStyle/ru](Draft_ApplyStyle/ru.md) , [Draft Arc 3Points/ru](Draft_Arc_3Points/ru.md) , [Draft Arc/ru](Draft_Arc/ru.md) , [Draft Array/ru](Draft_Array/ru.md) , [Draft AutoGroup/ru](Draft_AutoGroup/ru.md) , [Draft BezCurve/ru](Draft_BezCurve/ru.md) , [Draft BSpline/ru](Draft_BSpline/ru.md) , [Draft Circle/ru](Draft_Circle/ru.md) , [Draft CircularArray/ru](Draft_CircularArray/ru.md) , [Draft Clone/ru](Draft_Clone/ru.md) , [Draft CubicBezCurve/ru](Draft_CubicBezCurve/ru.md) , [Draft Dimension/ru](Draft_Dimension/ru.md) , [Draft Downgrade/ru](Draft_Downgrade/ru.md) , [Draft Draft2Sketch/ru](Draft_Draft2Sketch/ru.md) , [Draft Drawing/ru](Draft_Drawing/ru.md) , [Draft Edit/ru](Draft_Edit/ru.md) , [Draft Ellipse/ru](Draft_Ellipse/ru.md) , [Draft Facebinder/ru](Draft_Facebinder/ru.md) , [Draft Fillet/ru](Draft_Fillet/ru.md) , [Draft FlipDimension/ru](Draft_FlipDimension/ru.md) , [Draft Heal/ru](Draft_Heal/ru.md) , [Draft Join/ru](Draft_Join/ru.md) , [Draft Label/ru](Draft_Label/ru.md) , [Draft Layer/ru](Draft_Layer/ru.md) , [Draft Line/ru](Draft_Line/ru.md) , [Draft Mirror/ru](Draft_Mirror/ru.md) , [Draft Move/ru](Draft_Move/ru.md) , [Draft Offset/ru](Draft_Offset/ru.md) , [Draft OrthoArray/ru](Draft_OrthoArray/ru.md) , [Draft PathArray/ru](Draft_PathArray/ru.md) , [Draft PathLinkArray/ru](Draft_PathLinkArray/ru.md) , [Draft Point/ru](Draft_Point/ru.md) , [Draft PointArray/ru](Draft_PointArray/ru.md) , [Draft PolarArray/ru](Draft_PolarArray/ru.md) , [Draft Polygon/ru](Draft_Polygon/ru.md) , [Draft Rectangle/ru](Draft_Rectangle/ru.md) , [Draft Rotate/ru](Draft_Rotate/ru.md) , [Draft Scale/ru](Draft_Scale/ru.md) , [Draft SelectGroup/ru](Draft_SelectGroup/ru.md) , [Draft SelectPlane/ru](Draft_SelectPlane/ru.md) , [Draft Shape2DView/ru](Draft_Shape2DView/ru.md) , [Draft ShapeString/ru](Draft_ShapeString/ru.md) , [Draft ShowSnapBar/ru](Draft_ShowSnapBar/ru.md) , [Draft Slope/ru](Draft_Slope/ru.md) , [Draft Snap Angle/ru](Draft_Snap_Angle/ru.md) , [Draft Snap Center/ru](Draft_Snap_Center/ru.md) , [Draft Snap Dimensions/ru](Draft_Snap_Dimensions/ru.md) , [Draft Snap Endpoint/ru](Draft_Snap_Endpoint/ru.md) , [Draft Snap Extension/ru](Draft_Snap_Extension/ru.md) , [Draft Snap Grid/ru](Draft_Snap_Grid/ru.md) , [Draft Snap Intersection/ru](Draft_Snap_Intersection/ru.md) , [Draft Snap Lock/ru](Draft_Snap_Lock/ru.md) , [Draft Snap Midpoint/ru](Draft_Snap_Midpoint/ru.md) , [Draft Snap Near/ru](Draft_Snap_Near/ru.md) , [Draft Snap Ortho/ru](Draft_Snap_Ortho/ru.md) , [Draft Snap Parallel/ru](Draft_Snap_Parallel/ru.md) , [Draft Snap Perpendicular/ru](Draft_Snap_Perpendicular/ru.md) , [Draft Snap Special/ru](Draft_Snap_Special/ru.md) , [Draft Snap WorkingPlane/ru](Draft_Snap_WorkingPlane/ru.md) , [Draft Split/ru](Draft_Split/ru.md) , [Draft Stretch/ru](Draft_Stretch/ru.md) , [Draft SubelementHighlight/ru](Draft_SubelementHighlight/ru.md) , [Draft Text/ru](Draft_Text/ru.md) , [Draft ToggleConstructionMode/ru](Draft_ToggleConstructionMode/ru.md) , [Draft ToggleContinueMode/ru](Draft_ToggleContinueMode/ru.md) , [Draft ToggleDisplayMode/ru](Draft_ToggleDisplayMode/ru.md) , [Draft ToggleGrid/ru](Draft_ToggleGrid/ru.md) , [Draft Trimex/ru](Draft_Trimex/ru.md) , [Draft Upgrade/ru](Draft_Upgrade/ru.md) , [Draft Wire/ru](Draft_Wire/ru.md) , [Draft WireToBSpline/ru](Draft_WireToBSpline/ru.md) , [Draft WorkingPlaneProxy/ru](Draft_WorkingPlaneProxy/ru.md) , [Drawing Annotation/ru](Drawing_Annotation/ru.md) , [Drawing Clip/ru](Drawing_Clip/ru.md) , [Drawing Landscape A3/ru](Drawing_Landscape_A3/ru.md) , [Drawing Open SVG/ru](Drawing_Open_SVG/ru.md) , [Drawing Openbrowser/ru](Drawing_Openbrowser/ru.md) , [Drawing Orthoviews/ru](Drawing_Orthoviews/ru.md) , [Drawing ProjectShape/ru](Drawing_ProjectShape/ru.md) , [Drawing Save/ru](Drawing_Save/ru.md) , [Drawing SpreadsheetView/ru](Drawing_SpreadsheetView/ru.md) , [Drawing Symbol/ru](Drawing_Symbol/ru.md) , [Drawing View/ru](Drawing_View/ru.md) , [Fasteners BOM/ru](Fasteners_BOM/ru.md) , [FEM Analysis/ru](FEM_Analysis/ru.md) , [FEM ClippingPlaneAdd/ru](FEM_ClippingPlaneAdd/ru.md) , [FEM ClippingPlaneRemoveAll/ru](FEM_ClippingPlaneRemoveAll/ru.md) , [FEM ConstraintBearing/ru](FEM_ConstraintBearing/ru.md) , [FEM ConstraintBodyHeatSource/ru](FEM_ConstraintBodyHeatSource/ru.md) , [FEM ConstraintContact/ru](FEM_ConstraintContact/ru.md) , [FEM ConstraintDisplacement/ru](FEM_ConstraintDisplacement/ru.md) , [FEM ConstraintElectrostaticPotential/ru](FEM_ConstraintElectrostaticPotential/ru.md) , [FEM ConstraintFixed/ru](FEM_ConstraintFixed/ru.md) , [FEM ConstraintFlowVelocity/ru](FEM_ConstraintFlowVelocity/ru.md) , [FEM ConstraintFluidBoundary/ru](FEM_ConstraintFluidBoundary/ru.md) , [FEM ConstraintForce/ru](FEM_ConstraintForce/ru.md) , [FEM ConstraintGear/ru](FEM_ConstraintGear/ru.md) , [FEM ConstraintHeatflux/ru](FEM_ConstraintHeatflux/ru.md) , [FEM ConstraintInitialFlowVelocity/ru](FEM_ConstraintInitialFlowVelocity/ru.md) , [FEM ConstraintInitialTemperature/ru](FEM_ConstraintInitialTemperature/ru.md) , [FEM ConstraintPlaneRotation/ru](FEM_ConstraintPlaneRotation/ru.md) , [FEM ConstraintPressure/ru](FEM_ConstraintPressure/ru.md) , [FEM ConstraintPulley/ru](FEM_ConstraintPulley/ru.md) , [FEM ConstraintSectionPrint/ru](FEM_ConstraintSectionPrint/ru.md) , [FEM ConstraintSelfWeight/ru](FEM_ConstraintSelfWeight/ru.md) , [FEM ConstraintTemperature/ru](FEM_ConstraintTemperature/ru.md) , [FEM ConstraintTransform/ru](FEM_ConstraintTransform/ru.md) , [FEM CreateNodesSet/ru](FEM_CreateNodesSet/ru.md) , [FEM ElementFluid1D/ru](FEM_ElementFluid1D/ru.md) , [FEM ElementGeometry1D/ru](FEM_ElementGeometry1D/ru.md) , [FEM ElementGeometry2D/ru](FEM_ElementGeometry2D/ru.md) , [FEM ElementRotation1D/ru](FEM_ElementRotation1D/ru.md) , [FEM EquationElasticity/ru](FEM_EquationElasticity/ru.md) , [FEM EquationElectrostatic/ru](FEM_EquationElectrostatic/ru.md) , [FEM EquationFlow/ru](FEM_EquationFlow/ru.md) , [FEM EquationFlux/ru](FEM_EquationFlux/ru.md) , [FEM EquationHeat/ru](FEM_EquationHeat/ru.md) , [FEM Examples/ru](FEM_Examples/ru.md) , [FEM FemMesh2Mesh/ru](FEM_FemMesh2Mesh/ru.md) , [FEM MaterialFluid/ru](FEM_MaterialFluid/ru.md) , [FEM MaterialMechanicalNonlinear/ru](FEM_MaterialMechanicalNonlinear/ru.md) , [FEM MaterialReinforced/ru](FEM_MaterialReinforced/ru.md) , [FEM MaterialSolid/ru](FEM_MaterialSolid/ru.md) , [FEM MeshBoundaryLayer/ru](FEM_MeshBoundaryLayer/ru.md) , [FEM MeshClear/ru](FEM_MeshClear/ru.md) , [FEM MeshDisplayInfo/ru](FEM_MeshDisplayInfo/ru.md) , [FEM MeshGmshFromShape/ru](FEM_MeshGmshFromShape/ru.md) , [FEM MeshGroup/ru](FEM_MeshGroup/ru.md) , [FEM MeshNetgenFromShape/ru](FEM_MeshNetgenFromShape/ru.md) , [FEM MeshRegion/ru](FEM_MeshRegion/ru.md) , [FEM PostApplyChanges/ru](FEM_PostApplyChanges/ru.md) , [FEM PostCreateFunctions/ru](FEM_PostCreateFunctions/ru.md) , [FEM PostFilterClipRegion/ru](FEM_PostFilterClipRegion/ru.md) , [FEM PostFilterClipScalar/ru](FEM_PostFilterClipScalar/ru.md) , [FEM PostFilterCutFunction/ru](FEM_PostFilterCutFunction/ru.md) , [FEM PostFilterDataAlongLine/ru](FEM_PostFilterDataAlongLine/ru.md) , [FEM PostFilterDataAtPoint/ru](FEM_PostFilterDataAtPoint/ru.md) , [FEM PostFilterLinearizedStresses/ru](FEM_PostFilterLinearizedStresses/ru.md) , [FEM PostFilterWarp/ru](FEM_PostFilterWarp/ru.md) , [FEM PostPipelineFromResult/ru](FEM_PostPipelineFromResult/ru.md) , [FEM ResultShow/ru](FEM_ResultShow/ru.md) , [FEM ResultsPurge/ru](FEM_ResultsPurge/ru.md) , [FEM SolverCalculiX/ru](FEM_SolverCalculiX/ru.md) , [FEM SolverCalculixCxxtools/ru](FEM_SolverCalculixCxxtools/ru.md) , [FEM SolverControl/ru](FEM_SolverControl/ru.md) , [FEM SolverElmer/ru](FEM_SolverElmer/ru.md) , [FEM SolverRun/ru](FEM_SolverRun/ru.md) , [FEM SolverZ88/ru](FEM_SolverZ88/ru.md) , [GuiCommand model/ru](GuiCommand_model/ru.md) , [Template:GuiCommand/ru](Template:GuiCommand/ru.md) , [Template:GuiCommandAddon/ru](Template:GuiCommandAddon/ru.md) , [Image CreateImagePlane/ru](Image_CreateImagePlane/ru.md) , [Image Open/ru](Image_Open/ru.md) , [Image Scaling/ru](Image_Scaling/ru.md) , [Material editor/ru](Material_editor/ru.md) , [Mesh BoundingBox/ru](Mesh_BoundingBox/ru.md) , [Mesh BuildRegularSolid/ru](Mesh_BuildRegularSolid/ru.md) , [Mesh CurvatureInfo/ru](Mesh_CurvatureInfo/ru.md) , [Mesh Difference/ru](Mesh_Difference/ru.md) , [Mesh EvaluateFacet/ru](Mesh_EvaluateFacet/ru.md) , [Mesh EvaluateSolid/ru](Mesh_EvaluateSolid/ru.md) , [Mesh Evaluation/ru](Mesh_Evaluation/ru.md) , [Mesh Export/ru](Mesh_Export/ru.md) , [Mesh FillInteractiveHole/ru](Mesh_FillInteractiveHole/ru.md) , [Mesh FlipNormals/ru](Mesh_FlipNormals/ru.md) , [Mesh FromPartShape/ru](Mesh_FromPartShape/ru.md) , [Mesh HarmonizeNormals/ru](Mesh_HarmonizeNormals/ru.md) , [Mesh Import/ru](Mesh_Import/ru.md) , [Mesh Intersection/ru](Mesh_Intersection/ru.md) , [Mesh Merge/ru](Mesh_Merge/ru.md) , [Mesh PolyCut/ru](Mesh_PolyCut/ru.md) , [Mesh RemoveCompByHand/ru](Mesh_RemoveCompByHand/ru.md) , [Mesh RemoveComponents/ru](Mesh_RemoveComponents/ru.md) , [Mesh Scale/ru](Mesh_Scale/ru.md) , [Mesh Union/ru](Mesh_Union/ru.md) , [Mesh VertexCurvature/ru](Mesh_VertexCurvature/ru.md) , [OpenSCAD AddOpenSCADElement/ru](OpenSCAD_AddOpenSCADElement/ru.md) , [OpenSCAD ColorCodeShape/ru](OpenSCAD_ColorCodeShape/ru.md) , [OpenSCAD Edgestofaces/ru](OpenSCAD_Edgestofaces/ru.md) , [OpenSCAD ExpandPlacements/ru](OpenSCAD_ExpandPlacements/ru.md) , [OpenSCAD ExplodeGroup/ru](OpenSCAD_ExplodeGroup/ru.md) , [OpenSCAD Hull/ru](OpenSCAD_Hull/ru.md) , [OpenSCAD IncreaseToleranceFeature/ru](OpenSCAD_IncreaseToleranceFeature/ru.md) , [OpenSCAD MeshBoolean/ru](OpenSCAD_MeshBoolean/ru.md) , [OpenSCAD Minkowski/ru](OpenSCAD_Minkowski/ru.md) , [OpenSCAD RefineShapeFeature/ru](OpenSCAD_RefineShapeFeature/ru.md) , [OpenSCAD RemoveSubtree/ru](OpenSCAD_RemoveSubtree/ru.md) , [OpenSCAD ReplaceObject/ru](OpenSCAD_ReplaceObject/ru.md) , [Part Boolean/ru](Part_Boolean/ru.md) , [Part BooleanFragments/ru](Part_BooleanFragments/ru.md) , [Part Box/ru](Part_Box/ru.md) , [Part BoxSelection/ru](Part_BoxSelection/ru.md) , [Part Builder/ru](Part_Builder/ru.md) , [Part Chamfer/ru](Part_Chamfer/ru.md) , [Part CheckGeometry/ru](Part_CheckGeometry/ru.md) , [Part Circle/ru](Part_Circle/ru.md) , [Part Common/ru](Part_Common/ru.md) , [Part CompCompoundTools/ru](Part_CompCompoundTools/ru.md) , [Part CompJoinFeatures/ru](Part_CompJoinFeatures/ru.md) , [Part CompOffsetTools/ru](Part_CompOffsetTools/ru.md) , [Part Compound/ru](Part_Compound/ru.md) , [Part CompoundFilter/ru](Part_CompoundFilter/ru.md) , [Part CompSplittingTools/ru](Part_CompSplittingTools/ru.md) , [Part Cone/ru](Part_Cone/ru.md) , [Part CrossSections/ru](Part_CrossSections/ru.md) , [Part Cut/ru](Part_Cut/ru.md) , [Part Cylinder/ru](Part_Cylinder/ru.md) , [Part Defeaturing/ru](Part_Defeaturing/ru.md) , [Part EditAttachment/ru](Part_EditAttachment/ru.md) , [Part ElementCopy/ru](Part_ElementCopy/ru.md) , [Part Ellipse/ru](Part_Ellipse/ru.md) , [Part Ellipsoid/ru](Part_Ellipsoid/ru.md) , [Part ExplodeCompound/ru](Part_ExplodeCompound/ru.md) , [Part Export/ru](Part_Export/ru.md) , [Part Extrude/ru](Part_Extrude/ru.md) , [Part FaceColors/ru](Part_FaceColors/ru.md) , [Part Fillet/ru](Part_Fillet/ru.md) , [Part Fuse/ru](Part_Fuse/ru.md) , [Part Helix/ru](Part_Helix/ru.md) , [Part Import/ru](Part_Import/ru.md) , [Part JoinConnect/ru](Part_JoinConnect/ru.md) , [Part JoinCutout/ru](Part_JoinCutout/ru.md) , [Part JoinEmbed/ru](Part_JoinEmbed/ru.md) , [Part Line/ru](Part_Line/ru.md) , [Part Loft/ru](Part_Loft/ru.md) , [Part MakeFace/ru](Part_MakeFace/ru.md) , [Part MakeSolid/ru](Part_MakeSolid/ru.md) , [Part Measure Angular/ru](Part_Measure_Angular/ru.md) , [Part Measure Clear All/ru](Part_Measure_Clear_All/ru.md) , [Part Measure Linear/ru](Part_Measure_Linear/ru.md) , [Part Measure Menu/ru](Part_Measure_Menu/ru.md) , [Part Measure Refresh/ru](Part_Measure_Refresh/ru.md) , [Part Measure Toggle 3d/ru](Part_Measure_Toggle_3d/ru.md) , [Part Measure Toggle All/ru](Part_Measure_Toggle_All/ru.md) , [Part Measure Toggle Delta/ru](Part_Measure_Toggle_Delta/ru.md) , [Part Mirror/ru](Part_Mirror/ru.md) , [Part Offset/ru](Part_Offset/ru.md) , [Part Offset2D/ru](Part_Offset2D/ru.md) , [Part Plane/ru](Part_Plane/ru.md) , [Part Point/ru](Part_Point/ru.md) , [Part PointsFromMesh/ru](Part_PointsFromMesh/ru.md) , [Part Primitives/ru](Part_Primitives/ru.md) , [Part Prism/ru](Part_Prism/ru.md) , [Part ProjectionOnSurface/ru](Part_ProjectionOnSurface/ru.md) , [Part RefineShape/ru](Part_RefineShape/ru.md) , [Part RegularPolygon/ru](Part_RegularPolygon/ru.md) , [Part ReverseShapes/ru](Part_ReverseShapes/ru.md) , [Part Revolve/ru](Part_Revolve/ru.md) , [Part RuledSurface/ru](Part_RuledSurface/ru.md) , [Part Section/ru](Part_Section/ru.md) , [Part ShapeFromMesh/ru](Part_ShapeFromMesh/ru.md) , [Part SimpleCopy/ru](Part_SimpleCopy/ru.md) , [Part Slice/ru](Part_Slice/ru.md) , [Part SliceApart/ru](Part_SliceApart/ru.md) , [Part Sphere/ru](Part_Sphere/ru.md) , [Part Spiral/ru](Part_Spiral/ru.md) , [Part Sweep/ru](Part_Sweep/ru.md) , [Part Thickness/ru](Part_Thickness/ru.md) , [Part Torus/ru](Part_Torus/ru.md) , [Part TransformedCopy/ru](Part_TransformedCopy/ru.md) , [Part Tube/ru](Part_Tube/ru.md) , [Part Wedge/ru](Part_Wedge/ru.md) , [Part XOR/ru](Part_XOR/ru.md) , [PartDesign AdditiveBox/ru](PartDesign_AdditiveBox/ru.md) , [PartDesign AdditiveCone/ru](PartDesign_AdditiveCone/ru.md) , [PartDesign AdditiveCylinder/ru](PartDesign_AdditiveCylinder/ru.md) , [PartDesign AdditiveEllipsoid/ru](PartDesign_AdditiveEllipsoid/ru.md) , [PartDesign AdditiveHelix/ru](PartDesign_AdditiveHelix/ru.md) , [PartDesign AdditiveLoft/ru](PartDesign_AdditiveLoft/ru.md) , [PartDesign AdditivePipe/ru](PartDesign_AdditivePipe/ru.md) , [PartDesign AdditivePrism/ru](PartDesign_AdditivePrism/ru.md) , [PartDesign AdditiveSphere/ru](PartDesign_AdditiveSphere/ru.md) , [PartDesign AdditiveTorus/ru](PartDesign_AdditiveTorus/ru.md) , [PartDesign AdditiveWedge/ru](PartDesign_AdditiveWedge/ru.md) , [PartDesign Body/ru](PartDesign_Body/ru.md) , [PartDesign Boolean/ru](PartDesign_Boolean/ru.md) , [PartDesign Chamfer/ru](PartDesign_Chamfer/ru.md) , [PartDesign Clone/ru](PartDesign_Clone/ru.md) , [PartDesign CompPrimitiveAdditive/ru](PartDesign_CompPrimitiveAdditive/ru.md) , [PartDesign CompPrimitiveSubtractive/ru](PartDesign_CompPrimitiveSubtractive/ru.md) , [PartDesign CoordinateSystem/ru](PartDesign_CoordinateSystem/ru.md) , [PartDesign Draft/ru](PartDesign_Draft/ru.md) , [PartDesign Fillet/ru](PartDesign_Fillet/ru.md) , [PartDesign Groove/ru](PartDesign_Groove/ru.md) , [PartDesign Hole/ru](PartDesign_Hole/ru.md) , [PartDesign InvoluteGear/ru](PartDesign_InvoluteGear/ru.md) , [PartDesign Line/ru](PartDesign_Line/ru.md) , [PartDesign LinearPattern/ru](PartDesign_LinearPattern/ru.md) , [PartDesign Mirrored/ru](PartDesign_Mirrored/ru.md) , [PartDesign MoveFeature/ru](PartDesign_MoveFeature/ru.md) , [PartDesign MoveFeatureInTree/ru](PartDesign_MoveFeatureInTree/ru.md) , [PartDesign MoveTip/ru](PartDesign_MoveTip/ru.md) , [PartDesign MultiTransform/ru](PartDesign_MultiTransform/ru.md) , [PartDesign NewSketch/ru](PartDesign_NewSketch/ru.md) , [PartDesign Pad/ru](PartDesign_Pad/ru.md) , [PartDesign Plane/ru](PartDesign_Plane/ru.md) , [PartDesign Pocket/ru](PartDesign_Pocket/ru.md) , [PartDesign Point/ru](PartDesign_Point/ru.md) , [PartDesign PolarPattern/ru](PartDesign_PolarPattern/ru.md) , [PartDesign Revolution/ru](PartDesign_Revolution/ru.md) , [PartDesign Scaled/ru](PartDesign_Scaled/ru.md) , [PartDesign ShapeBinder/ru](PartDesign_ShapeBinder/ru.md) , [PartDesign Sprocket/ru](PartDesign_Sprocket/ru.md) , [PartDesign SubShapeBinder/ru](PartDesign_SubShapeBinder/ru.md) , [PartDesign SubtractiveBox/ru](PartDesign_SubtractiveBox/ru.md) , [PartDesign SubtractiveCone/ru](PartDesign_SubtractiveCone/ru.md) , [PartDesign SubtractiveCylinder/ru](PartDesign_SubtractiveCylinder/ru.md) , [PartDesign SubtractiveEllipsoid/ru](PartDesign_SubtractiveEllipsoid/ru.md) , [PartDesign SubtractiveHelix/ru](PartDesign_SubtractiveHelix/ru.md) , [PartDesign SubtractiveLoft/ru](PartDesign_SubtractiveLoft/ru.md) , [PartDesign SubtractivePipe/ru](PartDesign_SubtractivePipe/ru.md) , [PartDesign SubtractivePrism/ru](PartDesign_SubtractivePrism/ru.md) , [PartDesign SubtractiveSphere/ru](PartDesign_SubtractiveSphere/ru.md) , [PartDesign SubtractiveTorus/ru](PartDesign_SubtractiveTorus/ru.md) , [PartDesign SubtractiveWedge/ru](PartDesign_SubtractiveWedge/ru.md) , [PartDesign Thickness/ru](PartDesign_Thickness/ru.md) , [PartDesign WizardShaft/ru](PartDesign_WizardShaft/ru.md) , [Path Array/ru](Path_Array/ru.md) , [Path Comment/ru](Path_Comment/ru.md) , [Path Copy/ru](Path_Copy/ru.md) , [Path Custom/ru](Path_Custom/ru.md) , [Path Drilling/ru](Path_Drilling/ru.md) , [Path Fixture/ru](Path_Fixture/ru.md) , [Path Inspect/ru](Path_Inspect/ru.md) , [Path Pocket 3D/ru](Path_Pocket_3D/ru.md) , [Path Pocket Shape/ru](Path_Pocket_Shape/ru.md) , [Path Post/ru](Path_Post/ru.md) , [Path Profile/ru](Path_Profile/ru.md) , [Path Sanity/ru](Path_Sanity/ru.md) , [Path SelectLoop/ru](Path_SelectLoop/ru.md) , [Path Shape/ru](Path_Shape/ru.md) , [Path SimpleCopy/ru](Path_SimpleCopy/ru.md) , [Path Simulator/ru](Path_Simulator/ru.md) , [Path Stop/ru](Path_Stop/ru.md) , [Path Surface/ru](Path_Surface/ru.md) , [Plot Axes/ru](Plot_Axes/ru.md) , [Plot Grid/ru](Plot_Grid/ru.md) , [Plot Labels/ru](Plot_Labels/ru.md) , [Plot Legend/ru](Plot_Legend/ru.md) , [Plot Positions/ru](Plot_Positions/ru.md) , [Plot Save/ru](Plot_Save/ru.md) , [Plot Series/ru](Plot_Series/ru.md) , [Raytracing ExportProject/ru](Raytracing_ExportProject/ru.md) , [Raytracing InsertPart/ru](Raytracing_InsertPart/ru.md) , [Raytracing Lux/ru](Raytracing_Lux/ru.md) , [Raytracing New/ru](Raytracing_New/ru.md) , [Raytracing Render/ru](Raytracing_Render/ru.md) , [Raytracing ResetCamera/ru](Raytracing_ResetCamera/ru.md) , [Raytracing WriteCamera/ru](Raytracing_WriteCamera/ru.md) , [Raytracing WritePart/ru](Raytracing_WritePart/ru.md) , [Raytracing WriteView/ru](Raytracing_WriteView/ru.md) , [Reinforcement Bar Bending Schedule/ru](Reinforcement_Bar_Bending_Schedule/ru.md) , [Reinforcement Bar Shape Cut List/ru](Reinforcement_Bar_Shape_Cut_List/ru.md) , [Robot CreateRobot/ru](Robot_CreateRobot/ru.md) , [Robot CreateTrajectory/ru](Robot_CreateTrajectory/ru.md) , [Robot Edge2Trac/ru](Robot_Edge2Trac/ru.md) , [Robot Export/ru](Robot_Export/ru.md) , [Robot InsertWaypoint/ru](Robot_InsertWaypoint/ru.md) , [Robot InsertWaypointPre/ru](Robot_InsertWaypointPre/ru.md) , [Robot RestoreHomePos/ru](Robot_RestoreHomePos/ru.md) , [Robot SetDefaultOrientation/ru](Robot_SetDefaultOrientation/ru.md) , [Robot SetDefaultValues/ru](Robot_SetDefaultValues/ru.md) , [Robot SetHomePos/ru](Robot_SetHomePos/ru.md) , [Robot Simulate/ru](Robot_Simulate/ru.md) , [Robot TrajectoryCompound/ru](Robot_TrajectoryCompound/ru.md) , [Robot TrajectoryDressUp/ru](Robot_TrajectoryDressUp/ru.md) , [Ship Area/ru](Ship_Area/ru.md) , [Ship Geometries Examples/ru](Ship_Geometries_Examples/ru.md) , [Ship Hydrostatics/ru](Ship_Hydrostatics/ru.md) , [Ship Loading/ru](Ship_Loading/ru.md) , [Ship New/ru](Ship_New/ru.md) , [Ship Outline/ru](Ship_Outline/ru.md) , [Ship PlotGZ/ru](Ship_PlotGZ/ru.md) , [Ship TankCapacity/ru](Ship_TankCapacity/ru.md) , [Ship TankNew/ru](Ship_TankNew/ru.md) , [Ship Weight/ru](Ship_Weight/ru.md) , [Sketcher BSplineApproximate/ru](Sketcher_BSplineApproximate/ru.md) , [Sketcher BSplineComb/ru](Sketcher_BSplineComb/ru.md) , [Sketcher BSplineDecreaseDegree/ru](Sketcher_BSplineDecreaseDegree/ru.md) , [Sketcher BSplineDecreaseKnotMultiplicity/ru](Sketcher_BSplineDecreaseKnotMultiplicity/ru.md) , [Sketcher BSplineDegree/ru](Sketcher_BSplineDegree/ru.md) , [Sketcher BSplineIncreaseDegree/ru](Sketcher_BSplineIncreaseDegree/ru.md) , [Sketcher BSplineIncreaseKnotMultiplicity/ru](Sketcher_BSplineIncreaseKnotMultiplicity/ru.md) , [Sketcher BSplineKnotMultiplicity/ru](Sketcher_BSplineKnotMultiplicity/ru.md) , [Sketcher BSplinePoleWeight/ru](Sketcher_BSplinePoleWeight/ru.md) , [Sketcher BSplinePolygon/ru](Sketcher_BSplinePolygon/ru.md) , [Sketcher CarbonCopy/ru](Sketcher_CarbonCopy/ru.md) , [Sketcher Clone/ru](Sketcher_Clone/ru.md) , [Sketcher CloseShape/ru](Sketcher_CloseShape/ru.md) , [Sketcher CompCreateArc/ru](Sketcher_CompCreateArc/ru.md) , [Sketcher CompCreateBSpline/ru](Sketcher_CompCreateBSpline/ru.md) , [Sketcher CompCreateCircle/ru](Sketcher_CompCreateCircle/ru.md) , [Sketcher CompCreateConic/ru](Sketcher_CompCreateConic/ru.md) , [Sketcher CompCreateRectangles/ru](Sketcher_CompCreateRectangles/ru.md) , [Sketcher CompCreateRegularPolygon/ru](Sketcher_CompCreateRegularPolygon/ru.md) , [Sketcher ConnectLines/ru](Sketcher_ConnectLines/ru.md) , [Sketcher ConstrainAngle/ru](Sketcher_ConstrainAngle/ru.md) , [Sketcher ConstrainBlock/ru](Sketcher_ConstrainBlock/ru.md) , [Sketcher ConstrainCoincident/ru](Sketcher_ConstrainCoincident/ru.md) , [Sketcher ConstrainDiameter/ru](Sketcher_ConstrainDiameter/ru.md) , [Sketcher ConstrainDistance/ru](Sketcher_ConstrainDistance/ru.md) , [Sketcher ConstrainDistanceX/ru](Sketcher_ConstrainDistanceX/ru.md) , [Sketcher ConstrainDistanceY/ru](Sketcher_ConstrainDistanceY/ru.md) , [Sketcher ConstrainEqual/ru](Sketcher_ConstrainEqual/ru.md) , [Sketcher ConstrainHorizontal/ru](Sketcher_ConstrainHorizontal/ru.md) , [Sketcher ConstrainInternalAlignment/ru](Sketcher_ConstrainInternalAlignment/ru.md) , [Sketcher ConstrainLock/ru](Sketcher_ConstrainLock/ru.md) , [Sketcher ConstrainParallel/ru](Sketcher_ConstrainParallel/ru.md) , [Sketcher ConstrainPerpendicular/ru](Sketcher_ConstrainPerpendicular/ru.md) , [Sketcher ConstrainPointOnObject/ru](Sketcher_ConstrainPointOnObject/ru.md) , [Sketcher ConstrainRadiam/ru](Sketcher_ConstrainRadiam/ru.md) , [Sketcher ConstrainRadius/ru](Sketcher_ConstrainRadius/ru.md) , [Sketcher ConstrainSnellsLaw/ru](Sketcher_ConstrainSnellsLaw/ru.md) , [Sketcher ConstrainSymmetric/ru](Sketcher_ConstrainSymmetric/ru.md) , [Sketcher ConstrainTangent/ru](Sketcher_ConstrainTangent/ru.md) , [Sketcher ConstrainVertical/ru](Sketcher_ConstrainVertical/ru.md) , [Sketcher Copy/ru](Sketcher_Copy/ru.md) , [Sketcher Create3PointArc/ru](Sketcher_Create3PointArc/ru.md) , [Sketcher Create3PointCircle/ru](Sketcher_Create3PointCircle/ru.md) , [Sketcher CreateArc/ru](Sketcher_CreateArc/ru.md) , [Sketcher CreateArcOfEllipse/ru](Sketcher_CreateArcOfEllipse/ru.md) , [Sketcher CreateArcOfHyperbola/ru](Sketcher_CreateArcOfHyperbola/ru.md) , [Sketcher CreateArcOfParabola/ru](Sketcher_CreateArcOfParabola/ru.md) , [Sketcher CreateBSpline/ru](Sketcher_CreateBSpline/ru.md) , [Sketcher CreateCircle/ru](Sketcher_CreateCircle/ru.md) , [Sketcher CreateEllipseBy3Points/ru](Sketcher_CreateEllipseBy3Points/ru.md) [Category:Categories/ru](Category:Categories/ru.md) + +--- +[documentation index](../README.md) > Category:Command Reference/ru diff --git a/wiki/translations/ru/Category:Common_Questions.md b/wiki/translations/ru/Category:Common_Questions.md index fbb2a17dd0..b01ff32870 100644 --- a/wiki/translations/ru/Category:Common_Questions.md +++ b/wiki/translations/ru/Category:Common_Questions.md @@ -4,3 +4,6 @@ This category has links to common questions on how to do something in FC. This i ### Contents: [Constructive solid geometry/ru](Constructive_solid_geometry/ru.md) , [Feature editing/ru](Feature_editing/ru.md) , [FreeCAD and DWG Import/ru](FreeCAD_and_DWG_Import/ru.md) , [FreeCAD used in production/ru](FreeCAD_used_in_production/ru.md) , [Help FreeCAD/ru](Help_FreeCAD/ru.md) , [Import Export Preferences/ru](Import_Export_Preferences/ru.md) , [Installing on Linux/ru](Installing_on_Linux/ru.md) , [Std About/ru](Std_About/ru.md) , [Topological naming problem/ru](Topological_naming_problem/ru.md) , [Video tutorials/ru](Video_tutorials/ru.md) + +--- +[documentation index](../README.md) > Category:Common Questions/ru diff --git a/wiki/translations/ru/Category:Developer.md b/wiki/translations/ru/Category:Developer.md index 94686032d9..c3a3023b3b 100644 --- a/wiki/translations/ru/Category:Developer.md +++ b/wiki/translations/ru/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Changelog/ru](Changelog/ru.md) , [Compile on Cygwin/ru](Compile_on_Cygwin/ru.md) , [Compile on Docker/ru](Compile_on_Docker/ru.md) , [Compile on Linux/ru](Compile_on_Linux/ru.md) , [Compile on MacOS/ru](Compile_on_MacOS/ru.md) , [Compile on MinGW/ru](Compile_on_MinGW/ru.md) , [Compile on Windows/ru](Compile_on_Windows/ru.md) , [Compiling (Speeding up)/ru](Compiling_(Speeding_up)/ru.md) , [Compiling/ru](Compiling/ru.md) , [Conda/ru](Conda/ru.md) , [Contributors/ru](Contributors/ru.md) , [Doxygen/ru](Doxygen/ru.md) , [FEM CalculiX/ru](FEM_CalculiX/ru.md) , [FEM Element Types/ru](FEM_Element_Types/ru.md) , [File Format FCStd/ru](File_Format_FCStd/ru.md) , [Material/ru](Material/ru.md) , [Organization chart/ru](Organization_chart/ru.md) , [Svg Namespace/ru](Svg_Namespace/ru.md) , [Wished tools/ru](Wished_tools/ru.md) , [Wrapping a Cplusplus class in Python/ru](Wrapping_a_Cplusplus_class_in_Python/ru.md) [Category:Categories/ru](Category:Categories/ru.md) + +--- +[documentation index](../README.md) > Category:Developer/ru diff --git a/wiki/translations/ru/Category:Developer_Documentation.md b/wiki/translations/ru/Category:Developer_Documentation.md index 87b5a90e66..61d01be072 100644 --- a/wiki/translations/ru/Category:Developer_Documentation.md +++ b/wiki/translations/ru/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Add FEM equation tutorial/ru](Add_FEM_equation_tutorial/ru.md) , [ANSI templates/ru](ANSI_templates/ru.md) , [AppImage/ru](AppImage/ru.md) , [Artwork Erroneous/ru](Artwork_Erroneous/ru.md) , [Artwork Guidelines/ru](Artwork_Guidelines/ru.md) , [Artwork/ru](Artwork/ru.md) , [Branding/ru](Branding/ru.md) , [Bug Triage/ru](Bug_Triage/ru.md) , [Code snippets/ru](Code_snippets/ru.md) , [Command/ru](Command/ru.md) , [Compile on Cygwin/ru](Compile_on_Cygwin/ru.md) , [Compile on Docker/ru](Compile_on_Docker/ru.md) , [Compile on Linux/ru](Compile_on_Linux/ru.md) , [Compile on MacOS/ru](Compile_on_MacOS/ru.md) , [Compile on MinGW/ru](Compile_on_MinGW/ru.md) , [Compile on Windows/ru](Compile_on_Windows/ru.md) , [Compiling (Speeding up)/ru](Compiling_(Speeding_up)/ru.md) , [Compiling/ru](Compiling/ru.md) , [Conda/ru](Conda/ru.md) , [Continuous Integration/ru](Continuous_Integration/ru.md) , [Create a FeaturePython object part I/ru](Create_a_FeaturePython_object_part_I/ru.md) , [Create a FeaturePython object part II/ru](Create_a_FeaturePython_object_part_II/ru.md) , [Crowdin Scripts/ru](Crowdin_Scripts/ru.md) , [Debian development/ru](Debian_development/ru.md) , [Debian Unstable/ru](Debian_Unstable/ru.md) , [Debugging/ru](Debugging/ru.md) , [Developer hub/ru](Developer_hub/ru.md) , [Dialog creation/ru](Dialog_creation/ru.md) , [Doxygen/ru](Doxygen/ru.md) , [Drawing templates/ru](Drawing_templates/ru.md) , [Embedding FreeCAD/ru](Embedding_FreeCAD/ru.md) , [Embedding FreeCADGui/ru](Embedding_FreeCADGui/ru.md) , [Extra python modules/ru](Extra_python_modules/ru.md) , [FeaturePython Custom Properties/ru](FeaturePython_Custom_Properties/ru.md) , [File Format FCStd/ru](File_Format_FCStd/ru.md) , [Fine-tuning/ru](Fine-tuning/ru.md) , [FreeCAD Build Tool/ru](FreeCAD_Build_Tool/ru.md) , [FreeCAD Scripting Basics/ru](FreeCAD_Scripting_Basics/ru.md) , [FreeCAD vector math library/ru](FreeCAD_vector_math_library/ru.md) , [Git buildpackage/ru](Git_buildpackage/ru.md) , [Help FreeCAD/ru](Help_FreeCAD/ru.md) , [How to install macros/ru](How_to_install_macros/ru.md) , [Installing more workbenches/ru](Installing_more_workbenches/ru.md) , [Installing on Linux/ru](Installing_on_Linux/ru.md) , [Interface creation/ru](Interface_creation/ru.md) , [Introduction to Python/ru](Introduction_to_Python/ru.md) , [Licence/ru](Licence/ru.md) , [Line drawing function/ru](Line_drawing_function/ru.md) , [Linux packaging/ru](Linux_packaging/ru.md) , [Localisation Sidebar/ru](Localisation_Sidebar/ru.md) , [Localisation/ru](Localisation/ru.md) , [Macro at Startup/ru](Macro_at_Startup/ru.md) , [Macros/ru](Macros/ru.md) , [Manual:A gentle introduction/ru](Manual:A_gentle_introduction/ru.md) , [Manual:Creating and manipulating geometry/ru](Manual:Creating_and_manipulating_geometry/ru.md) , [Manual:Creating interface tools/ru](Manual:Creating_interface_tools/ru.md) , [Manual:Creating parametric objects/ru](Manual:Creating_parametric_objects/ru.md) , [Material/ru](Material/ru.md) , [Mesh Scripting/ru](Mesh_Scripting/ru.md) , [Mesh to Part/ru](Mesh_to_Part/ru.md) , [OpenCASCADE/ru](OpenCASCADE/ru.md) , [Part scripting/ru](Part_scripting/ru.md) , [Path scripting/ru](Path_scripting/ru.md) , [Pivy/ru](Pivy/ru.md) , [Profiling/ru](Profiling/ru.md) , [Property/ru](Property/ru.md) , [PySide Advanced Examples/ru](PySide_Advanced_Examples/ru.md) , [PySide Beginner Examples/ru](PySide_Beginner_Examples/ru.md) , [PySide Intermediate Examples/ru](PySide_Intermediate_Examples/ru.md) , [PySide/ru](PySide/ru.md) , [Python scripting tutorial/ru](Python_scripting_tutorial/ru.md) , [Python/ru](Python/ru.md) , [PythonOCC/ru](PythonOCC/ru.md) , [Raytracing API example/ru](Raytracing_API_example/ru.md) , [Scenegraph/ru](Scenegraph/ru.md) , [Scripted objects migration/ru](Scripted_objects_migration/ru.md) , [Scripted objects saving attributes/ru](Scripted_objects_saving_attributes/ru.md) , [Scripted objects with attachment/ru](Scripted_objects_with_attachment/ru.md) , [Scripted objects/ru](Scripted_objects/ru.md) , [Scripted Parts: Ball Bearing - Part 1/ru](Scripted_Parts:_Ball_Bearing_-_Part_1/ru.md) , [Scripted Parts: Ball Bearing - Part 2/ru](Scripted_Parts:_Ball_Bearing_-_Part_2/ru.md) , [Scripting and macros/ru](Scripting_and_macros/ru.md) , [Scripts/ru](Scripts/ru.md) , [Source code management/ru](Source_code_management/ru.md) , [Source documentation/ru](Source_documentation/ru.md) , [Start up and Configuration/ru](Start_up_and_Configuration/ru.md) , [Testing/ru](Testing/ru.md) , [The FreeCAD source code/ru](The_FreeCAD_source_code/ru.md) , [Third Party Libraries/ru](Third_Party_Libraries/ru.md) , [Third Party Tools/ru](Third_Party_Tools/ru.md) , [Topological data scripting/ru](Topological_data_scripting/ru.md) , [Tracker/ru](Tracker/ru.md) , [Translating an external workbench/ru](Translating_an_external_workbench/ru.md) , [Workbench creation/ru](Workbench_creation/ru.md) , [Wrapping a Cplusplus class in Python/ru](Wrapping_a_Cplusplus_class_in_Python/ru.md) , [Category:Documentation/ru](Category:Documentation/ru.md) [Category:Document object/ru](Category:Document_object/ru.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/ru diff --git a/wiki/translations/ru/Category:Document_object.md b/wiki/translations/ru/Category:Document_object.md index 295916af2d..9e2de4c87f 100644 --- a/wiki/translations/ru/Category:Document_object.md +++ b/wiki/translations/ru/Category:Document_object.md @@ -6,3 +6,6 @@ [App DocumentObject/ru](App_DocumentObject/ru.md) , [App FeaturePython/ru](App_FeaturePython/ru.md) , [App Link/ru](App_Link/ru.md) , [App Part/ru](App_Part/ru.md) , [Assembly/ru](Assembly/ru.md) , [Body/ru](Body/ru.md) , [Constraint/ru](Constraint/ru.md) , [Datum/ru](Datum/ru.md) , [Mesh/ru](Mesh/ru.md) , [Model/ru](Model/ru.md) , [Part Feature/ru](Part_Feature/ru.md) , [Part TopoShape/ru](Part_TopoShape/ru.md) , [Part/ru](Part/ru.md) , [PartDesign Feature/ru](PartDesign_Feature/ru.md) , [Shape/ru](Shape/ru.md) , [Sketch/ru](Sketch/ru.md) , [Sketcher SketchObject/ru](Sketcher_SketchObject/ru.md) [Category:User Documentation/ru](Category:User_Documentation/ru.md) [Category:Developer Documentation/ru](Category:Developer_Documentation/ru.md) + +--- +[documentation index](../README.md) > Category:Document object/ru diff --git a/wiki/translations/ru/Category:Documentation.md b/wiki/translations/ru/Category:Documentation.md index 44d9635cec..04956b467e 100644 --- a/wiki/translations/ru/Category:Documentation.md +++ b/wiki/translations/ru/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [3D input devices/ru](3D_input_devices/ru.md) , [ANSI templates/ru](ANSI_templates/ru.md) , [Drawing templates/ru](Drawing_templates/ru.md) , [FreeCAD Community Portal/ru](FreeCAD_Community_Portal/ru.md) , [Frequently asked questions/ru](Frequently_asked_questions/ru.md) , [Help FreeCAD/ru](Help_FreeCAD/ru.md) , [Main Page/ru](Main_Page/ru.md) , [Online Help Toc/ru](Online_Help_Toc/ru.md) , [Part Measure Menu/ru](Part_Measure_Menu/ru.md) , [Release notes 0.11/ru](Release_notes_0.11/ru.md) , [Release notes 0.12/ru](Release_notes_0.12/ru.md) , [Release notes 0.13/ru](Release_notes_0.13/ru.md) , [Release notes 0.14/ru](Release_notes_0.14/ru.md) , [Release notes 0.15/ru](Release_notes_0.15/ru.md) , [Release notes 0.16/ru](Release_notes_0.16/ru.md) , [Release notes 0.17/ru](Release_notes_0.17/ru.md) , [Release notes 0.18/ru](Release_notes_0.18/ru.md) , [Release notes 0.19/ru](Release_notes_0.19/ru.md) , [Release notes 0.20/ru](Release_notes_0.20/ru.md) , [WikiPages/ru](WikiPages/ru.md) , , , , , , [Category:Categories/ru](Category:Categories/ru.md) [Category:API Documentation/ru](Category:API_Documentation/ru.md) [Category:Developer Documentation/ru](Category:Developer_Documentation/ru.md) [Category:Poweruser Documentation/ru](Category:Poweruser_Documentation/ru.md) [Category:Screenshots/ru](Category:Screenshots/ru.md) [Category:User Documentation/ru](Category:User_Documentation/ru.md) [Category:Wiki/ru](Category:Wiki/ru.md) + +--- +[documentation index](../README.md) > Category:Documentation/ru diff --git a/wiki/translations/ru/Category:Draft.md b/wiki/translations/ru/Category:Draft.md index d1ed2b7fde..777f5dd252 100644 --- a/wiki/translations/ru/Category:Draft.md +++ b/wiki/translations/ru/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/ru\" and \"Workben [Arch panel tutorial/ru](Arch_panel_tutorial/ru.md) , [Artwork Draft/ru](Artwork_Draft/ru.md) , [Draft AddConstruction/ru](Draft_AddConstruction/ru.md) , [Draft AddToGroup/ru](Draft_AddToGroup/ru.md) , [Draft AnnotationStyleEditor/ru](Draft_AnnotationStyleEditor/ru.md) , [Draft API/ru](Draft_API/ru.md) , [Draft ApplyStyle/ru](Draft_ApplyStyle/ru.md) , [Draft Arc 3Points/ru](Draft_Arc_3Points/ru.md) , [Draft Arc/ru](Draft_Arc/ru.md) , [Draft Array/ru](Draft_Array/ru.md) , [Draft AutoGroup/ru](Draft_AutoGroup/ru.md) , [Draft BezCurve/ru](Draft_BezCurve/ru.md) , [Draft BSpline/ru](Draft_BSpline/ru.md) , [Draft Circle/ru](Draft_Circle/ru.md) , [Draft CircularArray/ru](Draft_CircularArray/ru.md) , [Draft Clone/ru](Draft_Clone/ru.md) , [Draft Constrain/ru](Draft_Constrain/ru.md) , [Draft CubicBezCurve/ru](Draft_CubicBezCurve/ru.md) , [Draft DAT/ru](Draft_DAT/ru.md) , [Draft Dimension/ru](Draft_Dimension/ru.md) , [Draft Downgrade/ru](Draft_Downgrade/ru.md) , [Draft Draft2Sketch/ru](Draft_Draft2Sketch/ru.md) , [Draft Drawing/ru](Draft_Drawing/ru.md) , [Draft DXF/ru](Draft_DXF/ru.md) , [Draft Edit/ru](Draft_Edit/ru.md) , [Draft Ellipse/ru](Draft_Ellipse/ru.md) , [Draft Facebinder/ru](Draft_Facebinder/ru.md) , [Draft Fillet/ru](Draft_Fillet/ru.md) , [Draft FlipDimension/ru](Draft_FlipDimension/ru.md) , [Draft Heal/ru](Draft_Heal/ru.md) , [Draft Join/ru](Draft_Join/ru.md) , [Draft Label/ru](Draft_Label/ru.md) , [Draft Layer/ru](Draft_Layer/ru.md) , [Draft Line/ru](Draft_Line/ru.md) , [Draft Mirror/ru](Draft_Mirror/ru.md) , [Draft Move/ru](Draft_Move/ru.md) , [Draft OCA/ru](Draft_OCA/ru.md) , [Draft Offset/ru](Draft_Offset/ru.md) , [Draft OrthoArray/ru](Draft_OrthoArray/ru.md) , [Draft PathArray/ru](Draft_PathArray/ru.md) , [Draft PathLinkArray/ru](Draft_PathLinkArray/ru.md) , [Draft Pattern/ru](Draft_Pattern/ru.md) , [Draft Point/ru](Draft_Point/ru.md) , [Draft PointArray/ru](Draft_PointArray/ru.md) , [Draft PolarArray/ru](Draft_PolarArray/ru.md) , [Draft Polygon/ru](Draft_Polygon/ru.md) , [Draft Preferences/ru](Draft_Preferences/ru.md) , [Draft Rectangle/ru](Draft_Rectangle/ru.md) , [Draft Rotate/ru](Draft_Rotate/ru.md) , [Draft Scale/ru](Draft_Scale/ru.md) , [Draft SelectGroup/ru](Draft_SelectGroup/ru.md) , [Draft SelectPlane/ru](Draft_SelectPlane/ru.md) , [Draft Shape2DView/ru](Draft_Shape2DView/ru.md) , [Draft ShapeString/ru](Draft_ShapeString/ru.md) , [Draft ShowSnapBar/ru](Draft_ShowSnapBar/ru.md) , [Draft Slope/ru](Draft_Slope/ru.md) , [Draft Snap Angle/ru](Draft_Snap_Angle/ru.md) , [Draft Snap Center/ru](Draft_Snap_Center/ru.md) , [Draft Snap Dimensions/ru](Draft_Snap_Dimensions/ru.md) , [Draft Snap Endpoint/ru](Draft_Snap_Endpoint/ru.md) , [Draft Snap Extension/ru](Draft_Snap_Extension/ru.md) , [Draft Snap Grid/ru](Draft_Snap_Grid/ru.md) , [Draft Snap Intersection/ru](Draft_Snap_Intersection/ru.md) , [Draft Snap Lock/ru](Draft_Snap_Lock/ru.md) , [Draft Snap Midpoint/ru](Draft_Snap_Midpoint/ru.md) , [Draft Snap Near/ru](Draft_Snap_Near/ru.md) , [Draft Snap Ortho/ru](Draft_Snap_Ortho/ru.md) , [Draft Snap Parallel/ru](Draft_Snap_Parallel/ru.md) , [Draft Snap Perpendicular/ru](Draft_Snap_Perpendicular/ru.md) , [Draft Snap Special/ru](Draft_Snap_Special/ru.md) , [Draft Snap WorkingPlane/ru](Draft_Snap_WorkingPlane/ru.md) , [Draft Snap/ru](Draft_Snap/ru.md) , [Draft Split/ru](Draft_Split/ru.md) , [Draft Stretch/ru](Draft_Stretch/ru.md) , [Draft SubelementHighlight/ru](Draft_SubelementHighlight/ru.md) , [Draft SVG/ru](Draft_SVG/ru.md) , [Draft Text/ru](Draft_Text/ru.md) , [Draft ToggleConstructionMode/ru](Draft_ToggleConstructionMode/ru.md) , [Draft ToggleContinueMode/ru](Draft_ToggleContinueMode/ru.md) , [Draft ToggleDisplayMode/ru](Draft_ToggleDisplayMode/ru.md) , [Draft ToggleGrid/ru](Draft_ToggleGrid/ru.md) , [Draft Tray/ru](Draft_Tray/ru.md) , [Draft Trimex/ru](Draft_Trimex/ru.md) , [Draft tutorial/ru](Draft_tutorial/ru.md) , [Draft Upgrade/ru](Draft_Upgrade/ru.md) , [Draft Wire/ru](Draft_Wire/ru.md) , [Draft WireToBSpline/ru](Draft_WireToBSpline/ru.md) , [Draft Workbench/ru](Draft_Workbench/ru.md) , [Draft WorkingPlaneProxy/ru](Draft_WorkingPlaneProxy/ru.md) , [DXF/ru](DXF/ru.md) , [FreeCAD and DWG Import/ru](FreeCAD_and_DWG_Import/ru.md) , [Manual:Traditional 2D drafting/ru](Manual:Traditional_2D_drafting/ru.md) , [SVG/ru](SVG/ru.md) , [Tutorial custom placing of windows and doors/ru](Tutorial_custom_placing_of_windows_and_doors/ru.md) , [Tutorial for open windows/ru](Tutorial_for_open_windows/ru.md) [Category:User Documentation/ru](Category:User_Documentation/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Draft/ru diff --git a/wiki/translations/ru/Category:Drawing.md b/wiki/translations/ru/Category:Drawing.md index a7dae256c2..c83dd14729 100644 --- a/wiki/translations/ru/Category:Drawing.md +++ b/wiki/translations/ru/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/ru](Drawing_Workbenc [ANSI templates/ru](ANSI_templates/ru.md) , [Drawing Annotation/ru](Drawing_Annotation/ru.md) , [Drawing Clip/ru](Drawing_Clip/ru.md) , [Drawing Landscape A3/ru](Drawing_Landscape_A3/ru.md) , [Drawing Open SVG/ru](Drawing_Open_SVG/ru.md) , [Drawing Openbrowser/ru](Drawing_Openbrowser/ru.md) , [Drawing Orthoviews/ru](Drawing_Orthoviews/ru.md) , [Drawing ProjectShape/ru](Drawing_ProjectShape/ru.md) , [Drawing Save/ru](Drawing_Save/ru.md) , [Drawing SpreadsheetView/ru](Drawing_SpreadsheetView/ru.md) , [Drawing Symbol/ru](Drawing_Symbol/ru.md) , [Drawing Template HowTo/ru](Drawing_Template_HowTo/ru.md) , [Drawing templates/ru](Drawing_templates/ru.md) , [Template:Drawing Tools navi/ru](Template:Drawing_Tools_navi/ru.md) , [Drawing tutorial/ru](Drawing_tutorial/ru.md) , [Drawing View/ru](Drawing_View/ru.md) , [Drawing Workbench/ru](Drawing_Workbench/ru.md) , [Svg Namespace/ru](Svg_Namespace/ru.md) [Category:Obsolete Workbenches/ru](Category:Obsolete_Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Drawing/ru diff --git a/wiki/translations/ru/Category:External_Workbenches.md b/wiki/translations/ru/Category:External_Workbenches.md index cf10478195..3ac6e7680f 100644 --- a/wiki/translations/ru/Category:External_Workbenches.md +++ b/wiki/translations/ru/Category:External_Workbenches.md @@ -4,3 +4,6 @@ [External workbenches/ru](External_workbenches/ru.md) , [A2plus Workbench/ru](A2plus_Workbench/ru.md) , [Animation Workbench/ru](Animation_Workbench/ru.md) , [Assembly2 Workbench/ru](Assembly2_Workbench/ru.md) , [Assembly3 Workbench/ru](Assembly3_Workbench/ru.md) , [Assembly4 Workbench/ru](Assembly4_Workbench/ru.md) , [BIM Workbench/ru](BIM_Workbench/ru.md) , [Cfd Workbench/ru](Cfd_Workbench/ru.md) , [Fasteners Workbench/ru](Fasteners_Workbench/ru.md) , [How to install additional workbenches/ru](How_to_install_additional_workbenches/ru.md) , [Lattice2 Workbench/ru](Lattice2_Workbench/ru.md) , [Manipulator Workbench/ru](Manipulator_Workbench/ru.md) , [Plot Axes/ru](Plot_Axes/ru.md) , [Plot Basic tutorial/ru](Plot_Basic_tutorial/ru.md) , [Plot Grid/ru](Plot_Grid/ru.md) , [Plot Labels/ru](Plot_Labels/ru.md) , [Plot Legend/ru](Plot_Legend/ru.md) , [Plot Module/ru](Plot_Module/ru.md) , [Plot MultiAxes tutorial/ru](Plot_MultiAxes_tutorial/ru.md) , [Plot Positions/ru](Plot_Positions/ru.md) , [Plot Save/ru](Plot_Save/ru.md) , [Plot Series/ru](Plot_Series/ru.md) , [Reinforcement Workbench/ru](Reinforcement_Workbench/ru.md) , [Render project/ru](Render_project/ru.md) , [Rocket Workbench/ru](Rocket_Workbench/ru.md) , [Ship Workbench/ru](Ship_Workbench/ru.md) , [Workfeature Workbench/ru](Workfeature_Workbench/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) [Category:Addons/ru](Category:Addons/ru.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/ru diff --git a/wiki/translations/ru/Category:FEM.md b/wiki/translations/ru/Category:FEM.md index 63ad604b6b..ab9e552642 100644 --- a/wiki/translations/ru/Category:FEM.md +++ b/wiki/translations/ru/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/ru](FEM_Workbench/ru.md) [Add FEM constraint tutorial/ru](Add_FEM_constraint_tutorial/ru.md) , [Add FEM equation tutorial/ru](Add_FEM_equation_tutorial/ru.md) , [Analysis of reinforced concrete with FEM/ru](Analysis_of_reinforced_concrete_with_FEM/ru.md) , [Artwork Fem/ru](Artwork_Fem/ru.md) , [Extend FEM Module/ru](Extend_FEM_Module/ru.md) , [FEM Analysis/ru](FEM_Analysis/ru.md) , [FEM CalculiX Cantilever 3D/ru](FEM_CalculiX_Cantilever_3D/ru.md) , [FEM CalculiX/ru](FEM_CalculiX/ru.md) , [FEM ClippingPlaneAdd/ru](FEM_ClippingPlaneAdd/ru.md) , [FEM ClippingPlaneRemoveAll/ru](FEM_ClippingPlaneRemoveAll/ru.md) , [FEM Concrete/ru](FEM_Concrete/ru.md) , [FEM ConstraintBearing/ru](FEM_ConstraintBearing/ru.md) , [FEM ConstraintBodyHeatSource/ru](FEM_ConstraintBodyHeatSource/ru.md) , [FEM ConstraintContact/ru](FEM_ConstraintContact/ru.md) , [FEM ConstraintDisplacement/ru](FEM_ConstraintDisplacement/ru.md) , [FEM ConstraintElectrostaticPotential/ru](FEM_ConstraintElectrostaticPotential/ru.md) , [FEM ConstraintFixed/ru](FEM_ConstraintFixed/ru.md) , [FEM ConstraintFlowVelocity/ru](FEM_ConstraintFlowVelocity/ru.md) , [FEM ConstraintFluidBoundary/ru](FEM_ConstraintFluidBoundary/ru.md) , [FEM ConstraintForce/ru](FEM_ConstraintForce/ru.md) , [FEM ConstraintGear/ru](FEM_ConstraintGear/ru.md) , [FEM ConstraintHeatflux/ru](FEM_ConstraintHeatflux/ru.md) , [FEM ConstraintInitialFlowVelocity/ru](FEM_ConstraintInitialFlowVelocity/ru.md) , [FEM ConstraintInitialTemperature/ru](FEM_ConstraintInitialTemperature/ru.md) , [FEM ConstraintPlaneRotation/ru](FEM_ConstraintPlaneRotation/ru.md) , [FEM ConstraintPressure/ru](FEM_ConstraintPressure/ru.md) , [FEM ConstraintPulley/ru](FEM_ConstraintPulley/ru.md) , [FEM ConstraintSectionPrint/ru](FEM_ConstraintSectionPrint/ru.md) , [FEM ConstraintSelfWeight/ru](FEM_ConstraintSelfWeight/ru.md) , [FEM ConstraintTemperature/ru](FEM_ConstraintTemperature/ru.md) , [FEM ConstraintTransform/ru](FEM_ConstraintTransform/ru.md) , [FEM CreateNodesSet/ru](FEM_CreateNodesSet/ru.md) , [FEM Element Types/ru](FEM_Element_Types/ru.md) , [FEM ElementFluid1D/ru](FEM_ElementFluid1D/ru.md) , [FEM ElementGeometry1D/ru](FEM_ElementGeometry1D/ru.md) , [FEM ElementGeometry2D/ru](FEM_ElementGeometry2D/ru.md) , [FEM ElementRotation1D/ru](FEM_ElementRotation1D/ru.md) , [FEM EquationElasticity/ru](FEM_EquationElasticity/ru.md) , [FEM EquationElectrostatic/ru](FEM_EquationElectrostatic/ru.md) , [FEM EquationFlow/ru](FEM_EquationFlow/ru.md) , [FEM EquationFlux/ru](FEM_EquationFlux/ru.md) , [FEM EquationHeat/ru](FEM_EquationHeat/ru.md) , [FEM Example Capacitance Two Balls/ru](FEM_Example_Capacitance_Two_Balls/ru.md) , [FEM Examples/ru](FEM_Examples/ru.md) , [FEM FemMesh2Mesh/ru](FEM_FemMesh2Mesh/ru.md) , [FEM Install/ru](FEM_Install/ru.md) , [FEM MaterialFluid/ru](FEM_MaterialFluid/ru.md) , [FEM MaterialMechanicalNonlinear/ru](FEM_MaterialMechanicalNonlinear/ru.md) , [FEM MaterialReinforced/ru](FEM_MaterialReinforced/ru.md) , [FEM MaterialSolid/ru](FEM_MaterialSolid/ru.md) , [FEM Mesh/ru](FEM_Mesh/ru.md) , [FEM MeshBoundaryLayer/ru](FEM_MeshBoundaryLayer/ru.md) , [FEM MeshClear/ru](FEM_MeshClear/ru.md) , [FEM MeshDisplayInfo/ru](FEM_MeshDisplayInfo/ru.md) , [FEM MeshGmshFromShape/ru](FEM_MeshGmshFromShape/ru.md) , [FEM MeshGroup/ru](FEM_MeshGroup/ru.md) , [FEM MeshNetgenFromShape/ru](FEM_MeshNetgenFromShape/ru.md) , [FEM MeshRegion/ru](FEM_MeshRegion/ru.md) , [FEM PostApplyChanges/ru](FEM_PostApplyChanges/ru.md) , [FEM PostCreateFunctions/ru](FEM_PostCreateFunctions/ru.md) , [FEM PostFilterClipRegion/ru](FEM_PostFilterClipRegion/ru.md) , [FEM PostFilterClipScalar/ru](FEM_PostFilterClipScalar/ru.md) , [FEM PostFilterCutFunction/ru](FEM_PostFilterCutFunction/ru.md) , [FEM PostFilterDataAlongLine/ru](FEM_PostFilterDataAlongLine/ru.md) , [FEM PostFilterDataAtPoint/ru](FEM_PostFilterDataAtPoint/ru.md) , [FEM PostFilterLinearizedStresses/ru](FEM_PostFilterLinearizedStresses/ru.md) , [FEM PostFilterWarp/ru](FEM_PostFilterWarp/ru.md) , [FEM PostPipelineFromResult/ru](FEM_PostPipelineFromResult/ru.md) , [FEM Preferences/ru](FEM_Preferences/ru.md) , [FEM project/ru](FEM_project/ru.md) , [FEM ResultShow/ru](FEM_ResultShow/ru.md) , [FEM ResultsPurge/ru](FEM_ResultsPurge/ru.md) , [FEM Shear of a Composite Block/ru](FEM_Shear_of_a_Composite_Block/ru.md) , [FEM Solver/ru](FEM_Solver/ru.md) , [FEM SolverCalculiX/ru](FEM_SolverCalculiX/ru.md) , [FEM SolverCalculixCxxtools/ru](FEM_SolverCalculixCxxtools/ru.md) , [FEM SolverControl/ru](FEM_SolverControl/ru.md) , [FEM SolverElmer/ru](FEM_SolverElmer/ru.md) , [FEM SolverRun/ru](FEM_SolverRun/ru.md) , [FEM SolverZ88/ru](FEM_SolverZ88/ru.md) , [Template:FEM Tools navi/ru](Template:FEM_Tools_navi/ru.md) , [FEM Tutorial Python/ru](FEM_Tutorial_Python/ru.md) , [FEM tutorial/ru](FEM_tutorial/ru.md) , [FEM Workbench/ru](FEM_Workbench/ru.md) , [Material editor/ru](Material_editor/ru.md) , [Material/ru](Material/ru.md) , [Mesh/ru](Mesh/ru.md) , [Post-Processing of FEM Results with Paraview/ru](Post-Processing_of_FEM_Results_with_Paraview/ru.md) , [Transient FEM analysis/ru](Transient_FEM_analysis/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:FEM/ru diff --git a/wiki/translations/ru/Category:File_Formats.md b/wiki/translations/ru/Category:File_Formats.md index bc03a1f2e5..0b61c4b748 100644 --- a/wiki/translations/ru/Category:File_Formats.md +++ b/wiki/translations/ru/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [Arch 3DS/ru](Arch_3DS/ru.md) , [Arch DAE/ru](Arch_DAE/ru.md) , [Arch IFC/ru](Arch_IFC/ru.md) , [Arch JSON/ru](Arch_JSON/ru.md) , [Arch OBJ/ru](Arch_OBJ/ru.md) , [Draft DAT/ru](Draft_DAT/ru.md) , [Draft DXF/ru](Draft_DXF/ru.md) , [Draft OCA/ru](Draft_OCA/ru.md) , [Draft SVG/ru](Draft_SVG/ru.md) , [DXF/ru](DXF/ru.md) , [Export to STL or OBJ/ru](Export_to_STL_or_OBJ/ru.md) , [File Format FCStd/ru](File_Format_FCStd/ru.md) , [FreeCAD and DWG Import/ru](FreeCAD_and_DWG_Import/ru.md) , [FreeCAD and DXF Import/ru](FreeCAD_and_DXF_Import/ru.md) , [FreeCAD and Mesh Import/ru](FreeCAD_and_Mesh_Import/ru.md) , [Import Export Preferences/ru](Import_Export_Preferences/ru.md) , [Import Export/ru](Import_Export/ru.md) , [Import from STL or OBJ/ru](Import_from_STL_or_OBJ/ru.md) , [Import/Export IFC - compiling IfcOpenShell/ru](Import/Export_IFC_-_compiling_IfcOpenShell/ru.md) , [Material/ru](Material/ru.md) , [PDF/ru](PDF/ru.md) , [Std Export/ru](Std_Export/ru.md) , [Std Import/ru](Std_Import/ru.md) , [SVG/ru](SVG/ru.md) + +--- +[documentation index](../README.md) > Category:File Formats/ru diff --git a/wiki/translations/ru/Category:Glossary.md b/wiki/translations/ru/Category:Glossary.md index a8da007735..c76c4f1546 100644 --- a/wiki/translations/ru/Category:Glossary.md +++ b/wiki/translations/ru/Category:Glossary.md @@ -6,3 +6,6 @@ [Assembly/ru](Assembly/ru.md) , [Body/ru](Body/ru.md) , [Command/ru](Command/ru.md) , [Constraint/ru](Constraint/ru.md) , [Datum/ru](Datum/ru.md) , [Glossary/ru](Glossary/ru.md) , [Manipulator/ru](Manipulator/ru.md) , [Mesh/ru](Mesh/ru.md) , [Model/ru](Model/ru.md) , [Part/ru](Part/ru.md) , [Python/ru](Python/ru.md) , [Shape/ru](Shape/ru.md) , [Sketch/ru](Sketch/ru.md) , [Category:Glossary/ru](Category:Glossary/ru.md) [Category:Glossary/ru](Category:Glossary/ru.md) + +--- +[documentation index](../README.md) > Category:Glossary/ru diff --git a/wiki/translations/ru/Category:Help.md b/wiki/translations/ru/Category:Help.md index fe8f6738b4..b45d2cb840 100644 --- a/wiki/translations/ru/Category:Help.md +++ b/wiki/translations/ru/Category:Help.md @@ -6,3 +6,6 @@ This category lists pages that contain helpfull information on MediaWiki and edi [Help/ru](Help/ru.md) [Category:Categories/ru](Category:Categories/ru.md) + +--- +[documentation index](../README.md) > Category:Help/ru diff --git a/wiki/translations/ru/Category:Hubs.md b/wiki/translations/ru/Category:Hubs.md index 70bedead76..7834b280e0 100644 --- a/wiki/translations/ru/Category:Hubs.md +++ b/wiki/translations/ru/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Developer hub/ru](Developer_hub/ru.md) , [Power users hub/ru](Power_users_hub/ru.md) , [Scientific literature/ru](Scientific_literature/ru.md) , [User hub/ru](User_hub/ru.md) , [Wished tools/ru](Wished_tools/ru.md) [Category:Categories/ru](Category:Categories/ru.md) + +--- +[documentation index](../README.md) > Category:Hubs/ru diff --git a/wiki/translations/ru/Category:Image.md b/wiki/translations/ru/Category:Image.md index afe7029922..ea3bd9bbde 100644 --- a/wiki/translations/ru/Category:Image.md +++ b/wiki/translations/ru/Category:Image.md @@ -6,3 +6,6 @@ This category lists pages related to the [Image Workbench/ru](Image_Workbench/ru [Artwork Image/ru](Artwork_Image/ru.md) , [Bitmap/ru](Bitmap/ru.md) , [Image CreateImagePlane/ru](Image_CreateImagePlane/ru.md) , [Image Open/ru](Image_Open/ru.md) , [Image Scaling/ru](Image_Scaling/ru.md) , [Image Workbench/ru](Image_Workbench/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Image/ru diff --git a/wiki/translations/ru/Category:Inspection.md b/wiki/translations/ru/Category:Inspection.md index 159357f19b..5b4db85e6c 100644 --- a/wiki/translations/ru/Category:Inspection.md +++ b/wiki/translations/ru/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Artwork Inspection/ru](Artwork_Inspection/ru.md) , [Inspection Workbench/ru](Inspection_Workbench/ru.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection/ru diff --git a/wiki/translations/ru/Category:Interface.md b/wiki/translations/ru/Category:Interface.md index 7345d316da..876f6d8a84 100644 --- a/wiki/translations/ru/Category:Interface.md +++ b/wiki/translations/ru/Category:Interface.md @@ -4,3 +4,6 @@ This category lists pages that describe the FreeCAD interface. ### Contents: [3D view/ru](3D_view/ru.md) , [Combo view/ru](Combo_view/ru.md) , [DAG view/ru](DAG_view/ru.md) , [Interface Customization/ru](Interface_Customization/ru.md) , [Template:Interface navi/ru](Template:Interface_navi/ru.md) , [Interface/ru](Interface/ru.md) , [Main view area/ru](Main_view_area/ru.md) , [Property editor/ru](Property_editor/ru.md) , [Python console/ru](Python_console/ru.md) , [Report view/ru](Report_view/ru.md) , [Selection view/ru](Selection_view/ru.md) , [Standard Menu/ru](Standard_Menu/ru.md) , [Status bar/ru](Status_bar/ru.md) , [Std Workbench/ru](Std_Workbench/ru.md) , [Task panel/ru](Task_panel/ru.md) , [Tree view/ru](Tree_view/ru.md) + +--- +[documentation index](../README.md) > Category:Interface/ru diff --git a/wiki/translations/ru/Category:Macros.md b/wiki/translations/ru/Category:Macros.md index 7f8dc365d9..f6377f9202 100644 --- a/wiki/translations/ru/Category:Macros.md +++ b/wiki/translations/ru/Category:Macros.md @@ -6,3 +6,6 @@ [Macro Align Camera to Working Plane/ru](Macro_Align_Camera_to_Working_Plane/ru.md) , [Macro Align Face Object to View/ru](Macro_Align_Face_Object_to_View/ru.md) , [Macro Align Object to View/ru](Macro_Align_Object_to_View/ru.md) , [Macro Align View to Face/ru](Macro_Align_View_to_Face/ru.md) , [Macro Align Working Plane to Camera/ru](Macro_Align_Working_Plane_to_Camera/ru.md) , [Macro at Startup/ru](Macro_at_Startup/ru.md) , [Macro BoundingBox Tracing/ru](Macro_BoundingBox_Tracing/ru.md) , [Macro documentation/ru](Macro_documentation/ru.md) , [Macro FCCamera/ru](Macro_FCCamera/ru.md) , [Macro FCInfo/ru](Macro_FCInfo/ru.md) , [Macro GMSH/ru](Macro_GMSH/ru.md) , [Macro GuiResetToolbars/ru](Macro_GuiResetToolbars/ru.md) , [Macro HiddenAlls/ru](Macro_HiddenAlls/ru.md) , [Macro If Selected Stay If Not Then Delete/ru](Macro_If_Selected_Stay_If_Not_Then_Delete/ru.md) , [Macro MessageBox/ru](Macro_MessageBox/ru.md) , [Macro Mouse Cross/ru](Macro_Mouse_Cross/ru.md) , [Macro MoveToOrigin/ru](Macro_MoveToOrigin/ru.md) , [Macro ObjectInfo/ru](Macro_ObjectInfo/ru.md) , [Macro Rotate View Free/ru](Macro_Rotate_View_Free/ru.md) , [Macro Rotate View/ru](Macro_Rotate_View/ru.md) , [Macro Rotate ViewAxonometric/ru](Macro_Rotate_ViewAxonometric/ru.md) , [Macro Screen Wiki/ru](Macro_Screen_Wiki/ru.md) , [Macro Texture Objects/ru](Macro_Texture_Objects/ru.md) , [Macro Texture/ru](Macro_Texture/ru.md) , [Macro Toggle Panels Visibility/ru](Macro_Toggle_Panels_Visibility/ru.md) , [Macro Toggle Visibility/ru](Macro_Toggle_Visibility/ru.md) , [Macro View Rotation/ru](Macro_View_Rotation/ru.md) , [Macro VisibleAlls/ru](Macro_VisibleAlls/ru.md) , [Macro WorkFeatures/ru](Macro_WorkFeatures/ru.md) , [Template:Macro/ru](Template:Macro/ru.md) , [Macros recipes/ru](Macros_recipes/ru.md) , [Macros/ru](Macros/ru.md) , [Misc templates Full/ru](Misc_templates_Full/ru.md) , [Svg Namespace/ru](Svg_Namespace/ru.md) [Category:Categories/ru](Category:Categories/ru.md) + +--- +[documentation index](../README.md) > Category:Macros/ru diff --git a/wiki/translations/ru/Category:Manual.md b/wiki/translations/ru/Category:Manual.md index 524cc07adf..ee522732cf 100644 --- a/wiki/translations/ru/Category:Manual.md +++ b/wiki/translations/ru/Category:Manual.md @@ -4,3 +4,6 @@ ### Contents: [Manual:A gentle introduction/ru](Manual:A_gentle_introduction/ru.md) , [Manual:All workbenches at a glance/ru](Manual:All_workbenches_at_a_glance/ru.md) , [Manual:BIM modeling/ru](Manual:BIM_modeling/ru.md) , [Manual:Creating and manipulating geometry/ru](Manual:Creating_and_manipulating_geometry/ru.md) , [Manual:Creating FEM analyses/ru](Manual:Creating_FEM_analyses/ru.md) , [Manual:Creating interface tools/ru](Manual:Creating_interface_tools/ru.md) , [Manual:Creating parametric objects/ru](Manual:Creating_parametric_objects/ru.md) , [Manual:Creating renderings/ru](Manual:Creating_renderings/ru.md) , [Manual:Generating 2D drawings/ru](Manual:Generating_2D_drawings/ru.md) , [Manual:Import and export to other filetypes/ru](Manual:Import_and_export_to_other_filetypes/ru.md) , [Manual:Installing/ru](Manual:Installing/ru.md) , [Manual:Introduction/ru](Manual:Introduction/ru.md) , [Manual:Modeling for product design/ru](Manual:Modeling_for_product_design/ru.md) , [Manual:Navigating in the 3D view/ru](Manual:Navigating_in_the_3D_view/ru.md) , [Manual:Parametric objects/ru](Manual:Parametric_objects/ru.md) , [Manual:Preparing models for 3D printing/ru](Manual:Preparing_models_for_3D_printing/ru.md) , [Manual:Summary/ru](Manual:Summary/ru.md) , [Manual:The Community/ru](Manual:The_Community/ru.md) , [Manual:The FreeCAD document/ru](Manual:The_FreeCAD_document/ru.md) , [Manual:The FreeCAD Interface/ru](Manual:The_FreeCAD_Interface/ru.md) , [Template:Manual:TOC/ru](Template:Manual:TOC/ru.md) , [Manual:Traditional 2D drafting/ru](Manual:Traditional_2D_drafting/ru.md) , [Manual:Traditional modeling, the CSG way/ru](Manual:Traditional_modeling,_the_CSG_way/ru.md) , [Manual:Using spreadsheets/ru](Manual:Using_spreadsheets/ru.md) , [Manual:What is FreeCAD/ru](Manual:What_is_FreeCAD/ru.md) + +--- +[documentation index](../README.md) > Category:Manual/ru diff --git a/wiki/translations/ru/Category:Mesh.md b/wiki/translations/ru/Category:Mesh.md index 020f885a8e..e7013522a0 100644 --- a/wiki/translations/ru/Category:Mesh.md +++ b/wiki/translations/ru/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/ru](Mesh_Workbench/ru. [Artwork Mesh/ru](Artwork_Mesh/ru.md) , [Artwork MeshPart/ru](Artwork_MeshPart/ru.md) , [Manual:Preparing models for 3D printing/ru](Manual:Preparing_models_for_3D_printing/ru.md) , [Mesh BoundingBox/ru](Mesh_BoundingBox/ru.md) , [Mesh BuildRegularSolid/ru](Mesh_BuildRegularSolid/ru.md) , [Mesh CurvatureInfo/ru](Mesh_CurvatureInfo/ru.md) , [Mesh Difference/ru](Mesh_Difference/ru.md) , [Mesh EvaluateFacet/ru](Mesh_EvaluateFacet/ru.md) , [Mesh EvaluateSolid/ru](Mesh_EvaluateSolid/ru.md) , [Mesh Evaluation/ru](Mesh_Evaluation/ru.md) , [Mesh Export/ru](Mesh_Export/ru.md) , [Mesh FillInteractiveHole/ru](Mesh_FillInteractiveHole/ru.md) , [Mesh FlipNormals/ru](Mesh_FlipNormals/ru.md) , [Mesh FromPartShape/ru](Mesh_FromPartShape/ru.md) , [Mesh HarmonizeNormals/ru](Mesh_HarmonizeNormals/ru.md) , [Mesh Import/ru](Mesh_Import/ru.md) , [Mesh Intersection/ru](Mesh_Intersection/ru.md) , [Mesh Merge/ru](Mesh_Merge/ru.md) , [Mesh PolyCut/ru](Mesh_PolyCut/ru.md) , [Mesh RemoveCompByHand/ru](Mesh_RemoveCompByHand/ru.md) , [Mesh RemoveComponents/ru](Mesh_RemoveComponents/ru.md) , [Mesh Scale/ru](Mesh_Scale/ru.md) , [Mesh Scripting/ru](Mesh_Scripting/ru.md) , [Mesh to Part/ru](Mesh_to_Part/ru.md) , [Template:Mesh Tools navi/ru](Template:Mesh_Tools_navi/ru.md) , [Mesh Union/ru](Mesh_Union/ru.md) , [Mesh VertexCurvature/ru](Mesh_VertexCurvature/ru.md) , [Mesh Workbench/ru](Mesh_Workbench/ru.md) , [Mesh/ru](Mesh/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Mesh/ru diff --git a/wiki/translations/ru/Category:News.md b/wiki/translations/ru/Category:News.md index e1612133c1..322bcdd67e 100644 --- a/wiki/translations/ru/Category:News.md +++ b/wiki/translations/ru/Category:News.md @@ -6,3 +6,6 @@ This category contains articles with news and messages about FreeCAD. [History/ru](History/ru.md) , [Release notes 0.11/ru](Release_notes_0.11/ru.md) , [Release notes 0.12/ru](Release_notes_0.12/ru.md) , [Release notes 0.13/ru](Release_notes_0.13/ru.md) , [Release notes 0.14/ru](Release_notes_0.14/ru.md) , [Release notes 0.15/ru](Release_notes_0.15/ru.md) , [Release notes 0.16/ru](Release_notes_0.16/ru.md) , [Release notes 0.17/ru](Release_notes_0.17/ru.md) , [Release notes 0.18/ru](Release_notes_0.18/ru.md) , [Release notes 0.19/ru](Release_notes_0.19/ru.md) , [Release notes 0.20/ru](Release_notes_0.20/ru.md) [Category:Categories/ru](Category:Categories/ru.md) + +--- +[documentation index](../README.md) > Category:News/ru diff --git a/wiki/translations/ru/Category:Obsolete_Workbenches.md b/wiki/translations/ru/Category:Obsolete_Workbenches.md index 9531ccb82c..902fe0563b 100644 --- a/wiki/translations/ru/Category:Obsolete_Workbenches.md +++ b/wiki/translations/ru/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/ru](Drawing_Workbenc [Complete Workbench/ru](Complete_Workbench/ru.md) , [Drawing Workbench/ru](Drawing_Workbench/ru.md) , , [Category:Obsolete Workbenches/ru](Category:Obsolete_Workbenches/ru.md) [Category:Drawing/ru](Category:Drawing/ru.md) [Category:Obsolete Workbenches/ru](Category:Obsolete_Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/ru diff --git a/wiki/translations/ru/Category:OpenSCAD.md b/wiki/translations/ru/Category:OpenSCAD.md index 0a786e3c49..ae88765df1 100644 --- a/wiki/translations/ru/Category:OpenSCAD.md +++ b/wiki/translations/ru/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/ru](OpenSCAD_Workb [Artwork OpenSCAD/ru](Artwork_OpenSCAD/ru.md) , [Import OpenSCAD code/ru](Import_OpenSCAD_code/ru.md) , [OpenSCAD AddOpenSCADElement/ru](OpenSCAD_AddOpenSCADElement/ru.md) , [OpenSCAD ColorCodeShape/ru](OpenSCAD_ColorCodeShape/ru.md) , [OpenSCAD Edgestofaces/ru](OpenSCAD_Edgestofaces/ru.md) , [OpenSCAD ExpandPlacements/ru](OpenSCAD_ExpandPlacements/ru.md) , [OpenSCAD ExplodeGroup/ru](OpenSCAD_ExplodeGroup/ru.md) , [OpenSCAD Hull/ru](OpenSCAD_Hull/ru.md) , [OpenSCAD IncreaseToleranceFeature/ru](OpenSCAD_IncreaseToleranceFeature/ru.md) , [OpenSCAD MeshBoolean/ru](OpenSCAD_MeshBoolean/ru.md) , [OpenSCAD Minkowski/ru](OpenSCAD_Minkowski/ru.md) , [OpenSCAD Preferences/ru](OpenSCAD_Preferences/ru.md) , [OpenSCAD RefineShapeFeature/ru](OpenSCAD_RefineShapeFeature/ru.md) , [OpenSCAD RemoveSubtree/ru](OpenSCAD_RemoveSubtree/ru.md) , [OpenSCAD ReplaceObject/ru](OpenSCAD_ReplaceObject/ru.md) , [Template:OpenSCAD Tools navi/ru](Template:OpenSCAD_Tools_navi/ru.md) , [OpenSCAD Workbench/ru](OpenSCAD_Workbench/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/ru diff --git a/wiki/translations/ru/Category:Part.md b/wiki/translations/ru/Category:Part.md index 2181b75f4f..d7090850a9 100644 --- a/wiki/translations/ru/Category:Part.md +++ b/wiki/translations/ru/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/ru](Part_Workbench/ru.m [Aeroplane/ru](Aeroplane/ru.md) , [Artwork Part/ru](Artwork_Part/ru.md) , [Basic modeling tutorial/ru](Basic_modeling_tutorial/ru.md) , [Constructive solid geometry/ru](Constructive_solid_geometry/ru.md) , [Draft ShapeString tutorial/ru](Draft_ShapeString_tutorial/ru.md) , [Part and PartDesign/ru](Part_and_PartDesign/ru.md) , [Part Boolean/ru](Part_Boolean/ru.md) , [Part BooleanFragments/ru](Part_BooleanFragments/ru.md) , [Part Box/ru](Part_Box/ru.md) , [Part BoxSelection/ru](Part_BoxSelection/ru.md) , [Part Builder/ru](Part_Builder/ru.md) , [Part Chamfer/ru](Part_Chamfer/ru.md) , [Part CheckGeometry/ru](Part_CheckGeometry/ru.md) , [Part Circle/ru](Part_Circle/ru.md) , [Part Common/ru](Part_Common/ru.md) , [Part CompCompoundTools/ru](Part_CompCompoundTools/ru.md) , [Part CompJoinFeatures/ru](Part_CompJoinFeatures/ru.md) , [Part CompOffsetTools/ru](Part_CompOffsetTools/ru.md) , [Part Compound/ru](Part_Compound/ru.md) , [Part CompoundFilter/ru](Part_CompoundFilter/ru.md) , [Part CompSplittingTools/ru](Part_CompSplittingTools/ru.md) , [Part Cone/ru](Part_Cone/ru.md) , [Part CrossSections/ru](Part_CrossSections/ru.md) , [Part Cut/ru](Part_Cut/ru.md) , [Part Cylinder/ru](Part_Cylinder/ru.md) , [Part Defeaturing/ru](Part_Defeaturing/ru.md) , [Part EditAttachment/ru](Part_EditAttachment/ru.md) , [Part ElementCopy/ru](Part_ElementCopy/ru.md) , [Part Ellipse/ru](Part_Ellipse/ru.md) , [Part Ellipsoid/ru](Part_Ellipsoid/ru.md) , [Part ExplodeCompound/ru](Part_ExplodeCompound/ru.md) , [Part Export/ru](Part_Export/ru.md) , [Part Extrude/ru](Part_Extrude/ru.md) , [Part Feature/ru](Part_Feature/ru.md) , [Part Fillet/ru](Part_Fillet/ru.md) , [Part Fuse/ru](Part_Fuse/ru.md) , [Part Helix/ru](Part_Helix/ru.md) , [Part Import/ru](Part_Import/ru.md) , [Part JoinConnect/ru](Part_JoinConnect/ru.md) , [Part JoinCutout/ru](Part_JoinCutout/ru.md) , [Part JoinEmbed/ru](Part_JoinEmbed/ru.md) , [Part Line/ru](Part_Line/ru.md) , [Part Loft/ru](Part_Loft/ru.md) , [Part MakeFace/ru](Part_MakeFace/ru.md) , [Part MakeSolid/ru](Part_MakeSolid/ru.md) , [Part Measure Angular/ru](Part_Measure_Angular/ru.md) , [Part Measure Clear All/ru](Part_Measure_Clear_All/ru.md) , [Part Measure Linear/ru](Part_Measure_Linear/ru.md) , [Part Measure Menu/ru](Part_Measure_Menu/ru.md) , [Part Measure Refresh/ru](Part_Measure_Refresh/ru.md) , [Part Measure Toggle 3d/ru](Part_Measure_Toggle_3d/ru.md) , [Part Measure Toggle All/ru](Part_Measure_Toggle_All/ru.md) , [Part Measure Toggle Delta/ru](Part_Measure_Toggle_Delta/ru.md) , [Part Mirror/ru](Part_Mirror/ru.md) , [Part Module/ru](Part_Module/ru.md) , [Part Offset/ru](Part_Offset/ru.md) , [Part Offset2D/ru](Part_Offset2D/ru.md) , [Part Plane/ru](Part_Plane/ru.md) , [Part Point/ru](Part_Point/ru.md) , [Part PointsFromMesh/ru](Part_PointsFromMesh/ru.md) , [Part Primitives/ru](Part_Primitives/ru.md) , [Part Prism/ru](Part_Prism/ru.md) , [Part ProjectionOnSurface/ru](Part_ProjectionOnSurface/ru.md) , [Part RefineShape/ru](Part_RefineShape/ru.md) , [Part RegularPolygon/ru](Part_RegularPolygon/ru.md) , [Part ReverseShapes/ru](Part_ReverseShapes/ru.md) , [Part Revolve/ru](Part_Revolve/ru.md) , [Part RuledSurface/ru](Part_RuledSurface/ru.md) , [Part scripting/ru](Part_scripting/ru.md) , [Part Section/ru](Part_Section/ru.md) , [Part ShapeFromMesh/ru](Part_ShapeFromMesh/ru.md) , [Part SimpleCopy/ru](Part_SimpleCopy/ru.md) , [Part Slice/ru](Part_Slice/ru.md) , [Part SliceApart/ru](Part_SliceApart/ru.md) , [Part Sphere/ru](Part_Sphere/ru.md) , [Part Spiral/ru](Part_Spiral/ru.md) , [Part Sweep/ru](Part_Sweep/ru.md) , [Part Thickness/ru](Part_Thickness/ru.md) , [Template:Part Tools navi/ru](Template:Part_Tools_navi/ru.md) , [Part TopoShape/ru](Part_TopoShape/ru.md) , [Part Torus/ru](Part_Torus/ru.md) , [Part TransformedCopy/ru](Part_TransformedCopy/ru.md) , [Part Tube/ru](Part_Tube/ru.md) , [Part Wedge/ru](Part_Wedge/ru.md) , [Part XOR/ru](Part_XOR/ru.md) , [Shape/ru](Shape/ru.md) , [Thread for Screw Tutorial/ru](Thread_for_Screw_Tutorial/ru.md) , [Topological naming problem/ru](Topological_naming_problem/ru.md) , [Whiffle Ball tutorial/ru](Whiffle_Ball_tutorial/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Part/ru diff --git a/wiki/translations/ru/Category:PartDesign.md b/wiki/translations/ru/Category:PartDesign.md index 6ccb32f5f6..682444ca81 100644 --- a/wiki/translations/ru/Category:PartDesign.md +++ b/wiki/translations/ru/Category:PartDesign.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to PartDesign ### Contents: [Artwork PartDesign/ru](Artwork_PartDesign/ru.md) , [Basic Part Design Tutorial/ru](Basic_Part_Design_Tutorial/ru.md) , [Body/ru](Body/ru.md) , [Creating a simple part with PartDesign/ru](Creating_a_simple_part_with_PartDesign/ru.md) , [Datum/ru](Datum/ru.md) , [Draft ShapeString tutorial/ru](Draft_ShapeString_tutorial/ru.md) , [Feature editing/ru](Feature_editing/ru.md) , [Part and PartDesign/ru](Part_and_PartDesign/ru.md) , [PartDesign AdditiveBox/ru](PartDesign_AdditiveBox/ru.md) , [PartDesign AdditiveCone/ru](PartDesign_AdditiveCone/ru.md) , [PartDesign AdditiveCylinder/ru](PartDesign_AdditiveCylinder/ru.md) , [PartDesign AdditiveEllipsoid/ru](PartDesign_AdditiveEllipsoid/ru.md) , [PartDesign AdditiveHelix/ru](PartDesign_AdditiveHelix/ru.md) , [PartDesign AdditiveLoft/ru](PartDesign_AdditiveLoft/ru.md) , [PartDesign AdditivePipe/ru](PartDesign_AdditivePipe/ru.md) , [PartDesign AdditivePrism/ru](PartDesign_AdditivePrism/ru.md) , [PartDesign AdditiveSphere/ru](PartDesign_AdditiveSphere/ru.md) , [PartDesign AdditiveTorus/ru](PartDesign_AdditiveTorus/ru.md) , [PartDesign AdditiveWedge/ru](PartDesign_AdditiveWedge/ru.md) , [PartDesign Body/ru](PartDesign_Body/ru.md) , [PartDesign Boolean/ru](PartDesign_Boolean/ru.md) , [PartDesign Chamfer/ru](PartDesign_Chamfer/ru.md) , [PartDesign Clone/ru](PartDesign_Clone/ru.md) , [PartDesign CompPrimitiveAdditive/ru](PartDesign_CompPrimitiveAdditive/ru.md) , [PartDesign CompPrimitiveSubtractive/ru](PartDesign_CompPrimitiveSubtractive/ru.md) , [PartDesign CoordinateSystem/ru](PartDesign_CoordinateSystem/ru.md) , [PartDesign Draft/ru](PartDesign_Draft/ru.md) , [PartDesign Feature/ru](PartDesign_Feature/ru.md) , [PartDesign Fillet/ru](PartDesign_Fillet/ru.md) , [PartDesign Groove/ru](PartDesign_Groove/ru.md) , [PartDesign Hole/ru](PartDesign_Hole/ru.md) , [PartDesign InvoluteGear/ru](PartDesign_InvoluteGear/ru.md) , [PartDesign Line/ru](PartDesign_Line/ru.md) , [PartDesign LinearPattern/ru](PartDesign_LinearPattern/ru.md) , [PartDesign Mirrored/ru](PartDesign_Mirrored/ru.md) , [PartDesign MoveFeature/ru](PartDesign_MoveFeature/ru.md) , [PartDesign MoveFeatureInTree/ru](PartDesign_MoveFeatureInTree/ru.md) , [PartDesign MoveTip/ru](PartDesign_MoveTip/ru.md) , [PartDesign MultiTransform/ru](PartDesign_MultiTransform/ru.md) , [PartDesign NewSketch/ru](PartDesign_NewSketch/ru.md) , [PartDesign Pad/ru](PartDesign_Pad/ru.md) , [PartDesign Plane/ru](PartDesign_Plane/ru.md) , [PartDesign Pocket/ru](PartDesign_Pocket/ru.md) , [PartDesign Point/ru](PartDesign_Point/ru.md) , [PartDesign PolarPattern/ru](PartDesign_PolarPattern/ru.md) , [PartDesign Preferences/ru](PartDesign_Preferences/ru.md) , [PartDesign Revolution/ru](PartDesign_Revolution/ru.md) , [PartDesign ShapeBinder/ru](PartDesign_ShapeBinder/ru.md) , [PartDesign Sprocket/ru](PartDesign_Sprocket/ru.md) , [PartDesign SubShapeBinder/ru](PartDesign_SubShapeBinder/ru.md) , [PartDesign SubtractiveBox/ru](PartDesign_SubtractiveBox/ru.md) , [PartDesign SubtractiveCone/ru](PartDesign_SubtractiveCone/ru.md) , [PartDesign SubtractiveCylinder/ru](PartDesign_SubtractiveCylinder/ru.md) , [PartDesign SubtractiveEllipsoid/ru](PartDesign_SubtractiveEllipsoid/ru.md) , [PartDesign SubtractiveHelix/ru](PartDesign_SubtractiveHelix/ru.md) , [PartDesign SubtractiveLoft/ru](PartDesign_SubtractiveLoft/ru.md) , [PartDesign SubtractivePipe/ru](PartDesign_SubtractivePipe/ru.md) , [PartDesign SubtractivePrism/ru](PartDesign_SubtractivePrism/ru.md) , [PartDesign SubtractiveSphere/ru](PartDesign_SubtractiveSphere/ru.md) , [PartDesign SubtractiveTorus/ru](PartDesign_SubtractiveTorus/ru.md) , [PartDesign SubtractiveWedge/ru](PartDesign_SubtractiveWedge/ru.md) , [PartDesign Thickness/ru](PartDesign_Thickness/ru.md) , [Template:PartDesign Tools navi/ru](Template:PartDesign_Tools_navi/ru.md) , [PartDesign WizardShaft/ru](PartDesign_WizardShaft/ru.md) , [PartDesign Workbench/ru](PartDesign_Workbench/ru.md) , [Thread for Screw Tutorial/ru](Thread_for_Screw_Tutorial/ru.md) , [Toothbrush Head Stand/ru](Toothbrush_Head_Stand/ru.md) , [Topological naming problem/ru](Topological_naming_problem/ru.md) + +--- +[documentation index](../README.md) > Category:PartDesign/ru diff --git a/wiki/translations/ru/Category:Path.md b/wiki/translations/ru/Category:Path.md index ac04ebf857..8f7deb4372 100644 --- a/wiki/translations/ru/Category:Path.md +++ b/wiki/translations/ru/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/ru](PartDesign_Wo [Artwork Path/ru](Artwork_Path/ru.md) , [Manual:Preparing models for 3D printing/ru](Manual:Preparing_models_for_3D_printing/ru.md) , [Path Array/ru](Path_Array/ru.md) , [Path Comment/ru](Path_Comment/ru.md) , [Path Copy/ru](Path_Copy/ru.md) , [Path Custom/ru](Path_Custom/ru.md) , [Path Drilling/ru](Path_Drilling/ru.md) , [Path experimental/ru](Path_experimental/ru.md) , [Path FAQ/ru](Path_FAQ/ru.md) , [Path Fixture/ru](Path_Fixture/ru.md) , [Path fourth axis/ru](Path_fourth_axis/ru.md) , [Path Inspect/ru](Path_Inspect/ru.md) , [Path Pocket 3D/ru](Path_Pocket_3D/ru.md) , [Path Pocket Shape/ru](Path_Pocket_Shape/ru.md) , [Path Post/ru](Path_Post/ru.md) , [Path Postprocessor Customization/ru](Path_Postprocessor_Customization/ru.md) , [Path Preferences/ru](Path_Preferences/ru.md) , [Path Profile/ru](Path_Profile/ru.md) , [Path Sanity/ru](Path_Sanity/ru.md) , [Path scripting/ru](Path_scripting/ru.md) , [Path SelectLoop/ru](Path_SelectLoop/ru.md) , [Path Shape/ru](Path_Shape/ru.md) , [Path SimpleCopy/ru](Path_SimpleCopy/ru.md) , [Path Simulator/ru](Path_Simulator/ru.md) , [Path Stop/ru](Path_Stop/ru.md) , [Path Surface/ru](Path_Surface/ru.md) , [Path ToolBit Library/ru](Path_ToolBit_Library/ru.md) , [Path ToolController/ru](Path_ToolController/ru.md) , [Template:Path Tools navi/ru](Template:Path_Tools_navi/ru.md) , [Path Tools/ru](Path_Tools/ru.md) , [Path ToolShape/ru](Path_ToolShape/ru.md) , [Path Walkthrough for the Impatient/ru](Path_Walkthrough_for_the_Impatient/ru.md) , [Path Workbench/ru](Path_Workbench/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Path/ru diff --git a/wiki/translations/ru/Category:Plot.md b/wiki/translations/ru/Category:Plot.md index a3985775a9..c841abaa1a 100644 --- a/wiki/translations/ru/Category:Plot.md +++ b/wiki/translations/ru/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/ru](Plot_Workbench/ru.m [Artwork Plot/ru](Artwork_Plot/ru.md) , [Plot Axes/ru](Plot_Axes/ru.md) , [Plot Basic tutorial/ru](Plot_Basic_tutorial/ru.md) , [Plot Grid/ru](Plot_Grid/ru.md) , [Plot Labels/ru](Plot_Labels/ru.md) , [Plot Legend/ru](Plot_Legend/ru.md) , [Plot Module/ru](Plot_Module/ru.md) , [Plot MultiAxes tutorial/ru](Plot_MultiAxes_tutorial/ru.md) , [Plot Positions/ru](Plot_Positions/ru.md) , [Plot Save/ru](Plot_Save/ru.md) , [Plot Series/ru](Plot_Series/ru.md) , [Template:Plot Tools navi/ru](Template:Plot_Tools_navi/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Plot/ru diff --git a/wiki/translations/ru/Category:Points.md b/wiki/translations/ru/Category:Points.md index e2eb925474..24f3056759 100644 --- a/wiki/translations/ru/Category:Points.md +++ b/wiki/translations/ru/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/ru](Points_Workbench/ [Artwork Points/ru](Artwork_Points/ru.md) , [Points Workbench/ru](Points_Workbench/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Points/ru diff --git a/wiki/translations/ru/Category:Poweruser_Documentation.md b/wiki/translations/ru/Category:Poweruser_Documentation.md index a04a02a8e7..c587df2437 100644 --- a/wiki/translations/ru/Category:Poweruser_Documentation.md +++ b/wiki/translations/ru/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Arch API/ru](Arch_API/ru.md) , [Builtin modules/ru](Builtin_modules/ru.md) , [Code snippets/ru](Code_snippets/ru.md) , [Command/ru](Command/ru.md) , [Create a FeaturePython object part I/ru](Create_a_FeaturePython_object_part_I/ru.md) , [Create a FeaturePython object part II/ru](Create_a_FeaturePython_object_part_II/ru.md) , [Debugging/ru](Debugging/ru.md) , [Dialog creation/ru](Dialog_creation/ru.md) , [Draft API/ru](Draft_API/ru.md) , [Embedding FreeCAD/ru](Embedding_FreeCAD/ru.md) , [Embedding FreeCADGui/ru](Embedding_FreeCADGui/ru.md) , [Expressions/ru](Expressions/ru.md) , [FEM CalculiX/ru](FEM_CalculiX/ru.md) , [FEM Element Types/ru](FEM_Element_Types/ru.md) , [FreeCAD API/ru](FreeCAD_API/ru.md) , [FreeCAD Scripting Basics/ru](FreeCAD_Scripting_Basics/ru.md) , [FreeCAD vector math library/ru](FreeCAD_vector_math_library/ru.md) , [Gui Command/ru](Gui_Command/ru.md) , [How to install additional workbenches/ru](How_to_install_additional_workbenches/ru.md) , [How to install macros/ru](How_to_install_macros/ru.md) , [Installing more workbenches/ru](Installing_more_workbenches/ru.md) , [Interface creation/ru](Interface_creation/ru.md) , [Introduction to Python/ru](Introduction_to_Python/ru.md) , [Line drawing function/ru](Line_drawing_function/ru.md) , [Macro at Startup/ru](Macro_at_Startup/ru.md) , [Macros/ru](Macros/ru.md) , [Manual:A gentle introduction/ru](Manual:A_gentle_introduction/ru.md) , [Manual:Creating and manipulating geometry/ru](Manual:Creating_and_manipulating_geometry/ru.md) , [Manual:Creating interface tools/ru](Manual:Creating_interface_tools/ru.md) , [Manual:Creating parametric objects/ru](Manual:Creating_parametric_objects/ru.md) , [Manual:Import and export to other filetypes/ru](Manual:Import_and_export_to_other_filetypes/ru.md) , [Manual:Installing/ru](Manual:Installing/ru.md) , [Manual:Parametric objects/ru](Manual:Parametric_objects/ru.md) , [Mesh Scripting/ru](Mesh_Scripting/ru.md) , [Mesh to Part/ru](Mesh_to_Part/ru.md) , [OpenCASCADE/ru](OpenCASCADE/ru.md) , [Part API/ru](Part_API/ru.md) , [Part scripting/ru](Part_scripting/ru.md) , [Path experimental/ru](Path_experimental/ru.md) , [Path scripting/ru](Path_scripting/ru.md) , [Pivy/ru](Pivy/ru.md) , [Power users hub/ru](Power_users_hub/ru.md) , [Profiling/ru](Profiling/ru.md) , [Property/ru](Property/ru.md) , [PySide Advanced Examples/ru](PySide_Advanced_Examples/ru.md) , [PySide Beginner Examples/ru](PySide_Beginner_Examples/ru.md) , [PySide Intermediate Examples/ru](PySide_Intermediate_Examples/ru.md) , [PySide/ru](PySide/ru.md) , [Python Development Environment/ru](Python_Development_Environment/ru.md) , [Python scripting tutorial/ru](Python_scripting_tutorial/ru.md) , [Python/ru](Python/ru.md) , [PythonOCC/ru](PythonOCC/ru.md) , [Raytracing API example/ru](Raytracing_API_example/ru.md) , [Scenegraph/ru](Scenegraph/ru.md) , [Scientific literature/ru](Scientific_literature/ru.md) , [Scripted objects migration/ru](Scripted_objects_migration/ru.md) , [Scripted objects saving attributes/ru](Scripted_objects_saving_attributes/ru.md) , [Scripted objects with attachment/ru](Scripted_objects_with_attachment/ru.md) , [Scripted objects/ru](Scripted_objects/ru.md) , [Scripted Parts: Ball Bearing - Part 1/ru](Scripted_Parts:_Ball_Bearing_-_Part_1/ru.md) , [Scripted Parts: Ball Bearing - Part 2/ru](Scripted_Parts:_Ball_Bearing_-_Part_2/ru.md) , [Scripting and macros/ru](Scripting_and_macros/ru.md) , [Scripts/ru](Scripts/ru.md) , [Svg Namespace/ru](Svg_Namespace/ru.md) , [TechDraw API/ru](TechDraw_API/ru.md) , [TechDrawGui API/ru](TechDrawGui_API/ru.md) , [Topological data scripting/ru](Topological_data_scripting/ru.md) , [Units/ru](Units/ru.md) , [Workbench creation/ru](Workbench_creation/ru.md) , [Wrapping a Cplusplus class in Python/ru](Wrapping_a_Cplusplus_class_in_Python/ru.md) [Category:Documentation/ru](Category:Documentation/ru.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/ru diff --git a/wiki/translations/ru/Category:Preferences.md b/wiki/translations/ru/Category:Preferences.md index 701e603b00..85a31f1c77 100644 --- a/wiki/translations/ru/Category:Preferences.md +++ b/wiki/translations/ru/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Arch Preferences/ru](Arch_Preferences/ru.md) , [Customize Toolbars/ru](Customize_Toolbars/ru.md) , [Draft Preferences/ru](Draft_Preferences/ru.md) , [FEM Preferences/ru](FEM_Preferences/ru.md) , [Import Export Preferences/ru](Import_Export_Preferences/ru.md) , [OpenSCAD Preferences/ru](OpenSCAD_Preferences/ru.md) , [PartDesign Preferences/ru](PartDesign_Preferences/ru.md) , [Path Preferences/ru](Path_Preferences/ru.md) , [Preferences Editor/ru](Preferences_Editor/ru.md) , [Raytracing Preferences/ru](Raytracing_Preferences/ru.md) , [Sketcher Preferences/ru](Sketcher_Preferences/ru.md) , [Start Preferences/ru](Start_Preferences/ru.md) , [TechDraw Preferences/ru](TechDraw_Preferences/ru.md) + +--- +[documentation index](../README.md) > Category:Preferences/ru diff --git a/wiki/translations/ru/Category:Python_Code.md b/wiki/translations/ru/Category:Python_Code.md index 18b0871aad..f5f8413113 100644 --- a/wiki/translations/ru/Category:Python_Code.md +++ b/wiki/translations/ru/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Code snippets/ru](Code_snippets/ru.md) , [Command/ru](Command/ru.md) , [Create a FeaturePython object part I/ru](Create_a_FeaturePython_object_part_I/ru.md) , [Create a FeaturePython object part II/ru](Create_a_FeaturePython_object_part_II/ru.md) , [Debugging/ru](Debugging/ru.md) , [Dialog creation/ru](Dialog_creation/ru.md) , [Embedding FreeCAD/ru](Embedding_FreeCAD/ru.md) , [Embedding FreeCADGui/ru](Embedding_FreeCADGui/ru.md) , [Extra python modules/ru](Extra_python_modules/ru.md) , [FEM Tutorial Python/ru](FEM_Tutorial_Python/ru.md) , [FreeCAD Scripting Basics/ru](FreeCAD_Scripting_Basics/ru.md) , [FreeCAD vector math library/ru](FreeCAD_vector_math_library/ru.md) , [How to install macros/ru](How_to_install_macros/ru.md) , [Interface creation/ru](Interface_creation/ru.md) , [Introduction to Python/ru](Introduction_to_Python/ru.md) , [Line drawing function/ru](Line_drawing_function/ru.md) , [Macro at Startup/ru](Macro_at_Startup/ru.md) , [Macros recipes/ru](Macros_recipes/ru.md) , [Macros/ru](Macros/ru.md) , [Manual:A gentle introduction/ru](Manual:A_gentle_introduction/ru.md) , [Manual:Creating and manipulating geometry/ru](Manual:Creating_and_manipulating_geometry/ru.md) , [Manual:Creating interface tools/ru](Manual:Creating_interface_tools/ru.md) , [Manual:Creating parametric objects/ru](Manual:Creating_parametric_objects/ru.md) , [Mesh Scripting/ru](Mesh_Scripting/ru.md) , [Mesh to Part/ru](Mesh_to_Part/ru.md) , [Part scripting/ru](Part_scripting/ru.md) , [Path scripting/ru](Path_scripting/ru.md) , [Pivy/ru](Pivy/ru.md) , [Profiling/ru](Profiling/ru.md) , [Property/ru](Property/ru.md) , [PySide Advanced Examples/ru](PySide_Advanced_Examples/ru.md) , [PySide Beginner Examples/ru](PySide_Beginner_Examples/ru.md) , [PySide Intermediate Examples/ru](PySide_Intermediate_Examples/ru.md) , [PySide/ru](PySide/ru.md) , [Python Development Environment/ru](Python_Development_Environment/ru.md) , [Python scripting tutorial/ru](Python_scripting_tutorial/ru.md) , [Python/ru](Python/ru.md) , [PythonOCC/ru](PythonOCC/ru.md) , [Raytracing API example/ru](Raytracing_API_example/ru.md) , [Scripted objects migration/ru](Scripted_objects_migration/ru.md) , [Scripted objects saving attributes/ru](Scripted_objects_saving_attributes/ru.md) , [Scripted objects with attachment/ru](Scripted_objects_with_attachment/ru.md) , [Scripted objects/ru](Scripted_objects/ru.md) , [Scripted Parts: Ball Bearing - Part 1/ru](Scripted_Parts:_Ball_Bearing_-_Part_1/ru.md) , [Scripted Parts: Ball Bearing - Part 2/ru](Scripted_Parts:_Ball_Bearing_-_Part_2/ru.md) , [Scripting and macros/ru](Scripting_and_macros/ru.md) , [Scripts/ru](Scripts/ru.md) , [Svg Namespace/ru](Svg_Namespace/ru.md) , [Topological data scripting/ru](Topological_data_scripting/ru.md) , [Workbench creation/ru](Workbench_creation/ru.md) [Category:Categories/ru](Category:Categories/ru.md) + +--- +[documentation index](../README.md) > Category:Python Code/ru diff --git a/wiki/translations/ru/Category:Raytracing.md b/wiki/translations/ru/Category:Raytracing.md index 4bb0244aa0..ea11cfb732 100644 --- a/wiki/translations/ru/Category:Raytracing.md +++ b/wiki/translations/ru/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/ru](Raytracing_Wo [Artwork Raytracing/ru](Artwork_Raytracing/ru.md) , [Manual:Creating renderings/ru](Manual:Creating_renderings/ru.md) , [Raytracing API example/ru](Raytracing_API_example/ru.md) , [Raytracing ExportProject/ru](Raytracing_ExportProject/ru.md) , [Raytracing InsertPart/ru](Raytracing_InsertPart/ru.md) , [Raytracing Lux/ru](Raytracing_Lux/ru.md) , [Raytracing New/ru](Raytracing_New/ru.md) , [Raytracing Preferences/ru](Raytracing_Preferences/ru.md) , [Raytracing Render/ru](Raytracing_Render/ru.md) , [Raytracing ResetCamera/ru](Raytracing_ResetCamera/ru.md) , [Raytracing templates/ru](Raytracing_templates/ru.md) , [Template:Raytracing Tools navi/ru](Template:Raytracing_Tools_navi/ru.md) , [Raytracing tutorial/ru](Raytracing_tutorial/ru.md) , [Raytracing Workbench/ru](Raytracing_Workbench/ru.md) , [Raytracing WriteCamera/ru](Raytracing_WriteCamera/ru.md) , [Raytracing WritePart/ru](Raytracing_WritePart/ru.md) , [Raytracing WriteView/ru](Raytracing_WriteView/ru.md) , [Tutorial FreeCAD POV ray/ru](Tutorial_FreeCAD_POV_ray/ru.md) , [Tutorial Render with Blender/ru](Tutorial_Render_with_Blender/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Raytracing/ru diff --git a/wiki/translations/ru/Category:Reinforcement.md b/wiki/translations/ru/Category:Reinforcement.md index 9a9fe25a83..83132d6e90 100644 --- a/wiki/translations/ru/Category:Reinforcement.md +++ b/wiki/translations/ru/Category:Reinforcement.md @@ -4,3 +4,6 @@ [Arch Rebar BeamReinforcement/ru](Arch_Rebar_BeamReinforcement/ru.md) , [Arch Rebar BentShape/ru](Arch_Rebar_BentShape/ru.md) , [Arch Rebar BOM/ru](Arch_Rebar_BOM/ru.md) , [Arch Rebar Circular ColumnReinforcement/ru](Arch_Rebar_Circular_ColumnReinforcement/ru.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/ru](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/ru.md) , [Arch Rebar ColumnReinforcement/ru](Arch_Rebar_ColumnReinforcement/ru.md) , [Arch Rebar Drawing Dimensioning/ru](Arch_Rebar_Drawing_Dimensioning/ru.md) , [Arch Rebar Helical/ru](Arch_Rebar_Helical/ru.md) , [Arch Rebar LShape/ru](Arch_Rebar_LShape/ru.md) , [Arch Rebar Stirrup/ru](Arch_Rebar_Stirrup/ru.md) , [Arch Rebar Straight/ru](Arch_Rebar_Straight/ru.md) , [Arch Rebar UShape/ru](Arch_Rebar_UShape/ru.md) , [Arch Rebar/ru](Arch_Rebar/ru.md) , [Custom Spacing/ru](Custom_Spacing/ru.md) , [Reinforcement Bar Bending Schedule/ru](Reinforcement_Bar_Bending_Schedule/ru.md) , [Reinforcement Bar Shape Cut List/ru](Reinforcement_Bar_Shape_Cut_List/ru.md) , [Reinforcement Workbench/ru](Reinforcement_Workbench/ru.md) [Category:Arch/ru](Category:Arch/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Reinforcement/ru diff --git a/wiki/translations/ru/Category:Repository.md b/wiki/translations/ru/Category:Repository.md index 9ff7078843..6ac5f4c9b9 100644 --- a/wiki/translations/ru/Category:Repository.md +++ b/wiki/translations/ru/Category:Repository.md @@ -4,3 +4,6 @@ This category gathers pages that act as a repository of resources for FreeCAD, s ### Contents: [Category:Categories/ru](Category:Categories/ru.md) + +--- +[documentation index](../README.md) > Category:Repository/ru diff --git a/wiki/translations/ru/Category:Roadmap.md b/wiki/translations/ru/Category:Roadmap.md index 25ec82811f..0f9f4b11d9 100644 --- a/wiki/translations/ru/Category:Roadmap.md +++ b/wiki/translations/ru/Category:Roadmap.md @@ -6,3 +6,6 @@ This category gathers all articles documenting what is planned in the Roadmap of [Assembly project/ru](Assembly_project/ru.md) , [CAM project/ru](CAM_project/ru.md) , [Development roadmap/ru](Development_roadmap/ru.md) , [FEM project/ru](FEM_project/ru.md) , [Material/ru](Material/ru.md) , [Naming project/ru](Naming_project/ru.md) , [Project template/ru](Project_template/ru.md) , [Raytracing project/ru](Raytracing_project/ru.md) , [Resource framework project/ru](Resource_framework_project/ru.md) , [Tolerancing/ru](Tolerancing/ru.md) , [Wished tools/ru](Wished_tools/ru.md) [Category:Categories/ru](Category:Categories/ru.md) + +--- +[documentation index](../README.md) > Category:Roadmap/ru diff --git a/wiki/translations/ru/Category:Robot.md b/wiki/translations/ru/Category:Robot.md index 28fb4398e9..378f7c249f 100644 --- a/wiki/translations/ru/Category:Robot.md +++ b/wiki/translations/ru/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/ru](Robot_Workbench/ru [Artwork Robot/ru](Artwork_Robot/ru.md) , [Robot 6-Axis/ru](Robot_6-Axis/ru.md) , [Robot API example/ru](Robot_API_example/ru.md) , [Robot CreateRobot/ru](Robot_CreateRobot/ru.md) , [Robot CreateTrajectory/ru](Robot_CreateTrajectory/ru.md) , [Robot Edge2Trac/ru](Robot_Edge2Trac/ru.md) , [Robot Export/ru](Robot_Export/ru.md) , [Robot InsertWaypoint/ru](Robot_InsertWaypoint/ru.md) , [Robot InsertWaypointPre/ru](Robot_InsertWaypointPre/ru.md) , [Robot RestoreHomePos/ru](Robot_RestoreHomePos/ru.md) , [Robot SetDefaultOrientation/ru](Robot_SetDefaultOrientation/ru.md) , [Robot SetDefaultValues/ru](Robot_SetDefaultValues/ru.md) , [Robot SetHomePos/ru](Robot_SetHomePos/ru.md) , [Robot Simulate/ru](Robot_Simulate/ru.md) , [Template:Robot Tools navi/ru](Template:Robot_Tools_navi/ru.md) , [Robot TrajectoryCompound/ru](Robot_TrajectoryCompound/ru.md) , [Robot TrajectoryDressUp/ru](Robot_TrajectoryDressUp/ru.md) , [Robot tutorial/ru](Robot_tutorial/ru.md) , [Robot Workbench/ru](Robot_Workbench/ru.md) , [VRML Preparation for Robot Simulation/ru](VRML_Preparation_for_Robot_Simulation/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Robot/ru diff --git a/wiki/translations/ru/Category:Screenshots.md b/wiki/translations/ru/Category:Screenshots.md index d49071e749..b3ff494ec7 100644 --- a/wiki/translations/ru/Category:Screenshots.md +++ b/wiki/translations/ru/Category:Screenshots.md @@ -6,3 +6,6 @@ This category lists pages with screenshots. [Screenshots/ru](Screenshots/ru.md) [Category:Documentation/ru](Category:Documentation/ru.md) + +--- +[documentation index](../README.md) > Category:Screenshots/ru diff --git a/wiki/translations/ru/Category:Ship.md b/wiki/translations/ru/Category:Ship.md index 12521ee01b..654a3f91bb 100644 --- a/wiki/translations/ru/Category:Ship.md +++ b/wiki/translations/ru/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/ru](Ship_Workbench/ru.m [Artwork Ship/ru](Artwork_Ship/ru.md) , [FreeCAD-Ship s60 tutorial (II)/ru](FreeCAD-Ship_s60_tutorial_(II)/ru.md) , [FreeCAD-Ship s60 tutorial/ru](FreeCAD-Ship_s60_tutorial/ru.md) , [Ship Area/ru](Ship_Area/ru.md) , [Ship Geometries Examples/ru](Ship_Geometries_Examples/ru.md) , [Ship Hydrostatics/ru](Ship_Hydrostatics/ru.md) , [Ship Loading/ru](Ship_Loading/ru.md) , [Ship New/ru](Ship_New/ru.md) , [Ship Outline/ru](Ship_Outline/ru.md) , [Template:Ship Tools navi/ru](Template:Ship_Tools_navi/ru.md) , [Ship Workbench/ru](Ship_Workbench/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Ship/ru diff --git a/wiki/translations/ru/Category:Sketcher.md b/wiki/translations/ru/Category:Sketcher.md index de9ec953c3..46727869d7 100644 --- a/wiki/translations/ru/Category:Sketcher.md +++ b/wiki/translations/ru/Category:Sketcher.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to Sketcher ### Contents: [Arch panel tutorial/ru](Arch_panel_tutorial/ru.md) , [Artwork Sketcher/ru](Artwork_Sketcher/ru.md) , [Basic Part Design Tutorial/ru](Basic_Part_Design_Tutorial/ru.md) , [Basic Sketcher Tutorial/ru](Basic_Sketcher_Tutorial/ru.md) , [Constraint/ru](Constraint/ru.md) , [Creating a simple part with PartDesign/ru](Creating_a_simple_part_with_PartDesign/ru.md) , [Draft ShapeString tutorial/ru](Draft_ShapeString_tutorial/ru.md) , [Part and PartDesign/ru](Part_and_PartDesign/ru.md) , [Sketch/ru](Sketch/ru.md) , [Sketcher BSplineApproximate/ru](Sketcher_BSplineApproximate/ru.md) , [Sketcher BSplineComb/ru](Sketcher_BSplineComb/ru.md) , [Sketcher BSplineDecreaseDegree/ru](Sketcher_BSplineDecreaseDegree/ru.md) , [Sketcher BSplineDecreaseKnotMultiplicity/ru](Sketcher_BSplineDecreaseKnotMultiplicity/ru.md) , [Sketcher BSplineDegree/ru](Sketcher_BSplineDegree/ru.md) , [Sketcher BSplineIncreaseDegree/ru](Sketcher_BSplineIncreaseDegree/ru.md) , [Sketcher BSplineIncreaseKnotMultiplicity/ru](Sketcher_BSplineIncreaseKnotMultiplicity/ru.md) , [Sketcher BSplineKnotMultiplicity/ru](Sketcher_BSplineKnotMultiplicity/ru.md) , [Sketcher BSplinePoleWeight/ru](Sketcher_BSplinePoleWeight/ru.md) , [Sketcher BSplinePolygon/ru](Sketcher_BSplinePolygon/ru.md) , [Sketcher CarbonCopy/ru](Sketcher_CarbonCopy/ru.md) , [Sketcher Clone/ru](Sketcher_Clone/ru.md) , [Sketcher CloseShape/ru](Sketcher_CloseShape/ru.md) , [Sketcher CompCreateArc/ru](Sketcher_CompCreateArc/ru.md) , [Sketcher CompCreateBSpline/ru](Sketcher_CompCreateBSpline/ru.md) , [Sketcher CompCreateCircle/ru](Sketcher_CompCreateCircle/ru.md) , [Sketcher CompCreateConic/ru](Sketcher_CompCreateConic/ru.md) , [Sketcher CompCreateRectangles/ru](Sketcher_CompCreateRectangles/ru.md) , [Sketcher CompCreateRegularPolygon/ru](Sketcher_CompCreateRegularPolygon/ru.md) , [Sketcher ConnectLines/ru](Sketcher_ConnectLines/ru.md) , [Sketcher ConstrainAngle/ru](Sketcher_ConstrainAngle/ru.md) , [Sketcher ConstrainBlock/ru](Sketcher_ConstrainBlock/ru.md) , [Sketcher ConstrainCoincident/ru](Sketcher_ConstrainCoincident/ru.md) , [Sketcher ConstrainDiameter/ru](Sketcher_ConstrainDiameter/ru.md) , [Sketcher ConstrainDistance/ru](Sketcher_ConstrainDistance/ru.md) , [Sketcher ConstrainDistanceX/ru](Sketcher_ConstrainDistanceX/ru.md) , [Sketcher ConstrainDistanceY/ru](Sketcher_ConstrainDistanceY/ru.md) , [Sketcher ConstrainEqual/ru](Sketcher_ConstrainEqual/ru.md) , [Sketcher ConstrainHorizontal/ru](Sketcher_ConstrainHorizontal/ru.md) , [Sketcher ConstrainInternalAlignment/ru](Sketcher_ConstrainInternalAlignment/ru.md) , [Sketcher ConstrainLock/ru](Sketcher_ConstrainLock/ru.md) , [Sketcher ConstrainParallel/ru](Sketcher_ConstrainParallel/ru.md) , [Sketcher ConstrainPerpendicular/ru](Sketcher_ConstrainPerpendicular/ru.md) , [Sketcher ConstrainPointOnObject/ru](Sketcher_ConstrainPointOnObject/ru.md) , [Sketcher ConstrainRadiam/ru](Sketcher_ConstrainRadiam/ru.md) , [Sketcher ConstrainRadius/ru](Sketcher_ConstrainRadius/ru.md) , [Sketcher ConstrainSnellsLaw/ru](Sketcher_ConstrainSnellsLaw/ru.md) , [Sketcher ConstrainSymmetric/ru](Sketcher_ConstrainSymmetric/ru.md) , [Sketcher ConstrainTangent/ru](Sketcher_ConstrainTangent/ru.md) , [Sketcher ConstrainVertical/ru](Sketcher_ConstrainVertical/ru.md) , [Sketcher Copy/ru](Sketcher_Copy/ru.md) , [Sketcher Create3PointArc/ru](Sketcher_Create3PointArc/ru.md) , [Sketcher Create3PointCircle/ru](Sketcher_Create3PointCircle/ru.md) , [Sketcher CreateArc/ru](Sketcher_CreateArc/ru.md) , [Sketcher CreateArcOfEllipse/ru](Sketcher_CreateArcOfEllipse/ru.md) , [Sketcher CreateArcOfHyperbola/ru](Sketcher_CreateArcOfHyperbola/ru.md) , [Sketcher CreateArcOfParabola/ru](Sketcher_CreateArcOfParabola/ru.md) , [Sketcher CreateBSpline/ru](Sketcher_CreateBSpline/ru.md) , [Sketcher CreateCircle/ru](Sketcher_CreateCircle/ru.md) , [Sketcher CreateEllipseBy3Points/ru](Sketcher_CreateEllipseBy3Points/ru.md) , [Sketcher CreateEllipseByCenter/ru](Sketcher_CreateEllipseByCenter/ru.md) , [Sketcher CreateFillet/ru](Sketcher_CreateFillet/ru.md) , [Sketcher CreateHeptagon/ru](Sketcher_CreateHeptagon/ru.md) , [Sketcher CreateHexagon/ru](Sketcher_CreateHexagon/ru.md) , [Sketcher CreateLine/ru](Sketcher_CreateLine/ru.md) , [Sketcher CreateOblong/ru](Sketcher_CreateOblong/ru.md) , [Sketcher CreateOctagon/ru](Sketcher_CreateOctagon/ru.md) , [Sketcher CreatePentagon/ru](Sketcher_CreatePentagon/ru.md) , [Sketcher CreatePeriodicBSpline/ru](Sketcher_CreatePeriodicBSpline/ru.md) , [Sketcher CreatePoint/ru](Sketcher_CreatePoint/ru.md) , [Sketcher CreatePolyline/ru](Sketcher_CreatePolyline/ru.md) , [Sketcher CreateRectangle Center/ru](Sketcher_CreateRectangle_Center/ru.md) , [Sketcher CreateRectangle/ru](Sketcher_CreateRectangle/ru.md) , [Sketcher CreateRegularPolygon/ru](Sketcher_CreateRegularPolygon/ru.md) , [Sketcher CreateSlot/ru](Sketcher_CreateSlot/ru.md) , [Sketcher CreateSquare/ru](Sketcher_CreateSquare/ru.md) , [Sketcher CreateTriangle/ru](Sketcher_CreateTriangle/ru.md) , [Sketcher DeleteAllConstraints/ru](Sketcher_DeleteAllConstraints/ru.md) , [Sketcher DeleteAllGeometry/ru](Sketcher_DeleteAllGeometry/ru.md) , [Sketcher Dialog/ru](Sketcher_Dialog/ru.md) , [Sketcher EditSketch/ru](Sketcher_EditSketch/ru.md) , [Sketcher Extend/ru](Sketcher_Extend/ru.md) , [Sketcher External/ru](Sketcher_External/ru.md) , [Sketcher helper constraint/ru](Sketcher_helper_constraint/ru.md) , [Sketcher LeaveSketch/ru](Sketcher_LeaveSketch/ru.md) , [Sketcher MapSketch/ru](Sketcher_MapSketch/ru.md) , [Sketcher MergeSketches/ru](Sketcher_MergeSketches/ru.md) , [Sketcher Micro Tutorial - Constraint Practices/ru](Sketcher_Micro_Tutorial_-_Constraint_Practices/ru.md) , [Sketcher MirrorSketch/ru](Sketcher_MirrorSketch/ru.md) , [Sketcher Move/ru](Sketcher_Move/ru.md) , [Sketcher NewSketch/ru](Sketcher_NewSketch/ru.md) , [Sketcher Preferences/ru](Sketcher_Preferences/ru.md) , [Sketcher RectangularArray/ru](Sketcher_RectangularArray/ru.md) , [Sketcher reference/ru](Sketcher_reference/ru.md) , [Sketcher RemoveAxesAlignment/ru](Sketcher_RemoveAxesAlignment/ru.md) , [Sketcher ReorientSketch/ru](Sketcher_ReorientSketch/ru.md) , [Sketcher requirement for a sketch/ru](Sketcher_requirement_for_a_sketch/ru.md) , [Sketcher RestoreInternalAlignmentGeometry/ru](Sketcher_RestoreInternalAlignmentGeometry/ru.md) , [Sketcher scripting/ru](Sketcher_scripting/ru.md) , [Sketcher SelectConflictingConstraints/ru](Sketcher_SelectConflictingConstraints/ru.md) , [Sketcher SelectConstraints/ru](Sketcher_SelectConstraints/ru.md) , [Sketcher SelectElementsAssociatedWithConstraints/ru](Sketcher_SelectElementsAssociatedWithConstraints/ru.md) , [Sketcher SelectElementsWithDoFs/ru](Sketcher_SelectElementsWithDoFs/ru.md) , [Sketcher SelectHorizontalAxis/ru](Sketcher_SelectHorizontalAxis/ru.md) , [Sketcher SelectOrigin/ru](Sketcher_SelectOrigin/ru.md) , [Sketcher SelectRedundantConstraints/ru](Sketcher_SelectRedundantConstraints/ru.md) , [Sketcher SelectVerticalAxis/ru](Sketcher_SelectVerticalAxis/ru.md) , [Sketcher Sketch/ru](Sketcher_Sketch/ru.md) , [Sketcher SketchObject/ru](Sketcher_SketchObject/ru.md) , [Sketcher Split/ru](Sketcher_Split/ru.md) , [Sketcher StopOperation/ru](Sketcher_StopOperation/ru.md) , [Sketcher SwitchVirtualSpace/ru](Sketcher_SwitchVirtualSpace/ru.md) , [Sketcher Symmetry/ru](Sketcher_Symmetry/ru.md) , [Sketcher ToggleActiveConstraint/ru](Sketcher_ToggleActiveConstraint/ru.md) , [Sketcher ToggleConstruction/ru](Sketcher_ToggleConstruction/ru.md) , [Sketcher ToggleDrivingConstraint/ru](Sketcher_ToggleDrivingConstraint/ru.md) , [Template:Sketcher Tools navi/ru](Template:Sketcher_Tools_navi/ru.md) , [Sketcher Trimming/ru](Sketcher_Trimming/ru.md) , [Sketcher Tutorial/ru](Sketcher_Tutorial/ru.md) , [Sketcher ValidateSketch/ru](Sketcher_ValidateSketch/ru.md) , [Sketcher ViewSection/ru](Sketcher_ViewSection/ru.md) , [Sketcher ViewSketch/ru](Sketcher_ViewSketch/ru.md) , [Sketcher Workbench/ru](Sketcher_Workbench/ru.md) , [Thread for Screw Tutorial/ru](Thread_for_Screw_Tutorial/ru.md) , [Toothbrush Head Stand/ru](Toothbrush_Head_Stand/ru.md) , [Tutorial custom placing of windows and doors/ru](Tutorial_custom_placing_of_windows_and_doors/ru.md) + +--- +[documentation index](../README.md) > Category:Sketcher/ru diff --git a/wiki/translations/ru/Category:Spreadsheet.md b/wiki/translations/ru/Category:Spreadsheet.md index 2b474ff468..efac166b73 100644 --- a/wiki/translations/ru/Category:Spreadsheet.md +++ b/wiki/translations/ru/Category:Spreadsheet.md @@ -6,3 +6,6 @@ [Artwork Spreadsheet/ru](Artwork_Spreadsheet/ru.md) , [Expressions/ru](Expressions/ru.md) , [Spreadsheet AlignBottom/ru](Spreadsheet_AlignBottom/ru.md) , [Spreadsheet AlignCenter/ru](Spreadsheet_AlignCenter/ru.md) , [Spreadsheet AlignLeft/ru](Spreadsheet_AlignLeft/ru.md) , [Spreadsheet AlignRight/ru](Spreadsheet_AlignRight/ru.md) , [Spreadsheet AlignTop/ru](Spreadsheet_AlignTop/ru.md) , [Spreadsheet AlignVCenter/ru](Spreadsheet_AlignVCenter/ru.md) , [Spreadsheet CreateSheet/ru](Spreadsheet_CreateSheet/ru.md) , [Spreadsheet Export/ru](Spreadsheet_Export/ru.md) , [Spreadsheet Import/ru](Spreadsheet_Import/ru.md) , [Spreadsheet MergeCells/ru](Spreadsheet_MergeCells/ru.md) , [Spreadsheet SetAlias/ru](Spreadsheet_SetAlias/ru.md) , [Spreadsheet SplitCell/ru](Spreadsheet_SplitCell/ru.md) , [Spreadsheet StyleBold/ru](Spreadsheet_StyleBold/ru.md) , [Spreadsheet StyleItalic/ru](Spreadsheet_StyleItalic/ru.md) , [Spreadsheet StyleUnderline/ru](Spreadsheet_StyleUnderline/ru.md) , [Template:Spreadsheet Tools navi/ru](Template:Spreadsheet_Tools_navi/ru.md) , [Spreadsheet Workbench/ru](Spreadsheet_Workbench/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) [Category:User\_Documentation/ru](Category:User_Documentation/ru.md) + +--- +[documentation index](../README.md) > Category:Spreadsheet/ru diff --git a/wiki/translations/ru/Category:Std_Base.md b/wiki/translations/ru/Category:Std_Base.md index 75e5307177..16fd09ad88 100644 --- a/wiki/translations/ru/Category:Std_Base.md +++ b/wiki/translations/ru/Category:Std_Base.md @@ -6,3 +6,6 @@ This category list pages related to the [Std Base](Std_Base/ru.md), which collec [App Link/ru](App_Link/ru.md) , [App Part/ru](App_Part/ru.md) , [Assembly/ru](Assembly/ru.md) , [Combo view/ru](Combo_view/ru.md) , [DAG view/ru](DAG_view/ru.md) , [Interface Customization/ru](Interface_Customization/ru.md) , [Part/ru](Part/ru.md) , [Property editor/ru](Property_editor/ru.md) , [Python console/ru](Python_console/ru.md) , [Report view/ru](Report_view/ru.md) , [Selection view/ru](Selection_view/ru.md) , [Standard Menu/ru](Standard_Menu/ru.md) , [Std About/ru](Std_About/ru.md) , [Std ActivateNextWindow/ru](Std_ActivateNextWindow/ru.md) , [Std ActivatePrevWindow/ru](Std_ActivatePrevWindow/ru.md) , [Std AddonMgr/ru](Std_AddonMgr/ru.md) , [Std Alignment/ru](Std_Alignment/ru.md) , [Std ArrangeIcons/ru](Std_ArrangeIcons/ru.md) , [Std AxisCross/ru](Std_AxisCross/ru.md) , [Template:Std Base navi/ru](Template:Std_Base_navi/ru.md) , [Template:Std Base/ru](Template:Std_Base/ru.md) , [Std Base/ru](Std_Base/ru.md) , [Std BoxElementSelection/ru](Std_BoxElementSelection/ru.md) , [Std BoxSelection/ru](Std_BoxSelection/ru.md) , [Std CascadeWindows/ru](Std_CascadeWindows/ru.md) , [Std CloseActiveWindow/ru](Std_CloseActiveWindow/ru.md) , [Std CloseAllWindows/ru](Std_CloseAllWindows/ru.md) , [Std Copy/ru](Std_Copy/ru.md) , [Std Cut/ru](Std_Cut/ru.md) , [Std Delete/ru](Std_Delete/ru.md) , [Std DemoMode/ru](Std_DemoMode/ru.md) , [Std DependencyGraph/ru](Std_DependencyGraph/ru.md) , [Std DlgCustomize/ru](Std_DlgCustomize/ru.md) , [Std DlgMacroExecute/ru](Std_DlgMacroExecute/ru.md) , [Std DlgMacroExecuteDirect/ru](Std_DlgMacroExecuteDirect/ru.md) , [Std DlgMacroRecord/ru](Std_DlgMacroRecord/ru.md) , [Std DlgParameter/ru](Std_DlgParameter/ru.md) , [Std DlgPreferences/ru](Std_DlgPreferences/ru.md) , [Std DrawStyle/ru](Std_DrawStyle/ru.md) , [Std DuplicateSelection/ru](Std_DuplicateSelection/ru.md) , [Std Edit Menu/ru](Std_Edit_Menu/ru.md) , [Std Edit/ru](Std_Edit/ru.md) , [Std Export/ru](Std_Export/ru.md) , [Std File Menu/ru](Std_File_Menu/ru.md) , [Std FreeCADFAQ/ru](Std_FreeCADFAQ/ru.md) , [Std FreeCADForum/ru](Std_FreeCADForum/ru.md) , [Std FreeCADPowerUserHub/ru](Std_FreeCADPowerUserHub/ru.md) , [Std FreeCADUserHub/ru](Std_FreeCADUserHub/ru.md) , [Std FreeCADWebsite/ru](Std_FreeCADWebsite/ru.md) , [Std FreezeViews/ru](Std_FreezeViews/ru.md) , [Std Group/ru](Std_Group/ru.md) , [Std Help Menu/ru](Std_Help_Menu/ru.md) , [Std HideObjects/ru](Std_HideObjects/ru.md) , [Std HideSelection/ru](Std_HideSelection/ru.md) , [Std Import/ru](Std_Import/ru.md) , [Std LinkImport/ru](Std_LinkImport/ru.md) , [Std LinkImportAll/ru](Std_LinkImportAll/ru.md) , [Std LinkMake/ru](Std_LinkMake/ru.md) , [Std LinkMakeRelative/ru](Std_LinkMakeRelative/ru.md) , [Std LinkReplace/ru](Std_LinkReplace/ru.md) , [Std LinkSelectAllLinks/ru](Std_LinkSelectAllLinks/ru.md) , [Std LinkSelectLinked/ru](Std_LinkSelectLinked/ru.md) , [Std LinkSelectLinkedFinal/ru](Std_LinkSelectLinkedFinal/ru.md) , [Std LinkUnlink/ru](Std_LinkUnlink/ru.md) , [Std Macro Menu/ru](Std_Macro_Menu/ru.md) , [Std MacroAttachDebugger/ru](Std_MacroAttachDebugger/ru.md) , [Std MacroStartDebug/ru](Std_MacroStartDebug/ru.md) , [Std MacroStepInto/ru](Std_MacroStepInto/ru.md) , [Std MacroStepOver/ru](Std_MacroStepOver/ru.md) , [Std MacroStopDebug/ru](Std_MacroStopDebug/ru.md) , [Std MacroStopRecord/ru](Std_MacroStopRecord/ru.md) , [Std MainFullscreen/ru](Std_MainFullscreen/ru.md) , [Std MeasureDistance/ru](Std_MeasureDistance/ru.md) , [Std MergeProjects/ru](Std_MergeProjects/ru.md) , [Std New/ru](Std_New/ru.md) , [Std OnlineHelp/ru](Std_OnlineHelp/ru.md) , [Std Open/ru](Std_Open/ru.md) , [Std OrthographicCamera/ru](Std_OrthographicCamera/ru.md) , [Std Part/ru](Std_Part/ru.md) , [Std Paste/ru](Std_Paste/ru.md) , [Std PerspectiveCamera/ru](Std_PerspectiveCamera/ru.md) , [Std Placement/ru](Std_Placement/ru.md) , [Std Print/ru](Std_Print/ru.md) , [Std PrintPdf/ru](Std_PrintPdf/ru.md) , [Std PrintPreview/ru](Std_PrintPreview/ru.md) , [Std ProjectInfo/ru](Std_ProjectInfo/ru.md) , [Std ProjectUtil/ru](Std_ProjectUtil/ru.md) , [Std PythonHelp/ru](Std_PythonHelp/ru.md) , [Std Quit/ru](Std_Quit/ru.md) , [Std RandomColor/ru](Std_RandomColor/ru.md) , [Std RecentFiles/ru](Std_RecentFiles/ru.md) , [Std Redo/ru](Std_Redo/ru.md) , [Std Refresh/ru](Std_Refresh/ru.md) , [Std Revert/ru](Std_Revert/ru.md) , [Std Save/ru](Std_Save/ru.md) , [Std SaveAll/ru](Std_SaveAll/ru.md) , [Std SaveAs/ru](Std_SaveAs/ru.md) , [Std SaveCopy/ru](Std_SaveCopy/ru.md) , [Std SceneInspector/ru](Std_SceneInspector/ru.md) , [Std SelBack/ru](Std_SelBack/ru.md) , [Std SelBoundingBox/ru](Std_SelBoundingBox/ru.md) , [Std SelectAll/ru](Std_SelectAll/ru.md) , [Std SelectVisibleObjects/ru](Std_SelectVisibleObjects/ru.md) , [Std SelForward/ru](Std_SelForward/ru.md) , [Std SendToPythonConsole/ru](Std_SendToPythonConsole/ru.md) , [Std SetAppearance/ru](Std_SetAppearance/ru.md) , [Std ShowObjects/ru](Std_ShowObjects/ru.md) , [Std ShowSelection/ru](Std_ShowSelection/ru.md) , [Std TextDocument/ru](Std_TextDocument/ru.md) , [Std TextureMapping/ru](Std_TextureMapping/ru.md) , [Std TileWindows/ru](Std_TileWindows/ru.md) , [Std ToggleBreakpoint/ru](Std_ToggleBreakpoint/ru.md) , [Std ToggleClipPlane/ru](Std_ToggleClipPlane/ru.md) , [Std ToggleNavigation/ru](Std_ToggleNavigation/ru.md) , [Std ToggleObjects/ru](Std_ToggleObjects/ru.md) , [Std ToggleSelectability/ru](Std_ToggleSelectability/ru.md) , [Std ToggleVisibility/ru](Std_ToggleVisibility/ru.md) , [Std Tools Menu/ru](Std_Tools_Menu/ru.md) , [Std TransformManip/ru](Std_TransformManip/ru.md) , [Std TreeCollapseDocument/ru](Std_TreeCollapseDocument/ru.md) , [Std TreeDrag/ru](Std_TreeDrag/ru.md) , [Std TreeMultiDocument/ru](Std_TreeMultiDocument/ru.md) , [Std TreePreSelection/ru](Std_TreePreSelection/ru.md) , [Std TreeRecordSelection/ru](Std_TreeRecordSelection/ru.md) , [Std TreeSelection/ru](Std_TreeSelection/ru.md) , [Std TreeSingleDocument/ru](Std_TreeSingleDocument/ru.md) , [Std TreeSyncPlacement/ru](Std_TreeSyncPlacement/ru.md) , [Std TreeSyncSelection/ru](Std_TreeSyncSelection/ru.md) , [Std TreeSyncView/ru](Std_TreeSyncView/ru.md) , [Std Undo/ru](Std_Undo/ru.md) , [Std UnitsCalculator/ru](Std_UnitsCalculator/ru.md) , [Std View Menu/ru](Std_View_Menu/ru.md) , [Std ViewBottom/ru](Std_ViewBottom/ru.md) , [Std ViewBoxZoom/ru](Std_ViewBoxZoom/ru.md) , [Std ViewCreate/ru](Std_ViewCreate/ru.md) , [Std ViewDimetric/ru](Std_ViewDimetric/ru.md) , [Std ViewDockUndockFullscreen/ru](Std_ViewDockUndockFullscreen/ru.md) , [Std ViewFitAll/ru](Std_ViewFitAll/ru.md) , [Std ViewFitSelection/ru](Std_ViewFitSelection/ru.md) , [Std ViewFront/ru](Std_ViewFront/ru.md) , [Std ViewFullscreen/ru](Std_ViewFullscreen/ru.md) , [Std ViewHome/ru](Std_ViewHome/ru.md) , [Std ViewIsometric/ru](Std_ViewIsometric/ru.md) , [Std ViewIvIssueCamPos/ru](Std_ViewIvIssueCamPos/ru.md) , [Std ViewIvStereoInterleavedColumns/ru](Std_ViewIvStereoInterleavedColumns/ru.md) , [Std ViewIvStereoInterleavedRows/ru](Std_ViewIvStereoInterleavedRows/ru.md) , [Std ViewIvStereoOff/ru](Std_ViewIvStereoOff/ru.md) , [Std ViewIvStereoQuadBuff/ru](Std_ViewIvStereoQuadBuff/ru.md) , [Std ViewIvStereoRedGreen/ru](Std_ViewIvStereoRedGreen/ru.md) , [Std ViewLeft/ru](Std_ViewLeft/ru.md) , [Std ViewRear/ru](Std_ViewRear/ru.md) , [Std ViewRight/ru](Std_ViewRight/ru.md) , [Std ViewRotateLeft/ru](Std_ViewRotateLeft/ru.md) , [Std ViewRotateRight/ru](Std_ViewRotateRight/ru.md) , [Std ViewScreenShot/ru](Std_ViewScreenShot/ru.md) , [Std ViewStatusBar/ru](Std_ViewStatusBar/ru.md) , [Std ViewTop/ru](Std_ViewTop/ru.md) , [Std ViewTrimetric/ru](Std_ViewTrimetric/ru.md) , [Std ViewZoomIn/ru](Std_ViewZoomIn/ru.md) , [Std ViewZoomOut/ru](Std_ViewZoomOut/ru.md) , [Std WhatsThis/ru](Std_WhatsThis/ru.md) , [Std Windows Menu/ru](Std_Windows_Menu/ru.md) , [Std Windows/ru](Std_Windows/ru.md) , [Std Workbench/ru](Std_Workbench/ru.md) , [Tree view/ru](Tree_view/ru.md) , [View Measure Clear All/ru](View_Measure_Clear_All/ru.md) , [View Measure Toggle All/ru](View_Measure_Toggle_All/ru.md) [Category:User\_Documentation/ru](Category:User_Documentation/ru.md) + +--- +[documentation index](../README.md) > Category:Std Base/ru diff --git a/wiki/translations/ru/Category:Surface.md b/wiki/translations/ru/Category:Surface.md index e75909989d..bfc4b7f761 100644 --- a/wiki/translations/ru/Category:Surface.md +++ b/wiki/translations/ru/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/ru](Surface_Workbenc [Artwork Surface/ru](Artwork_Surface/ru.md) , [Surface Workbench/ru](Surface_Workbench/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:Surface/ru diff --git a/wiki/translations/ru/Category:TechDraw.md b/wiki/translations/ru/Category:TechDraw.md index ef6582f8c7..e9e5340cee 100644 --- a/wiki/translations/ru/Category:TechDraw.md +++ b/wiki/translations/ru/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/ru](TechDraw_Workbe [Advanced TechDraw Tutorial/ru](Advanced_TechDraw_Tutorial/ru.md) , [Artwork TechDraw/ru](Artwork_TechDraw/ru.md) , [Basic TechDraw Tutorial/ru](Basic_TechDraw_Tutorial/ru.md) , [Bitmap/ru](Bitmap/ru.md) , [DXF/ru](DXF/ru.md) , [Measurement Of Angles On Holes/ru](Measurement_Of_Angles_On_Holes/ru.md) , [SVG/ru](SVG/ru.md) , [TechDraw 2LineCenterLine/ru](TechDraw_2LineCenterLine/ru.md) , [TechDraw 2PointCenterLine/ru](TechDraw_2PointCenterLine/ru.md) , [TechDraw 2PointCosmeticLine/ru](TechDraw_2PointCosmeticLine/ru.md) , [TechDraw 3PtAngleDimension/ru](TechDraw_3PtAngleDimension/ru.md) , [TechDraw ActiveView/ru](TechDraw_ActiveView/ru.md) , [TechDraw AngleDimension/ru](TechDraw_AngleDimension/ru.md) , [TechDraw Annotation/ru](TechDraw_Annotation/ru.md) , [TechDraw API/ru](TechDraw_API/ru.md) , [TechDraw ArchView/ru](TechDraw_ArchView/ru.md) , [TechDraw Balloon/ru](TechDraw_Balloon/ru.md) , [TechDraw ClipGroup/ru](TechDraw_ClipGroup/ru.md) , [TechDraw ClipGroupAdd/ru](TechDraw_ClipGroupAdd/ru.md) , [TechDraw ClipGroupRemove/ru](TechDraw_ClipGroupRemove/ru.md) , [TechDraw CosmeticEraser/ru](TechDraw_CosmeticEraser/ru.md) , [TechDraw CosmeticVertex/ru](TechDraw_CosmeticVertex/ru.md) , [TechDraw DecorateLine/ru](TechDraw_DecorateLine/ru.md) , [TechDraw DetailView/ru](TechDraw_DetailView/ru.md) , [TechDraw DiameterDimension/ru](TechDraw_DiameterDimension/ru.md) , [TechDraw DraftView/ru](TechDraw_DraftView/ru.md) , [TechDraw ExportPageDXF/ru](TechDraw_ExportPageDXF/ru.md) , [TechDraw ExportPageSVG/ru](TechDraw_ExportPageSVG/ru.md) , [TechDraw FaceCenterLine/ru](TechDraw_FaceCenterLine/ru.md) , [TechDraw Geometric dimensioning and tolerancing/ru](TechDraw_Geometric_dimensioning_and_tolerancing/ru.md) , [TechDraw GeometricHatch/ru](TechDraw_GeometricHatch/ru.md) , [TechDraw Hatch/ru](TechDraw_Hatch/ru.md) , [TechDraw Hatching/ru](TechDraw_Hatching/ru.md) , [TechDraw HorizontalDimension/ru](TechDraw_HorizontalDimension/ru.md) , [TechDraw HorizontalExtentDimension/ru](TechDraw_HorizontalExtentDimension/ru.md) , [TechDraw HowTo Page/ru](TechDraw_HowTo_Page/ru.md) , [TechDraw Image/ru](TechDraw_Image/ru.md) , [TechDraw LandmarkDimension/ru](TechDraw_LandmarkDimension/ru.md) , [TechDraw LeaderLine/ru](TechDraw_LeaderLine/ru.md) , [TechDraw LengthDimension/ru](TechDraw_LengthDimension/ru.md) , [TechDraw LineGroup/ru](TechDraw_LineGroup/ru.md) , [TechDraw LinkDimension/ru](TechDraw_LinkDimension/ru.md) , [TechDraw Midpoints/ru](TechDraw_Midpoints/ru.md) , [TechDraw PageDefault/ru](TechDraw_PageDefault/ru.md) , [TechDraw PageTemplate/ru](TechDraw_PageTemplate/ru.md) , [TechDraw pitch circle tutorial/ru](TechDraw_pitch_circle_tutorial/ru.md) , [TechDraw Preferences/ru](TechDraw_Preferences/ru.md) , [TechDraw ProjectionGroup/ru](TechDraw_ProjectionGroup/ru.md) , [TechDraw Quadrants/ru](TechDraw_Quadrants/ru.md) , [TechDraw RadiusDimension/ru](TechDraw_RadiusDimension/ru.md) , [TechDraw RedrawPage/ru](TechDraw_RedrawPage/ru.md) , [TechDraw RichTextAnnotation/ru](TechDraw_RichTextAnnotation/ru.md) , [TechDraw Roadmap/ru](TechDraw_Roadmap/ru.md) , [TechDraw SectionView/ru](TechDraw_SectionView/ru.md) , [TechDraw ShowAll/ru](TechDraw_ShowAll/ru.md) , [TechDraw SpreadsheetView/ru](TechDraw_SpreadsheetView/ru.md) , [TechDraw Symbol/ru](TechDraw_Symbol/ru.md) , [TechDraw TemplateHowTo/ru](TechDraw_TemplateHowTo/ru.md) , [TechDraw Templates/ru](TechDraw_Templates/ru.md) , [TechDraw ToggleFrame/ru](TechDraw_ToggleFrame/ru.md) , [TechDraw VerticalDimension/ru](TechDraw_VerticalDimension/ru.md) , [TechDraw VerticalExtentDimension/ru](TechDraw_VerticalExtentDimension/ru.md) , [TechDraw View/ru](TechDraw_View/ru.md) , [TechDraw WeldSymbol/ru](TechDraw_WeldSymbol/ru.md) , [TechDraw Workbench/ru](TechDraw_Workbench/ru.md) , [TechDrawGui API/ru](TechDrawGui_API/ru.md) , [Tolerancing/ru](Tolerancing/ru.md) , [Topological naming problem/ru](Topological_naming_problem/ru.md) , [Tutorial for open windows/ru](Tutorial_for_open_windows/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) + +--- +[documentation index](../README.md) > Category:TechDraw/ru diff --git a/wiki/translations/ru/Category:Template.md b/wiki/translations/ru/Category:Template.md index 6b5b953d85..cc93867a1f 100644 --- a/wiki/translations/ru/Category:Template.md +++ b/wiki/translations/ru/Category:Template.md @@ -8,3 +8,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) [Template:Languages/ru](Template:Languages/ru.md) , [Template:PartDesign Tools/ru](Template:PartDesign_Tools/ru.md) , [Template:Property/ru](Template:Property/ru.md) , [Template:Raytracing Tools/ru](Template:Raytracing_Tools/ru.md) , [Template:Ru](Template:Ru.md) , , , [Category:Categories/ru](Category:Categories/ru.md) [Category:Template:Doc/ru](Category:Template:Doc/ru.md) [Category:Template:Navigation/ru](Category:Template:Navigation/ru.md) [Category:Template:Text Box/ru](Category:Template:Text_Box/ru.md) + +--- +[documentation index](../README.md) > Category:Template/ru diff --git a/wiki/translations/ru/Category:Template:Doc.md b/wiki/translations/ru/Category:Template:Doc.md index 7c7dc09b4f..093bc1c15e 100644 --- a/wiki/translations/ru/Category:Template:Doc.md +++ b/wiki/translations/ru/Category:Template:Doc.md @@ -6,3 +6,6 @@ This category lists templates that produce text boxes used for documenting comma [Template:Macro/ru](Template:Macro/ru.md) [Category:Template/ru](Category:Template/ru.md) + +--- +[documentation index](../README.md) > Category:Template:Doc/ru diff --git a/wiki/translations/ru/Category:Template:Navigation.md b/wiki/translations/ru/Category:Template:Navigation.md index 75e26b4b20..339122356e 100644 --- a/wiki/translations/ru/Category:Template:Navigation.md +++ b/wiki/translations/ru/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/ru](Template:Arch_Tools_navi/ru.md) , [Template:Document objects navi/ru](Template:Document_objects_navi/ru.md) , [Template:Drawing Tools navi/ru](Template:Drawing_Tools_navi/ru.md) , [Template:FEM Tools navi/ru](Template:FEM_Tools_navi/ru.md) , [Template:Interface navi/ru](Template:Interface_navi/ru.md) , [Template:Mesh Tools navi/ru](Template:Mesh_Tools_navi/ru.md) , [Template:OpenSCAD Tools navi/ru](Template:OpenSCAD_Tools_navi/ru.md) , [Template:Part Tools navi/ru](Template:Part_Tools_navi/ru.md) , [Template:PartDesign Tools navi/ru](Template:PartDesign_Tools_navi/ru.md) , [Template:Path Tools navi/ru](Template:Path_Tools_navi/ru.md) , [Template:Plot Tools navi/ru](Template:Plot_Tools_navi/ru.md) , [Template:Powerdocnavi/ru](Template:Powerdocnavi/ru.md) , [Template:Raytracing Tools navi/ru](Template:Raytracing_Tools_navi/ru.md) , [Template:Robot Tools navi/ru](Template:Robot_Tools_navi/ru.md) , [Template:Ship Tools navi/ru](Template:Ship_Tools_navi/ru.md) , [Template:Sketcher Tools navi/ru](Template:Sketcher_Tools_navi/ru.md) , [Template:Spreadsheet Tools navi/ru](Template:Spreadsheet_Tools_navi/ru.md) , [Template:Std Base navi/ru](Template:Std_Base_navi/ru.md) , [Template:Std Base/ru](Template:Std_Base/ru.md) , [Template:Tutorials navi/ru](Template:Tutorials_navi/ru.md) [Category:Template/ru](Category:Template/ru.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/ru diff --git a/wiki/translations/ru/Category:Template:Text_Box.md b/wiki/translations/ru/Category:Template:Text_Box.md index 02245cf2e2..1ee09609ff 100644 --- a/wiki/translations/ru/Category:Template:Text_Box.md +++ b/wiki/translations/ru/Category:Template:Text_Box.md @@ -8,3 +8,6 @@ These templates produce small pieces of text that are suitable for transclusion. [Template:UnfinishedDocu/ru](Template:UnfinishedDocu/ru.md) [Category:Template/ru](Category:Template/ru.md) + +--- +[documentation index](../README.md) > Category:Template:Text Box/ru diff --git a/wiki/translations/ru/Category:Test_Framework.md b/wiki/translations/ru/Category:Test_Framework.md index a3d3804825..d375a4123d 100644 --- a/wiki/translations/ru/Category:Test_Framework.md +++ b/wiki/translations/ru/Category:Test_Framework.md @@ -6,3 +6,6 @@ This category lists pages related to the [Test Framework Workbench/ru](Test_Fram [Testing/ru](Testing/ru.md) [Category:Workbenches/ru](Category:Workbenches/ru.md) [Category:User\_Documentation/ru](Category:User_Documentation/ru.md) [Category:Testing/ru](Category:Testing/ru.md) + +--- +[documentation index](../README.md) > Category:Test Framework/ru diff --git a/wiki/translations/ru/Category:Testing.md b/wiki/translations/ru/Category:Testing.md index 4aa82f5dfa..8c3197b1be 100644 --- a/wiki/translations/ru/Category:Testing.md +++ b/wiki/translations/ru/Category:Testing.md @@ -6,3 +6,6 @@ Pages related to testing in regards to unit testing, continuous integration, qua [AppImage/ru](AppImage/ru.md) , [Continuous Integration/ru](Continuous_Integration/ru.md) , [Testing/ru](Testing/ru.md) , [Category:Test Framework/ru](Category:Test_Framework/ru.md) + +--- +[documentation index](../README.md) > Category:Testing/ru diff --git a/wiki/translations/ru/Category:Tutorials.md b/wiki/translations/ru/Category:Tutorials.md index f1914be4ba..deac8099e5 100644 --- a/wiki/translations/ru/Category:Tutorials.md +++ b/wiki/translations/ru/Category:Tutorials.md @@ -8,3 +8,6 @@ [Add FEM constraint tutorial/ru](Add_FEM_constraint_tutorial/ru.md) , [Add FEM equation tutorial/ru](Add_FEM_equation_tutorial/ru.md) , [Advanced TechDraw Tutorial/ru](Advanced_TechDraw_Tutorial/ru.md) , [Aeroplane/ru](Aeroplane/ru.md) , [Analysis of reinforced concrete with FEM/ru](Analysis_of_reinforced_concrete_with_FEM/ru.md) , [Arch panel tutorial/ru](Arch_panel_tutorial/ru.md) , [Arch tutorial/ru](Arch_tutorial/ru.md) , [Basic modeling tutorial/ru](Basic_modeling_tutorial/ru.md) , [Basic Part Design Tutorial/ru](Basic_Part_Design_Tutorial/ru.md) , [Basic Sketcher Tutorial/ru](Basic_Sketcher_Tutorial/ru.md) , [Basic TechDraw Tutorial/ru](Basic_TechDraw_Tutorial/ru.md) , [BIM ingame tutorial/ru](BIM_ingame_tutorial/ru.md) , [Creating a simple part with PartDesign/ru](Creating_a_simple_part_with_PartDesign/ru.md) , [Customize Toolbars/ru](Customize_Toolbars/ru.md) , [Draft ShapeString tutorial/ru](Draft_ShapeString_tutorial/ru.md) , [Draft tutorial/ru](Draft_tutorial/ru.md) , [Drawing Template HowTo/ru](Drawing_Template_HowTo/ru.md) , [Drawing tutorial/ru](Drawing_tutorial/ru.md) , [Dxf Importer Install/ru](Dxf_Importer_Install/ru.md) , [Engine Block Tutorial/ru](Engine_Block_Tutorial/ru.md) , [Export to STL or OBJ/ru](Export_to_STL_or_OBJ/ru.md) , [Extend FEM Module/ru](Extend_FEM_Module/ru.md) , [FEM Beginner tutorial/ru](FEM_Beginner_tutorial/ru.md) , [FEM CalculiX Cantilever 3D/ru](FEM_CalculiX_Cantilever_3D/ru.md) , [FEM Example Capacitance Two Balls/ru](FEM_Example_Capacitance_Two_Balls/ru.md) , [FEM Shear of a Composite Block/ru](FEM_Shear_of_a_Composite_Block/ru.md) , [FEM Tutorial Python/ru](FEM_Tutorial_Python/ru.md) , [FEM tutorial/ru](FEM_tutorial/ru.md) , [FreeCAD-Ship s60 tutorial (II)/ru](FreeCAD-Ship_s60_tutorial_(II)/ru.md) , [FreeCAD-Ship s60 tutorial/ru](FreeCAD-Ship_s60_tutorial/ru.md) , [How to install additional workbenches/ru](How_to_install_additional_workbenches/ru.md) , [How to install macros/ru](How_to_install_macros/ru.md) , [Import from STL or OBJ/ru](Import_from_STL_or_OBJ/ru.md) , [Import OpenSCAD code/ru](Import_OpenSCAD_code/ru.md) , [Import text and geometry from Inkscape/ru](Import_text_and_geometry_from_Inkscape/ru.md) , [Import/Export IFC - compiling IfcOpenShell/ru](Import/Export_IFC_-_compiling_IfcOpenShell/ru.md) , [Manual:BIM modeling/ru](Manual:BIM_modeling/ru.md) , [Manual:Creating FEM analyses/ru](Manual:Creating_FEM_analyses/ru.md) , [Manual:Creating renderings/ru](Manual:Creating_renderings/ru.md) , [Manual:Generating 2D drawings/ru](Manual:Generating_2D_drawings/ru.md) , [Manual:Import and export to other filetypes/ru](Manual:Import_and_export_to_other_filetypes/ru.md) , [Manual:Installing/ru](Manual:Installing/ru.md) , [Manual:Modeling for product design/ru](Manual:Modeling_for_product_design/ru.md) , [Manual:Parametric objects/ru](Manual:Parametric_objects/ru.md) , [Manual:Preparing models for 3D printing/ru](Manual:Preparing_models_for_3D_printing/ru.md) , [Manual:Traditional 2D drafting/ru](Manual:Traditional_2D_drafting/ru.md) , [Manual:Traditional modeling, the CSG way/ru](Manual:Traditional_modeling,_the_CSG_way/ru.md) , [Manual:Using spreadsheets/ru](Manual:Using_spreadsheets/ru.md) , [Measurement Of Angles On Holes/ru](Measurement_Of_Angles_On_Holes/ru.md) , [Offsite tutorials/ru](Offsite_tutorials/ru.md) , [Part and PartDesign/ru](Part_and_PartDesign/ru.md) , [PartDesign Bearingholder Tutorial I/ru](PartDesign_Bearingholder_Tutorial_I/ru.md) , [PartDesign Bearingholder Tutorial II/ru](PartDesign_Bearingholder_Tutorial_II/ru.md) , [PartDesign tutorial/ru](PartDesign_tutorial/ru.md) , [Path Walkthrough for the Impatient/ru](Path_Walkthrough_for_the_Impatient/ru.md) , [Plot Basic tutorial/ru](Plot_Basic_tutorial/ru.md) , [Plot MultiAxes tutorial/ru](Plot_MultiAxes_tutorial/ru.md) , [Post-Processing of FEM Results with Paraview/ru](Post-Processing_of_FEM_Results_with_Paraview/ru.md) , [Raytracing tutorial/ru](Raytracing_tutorial/ru.md) , [Robot 6-Axis/ru](Robot_6-Axis/ru.md) , [Robot tutorial/ru](Robot_tutorial/ru.md) , [Scripted Parts: Ball Bearing - Part 1/ru](Scripted_Parts:_Ball_Bearing_-_Part_1/ru.md) , [Scripted Parts: Ball Bearing - Part 2/ru](Scripted_Parts:_Ball_Bearing_-_Part_2/ru.md) , [Scripts/ru](Scripts/ru.md) , [Sketcher Micro Tutorial - Constraint Practices/ru](Sketcher_Micro_Tutorial_-_Constraint_Practices/ru.md) , [Sketcher reference/ru](Sketcher_reference/ru.md) , [Sketcher requirement for a sketch/ru](Sketcher_requirement_for_a_sketch/ru.md) , [Sketcher Tutorial/ru](Sketcher_Tutorial/ru.md) , [TechDraw HowTo Page/ru](TechDraw_HowTo_Page/ru.md) , [TechDraw pitch circle tutorial/ru](TechDraw_pitch_circle_tutorial/ru.md) , [TechDraw TemplateHowTo/ru](TechDraw_TemplateHowTo/ru.md) , [Thread for Screw Tutorial/ru](Thread_for_Screw_Tutorial/ru.md) , [Toothbrush Head Stand/ru](Toothbrush_Head_Stand/ru.md) , [Transient FEM analysis/ru](Transient_FEM_analysis/ru.md) , [Tutorial custom placing of windows and doors/ru](Tutorial_custom_placing_of_windows_and_doors/ru.md) , [Tutorial for open windows/ru](Tutorial_for_open_windows/ru.md) , [Tutorial FreeCAD POV ray/ru](Tutorial_FreeCAD_POV_ray/ru.md) , [Tutorial Render with Blender/ru](Tutorial_Render_with_Blender/ru.md) , [Template:TutorialInfo/ru](Template:TutorialInfo/ru.md) , [Tutorials/ru](Tutorials/ru.md) , [Video tutorials for architectural design/ru](Video_tutorials_for_architectural_design/ru.md) , [Video tutorials for product design/ru](Video_tutorials_for_product_design/ru.md) , [Video tutorials obsolete/ru](Video_tutorials_obsolete/ru.md) , [Video tutorials/ru](Video_tutorials/ru.md) , [VRML Preparation for Robot Simulation/ru](VRML_Preparation_for_Robot_Simulation/ru.md) , [Whiffle Ball tutorial/ru](Whiffle_Ball_tutorial/ru.md) , [Wikihouse porting tutorial/ru](Wikihouse_porting_tutorial/ru.md) [Category:Categories/ru](Category:Categories/ru.md) + +--- +[documentation index](../README.md) > Category:Tutorials/ru diff --git a/wiki/translations/ru/Category:UnfinishedDocu.md b/wiki/translations/ru/Category:UnfinishedDocu.md index 55b1617312..1b1991cd55 100644 --- a/wiki/translations/ru/Category:UnfinishedDocu.md +++ b/wiki/translations/ru/Category:UnfinishedDocu.md @@ -2,3 +2,6 @@ {Category:UnfinishedDocu} ### Contents: + +--- +[documentation index](../README.md) > Category:UnfinishedDocu/ru diff --git a/wiki/translations/ru/Category:User_Documentation.md b/wiki/translations/ru/Category:User_Documentation.md index c9205506ba..a1ada86331 100644 --- a/wiki/translations/ru/Category:User_Documentation.md +++ b/wiki/translations/ru/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [3D view/ru](3D_view/ru.md) , [3Dconnexion input devices/ru](3Dconnexion_input_devices/ru.md) , [A2plus Workbench/ru](A2plus_Workbench/ru.md) , [About FreeCAD/ru](About_FreeCAD/ru.md) , [Add FEM constraint tutorial/ru](Add_FEM_constraint_tutorial/ru.md) , [Add FEM equation tutorial/ru](Add_FEM_equation_tutorial/ru.md) , [Addon/ru](Addon/ru.md) , [Advanced TechDraw Tutorial/ru](Advanced_TechDraw_Tutorial/ru.md) , [Aeroplane/ru](Aeroplane/ru.md) , [Analysis of reinforced concrete with FEM/ru](Analysis_of_reinforced_concrete_with_FEM/ru.md) , [Animation Workbench/ru](Animation_Workbench/ru.md) , [App DocumentObject/ru](App_DocumentObject/ru.md) , [App FeaturePython/ru](App_FeaturePython/ru.md) , [App Link/ru](App_Link/ru.md) , [App Part/ru](App_Part/ru.md) , [AppImage/ru](AppImage/ru.md) , [Arch 3DS/ru](Arch_3DS/ru.md) , [Arch 3Views/ru](Arch_3Views/ru.md) , [Arch Add/ru](Arch_Add/ru.md) , [Arch API/ru](Arch_API/ru.md) , [Arch Axis/ru](Arch_Axis/ru.md) , [Arch AxisSystem/ru](Arch_AxisSystem/ru.md) , [Arch Building/ru](Arch_Building/ru.md) , [Arch BuildingPart/ru](Arch_BuildingPart/ru.md) , [Arch Check/ru](Arch_Check/ru.md) , [Arch CloneComponent/ru](Arch_CloneComponent/ru.md) , [Arch CloseHoles/ru](Arch_CloseHoles/ru.md) , [Arch CompAxis/ru](Arch_CompAxis/ru.md) , [Arch Component/ru](Arch_Component/ru.md) , [Arch CompPanel/ru](Arch_CompPanel/ru.md) , [Arch CompPipe/ru](Arch_CompPipe/ru.md) , [Arch CompRebarStraight/ru](Arch_CompRebarStraight/ru.md) , [Arch CompSetMaterial/ru](Arch_CompSetMaterial/ru.md) , [Arch CurtainWall/ru](Arch_CurtainWall/ru.md) , [Arch CutPlane/ru](Arch_CutPlane/ru.md) , [Arch DAE/ru](Arch_DAE/ru.md) , [Arch Door/ru](Arch_Door/ru.md) , [Arch Equipment/ru](Arch_Equipment/ru.md) , [Arch Fence/ru](Arch_Fence/ru.md) , [Arch Floor/ru](Arch_Floor/ru.md) , [Arch Frame/ru](Arch_Frame/ru.md) , [Arch Grid/ru](Arch_Grid/ru.md) , [Arch IFC/ru](Arch_IFC/ru.md) , [Arch IfcExplorer/ru](Arch_IfcExplorer/ru.md) , [Arch IfcSpreadsheet/ru](Arch_IfcSpreadsheet/ru.md) , [Arch JSON/ru](Arch_JSON/ru.md) , [Arch MergeWalls/ru](Arch_MergeWalls/ru.md) , [Arch MeshToShape/ru](Arch_MeshToShape/ru.md) , [Arch MultiMaterial/ru](Arch_MultiMaterial/ru.md) , [Arch Nest/ru](Arch_Nest/ru.md) , [Arch OBJ/ru](Arch_OBJ/ru.md) , [Arch Panel Cut/ru](Arch_Panel_Cut/ru.md) , [Arch Panel Sheet/ru](Arch_Panel_Sheet/ru.md) , [Arch panel tutorial/ru](Arch_panel_tutorial/ru.md) , [Arch Panel/ru](Arch_Panel/ru.md) , [Arch Pipe/ru](Arch_Pipe/ru.md) , [Arch PipeConnector/ru](Arch_PipeConnector/ru.md) , [Arch Preferences/ru](Arch_Preferences/ru.md) , [Arch Rebar BeamReinforcement/ru](Arch_Rebar_BeamReinforcement/ru.md) , [Arch Rebar BentShape/ru](Arch_Rebar_BentShape/ru.md) , [Arch Rebar BOM/ru](Arch_Rebar_BOM/ru.md) , [Arch Rebar Circular ColumnReinforcement/ru](Arch_Rebar_Circular_ColumnReinforcement/ru.md) , [Arch Rebar ColumnReinforcement TwoTiesSixRebars/ru](Arch_Rebar_ColumnReinforcement_TwoTiesSixRebars/ru.md) , [Arch Rebar ColumnReinforcement/ru](Arch_Rebar_ColumnReinforcement/ru.md) , [Arch Rebar Drawing Dimensioning/ru](Arch_Rebar_Drawing_Dimensioning/ru.md) , [Arch Rebar Helical/ru](Arch_Rebar_Helical/ru.md) , [Arch Rebar LShape/ru](Arch_Rebar_LShape/ru.md) , [Arch Rebar Stirrup/ru](Arch_Rebar_Stirrup/ru.md) , [Arch Rebar Straight/ru](Arch_Rebar_Straight/ru.md) , [Arch Rebar UShape/ru](Arch_Rebar_UShape/ru.md) , [Arch Rebar/ru](Arch_Rebar/ru.md) , [Arch Reference/ru](Arch_Reference/ru.md) , [Arch Remove/ru](Arch_Remove/ru.md) , [Arch RemoveShape/ru](Arch_RemoveShape/ru.md) , [Arch Roof/ru](Arch_Roof/ru.md) , [Arch Schedule/ru](Arch_Schedule/ru.md) , [Arch SectionPlane/ru](Arch_SectionPlane/ru.md) , [Arch SelectNonSolidMeshes/ru](Arch_SelectNonSolidMeshes/ru.md) , [Arch SetMaterial/ru](Arch_SetMaterial/ru.md) , [Arch Site/ru](Arch_Site/ru.md) , [Arch Space/ru](Arch_Space/ru.md) , [Arch SplitMesh/ru](Arch_SplitMesh/ru.md) , [Arch Stairs/ru](Arch_Stairs/ru.md) , [Arch Structure/ru](Arch_Structure/ru.md) , [Arch Survey/ru](Arch_Survey/ru.md) , [Arch ToggleIfcBrepFlag/ru](Arch_ToggleIfcBrepFlag/ru.md) , [Arch ToggleSubs/ru](Arch_ToggleSubs/ru.md) , [Arch Truss/ru](Arch_Truss/ru.md) , [Arch tutorial/ru](Arch_tutorial/ru.md) , [Arch Wall/ru](Arch_Wall/ru.md) , [Arch Window/ru](Arch_Window/ru.md) , [Arch Workbench/ru](Arch_Workbench/ru.md) , [Assembly/ru](Assembly/ru.md) , [Assembly2 Workbench/ru](Assembly2_Workbench/ru.md) , [Assembly3 Workbench/ru](Assembly3_Workbench/ru.md) , [Assembly4 Workbench/ru](Assembly4_Workbench/ru.md) , [Basic modeling tutorial/ru](Basic_modeling_tutorial/ru.md) , [Basic Part Design Tutorial/ru](Basic_Part_Design_Tutorial/ru.md) , [Basic Sketcher Tutorial/ru](Basic_Sketcher_Tutorial/ru.md) , [Basic TechDraw Tutorial/ru](Basic_TechDraw_Tutorial/ru.md) , [BIM Box/ru](BIM_Box/ru.md) , [BIM Copy/ru](BIM_Copy/ru.md) , [BIM Library/ru](BIM_Library/ru.md) , [BIM Project/ru](BIM_Project/ru.md) , [BIM Setup/ru](BIM_Setup/ru.md) , [BIM Workbench/ru](BIM_Workbench/ru.md) , [Bitmap/ru](Bitmap/ru.md) , [Body/ru](Body/ru.md) , [Branding/ru](Branding/ru.md) , [Bug Triage/ru](Bug_Triage/ru.md) , [Cfd Workbench/ru](Cfd_Workbench/ru.md) , [Combo view/ru](Combo_view/ru.md) , [Compile on Docker/ru](Compile_on_Docker/ru.md) , [Compile on Linux/ru](Compile_on_Linux/ru.md) , [Compile on MacOS/ru](Compile_on_MacOS/ru.md) , [Compile on MinGW/ru](Compile_on_MinGW/ru.md) , [Compile on Windows/ru](Compile_on_Windows/ru.md) , [Compiling (Speeding up)/ru](Compiling_(Speeding_up)/ru.md) , [Compiling/ru](Compiling/ru.md) , [Complete Workbench/ru](Complete_Workbench/ru.md) , [Constraint/ru](Constraint/ru.md) , [Constructive solid geometry/ru](Constructive_solid_geometry/ru.md) , [Continuous Integration/ru](Continuous_Integration/ru.md) , [Contributors/ru](Contributors/ru.md) , [Creating a simple part with PartDesign/ru](Creating_a_simple_part_with_PartDesign/ru.md) , [Crowdin Administration/ru](Crowdin_Administration/ru.md) , [Crowdin Scripts/ru](Crowdin_Scripts/ru.md) , [Custom Spacing/ru](Custom_Spacing/ru.md) , [Customize Toolbars/ru](Customize_Toolbars/ru.md) , [DAG view/ru](DAG_view/ru.md) , [Datum/ru](Datum/ru.md) , [Debian development/ru](Debian_development/ru.md) , [Debian Unstable/ru](Debian_Unstable/ru.md) , [Developer hub/ru](Developer_hub/ru.md) , [Document structure/ru](Document_structure/ru.md) , [Donate/ru](Donate/ru.md) , [Download/ru](Download/ru.md) , [Draft AddConstruction/ru](Draft_AddConstruction/ru.md) , [Draft AddToGroup/ru](Draft_AddToGroup/ru.md) , [Draft AnnotationStyleEditor/ru](Draft_AnnotationStyleEditor/ru.md) , [Draft API/ru](Draft_API/ru.md) , [Draft ApplyStyle/ru](Draft_ApplyStyle/ru.md) , [Draft Arc 3Points/ru](Draft_Arc_3Points/ru.md) , [Draft Arc/ru](Draft_Arc/ru.md) , [Draft Array/ru](Draft_Array/ru.md) , [Draft AutoGroup/ru](Draft_AutoGroup/ru.md) , [Draft BezCurve/ru](Draft_BezCurve/ru.md) , [Draft BSpline/ru](Draft_BSpline/ru.md) , [Draft Circle/ru](Draft_Circle/ru.md) , [Draft CircularArray/ru](Draft_CircularArray/ru.md) , [Draft Clone/ru](Draft_Clone/ru.md) , [Draft Constrain/ru](Draft_Constrain/ru.md) , [Draft CubicBezCurve/ru](Draft_CubicBezCurve/ru.md) , [Draft DAT/ru](Draft_DAT/ru.md) , [Draft Dimension/ru](Draft_Dimension/ru.md) , [Draft Downgrade/ru](Draft_Downgrade/ru.md) , [Draft Draft2Sketch/ru](Draft_Draft2Sketch/ru.md) , [Draft Drawing/ru](Draft_Drawing/ru.md) , [Draft DXF/ru](Draft_DXF/ru.md) , [Draft Edit/ru](Draft_Edit/ru.md) , [Draft Ellipse/ru](Draft_Ellipse/ru.md) , [Draft Facebinder/ru](Draft_Facebinder/ru.md) , [Draft Fillet/ru](Draft_Fillet/ru.md) , [Draft FlipDimension/ru](Draft_FlipDimension/ru.md) , [Draft Heal/ru](Draft_Heal/ru.md) , [Draft Join/ru](Draft_Join/ru.md) , [Draft Label/ru](Draft_Label/ru.md) , [Draft Layer/ru](Draft_Layer/ru.md) , [Draft Line/ru](Draft_Line/ru.md) , [Draft Mirror/ru](Draft_Mirror/ru.md) , [Draft Move/ru](Draft_Move/ru.md) , [Draft OCA/ru](Draft_OCA/ru.md) , [Draft Offset/ru](Draft_Offset/ru.md) , [Draft OrthoArray/ru](Draft_OrthoArray/ru.md) , [Draft PathArray/ru](Draft_PathArray/ru.md) , [Draft PathLinkArray/ru](Draft_PathLinkArray/ru.md) , [Draft Pattern/ru](Draft_Pattern/ru.md) , [Draft Point/ru](Draft_Point/ru.md) , [Draft PointArray/ru](Draft_PointArray/ru.md) , [Draft PolarArray/ru](Draft_PolarArray/ru.md) , [Draft Polygon/ru](Draft_Polygon/ru.md) , [Draft Preferences/ru](Draft_Preferences/ru.md) , [Draft Rectangle/ru](Draft_Rectangle/ru.md) , [Draft Rotate/ru](Draft_Rotate/ru.md) , [Draft Scale/ru](Draft_Scale/ru.md) , [Draft SelectGroup/ru](Draft_SelectGroup/ru.md) , [Draft SelectPlane/ru](Draft_SelectPlane/ru.md) , [Draft Shape2DView/ru](Draft_Shape2DView/ru.md) , [Draft ShapeString tutorial/ru](Draft_ShapeString_tutorial/ru.md) , [Draft ShapeString/ru](Draft_ShapeString/ru.md) , [Draft ShowSnapBar/ru](Draft_ShowSnapBar/ru.md) , [Draft Slope/ru](Draft_Slope/ru.md) , [Draft Snap Angle/ru](Draft_Snap_Angle/ru.md) , [Draft Snap Center/ru](Draft_Snap_Center/ru.md) , [Draft Snap Dimensions/ru](Draft_Snap_Dimensions/ru.md) , [Draft Snap Endpoint/ru](Draft_Snap_Endpoint/ru.md) , [Draft Snap Extension/ru](Draft_Snap_Extension/ru.md) , [Draft Snap Grid/ru](Draft_Snap_Grid/ru.md) , [Draft Snap Intersection/ru](Draft_Snap_Intersection/ru.md) , [Draft Snap Lock/ru](Draft_Snap_Lock/ru.md) , [Draft Snap Midpoint/ru](Draft_Snap_Midpoint/ru.md) , [Draft Snap Near/ru](Draft_Snap_Near/ru.md) , [Draft Snap Ortho/ru](Draft_Snap_Ortho/ru.md) , [Draft Snap Parallel/ru](Draft_Snap_Parallel/ru.md) , [Draft Snap Perpendicular/ru](Draft_Snap_Perpendicular/ru.md) , [Draft Snap Special/ru](Draft_Snap_Special/ru.md) , [Draft Snap WorkingPlane/ru](Draft_Snap_WorkingPlane/ru.md) , [Draft Snap/ru](Draft_Snap/ru.md) , [Draft Split/ru](Draft_Split/ru.md) , [Draft Stretch/ru](Draft_Stretch/ru.md) , [Draft SubelementHighlight/ru](Draft_SubelementHighlight/ru.md) , [Draft SVG/ru](Draft_SVG/ru.md) , [Draft Text/ru](Draft_Text/ru.md) , [Draft ToggleConstructionMode/ru](Draft_ToggleConstructionMode/ru.md) , [Draft ToggleContinueMode/ru](Draft_ToggleContinueMode/ru.md) , [Draft ToggleDisplayMode/ru](Draft_ToggleDisplayMode/ru.md) , [Draft ToggleGrid/ru](Draft_ToggleGrid/ru.md) , [Draft Tray/ru](Draft_Tray/ru.md) , [Draft Trimex/ru](Draft_Trimex/ru.md) , [Draft tutorial/ru](Draft_tutorial/ru.md) , [Draft Upgrade/ru](Draft_Upgrade/ru.md) , [Draft Wire/ru](Draft_Wire/ru.md) , [Draft WireToBSpline/ru](Draft_WireToBSpline/ru.md) , [Draft Workbench/ru](Draft_Workbench/ru.md) , [Draft WorkingPlaneProxy/ru](Draft_WorkingPlaneProxy/ru.md) , [Drawing Annotation/ru](Drawing_Annotation/ru.md) , [Drawing Clip/ru](Drawing_Clip/ru.md) , [Drawing Landscape A3/ru](Drawing_Landscape_A3/ru.md) , [Drawing Open SVG/ru](Drawing_Open_SVG/ru.md) , [Drawing Openbrowser/ru](Drawing_Openbrowser/ru.md) , [Drawing Orthoviews/ru](Drawing_Orthoviews/ru.md) , [Drawing ProjectShape/ru](Drawing_ProjectShape/ru.md) , [Drawing Save/ru](Drawing_Save/ru.md) , [Drawing SpreadsheetView/ru](Drawing_SpreadsheetView/ru.md) , [Drawing Symbol/ru](Drawing_Symbol/ru.md) , [Drawing Template HowTo/ru](Drawing_Template_HowTo/ru.md) , [Drawing templates/ru](Drawing_templates/ru.md) , [Drawing tutorial/ru](Drawing_tutorial/ru.md) , [Drawing View/ru](Drawing_View/ru.md) , [Drawing Workbench/ru](Drawing_Workbench/ru.md) , [Dxf Importer Install/ru](Dxf_Importer_Install/ru.md) , [DXF/ru](DXF/ru.md) , [Engine Block Tutorial/ru](Engine_Block_Tutorial/ru.md) , [Export to STL or OBJ/ru](Export_to_STL_or_OBJ/ru.md) , [Extend FEM Module/ru](Extend_FEM_Module/ru.md) , [External workbenches/ru](External_workbenches/ru.md) , [Extra python modules/ru](Extra_python_modules/ru.md) , [Fasteners BOM/ru](Fasteners_BOM/ru.md) , [Fasteners Workbench/ru](Fasteners_Workbench/ru.md) , [Feature editing/ru](Feature_editing/ru.md) , [Feature list/ru](Feature_list/ru.md) , [FeaturePython Custom Properties/ru](FeaturePython_Custom_Properties/ru.md) , [FEM Analysis/ru](FEM_Analysis/ru.md) , [FEM Beginner tutorial/ru](FEM_Beginner_tutorial/ru.md) , [FEM CalculiX Cantilever 3D/ru](FEM_CalculiX_Cantilever_3D/ru.md) , [FEM ClippingPlaneAdd/ru](FEM_ClippingPlaneAdd/ru.md) , [FEM ClippingPlaneRemoveAll/ru](FEM_ClippingPlaneRemoveAll/ru.md) , [FEM Concrete/ru](FEM_Concrete/ru.md) , [FEM ConstraintBearing/ru](FEM_ConstraintBearing/ru.md) , [FEM ConstraintBodyHeatSource/ru](FEM_ConstraintBodyHeatSource/ru.md) , [FEM ConstraintContact/ru](FEM_ConstraintContact/ru.md) , [FEM ConstraintDisplacement/ru](FEM_ConstraintDisplacement/ru.md) , [FEM ConstraintElectrostaticPotential/ru](FEM_ConstraintElectrostaticPotential/ru.md) , [FEM ConstraintFixed/ru](FEM_ConstraintFixed/ru.md) , [FEM ConstraintFlowVelocity/ru](FEM_ConstraintFlowVelocity/ru.md) , [FEM ConstraintFluidBoundary/ru](FEM_ConstraintFluidBoundary/ru.md) , [FEM ConstraintForce/ru](FEM_ConstraintForce/ru.md) , [FEM ConstraintGear/ru](FEM_ConstraintGear/ru.md) , [FEM ConstraintHeatflux/ru](FEM_ConstraintHeatflux/ru.md) , [FEM ConstraintInitialFlowVelocity/ru](FEM_ConstraintInitialFlowVelocity/ru.md) , [FEM ConstraintInitialTemperature/ru](FEM_ConstraintInitialTemperature/ru.md) , [FEM ConstraintPlaneRotation/ru](FEM_ConstraintPlaneRotation/ru.md) , [FEM ConstraintPressure/ru](FEM_ConstraintPressure/ru.md) , [FEM ConstraintPulley/ru](FEM_ConstraintPulley/ru.md) , [FEM ConstraintSectionPrint/ru](FEM_ConstraintSectionPrint/ru.md) , [FEM ConstraintSelfWeight/ru](FEM_ConstraintSelfWeight/ru.md) , [FEM ConstraintTemperature/ru](FEM_ConstraintTemperature/ru.md) , [FEM ConstraintTransform/ru](FEM_ConstraintTransform/ru.md) , [FEM CreateNodesSet/ru](FEM_CreateNodesSet/ru.md) , [FEM Element Types/ru](FEM_Element_Types/ru.md) , [FEM ElementFluid1D/ru](FEM_ElementFluid1D/ru.md) , [FEM ElementGeometry1D/ru](FEM_ElementGeometry1D/ru.md) , [FEM ElementGeometry2D/ru](FEM_ElementGeometry2D/ru.md) , [FEM ElementRotation1D/ru](FEM_ElementRotation1D/ru.md) , [FEM EquationElasticity/ru](FEM_EquationElasticity/ru.md) , [FEM EquationElectrostatic/ru](FEM_EquationElectrostatic/ru.md) , [FEM EquationFlow/ru](FEM_EquationFlow/ru.md) , [FEM EquationFlux/ru](FEM_EquationFlux/ru.md) , [FEM EquationHeat/ru](FEM_EquationHeat/ru.md) , [FEM Example Capacitance Two Balls/ru](FEM_Example_Capacitance_Two_Balls/ru.md) , [FEM Examples/ru](FEM_Examples/ru.md) , [FEM FemMesh2Mesh/ru](FEM_FemMesh2Mesh/ru.md) , [FEM Install/ru](FEM_Install/ru.md) , [FEM MaterialFluid/ru](FEM_MaterialFluid/ru.md) , [FEM MaterialMechanicalNonlinear/ru](FEM_MaterialMechanicalNonlinear/ru.md) , [FEM MaterialReinforced/ru](FEM_MaterialReinforced/ru.md) , [FEM MaterialSolid/ru](FEM_MaterialSolid/ru.md) , [FEM Mesh/ru](FEM_Mesh/ru.md) , [FEM MeshBoundaryLayer/ru](FEM_MeshBoundaryLayer/ru.md) , [FEM MeshClear/ru](FEM_MeshClear/ru.md) , [FEM MeshDisplayInfo/ru](FEM_MeshDisplayInfo/ru.md) , [FEM MeshGmshFromShape/ru](FEM_MeshGmshFromShape/ru.md) , [FEM MeshGroup/ru](FEM_MeshGroup/ru.md) , [FEM MeshNetgenFromShape/ru](FEM_MeshNetgenFromShape/ru.md) , [FEM MeshRegion/ru](FEM_MeshRegion/ru.md) , [FEM PostApplyChanges/ru](FEM_PostApplyChanges/ru.md) , [FEM PostCreateFunctions/ru](FEM_PostCreateFunctions/ru.md) , [FEM PostFilterClipRegion/ru](FEM_PostFilterClipRegion/ru.md) , [FEM PostFilterClipScalar/ru](FEM_PostFilterClipScalar/ru.md) , [FEM PostFilterCutFunction/ru](FEM_PostFilterCutFunction/ru.md) , [FEM PostFilterDataAlongLine/ru](FEM_PostFilterDataAlongLine/ru.md) , [FEM PostFilterDataAtPoint/ru](FEM_PostFilterDataAtPoint/ru.md) , [FEM PostFilterLinearizedStresses/ru](FEM_PostFilterLinearizedStresses/ru.md) , [FEM PostFilterWarp/ru](FEM_PostFilterWarp/ru.md) , [FEM PostPipelineFromResult/ru](FEM_PostPipelineFromResult/ru.md) , [FEM Preferences/ru](FEM_Preferences/ru.md) , [FEM project/ru](FEM_project/ru.md) , [FEM ResultShow/ru](FEM_ResultShow/ru.md) , [FEM ResultsPurge/ru](FEM_ResultsPurge/ru.md) , [FEM Shear of a Composite Block/ru](FEM_Shear_of_a_Composite_Block/ru.md) , [FEM Solver/ru](FEM_Solver/ru.md) , [FEM SolverCalculiX/ru](FEM_SolverCalculiX/ru.md) , [FEM SolverCalculixCxxtools/ru](FEM_SolverCalculixCxxtools/ru.md) , [FEM SolverControl/ru](FEM_SolverControl/ru.md) , [FEM SolverElmer/ru](FEM_SolverElmer/ru.md) , [FEM SolverRun/ru](FEM_SolverRun/ru.md) , [FEM SolverZ88/ru](FEM_SolverZ88/ru.md) , [FEM Tutorial Python/ru](FEM_Tutorial_Python/ru.md) , [FEM tutorial/ru](FEM_tutorial/ru.md) , [FEM Workbench/ru](FEM_Workbench/ru.md) , [File Format FCStd/ru](File_Format_FCStd/ru.md) , [Fine-tuning/ru](Fine-tuning/ru.md) , [FreeCAD and DWG Import/ru](FreeCAD_and_DWG_Import/ru.md) , [FreeCAD and DXF Import/ru](FreeCAD_and_DXF_Import/ru.md) , [FreeCAD and Mesh Import/ru](FreeCAD_and_Mesh_Import/ru.md) , [FreeCAD API/ru](FreeCAD_API/ru.md) , [FreeCAD Build Tool/ru](FreeCAD_Build_Tool/ru.md) , [FreeCAD used in production/ru](FreeCAD_used_in_production/ru.md) , [FreeCAD-Ship s60 tutorial (II)/ru](FreeCAD-Ship_s60_tutorial_(II)/ru.md) , [FreeCAD-Ship s60 tutorial/ru](FreeCAD-Ship_s60_tutorial/ru.md) , [Frequently asked questions/ru](Frequently_asked_questions/ru.md) , [Getting started/ru](Getting_started/ru.md) , [Git buildpackage/ru](Git_buildpackage/ru.md) , [Glossary/ru](Glossary/ru.md) , [GuiCommand model/ru](GuiCommand_model/ru.md) , [Template:GuiCommand/ru](Template:GuiCommand/ru.md) , [Template:GuiCommandAddon/ru](Template:GuiCommandAddon/ru.md) , [Help FreeCAD/ru](Help_FreeCAD/ru.md) , [Help/ru](Help/ru.md) , [How to install additional workbenches/ru](How_to_install_additional_workbenches/ru.md) , [How to install macros/ru](How_to_install_macros/ru.md) , [Image CreateImagePlane/ru](Image_CreateImagePlane/ru.md) , [Image Open/ru](Image_Open/ru.md) , [Image Scaling/ru](Image_Scaling/ru.md) , [Image Workbench/ru](Image_Workbench/ru.md) , [Import Export Preferences/ru](Import_Export_Preferences/ru.md) , [Import Export/ru](Import_Export/ru.md) , [Import from STL or OBJ/ru](Import_from_STL_or_OBJ/ru.md) , [Import OpenSCAD code/ru](Import_OpenSCAD_code/ru.md) , [Import text and geometry from Inkscape/ru](Import_text_and_geometry_from_Inkscape/ru.md) , [Import/Export IFC - compiling IfcOpenShell/ru](Import/Export_IFC_-_compiling_IfcOpenShell/ru.md) , [Important information/ru](Important_information/ru.md) , [Inspection Workbench/ru](Inspection_Workbench/ru.md) , [Installing additional components/ru](Installing_additional_components/ru.md) , [Installing Helpfile/ru](Installing_Helpfile/ru.md) , [Installing on Linux/ru](Installing_on_Linux/ru.md) , [Installing on Mac/ru](Installing_on_Mac/ru.md) , [Installing on Windows/ru](Installing_on_Windows/ru.md) , [Interface Customization/ru](Interface_Customization/ru.md) , [Interface/ru](Interface/ru.md) , [Lattice2 Workbench/ru](Lattice2_Workbench/ru.md) , [Licence/ru](Licence/ru.md) , [Linux packaging/ru](Linux_packaging/ru.md) , [Localisation/ru](Localisation/ru.md) , [Macro Align Camera to Working Plane/ru](Macro_Align_Camera_to_Working_Plane/ru.md) , [Macro Align Face Object to View/ru](Macro_Align_Face_Object_to_View/ru.md) , [Macro Align Object to View/ru](Macro_Align_Object_to_View/ru.md) , [Macro Align View to Face/ru](Macro_Align_View_to_Face/ru.md) , [Macro Align Working Plane to Camera/ru](Macro_Align_Working_Plane_to_Camera/ru.md) , [Macro BoundingBox Tracing/ru](Macro_BoundingBox_Tracing/ru.md) , [Macro documentation/ru](Macro_documentation/ru.md) , [Macro FCCamera/ru](Macro_FCCamera/ru.md) , [Macro FCInfo/ru](Macro_FCInfo/ru.md) , [Macro GMSH/ru](Macro_GMSH/ru.md) , [Macro GuiResetToolbars/ru](Macro_GuiResetToolbars/ru.md) , [Macro HiddenAlls/ru](Macro_HiddenAlls/ru.md) , [Macro If Selected Stay If Not Then Delete/ru](Macro_If_Selected_Stay_If_Not_Then_Delete/ru.md) , [Macro MessageBox/ru](Macro_MessageBox/ru.md) , [Macro Mouse Cross/ru](Macro_Mouse_Cross/ru.md) , [Macro MoveToOrigin/ru](Macro_MoveToOrigin/ru.md) , [Macro ObjectInfo/ru](Macro_ObjectInfo/ru.md) , [Macro Rotate View Free/ru](Macro_Rotate_View_Free/ru.md) , [Macro Rotate View/ru](Macro_Rotate_View/ru.md) , [Macro Rotate ViewAxonometric/ru](Macro_Rotate_ViewAxonometric/ru.md) , [Macro Screen Wiki/ru](Macro_Screen_Wiki/ru.md) , [Macro Texture Objects/ru](Macro_Texture_Objects/ru.md) , [Macro Texture/ru](Macro_Texture/ru.md) , [Macro Toggle Panels Visibility/ru](Macro_Toggle_Panels_Visibility/ru.md) , [Macro Toggle Visibility/ru](Macro_Toggle_Visibility/ru.md) , [Macro View Rotation/ru](Macro_View_Rotation/ru.md) , [Macro VisibleAlls/ru](Macro_VisibleAlls/ru.md) , [Macro WorkFeatures/ru](Macro_WorkFeatures/ru.md) , [Template:Macro/ru](Template:Macro/ru.md) , [Main Page/ru](Main_Page/ru.md) , [Main view area/ru](Main_view_area/ru.md) , [Manipulator Workbench/ru](Manipulator_Workbench/ru.md) , [Manipulator/ru](Manipulator/ru.md) , [Manual:Creating renderings/ru](Manual:Creating_renderings/ru.md) , [Material editor/ru](Material_editor/ru.md) , [Material/ru](Material/ru.md) , [Measurement Of Angles On Holes/ru](Measurement_Of_Angles_On_Holes/ru.md) , [Mesh BoundingBox/ru](Mesh_BoundingBox/ru.md) , [Mesh BuildRegularSolid/ru](Mesh_BuildRegularSolid/ru.md) , [Mesh CurvatureInfo/ru](Mesh_CurvatureInfo/ru.md) , [Mesh Difference/ru](Mesh_Difference/ru.md) , [Mesh EvaluateFacet/ru](Mesh_EvaluateFacet/ru.md) , [Mesh EvaluateSolid/ru](Mesh_EvaluateSolid/ru.md) , [Mesh Evaluation/ru](Mesh_Evaluation/ru.md) , [Mesh Export/ru](Mesh_Export/ru.md) , [Mesh FillInteractiveHole/ru](Mesh_FillInteractiveHole/ru.md) , [Mesh FlipNormals/ru](Mesh_FlipNormals/ru.md) , [Mesh FromPartShape/ru](Mesh_FromPartShape/ru.md) , [Mesh HarmonizeNormals/ru](Mesh_HarmonizeNormals/ru.md) , [Mesh Import/ru](Mesh_Import/ru.md) , [Mesh Intersection/ru](Mesh_Intersection/ru.md) , [Mesh Merge/ru](Mesh_Merge/ru.md) , [Mesh PolyCut/ru](Mesh_PolyCut/ru.md) , [Mesh RemoveCompByHand/ru](Mesh_RemoveCompByHand/ru.md) , [Mesh RemoveComponents/ru](Mesh_RemoveComponents/ru.md) , [Mesh Scale/ru](Mesh_Scale/ru.md) , [Mesh Union/ru](Mesh_Union/ru.md) , [Mesh VertexCurvature/ru](Mesh_VertexCurvature/ru.md) , [Mesh Workbench/ru](Mesh_Workbench/ru.md) , [Mesh/ru](Mesh/ru.md) , [Migrating to FreeCAD from Fusion360/ru](Migrating_to_FreeCAD_from_Fusion360/ru.md) , [Misc templates Full/ru](Misc_templates_Full/ru.md) , [Model/ru](Model/ru.md) , [Mouse navigation/ru](Mouse_navigation/ru.md) , [Naming project/ru](Naming_project/ru.md) , [Navigation Cube/ru](Navigation_Cube/ru.md) , [Object name/ru](Object_name/ru.md) , [Offsite tutorials/ru](Offsite_tutorials/ru.md) , [Online Help Startpage/ru](Online_Help_Startpage/ru.md) , [Online Help Toc/ru](Online_Help_Toc/ru.md) , [OpenCamLib/ru](OpenCamLib/ru.md) , [OpenSCAD AddOpenSCADElement/ru](OpenSCAD_AddOpenSCADElement/ru.md) , [OpenSCAD ColorCodeShape/ru](OpenSCAD_ColorCodeShape/ru.md) , [OpenSCAD Edgestofaces/ru](OpenSCAD_Edgestofaces/ru.md) , [OpenSCAD ExpandPlacements/ru](OpenSCAD_ExpandPlacements/ru.md) , [OpenSCAD ExplodeGroup/ru](OpenSCAD_ExplodeGroup/ru.md) , [OpenSCAD Hull/ru](OpenSCAD_Hull/ru.md) , [OpenSCAD IncreaseToleranceFeature/ru](OpenSCAD_IncreaseToleranceFeature/ru.md) , [OpenSCAD MeshBoolean/ru](OpenSCAD_MeshBoolean/ru.md) , [OpenSCAD Minkowski/ru](OpenSCAD_Minkowski/ru.md) , [OpenSCAD Preferences/ru](OpenSCAD_Preferences/ru.md) , [OpenSCAD RefineShapeFeature/ru](OpenSCAD_RefineShapeFeature/ru.md) , [OpenSCAD RemoveSubtree/ru](OpenSCAD_RemoveSubtree/ru.md) , [OpenSCAD ReplaceObject/ru](OpenSCAD_ReplaceObject/ru.md) , [OpenSCAD Workbench/ru](OpenSCAD_Workbench/ru.md) , [Part and PartDesign/ru](Part_and_PartDesign/ru.md) , [Part API/ru](Part_API/ru.md) , [Part Boolean/ru](Part_Boolean/ru.md) , [Part BooleanFragments/ru](Part_BooleanFragments/ru.md) , [Part Box/ru](Part_Box/ru.md) , [Part BoxSelection/ru](Part_BoxSelection/ru.md) , [Part Builder/ru](Part_Builder/ru.md) , [Part Chamfer/ru](Part_Chamfer/ru.md) , [Part CheckGeometry/ru](Part_CheckGeometry/ru.md) , [Part Circle/ru](Part_Circle/ru.md) , [Part Common/ru](Part_Common/ru.md) , [Part CompCompoundTools/ru](Part_CompCompoundTools/ru.md) , [Part CompJoinFeatures/ru](Part_CompJoinFeatures/ru.md) , [Part CompOffsetTools/ru](Part_CompOffsetTools/ru.md) , [Part Compound/ru](Part_Compound/ru.md) , [Part CompoundFilter/ru](Part_CompoundFilter/ru.md) , [Part CompSplittingTools/ru](Part_CompSplittingTools/ru.md) , [Part Cone/ru](Part_Cone/ru.md) , [Part CrossSections/ru](Part_CrossSections/ru.md) , [Part Cut/ru](Part_Cut/ru.md) , [Part Cylinder/ru](Part_Cylinder/ru.md) , [Part Defeaturing/ru](Part_Defeaturing/ru.md) , [Part EditAttachment/ru](Part_EditAttachment/ru.md) , [Part ElementCopy/ru](Part_ElementCopy/ru.md) , [Part Ellipse/ru](Part_Ellipse/ru.md) , [Part Ellipsoid/ru](Part_Ellipsoid/ru.md) , [Part ExplodeCompound/ru](Part_ExplodeCompound/ru.md) , [Part Export/ru](Part_Export/ru.md) , [Part Extrude/ru](Part_Extrude/ru.md) , [Part FaceColors/ru](Part_FaceColors/ru.md) , [Part Feature/ru](Part_Feature/ru.md) , [Part Fillet/ru](Part_Fillet/ru.md) , [Part Fuse/ru](Part_Fuse/ru.md) , [Part Helix/ru](Part_Helix/ru.md) , [Part Import/ru](Part_Import/ru.md) , [Part JoinConnect/ru](Part_JoinConnect/ru.md) , [Part JoinCutout/ru](Part_JoinCutout/ru.md) , [Part JoinEmbed/ru](Part_JoinEmbed/ru.md) , [Part Line/ru](Part_Line/ru.md) , [Part Loft/ru](Part_Loft/ru.md) , [Part MakeFace/ru](Part_MakeFace/ru.md) [Category:Documentation/ru](Category:Documentation/ru.md) + +--- +[documentation index](../README.md) > Category:User Documentation/ru diff --git a/wiki/translations/ru/Category:Wiki.md b/wiki/translations/ru/Category:Wiki.md index f6cef784fa..35d3f7a94a 100644 --- a/wiki/translations/ru/Category:Wiki.md +++ b/wiki/translations/ru/Category:Wiki.md @@ -6,3 +6,6 @@ This category contains all documents that relate to the Wiki/ru. [Glossary/ru](Glossary/ru.md) , [Localisation Sidebar/ru](Localisation_Sidebar/ru.md) , [Localisation/ru](Localisation/ru.md) , [WikiPages/ru](WikiPages/ru.md) [Category:Administration/ru](Category:Administration/ru.md) [Category:Categories/ru](Category:Categories/ru.md) [Category:Documentation/ru](Category:Documentation/ru.md) + +--- +[documentation index](../README.md) > Category:Wiki/ru diff --git a/wiki/translations/ru/Category:Workbenches.md b/wiki/translations/ru/Category:Workbenches.md index aac2e01ed3..90b6b23d23 100644 --- a/wiki/translations/ru/Category:Workbenches.md +++ b/wiki/translations/ru/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/ru](Arch_Workbench/ru.md) , [Draft Workbench/ru](Draft_Workbench/ru.md) , [FEM Workbench/ru](FEM_Workbench/ru.md) , [Image Workbench/ru](Image_Workbench/ru.md) , [Inspection Workbench/ru](Inspection_Workbench/ru.md) , [Mesh Workbench/ru](Mesh_Workbench/ru.md) , [OpenSCAD Workbench/ru](OpenSCAD_Workbench/ru.md) , [Part Module/ru](Part_Module/ru.md) , [PartDesign Workbench/ru](PartDesign_Workbench/ru.md) , [Path Workbench/ru](Path_Workbench/ru.md) , [Points Workbench/ru](Points_Workbench/ru.md) , [Raytracing Workbench/ru](Raytracing_Workbench/ru.md) , [Reverse Engineering Workbench/ru](Reverse_Engineering_Workbench/ru.md) , [Robot Workbench/ru](Robot_Workbench/ru.md) , [Sketcher Workbench/ru](Sketcher_Workbench/ru.md) , [Spreadsheet Workbench/ru](Spreadsheet_Workbench/ru.md) , [Start Workbench/ru](Start_Workbench/ru.md) , [Std Base/ru](Std_Base/ru.md) , [Std Edit Menu/ru](Std_Edit_Menu/ru.md) , [Std File Menu/ru](Std_File_Menu/ru.md) , [Std Help Menu/ru](Std_Help_Menu/ru.md) , [Std Macro Menu/ru](Std_Macro_Menu/ru.md) , [Std Tools Menu/ru](Std_Tools_Menu/ru.md) , [Std View Menu/ru](Std_View_Menu/ru.md) , [Std Windows Menu/ru](Std_Windows_Menu/ru.md) , [Surface Workbench/ru](Surface_Workbench/ru.md) , [TechDraw Workbench/ru](TechDraw_Workbench/ru.md) , [Testing/ru](Testing/ru.md) , [Web Workbench/ru](Web_Workbench/ru.md) , [Workbenches/ru](Workbenches/ru.md) , , , , , , , , , , , , , , , , , , , [Category:User Documentation/ru](Category:User_Documentation/ru.md) [Category:Draft/ru](Category:Draft/ru.md) [Category:External Workbenches/ru](Category:External_Workbenches/ru.md) [Category:FEM/ru](Category:FEM/ru.md) [Category:Image/ru](Category:Image/ru.md) [Category:Inspection/ru](Category:Inspection/ru.md) [Category:Mesh/ru](Category:Mesh/ru.md) [Category:OpenSCAD/ru](Category:OpenSCAD/ru.md) [Category:Part/ru](Category:Part/ru.md) [Category:Path/ru](Category:Path/ru.md) [Category:Plot/ru](Category:Plot/ru.md) [Category:Points/ru](Category:Points/ru.md) [Category:Raytracing/ru](Category:Raytracing/ru.md) [Category:Reinforcement/ru](Category:Reinforcement/ru.md) [Category:Robot/ru](Category:Robot/ru.md) [Category:Ship/ru](Category:Ship/ru.md) [Category:Spreadsheet/ru](Category:Spreadsheet/ru.md) [Category:Surface/ru](Category:Surface/ru.md) [Category:TechDraw/ru](Category:TechDraw/ru.md) [Category:Test Framework/ru](Category:Test_Framework/ru.md) + +--- +[documentation index](../README.md) > Category:Workbenches/ru diff --git a/wiki/translations/ru/Cfd_Workbench.md b/wiki/translations/ru/Cfd_Workbench.md index 3426a29fdd..012184fea7 100644 --- a/wiki/translations/ru/Cfd_Workbench.md +++ b/wiki/translations/ru/Cfd_Workbench.md @@ -1,6 +1,4 @@ # Cfd Workbench/ru - - ## Введение @@ -61,3 +59,6 @@ To use CFD for FreeCAD [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Cfd Workbench/ru diff --git a/wiki/translations/ru/Changelog.md b/wiki/translations/ru/Changelog.md index 42b20a7c63..9d35c7b7f4 100644 --- a/wiki/translations/ru/Changelog.md +++ b/wiki/translations/ru/Changelog.md @@ -1,5 +1,5 @@ # Changelog/ru - Список изменений FreeCAD поддерживается на нашем трекере mantis: +Список изменений FreeCAD поддерживается на нашем трекере mantis: @@ -7,3 +7,6 @@ [Category:Administration](Category:Administration.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Changelog/ru diff --git a/wiki/translations/ru/Code_snippets.md b/wiki/translations/ru/Code_snippets.md index 9465698304..4423dce7ed 100644 --- a/wiki/translations/ru/Code_snippets.md +++ b/wiki/translations/ru/Code_snippets.md @@ -1,7 +1,4 @@ # Code snippets/ru - - - {{TOCright}} ## Введение @@ -1773,3 +1770,6 @@ See [Coin3d snippets](Coin3d_snippets.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Code snippets/ru diff --git a/wiki/translations/ru/Combo_view.md b/wiki/translations/ru/Combo_view.md index d5cbbd862a..504ce26243 100644 --- a/wiki/translations/ru/Combo_view.md +++ b/wiki/translations/ru/Combo_view.md @@ -1,5 +1,5 @@ # Combo view/ru - {{TOCright}} +{{TOCright}} ## Введение @@ -54,4 +54,7 @@ Then activate the view using the menu, **View → Panels → Tree view** or ** {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Combo view/ru diff --git a/wiki/translations/ru/Command.md b/wiki/translations/ru/Command.md index bd12f6d044..76e1d50353 100644 --- a/wiki/translations/ru/Command.md +++ b/wiki/translations/ru/Command.md @@ -1,6 +1,4 @@ # Command/ru - - ## Вступление @@ -107,3 +105,6 @@ FreeCADGui.addCommand('My_Command', MyCommand()) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Command_Reference/ru|:Category:Command_Reference/ru]]. Команды могут запускаться с помощью кнопки на панели инструментов или из списка меню, а так же из ](Category:Command_Reference/ru|:Category:Command_Reference/ru]]. Команды могут запускаться с помощью кнопки на панели инструментов или из списка меню, а так же из .md) > Command/ru diff --git a/wiki/translations/ru/CompileOnCygwin.md b/wiki/translations/ru/CompileOnCygwin.md index 742c6f3c0d..86772f385e 100644 --- a/wiki/translations/ru/CompileOnCygwin.md +++ b/wiki/translations/ru/CompileOnCygwin.md @@ -1,2 +1,5 @@ # CompileOnCygwin/ru 1. REDIRECT [Compile on Cygwin/ru](Compile_on_Cygwin/ru.md) + +--- +[documentation index](../README.md) > CompileOnCygwin/ru diff --git a/wiki/translations/ru/CompileOnMac.md b/wiki/translations/ru/CompileOnMac.md index ac65240d82..cdf8f728db 100644 --- a/wiki/translations/ru/CompileOnMac.md +++ b/wiki/translations/ru/CompileOnMac.md @@ -1,2 +1,5 @@ # CompileOnMac/ru 1. REDIRECT [Compile on MacOS/ru](Compile_on_MacOS/ru.md) + +--- +[documentation index](../README.md) > CompileOnMac/ru diff --git a/wiki/translations/ru/CompileOnMinGW.md b/wiki/translations/ru/CompileOnMinGW.md index 7e4d2f92d3..7971d62ecc 100644 --- a/wiki/translations/ru/CompileOnMinGW.md +++ b/wiki/translations/ru/CompileOnMinGW.md @@ -1,2 +1,5 @@ # CompileOnMinGW/ru 1. REDIRECT [Compile on MinGW/ru](Compile_on_MinGW/ru.md) + +--- +[documentation index](../README.md) > CompileOnMinGW/ru diff --git a/wiki/translations/ru/CompileOnUnix.md b/wiki/translations/ru/CompileOnUnix.md index 3bc8ae02ce..294179fadb 100644 --- a/wiki/translations/ru/CompileOnUnix.md +++ b/wiki/translations/ru/CompileOnUnix.md @@ -1,2 +1,5 @@ # CompileOnUnix/ru 1. REDIRECT [Compile\_on\_Linux/ru](Compile_on_Linux/ru.md) + +--- +[documentation index](../README.md) > CompileOnUnix/ru diff --git a/wiki/translations/ru/CompileOnWindows.md b/wiki/translations/ru/CompileOnWindows.md index 52537642ea..1861437ee1 100644 --- a/wiki/translations/ru/CompileOnWindows.md +++ b/wiki/translations/ru/CompileOnWindows.md @@ -1,2 +1,5 @@ # CompileOnWindows/ru 1. REDIRECT [Compile on Windows/ru](Compile_on_Windows/ru.md) + +--- +[documentation index](../README.md) > CompileOnWindows/ru diff --git a/wiki/translations/ru/Compile_on_Cygwin.md b/wiki/translations/ru/Compile_on_Cygwin.md index 46323c42f8..baf62c8cae 100644 --- a/wiki/translations/ru/Compile_on_Cygwin.md +++ b/wiki/translations/ru/Compile_on_Cygwin.md @@ -1,5 +1,5 @@ # Compile on Cygwin/ru - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** ## How to build and run FreeCAD under Cygwin @@ -74,3 +74,6 @@ Once you have built the sources successfully using \'make\' with \'make install\ [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Cygwin/ru diff --git a/wiki/translations/ru/Compile_on_Docker.md b/wiki/translations/ru/Compile_on_Docker.md index 2b43a497e5..ec8e9bfa02 100644 --- a/wiki/translations/ru/Compile_on_Docker.md +++ b/wiki/translations/ru/Compile_on_Docker.md @@ -1,10 +1,4 @@ # Compile on Docker/ru - - - - - - {{TOCright}} ## Обзор @@ -148,3 +142,6 @@ You can find the attached directories in the `/mnt` directory. [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Compile on Docker/ru diff --git a/wiki/translations/ru/Compile_on_Linux.md b/wiki/translations/ru/Compile_on_Linux.md index 51f61ea03e..e29c7ad523 100644 --- a/wiki/translations/ru/Compile_on_Linux.md +++ b/wiki/translations/ru/Compile_on_Linux.md @@ -1,10 +1,4 @@ # Compile on Linux/ru - - - - - - **Существует экспериментальный контейнер FreeCAD Docker, который протестирован для разработки FreeCAD. Подробнее на странице [Компиляция в Docker](Compile_on_Docker/ru.md)** @@ -1230,3 +1224,6 @@ make -j$(nproc) [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Linux/ru diff --git a/wiki/translations/ru/Compile_on_MacOS.md b/wiki/translations/ru/Compile_on_MacOS.md index 3f45594ce6..f5bf05ec41 100644 --- a/wiki/translations/ru/Compile_on_MacOS.md +++ b/wiki/translations/ru/Compile_on_MacOS.md @@ -1,10 +1,4 @@ # Compile on MacOS/ru - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -199,3 +193,6 @@ Docnav/ru \|[Компиляция в Linux](Compile_on_Linux/ru.md) \|[Комп [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS/ru diff --git a/wiki/translations/ru/Compile_on_MinGW.md b/wiki/translations/ru/Compile_on_MinGW.md index 3f473aba0c..3c13afd955 100644 --- a/wiki/translations/ru/Compile_on_MinGW.md +++ b/wiki/translations/ru/Compile_on_MinGW.md @@ -1,5 +1,5 @@ # Compile on MinGW/ru - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** {{TOCright}} +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** {{TOCright}} ## How to build and run FreeCAD under MSYS/MinGW @@ -256,3 +256,6 @@ Have fun! [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MinGW/ru diff --git a/wiki/translations/ru/Compile_on_Windows.md b/wiki/translations/ru/Compile_on_Windows.md index 28a9569ccc..62f8375f5a 100644 --- a/wiki/translations/ru/Compile_on_Windows.md +++ b/wiki/translations/ru/Compile_on_Windows.md @@ -1,10 +1,4 @@ # Compile on Windows/ru - - - - - - {{TOCright}} На этой странице шаг за шагом объясняется \"как скомпилировать FreeCAD 0.19 или новее в Windows\"\". Для других платформ см.[Compiling](Compiling.md). @@ -461,3 +455,6 @@ FreeCAD имеет функцию предварительного просмо [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows/ru diff --git a/wiki/translations/ru/Compiling.md b/wiki/translations/ru/Compiling.md index 7bc5c0ffc4..3eb70f13f3 100644 --- a/wiki/translations/ru/Compiling.md +++ b/wiki/translations/ru/Compiling.md @@ -1,7 +1,4 @@ # Compiling/ru - - -
Каждая операционная система имеет свою собственную страницу по компиляции FreeCAD в [Онлайновой документации](Online_Help_Toc/ru.md). @@ -34,3 +31,6 @@ [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling/ru diff --git a/wiki/translations/ru/Compiling_(Speeding_up).md b/wiki/translations/ru/Compiling_(Speeding_up).md index eeee9a484e..8421af9901 100644 --- a/wiki/translations/ru/Compiling_(Speeding_up).md +++ b/wiki/translations/ru/Compiling_(Speeding_up).md @@ -1,10 +1,4 @@ # Compiling (Speeding up)/ru - - - - - - {{TOCright}} ## Обзор @@ -64,3 +58,6 @@ make -j$(nproc --ignore=2) [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling (Speeding up)/ru diff --git a/wiki/translations/ru/Complete_Workbench.md b/wiki/translations/ru/Complete_Workbench.md index 7d674be793..720fe13a08 100644 --- a/wiki/translations/ru/Complete_Workbench.md +++ b/wiki/translations/ru/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/ru - - - **The [[Complete Workbench]] is deprecated.** @@ -14,3 +11,6 @@ See [Interface Customization](Interface_Customization.md) if you\'d like to adap [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/ru diff --git a/wiki/translations/ru/Conda.md b/wiki/translations/ru/Conda.md index d6c6732446..96fef0d24e 100644 --- a/wiki/translations/ru/Conda.md +++ b/wiki/translations/ru/Conda.md @@ -1,6 +1,4 @@ # Conda/ru - - ## Вступление @@ -95,3 +93,6 @@ conda create --name fcenv-dev --channel freecad/label/dev freecad - [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Conda/ru diff --git a/wiki/translations/ru/Constraint.md b/wiki/translations/ru/Constraint.md index 44dbab7ea7..c0a1ab2b23 100644 --- a/wiki/translations/ru/Constraint.md +++ b/wiki/translations/ru/Constraint.md @@ -1,6 +1,4 @@ # Constraint/ru - - ## Введение @@ -47,3 +45,6 @@ See the information in the [Glossary](Category:Glossary.md) > Constraint/ru diff --git a/wiki/translations/ru/Constructive_solid_geometry.md b/wiki/translations/ru/Constructive_solid_geometry.md index b63a14026e..cfecb4eeaa 100644 --- a/wiki/translations/ru/Constructive_solid_geometry.md +++ b/wiki/translations/ru/Constructive_solid_geometry.md @@ -1,5 +1,5 @@ # Constructive solid geometry/ru - {{TOCright}} +{{TOCright}} ## Введение @@ -37,3 +37,6 @@ [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Constructive solid geometry/ru diff --git a/wiki/translations/ru/Continuous_Integration.md b/wiki/translations/ru/Continuous_Integration.md index fdf326c0bb..e6fd95cef9 100644 --- a/wiki/translations/ru/Continuous_Integration.md +++ b/wiki/translations/ru/Continuous_Integration.md @@ -1,10 +1,4 @@ # Continuous Integration/ru - - - - - - {{TOCright}} ## Continuous Integration @@ -34,3 +28,6 @@ Currently the FreeCAD repository on GitHub will trigger a build on the below two [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Continuous Integration/ru diff --git a/wiki/translations/ru/Contributors.md b/wiki/translations/ru/Contributors.md index 5afd866bf7..011166f57d 100644 --- a/wiki/translations/ru/Contributors.md +++ b/wiki/translations/ru/Contributors.md @@ -1,10 +1,4 @@ # Contributors/ru - - - - - - {{TOCright}} @@ -253,3 +247,6 @@ Developers of FreeCAD addons (retrieved from [Developer](Category:Developer.md) > Contributors/ru diff --git a/wiki/translations/ru/Create_a_FeaturePython_object_part_I.md b/wiki/translations/ru/Create_a_FeaturePython_object_part_I.md index ea07a6f5c9..97e3435a44 100644 --- a/wiki/translations/ru/Create_a_FeaturePython_object_part_I.md +++ b/wiki/translations/ru/Create_a_FeaturePython_object_part_I.md @@ -1,10 +1,4 @@ # Create a FeaturePython object part I/ru - - - - - - {{TOCright}} ## Введение @@ -389,3 +383,6 @@ class box(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Create a FeaturePython object part I/ru diff --git a/wiki/translations/ru/Create_a_FeaturePython_object_part_II.md b/wiki/translations/ru/Create_a_FeaturePython_object_part_II.md index e2731d92c5..8fa353f2bf 100644 --- a/wiki/translations/ru/Create_a_FeaturePython_object_part_II.md +++ b/wiki/translations/ru/Create_a_FeaturePython_object_part_II.md @@ -1,10 +1,4 @@ # Create a FeaturePython object part II/ru - - - - - - {{TOCright}} ## Вступление @@ -402,3 +396,6 @@ class ViewProviderBox: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Create a FeaturePython object part II/ru diff --git a/wiki/translations/ru/Creating_a_FeaturePython_Box,_Part_II.md b/wiki/translations/ru/Creating_a_FeaturePython_Box,_Part_II.md index d12d3b22a9..ff308f4a21 100644 --- a/wiki/translations/ru/Creating_a_FeaturePython_Box,_Part_II.md +++ b/wiki/translations/ru/Creating_a_FeaturePython_Box,_Part_II.md @@ -1,2 +1,5 @@ # Creating a FeaturePython Box, Part II/ru 1. REDIRECT [Create\_a\_FeaturePython\_object\_part\_II/ru](Create_a_FeaturePython_object_part_II/ru.md) + +--- +[documentation index](../README.md) > Creating a FeaturePython Box, Part II/ru diff --git a/wiki/translations/ru/Creating_a_simple_part_with_PartDesign.md b/wiki/translations/ru/Creating_a_simple_part_with_PartDesign.md index 02602b8a1f..304b2e55b6 100644 --- a/wiki/translations/ru/Creating_a_simple_part_with_PartDesign.md +++ b/wiki/translations/ru/Creating_a_simple_part_with_PartDesign.md @@ -1,7 +1,4 @@ # Creating a simple part with PartDesign/ru - - - {{TutorialInfo/ru |Topic=Modeling |Level=Beginner @@ -267,4 +264,7 @@ You can also continue with this other tutorial of a slightly more complicated pa {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Creating a simple part with PartDesign/ru diff --git a/wiki/translations/ru/Crowdin_Administration.md b/wiki/translations/ru/Crowdin_Administration.md index 694985e90b..c07d57c622 100644 --- a/wiki/translations/ru/Crowdin_Administration.md +++ b/wiki/translations/ru/Crowdin_Administration.md @@ -1,6 +1,4 @@ # Crowdin Administration/ru - - ## Роли - Translator @@ -41,3 +39,6 @@ [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Administration](Category:Administration.md) > Crowdin Administration/ru diff --git a/wiki/translations/ru/Crowdin_Scripts.md b/wiki/translations/ru/Crowdin_Scripts.md index e79d0fb5b8..7916149434 100644 --- a/wiki/translations/ru/Crowdin_Scripts.md +++ b/wiki/translations/ru/Crowdin_Scripts.md @@ -1,5 +1,5 @@ # Crowdin Scripts/ru - {{TOCright}} +{{TOCright}} ## Управление переводами для FreeCAD @@ -91,3 +91,6 @@ The updatefromcrowdin.py script pulls changes from crowdin to your local FreeCAD [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Crowdin Scripts/ru diff --git a/wiki/translations/ru/Custom_Spacing.md b/wiki/translations/ru/Custom_Spacing.md index 3d00b58f6a..3e8621d64b 100644 --- a/wiki/translations/ru/Custom_Spacing.md +++ b/wiki/translations/ru/Custom_Spacing.md @@ -1,6 +1,4 @@ # Custom Spacing/ru - - ## Описание Инструмент Custom Spacing позволяет пользователю создавать распределение арматуры в структурном элементе. Вы можете определить три сегмента для распределения. Для первого и третьего сегментов вы можете дать как несколько арматур, так и расстояние между арматурами. Но для второго сегмента вы можете дать либо несколько арматур, либо расстояние между арматурами, потому что одно значение автоматически определяет другое. @@ -31,3 +29,6 @@ [Category:User Documentation](Category:User_Documentation.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Custom Spacing/ru diff --git a/wiki/translations/ru/Customize_Toolbars.md b/wiki/translations/ru/Customize_Toolbars.md index c0dcc6ea16..e3bb7e5593 100644 --- a/wiki/translations/ru/Customize_Toolbars.md +++ b/wiki/translations/ru/Customize_Toolbars.md @@ -1,5 +1,5 @@ # Customize Toolbars/ru - {{TutorialInfo/ru|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} +{{TutorialInfo/ru|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} ## Synopsis @@ -116,3 +116,6 @@ See also [Interface Customization](Interface_Customization.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Customize Toolbars/ru diff --git a/wiki/translations/ru/DAG_view.md b/wiki/translations/ru/DAG_view.md index a14a4397ff..2349ba1e20 100644 --- a/wiki/translations/ru/DAG_view.md +++ b/wiki/translations/ru/DAG_view.md @@ -1,6 +1,4 @@ # DAG view/ru - - ## Введение @@ -62,4 +60,7 @@ In the [parameter editor](Std_DlgParameter.md) you can also change some properti {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > DAG view/ru diff --git a/wiki/translations/ru/DXF.md b/wiki/translations/ru/DXF.md index 14055401f7..1171788acd 100644 --- a/wiki/translations/ru/DXF.md +++ b/wiki/translations/ru/DXF.md @@ -1,5 +1,5 @@ # DXF/ru - {{TOCright}} +{{TOCright}} ## Исторические данные @@ -43,3 +43,6 @@ In addition to the options under the Edit → Preferences, the [TechDraw Workben [Category:User Documentation](Category:User_Documentation.md) [Category:Draft](Category:Draft.md) [Category:TechDraw](Category:TechDraw.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > DXF/ru diff --git a/wiki/translations/ru/Datum.md b/wiki/translations/ru/Datum.md index 16f24eb19c..4dedc3501d 100644 --- a/wiki/translations/ru/Datum.md +++ b/wiki/translations/ru/Datum.md @@ -1,6 +1,4 @@ # Datum/ru - - ## Введение In FreeCAD the word \"[Datum](Datum.md)\" is normally used to refer to auxiliary geometry in the [PartDesign Workbench](PartDesign_Workbench.md). These geometrical elements will not form part of the final [Shape](Shape.md) of the [Body](Body.md), but can be used as references and supports for [sketches](Sketch.md) and other types of [features](Feature.md). @@ -46,3 +44,6 @@ Since they appeared in v0.17, datum objects were intended to be used inside [Par }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Datum/ru diff --git a/wiki/translations/ru/Debian_Unstable.md b/wiki/translations/ru/Debian_Unstable.md index 50305ba317..694b241e52 100644 --- a/wiki/translations/ru/Debian_Unstable.md +++ b/wiki/translations/ru/Debian_Unstable.md @@ -1,6 +1,4 @@ # Debian Unstable/ru - - [Debian Unstable](https://wiki.debian.org/DebianUnstable) is a rolling distribution used for [Debian development](Debian_development.md) and recommended for advanced users in FreeCAD development and packaging. New packages are ready as soon as they are uploaded and built, unless the uploader has marked them for [Debian Experimental](https://wiki.debian.org/DebianExperimental) which requires explicit installation (after some setup to enable the extra distribution) via . Часто люди, использующие тестирование Debian, на самом деле должны использовать нестабильный Debian; Тестирование Debian следует рассматривать только как \"QA release pocket\", поскольку, хотя оно может показаться более стабильным, чем нестабильным, на самом деле есть недостаток. Новые пакеты загружаются в нестабильный Debian и через некоторое время переходят на тестирование, поэтому исправления безопасности и важные изменения в упаковке могут быть ненадлежащим образом отложены. @@ -27,3 +25,6 @@ deb [http://deb.debian.org/debian](http://deb.debian.org/debian) experimental [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian Unstable/ru diff --git a/wiki/translations/ru/Debian_development.md b/wiki/translations/ru/Debian_development.md index b82119ff87..99e13b6a3f 100644 --- a/wiki/translations/ru/Debian_development.md +++ b/wiki/translations/ru/Debian_development.md @@ -1,6 +1,4 @@ # Debian development/ru - - Debian is the parent distribution from which many other Linux distributions are derived, such as Ubuntu, Linux Mint, and others. As such, it\'s worthwhile to focus specifically on Debian development since improvements in Debian will filter down through its descendants. [Debian Unstable](Debian_Unstable.md) is a good target distribution for FreeCAD development on Linux since it provides the most up-to-date packages possible, as a rolling distribution. One can contribute both to FreeCAD development on Debian as well as its ecosystem of related packages and dependencies. @@ -9,3 +7,6 @@ Debian is the parent distribution from which many other Linux distributions are [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Debian development/ru diff --git a/wiki/translations/ru/Debugging.md b/wiki/translations/ru/Debugging.md index b49d925d5a..c7a2f4e38a 100644 --- a/wiki/translations/ru/Debugging.md +++ b/wiki/translations/ru/Debugging.md @@ -1,10 +1,4 @@ # Debugging/ru - - - - - - {{TOCright}} ## Певые испытания @@ -345,3 +339,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/ru diff --git a/wiki/translations/ru/Developer_hub.md b/wiki/translations/ru/Developer_hub.md index b483ea775e..ff306ce96e 100644 --- a/wiki/translations/ru/Developer_hub.md +++ b/wiki/translations/ru/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/ru - - ![150](images/Crystal_Clear_app_tutorials.png ) Это раздел для тех, кто хочет принять участие в разработке FreeCAD. @@ -138,3 +136,6 @@ FreeCAD, though usable in certain areas, is at the beginning of a long way into [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/ru diff --git a/wiki/translations/ru/Development_roadmap.md b/wiki/translations/ru/Development_roadmap.md index 7eb22a9af8..748630e729 100644 --- a/wiki/translations/ru/Development_roadmap.md +++ b/wiki/translations/ru/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/ru - **Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** +**Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** FreeCAD, хотя и пригоден для многих приложений, находится в начале долгого пути в общепризнанные САПР. Ещё много остаётся делать для достижения уровня, где мы можем соревноваться с коммерческими программами. @@ -44,3 +44,6 @@ FreeCAD, хотя и пригоден для многих приложений, [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/ru diff --git a/wiki/translations/ru/Dialog_creation.md b/wiki/translations/ru/Dialog_creation.md index 324c79db44..bba23f82da 100644 --- a/wiki/translations/ru/Dialog_creation.md +++ b/wiki/translations/ru/Dialog_creation.md @@ -1,7 +1,4 @@ # Dialog creation/ru - - - {{TOCright}} ## Введение @@ -265,3 +262,6 @@ class plane(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation/ru diff --git a/wiki/translations/ru/Document_structure.md b/wiki/translations/ru/Document_structure.md index f6c4e1aa37..48562d1520 100644 --- a/wiki/translations/ru/Document_structure.md +++ b/wiki/translations/ru/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/ru - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) Документ FreeCAD содержит все объекты проекта. Он может содержать группы, и предметы, сделанные с любого инструментария(workbench). Поэтому вы можете переключаться между инструментариями, и до сих пор работать на том же документе. Получившийся документ будет сохранён на диске при сохранении работы. В FreeCAD, вы также можете открывать несколько документов одновременно и открыть несколько видов одного и того же документа. @@ -42,8 +36,5 @@ FreeCADGui.ActiveDocument.Blob FreeCADGui.ActiveDocument.ActiveView ``` Вернет текущий активный вид. - - - - - +--- +[documentation index](../README.md) > Document structure/ru diff --git a/wiki/translations/ru/Donate.md b/wiki/translations/ru/Donate.md index 7a20417ab3..857ca9aa41 100644 --- a/wiki/translations/ru/Donate.md +++ b/wiki/translations/ru/Donate.md @@ -1,7 +1,4 @@ # Donate/ru - - - @@ -57,5 +59,5 @@ In FreeCAD version 0.19 this command and the [Draft ToggleConstructionMode](Draf
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddConstruction/ru diff --git a/wiki/translations/ru/Draft_AddToGroup.md b/wiki/translations/ru/Draft_AddToGroup.md index b2674b071a..51e2cfec30 100644 --- a/wiki/translations/ru/Draft_AddToGroup.md +++ b/wiki/translations/ru/Draft_AddToGroup.md @@ -8,6 +8,8 @@ SeeAlso:[Draft SelectGroup](Draft_SelectGroup/ru.md), [Std CreateGroup](Std_Group/ru.md) --- +# Draft AddToGroup/ru +
@@ -44,5 +46,5 @@ In FreeCAD version 0.20 the command can also handle group-like [Arch](Arch_Workb
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddToGroup/ru diff --git a/wiki/translations/ru/Draft_AnnotationStyleEditor.md b/wiki/translations/ru/Draft_AnnotationStyleEditor.md index 21b5f49251..262699327a 100644 --- a/wiki/translations/ru/Draft_AnnotationStyleEditor.md +++ b/wiki/translations/ru/Draft_AnnotationStyleEditor.md @@ -9,6 +9,8 @@ Version:0.19 --- +# Draft AnnotationStyleEditor/ru + @@ -97,8 +99,5 @@ props = { } ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AnnotationStyleEditor/ru diff --git a/wiki/translations/ru/Draft_Apply.md b/wiki/translations/ru/Draft_Apply.md index 76651196eb..edba97b566 100644 --- a/wiki/translations/ru/Draft_Apply.md +++ b/wiki/translations/ru/Draft_Apply.md @@ -1,2 +1,5 @@ # Draft Apply/ru 1. REDIRECT [Draft\_ApplyStyle/ru](Draft_ApplyStyle/ru.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Apply/ru diff --git a/wiki/translations/ru/Draft_ApplyStyle.md b/wiki/translations/ru/Draft_ApplyStyle.md index 68e9788871..394cf5fb4b 100644 --- a/wiki/translations/ru/Draft_ApplyStyle.md +++ b/wiki/translations/ru/Draft_ApplyStyle.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/ru.md), [Arch](Arch_Workbench/ru.md) --- +# Draft ApplyStyle/ru + @@ -57,8 +59,5 @@ This command currently handles only five of the settings the [Draft SetStyle](Dr - In FreeCAD version 0.20 the [Draft SetStyle](Draft_SetStyle.md) command can also apply the settings. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ApplyStyle/ru diff --git a/wiki/translations/ru/Draft_Arc.md b/wiki/translations/ru/Draft_Arc.md index f4ddaa2097..8d18dc92fa 100644 --- a/wiki/translations/ru/Draft_Arc.md +++ b/wiki/translations/ru/Draft_Arc.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Circle](Draft_Circle/ru.md) --- +# Draft Arc/ru + @@ -81,8 +83,5 @@ arc3 = Draft.make_circle(750, startangle=-30, endangle=-150) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc/ru diff --git a/wiki/translations/ru/Draft_Arc_3Points.md b/wiki/translations/ru/Draft_Arc_3Points.md index bc8249259e..094829efcd 100644 --- a/wiki/translations/ru/Draft_Arc_3Points.md +++ b/wiki/translations/ru/Draft_Arc_3Points.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Arc](Draft_Arc/ru.md), [Draft Circle](Draft_Circle/ru.md), [Draft Ellipse](Draft_Ellipse/ru.md) --- +# Draft Arc 3Points/ru + @@ -97,8 +99,5 @@ arc = Draft.make_arc_3points(points) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc 3Points/ru diff --git a/wiki/translations/ru/Draft_Array.md b/wiki/translations/ru/Draft_Array.md index fc0214bac9..d08204f0ee 100644 --- a/wiki/translations/ru/Draft_Array.md +++ b/wiki/translations/ru/Draft_Array.md @@ -7,6 +7,8 @@ SeeAlso:[PathArray](Draft_PathArray/ru.md) --- +# Draft Array/ru + @@ -35,8 +37,5 @@ See [Draft OrthoArray](Draft_OrthoArray#Properties.md). See [Draft OrthoArray](Draft_OrthoArray#Scripting.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Array/ru diff --git a/wiki/translations/ru/Draft_AutoGroup.md b/wiki/translations/ru/Draft_AutoGroup.md index 04d3bbaa40..a611db2805 100644 --- a/wiki/translations/ru/Draft_AutoGroup.md +++ b/wiki/translations/ru/Draft_AutoGroup.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Layer](Draft_Layer.md), [Std Group](Std_Group.md) --- +# Draft AutoGroup/ru + ## Описание The **Draft AutoGroup** command changes the active [Draft Layer](Draft_Layer.md) or, [optionally](#Preferences.md), the active [Std Group](Std_Group.md) or group-like [Arch](Arch_Workbench.md) object. New [Draft](Draft_Workbench.md) and [Arch](Arch_Workbench.md) objects are automatically placed in this active layer or group. @@ -69,8 +71,5 @@ Draft.autogroup(polygon3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AutoGroup/ru diff --git a/wiki/translations/ru/Draft_BSpline.md b/wiki/translations/ru/Draft_BSpline.md index 832bea1ad5..c3038a486a 100644 --- a/wiki/translations/ru/Draft_BSpline.md +++ b/wiki/translations/ru/Draft_BSpline.md @@ -8,6 +8,8 @@ SeeAlso:[DWire](Draft_Wire.md) --- +# Draft BSpline/ru + @@ -152,5 +154,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BSpline/ru diff --git a/wiki/translations/ru/Draft_BezCurve.md b/wiki/translations/ru/Draft_BezCurve.md index 5bcc74f3c1..cd39bfa6fd 100644 --- a/wiki/translations/ru/Draft_BezCurve.md +++ b/wiki/translations/ru/Draft_BezCurve.md @@ -7,6 +7,8 @@ Shortcut:B Z --- +# Draft BezCurve/ru + @@ -163,5 +165,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BezCurve/ru diff --git a/wiki/translations/ru/Draft_Circle.md b/wiki/translations/ru/Draft_Circle.md index ced71aac4f..228168dd8f 100644 --- a/wiki/translations/ru/Draft_Circle.md +++ b/wiki/translations/ru/Draft_Circle.md @@ -8,6 +8,8 @@ SeeAlso:[Дуга](Draft_Arc/ru.md) --- +# Draft Circle/ru + @@ -147,8 +149,5 @@ circle3 = Draft.make_circle(750, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Circle/ru diff --git a/wiki/translations/ru/Draft_CircularArray.md b/wiki/translations/ru/Draft_CircularArray.md index 3ac207ca22..9353f14404 100644 --- a/wiki/translations/ru/Draft_CircularArray.md +++ b/wiki/translations/ru/Draft_CircularArray.md @@ -8,6 +8,8 @@ SeeAlso:[Array](Draft_Array/ru.md), [PolarArray](Draft_PolarArray/ru.md), [PathArray](Draft_PathArray/ru.md), [PointArray](Draft_PointArray/ru.md), [Clone](Draft_Clone/ru.md) --- +# Draft CircularArray/ru + @@ -126,5 +128,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CircularArray/ru diff --git a/wiki/translations/ru/Draft_Clone.md b/wiki/translations/ru/Draft_Clone.md index dede808f5d..fbcaf9570c 100644 --- a/wiki/translations/ru/Draft_Clone.md +++ b/wiki/translations/ru/Draft_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Масштаб](Draft_Scale/ru.md) --- +# Draft Clone/ru + ## Описание @@ -107,5 +109,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Clone/ru diff --git a/wiki/translations/ru/Draft_CloseLine.md b/wiki/translations/ru/Draft_CloseLine.md index d2ec1260d0..a076b30b7a 100644 --- a/wiki/translations/ru/Draft_CloseLine.md +++ b/wiki/translations/ru/Draft_CloseLine.md @@ -1,2 +1,5 @@ # Draft CloseLine/ru 1. REDIRECT [Draft\_Wire/ru](Draft_Wire/ru.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CloseLine/ru diff --git a/wiki/translations/ru/Draft_Constrain.md b/wiki/translations/ru/Draft_Constrain.md index 43adb39c10..3636ceb318 100644 --- a/wiki/translations/ru/Draft_Constrain.md +++ b/wiki/translations/ru/Draft_Constrain.md @@ -1,7 +1,4 @@ # Draft Constrain/ru - - -
@@ -67,5 +64,5 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr
- - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Constrain/ru diff --git a/wiki/translations/ru/Draft_CubicBezCurve.md b/wiki/translations/ru/Draft_CubicBezCurve.md index 0c5fe6ca01..d742cad1f2 100644 --- a/wiki/translations/ru/Draft_CubicBezCurve.md +++ b/wiki/translations/ru/Draft_CubicBezCurve.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Wire](Draft_Wire/ru.md), [Draft BSpline](Draft_BSpline/ru.md), [Draft BezCurve](Draft_BezCurve/ru.md) --- +# Draft CubicBezCurve/ru + @@ -159,5 +161,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CubicBezCurve/ru diff --git a/wiki/translations/ru/Draft_DAT.md b/wiki/translations/ru/Draft_DAT.md index 624756cd13..0ec13fd4ba 100644 --- a/wiki/translations/ru/Draft_DAT.md +++ b/wiki/translations/ru/Draft_DAT.md @@ -1,7 +1,4 @@ # Draft DAT/ru - - -
@@ -33,3 +30,6 @@ There are many different dialects of this format so this import module tries to [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DAT/ru diff --git a/wiki/translations/ru/Draft_DXF.md b/wiki/translations/ru/Draft_DXF.md index 7d55a8cd1a..611cbf9d78 100644 --- a/wiki/translations/ru/Draft_DXF.md +++ b/wiki/translations/ru/Draft_DXF.md @@ -1,10 +1,4 @@ # Draft DXF/ru - - - - - - {{TOCright}} ## Description @@ -175,3 +169,6 @@ importDXF.export(objects, "/home/user/Pictures/myfile.dxf") [Category:User Documentation/ru](Category:User_Documentation/ru.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DXF/ru diff --git a/wiki/translations/ru/Draft_Dimension.md b/wiki/translations/ru/Draft_Dimension.md index 7984cc081e..cccc3fb3b9 100644 --- a/wiki/translations/ru/Draft_Dimension.md +++ b/wiki/translations/ru/Draft_Dimension.md @@ -8,6 +8,8 @@ SeeAlso:[Перевернуть размер](Draft_FlipDimension/ru.md) --- +# Draft Dimension/ru +
@@ -323,8 +325,5 @@ dimension4.ViewObject.FontSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Dimension/ru diff --git a/wiki/translations/ru/Draft_Downgrade.md b/wiki/translations/ru/Draft_Downgrade.md index 52e118131c..213413cb9c 100644 --- a/wiki/translations/ru/Draft_Downgrade.md +++ b/wiki/translations/ru/Draft_Downgrade.md @@ -8,6 +8,8 @@ SeeAlso:[Обновить](Draft_Upgrade/ru.md) --- +# Draft Downgrade/ru + @@ -102,8 +104,5 @@ add_list4, delete_list4 = Draft.downgrade(box, delete=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Downgrade/ru diff --git a/wiki/translations/ru/Draft_Draft2Sketch.md b/wiki/translations/ru/Draft_Draft2Sketch.md index 2e6ab6995d..0463ce4bba 100644 --- a/wiki/translations/ru/Draft_Draft2Sketch.md +++ b/wiki/translations/ru/Draft_Draft2Sketch.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher](Sketcher_Workbench/ru.md), [PartDesign](PartDesign_Workbench/ru.md) --- +# Draft Draft2Sketch/ru + @@ -118,8 +120,5 @@ draft_from_sketch = Draft.draftify(sketch_from_draft, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Draft2Sketch/ru diff --git a/wiki/translations/ru/Draft_Drawing.md b/wiki/translations/ru/Draft_Drawing.md index 0f79348ec1..694713cd81 100644 --- a/wiki/translations/ru/Draft_Drawing.md +++ b/wiki/translations/ru/Draft_Drawing.md @@ -7,6 +7,8 @@ SeeAlso:[TechDraw DraftView](TechDraw_DraftView.md) --- +# Draft Drawing/ru + @@ -41,8 +43,5 @@ This command is now obsolete. Use the [TechDraw Workbench](TechDraw_Workbench.md 4. Press the ** [Draft Drawing](Draft_Drawing.md)** button. 5. There is a bug in the FreeCAD version 0.19 version of the command. The initial value of the **Direction** property is {{Value|[0, 0, 0]}} which is not allowed. For objects on a plane parallel to the XY plane of the global coordinate system it should be changed to {{Value|[0, 0, 1]}}. After changing this property the page and the view may need to be [recomputed](Std_Refresh.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Drawing/ru diff --git a/wiki/translations/ru/Draft_Edit.md b/wiki/translations/ru/Draft_Edit.md index 36923f4a89..fe501af4e8 100644 --- a/wiki/translations/ru/Draft_Edit.md +++ b/wiki/translations/ru/Draft_Edit.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/ru.md), [Arch](Arch_Workbench/ru.md) --- +# Draft Edit/ru + @@ -176,8 +178,5 @@ See also: [Autogenerated API documentation](https://freecad.github.io/SourceDoc/ There is no Python method to Draft Edit objects. To emulate the results of the command geometric properties of objects have to be modified. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Edit/ru diff --git a/wiki/translations/ru/Draft_Ellipse.md b/wiki/translations/ru/Draft_Ellipse.md index 32d4dc2456..f37cda339b 100644 --- a/wiki/translations/ru/Draft_Ellipse.md +++ b/wiki/translations/ru/Draft_Ellipse.md @@ -8,6 +8,8 @@ SeeAlso:[Окружность](Draft_Circle/ru.md) --- +# Draft Ellipse/ru + @@ -142,8 +144,5 @@ ellipse3 = Draft.make_ellipse(700, 1000, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Ellipse/ru diff --git a/wiki/translations/ru/Draft_Facebinder.md b/wiki/translations/ru/Draft_Facebinder.md index 7c7ba93b68..2f6a9a0edb 100644 --- a/wiki/translations/ru/Draft_Facebinder.md +++ b/wiki/translations/ru/Draft_Facebinder.md @@ -7,6 +7,8 @@ Shortcut:**F** **F** --- +# Draft Facebinder/ru + @@ -125,8 +127,5 @@ facebinder.ViewObject.ShapeColor = (0.99, 0.99, 0.4) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Facebinder/ru diff --git a/wiki/translations/ru/Draft_Fillet.md b/wiki/translations/ru/Draft_Fillet.md index ca43c3ec6a..7c32e5297e 100644 --- a/wiki/translations/ru/Draft_Fillet.md +++ b/wiki/translations/ru/Draft_Fillet.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Line](Draft_Line/ru.md), [Draft Wire](Draft_Wire/ru.md) --- +# Draft Fillet/ru + @@ -113,8 +115,5 @@ fillet = Draft.make_fillet([line1, line2], radius=500) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Fillet/ru diff --git a/wiki/translations/ru/Draft_FinishLine.md b/wiki/translations/ru/Draft_FinishLine.md index dd6ae5e83d..52a5c15d57 100644 --- a/wiki/translations/ru/Draft_FinishLine.md +++ b/wiki/translations/ru/Draft_FinishLine.md @@ -1,2 +1,5 @@ # Draft FinishLine/ru 1. REDIRECT [Draft\_Wire/ru](Draft_Wire/ru.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FinishLine/ru diff --git a/wiki/translations/ru/Draft_FlipDimension.md b/wiki/translations/ru/Draft_FlipDimension.md index a33ed37705..648f04e8f5 100644 --- a/wiki/translations/ru/Draft_FlipDimension.md +++ b/wiki/translations/ru/Draft_FlipDimension.md @@ -7,6 +7,8 @@ SeeAlso:[Размер](Draft_Dimension/ru.md) --- +# Draft FlipDimension/ru + @@ -65,8 +67,5 @@ dimension.Normal = dimension.Normal.negative() doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FlipDimension/ru diff --git a/wiki/translations/ru/Draft_Heal.md b/wiki/translations/ru/Draft_Heal.md index 0b46b70956..af441d289c 100644 --- a/wiki/translations/ru/Draft_Heal.md +++ b/wiki/translations/ru/Draft_Heal.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/ru.md), [Arch](Arch_Workbench/ru.md) --- +# Draft Heal/ru + @@ -35,8 +37,5 @@ - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Heal/ru diff --git a/wiki/translations/ru/Draft_Join.md b/wiki/translations/ru/Draft_Join.md index ac3eebaf6c..2ba6831eed 100644 --- a/wiki/translations/ru/Draft_Join.md +++ b/wiki/translations/ru/Draft_Join.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Split](Draft_Split/ru.md) --- +# Draft Join/ru + @@ -75,5 +77,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Join/ru diff --git a/wiki/translations/ru/Draft_Label.md b/wiki/translations/ru/Draft_Label.md index 52bd61a6bb..277d5c9699 100644 --- a/wiki/translations/ru/Draft_Label.md +++ b/wiki/translations/ru/Draft_Label.md @@ -1,3 +1,4 @@ +# Draft Label/ru --- - GuiCommand: Name:Draft Label Workbenches:[Arch](Draft_Workbench___Draft]],_[[Arch_Workbench.md)|MenuLocation:Draft → Label Shortcut:D L--- @@ -223,8 +224,5 @@ label3.ViewObject.TextSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Label/ru diff --git a/wiki/translations/ru/Draft_Layer.md b/wiki/translations/ru/Draft_Layer.md index e7a38fe069..1d87ba24a2 100644 --- a/wiki/translations/ru/Draft_Layer.md +++ b/wiki/translations/ru/Draft_Layer.md @@ -8,6 +8,8 @@ SeeAlso:[Автогруппировка](Draft_AutoGroup/ru.md) --- +# Draft Layer/ru + ## Описание The **Draft Layer** command creates a Draft Layer. A layer is a special kind of group with a number of [visual properties](#View.md). These properties, and any changes to them, are propagated to the objects placed inside the layer. The layers themselves are put in another special group: the Draft LayerContainer. @@ -132,5 +134,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Layer/ru diff --git a/wiki/translations/ru/Draft_Line.md b/wiki/translations/ru/Draft_Line.md index 31de2bd2c4..e6e5c0fb9c 100644 --- a/wiki/translations/ru/Draft_Line.md +++ b/wiki/translations/ru/Draft_Line.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Wire](Draft_Wire/ru.md) --- +# Draft Line/ru + @@ -114,8 +116,5 @@ line2 = Draft.make_line(p3, p4) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Line/ru diff --git a/wiki/translations/ru/Draft_Linestyle.md b/wiki/translations/ru/Draft_Linestyle.md index b8bc3e3545..9b6b6e6cce 100644 --- a/wiki/translations/ru/Draft_Linestyle.md +++ b/wiki/translations/ru/Draft_Linestyle.md @@ -1,2 +1,5 @@ # Draft Linestyle/ru 1. REDIRECT [Draft\_Tray/ru](Draft_Tray/ru.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Linestyle/ru diff --git a/wiki/translations/ru/Draft_LinkArray.md b/wiki/translations/ru/Draft_LinkArray.md index a215ff3a78..74f8901557 100644 --- a/wiki/translations/ru/Draft_LinkArray.md +++ b/wiki/translations/ru/Draft_LinkArray.md @@ -1,2 +1,5 @@ # Draft LinkArray/ru 1. REDIRECT [Draft\_OrthoArray/ru](Draft_OrthoArray/ru.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft LinkArray/ru diff --git a/wiki/translations/ru/Draft_Mirror.md b/wiki/translations/ru/Draft_Mirror.md index 029d34e97b..5c0dad562b 100644 --- a/wiki/translations/ru/Draft_Mirror.md +++ b/wiki/translations/ru/Draft_Mirror.md @@ -8,6 +8,8 @@ SeeAlso:[Клонировать](Draft_Clone/ru.md) --- +# Draft Mirror/ru + ## Описание The **Draft Mirror** command creates mirrored copies, [Part Mirror](Part_Mirror.md) objects, from selected objects. A [Part Mirror](Part_Mirror.md) object is parametric, it will update if its source object changes. @@ -121,8 +123,5 @@ mirrored2 = Draft.mirror([polygon1, polygon2], -p1, -p2) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Mirror/ru diff --git a/wiki/translations/ru/Draft_Module.md b/wiki/translations/ru/Draft_Module.md index 51bafe49bf..972893a153 100644 --- a/wiki/translations/ru/Draft_Module.md +++ b/wiki/translations/ru/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/ru 1. REDIRECT [Draft\_Workbench/ru](Draft_Workbench/ru.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/ru diff --git a/wiki/translations/ru/Draft_Move.md b/wiki/translations/ru/Draft_Move.md index 492add25e6..aa8df928a9 100644 --- a/wiki/translations/ru/Draft_Move.md +++ b/wiki/translations/ru/Draft_Move.md @@ -7,6 +7,8 @@ Shortcut:**M** **V** --- +# Draft Move/ru + @@ -111,8 +113,5 @@ list3 = Draft.move(list1, -2*vector, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Move/ru diff --git a/wiki/translations/ru/Draft_OCA.md b/wiki/translations/ru/Draft_OCA.md index ced49b7e29..60bf88fa5c 100644 --- a/wiki/translations/ru/Draft_OCA.md +++ b/wiki/translations/ru/Draft_OCA.md @@ -1,7 +1,4 @@ # Draft OCA/ru - - -
@@ -84,3 +81,6 @@ importOCA.export(objects, "/home/user/Pictures/myfile.oca") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft OCA/ru diff --git a/wiki/translations/ru/Draft_Offset.md b/wiki/translations/ru/Draft_Offset.md index 69e19db546..3e0df8e66c 100644 --- a/wiki/translations/ru/Draft_Offset.md +++ b/wiki/translations/ru/Draft_Offset.md @@ -8,6 +8,8 @@ SeeAlso:[Part 2D Offset](Part_Offset2D/ru.md) --- +# Draft Offset/ru +
@@ -110,8 +112,5 @@ offset5 = Draft.offset(wire, 1.5*vector, copy=True, occ=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Offset/ru diff --git a/wiki/translations/ru/Draft_OrthoArray.md b/wiki/translations/ru/Draft_OrthoArray.md index 29d1afb236..affc72d84f 100644 --- a/wiki/translations/ru/Draft_OrthoArray.md +++ b/wiki/translations/ru/Draft_OrthoArray.md @@ -7,6 +7,8 @@ SeeAlso:[Draft PolarArray](Draft_PolarArray.md), [Draft CircularArray](Draft_CircularArray.md), [Draft PathArray](Draft_PathArray.md), [Draft PathLinkArray](Draft_PathLinkArray.md), [Draft PointArray](Draft_PointArray.md), [Draft PointLinkArray](Draft_PointLinkArray.md) --- +# Draft OrthoArray/ru + ## Описание The **Draft OrthoArray** command creates an orthogonal (3-axes) array from a selected object. The command can optionally create a [Link](App_Link.md) array, which is more efficient than a regular array. @@ -355,5 +357,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft OrthoArray/ru diff --git a/wiki/translations/ru/Draft_PathArray.md b/wiki/translations/ru/Draft_PathArray.md index b1ab778564..3f67161939 100644 --- a/wiki/translations/ru/Draft_PathArray.md +++ b/wiki/translations/ru/Draft_PathArray.md @@ -7,6 +7,8 @@ SeeAlso:[Массив](Draft_Array/ru.md) --- +# Draft PathArray/ru + @@ -257,8 +259,5 @@ path_array2 = Draft.make_path_array(obj, wire, count=3, extra=App.Vector(0, -500 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathArray/ru diff --git a/wiki/translations/ru/Draft_PathLinkArray.md b/wiki/translations/ru/Draft_PathLinkArray.md index 013c6b9a19..3eda59a6bc 100644 --- a/wiki/translations/ru/Draft_PathLinkArray.md +++ b/wiki/translations/ru/Draft_PathLinkArray.md @@ -8,6 +8,8 @@ SeeAlso:[Array](Draft_Array/ru.md), [LinkArray](Draft_LinkArray/ru.md), [PathArray](Draft_PathArray/ru.md), [Draft Clone](Draft_Clone/ru.md) --- +# Draft PathLinkArray/ru + @@ -24,5 +26,5 @@ The **Draft - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathLinkArray/ru diff --git a/wiki/translations/ru/Draft_Pattern.md b/wiki/translations/ru/Draft_Pattern.md index a9268884c4..223fa3e337 100644 --- a/wiki/translations/ru/Draft_Pattern.md +++ b/wiki/translations/ru/Draft_Pattern.md @@ -1,10 +1,4 @@ # Draft Pattern/ru - - - - - - {{TOCright}} ## Description @@ -43,8 +37,5 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr - The **Edit → Preferences... → Draft → Visual settings → Hatch patterns resolution** preference is not used. - To change the **Pattern Size** used for new objects: **Edit → Preferences... → Draft → Visual settings → Hatch Pattern default size**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Pattern/ru diff --git a/wiki/translations/ru/Draft_Point.md b/wiki/translations/ru/Draft_Point.md index e5467d6684..1e164a099a 100644 --- a/wiki/translations/ru/Draft_Point.md +++ b/wiki/translations/ru/Draft_Point.md @@ -7,6 +7,8 @@ Shortcut:P T --- +# Draft Point/ru + @@ -141,8 +143,5 @@ for i in range(N): doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Point/ru diff --git a/wiki/translations/ru/Draft_PointArray.md b/wiki/translations/ru/Draft_PointArray.md index eaa44b93e7..f47c5e6a0b 100644 --- a/wiki/translations/ru/Draft_PointArray.md +++ b/wiki/translations/ru/Draft_PointArray.md @@ -7,6 +7,8 @@ SeeAlso:[Draft OrthoArray](Draft_OrthoArray.md), [Draft PolarArray](Draft_PolarArray.md), [Draft CircularArray](Draft_CircularArray.md), [Draft PathArray](Draft_PathArray.md), [Draft PathLinkArray](Draft_PathLinkArray.md), [Draft PointLinkArray](Draft_PointLinkArray.md) --- +# Draft PointArray/ru + ## Описание The **Draft PointArray** command creates a regular array from a selected object by placing copies at the points from a [point compound](#Point_compound.md). Use the [Draft PointLinkArray](Draft_PointLinkArray.md) command to create a more efficient [Link](App_Link.md) array instead. Except for the type of array that is created, Link array or regular array, the [Draft PointLinkArray](Draft_PointLinkArray.md) command is identical to this command. @@ -210,5 +212,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PointArray/ru diff --git a/wiki/translations/ru/Draft_PolarArray.md b/wiki/translations/ru/Draft_PolarArray.md index d3faa529e7..989f37a53f 100644 --- a/wiki/translations/ru/Draft_PolarArray.md +++ b/wiki/translations/ru/Draft_PolarArray.md @@ -8,6 +8,8 @@ SeeAlso:[Array](Draft_Array/ru.md), [CircularArray](Draft_CircularArray/ru.md), [PathArray](Draft_PathArray/ru.md), [PointArray](Draft_PointArray/ru.md), [Clone](Draft_Clone/ru.md) --- +# Draft PolarArray/ru + @@ -148,5 +150,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PolarArray/ru diff --git a/wiki/translations/ru/Draft_Polygon.md b/wiki/translations/ru/Draft_Polygon.md index c7fb0a8610..7216c7ca4a 100644 --- a/wiki/translations/ru/Draft_Polygon.md +++ b/wiki/translations/ru/Draft_Polygon.md @@ -7,6 +7,8 @@ Shortcut:**P** **G** --- +# Draft Polygon/ru + @@ -125,8 +127,5 @@ Polygon3 = Draft.make_polygon(6, radius=1450, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Polygon/ru diff --git a/wiki/translations/ru/Draft_Preferences.md b/wiki/translations/ru/Draft_Preferences.md index eed6cdf488..579d7aa19d 100644 --- a/wiki/translations/ru/Draft_Preferences.md +++ b/wiki/translations/ru/Draft_Preferences.md @@ -1,10 +1,4 @@ # Draft Preferences/ru - - - - - - {{TOCright}} @@ -508,3 +502,6 @@ On the *Texts and dimensions* tab you can specify the following: [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Preferences/ru diff --git a/wiki/translations/ru/Draft_Rectangle.md b/wiki/translations/ru/Draft_Rectangle.md index 994ecf34bb..272fe7a86d 100644 --- a/wiki/translations/ru/Draft_Rectangle.md +++ b/wiki/translations/ru/Draft_Rectangle.md @@ -8,6 +8,8 @@ SeeAlso:[Куб](Part_Box/ru.md) --- +# Draft Rectangle/ru + @@ -128,8 +130,5 @@ rectangle3 = Draft.make_rectangle(3500, 250, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rectangle/ru diff --git a/wiki/translations/ru/Draft_Rotate.md b/wiki/translations/ru/Draft_Rotate.md index 172d309a53..fb7ea88bb1 100644 --- a/wiki/translations/ru/Draft_Rotate.md +++ b/wiki/translations/ru/Draft_Rotate.md @@ -7,6 +7,8 @@ Shortcut:**R** **O** --- +# Draft Rotate/ru + @@ -119,8 +121,5 @@ rot_list4 = Draft.rotate(list2, 4*angle2, center=cen, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rotate/ru diff --git a/wiki/translations/ru/Draft_SVG.md b/wiki/translations/ru/Draft_SVG.md index 32d3adc11e..164fa41c08 100644 --- a/wiki/translations/ru/Draft_SVG.md +++ b/wiki/translations/ru/Draft_SVG.md @@ -1,10 +1,4 @@ # Draft SVG/ru - - - - - - {{TOCright}} ## Description @@ -97,3 +91,6 @@ importSVG.export(objects, "/home/user/Pictures/myfile.svg") [Category:User Documentation/ru](Category:User_Documentation/ru.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SVG/ru diff --git a/wiki/translations/ru/Draft_Scale.md b/wiki/translations/ru/Draft_Scale.md index d74cbafa23..5effd7dc36 100644 --- a/wiki/translations/ru/Draft_Scale.md +++ b/wiki/translations/ru/Draft_Scale.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Clone](Draft_Clone/ru.md) --- +# Draft Scale/ru + @@ -116,8 +118,5 @@ wires = Draft.scale([wire1, wire2], scale2, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Scale/ru diff --git a/wiki/translations/ru/Draft_SelectGroup.md b/wiki/translations/ru/Draft_SelectGroup.md index 06dd203c90..e21c8e060e 100644 --- a/wiki/translations/ru/Draft_SelectGroup.md +++ b/wiki/translations/ru/Draft_SelectGroup.md @@ -8,6 +8,8 @@ SeeAlso:[Добавить в группу](Draft_AddToGroup/ru.md), [Std CreateGroup](Std_Group/ru.md) --- +# Draft SelectGroup/ru + @@ -33,8 +35,5 @@ The command currently does not work well with layers and can produce confusing r - For more information about organizing your model see [Document structure](Document_structure.md) and [Arch tutorial](Arch_tutorial#Organizing_your_model.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectGroup/ru diff --git a/wiki/translations/ru/Draft_SelectPlane.md b/wiki/translations/ru/Draft_SelectPlane.md index 02a60f9b5d..21fd3fd8aa 100644 --- a/wiki/translations/ru/Draft_SelectPlane.md +++ b/wiki/translations/ru/Draft_SelectPlane.md @@ -8,6 +8,8 @@ SeeAlso:[Draft SetWorkingPlaneProxy](Draft_SetWorkingPlaneProxy/ru.md), [Draft ToggleGrid](Draft_ToggleGrid/ru.md) --- +# Draft SelectPlane/ru + @@ -145,5 +147,5 @@ print(projection) - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectPlane/ru diff --git a/wiki/translations/ru/Draft_SetWorkingPlaneProxy.md b/wiki/translations/ru/Draft_SetWorkingPlaneProxy.md index bccffab4ce..8cdd32fcdf 100644 --- a/wiki/translations/ru/Draft_SetWorkingPlaneProxy.md +++ b/wiki/translations/ru/Draft_SetWorkingPlaneProxy.md @@ -1,2 +1,5 @@ # Draft SetWorkingPlaneProxy/ru 1. REDIRECT [Draft\_WorkingPlaneProxy/ru](Draft_WorkingPlaneProxy/ru.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SetWorkingPlaneProxy/ru diff --git a/wiki/translations/ru/Draft_Shape2DView.md b/wiki/translations/ru/Draft_Shape2DView.md index f11138464f..651acad0ee 100644 --- a/wiki/translations/ru/Draft_Shape2DView.md +++ b/wiki/translations/ru/Draft_Shape2DView.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/ru.md), [Arch](Arch_Workbench/ru.md) --- +# Draft Shape2DView/ru + @@ -145,8 +147,5 @@ shape3.ProjectionMode = "Individual Faces" doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Shape2DView/ru diff --git a/wiki/translations/ru/Draft_ShapeString.md b/wiki/translations/ru/Draft_ShapeString.md index a1ae53165f..7a62dc7bbc 100644 --- a/wiki/translations/ru/Draft_ShapeString.md +++ b/wiki/translations/ru/Draft_ShapeString.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Text](Draft_Text/ru.md), [Part Extrude](Part_Extrude/ru.md) --- +# Draft ShapeString/ru + @@ -136,8 +138,5 @@ S3.Placement.Rotation = App.Rotation(zaxis, 180) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString/ru diff --git a/wiki/translations/ru/Draft_ShapeString_tutorial.md b/wiki/translations/ru/Draft_ShapeString_tutorial.md index c0a4fae561..2c029c7cb7 100644 --- a/wiki/translations/ru/Draft_ShapeString_tutorial.md +++ b/wiki/translations/ru/Draft_ShapeString_tutorial.md @@ -1,7 +1,4 @@ # Draft ShapeString tutorial/ru - - -
@@ -193,4 +190,7 @@ See the forum thread, [How to use ShapeStrings in PartDesign](https://forum.free {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString tutorial/ru diff --git a/wiki/translations/ru/Draft_ShowSnapBar.md b/wiki/translations/ru/Draft_ShowSnapBar.md index b7696f525b..42ddd406f0 100644 --- a/wiki/translations/ru/Draft_ShowSnapBar.md +++ b/wiki/translations/ru/Draft_ShowSnapBar.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/ru.md), [Arch](Arch_Workbench/ru.md) --- +# Draft ShowSnapBar/ru +
@@ -31,8 +33,5 @@ - Select the **View → Toolbars → Draft Snap** option from the menu. - Right-click an empty space in the [toolbar area](Interface.md) and select the **Draft Snap** option from the menu that appears. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShowSnapBar/ru diff --git a/wiki/translations/ru/Draft_Slope.md b/wiki/translations/ru/Draft_Slope.md index 84245ac954..43a22702c2 100644 --- a/wiki/translations/ru/Draft_Slope.md +++ b/wiki/translations/ru/Draft_Slope.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Draft Slope/ru + @@ -32,8 +34,5 @@ See also: [Autogenerated API documentation](https://freecad.github.io/SourceDoc/ There is no Python method to slope objects. To emulate the results of the Draft Slope command the `Points` property of wire objects has to be modified. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Slope/ru diff --git a/wiki/translations/ru/Draft_Snap.md b/wiki/translations/ru/Draft_Snap.md index d427547bb5..de2e3eb697 100644 --- a/wiki/translations/ru/Draft_Snap.md +++ b/wiki/translations/ru/Draft_Snap.md @@ -1,10 +1,4 @@ # Draft Snap/ru - - - - - - {{TOCright}} ## Description @@ -95,5 +89,5 @@ Note that after changing some preferences you must restart FreeCAD. - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap/ru diff --git a/wiki/translations/ru/Draft_Snap_Angle.md b/wiki/translations/ru/Draft_Snap_Angle.md index 656e8613f5..fa39996ed5 100644 --- a/wiki/translations/ru/Draft_Snap_Angle.md +++ b/wiki/translations/ru/Draft_Snap_Angle.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap Angle/ru + @@ -49,8 +51,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Angle/ru diff --git a/wiki/translations/ru/Draft_Snap_Center.md b/wiki/translations/ru/Draft_Snap_Center.md index ab854f753a..6da1cd42ed 100644 --- a/wiki/translations/ru/Draft_Snap_Center.md +++ b/wiki/translations/ru/Draft_Snap_Center.md @@ -7,6 +7,8 @@ SeeAlso:[Draft привязка](Draft_Snap/ru.md), [Draft Toggle привязка](Draft_Snap_Lock/ru.md) --- +# Draft Snap Center/ru + @@ -48,8 +50,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Center/ru diff --git a/wiki/translations/ru/Draft_Snap_Dimensions.md b/wiki/translations/ru/Draft_Snap_Dimensions.md index b4a3caf187..f533ea13b8 100644 --- a/wiki/translations/ru/Draft_Snap_Dimensions.md +++ b/wiki/translations/ru/Draft_Snap_Dimensions.md @@ -1,3 +1,4 @@ +# Draft Snap Dimensions/ru --- - GuiCommand:/ru Name:Draft Snap Dimensions @@ -35,8 +36,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Dimensions/ru diff --git a/wiki/translations/ru/Draft_Snap_Endpoint.md b/wiki/translations/ru/Draft_Snap_Endpoint.md index aa2d3141b9..4b2d9e8d02 100644 --- a/wiki/translations/ru/Draft_Snap_Endpoint.md +++ b/wiki/translations/ru/Draft_Snap_Endpoint.md @@ -1,3 +1,4 @@ +# Draft Snap Endpoint/ru --- - GuiCommand:/ru Name:Draft Endpoint @@ -36,8 +37,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Endpoint/ru diff --git a/wiki/translations/ru/Draft_Snap_Extension.md b/wiki/translations/ru/Draft_Snap_Extension.md index 7588ced04e..1c8f5cb9c9 100644 --- a/wiki/translations/ru/Draft_Snap_Extension.md +++ b/wiki/translations/ru/Draft_Snap_Extension.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap Extension/ru + @@ -61,8 +63,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Extension/ru diff --git a/wiki/translations/ru/Draft_Snap_Grid.md b/wiki/translations/ru/Draft_Snap_Grid.md index e9282e1129..6f7814288f 100644 --- a/wiki/translations/ru/Draft_Snap_Grid.md +++ b/wiki/translations/ru/Draft_Snap_Grid.md @@ -7,6 +7,8 @@ SeeAlso:[[Draft ToggleGrid/ru]], [[Draft Snap/ru]] --- +# Draft Snap Grid/ru + @@ -50,5 +52,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Grid/ru diff --git a/wiki/translations/ru/Draft_Snap_Intersection.md b/wiki/translations/ru/Draft_Snap_Intersection.md index 2c89794566..20fe3dd14f 100644 --- a/wiki/translations/ru/Draft_Snap_Intersection.md +++ b/wiki/translations/ru/Draft_Snap_Intersection.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Draft Snap Intersection/ru + @@ -43,8 +45,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Intersection/ru diff --git a/wiki/translations/ru/Draft_Snap_Lock.md b/wiki/translations/ru/Draft_Snap_Lock.md index d41be4c42d..91ccb9a919 100644 --- a/wiki/translations/ru/Draft_Snap_Lock.md +++ b/wiki/translations/ru/Draft_Snap_Lock.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/ru.md), [Arch](Arch_Workbench/ru.md) --- +# Draft Snap Lock/ru + @@ -28,8 +30,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). - Press the **** button in the [Draft snap widget](Draft_snap_widget.md) and in the menu select the ** Snap Lock** option. - Use the \"in-command\" shortcut: **S**. This shortcut can only be used if a command is active and does not work for all commands. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Lock/ru diff --git a/wiki/translations/ru/Draft_Snap_Midpoint.md b/wiki/translations/ru/Draft_Snap_Midpoint.md index 76d45483e8..a32077da95 100644 --- a/wiki/translations/ru/Draft_Snap_Midpoint.md +++ b/wiki/translations/ru/Draft_Snap_Midpoint.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap Midpoint/ru + @@ -47,8 +49,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Midpoint/ru diff --git a/wiki/translations/ru/Draft_Snap_Near.md b/wiki/translations/ru/Draft_Snap_Near.md index 84977c5dc0..b1121722de 100644 --- a/wiki/translations/ru/Draft_Snap_Near.md +++ b/wiki/translations/ru/Draft_Snap_Near.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap Near/ru + @@ -41,8 +43,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Near/ru diff --git a/wiki/translations/ru/Draft_Snap_Ortho.md b/wiki/translations/ru/Draft_Snap_Ortho.md index 6e763ef37b..3519556937 100644 --- a/wiki/translations/ru/Draft_Snap_Ortho.md +++ b/wiki/translations/ru/Draft_Snap_Ortho.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap Ortho/ru + @@ -36,8 +38,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Ortho/ru diff --git a/wiki/translations/ru/Draft_Snap_Parallel.md b/wiki/translations/ru/Draft_Snap_Parallel.md index fcd7a12175..a358e9daa1 100644 --- a/wiki/translations/ru/Draft_Snap_Parallel.md +++ b/wiki/translations/ru/Draft_Snap_Parallel.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap Parallel/ru + @@ -42,8 +44,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Parallel/ru diff --git a/wiki/translations/ru/Draft_Snap_Perpendicular.md b/wiki/translations/ru/Draft_Snap_Perpendicular.md index 3233dc4fed..ce9e29e2e6 100644 --- a/wiki/translations/ru/Draft_Snap_Perpendicular.md +++ b/wiki/translations/ru/Draft_Snap_Perpendicular.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap Perpendicular/ru + @@ -45,8 +47,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Perpendicular/ru diff --git a/wiki/translations/ru/Draft_Snap_Special.md b/wiki/translations/ru/Draft_Snap_Special.md index 8cd18c6e46..920007fe16 100644 --- a/wiki/translations/ru/Draft_Snap_Special.md +++ b/wiki/translations/ru/Draft_Snap_Special.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap Special/ru + @@ -43,8 +45,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Special/ru diff --git a/wiki/translations/ru/Draft_Snap_WorkingPlane.md b/wiki/translations/ru/Draft_Snap_WorkingPlane.md index 7487a6dc63..7d7faf12f1 100644 --- a/wiki/translations/ru/Draft_Snap_WorkingPlane.md +++ b/wiki/translations/ru/Draft_Snap_WorkingPlane.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap WorkingPlane/ru + @@ -40,8 +42,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap WorkingPlane/ru diff --git a/wiki/translations/ru/Draft_Split.md b/wiki/translations/ru/Draft_Split.md index ca4bc27f9c..c00bf13978 100644 --- a/wiki/translations/ru/Draft_Split.md +++ b/wiki/translations/ru/Draft_Split.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Join](Draft_Join/ru.md) --- +# Draft Split/ru + @@ -82,5 +84,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Split/ru diff --git a/wiki/translations/ru/Draft_Stretch.md b/wiki/translations/ru/Draft_Stretch.md index 553cb3e7a7..726daf7a69 100644 --- a/wiki/translations/ru/Draft_Stretch.md +++ b/wiki/translations/ru/Draft_Stretch.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Draft Stretch/ru + ## Описание The **Draft Stretch** command stretches objects by moving selected points. @@ -64,5 +66,5 @@ There is no Python method to stretch objects. To emulate the results of the Draf - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Stretch/ru diff --git a/wiki/translations/ru/Draft_SubelementHighlight.md b/wiki/translations/ru/Draft_SubelementHighlight.md index 2bc1e31e53..01552ef145 100644 --- a/wiki/translations/ru/Draft_SubelementHighlight.md +++ b/wiki/translations/ru/Draft_SubelementHighlight.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Edit](Draft_Edit/ru.md) --- +# Draft SubelementHighlight/ru + @@ -47,5 +49,5 @@ The * - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SubelementHighlight/ru diff --git a/wiki/translations/ru/Draft_Text.md b/wiki/translations/ru/Draft_Text.md index f743f1b8e9..c1a40e19ce 100644 --- a/wiki/translations/ru/Draft_Text.md +++ b/wiki/translations/ru/Draft_Text.md @@ -9,6 +9,8 @@ SeeAlso:[Метка](Draft_Label/ru.md), [Фигура из текста](Draft_ShapeString/ru.md) --- +# Draft Text/ru + ## Описание @@ -193,8 +195,5 @@ text3.ViewObject.FontSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Text/ru diff --git a/wiki/translations/ru/Draft_ToggleConstructionMode.md b/wiki/translations/ru/Draft_ToggleConstructionMode.md index e244e87c7d..5863f622be 100644 --- a/wiki/translations/ru/Draft_ToggleConstructionMode.md +++ b/wiki/translations/ru/Draft_ToggleConstructionMode.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/ru.md), [Arch](Arch_Workbench/ru.md) --- +# Draft ToggleConstructionMode/ru + @@ -37,8 +39,5 @@ In FreeCAD version 0.19 this command and the [Draft AddConstruction](Draft_AddCo - To change the label ((v0.20) ) of the construction group: **Edit → Preferences... → Draft → General settings → Construction Geometry → Construction group name**. - To change the color that is used: **Edit → Preferences... → Draft → General settings → Construction Geometry → Construction geometry color**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleConstructionMode/ru diff --git a/wiki/translations/ru/Draft_ToggleContinueMode.md b/wiki/translations/ru/Draft_ToggleContinueMode.md index 962e5a6d74..03f4bd6726 100644 --- a/wiki/translations/ru/Draft_ToggleContinueMode.md +++ b/wiki/translations/ru/Draft_ToggleContinueMode.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/ru.md), [Arch](Arch_Workbench/ru.md) --- +# Draft ToggleContinueMode/ru + @@ -21,8 +23,5 @@ The ** 4. Create your geometry. 5. Press **Esc** or the **Close** button to finish the command and switch off continue mode. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleContinueMode/ru diff --git a/wiki/translations/ru/Draft_ToggleDisplayMode.md b/wiki/translations/ru/Draft_ToggleDisplayMode.md index 58453f780e..5708666dfc 100644 --- a/wiki/translations/ru/Draft_ToggleDisplayMode.md +++ b/wiki/translations/ru/Draft_ToggleDisplayMode.md @@ -7,6 +7,8 @@ Shortcut:**Shift**+**Space** --- +# Draft ToggleDisplayMode/ru + @@ -26,8 +28,5 @@ The **D - Select the **Utilities → Toggle normal/wireframe display** option from the [Tree view](Tree_view.md) or [3D view](3D_view.md) context menu. - Use the keyboard shortcut: **Shift**+**Space**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleDisplayMode/ru diff --git a/wiki/translations/ru/Draft_ToggleGrid.md b/wiki/translations/ru/Draft_ToggleGrid.md index 380d84fb22..e93372be89 100644 --- a/wiki/translations/ru/Draft_ToggleGrid.md +++ b/wiki/translations/ru/Draft_ToggleGrid.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Snap](Draft_Snap/ru.md), [Draft ToggleSnap](Draft_Snap_Lock/ru.md) --- +# Draft ToggleGrid/ru + @@ -49,5 +51,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleGrid/ru diff --git a/wiki/translations/ru/Draft_Tray.md b/wiki/translations/ru/Draft_Tray.md index cb2705705a..86cb4893d6 100644 --- a/wiki/translations/ru/Draft_Tray.md +++ b/wiki/translations/ru/Draft_Tray.md @@ -1,10 +1,4 @@ # Draft Tray/ru - - - - - - {{TOCright}} ## Description @@ -23,8 +17,5 @@ The **Draft Tray** allows selecting the working plane, defining style settings, - ![](images/Draft_tray_button_layer.png ) [AutoGroup](Draft_AutoGroup.md): changes the active [Draft Layer](Draft_Layer.md) or, optionally, the active [Std Group](Std_Group.md) or group-like [Arch](Arch_Workbench.md) object. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Tray/ru diff --git a/wiki/translations/ru/Draft_Trimex.md b/wiki/translations/ru/Draft_Trimex.md index 05974ad6b9..41a307e846 100644 --- a/wiki/translations/ru/Draft_Trimex.md +++ b/wiki/translations/ru/Draft_Trimex.md @@ -8,6 +8,8 @@ SeeAlso:[Part Extrude](Part_Extrude/ru.md) --- +# Draft Trimex/ru + @@ -121,8 +123,5 @@ solid = Draft.extrude(rectangle, vector, solid=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Trimex/ru diff --git a/wiki/translations/ru/Draft_UndoLine.md b/wiki/translations/ru/Draft_UndoLine.md index 98a8f28afc..11abbbb88d 100644 --- a/wiki/translations/ru/Draft_UndoLine.md +++ b/wiki/translations/ru/Draft_UndoLine.md @@ -1,2 +1,5 @@ # Draft UndoLine/ru 1. REDIRECT [Draft\_Wire/ru](Draft_Wire/ru.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft UndoLine/ru diff --git a/wiki/translations/ru/Draft_Upgrade.md b/wiki/translations/ru/Draft_Upgrade.md index 2b1edb6d48..cef39838c8 100644 --- a/wiki/translations/ru/Draft_Upgrade.md +++ b/wiki/translations/ru/Draft_Upgrade.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Downgrade](Draft_Downgrade/ru.md), [Part Fuse](Part_Fuse/ru.md) --- +# Draft Upgrade/ru + @@ -103,8 +105,5 @@ add_list5, delete_list5 = Draft.upgrade(face, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Upgrade/ru diff --git a/wiki/translations/ru/Draft_Wire.md b/wiki/translations/ru/Draft_Wire.md index f28ea6a722..5cf494037c 100644 --- a/wiki/translations/ru/Draft_Wire.md +++ b/wiki/translations/ru/Draft_Wire.md @@ -8,6 +8,8 @@ SeeAlso:[Линия](Draft_Line/ru.md), [B-сплайн](Draft_BSpline/ru.md) --- +# Draft Wire/ru + @@ -184,8 +186,5 @@ wire3 = Draft.make_wire([1.3*p3, p1, -1.7*p2], closed=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Wire/ru diff --git a/wiki/translations/ru/Draft_WireToBSpline.md b/wiki/translations/ru/Draft_WireToBSpline.md index d81462d920..fe0b61b9da 100644 --- a/wiki/translations/ru/Draft_WireToBSpline.md +++ b/wiki/translations/ru/Draft_WireToBSpline.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/ru.md), [Arch](Arch_Workbench/ru.md) --- +# Draft WireToBSpline/ru + @@ -60,8 +62,5 @@ wire_from_spline = Draft.make_wire(points2) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WireToBSpline/ru diff --git a/wiki/translations/ru/Draft_Workbench.md b/wiki/translations/ru/Draft_Workbench.md index b60767049c..5f5fddc011 100644 --- a/wiki/translations/ru/Draft_Workbench.md +++ b/wiki/translations/ru/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/ru - - - - - -Логотип верстака Draft на котором изображен кульман +# Логотип верстака Draft на котором изображен кульман Draft Workbench/ru {{TOCright}} @@ -464,3 +458,6 @@ doc = dto.create_test_file() [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/ru diff --git a/wiki/translations/ru/Draft_WorkingPlaneProxy.md b/wiki/translations/ru/Draft_WorkingPlaneProxy.md index 5a87cb88ec..d3cc6a28ad 100644 --- a/wiki/translations/ru/Draft_WorkingPlaneProxy.md +++ b/wiki/translations/ru/Draft_WorkingPlaneProxy.md @@ -6,6 +6,8 @@ SeeAlso:[Draft SelectPlane](Draft_SelectPlane.md) --- +# Draft WorkingPlaneProxy/ru + ## Описание The **Draft WorkingPlaneProxy** command creates a working plane proxy to save the current [Draft working plane](Draft_SelectPlane.md). A working plane proxy can be used to quickly restore a working plane. The camera position and visibility of the objects in the [3D view](3D_view.md) are also saved in the working plane proxy and can, [optionally](#Properties.md), be restored as well. @@ -125,5 +127,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WorkingPlaneProxy/ru diff --git a/wiki/translations/ru/Draft_tutorial.md b/wiki/translations/ru/Draft_tutorial.md index 8f0fd3b1e8..d736e7ce3e 100644 --- a/wiki/translations/ru/Draft_tutorial.md +++ b/wiki/translations/ru/Draft_tutorial.md @@ -1,7 +1,4 @@ # Draft tutorial/ru - - - {{TutorialInfo/ru |Topic= Черчение |Level= Начинающий @@ -254,4 +251,7 @@ The [Draft Workbench](Draft_Workbench.md) in many ways is similar to the [Sketch {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft tutorial/ru diff --git a/wiki/translations/ru/Drawing_Annotation.md b/wiki/translations/ru/Drawing_Annotation.md index ff2e7dc475..13cbcd70b9 100644 --- a/wiki/translations/ru/Drawing_Annotation.md +++ b/wiki/translations/ru/Drawing_Annotation.md @@ -7,6 +7,8 @@ Shortcut: --- +# Drawing Annotation/ru + @@ -43,4 +45,7 @@ {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Annotation/ru diff --git a/wiki/translations/ru/Drawing_Clip.md b/wiki/translations/ru/Drawing_Clip.md index d7fde0549d..5ccd35f146 100644 --- a/wiki/translations/ru/Drawing_Clip.md +++ b/wiki/translations/ru/Drawing_Clip.md @@ -7,6 +7,8 @@ Shortcut:none --- +# Drawing Clip/ru + ## Description This command allows you to place a clipping rectangle on a [Drawing page](Drawing_Landscape_A3.md). [Drawing View](Drawing_View.md) objects can then be added to that clipping rectangle, and their display will be truncated by the borders of the rectangle. @@ -33,4 +35,7 @@ This command allows you to place a clipping rectangle on a [Drawing page](Drawin {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Clip/ru diff --git a/wiki/translations/ru/Drawing_DraftView.md b/wiki/translations/ru/Drawing_DraftView.md index 8beedcb65b..89f054e220 100644 --- a/wiki/translations/ru/Drawing_DraftView.md +++ b/wiki/translations/ru/Drawing_DraftView.md @@ -1,2 +1,5 @@ # Drawing DraftView/ru 1. REDIRECT [Draft\_Drawing/ru](Draft_Drawing/ru.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing DraftView/ru diff --git a/wiki/translations/ru/Drawing_Landscape_A3.md b/wiki/translations/ru/Drawing_Landscape_A3.md index 4913128f3a..08b55bac6d 100644 --- a/wiki/translations/ru/Drawing_Landscape_A3.md +++ b/wiki/translations/ru/Drawing_Landscape_A3.md @@ -7,6 +7,8 @@ Shortcut:none --- +# Drawing Landscape A3/ru + This tool creates a new drawing sheet from already installed templates. Currently, even though the menu and the toolbar allow for A0 to A4 landscape formats, only an A3 Landscape template is available. A **Page** object will be added to the Project tree, taking the form of a folder icon. Views that will be created afterward will be placed underneath this folder. @@ -27,4 +29,7 @@ If the page does not display, click on the [Drawing](Drawing_Workbench.md) > Drawing Landscape A3/ru diff --git a/wiki/translations/ru/Drawing_Module.md b/wiki/translations/ru/Drawing_Module.md index ef876a9544..5f5be4d84e 100644 --- a/wiki/translations/ru/Drawing_Module.md +++ b/wiki/translations/ru/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/ru 1. REDIRECT [Drawing\_Workbench/ru](Drawing_Workbench/ru.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/ru diff --git a/wiki/translations/ru/Drawing_Open_SVG.md b/wiki/translations/ru/Drawing_Open_SVG.md index c42b6f669f..1db9847a1d 100644 --- a/wiki/translations/ru/Drawing_Open_SVG.md +++ b/wiki/translations/ru/Drawing_Open_SVG.md @@ -8,6 +8,8 @@ SeeAlso:[Экспортировать страницу](Drawing_Save/ru.md) --- +# Drawing Open SVG/ru + @@ -22,4 +24,7 @@ {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Open SVG/ru diff --git a/wiki/translations/ru/Drawing_Openbrowser.md b/wiki/translations/ru/Drawing_Openbrowser.md index aba28f3b7d..6f1ba371a5 100644 --- a/wiki/translations/ru/Drawing_Openbrowser.md +++ b/wiki/translations/ru/Drawing_Openbrowser.md @@ -7,6 +7,8 @@ Shortcut: --- +# Drawing Openbrowser/ru + ## Description This command allows you to display a selected [Drawing page](Drawing_Landscape_A3.md) using FreeCAD\'s internal web browser. The normal Drawing page viewer of FreeCAD is based on [Qt\'s built-in SVG rendering module](http://qt-project.org/doc/qt-5.0/qtsvg/svgrendering.html), which only supports a tiny subset of the full SVG specification. As a result, some more advanced SVG features, such as pattern fills or multiline texts are not supported by this viewer. The FreeCAD internal web browser, however, is built on [webkit](http://en.wikipedia.org/wiki/WebKit), which is one of the best SVG renderers available, and will correctly render your page with all its features. @@ -28,4 +30,7 @@ This command allows you to display a selected [Drawing page](Drawing_Landscape_A {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Openbrowser/ru diff --git a/wiki/translations/ru/Drawing_Orthoviews.md b/wiki/translations/ru/Drawing_Orthoviews.md index f10f9bf1e5..45171d5b6b 100644 --- a/wiki/translations/ru/Drawing_Orthoviews.md +++ b/wiki/translations/ru/Drawing_Orthoviews.md @@ -1,3 +1,4 @@ +# Drawing Orthoviews/ru --- - GuiCommand: Name:Drawing Orthoviews Workbenches:[MenuLocation:Drawing → Insert orthographic views Shortcut:none SeeAlso:[[Drawing Landscape A3|Drawing Landscape A3](Drawing_Workbench___Drawing]],_Complete.md)--- @@ -56,4 +57,7 @@ To be added {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Orthoviews/ru diff --git a/wiki/translations/ru/Drawing_ProjectShape.md b/wiki/translations/ru/Drawing_ProjectShape.md index 610cd80861..069a6d3a6f 100644 --- a/wiki/translations/ru/Drawing_ProjectShape.md +++ b/wiki/translations/ru/Drawing_ProjectShape.md @@ -7,6 +7,8 @@ MenuLocation:Чертёж → Проекция фигуры --- +# Drawing ProjectShape/ru + @@ -109,4 +111,7 @@ This tool creates a projection of the selected object (Source) in the 3D view. {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing ProjectShape/ru diff --git a/wiki/translations/ru/Drawing_Save.md b/wiki/translations/ru/Drawing_Save.md index 7817aa7e01..bbb46ebea1 100644 --- a/wiki/translations/ru/Drawing_Save.md +++ b/wiki/translations/ru/Drawing_Save.md @@ -8,6 +8,8 @@ SeeAlso:[Открыть SVG](Drawing_Open_SVG/ru.md) --- +# Drawing Save/ru + Этот инструмент сохраняет текущий чертёжный лист в файле SVG (scalable vector graphics). Это файл может редактироваться в таких редакторах векторной графики, как [Inkscape](http://www.inkscape.org). @@ -24,4 +26,7 @@ {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Save/ru diff --git a/wiki/translations/ru/Drawing_SpreadsheetView.md b/wiki/translations/ru/Drawing_SpreadsheetView.md index 4a0a48c0e8..a53f835dbc 100644 --- a/wiki/translations/ru/Drawing_SpreadsheetView.md +++ b/wiki/translations/ru/Drawing_SpreadsheetView.md @@ -6,6 +6,8 @@ MenuLocation:Чертёж → Spreadsheet View --- +# Drawing SpreadsheetView/ru + @@ -52,4 +54,7 @@ {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing SpreadsheetView/ru diff --git a/wiki/translations/ru/Drawing_Symbol.md b/wiki/translations/ru/Drawing_Symbol.md index 62518e0e30..feee9b60eb 100644 --- a/wiki/translations/ru/Drawing_Symbol.md +++ b/wiki/translations/ru/Drawing_Symbol.md @@ -7,6 +7,8 @@ Shortcut: --- +# Drawing Symbol/ru + ## Описание Эта команда позволяет добавить содержимое файла SVG выбранный [чертёжный лист](Drawing_Landscape_A3.md). Это содержимое может перемещаться и масштабироваться на странице. Содержимое изображения SVG копируется внутрь документа FreeCAD, становясь независимым от оригинального файла, и изображается так же на других компьютерах, где нет оригинального файла SVG. @@ -34,4 +36,7 @@ {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Symbol/ru diff --git a/wiki/translations/ru/Drawing_Template_HowTo.md b/wiki/translations/ru/Drawing_Template_HowTo.md index 4f65b9aceb..06f617b60b 100644 --- a/wiki/translations/ru/Drawing_Template_HowTo.md +++ b/wiki/translations/ru/Drawing_Template_HowTo.md @@ -1,7 +1,4 @@ # Drawing Template HowTo/ru - - - **The [Drawing Workbench](Drawing_Workbench.md) became obsolete in v0.17. Consider using the [TechDraw Workbench](TechDraw_Workbench.md) instead.** @@ -266,4 +263,7 @@ viewBox="0 0 279 216" {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Template HowTo/ru diff --git a/wiki/translations/ru/Drawing_View.md b/wiki/translations/ru/Drawing_View.md index 042e377211..d5e736944b 100644 --- a/wiki/translations/ru/Drawing_View.md +++ b/wiki/translations/ru/Drawing_View.md @@ -8,6 +8,8 @@ SeeAlso:[A3 Ландшафтный](Drawing_Landscape_A3/ru.md) --- +# Drawing View/ru + @@ -59,4 +61,7 @@ If you are looking for persective-orthographic toggling in 3D view check [Std Pe {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing View/ru diff --git a/wiki/translations/ru/Drawing_Workbench.md b/wiki/translations/ru/Drawing_Workbench.md index 9d07467b55..58f972ca0c 100644 --- a/wiki/translations/ru/Drawing_Workbench.md +++ b/wiki/translations/ru/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/ru - - - **Разработка [верстак TechDraw](Drawing_Workbench/ru]],_начиная_с_FreeCAD_0.16, остановлена, и в версии 0.17 был предложен новый [[TechDraw Workbench/ru.md), предназначенный для его замены. Оба верстака пока есть в v0.17, но в будущих выпусках верстак Drawing может быть удалён.** Drawing workbench icon @@ -84,3 +81,6 @@ FreeCAD поставляется вместе с набором стандарт }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/ru diff --git a/wiki/translations/ru/Drawing_templates.md b/wiki/translations/ru/Drawing_templates.md index c90f8ba560..08b039d229 100644 --- a/wiki/translations/ru/Drawing_templates.md +++ b/wiki/translations/ru/Drawing_templates.md @@ -1,7 +1,4 @@ # Drawing templates/ru - - - **The [Drawing Workbench](Drawing_Workbench.md) became obsolete in v0.17. Consider using the [TechDraw Workbench](TechDraw_Workbench.md) instead.** @@ -254,3 +251,6 @@ The two lines that FreeCAD will be looking for are \"\$blocks\" and \"\$entities }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing templates/ru diff --git a/wiki/translations/ru/Drawing_tutorial.md b/wiki/translations/ru/Drawing_tutorial.md index c92bff8d59..065ac46fb0 100644 --- a/wiki/translations/ru/Drawing_tutorial.md +++ b/wiki/translations/ru/Drawing_tutorial.md @@ -1,5 +1,5 @@ # Drawing tutorial/ru - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** +**Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** {{TutorialInfo/ru @@ -113,4 +113,7 @@ We are now finished with the basic workflow for the [Drawing Workbench](Drawing_ {{Tutorials navi -}} {{Drawing Tools navi}} +}} {{Drawing Tools navi}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing tutorial/ru diff --git a/wiki/translations/ru/Dxf_Importer_Install.md b/wiki/translations/ru/Dxf_Importer_Install.md index c3da247dd4..6d3a56966e 100644 --- a/wiki/translations/ru/Dxf_Importer_Install.md +++ b/wiki/translations/ru/Dxf_Importer_Install.md @@ -1,7 +1,4 @@ # Dxf Importer Install/ru - - -
@@ -185,3 +182,6 @@ Using Teigha. Teigha is a full program and you can use it without FreeCAD ### Links Video tutorial [FreeCAD Tutorial 24 - DXF/DWG Import](https://www.youtube.com/watch?v=wHxTWuDhc3M) + +--- +[documentation index](../README.md) > Dxf Importer Install/ru diff --git a/wiki/translations/ru/Embedding_FreeCAD.md b/wiki/translations/ru/Embedding_FreeCAD.md index f3c88f0462..7b09834ff8 100644 --- a/wiki/translations/ru/Embedding_FreeCAD.md +++ b/wiki/translations/ru/Embedding_FreeCAD.md @@ -1,7 +1,4 @@ # Embedding FreeCAD/ru - - - {{TOCright}} ## Introduction @@ -161,3 +158,6 @@ Since the FreeCAD Python module is compiled from C++ (rather than being a pure P }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCAD/ru diff --git a/wiki/translations/ru/Embedding_FreeCADGui.md b/wiki/translations/ru/Embedding_FreeCADGui.md index e01e3e61fc..b2b8307994 100644 --- a/wiki/translations/ru/Embedding_FreeCADGui.md +++ b/wiki/translations/ru/Embedding_FreeCADGui.md @@ -1,6 +1,4 @@ # Embedding FreeCADGui/ru - - ## Introduction It is possible to [import the FreeCAD module](Embedding_FreeCAD.md) into a [Python](Python.md) application, and use all its tools from the host application, but the graphical user interface (GUI) can be imported as a Python module as well. Normally you can only import the complete interface as a whole, not pieces of it; this is because the FreeCAD interface system is not only made of independent widgets and toolbars, but is a complex construction where several invisible components (such as the selection system, etc) are needed for the main [3D view](3D_view.md) to be able to function. @@ -488,3 +486,6 @@ In the source code there are examples of embedding FreeCAD with various graphica }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCADGui/ru diff --git a/wiki/translations/ru/Engine_Block_Tutorial.md b/wiki/translations/ru/Engine_Block_Tutorial.md index 572e46c4a7..44d70fe325 100644 --- a/wiki/translations/ru/Engine_Block_Tutorial.md +++ b/wiki/translations/ru/Engine_Block_Tutorial.md @@ -1,5 +1,5 @@ # Engine Block Tutorial/ru - } +}
@@ -317,6 +317,5 @@ Now that we have 3D objects for the bore holes and the outer shape, we can use a Your final object should look like the picture on the right. - - - +--- +[documentation index](../README.md) > Engine Block Tutorial/ru diff --git a/wiki/translations/ru/Export_to_STL_or_OBJ.md b/wiki/translations/ru/Export_to_STL_or_OBJ.md index 728eaa4802..671e230c0e 100644 --- a/wiki/translations/ru/Export_to_STL_or_OBJ.md +++ b/wiki/translations/ru/Export_to_STL_or_OBJ.md @@ -1,7 +1,4 @@ # Export to STL or OBJ/ru - - -
@@ -68,3 +65,6 @@ Method 2 is to be preferred. Among the reasons: [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Export to STL or OBJ/ru diff --git a/wiki/translations/ru/Exposing_C++_to_Python.md b/wiki/translations/ru/Exposing_C++_to_Python.md index f9ac4d0197..cba5c774a7 100644 --- a/wiki/translations/ru/Exposing_C++_to_Python.md +++ b/wiki/translations/ru/Exposing_C++_to_Python.md @@ -1,2 +1,5 @@ # Exposing C++ to Python/ru 1. REDIRECT [Exposing C++ to Python](Exposing_C++_to_Python.md) + +--- +[documentation index](../README.md) > Exposing C++ to Python/ru diff --git a/wiki/translations/ru/Expressions.md b/wiki/translations/ru/Expressions.md index ed7c049dbb..223079fe8c 100644 --- a/wiki/translations/ru/Expressions.md +++ b/wiki/translations/ru/Expressions.md @@ -1,5 +1,5 @@ # Expressions/ru - {{TOCright}} +{{TOCright}} ## Обзор @@ -558,3 +558,6 @@ Of course, it\'s up to you to load the corresponding documents later when you wa }} [Category:Spreadsheet](Category:Spreadsheet.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Category:Spreadsheet.md) > Expressions/ru diff --git a/wiki/translations/ru/Extend_FEM_Module.md b/wiki/translations/ru/Extend_FEM_Module.md index dbb6f7fc51..3520159b83 100644 --- a/wiki/translations/ru/Extend_FEM_Module.md +++ b/wiki/translations/ru/Extend_FEM_Module.md @@ -1,7 +1,4 @@ # Extend FEM Module/ru - - -
@@ -140,3 +137,6 @@ Constraints define boundary conditions for the problem that shall be solved. In Adding new constraints is quite straight forward. For newcomers there is a tutorial: [Add FEM constraint tutorial](Add_FEM_constraint_tutorial.md). [Category:FEM](Category:FEM.md) + +--- +[documentation index](../README.md) > [FEM](Category:FEM.md) > Extend FEM Module/ru diff --git a/wiki/translations/ru/External_Workbenches.md b/wiki/translations/ru/External_Workbenches.md index 92f7dfcc5d..0648d9dd02 100644 --- a/wiki/translations/ru/External_Workbenches.md +++ b/wiki/translations/ru/External_Workbenches.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > External Workbenches/ru diff --git a/wiki/translations/ru/External_workbench_list.md b/wiki/translations/ru/External_workbench_list.md index dd525b8d88..34d5de276c 100644 --- a/wiki/translations/ru/External_workbench_list.md +++ b/wiki/translations/ru/External_workbench_list.md @@ -1,2 +1,5 @@ # External workbench list/ru 1. REDIRECT [External\_workbenches/ru](External_workbenches/ru.md) + +--- +[documentation index](../README.md) > External workbench list/ru diff --git a/wiki/translations/ru/External_workbenches.md b/wiki/translations/ru/External_workbenches.md index 4919cf6384..61a55aa00d 100644 --- a/wiki/translations/ru/External_workbenches.md +++ b/wiki/translations/ru/External_workbenches.md @@ -1,10 +1,4 @@ # External workbenches/ru - - - - - - {{TOCright}} ## Введение @@ -142,3 +136,6 @@ [Category:Addons](Category:Addons.md) [\*](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > External workbenches/ru diff --git a/wiki/translations/ru/Extra_python_modules.md b/wiki/translations/ru/Extra_python_modules.md index 118e4d5bcf..3158c47249 100644 --- a/wiki/translations/ru/Extra_python_modules.md +++ b/wiki/translations/ru/Extra_python_modules.md @@ -1,7 +1,4 @@ # Extra python modules/ru - - -
@@ -741,3 +738,6 @@ utils = LazyLoader('PathScripts', globals(), 'PathScripts.PathUtils') [Category:Python Code](Category:Python_Code.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > Extra python modules/ru diff --git a/wiki/translations/ru/FAQ.md b/wiki/translations/ru/FAQ.md index a969f3396d..67325ffea6 100644 --- a/wiki/translations/ru/FAQ.md +++ b/wiki/translations/ru/FAQ.md @@ -1,2 +1,5 @@ # FAQ/ru 1. REDIRECT [Frequently\_asked\_questions/ru](Frequently_asked_questions/ru.md) + +--- +[documentation index](../README.md) > FAQ/ru diff --git a/wiki/translations/ru/FEM_Analysis.md b/wiki/translations/ru/FEM_Analysis.md index 1a3c2dd44e..10e4539002 100644 --- a/wiki/translations/ru/FEM_Analysis.md +++ b/wiki/translations/ru/FEM_Analysis.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM Analysis/ru +
@@ -86,4 +88,7 @@ App.ActiveDocument.MechanicalAnalysis.Member = member {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Analysis/ru diff --git a/wiki/translations/ru/FEM_Beginner_tutorial.md b/wiki/translations/ru/FEM_Beginner_tutorial.md index 706617e3ac..640ee68613 100644 --- a/wiki/translations/ru/FEM_Beginner_tutorial.md +++ b/wiki/translations/ru/FEM_Beginner_tutorial.md @@ -1,5 +1,5 @@ # FEM Beginner tutorial/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic= FEM Beginner tutorial |Level= Beginner |Time= @@ -40,7 +40,5 @@ ToDo ToDo - - - - +--- +[documentation index](../README.md) > FEM Beginner tutorial/ru diff --git a/wiki/translations/ru/FEM_CalculiX.md b/wiki/translations/ru/FEM_CalculiX.md index a3f79a6c9a..01dd292f24 100644 --- a/wiki/translations/ru/FEM_CalculiX.md +++ b/wiki/translations/ru/FEM_CalculiX.md @@ -1,5 +1,5 @@ # FEM CalculiX/ru - {{TOCright}} +{{TOCright}} ## Introduction @@ -72,3 +72,6 @@ Reaction forces can be found in ccx\_dat\_file which contains reaction force com }} [Category:Poweruser\_Documentation](Category:Poweruser_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Poweruser_Documentation](Category:Poweruser_Documentation.md) > FEM CalculiX/ru diff --git a/wiki/translations/ru/FEM_CalculiX_Cantilever_3D.md b/wiki/translations/ru/FEM_CalculiX_Cantilever_3D.md index defc24c769..8a44fc7fc2 100644 --- a/wiki/translations/ru/FEM_CalculiX_Cantilever_3D.md +++ b/wiki/translations/ru/FEM_CalculiX_Cantilever_3D.md @@ -1,7 +1,4 @@ # FEM CalculiX Cantilever 3D/ru - - -
@@ -235,4 +232,7 @@ {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM CalculiX Cantilever 3D/ru diff --git a/wiki/translations/ru/FEM_ClippingPlaneAdd.md b/wiki/translations/ru/FEM_ClippingPlaneAdd.md index eb8b1582b6..4a1d86835d 100644 --- a/wiki/translations/ru/FEM_ClippingPlaneAdd.md +++ b/wiki/translations/ru/FEM_ClippingPlaneAdd.md @@ -7,6 +7,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ClippingPlaneAdd/ru +
@@ -28,4 +30,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ClippingPlaneAdd/ru diff --git a/wiki/translations/ru/FEM_ClippingPlaneRemoveAll.md b/wiki/translations/ru/FEM_ClippingPlaneRemoveAll.md index bbe34f92f8..f82ede783e 100644 --- a/wiki/translations/ru/FEM_ClippingPlaneRemoveAll.md +++ b/wiki/translations/ru/FEM_ClippingPlaneRemoveAll.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ClippingPlaneRemoveAll/ru +
@@ -30,4 +32,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ClippingPlaneRemoveAll/ru diff --git a/wiki/translations/ru/FEM_Concrete.md b/wiki/translations/ru/FEM_Concrete.md index 81b2647778..d48184be7a 100644 --- a/wiki/translations/ru/FEM_Concrete.md +++ b/wiki/translations/ru/FEM_Concrete.md @@ -1,5 +1,5 @@ # FEM Concrete/ru - На этой странице собрана интересная информация по теме моделирования бетонных конструкций: +На этой странице собрана интересная информация по теме моделирования бетонных конструкций: - [Как использовать конвейерную постобработку (May 2018)](https://forum.freecadweb.org/viewtopic.php?f=18&t=28635) - [Построение коэффициента армирования бетона (May 2018)](https://forum.freecadweb.org/viewtopic.php?f=18&t=28821) @@ -15,4 +15,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Concrete/ru diff --git a/wiki/translations/ru/FEM_ConstraintBearing.md b/wiki/translations/ru/FEM_ConstraintBearing.md index 05a0833479..12c044df58 100644 --- a/wiki/translations/ru/FEM_ConstraintBearing.md +++ b/wiki/translations/ru/FEM_ConstraintBearing.md @@ -1,3 +1,4 @@ +# FEM ConstraintBearing/ru --- - GuiCommand:/ru Name:FEM ConstraintBearing Name/ru:FEM ConstraintBearing MenuLocation:FEM → Constraint bearing |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/ru|FEM tutorial](FEM_Workbench/ru___FEM]].md)--- @@ -22,4 +23,7 @@ Not supported by CalculiX Interface! {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintBearing/ru diff --git a/wiki/translations/ru/FEM_ConstraintBodyHeatSource.md b/wiki/translations/ru/FEM_ConstraintBodyHeatSource.md index 9e890d75c0..754ceee4d2 100644 --- a/wiki/translations/ru/FEM_ConstraintBodyHeatSource.md +++ b/wiki/translations/ru/FEM_ConstraintBodyHeatSource.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ConstraintBodyHeatSource/ru +
@@ -41,4 +43,7 @@ Defines an internally generated body heat given in W/kg (not J/m³). {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintBodyHeatSource/ru diff --git a/wiki/translations/ru/FEM_ConstraintContact.md b/wiki/translations/ru/FEM_ConstraintContact.md index 8f766c021f..5d35fed150 100644 --- a/wiki/translations/ru/FEM_ConstraintContact.md +++ b/wiki/translations/ru/FEM_ConstraintContact.md @@ -1,3 +1,4 @@ +# FEM ConstraintContact/ru --- - GuiCommand:/ru Name:FEM ConstraintContact Name/ru:FEM ConstraintContact MenuLocation:FEM → Constraint contact |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/ru|FEM tutorial](FEM_Workbench/ru___FEM]].md)--- @@ -56,4 +57,7 @@ Creates a FEM constraint for contact between 2 surfaces. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintContact/ru diff --git a/wiki/translations/ru/FEM_ConstraintDisplacement.md b/wiki/translations/ru/FEM_ConstraintDisplacement.md index dde9c3b553..f0ae632c6f 100644 --- a/wiki/translations/ru/FEM_ConstraintDisplacement.md +++ b/wiki/translations/ru/FEM_ConstraintDisplacement.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ConstraintDisplacement/ru +
@@ -33,4 +35,7 @@ Creates a FEM constraint for a prescribed displacement of a selected object for {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintDisplacement/ru diff --git a/wiki/translations/ru/FEM_ConstraintElectrostaticPotential.md b/wiki/translations/ru/FEM_ConstraintElectrostaticPotential.md index fb4c748390..cbe476de97 100644 --- a/wiki/translations/ru/FEM_ConstraintElectrostaticPotential.md +++ b/wiki/translations/ru/FEM_ConstraintElectrostaticPotential.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ConstraintElectrostaticPotential/ru +
@@ -30,4 +32,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintElectrostaticPotential/ru diff --git a/wiki/translations/ru/FEM_ConstraintFixed.md b/wiki/translations/ru/FEM_ConstraintFixed.md index d22c94a16e..ea4fa399f9 100644 --- a/wiki/translations/ru/FEM_ConstraintFixed.md +++ b/wiki/translations/ru/FEM_ConstraintFixed.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ConstraintFixed/ru + @@ -34,4 +36,7 @@ You cannot mix object-types within the same constraint. Use one fixed constraint {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintFixed/ru diff --git a/wiki/translations/ru/FEM_ConstraintFlowVelocity.md b/wiki/translations/ru/FEM_ConstraintFlowVelocity.md index 9237dec744..003aa7c7a5 100644 --- a/wiki/translations/ru/FEM_ConstraintFlowVelocity.md +++ b/wiki/translations/ru/FEM_ConstraintFlowVelocity.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ConstraintFlowVelocity/ru + @@ -54,4 +56,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintFlowVelocity/ru diff --git a/wiki/translations/ru/FEM_ConstraintFluidBoundary.md b/wiki/translations/ru/FEM_ConstraintFluidBoundary.md index 39d3f99d84..3d51b7f1e0 100644 --- a/wiki/translations/ru/FEM_ConstraintFluidBoundary.md +++ b/wiki/translations/ru/FEM_ConstraintFluidBoundary.md @@ -8,6 +8,8 @@ SeeAlso:[Учебник МКЭ](FEM_tutorial/ru.md) --- +# FEM ConstraintFluidBoundary/ru + @@ -29,4 +31,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintFluidBoundary/ru diff --git a/wiki/translations/ru/FEM_ConstraintForce.md b/wiki/translations/ru/FEM_ConstraintForce.md index 1f52e061d1..bce8d8eac0 100644 --- a/wiki/translations/ru/FEM_ConstraintForce.md +++ b/wiki/translations/ru/FEM_ConstraintForce.md @@ -1,3 +1,4 @@ +# FEM ConstraintForce/ru --- - GuiCommand:/ru Name:FEM ConstraintForce Name/ru:FEM ConstraintForce MenuLocation:FEM → Constraint force |Workbenches:[Shortcut: SeeAlso:[[FEM_tutorial/ru|FEM tutorial](FEM_Workbench/ru___FEM]].md)--- @@ -54,4 +55,7 @@ This command applies a force of given value \[N\] to selected target geometry. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintForce/ru diff --git a/wiki/translations/ru/FEM_ConstraintGear.md b/wiki/translations/ru/FEM_ConstraintGear.md index 2343726a40..6dcc9af29c 100644 --- a/wiki/translations/ru/FEM_ConstraintGear.md +++ b/wiki/translations/ru/FEM_ConstraintGear.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ConstraintGear/ru + @@ -23,4 +25,7 @@ Not supported by CalculiX Interface! {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintGear/ru diff --git a/wiki/translations/ru/FEM_ConstraintHeatflux.md b/wiki/translations/ru/FEM_ConstraintHeatflux.md index 2f32350e49..c3bb5bebcb 100644 --- a/wiki/translations/ru/FEM_ConstraintHeatflux.md +++ b/wiki/translations/ru/FEM_ConstraintHeatflux.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ConstraintHeatflux/ru + @@ -33,4 +35,7 @@ This constraint specifies film heat transfer of a surface at temperature *T* and {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintHeatflux/ru diff --git a/wiki/translations/ru/FEM_ConstraintInitialFlowVelocity.md b/wiki/translations/ru/FEM_ConstraintInitialFlowVelocity.md index 9026283c15..a8c5bbd6ed 100644 --- a/wiki/translations/ru/FEM_ConstraintInitialFlowVelocity.md +++ b/wiki/translations/ru/FEM_ConstraintInitialFlowVelocity.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ConstraintInitialFlowVelocity/ru + @@ -45,4 +47,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintInitialFlowVelocity/ru diff --git a/wiki/translations/ru/FEM_ConstraintInitialTemperature.md b/wiki/translations/ru/FEM_ConstraintInitialTemperature.md index d432941d7e..19592c7f6c 100644 --- a/wiki/translations/ru/FEM_ConstraintInitialTemperature.md +++ b/wiki/translations/ru/FEM_ConstraintInitialTemperature.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ConstraintInitialTemperature/ru + @@ -36,4 +38,7 @@ The constraint applies the initial temperature to all nodes in the FEA model {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintInitialTemperature/ru diff --git a/wiki/translations/ru/FEM_ConstraintPlaneRotation.md b/wiki/translations/ru/FEM_ConstraintPlaneRotation.md index c238dd3c94..6ddb899672 100644 --- a/wiki/translations/ru/FEM_ConstraintPlaneRotation.md +++ b/wiki/translations/ru/FEM_ConstraintPlaneRotation.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ConstraintPlaneRotation/ru + @@ -59,4 +61,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintPlaneRotation/ru diff --git a/wiki/translations/ru/FEM_ConstraintPressure.md b/wiki/translations/ru/FEM_ConstraintPressure.md index 94ac13a12d..d144f7cc85 100644 --- a/wiki/translations/ru/FEM_ConstraintPressure.md +++ b/wiki/translations/ru/FEM_ConstraintPressure.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Constraint force](FEM_ConstraintForce/ru.md) --- +# FEM ConstraintPressure/ru + @@ -41,4 +43,7 @@ Applies a pressure constraint to a face. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintPressure/ru diff --git a/wiki/translations/ru/FEM_ConstraintPulley.md b/wiki/translations/ru/FEM_ConstraintPulley.md index 686633aded..e371884bd7 100644 --- a/wiki/translations/ru/FEM_ConstraintPulley.md +++ b/wiki/translations/ru/FEM_ConstraintPulley.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Constraint bearing](FEM_ConstraintBearing/ru.md), [FEM Constraint gear](FEM_ConstraintGear/ru.md) --- +# FEM ConstraintPulley/ru + @@ -28,4 +30,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintPulley/ru diff --git a/wiki/translations/ru/FEM_ConstraintSectionPrint.md b/wiki/translations/ru/FEM_ConstraintSectionPrint.md index 6eb84615f7..776fdb7aa1 100644 --- a/wiki/translations/ru/FEM_ConstraintSectionPrint.md +++ b/wiki/translations/ru/FEM_ConstraintSectionPrint.md @@ -8,6 +8,8 @@ SeeAlso: --- +# FEM ConstraintSectionPrint/ru + @@ -27,4 +29,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintSectionPrint/ru diff --git a/wiki/translations/ru/FEM_ConstraintSelfWeight.md b/wiki/translations/ru/FEM_ConstraintSelfWeight.md index 52ad2cafe2..c1eb9f9231 100644 --- a/wiki/translations/ru/FEM_ConstraintSelfWeight.md +++ b/wiki/translations/ru/FEM_ConstraintSelfWeight.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ConstraintSelfWeight/ru + @@ -70,4 +72,7 @@ Eall,GRAV,9810,0.0,0.0,-1.0 {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintSelfWeight/ru diff --git a/wiki/translations/ru/FEM_ConstraintTemperature.md b/wiki/translations/ru/FEM_ConstraintTemperature.md index ab6d90cd3b..316a99bc03 100644 --- a/wiki/translations/ru/FEM_ConstraintTemperature.md +++ b/wiki/translations/ru/FEM_ConstraintTemperature.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ConstraintTemperature/ru + @@ -33,4 +35,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintTemperature/ru diff --git a/wiki/translations/ru/FEM_ConstraintTransform.md b/wiki/translations/ru/FEM_ConstraintTransform.md index f2a581cdf2..0a0044d94e 100644 --- a/wiki/translations/ru/FEM_ConstraintTransform.md +++ b/wiki/translations/ru/FEM_ConstraintTransform.md @@ -7,6 +7,8 @@ SeeAlso:[FEM Constraint plane rotation](FEM_ConstraintPlaneRotation/ru.md) --- +# FEM ConstraintTransform/ru + @@ -26,4 +28,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ConstraintTransform/ru diff --git a/wiki/translations/ru/FEM_CreateNodesSet.md b/wiki/translations/ru/FEM_CreateNodesSet.md index a22967bfb3..0843ac9d9f 100644 --- a/wiki/translations/ru/FEM_CreateNodesSet.md +++ b/wiki/translations/ru/FEM_CreateNodesSet.md @@ -7,6 +7,8 @@ Shortcut: SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM CreateNodesSet/ru + @@ -30,4 +32,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM CreateNodesSet/ru diff --git a/wiki/translations/ru/FEM_ElementFluid1D.md b/wiki/translations/ru/FEM_ElementFluid1D.md index d5613b1e10..6f83c94a4f 100644 --- a/wiki/translations/ru/FEM_ElementFluid1D.md +++ b/wiki/translations/ru/FEM_ElementFluid1D.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ElementFluid1D/ru + @@ -46,4 +48,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementFluid1D/ru diff --git a/wiki/translations/ru/FEM_ElementGeometry1D.md b/wiki/translations/ru/FEM_ElementGeometry1D.md index acfadf4ea9..6bdd362823 100644 --- a/wiki/translations/ru/FEM_ElementGeometry1D.md +++ b/wiki/translations/ru/FEM_ElementGeometry1D.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ElementGeometry1D/ru + @@ -50,4 +52,7 @@ ElementGeometry1D is used to define cross sections for beam elements. Currently {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementGeometry1D/ru diff --git a/wiki/translations/ru/FEM_ElementGeometry2D.md b/wiki/translations/ru/FEM_ElementGeometry2D.md index b885fccc88..3667c2bbf1 100644 --- a/wiki/translations/ru/FEM_ElementGeometry2D.md +++ b/wiki/translations/ru/FEM_ElementGeometry2D.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ElementGeometry2D/ru + @@ -52,4 +54,7 @@ For viewing results from CalculiX solver on the mesh expanded to the prescribed {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementGeometry2D/ru diff --git a/wiki/translations/ru/FEM_ElementRotation1D.md b/wiki/translations/ru/FEM_ElementRotation1D.md index 55c35e41a4..7829df85af 100644 --- a/wiki/translations/ru/FEM_ElementRotation1D.md +++ b/wiki/translations/ru/FEM_ElementRotation1D.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ElementRotation1D/ru + @@ -55,4 +57,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ElementRotation1D/ru diff --git a/wiki/translations/ru/FEM_Element_Types.md b/wiki/translations/ru/FEM_Element_Types.md index 43bd470db0..812f7514c7 100644 --- a/wiki/translations/ru/FEM_Element_Types.md +++ b/wiki/translations/ru/FEM_Element_Types.md @@ -1,5 +1,5 @@ # FEM Element Types/ru - {{TOCright}} +{{TOCright}} ## Введение @@ -273,3 +273,6 @@ }} [Category:Developer](Category:Developer.md) [Category:Poweruser\_Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > FEM Element Types/ru diff --git a/wiki/translations/ru/FEM_EquationElasticity.md b/wiki/translations/ru/FEM_EquationElasticity.md index 80b293f4f4..8d7f818f8f 100644 --- a/wiki/translations/ru/FEM_EquationElasticity.md +++ b/wiki/translations/ru/FEM_EquationElasticity.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM EquationElasticity/ru + @@ -30,4 +32,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationElasticity/ru diff --git a/wiki/translations/ru/FEM_EquationElectrostatic.md b/wiki/translations/ru/FEM_EquationElectrostatic.md index b4e23b8018..8a2efeaffb 100644 --- a/wiki/translations/ru/FEM_EquationElectrostatic.md +++ b/wiki/translations/ru/FEM_EquationElectrostatic.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM EquationElectrostatic/ru + @@ -30,4 +32,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationElectrostatic/ru diff --git a/wiki/translations/ru/FEM_EquationFlow.md b/wiki/translations/ru/FEM_EquationFlow.md index 80d1fcee02..ca8808b131 100644 --- a/wiki/translations/ru/FEM_EquationFlow.md +++ b/wiki/translations/ru/FEM_EquationFlow.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM EquationFlow/ru + @@ -28,4 +30,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationFlow/ru diff --git a/wiki/translations/ru/FEM_EquationFlux.md b/wiki/translations/ru/FEM_EquationFlux.md index 306de0e341..b266ab8a00 100644 --- a/wiki/translations/ru/FEM_EquationFlux.md +++ b/wiki/translations/ru/FEM_EquationFlux.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM EquationFlux/ru + @@ -30,4 +32,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationFlux/ru diff --git a/wiki/translations/ru/FEM_EquationFluxsolver.md b/wiki/translations/ru/FEM_EquationFluxsolver.md index 6165884276..13653670d5 100644 --- a/wiki/translations/ru/FEM_EquationFluxsolver.md +++ b/wiki/translations/ru/FEM_EquationFluxsolver.md @@ -1,2 +1,5 @@ # FEM EquationFluxsolver/ru 1. REDIRECT [FEM\_EquationFlux/ru](FEM_EquationFlux/ru.md) + +--- +[documentation index](../README.md) > FEM EquationFluxsolver/ru diff --git a/wiki/translations/ru/FEM_EquationHeat.md b/wiki/translations/ru/FEM_EquationHeat.md index 8932e24727..65a28b5941 100644 --- a/wiki/translations/ru/FEM_EquationHeat.md +++ b/wiki/translations/ru/FEM_EquationHeat.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM EquationHeat/ru + @@ -30,4 +32,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM EquationHeat/ru diff --git a/wiki/translations/ru/FEM_Example_Capacitance_Two_Balls.md b/wiki/translations/ru/FEM_Example_Capacitance_Two_Balls.md index ab76ce4562..4a7cc362a6 100644 --- a/wiki/translations/ru/FEM_Example_Capacitance_Two_Balls.md +++ b/wiki/translations/ru/FEM_Example_Capacitance_Two_Balls.md @@ -1,7 +1,4 @@ # FEM Example Capacitance Two Balls/ru - - - {{TutorialInfo/ru |Topic= Анализ конечных элементов |Level=Начинающие @@ -121,4 +118,7 @@ This case presents the solution of the capacitance of perfectly conducting balls {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM Example Capacitance Two Balls/ru diff --git a/wiki/translations/ru/FEM_Examples.md b/wiki/translations/ru/FEM_Examples.md index 21785bbd9c..a26f38c526 100644 --- a/wiki/translations/ru/FEM_Examples.md +++ b/wiki/translations/ru/FEM_Examples.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM Examples/ru + @@ -43,4 +45,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Examples/ru diff --git a/wiki/translations/ru/FEM_FemMesh2Mesh.md b/wiki/translations/ru/FEM_FemMesh2Mesh.md index 7ddc4b9219..1921134af3 100644 --- a/wiki/translations/ru/FEM_FemMesh2Mesh.md +++ b/wiki/translations/ru/FEM_FemMesh2Mesh.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM FemMesh2Mesh/ru + @@ -74,4 +76,7 @@ Mesh.show(obj) {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM FemMesh2Mesh/ru diff --git a/wiki/translations/ru/FEM_Install.md b/wiki/translations/ru/FEM_Install.md index 13cce1d98a..9afc6689f4 100644 --- a/wiki/translations/ru/FEM_Install.md +++ b/wiki/translations/ru/FEM_Install.md @@ -1,7 +1,4 @@ # FEM Install/ru - - - {{TOCright}} ## Введение @@ -254,4 +251,7 @@ If you have problems installing Netgen, Gmsh, or CalculiX, or another external t {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Install/ru diff --git a/wiki/translations/ru/FEM_MaterialFluid.md b/wiki/translations/ru/FEM_MaterialFluid.md index 342ef858ca..5395a4e972 100644 --- a/wiki/translations/ru/FEM_MaterialFluid.md +++ b/wiki/translations/ru/FEM_MaterialFluid.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM MaterialFluid/ru + @@ -51,4 +53,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialFluid/ru diff --git a/wiki/translations/ru/FEM_MaterialMechanicalNonlinear.md b/wiki/translations/ru/FEM_MaterialMechanicalNonlinear.md index 084f336794..f61f5ea62c 100644 --- a/wiki/translations/ru/FEM_MaterialMechanicalNonlinear.md +++ b/wiki/translations/ru/FEM_MaterialMechanicalNonlinear.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM MaterialMechanicalNonlinear/ru + @@ -37,4 +39,7 @@ Adds nonlinear mechanical material model. Currently only plasticity with simple {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialMechanicalNonlinear/ru diff --git a/wiki/translations/ru/FEM_MaterialReinforced.md b/wiki/translations/ru/FEM_MaterialReinforced.md index 74994d13ea..6065be8120 100644 --- a/wiki/translations/ru/FEM_MaterialReinforced.md +++ b/wiki/translations/ru/FEM_MaterialReinforced.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM MaterialReinforced/ru + @@ -25,4 +27,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialReinforced/ru diff --git a/wiki/translations/ru/FEM_MaterialSolid.md b/wiki/translations/ru/FEM_MaterialSolid.md index a3f6e6e76c..b93889e1d1 100644 --- a/wiki/translations/ru/FEM_MaterialSolid.md +++ b/wiki/translations/ru/FEM_MaterialSolid.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM MaterialSolid/ru + @@ -61,4 +63,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MaterialSolid/ru diff --git a/wiki/translations/ru/FEM_Mesh.md b/wiki/translations/ru/FEM_Mesh.md index 609aa54cc0..23e982a3d6 100644 --- a/wiki/translations/ru/FEM_Mesh.md +++ b/wiki/translations/ru/FEM_Mesh.md @@ -1,5 +1,5 @@ # FEM Mesh/ru - {{TOCright}} +{{TOCright}} ## Создать FEM Mesh @@ -727,4 +727,7 @@ See for example FEM Mesh/ru diff --git a/wiki/translations/ru/FEM_MeshBoundaryLayer.md b/wiki/translations/ru/FEM_MeshBoundaryLayer.md index 96368aa6c6..61fe741996 100644 --- a/wiki/translations/ru/FEM_MeshBoundaryLayer.md +++ b/wiki/translations/ru/FEM_MeshBoundaryLayer.md @@ -7,6 +7,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM MeshBoundaryLayer/ru + @@ -61,4 +63,7 @@ You can create as many different mesh boundary layers as needed. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshBoundaryLayer/ru diff --git a/wiki/translations/ru/FEM_MeshClear.md b/wiki/translations/ru/FEM_MeshClear.md index f3715b96b6..58f21d6d56 100644 --- a/wiki/translations/ru/FEM_MeshClear.md +++ b/wiki/translations/ru/FEM_MeshClear.md @@ -7,6 +7,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM MeshClear/ru + @@ -35,4 +37,7 @@ The objects in the Model Tree are maintained because they represent the meshing {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshClear/ru diff --git a/wiki/translations/ru/FEM_MeshDisplayInfo.md b/wiki/translations/ru/FEM_MeshDisplayInfo.md index 07e876469a..e14ab485b2 100644 --- a/wiki/translations/ru/FEM_MeshDisplayInfo.md +++ b/wiki/translations/ru/FEM_MeshDisplayInfo.md @@ -7,6 +7,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM MeshDisplayInfo/ru + @@ -97,4 +99,7 @@ will output the following result: {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshDisplayInfo/ru diff --git a/wiki/translations/ru/FEM_MeshGmshFromShape.md b/wiki/translations/ru/FEM_MeshGmshFromShape.md index e9787d2550..a8684424cb 100644 --- a/wiki/translations/ru/FEM_MeshGmshFromShape.md +++ b/wiki/translations/ru/FEM_MeshGmshFromShape.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM MeshGmshFromShape/ru + @@ -139,4 +141,7 @@ The *Simple* recombination algorithm will leave some triangles in the mesh in ca {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshGmshFromShape/ru diff --git a/wiki/translations/ru/FEM_MeshGroup.md b/wiki/translations/ru/FEM_MeshGroup.md index 5e3d4991c5..b834680bc6 100644 --- a/wiki/translations/ru/FEM_MeshGroup.md +++ b/wiki/translations/ru/FEM_MeshGroup.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM MeshGroup/ru + @@ -51,4 +53,7 @@ FEM MeshGroup therefore enables FreeCAD to be used with external solvers (or vie {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshGroup/ru diff --git a/wiki/translations/ru/FEM_MeshNetgenFromShape.md b/wiki/translations/ru/FEM_MeshNetgenFromShape.md index 881635d83f..4a3de08fe2 100644 --- a/wiki/translations/ru/FEM_MeshNetgenFromShape.md +++ b/wiki/translations/ru/FEM_MeshNetgenFromShape.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM MeshNetgenFromShape/ru + @@ -23,4 +25,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshNetgenFromShape/ru diff --git a/wiki/translations/ru/FEM_MeshPrintInfo.md b/wiki/translations/ru/FEM_MeshPrintInfo.md index 6a0362ab1b..f5c0c51e28 100644 --- a/wiki/translations/ru/FEM_MeshPrintInfo.md +++ b/wiki/translations/ru/FEM_MeshPrintInfo.md @@ -1,2 +1,5 @@ # FEM MeshPrintInfo/ru 1. REDIRECT [FEM\_MeshDisplayInfo/ru](FEM_MeshDisplayInfo/ru.md) + +--- +[documentation index](../README.md) > FEM MeshPrintInfo/ru diff --git a/wiki/translations/ru/FEM_MeshRegion.md b/wiki/translations/ru/FEM_MeshRegion.md index 1e3e79a167..63e21b44ab 100644 --- a/wiki/translations/ru/FEM_MeshRegion.md +++ b/wiki/translations/ru/FEM_MeshRegion.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM MeshRegion/ru + @@ -71,4 +73,7 @@ You can create as many different mesh regions as needed. {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM MeshRegion/ru diff --git a/wiki/translations/ru/FEM_Module.md b/wiki/translations/ru/FEM_Module.md index eb66b4ef9d..3b1eb547bf 100644 --- a/wiki/translations/ru/FEM_Module.md +++ b/wiki/translations/ru/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/ru 1. REDIRECT [FEM\_Workbench/ru](FEM_Workbench/ru.md) + +--- +[documentation index](../README.md) > FEM Module/ru diff --git a/wiki/translations/ru/FEM_PostApplyChanges.md b/wiki/translations/ru/FEM_PostApplyChanges.md index cd10648c78..03e871ce5b 100644 --- a/wiki/translations/ru/FEM_PostApplyChanges.md +++ b/wiki/translations/ru/FEM_PostApplyChanges.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM PostApplyChanges/ru + @@ -29,4 +31,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostApplyChanges/ru diff --git a/wiki/translations/ru/FEM_PostCreateClipFilter.md b/wiki/translations/ru/FEM_PostCreateClipFilter.md index 569349bfbe..6cef7cca08 100644 --- a/wiki/translations/ru/FEM_PostCreateClipFilter.md +++ b/wiki/translations/ru/FEM_PostCreateClipFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateClipFilter/ru 1. REDIRECT [FEM\_PostFilterClipScalar/ru](FEM_PostFilterClipScalar/ru.md) + +--- +[documentation index](../README.md) > FEM PostCreateClipFilter/ru diff --git a/wiki/translations/ru/FEM_PostCreateCutFilter.md b/wiki/translations/ru/FEM_PostCreateCutFilter.md index 50e7da01cf..2b0ef44611 100644 --- a/wiki/translations/ru/FEM_PostCreateCutFilter.md +++ b/wiki/translations/ru/FEM_PostCreateCutFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateCutFilter/ru 1. REDIRECT [FEM\_PostFilterCutFunction/ru](FEM_PostFilterCutFunction/ru.md) + +--- +[documentation index](../README.md) > FEM PostCreateCutFilter/ru diff --git a/wiki/translations/ru/FEM_PostCreateDataAlongLineFilter.md b/wiki/translations/ru/FEM_PostCreateDataAlongLineFilter.md index 17cd33a5c7..74147175e3 100644 --- a/wiki/translations/ru/FEM_PostCreateDataAlongLineFilter.md +++ b/wiki/translations/ru/FEM_PostCreateDataAlongLineFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateDataAlongLineFilter/ru 1. REDIRECT [FEM\_PostFilterDataAlongLine/ru](FEM_PostFilterDataAlongLine/ru.md) + +--- +[documentation index](../README.md) > FEM PostCreateDataAlongLineFilter/ru diff --git a/wiki/translations/ru/FEM_PostCreateDataAtPointFilter.md b/wiki/translations/ru/FEM_PostCreateDataAtPointFilter.md index 24a70528d1..a8ed72f26b 100644 --- a/wiki/translations/ru/FEM_PostCreateDataAtPointFilter.md +++ b/wiki/translations/ru/FEM_PostCreateDataAtPointFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateDataAtPointFilter/ru 1. REDIRECT [FEM\_PostFilterDataAtPoint/ru](FEM_PostFilterDataAtPoint/ru.md) + +--- +[documentation index](../README.md) > FEM PostCreateDataAtPointFilter/ru diff --git a/wiki/translations/ru/FEM_PostCreateFunctions.md b/wiki/translations/ru/FEM_PostCreateFunctions.md index a0d5d14a70..0949772ab0 100644 --- a/wiki/translations/ru/FEM_PostCreateFunctions.md +++ b/wiki/translations/ru/FEM_PostCreateFunctions.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM PostCreateFunctions/ru + @@ -32,4 +34,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostCreateFunctions/ru diff --git a/wiki/translations/ru/FEM_PostCreateLinearizedStressesFilter.md b/wiki/translations/ru/FEM_PostCreateLinearizedStressesFilter.md index 2645ac9d16..c37d0fbe0b 100644 --- a/wiki/translations/ru/FEM_PostCreateLinearizedStressesFilter.md +++ b/wiki/translations/ru/FEM_PostCreateLinearizedStressesFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateLinearizedStressesFilter/ru 1. REDIRECT [FEM\_PostFilterLinearizedStresses/ru](FEM_PostFilterLinearizedStresses/ru.md) + +--- +[documentation index](../README.md) > FEM PostCreateLinearizedStressesFilter/ru diff --git a/wiki/translations/ru/FEM_PostCreateScalarClipFilter.md b/wiki/translations/ru/FEM_PostCreateScalarClipFilter.md index 54a507eddb..026d5ff586 100644 --- a/wiki/translations/ru/FEM_PostCreateScalarClipFilter.md +++ b/wiki/translations/ru/FEM_PostCreateScalarClipFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateScalarClipFilter/ru 1. REDIRECT [FEM\_PostFilterWarp/ru](FEM_PostFilterWarp/ru.md) + +--- +[documentation index](../README.md) > FEM PostCreateScalarClipFilter/ru diff --git a/wiki/translations/ru/FEM_PostCreateWarpVectorFilter.md b/wiki/translations/ru/FEM_PostCreateWarpVectorFilter.md index 8ec261e7d1..d8a90c3a56 100644 --- a/wiki/translations/ru/FEM_PostCreateWarpVectorFilter.md +++ b/wiki/translations/ru/FEM_PostCreateWarpVectorFilter.md @@ -1,2 +1,5 @@ # FEM PostCreateWarpVectorFilter/ru 1. REDIRECT [FEM\_PostFilterWarp/ru](FEM_PostFilterWarp/ru.md) + +--- +[documentation index](../README.md) > FEM PostCreateWarpVectorFilter/ru diff --git a/wiki/translations/ru/FEM_PostFilterClipRegion.md b/wiki/translations/ru/FEM_PostFilterClipRegion.md index 1f8d603342..1654042b46 100644 --- a/wiki/translations/ru/FEM_PostFilterClipRegion.md +++ b/wiki/translations/ru/FEM_PostFilterClipRegion.md @@ -7,6 +7,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM PostFilterClipRegion/ru + @@ -28,4 +30,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterClipRegion/ru diff --git a/wiki/translations/ru/FEM_PostFilterClipScalar.md b/wiki/translations/ru/FEM_PostFilterClipScalar.md index 1d2e489842..7aaad8d999 100644 --- a/wiki/translations/ru/FEM_PostFilterClipScalar.md +++ b/wiki/translations/ru/FEM_PostFilterClipScalar.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM PostFilterClipScalar/ru + @@ -29,4 +31,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterClipScalar/ru diff --git a/wiki/translations/ru/FEM_PostFilterCutFunction.md b/wiki/translations/ru/FEM_PostFilterCutFunction.md index 0485ce7b4b..6ce4d1219a 100644 --- a/wiki/translations/ru/FEM_PostFilterCutFunction.md +++ b/wiki/translations/ru/FEM_PostFilterCutFunction.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM PostFilterCutFunction/ru + @@ -29,4 +31,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterCutFunction/ru diff --git a/wiki/translations/ru/FEM_PostFilterDataAlongLine.md b/wiki/translations/ru/FEM_PostFilterDataAlongLine.md index 139311871a..8d14b1430c 100644 --- a/wiki/translations/ru/FEM_PostFilterDataAlongLine.md +++ b/wiki/translations/ru/FEM_PostFilterDataAlongLine.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM PostFilterDataAlongLine/ru + @@ -30,4 +32,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterDataAlongLine/ru diff --git a/wiki/translations/ru/FEM_PostFilterDataAtPoint.md b/wiki/translations/ru/FEM_PostFilterDataAtPoint.md index cdfc5cab2b..82ce2e9d3b 100644 --- a/wiki/translations/ru/FEM_PostFilterDataAtPoint.md +++ b/wiki/translations/ru/FEM_PostFilterDataAtPoint.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM PostFilterDataAtPoint/ru + @@ -30,4 +32,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterDataAtPoint/ru diff --git a/wiki/translations/ru/FEM_PostFilterLinearizedStresses.md b/wiki/translations/ru/FEM_PostFilterLinearizedStresses.md index 36a5e6bb91..1d0f3d833c 100644 --- a/wiki/translations/ru/FEM_PostFilterLinearizedStresses.md +++ b/wiki/translations/ru/FEM_PostFilterLinearizedStresses.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM PostFilterLinearizedStresses/ru + @@ -30,4 +32,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterLinearizedStresses/ru diff --git a/wiki/translations/ru/FEM_PostFilterWarp.md b/wiki/translations/ru/FEM_PostFilterWarp.md index da2fff5513..19cd4dbfe9 100644 --- a/wiki/translations/ru/FEM_PostFilterWarp.md +++ b/wiki/translations/ru/FEM_PostFilterWarp.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM PostFilterWarp/ru + @@ -29,4 +31,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostFilterWarp/ru diff --git a/wiki/translations/ru/FEM_PostPipelineFromResult.md b/wiki/translations/ru/FEM_PostPipelineFromResult.md index 1c43c1d25c..bf0ad3e83d 100644 --- a/wiki/translations/ru/FEM_PostPipelineFromResult.md +++ b/wiki/translations/ru/FEM_PostPipelineFromResult.md @@ -9,6 +9,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM PostPipelineFromResult/ru + @@ -58,4 +60,7 @@ Once again, note, that the Pipeline representation of the results (called VTK) o {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM PostPipelineFromResult/ru diff --git a/wiki/translations/ru/FEM_Preferences.md b/wiki/translations/ru/FEM_Preferences.md index 1eec00beeb..16c569c3f4 100644 --- a/wiki/translations/ru/FEM_Preferences.md +++ b/wiki/translations/ru/FEM_Preferences.md @@ -1,5 +1,5 @@ # FEM Preferences/ru - {{TOCright}} +{{TOCright}}
@@ -50,3 +50,6 @@ The current supported external solvers are: }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > FEM Preferences/ru diff --git a/wiki/translations/ru/FEM_ResultShow.md b/wiki/translations/ru/FEM_ResultShow.md index 3c0b72f792..d203810fa5 100644 --- a/wiki/translations/ru/FEM_ResultShow.md +++ b/wiki/translations/ru/FEM_ResultShow.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ResultShow/ru +
@@ -32,4 +34,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ResultShow/ru diff --git a/wiki/translations/ru/FEM_ResultsPurge.md b/wiki/translations/ru/FEM_ResultsPurge.md index c878f7bf87..07bff297ed 100644 --- a/wiki/translations/ru/FEM_ResultsPurge.md +++ b/wiki/translations/ru/FEM_ResultsPurge.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM ResultsPurge/ru + @@ -36,4 +38,7 @@ TODO: Add Before and After screenshot {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM ResultsPurge/ru diff --git a/wiki/translations/ru/FEM_Shear_of_a_Composite_Block.md b/wiki/translations/ru/FEM_Shear_of_a_Composite_Block.md index 318110edca..1c35f3b3ed 100644 --- a/wiki/translations/ru/FEM_Shear_of_a_Composite_Block.md +++ b/wiki/translations/ru/FEM_Shear_of_a_Composite_Block.md @@ -1,7 +1,4 @@ # FEM Shear of a Composite Block/ru - - -
@@ -109,4 +106,7 @@ -Позабавьте себя ! {{Tutorials navi}} {{FEM Tools navi}} +Позабавьте себя ! {{Tutorials navi}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM Shear of a Composite Block/ru diff --git a/wiki/translations/ru/FEM_Solver.md b/wiki/translations/ru/FEM_Solver.md index 8dcda5ee82..aa51c0f018 100644 --- a/wiki/translations/ru/FEM_Solver.md +++ b/wiki/translations/ru/FEM_Solver.md @@ -1,6 +1,4 @@ # FEM Solver/ru - - ## Предисловие @@ -221,4 +219,7 @@ Technog was successfully used in FreeCAD as a substitute of CalculiX, although t {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Solver/ru diff --git a/wiki/translations/ru/FEM_SolverCalculiX.md b/wiki/translations/ru/FEM_SolverCalculiX.md index 1e37463b2b..11aa4aefb4 100644 --- a/wiki/translations/ru/FEM_SolverCalculiX.md +++ b/wiki/translations/ru/FEM_SolverCalculiX.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM SolverCalculiX/ru +
@@ -33,4 +35,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverCalculiX/ru diff --git a/wiki/translations/ru/FEM_SolverCalculixCxxtools.md b/wiki/translations/ru/FEM_SolverCalculixCxxtools.md index 69f4212e0c..5bde6b863f 100644 --- a/wiki/translations/ru/FEM_SolverCalculixCxxtools.md +++ b/wiki/translations/ru/FEM_SolverCalculixCxxtools.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM SolverCalculixCxxtools/ru + @@ -137,4 +139,7 @@ Original CalculiX documentation can be found at in the \"ccx {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverCalculixCxxtools/ru diff --git a/wiki/translations/ru/FEM_SolverControl.md b/wiki/translations/ru/FEM_SolverControl.md index e06102dd9e..dc7e8a704b 100644 --- a/wiki/translations/ru/FEM_SolverControl.md +++ b/wiki/translations/ru/FEM_SolverControl.md @@ -8,6 +8,8 @@ SeeAlso:[FEM Run solver calculations](FEM_SolverRun.md) --- +# FEM SolverControl/ru + @@ -27,4 +29,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverControl/ru diff --git a/wiki/translations/ru/FEM_SolverElmer.md b/wiki/translations/ru/FEM_SolverElmer.md index 5a8deca41b..c7f9b2e1b7 100644 --- a/wiki/translations/ru/FEM_SolverElmer.md +++ b/wiki/translations/ru/FEM_SolverElmer.md @@ -9,6 +9,8 @@ SeeAlso:[FEM Solver CalculiX](FEM_SolverCalculiX/ru.md), [FEM Solver Z88](FEM_SolverZ88/ru.md), [Учебник МКЭ](FEM_tutorial/ru.md) --- +# FEM SolverElmer/ru + @@ -114,4 +116,7 @@ The following link gives access to the full [documentation for Elmer](https://ww {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverElmer/ru diff --git a/wiki/translations/ru/FEM_SolverRun.md b/wiki/translations/ru/FEM_SolverRun.md index 75100f5395..fad716ebe7 100644 --- a/wiki/translations/ru/FEM_SolverRun.md +++ b/wiki/translations/ru/FEM_SolverRun.md @@ -8,6 +8,8 @@ SeeAlso:[FEM Solver job control](FEM_SolverControl/ru.md) --- +# FEM SolverRun/ru + ## Описание ## Применение @@ -29,4 +31,7 @@ {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverRun/ru diff --git a/wiki/translations/ru/FEM_SolverZ88.md b/wiki/translations/ru/FEM_SolverZ88.md index a0096c941d..47fb77fbb1 100644 --- a/wiki/translations/ru/FEM_SolverZ88.md +++ b/wiki/translations/ru/FEM_SolverZ88.md @@ -8,6 +8,8 @@ SeeAlso:[FEM tutorial](FEM_tutorial/ru.md) --- +# FEM SolverZ88/ru + @@ -29,4 +31,7 @@ ToDo {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM SolverZ88/ru diff --git a/wiki/translations/ru/FEM_Tutorial_Python.md b/wiki/translations/ru/FEM_Tutorial_Python.md index 23d31a3946..8d9893e767 100644 --- a/wiki/translations/ru/FEM_Tutorial_Python.md +++ b/wiki/translations/ru/FEM_Tutorial_Python.md @@ -1,7 +1,4 @@ # FEM Tutorial Python/ru - - -
@@ -634,3 +631,6 @@ See forum posts: }} {{FEM Tools navi}} [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > FEM Tutorial Python/ru diff --git a/wiki/translations/ru/FEM_Workbench.md b/wiki/translations/ru/FEM_Workbench.md index 2d45144a57..2d57b794ac 100644 --- a/wiki/translations/ru/FEM_Workbench.md +++ b/wiki/translations/ru/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/ru - - - - - -Логотип верстака FEM +# Логотип верстака FEM FEM Workbench/ru {{TOCright}} @@ -279,3 +273,6 @@ Many video tutorials: [anisim Open Source Engineering Software](https://www.yout }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/ru diff --git a/wiki/translations/ru/FEM_project.md b/wiki/translations/ru/FEM_project.md index 0ebae3b73d..f812632d01 100644 --- a/wiki/translations/ru/FEM_project.md +++ b/wiki/translations/ru/FEM_project.md @@ -1,7 +1,4 @@ # FEM project/ru - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -54,3 +51,6 @@ If you are not involved with the development discussed here:
}} [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > FEM project/ru diff --git a/wiki/translations/ru/FEM_tutorial.md b/wiki/translations/ru/FEM_tutorial.md index db6b263120..c74cb22025 100644 --- a/wiki/translations/ru/FEM_tutorial.md +++ b/wiki/translations/ru/FEM_tutorial.md @@ -1,7 +1,4 @@ # FEM tutorial/ru - - -
@@ -221,4 +218,7 @@ {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > FEM tutorial/ru diff --git a/wiki/translations/ru/Fasteners_BOM.md b/wiki/translations/ru/Fasteners_BOM.md index 36bd80a88c..0f96dc6064 100644 --- a/wiki/translations/ru/Fasteners_BOM.md +++ b/wiki/translations/ru/Fasteners_BOM.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Fasteners BOM/ru + ## Описание The [Fasteners BOM](Fasteners_BOM.md) generates a Bill of Materials. This tool is part of the [external workbench](external_workbenches.md) called [Fasteners](Fasteners_Workbench.md). @@ -56,3 +58,6 @@ The [Fasteners BO }} [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Fasteners BOM/ru diff --git a/wiki/translations/ru/Fasteners_Workbench.md b/wiki/translations/ru/Fasteners_Workbench.md index e541066ea6..d458cbd36c 100644 --- a/wiki/translations/ru/Fasteners_Workbench.md +++ b/wiki/translations/ru/Fasteners_Workbench.md @@ -1,7 +1,4 @@ -# Fasteners Workbench/ru - - -Иконка верстака Fasteners +# Иконка верстака Fasteners Fasteners Workbench/ru {{TOCright}} @@ -282,3 +279,6 @@ The Fasteners Workbench has two toolbars. The **FS Screws** toolbar contains man [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Fasteners](Category:Fasteners.md) + +--- +[documentation index](../README.md) > Fasteners Workbench/ru diff --git a/wiki/translations/ru/Fcstd_file_format.md b/wiki/translations/ru/Fcstd_file_format.md index 0443421f94..dbaead04a2 100644 --- a/wiki/translations/ru/Fcstd_file_format.md +++ b/wiki/translations/ru/Fcstd_file_format.md @@ -1,2 +1,5 @@ # Fcstd file format/ru 1. REDIRECT [File\_Format\_FCStd/ru](File_Format_FCStd/ru.md) + +--- +[documentation index](../README.md) > Fcstd file format/ru diff --git a/wiki/translations/ru/FeaturePython_Custom_Properties.md b/wiki/translations/ru/FeaturePython_Custom_Properties.md index ae3261028e..8151422345 100644 --- a/wiki/translations/ru/FeaturePython_Custom_Properties.md +++ b/wiki/translations/ru/FeaturePython_Custom_Properties.md @@ -1,5 +1,5 @@ # FeaturePython Custom Properties/ru - {{TOCright}} +{{TOCright}} ## Введение @@ -1249,3 +1249,6 @@ obj.ThePropertyName // returns {{TODO}}"example value for getter" [Category:API](Category:API.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FeaturePython Custom Properties/ru diff --git a/wiki/translations/ru/FeaturePython_Objects.md b/wiki/translations/ru/FeaturePython_Objects.md index ae5cbc7778..ed44f4ef7c 100644 --- a/wiki/translations/ru/FeaturePython_Objects.md +++ b/wiki/translations/ru/FeaturePython_Objects.md @@ -1,2 +1,5 @@ # FeaturePython Objects/ru 1. REDIRECT [Create\_a\_FeaturePython\_object\_part\_I/ru](Create_a_FeaturePython_object_part_I/ru.md) + +--- +[documentation index](../README.md) > FeaturePython Objects/ru diff --git a/wiki/translations/ru/Feature_editing.md b/wiki/translations/ru/Feature_editing.md index 5cd4073d38..e15c5892d5 100644 --- a/wiki/translations/ru/Feature_editing.md +++ b/wiki/translations/ru/Feature_editing.md @@ -1,5 +1,5 @@ # Feature editing/ru - {{TOCright}} +{{TOCright}} ## Введение @@ -200,3 +200,6 @@ The [tutorials](Tutorials.md) page provides some examples of using the [feature }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Feature editing/ru diff --git a/wiki/translations/ru/Feature_list.md b/wiki/translations/ru/Feature_list.md index 5ce2c177de..8e6c213383 100644 --- a/wiki/translations/ru/Feature_list.md +++ b/wiki/translations/ru/Feature_list.md @@ -1,5 +1,5 @@ # Feature list/ru - {{docnav/ru +{{docnav/ru |[О FreeCAD](About_FreeCAD/ru.md) |[Установка в Windows](Installing_on_Windows/ru.md) }} @@ -130,3 +130,6 @@ [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/ru diff --git a/wiki/translations/ru/File_Format_FCStd.md b/wiki/translations/ru/File_Format_FCStd.md index 52c3729b8d..0edea0670f 100644 --- a/wiki/translations/ru/File_Format_FCStd.md +++ b/wiki/translations/ru/File_Format_FCStd.md @@ -1,5 +1,5 @@ # File Format FCStd/ru - {{TOCright}} +{{TOCright}} ## Overview @@ -167,3 +167,6 @@ See the forum thread, [PDF inside the project](https://forum.freecadweb.org/view [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > File Format FCStd/ru diff --git a/wiki/translations/ru/Fine-tuning.md b/wiki/translations/ru/Fine-tuning.md index b443cb0f19..9396a50a42 100644 --- a/wiki/translations/ru/Fine-tuning.md +++ b/wiki/translations/ru/Fine-tuning.md @@ -1,7 +1,4 @@ # Fine-tuning/ru - - - {{TOCright}} This page holds different settings and parameters that you can use to fine-tune your FreeCAD installation or overcome problems. @@ -77,3 +74,6 @@ Any other characters are treated literally. If the resulting filename is illegal [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Fine-tuning/ru diff --git a/wiki/translations/ru/FreeCAD-Ship_s60_tutorial.md b/wiki/translations/ru/FreeCAD-Ship_s60_tutorial.md index 5f2e723ec2..bae3d65ee5 100644 --- a/wiki/translations/ru/FreeCAD-Ship_s60_tutorial.md +++ b/wiki/translations/ru/FreeCAD-Ship_s60_tutorial.md @@ -1,7 +1,4 @@ # FreeCAD-Ship s60 tutorial/ru - - - {{TutorialInfo/ru |Topic=Ship Workbench |Level=Beginner @@ -309,3 +306,6 @@ The [FreeCAD Ship s60 tutorial (II)](FreeCAD-Ship_s60_tutorial_(II).md) is the s {{Ship Tools navi }} + +--- +[documentation index](../README.md) > FreeCAD-Ship s60 tutorial/ru diff --git a/wiki/translations/ru/FreeCAD-Ship_s60_tutorial_(II).md b/wiki/translations/ru/FreeCAD-Ship_s60_tutorial_(II).md index 842a819566..d7ac11581e 100644 --- a/wiki/translations/ru/FreeCAD-Ship_s60_tutorial_(II).md +++ b/wiki/translations/ru/FreeCAD-Ship_s60_tutorial_(II).md @@ -1,7 +1,4 @@ # FreeCAD-Ship s60 tutorial (II)/ru - - - {{TutorialInfo/ru |Topic=Ship Workbench |Level= Beginner @@ -200,3 +197,6 @@ Of course this example is not real (first for all fuel tanks cannot be placed in {{Ship Tools navi }} + +--- +[documentation index](../README.md) > FreeCAD-Ship s60 tutorial (II)/ru diff --git a/wiki/translations/ru/FreeCAD_API.md b/wiki/translations/ru/FreeCAD_API.md index 1c55e0d783..11a7b055e8 100644 --- a/wiki/translations/ru/FreeCAD_API.md +++ b/wiki/translations/ru/FreeCAD_API.md @@ -1,5 +1,5 @@ # FreeCAD API/ru - **(Октябрь 2019) Не редактируйте эту страницу. Информация является неполной и устаревшей. Для получения последней версии API см.[https://www.freecadweb.org/api автосгенерированную API документацию], или вы можете сгенерировать документацию самостоятельно, смотрите [Исходня документация](Source_documentation.md).** +**(Октябрь 2019) Не редактируйте эту страницу. Информация является неполной и устаревшей. Для получения последней версии API см.[https://www.freecadweb.org/api автосгенерированную API документацию], или вы можете сгенерировать документацию самостоятельно, смотрите [Исходня документация](Source_documentation.md).** This is the principal (root) module of FreeCAD. It can also be called by \"App\" from the FreeCAD interpreter. It contains everything that is needed to manipulate documents and their contents (objects). @@ -62,3 +62,6 @@ mydoc = FreeCAD.activeDocument() [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > FreeCAD API/ru diff --git a/wiki/translations/ru/FreeCAD_Build_Tool.md b/wiki/translations/ru/FreeCAD_Build_Tool.md index b7ba8de99c..efb55ecaed 100644 --- a/wiki/translations/ru/FreeCAD_Build_Tool.md +++ b/wiki/translations/ru/FreeCAD_Build_Tool.md @@ -1,10 +1,4 @@ # FreeCAD Build Tool/ru - - - - - - {{TOCright}} ## Введение @@ -86,3 +80,6 @@ FreeCAD Build Tool [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Build Tool/ru diff --git a/wiki/translations/ru/FreeCAD_Community_Portal.md b/wiki/translations/ru/FreeCAD_Community_Portal.md index 83733d248a..8fd31dd792 100644 --- a/wiki/translations/ru/FreeCAD_Community_Portal.md +++ b/wiki/translations/ru/FreeCAD_Community_Portal.md @@ -1,6 +1,4 @@ # FreeCAD Community Portal/ru - - This is the place to put all kind of FreeCAD-related stuff! If you work on something FreeCAD-related, please include it here! ## Places where FreeCAD appears on the net @@ -87,3 +85,6 @@ These are FreeCAD community developed workbenches, scripts, macros, and addons f [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > FreeCAD Community Portal/ru diff --git a/wiki/translations/ru/FreeCAD_Docker_CLI_mode.md b/wiki/translations/ru/FreeCAD_Docker_CLI_mode.md index 44207f87d4..fb1433323e 100644 --- a/wiki/translations/ru/FreeCAD_Docker_CLI_mode.md +++ b/wiki/translations/ru/FreeCAD_Docker_CLI_mode.md @@ -1,10 +1,4 @@ # FreeCAD Docker CLI mode/ru - - - - - - {{TOCright}} ## Обзор @@ -78,6 +72,5 @@ To launch FreeCAD inside Docker image, just run FreeCADCmd command. FreeCAD forum thread: - - - +--- +[documentation index](../README.md) > FreeCAD Docker CLI mode/ru diff --git a/wiki/translations/ru/FreeCAD_Scripting_Basics.md b/wiki/translations/ru/FreeCAD_Scripting_Basics.md index d514f2c6a4..7c18128b47 100644 --- a/wiki/translations/ru/FreeCAD_Scripting_Basics.md +++ b/wiki/translations/ru/FreeCAD_Scripting_Basics.md @@ -1,7 +1,4 @@ # FreeCAD Scripting Basics/ru - - - {{TOCright}} ## Написание сценариев Python в FreeCAD @@ -217,3 +214,6 @@ print(myObj.isDerivedFrom("Part::Feature")) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Scripting Basics/ru diff --git a/wiki/translations/ru/FreeCAD_and_DWG_Import.md b/wiki/translations/ru/FreeCAD_and_DWG_Import.md index 0b0eac673d..27abdf1339 100644 --- a/wiki/translations/ru/FreeCAD_and_DWG_Import.md +++ b/wiki/translations/ru/FreeCAD_and_DWG_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DWG Import/ru - {{TOCright}} +{{TOCright}} {{Fake heading|sub=4|< Back to [[FreeCAD Howto Import Export]]}} @@ -134,3 +134,6 @@ In development version as mentioned above you can switch from the proprietary OD [Category:File\_Formats](Category:File_Formats.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > FreeCAD and DWG Import/ru diff --git a/wiki/translations/ru/FreeCAD_and_DXF_Import.md b/wiki/translations/ru/FreeCAD_and_DXF_Import.md index b06693c4dd..4bc2ffe15e 100644 --- a/wiki/translations/ru/FreeCAD_and_DXF_Import.md +++ b/wiki/translations/ru/FreeCAD_and_DXF_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DXF Import/ru - {{TOCright}} +{{TOCright}} ## Background @@ -52,3 +52,6 @@ You can also try: For an overview of all DXF related preferences see [Import Export Preferences](Import_Export_Preferences#DXF.md). [Category:User\_Documentation](Category:User_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > FreeCAD and DXF Import/ru diff --git a/wiki/translations/ru/FreeCAD_and_Mesh_Import.md b/wiki/translations/ru/FreeCAD_and_Mesh_Import.md index 305d50309c..a47057dfa1 100644 --- a/wiki/translations/ru/FreeCAD_and_Mesh_Import.md +++ b/wiki/translations/ru/FreeCAD_and_Mesh_Import.md @@ -1,7 +1,4 @@ # FreeCAD and Mesh Import/ru - - - {{TOCright}} ## Post-Import @@ -94,3 +91,6 @@ - [FreeCAD Howto Import Export](FreeCAD_Howto_Import_Export.md) [Category:User\_Documentation](Category:User_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > FreeCAD and Mesh Import/ru diff --git a/wiki/translations/ru/FreeCAD_used_in_production.md b/wiki/translations/ru/FreeCAD_used_in_production.md index 59b2b40639..1958c0fb85 100644 --- a/wiki/translations/ru/FreeCAD_used_in_production.md +++ b/wiki/translations/ru/FreeCAD_used_in_production.md @@ -1,9 +1,4 @@ # FreeCAD used in production/ru - - - - - ## Обзор @@ -85,3 +80,6 @@ [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > FreeCAD used in production/ru diff --git a/wiki/translations/ru/FreeCAD_vector_math_library.md b/wiki/translations/ru/FreeCAD_vector_math_library.md index 1aea5fde0d..e3730cf354 100644 --- a/wiki/translations/ru/FreeCAD_vector_math_library.md +++ b/wiki/translations/ru/FreeCAD_vector_math_library.md @@ -1,6 +1,4 @@ # FreeCAD vector math library/ru - - ## Introduction This is a [Python](Python.md) module containing a couple of useful functions to manipulate vectors. This library is included in the [Draft\_Workbench](Draft_Workbench.md) and can be accessed like this from the Python interpreter: @@ -87,3 +85,6 @@ def project(first, other): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD vector math library/ru diff --git a/wiki/translations/ru/Frequently_asked_questions.md b/wiki/translations/ru/Frequently_asked_questions.md index 3563ecf96c..ba3afc7a19 100644 --- a/wiki/translations/ru/Frequently_asked_questions.md +++ b/wiki/translations/ru/Frequently_asked_questions.md @@ -1,9 +1,4 @@ # Frequently asked questions/ru - - - - - На этой странице содержатся ответы на самые часто задаваемые вопросы на форуме FreeCAD. Если у вас есть проблема или вопрос, касающийся FreeCAD, попробуйте найти на него ответ на этой странице. Затем, если вы не смогли найти ответ на ваш специфический вопрос, обратитесь на [форум FreeCAD](http://forum.freecadweb.org/viewforum.php?f=3)! ## Установка @@ -297,3 +292,6 @@ Yes, you can use the core parts of FreeCAD in other applications as long as you [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Frequently asked questions/ru diff --git a/wiki/translations/ru/Getting_started.md b/wiki/translations/ru/Getting_started.md index d806fca9f0..94b6a67fba 100644 --- a/wiki/translations/ru/Getting_started.md +++ b/wiki/translations/ru/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/ru - - - - - - {{TOCright}} ## Введение @@ -253,3 +247,6 @@ Freecad, как программа с открытыми исходниками, {{Userdocnavi/ru}} [Category:User Documentation/ru](Category:User_Documentation/ru.md) + +--- +[documentation index](../README.md) > Getting started/ru diff --git a/wiki/translations/ru/Git_buildpackage.md b/wiki/translations/ru/Git_buildpackage.md index 8b7f099ca6..ffc34698d0 100644 --- a/wiki/translations/ru/Git_buildpackage.md +++ b/wiki/translations/ru/Git_buildpackage.md @@ -1,6 +1,4 @@ # Git buildpackage/ru - - Modern Debian development workflows involve [packaging with Git](https://wiki.debian.org/PackagingWithGit) and the primary tool for doing that is [git-buildpackage](http://honk.sigxcpu.org/projects/git-buildpackage/manual-html/gbp.html). git-buildpackage provides a gbp command with several options similar to the git command itself. Many of these commands are themselves just a wrapper of lower-level Debian tools, so the complexity to learning packaging can be quite high. To get around that, here are the short & simple steps to getting started with git-buildpackage. This should work on nearly any Debian-based distribution, but I recommend working on this in a clean and separate environment a [Debian Unstable](Debian_Unstable.md) virtual machine. @@ -36,3 +34,6 @@ To get around that, here are the short & simple steps to getting started with gi [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Git buildpackage/ru diff --git a/wiki/translations/ru/Glossary.md b/wiki/translations/ru/Glossary.md index d65af091ad..fc830645e8 100644 --- a/wiki/translations/ru/Glossary.md +++ b/wiki/translations/ru/Glossary.md @@ -1,9 +1,4 @@ # Glossary/ru - - - - - Эта страница содержит общую терминологию FreeCAD и их определения. {{CompactTOC|center=yes}} Jump to letter: {{CompactTOC|center=yes}} @@ -1140,3 +1135,6 @@ Jump to letter: {{CompactTOC|center=yes}} [Category:Wiki](Category:Wiki.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Wiki](Category:Wiki.md) > Glossary/ru diff --git a/wiki/translations/ru/Group.md b/wiki/translations/ru/Group.md index 0f1c9fd07b..e0390097ad 100644 --- a/wiki/translations/ru/Group.md +++ b/wiki/translations/ru/Group.md @@ -1,2 +1,5 @@ # Group/ru 1. REDIRECT [Std\_Group/ru](Std_Group/ru.md) + +--- +[documentation index](../README.md) > Group/ru diff --git a/wiki/translations/ru/GuiCommand_model.md b/wiki/translations/ru/GuiCommand_model.md index 33eec4a850..549aae66c8 100644 --- a/wiki/translations/ru/GuiCommand_model.md +++ b/wiki/translations/ru/GuiCommand_model.md @@ -10,6 +10,8 @@ Version:0.19 --- +# GuiCommand model/ru +
@@ -210,3 +212,6 @@ Optional. }} [Category:Wiki:Example](Category:Wiki:Example.md) + +--- +[documentation index](../README.md) > [API]] and ](Category:API]] and .md) > GuiCommand model/ru diff --git a/wiki/translations/ru/Gui_Command.md b/wiki/translations/ru/Gui_Command.md index 936df1e5c5..24cac28fd3 100644 --- a/wiki/translations/ru/Gui_Command.md +++ b/wiki/translations/ru/Gui_Command.md @@ -1,7 +1,4 @@ # Gui Command/ru - - -
GuiCommand - одна из наиболее важных функций FreeCAD при взаимодействии с пользователем. Каждый раз, когда пользователь выбирает опцию в меню или нажимает на кнопку панели инструментов, активируется GuiCommand. Некоторые из атрибутов GuiCommand: @@ -133,4 +130,7 @@ There are a lot of GuiCommands (tools) in FreeCAD which are experimental or used {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Gui Command/ru diff --git a/wiki/translations/ru/Help.md b/wiki/translations/ru/Help.md index 1045c15a26..88110d46e2 100644 --- a/wiki/translations/ru/Help.md +++ b/wiki/translations/ru/Help.md @@ -1,6 +1,4 @@ # Help/ru - - ## Форум Первое место, куда вы можете обратиться за помощью, это [FreeCAD форум](https://forum.freecadweb.org/viewforum.php?f=3). Прочитайте [этот пост](https://forum.freecadweb.org/viewtopic.php?f=3&t=2264) перед тем как задать вопросы. Помните, что [важная информация](Important_information/ru.md) о Вашей системе необходима для помощи. @@ -40,3 +38,6 @@ We have an [official dedicated FreeCAD Discord server](https://discord.gg/NpMefp [Category:Help](Category:Help.md) + +--- +[documentation index](../README.md) > [Help](Category:Help.md) > Help/ru diff --git a/wiki/translations/ru/Help_FreeCAD.md b/wiki/translations/ru/Help_FreeCAD.md index 05952c0cb0..cc361b9501 100644 --- a/wiki/translations/ru/Help_FreeCAD.md +++ b/wiki/translations/ru/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/ru - - ## Вступление @@ -85,3 +83,6 @@ [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command Reference]] перечислены и документированы все ](Category:Command Reference]] перечислены и документированы все .md) > Help FreeCAD/ru diff --git a/wiki/translations/ru/History.md b/wiki/translations/ru/History.md index 219b2fb469..dae3adb130 100644 --- a/wiki/translations/ru/History.md +++ b/wiki/translations/ru/History.md @@ -1,5 +1,5 @@ # History/ru - \_\_FORCETOC\_\_ +\_\_FORCETOC\_\_
@@ -168,3 +168,6 @@ In April 2019 the team of core developers was expanded: Jürgen, Werner and Yori - [Announcing FreeCAD Project](http://www.opencascade.org/org/forum/thread_6572/?forum=11) on the OpenCascade forum [Category:News](Category:News.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > History/ru diff --git a/wiki/translations/ru/How_to_install_additional_workbenches.md b/wiki/translations/ru/How_to_install_additional_workbenches.md index 91e44bdf3c..3b66821dd7 100644 --- a/wiki/translations/ru/How_to_install_additional_workbenches.md +++ b/wiki/translations/ru/How_to_install_additional_workbenches.md @@ -1,7 +1,4 @@ # How to install additional workbenches/ru - - -
@@ -177,3 +174,6 @@ For the sake of this example, say you\'ve chosen the [Curves Workbench](Curves_W {{Powerdocnavi}} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External Workbenches](Category:External Workbenches.md) > How to install additional workbenches/ru diff --git a/wiki/translations/ru/How_to_install_macros.md b/wiki/translations/ru/How_to_install_macros.md index 82d7924dd6..8aee1c7df2 100644 --- a/wiki/translations/ru/How_to_install_macros.md +++ b/wiki/translations/ru/How_to_install_macros.md @@ -1,5 +1,5 @@ # How to install macros/ru - {{TutorialInfo +{{TutorialInfo |Topic=Programming |Level=Medium programmer |Time=15 minutes @@ -472,3 +472,6 @@ and then press the **OK** button. }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > How to install macros/ru diff --git a/wiki/translations/ru/Image_CreateImagePlane.md b/wiki/translations/ru/Image_CreateImagePlane.md index f3af90e7ce..7e8e36229e 100644 --- a/wiki/translations/ru/Image_CreateImagePlane.md +++ b/wiki/translations/ru/Image_CreateImagePlane.md @@ -7,6 +7,8 @@ SeeAlso:[Image Open](Image_Open/ru.md), [Image Scaling](Image_Scaling/ru.md) --- +# Image CreateImagePlane/ru + ## Описание The [CreateImagePlane](Image_CreateImagePlane.md) tool imports a [bitmap](bitmap.md) image and places it on one of the XY, YZ or XZ planes. @@ -55,4 +57,7 @@ If no offset is given to the image initially, its position can still be adjusted {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image CreateImagePlane/ru diff --git a/wiki/translations/ru/Image_Module.md b/wiki/translations/ru/Image_Module.md index ed087251d9..39426beaf7 100644 --- a/wiki/translations/ru/Image_Module.md +++ b/wiki/translations/ru/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/ru 1. REDIRECT [Image\_Workbench/ru](Image_Workbench/ru.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/ru diff --git a/wiki/translations/ru/Image_Open.md b/wiki/translations/ru/Image_Open.md index 7e9c97041c..3841f2a4f6 100644 --- a/wiki/translations/ru/Image_Open.md +++ b/wiki/translations/ru/Image_Open.md @@ -7,6 +7,8 @@ SeeAlso:[Image plane](Image_CreateImagePlane/ru.md), [Image Scaling](Image_Scaling/ru.md) --- +# Image Open/ru + ## Описание The [Image Open](Image_Open.md) tool simply opens an image from your system in a new tab in the viewport. @@ -36,4 +38,7 @@ The image is placed in a new viewport, not in the 3D view. {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Open/ru diff --git a/wiki/translations/ru/Image_Scaling.md b/wiki/translations/ru/Image_Scaling.md index 4166a1443b..852354e064 100644 --- a/wiki/translations/ru/Image_Scaling.md +++ b/wiki/translations/ru/Image_Scaling.md @@ -9,6 +9,8 @@ SeeAlso:[Open image](Image_Open/ru.md), [Image plane](Image_CreateImagePlane/ru.md) --- +# Image Scaling/ru +
@@ -36,4 +38,7 @@ The [Image Scaling](Image_Scaling.md) tool scales an image that was imported wit {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Scaling/ru diff --git a/wiki/translations/ru/Image_Workbench.md b/wiki/translations/ru/Image_Workbench.md index 20faafb688..e4cf66655d 100644 --- a/wiki/translations/ru/Image_Workbench.md +++ b/wiki/translations/ru/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/ru - - -Логотип верстака Image +# Логотип верстака Image Image Workbench/ru ## Введение @@ -42,3 +39,6 @@ }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/ru diff --git a/wiki/translations/ru/Import.md b/wiki/translations/ru/Import.md index 9b9178007e..2f36864478 100644 --- a/wiki/translations/ru/Import.md +++ b/wiki/translations/ru/Import.md @@ -1,7 +1,4 @@ # Import/Export IFC - compiling IfcOpenShell/ru - - -
@@ -139,3 +136,6 @@ Cheers [Category:BIM](Category:BIM.md) [Category:Arch](Category:Arch.md) [Category:3rd Party](Category:3rd_Party.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Import/Export IFC - compiling IfcOpenShell/ru diff --git a/wiki/translations/ru/Import_Export.md b/wiki/translations/ru/Import_Export.md index 5d6e6b1519..3d92aa7624 100644 --- a/wiki/translations/ru/Import_Export.md +++ b/wiki/translations/ru/Import_Export.md @@ -1,9 +1,4 @@ # Import Export/ru - - - - - ## Введение Эта страница содержит описание различных форматов файлов, которые FreeCAD может импортировать и экспортировать. Для полноты картины в список включен и собственный формат FreeCAD. Для описания некоторых форматов есть отдельные соответствующие вики-страницы, на которые можно перейти, нажав на расширение в первой колонке. @@ -144,3 +139,6 @@ [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export/ru diff --git a/wiki/translations/ru/Import_Export_Preference.md b/wiki/translations/ru/Import_Export_Preference.md index b4b1deecce..7b2b6bce81 100644 --- a/wiki/translations/ru/Import_Export_Preference.md +++ b/wiki/translations/ru/Import_Export_Preference.md @@ -1,2 +1,5 @@ # Import Export Preference/ru 1. REDIRECT [Import Export Preferences/ru](Import_Export_Preferences/ru.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preference/ru diff --git a/wiki/translations/ru/Import_Export_Preferences.md b/wiki/translations/ru/Import_Export_Preferences.md index 59d8d1f21c..2bc3f83989 100644 --- a/wiki/translations/ru/Import_Export_Preferences.md +++ b/wiki/translations/ru/Import_Export_Preferences.md @@ -1,10 +1,4 @@ # Import Export Preferences/ru - - - - - - {{TOCright}} ## Введение @@ -627,3 +621,6 @@ For the VTK format you can specify the following: [Category:Common Questions](Category:Common_Questions.md) [Category:Preferences](Category:Preferences.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preferences/ru diff --git a/wiki/translations/ru/Import_OpenSCAD_code.md b/wiki/translations/ru/Import_OpenSCAD_code.md index a431b81abf..79170994f4 100644 --- a/wiki/translations/ru/Import_OpenSCAD_code.md +++ b/wiki/translations/ru/Import_OpenSCAD_code.md @@ -1,7 +1,4 @@ # Import OpenSCAD code/ru - - - {{TutorialInfo/ru |Topic= Import OpenSCAD code |Level= Beginner @@ -50,3 +47,6 @@ Here we will use the example005.scad file from the (old) OpenSCAD examples, but - [Import Export Preferences](Import_Export_Preferences.md) [Category:OpenSCAD](Category:OpenSCAD.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import OpenSCAD code/ru diff --git a/wiki/translations/ru/Import_from_STL_or_OBJ.md b/wiki/translations/ru/Import_from_STL_or_OBJ.md index e752e2930d..fd9e27cc00 100644 --- a/wiki/translations/ru/Import_from_STL_or_OBJ.md +++ b/wiki/translations/ru/Import_from_STL_or_OBJ.md @@ -1,5 +1,5 @@ # Import from STL or OBJ/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic= Import from STL or OBJ |Level= Beginner |Time= 30 minutes @@ -101,3 +101,6 @@ Since the created solid has no history and no editable features (like a simple c [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import from STL or OBJ/ru diff --git a/wiki/translations/ru/Import_text_and_geometry_from_Inkscape.md b/wiki/translations/ru/Import_text_and_geometry_from_Inkscape.md index 958dc57510..ff01465303 100644 --- a/wiki/translations/ru/Import_text_and_geometry_from_Inkscape.md +++ b/wiki/translations/ru/Import_text_and_geometry_from_Inkscape.md @@ -1,5 +1,5 @@ # Import text and geometry from Inkscape/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic= Import text and geometry from Inkscape |Level= Beginner |Time= 30 minutes @@ -50,6 +50,5 @@ Since inkscape and FreeCAD seem to have different approaches on how to apply dim Thanks to users \"freecad-heini-1\" and \"herbk\" for testing and providing valuable feedback. - - - +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import text and geometry from Inkscape/ru diff --git a/wiki/translations/ru/Important_information.md b/wiki/translations/ru/Important_information.md index 860e60b103..741f6b4410 100644 --- a/wiki/translations/ru/Important_information.md +++ b/wiki/translations/ru/Important_information.md @@ -1,6 +1,4 @@ # Important information/ru - - ## Обзор [Important information](Important_information.md) helps troubleshoot problems in your installation and usage of the program. @@ -22,5 +20,5 @@ *align=center|Window with the "[About](Std_About.md)" information in the software. Do not take a picture of this window;
Click the **Copy to clipboard* button to be able to paste the information with your help request.** - - +--- +[documentation index](../README.md) > Important information/ru diff --git a/wiki/translations/ru/Inspection_Workbench.md b/wiki/translations/ru/Inspection_Workbench.md index 555f132022..ee5749644c 100644 --- a/wiki/translations/ru/Inspection_Workbench.md +++ b/wiki/translations/ru/Inspection_Workbench.md @@ -1,7 +1,4 @@ -# Inspection Workbench/ru - - -Логотип верстака Inspection +# Логотип верстака Inspection Inspection Workbench/ru ## Введение @@ -27,3 +24,6 @@ [Category:Inspection](Category:Inspection.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Inspection Workbench/ru diff --git a/wiki/translations/ru/Install_on_Linux.md b/wiki/translations/ru/Install_on_Linux.md index 5fd7382294..b450a8e72d 100644 --- a/wiki/translations/ru/Install_on_Linux.md +++ b/wiki/translations/ru/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/ru 1. REDIRECT [Installing\_on\_Linux/ru](Installing_on_Linux/ru.md) + +--- +[documentation index](../README.md) > Install on Linux/ru diff --git a/wiki/translations/ru/Install_on_Mac.md b/wiki/translations/ru/Install_on_Mac.md index 46f01f67a2..86fc0f12ab 100644 --- a/wiki/translations/ru/Install_on_Mac.md +++ b/wiki/translations/ru/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/ru 1. REDIRECT [Installing\_on\_Mac/ru](Installing_on_Mac/ru.md) + +--- +[documentation index](../README.md) > Install on Mac/ru diff --git a/wiki/translations/ru/Install_on_Unix.md b/wiki/translations/ru/Install_on_Unix.md index e66558c4ee..9dd772c5a5 100644 --- a/wiki/translations/ru/Install_on_Unix.md +++ b/wiki/translations/ru/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/ru 1. REDIRECT [Installing\_on\_Linux/ru](Installing_on_Linux/ru.md) + +--- +[documentation index](../README.md) > Install on Unix/ru diff --git a/wiki/translations/ru/Install_on_Windows.md b/wiki/translations/ru/Install_on_Windows.md index 6a4388d45f..2439ab2194 100644 --- a/wiki/translations/ru/Install_on_Windows.md +++ b/wiki/translations/ru/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/ru 1. REDIRECT [Installing\_on\_Windows/ru](Installing_on_Windows/ru.md) + +--- +[documentation index](../README.md) > Install on Windows/ru diff --git a/wiki/translations/ru/Installing.md b/wiki/translations/ru/Installing.md index f1cff2fe93..a183dca529 100644 --- a/wiki/translations/ru/Installing.md +++ b/wiki/translations/ru/Installing.md @@ -1,2 +1,5 @@ # Installing/ru 1. REDIRECT [Installing\_additional\_components/ru](Installing_additional_components/ru.md) + +--- +[documentation index](../README.md) > Installing/ru diff --git a/wiki/translations/ru/Installing_Helpfile.md b/wiki/translations/ru/Installing_Helpfile.md index 714fcfae60..38c8d0c6f9 100644 --- a/wiki/translations/ru/Installing_Helpfile.md +++ b/wiki/translations/ru/Installing_Helpfile.md @@ -1,6 +1,4 @@ # Installing Helpfile/ru - - ## Файлы помощи FreeCAD The FreeCAD offline documentation is built from the FreeCAD wiki by using scripts. It has grown to a file size over 220 MB. These big files are not part of installers and executables of FreeCAD, but can be installed separately as documented here. @@ -45,5 +43,5 @@ Difficulties may arise when trying to install the documentation packages on Ubun - Alternatively, you can instead get the development versions of the {{FileName|freecad.qhc}} and {{FileName|freecad.qch}} help files from [GitHub](https://github.com/FreeCAD/FreeCAD/tree/master/src/Doc). You will need to [concatenate](http://man7.org/linux/man-pages/man1/cat.1.html) the .part files together: `cat freecad.qch.part00 freecad.qch.part01 freecad.qch.part02 freecad.qch.part03 > freecad.qch`. - With administrative privileges (e.g., `sudo`), copy or move {{FileName|freecad.qhc}} and {{FileName|freecad.qch}} to {{FileName|/usr/share/doc/freecad-doc/}}. If you are using `freecad-daily`, this will instead be {{FileName|/usr/share/doc/freecad-daily-doc/}}. - - +--- +[documentation index](../README.md) > Installing Helpfile/ru diff --git a/wiki/translations/ru/Installing_additional_components.md b/wiki/translations/ru/Installing_additional_components.md index 68d87d2c5a..785f4253dd 100644 --- a/wiki/translations/ru/Installing_additional_components.md +++ b/wiki/translations/ru/Installing_additional_components.md @@ -1,10 +1,4 @@ # Installing additional components/ru - - - - - - {{TOCright}} # Введение @@ -141,3 +135,6 @@ FreeCAD имеет собственный импортер/экспортер ф [Category:User Documentation/ru](Category:User_Documentation/ru.md) + +--- +[documentation index](../README.md) > Installing additional components/ru diff --git a/wiki/translations/ru/Installing_more_workbenches.md b/wiki/translations/ru/Installing_more_workbenches.md index 169b878ab1..57d38c6156 100644 --- a/wiki/translations/ru/Installing_more_workbenches.md +++ b/wiki/translations/ru/Installing_more_workbenches.md @@ -1,6 +1,4 @@ # Installing more workbenches/ru - - ## Введение Начиная с v0.17 легко добавить [внешний верстак](external_workbenches/ru.md), используя [Addon Manager](Std_AddonMgr/ru.md). Обычному пользователю ничего не требуется кроме использования этого инструмента. @@ -48,3 +46,6 @@ Copy the workbench folder into `$USER_DIR/Mod/`, where `$USER_DIR` is the FreeCA }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Installing more workbenches/ru diff --git a/wiki/translations/ru/Installing_on_Linux.md b/wiki/translations/ru/Installing_on_Linux.md index f234d7686d..355150c381 100644 --- a/wiki/translations/ru/Installing_on_Linux.md +++ b/wiki/translations/ru/Installing_on_Linux.md @@ -1,9 +1,4 @@ # Installing on Linux/ru - - - - - ## Обзор @@ -389,3 +384,6 @@ The package name is case sensitive, so try \FreeCAD\ as well as \freecad\. If th [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/ru diff --git a/wiki/translations/ru/Installing_on_Mac.md b/wiki/translations/ru/Installing_on_Mac.md index 049c574f11..7c8609dd33 100644 --- a/wiki/translations/ru/Installing_on_Mac.md +++ b/wiki/translations/ru/Installing_on_Mac.md @@ -1,9 +1,4 @@ # Installing on Mac/ru - - - - - FreeCAD можно установить на macOS из пакета .dmg, который вы можете просто перетащить в вашу папку приложений: @@ -52,8 +47,5 @@ brew install freecad Если вы установили FreeCAD вместе с homebrew, просто используйте команду `brew uninstall freecad`. Это все, что требуется. - - - - - +--- +[documentation index](../README.md) > Installing on Mac/ru diff --git a/wiki/translations/ru/Installing_on_Windows.md b/wiki/translations/ru/Installing_on_Windows.md index 827a882ae0..7a1fe3e15a 100644 --- a/wiki/translations/ru/Installing_on_Windows.md +++ b/wiki/translations/ru/Installing_on_Windows.md @@ -1,9 +1,4 @@ # Installing on Windows/ru - - - - - Наиболее лёгкий способ установить FreeCAD под Windows - это загрузить одну из программ установки по ссылке ниже. @@ -191,8 +186,5 @@ msiexec /i Y:\\software\\FreeCAD.msi FreeCAD работает, но сообщается, что OpenGL дисплей не работает, как и другие программы, работающие под [Wine](wikipedia:Wine_(software).md), то есть Google [SketchUp](wikipedia:SketchUp.md). - - - - - +--- +[documentation index](../README.md) > Installing on Windows/ru diff --git a/wiki/translations/ru/Interface.md b/wiki/translations/ru/Interface.md index 951ee6525c..425627c14a 100644 --- a/wiki/translations/ru/Interface.md +++ b/wiki/translations/ru/Interface.md @@ -1,5 +1,5 @@ # Interface/ru - {{TOCright}} +{{TOCright}} ## Введение @@ -79,4 +79,7 @@ Toolbars can have more or fewer buttons, and custom toolbars can be created with {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Interface/ru diff --git a/wiki/translations/ru/Interface_Customization.md b/wiki/translations/ru/Interface_Customization.md index 65ffc6ab92..726657644d 100644 --- a/wiki/translations/ru/Interface_Customization.md +++ b/wiki/translations/ru/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/ru - - - - - - {{TOCright}} ## Введение @@ -285,4 +279,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/ru diff --git a/wiki/translations/ru/Interface_creation.md b/wiki/translations/ru/Interface_creation.md index 2b7463e546..455f26d67e 100644 --- a/wiki/translations/ru/Interface_creation.md +++ b/wiki/translations/ru/Interface_creation.md @@ -1,6 +1,4 @@ # Interface creation/ru - - ## Введение Power users have the possibility of [creating interfaces](Interface_creation.md) to help them produce complex tools for their custom [addons](Addon.md), such as [macros](Macros.md) or full [workbenches](Workbenches.md). @@ -43,3 +41,6 @@ In this method the entire interface is defined by several Python calls. }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Interface creation/ru diff --git a/wiki/translations/ru/Introduction_to_Python.md b/wiki/translations/ru/Introduction_to_Python.md index fe5728c55b..3534ca71c8 100644 --- a/wiki/translations/ru/Introduction_to_Python.md +++ b/wiki/translations/ru/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/ru - - - {{TOCright}} ## Введение @@ -501,3 +498,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/ru diff --git a/wiki/translations/ru/Lattice2_Workbench.md b/wiki/translations/ru/Lattice2_Workbench.md index 299cf4d706..6b5dfe219c 100644 --- a/wiki/translations/ru/Lattice2_Workbench.md +++ b/wiki/translations/ru/Lattice2_Workbench.md @@ -1,5 +1,5 @@ # Lattice2 Workbench/ru - } +} *align=center|Иконка внешнего верстака FreeCAD Lattice2* ## Введение @@ -155,3 +155,6 @@ After you install the workbench, it should appear at the bottom of list of workb [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Lattice2 Workbench/ru diff --git a/wiki/translations/ru/Licence.md b/wiki/translations/ru/Licence.md index 58c4bd20b2..e9f6bc8259 100644 --- a/wiki/translations/ru/Licence.md +++ b/wiki/translations/ru/Licence.md @@ -1,10 +1,4 @@ # Licence/ru - - - - - - {{TOCright}} ## Используемые Лицензии FreeCAD @@ -88,3 +82,6 @@ FreeCAD это смесь из библиотек и приложений, та [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Licence/ru diff --git a/wiki/translations/ru/Line_drawing_function.md b/wiki/translations/ru/Line_drawing_function.md index 26d0d28bb3..9906441ec1 100644 --- a/wiki/translations/ru/Line_drawing_function.md +++ b/wiki/translations/ru/Line_drawing_function.md @@ -1,7 +1,4 @@ # Line drawing function/ru - - - {{TOCright}} ## Введение @@ -453,3 +450,6 @@ FreeCADGui.addCommand('line', line()) Don\'t hesitate to ask questions or share ideas on the [forum](https://forum.freecadweb.org/)! {{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Line drawing function/ru diff --git a/wiki/translations/ru/Linux_packaging.md b/wiki/translations/ru/Linux_packaging.md index 8fa6c26f06..e2759541f1 100644 --- a/wiki/translations/ru/Linux_packaging.md +++ b/wiki/translations/ru/Linux_packaging.md @@ -1,6 +1,4 @@ # Linux packaging/ru - - Linux allows packaging in different ways depending on the specific distribution used. Popular formats are Debian packages `.deb`, openSuse and Fedora packages `.rpm`, and the quasi-universal `.AppImage` format. @@ -17,3 +15,6 @@ for Windows and MacOS, see [Packaging](Packaging.md). [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Packaging](Category:Packaging.md) > Linux packaging/ru diff --git a/wiki/translations/ru/List_of_Commands.md b/wiki/translations/ru/List_of_Commands.md index 1d67c155d0..cac1f24504 100644 --- a/wiki/translations/ru/List_of_Commands.md +++ b/wiki/translations/ru/List_of_Commands.md @@ -1,2 +1,5 @@ # List of Commands/ru 1. REDIRECT [:Category:Command Reference/ru](:Category:Command_Reference/ru.md) + +--- +[documentation index](../README.md) > List of Commands/ru diff --git a/wiki/translations/ru/Localisation.md b/wiki/translations/ru/Localisation.md index 34e10de2d2..4a719c32c1 100644 --- a/wiki/translations/ru/Localisation.md +++ b/wiki/translations/ru/Localisation.md @@ -1,10 +1,4 @@ # Localisation/ru - - - - - - {{TOCright}} ## Обзор @@ -263,3 +257,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/ru diff --git a/wiki/translations/ru/Localisation_Sidebar.md b/wiki/translations/ru/Localisation_Sidebar.md index 7f466febcf..617d765044 100644 --- a/wiki/translations/ru/Localisation_Sidebar.md +++ b/wiki/translations/ru/Localisation_Sidebar.md @@ -1,5 +1,5 @@ # Localisation Sidebar/ru - [Localisation](Localisation.md) is the process of providing software with a multiple language user interface. The documentation wiki can also be localized, as described in section [Translate the FreeCAD wiki](Localisation#Translate_the_FreeCAD_wiki.md). +[Localisation](Localisation.md) is the process of providing software with a multiple language user interface. The documentation wiki can also be localized, as described in section [Translate the FreeCAD wiki](Localisation#Translate_the_FreeCAD_wiki.md). The sidebar is an important navigation tool in the wiki world, see [Manual:Interface/Sidebar](http://www.mediawiki.org/wiki/Manual:Interface/Sidebar) for more information. @@ -32,3 +32,6 @@ Do not add the language codes \"/fr\", \"/de\", \"/es\", \"/ru\", etc., if the t [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation Sidebar/ru diff --git a/wiki/translations/ru/LuxRender.md b/wiki/translations/ru/LuxRender.md index b9a2519a34..d52ddd993a 100644 --- a/wiki/translations/ru/LuxRender.md +++ b/wiki/translations/ru/LuxRender.md @@ -1,7 +1,4 @@ # LuxRender/ru - - - **LuxRender is no longer in development as the project has been rebooted as [LuxCoreRender](LuxCoreRender.md) with a major code rewriting and a lot of compatibility breaking changes. The information here is provided because by default FreeCAD is still shipped (as of 0.19-24276) with the [Raytracing Workbench](Raytracing_Workbench.md), that officially only supports LuxRender. Anyway it also seem to work with [LuxCoreRender](LuxCoreRender.md), so consider giving it a try before using LuxRender** # Description @@ -58,3 +55,6 @@ There is no development version of LuxRender, as development has been halted in ## Render Workbench The [Render Workbench](https://github.com/FreeCAD/FreeCAD-render) has dropped support for LuxRender, as it is outdated. It supports instead the modern reboot [LuxCoreRender](LuxCoreRender.md). + +--- +[documentation index](../README.md) > LuxRender/ru diff --git a/wiki/translations/ru/Macro_Align_Camera_to_Working_Plane.md b/wiki/translations/ru/Macro_Align_Camera_to_Working_Plane.md index 6ebc822c3c..4b3682a1a1 100644 --- a/wiki/translations/ru/Macro_Align_Camera_to_Working_Plane.md +++ b/wiki/translations/ru/Macro_Align_Camera_to_Working_Plane.md @@ -1,7 +1,4 @@ # Macro Align Camera to Working Plane/ru - - - {{Macro |Name=Macro Align Camera to Working Plane |Icon=Macro_Align_Camera_to_Working_Plane.png @@ -37,6 +34,5 @@ r = FreeCAD.DraftWorkingPlane.getRotation().Rotation.Q c.orientation.setValue(r) ``` - - - +--- +[documentation index](../README.md) > Macro Align Camera to Working Plane/ru diff --git a/wiki/translations/ru/Macro_Align_Face_Object_to_View.md b/wiki/translations/ru/Macro_Align_Face_Object_to_View.md index a1a0f3b60b..94545104c9 100644 --- a/wiki/translations/ru/Macro_Align_Face_Object_to_View.md +++ b/wiki/translations/ru/Macro_Align_Face_Object_to_View.md @@ -1,7 +1,4 @@ # Macro Align Face Object to View/ru - - - {{Macro |Name=Macro Align Face Object to View |Icon=Macro_Align_Face_Object_to_View.png @@ -55,6 +52,5 @@ except Exception: Original macro by wmayer [Looking for some helpful GUI-commands](http://forum.freecadweb.org/viewtopic.php?f=3&t=7029&p=56735&hilit=Shape.Face4#p56735) - - - +--- +[documentation index](../README.md) > Macro Align Face Object to View/ru diff --git a/wiki/translations/ru/Macro_Align_Object_to_View.md b/wiki/translations/ru/Macro_Align_Object_to_View.md index 427716a33e..5b9d5a24f7 100644 --- a/wiki/translations/ru/Macro_Align_Object_to_View.md +++ b/wiki/translations/ru/Macro_Align_Object_to_View.md @@ -1,5 +1,5 @@ # Macro Align Object to View/ru - {{Macro +{{Macro |Name=Macro Align Object to View |Icon=Macro_Align_Object_to_View.png |Description=This macro aligns the selected object to the current View. @@ -74,6 +74,5 @@ Image:Macro Align Object to View 03.png\|Select the object and run the macro (th rentlau\_64 провел упрощение кода. - - - +--- +[documentation index](../README.md) > Macro Align Object to View/ru diff --git a/wiki/translations/ru/Macro_Align_View_to_Face.md b/wiki/translations/ru/Macro_Align_View_to_Face.md index f4fae5c6bb..05aa18e2fe 100644 --- a/wiki/translations/ru/Macro_Align_View_to_Face.md +++ b/wiki/translations/ru/Macro_Align_View_to_Face.md @@ -1,5 +1,5 @@ # Macro Align View to Face/ru - {{Macro +{{Macro |Name=Macro Align View to Face |Icone=Macro_Align_View_to_Face.png |Description=This macro aligns the current view to a selected face @@ -70,3 +70,6 @@ cam.orientation.setValue(rot.Q) Gui.SendMsgToActiveView("ViewSelection") }} + +--- +[documentation index](../README.md) > Macro Align View to Face/ru diff --git a/wiki/translations/ru/Macro_Align_Working_Plane_to_Camera.md b/wiki/translations/ru/Macro_Align_Working_Plane_to_Camera.md index 83afc9aa37..8114f1d677 100644 --- a/wiki/translations/ru/Macro_Align_Working_Plane_to_Camera.md +++ b/wiki/translations/ru/Macro_Align_Working_Plane_to_Camera.md @@ -1,7 +1,4 @@ # Macro Align Working Plane to Camera/ru - - - {{Macro |Name=Macro Align Working Plane to Camera |Icon=Macro_Align_Working_Plane_to_Camera.png @@ -38,6 +35,5 @@ FreeCAD.DraftWorkingPlane.position = pos FreeCADGui.Snapper.setGrid() ``` - - - +--- +[documentation index](../README.md) > Macro Align Working Plane to Camera/ru diff --git a/wiki/translations/ru/Macro_BoundingBox_Tracing.md b/wiki/translations/ru/Macro_BoundingBox_Tracing.md index 429f0e31af..001eb0a69a 100644 --- a/wiki/translations/ru/Macro_BoundingBox_Tracing.md +++ b/wiki/translations/ru/Macro_BoundingBox_Tracing.md @@ -1,5 +1,5 @@ # Macro BoundingBox Tracing/ru - {{Macro +{{Macro |Name=Macro BoundingBox Tracing |Icon=BoundBoxTracing.png |Description=Creates a red outline of the BoundingBox (6 Faces with 6 rectangles) of an object, display the dimension of the rectangle, create volume of boundBox. @@ -461,3 +461,6 @@ ver 0.6 le 08/08/2017: add text info dimension , contener for rectangles, info r ver 0.5 le 08/05/2017 : upgrade now accept the \"mesh\" and \"Points\" thanks wmayer [Makro Bounding-Box für STL importierte Teile und für Punktewolken](http://forum.freecadweb.org/viewtopic.php?f=13&t=22331) ver 0.4 le 04/06/2016 : test if value = 0 then not create boundbox (ex: object Draft) + +--- +[documentation index](../README.md) > Macro BoundingBox Tracing/ru diff --git a/wiki/translations/ru/Macro_FCCamera.md b/wiki/translations/ru/Macro_FCCamera.md index 0abd971e99..f2567b076b 100644 --- a/wiki/translations/ru/Macro_FCCamera.md +++ b/wiki/translations/ru/Macro_FCCamera.md @@ -1,5 +1,5 @@ # Macro FCCamera/ru - {{Macro +{{Macro |Name=Macro FCCamera |Icon=FCCamera_00.png |Description={{ColoredText|#ff0000|#ffffff|New version GUI modifyed for the HD dpi (QGridLayout) run only FC version 0.18 and more (PySide2 Qt5)}}

@@ -213,3 +213,6 @@ App.Console.PrintMessage("Path locality to FCCamera.....images.png [ " +  - **ver 0.3 18/03/2015 :** modify line 492 replace \"**pl.Base = App.Vector(0,0,0)**\" to \"**pl.Base = sel\[0\].Placement.Base**\" now no longer moves the form at point (0,0,0) and leaves has the coordinates - **ver 0.2 25/02/2015 :** correct names files in for compatibility Linux (case sensitive) thanks microelly2 + +--- +[documentation index](../README.md) > Macro FCCamera/ru diff --git a/wiki/translations/ru/Macro_FCInfo.md b/wiki/translations/ru/Macro_FCInfo.md index 916d1548c0..17855bd7aa 100644 --- a/wiki/translations/ru/Macro_FCInfo.md +++ b/wiki/translations/ru/Macro_FCInfo.md @@ -1,5 +1,5 @@ # Macro FCInfo/ru - {{Macro/ru +{{Macro/ru |Name=Macro FCInfo |Translate=Macro FCInfo |Icon=FCInfo.png @@ -329,6 +329,5 @@ In a Linux distribution and in the case of an error of **\"ordinal not in range Вы можете поделиться своими комментариями на форуме [Info Workbench - Help with icons please.](http://forum.freecadweb.org/viewtopic.php?f=10&t=3185) Здесь еще один пост [FCInfo Macro](http://forum.freecadweb.org/viewtopic.php?f=8&t=6005) - - - +--- +[documentation index](../README.md) > Macro FCInfo/ru diff --git a/wiki/translations/ru/Macro_GMSH.md b/wiki/translations/ru/Macro_GMSH.md index 42adda19b7..5080218404 100644 --- a/wiki/translations/ru/Macro_GMSH.md +++ b/wiki/translations/ru/Macro_GMSH.md @@ -1,7 +1,4 @@ # Macro GMSH/ru - - -
@@ -44,4 +41,7 @@ ToolBar Icon ![](images/Macro_GMSH.png ) Страница обсуждения [макроса GMSH](http://forum.freecadweb.org/viewtopic.php?t=11182) -[Смотрите использование макроса на YouTube (англ).](https://www.youtube.com/watch?v=ZcG5EEUe3yc) +[Смотрите использование макроса на YouTube (англ).](https://www.youtube.com/watch?v=ZcG5EEUe3yc) + +--- +[documentation index](../README.md) > Macro GMSH/ru diff --git a/wiki/translations/ru/Macro_GuiResetToolbars.md b/wiki/translations/ru/Macro_GuiResetToolbars.md index 98bc3bfc57..4f03f76c58 100644 --- a/wiki/translations/ru/Macro_GuiResetToolbars.md +++ b/wiki/translations/ru/Macro_GuiResetToolbars.md @@ -1,7 +1,4 @@ # Macro GuiResetToolbars/ru - - - {{Macro |Name=GuiResetToolbars |Description=This macro resets the position of the toolbars. Run the macro within a workbench that has a missing toolbar(s). @@ -80,3 +77,6 @@ for i in tb: ## Ссылки Обсуждение на форуме: [Reset toolbar position](https://forum.freecadweb.org/viewtopic.php?f=3&t=45452&p=390034#p389404) + +--- +[documentation index](../README.md) > Macro GuiResetToolbars/ru diff --git a/wiki/translations/ru/Macro_HiddenAlls.md b/wiki/translations/ru/Macro_HiddenAlls.md index 46a0e837c5..9f78e2f21a 100644 --- a/wiki/translations/ru/Macro_HiddenAlls.md +++ b/wiki/translations/ru/Macro_HiddenAlls.md @@ -1,7 +1,4 @@ # Macro HiddenAlls/ru - - - {{Macro |Name=Macro HiddenAlls |Icon=Macro_HiddenAlls.png @@ -42,6 +39,5 @@ except Exception: None ``` - - - +--- +[documentation index](../README.md) > Macro HiddenAlls/ru diff --git a/wiki/translations/ru/Macro_If_Selected_Stay_If_Not_Then_Delete.md b/wiki/translations/ru/Macro_If_Selected_Stay_If_Not_Then_Delete.md index 7614218b57..ea0b129016 100644 --- a/wiki/translations/ru/Macro_If_Selected_Stay_If_Not_Then_Delete.md +++ b/wiki/translations/ru/Macro_If_Selected_Stay_If_Not_Then_Delete.md @@ -1,7 +1,4 @@ # Macro If Selected Stay If Not Then Delete/ru - - - {{Macro |Name=Macro If Selected Stay If Not Then Delete |Icon=Macro_If_Selected_Stay_If_Not_Then_Delete.png @@ -47,6 +44,5 @@ except Exception: ``` - - - +--- +[documentation index](../README.md) > Macro If Selected Stay If Not Then Delete/ru diff --git a/wiki/translations/ru/Macro_MessageBox.md b/wiki/translations/ru/Macro_MessageBox.md index c441723e37..c6d8efc9ee 100644 --- a/wiki/translations/ru/Macro_MessageBox.md +++ b/wiki/translations/ru/Macro_MessageBox.md @@ -1,5 +1,5 @@ # Macro MessageBox/ru - {{Macro +{{Macro |Name=MessageBox |Icon=Macro MessageBox.png |Description=Show how to give information to the user in macros. @@ -65,6 +65,5 @@ Example : "+str(z)+"\nRayon\t : "+str(r)) }} - - - +--- +[documentation index](../README.md) > Macro MessageBox/ru diff --git a/wiki/translations/ru/Macro_Mouse_Cross.md b/wiki/translations/ru/Macro_Mouse_Cross.md index 4108f2599e..34e3180da8 100644 --- a/wiki/translations/ru/Macro_Mouse_Cross.md +++ b/wiki/translations/ru/Macro_Mouse_Cross.md @@ -1,5 +1,5 @@ # Macro Mouse Cross/ru - {{Macro +{{Macro |Name=Macro_Mouse_Cross |Icon=Macro_Mouse_Cross.png |Description=This macro turns the arrow of the mouse in a precision cross. @@ -209,3 +209,6 @@ ArrowCursor, UpArrowCursor, CrossCursor, WaitCursor, IBeamCursor, SizeVerCursor, The cursor can change appearance depending on the used Workbench, he must repeat the operation. The cursor can be subtituer to the other sliders (ex: expansion of a window, corner\...). The grid is permanent. + +--- +[documentation index](../README.md) > Macro Mouse Cross/ru diff --git a/wiki/translations/ru/Macro_MoveToOrigin.md b/wiki/translations/ru/Macro_MoveToOrigin.md index 47138da526..473e0152f6 100644 --- a/wiki/translations/ru/Macro_MoveToOrigin.md +++ b/wiki/translations/ru/Macro_MoveToOrigin.md @@ -1,5 +1,5 @@ # Macro MoveToOrigin/ru - {{Macro +{{Macro |Name=MoveToOrigin |Description=Moves the selected location of an object to the Origin.
This macro translates the [https://wiki.freecadweb.org/Placement Placement] of an object so that a selected location becomes its new origin. This may be useful when imported objects from other formats like STL or STEP are inconveniently located for further processing by FreeCAD. |Author=Edwilliams16 @@ -185,3 +185,6 @@ App.ActiveDocument.recompute() ## Ссылка Обсуждение на форуме [MoveToOrigin Macro](https://forum.freecadweb.org/viewtopic.php?f=22&t=59450) + +--- +[documentation index](../README.md) > Macro MoveToOrigin/ru diff --git a/wiki/translations/ru/Macro_ObjectInfo.md b/wiki/translations/ru/Macro_ObjectInfo.md index 083a8ad192..f21bc2d4d3 100644 --- a/wiki/translations/ru/Macro_ObjectInfo.md +++ b/wiki/translations/ru/Macro_ObjectInfo.md @@ -1,5 +1,5 @@ # Macro ObjectInfo/ru - {{Macro/ru +{{Macro/ru |Name=Macro ObjectInfo |Translate=Macro ObjectInfo |Description=предоставляет информацию о выбранном объекте @@ -48,6 +48,5 @@ webbrowser.open("https://github.com/KeithSloan/FreeCAD_Info/archive/master.zip") С форума[Info Workbench - Help with icons please.](http://forum.freecadweb.org/viewtopic.php?f=10&t=3185) - - - +--- +[documentation index](../README.md) > Macro ObjectInfo/ru diff --git a/wiki/translations/ru/Macro_Rotate_View.md b/wiki/translations/ru/Macro_Rotate_View.md index 1e263904a4..1dadfe7bfd 100644 --- a/wiki/translations/ru/Macro_Rotate_View.md +++ b/wiki/translations/ru/Macro_Rotate_View.md @@ -1,5 +1,5 @@ # Macro Rotate View/ru - {{Macro +{{Macro |Name=Rotate View by 90° |Icon=Macro Rotate View view 90 Degrees.png |Description=This macro rotates the current view by 90° to the left. Only works if you are in [Top view](Std_ViewTop.md). @@ -36,6 +36,5 @@ nrot = cam.orientation.getValue() * rot cam.orientation = nrot }} - - - +--- +[documentation index](../README.md) > Macro Rotate View/ru diff --git a/wiki/translations/ru/Macro_Rotate_ViewAxonometric.md b/wiki/translations/ru/Macro_Rotate_ViewAxonometric.md index decf44646f..c67aaee82a 100644 --- a/wiki/translations/ru/Macro_Rotate_ViewAxonometric.md +++ b/wiki/translations/ru/Macro_Rotate_ViewAxonometric.md @@ -1,5 +1,5 @@ # Macro Rotate ViewAxonometric/ru - {{Macro +{{Macro |Name=Macro Rotate ViewAxonometric |Icon=Macro_Rotate_View_with_Y_pointing_upwards_.png |Description=This macro rotates the current view in ViewAxonometric. @@ -64,6 +64,5 @@ cam.orientation = nrot Gui.SendMsgToActiveView("ViewFit") }} - - - +--- +[documentation index](../README.md) > Macro Rotate ViewAxonometric/ru diff --git a/wiki/translations/ru/Macro_Rotate_View_Free.md b/wiki/translations/ru/Macro_Rotate_View_Free.md index 74219c2f51..0bcaba3c01 100644 --- a/wiki/translations/ru/Macro_Rotate_View_Free.md +++ b/wiki/translations/ru/Macro_Rotate_View_Free.md @@ -1,5 +1,5 @@ # Macro Rotate View Free/ru - {{Macro +{{Macro |Name=Rotate View Free |Icon=Text_console_python.png |Description=This def pasted in the Python console FreeCAD (or your macro) allows you to rotate the view in 3-axis and the angle (in degrees) give interesting to create a plan to a desired position @@ -51,6 +51,5 @@ RotateView(0,1,0,45) If there is not open document an error is returned - - - +--- +[documentation index](../README.md) > Macro Rotate View Free/ru diff --git a/wiki/translations/ru/Macro_Screen_Wiki.md b/wiki/translations/ru/Macro_Screen_Wiki.md index 26b72a8d95..53595e055a 100644 --- a/wiki/translations/ru/Macro_Screen_Wiki.md +++ b/wiki/translations/ru/Macro_Screen_Wiki.md @@ -1,7 +1,4 @@ # Macro Screen Wiki/ru - - - {{Macro |Name=Macro Screen Wiki |Icon=Macro_Screen_Wiki.png @@ -277,3 +274,6 @@ Version=0.03: 2020/10/30 : create a tool bar for the image and new button for un Version=0.02: 2020/05/04 : correct bug color button (self.PB\_01\_Color obsolete) Version=0.01: 2020/03/21 + +--- +[documentation index](../README.md) > Macro Screen Wiki/ru diff --git a/wiki/translations/ru/Macro_Texture.md b/wiki/translations/ru/Macro_Texture.md index 6b4478e8ae..f8f3d56acf 100644 --- a/wiki/translations/ru/Macro_Texture.md +++ b/wiki/translations/ru/Macro_Texture.md @@ -1,7 +1,4 @@ # Macro Texture/ru - - - {{Macro |Name=Macro Texture |Icon=FCTexture.png @@ -284,3 +281,6 @@ The macro FCCreaLoft - ver 0.3 : 28/03/2014 :comment out the line \"**\# self.checkBox\_5.setAccessibleName(\_fromUtf8(\"\"))**\" that causes an error with the version FreeCAD : Version: 0.14.3343 (Git), Python version: 2.7.6, Qt version: 4.8.5 + +--- +[documentation index](../README.md) > Macro Texture/ru diff --git a/wiki/translations/ru/Macro_Texture_Objects.md b/wiki/translations/ru/Macro_Texture_Objects.md index 13dad0f10e..42ba0e7d6d 100644 --- a/wiki/translations/ru/Macro_Texture_Objects.md +++ b/wiki/translations/ru/Macro_Texture_Objects.md @@ -1,5 +1,5 @@ # Macro Texture Objects/ru - {{Macro/ru +{{Macro/ru |Name=Texture Objects |Translate=Текстурные объекты |Icon=Macro_Texture_Objects.png @@ -46,6 +46,5 @@ for obj in FreeCADGui.Selection.getSelection(): [Script to map texture with environement checked](https://forum.freecadweb.org/viewtopic.php?f=3&t=28795) - - - +--- +[documentation index](../README.md) > Macro Texture Objects/ru diff --git a/wiki/translations/ru/Macro_Toggle_Panels_Visibility.md b/wiki/translations/ru/Macro_Toggle_Panels_Visibility.md index 478ffec1ef..93f910aab4 100644 --- a/wiki/translations/ru/Macro_Toggle_Panels_Visibility.md +++ b/wiki/translations/ru/Macro_Toggle_Panels_Visibility.md @@ -1,5 +1,5 @@ # Macro Toggle Panels Visibility/ru - {{Macro +{{Macro |Name=Macro Toggle Panels Visibility |Icon=Macro_Toggle_Views_Visibility.png |Description=This macro toggles the visibility of various supporting views in FreeCAD, allowing the main window to be viewed with all available screen space. @@ -62,6 +62,5 @@ else: }} - - - +--- +[documentation index](../README.md) > Macro Toggle Panels Visibility/ru diff --git a/wiki/translations/ru/Macro_Toggle_Visibility.md b/wiki/translations/ru/Macro_Toggle_Visibility.md index ba85d1c5d9..ce8e28ab22 100644 --- a/wiki/translations/ru/Macro_Toggle_Visibility.md +++ b/wiki/translations/ru/Macro_Toggle_Visibility.md @@ -1,5 +1,5 @@ # Macro Toggle Visibility/ru - {{Macro +{{Macro |Name=Toggle Visibility |Icon=Macro SelectVisible.png |Description=Flip/Flop Hidden/Display all objects not selected.
objects that are selected in a document are made visible while objects that are not selected are made invisible
if no objects are selected then all objects are hidden
if all objects are selected then all objects are made visible @@ -78,3 +78,6 @@ The discussion on the forum [Proposal: select one or more pieces, hide the other ## Version ver 00.02 12/11/2015 **macro Macro\_SelectVisible** : hidden the objects not selected, if not object selected displayed all objects, hidden all objects. This version include the tree macro in one + +--- +[documentation index](../README.md) > Macro Toggle Visibility/ru diff --git a/wiki/translations/ru/Macro_View_Rotation.md b/wiki/translations/ru/Macro_View_Rotation.md index 7a26113e7b..259370dbe5 100644 --- a/wiki/translations/ru/Macro_View_Rotation.md +++ b/wiki/translations/ru/Macro_View_Rotation.md @@ -1,5 +1,5 @@ # Macro View Rotation/ru - {{Macro +{{Macro |Name=Macro View Rotation |Icon=Macro_View_Rotation.png |Description=This GUI allows the view to be rotated with more precision than when using the mouse. Rotation is according to axes fixed with respect to the user and not the objects, though the aim is that the objects rotate about their approximate shared centre rather than the view centre.
@@ -289,3 +289,6 @@ at the end of the function \'initUI\'. The first two arguments (right-300, 0) (l ## Страница обсуждения [View+Rotation](http://forum.freecadweb.org/viewtopic.php?f=3&t=1784&hilit=View+Rotation#p12012) + +--- +[documentation index](../README.md) > Macro View Rotation/ru diff --git a/wiki/translations/ru/Macro_VisibleAlls.md b/wiki/translations/ru/Macro_VisibleAlls.md index 51d3d2be8c..d3a08b1fed 100644 --- a/wiki/translations/ru/Macro_VisibleAlls.md +++ b/wiki/translations/ru/Macro_VisibleAlls.md @@ -1,7 +1,4 @@ # Macro VisibleAlls/ru - - - {{Macro |Name=Macro VisibleAlls |Icon=Macro_VisibleAlls.png @@ -42,6 +39,5 @@ except Exception: None ``` - - - +--- +[documentation index](../README.md) > Macro VisibleAlls/ru diff --git a/wiki/translations/ru/Macro_at_Startup.md b/wiki/translations/ru/Macro_at_Startup.md index 55f063f009..a14190ee0d 100644 --- a/wiki/translations/ru/Macro_at_Startup.md +++ b/wiki/translations/ru/Macro_at_Startup.md @@ -1,6 +1,4 @@ # Macro at Startup/ru - - ## Введение @@ -113,3 +111,6 @@ Notice that if the original macro was downloaded through the Addon Manager, it w }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macro at Startup/ru diff --git a/wiki/translations/ru/Macro_documentation.md b/wiki/translations/ru/Macro_documentation.md index 43c8305115..43cc847a4b 100644 --- a/wiki/translations/ru/Macro_documentation.md +++ b/wiki/translations/ru/Macro_documentation.md @@ -1,6 +1,4 @@ # Macro documentation/ru - - ## Описание All macros should be properly documented in the same way [Gui Commands](Gui_Command.md) are documented. They should have an individual wiki page, and should be listed in one of the categories in [Macros recipes](Macros_recipes.md). @@ -200,3 +198,6 @@ To make a macro installable from the [Addon Manager](Addon_Manager.md) it should In order to include the macro there, first it must be reviewed by the FreeCAD community in the [Python scripting and macros](https://forum.freecadweb.org/viewforum.php?f=22) subforum. Once this is done, the FreeCAD-macros repository should be forked, the new macro should be included in a branch, and then the branch should be pushed and merged into the upstream repository. [Category:Macros](Category:Macros.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [Macros](Category:Macros.md) > Macro documentation/ru diff --git a/wiki/translations/ru/Macros.md b/wiki/translations/ru/Macros.md index b97eb1e70f..ece50f28ae 100644 --- a/wiki/translations/ru/Macros.md +++ b/wiki/translations/ru/Macros.md @@ -1,7 +1,4 @@ # Macros/ru - - - {{TOCright}} ## Введение @@ -92,3 +89,6 @@ }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/ru diff --git a/wiki/translations/ru/Main_Page.md b/wiki/translations/ru/Main_Page.md index 025d3fb018..72cfa258aa 100644 --- a/wiki/translations/ru/Main_Page.md +++ b/wiki/translations/ru/Main_Page.md @@ -1,7 +1,4 @@ # Main Page/ru - - -
## Введение @@ -67,3 +64,6 @@ FreeCAD может быть собран на всех платформах с [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/ru diff --git a/wiki/translations/ru/Main_view_area.md b/wiki/translations/ru/Main_view_area.md index 33a1c99bb4..8293488179 100644 --- a/wiki/translations/ru/Main_view_area.md +++ b/wiki/translations/ru/Main_view_area.md @@ -1,6 +1,4 @@ # Main view area/ru - - ## Введение The [main view area](main_view_area.md) is the main widget that holds sub-windows in the [interface](interface.md). It is an instance of Qt\'s [QMdiArea](https://doc.qt.io/qt-5/qmdiarea.html). @@ -19,4 +17,7 @@ The windows in the main view area can be organized with commands located in the {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Main view area/ru diff --git a/wiki/translations/ru/Manipulator.md b/wiki/translations/ru/Manipulator.md index 736dafd54d..22c3b37a62 100644 --- a/wiki/translations/ru/Manipulator.md +++ b/wiki/translations/ru/Manipulator.md @@ -1,5 +1,5 @@ # Manipulator/ru - } +}
@@ -17,3 +17,6 @@ [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Manipulator/ru diff --git a/wiki/translations/ru/Manipulator_Workbench.md b/wiki/translations/ru/Manipulator_Workbench.md index 57a85c0c70..0e339dd572 100644 --- a/wiki/translations/ru/Manipulator_Workbench.md +++ b/wiki/translations/ru/Manipulator_Workbench.md @@ -1,7 +1,4 @@ -# Manipulator Workbench/ru - - -Manipulator workbench icon +# Manipulator workbench icon Manipulator Workbench/ru ## Введение @@ -125,3 +122,6 @@ New workbenches are in development, stay tuned! [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Manipulator Workbench/ru diff --git a/wiki/translations/ru/Manual.md b/wiki/translations/ru/Manual.md index a1dbffb6c1..7fc8e397fb 100644 --- a/wiki/translations/ru/Manual.md +++ b/wiki/translations/ru/Manual.md @@ -1,2 +1,5 @@ # Manual/ru 1. Redirect:[Manual:Introduction/ru](Manual:Introduction/ru.md) + +--- +[documentation index](../README.md) > Manual/ru diff --git a/wiki/translations/ru/Manual:A_gentle_introduction.md b/wiki/translations/ru/Manual:A_gentle_introduction.md index 66fb932054..0c70f3a698 100644 --- a/wiki/translations/ru/Manual:A_gentle_introduction.md +++ b/wiki/translations/ru/Manual:A_gentle_introduction.md @@ -1,7 +1,4 @@ # Manual:A gentle introduction/ru - - -
@@ -134,3 +131,6 @@ box.Placement = otherpla }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:A gentle introduction/ru diff --git a/wiki/translations/ru/Manual:All_workbenches_at_a_glance.md b/wiki/translations/ru/Manual:All_workbenches_at_a_glance.md index de52071d6e..899cfda8a8 100644 --- a/wiki/translations/ru/Manual:All_workbenches_at_a_glance.md +++ b/wiki/translations/ru/Manual:All_workbenches_at_a_glance.md @@ -1,7 +1,4 @@ # Manual:All workbenches at a glance/ru - - -
@@ -200,3 +197,5 @@
+--- +[documentation index](../README.md) > Manual:All workbenches at a glance/ru diff --git a/wiki/translations/ru/Manual:BIM_modeling.md b/wiki/translations/ru/Manual:BIM_modeling.md index 2a61df5927..83dee67a30 100644 --- a/wiki/translations/ru/Manual:BIM_modeling.md +++ b/wiki/translations/ru/Manual:BIM_modeling.md @@ -1,5 +1,5 @@ # Manual:BIM modeling/ru - } +}
@@ -291,3 +291,6 @@ BIM расшифровывается как [Building Information Modeling (Ин }} [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [BIM](Category:BIM.md) > Manual:BIM modeling/ru diff --git a/wiki/translations/ru/Manual:Creating_FEM_analyses.md b/wiki/translations/ru/Manual:Creating_FEM_analyses.md index 21a51a1b80..ca5a5d01e2 100644 --- a/wiki/translations/ru/Manual:Creating_FEM_analyses.md +++ b/wiki/translations/ru/Manual:Creating_FEM_analyses.md @@ -1,7 +1,4 @@ # Manual:Creating FEM analyses/ru - - -
@@ -172,3 +169,6 @@ {{Tutorials navi }} + +--- +[documentation index](../README.md) > Manual:Creating FEM analyses/ru diff --git a/wiki/translations/ru/Manual:Creating_and_manipulating_geometry.md b/wiki/translations/ru/Manual:Creating_and_manipulating_geometry.md index bd44b5a796..4d87f25a06 100644 --- a/wiki/translations/ru/Manual:Creating_and_manipulating_geometry.md +++ b/wiki/translations/ru/Manual:Creating_and_manipulating_geometry.md @@ -1,7 +1,4 @@ # Manual:Creating and manipulating geometry/ru - - - {{Manual:TOC/ru}} В предыдущих главах мы узнали о различных верстаках FreeCAD, и как каждый из них реализует свои собственные инструменты и типы геометрии. То же самое касается работы из кода Python. @@ -237,3 +234,6 @@ Part.show(P) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating and manipulating geometry/ru diff --git a/wiki/translations/ru/Manual:Creating_interface_tools.md b/wiki/translations/ru/Manual:Creating_interface_tools.md index 534d4861e9..c52d4ab567 100644 --- a/wiki/translations/ru/Manual:Creating_interface_tools.md +++ b/wiki/translations/ru/Manual:Creating_interface_tools.md @@ -1,7 +1,4 @@ # Manual:Creating interface tools/ru - - - {{Manual:TOC/ru}} В последних двух главах мы видели как [создать геометрию Part](Manual:Creating_and_manipulating_geometry/ru.md) и [создавать параметрический объекты](Manual:Creating_parametric_objects/ru.md). Чтобы получить полный контроль за FreeCAD, осталось одно: создание инструментов, взаимодействующими с пользователем. @@ -132,3 +129,6 @@ w.BoxHeight.value() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating interface tools/ru diff --git a/wiki/translations/ru/Manual:Creating_parametric_objects.md b/wiki/translations/ru/Manual:Creating_parametric_objects.md index 5921ea1dd4..b2c9306725 100644 --- a/wiki/translations/ru/Manual:Creating_parametric_objects.md +++ b/wiki/translations/ru/Manual:Creating_parametric_objects.md @@ -1,7 +1,4 @@ # Manual:Creating parametric objects/ru - - - {{Manual:TOC/ru}} В [предыдущей главе](Manual:Creating_and_manipulating_geometry/ru.md) мы видели создание геометрии Part, и как показать её на экране присоединением её к \"пустому\" (непараметрическому) объекту документа. Это муторно, когда мы хотим изменить форму объекта. Нам нужно создать новую форму, затем снова приписать её к нашему объекту. @@ -126,3 +123,6 @@ FreeCAD.ActiveDocument.recompute() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Manual:Creating parametric objects/ru diff --git a/wiki/translations/ru/Manual:Creating_renderings.md b/wiki/translations/ru/Manual:Creating_renderings.md index 5c366dfc00..ba807691ae 100644 --- a/wiki/translations/ru/Manual:Creating_renderings.md +++ b/wiki/translations/ru/Manual:Creating_renderings.md @@ -1,7 +1,4 @@ # Manual:Creating renderings/ru - - - {{Manual:TOC/ru}} В разговорах компьютерщиков слово [рендеринг](https://ru.wikipedia.org/wiki/Рендеринг) означает красивое изображение, получаемое из трёхмерной модели. Разумеется, мы можем сказать что трёхмерный вид FreeCAD уже красив. Однако всякий, кто видел современные голливудские картины, знает, что с помощью компьютера возможно создавать изображения, которые почти неотличимы от фотографий. @@ -110,3 +107,6 @@ {{Raytracing Tools navi}} [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials](Category:Tutorials.md) > Manual:Creating renderings/ru diff --git a/wiki/translations/ru/Manual:Generating_2D_drawings.md b/wiki/translations/ru/Manual:Generating_2D_drawings.md index e8610fd2e4..cdc6524f5d 100644 --- a/wiki/translations/ru/Manual:Generating_2D_drawings.md +++ b/wiki/translations/ru/Manual:Generating_2D_drawings.md @@ -1,10 +1,4 @@ # Manual:Generating 2D drawings/ru - - - - - - {{Manual:TOC/ru}} @@ -166,3 +160,6 @@ [Category:Tutorials/ru](Category:Tutorials/ru.md) + +--- +[documentation index](../README.md) > Manual:Generating 2D drawings/ru diff --git a/wiki/translations/ru/Manual:Import_and_export_to_other_filetypes.md b/wiki/translations/ru/Manual:Import_and_export_to_other_filetypes.md index 518a1ab9c8..e9f5b4853a 100644 --- a/wiki/translations/ru/Manual:Import_and_export_to_other_filetypes.md +++ b/wiki/translations/ru/Manual:Import_and_export_to_other_filetypes.md @@ -1,7 +1,4 @@ # Manual:Import and export to other filetypes/ru - - - {{Manual:TOC/ru}} FreeCAD может импортировать и экспортировать во множество типов файлов. Здесь приведён список наиболее важных из них с коротким описанием доступных особенностей: @@ -49,3 +46,6 @@ FreeCAD может импортировать и экспортировать в [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Import and export to other filetypes/ru diff --git a/wiki/translations/ru/Manual:Installing.md b/wiki/translations/ru/Manual:Installing.md index 3a7fb9d951..4e56c96821 100644 --- a/wiki/translations/ru/Manual:Installing.md +++ b/wiki/translations/ru/Manual:Installing.md @@ -1,7 +1,4 @@ # Manual:Installing/ru - - -
@@ -129,3 +126,6 @@ If you are using the Ubuntu operating system, some of the addons above are also
[Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Installing/ru diff --git a/wiki/translations/ru/Manual:Introduction.md b/wiki/translations/ru/Manual:Introduction.md index 136020c349..eacb82fc82 100644 --- a/wiki/translations/ru/Manual:Introduction.md +++ b/wiki/translations/ru/Manual:Introduction.md @@ -1,10 +1,4 @@ # Manual:Introduction/ru - - - - - - {{Manual:TOC/ru}} ![150\|center](images/Crystal_Clear_manual.png ) @@ -19,6 +13,5 @@ FreeCAD это так же фундаментально социальный п Содержимое этого руководства опубликовано под лицензией [Creative Commons 4.0](http://creativecommons.org/licenses/by/4.0/), и может быть свободно использоваться, загружаться, копироваться и модифицироваться. Исходные файлы для этого руководства располагаются на [вики](Main_Page/ru.md), и на оригинальном аккаунте [github](https://github.com/yorikvanhavre/FreeCAD-manual), использовавшего первую версию этой книги. Более простые для чтения версии HTML, PDF, MOBI и EPUB доступны на [GitBook](https://www.gitbook.com/book/yorikvanhavre/a-freecad-manual/details). Так же приготовлена печатная версия. - - - +--- +[documentation index](../README.md) > Manual:Introduction/ru diff --git a/wiki/translations/ru/Manual:Modeling_for_product_design.md b/wiki/translations/ru/Manual:Modeling_for_product_design.md index 67046079f6..1b2819df09 100644 --- a/wiki/translations/ru/Manual:Modeling_for_product_design.md +++ b/wiki/translations/ru/Manual:Modeling_for_product_design.md @@ -1,7 +1,4 @@ # Manual:Modeling for product design/ru - - - {{Manual:TOC/ru}} [Проектирование продукта](https://en.wikipedia.org/wiki/Product_design) изначально было коммерческим термином, но в мире 3D это обычно означает моделирование чего-то, что будет напечатано с помощью [3D-принтера](https://ru.wikipedia.org/wiki/3D_принтер), или, в более общем случае, произведено с помощью машины, будь это объёмный принтера или [станок с ЧПУ](https://ru.wikipedia.org/wiki/Числовое_программное_управление). @@ -155,3 +152,6 @@ If you have trouble to select features hiding part of the model can help. To hid [Category:Tutorials/ru](Category:Tutorials/ru.md) + +--- +[documentation index](../README.md) > Manual:Modeling for product design/ru diff --git a/wiki/translations/ru/Manual:Navigating_in_the_3D_view.md b/wiki/translations/ru/Manual:Navigating_in_the_3D_view.md index 5062b02056..d58b02656c 100644 --- a/wiki/translations/ru/Manual:Navigating_in_the_3D_view.md +++ b/wiki/translations/ru/Manual:Navigating_in_the_3D_view.md @@ -1,7 +1,4 @@ # Manual:Navigating in the 3D view/ru - - -
@@ -142,3 +139,5 @@
+--- +[documentation index](../README.md) > Manual:Navigating in the 3D view/ru diff --git a/wiki/translations/ru/Manual:Parametric_objects.md b/wiki/translations/ru/Manual:Parametric_objects.md index 5d17426d28..7b9e91c0af 100644 --- a/wiki/translations/ru/Manual:Parametric_objects.md +++ b/wiki/translations/ru/Manual:Parametric_objects.md @@ -1,7 +1,4 @@ # Manual:Parametric objects/ru - - -
@@ -59,3 +56,6 @@ FreeCAD спроектирован для параметрического мо
[Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Parametric objects/ru diff --git a/wiki/translations/ru/Manual:Preparing_models_for_3D_printing.md b/wiki/translations/ru/Manual:Preparing_models_for_3D_printing.md index 26bee264b5..59709d4787 100644 --- a/wiki/translations/ru/Manual:Preparing_models_for_3D_printing.md +++ b/wiki/translations/ru/Manual:Preparing_models_for_3D_printing.md @@ -1,7 +1,4 @@ # Manual:Preparing models for 3D printing/ru - - -
@@ -232,3 +229,6 @@ FreeCAD так же предлагает более продвинутый пу
[Category:Path](Category:Path.md) [Category:Mesh](Category:Mesh.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Path](Category:Path.md) > Manual:Preparing models for 3D printing/ru diff --git a/wiki/translations/ru/Manual:Summary.md b/wiki/translations/ru/Manual:Summary.md index 06adf89552..7a894ccfa1 100644 --- a/wiki/translations/ru/Manual:Summary.md +++ b/wiki/translations/ru/Manual:Summary.md @@ -57,3 +57,6 @@ [Category:Manual](Category:Manual.md) + +--- +[documentation index](../README.md) > [Manual](Category:Manual.md) > Manual:Summary/ru diff --git a/wiki/translations/ru/Manual:The_Community.md b/wiki/translations/ru/Manual:The_Community.md index c7846dfb36..cebe550f0e 100644 --- a/wiki/translations/ru/Manual:The_Community.md +++ b/wiki/translations/ru/Manual:The_Community.md @@ -1,7 +1,4 @@ # Manual:The Community/ru - - -
@@ -56,3 +53,5 @@
+--- +[documentation index](../README.md) > Manual:The Community/ru diff --git a/wiki/translations/ru/Manual:The_FreeCAD_Interface.md b/wiki/translations/ru/Manual:The_FreeCAD_Interface.md index efdea43c0b..e7f3bdfc72 100644 --- a/wiki/translations/ru/Manual:The_FreeCAD_Interface.md +++ b/wiki/translations/ru/Manual:The_FreeCAD_Interface.md @@ -1,7 +1,4 @@ # Manual:The FreeCAD Interface/ru - - -
@@ -96,3 +93,5 @@ FreeCAD использует [оболочку Qt](https://ru.wikipedia.org/wiki
+--- +[documentation index](../README.md) > Manual:The FreeCAD Interface/ru diff --git a/wiki/translations/ru/Manual:The_FreeCAD_document.md b/wiki/translations/ru/Manual:The_FreeCAD_document.md index 1ef6061fbe..8a9373ffa7 100644 --- a/wiki/translations/ru/Manual:The_FreeCAD_document.md +++ b/wiki/translations/ru/Manual:The_FreeCAD_document.md @@ -1,7 +1,4 @@ # Manual:The FreeCAD document/ru - - -
@@ -47,3 +44,5 @@
+--- +[documentation index](../README.md) > Manual:The FreeCAD document/ru diff --git a/wiki/translations/ru/Manual:Traditional_2D_drafting.md b/wiki/translations/ru/Manual:Traditional_2D_drafting.md index a404ca8bed..3cf9b5d96e 100644 --- a/wiki/translations/ru/Manual:Traditional_2D_drafting.md +++ b/wiki/translations/ru/Manual:Traditional_2D_drafting.md @@ -1,7 +1,4 @@ # Manual:Traditional 2D drafting/ru - - - {{Manual:TOC/ru}} @@ -138,3 +135,6 @@ [Category:Tutorials](Category:Tutorials.md) [Category:Draft](Category:Draft.md) + +--- +[documentation index](../README.md) > [Tutorials](Category:Tutorials.md) > Manual:Traditional 2D drafting/ru diff --git a/wiki/translations/ru/Manual:Traditional_modeling,_the_CSG_way.md b/wiki/translations/ru/Manual:Traditional_modeling,_the_CSG_way.md index 05b80a3098..5f9fb22eeb 100644 --- a/wiki/translations/ru/Manual:Traditional_modeling,_the_CSG_way.md +++ b/wiki/translations/ru/Manual:Traditional_modeling,_the_CSG_way.md @@ -1,7 +1,4 @@ # Manual:Traditional modeling, the CSG way/ru - - - {{Manual:TOC/ru}} КБГ означает [Конструктивную блочную геометрию (Constructive Solid Geometry, CSG)](https://ru.wikipedia.org/wiki/Конструктивная_сплошная_геометрия), и описывает самый простой способ работы со сплошной трёхмерной геометрией: создание сложных объектов добавкой и удалением кусков в/из сплошных тел с помощью булевых операций, таких как объединение, вычитание или пересечение. @@ -149,3 +146,6 @@ CTRL, выделим один из пересекающих его цилинд [Category:Tutorials/ru](Category:Tutorials/ru.md) + +--- +[documentation index](../README.md) > Manual:Traditional modeling, the CSG way/ru diff --git a/wiki/translations/ru/Manual:Using_spreadsheets.md b/wiki/translations/ru/Manual:Using_spreadsheets.md index a8265ef1cb..72b8b61c51 100644 --- a/wiki/translations/ru/Manual:Using_spreadsheets.md +++ b/wiki/translations/ru/Manual:Using_spreadsheets.md @@ -1,7 +1,4 @@ # Manual:Using spreadsheets/ru - - - {{Manual:TOC/ru}} В FreeCAD есть ещё один интересный для изучения верстак:[Spreadsheet](Spreadsheet_Workbench/ru.md). Этот верстак позволяет создать [Электронную таблицу](https://ru.wikipedia.org/wiki/Электронная_таблица) вроде тех что делаются в [Excel](https://ru.wikipedia.org/wiki/Microsoft_Excel) или [LibreOffice](https://ru.wikipedia.org/wiki/OpenOffice_Calc) прямо в FreeCAD. Эти электронные таблицы затем могут быть наполнены данными, взятыми из вашей модели, и производить некоторые вычисления между значениями. Электронные таблицы могут быть экспортированы в файлы CSV, которые могут импортироваться в любые приложения электронных таблиц. @@ -89,3 +86,6 @@ [Category:Tutorials/ru](Category:Tutorials/ru.md) + +--- +[documentation index](../README.md) > Manual:Using spreadsheets/ru diff --git a/wiki/translations/ru/Manual:What_is_FreeCAD.md b/wiki/translations/ru/Manual:What_is_FreeCAD.md index 8f94b1f0c3..153cbe96e7 100644 --- a/wiki/translations/ru/Manual:What_is_FreeCAD.md +++ b/wiki/translations/ru/Manual:What_is_FreeCAD.md @@ -1,7 +1,4 @@ # Manual:What is FreeCAD/ru - - - {{Manual:TOC/ru}} ![](images/Freecad016_screenshot1.jpg ) @@ -22,6 +19,5 @@ FreeCAD так же пользуется гигантским накаплива - [Возможности](Feature_list/ru.md) - [Screenshots and user cases](http://forum.freecadweb.org/viewforum.php?f=24) - - - +--- +[documentation index](../README.md) > Manual:What is FreeCAD/ru diff --git a/wiki/translations/ru/Material.md b/wiki/translations/ru/Material.md index 543fe112bf..ccc2b5e3fa 100644 --- a/wiki/translations/ru/Material.md +++ b/wiki/translations/ru/Material.md @@ -1,5 +1,5 @@ # Material/ru - } +}
@@ -176,3 +176,6 @@ This section defines material-properties which are related to the visual appeara {{FEM Tools navi}} [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Roadmap](Category:Roadmap.md) [Category:BIM](Category:BIM.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Material/ru diff --git a/wiki/translations/ru/Material_editor.md b/wiki/translations/ru/Material_editor.md index 8381b4d221..84c115dc9c 100644 --- a/wiki/translations/ru/Material_editor.md +++ b/wiki/translations/ru/Material_editor.md @@ -10,6 +10,8 @@ SeeAlso:[Material](Material/ru.md), [Arch SetMaterial](Arch_SetMaterial/ru.md), [FEM tutorial](FEM_tutorial/ru.md) --- +# Material editor/ru +
@@ -85,4 +87,7 @@ MaterialEditor.openEditor() {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Material](Material_Workbench.md) > Material editor/ru diff --git a/wiki/translations/ru/Measurement_Of_Angles_On_Holes.md b/wiki/translations/ru/Measurement_Of_Angles_On_Holes.md index d7dbb4b03e..a6614656ad 100644 --- a/wiki/translations/ru/Measurement_Of_Angles_On_Holes.md +++ b/wiki/translations/ru/Measurement_Of_Angles_On_Holes.md @@ -1,7 +1,4 @@ # Measurement Of Angles On Holes/ru - - - {{TutorialInfo/ru |Topic=TechDraw |Level=Base @@ -41,4 +38,7 @@ The created center line can change. Select the center line and press the button Quadrant points select with from the tool bar. Next select the points as show below and use from the tool bar to create the angle. Other succession create other angles. Is there no catching point on the center line change \"ISO count\" in the properties. -*Above: Succession of selection|center* {{TechDraw Tools navi}} {{Tutorials navi}} +*Above: Succession of selection|center* {{TechDraw Tools navi}} {{Tutorials navi}} + +--- +[documentation index](../README.md) > Measurement Of Angles On Holes/ru diff --git a/wiki/translations/ru/Mesh.md b/wiki/translations/ru/Mesh.md index 7d14a2b7d6..e96684b6af 100644 --- a/wiki/translations/ru/Mesh.md +++ b/wiki/translations/ru/Mesh.md @@ -1,6 +1,4 @@ # Mesh/ru - - ## Введение In FreeCAD the word \"[Mesh](Mesh.md)\" is normally used to refer to a [Mesh MeshObject](Mesh_MeshObject.md) (`Mesh::MeshObject` class), a type of object that defines 3D data but is not a solid \"[Shape](Shape.md)\". @@ -42,3 +40,6 @@ For more information see [FEM Workbench](FEM_Workbench.md) and [FEM Mesh](FEM_Me }} {{FEM Tools navi}} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Mesh/ru diff --git a/wiki/translations/ru/Mesh_BoundingBox.md b/wiki/translations/ru/Mesh_BoundingBox.md index d7128e748a..0727d102f5 100644 --- a/wiki/translations/ru/Mesh_BoundingBox.md +++ b/wiki/translations/ru/Mesh_BoundingBox.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Mesh BoundingBox/ru +
@@ -31,4 +33,7 @@ The **Mesh BoundingBox** command shows the bounding box coordinates of a mesh ob {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh BoundingBox/ru diff --git a/wiki/translations/ru/Mesh_BuildRegularSolid.md b/wiki/translations/ru/Mesh_BuildRegularSolid.md index 52174511c5..49bd1518d3 100644 --- a/wiki/translations/ru/Mesh_BuildRegularSolid.md +++ b/wiki/translations/ru/Mesh_BuildRegularSolid.md @@ -6,6 +6,8 @@ Workbenches:[Mesh](Mesh_Workbench/ru.md) --- +# Mesh BuildRegularSolid/ru + ## Описание The **Mesh BuildRegularSolid** command creates a regular parametric solid mesh object. @@ -152,4 +154,7 @@ Mesh objects created with this command inherit all [Mesh Feature](Mesh_Feature.m {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh BuildRegularSolid/ru diff --git a/wiki/translations/ru/Mesh_Cone.md b/wiki/translations/ru/Mesh_Cone.md index 11520a419a..ac078d60b1 100644 --- a/wiki/translations/ru/Mesh_Cone.md +++ b/wiki/translations/ru/Mesh_Cone.md @@ -1,2 +1,5 @@ # Mesh Cone/ru 1. REDIRECT [Mesh\_BuildRegularSolid/ru](Mesh_BuildRegularSolid/ru.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cone/ru diff --git a/wiki/translations/ru/Mesh_Cube.md b/wiki/translations/ru/Mesh_Cube.md index 6ed5b86f07..6bdf6a1f56 100644 --- a/wiki/translations/ru/Mesh_Cube.md +++ b/wiki/translations/ru/Mesh_Cube.md @@ -1,2 +1,5 @@ # Mesh Cube/ru 1. REDIRECT [Mesh\_BuildRegularSolid/ru](Mesh_BuildRegularSolid/ru.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cube/ru diff --git a/wiki/translations/ru/Mesh_CurvatureInfo.md b/wiki/translations/ru/Mesh_CurvatureInfo.md index e81205c52f..47f93284d3 100644 --- a/wiki/translations/ru/Mesh_CurvatureInfo.md +++ b/wiki/translations/ru/Mesh_CurvatureInfo.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh VertexCurvature](Mesh_VertexCurvature.md) --- +# Mesh CurvatureInfo/ru + ## Description The **Mesh CurvatureInfo** command shows the absolute curvature of [curvature objects](Mesh_VertexCurvature.md) at selected points. @@ -29,4 +31,7 @@ The **Mesh CurvatureInfo** command shows the absolute curvature of [curvature ob {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CurvatureInfo/ru diff --git a/wiki/translations/ru/Mesh_CurvaturePlot.md b/wiki/translations/ru/Mesh_CurvaturePlot.md index 28c63c0284..6bd0165626 100644 --- a/wiki/translations/ru/Mesh_CurvaturePlot.md +++ b/wiki/translations/ru/Mesh_CurvaturePlot.md @@ -1,2 +1,5 @@ # Mesh CurvaturePlot/ru 1. REDIRECT [Mesh\_VertexCurvature/ru](Mesh_VertexCurvature/ru.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh CurvaturePlot/ru diff --git a/wiki/translations/ru/Mesh_Cylinder.md b/wiki/translations/ru/Mesh_Cylinder.md index 79f4572889..035f17950f 100644 --- a/wiki/translations/ru/Mesh_Cylinder.md +++ b/wiki/translations/ru/Mesh_Cylinder.md @@ -1,2 +1,5 @@ # Mesh Cylinder/ru 1. REDIRECT [Mesh\_BuildRegularSolid/ru](Mesh_BuildRegularSolid/ru.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Cylinder/ru diff --git a/wiki/translations/ru/Mesh_Difference.md b/wiki/translations/ru/Mesh_Difference.md index 186ebe8c8f..2ac5af81b0 100644 --- a/wiki/translations/ru/Mesh_Difference.md +++ b/wiki/translations/ru/Mesh_Difference.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Mesh Difference/ru +
@@ -37,4 +39,7 @@ See: [Mesh Feature](Mesh_Feature.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Difference/ru diff --git a/wiki/translations/ru/Mesh_Ellipsoid.md b/wiki/translations/ru/Mesh_Ellipsoid.md index 8bd4a7ea12..50642e2945 100644 --- a/wiki/translations/ru/Mesh_Ellipsoid.md +++ b/wiki/translations/ru/Mesh_Ellipsoid.md @@ -1,2 +1,5 @@ # Mesh Ellipsoid/ru 1. REDIRECT [Mesh\_BuildRegularSolid/ru](Mesh_BuildRegularSolid/ru.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Ellipsoid/ru diff --git a/wiki/translations/ru/Mesh_EvaluateCurvature.md b/wiki/translations/ru/Mesh_EvaluateCurvature.md index 2ee2345976..f805683b53 100644 --- a/wiki/translations/ru/Mesh_EvaluateCurvature.md +++ b/wiki/translations/ru/Mesh_EvaluateCurvature.md @@ -1,2 +1,5 @@ # Mesh EvaluateCurvature/ru 1. REDIRECT [Mesh\_CurvatureInfo/ru](Mesh_CurvatureInfo/ru.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateCurvature/ru diff --git a/wiki/translations/ru/Mesh_EvaluateFacet.md b/wiki/translations/ru/Mesh_EvaluateFacet.md index a679cc17a5..8120b60276 100644 --- a/wiki/translations/ru/Mesh_EvaluateFacet.md +++ b/wiki/translations/ru/Mesh_EvaluateFacet.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Mesh EvaluateFacet/ru +
@@ -45,4 +47,7 @@ Triangle: <[1.964574, 0.047063, 0.748046], [1.937166, 0.062461, 0.992797], {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateFacet/ru diff --git a/wiki/translations/ru/Mesh_EvaluateRepair.md b/wiki/translations/ru/Mesh_EvaluateRepair.md index 18cddd0ad4..e397bfb569 100644 --- a/wiki/translations/ru/Mesh_EvaluateRepair.md +++ b/wiki/translations/ru/Mesh_EvaluateRepair.md @@ -1,2 +1,5 @@ # Mesh EvaluateRepair/ru 1. REDIRECT [Mesh\_Evaluation/ru](Mesh_Evaluation/ru.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateRepair/ru diff --git a/wiki/translations/ru/Mesh_EvaluateSolid.md b/wiki/translations/ru/Mesh_EvaluateSolid.md index 57746e5572..c6cf702d12 100644 --- a/wiki/translations/ru/Mesh_EvaluateSolid.md +++ b/wiki/translations/ru/Mesh_EvaluateSolid.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SelectNonSolidMeshes](Arch_SelectNonSolidMeshes.md) --- +# Mesh EvaluateSolid/ru + ## Description The **Mesh EvaluateSolid** command checks if a mesh object is solid. A solid mesh object does not have any holes. @@ -25,4 +27,7 @@ The **Mesh EvaluateSolid** command checks if a mesh object is solid. A solid mes {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh EvaluateSolid/ru diff --git a/wiki/translations/ru/Mesh_Evaluation.md b/wiki/translations/ru/Mesh_Evaluation.md index 1a2fe70f0b..480372a18c 100644 --- a/wiki/translations/ru/Mesh_Evaluation.md +++ b/wiki/translations/ru/Mesh_Evaluation.md @@ -5,6 +5,8 @@ Workbenches:[Mesh](Mesh_Workbench.md) --- +# Mesh Evaluation/ru + ## Description The **Mesh Evaluation** command evaluates and repairs a mesh object. @@ -59,4 +61,7 @@ The **Mesh Evaluation** command evaluates and repairs a mesh object. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Evaluation/ru diff --git a/wiki/translations/ru/Mesh_Export.md b/wiki/translations/ru/Mesh_Export.md index 4c9113fb14..f24d682e61 100644 --- a/wiki/translations/ru/Mesh_Export.md +++ b/wiki/translations/ru/Mesh_Export.md @@ -6,6 +6,8 @@ SeeAlso:[Std Export](Std_Export.md), [Import Export](Import_Export.md) --- +# Mesh Export/ru + ## Description The **Mesh Export** command exports a mesh object to a mesh file format. Several file formats are supported. @@ -51,4 +53,7 @@ Mesh.export([doc.Cone, doc.Cylinder], 'D:/testfiles/mymodel.stl') {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Export/ru diff --git a/wiki/translations/ru/Mesh_FillInteractiveHole.md b/wiki/translations/ru/Mesh_FillInteractiveHole.md index 910853508d..60ec6101cd 100644 --- a/wiki/translations/ru/Mesh_FillInteractiveHole.md +++ b/wiki/translations/ru/Mesh_FillInteractiveHole.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Mesh FillInteractiveHole/ru +
@@ -37,4 +39,7 @@ The **Mesh FillInteractiveHole** command fills selected holes in mesh objects. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FillInteractiveHole/ru diff --git a/wiki/translations/ru/Mesh_FlipNormals.md b/wiki/translations/ru/Mesh_FlipNormals.md index 9bb0c6432f..ef92f082aa 100644 --- a/wiki/translations/ru/Mesh_FlipNormals.md +++ b/wiki/translations/ru/Mesh_FlipNormals.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Mesh FlipNormals/ru +
@@ -53,4 +55,7 @@ {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FlipNormals/ru diff --git a/wiki/translations/ru/Mesh_FromPartShape.md b/wiki/translations/ru/Mesh_FromPartShape.md index c78c345497..db3de6b471 100644 --- a/wiki/translations/ru/Mesh_FromPartShape.md +++ b/wiki/translations/ru/Mesh_FromPartShape.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Mesh FromPartShape/ru +
@@ -195,4 +197,7 @@ msh.ViewObject.DisplayMode = "Flat Lines" {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh FromPartShape/ru diff --git a/wiki/translations/ru/Mesh_HarmonizeNormals.md b/wiki/translations/ru/Mesh_HarmonizeNormals.md index c7972139ce..832a460776 100644 --- a/wiki/translations/ru/Mesh_HarmonizeNormals.md +++ b/wiki/translations/ru/Mesh_HarmonizeNormals.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Mesh HarmonizeNormals/ru +
@@ -33,4 +35,7 @@ The **Mesh HarmonizeNormals** command harmonizes the normals of mesh objects. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh HarmonizeNormals/ru diff --git a/wiki/translations/ru/Mesh_Import.md b/wiki/translations/ru/Mesh_Import.md index b57addd7a4..69618f336b 100644 --- a/wiki/translations/ru/Mesh_Import.md +++ b/wiki/translations/ru/Mesh_Import.md @@ -7,6 +7,8 @@ SeeAlso:[Импорт файла](Std_Import/ru.md) --- +# Mesh Import/ru +
@@ -50,4 +52,7 @@ Mesh.insert('D:/testfiles/cylinder.stl') {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Import/ru diff --git a/wiki/translations/ru/Mesh_Intersection.md b/wiki/translations/ru/Mesh_Intersection.md index 2cf33005c0..6240dd8e17 100644 --- a/wiki/translations/ru/Mesh_Intersection.md +++ b/wiki/translations/ru/Mesh_Intersection.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Mesh Intersection/ru +
@@ -36,4 +38,7 @@ See: [Mesh Feature](Mesh_Feature.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Intersection/ru diff --git a/wiki/translations/ru/Mesh_Merge.md b/wiki/translations/ru/Mesh_Merge.md index 0e5faf8b13..604c38f6e1 100644 --- a/wiki/translations/ru/Mesh_Merge.md +++ b/wiki/translations/ru/Mesh_Merge.md @@ -8,6 +8,8 @@ SeeAlso:[Булево объединение сеток](Mesh_Union/ru.md) --- +# Mesh Merge/ru +
@@ -32,4 +34,7 @@ See: [Mesh Feature](Mesh_Feature.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Merge/ru diff --git a/wiki/translations/ru/Mesh_Module.md b/wiki/translations/ru/Mesh_Module.md index 4e106bcdc5..8b1cc5bb8f 100644 --- a/wiki/translations/ru/Mesh_Module.md +++ b/wiki/translations/ru/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/ru 1. REDIRECT [Mesh Workbench/ru](Mesh_Workbench/ru.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/ru diff --git a/wiki/translations/ru/Mesh_PolyCut.md b/wiki/translations/ru/Mesh_PolyCut.md index 9cfd1c9954..8aee1ef94b 100644 --- a/wiki/translations/ru/Mesh_PolyCut.md +++ b/wiki/translations/ru/Mesh_PolyCut.md @@ -6,6 +6,8 @@ SeeAlso:[Mesh PolyTrim](Mesh_PolyTrim.md), [Mesh TrimByPlane](Mesh_TrimByPlane.md) --- +# Mesh PolyCut/ru + ## Description The **Mesh PolyCut** command cuts whole faces from mesh objects. @@ -45,4 +47,7 @@ The **Mesh PolyCut** command cuts whole faces from mesh objects. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh PolyCut/ru diff --git a/wiki/translations/ru/Mesh_RemoveCompByHand.md b/wiki/translations/ru/Mesh_RemoveCompByHand.md index 188c7deac1..e90db11870 100644 --- a/wiki/translations/ru/Mesh_RemoveCompByHand.md +++ b/wiki/translations/ru/Mesh_RemoveCompByHand.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Mesh RemoveCompByHand/ru + @@ -40,4 +42,7 @@ {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemoveCompByHand/ru diff --git a/wiki/translations/ru/Mesh_RemoveComponents.md b/wiki/translations/ru/Mesh_RemoveComponents.md index 07287dbf21..0d41f3c7fd 100644 --- a/wiki/translations/ru/Mesh_RemoveComponents.md +++ b/wiki/translations/ru/Mesh_RemoveComponents.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Mesh RemoveComponents/ru + @@ -42,4 +44,7 @@ The **Mesh RemoveComponents** command removes faces from mesh objects. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh RemoveComponents/ru diff --git a/wiki/translations/ru/Mesh_Scale.md b/wiki/translations/ru/Mesh_Scale.md index dbf52abee0..f8b6beb500 100644 --- a/wiki/translations/ru/Mesh_Scale.md +++ b/wiki/translations/ru/Mesh_Scale.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Mesh Scale/ru + @@ -31,4 +33,7 @@ The **Mesh Scale** command scales mesh objects. {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scale/ru diff --git a/wiki/translations/ru/Mesh_Scripting.md b/wiki/translations/ru/Mesh_Scripting.md index 1527483ef0..6075c0c1cd 100644 --- a/wiki/translations/ru/Mesh_Scripting.md +++ b/wiki/translations/ru/Mesh_Scripting.md @@ -1,7 +1,4 @@ # Mesh Scripting/ru - - - {{TOCright}} ## Введение @@ -99,3 +96,6 @@ doc.recompute() Смотрите так же: [Mesh API](Mesh_API/ru.md). {{Top}} {{Powerdocnavi}} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scripting/ru diff --git a/wiki/translations/ru/Mesh_Sphere.md b/wiki/translations/ru/Mesh_Sphere.md index b4504a194d..a8c8a3456e 100644 --- a/wiki/translations/ru/Mesh_Sphere.md +++ b/wiki/translations/ru/Mesh_Sphere.md @@ -1,2 +1,5 @@ # Mesh Sphere/ru 1. REDIRECT [Mesh\_BuildRegularSolid/ru](Mesh_BuildRegularSolid/ru.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Sphere/ru diff --git a/wiki/translations/ru/Mesh_Torus.md b/wiki/translations/ru/Mesh_Torus.md index b5b8f1fc68..9f4bb575f1 100644 --- a/wiki/translations/ru/Mesh_Torus.md +++ b/wiki/translations/ru/Mesh_Torus.md @@ -1,2 +1,5 @@ # Mesh Torus/ru 1. REDIRECT [Mesh\_BuildRegularSolid/ru](Mesh_BuildRegularSolid/ru.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Torus/ru diff --git a/wiki/translations/ru/Mesh_Union.md b/wiki/translations/ru/Mesh_Union.md index 9d60384d54..bce2cffbd0 100644 --- a/wiki/translations/ru/Mesh_Union.md +++ b/wiki/translations/ru/Mesh_Union.md @@ -8,6 +8,8 @@ SeeAlso:[Объединить](Mesh_Merge/ru.md) --- +# Mesh Union/ru + @@ -36,4 +38,7 @@ See: [Mesh Feature](Mesh_Feature.md). {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Union/ru diff --git a/wiki/translations/ru/Mesh_VertexCurvature.md b/wiki/translations/ru/Mesh_VertexCurvature.md index 3c4e2a3004..8b57249dfd 100644 --- a/wiki/translations/ru/Mesh_VertexCurvature.md +++ b/wiki/translations/ru/Mesh_VertexCurvature.md @@ -7,6 +7,8 @@ SeeAlso:[Mesh CurvatureInfo](Mesh_CurvatureInfo/ru.md) --- +# Mesh VertexCurvature/ru + @@ -78,4 +80,7 @@ For a Mesh Curvature object the following properties are available in the [Prope {{Mesh Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh VertexCurvature/ru diff --git a/wiki/translations/ru/Mesh_Workbench.md b/wiki/translations/ru/Mesh_Workbench.md index fcff4938a2..5f12993225 100644 --- a/wiki/translations/ru/Mesh_Workbench.md +++ b/wiki/translations/ru/Mesh_Workbench.md @@ -1,7 +1,4 @@ # Mesh Workbench/ru - - -
@@ -167,3 +164,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/ru diff --git a/wiki/translations/ru/Mesh_to_Part.md b/wiki/translations/ru/Mesh_to_Part.md index 1c0c912f2b..203448f193 100644 --- a/wiki/translations/ru/Mesh_to_Part.md +++ b/wiki/translations/ru/Mesh_to_Part.md @@ -1,7 +1,4 @@ # Mesh to Part/ru - - - {{TOCright}} ## Преобразование объектов Part в полигональную сетку @@ -116,3 +113,6 @@ Part.show(solid) }} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh to Part/ru diff --git a/wiki/translations/ru/Migrating_to_FreeCAD_from_Fusion360.md b/wiki/translations/ru/Migrating_to_FreeCAD_from_Fusion360.md index ae2cb3a3f0..18574b82d3 100644 --- a/wiki/translations/ru/Migrating_to_FreeCAD_from_Fusion360.md +++ b/wiki/translations/ru/Migrating_to_FreeCAD_from_Fusion360.md @@ -1,5 +1,5 @@ # Migrating to FreeCAD from Fusion360/ru - {{TOCright}} +{{TOCright}} ## Background @@ -56,5 +56,5 @@ Is this wiki page missing something. Please make a request for [wiki permissions - [Migrating to FreeCAD from OnShape](Migrating_to_FreeCAD_from_OnShape.md) - - +--- +[documentation index](../README.md) > Migrating to FreeCAD from Fusion360/ru diff --git a/wiki/translations/ru/Misc_templates_Full.md b/wiki/translations/ru/Misc_templates_Full.md index 9bee20dec8..b939e4807f 100644 --- a/wiki/translations/ru/Misc_templates_Full.md +++ b/wiki/translations/ru/Misc_templates_Full.md @@ -1,5 +1,5 @@ # Misc templates Full/ru - These templates are completely empty cartridge (22 fields to fill) and dedicated to the macro [Macro\_CartoucheFC\_Full](Macro_CartoucheFC_Full.md) +These templates are completely empty cartridge (22 fields to fill) and dedicated to the macro [Macro\_CartoucheFC\_Full](Macro_CartoucheFC_Full.md) The same work can be done directly in FreeCAD @@ -31,3 +31,6 @@ for Linux : \"\" [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Macros](Category:Macros.md) > Misc templates Full/ru diff --git a/wiki/translations/ru/Model.md b/wiki/translations/ru/Model.md index d511dca649..365d0709b2 100644 --- a/wiki/translations/ru/Model.md +++ b/wiki/translations/ru/Model.md @@ -1,6 +1,4 @@ # Model/ru - - ## Введение In FreeCAD the word \"[Model](Model.md)\" is normally used to refer to any 3D object, or collection of objects, created in the [3D view](3D_view.md). @@ -21,3 +19,6 @@ In informal usage, the word \"[Drawing](Drawing.md)\" may be used with the same }} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Model/ru diff --git a/wiki/translations/ru/Module_Creation.md b/wiki/translations/ru/Module_Creation.md index 7a45467874..1e188b3f46 100644 --- a/wiki/translations/ru/Module_Creation.md +++ b/wiki/translations/ru/Module_Creation.md @@ -1,2 +1,5 @@ # Module Creation/ru 1. REDIRECT [Workbench\_creation/ru](Workbench_creation/ru.md) + +--- +[documentation index](../README.md) > Module Creation/ru diff --git a/wiki/translations/ru/Mouse_Model.md b/wiki/translations/ru/Mouse_Model.md index 157f1d81fd..efd534c9d8 100644 --- a/wiki/translations/ru/Mouse_Model.md +++ b/wiki/translations/ru/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/ru 1. REDIRECT [Mouse\_navigation/ru](Mouse_navigation/ru.md) + +--- +[documentation index](../README.md) > Mouse Model/ru diff --git a/wiki/translations/ru/Mouse_navigation.md b/wiki/translations/ru/Mouse_navigation.md index 1ddbf5cc5b..e7d6b7a490 100644 --- a/wiki/translations/ru/Mouse_navigation.md +++ b/wiki/translations/ru/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/ru - - - - - - {{TOCright}} ## Обзор @@ -252,8 +246,5 @@ FreeCAD так же поддерживает несколько [3d мышей]( The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mouse_navigation_option_to_FreeCAD.md) orients developers who want to develop a custom mouse navigation option. Familiarity with the C++ syntax is required. - - - - - +--- +[documentation index](../README.md) > Mouse navigation/ru diff --git a/wiki/translations/ru/Naming_project.md b/wiki/translations/ru/Naming_project.md index 6c40dfab59..9fbf0460ef 100644 --- a/wiki/translations/ru/Naming_project.md +++ b/wiki/translations/ru/Naming_project.md @@ -1,7 +1,4 @@ # Naming project/ru - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -109,3 +106,6 @@ See [here](https://github.com/ezzieyguywuf/freecadTopoTesting/blob/master/TNamin [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Naming project/ru diff --git a/wiki/translations/ru/Navigation_Cube.md b/wiki/translations/ru/Navigation_Cube.md index 486d8caa97..d3c4701e14 100644 --- a/wiki/translations/ru/Navigation_Cube.md +++ b/wiki/translations/ru/Navigation_Cube.md @@ -1,10 +1,4 @@ # Navigation Cube/ru - - - - - - {{TOCright}} Кубический элемент управления навигацией, или «куб навигации», представляет собой графический интерфейс пользовательского интерфейса для переориентации трехмерного вида. Он виден по умолчанию и находится в верхнем правом углу дисплея.Если вы смотрите на стандартный трёхмерный вид, он выглядит следующим образом: @@ -86,3 +80,6 @@ For more advanced configuration, refer to the [CubeMenu](Interface_Customization [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Navigation Cube/ru diff --git a/wiki/translations/ru/Object_name.md b/wiki/translations/ru/Object_name.md index 1951ced6ee..5374131c84 100644 --- a/wiki/translations/ru/Object_name.md +++ b/wiki/translations/ru/Object_name.md @@ -1,6 +1,4 @@ # Object name/ru - - ## Введение @@ -118,5 +116,5 @@ obj3 = App.ActiveDocument.getObjectsByLabel("Some special name for this cube__00 Given that the `Label` is in general not unique, the `getObjectsByLabel` method returns a list with all objects found with that `Label`. However, if the `Label` is unique in the document then the first element in that list should be the desired object. - - +--- +[documentation index](../README.md) > Object name/ru diff --git a/wiki/translations/ru/Offsite_tutorials.md b/wiki/translations/ru/Offsite_tutorials.md index 8491134ec1..c3d8f89b14 100644 --- a/wiki/translations/ru/Offsite_tutorials.md +++ b/wiki/translations/ru/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/ru - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** На этой странице перечислены уроки FreeCAD, найденные на других интернет-сайтах. @@ -18,4 +18,7 @@ {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/ru diff --git a/wiki/translations/ru/Online_Help_Startpage.md b/wiki/translations/ru/Online_Help_Startpage.md index 2dad4a96ff..ffd49fcb03 100644 --- a/wiki/translations/ru/Online_Help_Startpage.md +++ b/wiki/translations/ru/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/ru - - ![150](images/Crystal_Clear_app_tutorials.png ) ## Добро пожаловать на страницу помощи FreeCAD @@ -28,3 +26,6 @@ [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/ru diff --git a/wiki/translations/ru/Online_Help_Toc.md b/wiki/translations/ru/Online_Help_Toc.md index a43deb6c7c..8bd119475b 100644 --- a/wiki/translations/ru/Online_Help_Toc.md +++ b/wiki/translations/ru/Online_Help_Toc.md @@ -1,6 +1,4 @@ # Online Help Toc/ru - - Эта страница содержания используется для автоматического построения системы **онлайн справки** FreeCAD. Версия для печати данного руководства так же доступна на [странице релизов FreeCAD](https://github.com/FreeCAD/FreeCAD/releases). Если у Вас есть вопросы или нужна помощь с FreeCAD, пожалуйста, обратитесь к [странице помощи](Help/ru.md), включая форумы и чат-группы. Вы можете так же ознакомиться с еще одним [Руководством по FreeCAD](Manual:Introduction/ru.md). @@ -113,3 +111,6 @@ [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/ru diff --git a/wiki/translations/ru/OpenCASCADE.md b/wiki/translations/ru/OpenCASCADE.md index 86ab46959b..31d5e24f5f 100644 --- a/wiki/translations/ru/OpenCASCADE.md +++ b/wiki/translations/ru/OpenCASCADE.md @@ -1,7 +1,4 @@ # OpenCASCADE/ru - - - {{TOCright}} ## Описание @@ -88,3 +85,6 @@ Thus, out of shapes you can build very complex parts or, the other way round, ex }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > OpenCASCADE/ru diff --git a/wiki/translations/ru/OpenCamLib.md b/wiki/translations/ru/OpenCamLib.md index 7c43df5b55..480b89daf5 100644 --- a/wiki/translations/ru/OpenCamLib.md +++ b/wiki/translations/ru/OpenCamLib.md @@ -1,6 +1,4 @@ # OpenCamLib/ru - - ## Описание @@ -115,3 +113,6 @@ Thank you to [Dr. Anders Wallin](http://www.anderswallin.net/about/) for providi [Category:User Documentation](Category:User_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > OpenCamLib/ru diff --git a/wiki/translations/ru/OpenSCAD_AddOpenSCADElement.md b/wiki/translations/ru/OpenSCAD_AddOpenSCADElement.md index be03024820..de440c18ee 100644 --- a/wiki/translations/ru/OpenSCAD_AddOpenSCADElement.md +++ b/wiki/translations/ru/OpenSCAD_AddOpenSCADElement.md @@ -6,6 +6,8 @@ MenuLocation:OpenSCAD -> Add OpenSCAD Element --- +# OpenSCAD AddOpenSCADElement/ru +
@@ -61,4 +63,7 @@ Note: It is also possible to add another optional Parameter which controls the m {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD AddOpenSCADElement/ru diff --git a/wiki/translations/ru/OpenSCAD_ColorCodeShape.md b/wiki/translations/ru/OpenSCAD_ColorCodeShape.md index 12bf2d8ca8..14042ad6cb 100644 --- a/wiki/translations/ru/OpenSCAD_ColorCodeShape.md +++ b/wiki/translations/ru/OpenSCAD_ColorCodeShape.md @@ -8,6 +8,8 @@ SeeAlso:--- --- +# OpenSCAD ColorCodeShape/ru + @@ -25,4 +27,7 @@ {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ColorCodeShape/ru diff --git a/wiki/translations/ru/OpenSCAD_Edgestofaces.md b/wiki/translations/ru/OpenSCAD_Edgestofaces.md index d8890c4545..1306a54af8 100644 --- a/wiki/translations/ru/OpenSCAD_Edgestofaces.md +++ b/wiki/translations/ru/OpenSCAD_Edgestofaces.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Upgrade](Draft_Upgrade/ru.md) --- +# OpenSCAD Edgestofaces/ru + @@ -32,4 +34,7 @@ See also Draft\_Upgrade Экран настроек OpenScad находится в окне «Настройки» (Редактирование меню → Настройки → OpenSCAD). @@ -29,3 +26,6 @@ There is only one tab: General settings. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Preferences/ru diff --git a/wiki/translations/ru/OpenSCAD_RefineShapeFeature.md b/wiki/translations/ru/OpenSCAD_RefineShapeFeature.md index ecad5ee854..ff4d486f5f 100644 --- a/wiki/translations/ru/OpenSCAD_RefineShapeFeature.md +++ b/wiki/translations/ru/OpenSCAD_RefineShapeFeature.md @@ -7,6 +7,8 @@ SeeAlso:--- --- +# OpenSCAD RefineShapeFeature/ru + @@ -41,4 +43,7 @@ Cleans unnecessary lines. After a Boolean operation some lines defining the prev {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD RefineShapeFeature/ru diff --git a/wiki/translations/ru/OpenSCAD_RemoveSubtree.md b/wiki/translations/ru/OpenSCAD_RemoveSubtree.md index ab774e94d6..ba93ef98c6 100644 --- a/wiki/translations/ru/OpenSCAD_RemoveSubtree.md +++ b/wiki/translations/ru/OpenSCAD_RemoveSubtree.md @@ -8,6 +8,8 @@ SeeAlso:--- --- +# OpenSCAD RemoveSubtree/ru + @@ -30,4 +32,7 @@ Removes the selected objects and all children that are not referenced from other {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD RemoveSubtree/ru diff --git a/wiki/translations/ru/OpenSCAD_ReplaceObject.md b/wiki/translations/ru/OpenSCAD_ReplaceObject.md index 1d6a9b2dc8..0c0b4556c0 100644 --- a/wiki/translations/ru/OpenSCAD_ReplaceObject.md +++ b/wiki/translations/ru/OpenSCAD_ReplaceObject.md @@ -8,6 +8,8 @@ SeeAlso:--- --- +# OpenSCAD ReplaceObject/ru + @@ -38,4 +40,7 @@ You can use this feature for example to substitute a part inside a fusion/cut/co {{OpenSCAD_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD ReplaceObject/ru diff --git a/wiki/translations/ru/OpenSCAD_Workbench.md b/wiki/translations/ru/OpenSCAD_Workbench.md index 4fe6d633d8..7c93d890bc 100644 --- a/wiki/translations/ru/OpenSCAD_Workbench.md +++ b/wiki/translations/ru/OpenSCAD_Workbench.md @@ -1,7 +1,4 @@ # OpenSCAD Workbench/ru - - -
@@ -106,3 +103,6 @@ If FreeCAD crashes when importing CSG, it is strongly recommended that you enabl }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/ru diff --git a/wiki/translations/ru/PDF.md b/wiki/translations/ru/PDF.md index 26431503b9..216d781698 100644 --- a/wiki/translations/ru/PDF.md +++ b/wiki/translations/ru/PDF.md @@ -1,7 +1,4 @@ # PDF/ru - - - {{TOCright}} ## Описание @@ -30,3 +27,6 @@ The option to export to PDF is available in the **File → [Export PDF](Std_Expo [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > PDF/ru diff --git a/wiki/translations/ru/POV-Ray.md b/wiki/translations/ru/POV-Ray.md index 9f6d8ec868..436bfe4bf8 100644 --- a/wiki/translations/ru/POV-Ray.md +++ b/wiki/translations/ru/POV-Ray.md @@ -1,5 +1,5 @@ # POV-Ray/ru - **The development of POV-Ray seems to be halted. The latest stable version is 3.7.0.8 (2018-05-27), the latest development version is 3.8.0-x (2019-02-19), the [https://github.com/POV-Ray/povray/ official project on GitHub] has been edited the last time on 2019-03-08. Please remove this warning if the situation changes** +**The development of POV-Ray seems to be halted. The latest stable version is 3.7.0.8 (2018-05-27), the latest development version is 3.8.0-x (2019-02-19), the [https://github.com/POV-Ray/povray/ official project on GitHub] has been edited the last time on 2019-03-08. Please remove this warning if the situation changes** # Description @@ -97,3 +97,6 @@ After installing the Render Workbench and POV-Ray, launch FreeCAD, open the [Pre Set the POV-Ray executable path to point to your installation of POV-Ray, usually it is *C:/Program Files/POV-Ray/v3.7/bin/pvengine64.exe*, and apply. Then, before trying to render something, start POV-Ray separately and [set I/O restrictions according to POV-Ray documentation](https://wiki.povray.org/content/Documentation:Windows_Section_2.1), otherwise rendering will not work properly (or will not work at all). + +--- +[documentation index](../README.md) > POV-Ray/ru diff --git a/wiki/translations/ru/Part.md b/wiki/translations/ru/Part.md index e523295418..35c7ee2580 100644 --- a/wiki/translations/ru/Part.md +++ b/wiki/translations/ru/Part.md @@ -1,6 +1,4 @@ # Part/ru - - ## Введение @@ -34,3 +32,6 @@ }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Part/ru diff --git a/wiki/translations/ru/PartDesign_AdditiveBox.md b/wiki/translations/ru/PartDesign_AdditiveBox.md index 207f25aee5..6ce40c07ec 100644 --- a/wiki/translations/ru/PartDesign_AdditiveBox.md +++ b/wiki/translations/ru/PartDesign_AdditiveBox.md @@ -8,6 +8,8 @@ SeeAlso:[PartDesign Primitive additive](PartDesign_CompPrimitiveAdditive/ru.md) --- +# PartDesign AdditiveBox/ru +
@@ -49,4 +51,7 @@ The Box can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveBox/ru diff --git a/wiki/translations/ru/PartDesign_AdditiveCone.md b/wiki/translations/ru/PartDesign_AdditiveCone.md index 2172dd2385..28515f3c98 100644 --- a/wiki/translations/ru/PartDesign_AdditiveCone.md +++ b/wiki/translations/ru/PartDesign_AdditiveCone.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create an additive primitive](PartDesign_CompPrimitiveAdditive.md), [PartDesign Subtractive Cone](PartDesign_SubtractiveCone.md) --- +# PartDesign AdditiveCone/ru + ## Описание Inserts a primitive cone in the active Body as the first feature, or fuses it to the existing feature(s). @@ -47,4 +49,7 @@ The Cone can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCone/ru diff --git a/wiki/translations/ru/PartDesign_AdditiveCylinder.md b/wiki/translations/ru/PartDesign_AdditiveCylinder.md index b2e63eaaa3..9327a48c92 100644 --- a/wiki/translations/ru/PartDesign_AdditiveCylinder.md +++ b/wiki/translations/ru/PartDesign_AdditiveCylinder.md @@ -7,6 +7,8 @@ SeeAlso:[Create an additive primitive](PartDesign_CompPrimitiveAdditive.md), [Subtractive Cylinder](PartDesign_SubtractiveCylinder.md) --- +# PartDesign AdditiveCylinder/ru + ## Описание Inserts a primitive cylinder in the active Body as the first feature, or fuses it to the existing feature(s). @@ -51,4 +53,7 @@ The Cylinder can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCylinder/ru diff --git a/wiki/translations/ru/PartDesign_AdditiveEllipsoid.md b/wiki/translations/ru/PartDesign_AdditiveEllipsoid.md index 1894c42352..2411162537 100644 --- a/wiki/translations/ru/PartDesign_AdditiveEllipsoid.md +++ b/wiki/translations/ru/PartDesign_AdditiveEllipsoid.md @@ -8,6 +8,8 @@ SeeAlso:[Создать аддитивный примитив](PartDesign_CompPrimitiveAdditive/ru.md) --- +# PartDesign AdditiveEllipsoid/ru + ## Описание Inserts a primitive ellipsoid in the active Body as the first feature, or fuses it to the existing feature(s). @@ -52,4 +54,7 @@ The Ellipsoid can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveEllipsoid/ru diff --git a/wiki/translations/ru/PartDesign_AdditiveHelix.md b/wiki/translations/ru/PartDesign_AdditiveHelix.md index 5a761259e0..91b5be4b85 100644 --- a/wiki/translations/ru/PartDesign_AdditiveHelix.md +++ b/wiki/translations/ru/PartDesign_AdditiveHelix.md @@ -8,6 +8,8 @@ SeeAlso:[Субтрактивная спираль](PartDesign_SubtractiveHelix/ru.md) --- +# PartDesign AdditiveHelix/ru + ## Описание The **AdditiveHelix** tool creates a solid by sweeping a selected sketch or 2D object along a helix path. @@ -125,4 +127,7 @@ If checked, the helix will be shown in the view, and updated automatically on ev {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveHelix/ru diff --git a/wiki/translations/ru/PartDesign_AdditiveLoft.md b/wiki/translations/ru/PartDesign_AdditiveLoft.md index 9b853e4fcb..35a5565b49 100644 --- a/wiki/translations/ru/PartDesign_AdditiveLoft.md +++ b/wiki/translations/ru/PartDesign_AdditiveLoft.md @@ -8,6 +8,8 @@ SeeAlso:[Аддитивная трубный профиль](PartDesign_AdditivePipe/ru.md), [Субтрактивный профиль](PartDesign_SubtractiveLoft/ru.md) --- +# PartDesign AdditiveLoft/ru + ## Описание **Additive Loft** creates a solid in the active Body by making a transition between two or more sketches (also referred to as cross-sections). If the Body already contains features, the additive loft will be merged to them. @@ -86,4 +88,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveLoft/ru diff --git a/wiki/translations/ru/PartDesign_AdditivePipe.md b/wiki/translations/ru/PartDesign_AdditivePipe.md index 560c6ffd97..b3ea13a1be 100644 --- a/wiki/translations/ru/PartDesign_AdditivePipe.md +++ b/wiki/translations/ru/PartDesign_AdditivePipe.md @@ -8,6 +8,8 @@ SeeAlso:[Аддитивный профиль](PartDesign_AdditiveLoft/ru.md), [Субтрактивный трубный профиль](PartDesign_SubtractivePipe/ru.md) --- +# PartDesign AdditivePipe/ru + ## Описание **Additive Pipe** creates a solid in the active Body by sweeping one or more sketches (also referred to as cross-sections) along an open or closed path. If the Body already contains features, the additive pipe will be merged to them. @@ -101,4 +103,7 @@ To use more than one cross-section, start with the first cross-section sketch as {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePipe/ru diff --git a/wiki/translations/ru/PartDesign_AdditivePrism.md b/wiki/translations/ru/PartDesign_AdditivePrism.md index e121918a22..f10af24f6c 100644 --- a/wiki/translations/ru/PartDesign_AdditivePrism.md +++ b/wiki/translations/ru/PartDesign_AdditivePrism.md @@ -8,6 +8,8 @@ SeeAlso:[Создать аддитивный примитив](PartDesign_CompPrimitiveAdditive/ru.md), [Субтрактивная призма](PartDesign_SubtractivePrism/ru.md) --- +# PartDesign AdditivePrism/ru + ## Описание Inserts a primitive prism in the active Body as the first feature, or fuses it to the existing feature(s). @@ -52,4 +54,7 @@ The Prism can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePrism/ru diff --git a/wiki/translations/ru/PartDesign_AdditiveSphere.md b/wiki/translations/ru/PartDesign_AdditiveSphere.md index f1a0a7ae2f..8e54ac6331 100644 --- a/wiki/translations/ru/PartDesign_AdditiveSphere.md +++ b/wiki/translations/ru/PartDesign_AdditiveSphere.md @@ -8,6 +8,8 @@ SeeAlso:[Создать аддитивный примитив](PartDesign_CompPrimitiveAdditive/ru.md) --- +# PartDesign AdditiveSphere/ru + ## Описание Inserts a primitive sphere in the active Body as the first feature, or fuses it to the existing feature(s). @@ -48,4 +50,7 @@ The Sphere can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveSphere/ru diff --git a/wiki/translations/ru/PartDesign_AdditiveTorus.md b/wiki/translations/ru/PartDesign_AdditiveTorus.md index 90d04b18e9..71fcb792ac 100644 --- a/wiki/translations/ru/PartDesign_AdditiveTorus.md +++ b/wiki/translations/ru/PartDesign_AdditiveTorus.md @@ -8,6 +8,8 @@ SeeAlso:[Создать аддитивный примитив](PartDesign_CompPrimitiveAdditive/ru.md) --- +# PartDesign AdditiveTorus/ru + ## Описание Inserts a primitive torus in the active Body as the first feature, or fuses it to the existing feature(s). @@ -50,4 +52,7 @@ The Torus can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveTorus/ru diff --git a/wiki/translations/ru/PartDesign_AdditiveWedge.md b/wiki/translations/ru/PartDesign_AdditiveWedge.md index 6cc041ee40..5ff83b7fc5 100644 --- a/wiki/translations/ru/PartDesign_AdditiveWedge.md +++ b/wiki/translations/ru/PartDesign_AdditiveWedge.md @@ -8,6 +8,8 @@ SeeAlso:[Создать аддитивный примитив](PartDesign_CompPrimitiveAdditive/ru.md), [Субтрактивный клин](PartDesign_SubtractiveWedge/ru.md) --- +# PartDesign AdditiveWedge/ru + ## Описание Inserts a primitive wedge in the active Body as the first feature, or fuses it to the existing feature(s). @@ -52,4 +54,7 @@ Wedges can be used to create pyramids by setting **X2 min/max** and **Z2 min/max {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveWedge/ru diff --git a/wiki/translations/ru/PartDesign_Bearingholder_Tutorial_I.md b/wiki/translations/ru/PartDesign_Bearingholder_Tutorial_I.md index 6ff15eb7ea..40daef9bc3 100644 --- a/wiki/translations/ru/PartDesign_Bearingholder_Tutorial_I.md +++ b/wiki/translations/ru/PartDesign_Bearingholder_Tutorial_I.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial I/ru - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -116,3 +112,6 @@ We have modelled the bearing holder top with the dimensions it will have after c [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial I/ru diff --git a/wiki/translations/ru/PartDesign_Bearingholder_Tutorial_II.md b/wiki/translations/ru/PartDesign_Bearingholder_Tutorial_II.md index 5830eabac5..995fb998c9 100644 --- a/wiki/translations/ru/PartDesign_Bearingholder_Tutorial_II.md +++ b/wiki/translations/ru/PartDesign_Bearingholder_Tutorial_II.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial II/ru - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -89,3 +85,6 @@ For the rest of the machining, create a new Body. The bottom of the holder will [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial II/ru diff --git a/wiki/translations/ru/PartDesign_Body.md b/wiki/translations/ru/PartDesign_Body.md index b2dd02f704..713a1cfe9f 100644 --- a/wiki/translations/ru/PartDesign_Body.md +++ b/wiki/translations/ru/PartDesign_Body.md @@ -8,6 +8,8 @@ SeeAlso:[Создать деталь](Std_Part/ru.md), [Особенности редактирования](Feature_editing/ru.md) --- +# PartDesign Body/ru + ## Описание A [PartDesign Body](PartDesign_Body.md) is the base element to create solids shapes with the [PartDesign Workbench](PartDesign_Workbench.md). It can contain [sketches](Sketch.md), [datum objects](Datum.md), and [PartDesign Features](PartDesign_Feature.md) that help in building a [single contiguous solid](PartDesign_Body#Single_contiguous_solid.md). @@ -290,4 +292,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Body/ru diff --git a/wiki/translations/ru/PartDesign_Boolean.md b/wiki/translations/ru/PartDesign_Boolean.md index 451af6e9a4..601c74a735 100644 --- a/wiki/translations/ru/PartDesign_Boolean.md +++ b/wiki/translations/ru/PartDesign_Boolean.md @@ -6,6 +6,8 @@ Version:0.17 --- +# PartDesign Boolean/ru + ## Описание **PartDesign Boolean** imports one or more [PartDesign Bodies](PartDesign_Body.md) or [PartDesign Clones](PartDesign_Clone.md) (designated as \"tool bodies\") into the active PartDesign Body and applies a Boolean operation (fuse, cut or common). @@ -61,4 +63,7 @@ Alternatively, one or more Bodies can be selected prior to pressing the Boolean {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Boolean/ru diff --git a/wiki/translations/ru/PartDesign_Chamfer.md b/wiki/translations/ru/PartDesign_Chamfer.md index 6da649dd66..bd85d63fed 100644 --- a/wiki/translations/ru/PartDesign_Chamfer.md +++ b/wiki/translations/ru/PartDesign_Chamfer.md @@ -7,6 +7,8 @@ SeeAlso:[Скругление](PartDesign_Fillet/ru.md), [Фаска](Part_Chamfer/ru.md) --- +# PartDesign Chamfer/ru + ## Описание This tool creates chamfers on the selected edges of an object. A new separate Chamfer entry (followed by a consecutive number if there are already existing chamfers in the document) is created in the Project tree. @@ -36,4 +38,7 @@ This tool creates chamfers on the selected edges of an object. A new separate Ch {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Chamfer/ru diff --git a/wiki/translations/ru/PartDesign_Clone.md b/wiki/translations/ru/PartDesign_Clone.md index 300a30ddfb..6285ade15c 100644 --- a/wiki/translations/ru/PartDesign_Clone.md +++ b/wiki/translations/ru/PartDesign_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Клонировать](Draft_Clone/ru.md) --- +# PartDesign Clone/ru + ## Описание **PartDesign Clone** creates a linked copy of a selected object which will follow any future edits to the original object (except placement). For example, one use case is when you want to do [PartDesign Boolean](PartDesign_Boolean.md) on an object created in another workbench. Most types of objects are accepted, as long as they are single solids. If you need to clone multiple objects (i.e., bodies) or a [Part Container](Std_Part.md), you may use [Draft Workbench\'s clone](Draft_Clone.md). One caveat is that the Part Design Workbench\'s clone sets the current placement of the clone as zero (both Cartesian translation and spatial orientations). While the Draft\'s workbenches clone calculates and sets the numerical values of the current placement and orientation of the cloned objects with respect to the cloned object container. @@ -38,4 +40,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Clone/ru diff --git a/wiki/translations/ru/PartDesign_CompPrimitiveAdditive.md b/wiki/translations/ru/PartDesign_CompPrimitiveAdditive.md index 393bff04cd..d52785c30b 100644 --- a/wiki/translations/ru/PartDesign_CompPrimitiveAdditive.md +++ b/wiki/translations/ru/PartDesign_CompPrimitiveAdditive.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign CompPrimitiveAdditive/ru + ## Описание Создаёт аддитивный примитив в активном Body (теле), как первичный элемент(ы). Если Body не найдено в документе, оно будет автоматически создано. @@ -28,4 +30,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveAdditive/ru diff --git a/wiki/translations/ru/PartDesign_CompPrimitiveSubtractive.md b/wiki/translations/ru/PartDesign_CompPrimitiveSubtractive.md index 9ed231bed9..5878454bec 100644 --- a/wiki/translations/ru/PartDesign_CompPrimitiveSubtractive.md +++ b/wiki/translations/ru/PartDesign_CompPrimitiveSubtractive.md @@ -8,6 +8,8 @@ SeeAlso:[Создать аддитивный примитив](PartDesign_CompPrimitiveAdditive/ru.md) --- +# PartDesign CompPrimitiveSubtractive/ru + ## Описание Создает субтрактивный примитив в активном теле, примитив вычитающий форму из существующего твердого тела. @@ -29,4 +31,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveSubtractive/ru diff --git a/wiki/translations/ru/PartDesign_CoordinateSystem.md b/wiki/translations/ru/PartDesign_CoordinateSystem.md index b6435796fc..681a87c390 100644 --- a/wiki/translations/ru/PartDesign_CoordinateSystem.md +++ b/wiki/translations/ru/PartDesign_CoordinateSystem.md @@ -8,6 +8,8 @@ SeeAlso:[Создать опорную точку](PartDesign_Point/ru.md), [Создать опорную линию](PartDesign_Line/ru.md), [Создать опорную плоскость](PartDesign_Plane/ru.md) --- +# PartDesign CoordinateSystem/ru + ## Описание Creates a **local coordinate system** which can be used as reference for other datum geometry. It also helps identify the orientation of the referenced datum geometry in 3D space. ![](images/PartDesign_LocalCoordinateSystem_Example.png ) *Local coordinate system originating out of a datum plane's origin.* @@ -53,4 +55,7 @@ lcs = App.activeDocument().addObject( 'PartDesign::CoordinateSystem', 'LCS' ) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CoordinateSystem/ru diff --git a/wiki/translations/ru/PartDesign_Draft.md b/wiki/translations/ru/PartDesign_Draft.md index 8d098d9b2d..40fcf088bc 100644 --- a/wiki/translations/ru/PartDesign_Draft.md +++ b/wiki/translations/ru/PartDesign_Draft.md @@ -6,6 +6,8 @@ Workbenches:[Part Design](PartDesign_Workbench/ru.md) --- +# PartDesign Draft/ru + ### Description This tool creates angular draft on the selected faces of an object. A new separate Draft entry (followed by a sequential number if there are already existing drafts in the document) is created in the Project tree. @@ -51,4 +53,7 @@ This tool creates angular draft on the selected faces of an object. A new separa {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Draft/ru diff --git a/wiki/translations/ru/PartDesign_Feature.md b/wiki/translations/ru/PartDesign_Feature.md index a4596190af..cefce3229c 100644 --- a/wiki/translations/ru/PartDesign_Feature.md +++ b/wiki/translations/ru/PartDesign_Feature.md @@ -1,6 +1,4 @@ # PartDesign Feature/ru - - ## Введение [PartDesign Feature](PartDesign_Feature/ru.md) относится к «шагу» в процессе моделирования, происходившему внутри [PartDesign Body](PartDesign_Body/ru.md). Например, каждый раз, когда вы добавляете сплошную коробку с помощью [PartDesign AdditiveBox](PartDesign_AdditiveBox/ru.md), вы добавляете элемент; когда вы добавляете фаску к кромке с помощью [PartDesign Chamfer](PartDesign_Chamfer/ru.md), вы добавляете еще один элемент; когда вы вырезаете отверстие с помощью [sketch](Sketch/ru.md) и [PartDesign Pocket](PartDesign_Pocket/ru.md), вы добавляете ещё один элемент. @@ -81,4 +79,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Feature/ru diff --git a/wiki/translations/ru/PartDesign_Fillet.md b/wiki/translations/ru/PartDesign_Fillet.md index f34ab8edf6..55badfbbc2 100644 --- a/wiki/translations/ru/PartDesign_Fillet.md +++ b/wiki/translations/ru/PartDesign_Fillet.md @@ -7,6 +7,8 @@ SeeAlso:[Фаска](PartDesign_Chamfer/ru.md), [Скругление](Part_Fillet/ru.md) --- +# PartDesign Fillet/ru + ## Описание This tool creates fillets (rounds) on the selected edges of an object. A new separate Fillet entry (followed by a sequential number if there are already existing fillets in the document) is created in the project tree. @@ -106,4 +108,7 @@ Part.show(Box) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Fillet/ru diff --git a/wiki/translations/ru/PartDesign_Groove.md b/wiki/translations/ru/PartDesign_Groove.md index 2b1ee39397..6598233165 100644 --- a/wiki/translations/ru/PartDesign_Groove.md +++ b/wiki/translations/ru/PartDesign_Groove.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/ru.md) --- +# PartDesign Groove/ru + ## Описание The **Groove** tool revolves a selected sketch or profile about a given axis, cutting out material from the support . @@ -74,4 +76,7 @@ Below are properties which can be defined after creation of the feature. Data pr {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Groove/ru diff --git a/wiki/translations/ru/PartDesign_Hole.md b/wiki/translations/ru/PartDesign_Hole.md index 3bbad472a4..95af20ec14 100644 --- a/wiki/translations/ru/PartDesign_Hole.md +++ b/wiki/translations/ru/PartDesign_Hole.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Pocket](PartDesign_Pocket.md) --- +# PartDesign Hole/ru + ## Description The **Hole** feature creates one or more holes from a selected sketch\'s circles and arcs. If arcs are present they must be part of closed contours. All non arc/circle entities are ignored but they still must form closed contours. Many parameters can be set such as threading and size, fit, hole type (countersink, counterbore, straight) and more. @@ -107,4 +109,7 @@ Example: {{Code|lang=json|code= {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Hole/ru diff --git a/wiki/translations/ru/PartDesign_InvoluteGear.md b/wiki/translations/ru/PartDesign_InvoluteGear.md index 112329742e..e03b3ef3c7 100644 --- a/wiki/translations/ru/PartDesign_InvoluteGear.md +++ b/wiki/translations/ru/PartDesign_InvoluteGear.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/ru.md) --- +# PartDesign InvoluteGear/ru + @@ -56,4 +58,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign InvoluteGear/ru diff --git a/wiki/translations/ru/PartDesign_Legacy.md b/wiki/translations/ru/PartDesign_Legacy.md index 992f1ae399..d86a7c2704 100644 --- a/wiki/translations/ru/PartDesign_Legacy.md +++ b/wiki/translations/ru/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/ru 1. REDIRECT [PartDesign\_Workbench/ru](PartDesign_Workbench/ru.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/ru diff --git a/wiki/translations/ru/PartDesign_Line.md b/wiki/translations/ru/PartDesign_Line.md index f8d6aef7a2..ee9d35c5a4 100644 --- a/wiki/translations/ru/PartDesign_Line.md +++ b/wiki/translations/ru/PartDesign_Line.md @@ -8,6 +8,8 @@ SeeAlso:[Создать опорную точку](PartDesign_Point/ru.md), [Создать опорную плоскость](PartDesign_Plane/ru.md) --- +# PartDesign Line/ru + ## Описание Creates a **datum line** which can be used as reference for sketches, other datum geometry or features. For example it can be used as revolution axis for Revolution and Groove features. @@ -43,4 +45,7 @@ Double-click the DatumLine label in the Model tree or right-click and select **E {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Line/ru diff --git a/wiki/translations/ru/PartDesign_LinearPattern.md b/wiki/translations/ru/PartDesign_LinearPattern.md index 3e506bf120..7cb1ad6e3a 100644 --- a/wiki/translations/ru/PartDesign_LinearPattern.md +++ b/wiki/translations/ru/PartDesign_LinearPattern.md @@ -6,6 +6,8 @@ MenuLocation:PartDesign → Линейный массив --- +# PartDesign LinearPattern/ru + @@ -90,4 +92,7 @@ Select one of the Body Origin\'s standard axis (X, Y or Z) as direction. {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign LinearPattern/ru diff --git a/wiki/translations/ru/PartDesign_Mirrored.md b/wiki/translations/ru/PartDesign_Mirrored.md index 80bda2cffc..592e0c2984 100644 --- a/wiki/translations/ru/PartDesign_Mirrored.md +++ b/wiki/translations/ru/PartDesign_Mirrored.md @@ -6,6 +6,8 @@ MenuLocation:PartDesign → Симметрия --- +# PartDesign Mirrored/ru + @@ -84,4 +86,7 @@ The mirror result can be previewed in real time before clicking **OK** by checki {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Mirrored/ru diff --git a/wiki/translations/ru/PartDesign_MoveFeature.md b/wiki/translations/ru/PartDesign_MoveFeature.md index 383214f533..6db0d3cc9e 100644 --- a/wiki/translations/ru/PartDesign_MoveFeature.md +++ b/wiki/translations/ru/PartDesign_MoveFeature.md @@ -9,6 +9,8 @@ SeeAlso:[Set tip](PartDesign_MoveTip/ru.md), [Поместить объект позади другого объекта](PartDesign_MoveFeatureInTree/ru.md) --- +# PartDesign MoveFeature/ru + ## Описание [Move object to other body](PartDesign_MoveFeature.md), as this command is labeled in the context menu, allows moving objects under a Body to another Body. The moved object is placed right below the other Body\'s tip. Sketches, datum geometry and features are supported. @@ -26,4 +28,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeature/ru diff --git a/wiki/translations/ru/PartDesign_MoveFeatureInTree.md b/wiki/translations/ru/PartDesign_MoveFeatureInTree.md index cb3cc85dbc..770115dd9b 100644 --- a/wiki/translations/ru/PartDesign_MoveFeatureInTree.md +++ b/wiki/translations/ru/PartDesign_MoveFeatureInTree.md @@ -9,6 +9,8 @@ SeeAlso:[Set tip](PartDesign_MoveTip/ru.md), [Перемещение объекта в другое тело](PartDesign_MoveFeature/ru.md) --- +# PartDesign MoveFeatureInTree/ru + ## Описание [Переместить объект за другой объект](PartDesign_MoveFeatureInTree/ru.md), при выделении этой команды в контекстном меню, позволяет переупорядочивать объекты в Body. Поддерживаются эскизы, базовая геометрия и элементы. @@ -32,4 +34,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeatureInTree/ru diff --git a/wiki/translations/ru/PartDesign_MoveTip.md b/wiki/translations/ru/PartDesign_MoveTip.md index 6fc9523b8f..232e0bc784 100644 --- a/wiki/translations/ru/PartDesign_MoveTip.md +++ b/wiki/translations/ru/PartDesign_MoveTip.md @@ -8,6 +8,8 @@ SeeAlso:[Переместить объекта в другое тело](PartDesign_MoveFeature/ru.md), [Поместить объект позади другого объекта](PartDesign_MoveFeatureInTree/ru.md) --- +# PartDesign MoveTip/ru + ## Описание [Установить конечную точку расчета](PartDesign_MoveTip/ru.md) данная команда расположена в контекстном меню и определяет положение значка подсказки, который указывает на конечную точку расчета активного тела. По умолчанию данная точка располагается в самом конце последовательности расчета тела; но иногда может быть полезно временно установить данную точку на более ранний этап расчета тела в древе построения объекта. Это может быть сделано для добавления эскиза, исходной геометрии или элемента, который, в ретроспективе, должен был быть создан ранее в истории Тела. @@ -36,4 +38,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveTip/ru diff --git a/wiki/translations/ru/PartDesign_MultiTransform.md b/wiki/translations/ru/PartDesign_MultiTransform.md index dc11876d1e..0fcc9d9fa6 100644 --- a/wiki/translations/ru/PartDesign_MultiTransform.md +++ b/wiki/translations/ru/PartDesign_MultiTransform.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/ru.md) --- +# PartDesign MultiTransform/ru + ## Описание \'Make a pattern from combinations of transformations\' - The **![](images/)_[MultiTransform](PartDesign_MultiTransform.md)** tool takes one (or a set of) part \'features\' as its input, and allows the user to apply multiple transformations to that feature (or set of features) progressively, in sequence - creating a combined or compound transformation. @@ -148,4 +150,7 @@ When initiated and completed in this way, the **![](images/)_[MultiTransform](P {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MultiTransform/ru diff --git a/wiki/translations/ru/PartDesign_NewSketch.md b/wiki/translations/ru/PartDesign_NewSketch.md index 4e4ae41dc9..5e1b6e30a3 100644 --- a/wiki/translations/ru/PartDesign_NewSketch.md +++ b/wiki/translations/ru/PartDesign_NewSketch.md @@ -8,6 +8,8 @@ SeeAlso:[Создать эскиз](Sketcher_NewSketch/ru.md) --- +# PartDesign NewSketch/ru + ## Описание This tool creates a new sketch, creates a new [PartDesign Body](PartDesign_Body.md) to contain the sketch if one does not exist and automatically opens the [Sketcher workbench](Sketcher_Workbench.md) after creation. @@ -63,4 +65,7 @@ To reference any items in the [PartDesign Pad](PartDesign_Pad.md)** tool extrudes a sketch into a solid in a direction normal to the sketch plane. As of (v0.17) faces on the solid can also be used. @@ -120,4 +122,7 @@ Reverses the direction of the pad. {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pad/ru diff --git a/wiki/translations/ru/PartDesign_Plane.md b/wiki/translations/ru/PartDesign_Plane.md index bc97ffdbf9..727205bed9 100644 --- a/wiki/translations/ru/PartDesign_Plane.md +++ b/wiki/translations/ru/PartDesign_Plane.md @@ -8,6 +8,8 @@ SeeAlso:[Создать опорную точку](PartDesign_Point/ru.md), [Создать опорную линию](PartDesign_Line/ru.md) --- +# PartDesign Plane/ru + ## Описание Creates a **datum plane** which can be used as reference for sketches or other datum geometry. Sketches can be attached to datum planes. ![](images/Datum_plane.png ) *Datum Plane crossing 3 corners of the Cube with a Cylinder sketched on it using the Datum Plane as its X-Y Plane.* @@ -45,4 +47,7 @@ Double-click the DatumPlane label in the Model tree or right-click and select ** {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Plane/ru diff --git a/wiki/translations/ru/PartDesign_Pocket.md b/wiki/translations/ru/PartDesign_Pocket.md index b3e830c4cc..eb4375dabe 100644 --- a/wiki/translations/ru/PartDesign_Pocket.md +++ b/wiki/translations/ru/PartDesign_Pocket.md @@ -6,6 +6,8 @@ MenuLocation:PartDesign → Карман --- +# PartDesign Pocket/ru + @@ -65,4 +67,7 @@ An [example](http://forum.freecadweb.org/viewtopic.php?f=3&t=3733&start=10) with {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pocket/ru diff --git a/wiki/translations/ru/PartDesign_Point.md b/wiki/translations/ru/PartDesign_Point.md index aa992c198b..ef9dbebdd2 100644 --- a/wiki/translations/ru/PartDesign_Point.md +++ b/wiki/translations/ru/PartDesign_Point.md @@ -8,6 +8,8 @@ SeeAlso:[Создать опорную линию](PartDesign_Line/ru.md), [Создать опорную плоскость](PartDesign_Plane/ru.md) --- +# PartDesign Point/ru + ## Описание Creates a **datum point** which can be used as reference for sketches or other datum geometry. @@ -46,4 +48,7 @@ Double-click the DatumPoint label in the Model tree or right-click and select ** {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Point/ru diff --git a/wiki/translations/ru/PartDesign_PolarPattern.md b/wiki/translations/ru/PartDesign_PolarPattern.md index 47a7610235..7c38ebdffd 100644 --- a/wiki/translations/ru/PartDesign_PolarPattern.md +++ b/wiki/translations/ru/PartDesign_PolarPattern.md @@ -6,6 +6,8 @@ MenuLocation:PartDesign -> Круговой массив --- +# PartDesign PolarPattern/ru + @@ -133,4 +135,7 @@ Specifies the angle to be covered by the pattern, and the total number of patter {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign PolarPattern/ru diff --git a/wiki/translations/ru/PartDesign_Preferences.md b/wiki/translations/ru/PartDesign_Preferences.md index ce02e6801a..5b6b8003e6 100644 --- a/wiki/translations/ru/PartDesign_Preferences.md +++ b/wiki/translations/ru/PartDesign_Preferences.md @@ -1,10 +1,4 @@ # PartDesign Preferences/ru - - - - - - {{TOCright}} ## Введение @@ -122,3 +116,6 @@ Right click on **Mesh deviation** choose in the context menu **Change value**. S }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Preferences/ru diff --git a/wiki/translations/ru/PartDesign_Revolution.md b/wiki/translations/ru/PartDesign_Revolution.md index d8612a659c..c179f227c3 100644 --- a/wiki/translations/ru/PartDesign_Revolution.md +++ b/wiki/translations/ru/PartDesign_Revolution.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/ru.md) --- +# PartDesign Revolution/ru + ## Description The **Revolution** tool creates a solid by revolving a selected sketch or 2D object about a given axis. @@ -76,4 +78,7 @@ A [detailed example of use](http://forum.freecadweb.org/viewtopic.php?f=3&t=3674 {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Revolution/ru diff --git a/wiki/translations/ru/PartDesign_Scaled.md b/wiki/translations/ru/PartDesign_Scaled.md index 48fdf9856d..2a8878a1e9 100644 --- a/wiki/translations/ru/PartDesign_Scaled.md +++ b/wiki/translations/ru/PartDesign_Scaled.md @@ -6,6 +6,8 @@ MenuLocation:PartDesign → Множественное преобразование --- +# PartDesign Scaled/ru + @@ -44,4 +46,7 @@ Starting from FreeCAD 0.15, this operation is not available directly, but was in ![c\|center\|800px](images/mt_example2.png ) The smallest pad was first patterned three times in X direction and then scaled to factor two (so the three occurrences have scaling factor 1.0, 1.5 and 2.0). Then a polar pattern was applied with 8 occurrences. -Since the scaling is done with respect to the center of gravity, in the case of a pad, it is necessary that the pad penetrate also in the main body, otherwise the scaled objects are floating, detached from the body. To have a pad that intersects the main body can be used \"two dimensions\" type or \"simmetric to plane\" option. +Since the scaling is done with respect to the center of gravity, in the case of a pad, it is necessary that the pad penetrate also in the main body, otherwise the scaled objects are floating, detached from the body. To have a pad that intersects the main body can be used \"two dimensions\" type or \"simmetric to plane\" option. + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Scaled/ru diff --git a/wiki/translations/ru/PartDesign_ShapeBinder.md b/wiki/translations/ru/PartDesign_ShapeBinder.md index deadeefe54..6097ef7aa8 100644 --- a/wiki/translations/ru/PartDesign_ShapeBinder.md +++ b/wiki/translations/ru/PartDesign_ShapeBinder.md @@ -8,6 +8,8 @@ SeeAlso:[Создать новую под-объектную связующую форму](PartDesign_SubShapeBinder/ru.md), [Создать клон](PartDesign_Clone/ru.md) --- +# PartDesign ShapeBinder/ru + ## Описание Creates a datum **shape binder** inside the active Body. A shape binder is a reference object that links to edges or faces from another Body. It also can be used to link a sketch from one body to another body. The shape binder object displays as translucent yellow in the [3D view](3D_view.md). @@ -109,4 +111,7 @@ There is a workaround for multiple selection: If you select all the elements you {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign ShapeBinder/ru diff --git a/wiki/translations/ru/PartDesign_Sprocket.md b/wiki/translations/ru/PartDesign_Sprocket.md index 2bdde44f85..5489fa1a45 100644 --- a/wiki/translations/ru/PartDesign_Sprocket.md +++ b/wiki/translations/ru/PartDesign_Sprocket.md @@ -6,6 +6,8 @@ Version:0.19 --- +# PartDesign Sprocket/ru + ## Description This tool allows you to create a 2D profile of a sprocket (or chainwheel). It can be padded with the [PartDesign Pad](PartDesign_Pad.md) feature. @@ -35,4 +37,7 @@ This tool allows you to create a 2D profile of a sprocket (or chainwheel). It ca {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Sprocket/ru diff --git a/wiki/translations/ru/PartDesign_SubShapeBinder.md b/wiki/translations/ru/PartDesign_SubShapeBinder.md index 7298e820c7..78e1152b8b 100644 --- a/wiki/translations/ru/PartDesign_SubShapeBinder.md +++ b/wiki/translations/ru/PartDesign_SubShapeBinder.md @@ -8,6 +8,8 @@ SeeAlso:[Создать связующую форму](PartDesign_ShapeBinder/ru.md), [Создать клон](PartDesign_Clone/ru.md) --- +# PartDesign SubShapeBinder/ru + ## Описание A [PartDesign\_SubShapeBinder](PartDesign_SubShapeBinder.md) imports an element from another Body into the active [Body](PartDesign_Body.md). It can take the [Shape](Shape.md) of, or be \"bound\" to one or multiple objects or subelements (edges or faces) from another object. @@ -86,4 +88,7 @@ See [Part Feature](Part_Feature.md). {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubShapeBinder/ru diff --git a/wiki/translations/ru/PartDesign_SubtractiveBox.md b/wiki/translations/ru/PartDesign_SubtractiveBox.md index 1fa68ac538..76d72a7671 100644 --- a/wiki/translations/ru/PartDesign_SubtractiveBox.md +++ b/wiki/translations/ru/PartDesign_SubtractiveBox.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveBox/ru + ## Описание Inserts a subtractive box in the active Body. Its shape is subtracted from the existing solid. @@ -45,4 +47,7 @@ The Box can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveBox/ru diff --git a/wiki/translations/ru/PartDesign_SubtractiveCone.md b/wiki/translations/ru/PartDesign_SubtractiveCone.md index c9f0d66183..75e1508822 100644 --- a/wiki/translations/ru/PartDesign_SubtractiveCone.md +++ b/wiki/translations/ru/PartDesign_SubtractiveCone.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [PartDesign Additive Cone](PartDesign_AdditiveCone.md) --- +# PartDesign SubtractiveCone/ru + ## Описание Inserts a subtractive cone in the active Body. Its shape is subtracted from the existing solid. @@ -49,4 +51,7 @@ The Cone can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCone/ru diff --git a/wiki/translations/ru/PartDesign_SubtractiveCylinder.md b/wiki/translations/ru/PartDesign_SubtractiveCylinder.md index a66f2cbf47..edadc8bd73 100644 --- a/wiki/translations/ru/PartDesign_SubtractiveCylinder.md +++ b/wiki/translations/ru/PartDesign_SubtractiveCylinder.md @@ -7,6 +7,8 @@ SeeAlso:[Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [Additive Cylinder](PartDesign_AdditiveCylinder.md) --- +# PartDesign SubtractiveCylinder/ru + ## Описание Вставляет субтрактивный цилиндр в активное Тело. Его форма вычитается из существующего тела. @@ -53,4 +55,7 @@ The Cylinder can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCylinder/ru diff --git a/wiki/translations/ru/PartDesign_SubtractiveEllipsoid.md b/wiki/translations/ru/PartDesign_SubtractiveEllipsoid.md index 0d201a4f8f..7121fd8b0b 100644 --- a/wiki/translations/ru/PartDesign_SubtractiveEllipsoid.md +++ b/wiki/translations/ru/PartDesign_SubtractiveEllipsoid.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveEllipsoid/ru + ## Description Inserts a subtractive ellipsoid in the active Body. Its shape is subtracted from the existing solid. @@ -53,4 +55,7 @@ The Ellipsoid can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveEllipsoid/ru diff --git a/wiki/translations/ru/PartDesign_SubtractiveHelix.md b/wiki/translations/ru/PartDesign_SubtractiveHelix.md index 857e47f9d8..9d352ee317 100644 --- a/wiki/translations/ru/PartDesign_SubtractiveHelix.md +++ b/wiki/translations/ru/PartDesign_SubtractiveHelix.md @@ -8,6 +8,8 @@ SeeAlso:[Аддитивная спираль](PartDesign_AdditiveHelix/ru.md) --- +# PartDesign SubtractiveHelix/ru + ## Описание The **SubtractiveHelix** tool modifies a solid by sweeping a selected sketch or 2D object along a helix path cutting away the material. @@ -123,4 +125,7 @@ If checked, the helix will be shown in the view, and updated automatically on ev {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveHelix/ru diff --git a/wiki/translations/ru/PartDesign_SubtractiveLoft.md b/wiki/translations/ru/PartDesign_SubtractiveLoft.md index cf0d8cee81..76c0792572 100644 --- a/wiki/translations/ru/PartDesign_SubtractiveLoft.md +++ b/wiki/translations/ru/PartDesign_SubtractiveLoft.md @@ -8,6 +8,8 @@ SeeAlso:[Аддитивный профиль](PartDesign_AdditiveLoft/ru.md), [Субтрактивный трубный профиль](PartDesign_SubtractivePipe/ru.md) --- +# PartDesign SubtractiveLoft/ru + ## Описание **Субтрактивный профиль** создает субтрактивное твердое тело в активном теле путем перехода между двумя или более эскизами (также называемыми поперечными сечениями). После чего данная форма вычитается из существующего твердого тела. @@ -72,4 +74,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveLoft/ru diff --git a/wiki/translations/ru/PartDesign_SubtractivePipe.md b/wiki/translations/ru/PartDesign_SubtractivePipe.md index 62ee988416..063ff811a7 100644 --- a/wiki/translations/ru/PartDesign_SubtractivePipe.md +++ b/wiki/translations/ru/PartDesign_SubtractivePipe.md @@ -8,6 +8,8 @@ SeeAlso:[Аддитивный трубный профиль](PartDesign_AdditivePipe/ru.md), [Субтрактивный профиль](PartDesign_SubtractiveLoft/ru.md) --- +# PartDesign SubtractivePipe/ru + ## Описание **Субтрактивный трубный профиль** создает субтрактивное твердое тело в активном теле, перемещая один или несколько эскизов (также называемых поперечными сечениями) по открытому или замкнутому контуру. После чего созанная форма вычитается из существующего твердого тела. Субтрактивный трубный профиль часто применяется совместно с инструментами: [спираль](Part_Helix/ru.md) и [связующая форма](PartDesign_ShapeBinder/ru.md) для создания резьбы; подробности см. в [руководстве по созданию резьбы](Thread_for_Screw_Tutorial/ru.md). @@ -87,4 +89,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePipe/ru diff --git a/wiki/translations/ru/PartDesign_SubtractivePrism.md b/wiki/translations/ru/PartDesign_SubtractivePrism.md index b354226ffd..e450263642 100644 --- a/wiki/translations/ru/PartDesign_SubtractivePrism.md +++ b/wiki/translations/ru/PartDesign_SubtractivePrism.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [PartDesign Additive Prism](PartDesign_AdditivePrism.md) --- +# PartDesign SubtractivePrism/ru + ## Description Inserts a subtractive prism in the active Body. Its shape is subtracted from the existing solid. @@ -53,4 +55,7 @@ The Prism can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePrism/ru diff --git a/wiki/translations/ru/PartDesign_SubtractiveSphere.md b/wiki/translations/ru/PartDesign_SubtractiveSphere.md index 3d50afe179..7a973c2989 100644 --- a/wiki/translations/ru/PartDesign_SubtractiveSphere.md +++ b/wiki/translations/ru/PartDesign_SubtractiveSphere.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveSphere/ru + ## Description Inserts a subtractive sphere in the active Body. Its shape is subtracted from the existing solid. @@ -47,4 +49,7 @@ The Sphere can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveSphere/ru diff --git a/wiki/translations/ru/PartDesign_SubtractiveTorus.md b/wiki/translations/ru/PartDesign_SubtractiveTorus.md index e21b692d38..40766958a1 100644 --- a/wiki/translations/ru/PartDesign_SubtractiveTorus.md +++ b/wiki/translations/ru/PartDesign_SubtractiveTorus.md @@ -8,6 +8,8 @@ SeeAlso:[Создать субтрактивный примитив](PartDesign_CompPrimitiveSubtractive/ru.md) --- +# PartDesign SubtractiveTorus/ru + ## Описание Inserts a subtractive torus in the active Body. Its shape is subtracted from the existing solid. @@ -50,4 +52,7 @@ The Torus can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveTorus/ru diff --git a/wiki/translations/ru/PartDesign_SubtractiveWedge.md b/wiki/translations/ru/PartDesign_SubtractiveWedge.md index 1a4b4fcb26..319cfd47a4 100644 --- a/wiki/translations/ru/PartDesign_SubtractiveWedge.md +++ b/wiki/translations/ru/PartDesign_SubtractiveWedge.md @@ -8,6 +8,8 @@ SeeAlso:[Создать субтрактивный примитив](PartDesign_CompPrimitiveSubtractive/ru.md), [Аддитивный клин](PartDesign_AdditiveWedge/ru.md) --- +# PartDesign SubtractiveWedge/ru + ## Описание Inserts a subtractive wedge in the active Body. Its shape is subtracted from the existing solid. @@ -52,4 +54,7 @@ Wedges can be used to create pyramids by setting **X2 min/max** and **Z2 min/max {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveWedge/ru diff --git a/wiki/translations/ru/PartDesign_Thickness.md b/wiki/translations/ru/PartDesign_Thickness.md index d5f4b84f91..445660dcf9 100644 --- a/wiki/translations/ru/PartDesign_Thickness.md +++ b/wiki/translations/ru/PartDesign_Thickness.md @@ -8,6 +8,8 @@ SeeAlso:[Полость](Part_Thickness/ru.md) --- +# PartDesign Thickness/ru + ## Описание The **Thickness** tool works on a solid Body and transforms it into a thick-walled hollow object with at least one open face, giving to each of its remaining faces a uniform thickness. On some solids it allows you to significantly speed up the work, and avoids making extrusions and pockets. @@ -78,4 +80,7 @@ Then {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Thickness/ru diff --git a/wiki/translations/ru/PartDesign_WizardShaft.md b/wiki/translations/ru/PartDesign_WizardShaft.md index 5470a111ae..55af4a4639 100644 --- a/wiki/translations/ru/PartDesign_WizardShaft.md +++ b/wiki/translations/ru/PartDesign_WizardShaft.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench/ru.md), Complete --- +# PartDesign WizardShaft/ru + @@ -76,4 +78,7 @@ To add a new shaft segment, right-click into the empty space to the right of the {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign WizardShaft/ru diff --git a/wiki/translations/ru/PartDesign_Workbench.md b/wiki/translations/ru/PartDesign_Workbench.md index cee53ced73..0d8e9d5bc3 100644 --- a/wiki/translations/ru/PartDesign_Workbench.md +++ b/wiki/translations/ru/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/ru - - -Логотип верстака PartDesign +# Логотип верстака PartDesign PartDesign Workbench/ru {{TOCright}} @@ -200,3 +197,6 @@ PartDesign Workbench неразрывно связан с [верстаком Sk {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/ru diff --git a/wiki/translations/ru/PartDesign_tutorial.md b/wiki/translations/ru/PartDesign_tutorial.md index 3dce9de829..cfe79ae885 100644 --- a/wiki/translations/ru/PartDesign_tutorial.md +++ b/wiki/translations/ru/PartDesign_tutorial.md @@ -1,5 +1,5 @@ # PartDesign tutorial/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic= Sketcher |Level= Beginner |Time= 15 minutes @@ -105,3 +105,6 @@ After completing this task you should have the following result. If not, re-edit the MultiTransform operation by double clicking on it in the Tree View. Check both pattern features to detect necessary modifications, such as the **Axis** and if the **Direction** needs to be reversed. We are now finished with the basic workflow for the [PartDesign Workbench](PartDesign_Workbench.md). + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign tutorial/ru diff --git a/wiki/translations/ru/Part_API.md b/wiki/translations/ru/Part_API.md index ff309ac544..f70d21edf0 100644 --- a/wiki/translations/ru/Part_API.md +++ b/wiki/translations/ru/Part_API.md @@ -1,5 +1,5 @@ # Part API/ru - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** The Part module is the direct connection between FreeCAD and the OpenCasCade kernel. It provides mainly [TopoShapes](TopoShape_API.md) which is the main object type used by OpenCascade. The Part module also contains a variety of convenience functions to create and manipulate topoShapes. Example: ```python @@ -93,3 +93,6 @@ Part.show(mycube) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part API/ru diff --git a/wiki/translations/ru/Part_Attachment.md b/wiki/translations/ru/Part_Attachment.md index de03d23109..64fb8ba2bc 100644 --- a/wiki/translations/ru/Part_Attachment.md +++ b/wiki/translations/ru/Part_Attachment.md @@ -1,2 +1,5 @@ # Part Attachment/ru 1. REDIRECT [Part\_EditAttachment/ru](Part_EditAttachment/ru.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Attachment/ru diff --git a/wiki/translations/ru/Part_Boolean.md b/wiki/translations/ru/Part_Boolean.md index 790d2ecf1c..3eb1cce2ee 100644 --- a/wiki/translations/ru/Part_Boolean.md +++ b/wiki/translations/ru/Part_Boolean.md @@ -7,6 +7,8 @@ SeeAlso:[Объединение](Part_Union/ru.md), [Пересечение](Part_Common/ru.md), [Обрезать](Part_Cut/ru.md) и [Part Section](Part_Section/ru.md) --- +# Part Boolean/ru + ## Описание @@ -78,8 +80,5 @@ In cases of coplanarity, even if the first boolean operation succeeds, subsequen *Left: shapes that share a face, a boolean union may produce incorrect results. Right: shapes that intersect each other clearly, the boolean union will be successful in most cases.* - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Boolean/ru diff --git a/wiki/translations/ru/Part_BooleanFragments.md b/wiki/translations/ru/Part_BooleanFragments.md index 7ab4c8eb35..4e014a3fb2 100644 --- a/wiki/translations/ru/Part_BooleanFragments.md +++ b/wiki/translations/ru/Part_BooleanFragments.md @@ -7,6 +7,8 @@ SeeAlso:[Part XOR](Part_Slice/ru___Part_Slice]],_[[Part_XOR/ru.md), [Join features](Part_CompJoinFeatures/ru.md), [Part Boolean](Part_Boolean/ru.md)|Version:0.17.8053 --- +# Part BooleanFragments/ru + @@ -126,5 +128,5 @@ j.Objects = FreeCADGui.Selection.getSelection() - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part BooleanFragments/ru diff --git a/wiki/translations/ru/Part_Box.md b/wiki/translations/ru/Part_Box.md index 9e73ce542b..1f75fe9ad2 100644 --- a/wiki/translations/ru/Part_Box.md +++ b/wiki/translations/ru/Part_Box.md @@ -7,6 +7,8 @@ SeeAlso:[Создать примитивы](Part_CreatePrimitives/ru.md) --- +# Part Box/ru + ## Описание Команда Куб из [верстака Part](Part_Workbench.md) добавляет параметрический геометрический примитив [1](https://ru.wikipedia.org/wiki/Прямоугольный_параллелепипед) в текущий документ. По умолчанию, команда добавляет куб с ярлыком \"Куб\" со сторонами 10х10х10 мм и располагает его в центре системы координат. Эти параметры могут быть изменены после добавления объекта. @@ -72,8 +74,5 @@ You can change its placement with: FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6, 3), FreeCAD.Rotation(30, 45, 10)) ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Box/ru diff --git a/wiki/translations/ru/Part_BoxSelection.md b/wiki/translations/ru/Part_BoxSelection.md index e3dfff5479..a35e72c83d 100644 --- a/wiki/translations/ru/Part_BoxSelection.md +++ b/wiki/translations/ru/Part_BoxSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Выделить область](Std_BoxSelection/ru.md), [Область выбора элементов](Std_BoxElementSelection/ru.md), [Выбрать всё](Std_SelectAll/ru.md) --- +# Part BoxSelection/ru + ## Описание The ** [Part BoxSelection](Part_BoxSelection.md)** tool allows you to select the faces of the objects on the screen that are touched by the rectangular selection. @@ -27,8 +29,5 @@ The ** [Part BoxSelection](Pa ## Программирование - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part BoxSelection/ru diff --git a/wiki/translations/ru/Part_Builder.md b/wiki/translations/ru/Part_Builder.md index f53983da6e..a035b39e07 100644 --- a/wiki/translations/ru/Part_Builder.md +++ b/wiki/translations/ru/Part_Builder.md @@ -7,6 +7,8 @@ SeeAlso:[Примитивы](Part_Primitives/ru.md) --- +# Part Builder/ru + ## Описание Инструмент для создания более сложных форм из различных параметрических геометрических примитивов. @@ -70,8 +72,5 @@ - Создайте \"оболочку из граней\" - Создайте \"твёрдое тело из оболочки\" - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Builder/ru diff --git a/wiki/translations/ru/Part_Chamfer.md b/wiki/translations/ru/Part_Chamfer.md index 37b561f04e..8775c6e5c2 100644 --- a/wiki/translations/ru/Part_Chamfer.md +++ b/wiki/translations/ru/Part_Chamfer.md @@ -7,6 +7,8 @@ SeeAlso:[Скругление](Part_Fillet/ru.md) --- +# Part Chamfer/ru + ## Описание Снимает фаски с выбранных рёбер объекта. Диалоговое окно позволяет выбрать, с какой кромкой(кромками) работать, а также изменить различные параметры фаски. @@ -151,8 +153,5 @@ FreeCAD.ActiveDocument.recompute() - Пересчитывает все измененные компоненты на экране и обновляет дисплей. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Chamfer/ru diff --git a/wiki/translations/ru/Part_CheckGeometry.md b/wiki/translations/ru/Part_CheckGeometry.md index f54603a53e..0b195817b0 100644 --- a/wiki/translations/ru/Part_CheckGeometry.md +++ b/wiki/translations/ru/Part_CheckGeometry.md @@ -1,3 +1,4 @@ +# Part CheckGeometry/ru --- - GuiCommand:/ru Name:Part CheckGeometry‏‎ @@ -45,10 +46,7 @@ If ticked, additionally a Boolean OPerations (BOP) check is performed. (v ### Log errors -If ticked, any errors found are also logged in the [report view](Report_view.md). (v0.19) +If ticked, any errors found are also logged in the [report view](Report_view.md). (v0.19) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CheckGeometry/ru diff --git a/wiki/translations/ru/Part_Circle.md b/wiki/translations/ru/Part_Circle.md index b7d038ba97..93e4c57a0b 100644 --- a/wiki/translations/ru/Part_Circle.md +++ b/wiki/translations/ru/Part_Circle.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part Circle/ru + ## Описание Эта команда создаёт ребро в форме круга. При значениях по умолчанию круговое изогнутое ребро будет замкнутым и, следовательно, будет кругом. Если свойства Угол0 или Угол1 изменить от их значений по умолчанию (0 и 360), ребро будет открытой кривой, то есть дугой. @@ -30,8 +32,5 @@ - {{Parameter|Угол(Angle) 1}}: окончание изогнутого ребра (в градусах и в направлении против часовой стрелки), значение по умолчанию - 360 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Circle/ru diff --git a/wiki/translations/ru/Part_Common.md b/wiki/translations/ru/Part_Common.md index f4e0c7dbd8..663dcee0a0 100644 --- a/wiki/translations/ru/Part_Common.md +++ b/wiki/translations/ru/Part_Common.md @@ -7,6 +7,8 @@ SeeAlso:[Part Boolean](Part_Boolean/ru.md), [Part Cut](Part_Cut/ru.md), [Part Fuse](Part_Fuse/ru.md) --- +# Part Common/ru + @@ -23,8 +25,5 @@ Extracts the common part (intersection) between selected Part objects. This oper Input objects must be [OpenCascade](OpenCascade.md) shapes. Examples: stuff made with Part, PartDesign, Sketcher workbenches. Not meshes (unless those were converted to shapes) - for meshes, there are specific Boolean tools in MeshDesign workbench. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Common/ru diff --git a/wiki/translations/ru/Part_CompCompoundTools.md b/wiki/translations/ru/Part_CompCompoundTools.md index 6d3abdeb41..ba7b57475b 100644 --- a/wiki/translations/ru/Part_CompCompoundTools.md +++ b/wiki/translations/ru/Part_CompCompoundTools.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part CompCompoundTools/ru + @@ -29,5 +31,5 @@ - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompCompoundTools/ru diff --git a/wiki/translations/ru/Part_CompJoinFeatures.md b/wiki/translations/ru/Part_CompJoinFeatures.md index a1dcb37628..bb0232b8d0 100644 --- a/wiki/translations/ru/Part_CompJoinFeatures.md +++ b/wiki/translations/ru/Part_CompJoinFeatures.md @@ -7,6 +7,8 @@ SeeAlso:[Connect](Part_JoinConnect/ru.md), [Embed](Part_JoinEmbed/ru.md), [Cutout](Part_JoinCutout/ru.md), [Part Boolean](Part_Boolean/ru.md), [Part Thickness](Part_Thickness/ru.md) --- +# Part CompJoinFeatures/ru + @@ -32,8 +34,5 @@ *Above: showing the result of each tool available* - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompJoinFeatures/ru diff --git a/wiki/translations/ru/Part_CompOffsetTools.md b/wiki/translations/ru/Part_CompOffsetTools.md index 9faed7a3e3..b5f266e979 100644 --- a/wiki/translations/ru/Part_CompOffsetTools.md +++ b/wiki/translations/ru/Part_CompOffsetTools.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part CompOffsetTools/ru + ## Описание A set of Offset tools @@ -16,8 +18,5 @@ A set of Offset tools - [3D Offset](Part_Offset.md): Constructs a parallel shape at a certain distance from original. - [2D Offset](Part_Offset2D.md): Constructs a parallel wire at certain distance from original, or enlarges/shrinks a planar face. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompOffsetTools/ru diff --git a/wiki/translations/ru/Part_CompSplittingTools.md b/wiki/translations/ru/Part_CompSplittingTools.md index 1415af6af9..3566272749 100644 --- a/wiki/translations/ru/Part_CompSplittingTools.md +++ b/wiki/translations/ru/Part_CompSplittingTools.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part CompSplittingTools/ru + @@ -36,5 +38,5 @@ - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompSplittingTools/ru diff --git a/wiki/translations/ru/Part_Compound.md b/wiki/translations/ru/Part_Compound.md index 467aefdc33..41dbe75239 100644 --- a/wiki/translations/ru/Part_Compound.md +++ b/wiki/translations/ru/Part_Compound.md @@ -8,6 +8,8 @@ SeeAlso:[Part Fuse](Part_Fuse/ru.md), [Part CompoundFilter](Part_CompoundFilter/ru.md), [Part ExplodeCompound](Part_ExplodeCompound/ru.md) --- +# Part Compound/ru + @@ -28,8 +30,5 @@ A compound containing pieces that intersect or touch is **invalid** for Boolean To turn this check on go to **Tools → Edit Parameters → Preferences... → Mod → Part → CheckGeometry → RunBOPCheck** and set the parameter to `true`. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Compound/ru diff --git a/wiki/translations/ru/Part_CompoundFilter.md b/wiki/translations/ru/Part_CompoundFilter.md index a380518161..35aedbc0f9 100644 --- a/wiki/translations/ru/Part_CompoundFilter.md +++ b/wiki/translations/ru/Part_CompoundFilter.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Part CompoundFilter/ru + @@ -75,8 +77,5 @@ CompoundFilter можно использовать для извлечения - **items**: список или диапазон элементов, которые нужно выбрать, если тип фильтра - «specific items». - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CompoundFilter/ru diff --git a/wiki/translations/ru/Part_Cone.md b/wiki/translations/ru/Part_Cone.md index 89128da790..b4b9102f3c 100644 --- a/wiki/translations/ru/Part_Cone.md +++ b/wiki/translations/ru/Part_Cone.md @@ -7,6 +7,8 @@ SeeAlso:[Создать примитивы](Part_Primitives/ru.md) --- +# Part Cone/ru + ## Описание Параметрический усечённый конус доступен из панели инструментов верстака Part, через меню (подменю примитивы), диалогового окна Создать примитивы. @@ -44,8 +46,5 @@ The cone properties can later be edited, either in the [Property editor](Propert - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cone/ru diff --git a/wiki/translations/ru/Part_CreatePrimitives.md b/wiki/translations/ru/Part_CreatePrimitives.md index ebbc70f422..85163aabb9 100644 --- a/wiki/translations/ru/Part_CreatePrimitives.md +++ b/wiki/translations/ru/Part_CreatePrimitives.md @@ -1,2 +1,5 @@ # Part CreatePrimitives/ru 1. REDIRECT [Part\_Primitives/ru](Part_Primitives/ru.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CreatePrimitives/ru diff --git a/wiki/translations/ru/Part_CrossSections.md b/wiki/translations/ru/Part_CrossSections.md index d8f1676849..2c61801fbd 100644 --- a/wiki/translations/ru/Part_CrossSections.md +++ b/wiki/translations/ru/Part_CrossSections.md @@ -7,6 +7,8 @@ SeeAlso:[Разделить](Part_Section/ru.md) --- +# Part CrossSections/ru + ## Описание The **Cross-sections** utility creates one or more cross-sections through the selected shape. @@ -35,8 +37,5 @@ The **Cross-sections** utility creates one or more cross-sections through the se ![Result](images/SectionCross3.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CrossSections/ru diff --git a/wiki/translations/ru/Part_Cut.md b/wiki/translations/ru/Part_Cut.md index 900b6cf51a..1c1d640d65 100644 --- a/wiki/translations/ru/Part_Cut.md +++ b/wiki/translations/ru/Part_Cut.md @@ -7,6 +7,8 @@ SeeAlso:[Объединение](Part_Union/ru.md), [Пересечение](Part_Common/ru.md), [Part Boolean](Part_Boolean/ru.md) --- +# Part Cut/ru + ## Описание Cuts (subtracts) selected Part objects, the last one being subtracted from the first one. This operation is fully parametric and the components can be modified and the result recomputed. @@ -26,8 +28,5 @@ Cuts (subtracts) selected Part objects, the last one being subtracted from the f Input objects must be [OpenCascade](OpenCascade.md) shapes. Examples: stuff made with Part, PartDesign, Sketcher workbenches. Not meshes (unless those were converted to shapes) - for meshes, there are specific Boolean tools in MeshDesign workbench. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cut/ru diff --git a/wiki/translations/ru/Part_Cylinder.md b/wiki/translations/ru/Part_Cylinder.md index e17fa6d082..10a724330c 100644 --- a/wiki/translations/ru/Part_Cylinder.md +++ b/wiki/translations/ru/Part_Cylinder.md @@ -6,6 +6,8 @@ SeeAlso:[Создать примитивы](Part_Primitives/ru.md) --- +# Part Cylinder/ru + ## Описание Создаёт простой цилиндр с параметрами расположение, угол, радиус и длина. @@ -39,10 +41,7 @@ The cylinder properties can later be edited, either in the [Property editor](Pro - **First Angle**: Angle in first direction. (v0.20) -- **Second Angle**: Angle in second direction. (v0.20) - - +- **Second Angle**: Angle in second direction. (v0.20) - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cylinder/ru diff --git a/wiki/translations/ru/Part_Defeaturing.md b/wiki/translations/ru/Part_Defeaturing.md index 5bf88503f8..a9061e1f45 100644 --- a/wiki/translations/ru/Part_Defeaturing.md +++ b/wiki/translations/ru/Part_Defeaturing.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Part Defeaturing/ru + @@ -46,5 +48,5 @@ To be available, this tool requires FreeCAD to be based on Open Cascade 7.3.0 or - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Defeaturing/ru diff --git a/wiki/translations/ru/Part_EditAttachment.md b/wiki/translations/ru/Part_EditAttachment.md index 8b0cd3c1fc..4a9da6c5e5 100644 --- a/wiki/translations/ru/Part_EditAttachment.md +++ b/wiki/translations/ru/Part_EditAttachment.md @@ -8,6 +8,8 @@ SeeAlso:[Placement](Placement/ru.md), [Basic Attachment Tutorial](Basic_Attachment_Tutorial/ru.md) --- +# Part EditAttachment/ru + @@ -308,4 +310,7 @@ Attachment Offset is used to apply a linear or rotary offset from the referenced {{Part_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part EditAttachment/ru diff --git a/wiki/translations/ru/Part_ElementCopy.md b/wiki/translations/ru/Part_ElementCopy.md index 837b97ee67..f0918f68e9 100644 --- a/wiki/translations/ru/Part_ElementCopy.md +++ b/wiki/translations/ru/Part_ElementCopy.md @@ -8,6 +8,8 @@ SeeAlso:[SimpleCopy](Part_SimpleCopy/ru.md), [TransformedCopy](Part_TransformedCopy/ru.md), [RefineShape](Part_RefineShape/ru.md) --- +# Part ElementCopy/ru + @@ -33,8 +35,5 @@ The copy has a simple **Placement** property like any other [Part Feature](Part_ The copy has simple view properties like any other [Part Feature](Part_Feature.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ElementCopy/ru diff --git a/wiki/translations/ru/Part_Ellipse.md b/wiki/translations/ru/Part_Ellipse.md index 5d295eb0fc..9c7efc7e88 100644 --- a/wiki/translations/ru/Part_Ellipse.md +++ b/wiki/translations/ru/Part_Ellipse.md @@ -7,6 +7,8 @@ SeeAlso:.. --- +# Part Ellipse/ru + ## Описание Эта команда создаёт эллиптическое изогнутое ребро. При значениях по умолчанию эллиптическое изогнутое ребро будет замкнуто и, следовательно, будет эллипсом. Если свойства Угол(Angle)1 или Угол(Angle)2 отличаются от значений по умолчанию (0 и 360), ребро будет открытой кривой. @@ -22,8 +24,5 @@ - **Угол(Angle) 1:** начало ребра эллипса или изогнутого эллиптического ребра (в градусах и в направлении против часовой стрелки), значение по умолчанию - 0 - **Угол(Angle) 2:** окончание ребра эллипса или изогнутого эллиптического ребра (в градусах и в направлении против часовой стрелки), значение по умолчанию - 360 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipse/ru diff --git a/wiki/translations/ru/Part_Ellipsoid.md b/wiki/translations/ru/Part_Ellipsoid.md index 37029fde9e..e87af0f062 100644 --- a/wiki/translations/ru/Part_Ellipsoid.md +++ b/wiki/translations/ru/Part_Ellipsoid.md @@ -7,6 +7,8 @@ SeeAlso:[Создать примитивы...](Part_Primitives/ru.md) --- +# Part Ellipsoid/ru + ## Описание Команда [Эллипсоид](Part_Ellipsoid/ru.md) создаёт параметрический твердотельный Эллипсоид. @@ -42,8 +44,5 @@ ![](images/Part_Ellipsoid_screenshot.jpg ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipsoid/ru diff --git a/wiki/translations/ru/Part_ExplodeCompound.md b/wiki/translations/ru/Part_ExplodeCompound.md index 935cf76547..7c4a0c2111 100644 --- a/wiki/translations/ru/Part_ExplodeCompound.md +++ b/wiki/translations/ru/Part_ExplodeCompound.md @@ -8,6 +8,8 @@ SeeAlso:[Part Compound](Part_Compound/ru.md), [Draft Downgrade](Draft_Downgrade/ru.md) --- +# Part ExplodeCompound/ru + @@ -34,8 +36,5 @@ The tool will also explode non-compound shapes into their lower-level constituen - Obtaining individual contours from multi-contour sketches and faces - Obtaining a pure solid from a solid-in-compound, for use in [FEM Workbench](FEM_Workbench.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ExplodeCompound/ru diff --git a/wiki/translations/ru/Part_Export.md b/wiki/translations/ru/Part_Export.md index 0c2f343f31..a5ad836fe1 100644 --- a/wiki/translations/ru/Part_Export.md +++ b/wiki/translations/ru/Part_Export.md @@ -7,6 +7,8 @@ SeeAlso:[Импорт CAD...](Part_Import/ru.md), [Экспортировать...](Std_Export/ru.md), [Import Export](Import_Export/ru.md) --- +# Part Export/ru + ## Описание @@ -29,14 +31,5 @@ - - - - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Export/ru diff --git a/wiki/translations/ru/Part_Extrude.md b/wiki/translations/ru/Part_Extrude.md index 7d0d95b694..ce511b7f0f 100644 --- a/wiki/translations/ru/Part_Extrude.md +++ b/wiki/translations/ru/Part_Extrude.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Trimex](Draft_Trimex/ru.md) --- +# Part Extrude/ru + ![600px](images/Part_Extrude_demo.png) ## Описание @@ -112,8 +114,5 @@ Part/Деталь - Выдавить может выдавливать любой объект, имеющий геометрию детали (форму OCC), за исключением твёрдых тел и составных тел. И она не может выдавливать отдельные грани других объектов. PartDesign Выдавить принимает только эскиз как профиль (и небольшую выборку других типов объектов) или грань твёрдого тела. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Extrude/ru diff --git a/wiki/translations/ru/Part_FaceColors.md b/wiki/translations/ru/Part_FaceColors.md index 989f051090..580aaf91a5 100644 --- a/wiki/translations/ru/Part_FaceColors.md +++ b/wiki/translations/ru/Part_FaceColors.md @@ -6,6 +6,8 @@ SeeAlso:[Std Appearance](Std_SetAppearance.md) --- +# Part FaceColors/ru + ## Установить цвет поверхностей The **FaceColors** feature allows you to define a color for each face or surface of an object. This way you can assign multiple colors to one part. To color whole parts, use instead is the feature *[SetAppearance](Std_SetAppearance.md)*. @@ -35,3 +37,6 @@ To reset all face colors: [Category:User Documentation](Category:User_Documentation.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part FaceColors/ru diff --git a/wiki/translations/ru/Part_Feature.md b/wiki/translations/ru/Part_Feature.md index 5938c1bc11..95be19d0fd 100644 --- a/wiki/translations/ru/Part_Feature.md +++ b/wiki/translations/ru/Part_Feature.md @@ -1,6 +1,4 @@ # Part Feature/ru - - ## Вступление @@ -202,4 +200,7 @@ If desired, the `Label` attribute can be changed to a more meaningful text. - By default the `Label` is unique, just like the `Name`. However, this behavior can be changed in the [preferences editor](Preferences_Editor.md), **Edit → Preferences → General → Document → Allow duplicate object labels in one document**. This means that in general the `Label` may be repeated in the same document; when testing for a specific element the user should rely on the `Name` rather than on the `Label`. - {{Document objects navi}} + {{Document objects navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Feature/ru diff --git a/wiki/translations/ru/Part_Fillet.md b/wiki/translations/ru/Part_Fillet.md index 95f5889aa1..7e2870f6a9 100644 --- a/wiki/translations/ru/Part_Fillet.md +++ b/wiki/translations/ru/Part_Fillet.md @@ -7,6 +7,8 @@ SeeAlso:[Фаска](Part_Chamfer/ru.md) --- +# Part Fillet/ru + ## Описание Этот инструмент создаёт скругление выбранной грани объекта. Диалоговое окно позволяет выбрать объект и грани для обработки. @@ -57,8 +59,5 @@ Part(Деталь) Скругление может ничего не сдела - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fillet/ru diff --git a/wiki/translations/ru/Part_Fuse.md b/wiki/translations/ru/Part_Fuse.md index dfe46e281f..8cd8c8a8e9 100644 --- a/wiki/translations/ru/Part_Fuse.md +++ b/wiki/translations/ru/Part_Fuse.md @@ -7,6 +7,8 @@ SeeAlso:[Обрезать](Part_Cut/ru.md), [Пересечение](Part_Common/ru.md), [Part Boolean](Part_Boolean/ru.md) --- +# Part Fuse/ru + ## Описание The **![](images/)_[Part_Fuse](Part_Fuse.md)** tool fuses (unites) selected Part objects into one. This operation is fully parametric and the components can be modified and the result recomputed. @@ -38,8 +40,5 @@ Items can be added and removed from the fusion, by dragging them in or out of th После завершения этой операции может оказаться полезным уточнить форму с помощью команды [Уточнить форму](Part_RefineShape/ru.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fuse/ru diff --git a/wiki/translations/ru/Part_Helix.md b/wiki/translations/ru/Part_Helix.md index 933b401db0..ea07c3a732 100644 --- a/wiki/translations/ru/Part_Helix.md +++ b/wiki/translations/ru/Part_Helix.md @@ -7,6 +7,8 @@ SeeAlso:[Примитивы](Part_Primitives/ru.md) --- +# Part Helix/ru + @@ -80,8 +82,5 @@ | | | +----------------------------------------------------------+------------------------------------------------------------------------------------------------+ - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Helix/ru diff --git a/wiki/translations/ru/Part_Import.md b/wiki/translations/ru/Part_Import.md index d8364aec3b..0f7b9cda34 100644 --- a/wiki/translations/ru/Part_Import.md +++ b/wiki/translations/ru/Part_Import.md @@ -7,6 +7,8 @@ SeeAlso:[Std Import](Std_Import/ru.md) --- +# Part Import/ru + @@ -31,8 +33,5 @@ - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Import/ru diff --git a/wiki/translations/ru/Part_JoinConnect.md b/wiki/translations/ru/Part_JoinConnect.md index 698d802f2e..c82f9e9641 100644 --- a/wiki/translations/ru/Part_JoinConnect.md +++ b/wiki/translations/ru/Part_JoinConnect.md @@ -7,6 +7,8 @@ SeeAlso:[Connect](Part_JoinConnect/ru.md), [Embed](Part_JoinEmbed/ru.md), [Cutout](Part_JoinCutout/ru.md), [Part Boolean](Part_Boolean/ru.md), [Part Thickness](Part_Thickness/ru.md) --- +# Part JoinConnect/ru + ## Описание Connect tool connects interiors of two walled objects (e.g., pipes). It can also join shells and wires. @@ -89,8 +91,5 @@ j.Objects = FreeCADGui.Selection.getSelection() - The tool was re-implemented to work via generalFuse in FreeCAD v0.17.8053 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinConnect/ru diff --git a/wiki/translations/ru/Part_JoinCutout.md b/wiki/translations/ru/Part_JoinCutout.md index fa57d4dbc2..e812ee8ba9 100644 --- a/wiki/translations/ru/Part_JoinCutout.md +++ b/wiki/translations/ru/Part_JoinCutout.md @@ -8,6 +8,8 @@ SeeAlso:[Connect](Part_JoinConnect/ru.md), [Embed](Part_JoinEmbed/ru.md), [Part Boolean](Part_Boolean/ru.md), [Part Thickness](Part_Thickness/ru.md) --- +# Part JoinCutout/ru + @@ -85,8 +87,5 @@ j.Tool = FreeCADGui.Selection.getSelection()[1] The tool itself is implemented in Python, see {{FileName|/Mod/Part/JoinFeatures.py}} ([Github link](https://github.com/FreeCAD/FreeCAD/blob/master/src/Mod/Part/JoinFeatures.py)) under where FreeCAD is installed. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinCutout/ru diff --git a/wiki/translations/ru/Part_JoinEmbed.md b/wiki/translations/ru/Part_JoinEmbed.md index 13811b8197..09402acd22 100644 --- a/wiki/translations/ru/Part_JoinEmbed.md +++ b/wiki/translations/ru/Part_JoinEmbed.md @@ -8,6 +8,8 @@ SeeAlso:[Соединить объекты](Part_JoinConnect/ru.md), [Вырез объекта](Part_JoinCutout/ru.md), [Булевы операции](Part_Boolean/ru.md), [Толщина](Part_Thickness/ru.md) --- +# Part JoinEmbed/ru + ## Описание Embed tool embeds a walled object (e.g., a pipe) into another walled object. @@ -86,8 +88,5 @@ j.Tool = FreeCADGui.Selection.getSelection()[1] The tool itself is implemented in Python, see {{FileName|/Mod/Part/JoinFeatures.py}} ([Github link](https://github.com/FreeCAD/FreeCAD/blob/master/src/Mod/Part/JoinFeatures.py)) under where FreeCAD is installed. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part JoinEmbed/ru diff --git a/wiki/translations/ru/Part_Line.md b/wiki/translations/ru/Part_Line.md index 827750e331..ed063adfd9 100644 --- a/wiki/translations/ru/Part_Line.md +++ b/wiki/translations/ru/Part_Line.md @@ -7,6 +7,8 @@ SeeAlso:[Примитивы](Part_Primitives/ru.md) --- +# Part Line/ru + ## Описание ## Применение @@ -84,11 +86,5 @@ | | : | +--------------------------------------------------------+---------------------------------------------+ - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Line/ru diff --git a/wiki/translations/ru/Part_Loft.md b/wiki/translations/ru/Part_Loft.md index 90f9e0e645..7015617984 100644 --- a/wiki/translations/ru/Part_Loft.md +++ b/wiki/translations/ru/Part_Loft.md @@ -7,6 +7,8 @@ SeeAlso:[Part Sweep](Part_Sweep/ru.md) --- +# Part Loft/ru + @@ -105,8 +107,5 @@ If you want to change the selection of the sections after creation of the loft, The sequence of sections depends on the sequence of clicks in the list. If you want to make substantial changes it is recommended to first deselect all and then start selection in the right order. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Loft/ru diff --git a/wiki/translations/ru/Part_MakeCompound.md b/wiki/translations/ru/Part_MakeCompound.md index 0b4e18ec9b..8af78232ba 100644 --- a/wiki/translations/ru/Part_MakeCompound.md +++ b/wiki/translations/ru/Part_MakeCompound.md @@ -1,2 +1,5 @@ # Part MakeCompound/ru 1. REDIRECT [Part Compound/ru](Part_Compound/ru.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeCompound/ru diff --git a/wiki/translations/ru/Part_MakeFace.md b/wiki/translations/ru/Part_MakeFace.md index a90ea255b8..f55384ea4f 100644 --- a/wiki/translations/ru/Part_MakeFace.md +++ b/wiki/translations/ru/Part_MakeFace.md @@ -8,6 +8,8 @@ SeeAlso:[Линейчатая поверхность](Part_RuledSurface/ru.md) --- +# Part MakeFace/ru + ## Описание Создать грань из ломанных создаёт [грань(плоскость)](Part_Plane/ru.md) из пользовательской формы. Форма определяется эскизом с замкнутым контуром. @@ -24,8 +26,5 @@ 1. Выберите эскиз, определяющий по крайней мере один замкнутый контур 2. \# Нажмите кнопку [Создать грань\...](Part_MakeFace/ru.md) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeFace/ru diff --git a/wiki/translations/ru/Part_MakeSolid.md b/wiki/translations/ru/Part_MakeSolid.md index 8eb022f9d1..0af4d1e735 100644 --- a/wiki/translations/ru/Part_MakeSolid.md +++ b/wiki/translations/ru/Part_MakeSolid.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/ru.md) --- +# Part MakeSolid/ru + ## Описание This command creates a solid from a shape object. @@ -30,5 +32,5 @@ This command creates a solid from a shape object. - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part MakeSolid/ru diff --git a/wiki/translations/ru/Part_Measure_Angular.md b/wiki/translations/ru/Part_Measure_Angular.md index b4b77cb54f..acf00db875 100644 --- a/wiki/translations/ru/Part_Measure_Angular.md +++ b/wiki/translations/ru/Part_Measure_Angular.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/ru.md) --- +# Part Measure Angular/ru + @@ -24,11 +26,5 @@ This tool measures the angle between two straight edges, two planar faces or one 3. Alternatively the command can be launched without prior selection. A selection dialog then opens in the [Task panel](Task_panel.md). A Control widget also provides buttons to reset the selection, toggle the measurement display in the [3D view](3D_view.md), and clear all measurements. 4. Measurements are automatically discarded when closing the document. - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Angular/ru diff --git a/wiki/translations/ru/Part_Measure_Clear_All.md b/wiki/translations/ru/Part_Measure_Clear_All.md index 6752f31d41..b5523f3081 100644 --- a/wiki/translations/ru/Part_Measure_Clear_All.md +++ b/wiki/translations/ru/Part_Measure_Clear_All.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/ru.md) --- +# Part Measure Clear All/ru + @@ -19,11 +21,5 @@ This tool clears all measurements from the 3D view. - Press the ** [Clear All](Part_Measure_Clear_All.md)** button. - Use the **Measure → Clear All** - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Clear All/ru diff --git a/wiki/translations/ru/Part_Measure_Linear.md b/wiki/translations/ru/Part_Measure_Linear.md index dba8d200ec..b0b25fd507 100644 --- a/wiki/translations/ru/Part_Measure_Linear.md +++ b/wiki/translations/ru/Part_Measure_Linear.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Part Measure Linear/ru + @@ -26,8 +28,5 @@ This tool measures the distance between two selected topology elements (vertex, 3. Alternatively the command can be launched without prior selection. A selection dialog then opens in the [Task panel](Task_panel.md). A Control widget also provides buttons to reset the selection, toggle the measurement display in the [3D view](3D_view.md), and clear all measurements. 4. Measurements are automatically discarded when closing the document. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Linear/ru diff --git a/wiki/translations/ru/Part_Measure_Menu.md b/wiki/translations/ru/Part_Measure_Menu.md index c3c2612e12..8285bb1781 100644 --- a/wiki/translations/ru/Part_Measure_Menu.md +++ b/wiki/translations/ru/Part_Measure_Menu.md @@ -7,6 +7,8 @@ SeeAlso:[Std MeasureDistance](Std_MeasureDistance/ru.md), [Draft Dimension](Draft_Dimension/ru.md), [Arch Survey](Arch_Survey/ru.md) --- +# Part Measure Menu/ru + @@ -39,3 +41,6 @@ [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Menu/ru diff --git a/wiki/translations/ru/Part_Measure_Refresh.md b/wiki/translations/ru/Part_Measure_Refresh.md index e935778d03..fd0cbceb4d 100644 --- a/wiki/translations/ru/Part_Measure_Refresh.md +++ b/wiki/translations/ru/Part_Measure_Refresh.md @@ -7,6 +7,8 @@ SeeAlso:[Measure Linear](Part_Measure_Linear/ru.md), [Measure Angular](Part_Measure_Angular/ru.md) --- +# Part Measure Refresh/ru + @@ -20,8 +22,5 @@ - Press the ** [Measure Refresh](Part_Measure_Refresh.md)** button. - Use the **Measure → Refresh**. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Refresh/ru diff --git a/wiki/translations/ru/Part_Measure_Toggle_3d.md b/wiki/translations/ru/Part_Measure_Toggle_3d.md index 533ef0ebfc..c62326e617 100644 --- a/wiki/translations/ru/Part_Measure_Toggle_3d.md +++ b/wiki/translations/ru/Part_Measure_Toggle_3d.md @@ -7,6 +7,8 @@ SeeAlso:[Переключить Дельту](Part_Measure_Toggle_Delta/ru.md) --- +# Part Measure Toggle 3d/ru + ## Description This tool toggles the visibility of linear (red) and angular (blue) measurements. @@ -26,5 +28,5 @@ This tool toggles the visibility of linear (red) and angular (blue) measurements - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle 3d/ru diff --git a/wiki/translations/ru/Part_Measure_Toggle_All.md b/wiki/translations/ru/Part_Measure_Toggle_All.md index db5a0f2581..fa6baa2c02 100644 --- a/wiki/translations/ru/Part_Measure_Toggle_All.md +++ b/wiki/translations/ru/Part_Measure_Toggle_All.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Part Measure Toggle All/ru + @@ -23,11 +25,5 @@ This tool toggles the visibility of all measurements from the [3D view](3D_view. - Press the ** '''Toggle All'''** button. - Use the **Measure → Toggle All** - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle All/ru diff --git a/wiki/translations/ru/Part_Measure_Toggle_Delta.md b/wiki/translations/ru/Part_Measure_Toggle_Delta.md index 00a93546f0..6300f324ea 100644 --- a/wiki/translations/ru/Part_Measure_Toggle_Delta.md +++ b/wiki/translations/ru/Part_Measure_Toggle_Delta.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/ru.md) --- +# Part Measure Toggle Delta/ru + ## Description This tool toggles the visibility of delta (green) measurements. @@ -16,8 +18,5 @@ This tool toggles the visibility of delta (green) measurements. - Press the ** '''Toggle Delta'''** button. - Use the **Measure → Toggle Delta** - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Measure Toggle Delta/ru diff --git a/wiki/translations/ru/Part_Mirror.md b/wiki/translations/ru/Part_Mirror.md index 95f8b8d22d..e4c9de4f98 100644 --- a/wiki/translations/ru/Part_Mirror.md +++ b/wiki/translations/ru/Part_Mirror.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part Mirror/ru + ## Описание \'Зеркальное отражение\' - этот инструмент создаёт новый объект (изображение), которое является отражением исходного объекта (источника). Объект отражения создаётся за зеркальной плоскостью. Плоскостью зеркального отражения может быть стандартная (**XY**, **YZ** или **XZ**) или любая другая плоскостью, параллельная стандартной плоскости. @@ -45,8 +47,5 @@ - Произвольные плоскости отражения (т.е. непараллельные стандартной плоскости) не поддерживаются. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Mirror/ru diff --git a/wiki/translations/ru/Part_Module.md b/wiki/translations/ru/Part_Module.md index 74ad9a8493..36fd5f66d2 100644 --- a/wiki/translations/ru/Part_Module.md +++ b/wiki/translations/ru/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/ru - - - - - -Логотип верстака Part +# Логотип верстака Part Part Module/ru {{TOCright}} @@ -207,3 +201,6 @@ [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/ru diff --git a/wiki/translations/ru/Part_Offset.md b/wiki/translations/ru/Part_Offset.md index 566b1939bc..75e59e903f 100644 --- a/wiki/translations/ru/Part_Offset.md +++ b/wiki/translations/ru/Part_Offset.md @@ -7,6 +7,8 @@ SeeAlso:[Толщина](Part_Thickness/ru.md) --- +# Part Offset/ru + ## Описание The Part 3D Offset tool creates parallel copies of a selected shape at a certain distance from the base shape, giving a new object. @@ -61,10 +63,7 @@ same shape with a 3D Offset as SKIN and *filled* offset *filled* offset with 2 Cylinders creating boolean cuts. Cylinder A goes through the FILL whilst Cylinder B only goes thru the FILL and NOT through the source 2D shape. - - - + - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset/ru diff --git a/wiki/translations/ru/Part_Offset2D.md b/wiki/translations/ru/Part_Offset2D.md index 382e3db194..8b9bad0b70 100644 --- a/wiki/translations/ru/Part_Offset2D.md +++ b/wiki/translations/ru/Part_Offset2D.md @@ -8,6 +8,8 @@ SeeAlso:[Part Offset 3D](Part_Offset/ru.md), [Part Thickness](Part_Thickness/ru.md), [Draft Offset](Draft_Offset/ru.md) --- +# Part Offset2D/ru + @@ -118,8 +120,5 @@ Part.show(enlarged_circle) # structure follows that of source shape. }} - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Offset2D/ru diff --git a/wiki/translations/ru/Part_Plane.md b/wiki/translations/ru/Part_Plane.md index b1559095c2..8ea70739b6 100644 --- a/wiki/translations/ru/Part_Plane.md +++ b/wiki/translations/ru/Part_Plane.md @@ -7,6 +7,8 @@ SeeAlso:[Создать примитивы...](Part_Primitives/ru.md) --- +# Part Plane/ru + ## Описание Создаёт простую параметрическую плоскость 10х10мм с параметрами положение, длина и ширина. По умолчанию плоскость расположена в начале координат (0,0,0). @@ -53,8 +55,5 @@ You have the standard properties view. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Plane/ru diff --git a/wiki/translations/ru/Part_Point.md b/wiki/translations/ru/Part_Point.md index 3b7d07c612..3388bc72d3 100644 --- a/wiki/translations/ru/Part_Point.md +++ b/wiki/translations/ru/Part_Point.md @@ -7,6 +7,8 @@ SeeAlso:[Примитивы](Part_Primitives/ru.md) --- +# Part Point/ru + ## Описание Точка (вершина) - это геометрический примитив. @@ -86,4 +88,7 @@ {{Part_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Point/ru diff --git a/wiki/translations/ru/Part_PointsFromMesh.md b/wiki/translations/ru/Part_PointsFromMesh.md index 30c8637438..7d030718f4 100644 --- a/wiki/translations/ru/Part_PointsFromMesh.md +++ b/wiki/translations/ru/Part_PointsFromMesh.md @@ -8,6 +8,8 @@ SeeAlso:[Part ShapeFromMesh](Part_ShapeFromMesh/ru.md), [Part ConvertToSolid](Part_MakeSolid/ru.md), [Part RefineShape](Part_RefineShape/ru.md) --- +# Part PointsFromMesh/ru + @@ -35,8 +37,5 @@ There will be no analyzing or validating of the mesh object. Analyzing and repai ## Программирование - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part PointsFromMesh/ru diff --git a/wiki/translations/ru/Part_Primitives.md b/wiki/translations/ru/Part_Primitives.md index ce25e45f6b..8355e34cef 100644 --- a/wiki/translations/ru/Part_Primitives.md +++ b/wiki/translations/ru/Part_Primitives.md @@ -7,6 +7,8 @@ SeeAlso:[Построитель форм](Part_Builder/ru.md) --- +# Part Primitives/ru + ## Описание Инструмент [Создать примитивы](Part_Primitives/ru.md) запускает диалог создания разнообразных геометрических параметризованных примитивов [Верстака Part](Part_Workbench/ru.md). @@ -85,8 +87,5 @@ $INSTALL_DIR/Mod/Part/parttests/part_test_objects.py freecad $INSTALL_DIR/Mod/Part/parttests/part_test_objects.py ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Primitives/ru diff --git a/wiki/translations/ru/Part_Prism.md b/wiki/translations/ru/Part_Prism.md index cb76ef9cbf..a719e96d19 100644 --- a/wiki/translations/ru/Part_Prism.md +++ b/wiki/translations/ru/Part_Prism.md @@ -7,6 +7,8 @@ SeeAlso:[Примитивы](Part_Primitives/ru.md), [Куб](Part_Box/ru.md) --- +# Part Prism/ru + @@ -28,8 +30,5 @@ The prism properties can later be edited, either in the [Property editor](Proper - Circumradius - радиус описанной окружности(circumradius) - это расстояние от центра многоугольника до его вершины. - Height - высота Призмы. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Prism/ru diff --git a/wiki/translations/ru/Part_ProjectionOnSurface.md b/wiki/translations/ru/Part_ProjectionOnSurface.md index 8bac3eb0e8..80670a800b 100644 --- a/wiki/translations/ru/Part_ProjectionOnSurface.md +++ b/wiki/translations/ru/Part_ProjectionOnSurface.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Part ProjectionOnSurface/ru + ## Описание @@ -99,5 +101,5 @@ If this happens: - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ProjectionOnSurface/ru diff --git a/wiki/translations/ru/Part_RefineShape.md b/wiki/translations/ru/Part_RefineShape.md index 4d976c849b..401f8d8271 100644 --- a/wiki/translations/ru/Part_RefineShape.md +++ b/wiki/translations/ru/Part_RefineShape.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part RefineShape/ru + @@ -65,8 +67,5 @@ The Python command for refining a shape is the following: shape.removeSplitter() ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RefineShape/ru diff --git a/wiki/translations/ru/Part_RegularPolygon.md b/wiki/translations/ru/Part_RegularPolygon.md index 4574193c3f..3ecb381bf4 100644 --- a/wiki/translations/ru/Part_RegularPolygon.md +++ b/wiki/translations/ru/Part_RegularPolygon.md @@ -8,6 +8,8 @@ SeeAlso:[Примитивы](Part_Primitives/ru.md) --- +# Part RegularPolygon/ru + ## Описание Создаёт примитив в форме Правильного Многоугольника @@ -26,8 +28,5 @@ - Многоугольник(Polygon) - количество сторон многоугольника в поперечном сечении объекта в форме призмы. - Описанный радиус (Circumradius) - радиус описанной окружности - это расстояние от центра многоугольника до его вершины. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RegularPolygon/ru diff --git a/wiki/translations/ru/Part_ReverseShapes.md b/wiki/translations/ru/Part_ReverseShapes.md index 239e476477..124bcf1f03 100644 --- a/wiki/translations/ru/Part_ReverseShapes.md +++ b/wiki/translations/ru/Part_ReverseShapes.md @@ -6,6 +6,8 @@ Workbenches:[Part](Part_Workbench/ru.md) --- +# Part ReverseShapes/ru + @@ -49,5 +51,5 @@ - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ReverseShapes/ru diff --git a/wiki/translations/ru/Part_Revolve.md b/wiki/translations/ru/Part_Revolve.md index d6aa052000..c873699e6f 100644 --- a/wiki/translations/ru/Part_Revolve.md +++ b/wiki/translations/ru/Part_Revolve.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Part Revolve/ru +
@@ -56,8 +58,5 @@ - Если в вашей версии FreeCAD есть флажок Создать твёрдое тело в диалоговом окне Тело вращения, то вы можете создавать тела из замкнутых профилей и рёбер. - Если Вращение выполняется с использованием оси, пересекающей грань поворота, и вы хотите создать твёрдое тело, результат может быть некорректным. Это может происходить по разным причинам, самопересечение, направление и т.д. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Revolve/ru diff --git a/wiki/translations/ru/Part_RuledSurface.md b/wiki/translations/ru/Part_RuledSurface.md index 7b32bdd2f7..842b33ffe4 100644 --- a/wiki/translations/ru/Part_RuledSurface.md +++ b/wiki/translations/ru/Part_RuledSurface.md @@ -7,6 +7,8 @@ SeeAlso:[Создать грань из ломанных](Part_MakeFace/ru.md) --- +# Part RuledSurface/ru +
@@ -22,8 +24,5 @@ - Нажмите кнопку [Линейчатая поверхность](Part_RuledSurface/ru.md) - Используйте пункт **Деталь → Создать линейчатую поверхность** в меню детали - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RuledSurface/ru diff --git a/wiki/translations/ru/Part_Section.md b/wiki/translations/ru/Part_Section.md index cde017f03d..a8f1ab4920 100644 --- a/wiki/translations/ru/Part_Section.md +++ b/wiki/translations/ru/Part_Section.md @@ -7,6 +7,8 @@ SeeAlso:[Поперечные сечения](Part_CrossSections/ru.md) --- +# Part Section/ru + ## Описание Extracts a section from the intersection of two selected shapes, the second one being used as a section plane. This operation is fully parametric and the components can be modified and the result recomputed. @@ -31,8 +33,5 @@ In this example, a cube is sectioned with a cylinder: To create sections with a section plane see [Cross-sections](Part_CrossSections.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Section/ru diff --git a/wiki/translations/ru/Part_SectionCross.md b/wiki/translations/ru/Part_SectionCross.md index 3f5f34cb63..420a903c95 100644 --- a/wiki/translations/ru/Part_SectionCross.md +++ b/wiki/translations/ru/Part_SectionCross.md @@ -1,2 +1,5 @@ # Part SectionCross/ru 1. REDIRECT [Part\_CrossSections/ru](Part_CrossSections/ru.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SectionCross/ru diff --git a/wiki/translations/ru/Part_ShapeFromMesh.md b/wiki/translations/ru/Part_ShapeFromMesh.md index 92ff3b4fe1..a5edd8f004 100644 --- a/wiki/translations/ru/Part_ShapeFromMesh.md +++ b/wiki/translations/ru/Part_ShapeFromMesh.md @@ -7,6 +7,8 @@ SeeAlso:[Преобразовать в твердые](Part_MakeSolid/ru.md), [Закрепить фигуру](Part_RefineShape/ru.md), [Part PointsFromMesh](Part_PointsFromMesh/ru.md) --- +# Part ShapeFromMesh/ru + @@ -91,5 +93,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part ShapeFromMesh/ru diff --git a/wiki/translations/ru/Part_Shapebuilder.md b/wiki/translations/ru/Part_Shapebuilder.md index 9b9391e4fc..6ed591eaf3 100644 --- a/wiki/translations/ru/Part_Shapebuilder.md +++ b/wiki/translations/ru/Part_Shapebuilder.md @@ -1,2 +1,5 @@ # Part Shapebuilder/ru 1. REDIRECT [Part\_Builder/ru](Part_Builder/ru.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Shapebuilder/ru diff --git a/wiki/translations/ru/Part_SimpleCopy.md b/wiki/translations/ru/Part_SimpleCopy.md index 6e59037c52..fc85983f54 100644 --- a/wiki/translations/ru/Part_SimpleCopy.md +++ b/wiki/translations/ru/Part_SimpleCopy.md @@ -8,6 +8,8 @@ Icon:Tree_Part.svg --- +# Part SimpleCopy/ru + @@ -51,8 +53,5 @@ The copy has a simple **Placement** property like any other [Part Feature](Part_ The copy has simple view properties like any other [Part Feature](Part_Feature.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SimpleCopy/ru diff --git a/wiki/translations/ru/Part_Slice.md b/wiki/translations/ru/Part_Slice.md index 1dbb4c20bb..2fbcf90245 100644 --- a/wiki/translations/ru/Part_Slice.md +++ b/wiki/translations/ru/Part_Slice.md @@ -8,6 +8,8 @@ SeeAlso:[Part Boolean Fragments](Part_BooleanFragments/ru.md), [Part XOR](Part_XOR/ru.md), [Part Join features](Part_CompJoinFeatures/ru.md), [Part Boolean](Part_Boolean/ru.md) --- +# Part Slice/ru + @@ -198,5 +200,5 @@ j.Tools = FreeCADGui.Selection.getSelection()[1:] - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Slice/ru diff --git a/wiki/translations/ru/Part_SliceApart.md b/wiki/translations/ru/Part_SliceApart.md index 52a30e4611..d52ff74c0b 100644 --- a/wiki/translations/ru/Part_SliceApart.md +++ b/wiki/translations/ru/Part_SliceApart.md @@ -8,6 +8,8 @@ SeeAlso:[Part Slice to compound](Part_Slice/ru.md), [Part Explode Compound](Part_ExplodeCompound/ru.md) --- +# Part SliceApart/ru + @@ -78,5 +80,5 @@ Slice Apart was introduced in FreeCAD v0.18.15506. FreeCAD needs to be compiled - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part SliceApart/ru diff --git a/wiki/translations/ru/Part_Sphere.md b/wiki/translations/ru/Part_Sphere.md index 3116b6d0dc..15d8310375 100644 --- a/wiki/translations/ru/Part_Sphere.md +++ b/wiki/translations/ru/Part_Sphere.md @@ -7,6 +7,8 @@ SeeAlso:[Создать примитивы](Part_Primitives/ru.md) --- +# Part Sphere/ru + ## Описание Создаёт простую параметрическую сферу с параметрами положение (position), угол1(angle1), угол2(angle2), угол3(angle3) и радиус(radius). @@ -43,8 +45,5 @@ The properties of the object can be edited, either in the [Property editor](Prop - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sphere/ru diff --git a/wiki/translations/ru/Part_Spiral.md b/wiki/translations/ru/Part_Spiral.md index e27e0203f6..2764be0ddd 100644 --- a/wiki/translations/ru/Part_Spiral.md +++ b/wiki/translations/ru/Part_Spiral.md @@ -8,6 +8,8 @@ SeeAlso:[Создать примитивы...](Part_CreatePrimitives/ru.md) --- +# Part Spiral/ru + @@ -23,8 +25,5 @@ ![](images/Spiral_y45_it.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Spiral/ru diff --git a/wiki/translations/ru/Part_Sweep.md b/wiki/translations/ru/Part_Sweep.md index 184f371b2d..4d9a228a5c 100644 --- a/wiki/translations/ru/Part_Sweep.md +++ b/wiki/translations/ru/Part_Sweep.md @@ -7,6 +7,8 @@ SeeAlso:[Лофт](Part_Loft/ru.md) --- +# Part Sweep/ru + ## Описание Инструмент развертки верстака Part используется для создания лица, оболочки или твердой формы из одного или нескольких профилей, проецируемого вдоль заданной трассы. @@ -107,8 +109,5 @@ - Since Sweep is often used to create threads for screws, you should see [Thread for Screw Tutorial](Thread_for_Screw_Tutorial.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sweep/ru diff --git a/wiki/translations/ru/Part_Thickness.md b/wiki/translations/ru/Part_Thickness.md index aa361265cf..7f9f3055d3 100644 --- a/wiki/translations/ru/Part_Thickness.md +++ b/wiki/translations/ru/Part_Thickness.md @@ -7,6 +7,8 @@ SeeAlso:[Смещение](Part_Offset/ru.md) --- +# Part Thickness/ru + ## Description @@ -78,8 +80,5 @@ Notes: ![](images/ThicknessEsempio4.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Thickness/ru diff --git a/wiki/translations/ru/Part_TopoShape.md b/wiki/translations/ru/Part_TopoShape.md index 2e3b895a08..a012b9fc05 100644 --- a/wiki/translations/ru/Part_TopoShape.md +++ b/wiki/translations/ru/Part_TopoShape.md @@ -1,5 +1,5 @@ # Part TopoShape/ru - {{TOCright}} +{{TOCright}} ## Введение @@ -70,4 +70,7 @@ help(obj.Shape) ``` - {{Document objects navi}} + {{Document objects navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part TopoShape/ru diff --git a/wiki/translations/ru/Part_Torus.md b/wiki/translations/ru/Part_Torus.md index afd81785fe..bed720075d 100644 --- a/wiki/translations/ru/Part_Torus.md +++ b/wiki/translations/ru/Part_Torus.md @@ -7,6 +7,8 @@ SeeAlso:[Создать примитивы](Part_Primitives/ru.md) --- +# Part Torus/ru + ## Описание Создаёт простой параметрический тор с следующими параметрами: положение (position), угол1 (angle1), угол2 (angle2), угол3 (angle3), радиус1 (radius1) и радиус2 (radius2). @@ -57,10 +59,7 @@ ![](images/TorusExampleAngle2.jpg ) Параметр Угол2 (Angle2) равен 90°. -![](images/TorusExampleAngle3.jpg ) Параметр Угол3 (Angle3) имеет значение 90°. - - +![](images/TorusExampleAngle3.jpg ) Параметр Угол3 (Angle3) имеет значение 90°. - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Torus/ru diff --git a/wiki/translations/ru/Part_TransformedCopy.md b/wiki/translations/ru/Part_TransformedCopy.md index c74ea8a168..0083c9aea0 100644 --- a/wiki/translations/ru/Part_TransformedCopy.md +++ b/wiki/translations/ru/Part_TransformedCopy.md @@ -8,6 +8,8 @@ SeeAlso:[Part SimpleCopy](Part_SimpleCopy/ru.md), [Part ElementCopy](Part_ElementCopy/ru.md), [Part RefineShape](Part_RefineShape/ru.md) --- +# Part TransformedCopy/ru + @@ -33,8 +35,5 @@ The copy has a simple **Placement** property like any other [Part Feature](Part_ The copy has simple view properties like any other [Part Feature](Part_Feature.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part TransformedCopy/ru diff --git a/wiki/translations/ru/Part_Tube.md b/wiki/translations/ru/Part_Tube.md index e24ea9e89a..bfe3f15c4f 100644 --- a/wiki/translations/ru/Part_Tube.md +++ b/wiki/translations/ru/Part_Tube.md @@ -8,6 +8,8 @@ SeeAlso:[Создать примитивы](Part_CreatePrimitives/ru.md) --- +# Part Tube/ru + ## Описание Команда Создать Трубу вставляет трубку в активный документ. Труба геометрически рассматривается как вырез меньшего цилиндра из большего. По умолчанию команда создаст трубку высотой 10 мм с наружным радиусом 5 мм и внутренним радиусом 2 мм. Эти параметры могут быть изменены после добавления объекта. @@ -37,8 +39,5 @@ - **Расположение (Placement):** Задаёт ориентацию и положение описанного Короба в трёхмерном пространстве. Смотри [Placement/Расположение](Placement/ru.md). Ориентиром служит левый передний нижний угол короба. - **Label (Ярлык):** Ярлык это имя, присвоенное для операции. Вы можете его изменить в любое время. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Tube/ru diff --git a/wiki/translations/ru/Part_Union.md b/wiki/translations/ru/Part_Union.md index eb45567e60..385c5e60ee 100644 --- a/wiki/translations/ru/Part_Union.md +++ b/wiki/translations/ru/Part_Union.md @@ -1,2 +1,5 @@ # Part Union/ru 1. REDIRECT [Part\_Fuse/ru](Part_Fuse/ru.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Union/ru diff --git a/wiki/translations/ru/Part_Wedge.md b/wiki/translations/ru/Part_Wedge.md index e716a65f6f..8a3c49b42f 100644 --- a/wiki/translations/ru/Part_Wedge.md +++ b/wiki/translations/ru/Part_Wedge.md @@ -7,6 +7,8 @@ SeeAlso:[Примитивы](Part_Primitives/ru.md) --- +# Part Wedge/ru + @@ -71,8 +73,5 @@ ![](images/Wedge_examples.png ) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Wedge/ru diff --git a/wiki/translations/ru/Part_Workbench.md b/wiki/translations/ru/Part_Workbench.md index 8cf631f8e7..16e7614d0b 100644 --- a/wiki/translations/ru/Part_Workbench.md +++ b/wiki/translations/ru/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/ru 1. REDIRECT [Part\_Module/ru](Part_Module/ru.md) + +--- +[documentation index](../README.md) > Part Workbench/ru diff --git a/wiki/translations/ru/Part_XOR.md b/wiki/translations/ru/Part_XOR.md index f283ec9a41..37db4152c8 100644 --- a/wiki/translations/ru/Part_XOR.md +++ b/wiki/translations/ru/Part_XOR.md @@ -8,6 +8,8 @@ SeeAlso:[Part Boolean Fragments](Part_BooleanFragments/ru.md), [Part Slice](Part_Slice/ru.md), [Join features](Part_CompJoinFeatures/ru.md), [Part Boolean](Part_Boolean/ru.md) --- +# Part XOR/ru + @@ -30,5 +32,5 @@ - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part XOR/ru diff --git a/wiki/translations/ru/Part_and_PartDesign.md b/wiki/translations/ru/Part_and_PartDesign.md index c8ef2e9e74..60da2175c1 100644 --- a/wiki/translations/ru/Part_and_PartDesign.md +++ b/wiki/translations/ru/Part_and_PartDesign.md @@ -1,5 +1,5 @@ # Part and PartDesign/ru - {{TOCright}} +{{TOCright}} ## Обзор @@ -172,4 +172,7 @@ Part and PartDesign workbenches can be used together with some care, creating qu {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part and PartDesign/ru diff --git a/wiki/translations/ru/Part_scripting.md b/wiki/translations/ru/Part_scripting.md index fc5a3eb3bd..6fa56ab668 100644 --- a/wiki/translations/ru/Part_scripting.md +++ b/wiki/translations/ru/Part_scripting.md @@ -1,7 +1,4 @@ # Part scripting/ru - - - {{TOCright}} ## Введение @@ -156,3 +153,6 @@ Head to the [Topological data scripting](Topological_data_scripting.md) page if }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part scripting/ru diff --git a/wiki/translations/ru/Path_Array.md b/wiki/translations/ru/Path_Array.md index f95da80208..dad108e2a5 100644 --- a/wiki/translations/ru/Path_Array.md +++ b/wiki/translations/ru/Path_Array.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Array/ru + @@ -60,4 +62,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Array/ru diff --git a/wiki/translations/ru/Path_Comment.md b/wiki/translations/ru/Path_Comment.md index 75488a3f1a..fc7b91e343 100644 --- a/wiki/translations/ru/Path_Comment.md +++ b/wiki/translations/ru/Path_Comment.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Comment/ru + @@ -52,4 +54,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Comment/ru diff --git a/wiki/translations/ru/Path_Copy.md b/wiki/translations/ru/Path_Copy.md index 0a99f70386..22fe94282f 100644 --- a/wiki/translations/ru/Path_Copy.md +++ b/wiki/translations/ru/Path_Copy.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Copy/ru + @@ -37,4 +39,7 @@ The copy stays linked with the original path. If the original changes, so does t {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Copy/ru diff --git a/wiki/translations/ru/Path_Custom.md b/wiki/translations/ru/Path_Custom.md index 74a050bea5..8f5ce5b585 100644 --- a/wiki/translations/ru/Path_Custom.md +++ b/wiki/translations/ru/Path_Custom.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Custom/ru + @@ -42,4 +44,7 @@ Note that Feed rates will be correctly generated by the Postprocessor, only if t {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Custom/ru diff --git a/wiki/translations/ru/Path_Dressup.md b/wiki/translations/ru/Path_Dressup.md index 5ddbcb7b10..9a110e378a 100644 --- a/wiki/translations/ru/Path_Dressup.md +++ b/wiki/translations/ru/Path_Dressup.md @@ -1,2 +1,5 @@ # Path Dressup/ru 1. REDIRECT [Path\_Workbench/ru](Path_Workbench/ru.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Dressup/ru diff --git a/wiki/translations/ru/Path_Drilling.md b/wiki/translations/ru/Path_Drilling.md index 9a950f9b7e..2c1d5927c1 100644 --- a/wiki/translations/ru/Path_Drilling.md +++ b/wiki/translations/ru/Path_Drilling.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Drilling/ru + @@ -242,4 +244,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Drilling/ru diff --git a/wiki/translations/ru/Path_FAQ.md b/wiki/translations/ru/Path_FAQ.md index f8ba06d431..ecbb8c7c68 100644 --- a/wiki/translations/ru/Path_FAQ.md +++ b/wiki/translations/ru/Path_FAQ.md @@ -1,9 +1,4 @@ # Path FAQ/ru - - - - - ## How many axes can Path Workbench handle? At the moment, Version 0.18, Path Workbench can handle up to 3 axis milling. Currently, 4th-axis capabilities are under development for the next official release, with some Path Workbench operations already upgraded to basic 4th-axis status. @@ -231,4 +226,7 @@ This is only a matter of displaying the path. You can change this in the prefere {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FAQ/ru diff --git a/wiki/translations/ru/Path_FacePocket.md b/wiki/translations/ru/Path_FacePocket.md index da21d837e8..77eeabf1bf 100644 --- a/wiki/translations/ru/Path_FacePocket.md +++ b/wiki/translations/ru/Path_FacePocket.md @@ -1,2 +1,5 @@ # Path FacePocket/ru 1. REDIRECT [Path\_Pocket\_Shape/ru](Path_Pocket_Shape/ru.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FacePocket/ru diff --git a/wiki/translations/ru/Path_FaceProfile.md b/wiki/translations/ru/Path_FaceProfile.md index 3ca818de35..08ad8cbae9 100644 --- a/wiki/translations/ru/Path_FaceProfile.md +++ b/wiki/translations/ru/Path_FaceProfile.md @@ -1,2 +1,5 @@ # Path FaceProfile/ru 1. REDIRECT [Path\_Profile/ru](Path_Profile/ru.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path FaceProfile/ru diff --git a/wiki/translations/ru/Path_Fixture.md b/wiki/translations/ru/Path_Fixture.md index e1de8d2a92..785d5f3599 100644 --- a/wiki/translations/ru/Path_Fixture.md +++ b/wiki/translations/ru/Path_Fixture.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Fixture/ru + @@ -52,4 +54,7 @@ The G59 Fixture is used to expand available fixtures. The degree of expansion im {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Fixture/ru diff --git a/wiki/translations/ru/Path_Inspect.md b/wiki/translations/ru/Path_Inspect.md index 2f133a61bb..84e1c57b30 100644 --- a/wiki/translations/ru/Path_Inspect.md +++ b/wiki/translations/ru/Path_Inspect.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Inspect/ru + @@ -36,4 +38,7 @@ This tool allows inspection of the internal FreeCAD G-code dialect contents of a {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Inspect/ru diff --git a/wiki/translations/ru/Path_Pocket_3D.md b/wiki/translations/ru/Path_Pocket_3D.md index f82e845921..3e7aa12599 100644 --- a/wiki/translations/ru/Path_Pocket_3D.md +++ b/wiki/translations/ru/Path_Pocket_3D.md @@ -5,6 +5,8 @@ Workbenches:[Path](Path_Workbench.md) --- +# Path Pocket 3D/ru + ## Описание This command inserts a path [3D Pocket](Path_Pocket_3D.md) object into the Job. This operation takes into account the bottom surface of the pocket, as well as selected walls that are not vertical. In its current state, this operation is used to rough out a pocket with non-vertical walls and/or non-horizontal bottom. A common finishing technique is to use a ball end mill with the experimental [3D Surface](Path_3DSurface.md) operation. Sample image of 3D Pocket operation used to clear cylindrical battery holder. @@ -210,4 +212,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Pocket 3D/ru diff --git a/wiki/translations/ru/Path_Pocket_Shape.md b/wiki/translations/ru/Path_Pocket_Shape.md index 472ebce167..eb02c62a3c 100644 --- a/wiki/translations/ru/Path_Pocket_Shape.md +++ b/wiki/translations/ru/Path_Pocket_Shape.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Pocket Shape/ru + @@ -243,4 +245,7 @@ Note: It is suggested that you do not edit the Placement property of path operat {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Pocket Shape/ru diff --git a/wiki/translations/ru/Path_Post.md b/wiki/translations/ru/Path_Post.md index 49161b4819..2f6f4b0d9e 100644 --- a/wiki/translations/ru/Path_Post.md +++ b/wiki/translations/ru/Path_Post.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Post/ru + @@ -119,4 +121,7 @@ Included Postprocessors are saved in the **FreeCAD.Mod.Path.Pathscripts.Post** b {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Post/ru diff --git a/wiki/translations/ru/Path_Postprocessor_Customization.md b/wiki/translations/ru/Path_Postprocessor_Customization.md index 895c7b3c0c..c962995e77 100644 --- a/wiki/translations/ru/Path_Postprocessor_Customization.md +++ b/wiki/translations/ru/Path_Postprocessor_Customization.md @@ -1,10 +1,4 @@ # Path Postprocessor Customization/ru - - - - - - {{TOCright}} ## Введение @@ -109,4 +103,7 @@ You\'ll see that both functions also call the \"linenumber()\" function. If the {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Postprocessor Customization/ru diff --git a/wiki/translations/ru/Path_Preferences.md b/wiki/translations/ru/Path_Preferences.md index eefdea1fad..162f72baf5 100644 --- a/wiki/translations/ru/Path_Preferences.md +++ b/wiki/translations/ru/Path_Preferences.md @@ -1,10 +1,4 @@ # Path Preferences/ru - - - - - - {{TOCright}} ## Обзор @@ -46,3 +40,6 @@ There are three sections: General, Post processor, and Setup. }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Preferences/ru diff --git a/wiki/translations/ru/Path_Profile.md b/wiki/translations/ru/Path_Profile.md index 16dbcea59c..bd8b7f7082 100644 --- a/wiki/translations/ru/Path_Profile.md +++ b/wiki/translations/ru/Path_Profile.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Profile/ru + ## Описание The ** [Profile](Path_Profile.md)** tool creates a contour operation based on selected features of the model. The tool was introduced in version 0.19. It offers three operations that were handled by separate tools in previous versions. @@ -289,4 +291,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Profile/ru diff --git a/wiki/translations/ru/Path_Sanity.md b/wiki/translations/ru/Path_Sanity.md index bea70cf83d..4223481f03 100644 --- a/wiki/translations/ru/Path_Sanity.md +++ b/wiki/translations/ru/Path_Sanity.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Path Sanity/ru + ## Описание Many Path users are hobbyists and DIYers. As such, they use their CNC machines to run G-code that they configured and generated themselves. That isn\'t the case for most professional/commercial users. In professional shops, different people are responsible for creating the G-code (CNC programmers) from those who run it on the machines (CNC operator). @@ -79,4 +81,7 @@ Asciidoctor is a fast open-source text processor for converting asciidoc into HT {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Sanity/ru diff --git a/wiki/translations/ru/Path_SelectLoop.md b/wiki/translations/ru/Path_SelectLoop.md index 3d7af93039..b89333d3a8 100644 --- a/wiki/translations/ru/Path_SelectLoop.md +++ b/wiki/translations/ru/Path_SelectLoop.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Path SelectLoop/ru + ## Описание The ** [Path SelectLoop](Path_SelectLoop.md)** command completes a selection of edges that form a loop. @@ -30,4 +32,7 @@ The ** [Path SelectLoop](Path_S {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SelectLoop/ru diff --git a/wiki/translations/ru/Path_Shape.md b/wiki/translations/ru/Path_Shape.md index 9786aa5415..8465b8f14d 100644 --- a/wiki/translations/ru/Path_Shape.md +++ b/wiki/translations/ru/Path_Shape.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Shape/ru + @@ -148,4 +150,7 @@ Path.fromShapes(shapes, start=Vector(), return_end=False arc_plane=1, sort_mode= {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Shape/ru diff --git a/wiki/translations/ru/Path_SimpleCopy.md b/wiki/translations/ru/Path_SimpleCopy.md index 9b53a0b600..1d75ea413f 100644 --- a/wiki/translations/ru/Path_SimpleCopy.md +++ b/wiki/translations/ru/Path_SimpleCopy.md @@ -9,6 +9,8 @@ SeeAlso:[Path Copy](Path_Copy/ru.md) --- +# Path SimpleCopy/ru + @@ -31,4 +33,7 @@ This tool creates a non-parametric copy of a given path. {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SimpleCopy/ru diff --git a/wiki/translations/ru/Path_Simulator.md b/wiki/translations/ru/Path_Simulator.md index ffe7e55b13..7059915427 100644 --- a/wiki/translations/ru/Path_Simulator.md +++ b/wiki/translations/ru/Path_Simulator.md @@ -7,6 +7,8 @@ SeeAlso:[Path Inspect](Path_Inspect.md) --- +# Path Simulator/ru + ## Description This tool allows Simulation of the Path Job by sweeping 3D Models of the Tools used in each Operation, along the G-Code paths, subtracting material from the Stock, where the stock and tool overlap, providing visualization of the Job. This allows detection and isolation of errors prior to running the Job on a mill. @@ -46,4 +48,7 @@ This tool allows Simulation of the Path Job by sweeping 3D Models of the Tools u {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Simulator/ru diff --git a/wiki/translations/ru/Path_Stop.md b/wiki/translations/ru/Path_Stop.md index 7ba1482576..d635d4b36e 100644 --- a/wiki/translations/ru/Path_Stop.md +++ b/wiki/translations/ru/Path_Stop.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Stop/ru + @@ -31,4 +33,7 @@ This tool inserts a Stop command (M1). This command will Pause a running program {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Stop/ru diff --git a/wiki/translations/ru/Path_Surface.md b/wiki/translations/ru/Path_Surface.md index 8518705b4b..94c1153e2c 100644 --- a/wiki/translations/ru/Path_Surface.md +++ b/wiki/translations/ru/Path_Surface.md @@ -6,6 +6,8 @@ Version:0.19 --- +# Path Surface/ru + ## Описание This tool creates a new ** [3D Surface](Path_3DSurface.md)** operation which is capable of generating G-Code paths for the entire top surface of a 3D model (or is able to work with selected faces) and allows for faces to be avoided. This operation offers multiple cut patterns: Line, Zigzag, Circular, Circular Zigzag, Offset, and Spiral (similar to an adaptive pattern). As of version 0.19, this operation offers many customizations to allow for greater productivity. @@ -416,4 +418,7 @@ Note: It is suggested that you do not edit the Placement property of path operat {{Path Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Surface/ru diff --git a/wiki/translations/ru/Path_ToolBit_Library.md b/wiki/translations/ru/Path_ToolBit_Library.md index 02abd54d6e..878716fafa 100644 --- a/wiki/translations/ru/Path_ToolBit_Library.md +++ b/wiki/translations/ru/Path_ToolBit_Library.md @@ -1,10 +1,4 @@ # Path ToolBit Library/ru - - - - - - {{TOCright}} ## Описание @@ -56,4 +50,7 @@ A toolbit library can be exported to create a [LinuxCNC Tool Table](http://wiki. {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolBit Library/ru diff --git a/wiki/translations/ru/Path_ToolController.md b/wiki/translations/ru/Path_ToolController.md index eb4b8bd2b4..679955e2ed 100644 --- a/wiki/translations/ru/Path_ToolController.md +++ b/wiki/translations/ru/Path_ToolController.md @@ -1,10 +1,4 @@ # Path ToolController/ru - - - - - - {{TOCright}} ## Описание @@ -29,4 +23,7 @@ Tool Number {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolController/ru diff --git a/wiki/translations/ru/Path_ToolShape.md b/wiki/translations/ru/Path_ToolShape.md index c6fbc69e2e..1d786563ac 100644 --- a/wiki/translations/ru/Path_ToolShape.md +++ b/wiki/translations/ru/Path_ToolShape.md @@ -1,10 +1,4 @@ # Path ToolShape/ru - - - - - - {{TOCright}} ## Описание @@ -95,4 +89,7 @@ Important notes: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolShape/ru diff --git a/wiki/translations/ru/Path_Tools.md b/wiki/translations/ru/Path_Tools.md index 0c9b4b3edb..e3bed79924 100644 --- a/wiki/translations/ru/Path_Tools.md +++ b/wiki/translations/ru/Path_Tools.md @@ -1,10 +1,4 @@ # Path Tools/ru - - - - - - {{TOCright}} ## Описание @@ -135,4 +129,7 @@ Once the desired tool shape(profile) exists, you need to create a [tool bit](Pat {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Tools/ru diff --git a/wiki/translations/ru/Path_Walkthrough_for_the_Impatient.md b/wiki/translations/ru/Path_Walkthrough_for_the_Impatient.md index 94e01a45e1..11f0934312 100644 --- a/wiki/translations/ru/Path_Walkthrough_for_the_Impatient.md +++ b/wiki/translations/ru/Path_Walkthrough_for_the_Impatient.md @@ -1,7 +1,4 @@ # Path Walkthrough for the Impatient/ru - - -
@@ -163,4 +160,7 @@ The final step to generate G-Code for the target mill is to postprocess the Job. {{Tutorials navi -}} {{Path Tools navi}} +}} {{Path Tools navi}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Walkthrough for the Impatient/ru diff --git a/wiki/translations/ru/Path_Workbench.md b/wiki/translations/ru/Path_Workbench.md index cc6571aea9..b799abe928 100644 --- a/wiki/translations/ru/Path_Workbench.md +++ b/wiki/translations/ru/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/ru - - - - - -Логотип верстака Path +# Логотип верстака Path Path Workbench/ru {{TOCright}} @@ -322,3 +316,6 @@ See [Path scripting](Path_scripting.md). }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench/ru diff --git a/wiki/translations/ru/Path_experimental.md b/wiki/translations/ru/Path_experimental.md index 5e076b16c9..350886ef0d 100644 --- a/wiki/translations/ru/Path_experimental.md +++ b/wiki/translations/ru/Path_experimental.md @@ -1,7 +1,4 @@ # Path experimental/ru - - - {{TOCright}} ## Описание @@ -41,3 +38,6 @@ Read more about the specific experimental commands on the [wiki pages that link {{Path Tools navi}} [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path experimental/ru diff --git a/wiki/translations/ru/Path_fourth_axis.md b/wiki/translations/ru/Path_fourth_axis.md index df703c47d8..4185253fbe 100644 --- a/wiki/translations/ru/Path_fourth_axis.md +++ b/wiki/translations/ru/Path_fourth_axis.md @@ -1,7 +1,4 @@ # Path fourth axis/ru - - -
@@ -81,4 +78,7 @@ There is currently no GUI integration of 4th-axis rotational settings in the rel {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path fourth axis/ru diff --git a/wiki/translations/ru/Path_scripting.md b/wiki/translations/ru/Path_scripting.md index ccda698929..ca1cd8c54b 100644 --- a/wiki/translations/ru/Path_scripting.md +++ b/wiki/translations/ru/Path_scripting.md @@ -1,10 +1,4 @@ # Path scripting/ru - - - - - - {{TOCright}} ## Введение @@ -447,3 +441,6 @@ doc.recompute() }} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path scripting/ru diff --git a/wiki/translations/ru/Pivy.md b/wiki/translations/ru/Pivy.md index cf9ec76ce8..67765a4c00 100644 --- a/wiki/translations/ru/Pivy.md +++ b/wiki/translations/ru/Pivy.md @@ -1,7 +1,4 @@ # Pivy/ru - - - {{TOCright}} ## Введение @@ -174,3 +171,6 @@ These links provide reference documentation for Coin v3.x. The differences with }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Pivy/ru diff --git a/wiki/translations/ru/Placement.md b/wiki/translations/ru/Placement.md index db5588bc3a..30dcb88837 100644 --- a/wiki/translations/ru/Placement.md +++ b/wiki/translations/ru/Placement.md @@ -1,7 +1,4 @@ # Placement/ru - - -
## Описание @@ -268,5 +265,5 @@ To make the placement of \"Sketch\" equal to that of \"Cylinder\", you would ent - This tutorial: [Aeroplane](Aeroplane.md) covers the mechanics of changing an object\'s Placement extensively. - - +--- +[documentation index](../README.md) > Placement/ru diff --git a/wiki/translations/ru/Plot_Axes.md b/wiki/translations/ru/Plot_Axes.md index fd370765d9..5a9afac473 100644 --- a/wiki/translations/ru/Plot_Axes.md +++ b/wiki/translations/ru/Plot_Axes.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Axes/ru + ## Description The standard plot module already provides a basic tool to control the plot axes . But that tool is clearly insufficient when multi-axes plots have to be handled, as is the case in the [Multi-axes plot tutorial](Plot_MultiAxes_tutorial.md). To overcome that limitation you can install the [Plot Workbench](Plot_Workbench.md) using the [Add-on manager](Std_AddonMgr.md), so a more complete tool to edit the plot axes will be available. @@ -46,3 +48,6 @@ Finally you can set the minimum and maximum values considered for each set of ax }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Axes/ru diff --git a/wiki/translations/ru/Plot_Basic_tutorial.md b/wiki/translations/ru/Plot_Basic_tutorial.md index 206c4a393e..800b6c99f4 100644 --- a/wiki/translations/ru/Plot_Basic_tutorial.md +++ b/wiki/translations/ru/Plot_Basic_tutorial.md @@ -1,7 +1,4 @@ # Plot Basic tutorial/ru - - -
@@ -155,3 +152,6 @@ Set the output image size in inches, for example use 11.7x8.3 to get a **DIN A4* }} {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Basic tutorial/ru diff --git a/wiki/translations/ru/Plot_Grid.md b/wiki/translations/ru/Plot_Grid.md index 3a8d25e9a1..75ed37d07a 100644 --- a/wiki/translations/ru/Plot_Grid.md +++ b/wiki/translations/ru/Plot_Grid.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Grid/ru + ## Description This tool allows the user to enable/disable the grid lines on a specific plot. @@ -26,3 +28,6 @@ This tool acts on the active set of axis. In case of multi-axes plots you can se }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Grid/ru diff --git a/wiki/translations/ru/Plot_Labels.md b/wiki/translations/ru/Plot_Labels.md index b00da3b9d4..65aaf6f8c6 100644 --- a/wiki/translations/ru/Plot_Labels.md +++ b/wiki/translations/ru/Plot_Labels.md @@ -1,3 +1,4 @@ +# Plot Labels/ru --- - GuiCommand:/ru Name:Plot Labels @@ -39,3 +40,6 @@ Select the plot tab that you want to edit, and run this tool. In case of multi-a }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Labels/ru diff --git a/wiki/translations/ru/Plot_Legend.md b/wiki/translations/ru/Plot_Legend.md index 605b76d9aa..70de6f9c24 100644 --- a/wiki/translations/ru/Plot_Legend.md +++ b/wiki/translations/ru/Plot_Legend.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Plot Legend/ru +
@@ -32,3 +34,6 @@ Remember that the styles and labels of the data series can be edited with the [d }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Legend/ru diff --git a/wiki/translations/ru/Plot_Module.md b/wiki/translations/ru/Plot_Module.md index 27f28cb362..ba6b45e618 100644 --- a/wiki/translations/ru/Plot_Module.md +++ b/wiki/translations/ru/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/ru - - -Plot workbench icon +# Plot workbench icon Plot Module/ru {{TOCright}} @@ -86,3 +83,6 @@ Since the Plot Workbench is a layer on top of `matplotlib`, you are free to use }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/ru diff --git a/wiki/translations/ru/Plot_MultiAxes_tutorial.md b/wiki/translations/ru/Plot_MultiAxes_tutorial.md index 1803d16392..44da320d9a 100644 --- a/wiki/translations/ru/Plot_MultiAxes_tutorial.md +++ b/wiki/translations/ru/Plot_MultiAxes_tutorial.md @@ -1,7 +1,4 @@ # Plot MultiAxes tutorial/ru - - -
@@ -136,3 +133,6 @@ Now you can save your work. See the [previous tutorial](Plot_Basic_tutorial.md) }} {{Plot_Tools_navi}} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot MultiAxes tutorial/ru diff --git a/wiki/translations/ru/Plot_Positions.md b/wiki/translations/ru/Plot_Positions.md index f534248f37..c1ba83aab2 100644 --- a/wiki/translations/ru/Plot_Positions.md +++ b/wiki/translations/ru/Plot_Positions.md @@ -5,6 +5,8 @@ Workbenches:[Plot](Plot_Module.md) --- +# Plot Positions/ru + ## Description This tool allows the user to edit the position of some items like titles, axes labels and legend. @@ -31,3 +33,6 @@ Select the plot tab that you want to edit, and run this tool. Then you can selec }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Positions/ru diff --git a/wiki/translations/ru/Plot_Save.md b/wiki/translations/ru/Plot_Save.md index 9b914e010e..a525af3bd2 100644 --- a/wiki/translations/ru/Plot_Save.md +++ b/wiki/translations/ru/Plot_Save.md @@ -6,6 +6,8 @@ MenuLocation:Plot → Сохранить диаграмму --- +# Plot Save/ru +
@@ -52,3 +54,6 @@ }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Save/ru diff --git a/wiki/translations/ru/Plot_Series.md b/wiki/translations/ru/Plot_Series.md index d96aad48ec..51b751c536 100644 --- a/wiki/translations/ru/Plot_Series.md +++ b/wiki/translations/ru/Plot_Series.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Plot Series/ru +
@@ -42,3 +44,6 @@ Select the plot tab that you want to edit, and run this tool. Then select the se }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Series/ru diff --git a/wiki/translations/ru/Plot_Workbench.md b/wiki/translations/ru/Plot_Workbench.md index 8395847525..3e38ea1fbb 100644 --- a/wiki/translations/ru/Plot_Workbench.md +++ b/wiki/translations/ru/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/ru 1. REDIRECT [Plot\_Module/ru](Plot_Module/ru.md) + +--- +[documentation index](../README.md) > Plot Workbench/ru diff --git a/wiki/translations/ru/Plugin_Loader.md b/wiki/translations/ru/Plugin_Loader.md index d4ea62775d..cf5e8ecbfa 100644 --- a/wiki/translations/ru/Plugin_Loader.md +++ b/wiki/translations/ru/Plugin_Loader.md @@ -1,2 +1,5 @@ # Plugin Loader/ru 1. REDIRECT [Std\_AddonMgr/ru](Std_AddonMgr/ru.md) + +--- +[documentation index](../README.md) > Plugin Loader/ru diff --git a/wiki/translations/ru/Points_Module.md b/wiki/translations/ru/Points_Module.md index 77afbbecc5..70f40c419b 100644 --- a/wiki/translations/ru/Points_Module.md +++ b/wiki/translations/ru/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/ru 1. REDIRECT [Points\_Workbench/ru](Points_Workbench/ru.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/ru diff --git a/wiki/translations/ru/Points_Workbench.md b/wiki/translations/ru/Points_Workbench.md index d5f3d493bb..f91a58e68a 100644 --- a/wiki/translations/ru/Points_Workbench.md +++ b/wiki/translations/ru/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/ru - - - - - -Логотип верстака Points +# Логотип верстака Points Points Workbench/ru ## Введение @@ -58,3 +52,6 @@ The [Points Wo }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/ru diff --git a/wiki/translations/ru/Post-Processing_of_FEM_Results_with_Paraview.md b/wiki/translations/ru/Post-Processing_of_FEM_Results_with_Paraview.md index 748faa0c83..73077a4089 100644 --- a/wiki/translations/ru/Post-Processing_of_FEM_Results_with_Paraview.md +++ b/wiki/translations/ru/Post-Processing_of_FEM_Results_with_Paraview.md @@ -1,5 +1,5 @@ # Post-Processing of FEM Results with Paraview/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic= Post-Processing of FEM Results with ParaView |Level= Intermediate |Time= 120 минут @@ -351,4 +351,7 @@ CoG\_z = 187144 / 556,277 = 336,4 мм (точное значение: 5/6 \* 40 ## Экспорт графических результатов -Чтобы экспортировать окно RenderView, выделите окно и используйте опцию меню **File > Save Screenshot** {{Tutorials navi}} {{FEM Tools navi}} +Чтобы экспортировать окно RenderView, выделите окно и используйте опцию меню **File > Save Screenshot** {{Tutorials navi}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Post-Processing of FEM Results with Paraview/ru diff --git a/wiki/translations/ru/Power_users_hub.md b/wiki/translations/ru/Power_users_hub.md index d3cdf5cb7a..894eca6408 100644 --- a/wiki/translations/ru/Power_users_hub.md +++ b/wiki/translations/ru/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/ru - +# Power users hub/ru ------------------------------------------------------------------------ @@ -143,3 +142,6 @@ FreeCAD расширяем с помощью кода [Python](Python/ru.md), к }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/ru diff --git a/wiki/translations/ru/Profiling.md b/wiki/translations/ru/Profiling.md index 3dadf390c2..965cf8fe52 100644 --- a/wiki/translations/ru/Profiling.md +++ b/wiki/translations/ru/Profiling.md @@ -1,6 +1,4 @@ # Profiling/ru - - ## Описание Profiling the code of FreeCAD helps find bottlenecks in the algorithms used to create or manipulate objects. @@ -41,3 +39,6 @@ kcachegrind /tmp/callgrind.out }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Profiling/ru diff --git a/wiki/translations/ru/Project_template.md b/wiki/translations/ru/Project_template.md index 40514de25b..f4c539f297 100644 --- a/wiki/translations/ru/Project_template.md +++ b/wiki/translations/ru/Project_template.md @@ -1,5 +1,5 @@ # Project template/ru - This template is the guideline for a FreeCAD development project. It follows the rules of the [Getting Things Done (GTD)](http://en.wikipedia.org/wiki/Getting_Things_Done#Methodology) process. The projects are collected in the [Development roadmap](Development_roadmap.md). +This template is the guideline for a FreeCAD development project. It follows the rules of the [Getting Things Done (GTD)](http://en.wikipedia.org/wiki/Getting_Things_Done#Methodology) process. The projects are collected in the [Development roadmap](Development_roadmap.md). *Lets start by looking at the Natural Planning Model. The Natural Planning Model really is nothing new. It is not some fantastic new model devised by David Allen to help us plan and manage our projects. it is however, the planning model that is recommended by David in his Getting Things Done book. The Natural Planning Model is based upon the planning that we do on a daily basis, using just our brains. For example, think of how many tasks we plan on a day by day basis that we do not even bother to write down as these are normally classed as mundane tasks. For example, getting dressed, or driving to work. All of these can be thought of tasks but we just go ahead and plan them without any thought whatsoever. We utilize the planning aspects of our brain that are conditioned for this natural type of planning.* @@ -28,3 +28,6 @@ [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Project template/ru diff --git a/wiki/translations/ru/Property.md b/wiki/translations/ru/Property.md index c4cece7f6a..f4c1e3672b 100644 --- a/wiki/translations/ru/Property.md +++ b/wiki/translations/ru/Property.md @@ -1,6 +1,4 @@ # Property/ru - - ## Introduction @@ -122,3 +120,6 @@ They are imported and initialized in `[https://github.com/FreeCAD/FreeCAD/blob/9 }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/ru diff --git a/wiki/translations/ru/Property_editor.md b/wiki/translations/ru/Property_editor.md index 90e34f53a9..70326343e2 100644 --- a/wiki/translations/ru/Property_editor.md +++ b/wiki/translations/ru/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/ru - - - - - - {{TOCright}} ## Введение @@ -245,4 +239,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/ru diff --git a/wiki/translations/ru/PySide.md b/wiki/translations/ru/PySide.md index 9672ee1c64..38840055de 100644 --- a/wiki/translations/ru/PySide.md +++ b/wiki/translations/ru/PySide.md @@ -1,7 +1,4 @@ # PySide/ru - - - {{TOCright}} ## Введение @@ -101,3 +98,6 @@ The PySide documentation refers to the Python-style classes; however, since Qt i }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide/ru diff --git a/wiki/translations/ru/PySide_Advanced_Examples.md b/wiki/translations/ru/PySide_Advanced_Examples.md index 82750ac7a6..ec69c10b1c 100644 --- a/wiki/translations/ru/PySide_Advanced_Examples.md +++ b/wiki/translations/ru/PySide_Advanced_Examples.md @@ -1,7 +1,4 @@ # PySide Advanced Examples/ru - - - {{TOCright}} ## Введение @@ -106,3 +103,6 @@ self.dialog = FreeCADGui.PySideUic.loadUi(os.path.join(os.path.dirname(__file__) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Advanced Examples/ru diff --git a/wiki/translations/ru/PySide_Beginner_Examples.md b/wiki/translations/ru/PySide_Beginner_Examples.md index 35cb0df40a..9c75ddc2cc 100644 --- a/wiki/translations/ru/PySide_Beginner_Examples.md +++ b/wiki/translations/ru/PySide_Beginner_Examples.md @@ -1,6 +1,4 @@ # PySide Beginner Examples/ru - - ## Введение The purpose of this page is to cover beginner level examples of the [PySide](PySide.md) GUI manager (there are accompanying pages [Intermediate PySide Examples](PySide_Intermediate_Examples.md) and [Advanced PySide Examples](PySide_Advanced_Examples.md)). @@ -167,3 +165,6 @@ buttonBox = QtGui.QDialogButtonBox(QtCore.Qt.Vertical) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Beginner Examples/ru diff --git a/wiki/translations/ru/PySide_Intermediate_Examples.md b/wiki/translations/ru/PySide_Intermediate_Examples.md index 54c7d0c14a..155c54c55b 100644 --- a/wiki/translations/ru/PySide_Intermediate_Examples.md +++ b/wiki/translations/ru/PySide_Intermediate_Examples.md @@ -1,6 +1,4 @@ # PySide Intermediate Examples/ru - - ## Введение @@ -754,3 +752,6 @@ These same commands can be executed on a user generated window, the syntax does }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide Intermediate Examples/ru diff --git a/wiki/translations/ru/Python.md b/wiki/translations/ru/Python.md index 18d5d4c4eb..441dfa5eac 100644 --- a/wiki/translations/ru/Python.md +++ b/wiki/translations/ru/Python.md @@ -1,7 +1,4 @@ # Python/ru - - -
@@ -136,3 +133,6 @@ Structure = Arch.make_structure(Wire, name="Big pillar") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:API Documentation](Category:API_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python/ru diff --git a/wiki/translations/ru/PythonOCC.md b/wiki/translations/ru/PythonOCC.md index 9c9618e27a..ae1e20646a 100644 --- a/wiki/translations/ru/PythonOCC.md +++ b/wiki/translations/ru/PythonOCC.md @@ -1,6 +1,4 @@ # PythonOCC/ru - - ## Description @@ -51,3 +49,6 @@ You can also self compile pythonOCC (see [instructions](https://github.com/tpavi }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PythonOCC/ru diff --git a/wiki/translations/ru/Python_Development_Environment.md b/wiki/translations/ru/Python_Development_Environment.md index 0f6fdc2f74..0c3da47650 100644 --- a/wiki/translations/ru/Python_Development_Environment.md +++ b/wiki/translations/ru/Python_Development_Environment.md @@ -1,5 +1,5 @@ # Python Development Environment/ru - {{TOCright}} +{{TOCright}} ## Упрощённая среда разработки для Python в FreeCAD @@ -552,3 +552,6 @@ Some other links about IDEs for Python which might be of interest are: [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Python Development Environment/ru diff --git a/wiki/translations/ru/Python_console.md b/wiki/translations/ru/Python_console.md index b072cff639..e9921013db 100644 --- a/wiki/translations/ru/Python_console.md +++ b/wiki/translations/ru/Python_console.md @@ -1,5 +1,5 @@ # Python console/ru - **(January 2020) FreeCAD изначально разрабатывался для работы с Python 2. Поскольку Python 2 закончил существование в 2020, последующая разработка FreeCAD будет вестись исключительно на Python 3, и обратная совместимость поддерживаться не будет.** +**(January 2020) FreeCAD изначально разрабатывался для работы с Python 2. Поскольку Python 2 закончил существование в 2020, последующая разработка FreeCAD будет вестись исключительно на Python 3, и обратная совместимость поддерживаться не будет.** ## Введение @@ -86,4 +86,7 @@ Right click on the Python console shows some commands: {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Python console/ru diff --git a/wiki/translations/ru/Python_scripting_tutorial.md b/wiki/translations/ru/Python_scripting_tutorial.md index 9339e82762..d5b0b7db9b 100644 --- a/wiki/translations/ru/Python_scripting_tutorial.md +++ b/wiki/translations/ru/Python_scripting_tutorial.md @@ -1,7 +1,4 @@ # Python scripting tutorial/ru - - - {{TOCright}} ## Введение @@ -322,3 +319,6 @@ Qt - это очень мощная система интерфейса, поз }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python scripting tutorial/ru diff --git a/wiki/translations/ru/Ray_Tracing_Workbench.md b/wiki/translations/ru/Ray_Tracing_Workbench.md index 095c56fff5..44221ba84d 100644 --- a/wiki/translations/ru/Ray_Tracing_Workbench.md +++ b/wiki/translations/ru/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/ru 1. REDIRECT [Raytracing\_Workbench/ru](Raytracing_Workbench/ru.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/ru diff --git a/wiki/translations/ru/Raytracing_API_example.md b/wiki/translations/ru/Raytracing_API_example.md index b7be3ebf94..490eff23e2 100644 --- a/wiki/translations/ru/Raytracing_API_example.md +++ b/wiki/translations/ru/Raytracing_API_example.md @@ -1,6 +1,4 @@ # Raytracing API example/ru - - ## Введение The `Raytracing` and `RaytracingGui` modules provide several methods to write scene contents as povray or luxrender data. @@ -53,3 +51,6 @@ myCustomRenderObject.Result = "// Hello from python!" }} {{Raytracing Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing API example/ru diff --git a/wiki/translations/ru/Raytracing_ExportProject.md b/wiki/translations/ru/Raytracing_ExportProject.md index d5e0935673..d641155f19 100644 --- a/wiki/translations/ru/Raytracing_ExportProject.md +++ b/wiki/translations/ru/Raytracing_ExportProject.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing ExportProject/ru +
@@ -30,4 +32,7 @@ Exports the selected raytracing project to a file. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing ExportProject/ru diff --git a/wiki/translations/ru/Raytracing_InsertPart.md b/wiki/translations/ru/Raytracing_InsertPart.md index e7623f09dc..b2a29db35a 100644 --- a/wiki/translations/ru/Raytracing_InsertPart.md +++ b/wiki/translations/ru/Raytracing_InsertPart.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing InsertPart/ru +
@@ -32,4 +34,7 @@ {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing InsertPart/ru diff --git a/wiki/translations/ru/Raytracing_Lux.md b/wiki/translations/ru/Raytracing_Lux.md index 8a4fb36778..6c0a8d7e02 100644 --- a/wiki/translations/ru/Raytracing_Lux.md +++ b/wiki/translations/ru/Raytracing_Lux.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing Lux/ru +
@@ -34,4 +36,7 @@ Insert new LuxRender project in the document. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Lux/ru diff --git a/wiki/translations/ru/Raytracing_Module.md b/wiki/translations/ru/Raytracing_Module.md index 155e056832..a6a97e0566 100644 --- a/wiki/translations/ru/Raytracing_Module.md +++ b/wiki/translations/ru/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/ru 1. REDIRECT [Raytracing\_Workbench/ru](Raytracing_Workbench/ru.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/ru diff --git a/wiki/translations/ru/Raytracing_New.md b/wiki/translations/ru/Raytracing_New.md index e73b33c394..7b397fe714 100644 --- a/wiki/translations/ru/Raytracing_New.md +++ b/wiki/translations/ru/Raytracing_New.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing New/ru + @@ -34,4 +36,7 @@ Insert new PovRay project in the document. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing New/ru diff --git a/wiki/translations/ru/Raytracing_Preferences.md b/wiki/translations/ru/Raytracing_Preferences.md index 2f2530f84f..10d9911da7 100644 --- a/wiki/translations/ru/Raytracing_Preferences.md +++ b/wiki/translations/ru/Raytracing_Preferences.md @@ -1,5 +1,5 @@ # Raytracing Preferences/ru - Экран настроек [верстака Raytracing](Raytracing_Workbench/ru.md) находятся в [редакторе настроек](Preferences_Editor/ru.md), **Правка → Настройки → Raytracing**. +Экран настроек [верстака Raytracing](Raytracing_Workbench/ru.md) находятся в [редакторе настроек](Preferences_Editor/ru.md), **Правка → Настройки → Raytracing**. Там только одна вкладка: Трассировщик лучей. @@ -13,3 +13,6 @@ }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Preferences/ru diff --git a/wiki/translations/ru/Raytracing_Render.md b/wiki/translations/ru/Raytracing_Render.md index f4b17fa35c..d512384e09 100644 --- a/wiki/translations/ru/Raytracing_Render.md +++ b/wiki/translations/ru/Raytracing_Render.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing Render/ru + @@ -32,4 +34,7 @@ Currently only POV-Ray and Luxrender are supported. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Render/ru diff --git a/wiki/translations/ru/Raytracing_ResetCamera.md b/wiki/translations/ru/Raytracing_ResetCamera.md index f64711fec9..3d00de9e9c 100644 --- a/wiki/translations/ru/Raytracing_ResetCamera.md +++ b/wiki/translations/ru/Raytracing_ResetCamera.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing ResetCamera/ru + @@ -40,4 +42,7 @@ Sets the camera of the selected raytracing project to match the current view. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing ResetCamera/ru diff --git a/wiki/translations/ru/Raytracing_Workbench.md b/wiki/translations/ru/Raytracing_Workbench.md index c9a988f820..d30c133285 100644 --- a/wiki/translations/ru/Raytracing_Workbench.md +++ b/wiki/translations/ru/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/ru - - - **Верстак Raytracing по сути устарел. Ведётся новая разработка [https://github.com/FreeCAD/FreeCAD-render верстака Render], который планируется как замена. Этот верстак полностью программируется на Python, поэтому его легче расширить. Тем не менее, информация на этой странице в общем полезна для нового верстака, и оба модуля в основе работают одинаково. @@ -149,3 +146,6 @@ Although direct export to the Kerkythea XML-File-Format is not supported yet, yo }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/ru diff --git a/wiki/translations/ru/Raytracing_WriteCamera.md b/wiki/translations/ru/Raytracing_WriteCamera.md index 4fad8a20bd..569d783bdf 100644 --- a/wiki/translations/ru/Raytracing_WriteCamera.md +++ b/wiki/translations/ru/Raytracing_WriteCamera.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing WriteCamera/ru + @@ -30,4 +32,7 @@ Exports the current camera properties to a pov-file for use in a POV-Ray project {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteCamera/ru diff --git a/wiki/translations/ru/Raytracing_WritePart.md b/wiki/translations/ru/Raytracing_WritePart.md index 09c9e5f701..da0d0c4ba7 100644 --- a/wiki/translations/ru/Raytracing_WritePart.md +++ b/wiki/translations/ru/Raytracing_WritePart.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing WritePart/ru + @@ -30,4 +32,7 @@ Exports the selected part to a pov-file for use in a POV-Ray project. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WritePart/ru diff --git a/wiki/translations/ru/Raytracing_WriteView.md b/wiki/translations/ru/Raytracing_WriteView.md index 2d60966ff2..d7cec281b0 100644 --- a/wiki/translations/ru/Raytracing_WriteView.md +++ b/wiki/translations/ru/Raytracing_WriteView.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Raytracing WriteView/ru + @@ -30,4 +32,7 @@ Exports the current view properties to a pov-file for use in a POV-Ray project. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteView/ru diff --git a/wiki/translations/ru/Raytracing_project.md b/wiki/translations/ru/Raytracing_project.md index aa06712d2e..dd2bb6cf4d 100644 --- a/wiki/translations/ru/Raytracing_project.md +++ b/wiki/translations/ru/Raytracing_project.md @@ -1,7 +1,4 @@ # Raytracing project/ru - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -82,3 +79,6 @@ Featured is a part that was creating using PartDesign/Sketcher then rendered usi [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing project/ru diff --git a/wiki/translations/ru/Raytracing_templates.md b/wiki/translations/ru/Raytracing_templates.md index fbf026eb15..8585dcb823 100644 --- a/wiki/translations/ru/Raytracing_templates.md +++ b/wiki/translations/ru/Raytracing_templates.md @@ -1,6 +1,4 @@ # Raytracing templates/ru - - ## Introduction The [Raytracing Workbench](Raytracing_Workbench.md) comes with some templates for povray and luxrender, but you can easily create your own. All you need to do is to create a scene file for the given renderer, then edit it manually with a text editor to insert special tags that FreeCAD will recognize and where it will insert its contents (camera and objects data). @@ -60,3 +58,5 @@ Note that in luxrender, the objects stored in a scene file can define transforma {{Userdocnavi/ru}} +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing templates/ru diff --git a/wiki/translations/ru/Raytracing_tutorial.md b/wiki/translations/ru/Raytracing_tutorial.md index c2fc9945ca..b53e859db6 100644 --- a/wiki/translations/ru/Raytracing_tutorial.md +++ b/wiki/translations/ru/Raytracing_tutorial.md @@ -1,6 +1,4 @@ # Raytracing tutorial/ru - - ## Raytracing Workbench @@ -80,4 +78,7 @@ Now we have a model with which to work. FreeCAD will immediately open the image after the render is finished. -We are now finished with the basic workflow for the [Raytracing workbench](Raytracing_Workbench.md). {{Tutorials navi}} {{Raytracing Tools navi}} +We are now finished with the basic workflow for the [Raytracing workbench](Raytracing_Workbench.md). {{Tutorials navi}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing tutorial/ru diff --git a/wiki/translations/ru/Recompute.md b/wiki/translations/ru/Recompute.md index b84716371c..2905d9f037 100644 --- a/wiki/translations/ru/Recompute.md +++ b/wiki/translations/ru/Recompute.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Recompute/ru diff --git a/wiki/translations/ru/Reinforcement_Bar_Bending_Schedule.md b/wiki/translations/ru/Reinforcement_Bar_Bending_Schedule.md index fe929124d6..747fcf8bd7 100644 --- a/wiki/translations/ru/Reinforcement_Bar_Bending_Schedule.md +++ b/wiki/translations/ru/Reinforcement_Bar_Bending_Schedule.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar BOM](Arch_Rebar_BOM.md), [Arch Rebar Reinforcement Drawing](Arch_Rebar_Drawing_Dimensioning.md) --- +# Reinforcement Bar Bending Schedule/ru + ## Описание The [Bar Bending Schedule](Reinforcement_Bar_Bending_Schedule.md) tool allows the user to create the bar bending schedule of reinforcing bars. @@ -356,3 +358,6 @@ BBSfunc.getBarBendingSchedule( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Reinforcement Bar Bending Schedule/ru diff --git a/wiki/translations/ru/Reinforcement_Bar_Shape_Cut_List.md b/wiki/translations/ru/Reinforcement_Bar_Shape_Cut_List.md index 77564e60d5..430c168472 100644 --- a/wiki/translations/ru/Reinforcement_Bar_Shape_Cut_List.md +++ b/wiki/translations/ru/Reinforcement_Bar_Shape_Cut_List.md @@ -7,6 +7,8 @@ SeeAlso:[Reinforcement](Reinforcement_Workbench.md), [Arch Rebar Reinforcement Drawing Dimensioning](Arch_Rebar_Drawing_Dimensioning.md), [Arch Rebar BOM](Arch_Rebar_BOM.md) --- +# Reinforcement Bar Shape Cut List/ru + ## Описание The [Rebar Shape Cut List](Reinforcement_Bar_Shape_Cut_List.md) tool allows the user to create the rebar shape cut list of reinforcing bars. @@ -405,3 +407,6 @@ RebarShapeCutListfunc.getRebarShapeCutList( [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [External Command Reference](Category:External Command Reference.md) > Reinforcement Bar Shape Cut List/ru diff --git a/wiki/translations/ru/Reinforcement_Workbench.md b/wiki/translations/ru/Reinforcement_Workbench.md index b7c2fda5cf..b9e350ed21 100644 --- a/wiki/translations/ru/Reinforcement_Workbench.md +++ b/wiki/translations/ru/Reinforcement_Workbench.md @@ -1,7 +1,4 @@ -# Reinforcement Workbench/ru - - -Иконка верстака Reinforcement +# Иконка верстака Reinforcement Reinforcement Workbench/ru {{TOCright}} @@ -66,3 +63,6 @@ The Reinforcement workbench is not bundled with the default FreeCAD package, but [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > Reinforcement Workbench/ru diff --git a/wiki/translations/ru/Release_notes_0.11.md b/wiki/translations/ru/Release_notes_0.11.md index 4def90cb7f..6c9b1027ea 100644 --- a/wiki/translations/ru/Release_notes_0.11.md +++ b/wiki/translations/ru/Release_notes_0.11.md @@ -66,3 +66,6 @@ {{languages/ru | {{en|Release_notes_0.11}} {{de|Release_notes_0.11/de}} {{es|Release_notes_0.11/es}} {{fr|Release_notes_0.11/fr}} {{it|Release_notes_0.11/it}} {{pl|Release_notes_0.11/pl}} }} [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.11/ru diff --git a/wiki/translations/ru/Release_notes_0.12.md b/wiki/translations/ru/Release_notes_0.12.md index 11a63fba8b..b1b6644ff3 100644 --- a/wiki/translations/ru/Release_notes_0.12.md +++ b/wiki/translations/ru/Release_notes_0.12.md @@ -47,3 +47,6 @@ {{languages | {{en|Release_notes_0.12}} {{es|Release_notes_0.12/es}} {{fr|Release_notes_0.12/fr}} {{it|Release_notes_0.12/it}} {{pl|Release_notes_0.12/pl}} }} [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.12/ru diff --git a/wiki/translations/ru/Release_notes_0.13.md b/wiki/translations/ru/Release_notes_0.13.md index 9446a95900..51641325e4 100644 --- a/wiki/translations/ru/Release_notes_0.13.md +++ b/wiki/translations/ru/Release_notes_0.13.md @@ -1,5 +1,5 @@ # Release notes 0.13/ru - Это обзор самых интересных изменений произошедших в последней версии FreeCAD. Смотри [полный список](http://www.freecadweb.org/tracker/changelog_page.php) для получения подробной информации об изменениях. +Это обзор самых интересных изменений произошедших в последней версии FreeCAD. Смотри [полный список](http://www.freecadweb.org/tracker/changelog_page.php) для получения подробной информации об изменениях.
@@ -152,3 +152,6 @@ Geometry (Points, Lines and Curves) may be selected by dragging on the backgroun - For more information see the [OpenSCAD Workbench](OpenSCAD_Workbench.md) page on the FreeCAD wiki [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.13/ru diff --git a/wiki/translations/ru/Release_notes_0.14.md b/wiki/translations/ru/Release_notes_0.14.md index a201966c19..e166f5f342 100644 --- a/wiki/translations/ru/Release_notes_0.14.md +++ b/wiki/translations/ru/Release_notes_0.14.md @@ -1,6 +1,4 @@ # Release notes 0.14/ru - - FreeCAD 0.14 was released on July 1, 2014. This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -232,3 +230,6 @@ Much work has been done on both FreeCAD and [IfcOpenShell](http://www.ifcopenshe The full list of bugfixes and new features can be read on [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.14/ru diff --git a/wiki/translations/ru/Release_notes_0.15.md b/wiki/translations/ru/Release_notes_0.15.md index ce8f7a49c5..409e9e1c0e 100644 --- a/wiki/translations/ru/Release_notes_0.15.md +++ b/wiki/translations/ru/Release_notes_0.15.md @@ -1,5 +1,5 @@ # Release notes 0.15/ru - FreeCAD 0.15 was released on April 8, 2015. This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) +FreeCAD 0.15 was released on April 8, 2015. This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -152,3 +152,6 @@ The [WorkFeature macro](https://github.com/Rentlau/WorkFeature) adds a wide rang [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.15/ru diff --git a/wiki/translations/ru/Release_notes_0.16.md b/wiki/translations/ru/Release_notes_0.16.md index caa6e8ce96..961b15c0e6 100644 --- a/wiki/translations/ru/Release_notes_0.16.md +++ b/wiki/translations/ru/Release_notes_0.16.md @@ -1,5 +1,5 @@ # Release notes 0.16/ru - FreeCAD 0.16 was released on 18. April, 2016, get it from [Github](https://github.com/FreeCAD/FreeCAD/releases). This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.15](Release_notes_0.15.md) - [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) +FreeCAD 0.16 was released on 18. April, 2016, get it from [Github](https://github.com/FreeCAD/FreeCAD/releases). This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.15](Release_notes_0.15.md) - [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -121,3 +121,6 @@ A couple of new [addons workbenches](https://github.com/FreeCAD/FreeCAD-addons) ![](images/Macro_installer_02.jpg ) [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.16/ru diff --git a/wiki/translations/ru/Release_notes_0.17.md b/wiki/translations/ru/Release_notes_0.17.md index 21c9e30c48..4be654e023 100644 --- a/wiki/translations/ru/Release_notes_0.17.md +++ b/wiki/translations/ru/Release_notes_0.17.md @@ -1,7 +1,4 @@ # Release notes 0.17/ru - - -
*This release of FreeCAD is dedicated to our friend Roland Frank [who left us in 2017](https://forum.freecadweb.org/viewtopic.php?f=8&t=25673). He was an active and well-appreciated member of the FreeCAD forum, and his video tutorials on the [Learn FreeCAD](https://www.youtube.com/watch?v=_HEvhclR4-o&list=PL6fZ68Cq3L8k0JhxnIVjZQN26cn9idJrj) and [BPLFRE](https://www.youtube.com/watch?v=m49z0weonog&list=PLsrwVwvqYb8G4Ri0iz1JIebsOXkgoytAY) Youtube channels helped many people get started with FreeCAD.* @@ -299,3 +296,6 @@ Some of the new community modules that were created. - [Kicad StepUp Workbench](https://www.freecadweb.org/wiki/KicadStepUp_Workbench) is aimed to help KiCad and FreeCAD users in ECAD and MCAD collaboration. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.17/ru diff --git a/wiki/translations/ru/Release_notes_0.18.md b/wiki/translations/ru/Release_notes_0.18.md index b4b9aeabdb..f39eb61791 100644 --- a/wiki/translations/ru/Release_notes_0.18.md +++ b/wiki/translations/ru/Release_notes_0.18.md @@ -1,6 +1,4 @@ # Release notes 0.18/ru - - FreeCAD 0.18 was released on 12 March, 2019, get it from the [Download](Download.md) page. This is a summary of the most interesting changes. The complete list of changes can be found in the [MantisBT bugtracker FC 0.18 changelog](https://www.freecadweb.org/tracker/changelog_page.php?version_id=78). Older FreeCAD release notes can be found in [Feature list](Feature_list#Release_notes.md). @@ -220,3 +218,6 @@ Some of the new community modules that were actively developed during the 0.18 d - [Defeaturing Workbench](Defeaturing_Workbench.md) is intended for editing imported STEP models, removal of the selected features from the model. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.18/ru diff --git a/wiki/translations/ru/Release_notes_0.19.md b/wiki/translations/ru/Release_notes_0.19.md index b78b9758bc..03d8348585 100644 --- a/wiki/translations/ru/Release_notes_0.19.md +++ b/wiki/translations/ru/Release_notes_0.19.md @@ -1,5 +1,5 @@ # Release notes 0.19/ru - {{TOCright}} +{{TOCright}} **FreeCAD 0.19** was released on **March 20th, 2021**, get it from the [Download](Download.md) page. This is a summary of the most interesting changes. The complete list of changes can be found in the [MantisBT bugtracker FC 0.19 changelog](https://www.freecadweb.org/tracker/changelog_page.php?version_id=122). @@ -777,3 +777,6 @@ these are the new workbenches created in this development cycle, or older workbe +-------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.19/ru diff --git a/wiki/translations/ru/Release_notes_0.20.md b/wiki/translations/ru/Release_notes_0.20.md index 2478df370c..493976e81b 100644 --- a/wiki/translations/ru/Release_notes_0.20.md +++ b/wiki/translations/ru/Release_notes_0.20.md @@ -1,7 +1,4 @@ # Release notes 0.20/ru - - - **This page tracks new features as they are added to the development version of FreeCAD, which is currently 0.20. When the 0.20 feature freeze happens, delete these messages, and don't add more features to this page. FreeCAD 0.20 is expected to be released in 202x.** @@ -212,3 +209,6 @@ There is also a text box for feedback of OpenSCAD errors. ### Trails, PyTrails, Turns, pivy\_trackers, and Geomatics [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.20/ru diff --git a/wiki/translations/ru/Release_notes_011.md b/wiki/translations/ru/Release_notes_011.md index 39bae4dd26..48601afdbb 100644 --- a/wiki/translations/ru/Release_notes_011.md +++ b/wiki/translations/ru/Release_notes_011.md @@ -1,2 +1,5 @@ # Release notes 011/ru 1. REDIRECT [Release notes 0.11/ru](Release_notes_0.11/ru.md) + +--- +[documentation index](../README.md) > Release notes 011/ru diff --git a/wiki/translations/ru/Release_notes_012.md b/wiki/translations/ru/Release_notes_012.md index f0b7a8123b..a245daf0e9 100644 --- a/wiki/translations/ru/Release_notes_012.md +++ b/wiki/translations/ru/Release_notes_012.md @@ -1,2 +1,5 @@ # Release notes 012/ru 1. REDIRECT [Release notes 0.12/ru](Release_notes_0.12/ru.md) + +--- +[documentation index](../README.md) > Release notes 012/ru diff --git a/wiki/translations/ru/Release_notes_013.md b/wiki/translations/ru/Release_notes_013.md index a8e2225c31..0ea28e2309 100644 --- a/wiki/translations/ru/Release_notes_013.md +++ b/wiki/translations/ru/Release_notes_013.md @@ -1,2 +1,5 @@ # Release notes 013/ru 1. REDIRECT [Release\_notes\_0.13/ru](Release_notes_0.13/ru.md) + +--- +[documentation index](../README.md) > Release notes 013/ru diff --git a/wiki/translations/ru/Render_project.md b/wiki/translations/ru/Render_project.md index 797ebf9a8b..7618884483 100644 --- a/wiki/translations/ru/Render_project.md +++ b/wiki/translations/ru/Render_project.md @@ -1,5 +1,5 @@ # Render project/ru - **(2020) This page refers to an attempt to update the [Raytracing Workbench](Raytracing_Workbench.md), proposed around 2012. Its original author never completed the implementation so this information is outdated, and should not be considered current. +**(2020) This page refers to an attempt to update the [Raytracing Workbench](Raytracing_Workbench.md), proposed around 2012. Its original author never completed the implementation so this information is outdated, and should not be considered current. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], a complete Python replacement for the [Raytracing Workbench](Raytracing_Workbench.md). @@ -121,3 +121,6 @@ See also [Raytracing tutorial](Raytracing_tutorial.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:Render](Category:Render.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > Render project/ru diff --git a/wiki/translations/ru/Report_view.md b/wiki/translations/ru/Report_view.md index 36fa486504..a67cbac839 100644 --- a/wiki/translations/ru/Report_view.md +++ b/wiki/translations/ru/Report_view.md @@ -1,6 +1,4 @@ # Report view/ru - - ## Введение The [Report view](Report_view.md) is a panel that shows text messages from FreeCAD processes and tools. It is available in the menu **{{StdMenu|[View](Std_View_Menu.md)** → Panels → Report view}}. @@ -53,4 +51,7 @@ Right click on the report view shows some commands: {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Report view/ru diff --git a/wiki/translations/ru/Resource_framework_project.md b/wiki/translations/ru/Resource_framework_project.md index c6ef5c9499..66f33f42a4 100644 --- a/wiki/translations/ru/Resource_framework_project.md +++ b/wiki/translations/ru/Resource_framework_project.md @@ -1,7 +1,4 @@ # Resource framework project/ru - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -129,3 +126,6 @@ fraganaut01 дает на способ подключить другую сис [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Resource framework project/ru diff --git a/wiki/translations/ru/Reverse_Engineering_Workbench.md b/wiki/translations/ru/Reverse_Engineering_Workbench.md index 37a84675a8..8e1b237d2c 100644 --- a/wiki/translations/ru/Reverse_Engineering_Workbench.md +++ b/wiki/translations/ru/Reverse_Engineering_Workbench.md @@ -1,10 +1,4 @@ -# Reverse Engineering Workbench/ru - - - - - -Логотип верстака обратной разработки +# Логотип верстака обратной разработки Reverse Engineering Workbench/ru ## Introduction @@ -37,3 +31,6 @@ Link to appropriate threads discussing this workbench [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench/ru diff --git a/wiki/translations/ru/Robot_API_example.md b/wiki/translations/ru/Robot_API_example.md index 273edd00db..00e5507164 100644 --- a/wiki/translations/ru/Robot_API_example.md +++ b/wiki/translations/ru/Robot_API_example.md @@ -1,6 +1,4 @@ # Robot API example/ru - - ## Введение Это пример базируется на файле примера [RobotExample.py](https://github.com/FreeCAD/FreeCAD_sf_master/blob/master/src/Mod/Robot/RobotExample.py). @@ -169,3 +167,6 @@ for w in App.activeDocument().Trajectory.Trajectory.Waypoints: {{Userdocnavi/ru}} [Category:Robot API](Category:Robot_API.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot API example/ru diff --git a/wiki/translations/ru/Robot_CreateRobot.md b/wiki/translations/ru/Robot_CreateRobot.md index 6014ace7af..c34a4a7b4e 100644 --- a/wiki/translations/ru/Robot_CreateRobot.md +++ b/wiki/translations/ru/Robot_CreateRobot.md @@ -1,3 +1,4 @@ +# Robot CreateRobot/ru --- - GuiCommand:/ru Name:Robot CreateRobot @@ -47,4 +48,7 @@ The predefined robots are {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateRobot/ru diff --git a/wiki/translations/ru/Robot_CreateTrajectory.md b/wiki/translations/ru/Robot_CreateTrajectory.md index 2d4928c4f6..1e51019cf8 100644 --- a/wiki/translations/ru/Robot_CreateTrajectory.md +++ b/wiki/translations/ru/Robot_CreateTrajectory.md @@ -1,3 +1,4 @@ +# Robot CreateTrajectory/ru --- - GuiCommand:/ru Name:Robot CreateTrajectory @@ -36,4 +37,7 @@ {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateTrajectory/ru diff --git a/wiki/translations/ru/Robot_Edge2Trac.md b/wiki/translations/ru/Robot_Edge2Trac.md index 24bd174978..18fe71c5ce 100644 --- a/wiki/translations/ru/Robot_Edge2Trac.md +++ b/wiki/translations/ru/Robot_Edge2Trac.md @@ -1,3 +1,4 @@ +# Robot Edge2Trac/ru --- - GuiCommand:/ru Name:Robot Edge2Trac @@ -41,4 +42,7 @@ You are able to change values for this trajectory by defining a [Robot](Robot_Workbench.md) > Robot Edge2Trac/ru diff --git a/wiki/translations/ru/Robot_Export.md b/wiki/translations/ru/Robot_Export.md index e216f8274d..bb2db11ac1 100644 --- a/wiki/translations/ru/Robot_Export.md +++ b/wiki/translations/ru/Robot_Export.md @@ -1,3 +1,4 @@ +# Robot Export/ru --- - GuiCommand:/ru Name:Robot Export @@ -29,4 +30,7 @@ Result: A KRL file (\*.src) will be created. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Export/ru diff --git a/wiki/translations/ru/Robot_InsertWaypoint.md b/wiki/translations/ru/Robot_InsertWaypoint.md index 36bb6e4a9f..63bafdb309 100644 --- a/wiki/translations/ru/Robot_InsertWaypoint.md +++ b/wiki/translations/ru/Robot_InsertWaypoint.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Robot InsertWaypoint/ru +
@@ -46,4 +48,7 @@ {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot InsertWaypoint/ru diff --git a/wiki/translations/ru/Robot_InsertWaypointPre.md b/wiki/translations/ru/Robot_InsertWaypointPre.md index fe6abcca12..17407c4e31 100644 --- a/wiki/translations/ru/Robot_InsertWaypointPre.md +++ b/wiki/translations/ru/Robot_InsertWaypointPre.md @@ -8,6 +8,8 @@ SeeAlso:[Robot CreateTrajectory](Robot_CreateTrajectory/ru.md), [Robot InsertWaypoint](Robot_InsertWaypoint/ru.md) --- +# Robot InsertWaypointPre/ru +
@@ -40,4 +42,7 @@ Selectable objects are: {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot InsertWaypointPre/ru diff --git a/wiki/translations/ru/Robot_Module.md b/wiki/translations/ru/Robot_Module.md index bf21d7e769..c4beb6451e 100644 --- a/wiki/translations/ru/Robot_Module.md +++ b/wiki/translations/ru/Robot_Module.md @@ -1,2 +1,5 @@ # Robot Module/ru 1. REDIRECT [Robot Workbench/ru](Robot_Workbench/ru.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Module/ru diff --git a/wiki/translations/ru/Robot_RestoreHomePos.md b/wiki/translations/ru/Robot_RestoreHomePos.md index b388be41dd..a6cdbf4a74 100644 --- a/wiki/translations/ru/Robot_RestoreHomePos.md +++ b/wiki/translations/ru/Robot_RestoreHomePos.md @@ -1,3 +1,4 @@ +# Robot RestoreHomePos/ru --- - GuiCommand:/ru Name:Robot RestoreHomePos @@ -35,4 +36,7 @@ {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot RestoreHomePos/ru diff --git a/wiki/translations/ru/Robot_SetDefaultOrientation.md b/wiki/translations/ru/Robot_SetDefaultOrientation.md index b4f85430fc..8f4c0d1df0 100644 --- a/wiki/translations/ru/Robot_SetDefaultOrientation.md +++ b/wiki/translations/ru/Robot_SetDefaultOrientation.md @@ -6,6 +6,8 @@ MenuLocation:Робот→ Установить ориентацию по умолчанию --- +# Robot SetDefaultOrientation/ru +
@@ -31,4 +33,7 @@ {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetDefaultOrientation/ru diff --git a/wiki/translations/ru/Robot_SetDefaultValues.md b/wiki/translations/ru/Robot_SetDefaultValues.md index 1e420c4db2..5c9c94e87b 100644 --- a/wiki/translations/ru/Robot_SetDefaultValues.md +++ b/wiki/translations/ru/Robot_SetDefaultValues.md @@ -1,3 +1,4 @@ +# Robot SetDefaultValues/ru --- - GuiCommand:/ru Name:Robot SetDefaultValues @@ -48,4 +49,7 @@ {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetDefaultValues/ru diff --git a/wiki/translations/ru/Robot_SetHomePos.md b/wiki/translations/ru/Robot_SetHomePos.md index 4361807199..40d0fb3bda 100644 --- a/wiki/translations/ru/Robot_SetHomePos.md +++ b/wiki/translations/ru/Robot_SetHomePos.md @@ -1,3 +1,4 @@ +# Robot SetHomePos/ru --- - GuiCommand:/ru Name:Robot SetHomePos @@ -41,4 +42,7 @@ {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetHomePos/ru diff --git a/wiki/translations/ru/Robot_Simulate.md b/wiki/translations/ru/Robot_Simulate.md index d2d565784f..0a7b0f36f7 100644 --- a/wiki/translations/ru/Robot_Simulate.md +++ b/wiki/translations/ru/Robot_Simulate.md @@ -1,3 +1,4 @@ +# Robot Simulate/ru --- - GuiCommand:/ru Name:Robot Simulate @@ -38,4 +39,7 @@ The buttons from left to right. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Simulate/ru diff --git a/wiki/translations/ru/Robot_TrajectoryCompound.md b/wiki/translations/ru/Robot_TrajectoryCompound.md index 885ebc0fc1..8975c7176d 100644 --- a/wiki/translations/ru/Robot_TrajectoryCompound.md +++ b/wiki/translations/ru/Robot_TrajectoryCompound.md @@ -1,3 +1,4 @@ +# Robot TrajectoryCompound/ru --- - GuiCommand:/ru Name:Robot TrajectoryCompound @@ -29,4 +30,7 @@ Creates a compound out of some single trajectories. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot TrajectoryCompound/ru diff --git a/wiki/translations/ru/Robot_TrajectoryDressUp.md b/wiki/translations/ru/Robot_TrajectoryDressUp.md index 5890669b05..67d18ca52d 100644 --- a/wiki/translations/ru/Robot_TrajectoryDressUp.md +++ b/wiki/translations/ru/Robot_TrajectoryDressUp.md @@ -1,3 +1,4 @@ +# Robot TrajectoryDressUp/ru --- - GuiCommand:/ru Name:Robot TrajectoryDressUp @@ -39,4 +40,7 @@ Resulting in the ability to change values for: {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot TrajectoryDressUp/ru diff --git a/wiki/translations/ru/Robot_Workbench.md b/wiki/translations/ru/Robot_Workbench.md index 96bebef0e0..8fdc964929 100644 --- a/wiki/translations/ru/Robot_Workbench.md +++ b/wiki/translations/ru/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/ru - - - - - - **Верстак Robot в FreeCAD остался без поддержки. Если у Вас есть знания в этом вопросе и интерес к его поддержке, пожалуйста, заявите своё намерение в секции разработчиков на [https://forum.freecadweb.org/index.php форуме FreeCAD].** The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. }} @@ -80,3 +74,6 @@ The reason this workbench is still in the master source code is because this wor }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/ru diff --git a/wiki/translations/ru/Robot_tutorial.md b/wiki/translations/ru/Robot_tutorial.md index 9944c11646..78eea3e1e4 100644 --- a/wiki/translations/ru/Robot_tutorial.md +++ b/wiki/translations/ru/Robot_tutorial.md @@ -1,5 +1,5 @@ # Robot tutorial/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic= Robot Workbench |Level= Beginner |Time= @@ -52,3 +52,6 @@ This tutorial is targeting on the use of [industrial robots](http://en.wikipedia }} {{Robot Tools navi}} [Category:Tutorials/ru](Category:Tutorials/ru.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot tutorial/ru diff --git a/wiki/translations/ru/Rocket_Workbench.md b/wiki/translations/ru/Rocket_Workbench.md index abf0c4d3d6..02326d05d3 100644 --- a/wiki/translations/ru/Rocket_Workbench.md +++ b/wiki/translations/ru/Rocket_Workbench.md @@ -1,7 +1,4 @@ -# Rocket Workbench/ru - - -Rocket Workbench icon +# Rocket Workbench icon Rocket Workbench/ru {{TOCright}} @@ -53,3 +50,6 @@ Components created using the Rocket Workbench are essentially parts similar to w [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Rocket Workbench/ru diff --git a/wiki/translations/ru/SVG.md b/wiki/translations/ru/SVG.md index d4d9fc42c8..23e544bdb7 100644 --- a/wiki/translations/ru/SVG.md +++ b/wiki/translations/ru/SVG.md @@ -1,5 +1,5 @@ # SVG/ru - {{TOCright}} +{{TOCright}} ## Description @@ -24,3 +24,6 @@ FreeCAD is primarily a 3D modeling application, and thus doesn\'t have many 2D d [Category:Draft](Category:Draft.md) [Category:TechDraw](Category:TechDraw.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Category:Draft.md) > SVG/ru diff --git a/wiki/translations/ru/Scenegraph.md b/wiki/translations/ru/Scenegraph.md index e40def3477..59ed9cbd2e 100644 --- a/wiki/translations/ru/Scenegraph.md +++ b/wiki/translations/ru/Scenegraph.md @@ -1,7 +1,4 @@ # Scenegraph/ru - - - {{TOCright}} ## Введение @@ -83,3 +80,6 @@ See [Coin3d snippets](Coin3d_snippets.md) courtesy of MariwanJ\'s research for t }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scenegraph/ru diff --git a/wiki/translations/ru/Scientific_literature.md b/wiki/translations/ru/Scientific_literature.md index 0a7b6f9b99..86030e3171 100644 --- a/wiki/translations/ru/Scientific_literature.md +++ b/wiki/translations/ru/Scientific_literature.md @@ -1,6 +1,4 @@ # Scientific literature/ru - - ## Описание This page collects some articles published that reference or use the FreeCAD system. @@ -17,3 +15,6 @@ Most of these articles are open-access. }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Scientific literature/ru diff --git a/wiki/translations/ru/Screenshots.md b/wiki/translations/ru/Screenshots.md index c5987a64c9..0cf34d73ed 100644 --- a/wiki/translations/ru/Screenshots.md +++ b/wiki/translations/ru/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/ru - {{TOCright}} +{{TOCright}} Здесь находятся несколько скриншотов, показывающих различные части FreeCAD. Они не упорядочены по времени, так что изображения могут отличаться от вашей реальной версии. Смотрите другие скриншоты, присылаемые пользователями FreeCAD, в [теме скриншотов форума](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) и на[\"Show your project here!\" Users Showcase forum part](http://forum.freecadweb.org/viewforum.php?f=24). @@ -226,3 +226,6 @@ FreeCAD, запущенный в консольном режиме (без гр Диалог сохранения картинки с произвольным размером. [Category:User Documentation/ru](Category:User_Documentation/ru.md) [Category:Screenshots/ru](Category:Screenshots/ru.md) + +--- +[documentation index](../README.md) > Screenshots/ru diff --git a/wiki/translations/ru/Scripted_Parts:_Ball_Bearing_-_Part_1.md b/wiki/translations/ru/Scripted_Parts:_Ball_Bearing_-_Part_1.md index 13ab3d759b..b5278cdea3 100644 --- a/wiki/translations/ru/Scripted_Parts:_Ball_Bearing_-_Part_1.md +++ b/wiki/translations/ru/Scripted_Parts:_Ball_Bearing_-_Part_1.md @@ -1,5 +1,5 @@ # Scripted Parts: Ball Bearing - Part 1/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic= Part Scripting - Ball Bearing #1 |Level= Beginner |Time= 30 минут @@ -142,3 +142,6 @@ Gui.SendMsgToActiveView("ViewFit") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted Parts: Ball Bearing - Part 1/ru diff --git a/wiki/translations/ru/Scripted_Parts:_Ball_Bearing_-_Part_2.md b/wiki/translations/ru/Scripted_Parts:_Ball_Bearing_-_Part_2.md index 20b0ad16c4..1018880512 100644 --- a/wiki/translations/ru/Scripted_Parts:_Ball_Bearing_-_Part_2.md +++ b/wiki/translations/ru/Scripted_Parts:_Ball_Bearing_-_Part_2.md @@ -1,5 +1,5 @@ # Scripted Parts: Ball Bearing - Part 2/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic= Part Scripting - Ball Bearing #2 |Level= Beginner |Time= 30 min @@ -177,3 +177,6 @@ Gui.SendMsgToActiveView("ViewFit") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted Parts: Ball Bearing - Part 2/ru diff --git a/wiki/translations/ru/Scripted_objects.md b/wiki/translations/ru/Scripted_objects.md index c7134b614c..f780d0e276 100644 --- a/wiki/translations/ru/Scripted_objects.md +++ b/wiki/translations/ru/Scripted_objects.md @@ -1,7 +1,4 @@ # Scripted objects/ru - - - {{TOCright}} ## Введение @@ -914,3 +911,6 @@ a,b = makeMolecule() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects/ru diff --git a/wiki/translations/ru/Scripted_objects_migration.md b/wiki/translations/ru/Scripted_objects_migration.md index 0d14bb6c0d..9d0d474430 100644 --- a/wiki/translations/ru/Scripted_objects_migration.md +++ b/wiki/translations/ru/Scripted_objects_migration.md @@ -1,6 +1,4 @@ # Scripted objects migration/ru - - ## Introduction [Scripted objects](Scripted_objects.md) are rebuilt every time a [FCStd document](File_Format_FCStd.md) is opened. To do this the document keeps a reference to the module and Python class that were used to create the object, along with its properties. @@ -555,3 +553,6 @@ Preferably avoid the following: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects migration/ru diff --git a/wiki/translations/ru/Scripted_objects_saving_attributes.md b/wiki/translations/ru/Scripted_objects_saving_attributes.md index f506c1142c..3cd5a32673 100644 --- a/wiki/translations/ru/Scripted_objects_saving_attributes.md +++ b/wiki/translations/ru/Scripted_objects_saving_attributes.md @@ -1,7 +1,4 @@ # Scripted objects saving attributes/ru - - - {{TOCright}} ## Введение @@ -191,3 +188,6 @@ class CustomObject: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects saving attributes/ru diff --git a/wiki/translations/ru/Scripted_objects_with_attachment.md b/wiki/translations/ru/Scripted_objects_with_attachment.md index 773a42e723..9a9d8de836 100644 --- a/wiki/translations/ru/Scripted_objects_with_attachment.md +++ b/wiki/translations/ru/Scripted_objects_with_attachment.md @@ -1,5 +1,5 @@ # Scripted objects with attachment/ru - {{TOCright}} +{{TOCright}} ## Introduction @@ -155,3 +155,6 @@ Note: For FreeCAD 0.19 this tutorial needs a minor update: }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects with attachment/ru diff --git a/wiki/translations/ru/Scripting.md b/wiki/translations/ru/Scripting.md index acce5310ff..a289c0e4d8 100644 --- a/wiki/translations/ru/Scripting.md +++ b/wiki/translations/ru/Scripting.md @@ -1,2 +1,5 @@ # Scripting/ru 1. REDIRECT [Power users hub/ru](Power_users_hub/ru.md) + +--- +[documentation index](../README.md) > Scripting/ru diff --git a/wiki/translations/ru/Scripting_and_macros.md b/wiki/translations/ru/Scripting_and_macros.md index d50e912aad..72c80acd69 100644 --- a/wiki/translations/ru/Scripting_and_macros.md +++ b/wiki/translations/ru/Scripting_and_macros.md @@ -1,9 +1,4 @@ # Scripting and macros/ru - - - - - ## Overview of Python scripting pages - Python related pages in the Manual: @@ -102,3 +97,6 @@ }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripting and macros/ru diff --git a/wiki/translations/ru/Scripting_examples.md b/wiki/translations/ru/Scripting_examples.md index 7cad1e9853..3ecf95d6a8 100644 --- a/wiki/translations/ru/Scripting_examples.md +++ b/wiki/translations/ru/Scripting_examples.md @@ -1,2 +1,5 @@ # Scripting examples/ru 1. REDIRECT [Scripting\_and\_macros/ru](Scripting_and_macros/ru.md) + +--- +[documentation index](../README.md) > Scripting examples/ru diff --git a/wiki/translations/ru/Scripts.md b/wiki/translations/ru/Scripts.md index 0d6c5a33d7..7abe60659f 100644 --- a/wiki/translations/ru/Scripts.md +++ b/wiki/translations/ru/Scripts.md @@ -1,5 +1,5 @@ # Scripts/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic=Scripting |Level=Base |Time= @@ -312,3 +312,6 @@ This is the meaning of the word \"awkward\" that I\'ve used to define `Placement }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripts/ru diff --git a/wiki/translations/ru/Selection_methods.md b/wiki/translations/ru/Selection_methods.md index d1c3db2fd4..829fadc765 100644 --- a/wiki/translations/ru/Selection_methods.md +++ b/wiki/translations/ru/Selection_methods.md @@ -1,10 +1,4 @@ # Selection methods/ru - - - - - - {{TOCright}} ## Обзор @@ -111,5 +105,5 @@ Gui.Selection.addSelectionGate("SELECT Part::Feature SUBELEMENT Edge")
- - +--- +[documentation index](../README.md) > Selection methods/ru diff --git a/wiki/translations/ru/Selection_view.md b/wiki/translations/ru/Selection_view.md index 9313b30dfe..80a88eff2e 100644 --- a/wiki/translations/ru/Selection_view.md +++ b/wiki/translations/ru/Selection_view.md @@ -1,6 +1,4 @@ # Selection view/ru - - ## Введение @@ -79,4 +77,7 @@ Starting from v0.19, the **picked object list** checkbox is available. If this i {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Selection view/ru diff --git a/wiki/translations/ru/Shape.md b/wiki/translations/ru/Shape.md index 82da6d21bf..5f2a9ca641 100644 --- a/wiki/translations/ru/Shape.md +++ b/wiki/translations/ru/Shape.md @@ -1,6 +1,4 @@ # Shape/ru - - ## Введение В FreeCAD слово \"Форма\" обычно используется для обозначения [Part TopoShape (Топологической Геометрии Детали)](Part_TopoShape/ru.md) (Part::TopoShape класса), типа объекта, который даёт элементу его трёхмерное геометрическое и параметрическое представление (куб, пирамида, сфера, цилиндр, слияние и т. Д.). @@ -36,3 +34,6 @@ {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Shape/ru diff --git a/wiki/translations/ru/SheetMetal_Workbench.md b/wiki/translations/ru/SheetMetal_Workbench.md index 3956e426b2..093377773f 100644 --- a/wiki/translations/ru/SheetMetal_Workbench.md +++ b/wiki/translations/ru/SheetMetal_Workbench.md @@ -1,8 +1,4 @@ -# SheetMetal Workbench/ru - - - -Sheet Metal External workbench icon +# Sheet Metal External workbench icon SheetMetal Workbench/ru {{TOCright}} @@ -248,3 +244,6 @@ How to do ? - Source code on github: [Category:SheetMetal](Category:SheetMetal.md) [Category:Addons](Category:Addons.md) [Category:External Command Reference](Category:External_Command_Reference.md) + +--- +[documentation index](../README.md) > SheetMetal Workbench/ru diff --git a/wiki/translations/ru/Ship_Area.md b/wiki/translations/ru/Ship_Area.md index 07f7022cc4..2a9b4308eb 100644 --- a/wiki/translations/ru/Ship_Area.md +++ b/wiki/translations/ru/Ship_Area.md @@ -1,3 +1,4 @@ +# Ship Area/ru --- - GuiCommand:/ru Name:Ship Area @@ -29,4 +30,7 @@ Plot the transversal areas curve {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Area/ru diff --git a/wiki/translations/ru/Ship_Geometries_Examples.md b/wiki/translations/ru/Ship_Geometries_Examples.md index e559deb4cd..5feab8d1f3 100644 --- a/wiki/translations/ru/Ship_Geometries_Examples.md +++ b/wiki/translations/ru/Ship_Geometries_Examples.md @@ -1,3 +1,4 @@ +# Ship Geometries Examples/ru --- - GuiCommand:/ru Name:Ship Load‏‎ Example @@ -49,4 +50,7 @@ In order to help new users, Ship includes a geometries examples loader, with the {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Geometries Examples/ru diff --git a/wiki/translations/ru/Ship_Hydrostatics.md b/wiki/translations/ru/Ship_Hydrostatics.md index 053d3e15ec..cd0429bef2 100644 --- a/wiki/translations/ru/Ship_Hydrostatics.md +++ b/wiki/translations/ru/Ship_Hydrostatics.md @@ -1,3 +1,4 @@ +# Ship Hydrostatics/ru --- - GuiCommand:/ru Name:Ship Hydrostatics @@ -34,4 +35,7 @@ When the Hydrostatics tool is executed, a task dialog is shown. Usually Hydrosta {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Hydrostatics/ru diff --git a/wiki/translations/ru/Ship_Loading.md b/wiki/translations/ru/Ship_Loading.md index abf3ce5f04..fa6e62bafa 100644 --- a/wiki/translations/ru/Ship_Loading.md +++ b/wiki/translations/ru/Ship_Loading.md @@ -1,3 +1,4 @@ +# Ship Loading/ru --- - GuiCommand:/ru Name:Ship Loading @@ -21,9 +22,5 @@ TODO {{Ship_Tools_navi/ru}} - - - - - - +--- +[documentation index](../README.md) > Ship Loading/ru diff --git a/wiki/translations/ru/Ship_New.md b/wiki/translations/ru/Ship_New.md index 3b42fa0492..e9975283c5 100644 --- a/wiki/translations/ru/Ship_New.md +++ b/wiki/translations/ru/Ship_New.md @@ -9,6 +9,8 @@ SeeAlso: --- +# Ship New/ru +
@@ -54,4 +56,7 @@ Note: From here onward, you must have **Ship** selected before you execute any S {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship New/ru diff --git a/wiki/translations/ru/Ship_Outline.md b/wiki/translations/ru/Ship_Outline.md index 7229d33743..9a9f59fa36 100644 --- a/wiki/translations/ru/Ship_Outline.md +++ b/wiki/translations/ru/Ship_Outline.md @@ -1,3 +1,4 @@ +# Ship Outline/ru --- - GuiCommand:/ru Name:Ship Outline @@ -107,4 +108,7 @@ Outline draw plot. {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Outline/ru diff --git a/wiki/translations/ru/Ship_PlotGZ.md b/wiki/translations/ru/Ship_PlotGZ.md index 91a5e21bed..3f964bdb6c 100644 --- a/wiki/translations/ru/Ship_PlotGZ.md +++ b/wiki/translations/ru/Ship_PlotGZ.md @@ -1,3 +1,4 @@ +# Ship PlotGZ/ru --- - GuiCommand:/ru Name:Ship PlotGZ @@ -21,9 +22,5 @@ TODO {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship PlotGZ/ru diff --git a/wiki/translations/ru/Ship_TankCapacity.md b/wiki/translations/ru/Ship_TankCapacity.md index ad99aa45b3..df5fbfa2b1 100644 --- a/wiki/translations/ru/Ship_TankCapacity.md +++ b/wiki/translations/ru/Ship_TankCapacity.md @@ -1,3 +1,4 @@ +# Ship TankCapacity/ru --- - GuiCommand:/ru Name:Ship TankCapacity @@ -21,9 +22,5 @@ TODO {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship TankCapacity/ru diff --git a/wiki/translations/ru/Ship_TankNew.md b/wiki/translations/ru/Ship_TankNew.md index e4481aa5a5..95bd0b6343 100644 --- a/wiki/translations/ru/Ship_TankNew.md +++ b/wiki/translations/ru/Ship_TankNew.md @@ -1,3 +1,4 @@ +# Ship TankNew/ru --- - GuiCommand:/ru Name:Ship TankNew @@ -21,9 +22,5 @@ TODO {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship TankNew/ru diff --git a/wiki/translations/ru/Ship_Weight.md b/wiki/translations/ru/Ship_Weight.md index f889a02cbc..1f541e0614 100644 --- a/wiki/translations/ru/Ship_Weight.md +++ b/wiki/translations/ru/Ship_Weight.md @@ -1,3 +1,4 @@ +# Ship Weight/ru --- - GuiCommand:/ru Name:Ship Weight @@ -21,9 +22,5 @@ TODO {{Ship_Tools_navi}} - - - - - - +--- +[documentation index](../README.md) > Ship Weight/ru diff --git a/wiki/translations/ru/Ship_Workbench.md b/wiki/translations/ru/Ship_Workbench.md index 6ce1a184b3..04bfdcfcb2 100644 --- a/wiki/translations/ru/Ship_Workbench.md +++ b/wiki/translations/ru/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/ru - - -Ship workbench icon +# Ship workbench icon Ship Workbench/ru {{TOCright}} @@ -67,3 +64,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/ru diff --git a/wiki/translations/ru/Sketch.md b/wiki/translations/ru/Sketch.md index 2a9f2056fc..b4c5392fbf 100644 --- a/wiki/translations/ru/Sketch.md +++ b/wiki/translations/ru/Sketch.md @@ -1,6 +1,4 @@ # Sketch/ru - - ## Введение @@ -39,3 +37,6 @@ }} {{Document objects navi}} [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Sketch/ru diff --git a/wiki/translations/ru/Sketcher_BSplineApproximate.md b/wiki/translations/ru/Sketcher_BSplineApproximate.md index 060b9a70df..d861eaa971 100644 --- a/wiki/translations/ru/Sketcher_BSplineApproximate.md +++ b/wiki/translations/ru/Sketcher_BSplineApproximate.md @@ -8,6 +8,8 @@ SeeAlso:[Создать B-сплайн](Sketcher_CompCreateBSpline/ru.md) --- +# Sketcher BSplineApproximate/ru + ## Описание Converts compatible geometry, edges and curves, into a B-spline (see [this page](B-Splines.md) for more info about B-splines). @@ -30,4 +32,7 @@ Make sure to have either the spline [degree](Sketcher_BSplineDegree.md), [polygo {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineApproximate/ru diff --git a/wiki/translations/ru/Sketcher_BSplineComb.md b/wiki/translations/ru/Sketcher_BSplineComb.md index 37e9073b97..7c4d9412b3 100644 --- a/wiki/translations/ru/Sketcher_BSplineComb.md +++ b/wiki/translations/ru/Sketcher_BSplineComb.md @@ -8,6 +8,8 @@ SeeAlso:[Создать B-сплайн](Sketcher_CompCreateBSpline/ru.md) --- +# Sketcher BSplineComb/ru + ## Описание Позволяет отобразить или скрыть гребень кривизны B-сплайна (см. [данную страницу](B-Splines/ru.md) для получения дополнительной информации о B-сплайнах). @@ -27,4 +29,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineComb/ru diff --git a/wiki/translations/ru/Sketcher_BSplineConvertToNURB.md b/wiki/translations/ru/Sketcher_BSplineConvertToNURB.md index 62e332d5ec..fa7ae8e75a 100644 --- a/wiki/translations/ru/Sketcher_BSplineConvertToNURB.md +++ b/wiki/translations/ru/Sketcher_BSplineConvertToNURB.md @@ -1,2 +1,5 @@ # Sketcher BSplineConvertToNURB/ru 1. REDIRECT [Sketcher\_BSplineApproximate](Sketcher_BSplineApproximate.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineConvertToNURB/ru diff --git a/wiki/translations/ru/Sketcher_BSplineDecreaseDegree.md b/wiki/translations/ru/Sketcher_BSplineDecreaseDegree.md index b6bc226d5d..16609f315c 100644 --- a/wiki/translations/ru/Sketcher_BSplineDecreaseDegree.md +++ b/wiki/translations/ru/Sketcher_BSplineDecreaseDegree.md @@ -8,6 +8,8 @@ SeeAlso:[Показать/скрыть степень B-сплайна](Sketcher_BSplineDegree/ru.md), [Увеличить степень B-сплайна](Sketcher_BSplineIncreaseDegree/ru.md) --- +# Sketcher BSplineDecreaseDegree/ru + ## Описание Уменьшает степень (порядок) B-сплайна (дополнительную информацию о B-сплайнах см. [на этой странице](B-Splines/ru.md)). @@ -41,4 +43,7 @@ If you take this result and increase the degree, you cannot get the initial stat {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineDecreaseDegree/ru diff --git a/wiki/translations/ru/Sketcher_BSplineDecreaseKnotMultiplicity.md b/wiki/translations/ru/Sketcher_BSplineDecreaseKnotMultiplicity.md index 042cc978e3..330d07ca0f 100644 --- a/wiki/translations/ru/Sketcher_BSplineDecreaseKnotMultiplicity.md +++ b/wiki/translations/ru/Sketcher_BSplineDecreaseKnotMultiplicity.md @@ -8,6 +8,8 @@ SeeAlso:[Показать/скрыть кратность узлов B-сплайна](Sketcher_BSplineKnotMultiplicity/ru.md), [Увеличение кратности узлов](Sketcher_BSplineIncreaseKnotMultiplicity/ru.md) --- +# Sketcher BSplineDecreaseKnotMultiplicity/ru + ## Описание Decreases the multiplicity of a B-spline knot. (See [this page](B-Splines.md) for more info about B-splines). @@ -46,4 +48,7 @@ One can see that the spline with knot multiplicity 1 is completely changed while {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineDecreaseKnotMultiplicity/ru diff --git a/wiki/translations/ru/Sketcher_BSplineDegree.md b/wiki/translations/ru/Sketcher_BSplineDegree.md index 1451cf1679..58088b9d7c 100644 --- a/wiki/translations/ru/Sketcher_BSplineDegree.md +++ b/wiki/translations/ru/Sketcher_BSplineDegree.md @@ -8,6 +8,8 @@ SeeAlso:[Создать B-сплайн](Sketcher_CompCreateBSpline/ru.md) --- +# Sketcher BSplineDegree/ru +
@@ -27,4 +29,7 @@ Shows or hides the display of the **degree** of a B-spline (see [this page](B-Sp {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineDegree/ru diff --git a/wiki/translations/ru/Sketcher_BSplineIncreaseDegree.md b/wiki/translations/ru/Sketcher_BSplineIncreaseDegree.md index 8d46a377a2..4b4085ea84 100644 --- a/wiki/translations/ru/Sketcher_BSplineIncreaseDegree.md +++ b/wiki/translations/ru/Sketcher_BSplineIncreaseDegree.md @@ -8,6 +8,8 @@ SeeAlso:[Показать/скрыть степень B-сплайна](Sketcher_BSplineDegree/ru.md), [Уменьшить степень B-сплайна](Sketcher_BSplineDecreaseDegree/ru.md) --- +# Sketcher BSplineIncreaseDegree/ru + @@ -47,4 +49,7 @@ You can see that now each segment has 2 control points and the knots are coincid {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineIncreaseDegree/ru diff --git a/wiki/translations/ru/Sketcher_BSplineIncreaseKnotMultiplicity.md b/wiki/translations/ru/Sketcher_BSplineIncreaseKnotMultiplicity.md index f11892820e..2a98a53f6b 100644 --- a/wiki/translations/ru/Sketcher_BSplineIncreaseKnotMultiplicity.md +++ b/wiki/translations/ru/Sketcher_BSplineIncreaseKnotMultiplicity.md @@ -8,6 +8,8 @@ SeeAlso:[Показать/скрыть кратность узлов B-сплайна](Sketcher_BSplineKnotMultiplicity/ru.md), [Уменьшение кратности узлов](Sketcher_BSplineDecreaseKnotMultiplicity/ru.md) --- +# Sketcher BSplineIncreaseKnotMultiplicity/ru + ## Описание Increases the multiplicity of a B-spline knot. (See [this page](B-Splines.md) for more info about B-splines). @@ -42,4 +44,7 @@ One can see that the spline with knot multiplicity 1 is completely changed while {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineIncreaseKnotMultiplicity/ru diff --git a/wiki/translations/ru/Sketcher_BSplineKnotMultiplicity.md b/wiki/translations/ru/Sketcher_BSplineKnotMultiplicity.md index 309c028ab7..2413bbde7a 100644 --- a/wiki/translations/ru/Sketcher_BSplineKnotMultiplicity.md +++ b/wiki/translations/ru/Sketcher_BSplineKnotMultiplicity.md @@ -8,6 +8,8 @@ SeeAlso:[Создать B-сплайн](Sketcher_CompCreateBSpline/ru.md) --- +# Sketcher BSplineKnotMultiplicity/ru + @@ -28,4 +30,7 @@ Shows or hides the display of the knot multiplicity of a B-spline. See [this pag {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplineKnotMultiplicity/ru diff --git a/wiki/translations/ru/Sketcher_BSplinePoleWeight.md b/wiki/translations/ru/Sketcher_BSplinePoleWeight.md index c3e6896671..d09d62ae70 100644 --- a/wiki/translations/ru/Sketcher_BSplinePoleWeight.md +++ b/wiki/translations/ru/Sketcher_BSplinePoleWeight.md @@ -8,6 +8,8 @@ SeeAlso:[Создать B-сплайн](Sketcher_CompCreateBSpline/ru.md) --- +# Sketcher BSplinePoleWeight/ru + @@ -62,4 +64,7 @@ How to change weights is described in [ this Wiki page](B-Splines#Changing_the_W {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplinePoleWeight/ru diff --git a/wiki/translations/ru/Sketcher_BSplinePolygon.md b/wiki/translations/ru/Sketcher_BSplinePolygon.md index 934bb5bcc7..c68c77299d 100644 --- a/wiki/translations/ru/Sketcher_BSplinePolygon.md +++ b/wiki/translations/ru/Sketcher_BSplinePolygon.md @@ -8,6 +8,8 @@ SeeAlso:[Создать B-сплайн](Sketcher_CompCreateBSpline/ru.md) --- +# Sketcher BSplinePolygon/ru + @@ -27,4 +29,7 @@ Shows or hides the display of the defininig Polygon of a B-spline (see [this pag {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher BSplinePolygon/ru diff --git a/wiki/translations/ru/Sketcher_CarbonCopy.md b/wiki/translations/ru/Sketcher_CarbonCopy.md index f5de95bd46..6ea22f0171 100644 --- a/wiki/translations/ru/Sketcher_CarbonCopy.md +++ b/wiki/translations/ru/Sketcher_CarbonCopy.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Sketcher CarbonCopy/ru + ## Описание Инструмент ** [Структурная Копия](Sketcher_CarbonCopy/ru.md)** копирует всю геометрию и ограничения из другого эскиза в активный эскиз. @@ -44,4 +46,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CarbonCopy/ru diff --git a/wiki/translations/ru/Sketcher_Clone.md b/wiki/translations/ru/Sketcher_Clone.md index b65b9d826b..19fe2db102 100644 --- a/wiki/translations/ru/Sketcher_Clone.md +++ b/wiki/translations/ru/Sketcher_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Копировать](Sketcher_Copy/ru.md), [Переместить](Sketcher_Move/ru.md) --- +# Sketcher Clone/ru + ## Описание Clones the selected sketch elements from one point to another, using the last selected point as reference. If any constraints are part of the source elements, then the new constraints are linked to the source constraints; if the constraints in the source are changed, the constraints in the clone are also changed. To avoid this linking see ** [Sketcher Copy](Sketcher_Copy.md)**. @@ -28,4 +30,7 @@ No extra constraints for clone-behaviour are added. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Clone/ru diff --git a/wiki/translations/ru/Sketcher_CloseShape.md b/wiki/translations/ru/Sketcher_CloseShape.md index af37b33577..e5ddbdb77e 100644 --- a/wiki/translations/ru/Sketcher_CloseShape.md +++ b/wiki/translations/ru/Sketcher_CloseShape.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher CloseShape/ru + ## Описание This tool can be used to make a selected contour in sketcher closed by making an endpoint of a sketcher element coincident with the endpoint of the sketcher element selected next. @@ -30,4 +32,7 @@ The tool will connect the elements in the order of their selection, so make sure {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CloseShape/ru diff --git a/wiki/translations/ru/Sketcher_CompCreateArc.md b/wiki/translations/ru/Sketcher_CompCreateArc.md index 578db38737..138e1d309b 100644 --- a/wiki/translations/ru/Sketcher_CompCreateArc.md +++ b/wiki/translations/ru/Sketcher_CompCreateArc.md @@ -7,6 +7,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/ru.md) --- +# Sketcher CompCreateArc/ru + ## Описание **Создать дугу** это кнопка на панели инструментов \"Геометрия эскизов\", группирует в себе инструменты для создания дуг по трем опорным точкам. Нажмите на стрелку указывающую вниз справа от нее, чтобы развернуть список инструментов и выбрать инструмент. @@ -22,4 +24,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateArc/ru diff --git a/wiki/translations/ru/Sketcher_CompCreateBSpline.md b/wiki/translations/ru/Sketcher_CompCreateBSpline.md index 55d13d9bb8..afdee99c46 100644 --- a/wiki/translations/ru/Sketcher_CompCreateBSpline.md +++ b/wiki/translations/ru/Sketcher_CompCreateBSpline.md @@ -8,6 +8,8 @@ Version:0.17 --- +# Sketcher CompCreateBSpline/ru + ## Описание **Нарисовать B-Cплайн** - это кнопка на панели инструментов \"Геометрия эскизов\", которая группирует в себе инструменты для создания B-Cплайн кривых. Нажмите на стрелку указывающую вниз справа от нее, чтобы развернуть список инструментов и выбрать инструмент. @@ -23,4 +25,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateBSpline/ru diff --git a/wiki/translations/ru/Sketcher_CompCreateCircle.md b/wiki/translations/ru/Sketcher_CompCreateCircle.md index d56c2e9e72..f02561ccae 100644 --- a/wiki/translations/ru/Sketcher_CompCreateCircle.md +++ b/wiki/translations/ru/Sketcher_CompCreateCircle.md @@ -7,6 +7,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/ru.md) --- +# Sketcher CompCreateCircle/ru + ## Описание **Нарисовать круг** это кнопка на панели инструментов \"Геометрия эскизов\", которая группирует в себе инструменты для создания окружностей. Нажмите на стрелку указывающую вниз справа от нее, чтобы развернуть список инструментов и выбрать инструмент. @@ -22,4 +24,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateCircle/ru diff --git a/wiki/translations/ru/Sketcher_CompCreateConic.md b/wiki/translations/ru/Sketcher_CompCreateConic.md index ffe6ef2842..32a3111fb7 100644 --- a/wiki/translations/ru/Sketcher_CompCreateConic.md +++ b/wiki/translations/ru/Sketcher_CompCreateConic.md @@ -7,6 +7,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/ru.md) --- +# Sketcher CompCreateConic/ru + ## Описание **Создать фигуру конического сечения** это кнопка со значком на панели инструментов геометрии Sketcher, которая группирует инструменты для создания кривых на основе сечения конуса. Нажмите на стрелку вниз справа от нее, чтобы развернуть значки под ней и выбрать инструмент. @@ -25,4 +27,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateConic/ru diff --git a/wiki/translations/ru/Sketcher_CompCreateRectangles.md b/wiki/translations/ru/Sketcher_CompCreateRectangles.md index 4c470709de..d26c6b37b0 100644 --- a/wiki/translations/ru/Sketcher_CompCreateRectangles.md +++ b/wiki/translations/ru/Sketcher_CompCreateRectangles.md @@ -8,6 +8,8 @@ Version : 0.20 --- +# Sketcher CompCreateRectangles/ru + ## Описание **Создать прямоугольник** это кнопка на панели инструментов \"Геометрия эскизов\", которая группирует в себе инструменты для создания прямоугольников. Нажмите на стрелку указывающую вниз справа от нее, чтобы развернуть список инструментов и выбрать инструмент. @@ -24,4 +26,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateRectangles/ru diff --git a/wiki/translations/ru/Sketcher_CompCreateRegularPolygon.md b/wiki/translations/ru/Sketcher_CompCreateRegularPolygon.md index dda857ccb4..92b0eee9b9 100644 --- a/wiki/translations/ru/Sketcher_CompCreateRegularPolygon.md +++ b/wiki/translations/ru/Sketcher_CompCreateRegularPolygon.md @@ -7,6 +7,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/ru.md) --- +# Sketcher CompCreateRegularPolygon/ru + ## Описание **Нарисовать правильный многоугольник** - это кнопка на панели инструментов \"Геометрия эскизов\", которая группирует в себе инструменты для создания правильного многоугольника. Нажмите на стрелку указывающую вниз справа от нее, чтобы развернуть список инструментов и выбрать инструмент. @@ -27,4 +29,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateRegularPolygon/ru diff --git a/wiki/translations/ru/Sketcher_ConnectLines.md b/wiki/translations/ru/Sketcher_ConnectLines.md index 8a0589a1ce..1c5d111a1b 100644 --- a/wiki/translations/ru/Sketcher_ConnectLines.md +++ b/wiki/translations/ru/Sketcher_ConnectLines.md @@ -9,6 +9,8 @@ SeeAlso:[Ограничить совпадение](Sketcher_ConstrainCoincident/ru.md) --- +# Sketcher ConnectLines/ru + ## Описание Applies [Coincident constraints](Sketcher_ConstrainCoincident.md) to endpoints with the same coordinates of the selected elements. @@ -31,4 +33,7 @@ Before using this command make sure that obvious constraints (horizontal, vertic {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConnectLines/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainAngle.md b/wiki/translations/ru/Sketcher_ConstrainAngle.md index dd507fe9d1..46aecf0996 100644 --- a/wiki/translations/ru/Sketcher_ConstrainAngle.md +++ b/wiki/translations/ru/Sketcher_ConstrainAngle.md @@ -8,6 +8,8 @@ SeeAlso:[Ограничить расстояние](Sketcher_ConstrainDistance/ru.md), [Ограничить перпендикулярность](Sketcher_ConstrainPerpendicular/ru.md) --- +# Sketcher ConstrainAngle/ru + ## Описание Angle constraint is a [datum constraint](Sketcher_Workbench#Sketcher_Constraints.md) intended to fix angles in sketch. It is capable of setting slopes of individual lines, angles between lines, angles of intersections of curves, and angle spans of circular arcs. @@ -105,4 +107,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainAngle/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainBlock.md b/wiki/translations/ru/Sketcher_ConstrainBlock.md index 29f4254a34..bbcde8c608 100644 --- a/wiki/translations/ru/Sketcher_ConstrainBlock.md +++ b/wiki/translations/ru/Sketcher_ConstrainBlock.md @@ -8,6 +8,8 @@ SeeAlso:[Ограничение положения](Sketcher_ConstrainLock/ru.md) --- +# Sketcher ConstrainBlock/ru + ## Описание **Блокирующее ограничение** фиксирует геометрический элемент в указанном месте, одним нажатием. @@ -34,4 +36,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainBlock/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainCoincident.md b/wiki/translations/ru/Sketcher_ConstrainCoincident.md index e7601541be..21cdbcb569 100644 --- a/wiki/translations/ru/Sketcher_ConstrainCoincident.md +++ b/wiki/translations/ru/Sketcher_ConstrainCoincident.md @@ -8,6 +8,8 @@ SeeAlso:[Ограничение положения](Sketcher_ConstrainLock/ru.md), [Зафиксировать точку на объекте](Sketcher_ConstrainPointOnObject/ru.md) --- +# Sketcher ConstrainCoincident/ru + ## Описание Create a coincident constraint on the selected item @@ -81,4 +83,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainCoincident/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainDiameter.md b/wiki/translations/ru/Sketcher_ConstrainDiameter.md index 2c58623c8a..c2d2309b31 100644 --- a/wiki/translations/ru/Sketcher_ConstrainDiameter.md +++ b/wiki/translations/ru/Sketcher_ConstrainDiameter.md @@ -8,6 +8,8 @@ Version:0.18 --- +# Sketcher ConstrainDiameter/ru + ## Описание This constraint constrains the value of the diameter of a circle or arc to have a specific value. If more than one circle or arc is selected before launching the command : @@ -45,4 +47,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDiameter/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainDistance.md b/wiki/translations/ru/Sketcher_ConstrainDistance.md index 23aa06765a..89189bf1fb 100644 --- a/wiki/translations/ru/Sketcher_ConstrainDistance.md +++ b/wiki/translations/ru/Sketcher_ConstrainDistance.md @@ -8,6 +8,8 @@ SeeAlso:[Ограничение расстояния по горизонтали](Sketcher_ConstrainDistanceX/ru.md), [Ограничение расстояния по вертикали](Sketcher_ConstrainDistanceY/ru.md) --- +# Sketcher ConstrainDistance/ru + ## Description **Constrain distance** constrains the length of a line, the perpendicular distance between a point and a line or the distance between two points to have a specified value. @@ -59,4 +61,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistance/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainDistanceX.md b/wiki/translations/ru/Sketcher_ConstrainDistanceX.md index a93e4b08d5..f32e039b35 100644 --- a/wiki/translations/ru/Sketcher_ConstrainDistanceX.md +++ b/wiki/translations/ru/Sketcher_ConstrainDistanceX.md @@ -8,6 +8,8 @@ SeeAlso:[Ограничить расстояние](Sketcher_ConstrainDistance/ru.md), [Ограничение расстояния по вертикали](Sketcher_ConstrainDistanceY/ru.md) --- +# Sketcher ConstrainDistanceX/ru + ## Описание Fixes the horizontal distance between 2 points or line ends. If only one point is selected, the distance is set to the sketch origin. @@ -50,4 +52,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceX/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainDistanceY.md b/wiki/translations/ru/Sketcher_ConstrainDistanceY.md index 1891324627..2c15a1183b 100644 --- a/wiki/translations/ru/Sketcher_ConstrainDistanceY.md +++ b/wiki/translations/ru/Sketcher_ConstrainDistanceY.md @@ -8,6 +8,8 @@ SeeAlso:[Ограничение расстояния по горизонтали](Sketcher_ConstrainDistanceX/ru.md), [Ограничить расстояние](Sketcher_ConstrainDistance/ru.md) --- +# Sketcher ConstrainDistanceY/ru + ## Описание Fixes the vertical distance between 2 points or line ends. If only one point is selected, the distance is set to the sketch origin. @@ -50,4 +52,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceY/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainEqual.md b/wiki/translations/ru/Sketcher_ConstrainEqual.md index 6ddc671239..2c3617a719 100644 --- a/wiki/translations/ru/Sketcher_ConstrainEqual.md +++ b/wiki/translations/ru/Sketcher_ConstrainEqual.md @@ -8,6 +8,8 @@ SeeAlso:[Ограничить радиус или вес](Sketcher_ConstrainRadius/ru.md) --- +# Sketcher ConstrainEqual/ru + ## Описание Ограничение эквивалентности делает равным длину указанных отрезков в линии, ломаной или прямоугольнике. При применении к дугам или окружностям их радиусы становятся равными. Данное ограничение нельзя применять к геометрическим примитивам, которые не относятся к одному и тому же типу (например, нельзя применить к отрезку и дуге). @@ -63,4 +65,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainEqual/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainHorizontal.md b/wiki/translations/ru/Sketcher_ConstrainHorizontal.md index 58ffaeda6a..70b235ef6c 100644 --- a/wiki/translations/ru/Sketcher_ConstrainHorizontal.md +++ b/wiki/translations/ru/Sketcher_ConstrainHorizontal.md @@ -8,6 +8,8 @@ SeeAlso:[Ограничение вертикальности](Sketcher_ConstrainVertical/ru.md) --- +# Sketcher ConstrainHorizontal/ru + ## Описание Горизонтальное ограничение заставляет выбранную линию или линии в эскизе быть параллельными горизонтальной оси эскиза. @@ -48,4 +50,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainHorizontal/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainInternalAlignment.md b/wiki/translations/ru/Sketcher_ConstrainInternalAlignment.md index 5aa51c14c6..d36b71b111 100644 --- a/wiki/translations/ru/Sketcher_ConstrainInternalAlignment.md +++ b/wiki/translations/ru/Sketcher_ConstrainInternalAlignment.md @@ -9,6 +9,8 @@ SeeAlso:[Sketcher Show/Hide Internal Geometry](Sketcher_RestoreInternalAlignmentGeometry.md), [Создать эллипс от центра](Sketcher_CreateEllipseByCenter/ru.md) --- +# Sketcher ConstrainInternalAlignment/ru + ## Описание The InternalAlignment constraint aligns lines and points to particular places of a complex sketcher element (there is just one \"complex\" element so far, the [Ellipse](Sketcher_CreateEllipseByCenter.md)). @@ -58,4 +60,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainInternalAlignment/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainLock.md b/wiki/translations/ru/Sketcher_ConstrainLock.md index 0ad3c1cfa1..969e0097ce 100644 --- a/wiki/translations/ru/Sketcher_ConstrainLock.md +++ b/wiki/translations/ru/Sketcher_ConstrainLock.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constrain Block](Sketcher_ConstrainBlock/ru.md) --- +# Sketcher ConstrainLock/ru + ## Описание **Constraint Lock** applies ** [Vertical distance](Sketcher_ConstrainDistanceY.md)** constraints to selected vertices (points) in the sketch. If a single vertex is selected, the horizontal and vertical distance constraints will refer to the sketch origin point. If two or more points are selected, horizontal and vertical distance constraints will be added for each pair of points. There is no automatic prompt to edit the constraints\' values, they must be edited manually. @@ -29,4 +31,7 @@ The [Loc {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainLock/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainParallel.md b/wiki/translations/ru/Sketcher_ConstrainParallel.md index 52ebd00c57..d27c676796 100644 --- a/wiki/translations/ru/Sketcher_ConstrainParallel.md +++ b/wiki/translations/ru/Sketcher_ConstrainParallel.md @@ -8,6 +8,8 @@ SeeAlso:[Ограничение вертикальности](Sketcher_ConstrainVertical/ru.md), [Ограничение горизонтальности](Sketcher_ConstrainHorizontal/ru.md) --- +# Sketcher ConstrainParallel/ru + ## Описание The Constrain Parallel constraint forces two selected straight lines or edges to be parallel to each other. @@ -47,4 +49,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainParallel/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainPerpendicular.md b/wiki/translations/ru/Sketcher_ConstrainPerpendicular.md index 7a68b78d1e..f2e564fa17 100644 --- a/wiki/translations/ru/Sketcher_ConstrainPerpendicular.md +++ b/wiki/translations/ru/Sketcher_ConstrainPerpendicular.md @@ -8,6 +8,8 @@ SeeAlso:[Ограничить угол](Sketcher_ConstrainAngle/ru.md) --- +# Sketcher ConstrainPerpendicular/ru + ## Описание The Perpendicular Constraint makes two lines to be perpendicular (i.e. orthogonal) to each other, or two curves to be perpendicular at their intersection. Lines are treated infinite, and arcs are treated as full circles/ellipses. The constraint is also capable of connecting two curves, forcing them perpendicular at the joint, similarly to ** [Constraint tangent](Sketcher_ConstrainTangent.md)**. @@ -112,4 +114,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPerpendicular/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainPointOnObject.md b/wiki/translations/ru/Sketcher_ConstrainPointOnObject.md index 6382e0258c..368d92cf95 100644 --- a/wiki/translations/ru/Sketcher_ConstrainPointOnObject.md +++ b/wiki/translations/ru/Sketcher_ConstrainPointOnObject.md @@ -8,6 +8,8 @@ SeeAlso:[Ограничение пересечения](Sketcher_ConstrainCoincident/ru.md) --- +# Sketcher ConstrainPointOnObject/ru + ## Описание Прикрепляет точку к таким объектам как: линия, дуга или ось эскиза. @@ -45,4 +47,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPointOnObject/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainRadiam.md b/wiki/translations/ru/Sketcher_ConstrainRadiam.md index bb1f06199d..ada9365d7d 100644 --- a/wiki/translations/ru/Sketcher_ConstrainRadiam.md +++ b/wiki/translations/ru/Sketcher_ConstrainRadiam.md @@ -8,6 +8,8 @@ Version:0.20 --- +# Sketcher ConstrainRadiam/ru + ## Описание This constraint automatically constrains the value of the radius/diameter of a circle or arc to have a specific value. Following rules are applied : @@ -48,4 +50,7 @@ No specific scripting applies. See the [Sketcher scripting](Sketcher_scripting.m {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadiam/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainRadius.md b/wiki/translations/ru/Sketcher_ConstrainRadius.md index 6c38685b3b..fc234e3b43 100644 --- a/wiki/translations/ru/Sketcher_ConstrainRadius.md +++ b/wiki/translations/ru/Sketcher_ConstrainRadius.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Constrain distance](Sketcher_ConstrainDistance/ru.md), [Sketcher Constrain horizontal distance](Sketcher_ConstrainDistanceX/ru.md), [Sketcher Constrain vertical distance](Sketcher_ConstrainDistanceY/ru.md) --- +# Sketcher ConstrainRadius/ru + ## Описание This constraint constrains the value of the radius of a circle or arc to have a specific value. If more than one circle or arc is selected before launching the command : @@ -46,4 +48,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadius/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainSnellsLaw.md b/wiki/translations/ru/Sketcher_ConstrainSnellsLaw.md index da31e38065..1538b0ad42 100644 --- a/wiki/translations/ru/Sketcher_ConstrainSnellsLaw.md +++ b/wiki/translations/ru/Sketcher_ConstrainSnellsLaw.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/ru.md), [PartDesign](PartDesign_Workbench/ru.md) --- +# Sketcher ConstrainSnellsLaw/ru + @@ -98,4 +100,7 @@ App.ActiveDocument.recompute() {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSnellsLaw/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainSymmetric.md b/wiki/translations/ru/Sketcher_ConstrainSymmetric.md index 7558f4032e..88534c659f 100644 --- a/wiki/translations/ru/Sketcher_ConstrainSymmetric.md +++ b/wiki/translations/ru/Sketcher_ConstrainSymmetric.md @@ -8,6 +8,8 @@ SeeAlso:[Ограничение параллельности](Sketcher_ConstrainParallel/ru.md) --- +# Sketcher ConstrainSymmetric/ru + ## Описание **Ограничение симметричности** требует от двух выделенных точек быть симметричными относительно данной линии, то есть от обеих точек требуется лежать на нормали к линии через обе точки на одинаковом расстоянии от линии. Альтернативно, она может наложить ограничение на две точки быть симметричными относительно третьей. @@ -67,4 +69,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSymmetric/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainTangent.md b/wiki/translations/ru/Sketcher_ConstrainTangent.md index ad9704de6b..37a615d782 100644 --- a/wiki/translations/ru/Sketcher_ConstrainTangent.md +++ b/wiki/translations/ru/Sketcher_ConstrainTangent.md @@ -8,6 +8,8 @@ SeeAlso:[Зафиксировать точку на объекте](Sketcher_ConstrainPointOnObject/ru.md) --- +# Sketcher ConstrainTangent/ru + ## Описание Ограничение касательности делает две кривые касающимися друг друга. Линии полагаются бесконечными, а дуги как полные окружности или эллипсы. Ограничение так же может соединять две кривые, заставляя их идти по касательной в точке соединения, делая переход гладким. @@ -129,4 +131,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainTangent/ru diff --git a/wiki/translations/ru/Sketcher_ConstrainVertical.md b/wiki/translations/ru/Sketcher_ConstrainVertical.md index 337539129a..cd9a73ef9a 100644 --- a/wiki/translations/ru/Sketcher_ConstrainVertical.md +++ b/wiki/translations/ru/Sketcher_ConstrainVertical.md @@ -8,6 +8,8 @@ SeeAlso:[Ограничить горизонтально](Sketcher_ConstrainHorizontal/ru.md) --- +# Sketcher ConstrainVertical/ru + ## Описание Накладывает ограничение вертикальности на выделенные линии или элементы полилинии. В (v0.17) , оно так же накладывает ограничение вертикальности на вершины. Может быть выделено несколько объектов. @@ -35,4 +37,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainVertical/ru diff --git a/wiki/translations/ru/Sketcher_Copy.md b/wiki/translations/ru/Sketcher_Copy.md index 7c8eaa0aec..399df1347a 100644 --- a/wiki/translations/ru/Sketcher_Copy.md +++ b/wiki/translations/ru/Sketcher_Copy.md @@ -8,6 +8,8 @@ SeeAlso:[Клонировать](Sketcher_Clone/ru.md), [Переместить](Sketcher_Move/ru.md) --- +# Sketcher Copy/ru + ## Описание Copies the selected sketch elements from one point to another, using the last selected point as reference. When a copy is made, there is no link established between the copy and the original, see ** [Sketcher Clone](Sketcher_Clone.md)**. @@ -26,4 +28,7 @@ No extra constraints are added. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Copy/ru diff --git a/wiki/translations/ru/Sketcher_Create3PointArc.md b/wiki/translations/ru/Sketcher_Create3PointArc.md index a308404201..512f2eb8ed 100644 --- a/wiki/translations/ru/Sketcher_Create3PointArc.md +++ b/wiki/translations/ru/Sketcher_Create3PointArc.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Sketcher Create3PointArc/ru + ## Описание Этот инструмент рисует дугу по трем точкам: начальной точке, конечной точке и точке на окружности. @@ -25,4 +27,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Create3PointArc/ru diff --git a/wiki/translations/ru/Sketcher_Create3PointCircle.md b/wiki/translations/ru/Sketcher_Create3PointCircle.md index b3d523f02c..d3ca1edd48 100644 --- a/wiki/translations/ru/Sketcher_Create3PointCircle.md +++ b/wiki/translations/ru/Sketcher_Create3PointCircle.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Sketcher Create3PointCircle/ru + ## Описание Этот инструмент рисует круг, указывая три точки по контуру круга. При запуске инструмента указатель мыши меняется на белый крест с красным кружком. Кроме того, координаты отображаются в режиме реального времени. @@ -23,4 +25,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Create3PointCircle/ru diff --git a/wiki/translations/ru/Sketcher_CreateArc.md b/wiki/translations/ru/Sketcher_CreateArc.md index 71a13b7918..08951eace1 100644 --- a/wiki/translations/ru/Sketcher_CreateArc.md +++ b/wiki/translations/ru/Sketcher_CreateArc.md @@ -7,6 +7,8 @@ SeeAlso:[Создать окружность](Sketcher_CompCreateCircle/ru.md) --- +# Sketcher CreateArc/ru + ## Описание Этот инструмент рисует дугу, по трем точкам: центральной, и углу между точками радиуса. @@ -26,4 +28,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateArc/ru diff --git a/wiki/translations/ru/Sketcher_CreateArcOfEllipse.md b/wiki/translations/ru/Sketcher_CreateArcOfEllipse.md index 20c81c5701..66015bacd7 100644 --- a/wiki/translations/ru/Sketcher_CreateArcOfEllipse.md +++ b/wiki/translations/ru/Sketcher_CreateArcOfEllipse.md @@ -8,6 +8,8 @@ SeeAlso:[Создать эллипс от центра](Sketcher_CreateEllipseByCenter/ru.md), [Создать дугу от центра](Sketcher_CompCreateArc/ru.md) --- +# Sketcher CreateArcOfEllipse/ru + ## Описание Этот инструмент рисует дугу по эллипсу, по четырем указанным точкам: центральной, большому радиусу, начальной и конечной точкам. При запуске инструмента указатель мыши меняется на белый крест с красным значком дуги по эллипсу. Кроме того, координаты отображаются в режиме реального времени. @@ -40,4 +42,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateArcOfEllipse/ru diff --git a/wiki/translations/ru/Sketcher_CreateArcOfHyperbola.md b/wiki/translations/ru/Sketcher_CreateArcOfHyperbola.md index 987f5f958b..20e254e240 100644 --- a/wiki/translations/ru/Sketcher_CreateArcOfHyperbola.md +++ b/wiki/translations/ru/Sketcher_CreateArcOfHyperbola.md @@ -8,6 +8,8 @@ SeeAlso:[Создать дугу эллипса](Sketcher_CreateArcOfEllipse/ru.md), [Создать дугу параболы](Sketcher_CreateArcOfParabola/ru.md) --- +# Sketcher CreateArcOfHyperbola/ru + ## Описание Этот инструмент рисует дугу по гиперболе используя центр, большой радиус и конечные точки. @@ -34,4 +36,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateArcOfHyperbola/ru diff --git a/wiki/translations/ru/Sketcher_CreateArcOfParabola.md b/wiki/translations/ru/Sketcher_CreateArcOfParabola.md index 80ad62e5c7..f2419aec48 100644 --- a/wiki/translations/ru/Sketcher_CreateArcOfParabola.md +++ b/wiki/translations/ru/Sketcher_CreateArcOfParabola.md @@ -8,6 +8,8 @@ SeeAlso:[Создать дугу эллипса](Sketcher_CreateArcOfEllipse/ru.md), [Создать дугу гиперболы](Sketcher_CreateArcOfHyperbola/ru.md) --- +# Sketcher CreateArcOfParabola/ru + ## Описание Этот инструмент рисует дугу по параболе с помощью фокуса, вершины и конечных точек. @@ -28,4 +30,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateArcOfParabola/ru diff --git a/wiki/translations/ru/Sketcher_CreateBSpline.md b/wiki/translations/ru/Sketcher_CreateBSpline.md index 49ec1a91db..2bb1f6098c 100644 --- a/wiki/translations/ru/Sketcher_CreateBSpline.md +++ b/wiki/translations/ru/Sketcher_CreateBSpline.md @@ -8,6 +8,8 @@ SeeAlso:[Создать периодический B-сплайн](Sketcher_CreatePeriodicBSpline/ru.md) --- +# Sketcher CreateBSpline/ru + ## Описание @@ -57,4 +59,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateBSpline/ru diff --git a/wiki/translations/ru/Sketcher_CreateCircle.md b/wiki/translations/ru/Sketcher_CreateCircle.md index 0cc152889d..0a447a3597 100644 --- a/wiki/translations/ru/Sketcher_CreateCircle.md +++ b/wiki/translations/ru/Sketcher_CreateCircle.md @@ -7,6 +7,8 @@ SeeAlso:[Создать дугу от центра](Sketcher_CompCreateArc/ru.md) --- +# Sketcher CreateCircle/ru + ## Описание Этот инструмент рисует круг, указывая две точки: центр и точку радиуса. При запуске инструмента указатель мыши меняется на белый крест с красным кружком. Кроме того, координаты отображаются в режиме реального времени. @@ -24,4 +26,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateCircle/ru diff --git a/wiki/translations/ru/Sketcher_CreateEllipseBy3Points.md b/wiki/translations/ru/Sketcher_CreateEllipseBy3Points.md index d2597a99cf..43b8d792eb 100644 --- a/wiki/translations/ru/Sketcher_CreateEllipseBy3Points.md +++ b/wiki/translations/ru/Sketcher_CreateEllipseBy3Points.md @@ -8,6 +8,8 @@ SeeAlso:[Создать эллипс от центра](Sketcher_CreateEllipseByCenter/ru.md), [Создать окружность](Sketcher_CreateCircle/ru.md), [Создать дугу эллипса](Sketcher_CreateArcOfEllipse/ru.md) --- +# Sketcher CreateEllipseBy3Points/ru + ## Описание Этот инструмент рисует эллипс, по трем указанным точкам : (1) периапсис (первое пересечение более длинного диаметра с эллипсом), (2) апоапсис (второе пересечение более длинного диаметра с эллипсом), (3) одна точка на стороне большего диаметра (a) определяющая малый радиус (b). (c) является результирующим центром и (f) точкой фокуса. @@ -39,4 +41,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateEllipseBy3Points/ru diff --git a/wiki/translations/ru/Sketcher_CreateEllipseByCenter.md b/wiki/translations/ru/Sketcher_CreateEllipseByCenter.md index ac9dddc663..008fa9ad55 100644 --- a/wiki/translations/ru/Sketcher_CreateEllipseByCenter.md +++ b/wiki/translations/ru/Sketcher_CreateEllipseByCenter.md @@ -8,6 +8,8 @@ SeeAlso:[Создать эллипс по трём точкам](Sketcher_CreateEllipseBy3Points/ru.md), [Создать окружность](Sketcher_CreateCircle/ru.md), [Создать дугу эллипса](Sketcher_CreateArcOfEllipse/ru.md) --- +# Sketcher CreateEllipseByCenter/ru + ## Описание Этот инструмент рисует эллипс, по трем указанным точкам: центральной, большому радиусу, малому радиусу. При запуске инструмента указатель мыши меняется на белый крест с красным значком эллипса. Кроме того, координаты отображаются в режиме реального времени. @@ -36,4 +38,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateEllipseByCenter/ru diff --git a/wiki/translations/ru/Sketcher_CreateFillet.md b/wiki/translations/ru/Sketcher_CreateFillet.md index 47c19b695e..b46b9cddd4 100644 --- a/wiki/translations/ru/Sketcher_CreateFillet.md +++ b/wiki/translations/ru/Sketcher_CreateFillet.md @@ -7,6 +7,8 @@ Shortcut:F --- +# Sketcher CreateFillet/ru + ## Описание Этот инструмент создает скругление между двумя линиями, соединенными в одной точке. Активируйте инструмент, затем выберите обе линии или нажмите на угловую точку. @@ -38,4 +40,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateFillet/ru diff --git a/wiki/translations/ru/Sketcher_CreateHeptagon.md b/wiki/translations/ru/Sketcher_CreateHeptagon.md index 182773f1f8..be04c2f221 100644 --- a/wiki/translations/ru/Sketcher_CreateHeptagon.md +++ b/wiki/translations/ru/Sketcher_CreateHeptagon.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher CreateHeptagon/ru + ## Описание Рисует семиугольник, вписанный в круг вспомогательной геометрии. При запуске инструмента указатель мыши меняется на белый крест с красным значком шестиугольника. Координаты указателя отображаются рядом с ним синим цветом в режиме реального времени. @@ -34,4 +36,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateHeptagon/ru diff --git a/wiki/translations/ru/Sketcher_CreateHexagon.md b/wiki/translations/ru/Sketcher_CreateHexagon.md index b692176919..164b83e23d 100644 --- a/wiki/translations/ru/Sketcher_CreateHexagon.md +++ b/wiki/translations/ru/Sketcher_CreateHexagon.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher CreateHexagon/ru + ## Описание Рисует шестиугольник, вписанный в круг вспомогательной геометрии. При запуске инструмента указатель мыши меняется на белый крест с красным значком шестиугольника. Координаты указателя отображаются рядом с ним синим цветом в режиме реального времени. @@ -34,4 +36,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateHexagon/ru diff --git a/wiki/translations/ru/Sketcher_CreateLine.md b/wiki/translations/ru/Sketcher_CreateLine.md index 39e22923b5..ee923afcac 100644 --- a/wiki/translations/ru/Sketcher_CreateLine.md +++ b/wiki/translations/ru/Sketcher_CreateLine.md @@ -8,6 +8,8 @@ SeeAlso:[Создать полилинию](Sketcher_CreatePolyline/ru.md) --- +# Sketcher CreateLine/ru + ## Описание Этот инструмент рисует линию, в качестве основы выбирая две точки в 3D-виде. При запуске инструмента указатель мыши меняется на белый крест с иконкой красной линии. Кроме того, координаты отображаются в режиме реального времени. @@ -33,4 +35,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateLine/ru diff --git a/wiki/translations/ru/Sketcher_CreateOblong.md b/wiki/translations/ru/Sketcher_CreateOblong.md index 3e51f2a82f..580a8a4ac5 100644 --- a/wiki/translations/ru/Sketcher_CreateOblong.md +++ b/wiki/translations/ru/Sketcher_CreateOblong.md @@ -8,6 +8,8 @@ SeeAlso:[Создать прямоугольник](Sketcher_CreateRectangle/ru.md) --- +# Sketcher CreateOblong/ru + ## Описание This tool draws a rounded rectangle by picking two opposite points. When starting the tool, the mouse pointer changes to a white cross with a red rounded rectangle icon. The coordinates of the pointer are shown beside it in blue in real time. @@ -25,4 +27,7 @@ This tool draws a rounded rectangle by picking two opposite points. When startin {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateOblong/ru diff --git a/wiki/translations/ru/Sketcher_CreateOctagon.md b/wiki/translations/ru/Sketcher_CreateOctagon.md index 12d0b06267..161b974471 100644 --- a/wiki/translations/ru/Sketcher_CreateOctagon.md +++ b/wiki/translations/ru/Sketcher_CreateOctagon.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher CreateOctagon/ru + ## Описание Рисует восьмиугольник, вписанный в круг вспомогательной геометрии. При запуске инструмента указатель мыши меняется на белый крест с красным значком шестиугольника. Координаты указателя отображаются рядом с ним синим цветом в режиме реального времени. @@ -34,4 +36,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateOctagon/ru diff --git a/wiki/translations/ru/Sketcher_CreatePentagon.md b/wiki/translations/ru/Sketcher_CreatePentagon.md index dbf232b9a3..f500ca8b0a 100644 --- a/wiki/translations/ru/Sketcher_CreatePentagon.md +++ b/wiki/translations/ru/Sketcher_CreatePentagon.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher CreatePentagon/ru + ## Описание Рисует пятиугольник, вписанный в круг вспомогательной геометрии. При запуске инструмента указатель мыши меняется на белый крест с красным значком шестиугольника. Координаты указателя отображаются рядом с ним синим цветом в режиме реального времени. @@ -28,4 +30,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreatePentagon/ru diff --git a/wiki/translations/ru/Sketcher_CreatePeriodicBSpline.md b/wiki/translations/ru/Sketcher_CreatePeriodicBSpline.md index 72dbf66c76..ea22d21012 100644 --- a/wiki/translations/ru/Sketcher_CreatePeriodicBSpline.md +++ b/wiki/translations/ru/Sketcher_CreatePeriodicBSpline.md @@ -8,6 +8,8 @@ SeeAlso:[Создать B-сплайн](Sketcher_CreateBSpline/ru.md) --- +# Sketcher CreatePeriodicBSpline/ru + ## Описание @@ -51,4 +53,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreatePeriodicBSpline/ru diff --git a/wiki/translations/ru/Sketcher_CreatePoint.md b/wiki/translations/ru/Sketcher_CreatePoint.md index c55c50171b..c07e213354 100644 --- a/wiki/translations/ru/Sketcher_CreatePoint.md +++ b/wiki/translations/ru/Sketcher_CreatePoint.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/ru.md) --- +# Sketcher CreatePoint/ru + ## Описание Инструмент Точка создает точку в текущем эскизе, которую можно использовать для построения геометрических элементов. Точка всегда является элементом конструкции и не отображается в 3D-виде. @@ -32,4 +34,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreatePoint/ru diff --git a/wiki/translations/ru/Sketcher_CreatePolyline.md b/wiki/translations/ru/Sketcher_CreatePolyline.md index af6026126d..f7fa3a72b1 100644 --- a/wiki/translations/ru/Sketcher_CreatePolyline.md +++ b/wiki/translations/ru/Sketcher_CreatePolyline.md @@ -7,6 +7,8 @@ SeeAlso:[Создать линию](Sketcher_CreateLine/ru.md) --- +# Sketcher CreatePolyline/ru + ## Описание Этот инструмент работает как инструмент [Линия](Sketcher_CreateLine.md), но создает непрерывные отрезки линии и дуги, соединенные их вершинами. При запуске инструмента указатель мыши меняется на белый крест с красным значком ломаной линии. Координаты указателя отображаются рядом с ним синим цветом в режиме реального времени. @@ -49,4 +51,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreatePolyline/ru diff --git a/wiki/translations/ru/Sketcher_CreateRectangle.md b/wiki/translations/ru/Sketcher_CreateRectangle.md index 4414fcaf02..efd2b8d93b 100644 --- a/wiki/translations/ru/Sketcher_CreateRectangle.md +++ b/wiki/translations/ru/Sketcher_CreateRectangle.md @@ -8,6 +8,8 @@ SeeAlso:[Создать скругленный прямоугольник](Sketcher_CreateOblong/ru.md), [Создать полилинию](Sketcher_CreatePolyline/ru.md) --- +# Sketcher CreateRectangle/ru + ## Описание @@ -39,4 +41,7 @@ To define a rectangle via a center point and an edge point, use the [Centered re {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateRectangle/ru diff --git a/wiki/translations/ru/Sketcher_CreateRectangle_Center.md b/wiki/translations/ru/Sketcher_CreateRectangle_Center.md index 246e9b47bb..c2b2b0f41b 100644 --- a/wiki/translations/ru/Sketcher_CreateRectangle_Center.md +++ b/wiki/translations/ru/Sketcher_CreateRectangle_Center.md @@ -8,6 +8,8 @@ SeeAlso:[Создать прямоугольник](Sketcher_CreateRectangle/ru.md) --- +# Sketcher CreateRectangle Center/ru + ## Описание This tool draws a rectangle by first picking a point that will become the center point, then by picking an edge point. The result is a rectangle like with the [Rectangle](Sketcher_CreateRectangle.md) tool, only the definition points are different. @@ -27,4 +29,7 @@ When starting the tool, the mouse pointer changes to a white cross with a red re {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateRectangle Center/ru diff --git a/wiki/translations/ru/Sketcher_CreateRegularPolygon.md b/wiki/translations/ru/Sketcher_CreateRegularPolygon.md index 765ad8f39d..a4226b9a3f 100644 --- a/wiki/translations/ru/Sketcher_CreateRegularPolygon.md +++ b/wiki/translations/ru/Sketcher_CreateRegularPolygon.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/ru.md) --- +# Sketcher CreateRegularPolygon/ru + ## Описание Рисует правильный многоугольник, вписанный в круг вспомогательной геометрии. При запуске инструмента появляется окно, запрашивающее количество сторон правильного многоугольника. После нажатия кнопки **OK** указатель мыши меняется на белый крест с красным значком шестиугольника.Координаты указателя отображаются рядом с ним синим цветом в режиме реального времени. @@ -32,4 +34,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateRegularPolygon/ru diff --git a/wiki/translations/ru/Sketcher_CreateSlot.md b/wiki/translations/ru/Sketcher_CreateSlot.md index 6617a92f6d..16b7516ec3 100644 --- a/wiki/translations/ru/Sketcher_CreateSlot.md +++ b/wiki/translations/ru/Sketcher_CreateSlot.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/ru.md) --- +# Sketcher CreateSlot/ru + ## Описание Рисует паз, по двум указанным центрам полуокружностей. (В более старых версиях FreeCAD, по центр полукруга и конечной точке другого полукруга.) @@ -25,4 +27,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateSlot/ru diff --git a/wiki/translations/ru/Sketcher_CreateSquare.md b/wiki/translations/ru/Sketcher_CreateSquare.md index 268d0b70c6..1efd663f25 100644 --- a/wiki/translations/ru/Sketcher_CreateSquare.md +++ b/wiki/translations/ru/Sketcher_CreateSquare.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher CreateSquare/ru + ## Описание Рисует квадрат, вписанный в круг вспомогательной геометрии. При запуске инструмента указатель мыши меняется на белый крест с красным значком шестиугольника. Координаты указателя отображаются рядом с ним синим цветом в режиме реального времени. @@ -28,4 +30,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateSquare/ru diff --git a/wiki/translations/ru/Sketcher_CreateTriangle.md b/wiki/translations/ru/Sketcher_CreateTriangle.md index fdbc7b33b8..248cfab611 100644 --- a/wiki/translations/ru/Sketcher_CreateTriangle.md +++ b/wiki/translations/ru/Sketcher_CreateTriangle.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher CreateTriangle/ru + ## Описание Рисует равносторонний треугольник, вписанный в круг вспомогательной геометрии. При запуске инструмента указатель мыши меняется на белый крест с красным значком шестиугольника. Координаты указателя отображаются рядом с ним синим цветом в режиме реального времени. @@ -30,4 +32,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateTriangle/ru diff --git a/wiki/translations/ru/Sketcher_DeleteAllConstraints.md b/wiki/translations/ru/Sketcher_DeleteAllConstraints.md index 1f18ef5bf4..01da961aa1 100644 --- a/wiki/translations/ru/Sketcher_DeleteAllConstraints.md +++ b/wiki/translations/ru/Sketcher_DeleteAllConstraints.md @@ -8,6 +8,8 @@ SeeAlso:[Удалить всю геометрию](Sketcher_DeleteAllGeometry/ru.md) --- +# Sketcher DeleteAllConstraints/ru + @@ -26,4 +28,7 @@ This tool deletes all constraints from the sketch being edited, and leaves the g {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher DeleteAllConstraints/ru diff --git a/wiki/translations/ru/Sketcher_DeleteAllGeometry.md b/wiki/translations/ru/Sketcher_DeleteAllGeometry.md index a7d2a80161..3d124b6546 100644 --- a/wiki/translations/ru/Sketcher_DeleteAllGeometry.md +++ b/wiki/translations/ru/Sketcher_DeleteAllGeometry.md @@ -8,6 +8,8 @@ SeeAlso:[Удалить все ограничения](Sketcher_DeleteAllConstraints/ru.md) --- +# Sketcher DeleteAllGeometry/ru + @@ -26,4 +28,7 @@ This tool deletes all geometry from the sketch being edited. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher DeleteAllGeometry/ru diff --git a/wiki/translations/ru/Sketcher_Dialog.md b/wiki/translations/ru/Sketcher_Dialog.md index ca63fcebfa..09918f136a 100644 --- a/wiki/translations/ru/Sketcher_Dialog.md +++ b/wiki/translations/ru/Sketcher_Dialog.md @@ -1,10 +1,4 @@ # Sketcher Dialog/ru - - - - - -
\_\_TOC\_\_ @@ -217,4 +211,7 @@ If you keep the **Ctrl** key pressed you can select several elements at once. If {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Dialog/ru diff --git a/wiki/translations/ru/Sketcher_EditSketch.md b/wiki/translations/ru/Sketcher_EditSketch.md index 4bd7a4fbed..d50ac537bc 100644 --- a/wiki/translations/ru/Sketcher_EditSketch.md +++ b/wiki/translations/ru/Sketcher_EditSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Покинуть эскиз](Sketcher_LeaveSketch/ru.md) --- +# Sketcher EditSketch/ru + ## Описание Эта команда позволяет редактировать существующий эскиз. Она открывает [Sketcher Dialog](Sketcher_Dialog/ru.md). @@ -30,4 +32,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher EditSketch/ru diff --git a/wiki/translations/ru/Sketcher_Extend.md b/wiki/translations/ru/Sketcher_Extend.md index c9e17aff63..0458d8966a 100644 --- a/wiki/translations/ru/Sketcher_Extend.md +++ b/wiki/translations/ru/Sketcher_Extend.md @@ -8,6 +8,8 @@ SeeAlso:[Обрезать](Sketcher_Trimming/ru.md) --- +# Sketcher Extend/ru + ## Описание Инструмент **Продлить** произвольно продлевает ребро на эскизе, или до другого ребра. @@ -39,4 +41,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Extend/ru diff --git a/wiki/translations/ru/Sketcher_External.md b/wiki/translations/ru/Sketcher_External.md index 75a16551cf..b8611a6f8b 100644 --- a/wiki/translations/ru/Sketcher_External.md +++ b/wiki/translations/ru/Sketcher_External.md @@ -8,6 +8,8 @@ SeeAlso:[Переключить построительную геометрию](Sketcher_ToggleConstruction/ru.md) --- +# Sketcher External/ru + ## Описание Используйте инструмент ** [Внешняя геометрия](Sketcher_External/ru.md)**, когда вам нужно применить ограничение между геометрией эскиза и чем-то вне эскиза. Это работает путем вставки связанной вспомогательной геометрии в эскиз. По умолчанию цвет связанной внешней геометрии пурпурный. Как и в случае стандартной несвязанной вспомогательной геометрии (синего цвета), связанная внешняя геометрия видна только тогда, когда эскиз находится в режиме редактирования, и напрямую не используется в последующих результатах использования эскиза другими инструментами. Оба типа вспомогательной геометрии могут использоваться в качестве ссылок для ограничений в эскизе. @@ -95,4 +97,7 @@ A note of caution, using this tool to link to generated (solid) geometry can lea {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher External/ru diff --git a/wiki/translations/ru/Sketcher_LeaveSketch.md b/wiki/translations/ru/Sketcher_LeaveSketch.md index c54a46aa1c..b92c8ee21c 100644 --- a/wiki/translations/ru/Sketcher_LeaveSketch.md +++ b/wiki/translations/ru/Sketcher_LeaveSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Редактировать эскиз](Sketcher_EditSketch/ru.md) --- +# Sketcher LeaveSketch/ru + ## Описание Команда **Покинуть эскиз** выводит из режима редактирования эскиза и очищает вкладку [Задачи](Task_panel/ru.md). @@ -23,4 +25,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher LeaveSketch/ru diff --git a/wiki/translations/ru/Sketcher_MapSketch.md b/wiki/translations/ru/Sketcher_MapSketch.md index 6a6dc37851..6a13b2e04d 100644 --- a/wiki/translations/ru/Sketcher_MapSketch.md +++ b/wiki/translations/ru/Sketcher_MapSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Создать эскиз](Sketcher_NewSketch/ru.md) --- +# Sketcher MapSketch/ru + ## Описание Этот инструмент размещает созданный эскиз на грани фигуры. Элементы PartDesign, созданные из этого эскиза, будут объединены с базовым телом при использовании добавочных операций (Выдавливание, Вращение) или вычтены из базового тела в случае вычитающих операций (Вырез, Паз). @@ -54,4 +56,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MapSketch/ru diff --git a/wiki/translations/ru/Sketcher_MergeSketches.md b/wiki/translations/ru/Sketcher_MergeSketches.md index c4ecb09a0f..d298e47892 100644 --- a/wiki/translations/ru/Sketcher_MergeSketches.md +++ b/wiki/translations/ru/Sketcher_MergeSketches.md @@ -7,6 +7,8 @@ Version:0.15 --- +# Sketcher MergeSketches/ru + ## Описание Объединить два или более эскизов в один. @@ -29,4 +31,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MergeSketches/ru diff --git a/wiki/translations/ru/Sketcher_Micro_Tutorial_-_Constraint_Practices.md b/wiki/translations/ru/Sketcher_Micro_Tutorial_-_Constraint_Practices.md index 9b8f7117b4..7e20d27296 100644 --- a/wiki/translations/ru/Sketcher_Micro_Tutorial_-_Constraint_Practices.md +++ b/wiki/translations/ru/Sketcher_Micro_Tutorial_-_Constraint_Practices.md @@ -1,7 +1,4 @@ # Sketcher Micro Tutorial - Constraint Practices/ru - - -
@@ -125,4 +122,7 @@ This is the best way to constrain this sketch, as we only used one datum (dimens {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Micro Tutorial - Constraint Practices/ru diff --git a/wiki/translations/ru/Sketcher_MirrorSketch.md b/wiki/translations/ru/Sketcher_MirrorSketch.md index 70cf191ae8..4139219398 100644 --- a/wiki/translations/ru/Sketcher_MirrorSketch.md +++ b/wiki/translations/ru/Sketcher_MirrorSketch.md @@ -7,6 +7,8 @@ Version:0.16 --- +# Sketcher MirrorSketch/ru + ## Описание Зеркально отразить эскиз вдоль оси x, оси y или начала координат. Эта команда вызывается, когда эскиз *не* редактируется. Это вызывает новый эскиз, содержащий отражённую геометрию. @@ -33,4 +35,7 @@ Notes: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MirrorSketch/ru diff --git a/wiki/translations/ru/Sketcher_Module.md b/wiki/translations/ru/Sketcher_Module.md index 30a0028eae..1a6885fb18 100644 --- a/wiki/translations/ru/Sketcher_Module.md +++ b/wiki/translations/ru/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/ru 1. REDIRECT [Sketcher Workbench/ru](Sketcher_Workbench/ru.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/ru diff --git a/wiki/translations/ru/Sketcher_Move.md b/wiki/translations/ru/Sketcher_Move.md index 105077f638..e24ba239ba 100644 --- a/wiki/translations/ru/Sketcher_Move.md +++ b/wiki/translations/ru/Sketcher_Move.md @@ -9,6 +9,8 @@ SeeAlso:[Клонировать](Sketcher_Clone/ru.md), [Копировать](Sketcher_Copy/ru.md) --- +# Sketcher Move/ru + ## Описание Moves the selected sketch elements from one point to another, using the last selected point as reference. @@ -31,4 +33,7 @@ Moves the selected sketch elements from one point to another, using the last sel {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Move/ru diff --git a/wiki/translations/ru/Sketcher_NewSketch.md b/wiki/translations/ru/Sketcher_NewSketch.md index 393f79a36b..6ec1359326 100644 --- a/wiki/translations/ru/Sketcher_NewSketch.md +++ b/wiki/translations/ru/Sketcher_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Создать эскиз](PartDesign_NewSketch/ru.md), [Разместить эскиз на грани...](Sketcher_MapSketch/ru.md), [Переориентировать эскиз...](Sketcher_ReorientSketch/ru.md) --- +# Sketcher NewSketch/ru + ## Описание Этот инструмент создает новый [эскиз](Sketcher_Workbench/ru.md). @@ -37,4 +39,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher NewSketch/ru diff --git a/wiki/translations/ru/Sketcher_Preferences.md b/wiki/translations/ru/Sketcher_Preferences.md index 04a99ecc59..0683e627cc 100644 --- a/wiki/translations/ru/Sketcher_Preferences.md +++ b/wiki/translations/ru/Sketcher_Preferences.md @@ -1,7 +1,4 @@ # Sketcher Preferences/ru - - - {{TOCright}} The preferences screen of the [Sketcher Workbench](Sketcher_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → Sketcher**. @@ -246,3 +243,6 @@ In the *Colors* tab you can specify the following: }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Preferences/ru diff --git a/wiki/translations/ru/Sketcher_RectangularArray.md b/wiki/translations/ru/Sketcher_RectangularArray.md index 283e818546..6d3c5e5fe4 100644 --- a/wiki/translations/ru/Sketcher_RectangularArray.md +++ b/wiki/translations/ru/Sketcher_RectangularArray.md @@ -7,6 +7,8 @@ Version:0.16 --- +# Sketcher RectangularArray/ru + ## Описание Creates an array of selected sketcher elements. @@ -29,4 +31,7 @@ Creates an array of selected sketcher elements. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RectangularArray/ru diff --git a/wiki/translations/ru/Sketcher_RemoveAxesAlignment.md b/wiki/translations/ru/Sketcher_RemoveAxesAlignment.md index 1b24399352..9cda5163a1 100644 --- a/wiki/translations/ru/Sketcher_RemoveAxesAlignment.md +++ b/wiki/translations/ru/Sketcher_RemoveAxesAlignment.md @@ -7,6 +7,8 @@ Version:0.20 --- +# Sketcher RemoveAxesAlignment/ru + ## Описание Данный инструмент удаляет выравнивание осей [горизонтальное](Sketcher_ConstrainHorizontal/ru.md) и [вертикальное](Sketcher_ConstrainVertical/ru.md) из выбранного элемента, при этом пытается по возможности сохранить ограничения перпендикулярности и эквивалентности ребер. @@ -30,4 +32,7 @@ As result the (horizontal, vertical constraints) will be removed. In the example {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RemoveAxesAlignment/ru diff --git a/wiki/translations/ru/Sketcher_ReorientSketch.md b/wiki/translations/ru/Sketcher_ReorientSketch.md index 5a560e30fc..d7aa574e3a 100644 --- a/wiki/translations/ru/Sketcher_ReorientSketch.md +++ b/wiki/translations/ru/Sketcher_ReorientSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Разместить эскиз на грани](Sketcher_MapSketch/ru.md), [Создать эскиз](Sketcher_NewSketch/ru.md) --- +# Sketcher ReorientSketch/ru + ## Описание Позволяет отделить эскиз от грани и прикрепить его к одной из основных плоскостей (со смещением). @@ -31,4 +33,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ReorientSketch/ru diff --git a/wiki/translations/ru/Sketcher_RestoreInternalAlignmentGeometry.md b/wiki/translations/ru/Sketcher_RestoreInternalAlignmentGeometry.md index 5436bc2aeb..accf72ec6e 100644 --- a/wiki/translations/ru/Sketcher_RestoreInternalAlignmentGeometry.md +++ b/wiki/translations/ru/Sketcher_RestoreInternalAlignmentGeometry.md @@ -8,6 +8,8 @@ SeeAlso:[Создать эллипс от центра](Sketcher_CreateEllipseByCenter/ru.md), [Привязать к внутренней геометрии](Sketcher_ConstrainInternalAlignment/ru.md) --- +# Sketcher RestoreInternalAlignmentGeometry/ru +
@@ -37,4 +39,7 @@ If there are free alignment places for the selected element, new construction ge {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher RestoreInternalAlignmentGeometry/ru diff --git a/wiki/translations/ru/Sketcher_SelectConflictingConstraints.md b/wiki/translations/ru/Sketcher_SelectConflictingConstraints.md index 0fee78a970..71ab7d97bf 100644 --- a/wiki/translations/ru/Sketcher_SelectConflictingConstraints.md +++ b/wiki/translations/ru/Sketcher_SelectConflictingConstraints.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectConflictingConstraints/ru +
@@ -27,4 +29,7 @@ Selects the conflicting constraints of a sketch. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConflictingConstraints/ru diff --git a/wiki/translations/ru/Sketcher_SelectConstraints.md b/wiki/translations/ru/Sketcher_SelectConstraints.md index 4c257b1e3b..1bbd12886c 100644 --- a/wiki/translations/ru/Sketcher_SelectConstraints.md +++ b/wiki/translations/ru/Sketcher_SelectConstraints.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectConstraints/ru + ## Описание Selects the constraints of a sketcher element. @@ -31,4 +33,7 @@ Selects the constraints of a sketcher element. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectConstraints/ru diff --git a/wiki/translations/ru/Sketcher_SelectElementsAssociatedWithConstraints.md b/wiki/translations/ru/Sketcher_SelectElementsAssociatedWithConstraints.md index 56c7bbdd59..7a423ee9ce 100644 --- a/wiki/translations/ru/Sketcher_SelectElementsAssociatedWithConstraints.md +++ b/wiki/translations/ru/Sketcher_SelectElementsAssociatedWithConstraints.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectElementsAssociatedWithConstraints/ru + @@ -27,4 +29,7 @@ Select sketcher Elements associated with constraints. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsAssociatedWithConstraints/ru diff --git a/wiki/translations/ru/Sketcher_SelectElementsWithDoFs.md b/wiki/translations/ru/Sketcher_SelectElementsWithDoFs.md index f7cb915574..90033cb82f 100644 --- a/wiki/translations/ru/Sketcher_SelectElementsWithDoFs.md +++ b/wiki/translations/ru/Sketcher_SelectElementsWithDoFs.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Sketcher SelectElementsWithDoFs/ru + ## Описание This tool is meant to aid in fully constraining a sketch by highlighting in green the sketch elements with remaining degrees of freedom (DoF). @@ -34,4 +36,7 @@ where \"X\" is the number of degrees of freedom remaining in the sketch; you wil {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectElementsWithDoFs/ru diff --git a/wiki/translations/ru/Sketcher_SelectHorizontalAxis.md b/wiki/translations/ru/Sketcher_SelectHorizontalAxis.md index 7e3f4b6d62..19da1bd2d6 100644 --- a/wiki/translations/ru/Sketcher_SelectHorizontalAxis.md +++ b/wiki/translations/ru/Sketcher_SelectHorizontalAxis.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectHorizontalAxis/ru + @@ -27,4 +29,7 @@ Selects the horizontal axis of a sketch. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectHorizontalAxis/ru diff --git a/wiki/translations/ru/Sketcher_SelectOrigin.md b/wiki/translations/ru/Sketcher_SelectOrigin.md index 1aeac77b51..00ed330814 100644 --- a/wiki/translations/ru/Sketcher_SelectOrigin.md +++ b/wiki/translations/ru/Sketcher_SelectOrigin.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectOrigin/ru + ## Описание Selects the origin of a sketch. @@ -24,4 +26,7 @@ Selects the origin of a sketch. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectOrigin/ru diff --git a/wiki/translations/ru/Sketcher_SelectRedundantConstraints.md b/wiki/translations/ru/Sketcher_SelectRedundantConstraints.md index 622e6c24f7..adde93127e 100644 --- a/wiki/translations/ru/Sketcher_SelectRedundantConstraints.md +++ b/wiki/translations/ru/Sketcher_SelectRedundantConstraints.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectRedundantConstraints/ru + @@ -27,4 +29,7 @@ Selects the redundant constraints of a sketch. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectRedundantConstraints/ru diff --git a/wiki/translations/ru/Sketcher_SelectVerticalAxis.md b/wiki/translations/ru/Sketcher_SelectVerticalAxis.md index 481b74ceee..8a1df00d48 100644 --- a/wiki/translations/ru/Sketcher_SelectVerticalAxis.md +++ b/wiki/translations/ru/Sketcher_SelectVerticalAxis.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Sketcher SelectVerticalAxis/ru + ## Описание Selects the vertical axis of a sketch. @@ -24,4 +26,7 @@ Selects the vertical axis of a sketch. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SelectVerticalAxis/ru diff --git a/wiki/translations/ru/Sketcher_Sketch.md b/wiki/translations/ru/Sketcher_Sketch.md index b14b883b23..57edc96567 100644 --- a/wiki/translations/ru/Sketcher_Sketch.md +++ b/wiki/translations/ru/Sketcher_Sketch.md @@ -1,6 +1,4 @@ # Sketcher Sketch/ru - - Здесь должно быть описание инструмента Sketch из [верстака Sketcher](Sketcher_Workbench/ru.md) и [верстака PartDesign](PartDesign_Workbench/ru.md). Всё пока в работе. Однако посмотрите: @@ -11,4 +9,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Sketch/ru diff --git a/wiki/translations/ru/Sketcher_SketchObject.md b/wiki/translations/ru/Sketcher_SketchObject.md index fd5e6ace6f..7d6a866f99 100644 --- a/wiki/translations/ru/Sketcher_SketchObject.md +++ b/wiki/translations/ru/Sketcher_SketchObject.md @@ -1,6 +1,4 @@ # Sketcher SketchObject/ru - - ## Введение @@ -138,4 +136,7 @@ obj.Label = "Custom label" {{Sketcher Tools navi -}} {{Document objects navi}} +}} {{Document objects navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SketchObject/ru diff --git a/wiki/translations/ru/Sketcher_Split.md b/wiki/translations/ru/Sketcher_Split.md index 53eb1486ef..67fc71360b 100644 --- a/wiki/translations/ru/Sketcher_Split.md +++ b/wiki/translations/ru/Sketcher_Split.md @@ -8,6 +8,8 @@ SeeAlso:[Обрезать кривую](Sketcher_Trimming/ru.md) --- +# Sketcher Split/ru + ## Описание Данный инструмент позволяет разделить ребро на две абсолютно одинаковые части, с сохранением большинства ограничений. Ограничения сохраняются для вновь созданных ребер, за исключением точки в которой произошло разделение. Окружность в случае её разделения, делится на дуги концы которых не связанны между собой, при этом ограничения которые имела окружность, переносятя на вновь созданные созданные дуги. @@ -45,4 +47,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Split/ru diff --git a/wiki/translations/ru/Sketcher_StopOperation.md b/wiki/translations/ru/Sketcher_StopOperation.md index 2b0a1a3b1e..d08e3d8cbd 100644 --- a/wiki/translations/ru/Sketcher_StopOperation.md +++ b/wiki/translations/ru/Sketcher_StopOperation.md @@ -6,6 +6,8 @@ MenuLocation:Sketch → Остановить операцию --- +# Sketcher StopOperation/ru + ## Описание @@ -25,4 +27,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher StopOperation/ru diff --git a/wiki/translations/ru/Sketcher_SwitchVirtualSpace.md b/wiki/translations/ru/Sketcher_SwitchVirtualSpace.md index 5b2c8cb69e..1011d0bd21 100644 --- a/wiki/translations/ru/Sketcher_SwitchVirtualSpace.md +++ b/wiki/translations/ru/Sketcher_SwitchVirtualSpace.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Sketcher SwitchVirtualSpace/ru + ## Описание The FreeCAD Sketcher has two virtual spaces on which constraints can be set. Usually all constraints gets set on virtual space one. You can move some constraints to virtual space two. This can help to inspect only on a few constraints at a time. @@ -34,4 +36,7 @@ if you decide to set constraints on the second virtual space, don\'t forget abou {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher SwitchVirtualSpace/ru diff --git a/wiki/translations/ru/Sketcher_Symmetry.md b/wiki/translations/ru/Sketcher_Symmetry.md index a51c75c11f..ad2a756051 100644 --- a/wiki/translations/ru/Sketcher_Symmetry.md +++ b/wiki/translations/ru/Sketcher_Symmetry.md @@ -8,6 +8,8 @@ SeeAlso:[Отразить эскиз зеркально](Sketcher_MirrorSketch/ru.md) --- +# Sketcher Symmetry/ru + ## Описание Mirrors sketcher geometry in reference to a chosen line or sketch axis. @@ -26,4 +28,7 @@ Note that no extra symmetry constraint will be added. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Symmetry/ru diff --git a/wiki/translations/ru/Sketcher_ToggleActiveConstraint.md b/wiki/translations/ru/Sketcher_ToggleActiveConstraint.md index cb13836381..a229c4f3af 100644 --- a/wiki/translations/ru/Sketcher_ToggleActiveConstraint.md +++ b/wiki/translations/ru/Sketcher_ToggleActiveConstraint.md @@ -7,6 +7,8 @@ Version:0.19 --- +# Sketcher ToggleActiveConstraint/ru + ## Описание @@ -61,4 +63,7 @@ sketch.toggleActive(3) {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleActiveConstraint/ru diff --git a/wiki/translations/ru/Sketcher_ToggleConstruction.md b/wiki/translations/ru/Sketcher_ToggleConstruction.md index 31cda0aa3b..fe8f78dd40 100644 --- a/wiki/translations/ru/Sketcher_ToggleConstruction.md +++ b/wiki/translations/ru/Sketcher_ToggleConstruction.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/ru.md) --- +# Sketcher ToggleConstruction/ru + ## Описание Этот инструмент переключает геометрию эскиза из/в вспомогательный режим. Может использоваться для любого типа геометрии: линии, дуги или круга. @@ -59,4 +61,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleConstruction/ru diff --git a/wiki/translations/ru/Sketcher_ToggleDrivingConstraint.md b/wiki/translations/ru/Sketcher_ToggleDrivingConstraint.md index d82ed4452f..9134e36caf 100644 --- a/wiki/translations/ru/Sketcher_ToggleDrivingConstraint.md +++ b/wiki/translations/ru/Sketcher_ToggleDrivingConstraint.md @@ -8,6 +8,8 @@ SeeAlso:[Переключить построительную геометрию](Sketcher_ToggleConstruction/ru.md) --- +# Sketcher ToggleDrivingConstraint/ru + ## Описание The ** [Toggle driving constraint](Sketcher_ToggleDrivingConstraint.md)** tool turns dimensional constraints (Lock, Horizontal/Vertical distance, Length, Radius and Angle) into reference mode, and back. The icons in the toolbar turn blue, and rather than dimensional constraints, reference dimensions are created. Reference dimensions do not constrain the sketch. It can be useful to create reference dimensions in a sketch as a way to check on measurements; when given a name, they can also be used to drive constraints in another sketch through [expressions](Expressions.md). @@ -29,4 +31,7 @@ The ** [ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleDrivingConstraint/ru diff --git a/wiki/translations/ru/Sketcher_Trimming.md b/wiki/translations/ru/Sketcher_Trimming.md index 207f02960b..a4ae465093 100644 --- a/wiki/translations/ru/Sketcher_Trimming.md +++ b/wiki/translations/ru/Sketcher_Trimming.md @@ -8,6 +8,8 @@ SeeAlso:[Sketcher Продлить](Sketcher_Extend/ru.md) --- +# Sketcher Trimming/ru + ## Описание Этот инструмент обрезает ребро до ближайшего пересечения с другим ребром. @@ -37,4 +39,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Trimming/ru diff --git a/wiki/translations/ru/Sketcher_ValidateSketch.md b/wiki/translations/ru/Sketcher_ValidateSketch.md index 9cffb52766..2a12ea4218 100644 --- a/wiki/translations/ru/Sketcher_ValidateSketch.md +++ b/wiki/translations/ru/Sketcher_ValidateSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Ограничить совпадение](Sketcher_ConstrainCoincident/ru.md), [Topological naming problem](Topological_naming_problem/ru.md) --- +# Sketcher ValidateSketch/ru + @@ -91,4 +93,7 @@ The locking mechanism typically works well and this tool should not be needed. * {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ValidateSketch/ru diff --git a/wiki/translations/ru/Sketcher_ViewSection.md b/wiki/translations/ru/Sketcher_ViewSection.md index 326cf56024..3629a63ff2 100644 --- a/wiki/translations/ru/Sketcher_ViewSection.md +++ b/wiki/translations/ru/Sketcher_ViewSection.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Sketcher ViewSection/ru + ## Описание Инструмент **Обзор сечения** создает плоскость сечения, которая временно скрывает любые материалы перед плоскостью эскиза. @@ -30,4 +32,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSection/ru diff --git a/wiki/translations/ru/Sketcher_ViewSketch.md b/wiki/translations/ru/Sketcher_ViewSketch.md index 23e04257e7..2c4a974e4e 100644 --- a/wiki/translations/ru/Sketcher_ViewSketch.md +++ b/wiki/translations/ru/Sketcher_ViewSketch.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/ru.md), [PartDesign](PartDesign_Workbench/ru.md) --- +# Sketcher ViewSketch/ru + ## Описание Этот инструмент устанавливает вид модели перпендикулярно плоскости эскиза. Это полезно, когда пользователь изменил ориентацию вида модели, чтобы изучить другой аспект модели, и хочет вернуться к нормальному виду эскиза. @@ -23,4 +25,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSketch/ru diff --git a/wiki/translations/ru/Sketcher_Workbench.md b/wiki/translations/ru/Sketcher_Workbench.md index 559c459a76..d74e526527 100644 --- a/wiki/translations/ru/Sketcher_Workbench.md +++ b/wiki/translations/ru/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/ru - - - - - -Логотип верстака Sketcher +# Логотип верстака Sketcher Sketcher Workbench/ru {{TOCright}} @@ -319,3 +313,6 @@ Sketcher не предназначен для создания 2D чертеже }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/ru diff --git a/wiki/translations/ru/Sketcher_helper_constraint.md b/wiki/translations/ru/Sketcher_helper_constraint.md index b942867f46..8d92f915d0 100644 --- a/wiki/translations/ru/Sketcher_helper_constraint.md +++ b/wiki/translations/ru/Sketcher_helper_constraint.md @@ -1,6 +1,4 @@ # Sketcher helper constraint/ru - - ## Overview Example of a helper constraint (Constraint5 - point on circle) for a tangent constraint (Constraint6; in tangent-via-point mode). Only one helper constraint is used in this case, since the point of tangency is the endpoint of ellipse\'s major diameter, which inherently lies on the ellipse. @@ -39,4 +37,7 @@ Helper constraints were introduced in v0.15.4387 {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher helper constraint/ru diff --git a/wiki/translations/ru/Sketcher_reference.md b/wiki/translations/ru/Sketcher_reference.md index 8ce207c5b8..22210864f4 100644 --- a/wiki/translations/ru/Sketcher_reference.md +++ b/wiki/translations/ru/Sketcher_reference.md @@ -1,6 +1,4 @@ # Sketcher reference/ru - - ## Введение User **chrisb** wrote a lengthy 70-page reference manual for the [Sketcher Workbench](Sketcher_Workbench.md) that covers many topics of using this workbench. For inexperienced users, it is a gentle introduction that covers the basic usage of the Sketcher, and then goes into many details of creating geometrical elements, and using each type of constraint. @@ -64,4 +62,7 @@ The general structure of the manual is: {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher reference/ru diff --git a/wiki/translations/ru/Sketcher_requirement_for_a_sketch.md b/wiki/translations/ru/Sketcher_requirement_for_a_sketch.md index 30098147e5..31b78d6ab8 100644 --- a/wiki/translations/ru/Sketcher_requirement_for_a_sketch.md +++ b/wiki/translations/ru/Sketcher_requirement_for_a_sketch.md @@ -1,7 +1,4 @@ # Sketcher requirement for a sketch/ru - - - {{TutorialInfo/ru |Topic=Sketch |Level=Beginner @@ -44,4 +41,7 @@ If you accidentally create an \"overmodulation\", a warning appears in the combo {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher requirement for a sketch/ru diff --git a/wiki/translations/ru/Sketcher_scripting.md b/wiki/translations/ru/Sketcher_scripting.md index 7bef9fa040..adee4f0898 100644 --- a/wiki/translations/ru/Sketcher_scripting.md +++ b/wiki/translations/ru/Sketcher_scripting.md @@ -1,5 +1,5 @@ # Sketcher scripting/ru - {{TOCright}} +{{TOCright}} ## Создание ограничений через Python @@ -200,4 +200,7 @@ The command `Sketch.addConstraint(Sketcher.Constraint('Coincident',0,2,2,2))` yi {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher scripting/ru diff --git a/wiki/translations/ru/Source_code_management.md b/wiki/translations/ru/Source_code_management.md index 94efe6c3ad..d14af3c95d 100644 --- a/wiki/translations/ru/Source_code_management.md +++ b/wiki/translations/ru/Source_code_management.md @@ -1,5 +1,5 @@ # Source code management/ru - {{TOCright}} +{{TOCright}} ## Введение @@ -964,3 +964,6 @@ Head to the development section of the [FreeCAD forum](https://forum.freecadweb. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source code management/ru diff --git a/wiki/translations/ru/Source_documentation.md b/wiki/translations/ru/Source_documentation.md index dd844c550b..d5ef3626a7 100644 --- a/wiki/translations/ru/Source_documentation.md +++ b/wiki/translations/ru/Source_documentation.md @@ -1,7 +1,4 @@ # Source documentation/ru - - -
@@ -149,3 +146,6 @@ void removeTaskWatcher(void); [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source documentation/ru diff --git a/wiki/translations/ru/Spinning.md b/wiki/translations/ru/Spinning.md index ffdfc51125..3279af9ec9 100644 --- a/wiki/translations/ru/Spinning.md +++ b/wiki/translations/ru/Spinning.md @@ -1,2 +1,5 @@ # Spinning/ru 1. REDIRECT [Std\_DemoMode/ru](Std_DemoMode/ru.md) + +--- +[documentation index](../README.md) > Spinning/ru diff --git a/wiki/translations/ru/Spreadsheet_AlignBottom.md b/wiki/translations/ru/Spreadsheet_AlignBottom.md index 2f2c505d8f..650344db28 100644 --- a/wiki/translations/ru/Spreadsheet_AlignBottom.md +++ b/wiki/translations/ru/Spreadsheet_AlignBottom.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignBottom/ru + ## Описание The ** [Spreadsheet AlignBottom](Spreadsheet_AlignBottom.md)** tool makes the text inside the cell align to the bottom of the cell. @@ -23,4 +25,7 @@ The ** [Spreadshe {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignBottom/ru diff --git a/wiki/translations/ru/Spreadsheet_AlignCenter.md b/wiki/translations/ru/Spreadsheet_AlignCenter.md index e8cac2f073..ecd1aff509 100644 --- a/wiki/translations/ru/Spreadsheet_AlignCenter.md +++ b/wiki/translations/ru/Spreadsheet_AlignCenter.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignCenter/ru + ## Описание The ** [Spreadsheet AlignCenter](Spreadsheet_AlignCenter.md)** tool makes the text inside the cell align to the center. @@ -23,4 +25,7 @@ The ** [Spreadshe {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignCenter/ru diff --git a/wiki/translations/ru/Spreadsheet_AlignLeft.md b/wiki/translations/ru/Spreadsheet_AlignLeft.md index 0fb610f22b..f32c868f94 100644 --- a/wiki/translations/ru/Spreadsheet_AlignLeft.md +++ b/wiki/translations/ru/Spreadsheet_AlignLeft.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignLeft/ru + ## Описание The ** [Spreadsheet AlignLeft](Spreadsheet_AlignLeft.md)** tool makes the text inside the cell align to the left. @@ -23,4 +25,7 @@ The ** [Spreadsheet {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignLeft/ru diff --git a/wiki/translations/ru/Spreadsheet_AlignRight.md b/wiki/translations/ru/Spreadsheet_AlignRight.md index 5d8266face..435ae84e38 100644 --- a/wiki/translations/ru/Spreadsheet_AlignRight.md +++ b/wiki/translations/ru/Spreadsheet_AlignRight.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignRight/ru + ## Описание The ** [Spreadsheet AlignRight](Spreadsheet_AlignRight.md)** tool makes the text inside the cell align to the right. @@ -23,4 +25,7 @@ The ** [Spreadshee {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignRight/ru diff --git a/wiki/translations/ru/Spreadsheet_AlignTop.md b/wiki/translations/ru/Spreadsheet_AlignTop.md index 2b806d0cfe..5b028212e6 100644 --- a/wiki/translations/ru/Spreadsheet_AlignTop.md +++ b/wiki/translations/ru/Spreadsheet_AlignTop.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignTop/ru + ## Описание The ** [Spreadsheet AlignTop](Spreadsheet_AlignTop.md)** tool makes the text inside the cell align to the top of the cell. @@ -23,4 +25,7 @@ The ** [Spreadsheet {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignTop/ru diff --git a/wiki/translations/ru/Spreadsheet_AlignVCenter.md b/wiki/translations/ru/Spreadsheet_AlignVCenter.md index 54acf194a2..9ae77d2487 100644 --- a/wiki/translations/ru/Spreadsheet_AlignVCenter.md +++ b/wiki/translations/ru/Spreadsheet_AlignVCenter.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet AlignVCenter/ru + ## Описание The ** [Spreadsheet AlignVCenter](Spreadsheet_AlignVCenter.md)** tool makes the text inside the cell align vertically to the center of the cell. @@ -23,4 +25,7 @@ The ** [Spreadsh {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet AlignVCenter/ru diff --git a/wiki/translations/ru/Spreadsheet_Controller.md b/wiki/translations/ru/Spreadsheet_Controller.md index d4c74636ca..4e4ba453b9 100644 --- a/wiki/translations/ru/Spreadsheet_Controller.md +++ b/wiki/translations/ru/Spreadsheet_Controller.md @@ -1,2 +1,5 @@ # Spreadsheet Controller/ru 1. REDIRECT [Arch\_Schedule/ru](Arch_Schedule/ru.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Controller/ru diff --git a/wiki/translations/ru/Spreadsheet_Create.md b/wiki/translations/ru/Spreadsheet_Create.md index bd738e2376..9a49b8d810 100644 --- a/wiki/translations/ru/Spreadsheet_Create.md +++ b/wiki/translations/ru/Spreadsheet_Create.md @@ -1,2 +1,5 @@ # Spreadsheet Create/ru 1. REDIRECT [Spreadsheet\_CreateSheet/ru](Spreadsheet_CreateSheet/ru.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Create/ru diff --git a/wiki/translations/ru/Spreadsheet_CreateSheet.md b/wiki/translations/ru/Spreadsheet_CreateSheet.md index c05ca94133..254dba97d7 100644 --- a/wiki/translations/ru/Spreadsheet_CreateSheet.md +++ b/wiki/translations/ru/Spreadsheet_CreateSheet.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet CreateSheet/ru + ## Описание The ** [Spreadsheet CreateSheet](Spreadsheet_CreateSheet.md)** tool adds a new spreadsheet object to the active document, which will be opened in a new tab in the [main view area](main_view_area.md). @@ -23,4 +25,7 @@ The ** [Spreadshe {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet CreateSheet/ru diff --git a/wiki/translations/ru/Spreadsheet_Export.md b/wiki/translations/ru/Spreadsheet_Export.md index 9414da3344..cb3ed5a793 100644 --- a/wiki/translations/ru/Spreadsheet_Export.md +++ b/wiki/translations/ru/Spreadsheet_Export.md @@ -8,6 +8,8 @@ SeeAlso:[Импорт электронной таблицы](Spreadsheet_Import/ru.md) --- +# Spreadsheet Export/ru + ## Описание The ** [Spreadsheet Export](Spreadsheet_Export.md)** tool allows you to export a spreadsheet as a tab-separated values file (loosely denoted as CSV), which subsequently can be opened and used in other applications. @@ -23,4 +25,7 @@ The ** [Spreadsheet Ex {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Export/ru diff --git a/wiki/translations/ru/Spreadsheet_Import.md b/wiki/translations/ru/Spreadsheet_Import.md index df7160eac9..aab59691fe 100644 --- a/wiki/translations/ru/Spreadsheet_Import.md +++ b/wiki/translations/ru/Spreadsheet_Import.md @@ -8,6 +8,8 @@ SeeAlso:[Экспорт электронной таблицы](Spreadsheet_Export/ru.md) --- +# Spreadsheet Import/ru + ## Описание Инструмент ** [Импорт электронной таблицы](Spreadsheet_Import/ru.md)** позволяет вам импортировать файлы (называемые как CSV) у которых значения разделены символами табуляции, в верстак spreadsheet, чтобы эти данные можно было модифицировать и использовать с [выражениями](expressions/ru.md). @@ -27,4 +29,7 @@ {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Import/ru diff --git a/wiki/translations/ru/Spreadsheet_MergeCells.md b/wiki/translations/ru/Spreadsheet_MergeCells.md index fb3b30d6bc..ed305f2a2f 100644 --- a/wiki/translations/ru/Spreadsheet_MergeCells.md +++ b/wiki/translations/ru/Spreadsheet_MergeCells.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet MergeCells/ru + ## Описание Инструмент ** [Объединить ячейки](Spreadsheet_MergeCells/ru.md)** объединяет не менее чем две выделенные ячейки в существующей электронной таблице в активном документе. @@ -23,4 +25,7 @@ {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet MergeCells/ru diff --git a/wiki/translations/ru/Spreadsheet_Module.md b/wiki/translations/ru/Spreadsheet_Module.md index 1498455e45..aa5ea5abdb 100644 --- a/wiki/translations/ru/Spreadsheet_Module.md +++ b/wiki/translations/ru/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module/ru 1. REDIRECT [Spreadsheet Workbench/ru](Spreadsheet_Workbench/ru.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module/ru diff --git a/wiki/translations/ru/Spreadsheet_SetAlias.md b/wiki/translations/ru/Spreadsheet_SetAlias.md index 44b11c59ca..d970744ea0 100644 --- a/wiki/translations/ru/Spreadsheet_SetAlias.md +++ b/wiki/translations/ru/Spreadsheet_SetAlias.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet SetAlias/ru + ## Описание Инструмент ** [Spreadsheet SetAlias](Spreadsheet_SetAlias/ru.md)** открывает диалоговое окно для установки псевдонима для ячейки. Вместо использования строгого имени ячейки, такого как A2, B3 или C4, можно использовать пользовательское имя. @@ -24,4 +26,7 @@ {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet SetAlias/ru diff --git a/wiki/translations/ru/Spreadsheet_SplitCell.md b/wiki/translations/ru/Spreadsheet_SplitCell.md index 96b5a104cc..9dd6b82f22 100644 --- a/wiki/translations/ru/Spreadsheet_SplitCell.md +++ b/wiki/translations/ru/Spreadsheet_SplitCell.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet SplitCell/ru + ## Описание The ** [Spreadsheet SplitCell](Spreadsheet_SplitCell.md)** tool splits apart a cell that was merged into one in an existing spreadsheet in the active document. @@ -23,4 +25,7 @@ The ** [Spreadsheet {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet SplitCell/ru diff --git a/wiki/translations/ru/Spreadsheet_StyleBold.md b/wiki/translations/ru/Spreadsheet_StyleBold.md index 693fcbaf0c..21ed21d6b5 100644 --- a/wiki/translations/ru/Spreadsheet_StyleBold.md +++ b/wiki/translations/ru/Spreadsheet_StyleBold.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet StyleBold/ru + ## Описание The ** [Spreadsheet StyleBold](Spreadsheet_StyleBold.md)** tool makes the text inside the cell adopt **bold** style. @@ -23,4 +25,7 @@ The ** [Spreadsheet {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleBold/ru diff --git a/wiki/translations/ru/Spreadsheet_StyleItalic.md b/wiki/translations/ru/Spreadsheet_StyleItalic.md index 970d9f6398..423d025feb 100644 --- a/wiki/translations/ru/Spreadsheet_StyleItalic.md +++ b/wiki/translations/ru/Spreadsheet_StyleItalic.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet StyleItalic/ru + ## Описание The ** [Spreadsheet StyleItalic](Spreadsheet_StyleItalic.md)** tool makes the text inside the cell adopt *italic* style. @@ -23,4 +25,7 @@ The ** [Spreadshe {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleItalic/ru diff --git a/wiki/translations/ru/Spreadsheet_StyleUnderline.md b/wiki/translations/ru/Spreadsheet_StyleUnderline.md index a8038d048b..6ef317597e 100644 --- a/wiki/translations/ru/Spreadsheet_StyleUnderline.md +++ b/wiki/translations/ru/Spreadsheet_StyleUnderline.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Spreadsheet StyleUnderline/ru + ## Описание The underline style. @@ -23,4 +25,7 @@ The underline style. {{Spreadsheet_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet StyleUnderline/ru diff --git a/wiki/translations/ru/Spreadsheet_Workbench.md b/wiki/translations/ru/Spreadsheet_Workbench.md index 7cdd788a71..02acdf0052 100644 --- a/wiki/translations/ru/Spreadsheet_Workbench.md +++ b/wiki/translations/ru/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/ru - {{Page_in_progress}} @@ -247,3 +246,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/ru diff --git a/wiki/translations/ru/Standard_Menu.md b/wiki/translations/ru/Standard_Menu.md index 39ff04c78c..a270aea1b5 100644 --- a/wiki/translations/ru/Standard_Menu.md +++ b/wiki/translations/ru/Standard_Menu.md @@ -1,5 +1,5 @@ # Standard Menu/ru - {{TOCright}} +{{TOCright}} ## Введение @@ -47,4 +47,7 @@ The standard menu is composed of 7 sub-menus: {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Standard Menu/ru diff --git a/wiki/translations/ru/Standard_view.md b/wiki/translations/ru/Standard_view.md index 13a40224e9..099003650d 100644 --- a/wiki/translations/ru/Standard_view.md +++ b/wiki/translations/ru/Standard_view.md @@ -1,2 +1,5 @@ # Standard view/ru 1. REDIRECT [Std View Menu/ru](Std_View_Menu/ru.md) + +--- +[documentation index](../README.md) > Standard view/ru diff --git a/wiki/translations/ru/Start_Preferences.md b/wiki/translations/ru/Start_Preferences.md index a77312fc90..c63351a182 100644 --- a/wiki/translations/ru/Start_Preferences.md +++ b/wiki/translations/ru/Start_Preferences.md @@ -1,6 +1,4 @@ # Start Preferences/ru - - The preferences screen of the [Start Workbench](Start_Workbench.md) is found in the [Preferences Editor](Preferences_Editor.md), **Edit → Preferences → Start**. There is only one tab: Start page. @@ -114,3 +112,6 @@ In the *Start page* tab you can specify the following: }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start Preferences/ru diff --git a/wiki/translations/ru/Start_Workbench.md b/wiki/translations/ru/Start_Workbench.md index 022d891397..8cf26430df 100644 --- a/wiki/translations/ru/Start_Workbench.md +++ b/wiki/translations/ru/Start_Workbench.md @@ -1,7 +1,4 @@ # Start Workbench/ru - - -
@@ -35,3 +32,6 @@ From this interface you can see useful information and jump to recently opened f [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench/ru diff --git a/wiki/translations/ru/Start_up_and_Configuration.md b/wiki/translations/ru/Start_up_and_Configuration.md index 87d0a6429c..acf7ac0f97 100644 --- a/wiki/translations/ru/Start_up_and_Configuration.md +++ b/wiki/translations/ru/Start_up_and_Configuration.md @@ -1,7 +1,4 @@ # Start up and Configuration/ru - - -
@@ -506,3 +503,6 @@ Now double-click the batch file to start FreeCAD. ([see](https://forum.freecadwe [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start up and Configuration/ru diff --git a/wiki/translations/ru/Status_bar.md b/wiki/translations/ru/Status_bar.md index c065613367..02c4c4f715 100644 --- a/wiki/translations/ru/Status_bar.md +++ b/wiki/translations/ru/Status_bar.md @@ -1,6 +1,4 @@ # Status bar/ru - - ## Введение The [status bar](status_bar.md) is a simple ribbon that appears at the bottom of the FreeCAD [interface](interface.md). @@ -20,4 +18,7 @@ The status bar also shows the last pre-selected object (any object under the poi {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Status bar/ru diff --git a/wiki/translations/ru/Std_About.md b/wiki/translations/ru/Std_About.md index af96096b06..980de21b06 100644 --- a/wiki/translations/ru/Std_About.md +++ b/wiki/translations/ru/Std_About.md @@ -1,3 +1,4 @@ +# Std About/ru --- - GuiCommand:/ru Name:Std About @@ -70,3 +71,6 @@ The Libraries tab shows a list of the external libraries used by the program, an {{Std Base navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Std About/ru diff --git a/wiki/translations/ru/Std_ActivateNextWindow.md b/wiki/translations/ru/Std_ActivateNextWindow.md index 9eac8c3a81..2264e70df2 100644 --- a/wiki/translations/ru/Std_ActivateNextWindow.md +++ b/wiki/translations/ru/Std_ActivateNextWindow.md @@ -7,6 +7,8 @@ SeeAlso:[Std ActivatePrevWindow](Std_ActivatePrevWindow.md), [Std Windows](Std_Windows.md) --- +# Std ActivateNextWindow/ru + ## Описание The **Std ActivateNextWindow** command activates the next window in the [Main view area](Main_view_area.md). The next window is determined by the order in which the Main view area windows were last activated. @@ -28,4 +30,7 @@ The **Std ActivateNextWindow** command activates the next window in the [Main vi {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ActivateNextWindow/ru diff --git a/wiki/translations/ru/Std_ActivatePrevWindow.md b/wiki/translations/ru/Std_ActivatePrevWindow.md index 21971e3cac..49db25c4b6 100644 --- a/wiki/translations/ru/Std_ActivatePrevWindow.md +++ b/wiki/translations/ru/Std_ActivatePrevWindow.md @@ -7,6 +7,8 @@ SeeAlso:[Std ActivateNextWindow](Std_ActivateNextWindow.md), [Std Windows](Std_Windows.md) --- +# Std ActivatePrevWindow/ru + ## Описание The **Std ActivatePrevWindow** command does not work properly [1](https://forum.freecadweb.org/viewtopic.php?f=3&t=45157). @@ -31,7 +33,12 @@ The **Std ActivatePrevWindow** command does not work properly [1](https://forum. SeeAlso:[Std ActivateNextWindow](Std_ActivateNextWindow.md), [Std Windows](Std_Windows.md) --- +# Std ActivatePrevWindow/ru + {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ActivatePrevWindow/ru diff --git a/wiki/translations/ru/Std_AddonMgr.md b/wiki/translations/ru/Std_AddonMgr.md index 277801e6f6..c6867b7b9b 100644 --- a/wiki/translations/ru/Std_AddonMgr.md +++ b/wiki/translations/ru/Std_AddonMgr.md @@ -7,6 +7,8 @@ SeeAlso:[External workbenches](External_workbenches/ru.md), [Макросы](Macros/ru.md) --- +# Std AddonMgr/ru + ## Описание Команда **Std AddonMgr** открывает Менеджер дополнений. С его помощью Вы можете устанавливать и управлять [сторонними верстаками](external_workbenches/ru.md) и [макросами](macros/ru.md), предоставляемыми сообществом FreeCAD. Доступные верстаки и макросы берутся из двух репозиториев, [FreeCAD-addons](https://github.com/FreeCAD/FreeCAD-addons/) и [FreeCAD-macros](https://github.com/FreeCAD/FreeCAD-macros/), а так же страницы [рецепты макросов](Macros_recipes/ru.md). @@ -83,4 +85,7 @@ If you develop a workbench in C++, it cannot be run directly by users and must b {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std AddonMgr/ru diff --git a/wiki/translations/ru/Std_Alignment.md b/wiki/translations/ru/Std_Alignment.md index c530ce4dbe..ac71bb2dbd 100644 --- a/wiki/translations/ru/Std_Alignment.md +++ b/wiki/translations/ru/Std_Alignment.md @@ -7,6 +7,8 @@ SeeAlso:[Расположение...](Std_Placement/ru.md) --- +# Std Alignment/ru + ## Описание The **Std Alignment** command aligns an object in relation to a fixed reference object using one or more point pairs. @@ -37,4 +39,7 @@ The **Std Alignment** command aligns an object in relation to a fixed reference {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Alignment/ru diff --git a/wiki/translations/ru/Std_ArrangeIcons.md b/wiki/translations/ru/Std_ArrangeIcons.md index 335c9ecf5c..224c98f8e2 100644 --- a/wiki/translations/ru/Std_ArrangeIcons.md +++ b/wiki/translations/ru/Std_ArrangeIcons.md @@ -8,6 +8,8 @@ SeeAlso:[Плиткой](Std_TileWindows/ru.md) --- +# Std ArrangeIcons/ru + ## Описание Команда **Упорядочить иконки** не работает должным образом. Оказывает эффект аналогичный команде [Std\_TileWindows](Std_TileWindows/ru.md). @@ -18,4 +20,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ArrangeIcons/ru diff --git a/wiki/translations/ru/Std_AxisCross.md b/wiki/translations/ru/Std_AxisCross.md index 1605fb3010..eb8d8fea85 100644 --- a/wiki/translations/ru/Std_AxisCross.md +++ b/wiki/translations/ru/Std_AxisCross.md @@ -8,6 +8,8 @@ Shortcut:**A** **C** --- +# Std AxisCross/ru +
@@ -57,4 +59,7 @@ FreeCADGui.ActiveDocument.ActiveView.hasAxisCross() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std AxisCross/ru diff --git a/wiki/translations/ru/Std_Base.md b/wiki/translations/ru/Std_Base.md index 17457cf59e..7fc04f0fcc 100644 --- a/wiki/translations/ru/Std_Base.md +++ b/wiki/translations/ru/Std_Base.md @@ -1,10 +1,4 @@ -# Std Base/ru - - - - - -Логотип стандартных команд и инструментов +# Логотип стандартных команд и инструментов Std Base/ru {{TOCright}} @@ -67,3 +61,6 @@ }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Base/ru diff --git a/wiki/translations/ru/Std_BoxElementSelection.md b/wiki/translations/ru/Std_BoxElementSelection.md index 85676fc2af..c434b4cc7c 100644 --- a/wiki/translations/ru/Std_BoxElementSelection.md +++ b/wiki/translations/ru/Std_BoxElementSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Выделить область](Std_BoxSelection/ru.md), [Выбрать всё](Std_SelectAll/ru.md) --- +# Std BoxElementSelection/ru + ## Описание The **Std BoxElementSelection** command selects faces from a user defined rectangular area, a box, in the [3D view](3D_view.md). @@ -31,4 +33,7 @@ The **Std BoxElementSelection** command selects faces from a user defined rectan {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std BoxElementSelection/ru diff --git a/wiki/translations/ru/Std_BoxSelection.md b/wiki/translations/ru/Std_BoxSelection.md index d295bb6fe0..f4f2dd3f67 100644 --- a/wiki/translations/ru/Std_BoxSelection.md +++ b/wiki/translations/ru/Std_BoxSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Область выбора элементов](Std_BoxElementSelection/ru.md), [Выбрать всё](Std_SelectAll/ru.md) --- +# Std BoxSelection/ru + ## Описание The **Std BoxSelection** command selects objects from a user defined rectangular area, a box, in the [3D view](3D_view.md). @@ -36,4 +38,7 @@ The **Std BoxSelection** command selects objects from a user defined rectangular {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std BoxSelection/ru diff --git a/wiki/translations/ru/Std_CascadeWindows.md b/wiki/translations/ru/Std_CascadeWindows.md index 6f6aaa2d1a..d2c8a20a98 100644 --- a/wiki/translations/ru/Std_CascadeWindows.md +++ b/wiki/translations/ru/Std_CascadeWindows.md @@ -6,6 +6,8 @@ SeeAlso:[Std TileWindows](Std_TileWindows.md) --- +# Std CascadeWindows/ru + ## Описание The **Std CascadeWindows** command rearranges the windows in the [Main view area](Main_view_area.md) so that they are all visible but do overlap. The result is determined by the order in which the windows were last activated. @@ -24,4 +26,7 @@ The **Std CascadeWindows** command rearranges the windows in the [Main view area {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CascadeWindows/ru diff --git a/wiki/translations/ru/Std_CloseActiveWindow.md b/wiki/translations/ru/Std_CloseActiveWindow.md index abc4bdf9bd..57599210f2 100644 --- a/wiki/translations/ru/Std_CloseActiveWindow.md +++ b/wiki/translations/ru/Std_CloseActiveWindow.md @@ -8,6 +8,8 @@ SeeAlso:[Закрыть всё](Std_CloseAllWindows/ru.md) --- +# Std CloseActiveWindow/ru + ## Описание Команда **Закрыть** закрывает активное окно. Чтобы закрыть документ полностью, нужно чтобы все его окна были закрыты. @@ -50,4 +52,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CloseActiveWindow/ru diff --git a/wiki/translations/ru/Std_CloseAllWindows.md b/wiki/translations/ru/Std_CloseAllWindows.md index 515146818f..16576abb10 100644 --- a/wiki/translations/ru/Std_CloseAllWindows.md +++ b/wiki/translations/ru/Std_CloseAllWindows.md @@ -7,6 +7,8 @@ SeeAlso:[Закрыть](Std_CloseActiveWindow/ru.md) --- +# Std CloseAllWindows/ru + ## Описание Команда **Закрыть всё** закрывает все окна, тем самым закрывая все документы. @@ -46,4 +48,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std CloseAllWindows/ru diff --git a/wiki/translations/ru/Std_Copy.md b/wiki/translations/ru/Std_Copy.md index 83fcaeef2c..0bb64c753e 100644 --- a/wiki/translations/ru/Std_Copy.md +++ b/wiki/translations/ru/Std_Copy.md @@ -8,6 +8,8 @@ SeeAlso:[Вырезать](Std_Cut/ru.md), [Вставить](Std_Paste/ru.md), [Дублировать выбранное](Std_DuplicateSelection/ru.md) --- +# Std Copy/ru + ## Описание Команда **Вырезать** копирует объект(ы) в Буфер обмена. @@ -33,4 +35,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Copy/ru diff --git a/wiki/translations/ru/Std_Cut.md b/wiki/translations/ru/Std_Cut.md index 40b3d54836..ae86bfc2e6 100644 --- a/wiki/translations/ru/Std_Cut.md +++ b/wiki/translations/ru/Std_Cut.md @@ -7,6 +7,8 @@ SeeAlso:[Копировать](Std_Copy/ru.md), [Вставить](Std_Paste/ru.md), [Дублировать выбранное](Std_DuplicateSelection/ru.md) --- +# Std Cut/ru + ## Описание Команда \"Вырезать\" имеет ограничения: ее можно использовать только при работе с [ячейками электронных таблиц](Spreadsheet_Workbench/ru.md). Команда копирует содержимое и свойства ячеек в буфер обмена, а затем очищает ячейки. @@ -31,4 +33,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Cut/ru diff --git a/wiki/translations/ru/Std_Delete.md b/wiki/translations/ru/Std_Delete.md index 3a7c492461..d0140ec70c 100644 --- a/wiki/translations/ru/Std_Delete.md +++ b/wiki/translations/ru/Std_Delete.md @@ -7,6 +7,8 @@ Shortcut:**Del** --- +# Std Delete/ru + ## Описание Команда **Удалить**, удаляет выбранные объекты. @@ -41,4 +43,7 @@ FreeCAD.ActiveDocument.removeObject("myObjectName") {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Delete/ru diff --git a/wiki/translations/ru/Std_DemoMode.md b/wiki/translations/ru/Std_DemoMode.md index 47ce8d03eb..52273147ff 100644 --- a/wiki/translations/ru/Std_DemoMode.md +++ b/wiki/translations/ru/Std_DemoMode.md @@ -6,6 +6,8 @@ Workbenches:Все --- +# Std DemoMode/ru + ## Описание Команда **Поворотный просмотр** вращает камеру в [3D виде](3D_view/ru.md). @@ -36,4 +38,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DemoMode/ru diff --git a/wiki/translations/ru/Std_DependencyGraph.md b/wiki/translations/ru/Std_DependencyGraph.md index d5c599d2ba..cad853ea59 100644 --- a/wiki/translations/ru/Std_DependencyGraph.md +++ b/wiki/translations/ru/Std_DependencyGraph.md @@ -6,6 +6,8 @@ Workbenches:Все --- +# Std DependencyGraph/ru + ## Описание The **Std DependencyGraph** command displays the dependencies between objects in the active document in a \'dependency graph\'. As opposed to the [Tree view](Tree_view.md), objects are listed in reverse chronological order, with the first created object at the bottom. @@ -94,3 +96,6 @@ You can save a dependency graph: }} [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [3rd Party](Category:3rd Party.md) > Std DependencyGraph/ru diff --git a/wiki/translations/ru/Std_DlgCustomize.md b/wiki/translations/ru/Std_DlgCustomize.md index 8654d556dd..6985dcc1a7 100644 --- a/wiki/translations/ru/Std_DlgCustomize.md +++ b/wiki/translations/ru/Std_DlgCustomize.md @@ -7,6 +7,8 @@ SeeAlso:[Interface Customization](Interface_Customization/ru.md) --- +# Std DlgCustomize/ru + ## Описание The **Std DlgCustomize** command opens the Customize dialog box giving access to several customization options. @@ -32,4 +34,7 @@ The **Std DlgCustomize** command opens the Customize dialog box giving access to {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgCustomize/ru diff --git a/wiki/translations/ru/Std_DlgMacroExecute.md b/wiki/translations/ru/Std_DlgMacroExecute.md index 5d95aff3ae..b70e231f03 100644 --- a/wiki/translations/ru/Std_DlgMacroExecute.md +++ b/wiki/translations/ru/Std_DlgMacroExecute.md @@ -7,6 +7,8 @@ SeeAlso:[Выполнить макрос](Std_DlgMacroExecuteDirect/ru.md) --- +# Std DlgMacroExecute/ru + ## Описание The **Std DlgMacroExecute** command opens the Execute macro dialog box. From this dialog box macros can be executed, edited and managed. @@ -108,4 +110,7 @@ The **Std DlgMacroExecute** command opens the Execute macro dialog box. From thi {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgMacroExecute/ru diff --git a/wiki/translations/ru/Std_DlgMacroExecuteDirect.md b/wiki/translations/ru/Std_DlgMacroExecuteDirect.md index 9331c0894c..0848661bab 100644 --- a/wiki/translations/ru/Std_DlgMacroExecuteDirect.md +++ b/wiki/translations/ru/Std_DlgMacroExecuteDirect.md @@ -7,6 +7,8 @@ SeeAlso:[Макросы...](Std_DlgMacroExecute/ru.md) --- +# Std DlgMacroExecuteDirect/ru + ## Описание The **Std DlgMacroExecuteDirect** command executes the macro in the current Macro editor window. @@ -31,4 +33,7 @@ The **Std DlgMacroExecuteDirect** command executes the macro in the current Macr {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgMacroExecuteDirect/ru diff --git a/wiki/translations/ru/Std_DlgMacroRecord.md b/wiki/translations/ru/Std_DlgMacroRecord.md index f19e396f77..8b734d5b12 100644 --- a/wiki/translations/ru/Std_DlgMacroRecord.md +++ b/wiki/translations/ru/Std_DlgMacroRecord.md @@ -7,6 +7,8 @@ SeeAlso:[Остановить запись макроса](Std_MacroStopRecord/ru.md) --- +# Std DlgMacroRecord/ru + ## Описание The **Std DlgMacroRecord** command starts a [macro](Macros.md) recording session during which user actions are stored in a FreeCAD macro, a file with the {{FileName|.FCMacro}} extension. A macro can later be replayed, executed, to repeat the recorded actions. @@ -50,4 +52,7 @@ The **Std DlgMacroRecord** command starts a [macro](Macros.md) recording session {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgMacroRecord/ru diff --git a/wiki/translations/ru/Std_DlgParameter.md b/wiki/translations/ru/Std_DlgParameter.md index 0b9565a3ea..d333fec882 100644 --- a/wiki/translations/ru/Std_DlgParameter.md +++ b/wiki/translations/ru/Std_DlgParameter.md @@ -7,6 +7,8 @@ SeeAlso:[Preferences Editor](Preferences_Editor/ru.md) --- +# Std DlgParameter/ru + ## Описание The **Std DlgParameter** command opens the Parameter Editor. In the Parameter Editor the parameters that control the behavior of FreeCAD and its workbenches can be inspected and optionally removed, added or changed. The parameters are stored in a file called {{FileName|user.cfg}}, the location of this file depends on your OS. @@ -170,4 +172,7 @@ It is likely a bad idea to modify the preferences of other parts of FreeCAD unle {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgParameter/ru diff --git a/wiki/translations/ru/Std_DlgPreferences.md b/wiki/translations/ru/Std_DlgPreferences.md index ad8392e649..eff13b6e8d 100644 --- a/wiki/translations/ru/Std_DlgPreferences.md +++ b/wiki/translations/ru/Std_DlgPreferences.md @@ -7,6 +7,8 @@ SeeAlso:[Редактор настроек](Preferences_Editor/ru.md) --- +# Std DlgPreferences/ru + ## Описание Команда **Настройки\...** открывает [Редактор настроек](Preferences_Editor/ru.md). @@ -26,4 +28,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DlgPreferences/ru diff --git a/wiki/translations/ru/Std_DrawStyle.md b/wiki/translations/ru/Std_DrawStyle.md index da707c4fbb..687651c905 100644 --- a/wiki/translations/ru/Std_DrawStyle.md +++ b/wiki/translations/ru/Std_DrawStyle.md @@ -8,6 +8,8 @@ SeeAlso:[Std SelBoundingBox](Std_SelBoundingBox/ru.md) --- +# Std DrawStyle/ru + ## Описание The **Std DrawStyle** command can override the effect of the **Display Mode** [property](Property_editor.md) of objects in a [3D view](3D_view.md). @@ -75,4 +77,7 @@ The **Flat lines** style overrides the **Display Mode** of objects. This style m {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DrawStyle/ru diff --git a/wiki/translations/ru/Std_DuplicateSelection.md b/wiki/translations/ru/Std_DuplicateSelection.md index 2d7016d176..659a524f7f 100644 --- a/wiki/translations/ru/Std_DuplicateSelection.md +++ b/wiki/translations/ru/Std_DuplicateSelection.md @@ -7,6 +7,8 @@ SeeAlso:[Вырезать](Std_Cut/ru.md), [Копировать](Std_Copy/ru.md), [Вставить](Std_Paste/ru.md) --- +# Std DuplicateSelection/ru + ## Описание The **Std DuplicateSelection** command duplicates objects within the active document. @@ -31,4 +33,7 @@ The **Std DuplicateSelection** command duplicates objects within the active docu {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std DuplicateSelection/ru diff --git a/wiki/translations/ru/Std_Edit.md b/wiki/translations/ru/Std_Edit.md index 2fb4959279..aa49998004 100644 --- a/wiki/translations/ru/Std_Edit.md +++ b/wiki/translations/ru/Std_Edit.md @@ -6,6 +6,8 @@ Workbenches:Все --- +# Std Edit/ru + ## Описание Команда **Редактировать/закончить редактирование** позволяет переключать объект в режим редактирования и обратно. @@ -61,4 +63,7 @@ FreeCADGui.ActiveDocument.resetEdit() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Edit/ru diff --git a/wiki/translations/ru/Std_Edit_Menu.md b/wiki/translations/ru/Std_Edit_Menu.md index b02e3fecb2..fcf920a9fd 100644 --- a/wiki/translations/ru/Std_Edit_Menu.md +++ b/wiki/translations/ru/Std_Edit_Menu.md @@ -1,10 +1,4 @@ -# Std Edit Menu/ru - - - - - -Иконка стандартных инструментов +# Иконка стандартных инструментов Std Edit Menu/ru {{TOCright}} @@ -81,3 +75,6 @@ }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Edit Menu/ru diff --git a/wiki/translations/ru/Std_Exit.md b/wiki/translations/ru/Std_Exit.md index a2e68de3c8..2c3da26160 100644 --- a/wiki/translations/ru/Std_Exit.md +++ b/wiki/translations/ru/Std_Exit.md @@ -1,2 +1,5 @@ # Std Exit/ru 1. REDIRECT [Std Quit/ru](Std_Quit/ru.md) + +--- +[documentation index](../README.md) > Std Exit/ru diff --git a/wiki/translations/ru/Std_Export.md b/wiki/translations/ru/Std_Export.md index 0d943de796..e8210e5a11 100644 --- a/wiki/translations/ru/Std_Export.md +++ b/wiki/translations/ru/Std_Export.md @@ -8,6 +8,8 @@ SeeAlso:[Std PrintPdf](Std_PrintPdf/ru.md), [Import Export](Import_Export/ru.md), [Import Export Preferences](Import_Export_Preferences/ru.md) --- +# Std Export/ru +
@@ -54,3 +56,6 @@ The **Std Export** command exports selected objects to a different file format. }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Export/ru diff --git a/wiki/translations/ru/Std_ExportGraphviz.md b/wiki/translations/ru/Std_ExportGraphviz.md index dc11024d6a..7fb360d594 100644 --- a/wiki/translations/ru/Std_ExportGraphviz.md +++ b/wiki/translations/ru/Std_ExportGraphviz.md @@ -1,2 +1,5 @@ # Std ExportGraphviz/ru 1. REDIRECT [Std\_DependencyGraph/ru](Std_DependencyGraph/ru.md) + +--- +[documentation index](../README.md) > Std ExportGraphviz/ru diff --git a/wiki/translations/ru/Std_File_Menu.md b/wiki/translations/ru/Std_File_Menu.md index 0fb6b8797d..e6fa2ad27d 100644 --- a/wiki/translations/ru/Std_File_Menu.md +++ b/wiki/translations/ru/Std_File_Menu.md @@ -1,10 +1,4 @@ -# Std File Menu/ru - - - - - -Иконка стандартных инструментов +# Иконка стандартных инструментов Std File Menu/ru {{TOCright}} @@ -82,3 +76,6 @@ }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std File Menu/ru diff --git a/wiki/translations/ru/Std_FreeCADFAQ.md b/wiki/translations/ru/Std_FreeCADFAQ.md index d124365f35..bdad12b30d 100644 --- a/wiki/translations/ru/Std_FreeCADFAQ.md +++ b/wiki/translations/ru/Std_FreeCADFAQ.md @@ -7,6 +7,8 @@ SeeAlso:[Online help](Std_OnlineHelp/ru.md), [User hub](Std_FreeCADUserHub/ru.md), [Help menu](Std_Help_Menu/ru.md) --- +# Std FreeCADFAQ/ru +
@@ -26,4 +28,7 @@ Currently the command points to [](https:// {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADFAQ/ru diff --git a/wiki/translations/ru/Std_FreeCADForum.md b/wiki/translations/ru/Std_FreeCADForum.md index 56b6627093..153b6e4b40 100644 --- a/wiki/translations/ru/Std_FreeCADForum.md +++ b/wiki/translations/ru/Std_FreeCADForum.md @@ -7,6 +7,8 @@ SeeAlso:[Online help](Std_OnlineHelp/ru.md), [User hub](Std_FreeCADUserHub/ru.md), [Help menu](Std_Help_Menu/ru.md) --- +# Std FreeCADForum/ru + @@ -26,4 +28,7 @@ Currently the command points to [](https://forum.f {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADForum/ru diff --git a/wiki/translations/ru/Std_FreeCADPowerUserHub.md b/wiki/translations/ru/Std_FreeCADPowerUserHub.md index 8f2e8484dd..9d1eda0c14 100644 --- a/wiki/translations/ru/Std_FreeCADPowerUserHub.md +++ b/wiki/translations/ru/Std_FreeCADPowerUserHub.md @@ -7,6 +7,8 @@ SeeAlso:[Online help](Std_OnlineHelp/ru.md), [Python help](Std_PythonHelp/ru.md), [Help menu](Std_Help_Menu/ru.md) --- +# Std FreeCADPowerUserHub/ru + @@ -26,4 +28,7 @@ Currently the command points to [ Std FreeCADPowerUserHub/ru diff --git a/wiki/translations/ru/Std_FreeCADUserHub.md b/wiki/translations/ru/Std_FreeCADUserHub.md index c3a1c15b9a..d9ade18bc5 100644 --- a/wiki/translations/ru/Std_FreeCADUserHub.md +++ b/wiki/translations/ru/Std_FreeCADUserHub.md @@ -7,6 +7,8 @@ SeeAlso:[Online help](Std_OnlineHelp/ru.md), [Help menu](Std_Help_Menu/ru.md) --- +# Std FreeCADUserHub/ru + @@ -26,4 +28,7 @@ Currently the command points to [](htt {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADUserHub/ru diff --git a/wiki/translations/ru/Std_FreeCADWebsite.md b/wiki/translations/ru/Std_FreeCADWebsite.md index 6a37ef4da7..3b0c3f2891 100644 --- a/wiki/translations/ru/Std_FreeCADWebsite.md +++ b/wiki/translations/ru/Std_FreeCADWebsite.md @@ -6,6 +6,8 @@ SeeAlso:[Std FreeCADUserHub](Std_FreeCADUserHub.md), [Std FreeCADPowerUserHub](Std_FreeCADPowerUserHub.md), [Std FreeCADForum](Std_FreeCADForum.md), [Std FreeCADFAQ](Std_FreeCADFAQ.md) --- +# Std FreeCADWebsite/ru + ## Описание The **Std FreeCADWebsite** command opens the main website of the FreeCAD project in the system\'s default Internet browser. The command requires a working Internet connection. @@ -22,4 +24,7 @@ Currently the command points to [](https://www.freec {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreeCADWebsite/ru diff --git a/wiki/translations/ru/Std_FreezeViews.md b/wiki/translations/ru/Std_FreezeViews.md index 42b3827bb0..fc74684a34 100644 --- a/wiki/translations/ru/Std_FreezeViews.md +++ b/wiki/translations/ru/Std_FreezeViews.md @@ -8,6 +8,8 @@ SeeAlso:[Std ViewIvIssueCamPos](Std_ViewIvIssueCamPos/ru.md) --- +# Std FreezeViews/ru + ## Введение FreeCAD can store camera settings in up to 50 \'frozen views\'. The menu options that deal with frozen views can be found in the **View → Freeze display** submenu. Frozen views are not stored in the document and, if not saved with the **[Save views\...](#Save_views.md)** menu option, will be lost when the FreeCAD application closes. @@ -88,4 +90,7 @@ For each frozen view a **Restore view** option is added with which it can be res {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std FreezeViews/ru diff --git a/wiki/translations/ru/Std_Group.md b/wiki/translations/ru/Std_Group.md index 0b3255ffc6..65a1e88253 100644 --- a/wiki/translations/ru/Std_Group.md +++ b/wiki/translations/ru/Std_Group.md @@ -9,6 +9,8 @@ SeeAlso:[Создать деталь](Std_Part/ru.md), [Выбрать группу](Draft_SelectGroup/ru.md), [Переместить в группу](Draft_AddToGroup/ru.md) --- +# Std Group/ru + ## Описание [Std Group](Std_Group.md) (internally called [App DocumentObjectGroup](App_DocumentObjectGroup.md)) is a general purpose container that allows you to group different types of objects in the [tree view](tree_view.md), regardless of their data type. It is used as a simple folder to categorize and organize the objects in your model, in order to keep a logical structure. Std Groups may be nested inside other Std Groups. @@ -125,4 +127,7 @@ For example, a [FEM Analysis](FEM_Analysis.md) is an `App::DocumentObjectGroupPy {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Group/ru diff --git a/wiki/translations/ru/Std_Help.md b/wiki/translations/ru/Std_Help.md index 589aac6a8d..762156ffb8 100644 --- a/wiki/translations/ru/Std_Help.md +++ b/wiki/translations/ru/Std_Help.md @@ -1,2 +1,5 @@ # Std Help/ru 1. REDIRECT [Std\_Help\_Menu/ru](Std_Help_Menu/ru.md) + +--- +[documentation index](../README.md) > Std Help/ru diff --git a/wiki/translations/ru/Std_Help_Menu.md b/wiki/translations/ru/Std_Help_Menu.md index 8c1ad41be3..afac378d84 100644 --- a/wiki/translations/ru/Std_Help_Menu.md +++ b/wiki/translations/ru/Std_Help_Menu.md @@ -1,10 +1,4 @@ -# Std Help Menu/ru - - - - - -Иконка стандартных инструментов +# Иконка стандартных инструментов Std Help Menu/ru {{TOCright}} @@ -64,3 +58,6 @@ The Help menu provides access to the help system and links to the FreeCAD websit }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Help Menu/ru diff --git a/wiki/translations/ru/Std_HideObjects.md b/wiki/translations/ru/Std_HideObjects.md index 620eabc356..0d98a66968 100644 --- a/wiki/translations/ru/Std_HideObjects.md +++ b/wiki/translations/ru/Std_HideObjects.md @@ -7,6 +7,8 @@ SeeAlso:[Std ToggleVisibility](Std_ToggleVisibility/ru.md), [Std ShowSelection](Std_ShowSelection/ru.md), [Std HideSelection](Std_HideSelection/ru.md), [Std ToggleObjects](Std_ToggleObjects/ru.md), [Std ShowObjects](Std_ShowObjects/ru.md) --- +# Std HideObjects/ru + ## Описание The **Std HideObjects** command hides all objects belonging to the active document in [3D views](3D_view.md). @@ -36,4 +38,7 @@ The **Std HideObjects** command hides all objects belonging to the active docume {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std HideObjects/ru diff --git a/wiki/translations/ru/Std_HideSelection.md b/wiki/translations/ru/Std_HideSelection.md index 65e67edec5..e0f360233a 100644 --- a/wiki/translations/ru/Std_HideSelection.md +++ b/wiki/translations/ru/Std_HideSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Std ToggleVisibility](Std_ToggleVisibility/ru.md), [Std ShowSelection](Std_ShowSelection/ru.md), [Std ToggleObjects](Std_ToggleObjects/ru.md), [Std ShowObjects](Std_ShowObjects/ru.md), [Std HideObjects](Std_HideObjects/ru.md) --- +# Std HideSelection/ru + @@ -45,4 +47,7 @@ For a scripting example see [Std ToggleVisibility](Std_ToggleVisibility.md). {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std HideSelection/ru diff --git a/wiki/translations/ru/Std_Import.md b/wiki/translations/ru/Std_Import.md index c55993d5ad..90bbbf1ef4 100644 --- a/wiki/translations/ru/Std_Import.md +++ b/wiki/translations/ru/Std_Import.md @@ -8,6 +8,8 @@ SeeAlso:[Std Open](Std_Open/ru.md), [Import Export](Import_Export/ru.md), [Import Export Preferences](Import_Export_Preferences/ru.md) --- +# Std Import/ru + @@ -49,3 +51,6 @@ The **Std Import** command imports geometry from a different file format into th }} [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [File_Formats](Category:File_Formats.md) > Std Import/ru diff --git a/wiki/translations/ru/Std_InterfaceCustomization.md b/wiki/translations/ru/Std_InterfaceCustomization.md index 814af75fb8..6f6553e3e5 100644 --- a/wiki/translations/ru/Std_InterfaceCustomization.md +++ b/wiki/translations/ru/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/ru 1. REDIRECT [Interface\_Customization/ru](Interface_Customization/ru.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/ru diff --git a/wiki/translations/ru/Std_LinkImport.md b/wiki/translations/ru/Std_LinkImport.md index de39125ded..2bccb685a4 100644 --- a/wiki/translations/ru/Std_LinkImport.md +++ b/wiki/translations/ru/Std_LinkImport.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkMake](Std_LinkMake.md), [Std LinkMakeRelative](Std_LinkMakeRelative.md), [Std LinkImportAll](Std_LinkImportAll.md) --- +# Std LinkImport/ru + ## Описание @@ -37,4 +39,7 @@ A copy of the original ** [Std P {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkImport/ru diff --git a/wiki/translations/ru/Std_LinkImportAll.md b/wiki/translations/ru/Std_LinkImportAll.md index 786cb890da..6fabeeb49b 100644 --- a/wiki/translations/ru/Std_LinkImportAll.md +++ b/wiki/translations/ru/Std_LinkImportAll.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkMake](Std_LinkMake.md), [Std LinkMakeRelative](Std_LinkMakeRelative.md), [Std LinkImport](Std_LinkImport.md) --- +# Std LinkImportAll/ru + ## Описание @@ -32,4 +34,7 @@ This command essentially runs ** Std LinkMake/ru diff --git a/wiki/translations/ru/Std_LinkMakeRelative.md b/wiki/translations/ru/Std_LinkMakeRelative.md index 9d95fa3c1a..4934141d36 100644 --- a/wiki/translations/ru/Std_LinkMakeRelative.md +++ b/wiki/translations/ru/Std_LinkMakeRelative.md @@ -7,6 +7,8 @@ SeeAlso:[Std Part](Std_Part.md), [Std Group](Std_Group.md), [Std LinkMake](Std_LinkMake.md) --- +# Std LinkMakeRelative/ru + ## Описание @@ -63,4 +65,7 @@ App.ActiveDocument.recompute() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkMakeRelative/ru diff --git a/wiki/translations/ru/Std_LinkReplace.md b/wiki/translations/ru/Std_LinkReplace.md index 5d0a122126..fcb75bf97a 100644 --- a/wiki/translations/ru/Std_LinkReplace.md +++ b/wiki/translations/ru/Std_LinkReplace.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkMake](Std_LinkMake.md), [Std LinkMakeRelative](Std_LinkMakeRelative.md), [Std LinkUnlink](Std_LinkUnlink.md) --- +# Std LinkReplace/ru + ## Описание @@ -48,4 +50,7 @@ This can also be done with objects contained inside {{button| Std LinkReplace/ru diff --git a/wiki/translations/ru/Std_LinkSelectAllLinks.md b/wiki/translations/ru/Std_LinkSelectAllLinks.md index 7f149d3f8d..0c087850fe 100644 --- a/wiki/translations/ru/Std_LinkSelectAllLinks.md +++ b/wiki/translations/ru/Std_LinkSelectAllLinks.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkSelectLinked](Std_LinkSelectLinked.md), [Std LinkSelectLinkedFinal](Std_LinkSelectLinkedFinal.md), [Std SelBack](Std_SelBack.md), [Std SelForward](Std_SelForward.md) --- +# Std LinkSelectAllLinks/ru + ## Описание The **Std LinkSelectAllLinks** command selects all [App Link](App_Link.md) objects, links, that directly or indirectly link to the same source object. @@ -25,4 +27,7 @@ The **Std LinkSelectAllLinks** command selects all [App Link](App_Link.md) objec {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkSelectAllLinks/ru diff --git a/wiki/translations/ru/Std_LinkSelectLinked.md b/wiki/translations/ru/Std_LinkSelectLinked.md index 925b328fed..cdc0e808b8 100644 --- a/wiki/translations/ru/Std_LinkSelectLinked.md +++ b/wiki/translations/ru/Std_LinkSelectLinked.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkSelectLinkedFinal](Std_LinkSelectLinkedFinal.md), [Std LinkSelectAllLinks](Std_LinkSelectAllLinks.md), [Std SelBack](Std_SelBack.md), [Std SelForward](Std_SelForward.md) --- +# Std LinkSelectLinked/ru + ## Описание The **Std LinkSelectLinked** command selects the **Linked Object**, the source object, of an [App Link](App_Link.md) object, a link. @@ -24,4 +26,7 @@ The **Std LinkSelectLinked** command selects the **Linked Object**, the source o {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkSelectLinked/ru diff --git a/wiki/translations/ru/Std_LinkSelectLinkedFinal.md b/wiki/translations/ru/Std_LinkSelectLinkedFinal.md index 0718d6671c..5f3e76e1b0 100644 --- a/wiki/translations/ru/Std_LinkSelectLinkedFinal.md +++ b/wiki/translations/ru/Std_LinkSelectLinkedFinal.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkSelectLinked](Std_LinkSelectLinked.md), [Std LinkSelectAllLinks](Std_LinkSelectAllLinks.md), [Std SelBack](Std_SelBack.md), [Std SelForward](Std_SelForward.md) --- +# Std LinkSelectLinkedFinal/ru + ## Описание The **Std LinkSelectLinkedFinal** command selects the **Linked Object**, the source object, of an [App Link](App_Link.md) object, a link. But if that source object is also a link its linked object is selected instead. This is repeated until the linked object is not a link. This final source object is the deepest linked object. @@ -24,4 +26,7 @@ The **Std LinkSelectLinkedFinal** command selects the **Linked Object**, the sou {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std LinkSelectLinkedFinal/ru diff --git a/wiki/translations/ru/Std_LinkUnlink.md b/wiki/translations/ru/Std_LinkUnlink.md index 82e11928af..e1ae0e1b35 100644 --- a/wiki/translations/ru/Std_LinkUnlink.md +++ b/wiki/translations/ru/Std_LinkUnlink.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkMake](Std_LinkMake.md), [Std LinkMakeRelative](Std_LinkMakeRelative.md), [Std LinkReplace](Std_LinkReplace.md) --- +# Std LinkUnlink/ru + ## Описание @@ -40,4 +42,7 @@ The original +# Иконка стандартных инструментов Std Macro Menu/ru {{TOCright}} @@ -69,3 +63,6 @@ }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Macro Menu/ru diff --git a/wiki/translations/ru/Std_MainFullscreen.md b/wiki/translations/ru/Std_MainFullscreen.md index 9dcfa866ea..7ccd2bb294 100644 --- a/wiki/translations/ru/Std_MainFullscreen.md +++ b/wiki/translations/ru/Std_MainFullscreen.md @@ -8,6 +8,8 @@ SeeAlso:[На весь экран](Std_ViewFullscreen/ru.md) --- +# Std MainFullscreen/ru + ## Описание The **Std MainFullscreen** command toggles FreeCAD\'s main window fullscreen mode. @@ -24,4 +26,7 @@ The **Std MainFullscreen** command toggles FreeCAD\'s main window fullscreen mod {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MainFullscreen/ru diff --git a/wiki/translations/ru/Std_MeasureDistance.md b/wiki/translations/ru/Std_MeasureDistance.md index 3d4ef4a34f..a0e96bfe72 100644 --- a/wiki/translations/ru/Std_MeasureDistance.md +++ b/wiki/translations/ru/Std_MeasureDistance.md @@ -7,6 +7,8 @@ SeeAlso:[Part Measure Tools](Part_Measure_Menu/ru.md),
[Draft Dimension](Draft_Dimension/ru.md),
[Arch Survey](Arch_Survey/ru.md) --- +# Std MeasureDistance/ru + ## Описание The **Std MeasureDistance** command creates a distance object that measures and displays the distance between two points. @@ -62,4 +64,7 @@ The **Std MeasureDistance** command creates a distance object that measures and {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MeasureDistance/ru diff --git a/wiki/translations/ru/Std_MergeProject.md b/wiki/translations/ru/Std_MergeProject.md index a07a805463..7e489a12f1 100644 --- a/wiki/translations/ru/Std_MergeProject.md +++ b/wiki/translations/ru/Std_MergeProject.md @@ -1,2 +1,5 @@ # Std MergeProject/ru 1. REDIRECT [Std\_MergeProjects/ru](Std_MergeProjects/ru.md) + +--- +[documentation index](../README.md) > Std MergeProject/ru diff --git a/wiki/translations/ru/Std_MergeProjects.md b/wiki/translations/ru/Std_MergeProjects.md index d6402c3ce2..a77e0c6be3 100644 --- a/wiki/translations/ru/Std_MergeProjects.md +++ b/wiki/translations/ru/Std_MergeProjects.md @@ -6,6 +6,8 @@ Workbenches:All --- +# Std MergeProjects/ru + @@ -39,4 +41,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std MergeProjects/ru diff --git a/wiki/translations/ru/Std_New.md b/wiki/translations/ru/Std_New.md index 2e0f4a6885..69c594fa05 100644 --- a/wiki/translations/ru/Std_New.md +++ b/wiki/translations/ru/Std_New.md @@ -8,6 +8,8 @@ SeeAlso:[Открыть файл](Std_Open/ru.md),
[Импортировать файл](Std_Import/ru.md) --- +# Std New/ru + ## Описание Команда **Создать** создаёт новый пустой документ и делает его активным. @@ -96,4 +98,7 @@ FreeCAD.closeDocument(doc.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std New/ru diff --git a/wiki/translations/ru/Std_OnlineHelp.md b/wiki/translations/ru/Std_OnlineHelp.md index 94b8449862..613fecc905 100644 --- a/wiki/translations/ru/Std_OnlineHelp.md +++ b/wiki/translations/ru/Std_OnlineHelp.md @@ -1,3 +1,4 @@ +# Std OnlineHelp/ru --- - GuiCommand:/ru Name:Std OnlineHelp Name/ru:Std OnlineHelp MenuLocation:[[Std Help/ru Help]] → FreeCAD Website‏‎||Workbenches:All Shortcut: SeeAlso:--- @@ -27,4 +28,7 @@ The **Std OnlineHelp** command opens the help documentation. To open the documen {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std OnlineHelp/ru diff --git a/wiki/translations/ru/Std_Open.md b/wiki/translations/ru/Std_Open.md index 4827b0076e..847314ba18 100644 --- a/wiki/translations/ru/Std_Open.md +++ b/wiki/translations/ru/Std_Open.md @@ -8,6 +8,8 @@ SeeAlso:[Импортировать файл](Std_Import/ru.md),
[Создать файл](Std_New/ru.md) --- +# Std Open/ru + ## Описание The **Std Open** command opens a file. If the file is not a native FreeCAD file (\*.FCStd) its geometry will be imported into a new document. See [Std Import](Std_Import.md) for more information. @@ -49,4 +51,7 @@ These methods create and return a document and load a project file into it. The {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Open/ru diff --git a/wiki/translations/ru/Std_OrthographicCamera.md b/wiki/translations/ru/Std_OrthographicCamera.md index 0871e0e8fa..e7852a45cf 100644 --- a/wiki/translations/ru/Std_OrthographicCamera.md +++ b/wiki/translations/ru/Std_OrthographicCamera.md @@ -8,6 +8,8 @@ SeeAlso:[Перспективная проекция](Std_PerspectiveCamera/ru.md) --- +# Std OrthographicCamera/ru + ## Описание Команда **Std OrthographicCamera** переводит камеру в активном [трёхмерном виде](3D_view/ru.md) в режим ортогональной проекции. В этом режиме объекты, которые находятся дальше от камеры, выглядят не меньше, чем те, которые находятся ближе. @@ -51,4 +53,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std OrthographicCamera/ru diff --git a/wiki/translations/ru/Std_Part.md b/wiki/translations/ru/Std_Part.md index c75410cd5b..5477770765 100644 --- a/wiki/translations/ru/Std_Part.md +++ b/wiki/translations/ru/Std_Part.md @@ -8,6 +8,8 @@ SeeAlso:[Создать группу](Std_Group/ru.md), [Создать тело](PartDesign_Body/ru.md) --- +# Std Part/ru + ## Описание @@ -271,4 +273,7 @@ App.ActiveDocument.addObject('Part::FeaturePython', 'Group', group.MyGroup(), gr {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Part/ru diff --git a/wiki/translations/ru/Std_Paste.md b/wiki/translations/ru/Std_Paste.md index 5d54bfbd1f..1fe9c4a5d3 100644 --- a/wiki/translations/ru/Std_Paste.md +++ b/wiki/translations/ru/Std_Paste.md @@ -8,6 +8,8 @@ SeeAlso:[Вырезать](Std_Cut/ru.md), [Копировать](Std_Copy/ru.md), [Дублировать выбранное](Std_DuplicateSelection/ru.md) --- +# Std Paste/ru + ## Описание Команда **Вставить** вставляет объекты из буфера обмена в активный документ. @@ -37,4 +39,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Paste/ru diff --git a/wiki/translations/ru/Std_PerspectiveCamera.md b/wiki/translations/ru/Std_PerspectiveCamera.md index 9067355edd..73abf9177d 100644 --- a/wiki/translations/ru/Std_PerspectiveCamera.md +++ b/wiki/translations/ru/Std_PerspectiveCamera.md @@ -8,6 +8,8 @@ SeeAlso:[Ортогональная проекция](Std_OrthographicCamera/ru.md) --- +# Std PerspectiveCamera/ru + ## Описание Команда **Std PerspectiveCamera** переводит камеру в активном [трёхмерном виде](3D_view/ru.md) в режим перспективы. В этом режиме объекты, которые находятся дальше от камеры, выглядят меньше, чем те, которые находятся ближе. @@ -51,4 +53,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PerspectiveCamera/ru diff --git a/wiki/translations/ru/Std_Placement.md b/wiki/translations/ru/Std_Placement.md index 4894b0e443..7cd35d39b6 100644 --- a/wiki/translations/ru/Std_Placement.md +++ b/wiki/translations/ru/Std_Placement.md @@ -7,6 +7,8 @@ SeeAlso:[Выравнивание](Std_Alignment/ru.md), [Расположение](Placement/ru.md) --- +# Std Placement/ru + ## Описание The **Std Placement** command displays the Placement [task panel](Task_panel.md) for a selected object. @@ -84,4 +86,7 @@ print(obj.Placement.Matrix) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Placement/ru diff --git a/wiki/translations/ru/Std_Print.md b/wiki/translations/ru/Std_Print.md index 3fbe2395e9..f96c4e3523 100644 --- a/wiki/translations/ru/Std_Print.md +++ b/wiki/translations/ru/Std_Print.md @@ -8,6 +8,8 @@ SeeAlso:[Предварительный просмотр...](Std_PrintPreview/ru.md), [Std PrintPdf](Std_PrintPdf/ru.md), [Std Export](Std_Export/ru.md), [Std ViewScreenShot](Std_ViewScreenShot/ru.md) --- +# Std Print/ru + ## Описание The **Std Print** command is primarily intended to print [TechDraw Workbench](TechDraw_Workbench.md) pages, but can also be used to print what is currently visible in the [3D view](3D_View.md). @@ -31,4 +33,7 @@ The **Std Print** command is primarily intended to print [TechDraw Workbench](Te {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Print/ru diff --git a/wiki/translations/ru/Std_PrintPdf.md b/wiki/translations/ru/Std_PrintPdf.md index cdff643b6a..b782204b95 100644 --- a/wiki/translations/ru/Std_PrintPdf.md +++ b/wiki/translations/ru/Std_PrintPdf.md @@ -7,6 +7,8 @@ SeeAlso:[Печать](Std_Print/ru.md), [Экспортировать](Std_Export/ru.md), [Std ViewScreenShot](Std_ViewScreenShot/ru.md) --- +# Std PrintPdf/ru + @@ -40,4 +42,7 @@ The **Std PrintPdf** command is primarily intended to create [PDF](PDF.md) files {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PrintPdf/ru diff --git a/wiki/translations/ru/Std_PrintPreview.md b/wiki/translations/ru/Std_PrintPreview.md index 92ed10f79c..8672c9026c 100644 --- a/wiki/translations/ru/Std_PrintPreview.md +++ b/wiki/translations/ru/Std_PrintPreview.md @@ -7,6 +7,8 @@ SeeAlso:File [Печать](Std_Print/ru.md) --- +# Std PrintPreview/ru + ## Описание The **Std PrintPreview** command will show a preview of the result of the [Std Print](Std_Print.md) command. You can also print directly from the preview dialog box. @@ -28,4 +30,7 @@ The **Std PrintPreview** command will show a preview of the result of the [Std P {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PrintPreview/ru diff --git a/wiki/translations/ru/Std_ProjectInfo.md b/wiki/translations/ru/Std_ProjectInfo.md index 299911d4d9..98850cf78f 100644 --- a/wiki/translations/ru/Std_ProjectInfo.md +++ b/wiki/translations/ru/Std_ProjectInfo.md @@ -7,6 +7,8 @@ SeeAlso:[Std New](Std_New/ru.md) --- +# Std ProjectInfo/ru + ## Описание The **Std ProjectInfo** command shows a dialog box with project information belonging to the active document. Some of this information can be edited. @@ -42,4 +44,7 @@ The **Std ProjectInfo** command shows a dialog box with project information belo {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ProjectInfo/ru diff --git a/wiki/translations/ru/Std_ProjectUtil.md b/wiki/translations/ru/Std_ProjectUtil.md index 1be6f7dc81..7bdad69f21 100644 --- a/wiki/translations/ru/Std_ProjectUtil.md +++ b/wiki/translations/ru/Std_ProjectUtil.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std ProjectUtil/ru + ## Описание With the **Std ProjectUtil** command you can extract files from a FreeCAD project file ({{FileName|*.FCStd}}), which is in fact a [ZIP](https://en.wikipedia.org/wiki/Zip_(file_format)) file, and, after manual edits, create a new project file from them. @@ -51,4 +53,7 @@ It is important to realize that the files inside a FreeCAD project file are inte {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ProjectUtil/ru diff --git a/wiki/translations/ru/Std_PythonHelp.md b/wiki/translations/ru/Std_PythonHelp.md index df5ab92d43..f08ee3433e 100644 --- a/wiki/translations/ru/Std_PythonHelp.md +++ b/wiki/translations/ru/Std_PythonHelp.md @@ -7,6 +7,8 @@ SeeAlso:[Std FreeCADPowerUserHub](Std_FreeCADPowerUserHub/ru.md) --- +# Std PythonHelp/ru + ## Описание The **Std PythonHelp** command starts a web server that communicates with the system\'s default Internet browser over a local socket. The web server displays information about the available [Python](Python.md) modules, classes and functions of FreeCAD. The required pages are generated automatically. @@ -24,4 +26,7 @@ The web server is based on Python\'s [pydoc](https://docs.python.org/3.8/library {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std PythonHelp/ru diff --git a/wiki/translations/ru/Std_Quit.md b/wiki/translations/ru/Std_Quit.md index c88fd2e4b1..2c8b0a93cb 100644 --- a/wiki/translations/ru/Std_Quit.md +++ b/wiki/translations/ru/Std_Quit.md @@ -8,6 +8,8 @@ SeeAlso:[Std Open](Std_Open/ru.md) --- +# Std Quit/ru + @@ -39,4 +41,7 @@ The **Std Quit** command closes the FreeCAD application and optionally saves uns {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Quit/ru diff --git a/wiki/translations/ru/Std_RandomColor.md b/wiki/translations/ru/Std_RandomColor.md index 104db52fa0..aba0840477 100644 --- a/wiki/translations/ru/Std_RandomColor.md +++ b/wiki/translations/ru/Std_RandomColor.md @@ -6,6 +6,8 @@ Workbenches:Все --- +# Std RandomColor/ru + ## Описание Команда **Std RandomColor** меняет случайным образом атрибут {{PropertyView/ru|Shape Color}} выбранных объектов. @@ -27,4 +29,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std RandomColor/ru diff --git a/wiki/translations/ru/Std_RecentFiles.md b/wiki/translations/ru/Std_RecentFiles.md index 575bce72ce..91df2496af 100644 --- a/wiki/translations/ru/Std_RecentFiles.md +++ b/wiki/translations/ru/Std_RecentFiles.md @@ -8,6 +8,8 @@ SeeAlso:[Открыть](Std_Open/ru.md), [Импортировать](Std_Import/ru.md) --- +# Std RecentFiles/ru + ## Описание The **Std RecentFiles** menu option displays a list of recent files which can be opened. @@ -32,4 +34,7 @@ The **Std RecentFiles** menu option displays a list of recent files which can be {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std RecentFiles/ru diff --git a/wiki/translations/ru/Std_Redo.md b/wiki/translations/ru/Std_Redo.md index 46e570e9c9..56de09999b 100644 --- a/wiki/translations/ru/Std_Redo.md +++ b/wiki/translations/ru/Std_Redo.md @@ -8,6 +8,8 @@ SeeAlso:[Отмена](Std_Undo/ru.md) --- +# Std Redo/ru + ## Описание Команда **Вернуть** отменяет действие команды [Отменить](Std_Undo/ru.md). @@ -51,4 +53,7 @@ FreeCAD.ActiveDocument.redo() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Redo/ru diff --git a/wiki/translations/ru/Std_Refresh.md b/wiki/translations/ru/Std_Refresh.md index c130e82c4e..6b02d01f95 100644 --- a/wiki/translations/ru/Std_Refresh.md +++ b/wiki/translations/ru/Std_Refresh.md @@ -7,6 +7,8 @@ Shortcut:**F5** --- +# Std Refresh/ru + ## Описание The **Std Refresh** command recomputes the active document. The command is disabled if the document does not require a recompute. @@ -50,4 +52,7 @@ doc.recompute() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Refresh/ru diff --git a/wiki/translations/ru/Std_Revert.md b/wiki/translations/ru/Std_Revert.md index e01097f555..3fe4de25dd 100644 --- a/wiki/translations/ru/Std_Revert.md +++ b/wiki/translations/ru/Std_Revert.md @@ -6,6 +6,8 @@ Workbenches:All --- +# Std Revert/ru + @@ -28,4 +30,7 @@ The **Std Revert** command closes the active document and reopens the last saved {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Revert/ru diff --git a/wiki/translations/ru/Std_Save.md b/wiki/translations/ru/Std_Save.md index f7ee76c16b..42af23bcf6 100644 --- a/wiki/translations/ru/Std_Save.md +++ b/wiki/translations/ru/Std_Save.md @@ -8,6 +8,8 @@ SeeAlso:[Сохранить как...](Std_SaveAs/ru.md), [Std SaveCopy](Std_SaveaCopy/ru.md), [Std SaveAll](Std_SaveAll/ru.md) --- +# Std Save/ru + @@ -50,4 +52,7 @@ To save a document use the `save` method of the document object. A new document {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Save/ru diff --git a/wiki/translations/ru/Std_SaveAll.md b/wiki/translations/ru/Std_SaveAll.md index 91b271dae5..84e552b69c 100644 --- a/wiki/translations/ru/Std_SaveAll.md +++ b/wiki/translations/ru/Std_SaveAll.md @@ -7,6 +7,8 @@ SeeAlso:[Std Save](Std_Save/ru.md) --- +# Std SaveAll/ru + @@ -42,4 +44,7 @@ To save a document use the `save` method of the document object. A new document {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveAll/ru diff --git a/wiki/translations/ru/Std_SaveAs.md b/wiki/translations/ru/Std_SaveAs.md index a0e3dc184f..13fca8cc43 100644 --- a/wiki/translations/ru/Std_SaveAs.md +++ b/wiki/translations/ru/Std_SaveAs.md @@ -7,6 +7,8 @@ SeeAlso:[Сохранить копию](Std_SaveCopy/ru.md),
[Cохранить](Std_Save/ru.md) --- +# Std SaveAs/ru + ## Описание Команда **Сохранить как\...** позволяет сохранить текущий активный документ под другим названием. @@ -44,4 +46,7 @@ To save a document under a new name use the `saveAs` method of the document obje {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveAs/ru diff --git a/wiki/translations/ru/Std_SaveCopy.md b/wiki/translations/ru/Std_SaveCopy.md index 1775dca05a..81e0c4915f 100644 --- a/wiki/translations/ru/Std_SaveCopy.md +++ b/wiki/translations/ru/Std_SaveCopy.md @@ -7,6 +7,8 @@ SeeAlso:[Сохранить](Std_Save/ru.md),
[Сохранить как...](Std_SaveAs/ru.md) --- +# Std SaveCopy/ru + ## Описание Команда **Сохранить копию\...** сохраняет копию активного документа под новым названием. @@ -56,4 +58,7 @@ doc.saveCopy(fnm) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SaveCopy/ru diff --git a/wiki/translations/ru/Std_SceneInspector.md b/wiki/translations/ru/Std_SceneInspector.md index fce2dd5842..8d1fd14ce0 100644 --- a/wiki/translations/ru/Std_SceneInspector.md +++ b/wiki/translations/ru/Std_SceneInspector.md @@ -5,6 +5,8 @@ Workbenches:All --- +# Std SceneInspector/ru + ## Описание The **Std SceneInspector** command opens a dialog box displaying an overview of all nodes in the [scenegraph](Scenegraph.md) of the active [3D view](3D_view.md). It is more a utility for programmers than for average users. It can be used to find out why the rendering is slow or why something isn\'t rendered properly. @@ -23,4 +25,7 @@ The **Std SceneInspector** command opens a dialog box displaying an overview of {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SceneInspector/ru diff --git a/wiki/translations/ru/Std_SelBack.md b/wiki/translations/ru/Std_SelBack.md index 3c252e10b8..128553ba75 100644 --- a/wiki/translations/ru/Std_SelBack.md +++ b/wiki/translations/ru/Std_SelBack.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkSelectLinked](Std_LinkSelectLinked.md), [Std LinkSelectLinkedFinal](Std_LinkSelectLinkedFinal.md), [Std LinkSelectAllLinks](Std_LinkSelectAllLinks.md), [Std SelForward](Std_SelForward.md) --- +# Std SelBack/ru + ## Описание The **Std SelBack** command restores the previous recorded [Tree view](Tree_view.md) selection. Note that selections are only recorded if [Tree RecordSelection mode](Std_TreeRecordSelection.md) is switched on. @@ -27,4 +29,7 @@ The **Std SelBack** command restores the previous recorded [Tree view](Tree_view {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelBack/ru diff --git a/wiki/translations/ru/Std_SelBoundingBox.md b/wiki/translations/ru/Std_SelBoundingBox.md index c795e14bcb..2fc893e8d3 100644 --- a/wiki/translations/ru/Std_SelBoundingBox.md +++ b/wiki/translations/ru/Std_SelBoundingBox.md @@ -7,6 +7,8 @@ SeeAlso:[Std DrawStyle](Std_DrawStyle/ru.md) --- +# Std SelBoundingBox/ru + @@ -52,4 +54,7 @@ FreeCADGui.updateCommands() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelBoundingBox/ru diff --git a/wiki/translations/ru/Std_SelForward.md b/wiki/translations/ru/Std_SelForward.md index 4d6066b9e7..9668287f92 100644 --- a/wiki/translations/ru/Std_SelForward.md +++ b/wiki/translations/ru/Std_SelForward.md @@ -7,6 +7,8 @@ SeeAlso:[Std LinkSelectLinked](Std_LinkSelectLinked.md), [Std LinkSelectLinkedFinal](Std_LinkSelectLinkedFinal.md), [Std LinkSelectAllLinks](Std_LinkSelectAllLinks.md), [Std SelBack](Std_SelBack.md) --- +# Std SelForward/ru + ## Описание The **Std SelForward** command restores the next recorded [Tree view](Tree_view.md) selection. Note that selections are only recorded if [Tree RecordSelection mode](Std_TreeRecordSelection.md) is switched on. @@ -27,4 +29,7 @@ The **Std SelForward** command restores the next recorded [Tree view](Tree_view. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelForward/ru diff --git a/wiki/translations/ru/Std_SelectAll.md b/wiki/translations/ru/Std_SelectAll.md index a2f4b47585..7d5cf50702 100644 --- a/wiki/translations/ru/Std_SelectAll.md +++ b/wiki/translations/ru/Std_SelectAll.md @@ -7,6 +7,8 @@ SeeAlso:[Выделить область](Std_BoxSelection/ru.md), [Область выбора элементов](Std_BoxElementSelection/ru.md) --- +# Std SelectAll/ru + ## Описание The **Std SelectAll** command selects all objects in the [Tree view](Tree_view.md). @@ -25,4 +27,7 @@ The **Std SelectAll** command selects all objects in the [Tree view](Tree_view.m {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelectAll/ru diff --git a/wiki/translations/ru/Std_SelectVisibleObjects.md b/wiki/translations/ru/Std_SelectVisibleObjects.md index 5aa56d0201..413398806e 100644 --- a/wiki/translations/ru/Std_SelectVisibleObjects.md +++ b/wiki/translations/ru/Std_SelectVisibleObjects.md @@ -7,6 +7,8 @@ Workbenches:All --- +# Std SelectVisibleObjects/ru + @@ -24,4 +26,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SelectVisibleObjects/ru diff --git a/wiki/translations/ru/Std_SendToPythonConsole.md b/wiki/translations/ru/Std_SendToPythonConsole.md index d972b884f0..8c7c94826b 100644 --- a/wiki/translations/ru/Std_SendToPythonConsole.md +++ b/wiki/translations/ru/Std_SendToPythonConsole.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Std SendToPythonConsole/ru + ## Описание The **Std SendToPythonConsole** command creates a variable in the [Python console](Python_console.md) referencing a selected object. If a subshape of the object is selected two additional variables are created, one referencing the shape of the object and the other referencing the subshape itself. The variables and the code involved can be used to development Python code. @@ -35,4 +37,7 @@ The **Std SendToPythonConsole** command creates a variable in the [Python consol {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SendToPythonConsole/ru diff --git a/wiki/translations/ru/Std_SetAppearance.md b/wiki/translations/ru/Std_SetAppearance.md index 34fc669f98..f34f2ed9bc 100644 --- a/wiki/translations/ru/Std_SetAppearance.md +++ b/wiki/translations/ru/Std_SetAppearance.md @@ -8,6 +8,8 @@ SeeAlso:[Part FaceColors](Part_FaceColors/ru.md) --- +# Std SetAppearance/ru + ## Описание The **Std SetAppearance** command shows the Display properties [task panel](Task_panel.md) for selected objects. @@ -54,4 +56,7 @@ The **Std SetAppearance** command shows the Display properties [task panel](Task {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std SetAppearance/ru diff --git a/wiki/translations/ru/Std_SetColors.md b/wiki/translations/ru/Std_SetColors.md index 91992f3aef..655f5b01b6 100644 --- a/wiki/translations/ru/Std_SetColors.md +++ b/wiki/translations/ru/Std_SetColors.md @@ -1,2 +1,5 @@ # Std SetColors/ru 1. REDIRECT [Part\_FaceColors/ru](Part_FaceColors/ru.md) + +--- +[documentation index](../README.md) > Std SetColors/ru diff --git a/wiki/translations/ru/Std_ShowObjects.md b/wiki/translations/ru/Std_ShowObjects.md index 1839f7746c..3a8f39acd4 100644 --- a/wiki/translations/ru/Std_ShowObjects.md +++ b/wiki/translations/ru/Std_ShowObjects.md @@ -7,6 +7,8 @@ SeeAlso:[Std ToggleVisibility](Std_ToggleVisibility/ru.md), [Std ShowSelection](Std_ShowSelection/ru.md), [Std HideSelection](Std_HideSelection/ru.md), [Std ToggleObjects](Std_ToggleObjects/ru.md), [Std HideObjects](Std_HideObjects/ru.md) --- +# Std ShowObjects/ru + ## Описание The **Std ShowObjects** command shows all objects belonging to the active document in [3D views](3D_view.md). Be careful when you use this command as it will also show sub-elements of [PartDesign bodies](PartDesign_Body.md) and objects used for [Part Booleans](Part_Boolean.md). In most cases these should stay invisible. @@ -35,4 +37,7 @@ The **Std ShowObjects** command shows all objects belonging to the active docume {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ShowObjects/ru diff --git a/wiki/translations/ru/Std_ShowSelection.md b/wiki/translations/ru/Std_ShowSelection.md index 4f78743b4b..7beec69693 100644 --- a/wiki/translations/ru/Std_ShowSelection.md +++ b/wiki/translations/ru/Std_ShowSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Std ToggleVisibility](Std_ToggleVisibility/ru.md), [Std HideSelection](Std_HideSelection/ru.md), [Std ToggleObjects](Std_ToggleObjects/ru.md), [Std ShowObjects](Std_ShowObjects/ru.md), [Std HideObjects](Std_HideObjects/ru.md) --- +# Std ShowSelection/ru + @@ -54,4 +56,7 @@ For a scripting example see [Std ToggleVisibility](Std_ToggleVisibility.md). {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ShowSelection/ru diff --git a/wiki/translations/ru/Std_TextDocument.md b/wiki/translations/ru/Std_TextDocument.md index 4eb40a7bd7..f7a745f933 100644 --- a/wiki/translations/ru/Std_TextDocument.md +++ b/wiki/translations/ru/Std_TextDocument.md @@ -8,6 +8,8 @@ SeeAlso:[Draft ShapeString](Draft_ShapeString/ru.md), [Draft Text](Draft_Text/ru.md) --- +# Std TextDocument/ru + ## Описание The **Std TextDocument** command creates an object capable of holding arbitrary text. This element can be used to write general information or documentation about the model. @@ -65,4 +67,7 @@ App.ActiveDocument.recompute() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TextDocument/ru diff --git a/wiki/translations/ru/Std_TextureMapping.md b/wiki/translations/ru/Std_TextureMapping.md index 89db3a1b72..c8a76310f3 100644 --- a/wiki/translations/ru/Std_TextureMapping.md +++ b/wiki/translations/ru/Std_TextureMapping.md @@ -6,6 +6,8 @@ Workbenches:Все --- +# Std TextureMapping/ru + ## Описание The **Std TextureMapping** command temporarily maps a texture onto all objects in a [3D view](3D_view.md). @@ -26,4 +28,7 @@ The **Std TextureMapping** command temporarily maps a texture onto all objects i {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TextureMapping/ru diff --git a/wiki/translations/ru/Std_TileWindows.md b/wiki/translations/ru/Std_TileWindows.md index f8ea14b405..90be047f22 100644 --- a/wiki/translations/ru/Std_TileWindows.md +++ b/wiki/translations/ru/Std_TileWindows.md @@ -6,6 +6,8 @@ SeeAlso:[Std CascadeWindows](Std_CascadeWindows.md) --- +# Std TileWindows/ru + ## Описание The **Std TileWindows** command rearranges the windows in the [Main view area](Main_view_area.md) so that they are all visible and do not overlap. The result is determined by the order in which the windows were last activated. @@ -24,4 +26,7 @@ The **Std TileWindows** command rearranges the windows in the [Main view area](M {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TileWindows/ru diff --git a/wiki/translations/ru/Std_ToggleBreakpoint.md b/wiki/translations/ru/Std_ToggleBreakpoint.md index affb4ef176..6233a24a43 100644 --- a/wiki/translations/ru/Std_ToggleBreakpoint.md +++ b/wiki/translations/ru/Std_ToggleBreakpoint.md @@ -1,3 +1,4 @@ +# Std ToggleBreakpoint/ru --- - GuiCommand:/ru Name:Std DebugToggle Name/ru:Std DebugToggle Workbenches:All MenuLocation:[[Std Macro Menu/ru Макро]] → Установить/снять точку останова |Shortcut:F9 SeeAlso:--- @@ -14,4 +15,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleBreakpoint/ru diff --git a/wiki/translations/ru/Std_ToggleClipPlane.md b/wiki/translations/ru/Std_ToggleClipPlane.md index 015d5155f6..fa7b4759cd 100644 --- a/wiki/translations/ru/Std_ToggleClipPlane.md +++ b/wiki/translations/ru/Std_ToggleClipPlane.md @@ -6,6 +6,8 @@ Workbenches:Все --- +# Std ToggleClipPlane/ru + ## Описание The **Std ToggleClipPlane** command temporarily hides objects and parts of objects on one side of up to three virtual planes in the active [3D view](3D_view.md). @@ -40,4 +42,7 @@ The **Std ToggleClipPlane** command temporarily hides objects and parts of objec {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleClipPlane/ru diff --git a/wiki/translations/ru/Std_ToggleNavigation.md b/wiki/translations/ru/Std_ToggleNavigation.md index 177ef51b3e..5a6bbf4f65 100644 --- a/wiki/translations/ru/Std_ToggleNavigation.md +++ b/wiki/translations/ru/Std_ToggleNavigation.md @@ -7,6 +7,8 @@ Shortcut:**Esc** --- +# Std ToggleNavigation/ru + ## Описание The **Std ToggleNavigation** command is intended for certain inspection operations and certain interactive mesh editing operations. These operations are quite \'expensive\' and therefore rely on an edit mode during which most navigation options are disabled. With this command it is possible to temporarily switch from edit mode to navigation mode, and, after changing the [3D view](3D_view.md), switch back to edit mode. @@ -49,4 +51,7 @@ The **Std ToggleNavigation** command is intended for certain inspection operatio {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleNavigation/ru diff --git a/wiki/translations/ru/Std_ToggleObjects.md b/wiki/translations/ru/Std_ToggleObjects.md index b41a3e006c..7395045145 100644 --- a/wiki/translations/ru/Std_ToggleObjects.md +++ b/wiki/translations/ru/Std_ToggleObjects.md @@ -8,6 +8,8 @@ SeeAlso:[Std ToggleVisibility](Std_ToggleVisibility/ru.md), [Std ShowSelection](Std_ShowSelection/ru.md), [Std HideSelection](Std_HideSelection/ru.md), [Std ShowObjects](Std_ShowObjects/ru.md), [Std HideObjects](Std_HideObjects/ru.md) --- +# Std ToggleObjects/ru + @@ -42,4 +44,7 @@ The **Std ToggleObjects** command toggles the visibility of all objects belongin {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleObjects/ru diff --git a/wiki/translations/ru/Std_ToggleSelectability.md b/wiki/translations/ru/Std_ToggleSelectability.md index ffa259ad53..50487951fe 100644 --- a/wiki/translations/ru/Std_ToggleSelectability.md +++ b/wiki/translations/ru/Std_ToggleSelectability.md @@ -6,6 +6,8 @@ Workbenches:All --- +# Std ToggleSelectability/ru + ## Описание The **Std ToggleSelectability** command toggles the selectability of objects in [3D views](3D_view.md). @@ -49,4 +51,7 @@ else: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleSelectability/ru diff --git a/wiki/translations/ru/Std_ToggleVisibility.md b/wiki/translations/ru/Std_ToggleVisibility.md index 83db398985..8a51454a76 100644 --- a/wiki/translations/ru/Std_ToggleVisibility.md +++ b/wiki/translations/ru/Std_ToggleVisibility.md @@ -8,6 +8,8 @@ SeeAlso:[Показать выделенные](Std_ShowSelection/ru.md), [Скрыть выделенные](Std_HideSelection/ru.md), [Инвертировать все видимости](Std_ToggleObjects/ru.md), [Показать все объекты](Std_ShowObjects/ru.md), [Скрыть все объекты](Std_HideObjects/ru.md) --- +# Std ToggleVisibility/ru + ## Описание Команда **Видимость** переключает видимость выделенных объектов в окне [трёхмерного вида](3D_view/ru.md). @@ -66,4 +68,7 @@ else: {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleVisibility/ru diff --git a/wiki/translations/ru/Std_Tools_Menu.md b/wiki/translations/ru/Std_Tools_Menu.md index 4d78fe0053..f034888b0b 100644 --- a/wiki/translations/ru/Std_Tools_Menu.md +++ b/wiki/translations/ru/Std_Tools_Menu.md @@ -1,10 +1,4 @@ -# Std Tools Menu/ru - - - - - -Иконка стандартных инструментов +# Иконка стандартных инструментов Std Tools Menu/ru {{TOCright}} @@ -80,3 +74,6 @@ The Tools menu provides tools for debugging models, customizing FreeCAD\'s behav }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Tools Menu/ru diff --git a/wiki/translations/ru/Std_Transform.md b/wiki/translations/ru/Std_Transform.md index 1ff477e806..cc7faedf58 100644 --- a/wiki/translations/ru/Std_Transform.md +++ b/wiki/translations/ru/Std_Transform.md @@ -1,2 +1,5 @@ # Std Transform/ru 1. REDIRECT [Std\_TransformManip/ru](Std_TransformManip/ru.md) + +--- +[documentation index](../README.md) > Std Transform/ru diff --git a/wiki/translations/ru/Std_TransformManip.md b/wiki/translations/ru/Std_TransformManip.md index 345ad47740..c6bbb33dcd 100644 --- a/wiki/translations/ru/Std_TransformManip.md +++ b/wiki/translations/ru/Std_TransformManip.md @@ -8,6 +8,8 @@ SeeAlso:[Стандартные команды и инструменты](Std_Base/ru.md) --- +# Std TransformManip/ru + ## Описание This tool allows you to apply rotation increments or translation increments to an object. @@ -35,4 +37,7 @@ This tool allows you to apply rotation increments or translation increments to a {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TransformManip/ru diff --git a/wiki/translations/ru/Std_TreeCollapseDocument.md b/wiki/translations/ru/Std_TreeCollapseDocument.md index 5fd243e3df..cd63610d97 100644 --- a/wiki/translations/ru/Std_TreeCollapseDocument.md +++ b/wiki/translations/ru/Std_TreeCollapseDocument.md @@ -7,6 +7,8 @@ SeeAlso:[Std TreeSingleDocument](Std_TreeSingleDocument/ru.md), [Std TreeMultiDocument](Std_TreeMultiDocument/ru.md) --- +# Std TreeCollapseDocument/ru + @@ -30,4 +32,7 @@ The Tree view DocumentMode mode is stored: **Tools → Edit parameters... → Ba {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeCollapseDocument/ru diff --git a/wiki/translations/ru/Std_TreeDrag.md b/wiki/translations/ru/Std_TreeDrag.md index 6fe6318583..2b8366350e 100644 --- a/wiki/translations/ru/Std_TreeDrag.md +++ b/wiki/translations/ru/Std_TreeDrag.md @@ -7,6 +7,8 @@ Shortcut:**T** **D** --- +# Std TreeDrag/ru + @@ -30,4 +32,7 @@ The **Std TreeDrag** command initiates a drag operation for selected objects in {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeDrag/ru diff --git a/wiki/translations/ru/Std_TreeMultiDocument.md b/wiki/translations/ru/Std_TreeMultiDocument.md index 78895767c0..83e400540f 100644 --- a/wiki/translations/ru/Std_TreeMultiDocument.md +++ b/wiki/translations/ru/Std_TreeMultiDocument.md @@ -7,6 +7,8 @@ SeeAlso:[Std TreeSingleDocument](Std_TreeSingleDocument/ru.md), [Std TreeCollapseDocument](Std_TreeCollapseDocument/ru.md) --- +# Std TreeMultiDocument/ru + @@ -30,4 +32,7 @@ The Tree view DocumentMode mode is stored: **Tools → Edit parameters... → Ba {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeMultiDocument/ru diff --git a/wiki/translations/ru/Std_TreePreSelection.md b/wiki/translations/ru/Std_TreePreSelection.md index 6ce5426975..beeeec1399 100644 --- a/wiki/translations/ru/Std_TreePreSelection.md +++ b/wiki/translations/ru/Std_TreePreSelection.md @@ -7,6 +7,8 @@ Shortcut:**T** **4** --- +# Std TreePreSelection/ru + @@ -31,4 +33,7 @@ The Tree view PreSelection mode can also be set in the [Preferences editor](Pref {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreePreSelection/ru diff --git a/wiki/translations/ru/Std_TreeRecordSelection.md b/wiki/translations/ru/Std_TreeRecordSelection.md index 39818693af..76b98f212e 100644 --- a/wiki/translations/ru/Std_TreeRecordSelection.md +++ b/wiki/translations/ru/Std_TreeRecordSelection.md @@ -7,6 +7,8 @@ Shortcut:**T** **5** --- +# Std TreeRecordSelection/ru + @@ -31,4 +33,7 @@ The Tree view RecordSelection mode can also be set in the [Preferences editor](P {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeRecordSelection/ru diff --git a/wiki/translations/ru/Std_TreeSelection.md b/wiki/translations/ru/Std_TreeSelection.md index 6cf68834b8..692a1f8339 100644 --- a/wiki/translations/ru/Std_TreeSelection.md +++ b/wiki/translations/ru/Std_TreeSelection.md @@ -7,6 +7,8 @@ Shortcut:**T** **G** --- +# Std TreeSelection/ru + @@ -31,4 +33,7 @@ If the Tree view [SyncSelection](Std_TreeSyncSelection.md) mode is off, the Tree {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSelection/ru diff --git a/wiki/translations/ru/Std_TreeSingleDocument.md b/wiki/translations/ru/Std_TreeSingleDocument.md index c6f2c4c509..4dc807bcdd 100644 --- a/wiki/translations/ru/Std_TreeSingleDocument.md +++ b/wiki/translations/ru/Std_TreeSingleDocument.md @@ -7,6 +7,8 @@ SeeAlso:[Std TreeMultiDocument](Std_TreeMultiDocument/ru.md), [Std TreeCollapseDocument](Std_TreeCollapseDocument/ru.md) --- +# Std TreeSingleDocument/ru + @@ -32,4 +34,7 @@ The Tree view DocumentMode mode is stored: **Tools → Edit parameters... → Ba {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSingleDocument/ru diff --git a/wiki/translations/ru/Std_TreeSyncPlacement.md b/wiki/translations/ru/Std_TreeSyncPlacement.md index 05fbf45c07..5d153979eb 100644 --- a/wiki/translations/ru/Std_TreeSyncPlacement.md +++ b/wiki/translations/ru/Std_TreeSyncPlacement.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Std TreeSyncPlacement/ru + ## Описание Команда **Std TreeSyncPlacement** переключает режим SyncPlacement [древа проекта](Tree_view/ru.md). Если этот режим включен, параметр **Placement** объектов автоматически корректируется, когда они перетаскиваются из одного контейнера в другой с другой системой координат, сохраняя их расположение относительно глобальной системы координат. @@ -29,4 +31,7 @@ The Tree view SyncPlacement mode is stored: **Tools → Edit parameters... → B {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSyncPlacement/ru diff --git a/wiki/translations/ru/Std_TreeSyncSelection.md b/wiki/translations/ru/Std_TreeSyncSelection.md index 8e77462d10..b0c7af64ba 100644 --- a/wiki/translations/ru/Std_TreeSyncSelection.md +++ b/wiki/translations/ru/Std_TreeSyncSelection.md @@ -8,6 +8,8 @@ Version:0.19 --- +# Std TreeSyncSelection/ru + ## Описание The **Std TreeSyncSelection** command toggles the [Tree view](Tree_view.md) SyncSelection mode. If this mode is on, selecting an object in a [3D view](3D_view.md) will automatically expand the Tree view to show that object. @@ -29,4 +31,7 @@ The Tree view SyncSelection mode can also be set in the [Preferences editor](Pre {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSyncSelection/ru diff --git a/wiki/translations/ru/Std_TreeSyncView.md b/wiki/translations/ru/Std_TreeSyncView.md index e6e1ad0955..bd423b5d30 100644 --- a/wiki/translations/ru/Std_TreeSyncView.md +++ b/wiki/translations/ru/Std_TreeSyncView.md @@ -7,6 +7,8 @@ Shortcut:**T** **1** --- +# Std TreeSyncView/ru + @@ -31,4 +33,7 @@ The Tree view SyncView mode can also be set in the [Preferences editor](Preferen {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std TreeSyncView/ru diff --git a/wiki/translations/ru/Std_Undo.md b/wiki/translations/ru/Std_Undo.md index 215f801f36..2d7da909af 100644 --- a/wiki/translations/ru/Std_Undo.md +++ b/wiki/translations/ru/Std_Undo.md @@ -8,6 +8,8 @@ SeeAlso:[Вернуть](Std_Redo/ru.md) --- +# Std Undo/ru + ## Описание Команда \"Отменить\", отменяет последнее действие. @@ -50,4 +52,7 @@ FreeCAD.ActiveDocument.undo() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Undo/ru diff --git a/wiki/translations/ru/Std_UnitsCalculator.md b/wiki/translations/ru/Std_UnitsCalculator.md index 69429beee0..a287f44c3f 100644 --- a/wiki/translations/ru/Std_UnitsCalculator.md +++ b/wiki/translations/ru/Std_UnitsCalculator.md @@ -6,6 +6,8 @@ Workbenches:Все --- +# Std UnitsCalculator/ru + ## Описание The **Std UnitsCalculator** command opens the Units calculator dialog box. The Units calculator can be used to convert values from one unit system to another. @@ -58,4 +60,7 @@ The **Std UnitsCalculator** command opens the Units calculator dialog box. The U {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std UnitsCalculator/ru diff --git a/wiki/translations/ru/Std_ViewBottom.md b/wiki/translations/ru/Std_ViewBottom.md index f8578ccf7c..a4467fe60b 100644 --- a/wiki/translations/ru/Std_ViewBottom.md +++ b/wiki/translations/ru/Std_ViewBottom.md @@ -8,6 +8,8 @@ SeeAlso:[Std ViewRear](Std_ViewRear/ru.md), [Std ViewLeft](Std_ViewLeft/ru.md) --- +# Std ViewBottom/ru + ## Описание The **Std ViewBottom** command points the camera in the active [3D view](3D_view.md) in the direction of the positive Z axis. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewBottom/ru diff --git a/wiki/translations/ru/Std_ViewBoxZoom.md b/wiki/translations/ru/Std_ViewBoxZoom.md index a948a4ca36..de0ada9fa5 100644 --- a/wiki/translations/ru/Std_ViewBoxZoom.md +++ b/wiki/translations/ru/Std_ViewBoxZoom.md @@ -8,6 +8,8 @@ SeeAlso:[Std ViewZoomIn](Std_ViewZoomIn/ru.md), [Std ViewZoomOut](Std_ViewZoomOut/ru.md) --- +# Std ViewBoxZoom/ru + ## Описание Команда **Std ViewBoxZoom** масштабирует вид в выделенной пользователем прямоугольной области до размеров всего активного [трёхмерного вида](3D_view.md). @@ -25,4 +27,7 @@ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewBoxZoom/ru diff --git a/wiki/translations/ru/Std_ViewCreate.md b/wiki/translations/ru/Std_ViewCreate.md index 100098530f..00c0a1af97 100644 --- a/wiki/translations/ru/Std_ViewCreate.md +++ b/wiki/translations/ru/Std_ViewCreate.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewDockUndockFullscreen](Std_ViewDockUndockFullscreen/ru.md), [Std ViewFullscreen](Std_ViewFullscreen/ru.md) --- +# Std ViewCreate/ru + ## Описание The **Std ViewCreate** command creates a new [3D view](3D_view.md) for the active document. Additional 3D views can be useful if you want to inspect the model from multiple directions or at different zoom levels. @@ -27,4 +29,7 @@ The **Std ViewCreate** command creates a new [3D view](3D_view.md) for the activ {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewCreate/ru diff --git a/wiki/translations/ru/Std_ViewDimetric.md b/wiki/translations/ru/Std_ViewDimetric.md index 79b64e71d2..092d9bd599 100644 --- a/wiki/translations/ru/Std_ViewDimetric.md +++ b/wiki/translations/ru/Std_ViewDimetric.md @@ -7,6 +7,8 @@ SeeAlso:[Изометрическая](Std_ViewIsometric/ru.md),
[Триметрическая](Std_ViewTrimetric/ru.md) --- +# Std ViewDimetric/ru + ## Описание The **Std ViewDimetric** command realigns the camera in the active [3D view](3D_view.md) to obtain a [dimetric](https://en.wikipedia.org/wiki/Axonometric_projection#Three_types) view. For a truly dimetric view the 3D view must be in [orthographic mode](Std_OrthographicCamera.md), but the command also works if the view is in [perspective mode](Std_PerspectiveCamera.md). @@ -40,4 +42,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewDimetric/ru diff --git a/wiki/translations/ru/Std_ViewDockUndockFullscreen.md b/wiki/translations/ru/Std_ViewDockUndockFullscreen.md index 5ef1f01601..fadf18a584 100644 --- a/wiki/translations/ru/Std_ViewDockUndockFullscreen.md +++ b/wiki/translations/ru/Std_ViewDockUndockFullscreen.md @@ -10,6 +10,8 @@ SeeAlso:[Std ViewFullscreen](Std_ViewFullscreen/ru.md), [Std MainFullscreen](Std_MainFullscreen/ru.md) --- +# Std ViewDockUndockFullscreen/ru + ## Введение [Окно трёхмерного просмотра](3D_view/ru.md) можно отсоединить от основного [интерфейса FreeCAD](Interface/ru.md) и, например, переместить на другой дисплей. @@ -55,4 +57,7 @@ The **Undocked** menu option undocks the active [3D view](3D_view.md) from the m {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewDockUndockFullscreen/ru diff --git a/wiki/translations/ru/Std_ViewFitAll.md b/wiki/translations/ru/Std_ViewFitAll.md index 597843764a..a10737dca3 100644 --- a/wiki/translations/ru/Std_ViewFitAll.md +++ b/wiki/translations/ru/Std_ViewFitAll.md @@ -8,6 +8,8 @@ SeeAlso:[Уместить выделенное](Std_ViewFitSelection/ru.md) --- +# Std ViewFitAll/ru + ## Описание The **Std ViewFitAll** command zooms and pans the camera so that all visible objects fit inside the active [3D view](3D_view.md). @@ -55,4 +57,7 @@ FreeCADGui.SendMsgToActiveView('ViewFit') {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFitAll/ru diff --git a/wiki/translations/ru/Std_ViewFitSelection.md b/wiki/translations/ru/Std_ViewFitSelection.md index 16a1cabece..b6512733f2 100644 --- a/wiki/translations/ru/Std_ViewFitSelection.md +++ b/wiki/translations/ru/Std_ViewFitSelection.md @@ -8,6 +8,8 @@ SeeAlso:[Уместить всё](Std_ViewFitAll/ru.md) --- +# Std ViewFitSelection/ru + ## Описание The **Std ViewFitSelection** command zooms and pans the camera so that all selected objects fit inside the active [3D view](3D_view.md). @@ -43,4 +45,7 @@ FreeCADGui.SendMsgToActiveView('ViewSelection') {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFitSelection/ru diff --git a/wiki/translations/ru/Std_ViewFront.md b/wiki/translations/ru/Std_ViewFront.md index 3b6f9356cd..2b3fc99fd4 100644 --- a/wiki/translations/ru/Std_ViewFront.md +++ b/wiki/translations/ru/Std_ViewFront.md @@ -8,6 +8,8 @@ SeeAlso:[Сверху](Std_ViewTop/ru.md), [Справа](Std_ViewRight/ru.md) --- +# Std ViewFront/ru + ## Описание Команда **Std ViewFront** направляет камеру в активном [окне трёхмерного просмотра](3D_view/ru.md) в положительном направлении оси Y. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFront/ru diff --git a/wiki/translations/ru/Std_ViewFullscreen.md b/wiki/translations/ru/Std_ViewFullscreen.md index c1571ba0e5..473628b35c 100644 --- a/wiki/translations/ru/Std_ViewFullscreen.md +++ b/wiki/translations/ru/Std_ViewFullscreen.md @@ -8,6 +8,8 @@ SeeAlso:[Std ViewDockUndockFullscreen](Std_ViewDockUndockFullscreen/ru.md), [Std MainFullscreen](Std_MainFullscreen/ru.md) --- +# Std ViewFullscreen/ru + ## Описание The **Std ViewFullscreen** command switches [3D views](3D_view.md) to and from fullscreen mode. 3D views are automatically [undocked](Std_ViewDockUndockFullscreen.md) for fullscreen mode. @@ -31,4 +33,7 @@ The **Std ViewFullscreen** command switches [3D views](3D_view.md) to and from f {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewFullscreen/ru diff --git a/wiki/translations/ru/Std_ViewHome.md b/wiki/translations/ru/Std_ViewHome.md index bbd0788fd0..333698f3cd 100644 --- a/wiki/translations/ru/Std_ViewHome.md +++ b/wiki/translations/ru/Std_ViewHome.md @@ -9,6 +9,8 @@ SeeAlso:[Уместить всё](Std_ViewFitAll/ru.md) --- +# Std ViewHome/ru + ## Описание The **Std ViewHome** command changes the camera in the active [3D view](3D_view.md) to the default camera orientation. And then zooms and pans the camera so that all visible objects fit inside the view. @@ -30,4 +32,7 @@ The **Std ViewHome** command changes the camera in the active [3D view](3D_view. {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewHome/ru diff --git a/wiki/translations/ru/Std_ViewIsometric.md b/wiki/translations/ru/Std_ViewIsometric.md index d9c1516123..0c365ca082 100644 --- a/wiki/translations/ru/Std_ViewIsometric.md +++ b/wiki/translations/ru/Std_ViewIsometric.md @@ -8,6 +8,8 @@ SeeAlso:[Диметрическая](Std_ViewDimetric/ru.md), [Триметрическая](Std_ViewTrimetric/ru.md) --- +# Std ViewIsometric/ru + ## Описание Команда **Std ViewIsometric** перестраивает камеру в активном [окне трёхмерного вида](3D_view/ru.md) для получения [изометрического](https://en.wikipedia.org/wiki/Isometric_projection) вида. Для истинно изометрического вида трехмерный вид должен находиться в [ортогональном режиме](Std_OrthographicCamera/ru.md), но команда также работает, если вид находится в [режиме перспективы](Std_PerspectiveCamera/ru.md). @@ -49,4 +51,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIsometric/ru diff --git a/wiki/translations/ru/Std_ViewIvIssueCamPos.md b/wiki/translations/ru/Std_ViewIvIssueCamPos.md index 3218efe9a1..cf2b28a622 100644 --- a/wiki/translations/ru/Std_ViewIvIssueCamPos.md +++ b/wiki/translations/ru/Std_ViewIvIssueCamPos.md @@ -7,6 +7,8 @@ SeeAlso:[Std FreezeViews](Std_FreezeViews/ru.md) --- +# Std ViewIvIssueCamPos/ru + ## Описание The **Std ViewIvIssueCamPos** command prints the camera settings of the active [3D view](3D_view.md) in the [Report view](Report_view.md) and the [Python console](Python_console.md). @@ -48,4 +50,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCamera() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvIssueCamPos/ru diff --git a/wiki/translations/ru/Std_ViewIvStereoInterleavedColumns.md b/wiki/translations/ru/Std_ViewIvStereoInterleavedColumns.md index 18a1aa6eb7..1a58aa5e24 100644 --- a/wiki/translations/ru/Std_ViewIvStereoInterleavedColumns.md +++ b/wiki/translations/ru/Std_ViewIvStereoInterleavedColumns.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewIvStereoRedGreen](Std_ViewIvStereoRedGreen/ru.md), [Std ViewIvStereoQuadBuff](Std_ViewIvStereoQuadBuff/ru.md), [Std ViewIvStereoInterleavedRows](Std_ViewIvStereoInterleavedRows/ru.md), [Std ViewIvStereoOff](Std_ViewIvStereoOff/ru.md) --- +# Std ViewIvStereoInterleavedColumns/ru + ## Описание The **Std ViewIvStereoInterleavedColumns** command changes the active [3D view](3D_view.md) to interleaved columns stereo view mode. To use this stereo mode a special graphics card, a special display and [glasses with polarized lenses](https://en.wikipedia.org/wiki/Polarized_3D_system) are requires. @@ -42,4 +44,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoInterleavedColumns/ru diff --git a/wiki/translations/ru/Std_ViewIvStereoInterleavedRows.md b/wiki/translations/ru/Std_ViewIvStereoInterleavedRows.md index 72e9866936..ab342b3084 100644 --- a/wiki/translations/ru/Std_ViewIvStereoInterleavedRows.md +++ b/wiki/translations/ru/Std_ViewIvStereoInterleavedRows.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewIvStereoRedGreen](Std_ViewIvStereoRedGreen/ru.md), [Std ViewIvStereoQuadBuff](Std_ViewIvStereoQuadBuff/ru.md), [Std ViewIvStereoInterleavedColumns](Std_ViewIvStereoInterleavedColumns/ru.md), [Std ViewIvStereoOff](Std_ViewIvStereoOff/ru.md) --- +# Std ViewIvStereoInterleavedRows/ru + ## Описание The **Std ViewIvStereoInterleavedRows** command changes the active [3D view](3D_view.md) to interleaved rows stereo view mode. To use this stereo mode a special graphics card, a special display and [glasses with polarized lenses](https://en.wikipedia.org/wiki/Polarized_3D_system) are requires. @@ -42,4 +44,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoInterleavedRows/ru diff --git a/wiki/translations/ru/Std_ViewIvStereoOff.md b/wiki/translations/ru/Std_ViewIvStereoOff.md index 5b88f63e43..9852825003 100644 --- a/wiki/translations/ru/Std_ViewIvStereoOff.md +++ b/wiki/translations/ru/Std_ViewIvStereoOff.md @@ -6,6 +6,8 @@ SeeAlso:[Std ViewIvStereoRedGreen](Std_ViewIvStereoRedGreen/ru.md), [Std ViewIvStereoQuadBuff](Std_ViewIvStereoQuadBuff/ru.md), [/ruStd ViewIvStereoInterleavedRows](Std_ViewIvStereoInterleavedRows.md), [Std ViewIvStereoInterleavedColumns](Std_ViewIvStereoInterleavedColumns/ru.md) --- +# Std ViewIvStereoOff/ru + ## Описание Команда **Std ViewIvStereoOff** выключает стерео режим в активном [3D view](3D_view/ru.md). @@ -37,4 +39,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoOff/ru diff --git a/wiki/translations/ru/Std_ViewIvStereoQuadBuff.md b/wiki/translations/ru/Std_ViewIvStereoQuadBuff.md index c0768a24bb..d65f81ba7e 100644 --- a/wiki/translations/ru/Std_ViewIvStereoQuadBuff.md +++ b/wiki/translations/ru/Std_ViewIvStereoQuadBuff.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewIvStereoRedGreen](Std_ViewIvStereoRedGreen/ru.md), [Std ViewIvStereoInterleavedRows](Std_ViewIvStereoInterleavedRows/ru.md), [Std ViewIvStereoInterleavedColumns](Std_ViewIvStereoInterleavedColumns/ru.md), [Std ViewIvStereoOff](Std_ViewIvStereoOff/ru.md) --- +# Std ViewIvStereoQuadBuff/ru + ## Описание The **Std ViewIvStereoQuadBuff** command changes the active [3D view](3D_view.md) to quad buffer stereo view mode. To use this stereo mode a special graphics card, a special display and [shutter glasses](https://en.wikipedia.org/wiki/Active_shutter_3D_system) are requires. @@ -42,4 +44,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoQuadBuff/ru diff --git a/wiki/translations/ru/Std_ViewIvStereoRedGreen.md b/wiki/translations/ru/Std_ViewIvStereoRedGreen.md index 894f3f05a7..d62871b705 100644 --- a/wiki/translations/ru/Std_ViewIvStereoRedGreen.md +++ b/wiki/translations/ru/Std_ViewIvStereoRedGreen.md @@ -7,6 +7,8 @@ SeeAlso:[Std ViewIvStereoQuadBuff](Std_ViewIvStereoQuadBuff/ru.md), [Std ViewIvStereoInterleavedRows](Std_ViewIvStereoInterleavedRows/ru.md), [Std ViewIvStereoInterleavedColumns](Std_ViewIvStereoInterleavedColumns/ru.md), [Std ViewIvStereoOff](Std_ViewIvStereoOff/ru.md) --- +# Std ViewIvStereoRedGreen/ru + ## Описание The **Std ViewIvStereoRedGreen** command changes the active [3D view](3D_view.md) to red/cyan, [anaglyph](https://en.wikipedia.org/wiki/Anaglyph_3D), stereo view mode. To use this stereo mode glasses with colored lenses are requires. @@ -42,4 +44,7 @@ FreeCADGui.ActiveDocument.ActiveView.getStereoType() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewIvStereoRedGreen/ru diff --git a/wiki/translations/ru/Std_ViewLeft.md b/wiki/translations/ru/Std_ViewLeft.md index d2c12dff4e..0c8b09c933 100644 --- a/wiki/translations/ru/Std_ViewLeft.md +++ b/wiki/translations/ru/Std_ViewLeft.md @@ -8,6 +8,8 @@ SeeAlso:[Std ViewRear](Std_ViewRear/ru.md), [Std ViewBottom](Std_ViewBottom/ru.md) --- +# Std ViewLeft/ru + ## Описание The **Std ViewLeft** command points the camera in the active [3D view](3D_view.md) in the direction of the positive X axis. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewLeft/ru diff --git a/wiki/translations/ru/Std_ViewRear.md b/wiki/translations/ru/Std_ViewRear.md index 375cf5794b..7b70b973a1 100644 --- a/wiki/translations/ru/Std_ViewRear.md +++ b/wiki/translations/ru/Std_ViewRear.md @@ -8,6 +8,8 @@ SeeAlso:[Снизу](Std_ViewBottom/ru.md), [Слева](Std_ViewLeft/ru.md) --- +# Std ViewRear/ru + ## Описание The **Std ViewRear** command points the camera in the active [3D view](3D_view.md) in the direction of the negative Y axis. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRear/ru diff --git a/wiki/translations/ru/Std_ViewRight.md b/wiki/translations/ru/Std_ViewRight.md index 7c14eb1092..f3eab71cd3 100644 --- a/wiki/translations/ru/Std_ViewRight.md +++ b/wiki/translations/ru/Std_ViewRight.md @@ -8,6 +8,8 @@ SeeAlso:[Спереди](Std_ViewFront/ru.md), [Сверху](Std_ViewTop/ru.md) --- +# Std ViewRight/ru + ## Описание The **Std ViewRight** command points the camera in the active [3D view](3D_view.md) in the direction of the negative X axis. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRight/ru diff --git a/wiki/translations/ru/Std_ViewRotateLeft.md b/wiki/translations/ru/Std_ViewRotateLeft.md index 588864ebad..c877dffdaa 100644 --- a/wiki/translations/ru/Std_ViewRotateLeft.md +++ b/wiki/translations/ru/Std_ViewRotateLeft.md @@ -8,6 +8,8 @@ SeeAlso:[Std ViewRotateRight](Std_ViewRotateRight/ru.md) --- +# Std ViewRotateLeft/ru + ## Описание The **Std ViewRotateLeft** command rotates the camera in the active [3D view](3D_view.md) around the view direction in 90-degree increments towards the left (counterclockwise). @@ -42,4 +44,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRotateLeft/ru diff --git a/wiki/translations/ru/Std_ViewRotateRight.md b/wiki/translations/ru/Std_ViewRotateRight.md index 38ebc4786c..2d62c0d2ad 100644 --- a/wiki/translations/ru/Std_ViewRotateRight.md +++ b/wiki/translations/ru/Std_ViewRotateRight.md @@ -8,6 +8,8 @@ SeeAlso:[Std ViewRotateLeft](Std_ViewRotateLeft/ru.md) --- +# Std ViewRotateRight/ru + ## Описание The **Std ViewRotateRight** command rotates the camera in the active [3D view](3D_view.md) around the view direction in 90-degree increments towards the right (clockwise). @@ -42,4 +44,7 @@ FreeCADGui.ActiveDocument.ActiveView.getCameraOrientation() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewRotateRight/ru diff --git a/wiki/translations/ru/Std_ViewScreenShot.md b/wiki/translations/ru/Std_ViewScreenShot.md index a43e6c451a..1df7fbe04d 100644 --- a/wiki/translations/ru/Std_ViewScreenShot.md +++ b/wiki/translations/ru/Std_ViewScreenShot.md @@ -7,6 +7,8 @@ SeeAlso:[Std Print](Std_Print/ru.md), [Std PrintPdf](Std_PrintPdf/ru.md) --- +# Std ViewScreenShot/ru + ## Описание The **Std ViewScreenShot** command opens a dialog box to create an image file, a screenshot, from the active [3D view](3D_view.md). @@ -124,4 +126,7 @@ App.closeDocument(App.ActiveDocument.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewScreenShot/ru diff --git a/wiki/translations/ru/Std_ViewStatusBar.md b/wiki/translations/ru/Std_ViewStatusBar.md index 36139cb057..eb949839b9 100644 --- a/wiki/translations/ru/Std_ViewStatusBar.md +++ b/wiki/translations/ru/Std_ViewStatusBar.md @@ -6,6 +6,8 @@ Workbenches:All --- +# Std ViewStatusBar/ru + ## Описание The **Std ViewStatusBar** command toggles the display of the [Status bar](Status_bar.md). @@ -20,4 +22,7 @@ The **Std ViewStatusBar** command toggles the display of the [Status bar](Status {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewStatusBar/ru diff --git a/wiki/translations/ru/Std_ViewTop.md b/wiki/translations/ru/Std_ViewTop.md index cb75549a73..56df813b90 100644 --- a/wiki/translations/ru/Std_ViewTop.md +++ b/wiki/translations/ru/Std_ViewTop.md @@ -8,6 +8,8 @@ SeeAlso:[Спереди](Std_ViewFront/ru.md), [Справа](Std_ViewRight/ru.md) --- +# Std ViewTop/ru + ## Описание The **Std ViewTop** command points the camera in the active [3D view](3D_view.md) in the direction of the negative Z axis. @@ -45,4 +47,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewTop/ru diff --git a/wiki/translations/ru/Std_ViewTrimetric.md b/wiki/translations/ru/Std_ViewTrimetric.md index 7969ff830a..9a759abddc 100644 --- a/wiki/translations/ru/Std_ViewTrimetric.md +++ b/wiki/translations/ru/Std_ViewTrimetric.md @@ -7,6 +7,8 @@ SeeAlso:[Изометрическая](Std_ViewIsometric/ru.md), [Диметрическая](Std_ViewDimetric/ru.md) --- +# Std ViewTrimetric/ru + ## Описание The **Std ViewTrimetric** command realigns the camera in the active [3D view](3D_view.md) to obtain a [trimetric](https://en.wikipedia.org/wiki/Axonometric_projection#Three_types) view. For a truly trimetric view the 3D view must be in [orthographic mode](Std_OrthographicCamera.md), but the command also works if the view is in [perspective mode](Std_PerspectiveCamera.md). @@ -40,4 +42,7 @@ FreeCADGui.ActiveDocument.ActiveView.getViewDirection() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewTrimetric/ru diff --git a/wiki/translations/ru/Std_ViewZoomIn.md b/wiki/translations/ru/Std_ViewZoomIn.md index 33d1f600c8..8ef39717ef 100644 --- a/wiki/translations/ru/Std_ViewZoomIn.md +++ b/wiki/translations/ru/Std_ViewZoomIn.md @@ -8,6 +8,8 @@ SeeAlso:[Уменьшить](Std_ViewZoomOut/ru.md), [Увеличить область](Std_ViewBoxZoom/ru.md) --- +# Std ViewZoomIn/ru + ## Описание The **Std ViewZoomIn** command zooms in in the active [3D view](3D_view.md). @@ -48,4 +50,7 @@ FreeCADGui.ActiveDocument.ActiveView.zoomIn() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewZoomIn/ru diff --git a/wiki/translations/ru/Std_ViewZoomOut.md b/wiki/translations/ru/Std_ViewZoomOut.md index 01feea3871..91271b0096 100644 --- a/wiki/translations/ru/Std_ViewZoomOut.md +++ b/wiki/translations/ru/Std_ViewZoomOut.md @@ -8,6 +8,8 @@ SeeAlso:[Увеличить](Std_ViewZoomIn/ru.md), [Увеличить область](Std_ViewBoxZoom/ru.md) --- +# Std ViewZoomOut/ru + ## Описание The **Std ViewZoomOut** command zooms out in the active [3D view](3D_view.md). @@ -48,4 +50,7 @@ FreeCADGui.ActiveDocument.ActiveView.zoomOut() {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewZoomOut/ru diff --git a/wiki/translations/ru/Std_View_Menu.md b/wiki/translations/ru/Std_View_Menu.md index 38246da110..177a32e77b 100644 --- a/wiki/translations/ru/Std_View_Menu.md +++ b/wiki/translations/ru/Std_View_Menu.md @@ -1,10 +1,4 @@ -# Std View Menu/ru - - - - - -Иконка стандартных инструментов +# Иконка стандартных инструментов Std View Menu/ru {{TOCright}} @@ -182,3 +176,6 @@ }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std View Menu/ru diff --git a/wiki/translations/ru/Std_WhatsThis.md b/wiki/translations/ru/Std_WhatsThis.md index 95fe19dee9..7bebb65729 100644 --- a/wiki/translations/ru/Std_WhatsThis.md +++ b/wiki/translations/ru/Std_WhatsThis.md @@ -8,6 +8,8 @@ SeeAlso:[Online help](Std_OnlineHelp.md), [User hub](Std_FreeCADUserHub.md), [Help menu](Std_Help_Menu.md) --- +# Std WhatsThis/ru + @@ -40,4 +42,7 @@ Read this post to understand how the commands must be named in the code to match {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std WhatsThis/ru diff --git a/wiki/translations/ru/Std_Windows.md b/wiki/translations/ru/Std_Windows.md index b706b34910..64e27e8381 100644 --- a/wiki/translations/ru/Std_Windows.md +++ b/wiki/translations/ru/Std_Windows.md @@ -6,6 +6,8 @@ SeeAlso:[Std ActivateNextWindow](Std_ActivateNextWindow.md), [Std ActivatePrevWindow](Std_ActivatePrevWindow.md) --- +# Std Windows/ru + ## Описание The **Std Windows** command opens a dialog box with a list of [Main view area](Main_view_area.md) windows. From this list a selected window can be activated. @@ -36,4 +38,7 @@ The **Std Windows** command opens a dialog box with a list of [Main view area](M {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Windows/ru diff --git a/wiki/translations/ru/Std_Windows_Menu.md b/wiki/translations/ru/Std_Windows_Menu.md index 837b322c20..e2d414aa62 100644 --- a/wiki/translations/ru/Std_Windows_Menu.md +++ b/wiki/translations/ru/Std_Windows_Menu.md @@ -1,10 +1,4 @@ -# Std Windows Menu/ru - - - - - -Иконка стандартных инструментов +# Иконка стандартных инструментов Std Windows Menu/ru {{TOCright}} @@ -58,3 +52,6 @@ }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Windows Menu/ru diff --git a/wiki/translations/ru/Std_Workbench.md b/wiki/translations/ru/Std_Workbench.md index ac3d6a1317..169643dbd5 100644 --- a/wiki/translations/ru/Std_Workbench.md +++ b/wiki/translations/ru/Std_Workbench.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Std Workbench/ru + @@ -54,4 +56,7 @@ FreeCADGui.activateWorkbench("PartDesignWorkbench") {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Std Workbench/ru diff --git a/wiki/translations/ru/Surface_Module.md b/wiki/translations/ru/Surface_Module.md index 0c2ece373f..469f46b70a 100644 --- a/wiki/translations/ru/Surface_Module.md +++ b/wiki/translations/ru/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/ru 1. REDIRECT [Surface\_Workbench/ru](Surface_Workbench/ru.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/ru diff --git a/wiki/translations/ru/Surface_Workbench.md b/wiki/translations/ru/Surface_Workbench.md index 7293aa58b6..58ca39fdda 100644 --- a/wiki/translations/ru/Surface_Workbench.md +++ b/wiki/translations/ru/Surface_Workbench.md @@ -1,7 +1,4 @@ # Surface Workbench/ru - - -
@@ -69,3 +66,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/ru diff --git a/wiki/translations/ru/Svg_Namespace.md b/wiki/translations/ru/Svg_Namespace.md index 5875a94191..435b0929d4 100644 --- a/wiki/translations/ru/Svg_Namespace.md +++ b/wiki/translations/ru/Svg_Namespace.md @@ -1,7 +1,4 @@ # Svg Namespace/ru - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** @@ -233,3 +230,6 @@ See [Drawing templates](Drawing_templates.md) }} [Category:Poweruser\_Documentation](Category:Poweruser_Documentation.md) [Category:Developer](Category:Developer.md) [Category:Python\_Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Poweruser_Documentation](Category:Poweruser_Documentation.md) > Svg Namespace/ru diff --git a/wiki/translations/ru/Task_panel.md b/wiki/translations/ru/Task_panel.md index 0182506486..fefe143f22 100644 --- a/wiki/translations/ru/Task_panel.md +++ b/wiki/translations/ru/Task_panel.md @@ -1,5 +1,5 @@ # Task panel/ru - {{TOCright}} +{{TOCright}} ## Введение @@ -54,4 +54,7 @@ Gui::Control().closeDialog(); {{Interface navi -}} +}} + +--- +[documentation index](../README.md) > Task panel/ru diff --git a/wiki/translations/ru/Tasks_Placement.md b/wiki/translations/ru/Tasks_Placement.md index abdcd4c88c..64807e1d51 100644 --- a/wiki/translations/ru/Tasks_Placement.md +++ b/wiki/translations/ru/Tasks_Placement.md @@ -1,6 +1,4 @@ # Tasks Placement/ru - - ## Описание Command for modifying **Placement**. These options relate only to the position and orientation of the object in space, they do not affect other attributes of the shape. The placement is stored internally as a position, and a rotation (rotation axis and angle transformed into a quaternion [1](https://en.wikipedia.org/wiki/Quaternions_and_spatial_rotation)). While there are several methods to specify a rotation, for instance with a rotation center, this is only used to affect the rotation computation and is not stored for later operations. Similarly, if a rotation axis of (1,1,1) is specified, it may be normalized when stored in the quaternion and appear as (0.58, 0.58, 0.58) when browsing the object later. @@ -121,3 +119,6 @@ Other explanation on [Placement](Placement.md) [Category:Command\_Reference](Category:Command_Reference.md) + +--- +[documentation index](../README.md) > [Command_Reference](Category:Command_Reference.md) > Tasks Placement/ru diff --git a/wiki/translations/ru/TechDrawGui_API.md b/wiki/translations/ru/TechDrawGui_API.md index 9a0d881600..ff7b5092f1 100644 --- a/wiki/translations/ru/TechDrawGui_API.md +++ b/wiki/translations/ru/TechDrawGui_API.md @@ -1,5 +1,5 @@ # TechDrawGui API/ru - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** These functions are part of the [TechDraw Workbench](TechDraw_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `TechDrawGui` module has been imported. +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** These functions are part of the [TechDraw Workbench](TechDraw_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `TechDrawGui` module has been imported. See the [TechDraw API](TechDraw_API.md) for more functions. @@ -44,3 +44,6 @@ Options: }} [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > TechDrawGui API/ru diff --git a/wiki/translations/ru/TechDraw_2LineCenterLine.md b/wiki/translations/ru/TechDraw_2LineCenterLine.md index ef444b89c1..15021738f0 100644 --- a/wiki/translations/ru/TechDraw_2LineCenterLine.md +++ b/wiki/translations/ru/TechDraw_2LineCenterLine.md @@ -8,6 +8,8 @@ SeeAlso:[Добавить осевую линию к Граням](TechDraw_FaceCenterLine/ru.md), [Добавить осевую линию между 2 точками](TechDraw_2PointCenterLine/ru.md) --- +# TechDraw 2LineCenterLine/ru + ## Описание The 2LineCenterLine tool adds a centerline between two Edges. @@ -71,4 +73,7 @@ Centerlines are not accessible from [macros](Macros.md) or the [Python](Python.m {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2LineCenterLine/ru diff --git a/wiki/translations/ru/TechDraw_2PointCenterLine.md b/wiki/translations/ru/TechDraw_2PointCenterLine.md index 2c28c362d0..f691538d02 100644 --- a/wiki/translations/ru/TechDraw_2PointCenterLine.md +++ b/wiki/translations/ru/TechDraw_2PointCenterLine.md @@ -8,6 +8,8 @@ SeeAlso:[Добавить осевую линию к граням](TechDraw_FaceCenterLine/ru.md), [Добавить осевую линию между 2 линиями](TechDraw_2LineCenterLine/ru.md) --- +# TechDraw 2PointCenterLine/ru + ## Описание The 2PointCenterLine tool adds a centerline between two Vertices (Points). @@ -66,4 +68,7 @@ Centerlines are not accessible from [macros](Macros.md) or the [Python](Python.m {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2PointCenterLine/ru diff --git a/wiki/translations/ru/TechDraw_2PointCosmeticLine.md b/wiki/translations/ru/TechDraw_2PointCosmeticLine.md index 2a9aa1574f..1732b93765 100644 --- a/wiki/translations/ru/TechDraw_2PointCosmeticLine.md +++ b/wiki/translations/ru/TechDraw_2PointCosmeticLine.md @@ -8,6 +8,8 @@ SeeAlso:[Добавить осевую линию к граням](TechDraw_FaceCenterLine/ru.md), [Добавить осевую линию между 2 линиями](TechDraw_2LineCenterLine/ru.md) --- +# TechDraw 2PointCosmeticLine/ru + ## Описание The 2PointCosmeticLine tool adds a cosmetic line between two Vertices (Points). The vertices can be 2d or 3d. The resulting line can be used for dimensioning. The line\'s appearance can be modified using the [Remove Cosmetic Object](TechDraw_CosmeticEraser.md) tool. @@ -57,4 +59,7 @@ Cosmetic lines can be created using the makeCosmeticLine(v1, v2) or makeCosmetic {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 2PointCosmeticLine/ru diff --git a/wiki/translations/ru/TechDraw_3PtAngleDimension.md b/wiki/translations/ru/TechDraw_3PtAngleDimension.md index 265fc1889f..acfc9ab297 100644 --- a/wiki/translations/ru/TechDraw_3PtAngleDimension.md +++ b/wiki/translations/ru/TechDraw_3PtAngleDimension.md @@ -8,6 +8,8 @@ SeeAlso:[Указать угловой размер](TechDraw_AngleDimension/ru.md) --- +# TechDraw 3PtAngleDimension/ru + ## Описание The 3-Point Angle Dimension tool adds a angular dimension to a View. The dimension may be specified by selecting three Vertices on a View. **Note that the second of the three Vertices is the apex of the angle**. The Angle3Pt will initially be the projected angle (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -55,4 +57,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw 3PtAngleDimension/ru diff --git a/wiki/translations/ru/TechDraw_API.md b/wiki/translations/ru/TechDraw_API.md index 5aa1667f64..0c41a23ff0 100644 --- a/wiki/translations/ru/TechDraw_API.md +++ b/wiki/translations/ru/TechDraw_API.md @@ -1,5 +1,5 @@ # TechDraw API/ru - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** These functions are part of the [TechDraw Workbench](TechDraw_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `TechDraw` module has been imported. +**(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** These functions are part of the [TechDraw Workbench](TechDraw_Workbench.md) and can be used in [macros](macros.md) and from the [Python](Python.md) console once the `TechDraw` module has been imported. Good examples of basic TechDraw scripting can be found in the [unit test scripts](https://github.com/FreeCAD/FreeCAD/tree/master/src/Mod/TechDraw/TDTest). @@ -353,3 +353,6 @@ dvp.requestPaint() Redraw the graphic for this View. }} [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw API/ru diff --git a/wiki/translations/ru/TechDraw_ActiveView.md b/wiki/translations/ru/TechDraw_ActiveView.md index 57143a0645..587c1c7e15 100644 --- a/wiki/translations/ru/TechDraw_ActiveView.md +++ b/wiki/translations/ru/TechDraw_ActiveView.md @@ -8,6 +8,8 @@ SeeAlso:[Вставить SVG знак](TechDraw_Symbol/ru.md) --- +# TechDraw ActiveView/ru + ## Описание The ActiveView tool inserts a copy of a 3D window into a drawing page. @@ -78,4 +80,7 @@ TechDrawGui.copyActiveViewToSvgFile(Gui.ActiveDocument.ActiveView,"myFile.svg") {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ActiveView/ru diff --git a/wiki/translations/ru/TechDraw_AngleDimension.md b/wiki/translations/ru/TechDraw_AngleDimension.md index 7daa2f6ee9..9902179fe8 100644 --- a/wiki/translations/ru/TechDraw_AngleDimension.md +++ b/wiki/translations/ru/TechDraw_AngleDimension.md @@ -7,6 +7,8 @@ SeeAlso:[Указать угловой размер по 3 точкам](TechDraw_3PtAngleDimension/ru.md) --- +# TechDraw AngleDimension/ru + ## Описание The Angle Dimension tool adds a angular dimension to a View. The dimension may be the interior angle between any two straight line edges. The angle will initially be the projected angle (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -54,4 +56,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw AngleDimension/ru diff --git a/wiki/translations/ru/TechDraw_Annotation.md b/wiki/translations/ru/TechDraw_Annotation.md index d00d3088b1..99d6571be9 100644 --- a/wiki/translations/ru/TechDraw_Annotation.md +++ b/wiki/translations/ru/TechDraw_Annotation.md @@ -7,6 +7,8 @@ SeeAlso:[Текст](Draft_Text/ru.md), [Фигура из текста](Draft_ShapeString/ru.md) --- +# TechDraw Annotation/ru + ## Описание The Annotation tool adds a text block to a drawing page. @@ -71,4 +73,7 @@ rc = page.addView(anno) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Annotation/ru diff --git a/wiki/translations/ru/TechDraw_ArchView.md b/wiki/translations/ru/TechDraw_ArchView.md index dd36930505..934c8ac293 100644 --- a/wiki/translations/ru/TechDraw_ArchView.md +++ b/wiki/translations/ru/TechDraw_ArchView.md @@ -7,6 +7,8 @@ SeeAlso:[Плоскость Сечения](Arch_SectionPlane/ru.md) --- +# TechDraw ArchView/ru + ## Описание The ArchView tool inserts a view of an ** [Arch SectionPlane](Arch_SectionPlane.md)** on a [TechDraw page](TechDraw_PageDefault.md). @@ -76,4 +78,7 @@ rc = page.addView(dv) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ArchView/ru diff --git a/wiki/translations/ru/TechDraw_Balloon.md b/wiki/translations/ru/TechDraw_Balloon.md index 3eefbfde93..ceb0bb97b5 100644 --- a/wiki/translations/ru/TechDraw_Balloon.md +++ b/wiki/translations/ru/TechDraw_Balloon.md @@ -8,6 +8,8 @@ SeeAlso:[Вставить заметку](TechDraw_Annotation/ru.md) --- +# TechDraw Balloon/ru + ## Описание The Balloon tool can add balloons with leader line in a drawing. @@ -91,4 +93,7 @@ rc = page.addView(bal1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Balloon/ru diff --git a/wiki/translations/ru/TechDraw_Clip.md b/wiki/translations/ru/TechDraw_Clip.md index 720a6b9294..69a3f17438 100644 --- a/wiki/translations/ru/TechDraw_Clip.md +++ b/wiki/translations/ru/TechDraw_Clip.md @@ -1,2 +1,5 @@ # TechDraw Clip/ru 1. REDIRECT [TechDraw\_ClipGroup](TechDraw_ClipGroup.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Clip/ru diff --git a/wiki/translations/ru/TechDraw_ClipGroup.md b/wiki/translations/ru/TechDraw_ClipGroup.md index b08868a010..7fb3c04d34 100644 --- a/wiki/translations/ru/TechDraw_ClipGroup.md +++ b/wiki/translations/ru/TechDraw_ClipGroup.md @@ -7,6 +7,8 @@ SeeAlso:[Добавить Вид в группу](TechDraw_ClipGroupAdd/ru.md), [Удалить Вид из группы](TechDraw_ClipGroupRemove/ru.md) --- +# TechDraw ClipGroup/ru + ## Описание @@ -41,4 +43,7 @@ {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroup/ru diff --git a/wiki/translations/ru/TechDraw_ClipGroupAdd.md b/wiki/translations/ru/TechDraw_ClipGroupAdd.md index 141c4c702b..1ab4be5476 100644 --- a/wiki/translations/ru/TechDraw_ClipGroupAdd.md +++ b/wiki/translations/ru/TechDraw_ClipGroupAdd.md @@ -7,6 +7,8 @@ SeeAlso:[Создать группу Видов](TechDraw_ClipGroup/ru.md), [Удалить Вид из группы](TechDraw_ClipGroupRemove/ru.md) --- +# TechDraw ClipGroupAdd/ru + ## Описание Данный инструмент добавляет Вид в существующую группу Видов @@ -24,4 +26,7 @@ {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroupAdd/ru diff --git a/wiki/translations/ru/TechDraw_ClipGroupRemove.md b/wiki/translations/ru/TechDraw_ClipGroupRemove.md index 7d418bc64c..a255f8b44e 100644 --- a/wiki/translations/ru/TechDraw_ClipGroupRemove.md +++ b/wiki/translations/ru/TechDraw_ClipGroupRemove.md @@ -7,6 +7,8 @@ SeeAlso:[Создать группу Видов](TechDraw_ClipGroup/ru.md), [Добавить Вид в группу](TechDraw_ClipGroupAdd/ru.md) --- +# TechDraw ClipGroupRemove/ru + ## Описание Данный инструмент извлекает Вид из группы Видов и возвращает его обратно на лист. @@ -24,4 +26,7 @@ {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipGroupRemove/ru diff --git a/wiki/translations/ru/TechDraw_ClipMinus.md b/wiki/translations/ru/TechDraw_ClipMinus.md index 46460e97ae..f4fa81a273 100644 --- a/wiki/translations/ru/TechDraw_ClipMinus.md +++ b/wiki/translations/ru/TechDraw_ClipMinus.md @@ -1,2 +1,5 @@ # TechDraw ClipMinus/ru 1. REDIRECT [TechDraw\_ClipGroupRemove](TechDraw_ClipGroupRemove.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipMinus/ru diff --git a/wiki/translations/ru/TechDraw_ClipPlus.md b/wiki/translations/ru/TechDraw_ClipPlus.md index 3b999898f2..1a0e13e9b5 100644 --- a/wiki/translations/ru/TechDraw_ClipPlus.md +++ b/wiki/translations/ru/TechDraw_ClipPlus.md @@ -1,2 +1,5 @@ # TechDraw ClipPlus/ru 1. REDIRECT [TechDraw\_ClipGroupAdd](TechDraw_ClipGroupAdd.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ClipPlus/ru diff --git a/wiki/translations/ru/TechDraw_CosmeticEraser.md b/wiki/translations/ru/TechDraw_CosmeticEraser.md index 6700c99887..8999975c27 100644 --- a/wiki/translations/ru/TechDraw_CosmeticEraser.md +++ b/wiki/translations/ru/TechDraw_CosmeticEraser.md @@ -7,6 +7,8 @@ Version:0.19 --- +# TechDraw CosmeticEraser/ru + ## Описание The CosmeticEraser tool removes cosmetic objects from the page. Cosmetic objects are @@ -43,4 +45,7 @@ CosmeticEraser is not accessible from [macros](Macros.md) or the [Python](Python {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw CosmeticEraser/ru diff --git a/wiki/translations/ru/TechDraw_CosmeticVertex.md b/wiki/translations/ru/TechDraw_CosmeticVertex.md index bcbdc70b5e..345e8bce01 100644 --- a/wiki/translations/ru/TechDraw_CosmeticVertex.md +++ b/wiki/translations/ru/TechDraw_CosmeticVertex.md @@ -8,6 +8,8 @@ SeeAlso:[Добавить вершины по центрам граней](TechDraw_Midpoints/ru.md), [Добавить 4-ре вершины по краям окружности](TechDraw_Quadrants/ru.md) --- +# TechDraw CosmeticVertex/ru + ## Описание The Cosmetic Vertex tool adds a [Vertex](Glossary#V.md), which is not part of the source geometry, to a View. This Vertex behaves like any other vertex and can be used for dimensioning. @@ -60,4 +62,7 @@ dvp.makeCosmeticLine(start,end,style, weight, pyGreen) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw CosmeticVertex/ru diff --git a/wiki/translations/ru/TechDraw_DecorateLine.md b/wiki/translations/ru/TechDraw_DecorateLine.md index 28cde15a26..a680433831 100644 --- a/wiki/translations/ru/TechDraw_DecorateLine.md +++ b/wiki/translations/ru/TechDraw_DecorateLine.md @@ -8,6 +8,8 @@ SeeAlso:[Добавить осевую линию к граням](TechDraw_FaceCenterLine/ru.md), [Удалить вспомогательный объект](TechDraw_CosmeticEraser/ru.md) --- +# TechDraw DecorateLine/ru + ## Описание The DecorateLine tool changes the appearance of Edges. @@ -47,4 +49,7 @@ DecorateLine is not accessible from [macros](Macros.md) or the [Python](Python.m {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DecorateLine/ru diff --git a/wiki/translations/ru/TechDraw_DetailView.md b/wiki/translations/ru/TechDraw_DetailView.md index c4b84ffac4..823408441d 100644 --- a/wiki/translations/ru/TechDraw_DetailView.md +++ b/wiki/translations/ru/TechDraw_DetailView.md @@ -7,6 +7,8 @@ SeeAlso:[Вставить Вид](TechDraw_View/ru.md), [Вставить группу проекций](TechDraw_ProjectionGroup/ru.md) --- +# TechDraw DetailView/ru + ## Описание The Detail tool creates a view of small area of an existing view. @@ -88,4 +90,7 @@ This is done by putting the Detail view into a [clip group](TechDraw_ClipGroup.m {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DetailView/ru diff --git a/wiki/translations/ru/TechDraw_DiameterDimension.md b/wiki/translations/ru/TechDraw_DiameterDimension.md index 40229cc4b2..a84cae1af0 100644 --- a/wiki/translations/ru/TechDraw_DiameterDimension.md +++ b/wiki/translations/ru/TechDraw_DiameterDimension.md @@ -7,6 +7,8 @@ SeeAlso:[Указать радиус](TechDraw_RadiusDimension/ru.md) --- +# TechDraw DiameterDimension/ru + ## Описание The Diameter Dimension tool adds a diameter dimension to a View. The dimension may be applied to any circular in the drawing. The distance will initially be the projected distance (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -54,4 +56,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DiameterDimension/ru diff --git a/wiki/translations/ru/TechDraw_Dimension_Angle.md b/wiki/translations/ru/TechDraw_Dimension_Angle.md index 123f9ef687..631f5ef25f 100644 --- a/wiki/translations/ru/TechDraw_Dimension_Angle.md +++ b/wiki/translations/ru/TechDraw_Dimension_Angle.md @@ -1,2 +1,5 @@ # TechDraw Dimension Angle/ru 1. REDIRECT [TechDraw\_AngleDimension/ru](TechDraw_AngleDimension/ru.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Angle/ru diff --git a/wiki/translations/ru/TechDraw_Dimension_Angle3Pt.md b/wiki/translations/ru/TechDraw_Dimension_Angle3Pt.md index ba6a74e467..5e21de7403 100644 --- a/wiki/translations/ru/TechDraw_Dimension_Angle3Pt.md +++ b/wiki/translations/ru/TechDraw_Dimension_Angle3Pt.md @@ -1,2 +1,5 @@ # TechDraw Dimension Angle3Pt/ru 1. REDIRECT [TechDraw\_3PtAngleDimension/ru](TechDraw_3PtAngleDimension/ru.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Angle3Pt/ru diff --git a/wiki/translations/ru/TechDraw_Dimension_Diameter.md b/wiki/translations/ru/TechDraw_Dimension_Diameter.md index fd46a8f66a..422a1c917a 100644 --- a/wiki/translations/ru/TechDraw_Dimension_Diameter.md +++ b/wiki/translations/ru/TechDraw_Dimension_Diameter.md @@ -1,2 +1,5 @@ # TechDraw Dimension Diameter/ru 1. REDIRECT [TechDraw\_DiameterDimension/ru](TechDraw_DiameterDimension/ru.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Diameter/ru diff --git a/wiki/translations/ru/TechDraw_Dimension_Horizontal.md b/wiki/translations/ru/TechDraw_Dimension_Horizontal.md index d7785832f4..88872c2191 100644 --- a/wiki/translations/ru/TechDraw_Dimension_Horizontal.md +++ b/wiki/translations/ru/TechDraw_Dimension_Horizontal.md @@ -1,2 +1,5 @@ # TechDraw Dimension Horizontal/ru 1. REDIRECT [TechDraw\_HorizontalDimension/ru](TechDraw_HorizontalDimension/ru.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Horizontal/ru diff --git a/wiki/translations/ru/TechDraw_Dimension_Length.md b/wiki/translations/ru/TechDraw_Dimension_Length.md index d972b2ed0c..b2f34363c8 100644 --- a/wiki/translations/ru/TechDraw_Dimension_Length.md +++ b/wiki/translations/ru/TechDraw_Dimension_Length.md @@ -1,2 +1,5 @@ # TechDraw Dimension Length/ru 1. REDIRECT [TechDraw\_LengthDimension/ru](TechDraw_LengthDimension/ru.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Length/ru diff --git a/wiki/translations/ru/TechDraw_Dimension_Link.md b/wiki/translations/ru/TechDraw_Dimension_Link.md index 398817d91c..a10fc9e936 100644 --- a/wiki/translations/ru/TechDraw_Dimension_Link.md +++ b/wiki/translations/ru/TechDraw_Dimension_Link.md @@ -1,2 +1,5 @@ # TechDraw Dimension Link/ru 1. REDIRECT [TechDraw\_LinkDimension/ru](TechDraw_LinkDimension/ru.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Link/ru diff --git a/wiki/translations/ru/TechDraw_Dimension_Radius.md b/wiki/translations/ru/TechDraw_Dimension_Radius.md index 3260db18e2..ebd4499c85 100644 --- a/wiki/translations/ru/TechDraw_Dimension_Radius.md +++ b/wiki/translations/ru/TechDraw_Dimension_Radius.md @@ -1,2 +1,5 @@ # TechDraw Dimension Radius/ru 1. REDIRECT [TechDraw\_RadiusDimension/ru](TechDraw_RadiusDimension/ru.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Radius/ru diff --git a/wiki/translations/ru/TechDraw_Dimension_Vertical.md b/wiki/translations/ru/TechDraw_Dimension_Vertical.md index 86a7f16fe0..79a8816434 100644 --- a/wiki/translations/ru/TechDraw_Dimension_Vertical.md +++ b/wiki/translations/ru/TechDraw_Dimension_Vertical.md @@ -1,2 +1,5 @@ # TechDraw Dimension Vertical/ru 1. REDIRECT [TechDraw\_VerticalDimension/ru](TechDraw_VerticalDimension/ru.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Dimension Vertical/ru diff --git a/wiki/translations/ru/TechDraw_DraftView.md b/wiki/translations/ru/TechDraw_DraftView.md index ee1e5a4900..c2ae688a86 100644 --- a/wiki/translations/ru/TechDraw_DraftView.md +++ b/wiki/translations/ru/TechDraw_DraftView.md @@ -7,6 +7,8 @@ SeeAlso:[Вставить объект верстака Arch](TechDraw_ArchView/ru.md) --- +# TechDraw DraftView/ru + ## Описание The [DraftView](TechDraw_DraftView.md) tool inserts a view of a selected [Part](Part_Workbench.md)-based or Group object into a drawing page. Unlike the standard [View](TechDraw_View.md) tool, views created with this tool are handled by the [Draft Workbench](Draft_Workbench.md), and specially designed for showing 2D objects. See Notes. @@ -72,4 +74,7 @@ rc = page.addView(dv) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw DraftView/ru diff --git a/wiki/translations/ru/TechDraw_ExportPageDXF.md b/wiki/translations/ru/TechDraw_ExportPageDXF.md index 1f14a8f4c7..6f9fe665bd 100644 --- a/wiki/translations/ru/TechDraw_ExportPageDXF.md +++ b/wiki/translations/ru/TechDraw_ExportPageDXF.md @@ -8,6 +8,8 @@ SeeAlso:[Экспорт листа в SVG](TechDraw_ExportPageSVG/ru.md), [Draft DXF](Draft_DXF/ru.md) --- +# TechDraw ExportPageDXF/ru + ## Описание The ExportPageDXF tool saves a drawing page as a [DXF](DXF.md) file. @@ -68,4 +70,7 @@ TechDraw.writeDXFPage(page,filename) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ExportPageDXF/ru diff --git a/wiki/translations/ru/TechDraw_ExportPageSVG.md b/wiki/translations/ru/TechDraw_ExportPageSVG.md index 1a3bd70d4e..4ef979dec2 100644 --- a/wiki/translations/ru/TechDraw_ExportPageSVG.md +++ b/wiki/translations/ru/TechDraw_ExportPageSVG.md @@ -7,6 +7,8 @@ SeeAlso:[Шаблоны](TechDraw_Templates/ru.md), [Draft SVG](Draft_SVG/ru.md) --- +# TechDraw ExportPageSVG/ru + ## Описание The ExportPageSVG tool saves the current drawing page as an [SVG](SVG.md) file. @@ -43,4 +45,7 @@ Note that the FreeCADGui module must be active to use this function. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ExportPageSVG/ru diff --git a/wiki/translations/ru/TechDraw_FaceCenterLine.md b/wiki/translations/ru/TechDraw_FaceCenterLine.md index 0615cf6f35..449ea2b6ad 100644 --- a/wiki/translations/ru/TechDraw_FaceCenterLine.md +++ b/wiki/translations/ru/TechDraw_FaceCenterLine.md @@ -8,6 +8,8 @@ SeeAlso:[Добавить вспомогательную вершину](TechDraw_CosmeticVertex/ru.md), [Добавить осевую линию между 2 линиями](TechDraw_2LineCenterLine/ru.md), [Добавить осевую линию между 2 точками](TechDraw_2PointCenterLine/ru.md), [Удалить вспомогательный объект](TechDraw_CosmeticEraser/ru.md) --- +# TechDraw FaceCenterLine/ru + ## Описание The FaceCenterLine tool adds a centerline to selected faces. @@ -77,4 +79,7 @@ Centerlines are not accessible from [macros](Macros.md) or the [Python](Python.m {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw FaceCenterLine/ru diff --git a/wiki/translations/ru/TechDraw_GeomHatch.md b/wiki/translations/ru/TechDraw_GeomHatch.md index 07eab1c750..32746268c7 100644 --- a/wiki/translations/ru/TechDraw_GeomHatch.md +++ b/wiki/translations/ru/TechDraw_GeomHatch.md @@ -1,2 +1,5 @@ # TechDraw GeomHatch/ru 1. REDIRECT [TechDraw\_GeometricHatch/ru](TechDraw_GeometricHatch/ru.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw GeomHatch/ru diff --git a/wiki/translations/ru/TechDraw_GeometricHatch.md b/wiki/translations/ru/TechDraw_GeometricHatch.md index 03cbc9b53e..508f4981fc 100644 --- a/wiki/translations/ru/TechDraw_GeometricHatch.md +++ b/wiki/translations/ru/TechDraw_GeometricHatch.md @@ -7,6 +7,8 @@ SeeAlso:[Штриховать грань, используя файл изображения](TechDraw_Hatch/ru.md), [Штриховка](TechDraw_Hatching/ru.md) --- +# TechDraw GeometricHatch/ru + ## Описание Инструмент GeometricHatch заполняет замкнутый регион внутри вида шаблоном, базирующимся на спецификации AutoDesk PAT hatching. **В качестве альтернативы**, инструмент [Hatch](TechDraw_Hatch/ru.md) использует качестве рисунка штриховки файл в формате [SVG](SVG/ru.md) или [растровый](bitmap/ru.md), подробности см. в [Hatching](TechDraw_Hatching/ru.md). @@ -92,4 +94,7 @@ Part.show(hatch) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw GeometricHatch/ru diff --git a/wiki/translations/ru/TechDraw_Geometric_dimensioning_and_tolerancing.md b/wiki/translations/ru/TechDraw_Geometric_dimensioning_and_tolerancing.md index 9b209854ee..484768abec 100644 --- a/wiki/translations/ru/TechDraw_Geometric_dimensioning_and_tolerancing.md +++ b/wiki/translations/ru/TechDraw_Geometric_dimensioning_and_tolerancing.md @@ -1,10 +1,4 @@ # TechDraw Geometric dimensioning and tolerancing/ru - - - - - - {{TOCright}} ## Концепция @@ -341,4 +335,7 @@ As reference, here are lists of characters to be used for geometric tolerancing: {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Geometric dimensioning and tolerancing/ru diff --git a/wiki/translations/ru/TechDraw_Hatch.md b/wiki/translations/ru/TechDraw_Hatch.md index 1c359cdc28..a3e785c91d 100644 --- a/wiki/translations/ru/TechDraw_Hatch.md +++ b/wiki/translations/ru/TechDraw_Hatch.md @@ -7,6 +7,8 @@ SeeAlso:[Применить геометрическую штриховку к грани](TechDraw_GeometricHatch/ru.md), [Штриховка](TechDraw_Hatching/ru.md) --- +# TechDraw Hatch/ru + ## Описание The Hatch tool fills a closed region in a View with a hatch pattern, which can be [SVG](SVG.md) or [bitmap](bitmap.md) files. In contrary the [Geometric Hatch](TechDraw_GeometricHatch.md) tool uses a specific PAT pattern file, see [Hatching](TechDraw_Hatching.md) for details. @@ -70,4 +72,7 @@ rc = page.addView(hatch) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Hatch/ru diff --git a/wiki/translations/ru/TechDraw_Hatching.md b/wiki/translations/ru/TechDraw_Hatching.md index 53423208db..ddbe12083a 100644 --- a/wiki/translations/ru/TechDraw_Hatching.md +++ b/wiki/translations/ru/TechDraw_Hatching.md @@ -1,10 +1,4 @@ # TechDraw Hatching/ru - - - - - - {{TOCright}} ## Описание @@ -90,4 +84,7 @@ The `FCPAT.pat` file can be found in the following location. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Hatching/ru diff --git a/wiki/translations/ru/TechDraw_HorizontalDimension.md b/wiki/translations/ru/TechDraw_HorizontalDimension.md index f60ca09f6d..009979a6a3 100644 --- a/wiki/translations/ru/TechDraw_HorizontalDimension.md +++ b/wiki/translations/ru/TechDraw_HorizontalDimension.md @@ -8,6 +8,8 @@ SeeAlso:[Указать длину](TechDraw_LengthDimension/ru.md), [Указать вертикальный размер](TechDraw_VerticalDimension/ru.md) --- +# TechDraw HorizontalDimension/ru + ## Описание The Horizontal Dimension tool adds a horizontal dimension to a View. The dimension may be between two vertices, the length of one edge or the horizontal distance between 2 edges. The distance will initially be the projected distance (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -55,4 +57,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HorizontalDimension/ru diff --git a/wiki/translations/ru/TechDraw_HorizontalExtentDimension.md b/wiki/translations/ru/TechDraw_HorizontalExtentDimension.md index 9ba4e5efa0..707bdfcfc0 100644 --- a/wiki/translations/ru/TechDraw_HorizontalExtentDimension.md +++ b/wiki/translations/ru/TechDraw_HorizontalExtentDimension.md @@ -8,6 +8,8 @@ SeeAlso:[Указать длину](TechDraw_LengthDimension/ru.md), [Указать вертикальный габаритный размер](TechDraw_VerticalExtentDimension/ru.md) --- +# TechDraw HorizontalExtentDimension/ru + ## Описание The Horizontal Extent Dimension tool adds a linear dimension to a View. The dimension extends from the left most point on the selected objects to the right most point. A CosmeticVertex will be placed at each point. @@ -55,4 +57,7 @@ rc = page.addView(hExtentDim) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HorizontalExtentDimension/ru diff --git a/wiki/translations/ru/TechDraw_HowTo_Page.md b/wiki/translations/ru/TechDraw_HowTo_Page.md index d24eff4e57..2596bda0ad 100644 --- a/wiki/translations/ru/TechDraw_HowTo_Page.md +++ b/wiki/translations/ru/TechDraw_HowTo_Page.md @@ -1,5 +1,5 @@ # TechDraw HowTo Page/ru - Back to [TechDraw Tutorials](TechDraw_Workbench#Tutorials.md) +Back to [TechDraw Tutorials](TechDraw_Workbench#Tutorials.md) {{TutorialInfo @@ -50,4 +50,7 @@ See also [Measurement Of Angles On Holes](Measurement_Of_Angles_On_Holes.md) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw HowTo Page/ru diff --git a/wiki/translations/ru/TechDraw_Image.md b/wiki/translations/ru/TechDraw_Image.md index 39377a8711..a7ea6386b4 100644 --- a/wiki/translations/ru/TechDraw_Image.md +++ b/wiki/translations/ru/TechDraw_Image.md @@ -7,6 +7,8 @@ SeeAlso:[Вставить SVG знак](TechDraw_Symbol/ru.md) --- +# TechDraw Image/ru + ## Описание The Image tool inserts a [bitmap](bitmap.md) image (PNG, TIFF, JPEG, etc.) from a file into the page as a view. @@ -47,4 +49,7 @@ dvi.Width = 200 {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Image/ru diff --git a/wiki/translations/ru/TechDraw_LandmarkDimension.md b/wiki/translations/ru/TechDraw_LandmarkDimension.md index ec06a36cf4..6b204a164c 100644 --- a/wiki/translations/ru/TechDraw_LandmarkDimension.md +++ b/wiki/translations/ru/TechDraw_LandmarkDimension.md @@ -8,6 +8,8 @@ SeeAlso:[Указать горизонтальный размер](TechDraw_HorizontalDimension/ru.md), [Указать вертикальный размер](TechDraw_VerticalDimension/ru.md) --- +# TechDraw LandmarkDimension/ru + ## Описание The Landmark Dimension tool adds a linear dimension to a View. The dimension is based on two Point **feature** (Draft.Point or Part.Vertex) from the 3D model. Note that the points must be **feature** objects that appear in the model [tree view](Tree_view.md). Random vertexes from a shape will not work. @@ -59,4 +61,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LandmarkDimension/ru diff --git a/wiki/translations/ru/TechDraw_LeaderLine.md b/wiki/translations/ru/TechDraw_LeaderLine.md index 0a2c3279b2..c324c7fdc6 100644 --- a/wiki/translations/ru/TechDraw_LeaderLine.md +++ b/wiki/translations/ru/TechDraw_LeaderLine.md @@ -8,6 +8,8 @@ SeeAlso:[Вставка аннотаций форматированным текстом](TechDraw_RichTextAnnotation/ru.md), [Добавить информацию о сварке в указательную линию](TechDraw_WeldSymbol/ru.md), [Группы линий](TechDraw_LineGroup/ru.md) --- +# TechDraw LeaderLine/ru + ## Описание The LeaderLine tool adds a line to a View. Other annotation objects (such as [Rich Text Annotations](TechDraw_RichTextAnnotation.md)) can be connected to the leaderline to form complex annotations. @@ -92,4 +94,7 @@ leaderObj.Y = 5 {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LeaderLine/ru diff --git a/wiki/translations/ru/TechDraw_LengthDimension.md b/wiki/translations/ru/TechDraw_LengthDimension.md index 0cd8ba83f9..f71aec01f5 100644 --- a/wiki/translations/ru/TechDraw_LengthDimension.md +++ b/wiki/translations/ru/TechDraw_LengthDimension.md @@ -7,6 +7,8 @@ SeeAlso:[Указать горизонтальный размер](TechDraw_HorizontalDimension/ru.md), [Указать вертикальный размер](TechDraw_VerticalDimension/ru.md) --- +# TechDraw LengthDimension/ru + ## Описание The Length Dimension tool adds a linear dimension to a View. The dimension may be between the distance between two vertices, the length of one edge or the distance between 2 edges. The distance will initially be the projected distance (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -256,4 +258,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LengthDimension/ru diff --git a/wiki/translations/ru/TechDraw_LineGroup.md b/wiki/translations/ru/TechDraw_LineGroup.md index fd8a1675a3..dc10231a6d 100644 --- a/wiki/translations/ru/TechDraw_LineGroup.md +++ b/wiki/translations/ru/TechDraw_LineGroup.md @@ -1,10 +1,4 @@ # TechDraw LineGroup/ru - - - - - - {{TOCright}} ## Обзор @@ -79,4 +73,7 @@ Note: A new preference has been added to allow you to use your own personal Line {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LineGroup/ru diff --git a/wiki/translations/ru/TechDraw_LinkDimension.md b/wiki/translations/ru/TechDraw_LinkDimension.md index 43c9f4ff6f..a861ad17bf 100644 --- a/wiki/translations/ru/TechDraw_LinkDimension.md +++ b/wiki/translations/ru/TechDraw_LinkDimension.md @@ -7,6 +7,8 @@ SeeAlso:[Вставить Вид](TechDraw_View/ru.md), [Вставить группу проекций](TechDraw_ProjectionGroup/ru.md) --- +# TechDraw LinkDimension/ru + ## Описание The Link Dimension tool creates a link between 3D geometry and one or more existing projected Dimensions on a Page. This link allows the Dimension to use actual 3D values instead of 2D projected values. @@ -59,4 +61,7 @@ to be defined {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw LinkDimension/ru diff --git a/wiki/translations/ru/TechDraw_Midpoints.md b/wiki/translations/ru/TechDraw_Midpoints.md index 8cf5ba8d74..17c07e90be 100644 --- a/wiki/translations/ru/TechDraw_Midpoints.md +++ b/wiki/translations/ru/TechDraw_Midpoints.md @@ -8,6 +8,8 @@ SeeAlso:[Добавить вспомогательную вершину](TechDraw_CosmeticVertex/ru.md), [Добавить 4-ре вершины по краям окружности](TechDraw_Quadrants/ru.md) --- +# TechDraw Midpoints/ru + ## Описание The Midpoints tool adds Cosmetic [Vertices](Glossary#V.md) at the midpoints of one or more Edges. @@ -49,4 +51,7 @@ Cosmetic Vertices are not accessible from [macros](Macros.md) or the [Python](Py {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Midpoints/ru diff --git a/wiki/translations/ru/TechDraw_Module.md b/wiki/translations/ru/TechDraw_Module.md index 4e717a5818..ee6c6f2b95 100644 --- a/wiki/translations/ru/TechDraw_Module.md +++ b/wiki/translations/ru/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/ru 1. REDIRECT [TechDraw\_Workbench/ru](TechDraw_Workbench/ru.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/ru diff --git a/wiki/translations/ru/TechDraw_NewAnnotation.md b/wiki/translations/ru/TechDraw_NewAnnotation.md index e69d7a4d1d..1093b95c75 100644 --- a/wiki/translations/ru/TechDraw_NewAnnotation.md +++ b/wiki/translations/ru/TechDraw_NewAnnotation.md @@ -1,2 +1,5 @@ # TechDraw NewAnnotation/ru 1. REDIRECT [TechDraw\_Annotation](TechDraw_Annotation.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewAnnotation/ru diff --git a/wiki/translations/ru/TechDraw_NewArch.md b/wiki/translations/ru/TechDraw_NewArch.md index 1cbd74e7e6..13749b08cb 100644 --- a/wiki/translations/ru/TechDraw_NewArch.md +++ b/wiki/translations/ru/TechDraw_NewArch.md @@ -1,2 +1,5 @@ # TechDraw NewArch/ru 1. REDIRECT [TechDraw\_ArchView](TechDraw_ArchView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewArch/ru diff --git a/wiki/translations/ru/TechDraw_NewDetail.md b/wiki/translations/ru/TechDraw_NewDetail.md index 0c733d301f..f6dc821f8b 100644 --- a/wiki/translations/ru/TechDraw_NewDetail.md +++ b/wiki/translations/ru/TechDraw_NewDetail.md @@ -1,2 +1,5 @@ # TechDraw NewDetail/ru 1. REDIRECT [TechDraw\_DetailView](TechDraw_DetailView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewDetail/ru diff --git a/wiki/translations/ru/TechDraw_NewDraft.md b/wiki/translations/ru/TechDraw_NewDraft.md index eb9e6283fc..e902cc007f 100644 --- a/wiki/translations/ru/TechDraw_NewDraft.md +++ b/wiki/translations/ru/TechDraw_NewDraft.md @@ -1,2 +1,5 @@ # TechDraw NewDraft/ru 1. REDIRECT [TechDraw\_DraftView](TechDraw_DraftView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewDraft/ru diff --git a/wiki/translations/ru/TechDraw_NewMulti.md b/wiki/translations/ru/TechDraw_NewMulti.md index dbbfb5534d..fead487ff5 100644 --- a/wiki/translations/ru/TechDraw_NewMulti.md +++ b/wiki/translations/ru/TechDraw_NewMulti.md @@ -1,2 +1,5 @@ # TechDraw NewMulti/ru 1. REDIRECT [TechDraw\_ProjectionGroup](TechDraw_ProjectionGroup.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewMulti/ru diff --git a/wiki/translations/ru/TechDraw_NewProjGroup.md b/wiki/translations/ru/TechDraw_NewProjGroup.md index 1b09c1f1a9..9046f3029d 100644 --- a/wiki/translations/ru/TechDraw_NewProjGroup.md +++ b/wiki/translations/ru/TechDraw_NewProjGroup.md @@ -1,2 +1,5 @@ # TechDraw NewProjGroup/ru 1. REDIRECT [TechDraw\_ProjectionGroup](TechDraw_ProjectionGroup.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewProjGroup/ru diff --git a/wiki/translations/ru/TechDraw_NewSection.md b/wiki/translations/ru/TechDraw_NewSection.md index 44d83ab6b0..2da0055435 100644 --- a/wiki/translations/ru/TechDraw_NewSection.md +++ b/wiki/translations/ru/TechDraw_NewSection.md @@ -1,2 +1,5 @@ # TechDraw NewSection/ru 1. REDIRECT [TechDraw\_SectionView](TechDraw_SectionView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewSection/ru diff --git a/wiki/translations/ru/TechDraw_New_Default.md b/wiki/translations/ru/TechDraw_New_Default.md index 123883c32b..7a117acf16 100644 --- a/wiki/translations/ru/TechDraw_New_Default.md +++ b/wiki/translations/ru/TechDraw_New_Default.md @@ -1,2 +1,5 @@ # TechDraw New Default/ru 1. REDIRECT [TechDraw\_PageDefault](TechDraw_PageDefault.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw New Default/ru diff --git a/wiki/translations/ru/TechDraw_New_Pick.md b/wiki/translations/ru/TechDraw_New_Pick.md index 1dfb329966..ce76f4d439 100644 --- a/wiki/translations/ru/TechDraw_New_Pick.md +++ b/wiki/translations/ru/TechDraw_New_Pick.md @@ -1,2 +1,5 @@ # TechDraw New Pick/ru 1. REDIRECT [TechDraw\_PageTemplate](TechDraw_PageTemplate.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw New Pick/ru diff --git a/wiki/translations/ru/TechDraw_PageDefault.md b/wiki/translations/ru/TechDraw_PageDefault.md index ebe0d857a4..e5d01a9fd4 100644 --- a/wiki/translations/ru/TechDraw_PageDefault.md +++ b/wiki/translations/ru/TechDraw_PageDefault.md @@ -7,6 +7,8 @@ SeeAlso:[Вставить страницу используя шаблон](TechDraw_PageTemplate/ru.md), [Шаблоны TechDraw](TechDraw_Templates/ru.md) --- +# TechDraw PageDefault/ru + ## Описание The New Default tool creates a new Page object using the the template file specified in the [TechDraw Preferences](TechDraw_Preferences.md). @@ -88,4 +90,7 @@ page.Template.EditableTexts = texts {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw PageDefault/ru diff --git a/wiki/translations/ru/TechDraw_PageTemplate.md b/wiki/translations/ru/TechDraw_PageTemplate.md index 009735760d..7a5630d2b9 100644 --- a/wiki/translations/ru/TechDraw_PageTemplate.md +++ b/wiki/translations/ru/TechDraw_PageTemplate.md @@ -7,6 +7,8 @@ SeeAlso:[Вставить страницу по умолчанию](TechDraw_PageDefault/ru.md), [Шаблоны](TechDraw_Templates/ru.md) --- +# TechDraw PageTemplate/ru + ## Описание The New Pick tool creates a new Page object using the template file selected from a dialog. @@ -64,4 +66,7 @@ See the information in [Insert Default Page](TechDraw_PageDefault.md) to program {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw PageTemplate/ru diff --git a/wiki/translations/ru/TechDraw_Preferences.md b/wiki/translations/ru/TechDraw_Preferences.md index 742dfb35f5..5f2fd3c53e 100644 --- a/wiki/translations/ru/TechDraw_Preferences.md +++ b/wiki/translations/ru/TechDraw_Preferences.md @@ -1,10 +1,4 @@ # TechDraw Preferences/ru - - - - - - {{TOCright}} ## Введение @@ -201,3 +195,6 @@ Some preference settings are only accessible through the [Parameter editor](Std_ }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Preferences/ru diff --git a/wiki/translations/ru/TechDraw_ProjectionGroup.md b/wiki/translations/ru/TechDraw_ProjectionGroup.md index 66cec32223..57549a600e 100644 --- a/wiki/translations/ru/TechDraw_ProjectionGroup.md +++ b/wiki/translations/ru/TechDraw_ProjectionGroup.md @@ -7,6 +7,8 @@ SeeAlso:[Вставить Вид](TechDraw_View/ru.md), [Вставить Вид сечения](TechDraw_SectionView/ru.md) --- +# TechDraw ProjectionGroup/ru + ## Описание The [ProjectionGroup](TechDraw_ProjectionGroup.md) tool creates a [multiview projection](https://en.wikipedia.org/wiki/Multiview_projection) of one or more 3D objects. The isometric views of the 4 front corners can also be included. @@ -96,4 +98,7 @@ Programming note: The Projection Group should always be added to the Page (ex. p {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ProjectionGroup/ru diff --git a/wiki/translations/ru/TechDraw_Quadrants.md b/wiki/translations/ru/TechDraw_Quadrants.md index 8056373766..e56d1d734a 100644 --- a/wiki/translations/ru/TechDraw_Quadrants.md +++ b/wiki/translations/ru/TechDraw_Quadrants.md @@ -8,6 +8,8 @@ SeeAlso:[Добавить Вспомогательную Вершину](TechDraw_CosmeticVertex/ru.md), [Добавить Средние Вершины](TechDraw_Midpoints/ru.md) --- +# TechDraw Quadrants/ru + ## Описание The Quadrant tool adds [Cosmetic Vertices](TechDraw_CosmeticVertex.md) at the 90/180/270° points of a circular edge. The 0° vertex should already be there as a geometric vertex. @@ -51,4 +53,7 @@ Cosmetic Vertices are not accessible from [macros](Macros.md) or the [Python](Py {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Quadrants/ru diff --git a/wiki/translations/ru/TechDraw_RadiusDimension.md b/wiki/translations/ru/TechDraw_RadiusDimension.md index e5f5ff01c0..9415e774c1 100644 --- a/wiki/translations/ru/TechDraw_RadiusDimension.md +++ b/wiki/translations/ru/TechDraw_RadiusDimension.md @@ -7,6 +7,8 @@ SeeAlso:[Указать диаметр](TechDraw_DiameterDimension/ru.md) --- +# TechDraw RadiusDimension/ru + ## Описание The Radius Dimension tool adds a radius dimension to a View. The dimension may be applied to any Edge in the drawing which is a circle or circular arc. The distance will initially be the projected distance (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -54,4 +56,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RadiusDimension/ru diff --git a/wiki/translations/ru/TechDraw_Redraw.md b/wiki/translations/ru/TechDraw_Redraw.md index 3b3ee0583f..b5325a5e28 100644 --- a/wiki/translations/ru/TechDraw_Redraw.md +++ b/wiki/translations/ru/TechDraw_Redraw.md @@ -1,2 +1,5 @@ # TechDraw Redraw/ru 1. REDIRECT [TechDraw\_RedrawPage](TechDraw_RedrawPage.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Redraw/ru diff --git a/wiki/translations/ru/TechDraw_RedrawPage.md b/wiki/translations/ru/TechDraw_RedrawPage.md index 1c6ba9f446..045753b98d 100644 --- a/wiki/translations/ru/TechDraw_RedrawPage.md +++ b/wiki/translations/ru/TechDraw_RedrawPage.md @@ -7,6 +7,8 @@ Version:0.19 --- +# TechDraw RedrawPage/ru + ## Описание The Redraw tool forces a page update despite any contrary settings of KeepUpdated (Page property), Update with 3D (parameter) or Allow Page Override (parameter). @@ -40,4 +42,7 @@ The Redraw command is not directly available in scripts. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RedrawPage/ru diff --git a/wiki/translations/ru/TechDraw_RichTextAnnotation.md b/wiki/translations/ru/TechDraw_RichTextAnnotation.md index a913752c41..c1df98d783 100644 --- a/wiki/translations/ru/TechDraw_RichTextAnnotation.md +++ b/wiki/translations/ru/TechDraw_RichTextAnnotation.md @@ -8,6 +8,8 @@ SeeAlso:[Шаблоны](TechDraw_Templates/ru.md), [Draft SVG](Draft_SVG/ru.md), [Добавить Линию-выноску в Вид](TechDraw_LeaderLine/ru.md) --- +# TechDraw RichTextAnnotation/ru + ## Описание The RichTextBlock tool adds a formatted annotation block to a [Leaderline](TechDraw_LeaderLine.md) or a View. @@ -61,4 +63,7 @@ blockObj.AnnoText = myHTMLText {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw RichTextAnnotation/ru diff --git a/wiki/translations/ru/TechDraw_Roadmap.md b/wiki/translations/ru/TechDraw_Roadmap.md index a3d33a2a73..b39e119bb7 100644 --- a/wiki/translations/ru/TechDraw_Roadmap.md +++ b/wiki/translations/ru/TechDraw_Roadmap.md @@ -1,5 +1,4 @@ -# TechDraw Roadmap/ru - +# TechDraw Roadmap/ru The [TechDraw Workbench](TechDraw_Workbench.md) was introduced officially as part of FreeCAD in version 0.17. It is relatively new and hasn\'t had the years of development that have benefited some other workbenches. Still, TechDraw now meets its original design goal and can now \"produce basic technical drawings based on the 3D model\". @@ -81,3 +80,6 @@ See the bug tracker for up to date information. }} [Category:User Documentation](Category:User_Documentation.md) [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Roadmap/ru diff --git a/wiki/translations/ru/TechDraw_SaveDXF.md b/wiki/translations/ru/TechDraw_SaveDXF.md index 2bf2e1757a..41121c4e88 100644 --- a/wiki/translations/ru/TechDraw_SaveDXF.md +++ b/wiki/translations/ru/TechDraw_SaveDXF.md @@ -1,2 +1,5 @@ # TechDraw SaveDXF/ru 1. REDIRECT [TechDraw\_ExportPageDXF](TechDraw_ExportPageDXF.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SaveDXF/ru diff --git a/wiki/translations/ru/TechDraw_SaveSVG.md b/wiki/translations/ru/TechDraw_SaveSVG.md index 962506a9be..0950f04895 100644 --- a/wiki/translations/ru/TechDraw_SaveSVG.md +++ b/wiki/translations/ru/TechDraw_SaveSVG.md @@ -1,2 +1,5 @@ # TechDraw SaveSVG/ru 1. REDIRECT [TechDraw\_ExportPageSVG](TechDraw_ExportPageSVG.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SaveSVG/ru diff --git a/wiki/translations/ru/TechDraw_SectionView.md b/wiki/translations/ru/TechDraw_SectionView.md index cf36c2f491..b76c314213 100644 --- a/wiki/translations/ru/TechDraw_SectionView.md +++ b/wiki/translations/ru/TechDraw_SectionView.md @@ -7,6 +7,8 @@ SeeAlso:[Вставить Вид](TechDraw_View/ru.md), [Вставить группу проекций](TechDraw_ProjectionGroup/ru.md) --- +# TechDraw SectionView/ru + ## Описание The Section tool creates a cross section view based on an existing part view. @@ -116,4 +118,7 @@ section.SectionOrigin = (5.0,5.0,5.0) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SectionView/ru diff --git a/wiki/translations/ru/TechDraw_ShowAll.md b/wiki/translations/ru/TechDraw_ShowAll.md index e2f1540529..fa8b1c07b5 100644 --- a/wiki/translations/ru/TechDraw_ShowAll.md +++ b/wiki/translations/ru/TechDraw_ShowAll.md @@ -8,6 +8,8 @@ SeeAlso:[Изменить внешний вид линий](TechDraw_DecorateLine/ru.md) --- +# TechDraw ShowAll/ru + ## Описание The ShowAll tool shows or hide invisible lines in a View. Note that \"invisible\" is a cosmetic state, not to be confused with hidden lines which are geometric constructs. @@ -43,4 +45,7 @@ The effect of the ShowAll tool can be duplicated in [macros](Macros.md) or the [ {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ShowAll/ru diff --git a/wiki/translations/ru/TechDraw_Spreadsheet.md b/wiki/translations/ru/TechDraw_Spreadsheet.md index 77c278bbc8..289d8b333f 100644 --- a/wiki/translations/ru/TechDraw_Spreadsheet.md +++ b/wiki/translations/ru/TechDraw_Spreadsheet.md @@ -1,2 +1,5 @@ # TechDraw Spreadsheet/ru 1. REDIRECT [TechDraw\_SpreadsheetView](TechDraw_SpreadsheetView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Spreadsheet/ru diff --git a/wiki/translations/ru/TechDraw_SpreadsheetView.md b/wiki/translations/ru/TechDraw_SpreadsheetView.md index 110a88cb56..28a7cd831a 100644 --- a/wiki/translations/ru/TechDraw_SpreadsheetView.md +++ b/wiki/translations/ru/TechDraw_SpreadsheetView.md @@ -6,6 +6,8 @@ Workbenches:[TechDraw](TechDraw_Workbench/ru.md), [Spreadsheet](Spreadsheet_Workbench/ru.md) --- +# TechDraw SpreadsheetView/ru + ## Описание This tool allows you to place a view of a selected [spreadsheet](Spreadsheet_Workbench.md) on a [Page](TechDraw_Workbench.md). @@ -39,4 +41,7 @@ This tool allows you to place a view of a selected [spreadsheet](Spreadsheet_Wor {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw SpreadsheetView/ru diff --git a/wiki/translations/ru/TechDraw_Symbol.md b/wiki/translations/ru/TechDraw_Symbol.md index e95da7ee52..b36c3fe7a0 100644 --- a/wiki/translations/ru/TechDraw_Symbol.md +++ b/wiki/translations/ru/TechDraw_Symbol.md @@ -7,6 +7,8 @@ SeeAlso:[Шаблоны](TechDraw_Templates/ru.md), [Draft SVG](Draft_SVG/ru.md) --- +# TechDraw Symbol/ru + ## Описание The Symbol tool inserts an [SVG](SVG.md) file into the page. This symbol can be anything that helps annotating your drawing, and that doesn\'t need to be further modified. @@ -53,4 +55,7 @@ rc = page.addView(sym) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Symbol/ru diff --git a/wiki/translations/ru/TechDraw_TemplateHowTo.md b/wiki/translations/ru/TechDraw_TemplateHowTo.md index 05a1fd5c8b..a224e31905 100644 --- a/wiki/translations/ru/TechDraw_TemplateHowTo.md +++ b/wiki/translations/ru/TechDraw_TemplateHowTo.md @@ -1,7 +1,4 @@ # TechDraw TemplateHowTo/ru - - - {{TutorialInfo/ru |Topic=Drafting |Level=Intermediate @@ -120,4 +117,7 @@ If you do not see the green boxes for your editable texts, there might be someth {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw TemplateHowTo/ru diff --git a/wiki/translations/ru/TechDraw_Templates.md b/wiki/translations/ru/TechDraw_Templates.md index 0849fdb279..bcb2ba7e42 100644 --- a/wiki/translations/ru/TechDraw_Templates.md +++ b/wiki/translations/ru/TechDraw_Templates.md @@ -1,10 +1,4 @@ # TechDraw Templates/ru - - - - - - {{TOCright}} ## Обзор @@ -77,4 +71,7 @@ See also [How to make a custom TechDraw template](TechDraw_TemplateHowTo.md). {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Templates/ru diff --git a/wiki/translations/ru/TechDraw_Toggle.md b/wiki/translations/ru/TechDraw_Toggle.md index b72eeb309d..ac5aa49a54 100644 --- a/wiki/translations/ru/TechDraw_Toggle.md +++ b/wiki/translations/ru/TechDraw_Toggle.md @@ -1,2 +1,5 @@ # TechDraw Toggle/ru 1. REDIRECT [TechDraw\_ToggleFrame](TechDraw_ToggleFrame.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Toggle/ru diff --git a/wiki/translations/ru/TechDraw_ToggleFrame.md b/wiki/translations/ru/TechDraw_ToggleFrame.md index 1a61e8198a..863c575d65 100644 --- a/wiki/translations/ru/TechDraw_ToggleFrame.md +++ b/wiki/translations/ru/TechDraw_ToggleFrame.md @@ -7,6 +7,8 @@ SeeAlso:[Вставить Вид](TechDraw_View/ru.md), [Вставить Группу проекций](TechDraw_ProjectionGroup/ru.md) --- +# TechDraw ToggleFrame/ru + ## Описание The Toggle tool turns the display of View frames, labels and vertices on or off. @@ -44,4 +46,7 @@ The Toggle tool currently doesn\'t have a programming interface. {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw ToggleFrame/ru diff --git a/wiki/translations/ru/TechDraw_VerticalDimension.md b/wiki/translations/ru/TechDraw_VerticalDimension.md index b146ae5b92..d1803117f9 100644 --- a/wiki/translations/ru/TechDraw_VerticalDimension.md +++ b/wiki/translations/ru/TechDraw_VerticalDimension.md @@ -8,6 +8,8 @@ SeeAlso:[Указать длину](TechDraw_LengthDimension/ru.md), [Указать горизонтальный размер](TechDraw_HorizontalDimension/ru.md) --- +# TechDraw VerticalDimension/ru + ## Описание The Vertical Dimension tool adds a vertical dimension to a View. The dimension may be between two vertices, the length of one edge or the vertical distance between 2 edges. The distance will initially be the projected distance (ie as shown on the drawing), but this may be changed to the actual 3D distance using the ** [TechDraw LinkDimension](TechDraw_LinkDimension.md)** tool. @@ -55,4 +57,7 @@ rc = page.addView(dim1) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw VerticalDimension/ru diff --git a/wiki/translations/ru/TechDraw_VerticalExtentDimension.md b/wiki/translations/ru/TechDraw_VerticalExtentDimension.md index 16ca8cbf74..fd7de8676c 100644 --- a/wiki/translations/ru/TechDraw_VerticalExtentDimension.md +++ b/wiki/translations/ru/TechDraw_VerticalExtentDimension.md @@ -8,6 +8,8 @@ SeeAlso:[Указать длину](TechDraw_LengthDimension/ru.md), [Указать горизонтальный габаритный размер](TechDraw_HorizontalExtentDimension/ru.md) --- +# TechDraw VerticalExtentDimension/ru + ## Описание The Vertical Extent Dimension tool adds a linear dimension to a View. The dimension extends from the bottom most point on the selected objects to the top most point. A CosmeticVertex will be placed at each point. @@ -55,4 +57,7 @@ rc = page.addView(hExtentDim) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw VerticalExtentDimension/ru diff --git a/wiki/translations/ru/TechDraw_View.md b/wiki/translations/ru/TechDraw_View.md index d402c24e72..f8de791bb0 100644 --- a/wiki/translations/ru/TechDraw_View.md +++ b/wiki/translations/ru/TechDraw_View.md @@ -7,6 +7,8 @@ SeeAlso:[Вставить группу проекций](TechDraw_ProjectionGroup/ru.md), [Вставить Вид сечения](TechDraw_SectionView/ru.md) --- +# TechDraw View/ru + ## Описание The View tool adds a representation of one or more objects to a Drawing page. This is the basic building block of the TechDraw workbench. Most other Views are derived in some way from NewView. @@ -131,4 +133,7 @@ FreeCAD.ActiveDocument.View.Direction = (0.0,0.0,1.0) {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw View/ru diff --git a/wiki/translations/ru/TechDraw_WeldSymbol.md b/wiki/translations/ru/TechDraw_WeldSymbol.md index ffbd8093d2..451e8a9e3d 100644 --- a/wiki/translations/ru/TechDraw_WeldSymbol.md +++ b/wiki/translations/ru/TechDraw_WeldSymbol.md @@ -9,6 +9,8 @@ SeeAlso:[Добавить Линию-выноску в Вид](TechDraw_LeaderLine/ru.md) --- +# TechDraw WeldSymbol/ru + ## Описание The WeldingSymbol tool adds welding specifications to an existing leader line. @@ -111,4 +113,7 @@ Individual symbols are formed by 64x64 pixel SVG files. Additional symbols can b {{TechDraw Tools navi -}} +}} + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw WeldSymbol/ru diff --git a/wiki/translations/ru/TechDraw_Workbench.md b/wiki/translations/ru/TechDraw_Workbench.md index b29c26d502..176ff875e8 100644 --- a/wiki/translations/ru/TechDraw_Workbench.md +++ b/wiki/translations/ru/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/ru - - - - - -Логотип верстака TechDraw +# Логотип верстака TechDraw TechDraw Workbench/ru ## Введение @@ -209,3 +203,6 @@ TechDraw был официально включен в FreeCAD начиная с }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/ru diff --git a/wiki/translations/ru/TechDraw_pitch_circle_tutorial.md b/wiki/translations/ru/TechDraw_pitch_circle_tutorial.md index b4cce64013..add35dcdd8 100644 --- a/wiki/translations/ru/TechDraw_pitch_circle_tutorial.md +++ b/wiki/translations/ru/TechDraw_pitch_circle_tutorial.md @@ -1,7 +1,4 @@ # TechDraw pitch circle tutorial/ru - - - {{TutorialInfo |Topic=TechDraw |Level=Beginner @@ -44,4 +41,7 @@ This tutorial explains how to add a pitch circle to a [TechDraw](TechDraw_Workbench.md) > TechDraw pitch circle tutorial/ru diff --git a/wiki/translations/ru/Test_Framework_Workbench.md b/wiki/translations/ru/Test_Framework_Workbench.md index 4fab88aadd..b26a4d5441 100644 --- a/wiki/translations/ru/Test_Framework_Workbench.md +++ b/wiki/translations/ru/Test_Framework_Workbench.md @@ -1,2 +1,5 @@ # Test Framework Workbench/ru 1. REDIRECT [Testing/ru](Testing/ru.md) + +--- +[documentation index](../README.md) > Test Framework Workbench/ru diff --git a/wiki/translations/ru/Testing.md b/wiki/translations/ru/Testing.md index f6a7079a72..1c9037e557 100644 --- a/wiki/translations/ru/Testing.md +++ b/wiki/translations/ru/Testing.md @@ -1,10 +1,4 @@ -# Testing/ru - - - - - -Логотип верстака для тестирования +# Логотип верстака для тестирования Testing/ru {{TOCright}} @@ -184,3 +178,6 @@ r.run(suite) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Test Framework](Category:Test_Framework.md) [Category:Workbenches](Category:Workbenches.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Testing/ru diff --git a/wiki/translations/ru/The_FreeCAD_source_code.md b/wiki/translations/ru/The_FreeCAD_source_code.md index 6422fb61cd..3c730bb044 100644 --- a/wiki/translations/ru/The_FreeCAD_source_code.md +++ b/wiki/translations/ru/The_FreeCAD_source_code.md @@ -1,5 +1,5 @@ # The FreeCAD source code/ru - The [FreeCAD source code](https://github.com/FreeCAD/FreeCAD) is managed with git, and is public, open and available under the [LGPL license](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License). It can be copied, downloaded, read, analyzed, redistributed and modified by anyone. If you plan to make modifications that you wish to see included into the official code itself, remember that your changes will need to be approved by the FreeCAD developers, so it is wise to discuss first your intents and ideas on the [forum](http://forum.freecadweb.org), to avoid the risk to have your changes rejected for some reason you didn\'t foresee. +The [FreeCAD source code](https://github.com/FreeCAD/FreeCAD) is managed with git, and is public, open and available under the [LGPL license](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License). It can be copied, downloaded, read, analyzed, redistributed and modified by anyone. If you plan to make modifications that you wish to see included into the official code itself, remember that your changes will need to be approved by the FreeCAD developers, so it is wise to discuss first your intents and ideas on the [forum](http://forum.freecadweb.org), to avoid the risk to have your changes rejected for some reason you didn\'t foresee. Below are some clues and useful information to get you on tracks if you are interested in exploring the FreeCAD code. @@ -33,3 +33,6 @@ Below are some clues and useful information to get you on tracks if you are inte - [FCStd](File_Format_FCStd.md) - the FreeCAD file format [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > The FreeCAD source code/ru diff --git a/wiki/translations/ru/Third_Party_Libraries.md b/wiki/translations/ru/Third_Party_Libraries.md index 8fed5dfe66..4b1e309157 100644 --- a/wiki/translations/ru/Third_Party_Libraries.md +++ b/wiki/translations/ru/Third_Party_Libraries.md @@ -1,10 +1,4 @@ # Third Party Libraries/ru - - - - - - {{TOCright}} ### Обзор @@ -294,3 +288,6 @@ See the announcement in the forum: [New libpacks for Windows with Qt5.12, OCC7.3 [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Libraries/ru diff --git a/wiki/translations/ru/Third_Party_Tools.md b/wiki/translations/ru/Third_Party_Tools.md index cc7d4ad39d..79a955f4b5 100644 --- a/wiki/translations/ru/Third_Party_Tools.md +++ b/wiki/translations/ru/Third_Party_Tools.md @@ -1,10 +1,4 @@ # Third Party Tools/ru - - - - - - {{TOCright}} ## Tool Page @@ -155,3 +149,6 @@ Free and open source software for video recording and live streaming. More detai [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Tools/ru diff --git a/wiki/translations/ru/Thread_for_Screw_Tutorial.md b/wiki/translations/ru/Thread_for_Screw_Tutorial.md index 0cd17ad913..56ad4feb9f 100644 --- a/wiki/translations/ru/Thread_for_Screw_Tutorial.md +++ b/wiki/translations/ru/Thread_for_Screw_Tutorial.md @@ -1,7 +1,4 @@ # Thread for Screw Tutorial/ru - - - {{TutorialInfo/ru |Topic=Product design |Level=Advanced @@ -239,4 +236,7 @@ ISO and other threads have relieved, ie flat, inner and outer edges rather than ![761PX](images/Threadform.PNG ) -This method produces reliable solids that boolean properly. While it doesn\'t produce \"parametric\" screw threads in standard sizes in the sense of having simple access to form by fastener size, it\'s an easy way of producing an accurate library for reuse, and models of specialised forms like ACME, or Archimedian screws, are also uncomplicated as one-offs. {{Tutorials navi}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +This method produces reliable solids that boolean properly. While it doesn\'t produce \"parametric\" screw threads in standard sizes in the sense of having simple access to form by fastener size, it\'s an easy way of producing an accurate library for reuse, and models of specialised forms like ACME, or Archimedian screws, are also uncomplicated as one-offs. {{Tutorials navi}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Thread for Screw Tutorial/ru diff --git a/wiki/translations/ru/Tolerancing.md b/wiki/translations/ru/Tolerancing.md index ff5a18cc7a..c330664720 100644 --- a/wiki/translations/ru/Tolerancing.md +++ b/wiki/translations/ru/Tolerancing.md @@ -1,7 +1,4 @@ # Tolerancing/ru - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -83,3 +80,6 @@ There are two approaches to specifying Product and Manufacturing Information (PM - [Straight To The Point Engineering (Video tutorials)](https://www.youtube.com/c/StraightToThePointEngineering/videos?view=0&sort=da&flow=grid) [Category:Roadmap](Category:Roadmap.md) [Category:TechDraw](Category:TechDraw.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Tolerancing/ru diff --git a/wiki/translations/ru/Toothbrush_Head_Stand.md b/wiki/translations/ru/Toothbrush_Head_Stand.md index f234e318a2..b394975d2e 100644 --- a/wiki/translations/ru/Toothbrush_Head_Stand.md +++ b/wiki/translations/ru/Toothbrush_Head_Stand.md @@ -1,5 +1,5 @@ # Toothbrush Head Stand/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic=Modeling |Level=Beginner |Author=[EmmanuelG](User:EmmanuelG.md) @@ -427,4 +427,7 @@ Perfect ! {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Toothbrush Head Stand/ru diff --git a/wiki/translations/ru/Topological_data_scripting.md b/wiki/translations/ru/Topological_data_scripting.md index 6daa59ac5d..6f1f63a690 100644 --- a/wiki/translations/ru/Topological_data_scripting.md +++ b/wiki/translations/ru/Topological_data_scripting.md @@ -1,7 +1,4 @@ # Topological data scripting/ru - - - {{TOCright}} ## Введение @@ -1310,3 +1307,6 @@ s.read("test.stp") ```{{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting/ru diff --git a/wiki/translations/ru/Topological_naming_problem.md b/wiki/translations/ru/Topological_naming_problem.md index bfed2b9f56..6adac867cb 100644 --- a/wiki/translations/ru/Topological_naming_problem.md +++ b/wiki/translations/ru/Topological_naming_problem.md @@ -1,6 +1,4 @@ # Topological naming problem/ru - - ## Вступление @@ -130,3 +128,6 @@ Datum objects, [points](PartDesign_Point.md), [lines](PartDesign_Line.md), [plan {{TechDraw Tools navi}} {{PartDesign Tools navi}} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Topological naming problem/ru diff --git a/wiki/translations/ru/Tracker.md b/wiki/translations/ru/Tracker.md index dbdaec5fa5..792fd5b829 100644 --- a/wiki/translations/ru/Tracker.md +++ b/wiki/translations/ru/Tracker.md @@ -1,10 +1,4 @@ # Tracker/ru - - - - - - {{TOCright}} ![](images/Mantis_logo_262x90.png ) @@ -188,3 +182,6 @@ For the inquisitive here is the regex MantisBT uses for this operation: [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Tracker/ru diff --git a/wiki/translations/ru/Transient_FEM_analysis.md b/wiki/translations/ru/Transient_FEM_analysis.md index 002ea8d557..667d5f4796 100644 --- a/wiki/translations/ru/Transient_FEM_analysis.md +++ b/wiki/translations/ru/Transient_FEM_analysis.md @@ -1,5 +1,5 @@ # Transient FEM analysis/ru - } +} {{TutorialInfo/ru @@ -101,4 +101,7 @@ setup() {{Tutorials navi -}} {{FEM Tools navi}} +}} {{FEM Tools navi}} + +--- +[documentation index](../README.md) > Transient FEM analysis/ru diff --git a/wiki/translations/ru/Translating_an_external_workbench.md b/wiki/translations/ru/Translating_an_external_workbench.md index f7db826212..b59a7609d1 100644 --- a/wiki/translations/ru/Translating_an_external_workbench.md +++ b/wiki/translations/ru/Translating_an_external_workbench.md @@ -1,6 +1,4 @@ # Translating an external workbench/ru - - In the following notes, `"context"` should be your addon\'s or workbench\'s name, for example, `"MySuperAddon"` or `"DraftPlus"`, or whatever. This context makes it so that all translation of your code will be gathered under the same name, to be more easily identified by translators. That is, they will know exactly to which addon or workbench a particular string belongs. **Note**: Here is an all-in-one script that automates the complete procedure mentioned below (you are still advised to read the procedure to know what the script should do, though): @@ -224,3 +222,6 @@ Yorik maintains a convenience script for the BIM workbench, that can gather, upl [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Translating an external workbench/ru diff --git a/wiki/translations/ru/Tree_view.md b/wiki/translations/ru/Tree_view.md index 1547125d61..d7ffeeac99 100644 --- a/wiki/translations/ru/Tree_view.md +++ b/wiki/translations/ru/Tree_view.md @@ -1,5 +1,5 @@ # Tree view/ru - {{TOCright}} +{{TOCright}} ## Введение @@ -147,4 +147,7 @@ {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Tree view/ru diff --git a/wiki/translations/ru/Tutorial_FreeCAD_POV_ray.md b/wiki/translations/ru/Tutorial_FreeCAD_POV_ray.md index 89b9a9bc3f..a3b264b671 100644 --- a/wiki/translations/ru/Tutorial_FreeCAD_POV_ray.md +++ b/wiki/translations/ru/Tutorial_FreeCAD_POV_ray.md @@ -1,7 +1,4 @@ # Tutorial FreeCAD POV ray/ru - - - **The [Raytracing workbench](Raytracing_Workbench.md) is being superseded by the new [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This must not be confused with the halted and outdated [Render project](Render_project.md). The Render Workbench can be installed through the [Addon Manager](AddonManager.md). The information here is provided because by default FreeCAD is still shipped (as of 0.19-24276) with the Raytracing Workbench, and because the new workbench should basically work in the same way** @@ -863,4 +860,7 @@ The user is advised to read the POV-Ray documentation and more tutorials or exam {{Tutorials navi -}} {{Raytracing Tools navi}} +}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > Tutorial FreeCAD POV ray/ru diff --git a/wiki/translations/ru/Tutorial_Render_with_Blender.md b/wiki/translations/ru/Tutorial_Render_with_Blender.md index 6c65571391..4dc16001d7 100644 --- a/wiki/translations/ru/Tutorial_Render_with_Blender.md +++ b/wiki/translations/ru/Tutorial_Render_with_Blender.md @@ -1,7 +1,4 @@ # Tutorial Render with Blender/ru - - - {{TutorialInfo/ru |Topic=Rendering |Level=Intermediate @@ -337,4 +334,7 @@ On the other hand, Cycles is a true raytracing renderer which means it is more a Both renderers can be used to leverage the advantages of each. In many cases the scene can be quickly prepared and tested with EEVEE to obtain preliminary renderings; then the same scene can be used with minor changes with Cycles in order to produce a higher quality, final rendering. In particular, when a scene that was setup with EEVEE will be used with Cycles, the lights may need to be adjusted in value and position as both renderers treat light in different ways. -Obtaining good results is highly dependent on the rendering options, the materials, and the lighting. The `Principled BSDF` material shader is a generic solution that works well for many cases, however, to produce truly photorealistic results, the use of texture maps and normal maps, along with careful lighting of the scene is still very important. {{Tutorials navi}} {{Raytracing Tools navi}} +Obtaining good results is highly dependent on the rendering options, the materials, and the lighting. The `Principled BSDF` material shader is a generic solution that works well for many cases, however, to produce truly photorealistic results, the use of texture maps and normal maps, along with careful lighting of the scene is still very important. {{Tutorials navi}} {{Raytracing Tools navi}} + +--- +[documentation index](../README.md) > Tutorial Render with Blender/ru diff --git a/wiki/translations/ru/Tutorial_custom_placing_of_windows_and_doors.md b/wiki/translations/ru/Tutorial_custom_placing_of_windows_and_doors.md index 2da88bb38d..b5bf053a97 100644 --- a/wiki/translations/ru/Tutorial_custom_placing_of_windows_and_doors.md +++ b/wiki/translations/ru/Tutorial_custom_placing_of_windows_and_doors.md @@ -1,5 +1,5 @@ # Tutorial custom placing of windows and doors/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic=Архитектура |Level=Средний |Time=60 минут @@ -352,4 +352,7 @@ abs(N) = 1 = sqrt(sin^2(angle) + cos^2(angle) + z^2) {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Tutorial custom placing of windows and doors/ru diff --git a/wiki/translations/ru/Tutorial_for_open_windows.md b/wiki/translations/ru/Tutorial_for_open_windows.md index b83976e3d8..c2094fc2ee 100644 --- a/wiki/translations/ru/Tutorial_for_open_windows.md +++ b/wiki/translations/ru/Tutorial_for_open_windows.md @@ -1,7 +1,4 @@ # Tutorial for open windows/ru - - - {{TutorialInfo/ru |Topic=Architecture |Level=Beginner @@ -246,4 +243,7 @@ A closer interaction between the workbenches is planed for future versions of Fr {{Tutorials navi -}} {{TechDraw Tools navi}} +}} {{TechDraw Tools navi}} + +--- +[documentation index](../README.md) > [Arch](Category:Arch.md) > Tutorial for open windows/ru diff --git a/wiki/translations/ru/Tutorials.md b/wiki/translations/ru/Tutorials.md index bc79946b77..d0413175e3 100644 --- a/wiki/translations/ru/Tutorials.md +++ b/wiki/translations/ru/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/ru - - - - - - {{TOCright}} На этой странице представлен набор высококачественных письменных руководств. Полный, несортированный список учебных пособий на английском языке можно найти в [:Category:Tutorials](:Category:Tutorials.md), на русском языке в [:Category:Tutorials/ru](:Category:Tutorials/ru.md), полный и сортируемый список - в [таблице ниже](Tutorials/ru#Учебники_-_Полный_список.md).     Так же посетите [video tutorials](Video_tutorials/ru.md) и [offsite tutorials](Offsite_tutorials/ru.md) ради обучающих программ, размещенных на внешних сайтах. Полезным источником видеоуроков является [YouTube](https://YouTube.com). @@ -375,3 +369,6 @@ Drawing\_tutorial\_result.png\|link=[Drawing tutorial/ru](Drawing_tutorial/ru.md [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials]], на русском языке в ](Category:Tutorials]], на русском языке в .md) > Tutorials/ru diff --git a/wiki/translations/ru/Ubuntu_Snap.md b/wiki/translations/ru/Ubuntu_Snap.md index 726aafb7fb..1ef1eb2cee 100644 --- a/wiki/translations/ru/Ubuntu_Snap.md +++ b/wiki/translations/ru/Ubuntu_Snap.md @@ -1,6 +1,4 @@ # Ubuntu Snap/ru - - ## Вступление An [Ubuntu Snap](Ubuntu_Snap.md) package, or just [Snap](Ubuntu_Snap.md) is a distribution format similar to [AppImage](AppImage.md) in that it is intended to be a \"universal installable package\" to deploy software in Linux systems. Snaps were introduced by Ubuntu but they are intended to run in all Linux distributions as long as the Snap daemon, or `snapd`, is available in the target system. @@ -37,5 +35,5 @@ More information about current efforts to deal with Snaps. - [0.19 Snap Preview needs \"testers\"](https://forum.freecadweb.org/viewtopic.php?f=4&t=46044), older Snap by **vejmarie** - [Discussion: State of the snap (Snap Packaging)](https://forum.freecadweb.org/viewtopic.php?f=42&t=46853), newer version of the Snap by **ppd** - - +--- +[documentation index](../README.md) > Ubuntu Snap/ru diff --git a/wiki/translations/ru/Units.md b/wiki/translations/ru/Units.md index 30d5cd4929..f7f29ba8fe 100644 --- a/wiki/translations/ru/Units.md +++ b/wiki/translations/ru/Units.md @@ -1,7 +1,4 @@ # Units/ru - - -
Некоторые сведения об единицах измерения: @@ -297,4 +294,7 @@ It becomes thus very easy to manage any number of properties with any kind of un {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Units/ru diff --git a/wiki/translations/ru/User_hub.md b/wiki/translations/ru/User_hub.md index 29b7d2e985..b8728bb0fd 100644 --- a/wiki/translations/ru/User_hub.md +++ b/wiki/translations/ru/User_hub.md @@ -1,5 +1,4 @@ -# User hub/ru - +# User hub/ru ------------------------------------------------------------------------ @@ -140,3 +139,6 @@ [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/ru diff --git a/wiki/translations/ru/VRML_Preparation_for_Robot_Simulation.md b/wiki/translations/ru/VRML_Preparation_for_Robot_Simulation.md index dc7980cdaf..2f150e84a7 100644 --- a/wiki/translations/ru/VRML_Preparation_for_Robot_Simulation.md +++ b/wiki/translations/ru/VRML_Preparation_for_Robot_Simulation.md @@ -1,7 +1,4 @@ # VRML Preparation for Robot Simulation/ru - - -
@@ -392,3 +389,6 @@ Group { [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > VRML Preparation for Robot Simulation/ru diff --git a/wiki/translations/ru/Video_tutorials.md b/wiki/translations/ru/Video_tutorials.md index 584aac51d4..04c25795b2 100644 --- a/wiki/translations/ru/Video_tutorials.md +++ b/wiki/translations/ru/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials/ru - - - **Обратите внимание на версию FreeCAD, используемую в руководстве. Если в учебнике используется более старая версия программы, общий процесс моделирования может по-прежнему работать, но некоторые инструменты могут быть изменены в более новых версиях. Не добавляйте видео, снятые в версии 0.16 или более ранней, так как эти выпуски считаются устаревшими.** На этой странице представлена подборка видеоуроков, созданных пользователями и разработчиками FreeCAD. Посетите подфорум [Учебники и видео](https://forum.freecadweb.org/viewforum.php?f=36) для получения дополнительных ссылок. Полезный источник видеоуроков - [YouTube](https://YouTube.com). @@ -95,3 +92,6 @@ For more see [Video tutorials obsolete](Video_tutorials_obsolete.md). }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Tutorials/ru]] (не переведённые - в ](Category:Tutorials/ru]] (не переведённые - в .md) > Video tutorials/ru diff --git a/wiki/translations/ru/Video_tutorials_for_architectural_design.md b/wiki/translations/ru/Video_tutorials_for_architectural_design.md index 4ecd56d3c4..19cf9cfa9b 100644 --- a/wiki/translations/ru/Video_tutorials_for_architectural_design.md +++ b/wiki/translations/ru/Video_tutorials_for_architectural_design.md @@ -1,5 +1,5 @@ # Video tutorials for architectural design/ru - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** ## Введение @@ -47,4 +47,7 @@ Videos that go through modeling of rooms, houses, office buildings, and similar {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Video tutorials for architectural design/ru diff --git a/wiki/translations/ru/Video_tutorials_for_product_design.md b/wiki/translations/ru/Video_tutorials_for_product_design.md index fc16078ff1..674afeabfe 100644 --- a/wiki/translations/ru/Video_tutorials_for_product_design.md +++ b/wiki/translations/ru/Video_tutorials_for_product_design.md @@ -1,5 +1,5 @@ # Video tutorials for product design/ru - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** ## Введение @@ -77,4 +77,7 @@ Although this list focuses on German content, many of these channels also have v {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Video tutorials for product design/ru diff --git a/wiki/translations/ru/Video_tutorials_obsolete.md b/wiki/translations/ru/Video_tutorials_obsolete.md index e4f00d8878..beada78b30 100644 --- a/wiki/translations/ru/Video_tutorials_obsolete.md +++ b/wiki/translations/ru/Video_tutorials_obsolete.md @@ -1,5 +1,5 @@ # Video tutorials obsolete/ru - **In FreeCAD 0.17 the [PartDesign Workbench](PartDesign_Workbench.md) received important updates that change the way solids are created with respect to previous versions. New users should watch videos for versions 0.17 and above to understand the concept of working with a [PartDesign Body](PartDesign_Body.md) and datum objects.** **These videos are considered obsolete because they use v0.16 or earlier versions of the program.** +**In FreeCAD 0.17 the [PartDesign Workbench](PartDesign_Workbench.md) received important updates that change the way solids are created with respect to previous versions. New users should watch videos for versions 0.17 and above to understand the concept of working with a [PartDesign Body](PartDesign_Body.md) and datum objects.** **These videos are considered obsolete because they use v0.16 or earlier versions of the program.** ## Introduction @@ -56,4 +56,7 @@ For up-to-date videos on different topics, see the [video tutorials](video_tutor {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Video tutorials obsolete/ru diff --git a/wiki/translations/ru/View_Measure_Clear_All.md b/wiki/translations/ru/View_Measure_Clear_All.md index 797ad23cd9..e544d47fed 100644 --- a/wiki/translations/ru/View_Measure_Clear_All.md +++ b/wiki/translations/ru/View_Measure_Clear_All.md @@ -7,6 +7,8 @@ SeeAlso:[View Measure Toggle All](View_Measure_Toggle_All/ru.md), [Part Measure Toggle All](Part_Measure_Toggle_All/ru.md), [Part Measure Clear All](Part_Measure_Clear_All/ru.md) --- +# View Measure Clear All/ru + ## Описание The **View Measure Clear All** command clears the active [3D view](3D_view.md)\'s [Part](Part_Workbench.md) measurements. @@ -27,4 +29,7 @@ The **View Measure Clear All** command clears the active [3D view](3D_view.md)\' {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > View Measure Clear All/ru diff --git a/wiki/translations/ru/View_Measure_Toggle_All.md b/wiki/translations/ru/View_Measure_Toggle_All.md index c302513289..c92afdd7bc 100644 --- a/wiki/translations/ru/View_Measure_Toggle_All.md +++ b/wiki/translations/ru/View_Measure_Toggle_All.md @@ -7,6 +7,8 @@ SeeAlso:[View Measure Clear All](View_Measure_Clear_All.md), [Part Measure Toggle All](Part_Measure_Toggle_All.md), [Part Measure Clear All](Part_Measure_Clear_All.md) --- +# View Measure Toggle All/ru + ## Описание The **View Measure Toggle All** command toggles the display of the active [3D view](3D_view.md)\'s [Part](Part_Workbench.md) measurements. @@ -27,4 +29,7 @@ The **View Measure Toggle All** command toggles the display of the active [3D vi {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > View Measure Toggle All/ru diff --git a/wiki/translations/ru/Washers.md b/wiki/translations/ru/Washers.md index 65901330a8..ceb6052017 100644 --- a/wiki/translations/ru/Washers.md +++ b/wiki/translations/ru/Washers.md @@ -1,2 +1,5 @@ # Washers/ru 1. REDIRECT [Washers](Washers.md) + +--- +[documentation index](../README.md) > Washers/ru diff --git a/wiki/translations/ru/WebTools_BimServer.md b/wiki/translations/ru/WebTools_BimServer.md index 5d09f067a9..212490bcb0 100644 --- a/wiki/translations/ru/WebTools_BimServer.md +++ b/wiki/translations/ru/WebTools_BimServer.md @@ -8,6 +8,8 @@ SeeAlso: --- +# WebTools BimServer/ru +
@@ -54,3 +56,6 @@ In order to use this command, the following conditions must be met: - Choose the **Root object** you wish to upload. It must be either an [Arch Site](Arch_Site.md) or an [Arch Building](Arch_Building.md). Only objects belonging to that root object will be uploaded. - Write a **Comment**, that will be the description (name) of the revision. - Press the **Upload** button. A dialog box will open to allow you to save the produced IFC file at a location of your choice before uploading it. If you press **Cancel**, the file will be saved under a temporary name in the system\'s temporary directory instead. + +--- +[documentation index](../README.md) > WebTools BimServer/ru diff --git a/wiki/translations/ru/WebTools_Git.md b/wiki/translations/ru/WebTools_Git.md index 5653ee7eb9..8dc9cb55c1 100644 --- a/wiki/translations/ru/WebTools_Git.md +++ b/wiki/translations/ru/WebTools_Git.md @@ -8,6 +8,8 @@ ‏‎ SeeAlso: --- +# WebTools Git/ru +
@@ -124,3 +126,6 @@ Alternatively, if you want to invoke fcinfo with arguments (e.g., --gui) use thi [diff "fcinfo"] textconv = sh -c '/path/to/fcinfo --gui "$0"' + +--- +[documentation index](../README.md) > WebTools Git/ru diff --git a/wiki/translations/ru/Web_Workbench.md b/wiki/translations/ru/Web_Workbench.md index 4f076f543d..b9b98c48a7 100644 --- a/wiki/translations/ru/Web_Workbench.md +++ b/wiki/translations/ru/Web_Workbench.md @@ -1,10 +1,4 @@ -# Web Workbench/ru - - - - - -Логотип верстака Web +# Логотип верстака Web Web Workbench/ru ## Введение @@ -25,3 +19,6 @@ From this browser you are able to navigate the web, click on links, read the onl [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/ru diff --git a/wiki/translations/ru/Whiffle_Ball_tutorial.md b/wiki/translations/ru/Whiffle_Ball_tutorial.md index 6ed730ed3b..22df8b583a 100644 --- a/wiki/translations/ru/Whiffle_Ball_tutorial.md +++ b/wiki/translations/ru/Whiffle_Ball_tutorial.md @@ -1,5 +1,5 @@ # Whiffle Ball tutorial/ru - {{TutorialInfo/ru +{{TutorialInfo/ru |Topic=Разработка продукта |Level=Начинающий |Time=30 минут @@ -252,4 +252,7 @@ {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Whiffle Ball tutorial/ru diff --git a/wiki/translations/ru/WikiPages.md b/wiki/translations/ru/WikiPages.md index 4dcc2aa373..5aff41f0ae 100644 --- a/wiki/translations/ru/WikiPages.md +++ b/wiki/translations/ru/WikiPages.md @@ -1,5 +1,5 @@ # WikiPages/ru - {{TOCright}} +{{TOCright}} This page is an extension of the [Help:Editing](Help:Editing.md) page and gives common guidelines for writing and updating the FreeCAD wiki documentation. It summarizes several discussions and brainstorming sessions @@ -534,3 +534,6 @@ The [Development/Wiki subforum](http://forum.freecadweb.org/viewforum.php?f=21) - [Polish](Polish_translation.md) [Category:Documentation](Category:Documentation.md) [Category:Wiki](Category:Wiki.md) [Category:Wiki Documentation](Category:Wiki_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > WikiPages/ru diff --git a/wiki/translations/ru/Wikihouse_porting_tutorial.md b/wiki/translations/ru/Wikihouse_porting_tutorial.md index 7815128021..ea5620981e 100644 --- a/wiki/translations/ru/Wikihouse_porting_tutorial.md +++ b/wiki/translations/ru/Wikihouse_porting_tutorial.md @@ -1,7 +1,4 @@ # Wikihouse porting tutorial/ru - - - {{TutorialInfo/ru |Topic= Wikihouse porting tutorial |Level= Intermediate/Advanced @@ -135,3 +132,6 @@ The last step is simply to select all the sheets, then export them to DXF from m ![](images/Arch_Wikihouse_04.jpg ) These files are ready to send to the shops that will do the actual cut. It would be possible to generate the G-Code to be sent to the CNC machine directly from FreeCAD too, but that is matter for another tutorial. + +--- +[documentation index](../README.md) > Wikihouse porting tutorial/ru diff --git a/wiki/translations/ru/Windows_packaging.md b/wiki/translations/ru/Windows_packaging.md index b64e04270b..f87c5cdce9 100644 --- a/wiki/translations/ru/Windows_packaging.md +++ b/wiki/translations/ru/Windows_packaging.md @@ -1,4 +1,5 @@ # Windows packaging/ru - - [Category:Packaging](Category:Packaging.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > Windows packaging/ru diff --git a/wiki/translations/ru/Wished_tools.md b/wiki/translations/ru/Wished_tools.md index b5c5bf9631..9a9e9b25fa 100644 --- a/wiki/translations/ru/Wished_tools.md +++ b/wiki/translations/ru/Wished_tools.md @@ -1,5 +1,5 @@ # Wished tools/ru - I begin this page as an attempt to gather end-user wishes on specific tools they would like to find in FreeCAD. Several cad users already chatted with me about cad tools, about what they use most, what they would like to see in FreeCAD, what they couldn\'t live without, etc\... Although FreeCAD is not meant to specifically become a replacement for any other famous CAD software (especially the one that begins with Auto and ends with CAD), I think this can become a good reference to know about end-users expectations, and maybe to prioritize things over others in development. +I begin this page as an attempt to gather end-user wishes on specific tools they would like to find in FreeCAD. Several cad users already chatted with me about cad tools, about what they use most, what they would like to see in FreeCAD, what they couldn\'t live without, etc\... Although FreeCAD is not meant to specifically become a replacement for any other famous CAD software (especially the one that begins with Auto and ends with CAD), I think this can become a good reference to know about end-users expectations, and maybe to prioritize things over others in development. Если вы являетесь пользователем САПР и хотели бы добавить что-то здесь, не стесняйтесь редактировать, мы будем рады узнать ваше мнение здесь. @@ -79,3 +79,6 @@ - Assemblies [Category:Hubs](Category:Hubs.md) [Category:Roadmap](Category:Roadmap.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Wished tools/ru diff --git a/wiki/translations/ru/Workbench_Concept.md b/wiki/translations/ru/Workbench_Concept.md index ddca345c3d..41cabd9e20 100644 --- a/wiki/translations/ru/Workbench_Concept.md +++ b/wiki/translations/ru/Workbench_Concept.md @@ -1,2 +1,5 @@ # Workbench Concept/ru 1. REDIRECT [Workbenches/ru](Workbenches/ru.md) + +--- +[documentation index](../README.md) > Workbench Concept/ru diff --git a/wiki/translations/ru/Workbench_Selector.md b/wiki/translations/ru/Workbench_Selector.md index ea905fc1f5..5a97b9dffe 100644 --- a/wiki/translations/ru/Workbench_Selector.md +++ b/wiki/translations/ru/Workbench_Selector.md @@ -4,3 +4,6 @@ [Category:Redirects](Category:Redirects.md) + +--- +[documentation index](../README.md) > Workbench Selector/ru diff --git a/wiki/translations/ru/Workbench_creation.md b/wiki/translations/ru/Workbench_creation.md index 19d954077d..c7e2dac732 100644 --- a/wiki/translations/ru/Workbench_creation.md +++ b/wiki/translations/ru/Workbench_creation.md @@ -1,10 +1,4 @@ # Workbench creation/ru - - - - - - {{TOCright}} ## Вступление @@ -356,3 +350,6 @@ os.remove(qrc_filename) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > Workbench creation/ru diff --git a/wiki/translations/ru/Workbenches.md b/wiki/translations/ru/Workbenches.md index 8120ec071e..09f7edc0ca 100644 --- a/wiki/translations/ru/Workbenches.md +++ b/wiki/translations/ru/Workbenches.md @@ -1,9 +1,4 @@ # Workbenches/ru - - - - - FreeCAD, подобно многим современным приложениям для проектирования, таким как \[//ru.wikipedia.org/wiki/Revit Revit\] или \[//ru.wikipedia.org/wiki/CATIA CATIA\], базируется на концепции \[//ru.wikipedia.org/wiki/Верстак верстаков\]. Верстаки можно рассматривать как набор инструментов, специально сгруппированных под определенные задачи. В традиционных мебельных мастерских, вы имели бы рабочий стол для человека работающего с деревом, другой для работающего с металлическими частями, и, возможно, третий для того, который монтирует все это вместе. Тоже самое относится и к FreeCAD. Инструменты сгруппированы в верстаки в соответствии с задачами, к которым они относятся. @@ -83,3 +78,6 @@ The following workbenches are still included in the base installation for compat [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/ru diff --git a/wiki/translations/ru/Workfeature_Workbench.md b/wiki/translations/ru/Workfeature_Workbench.md index 5d363ad4cd..c05ff247e8 100644 --- a/wiki/translations/ru/Workfeature_Workbench.md +++ b/wiki/translations/ru/Workfeature_Workbench.md @@ -1,7 +1,4 @@ -# Workfeature Workbench/ru - - -Workfeature workbench icon +# Workfeature workbench icon Workfeature Workbench/ru {{Note|Note|Merge with [[Macro_WorkFeatures]]??}} @@ -78,3 +75,6 @@ This workbench can be installed from the [Addon Manager](Std_AddonMgr.md). - [External workbenches](External_workbenches.md) [Category:Sandbox](Category:Sandbox.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > Workfeature Workbench/ru diff --git a/wiki/translations/ru/Wrapping_a_Cplusplus_class_in_Python.md b/wiki/translations/ru/Wrapping_a_Cplusplus_class_in_Python.md index f6bd430dcc..52aa1dd24e 100644 --- a/wiki/translations/ru/Wrapping_a_Cplusplus_class_in_Python.md +++ b/wiki/translations/ru/Wrapping_a_Cplusplus_class_in_Python.md @@ -1,7 +1,4 @@ # Wrapping a Cplusplus class in Python/ru - - - **Эта статья-"заглушка". Пожалуйста, внесите в неё вклад своими знаниями!** @@ -143,3 +140,6 @@ PyAPI_FUNC(int) PyArg_VaParseTupleAndKeywords (PyObject *, PyObject *, const cha {{Powerdocnavi}} [Category:Developer](Category:Developer.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer](Category:Developer.md) > Wrapping a Cplusplus class in Python/ru diff --git a/wiki/translations/ru/Zoom_out.md b/wiki/translations/ru/Zoom_out.md index 4607c50520..4352bf8415 100644 --- a/wiki/translations/ru/Zoom_out.md +++ b/wiki/translations/ru/Zoom_out.md @@ -1,2 +1,5 @@ # Zoom out/ru 1. REDIRECT [Std View Menu/ru](Std_View_Menu/ru.md) + +--- +[documentation index](../README.md) > Zoom out/ru diff --git a/wiki/translations/sv/About_FreeCAD.md b/wiki/translations/sv/About_FreeCAD.md index 8ce2a25be0..61a7093357 100644 --- a/wiki/translations/sv/About_FreeCAD.md +++ b/wiki/translations/sv/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/sv - - - +# About FreeCAD/sv
@@ -50,3 +47,6 @@ FreeCAD is maintained and developed by a community of enthusiastic developers an [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/sv diff --git a/wiki/translations/sv/Arch_Add.md b/wiki/translations/sv/Arch_Add.md index d85b177a38..bd85699193 100644 --- a/wiki/translations/sv/Arch_Add.md +++ b/wiki/translations/sv/Arch_Add.md @@ -1,3 +1,4 @@ +# Arch Add/sv --- - GuiCommand:/sv Name:Arch Add Name/sv:Arch Add Workbenches:[MenuLocation:Arch → Add SeeAlso:[[Arch Remove/sv|Arch Remove](Arch_Workbench/sv___Arch]].md)--- @@ -93,11 +94,5 @@ Arch.addComponents(Wall2, Wall) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Add/sv diff --git a/wiki/translations/sv/Arch_Axis.md b/wiki/translations/sv/Arch_Axis.md index b56f0812f2..e240020911 100644 --- a/wiki/translations/sv/Arch_Axis.md +++ b/wiki/translations/sv/Arch_Axis.md @@ -1,3 +1,4 @@ +# Arch Axis/sv --- - GuiCommand:/sv Name:Arch Axis Name/sv:Arch Axis Workbenches:[[Arch_Workbench/sv Arch]]|MenuLocation:Arch -> Axis Shortcut:A X--- @@ -95,5 +96,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Axis/sv diff --git a/wiki/translations/sv/Arch_Building.md b/wiki/translations/sv/Arch_Building.md index 63df348ead..e6bdec4891 100644 --- a/wiki/translations/sv/Arch_Building.md +++ b/wiki/translations/sv/Arch_Building.md @@ -1,3 +1,4 @@ +# Arch Building/sv --- - GuiCommand:/sv Name:Arch Building Name/sv:Arch Building Workbenches:[MenuLocation:Arch → Building Shortcut:B U SeeAlso:[[Arch Cell/sv](Arch_Workbench/sv___Arch]].md)--- @@ -67,5 +68,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Building/sv diff --git a/wiki/translations/sv/Arch_Check.md b/wiki/translations/sv/Arch_Check.md index 44dac77bc5..d1556286d5 100644 --- a/wiki/translations/sv/Arch_Check.md +++ b/wiki/translations/sv/Arch_Check.md @@ -1,3 +1,4 @@ +# Arch Check/sv --- - GuiCommand:/sv Name:Arch Check Name/sv:Arch Check Workbenches:[MenuLocation:Arch → Utilities → Check SeeAlso:[[Arch CloseHoles/sv|Arch CloseHoles](Arch_Workbench/sv___Arch]].md)--- @@ -51,11 +52,5 @@ list_bad = Arch.check([Wall1, Wall2, Circle, Wire], includehidden=True) print(list_bad) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Check/sv diff --git a/wiki/translations/sv/Arch_CloseHoles.md b/wiki/translations/sv/Arch_CloseHoles.md index 9917d43afd..6b8d5d4451 100644 --- a/wiki/translations/sv/Arch_CloseHoles.md +++ b/wiki/translations/sv/Arch_CloseHoles.md @@ -1,3 +1,4 @@ +# Arch CloseHoles/sv --- - GuiCommand:/sv Name:Arch CloseHoles Name/sv:Arch CloseHoles Workbenches:[MenuLocation:Arch → Utilities → Close Holes SeeAlso:[[Arch Check/sv|Arch Check](Arch_Workbench/sv___Arch]].md)--- @@ -50,11 +51,5 @@ FreeCAD.ActiveDocument.recompute() solid = Arch.closeHole(Wall.Shape) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch CloseHoles/sv diff --git a/wiki/translations/sv/Arch_Floor.md b/wiki/translations/sv/Arch_Floor.md index 6bd25392a5..fe06a1fdaa 100644 --- a/wiki/translations/sv/Arch_Floor.md +++ b/wiki/translations/sv/Arch_Floor.md @@ -8,6 +8,8 @@ SeeAlso:[[Arch Building]], [[Arch BuildingPart]], [[Arch Site]] --- +# Arch Floor/sv + @@ -85,8 +87,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor/sv diff --git a/wiki/translations/sv/Arch_Frame.md b/wiki/translations/sv/Arch_Frame.md index bca85c3f9e..d0e67ed90b 100644 --- a/wiki/translations/sv/Arch_Frame.md +++ b/wiki/translations/sv/Arch_Frame.md @@ -9,6 +9,8 @@ SeeAlso/sv:[[Arch Wall/sv]], [[Arch Structure/sv]] --- +# Arch Frame/sv + @@ -87,8 +89,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Frame/sv diff --git a/wiki/translations/sv/Arch_IFC.md b/wiki/translations/sv/Arch_IFC.md index ccf3bccd10..f94d428fcd 100644 --- a/wiki/translations/sv/Arch_IFC.md +++ b/wiki/translations/sv/Arch_IFC.md @@ -1,7 +1,4 @@ # Arch IFC/sv - - -
@@ -98,3 +95,6 @@ If the shape of exported objects is based on an extrusion or a boolean operation [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IFC/sv diff --git a/wiki/translations/sv/Arch_IfcExplorer.md b/wiki/translations/sv/Arch_IfcExplorer.md index d9171d16af..a6d3b37e6e 100644 --- a/wiki/translations/sv/Arch_IfcExplorer.md +++ b/wiki/translations/sv/Arch_IfcExplorer.md @@ -6,6 +6,8 @@ SeeAlso:[Arch IFC](Arch_IFC/sv.md) --- +# Arch IfcExplorer/sv +
@@ -40,3 +42,6 @@ The purpose of this explorer is simply to allow you to check what is really writ [Category:BIM](Category:BIM.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch IfcExplorer/sv diff --git a/wiki/translations/sv/Arch_MeshToShape.md b/wiki/translations/sv/Arch_MeshToShape.md index 0125f1ced1..ce8fc5def0 100644 --- a/wiki/translations/sv/Arch_MeshToShape.md +++ b/wiki/translations/sv/Arch_MeshToShape.md @@ -6,6 +6,8 @@ SeeAlso:[Arch SplitMesh](Arch_SplitMesh/sv.md), [Arch RemoveShape](Arch_RemoveShape/sv.md) --- +# Arch MeshToShape/sv + @@ -76,5 +78,5 @@ new_obj = Arch.meshToShape(Box) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch MeshToShape/sv diff --git a/wiki/translations/sv/Arch_Module.md b/wiki/translations/sv/Arch_Module.md index 2062963293..95c9986cd4 100644 --- a/wiki/translations/sv/Arch_Module.md +++ b/wiki/translations/sv/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/sv 1. REDIRECT [Arch\_Workbench/sv](Arch_Workbench/sv.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/sv diff --git a/wiki/translations/sv/Arch_Rebar.md b/wiki/translations/sv/Arch_Rebar.md index b8641f50a6..a69f80a79a 100644 --- a/wiki/translations/sv/Arch_Rebar.md +++ b/wiki/translations/sv/Arch_Rebar.md @@ -1,3 +1,4 @@ +# Arch Rebar/sv --- - GuiCommand:/sv Name:Arch Rebar Name/sv:Arch Rebar Workbenches:[MenuLocation:Arch → Rebar Shortcut:R B SeeAlso:[[Arch Structure/sv|Arch Structure](Arch_Workbench/sv___Arch]].md)--- @@ -120,3 +121,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/sv](Category:Arch/sv.md) [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar/sv diff --git a/wiki/translations/sv/Arch_Remove.md b/wiki/translations/sv/Arch_Remove.md index 90405cff04..8f365c15fc 100644 --- a/wiki/translations/sv/Arch_Remove.md +++ b/wiki/translations/sv/Arch_Remove.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Add/sv]] --- +# Arch Remove/sv + @@ -102,8 +104,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove/sv diff --git a/wiki/translations/sv/Arch_RemoveShape.md b/wiki/translations/sv/Arch_RemoveShape.md index 90347f84b9..b0e25fec0f 100644 --- a/wiki/translations/sv/Arch_RemoveShape.md +++ b/wiki/translations/sv/Arch_RemoveShape.md @@ -7,6 +7,8 @@ SeeAlso:[MeshToShape](Arch_SplitMesh]],_[[Arch_MeshToShape/sv.md) --- +# Arch RemoveShape/sv + @@ -66,5 +68,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch RemoveShape/sv diff --git a/wiki/translations/sv/Arch_Roof.md b/wiki/translations/sv/Arch_Roof.md index 8f26849c4a..8f6ee494bd 100644 --- a/wiki/translations/sv/Arch_Roof.md +++ b/wiki/translations/sv/Arch_Roof.md @@ -1,3 +1,4 @@ +# Arch Roof/sv --- - GuiCommand:/sv Name:Arch Roof Name/sv:Arch Roof Workbenches:[[Arch_Workbench/sv Arch]]|MenuLocation:Arch → Roof Shortcut:R F--- @@ -126,3 +127,6 @@ doc.recompute() [Category:Arch/sv](Category:Arch/sv.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Roof/sv diff --git a/wiki/translations/sv/Arch_SectionPlane.md b/wiki/translations/sv/Arch_SectionPlane.md index 7381f3e36e..08dc128bd7 100644 --- a/wiki/translations/sv/Arch_SectionPlane.md +++ b/wiki/translations/sv/Arch_SectionPlane.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Shape2DView](Draft_Shape2DView.md), [TechDraw NewArch](TechDraw_NewArch.md) --- +# Arch SectionPlane/sv + @@ -149,3 +151,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/sv](Category:Arch/sv.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane/sv diff --git a/wiki/translations/sv/Arch_SelectNonSolidMeshes.md b/wiki/translations/sv/Arch_SelectNonSolidMeshes.md index 7f36bfa820..950df2a379 100644 --- a/wiki/translations/sv/Arch_SelectNonSolidMeshes.md +++ b/wiki/translations/sv/Arch_SelectNonSolidMeshes.md @@ -6,6 +6,8 @@ SeeAlso:[Arch MeshToShape](Arch_SplitMesh/sv]],_[[Arch_MeshToShape/sv.md) --- +# Arch SelectNonSolidMeshes/sv + @@ -33,5 +35,5 @@ This tool identifies and selects the non-solid (non-[manifold](http://en.wikiped - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SelectNonSolidMeshes/sv diff --git a/wiki/translations/sv/Arch_Site.md b/wiki/translations/sv/Arch_Site.md index 5c40844986..dcbe42f808 100644 --- a/wiki/translations/sv/Arch_Site.md +++ b/wiki/translations/sv/Arch_Site.md @@ -1,3 +1,4 @@ +# Arch Site/sv --- - GuiCommand:/sv Name:Arch Site Name/sv:Arch Site Workbenches:[MenuLocation:Arch → Site Shortcut:S I SeeAlso:[[Arch Floor/sv|Arch Floor](Arch_Workbench/sv___Arch]].md), [Arch Building](Arch_Building/sv.md)--- @@ -170,3 +171,6 @@ FreeCAD.Gui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node) [Category:Arch/sv](Category:Arch/sv.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Site/sv diff --git a/wiki/translations/sv/Arch_Space.md b/wiki/translations/sv/Arch_Space.md index 1008f0bdfb..8b9ef510ba 100644 --- a/wiki/translations/sv/Arch_Space.md +++ b/wiki/translations/sv/Arch_Space.md @@ -8,6 +8,8 @@ Version:0.14 --- +# Arch Space/sv + @@ -148,5 +150,5 @@ Arch.removeSpaceBoundaries(Space, selection) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Space/sv diff --git a/wiki/translations/sv/Arch_SplitMesh.md b/wiki/translations/sv/Arch_SplitMesh.md index deead73deb..a190875575 100644 --- a/wiki/translations/sv/Arch_SplitMesh.md +++ b/wiki/translations/sv/Arch_SplitMesh.md @@ -1,3 +1,4 @@ +# Arch SplitMesh/sv --- - GuiCommand:/sv Name:Arch SplitMesh Name/sv:Arch SplitMesh Workbenches:[MenuLocation:Arch → Utilities → Split Mesh SeeAlso:[[Arch SelectNonSolidMeshes/sv|Arch SelectNonSolidMeshes](Arch_Workbench/sv___Arch]].md)--- @@ -53,11 +54,5 @@ mesh_obj.ViewObject.DisplayMode = "Flat Lines" new_list = Arch.splitMesh(mesh_obj) ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SplitMesh/sv diff --git a/wiki/translations/sv/Arch_Stairs.md b/wiki/translations/sv/Arch_Stairs.md index 4c14db757e..dcf2a21fee 100644 --- a/wiki/translations/sv/Arch_Stairs.md +++ b/wiki/translations/sv/Arch_Stairs.md @@ -8,6 +8,8 @@ Version:0.14 --- +# Arch Stairs/sv + @@ -107,5 +109,5 @@ Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Stairs/sv diff --git a/wiki/translations/sv/Arch_Structure.md b/wiki/translations/sv/Arch_Structure.md index 44e986b5ff..d59f632f89 100644 --- a/wiki/translations/sv/Arch_Structure.md +++ b/wiki/translations/sv/Arch_Structure.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall](Arch_Wall/sv.md) [Arch Rebar/sv](Arch_Rebar/sv.md) --- +# Arch Structure/sv + @@ -129,8 +131,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/sv diff --git a/wiki/translations/sv/Arch_Survey.md b/wiki/translations/sv/Arch_Survey.md index 57ba1b1917..67dd86402d 100644 --- a/wiki/translations/sv/Arch_Survey.md +++ b/wiki/translations/sv/Arch_Survey.md @@ -1,3 +1,4 @@ +# Arch Survey/sv --- - GuiCommand:/sv Name:Arch Survey Name/sv:Arch Survey Workbenches:[MenuLocation:Arch → Survey SeeAlso:[[Macro FCInfo/sv|FCInfo (macro)](Arch_Workbench/sv___Arch]].md)--- @@ -62,8 +63,5 @@ for obj in selection: print("Center of Mass: %f", element.CenterOfMass) ``` - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Survey/sv diff --git a/wiki/translations/sv/Arch_Wall.md b/wiki/translations/sv/Arch_Wall.md index 6a796b8336..3b6851f5cb 100644 --- a/wiki/translations/sv/Arch_Wall.md +++ b/wiki/translations/sv/Arch_Wall.md @@ -1,3 +1,4 @@ +# Arch Wall/sv --- - GuiCommand:/sv Name:Arch Wall Name/sv:Arch Wall Workbenches:[MenuLocation:Arch → Wall Shortcut:W A SeeAlso:[[Arch Structure/sv|Arch Structure](Arch_Workbench/sv___Arch]].md)--- @@ -154,3 +155,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/sv](Category:Arch/sv.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/sv diff --git a/wiki/translations/sv/Arch_Window.md b/wiki/translations/sv/Arch_Window.md index 3998553a23..44dcc25bc7 100644 --- a/wiki/translations/sv/Arch_Window.md +++ b/wiki/translations/sv/Arch_Window.md @@ -1,3 +1,4 @@ +# Arch Window/sv --- - GuiCommand:/sv Name:Arch Window Name/sv:Arch Window Workbenches:[MenuLocation:Arch → Window Shortcut:W I SeeAlso:[[Arch Wall/sv|Arch Wall](Arch_Workbench/sv___Arch]].md)--- @@ -230,3 +231,6 @@ Door = Arch.makeWindowPreset("Simple door", [Category:Arch/sv](Category:Arch/sv.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Window/sv diff --git a/wiki/translations/sv/Arch_Workbench.md b/wiki/translations/sv/Arch_Workbench.md index b65c17352e..46eca74e7c 100644 --- a/wiki/translations/sv/Arch_Workbench.md +++ b/wiki/translations/sv/Arch_Workbench.md @@ -1,7 +1,4 @@ # Arch Workbench/sv - - - {{docnav/sv|[Workbenches/sv](Workbenches/sv.md)|[Draft Workbench/sv](Draft_Workbench/sv.md)|IconL=|IconR=Workbench_Draft.svg}} Arch workbench icon @@ -144,3 +141,6 @@ The Arch module can be used in [Python](Python.md) scripts and [macros](macros.m [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/sv diff --git a/wiki/translations/sv/Assembly_project.md b/wiki/translations/sv/Assembly_project.md index a4cd532526..0552a08ea5 100644 --- a/wiki/translations/sv/Assembly_project.md +++ b/wiki/translations/sv/Assembly_project.md @@ -1,7 +1,4 @@ # Assembly project/sv - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -156,3 +153,6 @@ Interface to allow (external) (multi)physics simulation software to take control - \... [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Assembly project/sv diff --git a/wiki/translations/sv/Branding.md b/wiki/translations/sv/Branding.md index 425f2c81f0..80cbbf5438 100644 --- a/wiki/translations/sv/Branding.md +++ b/wiki/translations/sv/Branding.md @@ -1,10 +1,4 @@ # Branding/sv - - - - - - {{TOCright}} ## Overview @@ -122,3 +116,6 @@ All listed tags are optional. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Branding/sv diff --git a/wiki/translations/sv/Category:API.md b/wiki/translations/sv/Category:API.md index c26d20c995..723dd07acf 100644 --- a/wiki/translations/sv/Category:API.md +++ b/wiki/translations/sv/Category:API.md @@ -8,3 +8,6 @@ This category gathers article that list objects and methods available to the pyt [Draft API/sv](Draft_API/sv.md) [Category:Categories/sv](Category:Categories/sv.md) + +--- +[documentation index](../README.md) > Category:API/sv diff --git a/wiki/translations/sv/Category:Addons.md b/wiki/translations/sv/Category:Addons.md index 94816aab27..f7ba7af79b 100644 --- a/wiki/translations/sv/Category:Addons.md +++ b/wiki/translations/sv/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/sv - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [Plot Module/sv](Plot_Module/sv.md) , [Ship Workbench/sv](Ship_Workbench/sv.md) , [Category:Categories](Category:Categories.md) [Category:External Workbenches/sv](Category:External_Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Addons/sv diff --git a/wiki/translations/sv/Category:Administration.md b/wiki/translations/sv/Category:Administration.md index 7a47b261d3..398c368a60 100644 --- a/wiki/translations/sv/Category:Administration.md +++ b/wiki/translations/sv/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/sv](Template:Arch_Tools_navi/sv.md) , [Template:Drawing Tools navi/sv](Template:Drawing_Tools_navi/sv.md) , [Template:FEM Tools navi/sv](Template:FEM_Tools_navi/sv.md) , [Template:Mesh Tools navi/sv](Template:Mesh_Tools_navi/sv.md) , [Template:OpenSCAD Tools navi/sv](Template:OpenSCAD_Tools_navi/sv.md) , [Template:Part Tools navi/sv](Template:Part_Tools_navi/sv.md) , [Template:PartDesign Tools navi/sv](Template:PartDesign_Tools_navi/sv.md) , [Template:Path Tools navi/sv](Template:Path_Tools_navi/sv.md) , [Template:Plot Tools navi/sv](Template:Plot_Tools_navi/sv.md) , [Template:Powerdocnavi/sv](Template:Powerdocnavi/sv.md) , [Template:PropertyData/sv](Template:PropertyData/sv.md) , [Template:PropertyView/sv](Template:PropertyView/sv.md) , [Template:Raytracing Tools navi/sv](Template:Raytracing_Tools_navi/sv.md) , [Template:Robot Tools navi/sv](Template:Robot_Tools_navi/sv.md) , [Template:Ship Tools navi/sv](Template:Ship_Tools_navi/sv.md) , [Template:Sketcher Tools navi/sv](Template:Sketcher_Tools_navi/sv.md) , [Tracker/sv](Tracker/sv.md) , [Category:Categories/sv](Category:Categories/sv.md) [Category:UnfinishedDocu/sv](Category:UnfinishedDocu/sv.md) + +--- +[documentation index](../README.md) > Category:Administration/sv diff --git a/wiki/translations/sv/Category:Arch.md b/wiki/translations/sv/Category:Arch.md index 486297b67f..70ff93b141 100644 --- a/wiki/translations/sv/Category:Arch.md +++ b/wiki/translations/sv/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Arch Add/sv](Arch_Add/sv.md) , [Arch Axis/sv](Arch_Axis/sv.md) , [Arch Building/sv](Arch_Building/sv.md) , [Arch Check/sv](Arch_Check/sv.md) , [Arch CloseHoles/sv](Arch_CloseHoles/sv.md) , [Arch Floor/sv](Arch_Floor/sv.md) , [Arch Frame/sv](Arch_Frame/sv.md) , [Arch IFC/sv](Arch_IFC/sv.md) , [Arch IfcExplorer/sv](Arch_IfcExplorer/sv.md) , [Arch MeshToShape/sv](Arch_MeshToShape/sv.md) , [Arch Rebar/sv](Arch_Rebar/sv.md) , [Arch Remove/sv](Arch_Remove/sv.md) , [Arch RemoveShape/sv](Arch_RemoveShape/sv.md) , [Arch Roof/sv](Arch_Roof/sv.md) , [Arch SectionPlane/sv](Arch_SectionPlane/sv.md) , [Arch SelectNonSolidMeshes/sv](Arch_SelectNonSolidMeshes/sv.md) , [Arch Site/sv](Arch_Site/sv.md) , [Arch Space/sv](Arch_Space/sv.md) , [Arch SplitMesh/sv](Arch_SplitMesh/sv.md) , [Arch Stairs/sv](Arch_Stairs/sv.md) , [Arch Structure/sv](Arch_Structure/sv.md) , [Arch Survey/sv](Arch_Survey/sv.md) , [Template:Arch Tools navi/sv](Template:Arch_Tools_navi/sv.md) , [Arch Wall/sv](Arch_Wall/sv.md) , [Arch Window/sv](Arch_Window/sv.md) , [Arch Workbench/sv](Arch_Workbench/sv.md) [Category:User Documentation/sv](Category:User_Documentation/sv.md) [Category:BIM/sv](Category:BIM/sv.md) + +--- +[documentation index](../README.md) > Category:Arch/sv diff --git a/wiki/translations/sv/Category:BIM.md b/wiki/translations/sv/Category:BIM.md index 10c83ad8b0..008066e73a 100644 --- a/wiki/translations/sv/Category:BIM.md +++ b/wiki/translations/sv/Category:BIM.md @@ -6,3 +6,6 @@ This category is for pages related to building information management (BIM). [Arch IfcExplorer/sv](Arch_IfcExplorer/sv.md) , [Category:User Documentation/sv](Category:User_Documentation/sv.md) [Category:Arch/sv](Category:Arch/sv.md) + +--- +[documentation index](../README.md) > Category:BIM/sv diff --git a/wiki/translations/sv/Category:Base.md b/wiki/translations/sv/Category:Base.md index 1a316a2a76..8e4de3ed93 100644 --- a/wiki/translations/sv/Category:Base.md +++ b/wiki/translations/sv/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/sv](Category:User_Documentation/sv.md) + +--- +[documentation index](../README.md) > Category:Base/sv diff --git a/wiki/translations/sv/Category:Categories.md b/wiki/translations/sv/Category:Categories.md index a475bbc239..0fbc844709 100644 --- a/wiki/translations/sv/Category:Categories.md +++ b/wiki/translations/sv/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , , , , , , , , [Category:Categories/sv](Category:Categories/sv.md) [Category:Addons/sv](Category:Addons/sv.md) [Category:Administration/sv](Category:Administration/sv.md) [Category:API/sv](Category:API/sv.md) [Category:Categories/sv](Category:Categories/sv.md) [Category:Command Reference/sv](Category:Command_Reference/sv.md) [Category:Developer/sv](Category:Developer/sv.md) [Category:Documentation/sv](Category:Documentation/sv.md) [Category:Hubs/sv](Category:Hubs/sv.md) [Category:Macros/sv](Category:Macros/sv.md) [Category:Python Code/sv](Category:Python_Code/sv.md) [Category:Repository/sv](Category:Repository/sv.md) [Category:Roadmap/sv](Category:Roadmap/sv.md) [Category:Template/sv](Category:Template/sv.md) [Category:Tutorials/sv](Category:Tutorials/sv.md) [Category:UnfinishedDocu/sv](Category:UnfinishedDocu/sv.md) + +--- +[documentation index](../README.md) > Category:Categories/sv diff --git a/wiki/translations/sv/Category:Command_Reference.md b/wiki/translations/sv/Category:Command_Reference.md index 9bf7eef1b4..ff62a0b910 100644 --- a/wiki/translations/sv/Category:Command_Reference.md +++ b/wiki/translations/sv/Category:Command_Reference.md @@ -6,3 +6,6 @@ Denna kategori innehåller hjälpsidorna för varje FreeCAD kommando. [Arch Add/sv](Arch_Add/sv.md) , [Arch Axis/sv](Arch_Axis/sv.md) , [Arch Building/sv](Arch_Building/sv.md) , [Arch Check/sv](Arch_Check/sv.md) , [Arch CloseHoles/sv](Arch_CloseHoles/sv.md) , [Arch Floor/sv](Arch_Floor/sv.md) , [Arch Frame/sv](Arch_Frame/sv.md) , [Arch IfcExplorer/sv](Arch_IfcExplorer/sv.md) , [Arch MeshToShape/sv](Arch_MeshToShape/sv.md) , [Arch Rebar/sv](Arch_Rebar/sv.md) , [Arch Remove/sv](Arch_Remove/sv.md) , [Arch RemoveShape/sv](Arch_RemoveShape/sv.md) , [Arch Roof/sv](Arch_Roof/sv.md) , [Arch SectionPlane/sv](Arch_SectionPlane/sv.md) , [Arch SelectNonSolidMeshes/sv](Arch_SelectNonSolidMeshes/sv.md) , [Arch Site/sv](Arch_Site/sv.md) , [Arch Space/sv](Arch_Space/sv.md) , [Arch SplitMesh/sv](Arch_SplitMesh/sv.md) , [Arch Stairs/sv](Arch_Stairs/sv.md) , [Arch Structure/sv](Arch_Structure/sv.md) , [Arch Survey/sv](Arch_Survey/sv.md) , [Arch Wall/sv](Arch_Wall/sv.md) , [Arch Window/sv](Arch_Window/sv.md) , [Draft AddToGroup/sv](Draft_AddToGroup/sv.md) , [Draft ApplyStyle/sv](Draft_ApplyStyle/sv.md) , [Draft Arc/sv](Draft_Arc/sv.md) , [Draft Array/sv](Draft_Array/sv.md) , [Draft BezCurve/sv](Draft_BezCurve/sv.md) , [Draft BSpline/sv](Draft_BSpline/sv.md) , [Draft Circle/sv](Draft_Circle/sv.md) , [Draft Clone/sv](Draft_Clone/sv.md) , [Draft Dimension/sv](Draft_Dimension/sv.md) , [Draft Downgrade/sv](Draft_Downgrade/sv.md) , [Draft Draft2Sketch/sv](Draft_Draft2Sketch/sv.md) , [Draft Drawing/sv](Draft_Drawing/sv.md) , [Draft Edit/sv](Draft_Edit/sv.md) , [Draft Ellipse/sv](Draft_Ellipse/sv.md) , [Draft Facebinder/sv](Draft_Facebinder/sv.md) , [Draft FlipDimension/sv](Draft_FlipDimension/sv.md) , [Draft Heal/sv](Draft_Heal/sv.md) , [Draft Line/sv](Draft_Line/sv.md) , [Draft Move/sv](Draft_Move/sv.md) , [Draft Offset/sv](Draft_Offset/sv.md) , [Draft PathArray/sv](Draft_PathArray/sv.md) , [Draft Point/sv](Draft_Point/sv.md) , [Draft Polygon/sv](Draft_Polygon/sv.md) , [Draft Rectangle/sv](Draft_Rectangle/sv.md) , [Draft Rotate/sv](Draft_Rotate/sv.md) , [Draft Scale/sv](Draft_Scale/sv.md) , [Draft SelectGroup/sv](Draft_SelectGroup/sv.md) , [Draft SelectPlane/sv](Draft_SelectPlane/sv.md) , [Draft Shape2DView/sv](Draft_Shape2DView/sv.md) , [Draft ShapeString/sv](Draft_ShapeString/sv.md) , [Draft ShowSnapBar/sv](Draft_ShowSnapBar/sv.md) , [Draft Snap Lock/sv](Draft_Snap_Lock/sv.md) , [Draft Text/sv](Draft_Text/sv.md) , [Draft ToggleConstructionMode/sv](Draft_ToggleConstructionMode/sv.md) , [Draft ToggleContinueMode/sv](Draft_ToggleContinueMode/sv.md) , [Draft ToggleDisplayMode/sv](Draft_ToggleDisplayMode/sv.md) , [Draft ToggleGrid/sv](Draft_ToggleGrid/sv.md) , [Draft Trimex/sv](Draft_Trimex/sv.md) , [Draft Upgrade/sv](Draft_Upgrade/sv.md) , [Draft Wire/sv](Draft_Wire/sv.md) , [Draft WireToBSpline/sv](Draft_WireToBSpline/sv.md) , [Drawing Annotation/sv](Drawing_Annotation/sv.md) , [Drawing Clip/sv](Drawing_Clip/sv.md) , [Drawing Landscape A3/sv](Drawing_Landscape_A3/sv.md) , [Drawing Open SVG/sv](Drawing_Open_SVG/sv.md) , [Drawing Openbrowser/sv](Drawing_Openbrowser/sv.md) , [Drawing Orthoviews/sv](Drawing_Orthoviews/sv.md) , [Drawing Save/sv](Drawing_Save/sv.md) , [Drawing Symbol/sv](Drawing_Symbol/sv.md) , [Drawing View/sv](Drawing_View/sv.md) , [Template:GuiCommand/sv](Template:GuiCommand/sv.md) , [Part Boolean/sv](Part_Boolean/sv.md) , [Part Box/sv](Part_Box/sv.md) , [Part Builder/sv](Part_Builder/sv.md) , [Part Chamfer/sv](Part_Chamfer/sv.md) , [Part Common/sv](Part_Common/sv.md) , [Part Cone/sv](Part_Cone/sv.md) , [Part Cut/sv](Part_Cut/sv.md) , [Part Cylinder/sv](Part_Cylinder/sv.md) , [Part Extrude/sv](Part_Extrude/sv.md) , [Part Fillet/sv](Part_Fillet/sv.md) , [Part Fuse/sv](Part_Fuse/sv.md) , [Part Mirror/sv](Part_Mirror/sv.md) , [Part Primitives/sv](Part_Primitives/sv.md) , [Part RefineShape/sv](Part_RefineShape/sv.md) , [Part Revolve/sv](Part_Revolve/sv.md) , [Part Section/sv](Part_Section/sv.md) , [Part Sphere/sv](Part_Sphere/sv.md) , [Part Torus/sv](Part_Torus/sv.md) , [Raytracing WriteCamera/sv](Raytracing_WriteCamera/sv.md) , [Raytracing WritePart/sv](Raytracing_WritePart/sv.md) , [Raytracing WriteView/sv](Raytracing_WriteView/sv.md) , [Sketcher CompCreateArc/sv](Sketcher_CompCreateArc/sv.md) , [Sketcher ConstrainAngle/sv](Sketcher_ConstrainAngle/sv.md) , [Sketcher ConstrainCoincident/sv](Sketcher_ConstrainCoincident/sv.md) , [Sketcher ConstrainDistance/sv](Sketcher_ConstrainDistance/sv.md) , [Sketcher ConstrainDistanceX/sv](Sketcher_ConstrainDistanceX/sv.md) , [Sketcher ConstrainDistanceY/sv](Sketcher_ConstrainDistanceY/sv.md) , [Sketcher ConstrainEqual/sv](Sketcher_ConstrainEqual/sv.md) , [Sketcher ConstrainHorizontal/sv](Sketcher_ConstrainHorizontal/sv.md) , [Sketcher ConstrainLock/sv](Sketcher_ConstrainLock/sv.md) , [Sketcher ConstrainParallel/sv](Sketcher_ConstrainParallel/sv.md) , [Sketcher ConstrainPerpendicular/sv](Sketcher_ConstrainPerpendicular/sv.md) , [Sketcher ConstrainPointOnObject/sv](Sketcher_ConstrainPointOnObject/sv.md) , [Sketcher ConstrainRadius/sv](Sketcher_ConstrainRadius/sv.md) , [Sketcher ConstrainSymmetric/sv](Sketcher_ConstrainSymmetric/sv.md) , [Sketcher ConstrainVertical/sv](Sketcher_ConstrainVertical/sv.md) , [Sketcher CreateArc/sv](Sketcher_CreateArc/sv.md) , [Sketcher CreateCircle/sv](Sketcher_CreateCircle/sv.md) , [Sketcher CreateFillet/sv](Sketcher_CreateFillet/sv.md) , [Sketcher CreateLine/sv](Sketcher_CreateLine/sv.md) , [Sketcher CreatePoint/sv](Sketcher_CreatePoint/sv.md) , [Sketcher CreatePolyline/sv](Sketcher_CreatePolyline/sv.md) , [Sketcher CreateRectangle/sv](Sketcher_CreateRectangle/sv.md) , [Sketcher External/sv](Sketcher_External/sv.md) , [Sketcher LeaveSketch/sv](Sketcher_LeaveSketch/sv.md) , [Sketcher MapSketch/sv](Sketcher_MapSketch/sv.md) , [Sketcher NewSketch/sv](Sketcher_NewSketch/sv.md) , [Sketcher ReorientSketch/sv](Sketcher_ReorientSketch/sv.md) , [Sketcher ToggleConstruction/sv](Sketcher_ToggleConstruction/sv.md) , [Sketcher Trimming/sv](Sketcher_Trimming/sv.md) , [Sketcher ValidateSketch/sv](Sketcher_ValidateSketch/sv.md) , [Sketcher ViewSketch/sv](Sketcher_ViewSketch/sv.md) , [Std ToggleClipPlane/sv](Std_ToggleClipPlane/sv.md) , [Std ViewScreenShot/sv](Std_ViewScreenShot/sv.md) [Category:Categories/sv](Category:Categories/sv.md) + +--- +[documentation index](../README.md) > Category:Command Reference/sv diff --git a/wiki/translations/sv/Category:Developer.md b/wiki/translations/sv/Category:Developer.md index 32a6155843..4dbffdcf33 100644 --- a/wiki/translations/sv/Category:Developer.md +++ b/wiki/translations/sv/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Compile on MacOS/sv](Compile_on_MacOS/sv.md) , [Compile on Windows/sv](Compile_on_Windows/sv.md) , [Contributors/sv](Contributors/sv.md) [Category:Categories/sv](Category:Categories/sv.md) + +--- +[documentation index](../README.md) > Category:Developer/sv diff --git a/wiki/translations/sv/Category:Developer_Documentation.md b/wiki/translations/sv/Category:Developer_Documentation.md index 237be9594e..70770df5ca 100644 --- a/wiki/translations/sv/Category:Developer_Documentation.md +++ b/wiki/translations/sv/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Branding/sv](Branding/sv.md) , [Code snippets/sv](Code_snippets/sv.md) , [Compile on MacOS/sv](Compile_on_MacOS/sv.md) , [Compile on Windows/sv](Compile_on_Windows/sv.md) , [Debugging/sv](Debugging/sv.md) , [Developer hub/sv](Developer_hub/sv.md) , [Dialog creation/sv](Dialog_creation/sv.md) , [Drawing templates/sv](Drawing_templates/sv.md) , [Embedding FreeCAD/sv](Embedding_FreeCAD/sv.md) , [Embedding FreeCADGui/sv](Embedding_FreeCADGui/sv.md) , [Extra python modules/sv](Extra_python_modules/sv.md) , [FreeCAD Build Tool/sv](FreeCAD_Build_Tool/sv.md) , [FreeCAD Scripting Basics/sv](FreeCAD_Scripting_Basics/sv.md) , [FreeCAD vector math library/sv](FreeCAD_vector_math_library/sv.md) , [Help FreeCAD/sv](Help_FreeCAD/sv.md) , [How to install macros/sv](How_to_install_macros/sv.md) , [Installing more workbenches/sv](Installing_more_workbenches/sv.md) , [Installing on Linux/sv](Installing_on_Linux/sv.md) , [Introduction to Python/sv](Introduction_to_Python/sv.md) , [Licence/sv](Licence/sv.md) , [Line drawing function/sv](Line_drawing_function/sv.md) , [Localisation/sv](Localisation/sv.md) , [Macros/sv](Macros/sv.md) , [Mesh Scripting/sv](Mesh_Scripting/sv.md) , [Mesh to Part/sv](Mesh_to_Part/sv.md) , [Pivy/sv](Pivy/sv.md) , [Property/sv](Property/sv.md) , [PySide/sv](PySide/sv.md) , [PythonOCC/sv](PythonOCC/sv.md) , [Scenegraph/sv](Scenegraph/sv.md) , [Scripted objects/sv](Scripted_objects/sv.md) , [Source documentation/sv](Source_documentation/sv.md) , [Start up and Configuration/sv](Start_up_and_Configuration/sv.md) , [Testing/sv](Testing/sv.md) , [Third Party Libraries/sv](Third_Party_Libraries/sv.md) , [Third Party Tools/sv](Third_Party_Tools/sv.md) , [Topological data scripting/sv](Topological_data_scripting/sv.md) , [Tracker/sv](Tracker/sv.md) [Category:Documentation/sv](Category:Documentation/sv.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/sv diff --git a/wiki/translations/sv/Category:Documentation.md b/wiki/translations/sv/Category:Documentation.md index e8fffa11fc..bab101a450 100644 --- a/wiki/translations/sv/Category:Documentation.md +++ b/wiki/translations/sv/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [Drawing templates/sv](Drawing_templates/sv.md) , [Free-cad:Community Portal/sv](Free-cad:Community_Portal/sv.md) , [Help FreeCAD/sv](Help_FreeCAD/sv.md) , [Main Page/sv](Main_Page/sv.md) , [Online Help Toc/sv](Online_Help_Toc/sv.md) , , , , [Category:Categories/sv](Category:Categories/sv.md) [Category:Developer Documentation/sv](Category:Developer_Documentation/sv.md) [Category:Poweruser Documentation/sv](Category:Poweruser_Documentation/sv.md) [Category:Screenshots/sv](Category:Screenshots/sv.md) [Category:User Documentation/sv](Category:User_Documentation/sv.md) + +--- +[documentation index](../README.md) > Category:Documentation/sv diff --git a/wiki/translations/sv/Category:Draft.md b/wiki/translations/sv/Category:Draft.md index 5472028aef..1ad30e27b3 100644 --- a/wiki/translations/sv/Category:Draft.md +++ b/wiki/translations/sv/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/sv\" and \"Workben [Draft AddToGroup/sv](Draft_AddToGroup/sv.md) , [Draft API/sv](Draft_API/sv.md) , [Draft ApplyStyle/sv](Draft_ApplyStyle/sv.md) , [Draft Arc/sv](Draft_Arc/sv.md) , [Draft Array/sv](Draft_Array/sv.md) , [Draft BezCurve/sv](Draft_BezCurve/sv.md) , [Draft BSpline/sv](Draft_BSpline/sv.md) , [Draft Circle/sv](Draft_Circle/sv.md) , [Draft Clone/sv](Draft_Clone/sv.md) , [Draft Constrain/sv](Draft_Constrain/sv.md) , [Draft Dimension/sv](Draft_Dimension/sv.md) , [Draft Downgrade/sv](Draft_Downgrade/sv.md) , [Draft Draft2Sketch/sv](Draft_Draft2Sketch/sv.md) , [Draft Drawing/sv](Draft_Drawing/sv.md) , [Draft DXF/sv](Draft_DXF/sv.md) , [Draft Edit/sv](Draft_Edit/sv.md) , [Draft Ellipse/sv](Draft_Ellipse/sv.md) , [Draft Facebinder/sv](Draft_Facebinder/sv.md) , [Draft FlipDimension/sv](Draft_FlipDimension/sv.md) , [Draft Heal/sv](Draft_Heal/sv.md) , [Draft Line/sv](Draft_Line/sv.md) , [Draft Move/sv](Draft_Move/sv.md) , [Draft OCA/sv](Draft_OCA/sv.md) , [Draft Offset/sv](Draft_Offset/sv.md) , [Draft PathArray/sv](Draft_PathArray/sv.md) , [Draft Point/sv](Draft_Point/sv.md) , [Draft Polygon/sv](Draft_Polygon/sv.md) , [Draft Preferences/sv](Draft_Preferences/sv.md) , [Draft Rectangle/sv](Draft_Rectangle/sv.md) , [Draft Rotate/sv](Draft_Rotate/sv.md) , [Draft Scale/sv](Draft_Scale/sv.md) , [Draft SelectGroup/sv](Draft_SelectGroup/sv.md) , [Draft SelectPlane/sv](Draft_SelectPlane/sv.md) , [Draft Shape2DView/sv](Draft_Shape2DView/sv.md) , [Draft ShapeString/sv](Draft_ShapeString/sv.md) , [Draft ShowSnapBar/sv](Draft_ShowSnapBar/sv.md) , [Draft Snap Lock/sv](Draft_Snap_Lock/sv.md) , [Draft Snap/sv](Draft_Snap/sv.md) , [Draft SVG/sv](Draft_SVG/sv.md) , [Draft Text/sv](Draft_Text/sv.md) , [Draft ToggleConstructionMode/sv](Draft_ToggleConstructionMode/sv.md) , [Draft ToggleContinueMode/sv](Draft_ToggleContinueMode/sv.md) , [Draft ToggleDisplayMode/sv](Draft_ToggleDisplayMode/sv.md) , [Draft ToggleGrid/sv](Draft_ToggleGrid/sv.md) , [Draft Trimex/sv](Draft_Trimex/sv.md) , [Draft tutorial/sv](Draft_tutorial/sv.md) , [Draft Upgrade/sv](Draft_Upgrade/sv.md) , [Draft Wire/sv](Draft_Wire/sv.md) , [Draft WireToBSpline/sv](Draft_WireToBSpline/sv.md) , [Draft Workbench/sv](Draft_Workbench/sv.md) [Category:User Documentation/sv](Category:User_Documentation/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Draft/sv diff --git a/wiki/translations/sv/Category:Drawing.md b/wiki/translations/sv/Category:Drawing.md index cf4f03c759..74385e91fb 100644 --- a/wiki/translations/sv/Category:Drawing.md +++ b/wiki/translations/sv/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/sv](Drawing_Workbenc [Drawing Annotation/sv](Drawing_Annotation/sv.md) , [Drawing Clip/sv](Drawing_Clip/sv.md) , [Drawing Landscape A3/sv](Drawing_Landscape_A3/sv.md) , [Drawing Open SVG/sv](Drawing_Open_SVG/sv.md) , [Drawing Openbrowser/sv](Drawing_Openbrowser/sv.md) , [Drawing Orthoviews/sv](Drawing_Orthoviews/sv.md) , [Drawing Save/sv](Drawing_Save/sv.md) , [Drawing Symbol/sv](Drawing_Symbol/sv.md) , [Drawing templates/sv](Drawing_templates/sv.md) , [Template:Drawing Tools navi/sv](Template:Drawing_Tools_navi/sv.md) , [Drawing View/sv](Drawing_View/sv.md) , [Drawing Workbench/sv](Drawing_Workbench/sv.md) [Category:Obsolete Workbenches/sv](Category:Obsolete_Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Drawing/sv diff --git a/wiki/translations/sv/Category:External_Workbenches.md b/wiki/translations/sv/Category:External_Workbenches.md index fe1c6145e5..77704fb9f9 100644 --- a/wiki/translations/sv/Category:External_Workbenches.md +++ b/wiki/translations/sv/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [Plot Module/sv](Plot_Module/sv.md) , [Ship Workbench/sv](Ship_Workbench/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) [Category:Addons/sv](Category:Addons/sv.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/sv diff --git a/wiki/translations/sv/Category:FEM.md b/wiki/translations/sv/Category:FEM.md index 5a6493820a..497b0cf260 100644 --- a/wiki/translations/sv/Category:FEM.md +++ b/wiki/translations/sv/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/sv](FEM_Workbench/sv.md) [FEM project/sv](FEM_project/sv.md) , [Template:FEM Tools navi/sv](Template:FEM_Tools_navi/sv.md) , [FEM Workbench/sv](FEM_Workbench/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:FEM/sv diff --git a/wiki/translations/sv/Category:File_Formats.md b/wiki/translations/sv/Category:File_Formats.md index 1a232b41e7..b8ffa02059 100644 --- a/wiki/translations/sv/Category:File_Formats.md +++ b/wiki/translations/sv/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [Arch IFC/sv](Arch_IFC/sv.md) , [Draft DXF/sv](Draft_DXF/sv.md) , [Draft OCA/sv](Draft_OCA/sv.md) , [Draft SVG/sv](Draft_SVG/sv.md) + +--- +[documentation index](../README.md) > Category:File Formats/sv diff --git a/wiki/translations/sv/Category:Glossary.md b/wiki/translations/sv/Category:Glossary.md index e2be7c9e13..80099f5015 100644 --- a/wiki/translations/sv/Category:Glossary.md +++ b/wiki/translations/sv/Category:Glossary.md @@ -4,3 +4,6 @@ This category tracks pages that explain definitions of words related to FreeCAD ### Contents: [Manipulator/sv](Manipulator/sv.md) + +--- +[documentation index](../README.md) > Category:Glossary/sv diff --git a/wiki/translations/sv/Category:Hubs.md b/wiki/translations/sv/Category:Hubs.md index 7006a63246..bf071b97da 100644 --- a/wiki/translations/sv/Category:Hubs.md +++ b/wiki/translations/sv/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Developer hub/sv](Developer_hub/sv.md) , [Power users hub/sv](Power_users_hub/sv.md) , [User hub/sv](User_hub/sv.md) [Category:Categories/sv](Category:Categories/sv.md) + +--- +[documentation index](../README.md) > Category:Hubs/sv diff --git a/wiki/translations/sv/Category:Image.md b/wiki/translations/sv/Category:Image.md index c98c8ee46c..ca9110dbce 100644 --- a/wiki/translations/sv/Category:Image.md +++ b/wiki/translations/sv/Category:Image.md @@ -6,3 +6,6 @@ This category lists pages related to the [Image Workbench/sv](Image_Workbench/sv [Image Workbench/sv](Image_Workbench/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Image/sv diff --git a/wiki/translations/sv/Category:Inspection.md b/wiki/translations/sv/Category:Inspection.md index 7105434b2d..4e23961672 100644 --- a/wiki/translations/sv/Category:Inspection.md +++ b/wiki/translations/sv/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Inspection Workbench/sv](Inspection_Workbench/sv.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection/sv diff --git a/wiki/translations/sv/Category:Macros.md b/wiki/translations/sv/Category:Macros.md index 1409783248..fde20693ff 100644 --- a/wiki/translations/sv/Category:Macros.md +++ b/wiki/translations/sv/Category:Macros.md @@ -6,3 +6,6 @@ Denna kategori innehåller makron om du vill utöka din FreeCAD installation med [Macro ArrayCopy/sv](Macro_ArrayCopy/sv.md) , [Macro Draw 2D Function/sv](Macro_Draw_2D_Function/sv.md) , [Macro FCInfo/sv](Macro_FCInfo/sv.md) , [Macro FlattenWire/sv](Macro_FlattenWire/sv.md) , [Macro JointWire/sv](Macro_JointWire/sv.md) , [Macro MeshToPart/sv](Macro_MeshToPart/sv.md) , [Macro Rotate View/sv](Macro_Rotate_View/sv.md) , [Template:Macro/sv](Template:Macro/sv.md) , [Macros recipes/sv](Macros_recipes/sv.md) , [Macros/sv](Macros/sv.md) [Category:Categories/sv](Category:Categories/sv.md) + +--- +[documentation index](../README.md) > Category:Macros/sv diff --git a/wiki/translations/sv/Category:Mesh.md b/wiki/translations/sv/Category:Mesh.md index 18f60c42b3..aa523f1134 100644 --- a/wiki/translations/sv/Category:Mesh.md +++ b/wiki/translations/sv/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/sv](Mesh_Workbench/sv. [Mesh Scripting/sv](Mesh_Scripting/sv.md) , [Mesh to Part/sv](Mesh_to_Part/sv.md) , [Template:Mesh Tools navi/sv](Template:Mesh_Tools_navi/sv.md) , [Mesh Workbench/sv](Mesh_Workbench/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Mesh/sv diff --git a/wiki/translations/sv/Category:Obsolete_Workbenches.md b/wiki/translations/sv/Category:Obsolete_Workbenches.md index 3cf94784a5..08bfe54ce2 100644 --- a/wiki/translations/sv/Category:Obsolete_Workbenches.md +++ b/wiki/translations/sv/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/sv](Drawing_Workbenc [Complete Workbench/sv](Complete_Workbench/sv.md) , [Drawing Workbench/sv](Drawing_Workbench/sv.md) , , [Category:Obsolete Workbenches/sv](Category:Obsolete_Workbenches/sv.md) [Category:Drawing/sv](Category:Drawing/sv.md) [Category:Obsolete Workbenches/sv](Category:Obsolete_Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/sv diff --git a/wiki/translations/sv/Category:OpenSCAD.md b/wiki/translations/sv/Category:OpenSCAD.md index eb63407b5e..1d7489a4a1 100644 --- a/wiki/translations/sv/Category:OpenSCAD.md +++ b/wiki/translations/sv/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/sv](OpenSCAD_Workb [Template:OpenSCAD Tools navi/sv](Template:OpenSCAD_Tools_navi/sv.md) , [OpenSCAD Workbench/sv](OpenSCAD_Workbench/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/sv diff --git a/wiki/translations/sv/Category:Part.md b/wiki/translations/sv/Category:Part.md index 5bef7b7c2f..027295166c 100644 --- a/wiki/translations/sv/Category:Part.md +++ b/wiki/translations/sv/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/sv](Part_Workbench/sv.m [Part Boolean/sv](Part_Boolean/sv.md) , [Part Box/sv](Part_Box/sv.md) , [Part Builder/sv](Part_Builder/sv.md) , [Part Chamfer/sv](Part_Chamfer/sv.md) , [Part Common/sv](Part_Common/sv.md) , [Part Cone/sv](Part_Cone/sv.md) , [Part Cut/sv](Part_Cut/sv.md) , [Part Cylinder/sv](Part_Cylinder/sv.md) , [Part Extrude/sv](Part_Extrude/sv.md) , [Part Fillet/sv](Part_Fillet/sv.md) , [Part Fuse/sv](Part_Fuse/sv.md) , [Part Mirror/sv](Part_Mirror/sv.md) , [Part Module/sv](Part_Module/sv.md) , [Part Primitives/sv](Part_Primitives/sv.md) , [Part RefineShape/sv](Part_RefineShape/sv.md) , [Part Revolve/sv](Part_Revolve/sv.md) , [Part Section/sv](Part_Section/sv.md) , [Part Sphere/sv](Part_Sphere/sv.md) , [Template:Part Tools navi/sv](Template:Part_Tools_navi/sv.md) , [Part Torus/sv](Part_Torus/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Part/sv diff --git a/wiki/translations/sv/Category:PartDesign.md b/wiki/translations/sv/Category:PartDesign.md index 71ec19ecae..cb3a4ca9c5 100644 --- a/wiki/translations/sv/Category:PartDesign.md +++ b/wiki/translations/sv/Category:PartDesign.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to PartDesign ### Contents: [Template:PartDesign Tools navi/sv](Template:PartDesign_Tools_navi/sv.md) , [PartDesign Workbench/sv](PartDesign_Workbench/sv.md) + +--- +[documentation index](../README.md) > Category:PartDesign/sv diff --git a/wiki/translations/sv/Category:Path.md b/wiki/translations/sv/Category:Path.md index e01664d300..547aaffaa2 100644 --- a/wiki/translations/sv/Category:Path.md +++ b/wiki/translations/sv/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/sv](PartDesign_Wo [Template:Path Tools navi/sv](Template:Path_Tools_navi/sv.md) , [Path Workbench/sv](Path_Workbench/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Path/sv diff --git a/wiki/translations/sv/Category:Plot.md b/wiki/translations/sv/Category:Plot.md index e7657c981e..1276bdf34d 100644 --- a/wiki/translations/sv/Category:Plot.md +++ b/wiki/translations/sv/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/sv](Plot_Workbench/sv.m [Plot Module/sv](Plot_Module/sv.md) , [Template:Plot Tools navi/sv](Template:Plot_Tools_navi/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Plot/sv diff --git a/wiki/translations/sv/Category:Points.md b/wiki/translations/sv/Category:Points.md index ab38adfa7f..03fdea1fbd 100644 --- a/wiki/translations/sv/Category:Points.md +++ b/wiki/translations/sv/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/sv](Points_Workbench/ [Points Workbench/sv](Points_Workbench/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Points/sv diff --git a/wiki/translations/sv/Category:Poweruser_Documentation.md b/wiki/translations/sv/Category:Poweruser_Documentation.md index 477055c2e4..8840ab9867 100644 --- a/wiki/translations/sv/Category:Poweruser_Documentation.md +++ b/wiki/translations/sv/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Code snippets/sv](Code_snippets/sv.md) , [Debugging/sv](Debugging/sv.md) , [Dialog creation/sv](Dialog_creation/sv.md) , [Draft API/sv](Draft_API/sv.md) , [Embedding FreeCAD/sv](Embedding_FreeCAD/sv.md) , [Embedding FreeCADGui/sv](Embedding_FreeCADGui/sv.md) , [FreeCAD Scripting Basics/sv](FreeCAD_Scripting_Basics/sv.md) , [FreeCAD vector math library/sv](FreeCAD_vector_math_library/sv.md) , [Gui Command/sv](Gui_Command/sv.md) , [How to install macros/sv](How_to_install_macros/sv.md) , [Installing more workbenches/sv](Installing_more_workbenches/sv.md) , [Introduction to Python/sv](Introduction_to_Python/sv.md) , [Line drawing function/sv](Line_drawing_function/sv.md) , [Macros/sv](Macros/sv.md) , [Mesh Scripting/sv](Mesh_Scripting/sv.md) , [Mesh to Part/sv](Mesh_to_Part/sv.md) , [Pivy/sv](Pivy/sv.md) , [Power users hub/sv](Power_users_hub/sv.md) , [Property/sv](Property/sv.md) , [PySide/sv](PySide/sv.md) , [PythonOCC/sv](PythonOCC/sv.md) , [Scenegraph/sv](Scenegraph/sv.md) , [Scripted objects/sv](Scripted_objects/sv.md) , [Topological data scripting/sv](Topological_data_scripting/sv.md) , [Units/sv](Units/sv.md) [Category:Documentation/sv](Category:Documentation/sv.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/sv diff --git a/wiki/translations/sv/Category:Preferences.md b/wiki/translations/sv/Category:Preferences.md index 24e37e8143..000b23af47 100644 --- a/wiki/translations/sv/Category:Preferences.md +++ b/wiki/translations/sv/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Customize Toolbars/sv](Customize_Toolbars/sv.md) , [Draft Preferences/sv](Draft_Preferences/sv.md) , [Preferences Editor/sv](Preferences_Editor/sv.md) + +--- +[documentation index](../README.md) > Category:Preferences/sv diff --git a/wiki/translations/sv/Category:Python_Code.md b/wiki/translations/sv/Category:Python_Code.md index 958f5a6082..a01e771cd7 100644 --- a/wiki/translations/sv/Category:Python_Code.md +++ b/wiki/translations/sv/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Code snippets/sv](Code_snippets/sv.md) , [Debugging/sv](Debugging/sv.md) , [Dialog creation/sv](Dialog_creation/sv.md) , [Embedding FreeCAD/sv](Embedding_FreeCAD/sv.md) , [Embedding FreeCADGui/sv](Embedding_FreeCADGui/sv.md) , [Extra python modules/sv](Extra_python_modules/sv.md) , [FreeCAD Scripting Basics/sv](FreeCAD_Scripting_Basics/sv.md) , [FreeCAD vector math library/sv](FreeCAD_vector_math_library/sv.md) , [How to install macros/sv](How_to_install_macros/sv.md) , [Introduction to Python/sv](Introduction_to_Python/sv.md) , [Line drawing function/sv](Line_drawing_function/sv.md) , [Macros recipes/sv](Macros_recipes/sv.md) , [Macros/sv](Macros/sv.md) , [Mesh Scripting/sv](Mesh_Scripting/sv.md) , [Mesh to Part/sv](Mesh_to_Part/sv.md) , [Pivy/sv](Pivy/sv.md) , [Property/sv](Property/sv.md) , [PySide/sv](PySide/sv.md) , [PythonOCC/sv](PythonOCC/sv.md) , [Scripted objects/sv](Scripted_objects/sv.md) , [Topological data scripting/sv](Topological_data_scripting/sv.md) [Category:Categories/sv](Category:Categories/sv.md) + +--- +[documentation index](../README.md) > Category:Python Code/sv diff --git a/wiki/translations/sv/Category:Raytracing.md b/wiki/translations/sv/Category:Raytracing.md index 6598064a8d..c5b2d40700 100644 --- a/wiki/translations/sv/Category:Raytracing.md +++ b/wiki/translations/sv/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/sv](Raytracing_Wo [Template:Raytracing Tools navi/sv](Template:Raytracing_Tools_navi/sv.md) , [Raytracing Workbench/sv](Raytracing_Workbench/sv.md) , [Raytracing WriteCamera/sv](Raytracing_WriteCamera/sv.md) , [Raytracing WritePart/sv](Raytracing_WritePart/sv.md) , [Raytracing WriteView/sv](Raytracing_WriteView/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Raytracing/sv diff --git a/wiki/translations/sv/Category:Repository.md b/wiki/translations/sv/Category:Repository.md index f1c013f72f..6c7407f600 100644 --- a/wiki/translations/sv/Category:Repository.md +++ b/wiki/translations/sv/Category:Repository.md @@ -4,3 +4,6 @@ Denna kategori samlar sidor som fungerar som ett förråd av resurser för FreeC ### Contents: [Category:Categories/sv](Category:Categories/sv.md) + +--- +[documentation index](../README.md) > Category:Repository/sv diff --git a/wiki/translations/sv/Category:Roadmap.md b/wiki/translations/sv/Category:Roadmap.md index 9cc0bf4154..55f8fec2bd 100644 --- a/wiki/translations/sv/Category:Roadmap.md +++ b/wiki/translations/sv/Category:Roadmap.md @@ -6,3 +6,6 @@ This category gathers all articles documenting what is planned in the Roadmap of [Assembly project/sv](Assembly_project/sv.md) , [Development roadmap/sv](Development_roadmap/sv.md) , [FEM project/sv](FEM_project/sv.md) , [Project template/sv](Project_template/sv.md) , [Resource framework project/sv](Resource_framework_project/sv.md) [Category:Categories/sv](Category:Categories/sv.md) + +--- +[documentation index](../README.md) > Category:Roadmap/sv diff --git a/wiki/translations/sv/Category:Robot.md b/wiki/translations/sv/Category:Robot.md index c9203f07a1..6e15c940e6 100644 --- a/wiki/translations/sv/Category:Robot.md +++ b/wiki/translations/sv/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/sv](Robot_Workbench/sv [Robot 6-Axis/sv](Robot_6-Axis/sv.md) , [Template:Robot Tools navi/sv](Template:Robot_Tools_navi/sv.md) , [Robot Workbench/sv](Robot_Workbench/sv.md) , [VRML Preparation for Robot Simulation/sv](VRML_Preparation_for_Robot_Simulation/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Robot/sv diff --git a/wiki/translations/sv/Category:Screenshots.md b/wiki/translations/sv/Category:Screenshots.md index bed92d5e71..ccf46049db 100644 --- a/wiki/translations/sv/Category:Screenshots.md +++ b/wiki/translations/sv/Category:Screenshots.md @@ -6,3 +6,6 @@ This category lists pages with screenshots. [Screenshots/sv](Screenshots/sv.md) [Category:Documentation/sv](Category:Documentation/sv.md) + +--- +[documentation index](../README.md) > Category:Screenshots/sv diff --git a/wiki/translations/sv/Category:Ship.md b/wiki/translations/sv/Category:Ship.md index 5e9591d960..69d7526acc 100644 --- a/wiki/translations/sv/Category:Ship.md +++ b/wiki/translations/sv/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/sv](Ship_Workbench/sv.m [Template:Ship Tools navi/sv](Template:Ship_Tools_navi/sv.md) , [Ship Workbench/sv](Ship_Workbench/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Ship/sv diff --git a/wiki/translations/sv/Category:Sketcher.md b/wiki/translations/sv/Category:Sketcher.md index 4fc1831efa..0f2164976a 100644 --- a/wiki/translations/sv/Category:Sketcher.md +++ b/wiki/translations/sv/Category:Sketcher.md @@ -4,3 +4,6 @@ This category includes FreeCAD pages related to Sketcher ### Contents: [Sketcher CompCreateArc/sv](Sketcher_CompCreateArc/sv.md) , [Sketcher ConstrainAngle/sv](Sketcher_ConstrainAngle/sv.md) , [Sketcher ConstrainCoincident/sv](Sketcher_ConstrainCoincident/sv.md) , [Sketcher ConstrainDistance/sv](Sketcher_ConstrainDistance/sv.md) , [Sketcher ConstrainDistanceX/sv](Sketcher_ConstrainDistanceX/sv.md) , [Sketcher ConstrainDistanceY/sv](Sketcher_ConstrainDistanceY/sv.md) , [Sketcher ConstrainEqual/sv](Sketcher_ConstrainEqual/sv.md) , [Sketcher ConstrainHorizontal/sv](Sketcher_ConstrainHorizontal/sv.md) , [Sketcher ConstrainLock/sv](Sketcher_ConstrainLock/sv.md) , [Sketcher ConstrainParallel/sv](Sketcher_ConstrainParallel/sv.md) , [Sketcher ConstrainPerpendicular/sv](Sketcher_ConstrainPerpendicular/sv.md) , [Sketcher ConstrainPointOnObject/sv](Sketcher_ConstrainPointOnObject/sv.md) , [Sketcher ConstrainRadius/sv](Sketcher_ConstrainRadius/sv.md) , [Sketcher ConstrainSymmetric/sv](Sketcher_ConstrainSymmetric/sv.md) , [Sketcher ConstrainVertical/sv](Sketcher_ConstrainVertical/sv.md) , [Sketcher CreateArc/sv](Sketcher_CreateArc/sv.md) , [Sketcher CreateCircle/sv](Sketcher_CreateCircle/sv.md) , [Sketcher CreateFillet/sv](Sketcher_CreateFillet/sv.md) , [Sketcher CreateLine/sv](Sketcher_CreateLine/sv.md) , [Sketcher CreatePoint/sv](Sketcher_CreatePoint/sv.md) , [Sketcher CreatePolyline/sv](Sketcher_CreatePolyline/sv.md) , [Sketcher CreateRectangle/sv](Sketcher_CreateRectangle/sv.md) , [Sketcher External/sv](Sketcher_External/sv.md) , [Sketcher LeaveSketch/sv](Sketcher_LeaveSketch/sv.md) , [Sketcher MapSketch/sv](Sketcher_MapSketch/sv.md) , [Sketcher NewSketch/sv](Sketcher_NewSketch/sv.md) , [Sketcher ReorientSketch/sv](Sketcher_ReorientSketch/sv.md) , [Sketcher ToggleConstruction/sv](Sketcher_ToggleConstruction/sv.md) , [Template:Sketcher Tools navi/sv](Template:Sketcher_Tools_navi/sv.md) , [Sketcher Trimming/sv](Sketcher_Trimming/sv.md) , [Sketcher ValidateSketch/sv](Sketcher_ValidateSketch/sv.md) , [Sketcher ViewSketch/sv](Sketcher_ViewSketch/sv.md) , [Sketcher Workbench/sv](Sketcher_Workbench/sv.md) + +--- +[documentation index](../README.md) > Category:Sketcher/sv diff --git a/wiki/translations/sv/Category:Surface.md b/wiki/translations/sv/Category:Surface.md index 3973fc7f23..961611a1dc 100644 --- a/wiki/translations/sv/Category:Surface.md +++ b/wiki/translations/sv/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/sv](Surface_Workbenc [Surface Workbench/sv](Surface_Workbench/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Surface/sv diff --git a/wiki/translations/sv/Category:TechDraw.md b/wiki/translations/sv/Category:TechDraw.md index 7f4f50150c..29ab043933 100644 --- a/wiki/translations/sv/Category:TechDraw.md +++ b/wiki/translations/sv/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/sv](TechDraw_Workbe [TechDraw Workbench/sv](TechDraw_Workbench/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:TechDraw/sv diff --git a/wiki/translations/sv/Category:Template.md b/wiki/translations/sv/Category:Template.md index 94c6aa58a7..bf271f069d 100644 --- a/wiki/translations/sv/Category:Template.md +++ b/wiki/translations/sv/Category:Template.md @@ -8,3 +8,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) [Template:Languages/sv](Template:Languages/sv.md) , [Template:Property/sv](Template:Property/sv.md) , [Template:Raytracing Tools/sv](Template:Raytracing_Tools/sv.md) , [Template:Sketcher Tools/sv](Template:Sketcher_Tools/sv.md) , [Template:Sv](Template:Sv.md) , [Template:Version/sv](Template:Version/sv.md) , , [Category:Categories/sv](Category:Categories/sv.md) [Category:Template:Doc/sv](Category:Template:Doc/sv.md) [Category:Template:Navigation/sv](Category:Template:Navigation/sv.md) + +--- +[documentation index](../README.md) > Category:Template/sv diff --git a/wiki/translations/sv/Category:Template:Doc.md b/wiki/translations/sv/Category:Template:Doc.md index 1dfbf5f39b..b11d4f18b4 100644 --- a/wiki/translations/sv/Category:Template:Doc.md +++ b/wiki/translations/sv/Category:Template:Doc.md @@ -6,3 +6,6 @@ This category lists templates that produce text boxes used for documenting comma [Template:Macro/sv](Template:Macro/sv.md) [Category:Template/sv](Category:Template/sv.md) + +--- +[documentation index](../README.md) > Category:Template:Doc/sv diff --git a/wiki/translations/sv/Category:Template:Navigation.md b/wiki/translations/sv/Category:Template:Navigation.md index ac2e36648f..abd6cd952f 100644 --- a/wiki/translations/sv/Category:Template:Navigation.md +++ b/wiki/translations/sv/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/sv](Template:Arch_Tools_navi/sv.md) , [Template:Drawing Tools navi/sv](Template:Drawing_Tools_navi/sv.md) , [Template:FEM Tools navi/sv](Template:FEM_Tools_navi/sv.md) , [Template:Mesh Tools navi/sv](Template:Mesh_Tools_navi/sv.md) , [Template:OpenSCAD Tools navi/sv](Template:OpenSCAD_Tools_navi/sv.md) , [Template:Part Tools navi/sv](Template:Part_Tools_navi/sv.md) , [Template:PartDesign Tools navi/sv](Template:PartDesign_Tools_navi/sv.md) , [Template:Path Tools navi/sv](Template:Path_Tools_navi/sv.md) , [Template:Plot Tools navi/sv](Template:Plot_Tools_navi/sv.md) , [Template:Powerdocnavi/sv](Template:Powerdocnavi/sv.md) , [Template:Raytracing Tools navi/sv](Template:Raytracing_Tools_navi/sv.md) , [Template:Robot Tools navi/sv](Template:Robot_Tools_navi/sv.md) , [Template:Ship Tools navi/sv](Template:Ship_Tools_navi/sv.md) , [Template:Sketcher Tools navi/sv](Template:Sketcher_Tools_navi/sv.md) [Category:Template/sv](Category:Template/sv.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/sv diff --git a/wiki/translations/sv/Category:Test_Framework.md b/wiki/translations/sv/Category:Test_Framework.md index dbfe5491b2..a2b128c2de 100644 --- a/wiki/translations/sv/Category:Test_Framework.md +++ b/wiki/translations/sv/Category:Test_Framework.md @@ -6,3 +6,6 @@ This category lists pages related to the [Test Framework Workbench/sv](Test_Fram [Testing/sv](Testing/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) [Category:User\_Documentation/sv](Category:User_Documentation/sv.md) [Category:Testing/sv](Category:Testing/sv.md) + +--- +[documentation index](../README.md) > Category:Test Framework/sv diff --git a/wiki/translations/sv/Category:Testing.md b/wiki/translations/sv/Category:Testing.md index eb20c73286..3eb93ca1b0 100644 --- a/wiki/translations/sv/Category:Testing.md +++ b/wiki/translations/sv/Category:Testing.md @@ -6,3 +6,6 @@ Pages related to testing in regards to unit testing, continuous integration, qua [Testing/sv](Testing/sv.md) , [Category:Test Framework/sv](Category:Test_Framework/sv.md) + +--- +[documentation index](../README.md) > Category:Testing/sv diff --git a/wiki/translations/sv/Category:Tutorials.md b/wiki/translations/sv/Category:Tutorials.md index 5a03991ad8..c9304ac021 100644 --- a/wiki/translations/sv/Category:Tutorials.md +++ b/wiki/translations/sv/Category:Tutorials.md @@ -6,3 +6,6 @@ FreeCAD tutorials. Hjälp oss att lägga till fler! [Customize Toolbars/sv](Customize_Toolbars/sv.md) , [Draft tutorial/sv](Draft_tutorial/sv.md) , [How to install macros/sv](How_to_install_macros/sv.md) , [Robot 6-Axis/sv](Robot_6-Axis/sv.md) , [Template:TutorialInfo/sv](Template:TutorialInfo/sv.md) , [Tutorials/sv](Tutorials/sv.md) , [VRML Preparation for Robot Simulation/sv](VRML_Preparation_for_Robot_Simulation/sv.md) [Category:Categories/sv](Category:Categories/sv.md) + +--- +[documentation index](../README.md) > Category:Tutorials/sv diff --git a/wiki/translations/sv/Category:UnfinishedDocu.md b/wiki/translations/sv/Category:UnfinishedDocu.md index 4ab1fa37b5..357baab7e9 100644 --- a/wiki/translations/sv/Category:UnfinishedDocu.md +++ b/wiki/translations/sv/Category:UnfinishedDocu.md @@ -4,3 +4,6 @@ This category contains all Unfinished Documents ### Contents: [Category:Administration/sv](Category:Administration/sv.md) [Category:Categories/sv](Category:Categories/sv.md) + +--- +[documentation index](../README.md) > Category:UnfinishedDocu/sv diff --git a/wiki/translations/sv/Category:User_Documentation.md b/wiki/translations/sv/Category:User_Documentation.md index 23b96cf622..ad2ca36c82 100644 --- a/wiki/translations/sv/Category:User_Documentation.md +++ b/wiki/translations/sv/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [About FreeCAD/sv](About_FreeCAD/sv.md) , [Arch Add/sv](Arch_Add/sv.md) , [Arch Axis/sv](Arch_Axis/sv.md) , [Arch Building/sv](Arch_Building/sv.md) , [Arch Check/sv](Arch_Check/sv.md) , [Arch CloseHoles/sv](Arch_CloseHoles/sv.md) , [Arch Floor/sv](Arch_Floor/sv.md) , [Arch Frame/sv](Arch_Frame/sv.md) , [Arch IFC/sv](Arch_IFC/sv.md) , [Arch IfcExplorer/sv](Arch_IfcExplorer/sv.md) , [Arch MeshToShape/sv](Arch_MeshToShape/sv.md) , [Arch Rebar/sv](Arch_Rebar/sv.md) , [Arch Remove/sv](Arch_Remove/sv.md) , [Arch RemoveShape/sv](Arch_RemoveShape/sv.md) , [Arch Roof/sv](Arch_Roof/sv.md) , [Arch SectionPlane/sv](Arch_SectionPlane/sv.md) , [Arch SelectNonSolidMeshes/sv](Arch_SelectNonSolidMeshes/sv.md) , [Arch Site/sv](Arch_Site/sv.md) , [Arch Space/sv](Arch_Space/sv.md) , [Arch SplitMesh/sv](Arch_SplitMesh/sv.md) , [Arch Stairs/sv](Arch_Stairs/sv.md) , [Arch Structure/sv](Arch_Structure/sv.md) , [Arch Survey/sv](Arch_Survey/sv.md) , [Arch Wall/sv](Arch_Wall/sv.md) , [Arch Window/sv](Arch_Window/sv.md) , [Arch Workbench/sv](Arch_Workbench/sv.md) , [Branding/sv](Branding/sv.md) , [Compile on MacOS/sv](Compile_on_MacOS/sv.md) , [Compile on Windows/sv](Compile_on_Windows/sv.md) , [Complete Workbench/sv](Complete_Workbench/sv.md) , [Contributors/sv](Contributors/sv.md) , [Customize Toolbars/sv](Customize_Toolbars/sv.md) , [Developer hub/sv](Developer_hub/sv.md) , [Document structure/sv](Document_structure/sv.md) , [Download/sv](Download/sv.md) , [Draft AddToGroup/sv](Draft_AddToGroup/sv.md) , [Draft API/sv](Draft_API/sv.md) , [Draft ApplyStyle/sv](Draft_ApplyStyle/sv.md) , [Draft Arc/sv](Draft_Arc/sv.md) , [Draft Array/sv](Draft_Array/sv.md) , [Draft BezCurve/sv](Draft_BezCurve/sv.md) , [Draft BSpline/sv](Draft_BSpline/sv.md) , [Draft Circle/sv](Draft_Circle/sv.md) , [Draft Clone/sv](Draft_Clone/sv.md) , [Draft Constrain/sv](Draft_Constrain/sv.md) , [Draft Dimension/sv](Draft_Dimension/sv.md) , [Draft Downgrade/sv](Draft_Downgrade/sv.md) , [Draft Draft2Sketch/sv](Draft_Draft2Sketch/sv.md) , [Draft Drawing/sv](Draft_Drawing/sv.md) , [Draft DXF/sv](Draft_DXF/sv.md) , [Draft Edit/sv](Draft_Edit/sv.md) , [Draft Ellipse/sv](Draft_Ellipse/sv.md) , [Draft Facebinder/sv](Draft_Facebinder/sv.md) , [Draft FlipDimension/sv](Draft_FlipDimension/sv.md) , [Draft Heal/sv](Draft_Heal/sv.md) , [Draft Line/sv](Draft_Line/sv.md) , [Draft Move/sv](Draft_Move/sv.md) , [Draft OCA/sv](Draft_OCA/sv.md) , [Draft Offset/sv](Draft_Offset/sv.md) , [Draft PathArray/sv](Draft_PathArray/sv.md) , [Draft Point/sv](Draft_Point/sv.md) , [Draft Polygon/sv](Draft_Polygon/sv.md) , [Draft Preferences/sv](Draft_Preferences/sv.md) , [Draft Rectangle/sv](Draft_Rectangle/sv.md) , [Draft Rotate/sv](Draft_Rotate/sv.md) , [Draft Scale/sv](Draft_Scale/sv.md) , [Draft SelectGroup/sv](Draft_SelectGroup/sv.md) , [Draft SelectPlane/sv](Draft_SelectPlane/sv.md) , [Draft Shape2DView/sv](Draft_Shape2DView/sv.md) , [Draft ShapeString/sv](Draft_ShapeString/sv.md) , [Draft ShowSnapBar/sv](Draft_ShowSnapBar/sv.md) , [Draft Snap Lock/sv](Draft_Snap_Lock/sv.md) , [Draft Snap/sv](Draft_Snap/sv.md) , [Draft SVG/sv](Draft_SVG/sv.md) , [Draft Text/sv](Draft_Text/sv.md) , [Draft ToggleConstructionMode/sv](Draft_ToggleConstructionMode/sv.md) , [Draft ToggleContinueMode/sv](Draft_ToggleContinueMode/sv.md) , [Draft ToggleDisplayMode/sv](Draft_ToggleDisplayMode/sv.md) , [Draft ToggleGrid/sv](Draft_ToggleGrid/sv.md) , [Draft Trimex/sv](Draft_Trimex/sv.md) , [Draft tutorial/sv](Draft_tutorial/sv.md) , [Draft Upgrade/sv](Draft_Upgrade/sv.md) , [Draft Wire/sv](Draft_Wire/sv.md) , [Draft WireToBSpline/sv](Draft_WireToBSpline/sv.md) , [Draft Workbench/sv](Draft_Workbench/sv.md) , [Drawing Annotation/sv](Drawing_Annotation/sv.md) , [Drawing Clip/sv](Drawing_Clip/sv.md) , [Drawing Landscape A3/sv](Drawing_Landscape_A3/sv.md) , [Drawing Open SVG/sv](Drawing_Open_SVG/sv.md) , [Drawing Openbrowser/sv](Drawing_Openbrowser/sv.md) , [Drawing Orthoviews/sv](Drawing_Orthoviews/sv.md) , [Drawing Save/sv](Drawing_Save/sv.md) , [Drawing Symbol/sv](Drawing_Symbol/sv.md) , [Drawing templates/sv](Drawing_templates/sv.md) , [Drawing View/sv](Drawing_View/sv.md) , [Drawing Workbench/sv](Drawing_Workbench/sv.md) , [Extra python modules/sv](Extra_python_modules/sv.md) , [Feature list/sv](Feature_list/sv.md) , [FEM project/sv](FEM_project/sv.md) , [FEM Workbench/sv](FEM_Workbench/sv.md) , [FreeCAD Build Tool/sv](FreeCAD_Build_Tool/sv.md) , [Getting started/sv](Getting_started/sv.md) , [Template:GuiCommand/sv](Template:GuiCommand/sv.md) , [Help FreeCAD/sv](Help_FreeCAD/sv.md) , [How to install macros/sv](How_to_install_macros/sv.md) , [Image Workbench/sv](Image_Workbench/sv.md) , [Inspection Workbench/sv](Inspection_Workbench/sv.md) , [Installing additional components/sv](Installing_additional_components/sv.md) , [Installing on Linux/sv](Installing_on_Linux/sv.md) , [Installing on Mac/sv](Installing_on_Mac/sv.md) , [Installing on Windows/sv](Installing_on_Windows/sv.md) , [Interface Customization/sv](Interface_Customization/sv.md) , [Licence/sv](Licence/sv.md) , [Localisation/sv](Localisation/sv.md) , [Macro ArrayCopy/sv](Macro_ArrayCopy/sv.md) , [Macro Draw 2D Function/sv](Macro_Draw_2D_Function/sv.md) , [Macro FCInfo/sv](Macro_FCInfo/sv.md) , [Macro FlattenWire/sv](Macro_FlattenWire/sv.md) , [Macro JointWire/sv](Macro_JointWire/sv.md) , [Macro MeshToPart/sv](Macro_MeshToPart/sv.md) , [Macro Rotate View/sv](Macro_Rotate_View/sv.md) , [Template:Macro/sv](Template:Macro/sv.md) , [Main Page/sv](Main_Page/sv.md) , [Manipulator/sv](Manipulator/sv.md) , [Mesh Workbench/sv](Mesh_Workbench/sv.md) , [Mouse navigation/sv](Mouse_navigation/sv.md) , [Online Help Startpage/sv](Online_Help_Startpage/sv.md) , [Online Help Toc/sv](Online_Help_Toc/sv.md) , [OpenSCAD Workbench/sv](OpenSCAD_Workbench/sv.md) , [Part Boolean/sv](Part_Boolean/sv.md) , [Part Box/sv](Part_Box/sv.md) , [Part Builder/sv](Part_Builder/sv.md) , [Part Chamfer/sv](Part_Chamfer/sv.md) , [Part Common/sv](Part_Common/sv.md) , [Part Cone/sv](Part_Cone/sv.md) , [Part Cut/sv](Part_Cut/sv.md) , [Part Cylinder/sv](Part_Cylinder/sv.md) , [Part Extrude/sv](Part_Extrude/sv.md) , [Part Fillet/sv](Part_Fillet/sv.md) , [Part Fuse/sv](Part_Fuse/sv.md) , [Part Mirror/sv](Part_Mirror/sv.md) , [Part Module/sv](Part_Module/sv.md) , [Part Primitives/sv](Part_Primitives/sv.md) , [Part RefineShape/sv](Part_RefineShape/sv.md) , [Part Revolve/sv](Part_Revolve/sv.md) , [Part Section/sv](Part_Section/sv.md) , [Part Sphere/sv](Part_Sphere/sv.md) , [Part Torus/sv](Part_Torus/sv.md) , [PartDesign Workbench/sv](PartDesign_Workbench/sv.md) , [Path Workbench/sv](Path_Workbench/sv.md) , [Plot Module/sv](Plot_Module/sv.md) , [Points Workbench/sv](Points_Workbench/sv.md) , [Preferences Editor/sv](Preferences_Editor/sv.md) , [Property editor/sv](Property_editor/sv.md) , [Raytracing Workbench/sv](Raytracing_Workbench/sv.md) , [Raytracing WriteCamera/sv](Raytracing_WriteCamera/sv.md) , [Raytracing WritePart/sv](Raytracing_WritePart/sv.md) , [Raytracing WriteView/sv](Raytracing_WriteView/sv.md) , [Reverse Engineering Workbench/sv](Reverse_Engineering_Workbench/sv.md) , [Robot 6-Axis/sv](Robot_6-Axis/sv.md) , [Robot Workbench/sv](Robot_Workbench/sv.md) , [Screenshots/sv](Screenshots/sv.md) , [Ship Workbench/sv](Ship_Workbench/sv.md) , [Sketcher CompCreateArc/sv](Sketcher_CompCreateArc/sv.md) , [Sketcher ConstrainAngle/sv](Sketcher_ConstrainAngle/sv.md) , [Sketcher ConstrainCoincident/sv](Sketcher_ConstrainCoincident/sv.md) , [Sketcher ConstrainDistance/sv](Sketcher_ConstrainDistance/sv.md) , [Sketcher ConstrainDistanceX/sv](Sketcher_ConstrainDistanceX/sv.md) , [Sketcher ConstrainDistanceY/sv](Sketcher_ConstrainDistanceY/sv.md) , [Sketcher ConstrainEqual/sv](Sketcher_ConstrainEqual/sv.md) , [Sketcher ConstrainHorizontal/sv](Sketcher_ConstrainHorizontal/sv.md) , [Sketcher ConstrainLock/sv](Sketcher_ConstrainLock/sv.md) , [Sketcher ConstrainParallel/sv](Sketcher_ConstrainParallel/sv.md) , [Sketcher ConstrainPerpendicular/sv](Sketcher_ConstrainPerpendicular/sv.md) , [Sketcher ConstrainPointOnObject/sv](Sketcher_ConstrainPointOnObject/sv.md) , [Sketcher ConstrainRadius/sv](Sketcher_ConstrainRadius/sv.md) , [Sketcher ConstrainSymmetric/sv](Sketcher_ConstrainSymmetric/sv.md) , [Sketcher ConstrainVertical/sv](Sketcher_ConstrainVertical/sv.md) , [Sketcher CreateArc/sv](Sketcher_CreateArc/sv.md) , [Sketcher CreateCircle/sv](Sketcher_CreateCircle/sv.md) , [Sketcher CreateFillet/sv](Sketcher_CreateFillet/sv.md) , [Sketcher CreateLine/sv](Sketcher_CreateLine/sv.md) , [Sketcher CreatePoint/sv](Sketcher_CreatePoint/sv.md) , [Sketcher CreatePolyline/sv](Sketcher_CreatePolyline/sv.md) , [Sketcher CreateRectangle/sv](Sketcher_CreateRectangle/sv.md) , [Sketcher External/sv](Sketcher_External/sv.md) , [Sketcher LeaveSketch/sv](Sketcher_LeaveSketch/sv.md) , [Sketcher MapSketch/sv](Sketcher_MapSketch/sv.md) , [Sketcher NewSketch/sv](Sketcher_NewSketch/sv.md) , [Sketcher ReorientSketch/sv](Sketcher_ReorientSketch/sv.md) , [Sketcher ToggleConstruction/sv](Sketcher_ToggleConstruction/sv.md) , [Sketcher Trimming/sv](Sketcher_Trimming/sv.md) , [Sketcher ValidateSketch/sv](Sketcher_ValidateSketch/sv.md) , [Sketcher ViewSketch/sv](Sketcher_ViewSketch/sv.md) , [Sketcher Workbench/sv](Sketcher_Workbench/sv.md) , [Source documentation/sv](Source_documentation/sv.md) , [Spreadsheet Workbench/sv](Spreadsheet_Workbench/sv.md) , [Standard Menu/sv](Standard_Menu/sv.md) , [Start up and Configuration/sv](Start_up_and_Configuration/sv.md) , [Start Workbench/sv](Start_Workbench/sv.md) , [Std ToggleClipPlane/sv](Std_ToggleClipPlane/sv.md) , [Std Tools Menu/sv](Std_Tools_Menu/sv.md) , [Std View Menu/sv](Std_View_Menu/sv.md) , [Std ViewScreenShot/sv](Std_ViewScreenShot/sv.md) , [Surface Workbench/sv](Surface_Workbench/sv.md) , [TechDraw Workbench/sv](TechDraw_Workbench/sv.md) , [Testing/sv](Testing/sv.md) , [Third Party Libraries/sv](Third_Party_Libraries/sv.md) , [Third Party Tools/sv](Third_Party_Tools/sv.md) , [Tracker/sv](Tracker/sv.md) , [Template:TutorialInfo/sv](Template:TutorialInfo/sv.md) , [Tutorials/sv](Tutorials/sv.md) , [User hub/sv](User_hub/sv.md) , [VRML Preparation for Robot Simulation/sv](VRML_Preparation_for_Robot_Simulation/sv.md) , [Web Workbench/sv](Web_Workbench/sv.md) , [Workbenches/sv](Workbenches/sv.md) , , , , , , [Category:Documentation/sv](Category:Documentation/sv.md) [Category:Arch/sv](Category:Arch/sv.md) [Category:Base/sv](Category:Base/sv.md) [Category:BIM/sv](Category:BIM/sv.md) [Category:Draft/sv](Category:Draft/sv.md) [Category:Inspection/sv](Category:Inspection/sv.md) [Category:Test Framework/sv](Category:Test_Framework/sv.md) + +--- +[documentation index](../README.md) > Category:User Documentation/sv diff --git a/wiki/translations/sv/Category:Workbenches.md b/wiki/translations/sv/Category:Workbenches.md index 5bdcfdd89a..6aab408d38 100644 --- a/wiki/translations/sv/Category:Workbenches.md +++ b/wiki/translations/sv/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/sv](FEM_Workbench/sv.md) [Arch Workbench/sv](Arch_Workbench/sv.md) , [Draft Workbench/sv](Draft_Workbench/sv.md) , [FEM Workbench/sv](FEM_Workbench/sv.md) , [Image Workbench/sv](Image_Workbench/sv.md) , [Inspection Workbench/sv](Inspection_Workbench/sv.md) , [Mesh Workbench/sv](Mesh_Workbench/sv.md) , [OpenSCAD Workbench/sv](OpenSCAD_Workbench/sv.md) , [Part Module/sv](Part_Module/sv.md) , [PartDesign Workbench/sv](PartDesign_Workbench/sv.md) , [Path Workbench/sv](Path_Workbench/sv.md) , [Points Workbench/sv](Points_Workbench/sv.md) , [Raytracing Workbench/sv](Raytracing_Workbench/sv.md) , [Reverse Engineering Workbench/sv](Reverse_Engineering_Workbench/sv.md) , [Robot Workbench/sv](Robot_Workbench/sv.md) , [Sketcher Workbench/sv](Sketcher_Workbench/sv.md) , [Spreadsheet Workbench/sv](Spreadsheet_Workbench/sv.md) , [Start Workbench/sv](Start_Workbench/sv.md) , [Std Tools Menu/sv](Std_Tools_Menu/sv.md) , [Std View Menu/sv](Std_View_Menu/sv.md) , [Surface Workbench/sv](Surface_Workbench/sv.md) , [TechDraw Workbench/sv](TechDraw_Workbench/sv.md) , [Testing/sv](Testing/sv.md) , [Web Workbench/sv](Web_Workbench/sv.md) , [Workbenches/sv](Workbenches/sv.md) , , , , , , , , , , , , , , , , , , [Category:Workbenches/sv](Category:Workbenches/sv.md) [Category:Draft/sv](Category:Draft/sv.md) [Category:External Workbenches/sv](Category:External_Workbenches/sv.md) [Category:FEM/sv](Category:FEM/sv.md) [Category:Image/sv](Category:Image/sv.md) [Category:Inspection/sv](Category:Inspection/sv.md) [Category:Mesh/sv](Category:Mesh/sv.md) [Category:OpenSCAD/sv](Category:OpenSCAD/sv.md) [Category:Part/sv](Category:Part/sv.md) [Category:Path/sv](Category:Path/sv.md) [Category:Plot/sv](Category:Plot/sv.md) [Category:Points/sv](Category:Points/sv.md) [Category:Raytracing/sv](Category:Raytracing/sv.md) [Category:Robot/sv](Category:Robot/sv.md) [Category:Ship/sv](Category:Ship/sv.md) [Category:Surface/sv](Category:Surface/sv.md) [Category:TechDraw/sv](Category:TechDraw/sv.md) [Category:Test Framework/sv](Category:Test_Framework/sv.md) [Category:Workbenches/sv](Category:Workbenches/sv.md) + +--- +[documentation index](../README.md) > Category:Workbenches/sv diff --git a/wiki/translations/sv/Code_snippets.md b/wiki/translations/sv/Code_snippets.md index e44549250a..1f46cae1b1 100644 --- a/wiki/translations/sv/Code_snippets.md +++ b/wiki/translations/sv/Code_snippets.md @@ -1,7 +1,4 @@ # Code snippets/sv - - - {{TOCright}} ## Introduction @@ -1877,3 +1874,6 @@ See [Coin3d snippets](Coin3d_snippets.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Code snippets/sv diff --git a/wiki/translations/sv/CompileOnMac.md b/wiki/translations/sv/CompileOnMac.md index 1641b2aa2c..1c8cdd5d72 100644 --- a/wiki/translations/sv/CompileOnMac.md +++ b/wiki/translations/sv/CompileOnMac.md @@ -1,2 +1,5 @@ # CompileOnMac/sv 1. REDIRECT [Compile on MacOS/sv](Compile_on_MacOS/sv.md) + +--- +[documentation index](../README.md) > CompileOnMac/sv diff --git a/wiki/translations/sv/CompileOnWindows.md b/wiki/translations/sv/CompileOnWindows.md index e91c8ec7d8..e8a935c240 100644 --- a/wiki/translations/sv/CompileOnWindows.md +++ b/wiki/translations/sv/CompileOnWindows.md @@ -1,2 +1,5 @@ # CompileOnWindows/sv 1. REDIRECT [Compile on Windows/sv](Compile_on_Windows/sv.md) + +--- +[documentation index](../README.md) > CompileOnWindows/sv diff --git a/wiki/translations/sv/Compile_on_MacOS.md b/wiki/translations/sv/Compile_on_MacOS.md index 7fe05b7357..34aa7ffc1e 100644 --- a/wiki/translations/sv/Compile_on_MacOS.md +++ b/wiki/translations/sv/Compile_on_MacOS.md @@ -1,10 +1,4 @@ # Compile on MacOS/sv - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -200,3 +194,6 @@ FreeCAD can be built against the latest git master hosted on github, and launche [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS/sv diff --git a/wiki/translations/sv/Compile_on_Windows.md b/wiki/translations/sv/Compile_on_Windows.md index f95fb8cab2..6f8b5cf003 100644 --- a/wiki/translations/sv/Compile_on_Windows.md +++ b/wiki/translations/sv/Compile_on_Windows.md @@ -1,10 +1,4 @@ # Compile on Windows/sv - - - - - - {{TOCright}} This page explains step by step **how to compile FreeCAD 0.19 or newer on Windows**. For other platforms see [Compiling](Compiling.md). @@ -471,3 +465,6 @@ See also [Category:Developer Documentation/sv](Category:Developer_Documentation/sv.md) [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows/sv diff --git a/wiki/translations/sv/Complete_Workbench.md b/wiki/translations/sv/Complete_Workbench.md index 947daba2d9..9840293923 100644 --- a/wiki/translations/sv/Complete_Workbench.md +++ b/wiki/translations/sv/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/sv - - - **The [[Complete Workbench]] is deprecated.** @@ -14,3 +11,6 @@ See [Interface Customization](Interface_Customization.md) if you\'d like to adap [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/sv diff --git a/wiki/translations/sv/Contributors.md b/wiki/translations/sv/Contributors.md index c72a643aee..11cfd11ab5 100644 --- a/wiki/translations/sv/Contributors.md +++ b/wiki/translations/sv/Contributors.md @@ -1,10 +1,4 @@ # Contributors/sv - - - - - - {{TOCright}} @@ -253,3 +247,6 @@ Developers of FreeCAD addons (retrieved from [Developer](Category:Developer.md) > Contributors/sv diff --git a/wiki/translations/sv/Customize_Toolbars.md b/wiki/translations/sv/Customize_Toolbars.md index dbb127118c..982d772f27 100644 --- a/wiki/translations/sv/Customize_Toolbars.md +++ b/wiki/translations/sv/Customize_Toolbars.md @@ -1,5 +1,5 @@ # Customize Toolbars/sv - {{TutorialInfo/sv|Topic=SampleClass|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} +{{TutorialInfo/sv|Topic=SampleClass|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} ## Synopsis @@ -116,3 +116,6 @@ See also [Interface Customization](Interface_Customization.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Customize Toolbars/sv diff --git a/wiki/translations/sv/Debugging.md b/wiki/translations/sv/Debugging.md index e9dcc21909..d80801514f 100644 --- a/wiki/translations/sv/Debugging.md +++ b/wiki/translations/sv/Debugging.md @@ -1,10 +1,4 @@ # Debugging/sv - - - - - - {{TOCright}} @@ -361,3 +355,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/sv diff --git a/wiki/translations/sv/Developer_hub.md b/wiki/translations/sv/Developer_hub.md index 85a4c9e9f6..e85bfa8fd2 100644 --- a/wiki/translations/sv/Developer_hub.md +++ b/wiki/translations/sv/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/sv - - ![150](images/Crystal_Clear_app_tutorials.png ) This is the place to come if you want to contribute to the development of the FreeCAD software. @@ -126,3 +124,6 @@ FreeCAD, though usable in certain areas, is at the beginning of a long way into [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/sv diff --git a/wiki/translations/sv/Development_roadmap.md b/wiki/translations/sv/Development_roadmap.md index 23cd657538..6a2023e063 100644 --- a/wiki/translations/sv/Development_roadmap.md +++ b/wiki/translations/sv/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/sv - **Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** +**Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** FreeCAD, är, fastän det redan är användbart inom vissa områden, i början av en lång väg till huvudvägen inom CAD. Det finns fortfarande mycket att göra för att nå en status där vi kan tävla med kommersiell mjukvara. @@ -44,3 +44,6 @@ Som i de flesta [FLOSS](http://en.wikipedia.org/wiki/FLOSS) projekt så är slä [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/sv diff --git a/wiki/translations/sv/Dialog_creation.md b/wiki/translations/sv/Dialog_creation.md index 82c9901224..5902e50dc9 100644 --- a/wiki/translations/sv/Dialog_creation.md +++ b/wiki/translations/sv/Dialog_creation.md @@ -1,7 +1,4 @@ # Dialog creation/sv - - - {{TOCright}} ## Introduction @@ -323,3 +320,6 @@ class plane(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation/sv diff --git a/wiki/translations/sv/Document_structure.md b/wiki/translations/sv/Document_structure.md index b0af938bc3..1c54ed7595 100644 --- a/wiki/translations/sv/Document_structure.md +++ b/wiki/translations/sv/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/sv - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) Ett FreeCAD document inehåller alla objekten i din scen. Det kan innehålla grupper, och objekt gjorda med valfri arbetsbänk. Du kan därför växla mellan arbetsbänkar, och ändå arbeta med samma dokument. Dokumentet är det som sparas till disk när du sparar ditt arbete. Du kan också äppna flera dokument samtidigt i FreeCAD, och öppna flera vyer av samma dokument. @@ -85,5 +79,5 @@ FreeCADGui.ActiveDocument.ActiveView - - +--- +[documentation index](../README.md) > Document structure/sv diff --git a/wiki/translations/sv/Download.md b/wiki/translations/sv/Download.md index abb81d602e..b5a633e321 100644 --- a/wiki/translations/sv/Download.md +++ b/wiki/translations/sv/Download.md @@ -1,5 +1,5 @@ # Download/sv - {{TOCright}} +{{TOCright}} ## Current stable version @@ -61,5 +61,5 @@ The FreeCAD community provides a wealth of additional modules and macros. They c - - +--- +[documentation index](../README.md) > Download/sv diff --git a/wiki/translations/sv/Draft_API.md b/wiki/translations/sv/Draft_API.md index b842c5f7f8..f03f74bea9 100644 --- a/wiki/translations/sv/Draft_API.md +++ b/wiki/translations/sv/Draft_API.md @@ -1,7 +1,4 @@ # Draft API/sv - - -
Dessa funktioner är en del av Skissmodulen och kan användas i skript och makron eller från pythontolken, när Skissmodulen har importerats. @@ -93,3 +90,6 @@ Draft.move(myrect, mydistance) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft API/sv diff --git a/wiki/translations/sv/Draft_AddToGroup.md b/wiki/translations/sv/Draft_AddToGroup.md index b27d9137a1..244746e051 100644 --- a/wiki/translations/sv/Draft_AddToGroup.md +++ b/wiki/translations/sv/Draft_AddToGroup.md @@ -1,3 +1,4 @@ +# Draft AddToGroup/sv --- - GuiCommand:/sv Name:Draft AddToGroup Name/sv:Draft AddToGroup Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft → Utilities → Add to group Shortcut: SeeAlso:[Draft SelectGroup](Draft_SelectGroup/sv.md), [Std CreateGroup](Std_CreateGroup/sv.md)--- @@ -28,8 +29,5 @@ In FreeCAD version 0.20 the command can also handle group-like [Arch](Arch_Workb - This command can be used to move objects to the [Draft construction group](Draft_ToggleConstructionMode.md), but, contrary to the [Draft AddConstruction](Draft_AddConstruction.md) command, it does not apply the [construction geometry color](Draft_ToggleConstructionMode#Preferences.md). - For more information about organizing your model see [Document structure](Document_structure.md) and [Arch tutorial](Arch_tutorial#Organizing_your_model.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddToGroup/sv diff --git a/wiki/translations/sv/Draft_Apply.md b/wiki/translations/sv/Draft_Apply.md index aad3327df2..b5af2632a3 100644 --- a/wiki/translations/sv/Draft_Apply.md +++ b/wiki/translations/sv/Draft_Apply.md @@ -1,2 +1,5 @@ # Draft Apply/sv 1. REDIRECT [Draft\_ApplyStyle/sv](Draft_ApplyStyle/sv.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Apply/sv diff --git a/wiki/translations/sv/Draft_ApplyStyle.md b/wiki/translations/sv/Draft_ApplyStyle.md index 111385d165..4a0c7b7d10 100644 --- a/wiki/translations/sv/Draft_ApplyStyle.md +++ b/wiki/translations/sv/Draft_ApplyStyle.md @@ -1,3 +1,4 @@ +# Draft ApplyStyle/sv --- - GuiCommand:/sv Name:Draft_Apply Workbenches:[[Draft_Workbench/sv Skiss]]|MenuLocation:Draft -> Apply style--- @@ -52,8 +53,5 @@ This command currently handles only five of the settings the [Draft SetStyle](Dr - In FreeCAD version 0.20 the [Draft SetStyle](Draft_SetStyle.md) command can also apply the settings. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ApplyStyle/sv diff --git a/wiki/translations/sv/Draft_Arc.md b/wiki/translations/sv/Draft_Arc.md index eaa6a5488e..10f74c3092 100644 --- a/wiki/translations/sv/Draft_Arc.md +++ b/wiki/translations/sv/Draft_Arc.md @@ -1,3 +1,4 @@ +# Draft Arc/sv --- - GuiCommand:/sv Name:Draft Arc Name/sv:Draft Arc Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> Arc Shortcut:A R SeeAlso:[Draft Circle](Draft_Circle/sv.md)--- @@ -97,8 +98,5 @@ arc3 = Draft.make_circle(750, startangle=-30, endangle=-150) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc/sv diff --git a/wiki/translations/sv/Draft_Array.md b/wiki/translations/sv/Draft_Array.md index 75fad12b90..03ab18fde4 100644 --- a/wiki/translations/sv/Draft_Array.md +++ b/wiki/translations/sv/Draft_Array.md @@ -1,3 +1,4 @@ +# Draft Array/sv --- - GuiCommand:/sv Name:Draft Array Name/sv:Draft Array Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft → Array SeeAlso:[PathArray](Draft_PathArray/sv.md)--- @@ -29,8 +30,5 @@ See [Draft OrthoArray](Draft_OrthoArray#Properties.md). See [Draft OrthoArray](Draft_OrthoArray#Scripting.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Array/sv diff --git a/wiki/translations/sv/Draft_BSpline.md b/wiki/translations/sv/Draft_BSpline.md index 1f71947bda..ff7b9459ea 100644 --- a/wiki/translations/sv/Draft_BSpline.md +++ b/wiki/translations/sv/Draft_BSpline.md @@ -1,3 +1,4 @@ +# Draft BSpline/sv --- - GuiCommand:/sv Name:Draft BSpline Name/sv:Draft BSpline Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft → BSpline Shortcut:B S SeeAlso:[Draft Wire](Draft_Wire/sv.md)--- @@ -130,8 +131,5 @@ spline3 = Draft.make_bspline([1.3*p3, p1, -1.7*p2], closed=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BSpline/sv diff --git a/wiki/translations/sv/Draft_BezCurve.md b/wiki/translations/sv/Draft_BezCurve.md index 3e361a8c52..169428d233 100644 --- a/wiki/translations/sv/Draft_BezCurve.md +++ b/wiki/translations/sv/Draft_BezCurve.md @@ -1,3 +1,4 @@ +# Draft BezCurve/sv --- - GuiCommand:/sv Name:Draft BezCurve Name/sv:Draft BezCurve Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> BezCurve Shortcut:B Z--- @@ -142,8 +143,5 @@ bezcurve3 = Draft.make_bezcurve([1.7*p3, 1.5*p4, 2.1*p2, p1], closed=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BezCurve/sv diff --git a/wiki/translations/sv/Draft_Circle.md b/wiki/translations/sv/Draft_Circle.md index 95a53bde8c..0a7fc43228 100644 --- a/wiki/translations/sv/Draft_Circle.md +++ b/wiki/translations/sv/Draft_Circle.md @@ -1,3 +1,4 @@ +# Draft Circle/sv --- - GuiCommand:/sv Name:Draft Circle Name/sv:Draft Circle Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> Circle Shortcut:C I SeeAlso:[Draft Arc](Draft_Arc/sv.md)--- @@ -153,8 +154,5 @@ circle3 = Draft.make_circle(750, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Circle/sv diff --git a/wiki/translations/sv/Draft_Clone.md b/wiki/translations/sv/Draft_Clone.md index 3a806f26f6..319f121b49 100644 --- a/wiki/translations/sv/Draft_Clone.md +++ b/wiki/translations/sv/Draft_Clone.md @@ -1,3 +1,4 @@ +# Draft Clone/sv --- - GuiCommand:/sv Name:Draft Clone Name/sv:Draft Clone Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft → Clone SeeAlso:[Draft Scale](Draft_Scale/sv.md)--- @@ -79,8 +80,5 @@ cloned_object.Fuse = True doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Clone/sv diff --git a/wiki/translations/sv/Draft_CloseLine.md b/wiki/translations/sv/Draft_CloseLine.md index 302754ca3c..e21cdebfa6 100644 --- a/wiki/translations/sv/Draft_CloseLine.md +++ b/wiki/translations/sv/Draft_CloseLine.md @@ -1,2 +1,5 @@ # Draft CloseLine/sv 1. REDIRECT [Draft\_Wire/sv](Draft_Wire/sv.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CloseLine/sv diff --git a/wiki/translations/sv/Draft_Constrain.md b/wiki/translations/sv/Draft_Constrain.md index 1a2b7ff10d..c59761e79a 100644 --- a/wiki/translations/sv/Draft_Constrain.md +++ b/wiki/translations/sv/Draft_Constrain.md @@ -1,10 +1,4 @@ # Draft Constrain/sv - - - - - - {{TOCright}} ## Description @@ -68,3 +62,6 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr [Category:User Documentation/sv](Category:User_Documentation/sv.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Constrain/sv diff --git a/wiki/translations/sv/Draft_DXF.md b/wiki/translations/sv/Draft_DXF.md index f0de3a93fc..fe32a1b43a 100644 --- a/wiki/translations/sv/Draft_DXF.md +++ b/wiki/translations/sv/Draft_DXF.md @@ -1,10 +1,4 @@ # Draft DXF/sv - - - - - - {{TOCright}} ## Description @@ -178,3 +172,6 @@ importDXF.export(objects, "/home/user/Pictures/myfile.dxf") [Category:User Documentation/sv](Category:User_Documentation/sv.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DXF/sv diff --git a/wiki/translations/sv/Draft_Dimension.md b/wiki/translations/sv/Draft_Dimension.md index 3898fdd6fb..4ca5e494a2 100644 --- a/wiki/translations/sv/Draft_Dimension.md +++ b/wiki/translations/sv/Draft_Dimension.md @@ -1,3 +1,4 @@ +# Draft Dimension/sv --- - GuiCommand:/sv Name:Draft Dimension Workbenches:[MenuLocation:Draft → Dimension Shortcut:D I SeeAlso:[[Draft FlipDimension/sv|FlipDimension](Draft_Workbench/sv___Skiss]].md)--- @@ -293,8 +294,5 @@ dimension4.ViewObject.FontSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Dimension/sv diff --git a/wiki/translations/sv/Draft_Downgrade.md b/wiki/translations/sv/Draft_Downgrade.md index 3a3b2b11b7..1bdfed9290 100644 --- a/wiki/translations/sv/Draft_Downgrade.md +++ b/wiki/translations/sv/Draft_Downgrade.md @@ -1,3 +1,4 @@ +# Draft Downgrade/sv --- - GuiCommand:/sv Name:Draft Downgrade Name/sv:Draft Downgrade Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> Downgrade Shortcut:D N SeeAlso:[Draft Upgrade](Draft_Upgrade/sv.md)--- @@ -81,8 +82,5 @@ add_list4, delete_list4 = Draft.downgrade(box, delete=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Downgrade/sv diff --git a/wiki/translations/sv/Draft_Draft2Sketch.md b/wiki/translations/sv/Draft_Draft2Sketch.md index 951c01a894..110e2a6931 100644 --- a/wiki/translations/sv/Draft_Draft2Sketch.md +++ b/wiki/translations/sv/Draft_Draft2Sketch.md @@ -1,3 +1,4 @@ +# Draft Draft2Sketch/sv --- - GuiCommand:/sv Name:Draft Draft2Sketch Name/sv:Draft Draft2Sketch Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Drafting -> Draft to Sketch--- @@ -99,8 +100,5 @@ draft_from_sketch = Draft.draftify(sketch_from_draft, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Draft2Sketch/sv diff --git a/wiki/translations/sv/Draft_Drawing.md b/wiki/translations/sv/Draft_Drawing.md index 032db0eaef..06eda72c3f 100644 --- a/wiki/translations/sv/Draft_Drawing.md +++ b/wiki/translations/sv/Draft_Drawing.md @@ -1,3 +1,4 @@ +# Draft Drawing/sv --- - GuiCommand:/sv Name:Draft_Drawing Name/sv:Draft Drawing Workbenches:[[Draft_Workbench/sv Skiss]]|MenuLocation:Drafting → Drawing--- @@ -35,8 +36,5 @@ This command is now obsolete. Use the [TechDraw Workbench](TechDraw_Workbench.md 4. Press the ** [Draft Drawing](Draft_Drawing.md)** button. 5. There is a bug in the FreeCAD version 0.19 version of the command. The initial value of the **Direction** property is {{Value|[0, 0, 0]}} which is not allowed. For objects on a plane parallel to the XY plane of the global coordinate system it should be changed to {{Value|[0, 0, 1]}}. After changing this property the page and the view may need to be [recomputed](Std_Refresh.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Drawing/sv diff --git a/wiki/translations/sv/Draft_Edit.md b/wiki/translations/sv/Draft_Edit.md index 5ad60098a3..09e476c992 100644 --- a/wiki/translations/sv/Draft_Edit.md +++ b/wiki/translations/sv/Draft_Edit.md @@ -1,3 +1,4 @@ +# Draft Edit/sv --- - GuiCommand:/sv Name:Draft_Edit Workbenches:[[Draft_Workbench/sv Skiss]]|MenuLocation:Draft → Edit--- @@ -183,8 +184,5 @@ See also: [Autogenerated API documentation](https://freecad.github.io/SourceDoc/ There is no Python method to Draft Edit objects. To emulate the results of the command geometric properties of objects have to be modified. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Edit/sv diff --git a/wiki/translations/sv/Draft_Ellipse.md b/wiki/translations/sv/Draft_Ellipse.md index 2bce75b363..480e39b2cf 100644 --- a/wiki/translations/sv/Draft_Ellipse.md +++ b/wiki/translations/sv/Draft_Ellipse.md @@ -1,3 +1,4 @@ +# Draft Ellipse/sv --- - GuiCommand:/sv Name:Draft Ellipse Name/sv:Draft Ellipse Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> Ellipse Shortcut:E L SeeAlso:[Draft Circle](Draft_Circle/sv.md)--- @@ -125,8 +126,5 @@ ellipse3 = Draft.make_ellipse(700, 1000, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Ellipse/sv diff --git a/wiki/translations/sv/Draft_Facebinder.md b/wiki/translations/sv/Draft_Facebinder.md index 9b9301641f..e56645b423 100644 --- a/wiki/translations/sv/Draft_Facebinder.md +++ b/wiki/translations/sv/Draft_Facebinder.md @@ -1,3 +1,4 @@ +# Draft Facebinder/sv --- - GuiCommand:/sv Name:Draft Facebinder Name/sv:Draft Facebinder Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft → Facebinder Shortcut:F F--- @@ -119,8 +120,5 @@ facebinder.ViewObject.ShapeColor = (0.99, 0.99, 0.4) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Facebinder/sv diff --git a/wiki/translations/sv/Draft_FinishLine.md b/wiki/translations/sv/Draft_FinishLine.md index d59a1f1244..45badfdd03 100644 --- a/wiki/translations/sv/Draft_FinishLine.md +++ b/wiki/translations/sv/Draft_FinishLine.md @@ -1,2 +1,5 @@ # Draft FinishLine/sv 1. REDIRECT [Draft\_Wire/sv](Draft_Wire/sv.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FinishLine/sv diff --git a/wiki/translations/sv/Draft_FlipDimension.md b/wiki/translations/sv/Draft_FlipDimension.md index 8899a6f3c8..c3c2228d34 100644 --- a/wiki/translations/sv/Draft_FlipDimension.md +++ b/wiki/translations/sv/Draft_FlipDimension.md @@ -1,3 +1,4 @@ +# Draft FlipDimension/sv --- - GuiCommand:/sv Name:Draft FlipDimension Name/sv:Draft FlipDimension Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> Utilities -> Flip Dimension SeeAlso:[Dimension](Draft_Dimension/sv.md)--- @@ -44,8 +45,5 @@ dimension.Normal = dimension.Normal.negative() doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FlipDimension/sv diff --git a/wiki/translations/sv/Draft_Heal.md b/wiki/translations/sv/Draft_Heal.md index cc70f1065c..6daeef92a3 100644 --- a/wiki/translations/sv/Draft_Heal.md +++ b/wiki/translations/sv/Draft_Heal.md @@ -1,3 +1,4 @@ +# Draft Heal/sv --- - GuiCommand:/sv Name:Draft Heal Name/sv:Draft Heal Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft → Utilities → Heal--- @@ -14,8 +15,5 @@ The **Draft Heal** c 2. Select the **Utilities → Heal** option from the menu. 3. If no errors are found the command will do nothing. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Heal/sv diff --git a/wiki/translations/sv/Draft_Line.md b/wiki/translations/sv/Draft_Line.md index 2fe319f351..5fd12213cf 100644 --- a/wiki/translations/sv/Draft_Line.md +++ b/wiki/translations/sv/Draft_Line.md @@ -1,3 +1,4 @@ +# Draft Line/sv --- - GuiCommand:/sv Name:Draft Line Workbenches:[MenuLocation:Draft → Line Shortcut:L I SeeAlso:[[Draft Wire/sv|Draft Wire](Draft_Workbench/sv___Skiss]].md)--- @@ -129,8 +130,5 @@ line2 = Draft.make_line(p3, p4) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Line/sv diff --git a/wiki/translations/sv/Draft_Linestyle.md b/wiki/translations/sv/Draft_Linestyle.md index 7184919aa3..7363227ee0 100644 --- a/wiki/translations/sv/Draft_Linestyle.md +++ b/wiki/translations/sv/Draft_Linestyle.md @@ -1,2 +1,5 @@ # Draft Linestyle/sv 1. REDIRECT [Draft\_Tray](Draft_Tray.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Linestyle/sv diff --git a/wiki/translations/sv/Draft_Module.md b/wiki/translations/sv/Draft_Module.md index 1e4a7371ba..672d72cdeb 100644 --- a/wiki/translations/sv/Draft_Module.md +++ b/wiki/translations/sv/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/sv 1. REDIRECT [Draft\_Workbench/sv](Draft_Workbench/sv.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/sv diff --git a/wiki/translations/sv/Draft_Move.md b/wiki/translations/sv/Draft_Move.md index 0371e08cbe..2ca192e305 100644 --- a/wiki/translations/sv/Draft_Move.md +++ b/wiki/translations/sv/Draft_Move.md @@ -1,3 +1,4 @@ +# Draft Move/sv --- - GuiCommand:/sv Name:Draft Move Name/sv:Draft Move Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> Move Shortcut:M V--- @@ -122,8 +123,5 @@ list3 = Draft.move(list1, -2*vector, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Move/sv diff --git a/wiki/translations/sv/Draft_OCA.md b/wiki/translations/sv/Draft_OCA.md index 72ac54af9f..7df47feafc 100644 --- a/wiki/translations/sv/Draft_OCA.md +++ b/wiki/translations/sv/Draft_OCA.md @@ -1,10 +1,4 @@ # Draft OCA/sv - - - - - - {{TOCright}} ## Description @@ -111,3 +105,6 @@ importOCA.export(objects, "/home/user/Pictures/myfile.oca") [Category:User Documentation/sv](Category:User_Documentation/sv.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft OCA/sv diff --git a/wiki/translations/sv/Draft_Offset.md b/wiki/translations/sv/Draft_Offset.md index 48b6063ef1..2442fd53e9 100644 --- a/wiki/translations/sv/Draft_Offset.md +++ b/wiki/translations/sv/Draft_Offset.md @@ -1,3 +1,4 @@ +# Draft Offset/sv --- - GuiCommand:/sv Name:Draft_Offset Workbenches:[MenuLocation:Draft → Offset SeeAlso:[[Part_Offset2D/sv|Part 2D Offset](Draft_Workbench/sv___Skiss]].md)--- @@ -124,8 +125,5 @@ offset5 = Draft.offset(wire, 1.5*vector, copy=True, occ=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Offset/sv diff --git a/wiki/translations/sv/Draft_PathArray.md b/wiki/translations/sv/Draft_PathArray.md index 362d7970bb..85a436f09f 100644 --- a/wiki/translations/sv/Draft_PathArray.md +++ b/wiki/translations/sv/Draft_PathArray.md @@ -1,3 +1,4 @@ +# Draft PathArray/sv --- - GuiCommand:/sv Name:Draft PathArray Name/sv:Draft PathArray Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft → PathArray SeeAlso:[Draft Array](Draft_Array/sv.md) --- @@ -263,8 +264,5 @@ path_array2 = Draft.make_path_array(obj, wire, count=3, extra=App.Vector(0, -500 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathArray/sv diff --git a/wiki/translations/sv/Draft_Point.md b/wiki/translations/sv/Draft_Point.md index 10013d3f2f..30b153b19b 100644 --- a/wiki/translations/sv/Draft_Point.md +++ b/wiki/translations/sv/Draft_Point.md @@ -1,3 +1,4 @@ +# Draft Point/sv --- - GuiCommand:/sv Name:Draft Point Name/sv:Draft Point Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> Point Shortcut:P T--- @@ -147,8 +148,5 @@ for i in range(N): doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Point/sv diff --git a/wiki/translations/sv/Draft_Polygon.md b/wiki/translations/sv/Draft_Polygon.md index e2907d4485..8ce3213f2a 100644 --- a/wiki/translations/sv/Draft_Polygon.md +++ b/wiki/translations/sv/Draft_Polygon.md @@ -1,3 +1,4 @@ +# Draft Polygon/sv --- - GuiCommand:/sv Name:Draft_Polygon Workbenches:[[Draft_Workbench/sv Skiss]]|MenuLocation:Draft -> Polygon--- @@ -143,8 +144,5 @@ Polygon3 = Draft.make_polygon(6, radius=1450, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Polygon/sv diff --git a/wiki/translations/sv/Draft_Preferences.md b/wiki/translations/sv/Draft_Preferences.md index 0edf03d153..a3d8b03277 100644 --- a/wiki/translations/sv/Draft_Preferences.md +++ b/wiki/translations/sv/Draft_Preferences.md @@ -1,10 +1,4 @@ # Draft Preferences/sv - - - - - - {{TOCright}} @@ -508,3 +502,6 @@ On the *Texts and dimensions* tab you can specify the following: [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Preferences/sv diff --git a/wiki/translations/sv/Draft_Rectangle.md b/wiki/translations/sv/Draft_Rectangle.md index 07224d2177..0f07d87c99 100644 --- a/wiki/translations/sv/Draft_Rectangle.md +++ b/wiki/translations/sv/Draft_Rectangle.md @@ -1,3 +1,4 @@ +# Draft Rectangle/sv --- - GuiCommand:/sv Name:Draft Rectangle Name/sv:Draft Rectangle Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> Rectangle Shortcut:R E SeeAlso:[Part Box](Part_Box/sv.md)--- @@ -144,8 +145,5 @@ rectangle3 = Draft.make_rectangle(3500, 250, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rectangle/sv diff --git a/wiki/translations/sv/Draft_Rotate.md b/wiki/translations/sv/Draft_Rotate.md index 2ea7708168..f4c41d0159 100644 --- a/wiki/translations/sv/Draft_Rotate.md +++ b/wiki/translations/sv/Draft_Rotate.md @@ -1,3 +1,4 @@ +# Draft Rotate/sv --- - GuiCommand:/sv Name:Draft_Rotate Workbenches:[[Draft_Workbench/sv Skiss]]|MenuLocation:Draft -> Rotate--- @@ -135,8 +136,5 @@ rot_list4 = Draft.rotate(list2, 4*angle2, center=cen, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rotate/sv diff --git a/wiki/translations/sv/Draft_SVG.md b/wiki/translations/sv/Draft_SVG.md index 270c49f505..8c9d56f000 100644 --- a/wiki/translations/sv/Draft_SVG.md +++ b/wiki/translations/sv/Draft_SVG.md @@ -1,10 +1,4 @@ # Draft SVG/sv - - - - - - {{TOCright}} ## Description @@ -141,3 +135,6 @@ importSVG.export(objects, "/home/user/Pictures/myfile.svg") [Category:User Documentation/sv](Category:User_Documentation/sv.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SVG/sv diff --git a/wiki/translations/sv/Draft_Scale.md b/wiki/translations/sv/Draft_Scale.md index e362ed2ea6..a01b6a28cd 100644 --- a/wiki/translations/sv/Draft_Scale.md +++ b/wiki/translations/sv/Draft_Scale.md @@ -1,3 +1,4 @@ +# Draft Scale/sv --- - GuiCommand:/sv Name:Draft Scale Name/sv:Draft Scale Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft → Scale Shortcut:S C SeeAlso:[Draft Clone](Draft_Clone/sv.md)--- @@ -130,8 +131,5 @@ wires = Draft.scale([wire1, wire2], scale2, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Scale/sv diff --git a/wiki/translations/sv/Draft_SelectGroup.md b/wiki/translations/sv/Draft_SelectGroup.md index 5f40c7c8f8..283108ba1f 100644 --- a/wiki/translations/sv/Draft_SelectGroup.md +++ b/wiki/translations/sv/Draft_SelectGroup.md @@ -1,3 +1,4 @@ +# Draft SelectGroup/sv --- - GuiCommand:/sv Name:Draft SelectGroup Name/sv:Draft SelectGroup Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> Utilities -> Select group--- @@ -26,8 +27,5 @@ The command currently does not work well with layers and can produce confusing r - For more information about organizing your model see [Document structure](Document_structure.md) and [Arch tutorial](Arch_tutorial#Organizing_your_model.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectGroup/sv diff --git a/wiki/translations/sv/Draft_SelectPlane.md b/wiki/translations/sv/Draft_SelectPlane.md index 008d41a2fa..a7a7d15f32 100644 --- a/wiki/translations/sv/Draft_SelectPlane.md +++ b/wiki/translations/sv/Draft_SelectPlane.md @@ -1,3 +1,4 @@ +# Draft SelectPlane/sv --- - GuiCommand:/sv Name:Draft_Workingplane Workbenches:[[Draft_Workbench/sv Skiss]]|MenuLocation:Drafting → SelectPlane--- @@ -137,8 +138,5 @@ projection = my_plane.projectPoint(App.Vector(10, 15, 2)) print(projection) ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectPlane/sv diff --git a/wiki/translations/sv/Draft_Shape2DView.md b/wiki/translations/sv/Draft_Shape2DView.md index 1f16800476..9ac500ece2 100644 --- a/wiki/translations/sv/Draft_Shape2DView.md +++ b/wiki/translations/sv/Draft_Shape2DView.md @@ -1,3 +1,4 @@ +# Draft Shape2DView/sv --- - GuiCommand:/sv Name:Draft Shape2DView Name/sv:Draft Shape2DView Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> Shape 2D View--- @@ -146,8 +147,5 @@ shape3.ProjectionMode = "Individual Faces" doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Shape2DView/sv diff --git a/wiki/translations/sv/Draft_ShapeString.md b/wiki/translations/sv/Draft_ShapeString.md index 1f2bf7ed49..7cc8b73ba1 100644 --- a/wiki/translations/sv/Draft_ShapeString.md +++ b/wiki/translations/sv/Draft_ShapeString.md @@ -1,3 +1,4 @@ +# Draft ShapeString/sv --- - GuiCommand:/sv Name:Draft ShapeString Name/sv:Draft ShapeString Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> ShapeString Shortcut:S S SeeAlso:[Draft Text](Draft_Text/sv.md), [Part Extrude](Part_Extrude/sv.md)--- @@ -148,8 +149,5 @@ S3.Placement.Rotation = App.Rotation(zaxis, 180) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString/sv diff --git a/wiki/translations/sv/Draft_ShowSnapBar.md b/wiki/translations/sv/Draft_ShowSnapBar.md index 7f3aa218a2..8b3bd224f2 100644 --- a/wiki/translations/sv/Draft_ShowSnapBar.md +++ b/wiki/translations/sv/Draft_ShowSnapBar.md @@ -1,3 +1,4 @@ +# Draft ShowSnapBar/sv --- - GuiCommand:/sv Name:Draft ShowSnapBar Name/sv:Draft ShowSnapBar Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft → Utilities → Show Snap Bar--- @@ -18,8 +19,5 @@ The **Draft S - Select the **View → Toolbars → Draft Snap** option from the menu. - Right-click an empty space in the [toolbar area](Interface.md) and select the **Draft Snap** option from the menu that appears. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShowSnapBar/sv diff --git a/wiki/translations/sv/Draft_Snap.md b/wiki/translations/sv/Draft_Snap.md index 28a26f71be..88a25ab567 100644 --- a/wiki/translations/sv/Draft_Snap.md +++ b/wiki/translations/sv/Draft_Snap.md @@ -1,10 +1,4 @@ # Draft Snap/sv - - - - - - {{TOCright}} ## Description @@ -119,3 +113,6 @@ I verktyg som stöder både snäppning och begränsning, så kan kombinationen a [Category:User Documentation/sv](Category:User_Documentation/sv.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap/sv diff --git a/wiki/translations/sv/Draft_Snap_Lock.md b/wiki/translations/sv/Draft_Snap_Lock.md index a082a3d35b..314cdaba2d 100644 --- a/wiki/translations/sv/Draft_Snap_Lock.md +++ b/wiki/translations/sv/Draft_Snap_Lock.md @@ -1,3 +1,4 @@ +# Draft Snap Lock/sv --- - GuiCommand:/sv Name:Draft ToggleSnap Name/sv:Draft ToggleSnap Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft → Utilities → Toggle snap--- @@ -17,8 +18,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). - Press the **** button in the [Draft snap widget](Draft_snap_widget.md) and in the menu select the ** Snap Lock** option. - Use the \"in-command\" shortcut: **S**. This shortcut can only be used if a command is active and does not work for all commands. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Lock/sv diff --git a/wiki/translations/sv/Draft_Text.md b/wiki/translations/sv/Draft_Text.md index 4704990a89..8dd1d492a1 100644 --- a/wiki/translations/sv/Draft_Text.md +++ b/wiki/translations/sv/Draft_Text.md @@ -1,3 +1,4 @@ +# Draft Text/sv --- - GuiCommand:/sv Name:Draft_Text Workbenches:[Arch](Draft_Workbench/sv___Skiss]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft → Text Shortcut:T E--- @@ -161,8 +162,5 @@ text3.ViewObject.FontSize = 200 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Text/sv diff --git a/wiki/translations/sv/Draft_ToggleConstructionMode.md b/wiki/translations/sv/Draft_ToggleConstructionMode.md index 65f5b7b0dc..b16b3e80e6 100644 --- a/wiki/translations/sv/Draft_ToggleConstructionMode.md +++ b/wiki/translations/sv/Draft_ToggleConstructionMode.md @@ -1,3 +1,4 @@ +# Draft ToggleConstructionMode/sv --- - GuiCommand:/sv Name:Draft ToggleConstructionMode Name/sv:Draft ToggleConstructionMode Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> Utilities -> Toggle construction mode--- @@ -54,8 +55,5 @@ In FreeCAD version 0.19 this command and the [Draft AddConstruction](Draft_AddCo - To change the label ((v0.20) ) of the construction group: **Edit → Preferences... → Draft → General settings → Construction Geometry → Construction group name**. - To change the color that is used: **Edit → Preferences... → Draft → General settings → Construction Geometry → Construction geometry color**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleConstructionMode/sv diff --git a/wiki/translations/sv/Draft_ToggleContinueMode.md b/wiki/translations/sv/Draft_ToggleContinueMode.md index 66ab28514b..f23adca330 100644 --- a/wiki/translations/sv/Draft_ToggleContinueMode.md +++ b/wiki/translations/sv/Draft_ToggleContinueMode.md @@ -1,3 +1,4 @@ +# Draft ToggleContinueMode/sv --- - GuiCommand:/sv Name:Draft ToggleContinueMode Name/sv:Draft ToggleContinueMode Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> Utilities -> Toggle continue mode--- @@ -16,8 +17,5 @@ The ** 4. Create your geometry. 5. Press **Esc** or the **Close** button to finish the command and switch off continue mode. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleContinueMode/sv diff --git a/wiki/translations/sv/Draft_ToggleDisplayMode.md b/wiki/translations/sv/Draft_ToggleDisplayMode.md index 2a281d9eec..8998b10ce7 100644 --- a/wiki/translations/sv/Draft_ToggleDisplayMode.md +++ b/wiki/translations/sv/Draft_ToggleDisplayMode.md @@ -1,3 +1,4 @@ +# Draft ToggleDisplayMode/sv --- - GuiCommand:/sv Name:Draft ToggleDisplayMode Name/sv:Draft ToggleDisplayMode Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> Utilities -> Toggle display mode Shortcut:Shift + Space--- @@ -20,8 +21,5 @@ The **D - Select the **Utilities → Toggle normal/wireframe display** option from the [Tree view](Tree_view.md) or [3D view](3D_view.md) context menu. - Use the keyboard shortcut: **Shift**+**Space**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleDisplayMode/sv diff --git a/wiki/translations/sv/Draft_ToggleGrid.md b/wiki/translations/sv/Draft_ToggleGrid.md index 25667dbe02..7a6b572959 100644 --- a/wiki/translations/sv/Draft_ToggleGrid.md +++ b/wiki/translations/sv/Draft_ToggleGrid.md @@ -1,3 +1,4 @@ +# Draft ToggleGrid/sv --- - GuiCommand:/sv Name:Draft ToggleGrid Name/sv:Draft ToggleGrid Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft → Utilities → Toggle grid--- @@ -27,8 +28,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - To use the grid select: **Edit → Preferences... → Draft → Grid and snapping → Grid → Use grid**. After changing this preference you must restart FreeCAD. - Several other grid preferences are also available: **Edit → Preferences... → Draft → Grid and snapping → Grid**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleGrid/sv diff --git a/wiki/translations/sv/Draft_Trimex.md b/wiki/translations/sv/Draft_Trimex.md index f7c333fdaa..9bf5f6a828 100644 --- a/wiki/translations/sv/Draft_Trimex.md +++ b/wiki/translations/sv/Draft_Trimex.md @@ -1,3 +1,4 @@ +# Draft Trimex/sv --- - GuiCommand:/sv Name:Draft Trimex Name/sv:Draft Trimex Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft -> Trim/Extend Shortcut:T R SeeAlso:[Part Extrude](Part_Extrude/sv.md)--- @@ -130,8 +131,5 @@ solid = Draft.extrude(rectangle, vector, solid=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Trimex/sv diff --git a/wiki/translations/sv/Draft_UndoLine.md b/wiki/translations/sv/Draft_UndoLine.md index 85a451a636..e34f0aaa76 100644 --- a/wiki/translations/sv/Draft_UndoLine.md +++ b/wiki/translations/sv/Draft_UndoLine.md @@ -1,2 +1,5 @@ # Draft UndoLine/sv 1. REDIRECT [Draft\_Wire/sv](Draft_Wire/sv.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft UndoLine/sv diff --git a/wiki/translations/sv/Draft_Upgrade.md b/wiki/translations/sv/Draft_Upgrade.md index 6cacda679a..a49005906a 100644 --- a/wiki/translations/sv/Draft_Upgrade.md +++ b/wiki/translations/sv/Draft_Upgrade.md @@ -1,3 +1,4 @@ +# Draft Upgrade/sv --- - GuiCommand:/sv Name:Draft_Upgrade Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Draft → Upgrade Shortcut:U P SeeAlso:[Draft Downgrade](Draft_Downgrade/sv.md)--- @@ -88,8 +89,5 @@ add_list5, delete_list5 = Draft.upgrade(face, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Upgrade/sv diff --git a/wiki/translations/sv/Draft_Wire.md b/wiki/translations/sv/Draft_Wire.md index b84685d81f..c0ba472fbb 100644 --- a/wiki/translations/sv/Draft_Wire.md +++ b/wiki/translations/sv/Draft_Wire.md @@ -1,3 +1,4 @@ +# Draft Wire/sv --- - GuiCommand:/sv Name:Draft Wire Name/sv:Draft Wire Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|Shortcut:W I MenuLocation:Draft → Wire SeeAlso:[Draft Line](Draft_Line/sv.md), [Draft BSpline](Draft_BSpline/sv.md)--- @@ -200,8 +201,5 @@ wire3 = Draft.make_wire([1.3*p3, p1, -1.7*p2], closed=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Wire/sv diff --git a/wiki/translations/sv/Draft_WireToBSpline.md b/wiki/translations/sv/Draft_WireToBSpline.md index 5c70e153fa..9541202839 100644 --- a/wiki/translations/sv/Draft_WireToBSpline.md +++ b/wiki/translations/sv/Draft_WireToBSpline.md @@ -1,3 +1,4 @@ +# Draft WireToBSpline/sv --- - GuiCommand:/sv Name:Draft WireToBSpline Name/sv:Draft WireToBSpline Workbenches:[Arch](Draft_Workbench/sv___Draft]],_[[Arch_Workbench/sv.md)|MenuLocation:Drafting -> Wire to BSpline--- @@ -67,8 +68,5 @@ wire_from_spline = Draft.make_wire(points2) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WireToBSpline/sv diff --git a/wiki/translations/sv/Draft_Workbench.md b/wiki/translations/sv/Draft_Workbench.md index 374f37fff9..803bc00de8 100644 --- a/wiki/translations/sv/Draft_Workbench.md +++ b/wiki/translations/sv/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/sv - - - - - -Draft workbench icon +# Draft workbench icon Draft Workbench/sv {{TOCright}} @@ -401,3 +395,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/sv diff --git a/wiki/translations/sv/Draft_tutorial.md b/wiki/translations/sv/Draft_tutorial.md index 58fd79befd..f98f2be45c 100644 --- a/wiki/translations/sv/Draft_tutorial.md +++ b/wiki/translations/sv/Draft_tutorial.md @@ -1,7 +1,4 @@ # Draft tutorial/sv - - -
@@ -230,4 +227,7 @@ The [Draft Workbench](Draft_Workbench.md) in many ways is similar to the [Sketch {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft tutorial/sv diff --git a/wiki/translations/sv/Drawing_Annotation.md b/wiki/translations/sv/Drawing_Annotation.md index 052142d445..2fe909fafa 100644 --- a/wiki/translations/sv/Drawing_Annotation.md +++ b/wiki/translations/sv/Drawing_Annotation.md @@ -1,3 +1,4 @@ +# Drawing Annotation/sv --- - GuiCommand:/sv Name:Drawing Annotation Name/sv:Drawing Annotation Workbenches:[[Drawing Workbench/sv Drawing]], Complete|MenuLocation:Drawing → Annotation Shortcut:none--- @@ -34,4 +35,7 @@ This command allows you to place a block of text on a [Drawing page](Drawing_Lan {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Annotation/sv diff --git a/wiki/translations/sv/Drawing_Clip.md b/wiki/translations/sv/Drawing_Clip.md index 091a43d280..51206d3e9b 100644 --- a/wiki/translations/sv/Drawing_Clip.md +++ b/wiki/translations/sv/Drawing_Clip.md @@ -1,3 +1,4 @@ +# Drawing Clip/sv --- - GuiCommand:/sv Name:Drawing Clip Name/sv:Drawing Clip Workbenches:[[Drawing Workbench/sv Drawing]], Complete|MenuLocation:Drawing → Clip Shortcut:none--- @@ -33,4 +34,7 @@ This command allows you to place a clipping rectangle on a [Drawing page](Drawin {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Clip/sv diff --git a/wiki/translations/sv/Drawing_Landscape_A3.md b/wiki/translations/sv/Drawing_Landscape_A3.md index 81ad54fa06..f6677db088 100644 --- a/wiki/translations/sv/Drawing_Landscape_A3.md +++ b/wiki/translations/sv/Drawing_Landscape_A3.md @@ -1,3 +1,4 @@ +# Drawing Landscape A3/sv --- - GuiCommand:/sv Name:Drawing Landscape A3 Name/sv:Drawing Landscape A3 Workbenches:[[Drawing Workbench/sv Drawing]], Complete|MenuLocation:Drawing → Insert new drawing → A3 Landscape Shortcut:none--- @@ -21,4 +22,7 @@ If the page does not display, click on the [Drawing](Drawing_Workbench.md) > Drawing Landscape A3/sv diff --git a/wiki/translations/sv/Drawing_Module.md b/wiki/translations/sv/Drawing_Module.md index cffc75e1f7..922bbddbe2 100644 --- a/wiki/translations/sv/Drawing_Module.md +++ b/wiki/translations/sv/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/sv 1. REDIRECT [Drawing\_Workbench/sv](Drawing_Workbench/sv.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/sv diff --git a/wiki/translations/sv/Drawing_Open_SVG.md b/wiki/translations/sv/Drawing_Open_SVG.md index 8ca644bd37..648f8cee86 100644 --- a/wiki/translations/sv/Drawing_Open_SVG.md +++ b/wiki/translations/sv/Drawing_Open_SVG.md @@ -1,3 +1,4 @@ +# Drawing Open SVG/sv --- - GuiCommand:/sv Name:Drawing Open SVG Name/sv:Drawing Open SVG Workbenches:[MenuLocation:Drawing → Open SVG... Shortcut:none SeeAlso:[[Drawing Save/sv|Drawing Save](Drawing_Workbench/sv___Drawing]],_Complete.md)--- @@ -15,4 +16,7 @@ This tool opens a drawing sheet previously saved as an SVG (scalable vector grap {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Open SVG/sv diff --git a/wiki/translations/sv/Drawing_Openbrowser.md b/wiki/translations/sv/Drawing_Openbrowser.md index a4439e10fa..47006d92ad 100644 --- a/wiki/translations/sv/Drawing_Openbrowser.md +++ b/wiki/translations/sv/Drawing_Openbrowser.md @@ -1,3 +1,4 @@ +# Drawing Openbrowser/sv --- - GuiCommand:/sv Name:Drawing Openbrowser Name/sv:Drawing Openbrowser Workbenches:[[Drawing Workbench/sv Drawing]], Complete|MenuLocation:Drawing → Open Browser Shortcut:none--- @@ -28,4 +29,7 @@ This command allows you to display a selected [Drawing page](Drawing_Landscape_A {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Openbrowser/sv diff --git a/wiki/translations/sv/Drawing_Orthoviews.md b/wiki/translations/sv/Drawing_Orthoviews.md index f10f9bf1e5..62c936a9b1 100644 --- a/wiki/translations/sv/Drawing_Orthoviews.md +++ b/wiki/translations/sv/Drawing_Orthoviews.md @@ -1,3 +1,4 @@ +# Drawing Orthoviews/sv --- - GuiCommand: Name:Drawing Orthoviews Workbenches:[MenuLocation:Drawing → Insert orthographic views Shortcut:none SeeAlso:[[Drawing Landscape A3|Drawing Landscape A3](Drawing_Workbench___Drawing]],_Complete.md)--- @@ -56,4 +57,7 @@ To be added {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Orthoviews/sv diff --git a/wiki/translations/sv/Drawing_Save.md b/wiki/translations/sv/Drawing_Save.md index 6321f90a33..0d94531ec3 100644 --- a/wiki/translations/sv/Drawing_Save.md +++ b/wiki/translations/sv/Drawing_Save.md @@ -1,3 +1,4 @@ +# Drawing Save/sv --- - GuiCommand:/sv Name:Drawing Save Name/sv:Drawing Save Workbenches:[MenuLocation:Drawing → Export page... Shortcut:none SeeAlso:[[Drawing Open SVG/sv|Drawing Open SVG](Drawing_Workbench/sv___Drawing]],_Complete.md)--- @@ -14,4 +15,7 @@ SVG files are common and can be viewed in most modern browsers and image viewers {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Save/sv diff --git a/wiki/translations/sv/Drawing_Symbol.md b/wiki/translations/sv/Drawing_Symbol.md index 5a5016fb6e..9cb4730d61 100644 --- a/wiki/translations/sv/Drawing_Symbol.md +++ b/wiki/translations/sv/Drawing_Symbol.md @@ -1,3 +1,4 @@ +# Drawing Symbol/sv --- - GuiCommand:/sv Name:Drawing Symbol Name/sv:Drawing Symbol Workbenches:[[Drawing Workbench/sv Drawing]], Complete|MenuLocation:Drawing → Symbol Shortcut:none--- @@ -28,4 +29,7 @@ This command allows you to add the contents of a SVG image on a selected [Drawin {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Symbol/sv diff --git a/wiki/translations/sv/Drawing_View.md b/wiki/translations/sv/Drawing_View.md index 2114424f9c..aff50554df 100644 --- a/wiki/translations/sv/Drawing_View.md +++ b/wiki/translations/sv/Drawing_View.md @@ -1,3 +1,4 @@ +# Drawing View/sv --- - GuiCommand:/sv Name:Drawing View Name/sv:Drawing View Workbenches:[MenuLocation:Drawing → Insert view in drawing Shortcut:none SeeAlso:[[Drawing Landscape A3/sv|Drawing Landscape A3](Drawing_Workbench/sv___Drawing]],_Complete.md)--- @@ -52,4 +53,7 @@ If you are looking for persective-orthographic toggling in 3D view check [Std Pe {{Drawing Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing View/sv diff --git a/wiki/translations/sv/Drawing_Workbench.md b/wiki/translations/sv/Drawing_Workbench.md index 714de959f8..1fe17aaf5b 100644 --- a/wiki/translations/sv/Drawing_Workbench.md +++ b/wiki/translations/sv/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/sv - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** Drawing workbench icon @@ -82,3 +79,6 @@ Some notes on the programming side of the drawing module will be added to the [D }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/sv diff --git a/wiki/translations/sv/Drawing_templates.md b/wiki/translations/sv/Drawing_templates.md index e599ec7947..cf304564b3 100644 --- a/wiki/translations/sv/Drawing_templates.md +++ b/wiki/translations/sv/Drawing_templates.md @@ -1,7 +1,4 @@ # Drawing templates/sv - - - **The [Drawing Workbench](Drawing_Workbench.md) became obsolete in v0.17. Consider using the [TechDraw Workbench](TechDraw_Workbench.md) instead.** @@ -229,3 +226,6 @@ The two lines that FreeCAD will be looking for are \"\$blocks\" and \"\$entities }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing templates/sv diff --git a/wiki/translations/sv/Embedding_FreeCAD.md b/wiki/translations/sv/Embedding_FreeCAD.md index da2b6d7614..68a725dead 100644 --- a/wiki/translations/sv/Embedding_FreeCAD.md +++ b/wiki/translations/sv/Embedding_FreeCAD.md @@ -1,7 +1,4 @@ # Embedding FreeCAD/sv - - - {{TOCright}} ## Introduction @@ -181,3 +178,6 @@ Since the FreeCAD Python module is compiled from C++ (rather than being a pure P }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCAD/sv diff --git a/wiki/translations/sv/Embedding_FreeCADGui.md b/wiki/translations/sv/Embedding_FreeCADGui.md index 3b958be397..f583b37dd4 100644 --- a/wiki/translations/sv/Embedding_FreeCADGui.md +++ b/wiki/translations/sv/Embedding_FreeCADGui.md @@ -1,6 +1,4 @@ # Embedding FreeCADGui/sv - - ## Introduction It is possible to [import the FreeCAD module](Embedding_FreeCAD.md) into a [Python](Python.md) application, and use all its tools from the host application, but the graphical user interface (GUI) can be imported as a Python module as well. Normally you can only import the complete interface as a whole, not pieces of it; this is because the FreeCAD interface system is not only made of independent widgets and toolbars, but is a complex construction where several invisible components (such as the selection system, etc) are needed for the main [3D view](3D_view.md) to be able to function. @@ -488,3 +486,6 @@ In the source code there are examples of embedding FreeCAD with various graphica }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCADGui/sv diff --git a/wiki/translations/sv/Extra_python_modules.md b/wiki/translations/sv/Extra_python_modules.md index 2183967d1b..da4549057b 100644 --- a/wiki/translations/sv/Extra_python_modules.md +++ b/wiki/translations/sv/Extra_python_modules.md @@ -1,10 +1,4 @@ # Extra python modules/sv - - - - - - {{TOCright}} ## Overview @@ -747,3 +741,6 @@ utils = LazyLoader('PathScripts', globals(), 'PathScripts.PathUtils') [Category:Python Code](Category:Python_Code.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > Extra python modules/sv diff --git a/wiki/translations/sv/FEM_Module.md b/wiki/translations/sv/FEM_Module.md index d8e2e51024..9211d2cd02 100644 --- a/wiki/translations/sv/FEM_Module.md +++ b/wiki/translations/sv/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/sv 1. REDIRECT [FEM\_Workbench/sv](FEM_Workbench/sv.md) + +--- +[documentation index](../README.md) > FEM Module/sv diff --git a/wiki/translations/sv/FEM_Workbench.md b/wiki/translations/sv/FEM_Workbench.md index 8916323d92..b2ecd7182f 100644 --- a/wiki/translations/sv/FEM_Workbench.md +++ b/wiki/translations/sv/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/sv - - - - - -FEM workbench icon +# FEM workbench icon FEM Workbench/sv {{TOCright}} @@ -278,3 +272,6 @@ A developer\'s guide has been written to help power users in understanding the c }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/sv diff --git a/wiki/translations/sv/FEM_project.md b/wiki/translations/sv/FEM_project.md index 2251336acd..d8597b6903 100644 --- a/wiki/translations/sv/FEM_project.md +++ b/wiki/translations/sv/FEM_project.md @@ -1,7 +1,4 @@ # FEM project/sv - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -54,3 +51,6 @@ See [FEM Solver](FEM_Solver.md) }} [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > FEM project/sv diff --git a/wiki/translations/sv/Feature_list.md b/wiki/translations/sv/Feature_list.md index 5f0dde8c95..cb8ae54d58 100644 --- a/wiki/translations/sv/Feature_list.md +++ b/wiki/translations/sv/Feature_list.md @@ -1,7 +1,4 @@ # Feature list/sv - - -
Detta är en extensiv, fast inte komplett, lista på de funktioner som FreeCAD har. Om du vill se in i framtiden, se [utvecklingskartan](Development_roadmap/sv.md) för en snabb överblick så är [Skärmdumpar](Screenshots/sv.md) en bra plats att gå till. @@ -281,3 +278,6 @@ Power users have created various custom [external workbenches](external_workbenc [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/sv diff --git a/wiki/translations/sv/Free-cad:Community_Portal.md b/wiki/translations/sv/Free-cad:Community_Portal.md index d66d05117a..b703192144 100644 --- a/wiki/translations/sv/Free-cad:Community_Portal.md +++ b/wiki/translations/sv/Free-cad:Community_Portal.md @@ -120,3 +120,6 @@ Feel free to add more pages or assign one or more pages to yourself to take care [Category:Documentation/sv](Category:Documentation/sv.md) + +--- +[documentation index](../README.md) > Free-cad:Community Portal/sv diff --git a/wiki/translations/sv/FreeCAD_Build_Tool.md b/wiki/translations/sv/FreeCAD_Build_Tool.md index 9b0063cc0c..d5c09560d1 100644 --- a/wiki/translations/sv/FreeCAD_Build_Tool.md +++ b/wiki/translations/sv/FreeCAD_Build_Tool.md @@ -1,10 +1,4 @@ # FreeCAD Build Tool/sv - - - - - - {{TOCright}} @@ -100,3 +94,6 @@ Kommandot \"CM\" [skapar en ny applikationsmodul](Module_Creation/sv.md). [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Build Tool/sv diff --git a/wiki/translations/sv/FreeCAD_Scripting_Basics.md b/wiki/translations/sv/FreeCAD_Scripting_Basics.md index 947c9f9bb1..a447129381 100644 --- a/wiki/translations/sv/FreeCAD_Scripting_Basics.md +++ b/wiki/translations/sv/FreeCAD_Scripting_Basics.md @@ -1,7 +1,4 @@ # FreeCAD Scripting Basics/sv - - - {{TOCright}} @@ -349,3 +346,6 @@ Now you can really start playing with FreeCAD! For a complete list of available }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Scripting Basics/sv diff --git a/wiki/translations/sv/FreeCAD_vector_math_library.md b/wiki/translations/sv/FreeCAD_vector_math_library.md index 8e9601985e..c29666904a 100644 --- a/wiki/translations/sv/FreeCAD_vector_math_library.md +++ b/wiki/translations/sv/FreeCAD_vector_math_library.md @@ -1,6 +1,4 @@ # FreeCAD vector math library/sv - - ## Introduction This is a [Python](Python.md) module containing a couple of useful functions to manipulate vectors. This library is included in the [Draft\_Workbench](Draft_Workbench.md) and can be accessed like this from the Python interpreter: @@ -87,3 +85,6 @@ def project(first, other): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD vector math library/sv diff --git a/wiki/translations/sv/Getting_started.md b/wiki/translations/sv/Getting_started.md index 6bc4f35669..bdf8151fdb 100644 --- a/wiki/translations/sv/Getting_started.md +++ b/wiki/translations/sv/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/sv - - - - - - {{TOCright}} ## Förord @@ -248,3 +242,6 @@ And finally, one of the most powerful features of FreeCAD is the [scripting](scr [Category:User Documentation/sv](Category:User_Documentation/sv.md) + +--- +[documentation index](../README.md) > Getting started/sv diff --git a/wiki/translations/sv/Gui_Command.md b/wiki/translations/sv/Gui_Command.md index 1510dc8339..4f4fbd726b 100644 --- a/wiki/translations/sv/Gui_Command.md +++ b/wiki/translations/sv/Gui_Command.md @@ -1,5 +1,5 @@ # Gui Command/sv - The GuiCommand is one of the most important functions of FreeCAD in the main interaction point of the user. Every time the user selects a menu item or presses a toolbar button it activates a GuiCommand. Some of the attributes of a GuiCommand are: +The GuiCommand is one of the most important functions of FreeCAD in the main interaction point of the user. Every time the user selects a menu item or presses a toolbar button it activates a GuiCommand. Some of the attributes of a GuiCommand are: - Defines a name - Contains an icon @@ -60,4 +60,7 @@ Hopefully this becomes true for all GuiCommands in the [List of Commands](List_o {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Gui Command/sv diff --git a/wiki/translations/sv/Help_FreeCAD.md b/wiki/translations/sv/Help_FreeCAD.md index e4962388c0..7b0a0be9b2 100644 --- a/wiki/translations/sv/Help_FreeCAD.md +++ b/wiki/translations/sv/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/sv - - ## Introduction @@ -137,3 +135,6 @@ Writing code for FreeCAD is not hard, and you don\'t need any permission, you ca [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Help FreeCAD/sv diff --git a/wiki/translations/sv/How_to_install_macros.md b/wiki/translations/sv/How_to_install_macros.md index 1466c2e6ef..22fcd86473 100644 --- a/wiki/translations/sv/How_to_install_macros.md +++ b/wiki/translations/sv/How_to_install_macros.md @@ -1,7 +1,4 @@ # How to install macros/sv - - -
@@ -475,3 +472,6 @@ and then press the **OK** button. }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > How to install macros/sv diff --git a/wiki/translations/sv/Image_Module.md b/wiki/translations/sv/Image_Module.md index 1f57fcb6ff..888dd7c799 100644 --- a/wiki/translations/sv/Image_Module.md +++ b/wiki/translations/sv/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/sv 1. REDIRECT [Image\_Workbench/sv](Image_Workbench/sv.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/sv diff --git a/wiki/translations/sv/Image_Workbench.md b/wiki/translations/sv/Image_Workbench.md index a978962c73..494ec4c5c5 100644 --- a/wiki/translations/sv/Image_Workbench.md +++ b/wiki/translations/sv/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/sv - - -Image workbench icon +# Image workbench icon Image Workbench/sv ## Introduction @@ -39,3 +36,6 @@ The offset of the image can be set during import, or changed later through its p }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/sv diff --git a/wiki/translations/sv/Inspection_Workbench.md b/wiki/translations/sv/Inspection_Workbench.md index 362a32a1b2..36fbf288ce 100644 --- a/wiki/translations/sv/Inspection_Workbench.md +++ b/wiki/translations/sv/Inspection_Workbench.md @@ -1,7 +1,4 @@ -# Inspection Workbench/sv - - -Inspection workbench icon +# Inspection workbench icon Inspection Workbench/sv ## Introduction @@ -27,3 +24,6 @@ Alternatively, use the macro Inspection Workbench/sv diff --git a/wiki/translations/sv/Install_on_Linux.md b/wiki/translations/sv/Install_on_Linux.md index 692a3d14c2..f5f72a55bd 100644 --- a/wiki/translations/sv/Install_on_Linux.md +++ b/wiki/translations/sv/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/sv 1. REDIRECT [Installing\_on\_Linux/sv](Installing_on_Linux/sv.md) + +--- +[documentation index](../README.md) > Install on Linux/sv diff --git a/wiki/translations/sv/Install_on_Mac.md b/wiki/translations/sv/Install_on_Mac.md index 5da49f099a..4ee19e79ab 100644 --- a/wiki/translations/sv/Install_on_Mac.md +++ b/wiki/translations/sv/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/sv 1. REDIRECT [Installing\_on\_Mac/sv](Installing_on_Mac/sv.md) + +--- +[documentation index](../README.md) > Install on Mac/sv diff --git a/wiki/translations/sv/Install_on_Unix.md b/wiki/translations/sv/Install_on_Unix.md index 215ae5745d..0fca6df542 100644 --- a/wiki/translations/sv/Install_on_Unix.md +++ b/wiki/translations/sv/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/sv 1. REDIRECT [Installing\_on\_Linux/sv](Installing_on_Linux/sv.md) + +--- +[documentation index](../README.md) > Install on Unix/sv diff --git a/wiki/translations/sv/Install_on_Windows.md b/wiki/translations/sv/Install_on_Windows.md index 715c972a25..3c4bf6f452 100644 --- a/wiki/translations/sv/Install_on_Windows.md +++ b/wiki/translations/sv/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/sv 1. REDIRECT [Installing\_on\_Windows/sv](Installing_on_Windows/sv.md) + +--- +[documentation index](../README.md) > Install on Windows/sv diff --git a/wiki/translations/sv/Installing.md b/wiki/translations/sv/Installing.md index ad170ae78f..b3e6d510f8 100644 --- a/wiki/translations/sv/Installing.md +++ b/wiki/translations/sv/Installing.md @@ -1,2 +1,5 @@ # Installing/sv 1. REDIRECT [Installing\_additional\_components/sv](Installing_additional_components/sv.md) + +--- +[documentation index](../README.md) > Installing/sv diff --git a/wiki/translations/sv/Installing_additional_components.md b/wiki/translations/sv/Installing_additional_components.md index 024cf4c58c..0b33145c9c 100644 --- a/wiki/translations/sv/Installing_additional_components.md +++ b/wiki/translations/sv/Installing_additional_components.md @@ -1,10 +1,4 @@ # Installing additional components/sv - - - - - - {{TOCright}} # Introduction @@ -129,3 +123,6 @@ The [ODA File Converter](https://www.opendesign.com/guestfiles/oda_file_converte
[Category:User Documentation/sv](Category:User_Documentation/sv.md) + +--- +[documentation index](../README.md) > Installing additional components/sv diff --git a/wiki/translations/sv/Installing_more_workbenches.md b/wiki/translations/sv/Installing_more_workbenches.md index 0e6ebb7dfa..454343a536 100644 --- a/wiki/translations/sv/Installing_more_workbenches.md +++ b/wiki/translations/sv/Installing_more_workbenches.md @@ -1,6 +1,4 @@ # Installing more workbenches/sv - - ## Introduction Since v0.17 it is easy to add [external workbenches](external_workbenches.md) by using the [Addon Manager](Std_AddonMgr.md). A regular user doesn\'t need to do more than use this tool. @@ -48,3 +46,6 @@ See also a detailed description in the page [how to install additional workbench }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Installing more workbenches/sv diff --git a/wiki/translations/sv/Installing_on_Linux.md b/wiki/translations/sv/Installing_on_Linux.md index 4fdb7092cf..8a11e9872f 100644 --- a/wiki/translations/sv/Installing_on_Linux.md +++ b/wiki/translations/sv/Installing_on_Linux.md @@ -1,9 +1,4 @@ # Installing on Linux/sv - - - - - ## Overview @@ -377,3 +372,6 @@ Once you\'ve got FreeCAD installed, it\'s time to [get started](Getting_started. [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/sv diff --git a/wiki/translations/sv/Installing_on_Mac.md b/wiki/translations/sv/Installing_on_Mac.md index 0e575d89d3..1c5038cedf 100644 --- a/wiki/translations/sv/Installing_on_Mac.md +++ b/wiki/translations/sv/Installing_on_Mac.md @@ -1,10 +1,4 @@ # Installing on Mac/sv - - - - - -
FreeCAD kan installeras på Mac OS X i ett steg genom att använda Installeraren. Denna sida beskriver användandet och funktionerna i FreeCAD installeraren. Den inkluderar också avinstallations instruktioner. @@ -73,5 +67,5 @@ Det är allt. Eventuellt så kommer FreeCAD att finnas tillgängligt som ett app
- - +--- +[documentation index](../README.md) > Installing on Mac/sv diff --git a/wiki/translations/sv/Installing_on_Windows.md b/wiki/translations/sv/Installing_on_Windows.md index 3ceed86999..4d1cf546ec 100644 --- a/wiki/translations/sv/Installing_on_Windows.md +++ b/wiki/translations/sv/Installing_on_Windows.md @@ -1,9 +1,4 @@ # Installing on Windows/sv - - - - - The easiest way to install FreeCAD on Windows is to download the installer below. {{DownloadWindowsStable}} Det lättaste sättet att **installera FreeCAD på Windows** är genom att använda installeraren. Denna sida beskriver hur man använder den och egenskaperna av *Microsoft Installeraren* för mer installationsalternativ. ### Enkel Installation @@ -239,5 +234,5 @@ FreeCAD is running, but it has been reported that the OpenGL display does not wo
- - +--- +[documentation index](../README.md) > Installing on Windows/sv diff --git a/wiki/translations/sv/Interface_Customization.md b/wiki/translations/sv/Interface_Customization.md index 2f56de685c..94e1e071ed 100644 --- a/wiki/translations/sv/Interface_Customization.md +++ b/wiki/translations/sv/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/sv - - - - - - {{TOCright}} ## Introduction @@ -305,4 +299,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/sv diff --git a/wiki/translations/sv/Introduction_to_Python.md b/wiki/translations/sv/Introduction_to_Python.md index 9e38fa254f..c3385c3eac 100644 --- a/wiki/translations/sv/Introduction_to_Python.md +++ b/wiki/translations/sv/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/sv - - - {{TOCright}} ## Introduction @@ -501,3 +498,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/sv diff --git a/wiki/translations/sv/Licence.md b/wiki/translations/sv/Licence.md index fe1b72bf7b..f811da7be5 100644 --- a/wiki/translations/sv/Licence.md +++ b/wiki/translations/sv/Licence.md @@ -1,10 +1,4 @@ # Licence/sv - - - - - - {{TOCright}} @@ -142,3 +136,6 @@ Detta beslut är ändå bara gjort för FreeCAD\'s kärnsystem. Var och en som s [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Licence/sv diff --git a/wiki/translations/sv/Line_drawing_function.md b/wiki/translations/sv/Line_drawing_function.md index 266fb07c70..59eda818aa 100644 --- a/wiki/translations/sv/Line_drawing_function.md +++ b/wiki/translations/sv/Line_drawing_function.md @@ -1,7 +1,4 @@ # Line drawing function/sv - - - {{TOCright}} ## Introduction @@ -467,3 +464,6 @@ Tveka inte att skriva dina frågor eller ideer på [forum](http://forum.freecadw Don\'t hesitate to ask questions or share ideas on the [forum](https://forum.freecadweb.org/)! {{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Line drawing function/sv diff --git a/wiki/translations/sv/List_of_Commands.md b/wiki/translations/sv/List_of_Commands.md index abacca8795..865299922a 100644 --- a/wiki/translations/sv/List_of_Commands.md +++ b/wiki/translations/sv/List_of_Commands.md @@ -1,2 +1,5 @@ # List of Commands/sv 1. REDIRECT [:Category:Command Reference/sv](:Category:Command_Reference/sv.md) + +--- +[documentation index](../README.md) > List of Commands/sv diff --git a/wiki/translations/sv/Localisation.md b/wiki/translations/sv/Localisation.md index cd6e71f2af..b54cf39c38 100644 --- a/wiki/translations/sv/Localisation.md +++ b/wiki/translations/sv/Localisation.md @@ -1,10 +1,4 @@ # Localisation/sv - - - - - - {{TOCright}} @@ -302,3 +296,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/sv diff --git a/wiki/translations/sv/Macro_ArrayCopy.md b/wiki/translations/sv/Macro_ArrayCopy.md index bc1c5f6f79..0d22aac1da 100644 --- a/wiki/translations/sv/Macro_ArrayCopy.md +++ b/wiki/translations/sv/Macro_ArrayCopy.md @@ -1,5 +1,5 @@ # Macro ArrayCopy/sv - {{Macro/sv +{{Macro/sv |Name=ArrayCopy |Icon=Macro_ArrayCopy.png |Translate=ArrayCopy @@ -84,3 +84,5 @@ dialog.show() }} +--- +[documentation index](../README.md) > Macro ArrayCopy/sv diff --git a/wiki/translations/sv/Macro_Draw_2D_Function.md b/wiki/translations/sv/Macro_Draw_2D_Function.md index a2fbfe2fe1..8c81d76db1 100644 --- a/wiki/translations/sv/Macro_Draw_2D_Function.md +++ b/wiki/translations/sv/Macro_Draw_2D_Function.md @@ -1,5 +1,5 @@ # Macro Draw 2D Function/sv - {{Macro/sv +{{Macro/sv |Name=Draw 2D Function |Translate=Rita 2D-funktionen |Icon=Macro_Draw_2D_Function.png @@ -65,3 +65,5 @@ Part.show(WWire) }} +--- +[documentation index](../README.md) > Macro Draw 2D Function/sv diff --git a/wiki/translations/sv/Macro_FCInfo.md b/wiki/translations/sv/Macro_FCInfo.md index e882eeb76f..497dd15c3e 100644 --- a/wiki/translations/sv/Macro_FCInfo.md +++ b/wiki/translations/sv/Macro_FCInfo.md @@ -1,5 +1,5 @@ # Macro FCInfo/sv - {{Macro/sv +{{Macro/sv |Name=Macro FCInfo |Icon=FCInfo.png |Translate=Macro FCInfo @@ -335,6 +335,5 @@ Se även [Arch Survey](Arch_Survey/sv.md) Arch Survey Macro FCInfo/sv diff --git a/wiki/translations/sv/Macro_FlattenWire.md b/wiki/translations/sv/Macro_FlattenWire.md index ea7566202d..6cc4cfa660 100644 --- a/wiki/translations/sv/Macro_FlattenWire.md +++ b/wiki/translations/sv/Macro_FlattenWire.md @@ -1,5 +1,5 @@ # Macro FlattenWire/sv - {{Macro/sv +{{Macro/sv |Name=FlattenWire |Translate=FlattenWire |Icon=Macro_FlattenWire.png @@ -35,6 +35,5 @@ obj.Points = newppoints }} - - - +--- +[documentation index](../README.md) > Macro FlattenWire/sv diff --git a/wiki/translations/sv/Macro_JointWire.md b/wiki/translations/sv/Macro_JointWire.md index 55d6336d98..a82b92dd9d 100644 --- a/wiki/translations/sv/Macro_JointWire.md +++ b/wiki/translations/sv/Macro_JointWire.md @@ -1,5 +1,5 @@ # Macro JointWire/sv - **!!! This macro needs to be corrected. !!!** +**!!! This macro needs to be corrected. !!!** {{Macro/sv @@ -91,6 +91,5 @@ ToolBar Icon ![](images/Macro_JointWire.png ) }} - - - +--- +[documentation index](../README.md) > Macro JointWire/sv diff --git a/wiki/translations/sv/Macro_MeshToPart.md b/wiki/translations/sv/Macro_MeshToPart.md index 8f68860cf4..e4077a846d 100644 --- a/wiki/translations/sv/Macro_MeshToPart.md +++ b/wiki/translations/sv/Macro_MeshToPart.md @@ -1,5 +1,5 @@ # Macro MeshToPart/sv - {{Macro/sv +{{Macro/sv |Name=MeshToPart |Translate=MeshToPart |Icon=Macro_MeshToPart.png @@ -65,3 +65,6 @@ for obj in FreeCADGui.Selection.getSelection(): ## Länk Diskussionen på forumet [Convert mesh to solid?](http://forum.freecadweb.org/viewtopic.php?f=3&t=253&hilit=getPlanarSegments) + +--- +[documentation index](../README.md) > Macro MeshToPart/sv diff --git a/wiki/translations/sv/Macro_Rotate_View.md b/wiki/translations/sv/Macro_Rotate_View.md index c6d86398cc..5920fdc682 100644 --- a/wiki/translations/sv/Macro_Rotate_View.md +++ b/wiki/translations/sv/Macro_Rotate_View.md @@ -1,7 +1,4 @@ # Macro Rotate View/sv - - -
@@ -52,6 +49,5 @@ nrot = cam.orientation.getValue() * rot cam.orientation = nrot }} - - - +--- +[documentation index](../README.md) > Macro Rotate View/sv diff --git a/wiki/translations/sv/Macros.md b/wiki/translations/sv/Macros.md index 16b56fb915..28e5951b70 100644 --- a/wiki/translations/sv/Macros.md +++ b/wiki/translations/sv/Macros.md @@ -1,7 +1,4 @@ # Macros/sv - - - {{TOCright}} ## Introduction @@ -138,3 +135,6 @@ You can manually install extensions, however, it is much simpler to just use the }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/sv diff --git a/wiki/translations/sv/Main_Page.md b/wiki/translations/sv/Main_Page.md index 8ae2568132..2946badcb4 100644 --- a/wiki/translations/sv/Main_Page.md +++ b/wiki/translations/sv/Main_Page.md @@ -1,6 +1,4 @@ # Main Page/sv - - ## Introduction This is the documentation wiki of [FreeCAD](http://www.freecadweb.org). There are several ways to use this documentation: by exploring the hubs, by following the manual, or by using the Help menu entries from within FreeCAD. This is a work in progress, written by the community of users and developers of FreeCAD. If you find information that is wrong or missing, please [help FreeCAD](Special:MyLanguage/help_FreeCAD.md)! @@ -85,3 +83,6 @@ Titta på [Development roadmap](Development_roadmap.md) för nyheter om vad som [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/sv diff --git a/wiki/translations/sv/Manipulator.md b/wiki/translations/sv/Manipulator.md index 85837f278d..1203cef122 100644 --- a/wiki/translations/sv/Manipulator.md +++ b/wiki/translations/sv/Manipulator.md @@ -1,5 +1,5 @@ # Manipulator/sv - } +}
@@ -17,3 +17,6 @@ En **manipulator** är ett handtag som kan användas till att förändra ett obj [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Glossary](Category:Glossary.md) > Manipulator/sv diff --git a/wiki/translations/sv/Manual.md b/wiki/translations/sv/Manual.md index 5953323f2e..dbd15ce37d 100644 --- a/wiki/translations/sv/Manual.md +++ b/wiki/translations/sv/Manual.md @@ -1,2 +1,5 @@ # Manual/sv 1. Redirect:[Manual:Introduction](Manual:Introduction.md) + +--- +[documentation index](../README.md) > Manual/sv diff --git a/wiki/translations/sv/Mesh_Module.md b/wiki/translations/sv/Mesh_Module.md index 104232e158..7fb292a739 100644 --- a/wiki/translations/sv/Mesh_Module.md +++ b/wiki/translations/sv/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/sv 1. REDIRECT [Mesh Workbench/sv](Mesh_Workbench/sv.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/sv diff --git a/wiki/translations/sv/Mesh_Scripting.md b/wiki/translations/sv/Mesh_Scripting.md index 264a1b256f..2eacaeacac 100644 --- a/wiki/translations/sv/Mesh_Scripting.md +++ b/wiki/translations/sv/Mesh_Scripting.md @@ -1,7 +1,4 @@ # Mesh Scripting/sv - - - {{TOCright}} @@ -160,3 +157,6 @@ An extensive, though hard to use, source of mesh related scripting are the unit See also: [Mesh API](Mesh_API.md). {{Top}} {{Powerdocnavi}} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scripting/sv diff --git a/wiki/translations/sv/Mesh_Workbench.md b/wiki/translations/sv/Mesh_Workbench.md index 6aa1aaa2dd..ebfc96c4f4 100644 --- a/wiki/translations/sv/Mesh_Workbench.md +++ b/wiki/translations/sv/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/sv - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench/sv {{TOCright}} @@ -158,3 +152,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/sv diff --git a/wiki/translations/sv/Mesh_to_Part.md b/wiki/translations/sv/Mesh_to_Part.md index 5ea7879975..c7767222c5 100644 --- a/wiki/translations/sv/Mesh_to_Part.md +++ b/wiki/translations/sv/Mesh_to_Part.md @@ -1,7 +1,4 @@ # Mesh to Part/sv - - - {{TOCright}} @@ -152,3 +149,6 @@ Part.show(solid) }} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh to Part/sv diff --git a/wiki/translations/sv/Module_Creation.md b/wiki/translations/sv/Module_Creation.md index e1aafd099a..b8dcd7e1ab 100644 --- a/wiki/translations/sv/Module_Creation.md +++ b/wiki/translations/sv/Module_Creation.md @@ -1,2 +1,5 @@ # Module Creation/sv 1. REDIRECT [Workbench\_creation](Workbench_creation.md) + +--- +[documentation index](../README.md) > Module Creation/sv diff --git a/wiki/translations/sv/Mouse_Model.md b/wiki/translations/sv/Mouse_Model.md index 484d91c5dc..8a148eb067 100644 --- a/wiki/translations/sv/Mouse_Model.md +++ b/wiki/translations/sv/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/sv 1. REDIRECT [Mouse\_navigation/sv](Mouse_navigation/sv.md) + +--- +[documentation index](../README.md) > Mouse Model/sv diff --git a/wiki/translations/sv/Mouse_navigation.md b/wiki/translations/sv/Mouse_navigation.md index 3298dd0602..4636aa0356 100644 --- a/wiki/translations/sv/Mouse_navigation.md +++ b/wiki/translations/sv/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/sv - - - - - - {{TOCright}} ## Overview @@ -430,5 +424,5 @@ The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mous {{docnav/sv|Getting started/sv|Document structure/sv}} - - +--- +[documentation index](../README.md) > Mouse navigation/sv diff --git a/wiki/translations/sv/Online_Help_Startpage.md b/wiki/translations/sv/Online_Help_Startpage.md index adbbca9671..8f6179ff48 100644 --- a/wiki/translations/sv/Online_Help_Startpage.md +++ b/wiki/translations/sv/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/sv - - ![150](images/Crystal_Clear_app_tutorials.png ) ## Välkommen till FreeCAD on-line hjälp @@ -46,3 +44,6 @@ Som du kanske märkt tidigare, så är programmerare riktigt dåliga manualskriv [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/sv diff --git a/wiki/translations/sv/Online_Help_Toc.md b/wiki/translations/sv/Online_Help_Toc.md index 462af5c833..297ea0a835 100644 --- a/wiki/translations/sv/Online_Help_Toc.md +++ b/wiki/translations/sv/Online_Help_Toc.md @@ -1,7 +1,4 @@ # Online Help Toc/sv - - -
Här är innehållslistan för On-line Hjälpsystemet i FreeCAD. De artiklar som refereras här inkluderas automatiskt i FreeCAD.chm filen med verktyget wiki2chm.py. Du hittar det verktyget under src/Tools/wiki2chm.py. En [utskrivningsbar version](Manual/sv.md) av denna manual finns också. @@ -168,3 +165,6 @@ There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction. [Category:Documentation/sv](Category:Documentation/sv.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/sv diff --git a/wiki/translations/sv/OpenSCAD_Module.md b/wiki/translations/sv/OpenSCAD_Module.md index 8ef5e1bb2b..dd0c55fcaf 100644 --- a/wiki/translations/sv/OpenSCAD_Module.md +++ b/wiki/translations/sv/OpenSCAD_Module.md @@ -1,2 +1,5 @@ # OpenSCAD Module/sv 1. REDIRECT [OpenSCAD\_Workbench/sv](OpenSCAD_Workbench/sv.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Module/sv diff --git a/wiki/translations/sv/OpenSCAD_Workbench.md b/wiki/translations/sv/OpenSCAD_Workbench.md index 2a4293e135..17d13b6cfc 100644 --- a/wiki/translations/sv/OpenSCAD_Workbench.md +++ b/wiki/translations/sv/OpenSCAD_Workbench.md @@ -1,10 +1,4 @@ -# OpenSCAD Workbench/sv - - - - - -OpenSCAD workbench icon +# OpenSCAD workbench icon OpenSCAD Workbench/sv ## Introduction @@ -108,3 +102,6 @@ If FreeCAD crashes when importing CSG, it is strongly recommended that you enabl }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/sv diff --git a/wiki/translations/sv/PartDesign_Legacy.md b/wiki/translations/sv/PartDesign_Legacy.md index 2b8672021d..dc7dd1eae5 100644 --- a/wiki/translations/sv/PartDesign_Legacy.md +++ b/wiki/translations/sv/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/sv 1. REDIRECT [PartDesign\_Workbench/sv](PartDesign_Workbench/sv.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/sv diff --git a/wiki/translations/sv/PartDesign_Workbench.md b/wiki/translations/sv/PartDesign_Workbench.md index 0bad70d1d8..739f702dfa 100644 --- a/wiki/translations/sv/PartDesign_Workbench.md +++ b/wiki/translations/sv/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/sv - - -PartDesign workbench icon +# PartDesign workbench icon PartDesign Workbench/sv {{TOCright}} @@ -217,3 +214,6 @@ Some additional functionality found in the Part Design menu: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/sv diff --git a/wiki/translations/sv/Part_Boolean.md b/wiki/translations/sv/Part_Boolean.md index f96068a685..439317af6c 100644 --- a/wiki/translations/sv/Part_Boolean.md +++ b/wiki/translations/sv/Part_Boolean.md @@ -1,3 +1,4 @@ +# Part Boolean/sv --- - GuiCommand:/sv Name:Part_Booleans Name/sv:Booleans MenuLocation:Part → Booleans Workbenches:Del, Komplett SeeAlso:[Union](Part_Union/sv.md), [Common](Part_Common/sv.md) and [Cut](Part_Cut/sv.md)--- @@ -66,8 +67,5 @@ In cases of coplanarity, even if the first boolean operation succeeds, subsequen *Left: shapes that share a face, a boolean union may produce incorrect results. Right: shapes that intersect each other clearly, the boolean union will be successful in most cases.* - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Boolean/sv diff --git a/wiki/translations/sv/Part_Box.md b/wiki/translations/sv/Part_Box.md index 65027f49c9..9b01632c1c 100644 --- a/wiki/translations/sv/Part_Box.md +++ b/wiki/translations/sv/Part_Box.md @@ -1,3 +1,4 @@ +# Part Box/sv --- - GuiCommand:/sv Name:Part Box MenuLocation:Part → Box |Workbenches:[SeeAlso:[[Part_CreatePrimitives|Part CreatePrimitives](Part_Workbench___Part]],_Complete.md)--- @@ -63,8 +64,5 @@ You can change its placement with: FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6, 3), FreeCAD.Rotation(30, 45, 10)) ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Box/sv diff --git a/wiki/translations/sv/Part_Builder.md b/wiki/translations/sv/Part_Builder.md index 2c5e548d01..918958cd56 100644 --- a/wiki/translations/sv/Part_Builder.md +++ b/wiki/translations/sv/Part_Builder.md @@ -1,3 +1,4 @@ +# Part Builder/sv --- - GuiCommand:/sv Name:Part Shapebuilder Name/sv:Part Shapebuilder MenuLocation:Part -> Shapebuilder... |Workbenches:[SeeAlso:[[Part_CreatePrimitives/sv|Part CreatePrimitives](Part_Workbench/sv___Part]].md)--- @@ -67,8 +68,5 @@ A possible workflow could be: - Create a \"shell from faces\" - Create a \"solid from shell\" - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Builder/sv diff --git a/wiki/translations/sv/Part_Chamfer.md b/wiki/translations/sv/Part_Chamfer.md index dd9b5b79e7..a2885bbe7f 100644 --- a/wiki/translations/sv/Part_Chamfer.md +++ b/wiki/translations/sv/Part_Chamfer.md @@ -1,3 +1,4 @@ +# Part Chamfer/sv --- - GuiCommand:/sv Name:Part Chamfer Name/sv:Part Chamfer MenuLocation:Part → Chamfer Workbenches:[[Part_Workbench/sv Part]], Complete|SeeAlso:--- @@ -148,8 +149,5 @@ FreeCAD.ActiveDocument.recompute() - Recomputes all altered components on the screen and refreshes the display. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Chamfer/sv diff --git a/wiki/translations/sv/Part_Common.md b/wiki/translations/sv/Part_Common.md index 2160a0b0eb..20aba4fd69 100644 --- a/wiki/translations/sv/Part_Common.md +++ b/wiki/translations/sv/Part_Common.md @@ -1,3 +1,4 @@ +# Part Common/sv --- - GuiCommand:/sv Name:Part_Common Workbenches:Del,Komplett--- @@ -17,8 +18,5 @@ Tar ut den gemensamma delen (skärningen) mellan valda Del objekt. Denna operati Input objects must be [OpenCascade](OpenCascade.md) shapes. Examples: stuff made with Part, PartDesign, Sketcher workbenches. Not meshes (unless those were converted to shapes) - for meshes, there are specific Boolean tools in MeshDesign workbench. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Common/sv diff --git a/wiki/translations/sv/Part_Cone.md b/wiki/translations/sv/Part_Cone.md index d0dc39b3d3..176ff62b32 100644 --- a/wiki/translations/sv/Part_Cone.md +++ b/wiki/translations/sv/Part_Cone.md @@ -1,3 +1,4 @@ +# Part Cone/sv --- - GuiCommand:/sv Name:Part Cone Name/sv:Part Cone MenuLocation:Part -> Cone Workbenches:[SeeAlso:[[Part_CreatePrimitives/sv|Part CreatePrimitives](Part_Workbench/sv___Part]],_Complete.md)--- @@ -32,8 +33,5 @@ The cone properties can later be edited, either in the [Property editor](Propert - **Angle**: Number of degrees of the arc or circles defining the upper and lower faces of the truncated cone. The default 360° creates circular faces, a lower value will create a portion of a cone as defined by upper and lower faces each with edges defined by an arc of the number of degrees and two radii. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cone/sv diff --git a/wiki/translations/sv/Part_CreatePrimitives.md b/wiki/translations/sv/Part_CreatePrimitives.md index a8b4b28ca0..779251af4b 100644 --- a/wiki/translations/sv/Part_CreatePrimitives.md +++ b/wiki/translations/sv/Part_CreatePrimitives.md @@ -1,2 +1,5 @@ # Part CreatePrimitives/sv 1. REDIRECT [Part\_Primitives/sv](Part_Primitives/sv.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CreatePrimitives/sv diff --git a/wiki/translations/sv/Part_Cut.md b/wiki/translations/sv/Part_Cut.md index a75187b4c8..bd9ea27caa 100644 --- a/wiki/translations/sv/Part_Cut.md +++ b/wiki/translations/sv/Part_Cut.md @@ -1,3 +1,4 @@ +# Part Cut/sv --- - GuiCommand:/sv Name:Part_Cut Name/sv:Part Cut MenuLocation:Part → Cut Workbenches:[Komplett](Part_Workbench/sv___Del]],[[Complete_Workbench/sv.md)|SeeAlso:[Union](Part_Union/sv.md), [Common](Part_Common/sv.md)--- @@ -29,8 +30,5 @@ Cuts (subtracts) selected Part objects, the last one being subtracted from the f Input objects must be [OpenCascade](OpenCascade.md) shapes. Examples: stuff made with Part, PartDesign, Sketcher workbenches. Not meshes (unless those were converted to shapes) - for meshes, there are specific Boolean tools in MeshDesign workbench. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cut/sv diff --git a/wiki/translations/sv/Part_Cylinder.md b/wiki/translations/sv/Part_Cylinder.md index cf0f009dbe..b5acd84f43 100644 --- a/wiki/translations/sv/Part_Cylinder.md +++ b/wiki/translations/sv/Part_Cylinder.md @@ -1,3 +1,4 @@ +# Part Cylinder/sv --- - GuiCommand:/sv Name:Part Cylinder Name/sv:Part Cylinder MenuLocation:Part → Cylinder |Workbenches:[SeeAlso:[[Part CreatePrimitives/sv|Part CreatePrimitives](Part_Workbench/sv___Part]],_Complete.md)--- @@ -31,10 +32,7 @@ The cylinder properties can later be edited, either in the [Property editor](Pro - **First Angle**: Angle in first direction. (v0.20) -- **Second Angle**: Angle in second direction. (v0.20) +- **Second Angle**: Angle in second direction. (v0.20) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cylinder/sv diff --git a/wiki/translations/sv/Part_Extrude.md b/wiki/translations/sv/Part_Extrude.md index 184c5bd182..a036d7b7c7 100644 --- a/wiki/translations/sv/Part_Extrude.md +++ b/wiki/translations/sv/Part_Extrude.md @@ -1,3 +1,4 @@ +# Part Extrude/sv --- - GuiCommand:/sv Name:Part_Extrude Workbenches:[Part](Part_Workbench/sv.md),Komplett--- @@ -116,8 +117,5 @@ Part Extrude doesn\'t care where it is in model tree. PartDesign Pad can only li Part Extrude can extrude any object that has Part Geometry (OCC shape), except for solids and compsolids. And it can\'t extrude individual faces of other objects. PartDesign Pad will only accept a Sketch as a profile (and a small selection of other object types), or a face of a solid. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Extrude/sv diff --git a/wiki/translations/sv/Part_Fillet.md b/wiki/translations/sv/Part_Fillet.md index ee2a612555..43233ed67d 100644 --- a/wiki/translations/sv/Part_Fillet.md +++ b/wiki/translations/sv/Part_Fillet.md @@ -1,3 +1,4 @@ +# Part Fillet/sv --- - GuiCommand:/sv Name:Part_Fillet Workbenches:Part,Complete--- @@ -38,8 +39,5 @@ The fillet tool sometimes fails when trying to fillet complex objects. A common Also note that the part Fillet feature is affected by the [Topological naming problem](Topological_naming_problem.md) when the any change is done to a modeling step earlier in the chain that affects the number of facets or vertices. This could cause unpredictable result. Until that is resolved (possibly with V0.19) it is advised to apply Chamfer and [Fillet](Part_Fillet.md) operations at the last steps in the chain. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fillet/sv diff --git a/wiki/translations/sv/Part_Fuse.md b/wiki/translations/sv/Part_Fuse.md index 9badd33585..68afe9c2a7 100644 --- a/wiki/translations/sv/Part_Fuse.md +++ b/wiki/translations/sv/Part_Fuse.md @@ -7,6 +7,8 @@ SeeAlso:[Part Cut](Part_Cut/sv.md), [Part Common](Part_Common/sv.md) --- +# Part Fuse/sv +
@@ -41,8 +43,5 @@ Items can be added and removed from the fusion, by dragging them in or out of th After this operation is complete, it may be necessary to clean up the shape with [RefineShape](Part_RefineShape.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Fuse/sv diff --git a/wiki/translations/sv/Part_Mirror.md b/wiki/translations/sv/Part_Mirror.md index aa11fa3864..725dfc5a8c 100644 --- a/wiki/translations/sv/Part_Mirror.md +++ b/wiki/translations/sv/Part_Mirror.md @@ -1,3 +1,4 @@ +# Part Mirror/sv --- - GuiCommand:/sv Name:Part Mirror Name/sv:Part Mirror MenuLocation:Part -> Mirror/sv Workbenches:[[Part Workbench/sv Part]], Complete|SeeAlso:--- @@ -48,8 +49,5 @@ The **Base point** boxes can be used to move the mirror plane parallel to the se - Arbitrary mirror planes (ie not parallel to a standard plane) are not supported. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Mirror/sv diff --git a/wiki/translations/sv/Part_Module.md b/wiki/translations/sv/Part_Module.md index b082ef6662..69b66ee577 100644 --- a/wiki/translations/sv/Part_Module.md +++ b/wiki/translations/sv/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/sv - - - - - -Part workbench icon +# Part workbench icon Part Module/sv {{TOCright}} @@ -291,3 +285,6 @@ See [Part scripting](Part_scripting.md). [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/sv diff --git a/wiki/translations/sv/Part_Primitives.md b/wiki/translations/sv/Part_Primitives.md index f9ce946dcd..3e04ba3f6e 100644 --- a/wiki/translations/sv/Part_Primitives.md +++ b/wiki/translations/sv/Part_Primitives.md @@ -1,3 +1,4 @@ +# Part Primitives/sv --- - GuiCommand:/sv Name:Part_CreatePrimitives Name/sv:Part CreatePrimitives MenuLocation:Part -> CreatePrimitives... |Workbenches:[SeeAlso:[[Part_Shapebuilder/sv|Part Shapebuilder](Part_Workbench/sv___Part]].md)--- @@ -82,8 +83,5 @@ It can be used as input to the program as well. freecad $INSTALL_DIR/Mod/Part/parttests/part_test_objects.py ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Primitives/sv diff --git a/wiki/translations/sv/Part_RefineShape.md b/wiki/translations/sv/Part_RefineShape.md index f7583670cb..d6a3c011e7 100644 --- a/wiki/translations/sv/Part_RefineShape.md +++ b/wiki/translations/sv/Part_RefineShape.md @@ -1,3 +1,4 @@ +# Part RefineShape/sv --- - GuiCommand:/sv Name:Part RefineShape Name/sv:Part RefineShape MenuLocation:Part → Refine Shape Workbenches:[OpenSCAD](Part_Workbench/sv___Part]],_[[OpenSCAD_Workbench/sv.md)|SeeAlso:--- @@ -59,8 +60,5 @@ The Python command for refining a shape is the following: shape.removeSplitter() ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part RefineShape/sv diff --git a/wiki/translations/sv/Part_Revolve.md b/wiki/translations/sv/Part_Revolve.md index 70de26d307..87fd7a4019 100644 --- a/wiki/translations/sv/Part_Revolve.md +++ b/wiki/translations/sv/Part_Revolve.md @@ -1,3 +1,4 @@ +# Part Revolve/sv --- - GuiCommand:/sv Name:Part Revolve Name/sv:Part Revolve/sv MenuLocation:Part → Revolve Workbenches:[[Part_Workbench/sv Part]], Complete|SeeAlso:--- @@ -35,8 +36,5 @@ If you select a user defined axis, the numbers define the direction of the revol - If your version of FreeCAD has a check box for Solid in the Revolve dialog, you can make Solids from closed Wires and Edges. - If Revolve is performed using an axis that intersects the face to rotate, and you want to create a solid, the result might be invalid. This can happen for various reasons, self-intersection, direction, etc. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Revolve/sv diff --git a/wiki/translations/sv/Part_Section.md b/wiki/translations/sv/Part_Section.md index f007369007..8fdc0dd8d6 100644 --- a/wiki/translations/sv/Part_Section.md +++ b/wiki/translations/sv/Part_Section.md @@ -1,3 +1,4 @@ +# Part Section/sv --- - GuiCommand:/sv Name:Part Section Name/sv:Part Section MenuLocation:Part → Section Workbenches:[[Part_Workbench/sv Part]], Complete|SeeAlso:--- @@ -28,8 +29,5 @@ In this example, a cube is sectioned with a cylinder: To create sections with a section plane see [Cross-sections](Part_CrossSections.md). - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Section/sv diff --git a/wiki/translations/sv/Part_Shapebuilder.md b/wiki/translations/sv/Part_Shapebuilder.md index 5c0c2b0be1..d97678e5fb 100644 --- a/wiki/translations/sv/Part_Shapebuilder.md +++ b/wiki/translations/sv/Part_Shapebuilder.md @@ -1,2 +1,5 @@ # Part Shapebuilder/sv 1. REDIRECT [Part\_Builder/sv](Part_Builder/sv.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Shapebuilder/sv diff --git a/wiki/translations/sv/Part_Sphere.md b/wiki/translations/sv/Part_Sphere.md index e0c627697d..f3cc2905b2 100644 --- a/wiki/translations/sv/Part_Sphere.md +++ b/wiki/translations/sv/Part_Sphere.md @@ -1,3 +1,4 @@ +# Part Sphere/sv --- - GuiCommand:/sv Name:Part Sphere Name/sv:Part Sphere MenuLocation:Part -> Sphere |Workbenches:[SeeAlso:[[Part_CreatePrimitives/sv|Part_CreatePrimitives](Part_Workbench/sv___Part_Module]],Complete.md)--- @@ -40,8 +41,5 @@ Because it is quite difficult to explain the meaning of the parameters angle 1, - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sphere/sv diff --git a/wiki/translations/sv/Part_Torus.md b/wiki/translations/sv/Part_Torus.md index 2eae2cc8d0..33044392c6 100644 --- a/wiki/translations/sv/Part_Torus.md +++ b/wiki/translations/sv/Part_Torus.md @@ -1,3 +1,4 @@ +# Part Torus/sv --- - GuiCommand:/sv Name:Part Torus Name/sv:Part Torus MenuLocation:Part -> Torus |Workbenches:[SeeAlso:[[Part_CreatePrimitives/sv|Part_CreatePrimitives](Part_Workbench/sv___Part_Module]],Complete.md)--- @@ -48,10 +49,7 @@ as well as the standard set of placement parameters. The pictures below give a v ![](images/TorusExampleAngle2.jpg ) The parameter Angle2 has a value of 90°. -![](images/TorusExampleAngle3.jpg ) The parameter Angle3 has a value of 90°. +![](images/TorusExampleAngle3.jpg ) The parameter Angle3 has a value of 90°. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Torus/sv diff --git a/wiki/translations/sv/Part_Union.md b/wiki/translations/sv/Part_Union.md index 59b956ea09..f03ca620af 100644 --- a/wiki/translations/sv/Part_Union.md +++ b/wiki/translations/sv/Part_Union.md @@ -1,2 +1,5 @@ # Part Union/sv 1. REDIRECT [Part\_Fuse/sv](Part_Fuse/sv.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Union/sv diff --git a/wiki/translations/sv/Part_Workbench.md b/wiki/translations/sv/Part_Workbench.md index 8799cbd86c..c28d8f0326 100644 --- a/wiki/translations/sv/Part_Workbench.md +++ b/wiki/translations/sv/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/sv 1. REDIRECT [Part\_Module/sv](Part_Module/sv.md) + +--- +[documentation index](../README.md) > Part Workbench/sv diff --git a/wiki/translations/sv/Path_Workbench.md b/wiki/translations/sv/Path_Workbench.md index 39e1561145..291994be78 100644 --- a/wiki/translations/sv/Path_Workbench.md +++ b/wiki/translations/sv/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/sv - - - - - -Path workbench icon +# Path workbench icon Path Workbench/sv {{TOCright}} @@ -228,3 +222,6 @@ See [Path scripting](Path_scripting.md). }} [Category:User Documentation/sv](Category:User_Documentation/sv.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench/sv diff --git a/wiki/translations/sv/Pivy.md b/wiki/translations/sv/Pivy.md index ca438704f0..55ac221026 100644 --- a/wiki/translations/sv/Pivy.md +++ b/wiki/translations/sv/Pivy.md @@ -1,7 +1,4 @@ # Pivy/sv - - - {{TOCright}} ## Introduction @@ -260,3 +257,6 @@ These links provide reference documentation for Coin v3.x. The differences with }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Pivy/sv diff --git a/wiki/translations/sv/Plot_Module.md b/wiki/translations/sv/Plot_Module.md index d4ac2b0887..8d5dc97f20 100644 --- a/wiki/translations/sv/Plot_Module.md +++ b/wiki/translations/sv/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/sv - - -Plot workbench icon +# Plot workbench icon Plot Module/sv {{TOCright}} @@ -64,3 +61,6 @@ Since the Plot Workbench is a layer on top of `matplotlib`, you are free to use }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/sv diff --git a/wiki/translations/sv/Plot_Workbench.md b/wiki/translations/sv/Plot_Workbench.md index a9e1827d2d..f5532864e8 100644 --- a/wiki/translations/sv/Plot_Workbench.md +++ b/wiki/translations/sv/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/sv 1. REDIRECT [Plot\_Module/sv](Plot_Module/sv.md) + +--- +[documentation index](../README.md) > Plot Workbench/sv diff --git a/wiki/translations/sv/Points_Module.md b/wiki/translations/sv/Points_Module.md index 2dd4d7bbea..75ca20cb8a 100644 --- a/wiki/translations/sv/Points_Module.md +++ b/wiki/translations/sv/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/sv 1. REDIRECT [Points\_Workbench/sv](Points_Workbench/sv.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/sv diff --git a/wiki/translations/sv/Points_Workbench.md b/wiki/translations/sv/Points_Workbench.md index cbfda7990e..02e565a026 100644 --- a/wiki/translations/sv/Points_Workbench.md +++ b/wiki/translations/sv/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/sv - - - - - -Points workbench icon +# Points workbench icon Points Workbench/sv ## Introduction @@ -53,3 +47,6 @@ A point cloud is a collection of points in 3D space. A point cloud is generally }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/sv diff --git a/wiki/translations/sv/Power_users_hub.md b/wiki/translations/sv/Power_users_hub.md index f7d57c3027..6f12738895 100644 --- a/wiki/translations/sv/Power_users_hub.md +++ b/wiki/translations/sv/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/sv - +# Power users hub/sv ------------------------------------------------------------------------ @@ -245,3 +244,6 @@ På [Grupportalen](free-cad:Community_Portal/sv.md), så kan du hitta andra Free }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/sv diff --git a/wiki/translations/sv/Preferences_Editor.md b/wiki/translations/sv/Preferences_Editor.md index e9d3225eb3..4aec3a7211 100644 --- a/wiki/translations/sv/Preferences_Editor.md +++ b/wiki/translations/sv/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/sv - - - - - - {{TOCright}} ## Introduction @@ -775,3 +769,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/sv diff --git a/wiki/translations/sv/Project_template.md b/wiki/translations/sv/Project_template.md index 0151acccb1..e5fdd4ff42 100644 --- a/wiki/translations/sv/Project_template.md +++ b/wiki/translations/sv/Project_template.md @@ -1,5 +1,5 @@ # Project template/sv - This template is the guideline for a FreeCAD development project. It follows the rules of the [Getting Things Done (GTD)](http://en.wikipedia.org/wiki/Getting_Things_Done#Methodology) process. The projects are collected in the [Development roadmap](Development_roadmap.md). +This template is the guideline for a FreeCAD development project. It follows the rules of the [Getting Things Done (GTD)](http://en.wikipedia.org/wiki/Getting_Things_Done#Methodology) process. The projects are collected in the [Development roadmap](Development_roadmap.md). *Lets start by looking at the Natural Planning Model. The Natural Planning Model really is nothing new. It is not some fantastic new model devised by David Allen to help us plan and manage our projects. it is however, the planning model that is recommended by David in his Getting Things Done book. The Natural Planning Model is based upon the planning that we do on a daily basis, using just our brains. For example, think of how many tasks we plan on a day by day basis that we do not even bother to write down as these are normally classed as mundane tasks. For example, getting dressed, or driving to work. All of these can be thought of tasks but we just go ahead and plan them without any thought whatsoever. We utilize the planning aspects of our brain that are conditioned for this natural type of planning.* @@ -28,3 +28,6 @@ [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Project template/sv diff --git a/wiki/translations/sv/Property.md b/wiki/translations/sv/Property.md index 536faf06b4..f83f3f45db 100644 --- a/wiki/translations/sv/Property.md +++ b/wiki/translations/sv/Property.md @@ -1,6 +1,4 @@ # Property/sv - - ## Introduction @@ -122,3 +120,6 @@ They are imported and initialized in `[https://github.com/FreeCAD/FreeCAD/blob/9 }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/sv diff --git a/wiki/translations/sv/Property_editor.md b/wiki/translations/sv/Property_editor.md index 2bf9381450..890902ff68 100644 --- a/wiki/translations/sv/Property_editor.md +++ b/wiki/translations/sv/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/sv - - - - - - {{TOCright}} ## Introduction @@ -388,4 +382,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/sv diff --git a/wiki/translations/sv/PySide.md b/wiki/translations/sv/PySide.md index 820fe57518..4474043ed7 100644 --- a/wiki/translations/sv/PySide.md +++ b/wiki/translations/sv/PySide.md @@ -1,7 +1,4 @@ # PySide/sv - - - {{TOCright}} ## Introduction @@ -75,3 +72,6 @@ The PySide documentation refers to the Python-style classes; however, since Qt i }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide/sv diff --git a/wiki/translations/sv/PythonOCC.md b/wiki/translations/sv/PythonOCC.md index 2c3b1ab396..3cb1762ccf 100644 --- a/wiki/translations/sv/PythonOCC.md +++ b/wiki/translations/sv/PythonOCC.md @@ -1,6 +1,4 @@ # PythonOCC/sv - - ## Description [PythonOCC](PythonOCC.md) is a project that aims at providing the entire range of [OpenCASCADE Technology](OpenCASCADE.md) (OCCT) functions through the [Python](Python.md) module `OCC`. This is a different approach from FreeCAD\'s, where only certain components of OCCT are exposed through the [Part Workbench](Part_Workbench.md). @@ -45,3 +43,6 @@ You can also self compile pythonOCC (see [instructions](https://github.com/tpavi }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PythonOCC/sv diff --git a/wiki/translations/sv/Ray_Tracing_Workbench.md b/wiki/translations/sv/Ray_Tracing_Workbench.md index c466608357..db8d089f0a 100644 --- a/wiki/translations/sv/Ray_Tracing_Workbench.md +++ b/wiki/translations/sv/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/sv 1. REDIRECT [Raytracing\_Workbench/sv](Raytracing_Workbench/sv.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/sv diff --git a/wiki/translations/sv/Raytracing_Module.md b/wiki/translations/sv/Raytracing_Module.md index a9324e5a42..fa4c0f42fd 100644 --- a/wiki/translations/sv/Raytracing_Module.md +++ b/wiki/translations/sv/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/sv 1. REDIRECT [Raytracing\_Workbench/sv](Raytracing_Workbench/sv.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/sv diff --git a/wiki/translations/sv/Raytracing_Workbench.md b/wiki/translations/sv/Raytracing_Workbench.md index 187ef060da..d491818501 100644 --- a/wiki/translations/sv/Raytracing_Workbench.md +++ b/wiki/translations/sv/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/sv - - - **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. Nevertheless, the information in this page is generally useful for the new workbench, as both modules work basically in the same way. @@ -149,3 +146,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/sv diff --git a/wiki/translations/sv/Raytracing_WriteCamera.md b/wiki/translations/sv/Raytracing_WriteCamera.md index bf50e8cb01..77119d4edd 100644 --- a/wiki/translations/sv/Raytracing_WriteCamera.md +++ b/wiki/translations/sv/Raytracing_WriteCamera.md @@ -1,3 +1,4 @@ +# Raytracing WriteCamera/sv --- - GuiCommand:/sv Name:Raytracing Camera Name/sv:Raytracing Camera‏‎ MenuLocation:Raytracing → Camera‏‎ |Workbenches:[[Raytracing_Workbench/sv Raytracing]]|Shortcut: SeeAlso:--- @@ -28,4 +29,7 @@ Exports the current camera properties to a pov-file for use in a POV-Ray project {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteCamera/sv diff --git a/wiki/translations/sv/Raytracing_WritePart.md b/wiki/translations/sv/Raytracing_WritePart.md index a8f114038a..84ae7e1d88 100644 --- a/wiki/translations/sv/Raytracing_WritePart.md +++ b/wiki/translations/sv/Raytracing_WritePart.md @@ -1,3 +1,4 @@ +# Raytracing WritePart/sv --- - GuiCommand:/sv Name:Raytracing Part Name/sv:Raytracing Part‏‎ MenuLocation:Raytracing → Part‏‎ |Workbenches:[[Raytracing_Workbench/sv Raytracing]]|Shortcut: SeeAlso:--- @@ -23,4 +24,7 @@ Exports the selected part to a pov-file for use in a POV-Ray project. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WritePart/sv diff --git a/wiki/translations/sv/Raytracing_WriteView.md b/wiki/translations/sv/Raytracing_WriteView.md index 926b9d5d5e..19931c2948 100644 --- a/wiki/translations/sv/Raytracing_WriteView.md +++ b/wiki/translations/sv/Raytracing_WriteView.md @@ -1,3 +1,4 @@ +# Raytracing WriteView/sv --- - GuiCommand:/sv Name:Raytracing Export‏‎ Name/sv:Raytracing Export MenuLocation:Raytracing → Export‏‎ |Workbenches:[[Raytracing_Workbench/sv Raytracing]]|Shortcut: SeeAlso:--- @@ -23,4 +24,7 @@ Exports the current view properties to a pov-file for use in a POV-Ray project. {{Raytracing_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing WriteView/sv diff --git a/wiki/translations/sv/Resource_framework_project.md b/wiki/translations/sv/Resource_framework_project.md index 5b657debb1..14eb34a0b1 100644 --- a/wiki/translations/sv/Resource_framework_project.md +++ b/wiki/translations/sv/Resource_framework_project.md @@ -1,7 +1,4 @@ # Resource framework project/sv - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -123,3 +120,6 @@ A class design for the Resource framwork. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Resource framework project/sv diff --git a/wiki/translations/sv/Reverse_Engineering_Workbench.md b/wiki/translations/sv/Reverse_Engineering_Workbench.md index 146ae14a6b..86226fdafb 100644 --- a/wiki/translations/sv/Reverse_Engineering_Workbench.md +++ b/wiki/translations/sv/Reverse_Engineering_Workbench.md @@ -1,10 +1,4 @@ -# Reverse Engineering Workbench/sv - - - - - -Reverse Engineering workbench icon +# Reverse Engineering workbench icon Reverse Engineering Workbench/sv ## Introduction @@ -29,3 +23,6 @@ Link to appropriate threads discussing this workbench [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench/sv diff --git a/wiki/translations/sv/Robot_Module.md b/wiki/translations/sv/Robot_Module.md index 4e9c8601c2..a2078deba8 100644 --- a/wiki/translations/sv/Robot_Module.md +++ b/wiki/translations/sv/Robot_Module.md @@ -1,2 +1,5 @@ # Robot Module/sv 1. REDIRECT [Robot\_Workbench/sv](Robot_Workbench/sv.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Module/sv diff --git a/wiki/translations/sv/Robot_Workbench.md b/wiki/translations/sv/Robot_Workbench.md index 8d5646781d..6bdba935b4 100644 --- a/wiki/translations/sv/Robot_Workbench.md +++ b/wiki/translations/sv/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/sv - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. @@ -113,3 +107,6 @@ See the [Robot API example](Robot_API_example.md) for a description of the funct }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/sv diff --git a/wiki/translations/sv/Scenegraph.md b/wiki/translations/sv/Scenegraph.md index 9f703b5623..00c9f77d7f 100644 --- a/wiki/translations/sv/Scenegraph.md +++ b/wiki/translations/sv/Scenegraph.md @@ -1,7 +1,4 @@ # Scenegraph/sv - - - {{TOCright}} ## Introduction @@ -152,3 +149,6 @@ See [Coin3d snippets](Coin3d_snippets.md) courtesy of MariwanJ\'s research for t }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scenegraph/sv diff --git a/wiki/translations/sv/Screenshots.md b/wiki/translations/sv/Screenshots.md index 7e2da6e232..c0a8d8130d 100644 --- a/wiki/translations/sv/Screenshots.md +++ b/wiki/translations/sv/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/sv - {{TOCright}} +{{TOCright}} Here are a few screenshots showing different parts of FreeCAD. They are not ordered in any particular timeline, so the images may differ from your actual version. See more screenshots submitted by FreeCAD users on the [screenshot forum thread](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) and on the [\"Show your project here!\" Users Showcase forum part](http://forum.freecadweb.org/viewforum.php?f=24). @@ -226,3 +226,6 @@ FreeCAD körs i konsolläge (utan gränssnitt) Dialog för att spara en bild i valfri storlek. [Category:User Documentation/sv](Category:User_Documentation/sv.md) [Category:Screenshots/sv](Category:Screenshots/sv.md) + +--- +[documentation index](../README.md) > Screenshots/sv diff --git a/wiki/translations/sv/Scripted_objects.md b/wiki/translations/sv/Scripted_objects.md index 9b43ed9482..5354acd36c 100644 --- a/wiki/translations/sv/Scripted_objects.md +++ b/wiki/translations/sv/Scripted_objects.md @@ -1,7 +1,4 @@ # Scripted objects/sv - - - {{TOCright}} ## Introduction @@ -935,3 +932,6 @@ In addition to the examples presented here have a look at FreeCAD source code [s }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects/sv diff --git a/wiki/translations/sv/Scripting.md b/wiki/translations/sv/Scripting.md index 8a9d754592..e22cf3a44c 100644 --- a/wiki/translations/sv/Scripting.md +++ b/wiki/translations/sv/Scripting.md @@ -1,2 +1,5 @@ # Scripting/sv 1. REDIRECT [Power users hub/sv](Power_users_hub/sv.md) + +--- +[documentation index](../README.md) > Scripting/sv diff --git a/wiki/translations/sv/Ship_Workbench.md b/wiki/translations/sv/Ship_Workbench.md index 69f8bead44..3166d38778 100644 --- a/wiki/translations/sv/Ship_Workbench.md +++ b/wiki/translations/sv/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/sv - - -Ship workbench icon +# Ship workbench icon Ship Workbench/sv {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/sv diff --git a/wiki/translations/sv/Sketcher_CompCreateArc.md b/wiki/translations/sv/Sketcher_CompCreateArc.md index 5e0377fde9..55e7b9f382 100644 --- a/wiki/translations/sv/Sketcher_CompCreateArc.md +++ b/wiki/translations/sv/Sketcher_CompCreateArc.md @@ -6,6 +6,8 @@ MenuLocation:None (toolbar only) --- +# Sketcher CompCreateArc/sv +
@@ -24,4 +26,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateArc/sv diff --git a/wiki/translations/sv/Sketcher_ConstrainAngle.md b/wiki/translations/sv/Sketcher_ConstrainAngle.md index 8be13982ba..6ac232af57 100644 --- a/wiki/translations/sv/Sketcher_ConstrainAngle.md +++ b/wiki/translations/sv/Sketcher_ConstrainAngle.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainAngle/sv --- - GuiCommand:/sv Name:Constraint InternalAngle Name/sv:Constraint InternalAngle Workbenches:[PartDesign](Sketcher_Workbench/sv___Sketcher]],_[[PartDesign_Workbench/sv.md)|Shortcut:A MenuLocation:Sketch → Sketcher constraints → Constrain angle SeeAlso:[Constraint Length](Constraint_Length/sv.md), [Constraint Perpendicular](Constraint_Perpendicular/sv.md)--- @@ -101,4 +102,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainAngle/sv diff --git a/wiki/translations/sv/Sketcher_ConstrainCoincident.md b/wiki/translations/sv/Sketcher_ConstrainCoincident.md index 290b1f0020..4a0bc7d242 100644 --- a/wiki/translations/sv/Sketcher_ConstrainCoincident.md +++ b/wiki/translations/sv/Sketcher_ConstrainCoincident.md @@ -8,6 +8,8 @@ SeeAlso:[Constrain Lock](Sketcher_ConstrainLock/sv.md), [Constrain Point onto Object](Sketcher_ConstrainPointOnObject/sv.md) --- +# Sketcher ConstrainCoincident/sv +
@@ -90,3 +92,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/sv](Category:Sketcher/sv.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainCoincident/sv diff --git a/wiki/translations/sv/Sketcher_ConstrainDistance.md b/wiki/translations/sv/Sketcher_ConstrainDistance.md index e5207a92ed..64b3dbd814 100644 --- a/wiki/translations/sv/Sketcher_ConstrainDistance.md +++ b/wiki/translations/sv/Sketcher_ConstrainDistance.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint HorizontalDistance](Sketcher_ConstrainDistanceX/sv.md), [Constraint VerticalDistance](Sketcher_ConstrainDistanceY/sv.md) --- +# Sketcher ConstrainDistance/sv +
@@ -62,4 +64,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistance/sv diff --git a/wiki/translations/sv/Sketcher_ConstrainDistanceX.md b/wiki/translations/sv/Sketcher_ConstrainDistanceX.md index 646328c545..0d08b9a715 100644 --- a/wiki/translations/sv/Sketcher_ConstrainDistanceX.md +++ b/wiki/translations/sv/Sketcher_ConstrainDistanceX.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint Length](Sketcher_ConstrainDistance/sv.md), [Constraint VerticalDistance](Sketcher_ConstrainDistanceY/sv.md) --- +# Sketcher ConstrainDistanceX/sv +
@@ -53,4 +55,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceX/sv diff --git a/wiki/translations/sv/Sketcher_ConstrainDistanceY.md b/wiki/translations/sv/Sketcher_ConstrainDistanceY.md index 0cbee6fe88..5f4fe17f4c 100644 --- a/wiki/translations/sv/Sketcher_ConstrainDistanceY.md +++ b/wiki/translations/sv/Sketcher_ConstrainDistanceY.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint HorizontalDistance](Sketcher_ConstrainDistanceX/sv.md), [Constraint Length](Sketcher_ConstrainDistance/sv.md) --- +# Sketcher ConstrainDistanceY/sv + @@ -53,4 +55,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainDistanceY/sv diff --git a/wiki/translations/sv/Sketcher_ConstrainEqual.md b/wiki/translations/sv/Sketcher_ConstrainEqual.md index d5457a944d..88bf877908 100644 --- a/wiki/translations/sv/Sketcher_ConstrainEqual.md +++ b/wiki/translations/sv/Sketcher_ConstrainEqual.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainEqual/sv --- - GuiCommand:/sv Name:Constraint EqualLength Name/sv:Constraint EqualLength Workbenches:[PartDesign](Sketcher_Workbench/sv___Sketcher]],_[[PartDesign_Workbench/sv.md)|MenuLocation:Sketch → Sketcher constraints → Constrain equal SeeAlso:[Constraint Radius](Constraint_Radius/sv.md)--- @@ -59,4 +60,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainEqual/sv diff --git a/wiki/translations/sv/Sketcher_ConstrainHorizontal.md b/wiki/translations/sv/Sketcher_ConstrainHorizontal.md index 6896ffe73b..8b98adebc6 100644 --- a/wiki/translations/sv/Sketcher_ConstrainHorizontal.md +++ b/wiki/translations/sv/Sketcher_ConstrainHorizontal.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint Vertical](Constraint_Vertical/sv.md) --- +# Sketcher ConstrainHorizontal/sv + @@ -51,3 +53,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/sv](Category:Sketcher/sv.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainHorizontal/sv diff --git a/wiki/translations/sv/Sketcher_ConstrainLock.md b/wiki/translations/sv/Sketcher_ConstrainLock.md index 5ef0a6de3c..36ce75c497 100644 --- a/wiki/translations/sv/Sketcher_ConstrainLock.md +++ b/wiki/translations/sv/Sketcher_ConstrainLock.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainLock/sv --- - GuiCommand:/sv Name:Sketcher ConstrainLock Name/sv:Sketcher ConstrainLock Workbenches:[PartDesign](Sketcher_Workbench/sv___Sketcher]],_[[PartDesign_Workbench/sv.md)|MenuLocation:Sketch → Sketcher constraints → Constrain lock SeeAlso:[Constraint Coincident](Constraint_PointOnPoint/sv.md)--- @@ -26,4 +27,7 @@ The [Loc {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainLock/sv diff --git a/wiki/translations/sv/Sketcher_ConstrainParallel.md b/wiki/translations/sv/Sketcher_ConstrainParallel.md index 78b095a93e..b8b17aaccd 100644 --- a/wiki/translations/sv/Sketcher_ConstrainParallel.md +++ b/wiki/translations/sv/Sketcher_ConstrainParallel.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainParallel/sv --- - GuiCommand:/sv Name:Constraint Parallel Name/sv:Constraint Parallel Workbenches:[PartDesign](Sketcher_Workbench/sv___Sketcher]],_[[PartDesign_Workbench/sv.md)|MenuLocation:Sketch → Sketcher constraints → Constrain parallel SeeAlso:[Constraint Vertical](Constraint_Vertical/sv.md), [Constraint Horizontal](Constraint_Horizontal/sv.md)--- @@ -43,4 +44,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainParallel/sv diff --git a/wiki/translations/sv/Sketcher_ConstrainPerpendicular.md b/wiki/translations/sv/Sketcher_ConstrainPerpendicular.md index 9dc2a77d25..ec9460ee9c 100644 --- a/wiki/translations/sv/Sketcher_ConstrainPerpendicular.md +++ b/wiki/translations/sv/Sketcher_ConstrainPerpendicular.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainPerpendicular/sv --- - GuiCommand:/sv Name:Constraint Perpendicular Name/sv:Constraint Perpendicular Workbenches:[PartDesign](Sketcher_Workbench/sv___Sketcher]],_[[PartDesign_Workbench/sv.md)|MenuLocation:Sketch → Sketcher constraints → Constrain perpendicular Shortcut:N SeeAlso:[Constraint Angle](Constraint_InternalAngle/sv.md)--- @@ -108,4 +109,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPerpendicular/sv diff --git a/wiki/translations/sv/Sketcher_ConstrainPointOnObject.md b/wiki/translations/sv/Sketcher_ConstrainPointOnObject.md index 90fa75f276..2573043a0b 100644 --- a/wiki/translations/sv/Sketcher_ConstrainPointOnObject.md +++ b/wiki/translations/sv/Sketcher_ConstrainPointOnObject.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainPointOnObject/sv --- - GuiCommand:/sv Name:Constraint PointOnObject Name/sv:Constraint PointOnObject Workbenches:[PartDesign](Sketcher_Workbench/sv___Sketcher]],_[[PartDesign_Workbench/sv.md)|MenuLocation:Sketch → Sketcher constraints → Constrain point onto object SeeAlso:[Constraint Coincident](Constraint_PointOnPoint/sv.md)--- @@ -48,4 +49,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains how to identify th {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainPointOnObject/sv diff --git a/wiki/translations/sv/Sketcher_ConstrainRadius.md b/wiki/translations/sv/Sketcher_ConstrainRadius.md index 4cc7649825..e222e7233b 100644 --- a/wiki/translations/sv/Sketcher_ConstrainRadius.md +++ b/wiki/translations/sv/Sketcher_ConstrainRadius.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainRadius/sv --- - GuiCommand:/sv Name:Constraint Radius Name/sv:Constraint Radius Workbenches:[PartDesign](Sketcher_Workbench/sv___Sketcher]],_[[PartDesign_Workbench/sv.md)|MenuLocation:Sketch → Sketcher constraints → Constrain radius SeeAlso:[Constraint Distance](Constraint_Length/sv.md), [Constraint Horizontal](Constraint_Horizontal/sv.md), [Constraint Vertical](Constraint_Vertical/sv.md)--- @@ -43,4 +44,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainRadius/sv diff --git a/wiki/translations/sv/Sketcher_ConstrainSymmetric.md b/wiki/translations/sv/Sketcher_ConstrainSymmetric.md index c3ec36c4a7..5add4eae2b 100644 --- a/wiki/translations/sv/Sketcher_ConstrainSymmetric.md +++ b/wiki/translations/sv/Sketcher_ConstrainSymmetric.md @@ -1,3 +1,4 @@ +# Sketcher ConstrainSymmetric/sv --- - GuiCommand:/sv Name:Constraint Symmetric Name/sv:Constraint Symmetric Workbenches:[PartDesign](Sketcher_Workbench/sv___Sketcher]],_[[PartDesign_Workbench/sv.md)|MenuLocation:Sketch → Sketcher constraints → Constrain symmetrical SeeAlso:[Constraint Parallel](Constraint_Parallel/sv.md)--- @@ -57,4 +58,7 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainSymmetric/sv diff --git a/wiki/translations/sv/Sketcher_ConstrainVertical.md b/wiki/translations/sv/Sketcher_ConstrainVertical.md index f116247bad..48772219af 100644 --- a/wiki/translations/sv/Sketcher_ConstrainVertical.md +++ b/wiki/translations/sv/Sketcher_ConstrainVertical.md @@ -8,6 +8,8 @@ SeeAlso:[Constraint Horizontal](Sketcher_ConstrainHorizontal/sv.md) --- +# Sketcher ConstrainVertical/sv + @@ -50,3 +52,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page explains the values which c }} [Category:Sketcher/sv](Category:Sketcher/sv.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainVertical/sv diff --git a/wiki/translations/sv/Sketcher_CreateArc.md b/wiki/translations/sv/Sketcher_CreateArc.md index c6632d873f..d65d4f0723 100644 --- a/wiki/translations/sv/Sketcher_CreateArc.md +++ b/wiki/translations/sv/Sketcher_CreateArc.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Circle](Sketcher_CompCreateCircle/sv.md) --- +# Sketcher CreateArc/sv + @@ -29,4 +31,7 @@ When starting the tool, the mouse pointer changes to a white cross with a red ar {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateArc/sv diff --git a/wiki/translations/sv/Sketcher_CreateCircle.md b/wiki/translations/sv/Sketcher_CreateCircle.md index fadd478ec9..6d40a1f4ba 100644 --- a/wiki/translations/sv/Sketcher_CreateCircle.md +++ b/wiki/translations/sv/Sketcher_CreateCircle.md @@ -1,3 +1,4 @@ +# Sketcher CreateCircle/sv --- - GuiCommand:/sv Name:Sketcher CreateCircle Name/sv:Sketcher Circle Workbenches:[MenuLocation:Sketch → Sketcher geometries → Create circle SeeAlso:[[Sketcher CompCreateArc/sv|Sketcher Arc](Sketcher_Workbench/sv___Sketcher]].md)--- @@ -21,4 +22,7 @@ This tool draws a circle by picking two points: the center, and a point along th {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateCircle/sv diff --git a/wiki/translations/sv/Sketcher_CreateFillet.md b/wiki/translations/sv/Sketcher_CreateFillet.md index 2ff57def82..9948bc43ec 100644 --- a/wiki/translations/sv/Sketcher_CreateFillet.md +++ b/wiki/translations/sv/Sketcher_CreateFillet.md @@ -1,3 +1,4 @@ +# Sketcher CreateFillet/sv --- - GuiCommand:/sv Name:Sketcher CreateFillet Name/sv:Sketcher CreateFillet Workbenches:[[Sketcher Workbench/sv Sketcher]]|Shortcut:F MenuLocation:Sketch → Sketcher geometries → Create fillet--- @@ -24,4 +25,7 @@ When starting the tool, selections are cleared and the mouse pointer changes to {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateFillet/sv diff --git a/wiki/translations/sv/Sketcher_CreateLine.md b/wiki/translations/sv/Sketcher_CreateLine.md index 6b7214f694..de6622fda5 100644 --- a/wiki/translations/sv/Sketcher_CreateLine.md +++ b/wiki/translations/sv/Sketcher_CreateLine.md @@ -1,3 +1,4 @@ +# Sketcher CreateLine/sv --- - GuiCommand:/sv Name:Sketcher CreateLine Name/sv:Sketcher Line Workbenches:[MenuLocation:Sketch → Sketcher geometries → Create line Shortcut:L SeeAlso:[[Sketcher CreatePolyline/sv|Sketcher Polyline](Sketcher_Workbench___Sketcher]].md)--- @@ -23,4 +24,7 @@ The created line object starts and ends at the given points, but the line is inf {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateLine/sv diff --git a/wiki/translations/sv/Sketcher_CreatePoint.md b/wiki/translations/sv/Sketcher_CreatePoint.md index 099639a699..b5034cef0a 100644 --- a/wiki/translations/sv/Sketcher_CreatePoint.md +++ b/wiki/translations/sv/Sketcher_CreatePoint.md @@ -1,3 +1,4 @@ +# Sketcher CreatePoint/sv --- - GuiCommand:/sv Name:Sketcher CreatePoint Name/sv:Sketcher Point Workbenches:[[Sketcher Workbench/sv Sketcher]]|MenuLocation:Sketch → Sketcher geometries → Create point--- @@ -30,4 +31,7 @@ The created point is not available outside of the sketch. In case a point is nee {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreatePoint/sv diff --git a/wiki/translations/sv/Sketcher_CreatePolyline.md b/wiki/translations/sv/Sketcher_CreatePolyline.md index f6f3bc834f..b10b39eada 100644 --- a/wiki/translations/sv/Sketcher_CreatePolyline.md +++ b/wiki/translations/sv/Sketcher_CreatePolyline.md @@ -1,3 +1,4 @@ +# Sketcher CreatePolyline/sv --- - GuiCommand:/sv Name:Sketcher CreatePolyline Name/sv:Sketcher CreatePolyline Workbenches:[MenuLocation:Sketch → Sketcher geometries → Create polyline SeeAlso:[[Sketcher CreateLine/sv|Sketcher Line](Sketcher_Workbench/sv___Sketcher]].md)--- @@ -38,4 +39,7 @@ The polyline always starts with a straight line segment: click - move the mouse {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreatePolyline/sv diff --git a/wiki/translations/sv/Sketcher_CreateRectangle.md b/wiki/translations/sv/Sketcher_CreateRectangle.md index 92dd56ddf2..b60dcf1986 100644 --- a/wiki/translations/sv/Sketcher_CreateRectangle.md +++ b/wiki/translations/sv/Sketcher_CreateRectangle.md @@ -1,3 +1,4 @@ +# Sketcher CreateRectangle/sv --- - GuiCommand:/sv Name:Sketcher CreateRectangle Name/sv:Sketcher CreateRectangle Workbenches:[Shortcut:R MenuLocation:Sketch → Sketcher geometries → Create rectangle SeeAlso:[[Sketcher CreatePolyline/sv|Sketcher Polyline](Sketcher_Workbench/sv___Sketcher]].md)--- @@ -23,4 +24,7 @@ To define a rectangle via a center point and an edge point, use the [Centered re {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateRectangle/sv diff --git a/wiki/translations/sv/Sketcher_External.md b/wiki/translations/sv/Sketcher_External.md index d4305540e2..80f06b8cb5 100644 --- a/wiki/translations/sv/Sketcher_External.md +++ b/wiki/translations/sv/Sketcher_External.md @@ -1,3 +1,4 @@ +# Sketcher External/sv --- - GuiCommand:/sv Name:Sketcher External Name/sv:Sketcher External Workbenches:[PartDesign](Sketcher_Workbench/sv___Sketcher]],_[[PartDesign_Workbench/sv.md)|Shortcut:E MenuLocation:Sketch → Sketcher geometries → Sketcher External SeeAlso:[ConstructionMode](Sketcher_ConstructionMode/sv.md)--- @@ -73,4 +74,7 @@ When the sketch edit mode is closed, external Geometry lines are not visible. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher External/sv diff --git a/wiki/translations/sv/Sketcher_LeaveSketch.md b/wiki/translations/sv/Sketcher_LeaveSketch.md index 93b479069a..1a9ceec85b 100644 --- a/wiki/translations/sv/Sketcher_LeaveSketch.md +++ b/wiki/translations/sv/Sketcher_LeaveSketch.md @@ -1,3 +1,4 @@ +# Sketcher LeaveSketch/sv --- - GuiCommand:/sv Name:Sketcher LeaveSketch Name/sv:Sketcher LeaveSketch Workbenches:[PartDesign](Sketcher_Workbench/sv___Sketcher]],_[[PartDesign_Workbench/sv.md)|MenuLocation:Sketch → Leave sketch|--- @@ -26,3 +27,6 @@ The **Leave sketch** command exits the sketch editing mode and frees up the [Tas }} [Category:Sketcher/sv](Category:Sketcher/sv.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher LeaveSketch/sv diff --git a/wiki/translations/sv/Sketcher_MapSketch.md b/wiki/translations/sv/Sketcher_MapSketch.md index 68519eb761..9284f46f67 100644 --- a/wiki/translations/sv/Sketcher_MapSketch.md +++ b/wiki/translations/sv/Sketcher_MapSketch.md @@ -1,7 +1,4 @@ # Sketcher MapSketch/sv - - -
@@ -71,4 +68,7 @@ Now we select the top face of Pad and then select the Map A Sketch To A Face too {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MapSketch/sv diff --git a/wiki/translations/sv/Sketcher_Module.md b/wiki/translations/sv/Sketcher_Module.md index c70a2e0ee4..f02c220a4d 100644 --- a/wiki/translations/sv/Sketcher_Module.md +++ b/wiki/translations/sv/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/sv 1. REDIRECT [Sketcher Workbench/sv](Sketcher_Workbench/sv.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/sv diff --git a/wiki/translations/sv/Sketcher_NewSketch.md b/wiki/translations/sv/Sketcher_NewSketch.md index fd119419d8..73ea94c905 100644 --- a/wiki/translations/sv/Sketcher_NewSketch.md +++ b/wiki/translations/sv/Sketcher_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Kartera skiss till ytan ...](Sketcher_MapSketch/sv.md), [Omorientera skiss...](Sketcher_Reorient/sv.md) --- +# Sketcher NewSketch/sv +
@@ -40,4 +42,7 @@ The sketch can be moved in the [3D view](3D_view.md) using [Placement](Placement {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher NewSketch/sv diff --git a/wiki/translations/sv/Sketcher_ReorientSketch.md b/wiki/translations/sv/Sketcher_ReorientSketch.md index 5e1eb9df80..42cf4636df 100644 --- a/wiki/translations/sv/Sketcher_ReorientSketch.md +++ b/wiki/translations/sv/Sketcher_ReorientSketch.md @@ -8,6 +8,8 @@ SeeAlso:[Map sketch](Sketcher_MapSketch/sv.md), [New Sketch](Sketcher_NewSketch/sv.md) --- +# Sketcher ReorientSketch/sv + @@ -41,4 +43,7 @@ Allows you to detach a sketch from a face and attach it to one of the main plane {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ReorientSketch/sv diff --git a/wiki/translations/sv/Sketcher_ToggleConstruction.md b/wiki/translations/sv/Sketcher_ToggleConstruction.md index 054599d0c1..8d7b0ae64e 100644 --- a/wiki/translations/sv/Sketcher_ToggleConstruction.md +++ b/wiki/translations/sv/Sketcher_ToggleConstruction.md @@ -7,6 +7,8 @@ MenuLocation:Sketch → Skissgeometrier → Toggle construction geometry --- +# Sketcher ToggleConstruction/sv + @@ -51,4 +53,7 @@ and once you ** [lea {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ToggleConstruction/sv diff --git a/wiki/translations/sv/Sketcher_Trimming.md b/wiki/translations/sv/Sketcher_Trimming.md index 26ebe9f167..56782d4fc1 100644 --- a/wiki/translations/sv/Sketcher_Trimming.md +++ b/wiki/translations/sv/Sketcher_Trimming.md @@ -1,3 +1,4 @@ +# Sketcher Trimming/sv --- - GuiCommand:/sv Name:Sketcher Trimming Name/sv:Sketcher Trimming Workbenches:[PartDesign](Sketcher_Workbench/sv___Sketcher]],_[[PartDesign_Workbench/sv.md)|Shortcut:T MenuLocation:Sketch → Sketcher geometries → Trim edge--- @@ -27,4 +28,7 @@ This tool trims an edge to the nearest overlapping edge. {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Trimming/sv diff --git a/wiki/translations/sv/Sketcher_ValidateSketch.md b/wiki/translations/sv/Sketcher_ValidateSketch.md index 3efeeaf615..b607ce39d0 100644 --- a/wiki/translations/sv/Sketcher_ValidateSketch.md +++ b/wiki/translations/sv/Sketcher_ValidateSketch.md @@ -7,6 +7,8 @@ MenuLocation:Sketch / Part Design → Validate sketch --- +# Sketcher ValidateSketch/sv + @@ -81,4 +83,7 @@ The locking mechanism typically works well and this tool should not be needed. * {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ValidateSketch/sv diff --git a/wiki/translations/sv/Sketcher_ViewSketch.md b/wiki/translations/sv/Sketcher_ViewSketch.md index 10a53dfaae..2ac4c1a305 100644 --- a/wiki/translations/sv/Sketcher_ViewSketch.md +++ b/wiki/translations/sv/Sketcher_ViewSketch.md @@ -1,3 +1,4 @@ +# Sketcher ViewSketch/sv --- - GuiCommand:/sv Name:Sketcher ViewSketch Name/sv:Sketcher ViewSketch Workbenches:[PartDesign](Sketcher_Workbench/sv___Sketcher]],_[[PartDesign_Workbench/sv.md)|MenuLocation:Sketch → View sketch--- @@ -21,4 +22,7 @@ While in sketch edit mode, either {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSketch/sv diff --git a/wiki/translations/sv/Sketcher_Workbench.md b/wiki/translations/sv/Sketcher_Workbench.md index 930ee41b10..d3a8cd48a2 100644 --- a/wiki/translations/sv/Sketcher_Workbench.md +++ b/wiki/translations/sv/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/sv - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/sv {{TOCright}} @@ -329,3 +323,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [Category:User Documentation/sv](Category:User_Documentation/sv.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/sv diff --git a/wiki/translations/sv/Source_documentation.md b/wiki/translations/sv/Source_documentation.md index 399820c4e1..f69da5493b 100644 --- a/wiki/translations/sv/Source_documentation.md +++ b/wiki/translations/sv/Source_documentation.md @@ -1,10 +1,4 @@ # Source documentation/sv - - - - - - {{TOCright}} @@ -196,3 +190,6 @@ void removeTaskWatcher(void); [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source documentation/sv diff --git a/wiki/translations/sv/Spreadsheet_Module.md b/wiki/translations/sv/Spreadsheet_Module.md index 3169f367ce..f4b24f19c2 100644 --- a/wiki/translations/sv/Spreadsheet_Module.md +++ b/wiki/translations/sv/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module/sv 1. REDIRECT [Spreadsheet Workbench/sv](Spreadsheet_Workbench/sv.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module/sv diff --git a/wiki/translations/sv/Spreadsheet_Workbench.md b/wiki/translations/sv/Spreadsheet_Workbench.md index d8f314fff1..c0c177e835 100644 --- a/wiki/translations/sv/Spreadsheet_Workbench.md +++ b/wiki/translations/sv/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/sv - {{Page_in_progress}} @@ -235,3 +234,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/sv diff --git a/wiki/translations/sv/Standard_Menu.md b/wiki/translations/sv/Standard_Menu.md index bcb89589c3..1d0f7872f8 100644 --- a/wiki/translations/sv/Standard_Menu.md +++ b/wiki/translations/sv/Standard_Menu.md @@ -1,5 +1,5 @@ # Standard Menu/sv - {{TOCright}} +{{TOCright}} ## Introduction @@ -47,4 +47,7 @@ The standard menu is composed of 7 sub-menus: {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Standard Menu/sv diff --git a/wiki/translations/sv/Start_Workbench.md b/wiki/translations/sv/Start_Workbench.md index 501476f914..3408637351 100644 --- a/wiki/translations/sv/Start_Workbench.md +++ b/wiki/translations/sv/Start_Workbench.md @@ -1,10 +1,4 @@ -# Start Workbench/sv - - - - - -Start workbench icon +# Start workbench icon Start Workbench/sv The [Start Workbench](Start_Workbench.md) is not really a workbench, it\'s just the page that is presented when you open FreeCAD with no document loaded. @@ -26,3 +20,6 @@ From this interface you can see useful information and jump to recently opened f [Category:User Documentation/sv](Category:User_Documentation/sv.md) [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench/sv diff --git a/wiki/translations/sv/Start_up_and_Configuration.md b/wiki/translations/sv/Start_up_and_Configuration.md index b8b5db230e..cd8a60ea26 100644 --- a/wiki/translations/sv/Start_up_and_Configuration.md +++ b/wiki/translations/sv/Start_up_and_Configuration.md @@ -1,10 +1,4 @@ # Start up and Configuration/sv - - - - - - {{TOCright}} @@ -475,3 +469,6 @@ Now double-click the batch file to start FreeCAD. ([see](https://forum.freecadwe [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start up and Configuration/sv diff --git a/wiki/translations/sv/Std_InterfaceCustomization.md b/wiki/translations/sv/Std_InterfaceCustomization.md index 55a08a557f..f8eaaad867 100644 --- a/wiki/translations/sv/Std_InterfaceCustomization.md +++ b/wiki/translations/sv/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/sv 1. REDIRECT [Interface\_Customization/sv](Interface_Customization/sv.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/sv diff --git a/wiki/translations/sv/Std_ToggleClipPlane.md b/wiki/translations/sv/Std_ToggleClipPlane.md index 7e5b33b4ce..dc93c50e80 100644 --- a/wiki/translations/sv/Std_ToggleClipPlane.md +++ b/wiki/translations/sv/Std_ToggleClipPlane.md @@ -1,3 +1,4 @@ +# Std ToggleClipPlane/sv --- - GuiCommand:/sv Name:Std ClippingPlane Name/sv:Std ClippingPlane MenuLocation:[[Std View Menu/sv View]] → Clipping plane‏‎||Workbenches:All Shortcut: SeeAlso:--- @@ -38,4 +39,7 @@ The **Std ToggleClipPlane** command temporarily hides objects and parts of objec {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ToggleClipPlane/sv diff --git a/wiki/translations/sv/Std_Tools_Menu.md b/wiki/translations/sv/Std_Tools_Menu.md index 5f88ecda5e..96cd3963e0 100644 --- a/wiki/translations/sv/Std_Tools_Menu.md +++ b/wiki/translations/sv/Std_Tools_Menu.md @@ -1,10 +1,4 @@ -# Std Tools Menu/sv - - - - - -Std Base icon +# Std Base icon Std Tools Menu/sv {{TOCright}} @@ -59,3 +53,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Tools Menu/sv diff --git a/wiki/translations/sv/Std_ViewScreenShot.md b/wiki/translations/sv/Std_ViewScreenShot.md index afa5218deb..e2a61dff28 100644 --- a/wiki/translations/sv/Std_ViewScreenShot.md +++ b/wiki/translations/sv/Std_ViewScreenShot.md @@ -1,3 +1,4 @@ +# Std ViewScreenShot/sv --- - GuiCommand:/sv Name:Std ViewScreenShot Name/sv:Std ViewScreenShot MenuLocation:[[Std Tools Menu/sv Tools]] → Save picture...|Workbenches:All SeeAlso:...--- @@ -121,4 +122,7 @@ App.closeDocument(App.ActiveDocument.Name) {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std ViewScreenShot/sv diff --git a/wiki/translations/sv/Std_View_Menu.md b/wiki/translations/sv/Std_View_Menu.md index eef93183d2..c5ba7a54e1 100644 --- a/wiki/translations/sv/Std_View_Menu.md +++ b/wiki/translations/sv/Std_View_Menu.md @@ -1,10 +1,4 @@ -# Std View Menu/sv - - - - - -Std Base icon +# Std Base icon Std View Menu/sv {{TOCright}} @@ -165,3 +159,6 @@ The following tools are available in this menu: }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std View Menu/sv diff --git a/wiki/translations/sv/Surface_Module.md b/wiki/translations/sv/Surface_Module.md index 61a04711c5..2f5eebc0e9 100644 --- a/wiki/translations/sv/Surface_Module.md +++ b/wiki/translations/sv/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/sv 1. REDIRECT [Surface\_Workbench/sv](Surface_Workbench/sv.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/sv diff --git a/wiki/translations/sv/Surface_Workbench.md b/wiki/translations/sv/Surface_Workbench.md index 6e7b7cb594..65e9a63a1e 100644 --- a/wiki/translations/sv/Surface_Workbench.md +++ b/wiki/translations/sv/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/sv - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/sv {{TOCright}} @@ -57,3 +51,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/sv diff --git a/wiki/translations/sv/TechDraw_Module.md b/wiki/translations/sv/TechDraw_Module.md index 29adafa203..d99704f6c0 100644 --- a/wiki/translations/sv/TechDraw_Module.md +++ b/wiki/translations/sv/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/sv 1. REDIRECT [TechDraw\_Workbench/sv](TechDraw_Workbench/sv.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/sv diff --git a/wiki/translations/sv/TechDraw_Workbench.md b/wiki/translations/sv/TechDraw_Workbench.md index 8f912f79ea..d781a547cb 100644 --- a/wiki/translations/sv/TechDraw_Workbench.md +++ b/wiki/translations/sv/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/sv - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/sv ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/sv diff --git a/wiki/translations/sv/Test_Framework_Workbench.md b/wiki/translations/sv/Test_Framework_Workbench.md index e1f58e48bc..561e769435 100644 --- a/wiki/translations/sv/Test_Framework_Workbench.md +++ b/wiki/translations/sv/Test_Framework_Workbench.md @@ -1,2 +1,5 @@ # Test Framework Workbench/sv 1. REDIRECT [Testing/sv](Testing/sv.md) + +--- +[documentation index](../README.md) > Test Framework Workbench/sv diff --git a/wiki/translations/sv/Testing.md b/wiki/translations/sv/Testing.md index 3260822db2..0e1a1a9fe8 100644 --- a/wiki/translations/sv/Testing.md +++ b/wiki/translations/sv/Testing.md @@ -1,10 +1,4 @@ -# Testing/sv - - - - - -Test workbench icon +# Test workbench icon Testing/sv {{TOCright}} @@ -190,3 +184,6 @@ r.run(suite) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Test Framework](Category:Test_Framework.md) [Category:Workbenches](Category:Workbenches.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Testing/sv diff --git a/wiki/translations/sv/Third_Party_Libraries.md b/wiki/translations/sv/Third_Party_Libraries.md index 564a1bb9d0..20b09e6179 100644 --- a/wiki/translations/sv/Third_Party_Libraries.md +++ b/wiki/translations/sv/Third_Party_Libraries.md @@ -1,10 +1,4 @@ # Third Party Libraries/sv - - - - - - {{TOCright}} @@ -506,3 +500,6 @@ It includes among other things: Boost 1.67, Coin3D 4.0.0a, Eigen3, Open CASCADE [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Libraries/sv diff --git a/wiki/translations/sv/Third_Party_Tools.md b/wiki/translations/sv/Third_Party_Tools.md index 30aa1abe07..06e1d8ee52 100644 --- a/wiki/translations/sv/Third_Party_Tools.md +++ b/wiki/translations/sv/Third_Party_Tools.md @@ -1,10 +1,4 @@ # Third Party Tools/sv - - - - - - {{TOCright}} ## Tool Page @@ -161,3 +155,6 @@ ATTGÖRA [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Tools/sv diff --git a/wiki/translations/sv/Topological_data_scripting.md b/wiki/translations/sv/Topological_data_scripting.md index b60b9e0fa7..6627f99237 100644 --- a/wiki/translations/sv/Topological_data_scripting.md +++ b/wiki/translations/sv/Topological_data_scripting.md @@ -1,7 +1,4 @@ # Topological data scripting/sv - - - {{TOCright}} @@ -1627,3 +1624,6 @@ To convert a STEP file to an IGS file: ```{{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting/sv diff --git a/wiki/translations/sv/Tracker.md b/wiki/translations/sv/Tracker.md index 1744b9b58a..b36527fcf0 100644 --- a/wiki/translations/sv/Tracker.md +++ b/wiki/translations/sv/Tracker.md @@ -1,10 +1,4 @@ # Tracker/sv - - - - - - {{TOCright}} ![](images/Mantis_logo_262x90.png ) @@ -204,3 +198,6 @@ For the inquisitive here is the regex MantisBT uses for this operation: [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Tracker/sv diff --git a/wiki/translations/sv/Tutorials.md b/wiki/translations/sv/Tutorials.md index 558b788819..a2638463df 100644 --- a/wiki/translations/sv/Tutorials.md +++ b/wiki/translations/sv/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/sv - - - - - - {{TOCright}} This page presents a selection of high quality written tutorials. A complete, unsorted list of tutorials can be found in [:Category:Tutorials](:Category:Tutorials.md), a complete and sortable one can be found in the [table below](Tutorials#Tutorials_-_Comprehensive_list.md). @@ -283,3 +277,6 @@ Here are listed all the tutorials that are not in the manual **regardless of the [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials]], a complete and sortable one can be found in the ](Category:Tutorials]], a complete and sortable one can be found in the .md) > Tutorials/sv diff --git a/wiki/translations/sv/Units.md b/wiki/translations/sv/Units.md index 05d5a8fb05..2d8849f30e 100644 --- a/wiki/translations/sv/Units.md +++ b/wiki/translations/sv/Units.md @@ -1,6 +1,4 @@ # Units/sv - - Some reading about units: - [Metrology](http://en.wikipedia.org/wiki/Metrology) @@ -292,4 +290,7 @@ It becomes thus very easy to manage any number of properties with any kind of un {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Units/sv diff --git a/wiki/translations/sv/User_hub.md b/wiki/translations/sv/User_hub.md index 0ab1adbbad..35505b11b2 100644 --- a/wiki/translations/sv/User_hub.md +++ b/wiki/translations/sv/User_hub.md @@ -1,5 +1,4 @@ -# User hub/sv - +# User hub/sv ------------------------------------------------------------------------ @@ -189,3 +188,6 @@ Detta är den officiella FreeCAD online hjälpen. Notera att hela online hjälp [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/sv diff --git a/wiki/translations/sv/VRML_Preparation_for_Robot_Simulation.md b/wiki/translations/sv/VRML_Preparation_for_Robot_Simulation.md index 98f9207166..10a56bf104 100644 --- a/wiki/translations/sv/VRML_Preparation_for_Robot_Simulation.md +++ b/wiki/translations/sv/VRML_Preparation_for_Robot_Simulation.md @@ -1,7 +1,4 @@ # VRML Preparation for Robot Simulation/sv - - -
@@ -392,3 +389,6 @@ Group { [Category:Robot](Category:Robot.md) + +--- +[documentation index](../README.md) > [Robot](Category:Robot.md) > VRML Preparation for Robot Simulation/sv diff --git a/wiki/translations/sv/Web_Workbench.md b/wiki/translations/sv/Web_Workbench.md index 3c7c1b371c..5ee4efe2bb 100644 --- a/wiki/translations/sv/Web_Workbench.md +++ b/wiki/translations/sv/Web_Workbench.md @@ -1,10 +1,4 @@ -# Web Workbench/sv - - - - - -Web workbench icon +# Web workbench icon Web Workbench/sv ## Introduction @@ -19,3 +13,6 @@ From this browser you are able to navigate the web, click on links, read the onl [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/sv diff --git a/wiki/translations/sv/Workbenches.md b/wiki/translations/sv/Workbenches.md index 477252fe76..6dd5289418 100644 --- a/wiki/translations/sv/Workbenches.md +++ b/wiki/translations/sv/Workbenches.md @@ -1,7 +1,4 @@ # Workbenches/sv - - -
FreeCAD, som många moderna design applikationer som [Revit](wikipedia:Revit.md), är baserade på konceptet [Arbetsbänk](wikipedia:Workbench.md). En arbetsbänk kan anses vara ett set verktyg, grupperade för en viss uppgift. I en traditionell möbelverkstad, så skulle du ha ett arbetsbord för den person som arbetar med trä, ett annat bord för den som arbetar med metalldelar, och kanske ett tredje för den som monterar ihop allting. @@ -112,3 +109,6 @@ Nya arbetsbänkar är under utveckling, håll utkik! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/sv diff --git a/wiki/translations/tr/3D_input_devices.md b/wiki/translations/tr/3D_input_devices.md index bd55dea66d..48c62bfbc9 100644 --- a/wiki/translations/tr/3D_input_devices.md +++ b/wiki/translations/tr/3D_input_devices.md @@ -1,5 +1,5 @@ # 3D input devices/tr - FreeCAD, 3D fareler gibi bazı özel giriş aygıtlarını destekler. Bunlar, kullanıcının nesneleri üç boyutlu olarak döndürmesini, çevirmesini ve yakınlaştırmasını sağlar. +FreeCAD, 3D fareler gibi bazı özel giriş aygıtlarını destekler. Bunlar, kullanıcının nesneleri üç boyutlu olarak döndürmesini, çevirmesini ve yakınlaştırmasını sağlar. ## Desteklenen donanım @@ -13,3 +13,6 @@
[category:Documentation](category:Documentation.md) + +--- +[documentation index](../README.md) > 3D input devices/tr diff --git a/wiki/translations/tr/3Dconnexion_input_devices.md b/wiki/translations/tr/3Dconnexion_input_devices.md index 676c2c79ce..bf88741d61 100644 --- a/wiki/translations/tr/3Dconnexion_input_devices.md +++ b/wiki/translations/tr/3Dconnexion_input_devices.md @@ -1,5 +1,4 @@ -# 3Dconnexion input devices/tr - 3Dconnexion SpaceNavigator {{TOCright}} +# 3Dconnexion SpaceNavigator {{TOCright}} 3Dconnexion input devices/tr
@@ -388,3 +387,6 @@ Belirli bir komutu bir düğmeyle bağlamak için, sol taraftaki düğmeyi seçi - Forum thread [Space navigator axis confusion](https://forum.freecadweb.org/viewtopic.php?f=8&t=57188) [Category:User Documentation](Category:User_Documentation.md) [Category:3rd Party](Category:3rd_Party.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > 3Dconnexion input devices/tr diff --git a/wiki/translations/tr/API_documentation.md b/wiki/translations/tr/API_documentation.md index 3571d43002..dd0fd5ed24 100644 --- a/wiki/translations/tr/API_documentation.md +++ b/wiki/translations/tr/API_documentation.md @@ -5,3 +5,6 @@ This category gathers article that list objects and methods available to the pyt **This section contains obsolete data, and is in the process of being transferred to autogenerated API documentation on http://www.freecadweb.org/api** [Category:Categories/tr](Category:Categories/tr.md) + +--- +[documentation index](../README.md) > API documentation/tr diff --git a/wiki/translations/tr/About_FreeCAD.md b/wiki/translations/tr/About_FreeCAD.md index 1cb4b5a8ce..b6f00a7f39 100644 --- a/wiki/translations/tr/About_FreeCAD.md +++ b/wiki/translations/tr/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/tr - - - +# About FreeCAD/tr
@@ -76,3 +73,6 @@ FreeCAD, gönüllü geliştiriciler ve kullanıcılar topluluğu tarafından kor [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/tr diff --git a/wiki/translations/tr/Arch_3DS.md b/wiki/translations/tr/Arch_3DS.md index a25a1254aa..0c18a0e648 100644 --- a/wiki/translations/tr/Arch_3DS.md +++ b/wiki/translations/tr/Arch_3DS.md @@ -1,9 +1,4 @@ # Arch 3DS/tr - - - - - Yapı tezgahı [3DS](https://en.wikipedia.org/wiki/.3ds) dosyalarının alınmasını destekler. 3DS formatı eski fakat internette hala yaygın olarak kullanılıyor. Ağ verisi ve malzeme bilgisi içerebilir. Şu anda, dosyada bulunan mesh nesnelerini FreeCAD mesh nesneleri olarak içe aktarır ancak henüz malzeme desteği sunmuyor. @@ -19,3 +14,6 @@ Yapı tezgahı [3DS](https://en.wikipedia.org/wiki/.3ds) dosyalarının alınmas [Category:User Documentation](Category:User_Documentation.md) [Category:Arch](Category:Arch.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch 3DS/tr diff --git a/wiki/translations/tr/Arch_API.md b/wiki/translations/tr/Arch_API.md index bbbb1a7c85..fc18743a49 100644 --- a/wiki/translations/tr/Arch_API.md +++ b/wiki/translations/tr/Arch_API.md @@ -1,5 +1,5 @@ # Arch API/tr - **(Kasım 2018) YAPI API, [https://www.freecadweb.org/api otomatikleştirilmiş API belgelerinde] listelenmiştir.** +**(Kasım 2018) YAPI API, [https://www.freecadweb.org/api otomatikleştirilmiş API belgelerinde] listelenmiştir.** API\'nin işlevleri [Yapı tezgahın](Arch_Workbench/tr.md) \'ın bir parçasıdır ve `Arch` modülü alındıktan sonra [makrolar](macros/tr.md) ve [Python](Python.md) konsolundan kullanılabilir. [Takviye Eklentisi](Reinforcement_Addon.md) kendi [Reinforcement API](Reinforcement_API.md) \'ye sahiptir. @@ -18,3 +18,6 @@ Arch.makeWall(baseline, length=None, width=200, height=2000) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch API/tr diff --git a/wiki/translations/tr/Arch_Add.md b/wiki/translations/tr/Arch_Add.md index 32204c47e5..719e5ff516 100644 --- a/wiki/translations/tr/Arch_Add.md +++ b/wiki/translations/tr/Arch_Add.md @@ -7,6 +7,8 @@ SeeAlso:[Mimari Kaldır](Arch_Remove/tr.md) --- +# Arch Add/tr +
@@ -120,11 +122,5 @@ Arch.addComponents(Wall2, Wall) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Add/tr diff --git a/wiki/translations/tr/Arch_Axis.md b/wiki/translations/tr/Arch_Axis.md index d03297ddec..a2fd4a0328 100644 --- a/wiki/translations/tr/Arch_Axis.md +++ b/wiki/translations/tr/Arch_Axis.md @@ -7,6 +7,8 @@ SeeAlso:[Axis System](Arch_AxisSystem.md), [Arch Grid](Arch_Grid.md) --- +# Arch Axis/tr +
@@ -101,5 +103,5 @@ FreeCAD.ActiveDocument.recompute()
- - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Axis/tr diff --git a/wiki/translations/tr/Arch_Equipment.md b/wiki/translations/tr/Arch_Equipment.md index 87eb3d8a22..a9cae0f120 100644 --- a/wiki/translations/tr/Arch_Equipment.md +++ b/wiki/translations/tr/Arch_Equipment.md @@ -7,6 +7,8 @@ SeeAlso:[Arch 3 views](Arch_3Views.md) --- +# Arch Equipment/tr + ## Description The Equipment tool offers you a simple and convenient way to insert non-structural, standalone elements such as pieces of furniture, hidro-sanitary equipments or electrical appliances to your projects. Equipments are based on [Part shapes](Part_Workbench.md), which allow them to benefit from the solidity and possibilities of BRep geometry, and generate nice views when rendered to plan and section views. @@ -65,11 +67,5 @@ Equip = Arch.makeEquipment(Box) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Equipment/tr diff --git a/wiki/translations/tr/Arch_Floor.md b/wiki/translations/tr/Arch_Floor.md index 92e99960ab..ed3d21cc2a 100644 --- a/wiki/translations/tr/Arch_Floor.md +++ b/wiki/translations/tr/Arch_Floor.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Building]], [[Arch BuildingPart]], [[Arch Site]] --- +# Arch Floor/tr + @@ -78,8 +80,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor/tr diff --git a/wiki/translations/tr/Arch_Module.md b/wiki/translations/tr/Arch_Module.md index fc5ba036ed..c0efc63a2b 100644 --- a/wiki/translations/tr/Arch_Module.md +++ b/wiki/translations/tr/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/tr 1. REDIRECT [Arch\_Workbench/tr](Arch_Workbench/tr.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/tr diff --git a/wiki/translations/tr/Arch_Remove.md b/wiki/translations/tr/Arch_Remove.md index 67861db459..b9949cda3c 100644 --- a/wiki/translations/tr/Arch_Remove.md +++ b/wiki/translations/tr/Arch_Remove.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Add]] --- +# Arch Remove/tr + @@ -77,8 +79,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove/tr diff --git a/wiki/translations/tr/Arch_SectionPlane.md b/wiki/translations/tr/Arch_SectionPlane.md index 06e7178c88..ae6cd1b63a 100644 --- a/wiki/translations/tr/Arch_SectionPlane.md +++ b/wiki/translations/tr/Arch_SectionPlane.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Shape2DView](Draft_Shape2DView.md), [TechDraw NewArch](TechDraw_NewArch.md) --- +# Arch SectionPlane/tr + @@ -112,11 +114,5 @@ Section3 = Arch.makeSectionPlane([Site]) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane/tr diff --git a/wiki/translations/tr/Arch_Structure.md b/wiki/translations/tr/Arch_Structure.md index 299c53a78c..9f7eef6d16 100644 --- a/wiki/translations/tr/Arch_Structure.md +++ b/wiki/translations/tr/Arch_Structure.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall/tr](Arch_Wall/tr.md), [Arch Rebar/tr](Arch_Rebar/tr.md) --- +# Arch Structure/tr + @@ -135,8 +137,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/tr diff --git a/wiki/translations/tr/Arch_Wall.md b/wiki/translations/tr/Arch_Wall.md index 83063629d1..abb872cfe3 100644 --- a/wiki/translations/tr/Arch_Wall.md +++ b/wiki/translations/tr/Arch_Wall.md @@ -8,6 +8,8 @@ SeeAlso:[Mimari Yapı](Arch_Structure/tr.md) --- +# Arch Wall/tr + @@ -141,11 +143,5 @@ Draft.move(Wall2, FreeCAD.Vector(0, -1000, 0)) FreeCAD.ActiveDocument.recompute() ``` - - - - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/tr diff --git a/wiki/translations/tr/Arch_Workbench.md b/wiki/translations/tr/Arch_Workbench.md index 3d1a56a620..44a77caebe 100644 --- a/wiki/translations/tr/Arch_Workbench.md +++ b/wiki/translations/tr/Arch_Workbench.md @@ -1,7 +1,4 @@ # Arch Workbench/tr - - - {{docnav/tr|[Taslak Tezgahı](Draft_Workbench/tr.md)|[FEM Tezgahı](FEM_Workbench/tr.md)}} Arch workbench icon @@ -151,3 +148,6 @@ The Arch module can be used in [Python](Python.md) scripts and [macros](macros.m [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/tr diff --git a/wiki/translations/tr/Assembly_project.md b/wiki/translations/tr/Assembly_project.md index 5614df6414..1665e4b39d 100644 --- a/wiki/translations/tr/Assembly_project.md +++ b/wiki/translations/tr/Assembly_project.md @@ -1,7 +1,4 @@ # Assembly project/tr - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -156,3 +153,6 @@ Interface to allow (external) (multi)physics simulation software to take control - \... [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Assembly project/tr diff --git a/wiki/translations/tr/Basic_Part_Design_Tutorial.md b/wiki/translations/tr/Basic_Part_Design_Tutorial.md index f9d951fc35..73eda60ca7 100644 --- a/wiki/translations/tr/Basic_Part_Design_Tutorial.md +++ b/wiki/translations/tr/Basic_Part_Design_Tutorial.md @@ -1,7 +1,4 @@ # Basic Part Design Tutorial/tr - - -
@@ -151,4 +148,7 @@ This tutorial and your model are complete. {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Part Design Tutorial/tr diff --git a/wiki/translations/tr/Basic_Part_Design_Tutorial_017.md b/wiki/translations/tr/Basic_Part_Design_Tutorial_017.md index f1c1dcec62..83598a49e4 100644 --- a/wiki/translations/tr/Basic_Part_Design_Tutorial_017.md +++ b/wiki/translations/tr/Basic_Part_Design_Tutorial_017.md @@ -1,2 +1,5 @@ # Basic Part Design Tutorial 017/tr 1. REDIRECT [Basic\_Part\_Design\_Tutorial/tr](Basic_Part_Design_Tutorial/tr.md) + +--- +[documentation index](../README.md) > Basic Part Design Tutorial 017/tr diff --git a/wiki/translations/tr/Branding.md b/wiki/translations/tr/Branding.md index 6e875cab23..f447ecb480 100644 --- a/wiki/translations/tr/Branding.md +++ b/wiki/translations/tr/Branding.md @@ -1,10 +1,4 @@ # Branding/tr - - - - - - {{TOCright}} ## Overview @@ -100,3 +94,6 @@ All listed tags are optional. [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Branding/tr diff --git a/wiki/translations/tr/Builtin_modules.md b/wiki/translations/tr/Builtin_modules.md index 6ca5187d34..d6e1ec588b 100644 --- a/wiki/translations/tr/Builtin_modules.md +++ b/wiki/translations/tr/Builtin_modules.md @@ -1,5 +1,5 @@ # Builtin modules/tr - **(October 2019) Do not edit these pages. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself by following [Source documentation](Source_documentation.md).** +**(October 2019) Do not edit these pages. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself by following [Source documentation](Source_documentation.md).** This page presents more in-depth information over the built-in FreeCAD modules, and what are the functions and properties availible to you. This page is not a complete list of all the contents of these modules, and, because of the fast evolution of FreeCAD, the information presented here might be slightly outdated, but it should give you a good overview of the possibilities. For complete list of the modules content, use the dir(module) function in the interpreter. @@ -25,3 +25,6 @@ This page presents more in-depth information over the built-in FreeCAD modules, }} [Category:API](Category:API.md) + +--- +[documentation index](../README.md) > [API](Category:API.md) > Builtin modules/tr diff --git a/wiki/translations/tr/CAM_project.md b/wiki/translations/tr/CAM_project.md index 4ee4e9687f..f5d4eba4c2 100644 --- a/wiki/translations/tr/CAM_project.md +++ b/wiki/translations/tr/CAM_project.md @@ -1,7 +1,10 @@ # CAM project/tr - CAM tezgahı ve projesi kullanımdan kaldırılmıştır. Bunun yerine [ CNC G-Kodu tezgahı](Path_Workbench/tr.md) bölümüne bakın. +CAM tezgahı ve projesi kullanımdan kaldırılmıştır. Bunun yerine [ CNC G-Kodu tezgahı](Path_Workbench/tr.md) bölümüne bakın. [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > CAM project/tr diff --git a/wiki/translations/tr/Category:API.md b/wiki/translations/tr/Category:API.md index 2a3c9c9c5d..59f13614b5 100644 --- a/wiki/translations/tr/Category:API.md +++ b/wiki/translations/tr/Category:API.md @@ -1,5 +1,4 @@ # Category:API/tr - **(November 2018) This information may be incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation].** This category gathers articles that list objects and methods available for [Python](Python.md) programming. @@ -9,3 +8,6 @@ This category gathers articles that list objects and methods available for [Pyth [Arch API/tr](Arch_API/tr.md) , [Builtin modules/tr](Builtin_modules/tr.md) , [Draft API/tr](Draft_API/tr.md) [Category:Categories/tr](Category:Categories/tr.md) + +--- +[documentation index](../README.md) > Category:API/tr diff --git a/wiki/translations/tr/Category:API_Documentation.md b/wiki/translations/tr/Category:API_Documentation.md index d8a399a84b..bf5570120f 100644 --- a/wiki/translations/tr/Category:API_Documentation.md +++ b/wiki/translations/tr/Category:API_Documentation.md @@ -6,3 +6,6 @@ This category gathers all articles documenting the python API of FreeCAD and its [Python/tr](Python/tr.md) [Category:Documentation/tr](Category:Documentation/tr.md) + +--- +[documentation index](../README.md) > Category:API Documentation/tr diff --git a/wiki/translations/tr/Category:Addons.md b/wiki/translations/tr/Category:Addons.md index 58a28243f2..d6daf520d8 100644 --- a/wiki/translations/tr/Category:Addons.md +++ b/wiki/translations/tr/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/tr - - Bu sayfa, bu wikide bir sayfaya sahip harici ek çalışma tezgahlarını listeler. Eklentiler, topluluk tarafından katkıda bulunan modüller veya tezgahlardır ve standart FreeCAD\'in bir parçası değildir. ### Contents: @@ -8,3 +6,6 @@ Bu sayfa, bu wikide bir sayfaya sahip harici ek çalışma tezgahlarını listel [Plot Axes/tr](Plot_Axes/tr.md) , [Plot Grid/tr](Plot_Grid/tr.md) , [Plot Labels/tr](Plot_Labels/tr.md) , [Plot Legend/tr](Plot_Legend/tr.md) , [Plot Module/tr](Plot_Module/tr.md) , [Plot Positions/tr](Plot_Positions/tr.md) , [Plot Series/tr](Plot_Series/tr.md) , [Ship Workbench/tr](Ship_Workbench/tr.md) , , [Category:Categories](Category:Categories.md) [Category:External Workbenches/tr](Category:External_Workbenches/tr.md) [Category:Macros/tr](Category:Macros/tr.md) + +--- +[documentation index](../README.md) > Category:Addons/tr diff --git a/wiki/translations/tr/Category:Administration.md b/wiki/translations/tr/Category:Administration.md index 57953bf819..9681bdb96a 100644 --- a/wiki/translations/tr/Category:Administration.md +++ b/wiki/translations/tr/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/tr](Template:Arch_Tools_navi/tr.md) , [Template:Draft Tools navi/tr](Template:Draft_Tools_navi/tr.md) , [Template:Drawing Tools navi/tr](Template:Drawing_Tools_navi/tr.md) , [Template:FEM Tools navi/tr](Template:FEM_Tools_navi/tr.md) , [Template:Mesh Tools navi/tr](Template:Mesh_Tools_navi/tr.md) , [Template:Navigation menu 2/tr](Template:Navigation_menu_2/tr.md) , [Template:OpenSCAD Tools navi/tr](Template:OpenSCAD_Tools_navi/tr.md) , [Template:Part Tools navi/tr](Template:Part_Tools_navi/tr.md) , [Template:PartDesign Tools navi/tr](Template:PartDesign_Tools_navi/tr.md) , [Template:Path Tools navi/tr](Template:Path_Tools_navi/tr.md) , [Template:Plot Tools navi/tr](Template:Plot_Tools_navi/tr.md) , [Template:Powerdocnavi/tr](Template:Powerdocnavi/tr.md) , [Template:PropertyData/tr](Template:PropertyData/tr.md) , [Template:PropertyView/tr](Template:PropertyView/tr.md) , [Template:Raytracing Tools navi/tr](Template:Raytracing_Tools_navi/tr.md) , [Template:Robot Tools navi/tr](Template:Robot_Tools_navi/tr.md) , [Template:Ship Tools navi/tr](Template:Ship_Tools_navi/tr.md) , [Template:Sketcher Tools navi/tr](Template:Sketcher_Tools_navi/tr.md) , [Tracker/tr](Tracker/tr.md) , [Category:Categories/tr](Category:Categories/tr.md) [Category:Wiki/tr](Category:Wiki/tr.md) + +--- +[documentation index](../README.md) > Category:Administration/tr diff --git a/wiki/translations/tr/Category:Arch.md b/wiki/translations/tr/Category:Arch.md index 51965224fb..0ee093ed89 100644 --- a/wiki/translations/tr/Category:Arch.md +++ b/wiki/translations/tr/Category:Arch.md @@ -6,3 +6,6 @@ Bu sayfa Mimari ve Yapı Bilgi Sistemi ile ilgilidir. [Arch 3DS/tr](Arch_3DS/tr.md) , [Arch Add/tr](Arch_Add/tr.md) , [Arch API/tr](Arch_API/tr.md) , [Arch Axis/tr](Arch_Axis/tr.md) , [Arch Equipment/tr](Arch_Equipment/tr.md) , [Arch Floor/tr](Arch_Floor/tr.md) , [Arch Remove/tr](Arch_Remove/tr.md) , [Arch SectionPlane/tr](Arch_SectionPlane/tr.md) , [Arch Structure/tr](Arch_Structure/tr.md) , [Template:Arch Tools navi/tr](Template:Arch_Tools_navi/tr.md) , [Arch Wall/tr](Arch_Wall/tr.md) , [Arch Workbench/tr](Arch_Workbench/tr.md) [Category:User Documentation/tr](Category:User_Documentation/tr.md) [Category:BIM/tr](Category:BIM/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Arch/tr diff --git a/wiki/translations/tr/Category:BIM.md b/wiki/translations/tr/Category:BIM.md index f18577a8be..09e373e3fb 100644 --- a/wiki/translations/tr/Category:BIM.md +++ b/wiki/translations/tr/Category:BIM.md @@ -4,3 +4,6 @@ This category is for pages related to building information management (BIM). ### Contents: [Category:User Documentation/tr](Category:User_Documentation/tr.md) [Category:Arch/tr](Category:Arch/tr.md) + +--- +[documentation index](../README.md) > Category:BIM/tr diff --git a/wiki/translations/tr/Category:Base.md b/wiki/translations/tr/Category:Base.md index afd7879180..5236dfd578 100644 --- a/wiki/translations/tr/Category:Base.md +++ b/wiki/translations/tr/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/tr](Category:User_Documentation/tr.md) + +--- +[documentation index](../README.md) > Category:Base/tr diff --git a/wiki/translations/tr/Category:Categories.md b/wiki/translations/tr/Category:Categories.md index a7dff127fc..b30d457b65 100644 --- a/wiki/translations/tr/Category:Categories.md +++ b/wiki/translations/tr/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w [API documentation/tr](API_documentation/tr.md) , [List of Commands/tr](List_of_Commands/tr.md) , , , , , , , , , , , , , , , , , [Category:Categories/tr](Category:Categories/tr.md) [Category:Addons/tr](Category:Addons/tr.md) [Category:Administration/tr](Category:Administration/tr.md) [Category:API/tr](Category:API/tr.md) [Category:Categories/tr](Category:Categories/tr.md) [Category:Command Reference/tr](Category:Command_Reference/tr.md) [Category:Developer/tr](Category:Developer/tr.md) [Category:Documentation/tr](Category:Documentation/tr.md) [Category:Help/tr](Category:Help/tr.md) [Category:Hubs/tr](Category:Hubs/tr.md) [Category:Image/tr](Category:Image/tr.md) [Category:Macros/tr](Category:Macros/tr.md) [Category:News/tr](Category:News/tr.md) [Category:Python Code/tr](Category:Python_Code/tr.md) [Category:Roadmap/tr](Category:Roadmap/tr.md) [Category:Template/tr](Category:Template/tr.md) [Category:Tutorials/tr](Category:Tutorials/tr.md) [Category:Wiki/tr](Category:Wiki/tr.md) + +--- +[documentation index](../README.md) > Category:Categories/tr diff --git a/wiki/translations/tr/Category:Command_Reference.md b/wiki/translations/tr/Category:Command_Reference.md index 8749e119aa..78f4083d8c 100644 --- a/wiki/translations/tr/Category:Command_Reference.md +++ b/wiki/translations/tr/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD command. [Arch Add/tr](Arch_Add/tr.md) , [Arch Axis/tr](Arch_Axis/tr.md) , [Arch Equipment/tr](Arch_Equipment/tr.md) , [Arch Floor/tr](Arch_Floor/tr.md) , [Arch Remove/tr](Arch_Remove/tr.md) , [Arch SectionPlane/tr](Arch_SectionPlane/tr.md) , [Arch Structure/tr](Arch_Structure/tr.md) , [Arch Wall/tr](Arch_Wall/tr.md) , [Draft AddConstruction/tr](Draft_AddConstruction/tr.md) , [Draft AddToGroup/tr](Draft_AddToGroup/tr.md) , [Draft ApplyStyle/tr](Draft_ApplyStyle/tr.md) , [Draft Arc/tr](Draft_Arc/tr.md) , [Draft Array/tr](Draft_Array/tr.md) , [Draft BezCurve/tr](Draft_BezCurve/tr.md) , [Draft BSpline/tr](Draft_BSpline/tr.md) , [Draft Circle/tr](Draft_Circle/tr.md) , [Draft Clone/tr](Draft_Clone/tr.md) , [Draft Dimension/tr](Draft_Dimension/tr.md) , [Draft Downgrade/tr](Draft_Downgrade/tr.md) , [Draft Draft2Sketch/tr](Draft_Draft2Sketch/tr.md) , [Draft Drawing/tr](Draft_Drawing/tr.md) , [Draft Edit/tr](Draft_Edit/tr.md) , [Draft Ellipse/tr](Draft_Ellipse/tr.md) , [Draft Facebinder/tr](Draft_Facebinder/tr.md) , [Draft FlipDimension/tr](Draft_FlipDimension/tr.md) , [Draft Heal/tr](Draft_Heal/tr.md) , [Draft Label/tr](Draft_Label/tr.md) , [Draft Line/tr](Draft_Line/tr.md) , [Draft Mirror/tr](Draft_Mirror/tr.md) , [Draft Move/tr](Draft_Move/tr.md) , [Draft Offset/tr](Draft_Offset/tr.md) , [Draft PathArray/tr](Draft_PathArray/tr.md) , [Draft Point/tr](Draft_Point/tr.md) , [Draft PointArray/tr](Draft_PointArray/tr.md) , [Draft Polygon/tr](Draft_Polygon/tr.md) , [Draft Rectangle/tr](Draft_Rectangle/tr.md) , [Draft Rotate/tr](Draft_Rotate/tr.md) , [Draft Scale/tr](Draft_Scale/tr.md) , [Draft SelectGroup/tr](Draft_SelectGroup/tr.md) , [Draft SelectPlane/tr](Draft_SelectPlane/tr.md) , [Draft Shape2DView/tr](Draft_Shape2DView/tr.md) , [Draft ShapeString/tr](Draft_ShapeString/tr.md) , [Draft ShowSnapBar/tr](Draft_ShowSnapBar/tr.md) , [Draft Snap Angle/tr](Draft_Snap_Angle/tr.md) , [Draft Snap Center/tr](Draft_Snap_Center/tr.md) , [Draft Snap Dimensions/tr](Draft_Snap_Dimensions/tr.md) , [Draft Snap Grid/tr](Draft_Snap_Grid/tr.md) , [Draft Snap Lock/tr](Draft_Snap_Lock/tr.md) , [Draft Snap Midpoint/tr](Draft_Snap_Midpoint/tr.md) , [Draft Snap Near/tr](Draft_Snap_Near/tr.md) , [Draft Snap Ortho/tr](Draft_Snap_Ortho/tr.md) , [Draft Snap Parallel/tr](Draft_Snap_Parallel/tr.md) , [Draft Snap Special/tr](Draft_Snap_Special/tr.md) , [Draft Snap WorkingPlane/tr](Draft_Snap_WorkingPlane/tr.md) , [Draft Text/tr](Draft_Text/tr.md) , [Draft ToggleConstructionMode/tr](Draft_ToggleConstructionMode/tr.md) , [Draft ToggleContinueMode/tr](Draft_ToggleContinueMode/tr.md) , [Draft ToggleDisplayMode/tr](Draft_ToggleDisplayMode/tr.md) , [Draft ToggleGrid/tr](Draft_ToggleGrid/tr.md) , [Draft Trimex/tr](Draft_Trimex/tr.md) , [Draft Upgrade/tr](Draft_Upgrade/tr.md) , [Draft Wire/tr](Draft_Wire/tr.md) , [Draft WireToBSpline/tr](Draft_WireToBSpline/tr.md) , [Template:GuiCommand/tr](Template:GuiCommand/tr.md) , [Part Box/tr](Part_Box/tr.md) , [Part Builder/tr](Part_Builder/tr.md) , [Part Ellipse/tr](Part_Ellipse/tr.md) , [Part Extrude/tr](Part_Extrude/tr.md) , [Part Line/tr](Part_Line/tr.md) , [Part Primitives/tr](Part_Primitives/tr.md) , [Part Prism/tr](Part_Prism/tr.md) , [PartDesign AdditiveBox/tr](PartDesign_AdditiveBox/tr.md) , [PartDesign AdditiveCone/tr](PartDesign_AdditiveCone/tr.md) , [PartDesign AdditiveCylinder/tr](PartDesign_AdditiveCylinder/tr.md) , [PartDesign AdditiveEllipsoid/tr](PartDesign_AdditiveEllipsoid/tr.md) , [PartDesign AdditiveLoft/tr](PartDesign_AdditiveLoft/tr.md) , [PartDesign AdditivePipe/tr](PartDesign_AdditivePipe/tr.md) , [PartDesign AdditivePrism/tr](PartDesign_AdditivePrism/tr.md) , [PartDesign AdditiveSphere/tr](PartDesign_AdditiveSphere/tr.md) , [PartDesign AdditiveTorus/tr](PartDesign_AdditiveTorus/tr.md) , [PartDesign AdditiveWedge/tr](PartDesign_AdditiveWedge/tr.md) , [PartDesign Body/tr](PartDesign_Body/tr.md) , [PartDesign Boolean/tr](PartDesign_Boolean/tr.md) , [PartDesign Chamfer/tr](PartDesign_Chamfer/tr.md) , [PartDesign Clone/tr](PartDesign_Clone/tr.md) , [PartDesign CompPrimitiveAdditive/tr](PartDesign_CompPrimitiveAdditive/tr.md) , [PartDesign CompPrimitiveSubtractive/tr](PartDesign_CompPrimitiveSubtractive/tr.md) , [PartDesign Draft/tr](PartDesign_Draft/tr.md) , [PartDesign Fillet/tr](PartDesign_Fillet/tr.md) , [PartDesign Groove/tr](PartDesign_Groove/tr.md) , [PartDesign Hole/tr](PartDesign_Hole/tr.md) , [PartDesign InvoluteGear/tr](PartDesign_InvoluteGear/tr.md) , [PartDesign Line/tr](PartDesign_Line/tr.md) , [PartDesign LinearPattern/tr](PartDesign_LinearPattern/tr.md) , [PartDesign Mirrored/tr](PartDesign_Mirrored/tr.md) , [PartDesign MoveFeature/tr](PartDesign_MoveFeature/tr.md) , [PartDesign MoveFeatureInTree/tr](PartDesign_MoveFeatureInTree/tr.md) , [PartDesign MoveTip/tr](PartDesign_MoveTip/tr.md) , [PartDesign MultiTransform/tr](PartDesign_MultiTransform/tr.md) , [PartDesign NewSketch/tr](PartDesign_NewSketch/tr.md) , [PartDesign Pad/tr](PartDesign_Pad/tr.md) , [PartDesign Plane/tr](PartDesign_Plane/tr.md) , [PartDesign Pocket/tr](PartDesign_Pocket/tr.md) , [PartDesign Point/tr](PartDesign_Point/tr.md) , [PartDesign PolarPattern/tr](PartDesign_PolarPattern/tr.md) , [PartDesign Revolution/tr](PartDesign_Revolution/tr.md) , [PartDesign ShapeBinder/tr](PartDesign_ShapeBinder/tr.md) , [PartDesign SubtractiveBox/tr](PartDesign_SubtractiveBox/tr.md) , [PartDesign SubtractiveCone/tr](PartDesign_SubtractiveCone/tr.md) , [PartDesign SubtractiveCylinder/tr](PartDesign_SubtractiveCylinder/tr.md) , [PartDesign SubtractiveEllipsoid/tr](PartDesign_SubtractiveEllipsoid/tr.md) , [PartDesign SubtractiveLoft/tr](PartDesign_SubtractiveLoft/tr.md) , [PartDesign SubtractivePipe/tr](PartDesign_SubtractivePipe/tr.md) , [PartDesign SubtractivePrism/tr](PartDesign_SubtractivePrism/tr.md) , [PartDesign SubtractiveSphere/tr](PartDesign_SubtractiveSphere/tr.md) , [PartDesign SubtractiveTorus/tr](PartDesign_SubtractiveTorus/tr.md) , [PartDesign SubtractiveWedge/tr](PartDesign_SubtractiveWedge/tr.md) , [PartDesign Thickness/tr](PartDesign_Thickness/tr.md) , [PartDesign WizardShaft/tr](PartDesign_WizardShaft/tr.md) , [Path Helix/tr](Path_Helix/tr.md) , [Path MillFace/tr](Path_MillFace/tr.md) , [Plot Axes/tr](Plot_Axes/tr.md) , [Plot Grid/tr](Plot_Grid/tr.md) , [Plot Labels/tr](Plot_Labels/tr.md) , [Plot Legend/tr](Plot_Legend/tr.md) , [Plot Positions/tr](Plot_Positions/tr.md) , [Plot Series/tr](Plot_Series/tr.md) , [Robot CreateRobot/tr](Robot_CreateRobot/tr.md) , [Robot CreateTrajectory/tr](Robot_CreateTrajectory/tr.md) , [Robot Export/tr](Robot_Export/tr.md) , [Robot RestoreHomePos/tr](Robot_RestoreHomePos/tr.md) , [Robot SetDefaultOrientation/tr](Robot_SetDefaultOrientation/tr.md) , [Robot SetDefaultValues/tr](Robot_SetDefaultValues/tr.md) , [Robot SetHomePos/tr](Robot_SetHomePos/tr.md) , [Robot Simulate/tr](Robot_Simulate/tr.md) , [Ship Area/tr](Ship_Area/tr.md) , [Sketcher Clone/tr](Sketcher_Clone/tr.md) , [Sketcher EditSketch/tr](Sketcher_EditSketch/tr.md) , [Sketcher LeaveSketch/tr](Sketcher_LeaveSketch/tr.md) , [Sketcher MapSketch/tr](Sketcher_MapSketch/tr.md) , [Sketcher NewSketch/tr](Sketcher_NewSketch/tr.md) , [Sketcher ReorientSketch/tr](Sketcher_ReorientSketch/tr.md) , [Sketcher ViewSketch/tr](Sketcher_ViewSketch/tr.md) , [Std AddonMgr/tr](Std_AddonMgr/tr.md) , [Std Group/tr](Std_Group/tr.md) , [Std Part/tr](Std_Part/tr.md) [Category:Categories/tr](Category:Categories/tr.md) + +--- +[documentation index](../README.md) > Category:Command Reference/tr diff --git a/wiki/translations/tr/Category:Common_Questions.md b/wiki/translations/tr/Category:Common_Questions.md index 076b221a9a..0c9b809231 100644 --- a/wiki/translations/tr/Category:Common_Questions.md +++ b/wiki/translations/tr/Category:Common_Questions.md @@ -4,3 +4,6 @@ This category has links to common questions on how to do something in FC. This i ### Contents: [Feature editing/tr](Feature_editing/tr.md) , [Help FreeCAD/tr](Help_FreeCAD/tr.md) , [Import Export Preferences/tr](Import_Export_Preferences/tr.md) , [Installing on Linux/tr](Installing_on_Linux/tr.md) , [Video tutorials/tr](Video_tutorials/tr.md) + +--- +[documentation index](../README.md) > Category:Common Questions/tr diff --git a/wiki/translations/tr/Category:Developer.md b/wiki/translations/tr/Category:Developer.md index 9a89a6ab56..c67c61f5dc 100644 --- a/wiki/translations/tr/Category:Developer.md +++ b/wiki/translations/tr/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Compile on Cygwin/tr](Compile_on_Cygwin/tr.md) , [Compile on MacOS/tr](Compile_on_MacOS/tr.md) , [Compile on MinGW/tr](Compile_on_MinGW/tr.md) , [Compile on Windows/tr](Compile_on_Windows/tr.md) , [Contributors/tr](Contributors/tr.md) [Category:Categories/tr](Category:Categories/tr.md) + +--- +[documentation index](../README.md) > Category:Developer/tr diff --git a/wiki/translations/tr/Category:Developer_Documentation.md b/wiki/translations/tr/Category:Developer_Documentation.md index 32c76de08c..9b2ef04007 100644 --- a/wiki/translations/tr/Category:Developer_Documentation.md +++ b/wiki/translations/tr/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Branding/tr](Branding/tr.md) , [Code snippets/tr](Code_snippets/tr.md) , [Command/tr](Command/tr.md) , [Compile on Cygwin/tr](Compile_on_Cygwin/tr.md) , [Compile on MacOS/tr](Compile_on_MacOS/tr.md) , [Compile on MinGW/tr](Compile_on_MinGW/tr.md) , [Compile on Windows/tr](Compile_on_Windows/tr.md) , [Debugging/tr](Debugging/tr.md) , [Dialog creation/tr](Dialog_creation/tr.md) , [Embedding FreeCAD/tr](Embedding_FreeCAD/tr.md) , [Embedding FreeCADGui/tr](Embedding_FreeCADGui/tr.md) , [Extra python modules/tr](Extra_python_modules/tr.md) , [FreeCAD Build Tool/tr](FreeCAD_Build_Tool/tr.md) , [FreeCAD Scripting Basics/tr](FreeCAD_Scripting_Basics/tr.md) , [FreeCAD vector math library/tr](FreeCAD_vector_math_library/tr.md) , [Help FreeCAD/tr](Help_FreeCAD/tr.md) , [How to install macros/tr](How_to_install_macros/tr.md) , [Installing more workbenches/tr](Installing_more_workbenches/tr.md) , [Installing on Linux/tr](Installing_on_Linux/tr.md) , [Introduction to Python/tr](Introduction_to_Python/tr.md) , [Licence/tr](Licence/tr.md) , [Line drawing function/tr](Line_drawing_function/tr.md) , [Localisation Sidebar/tr](Localisation_Sidebar/tr.md) , [Localisation/tr](Localisation/tr.md) , [Macros/tr](Macros/tr.md) , [Mesh Scripting/tr](Mesh_Scripting/tr.md) , [Mesh to Part/tr](Mesh_to_Part/tr.md) , [Pivy/tr](Pivy/tr.md) , [Property/tr](Property/tr.md) , [PySide/tr](PySide/tr.md) , [Python scripting tutorial/tr](Python_scripting_tutorial/tr.md) , [Python/tr](Python/tr.md) , [PythonOCC/tr](PythonOCC/tr.md) , [Scenegraph/tr](Scenegraph/tr.md) , [Scripted objects/tr](Scripted_objects/tr.md) , [Source documentation/tr](Source_documentation/tr.md) , [Start up and Configuration/tr](Start_up_and_Configuration/tr.md) , [Testing/tr](Testing/tr.md) , [Third Party Libraries/tr](Third_Party_Libraries/tr.md) , [Third Party Tools/tr](Third_Party_Tools/tr.md) , [Topological data scripting/tr](Topological_data_scripting/tr.md) , [Tracker/tr](Tracker/tr.md) [Category:Documentation/tr](Category:Documentation/tr.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/tr diff --git a/wiki/translations/tr/Category:Documentation.md b/wiki/translations/tr/Category:Documentation.md index 0f00361be9..124721c635 100644 --- a/wiki/translations/tr/Category:Documentation.md +++ b/wiki/translations/tr/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [3D input devices/tr](3D_input_devices/tr.md) , [Help FreeCAD/tr](Help_FreeCAD/tr.md) , [Main Page/tr](Main_Page/tr.md) , [Online Help Toc/tr](Online_Help_Toc/tr.md) , [Release notes 0.15/tr](Release_notes_0.15/tr.md) , [Release notes 0.17/tr](Release_notes_0.17/tr.md) , , , , , , [Category:Categories/tr](Category:Categories/tr.md) [Category:API Documentation/tr](Category:API_Documentation/tr.md) [Category:Developer Documentation/tr](Category:Developer_Documentation/tr.md) [Category:Poweruser Documentation/tr](Category:Poweruser_Documentation/tr.md) [Category:Screenshots/tr](Category:Screenshots/tr.md) [Category:User Documentation/tr](Category:User_Documentation/tr.md) [Category:Wiki/tr](Category:Wiki/tr.md) + +--- +[documentation index](../README.md) > Category:Documentation/tr diff --git a/wiki/translations/tr/Category:Draft.md b/wiki/translations/tr/Category:Draft.md index 5197496ab5..cf289915d6 100644 --- a/wiki/translations/tr/Category:Draft.md +++ b/wiki/translations/tr/Category:Draft.md @@ -4,3 +4,6 @@ [Draft AddConstruction/tr](Draft_AddConstruction/tr.md) , [Draft AddToGroup/tr](Draft_AddToGroup/tr.md) , [Draft API/tr](Draft_API/tr.md) , [Draft ApplyStyle/tr](Draft_ApplyStyle/tr.md) , [Draft Arc/tr](Draft_Arc/tr.md) , [Draft Array/tr](Draft_Array/tr.md) , [Draft BezCurve/tr](Draft_BezCurve/tr.md) , [Draft BSpline/tr](Draft_BSpline/tr.md) , [Draft Circle/tr](Draft_Circle/tr.md) , [Draft Clone/tr](Draft_Clone/tr.md) , [Draft Constrain/tr](Draft_Constrain/tr.md) , [Draft DAT/tr](Draft_DAT/tr.md) , [Draft Dimension/tr](Draft_Dimension/tr.md) , [Draft Downgrade/tr](Draft_Downgrade/tr.md) , [Draft Draft2Sketch/tr](Draft_Draft2Sketch/tr.md) , [Draft Drawing/tr](Draft_Drawing/tr.md) , [Draft DXF/tr](Draft_DXF/tr.md) , [Draft Edit/tr](Draft_Edit/tr.md) , [Draft Ellipse/tr](Draft_Ellipse/tr.md) , [Draft Facebinder/tr](Draft_Facebinder/tr.md) , [Draft FlipDimension/tr](Draft_FlipDimension/tr.md) , [Draft Heal/tr](Draft_Heal/tr.md) , [Draft Label/tr](Draft_Label/tr.md) , [Draft Line/tr](Draft_Line/tr.md) , [Draft Mirror/tr](Draft_Mirror/tr.md) , [Draft Move/tr](Draft_Move/tr.md) , [Draft Offset/tr](Draft_Offset/tr.md) , [Draft PathArray/tr](Draft_PathArray/tr.md) , [Draft Pattern/tr](Draft_Pattern/tr.md) , [Draft Point/tr](Draft_Point/tr.md) , [Draft PointArray/tr](Draft_PointArray/tr.md) , [Draft Polygon/tr](Draft_Polygon/tr.md) , [Draft Rectangle/tr](Draft_Rectangle/tr.md) , [Draft Rotate/tr](Draft_Rotate/tr.md) , [Draft Scale/tr](Draft_Scale/tr.md) , [Draft SelectGroup/tr](Draft_SelectGroup/tr.md) , [Draft SelectPlane/tr](Draft_SelectPlane/tr.md) , [Draft Shape2DView/tr](Draft_Shape2DView/tr.md) , [Draft ShapeString/tr](Draft_ShapeString/tr.md) , [Draft ShowSnapBar/tr](Draft_ShowSnapBar/tr.md) , [Draft Snap Angle/tr](Draft_Snap_Angle/tr.md) , [Draft Snap Center/tr](Draft_Snap_Center/tr.md) , [Draft Snap Dimensions/tr](Draft_Snap_Dimensions/tr.md) , [Draft Snap Grid/tr](Draft_Snap_Grid/tr.md) , [Draft Snap Lock/tr](Draft_Snap_Lock/tr.md) , [Draft Snap Midpoint/tr](Draft_Snap_Midpoint/tr.md) , [Draft Snap Near/tr](Draft_Snap_Near/tr.md) , [Draft Snap Ortho/tr](Draft_Snap_Ortho/tr.md) , [Draft Snap Parallel/tr](Draft_Snap_Parallel/tr.md) , [Draft Snap Special/tr](Draft_Snap_Special/tr.md) , [Draft Snap WorkingPlane/tr](Draft_Snap_WorkingPlane/tr.md) , [Draft Snap/tr](Draft_Snap/tr.md) , [Draft SVG/tr](Draft_SVG/tr.md) , [Draft Text/tr](Draft_Text/tr.md) , [Draft ToggleConstructionMode/tr](Draft_ToggleConstructionMode/tr.md) , [Draft ToggleContinueMode/tr](Draft_ToggleContinueMode/tr.md) , [Draft ToggleDisplayMode/tr](Draft_ToggleDisplayMode/tr.md) , [Draft ToggleGrid/tr](Draft_ToggleGrid/tr.md) , [Template:Draft Tools navi/tr](Template:Draft_Tools_navi/tr.md) , [Draft Trimex/tr](Draft_Trimex/tr.md) , [Draft tutorial/tr](Draft_tutorial/tr.md) , [Draft Upgrade/tr](Draft_Upgrade/tr.md) , [Draft Wire/tr](Draft_Wire/tr.md) , [Draft WireToBSpline/tr](Draft_WireToBSpline/tr.md) , [Draft Workbench/tr](Draft_Workbench/tr.md) [Category:User Documentation/tr](Category:User_Documentation/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Draft/tr diff --git a/wiki/translations/tr/Category:Drawing.md b/wiki/translations/tr/Category:Drawing.md index d3757d16f5..fc18643cca 100644 --- a/wiki/translations/tr/Category:Drawing.md +++ b/wiki/translations/tr/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/tr](Drawing_Workbenc [Template:Drawing Tools navi/tr](Template:Drawing_Tools_navi/tr.md) , [Drawing Workbench/tr](Drawing_Workbench/tr.md) [Category:Obsolete Workbenches/tr](Category:Obsolete_Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Drawing/tr diff --git a/wiki/translations/tr/Category:External_Workbenches.md b/wiki/translations/tr/Category:External_Workbenches.md index 6c2c7e9db8..47c160633c 100644 --- a/wiki/translations/tr/Category:External_Workbenches.md +++ b/wiki/translations/tr/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [Plot Axes/tr](Plot_Axes/tr.md) , [Plot Grid/tr](Plot_Grid/tr.md) , [Plot Labels/tr](Plot_Labels/tr.md) , [Plot Legend/tr](Plot_Legend/tr.md) , [Plot Module/tr](Plot_Module/tr.md) , [Plot Positions/tr](Plot_Positions/tr.md) , [Plot Series/tr](Plot_Series/tr.md) , [Ship Workbench/tr](Ship_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) [Category:Addons/tr](Category:Addons/tr.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/tr diff --git a/wiki/translations/tr/Category:FEM.md b/wiki/translations/tr/Category:FEM.md index 9bded02d1d..72740848ac 100644 --- a/wiki/translations/tr/Category:FEM.md +++ b/wiki/translations/tr/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/tr](FEM_Workbench/tr.md) [FEM Concrete/tr](FEM_Concrete/tr.md) , [Template:FEM Tools navi/tr](Template:FEM_Tools_navi/tr.md) , [FEM Workbench/tr](FEM_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:FEM/tr diff --git a/wiki/translations/tr/Category:File_Formats.md b/wiki/translations/tr/Category:File_Formats.md index a1a044e587..6849df7ff5 100644 --- a/wiki/translations/tr/Category:File_Formats.md +++ b/wiki/translations/tr/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [Arch 3DS/tr](Arch_3DS/tr.md) , [Draft DAT/tr](Draft_DAT/tr.md) , [Draft DXF/tr](Draft_DXF/tr.md) , [Draft SVG/tr](Draft_SVG/tr.md) , [FreeCAD and DXF Import/tr](FreeCAD_and_DXF_Import/tr.md) , [Import Export Preferences/tr](Import_Export_Preferences/tr.md) , [Import Export/tr](Import_Export/tr.md) + +--- +[documentation index](../README.md) > Category:File Formats/tr diff --git a/wiki/translations/tr/Category:Glossary.md b/wiki/translations/tr/Category:Glossary.md index 2edf1b1ab4..0b865d07e0 100644 --- a/wiki/translations/tr/Category:Glossary.md +++ b/wiki/translations/tr/Category:Glossary.md @@ -4,3 +4,6 @@ This category tracks pages that explain definitions of words related to FreeCAD ### Contents: [Command/tr](Command/tr.md) , [Glossary/tr](Glossary/tr.md) , [Python/tr](Python/tr.md) + +--- +[documentation index](../README.md) > Category:Glossary/tr diff --git a/wiki/translations/tr/Category:Help.md b/wiki/translations/tr/Category:Help.md index b6f45ab501..7810a4b596 100644 --- a/wiki/translations/tr/Category:Help.md +++ b/wiki/translations/tr/Category:Help.md @@ -6,3 +6,6 @@ Bu kategori, MediaWiki ve düzenleme ile ilgili yardım belgelerini içerir. [Help/tr](Help/tr.md) [Category:Categories/tr](Category:Categories/tr.md) + +--- +[documentation index](../README.md) > Category:Help/tr diff --git a/wiki/translations/tr/Category:Hubs.md b/wiki/translations/tr/Category:Hubs.md index ffb6a33476..d3aca279ec 100644 --- a/wiki/translations/tr/Category:Hubs.md +++ b/wiki/translations/tr/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Power users hub/tr](Power_users_hub/tr.md) , [User hub/tr](User_hub/tr.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Hubs/tr diff --git a/wiki/translations/tr/Category:Icon.md b/wiki/translations/tr/Category:Icon.md index 8a6c74a43c..8d18ec24d6 100644 --- a/wiki/translations/tr/Category:Icon.md +++ b/wiki/translations/tr/Category:Icon.md @@ -4,3 +4,6 @@ Bu kategori **Simge görüntülerini** içerir. ### Contents: [Category:Image/tr](Category:Image/tr.md) + +--- +[documentation index](../README.md) > Category:Icon/tr diff --git a/wiki/translations/tr/Category:Image.md b/wiki/translations/tr/Category:Image.md index 67f8102165..ea4a3058d3 100644 --- a/wiki/translations/tr/Category:Image.md +++ b/wiki/translations/tr/Category:Image.md @@ -6,3 +6,6 @@ Bu kategori **Görüntülerin** üst kategorisidir. Herhangi bir dosya içermeme [Image Workbench/tr](Image_Workbench/tr.md) , [Category:Categories/tr](Category:Categories/tr.md) [Category:User Documentation/tr](Category:User_Documentation/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) [Category:Icon/tr](Category:Icon/tr.md) + +--- +[documentation index](../README.md) > Category:Image/tr diff --git a/wiki/translations/tr/Category:Inspection.md b/wiki/translations/tr/Category:Inspection.md index 66884a6227..941c3b2571 100644 --- a/wiki/translations/tr/Category:Inspection.md +++ b/wiki/translations/tr/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Inspection Workbench/tr](Inspection_Workbench/tr.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection/tr diff --git a/wiki/translations/tr/Category:Macros.md b/wiki/translations/tr/Category:Macros.md index b3e32a8c9b..0812d09dde 100644 --- a/wiki/translations/tr/Category:Macros.md +++ b/wiki/translations/tr/Category:Macros.md @@ -6,3 +6,6 @@ This category contains macros to extend your FreeCAD installation with new funct [Macro Fonts Win10 PYMP/tr](Macro_Fonts_Win10_PYMP/tr.md) , [Macros/tr](Macros/tr.md) [Category:Addons](Category:Addons.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Macros/tr diff --git a/wiki/translations/tr/Category:Mesh.md b/wiki/translations/tr/Category:Mesh.md index db11b5adcc..f2a50fa6c9 100644 --- a/wiki/translations/tr/Category:Mesh.md +++ b/wiki/translations/tr/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/tr](Mesh_Workbench/tr. [Mesh Scripting/tr](Mesh_Scripting/tr.md) , [Mesh to Part/tr](Mesh_to_Part/tr.md) , [Template:Mesh Tools navi/tr](Template:Mesh_Tools_navi/tr.md) , [Mesh Workbench/tr](Mesh_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Mesh/tr diff --git a/wiki/translations/tr/Category:News.md b/wiki/translations/tr/Category:News.md index c657a8cf95..33d09f93e7 100644 --- a/wiki/translations/tr/Category:News.md +++ b/wiki/translations/tr/Category:News.md @@ -6,3 +6,6 @@ This category contains articles with news and messages about FreeCAD. [Release notes 0.15/tr](Release_notes_0.15/tr.md) , [Release notes 0.17/tr](Release_notes_0.17/tr.md) [Category:Categories/tr](Category:Categories/tr.md) + +--- +[documentation index](../README.md) > Category:News/tr diff --git a/wiki/translations/tr/Category:Obsolete_Workbenches.md b/wiki/translations/tr/Category:Obsolete_Workbenches.md index 250c942a0a..a9d2f9d485 100644 --- a/wiki/translations/tr/Category:Obsolete_Workbenches.md +++ b/wiki/translations/tr/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/tr](Drawing_Workbenc [Complete Workbench/tr](Complete_Workbench/tr.md) , [Drawing Workbench/tr](Drawing_Workbench/tr.md) , , [Category:Obsolete Workbenches/tr](Category:Obsolete_Workbenches/tr.md) [Category:Drawing/tr](Category:Drawing/tr.md) [Category:Obsolete Workbenches/tr](Category:Obsolete_Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/tr diff --git a/wiki/translations/tr/Category:Obsolete_page.md b/wiki/translations/tr/Category:Obsolete_page.md index 09dcd4ec9f..b9c4b68fa6 100644 --- a/wiki/translations/tr/Category:Obsolete_page.md +++ b/wiki/translations/tr/Category:Obsolete_page.md @@ -1,6 +1,7 @@ # Category:Obsolete page/tr - - Bu kategori, mevcut FreeCAD sürümüyle ilgili olarak kullanılmayan sayfaları listeler. FreeCAD forumunda tartıştıktan sonra, silinmeye adaylar \... ### Contents: + +--- +[documentation index](../README.md) > Category:Obsolete page/tr diff --git a/wiki/translations/tr/Category:OpenSCAD.md b/wiki/translations/tr/Category:OpenSCAD.md index 42656df64b..61f9160905 100644 --- a/wiki/translations/tr/Category:OpenSCAD.md +++ b/wiki/translations/tr/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/tr](OpenSCAD_Workb [Template:OpenSCAD Tools navi/tr](Template:OpenSCAD_Tools_navi/tr.md) , [OpenSCAD Workbench/tr](OpenSCAD_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/tr diff --git a/wiki/translations/tr/Category:Part.md b/wiki/translations/tr/Category:Part.md index 48e237f64a..6ab875d70a 100644 --- a/wiki/translations/tr/Category:Part.md +++ b/wiki/translations/tr/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/tr](Part_Workbench/tr.m [Draft ShapeString tutorial/tr](Draft_ShapeString_tutorial/tr.md) , [Part Box/tr](Part_Box/tr.md) , [Part Builder/tr](Part_Builder/tr.md) , [Part Ellipse/tr](Part_Ellipse/tr.md) , [Part Extrude/tr](Part_Extrude/tr.md) , [Part Line/tr](Part_Line/tr.md) , [Part Module/tr](Part_Module/tr.md) , [Part Primitives/tr](Part_Primitives/tr.md) , [Part Prism/tr](Part_Prism/tr.md) , [Template:Part Tools navi/tr](Template:Part_Tools_navi/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Part/tr diff --git a/wiki/translations/tr/Category:PartDesign.md b/wiki/translations/tr/Category:PartDesign.md index 33e92cbf30..b14f82dcde 100644 --- a/wiki/translations/tr/Category:PartDesign.md +++ b/wiki/translations/tr/Category:PartDesign.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/tr](PartDesign_Wo [Basic Part Design Tutorial/tr](Basic_Part_Design_Tutorial/tr.md) , [Creating a simple part with PartDesign/tr](Creating_a_simple_part_with_PartDesign/tr.md) , [Draft ShapeString tutorial/tr](Draft_ShapeString_tutorial/tr.md) , [Feature editing/tr](Feature_editing/tr.md) , [PartDesign AdditiveBox/tr](PartDesign_AdditiveBox/tr.md) , [PartDesign AdditiveCone/tr](PartDesign_AdditiveCone/tr.md) , [PartDesign AdditiveCylinder/tr](PartDesign_AdditiveCylinder/tr.md) , [PartDesign AdditiveEllipsoid/tr](PartDesign_AdditiveEllipsoid/tr.md) , [PartDesign AdditiveLoft/tr](PartDesign_AdditiveLoft/tr.md) , [PartDesign AdditivePipe/tr](PartDesign_AdditivePipe/tr.md) , [PartDesign AdditivePrism/tr](PartDesign_AdditivePrism/tr.md) , [PartDesign AdditiveSphere/tr](PartDesign_AdditiveSphere/tr.md) , [PartDesign AdditiveTorus/tr](PartDesign_AdditiveTorus/tr.md) , [PartDesign AdditiveWedge/tr](PartDesign_AdditiveWedge/tr.md) , [PartDesign Body/tr](PartDesign_Body/tr.md) , [PartDesign Boolean/tr](PartDesign_Boolean/tr.md) , [PartDesign Chamfer/tr](PartDesign_Chamfer/tr.md) , [PartDesign Clone/tr](PartDesign_Clone/tr.md) , [PartDesign CompPrimitiveAdditive/tr](PartDesign_CompPrimitiveAdditive/tr.md) , [PartDesign CompPrimitiveSubtractive/tr](PartDesign_CompPrimitiveSubtractive/tr.md) , [PartDesign Draft/tr](PartDesign_Draft/tr.md) , [PartDesign Fillet/tr](PartDesign_Fillet/tr.md) , [PartDesign Groove/tr](PartDesign_Groove/tr.md) , [PartDesign Hole/tr](PartDesign_Hole/tr.md) , [PartDesign InvoluteGear/tr](PartDesign_InvoluteGear/tr.md) , [PartDesign Line/tr](PartDesign_Line/tr.md) , [PartDesign LinearPattern/tr](PartDesign_LinearPattern/tr.md) , [PartDesign Mirrored/tr](PartDesign_Mirrored/tr.md) , [PartDesign MoveFeature/tr](PartDesign_MoveFeature/tr.md) , [PartDesign MoveFeatureInTree/tr](PartDesign_MoveFeatureInTree/tr.md) , [PartDesign MoveTip/tr](PartDesign_MoveTip/tr.md) , [PartDesign MultiTransform/tr](PartDesign_MultiTransform/tr.md) , [PartDesign NewSketch/tr](PartDesign_NewSketch/tr.md) , [PartDesign Pad/tr](PartDesign_Pad/tr.md) , [PartDesign Plane/tr](PartDesign_Plane/tr.md) , [PartDesign Pocket/tr](PartDesign_Pocket/tr.md) , [PartDesign Point/tr](PartDesign_Point/tr.md) , [PartDesign PolarPattern/tr](PartDesign_PolarPattern/tr.md) , [PartDesign Preferences/tr](PartDesign_Preferences/tr.md) , [PartDesign Revolution/tr](PartDesign_Revolution/tr.md) , [PartDesign ShapeBinder/tr](PartDesign_ShapeBinder/tr.md) , [PartDesign SubtractiveBox/tr](PartDesign_SubtractiveBox/tr.md) , [PartDesign SubtractiveCone/tr](PartDesign_SubtractiveCone/tr.md) , [PartDesign SubtractiveCylinder/tr](PartDesign_SubtractiveCylinder/tr.md) , [PartDesign SubtractiveEllipsoid/tr](PartDesign_SubtractiveEllipsoid/tr.md) , [PartDesign SubtractiveLoft/tr](PartDesign_SubtractiveLoft/tr.md) , [PartDesign SubtractivePipe/tr](PartDesign_SubtractivePipe/tr.md) , [PartDesign SubtractivePrism/tr](PartDesign_SubtractivePrism/tr.md) , [PartDesign SubtractiveSphere/tr](PartDesign_SubtractiveSphere/tr.md) , [PartDesign SubtractiveTorus/tr](PartDesign_SubtractiveTorus/tr.md) , [PartDesign SubtractiveWedge/tr](PartDesign_SubtractiveWedge/tr.md) , [PartDesign Thickness/tr](PartDesign_Thickness/tr.md) , [Template:PartDesign Tools navi/tr](Template:PartDesign_Tools_navi/tr.md) , [PartDesign WizardShaft/tr](PartDesign_WizardShaft/tr.md) , [PartDesign Workbench/tr](PartDesign_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:PartDesign/tr diff --git a/wiki/translations/tr/Category:Path.md b/wiki/translations/tr/Category:Path.md index 7da4b040c3..eee1bfdc64 100644 --- a/wiki/translations/tr/Category:Path.md +++ b/wiki/translations/tr/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/tr](PartDesign_Wo [Path Helix/tr](Path_Helix/tr.md) , [Path MillFace/tr](Path_MillFace/tr.md) , [Template:Path Tools navi/tr](Template:Path_Tools_navi/tr.md) , [Path Workbench/tr](Path_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Path/tr diff --git a/wiki/translations/tr/Category:Plot.md b/wiki/translations/tr/Category:Plot.md index 22a044bcdc..83d7f0bb7f 100644 --- a/wiki/translations/tr/Category:Plot.md +++ b/wiki/translations/tr/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/tr](Plot_Workbench/tr.m [Plot Axes/tr](Plot_Axes/tr.md) , [Plot Grid/tr](Plot_Grid/tr.md) , [Plot Labels/tr](Plot_Labels/tr.md) , [Plot Legend/tr](Plot_Legend/tr.md) , [Plot Module/tr](Plot_Module/tr.md) , [Plot Positions/tr](Plot_Positions/tr.md) , [Plot Series/tr](Plot_Series/tr.md) , [Template:Plot Tools navi/tr](Template:Plot_Tools_navi/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Plot/tr diff --git a/wiki/translations/tr/Category:Points.md b/wiki/translations/tr/Category:Points.md index 6bfadb0b45..22f31cdb5c 100644 --- a/wiki/translations/tr/Category:Points.md +++ b/wiki/translations/tr/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/tr](Points_Workbench/ [Points Workbench/tr](Points_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Points/tr diff --git a/wiki/translations/tr/Category:Poweruser_Documentation.md b/wiki/translations/tr/Category:Poweruser_Documentation.md index ef88b5acfc..87794a40e7 100644 --- a/wiki/translations/tr/Category:Poweruser_Documentation.md +++ b/wiki/translations/tr/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Arch API/tr](Arch_API/tr.md) , [Builtin modules/tr](Builtin_modules/tr.md) , [Code snippets/tr](Code_snippets/tr.md) , [Command/tr](Command/tr.md) , [Debugging/tr](Debugging/tr.md) , [Dialog creation/tr](Dialog_creation/tr.md) , [Draft API/tr](Draft_API/tr.md) , [Embedding FreeCAD/tr](Embedding_FreeCAD/tr.md) , [Embedding FreeCADGui/tr](Embedding_FreeCADGui/tr.md) , [FreeCAD Scripting Basics/tr](FreeCAD_Scripting_Basics/tr.md) , [FreeCAD vector math library/tr](FreeCAD_vector_math_library/tr.md) , [Gui Command/tr](Gui_Command/tr.md) , [How to install macros/tr](How_to_install_macros/tr.md) , [Installing more workbenches/tr](Installing_more_workbenches/tr.md) , [Introduction to Python/tr](Introduction_to_Python/tr.md) , [Line drawing function/tr](Line_drawing_function/tr.md) , [Macros/tr](Macros/tr.md) , [Mesh Scripting/tr](Mesh_Scripting/tr.md) , [Mesh to Part/tr](Mesh_to_Part/tr.md) , [Pivy/tr](Pivy/tr.md) , [Power users hub/tr](Power_users_hub/tr.md) , [Property/tr](Property/tr.md) , [PySide/tr](PySide/tr.md) , [Python scripting tutorial/tr](Python_scripting_tutorial/tr.md) , [Python/tr](Python/tr.md) , [PythonOCC/tr](PythonOCC/tr.md) , [Scenegraph/tr](Scenegraph/tr.md) , [Scripted objects/tr](Scripted_objects/tr.md) , [Topological data scripting/tr](Topological_data_scripting/tr.md) [Category:Documentation/tr](Category:Documentation/tr.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/tr diff --git a/wiki/translations/tr/Category:Preferences.md b/wiki/translations/tr/Category:Preferences.md index 1f2b07a319..4427a795db 100644 --- a/wiki/translations/tr/Category:Preferences.md +++ b/wiki/translations/tr/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Import Export Preferences/tr](Import_Export_Preferences/tr.md) , [PartDesign Preferences/tr](PartDesign_Preferences/tr.md) , [Preferences Editor/tr](Preferences_Editor/tr.md) + +--- +[documentation index](../README.md) > Category:Preferences/tr diff --git a/wiki/translations/tr/Category:Python_Code.md b/wiki/translations/tr/Category:Python_Code.md index e5104f0bab..0b80db5440 100644 --- a/wiki/translations/tr/Category:Python_Code.md +++ b/wiki/translations/tr/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Code snippets/tr](Code_snippets/tr.md) , [Command/tr](Command/tr.md) , [Debugging/tr](Debugging/tr.md) , [Dialog creation/tr](Dialog_creation/tr.md) , [Embedding FreeCAD/tr](Embedding_FreeCAD/tr.md) , [Embedding FreeCADGui/tr](Embedding_FreeCADGui/tr.md) , [Extra python modules/tr](Extra_python_modules/tr.md) , [FreeCAD Scripting Basics/tr](FreeCAD_Scripting_Basics/tr.md) , [FreeCAD vector math library/tr](FreeCAD_vector_math_library/tr.md) , [How to install macros/tr](How_to_install_macros/tr.md) , [Introduction to Python/tr](Introduction_to_Python/tr.md) , [Line drawing function/tr](Line_drawing_function/tr.md) , [Macros/tr](Macros/tr.md) , [Mesh Scripting/tr](Mesh_Scripting/tr.md) , [Mesh to Part/tr](Mesh_to_Part/tr.md) , [Pivy/tr](Pivy/tr.md) , [Property/tr](Property/tr.md) , [PySide/tr](PySide/tr.md) , [Python scripting tutorial/tr](Python_scripting_tutorial/tr.md) , [Python/tr](Python/tr.md) , [PythonOCC/tr](PythonOCC/tr.md) , [Scripted objects/tr](Scripted_objects/tr.md) , [Topological data scripting/tr](Topological_data_scripting/tr.md) [Category:Categories/tr](Category:Categories/tr.md) + +--- +[documentation index](../README.md) > Category:Python Code/tr diff --git a/wiki/translations/tr/Category:Raytracing.md b/wiki/translations/tr/Category:Raytracing.md index cc3f483bd6..59eda2a8b4 100644 --- a/wiki/translations/tr/Category:Raytracing.md +++ b/wiki/translations/tr/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/tr](Raytracing_Wo [Template:Raytracing Tools navi/tr](Template:Raytracing_Tools_navi/tr.md) , [Raytracing Workbench/tr](Raytracing_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Raytracing/tr diff --git a/wiki/translations/tr/Category:Reverse_Engineering.md b/wiki/translations/tr/Category:Reverse_Engineering.md index 888403a208..f36c449c1e 100644 --- a/wiki/translations/tr/Category:Reverse_Engineering.md +++ b/wiki/translations/tr/Category:Reverse_Engineering.md @@ -6,3 +6,6 @@ Bu kategoride [Ters Mühendislik tezgahı](Reverse_Engineering_Workbench/tr.md) [Reverse Engineering Workbench/tr](Reverse_Engineering_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Reverse Engineering/tr diff --git a/wiki/translations/tr/Category:Roadmap.md b/wiki/translations/tr/Category:Roadmap.md index 3ddd9cb00e..332d2c651a 100644 --- a/wiki/translations/tr/Category:Roadmap.md +++ b/wiki/translations/tr/Category:Roadmap.md @@ -6,3 +6,6 @@ This category gathers all articles documenting what is planned in the Roadmap of [Assembly project/tr](Assembly_project/tr.md) , [CAM project/tr](CAM_project/tr.md) [Category:Categories/tr](Category:Categories/tr.md) + +--- +[documentation index](../README.md) > Category:Roadmap/tr diff --git a/wiki/translations/tr/Category:Robot.md b/wiki/translations/tr/Category:Robot.md index 63299fde12..cee505554d 100644 --- a/wiki/translations/tr/Category:Robot.md +++ b/wiki/translations/tr/Category:Robot.md @@ -6,3 +6,6 @@ Bu kategoride [Robot tezgahı](Robot_Workbench/tr.md) dosyaları listelenecektir [Robot 6-Axis/tr](Robot_6-Axis/tr.md) , [Robot CreateRobot/tr](Robot_CreateRobot/tr.md) , [Robot CreateTrajectory/tr](Robot_CreateTrajectory/tr.md) , [Robot Export/tr](Robot_Export/tr.md) , [Robot RestoreHomePos/tr](Robot_RestoreHomePos/tr.md) , [Robot SetDefaultOrientation/tr](Robot_SetDefaultOrientation/tr.md) , [Robot SetDefaultValues/tr](Robot_SetDefaultValues/tr.md) , [Robot SetHomePos/tr](Robot_SetHomePos/tr.md) , [Robot Simulate/tr](Robot_Simulate/tr.md) , [Template:Robot Tools navi/tr](Template:Robot_Tools_navi/tr.md) , [Robot tutorial/tr](Robot_tutorial/tr.md) , [Robot Workbench/tr](Robot_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Robot/tr diff --git a/wiki/translations/tr/Category:Screenshots.md b/wiki/translations/tr/Category:Screenshots.md index f5a55fe3b6..b680117277 100644 --- a/wiki/translations/tr/Category:Screenshots.md +++ b/wiki/translations/tr/Category:Screenshots.md @@ -6,3 +6,6 @@ This category lists pages with screenshots. [Screenshots/tr](Screenshots/tr.md) [Category:Documentation/tr](Category:Documentation/tr.md) + +--- +[documentation index](../README.md) > Category:Screenshots/tr diff --git a/wiki/translations/tr/Category:Ship.md b/wiki/translations/tr/Category:Ship.md index c0e04ab63b..709c4bc33f 100644 --- a/wiki/translations/tr/Category:Ship.md +++ b/wiki/translations/tr/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/tr](Ship_Workbench/tr.m [Ship Area/tr](Ship_Area/tr.md) , [Template:Ship Tools navi/tr](Template:Ship_Tools_navi/tr.md) , [Ship Workbench/tr](Ship_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Ship/tr diff --git a/wiki/translations/tr/Category:Sketcher.md b/wiki/translations/tr/Category:Sketcher.md index d91964d2b3..da0b8ac4b8 100644 --- a/wiki/translations/tr/Category:Sketcher.md +++ b/wiki/translations/tr/Category:Sketcher.md @@ -6,3 +6,6 @@ This category lists pages related to the [Sketcher Workbench/tr](Sketcher_Workbe [Basic Part Design Tutorial/tr](Basic_Part_Design_Tutorial/tr.md) , [Creating a simple part with PartDesign/tr](Creating_a_simple_part_with_PartDesign/tr.md) , [Draft ShapeString tutorial/tr](Draft_ShapeString_tutorial/tr.md) , [Sketcher Clone/tr](Sketcher_Clone/tr.md) , [Sketcher EditSketch/tr](Sketcher_EditSketch/tr.md) , [Sketcher LeaveSketch/tr](Sketcher_LeaveSketch/tr.md) , [Sketcher MapSketch/tr](Sketcher_MapSketch/tr.md) , [Sketcher NewSketch/tr](Sketcher_NewSketch/tr.md) , [Sketcher ReorientSketch/tr](Sketcher_ReorientSketch/tr.md) , [Sketcher Sketch/tr](Sketcher_Sketch/tr.md) , [Template:Sketcher Tools navi/tr](Template:Sketcher_Tools_navi/tr.md) , [Sketcher ViewSketch/tr](Sketcher_ViewSketch/tr.md) , [Sketcher Workbench/tr](Sketcher_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Sketcher/tr diff --git a/wiki/translations/tr/Category:Surface.md b/wiki/translations/tr/Category:Surface.md index f3f0f95b1e..22265c8722 100644 --- a/wiki/translations/tr/Category:Surface.md +++ b/wiki/translations/tr/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/tr](Surface_Workbenc [Surface Workbench/tr](Surface_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Surface/tr diff --git a/wiki/translations/tr/Category:TechDraw.md b/wiki/translations/tr/Category:TechDraw.md index f1f24eeaba..4b6f34ebfe 100644 --- a/wiki/translations/tr/Category:TechDraw.md +++ b/wiki/translations/tr/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/tr](TechDraw_Workbe [TechDraw Workbench/tr](TechDraw_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:TechDraw/tr diff --git a/wiki/translations/tr/Category:Template.md b/wiki/translations/tr/Category:Template.md index 5a349f6be0..715264bea0 100644 --- a/wiki/translations/tr/Category:Template.md +++ b/wiki/translations/tr/Category:Template.md @@ -8,3 +8,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) [Template:Blender Navigation/tr](Template:Blender_Navigation/tr.md) , [Template:CAD Navigation/tr](Template:CAD_Navigation/tr.md) , [Template:Gesture Navigation/tr](Template:Gesture_Navigation/tr.md) , [Template:Inventor Navigation/tr](Template:Inventor_Navigation/tr.md) , [Template:Languages/tr](Template:Languages/tr.md) , [Template:MayaGesture Navigation/tr](Template:MayaGesture_Navigation/tr.md) , [Template:Property/tr](Template:Property/tr.md) , [Template:Touchepad Navigation/tr](Template:Touchepad_Navigation/tr.md) , [Template:Tr](Template:Tr.md) , , , [Category:Categories/tr](Category:Categories/tr.md) [Category:Template:Navigation/cn](Category:Template:Navigation/cn.md) [Category:Template:Navigation/tr](Category:Template:Navigation/tr.md) [Category:Template:Text Format/tr](Category:Template:Text_Format/tr.md) + +--- +[documentation index](../README.md) > Category:Template/tr diff --git a/wiki/translations/tr/Category:Template:Navigation.md b/wiki/translations/tr/Category:Template:Navigation.md index 0a1e585639..b25e39c4e3 100644 --- a/wiki/translations/tr/Category:Template:Navigation.md +++ b/wiki/translations/tr/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/tr](Template:Arch_Tools_navi/tr.md) , [Template:Draft Tools navi/tr](Template:Draft_Tools_navi/tr.md) , [Template:Drawing Tools navi/tr](Template:Drawing_Tools_navi/tr.md) , [Template:FEM Tools navi/tr](Template:FEM_Tools_navi/tr.md) , [Template:Mesh Tools navi/tr](Template:Mesh_Tools_navi/tr.md) , [Template:Navigation menu 2/tr](Template:Navigation_menu_2/tr.md) , [Template:OpenSCAD Tools navi/tr](Template:OpenSCAD_Tools_navi/tr.md) , [Template:Part Tools navi/tr](Template:Part_Tools_navi/tr.md) , [Template:PartDesign Tools navi/tr](Template:PartDesign_Tools_navi/tr.md) , [Template:Path Tools navi/tr](Template:Path_Tools_navi/tr.md) , [Template:Plot Tools navi/tr](Template:Plot_Tools_navi/tr.md) , [Template:Powerdocnavi/tr](Template:Powerdocnavi/tr.md) , [Template:Raytracing Tools navi/tr](Template:Raytracing_Tools_navi/tr.md) , [Template:Robot Tools navi/tr](Template:Robot_Tools_navi/tr.md) , [Template:Ship Tools navi/tr](Template:Ship_Tools_navi/tr.md) , [Template:Sketcher Tools navi/tr](Template:Sketcher_Tools_navi/tr.md) [Category:Template/tr](Category:Template/tr.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/tr diff --git a/wiki/translations/tr/Category:Template:Text_Format.md b/wiki/translations/tr/Category:Template:Text_Format.md index bce81c0cc5..5dd63e2090 100644 --- a/wiki/translations/tr/Category:Template:Text_Format.md +++ b/wiki/translations/tr/Category:Template:Text_Format.md @@ -4,3 +4,6 @@ This category lists templates that format text given as input. ### Contents: [Category:Template/tr](Category:Template/tr.md) + +--- +[documentation index](../README.md) > Category:Template:Text Format/tr diff --git a/wiki/translations/tr/Category:Test_Framework.md b/wiki/translations/tr/Category:Test_Framework.md index ba069c737d..8a980c9dcf 100644 --- a/wiki/translations/tr/Category:Test_Framework.md +++ b/wiki/translations/tr/Category:Test_Framework.md @@ -6,3 +6,6 @@ This category lists pages related to the [Test Framework Workbench/tr](Test_Fram [Testing/tr](Testing/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) [Category:User\_Documentation/tr](Category:User_Documentation/tr.md) [Category:Testing/tr](Category:Testing/tr.md) + +--- +[documentation index](../README.md) > Category:Test Framework/tr diff --git a/wiki/translations/tr/Category:Testing.md b/wiki/translations/tr/Category:Testing.md index 93712fb21e..67120d38ef 100644 --- a/wiki/translations/tr/Category:Testing.md +++ b/wiki/translations/tr/Category:Testing.md @@ -6,3 +6,6 @@ Pages related to testing in regards to unit testing, continuous integration, qua [Testing/tr](Testing/tr.md) , [Category:Test Framework/tr](Category:Test_Framework/tr.md) + +--- +[documentation index](../README.md) > Category:Testing/tr diff --git a/wiki/translations/tr/Category:Tutorials.md b/wiki/translations/tr/Category:Tutorials.md index 981e41910a..692940cc5a 100644 --- a/wiki/translations/tr/Category:Tutorials.md +++ b/wiki/translations/tr/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials/tr](Offsite_tutorials/tr.md) and [Video tut [Basic Part Design Tutorial/tr](Basic_Part_Design_Tutorial/tr.md) , [Creating a simple part with PartDesign/tr](Creating_a_simple_part_with_PartDesign/tr.md) , [Draft ShapeString tutorial/tr](Draft_ShapeString_tutorial/tr.md) , [Draft tutorial/tr](Draft_tutorial/tr.md) , [Dxf Importer Install/tr](Dxf_Importer_Install/tr.md) , [How to install macros/tr](How_to_install_macros/tr.md) , [PartDesign Bearingholder Tutorial I/tr](PartDesign_Bearingholder_Tutorial_I/tr.md) , [PartDesign Bearingholder Tutorial II/tr](PartDesign_Bearingholder_Tutorial_II/tr.md) , [Robot 6-Axis/tr](Robot_6-Axis/tr.md) , [Robot tutorial/tr](Robot_tutorial/tr.md) , [Template:TutorialInfo/tr](Template:TutorialInfo/tr.md) , [Tutorials/tr](Tutorials/tr.md) [Category:Categories/tr](Category:Categories/tr.md) + +--- +[documentation index](../README.md) > Category:Tutorials/tr diff --git a/wiki/translations/tr/Category:User_Documentation.md b/wiki/translations/tr/Category:User_Documentation.md index 47cd1ab86d..952fabffbb 100644 --- a/wiki/translations/tr/Category:User_Documentation.md +++ b/wiki/translations/tr/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [3Dconnexion input devices/tr](3Dconnexion_input_devices/tr.md) , [About FreeCAD/tr](About_FreeCAD/tr.md) , [Arch 3DS/tr](Arch_3DS/tr.md) , [Arch Add/tr](Arch_Add/tr.md) , [Arch API/tr](Arch_API/tr.md) , [Arch Axis/tr](Arch_Axis/tr.md) , [Arch Equipment/tr](Arch_Equipment/tr.md) , [Arch Floor/tr](Arch_Floor/tr.md) , [Arch Remove/tr](Arch_Remove/tr.md) , [Arch SectionPlane/tr](Arch_SectionPlane/tr.md) , [Arch Structure/tr](Arch_Structure/tr.md) , [Arch Wall/tr](Arch_Wall/tr.md) , [Arch Workbench/tr](Arch_Workbench/tr.md) , [Basic Part Design Tutorial/tr](Basic_Part_Design_Tutorial/tr.md) , [Branding/tr](Branding/tr.md) , [Compile on MacOS/tr](Compile_on_MacOS/tr.md) , [Compile on MinGW/tr](Compile_on_MinGW/tr.md) , [Compile on Windows/tr](Compile_on_Windows/tr.md) , [Complete Workbench/tr](Complete_Workbench/tr.md) , [Contributors/tr](Contributors/tr.md) , [Creating a simple part with PartDesign/tr](Creating_a_simple_part_with_PartDesign/tr.md) , [Document structure/tr](Document_structure/tr.md) , [Download/tr](Download/tr.md) , [Draft AddConstruction/tr](Draft_AddConstruction/tr.md) , [Draft AddToGroup/tr](Draft_AddToGroup/tr.md) , [Draft API/tr](Draft_API/tr.md) , [Draft ApplyStyle/tr](Draft_ApplyStyle/tr.md) , [Draft Arc/tr](Draft_Arc/tr.md) , [Draft Array/tr](Draft_Array/tr.md) , [Draft BezCurve/tr](Draft_BezCurve/tr.md) , [Draft BSpline/tr](Draft_BSpline/tr.md) , [Draft Circle/tr](Draft_Circle/tr.md) , [Draft Clone/tr](Draft_Clone/tr.md) , [Draft Constrain/tr](Draft_Constrain/tr.md) , [Draft DAT/tr](Draft_DAT/tr.md) , [Draft Dimension/tr](Draft_Dimension/tr.md) , [Draft Downgrade/tr](Draft_Downgrade/tr.md) , [Draft Draft2Sketch/tr](Draft_Draft2Sketch/tr.md) , [Draft Drawing/tr](Draft_Drawing/tr.md) , [Draft DXF/tr](Draft_DXF/tr.md) , [Draft Edit/tr](Draft_Edit/tr.md) , [Draft Ellipse/tr](Draft_Ellipse/tr.md) , [Draft Facebinder/tr](Draft_Facebinder/tr.md) , [Draft FlipDimension/tr](Draft_FlipDimension/tr.md) , [Draft Heal/tr](Draft_Heal/tr.md) , [Draft Label/tr](Draft_Label/tr.md) , [Draft Line/tr](Draft_Line/tr.md) , [Draft Mirror/tr](Draft_Mirror/tr.md) , [Draft Move/tr](Draft_Move/tr.md) , [Draft Offset/tr](Draft_Offset/tr.md) , [Draft PathArray/tr](Draft_PathArray/tr.md) , [Draft Pattern/tr](Draft_Pattern/tr.md) , [Draft Point/tr](Draft_Point/tr.md) , [Draft PointArray/tr](Draft_PointArray/tr.md) , [Draft Polygon/tr](Draft_Polygon/tr.md) , [Draft Rectangle/tr](Draft_Rectangle/tr.md) , [Draft Rotate/tr](Draft_Rotate/tr.md) , [Draft Scale/tr](Draft_Scale/tr.md) , [Draft SelectGroup/tr](Draft_SelectGroup/tr.md) , [Draft SelectPlane/tr](Draft_SelectPlane/tr.md) , [Draft Shape2DView/tr](Draft_Shape2DView/tr.md) , [Draft ShapeString tutorial/tr](Draft_ShapeString_tutorial/tr.md) , [Draft ShapeString/tr](Draft_ShapeString/tr.md) , [Draft ShowSnapBar/tr](Draft_ShowSnapBar/tr.md) , [Draft Snap Angle/tr](Draft_Snap_Angle/tr.md) , [Draft Snap Center/tr](Draft_Snap_Center/tr.md) , [Draft Snap Dimensions/tr](Draft_Snap_Dimensions/tr.md) , [Draft Snap Grid/tr](Draft_Snap_Grid/tr.md) , [Draft Snap Lock/tr](Draft_Snap_Lock/tr.md) , [Draft Snap Midpoint/tr](Draft_Snap_Midpoint/tr.md) , [Draft Snap Near/tr](Draft_Snap_Near/tr.md) , [Draft Snap Ortho/tr](Draft_Snap_Ortho/tr.md) , [Draft Snap Parallel/tr](Draft_Snap_Parallel/tr.md) , [Draft Snap Special/tr](Draft_Snap_Special/tr.md) , [Draft Snap WorkingPlane/tr](Draft_Snap_WorkingPlane/tr.md) , [Draft Snap/tr](Draft_Snap/tr.md) , [Draft SVG/tr](Draft_SVG/tr.md) , [Draft Text/tr](Draft_Text/tr.md) , [Draft ToggleConstructionMode/tr](Draft_ToggleConstructionMode/tr.md) , [Draft ToggleContinueMode/tr](Draft_ToggleContinueMode/tr.md) , [Draft ToggleDisplayMode/tr](Draft_ToggleDisplayMode/tr.md) , [Draft ToggleGrid/tr](Draft_ToggleGrid/tr.md) , [Draft Trimex/tr](Draft_Trimex/tr.md) , [Draft tutorial/tr](Draft_tutorial/tr.md) , [Draft Upgrade/tr](Draft_Upgrade/tr.md) , [Draft Wire/tr](Draft_Wire/tr.md) , [Draft WireToBSpline/tr](Draft_WireToBSpline/tr.md) , [Draft Workbench/tr](Draft_Workbench/tr.md) , [Drawing Workbench/tr](Drawing_Workbench/tr.md) , [Dxf Importer Install/tr](Dxf_Importer_Install/tr.md) , [Extra python modules/tr](Extra_python_modules/tr.md) , [Feature editing/tr](Feature_editing/tr.md) , [Feature list/tr](Feature_list/tr.md) , [FEM Concrete/tr](FEM_Concrete/tr.md) , [FEM Workbench/tr](FEM_Workbench/tr.md) , [FreeCAD and DXF Import/tr](FreeCAD_and_DXF_Import/tr.md) , [FreeCAD Build Tool/tr](FreeCAD_Build_Tool/tr.md) , [Glossary/tr](Glossary/tr.md) , [Template:GuiCommand/tr](Template:GuiCommand/tr.md) , [Help FreeCAD/tr](Help_FreeCAD/tr.md) , [Help/tr](Help/tr.md) , [How to install macros/tr](How_to_install_macros/tr.md) , [Image Workbench/tr](Image_Workbench/tr.md) , [Import Export Preferences/tr](Import_Export_Preferences/tr.md) , [Import Export/tr](Import_Export/tr.md) , [Inspection Workbench/tr](Inspection_Workbench/tr.md) , [Installing on Linux/tr](Installing_on_Linux/tr.md) , [Installing on Mac/tr](Installing_on_Mac/tr.md) , [Installing on Windows/tr](Installing_on_Windows/tr.md) , [Interface Customization/tr](Interface_Customization/tr.md) , [Getting started/tr](Getting_started/tr.md) , [Licence/tr](Licence/tr.md) , [Localisation/tr](Localisation/tr.md) , [Macro Fonts Win10 PYMP/tr](Macro_Fonts_Win10_PYMP/tr.md) , [Main Page/tr](Main_Page/tr.md) , [Mesh Workbench/tr](Mesh_Workbench/tr.md) , [Mouse navigation/tr](Mouse_navigation/tr.md) , [Navigation Cube/tr](Navigation_Cube/tr.md) , [Offsite tutorials/tr](Offsite_tutorials/tr.md) , [Online Help Startpage/tr](Online_Help_Startpage/tr.md) , [Online Help Toc/tr](Online_Help_Toc/tr.md) , [OpenSCAD Workbench/tr](OpenSCAD_Workbench/tr.md) , [Part Box/tr](Part_Box/tr.md) , [Part Builder/tr](Part_Builder/tr.md) , [Part Ellipse/tr](Part_Ellipse/tr.md) , [Part Extrude/tr](Part_Extrude/tr.md) , [Part Line/tr](Part_Line/tr.md) , [Part Module/tr](Part_Module/tr.md) , [Part Primitives/tr](Part_Primitives/tr.md) , [Part Prism/tr](Part_Prism/tr.md) , [PartDesign AdditiveBox/tr](PartDesign_AdditiveBox/tr.md) , [PartDesign AdditiveCone/tr](PartDesign_AdditiveCone/tr.md) , [PartDesign AdditiveCylinder/tr](PartDesign_AdditiveCylinder/tr.md) , [PartDesign AdditiveEllipsoid/tr](PartDesign_AdditiveEllipsoid/tr.md) , [PartDesign AdditiveLoft/tr](PartDesign_AdditiveLoft/tr.md) , [PartDesign AdditivePipe/tr](PartDesign_AdditivePipe/tr.md) , [PartDesign AdditivePrism/tr](PartDesign_AdditivePrism/tr.md) , [PartDesign AdditiveSphere/tr](PartDesign_AdditiveSphere/tr.md) , [PartDesign AdditiveTorus/tr](PartDesign_AdditiveTorus/tr.md) , [PartDesign AdditiveWedge/tr](PartDesign_AdditiveWedge/tr.md) , [PartDesign Bearingholder Tutorial I/tr](PartDesign_Bearingholder_Tutorial_I/tr.md) , [PartDesign Bearingholder Tutorial II/tr](PartDesign_Bearingholder_Tutorial_II/tr.md) , [PartDesign Body/tr](PartDesign_Body/tr.md) , [PartDesign Boolean/tr](PartDesign_Boolean/tr.md) , [PartDesign Chamfer/tr](PartDesign_Chamfer/tr.md) , [PartDesign Clone/tr](PartDesign_Clone/tr.md) , [PartDesign CompPrimitiveAdditive/tr](PartDesign_CompPrimitiveAdditive/tr.md) , [PartDesign CompPrimitiveSubtractive/tr](PartDesign_CompPrimitiveSubtractive/tr.md) , [PartDesign Draft/tr](PartDesign_Draft/tr.md) , [PartDesign Fillet/tr](PartDesign_Fillet/tr.md) , [PartDesign Groove/tr](PartDesign_Groove/tr.md) , [PartDesign Hole/tr](PartDesign_Hole/tr.md) , [PartDesign InvoluteGear/tr](PartDesign_InvoluteGear/tr.md) , [PartDesign Line/tr](PartDesign_Line/tr.md) , [PartDesign LinearPattern/tr](PartDesign_LinearPattern/tr.md) , [PartDesign Mirrored/tr](PartDesign_Mirrored/tr.md) , [PartDesign MoveFeature/tr](PartDesign_MoveFeature/tr.md) , [PartDesign MoveFeatureInTree/tr](PartDesign_MoveFeatureInTree/tr.md) , [PartDesign MoveTip/tr](PartDesign_MoveTip/tr.md) , [PartDesign MultiTransform/tr](PartDesign_MultiTransform/tr.md) , [PartDesign NewSketch/tr](PartDesign_NewSketch/tr.md) , [PartDesign Pad/tr](PartDesign_Pad/tr.md) , [PartDesign Plane/tr](PartDesign_Plane/tr.md) , [PartDesign Pocket/tr](PartDesign_Pocket/tr.md) , [PartDesign Point/tr](PartDesign_Point/tr.md) , [PartDesign PolarPattern/tr](PartDesign_PolarPattern/tr.md) , [PartDesign Preferences/tr](PartDesign_Preferences/tr.md) , [PartDesign Revolution/tr](PartDesign_Revolution/tr.md) , [PartDesign ShapeBinder/tr](PartDesign_ShapeBinder/tr.md) , [PartDesign SubtractiveBox/tr](PartDesign_SubtractiveBox/tr.md) , [PartDesign SubtractiveCone/tr](PartDesign_SubtractiveCone/tr.md) , [PartDesign SubtractiveCylinder/tr](PartDesign_SubtractiveCylinder/tr.md) , [PartDesign SubtractiveEllipsoid/tr](PartDesign_SubtractiveEllipsoid/tr.md) , [PartDesign SubtractiveLoft/tr](PartDesign_SubtractiveLoft/tr.md) , [PartDesign SubtractivePipe/tr](PartDesign_SubtractivePipe/tr.md) , [PartDesign SubtractivePrism/tr](PartDesign_SubtractivePrism/tr.md) , [PartDesign SubtractiveSphere/tr](PartDesign_SubtractiveSphere/tr.md) , [PartDesign SubtractiveTorus/tr](PartDesign_SubtractiveTorus/tr.md) , [PartDesign SubtractiveWedge/tr](PartDesign_SubtractiveWedge/tr.md) , [PartDesign Thickness/tr](PartDesign_Thickness/tr.md) , [PartDesign WizardShaft/tr](PartDesign_WizardShaft/tr.md) , [PartDesign Workbench/tr](PartDesign_Workbench/tr.md) , [Path Helix/tr](Path_Helix/tr.md) , [Path MillFace/tr](Path_MillFace/tr.md) , [Path Workbench/tr](Path_Workbench/tr.md) , [Placement/tr](Placement/tr.md) , [Plot Axes/tr](Plot_Axes/tr.md) , [Plot Grid/tr](Plot_Grid/tr.md) , [Plot Labels/tr](Plot_Labels/tr.md) , [Plot Legend/tr](Plot_Legend/tr.md) , [Plot Module/tr](Plot_Module/tr.md) , [Plot Positions/tr](Plot_Positions/tr.md) , [Plot Series/tr](Plot_Series/tr.md) , [Points Workbench/tr](Points_Workbench/tr.md) , [Preferences Editor/tr](Preferences_Editor/tr.md) , [Property editor/tr](Property_editor/tr.md) , [Raytracing Workbench/tr](Raytracing_Workbench/tr.md) , [Reverse Engineering Workbench/tr](Reverse_Engineering_Workbench/tr.md) , [Robot 6-Axis/tr](Robot_6-Axis/tr.md) , [Robot CreateRobot/tr](Robot_CreateRobot/tr.md) , [Robot CreateTrajectory/tr](Robot_CreateTrajectory/tr.md) , [Robot Export/tr](Robot_Export/tr.md) , [Robot RestoreHomePos/tr](Robot_RestoreHomePos/tr.md) , [Robot SetDefaultOrientation/tr](Robot_SetDefaultOrientation/tr.md) , [Robot SetDefaultValues/tr](Robot_SetDefaultValues/tr.md) , [Robot SetHomePos/tr](Robot_SetHomePos/tr.md) , [Robot Simulate/tr](Robot_Simulate/tr.md) , [Robot tutorial/tr](Robot_tutorial/tr.md) , [Robot Workbench/tr](Robot_Workbench/tr.md) , [Screenshots/tr](Screenshots/tr.md) , [Ship Area/tr](Ship_Area/tr.md) , [Ship Workbench/tr](Ship_Workbench/tr.md) , [Sketcher Clone/tr](Sketcher_Clone/tr.md) , [Sketcher EditSketch/tr](Sketcher_EditSketch/tr.md) , [Sketcher LeaveSketch/tr](Sketcher_LeaveSketch/tr.md) , [Sketcher MapSketch/tr](Sketcher_MapSketch/tr.md) , [Sketcher NewSketch/tr](Sketcher_NewSketch/tr.md) , [Sketcher ReorientSketch/tr](Sketcher_ReorientSketch/tr.md) , [Sketcher Sketch/tr](Sketcher_Sketch/tr.md) , [Sketcher ViewSketch/tr](Sketcher_ViewSketch/tr.md) , [Sketcher Workbench/tr](Sketcher_Workbench/tr.md) , [Source documentation/tr](Source_documentation/tr.md) , [Spreadsheet Workbench/tr](Spreadsheet_Workbench/tr.md) , [Standard Menu/tr](Standard_Menu/tr.md) , [Start up and Configuration/tr](Start_up_and_Configuration/tr.md) , [Start Workbench/tr](Start_Workbench/tr.md) , [Std AddonMgr/tr](Std_AddonMgr/tr.md) , [Std Group/tr](Std_Group/tr.md) , [Std Part/tr](Std_Part/tr.md) , [Surface Workbench/tr](Surface_Workbench/tr.md) , [TechDraw Workbench/tr](TechDraw_Workbench/tr.md) , [Testing/tr](Testing/tr.md) , [Third Party Libraries/tr](Third_Party_Libraries/tr.md) , [Third Party Tools/tr](Third_Party_Tools/tr.md) , [Tracker/tr](Tracker/tr.md) , [Template:TutorialInfo/tr](Template:TutorialInfo/tr.md) , [Tutorials/tr](Tutorials/tr.md) , [User hub/tr](User_hub/tr.md) , [Video tutorials/tr](Video_tutorials/tr.md) , [Web Workbench/tr](Web_Workbench/tr.md) , [Workbenches/tr](Workbenches/tr.md) , , , , , , , , , [Category:Documentation/tr](Category:Documentation/tr.md) [Category:Arch/tr](Category:Arch/tr.md) [Category:Base/tr](Category:Base/tr.md) [Category:BIM/tr](Category:BIM/tr.md) [Category:Draft/tr](Category:Draft/tr.md) [Category:Image/tr](Category:Image/tr.md) [Category:Inspection/tr](Category:Inspection/tr.md) [Category:Macros/tr](Category:Macros/tr.md) [Category:Test Framework/tr](Category:Test_Framework/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:User Documentation/tr diff --git a/wiki/translations/tr/Category:Web.md b/wiki/translations/tr/Category:Web.md index 068a90c9da..7683386cf6 100644 --- a/wiki/translations/tr/Category:Web.md +++ b/wiki/translations/tr/Category:Web.md @@ -6,3 +6,6 @@ This category lists pages that relate to the [Web Workbench/tr](Web_Workbench/tr [Web Workbench/tr](Web_Workbench/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) + +--- +[documentation index](../README.md) > Category:Web/tr diff --git a/wiki/translations/tr/Category:Wiki.md b/wiki/translations/tr/Category:Wiki.md index df51b10162..e848a511a9 100644 --- a/wiki/translations/tr/Category:Wiki.md +++ b/wiki/translations/tr/Category:Wiki.md @@ -6,3 +6,6 @@ This category contains all documents that relate to the Wiki/tr. [Glossary/tr](Glossary/tr.md) , [Localisation Sidebar/tr](Localisation_Sidebar/tr.md) , [Localisation/tr](Localisation/tr.md) [Category:Administration/tr](Category:Administration/tr.md) [Category:Categories/tr](Category:Categories/tr.md) [Category:Documentation/tr](Category:Documentation/tr.md) + +--- +[documentation index](../README.md) > Category:Wiki/tr diff --git a/wiki/translations/tr/Category:Workbenches.md b/wiki/translations/tr/Category:Workbenches.md index a1ae3dd0c8..eb673e541d 100644 --- a/wiki/translations/tr/Category:Workbenches.md +++ b/wiki/translations/tr/Category:Workbenches.md @@ -6,3 +6,6 @@ Bu kategori de FreeCAD\'deki tezgahlar listelenmektedir. [Arch Workbench/tr](Arch_Workbench/tr.md) , [Draft Workbench/tr](Draft_Workbench/tr.md) , [FEM Workbench/tr](FEM_Workbench/tr.md) , [Image Workbench/tr](Image_Workbench/tr.md) , [Inspection Workbench/tr](Inspection_Workbench/tr.md) , [Mesh Workbench/tr](Mesh_Workbench/tr.md) , [OpenSCAD Workbench/tr](OpenSCAD_Workbench/tr.md) , [Part Module/tr](Part_Module/tr.md) , [PartDesign Workbench/tr](PartDesign_Workbench/tr.md) , [Path Workbench/tr](Path_Workbench/tr.md) , [Points Workbench/tr](Points_Workbench/tr.md) , [Raytracing Workbench/tr](Raytracing_Workbench/tr.md) , [Reverse Engineering Workbench/tr](Reverse_Engineering_Workbench/tr.md) , [Robot Workbench/tr](Robot_Workbench/tr.md) , [Sketcher Workbench/tr](Sketcher_Workbench/tr.md) , [Spreadsheet Workbench/tr](Spreadsheet_Workbench/tr.md) , [Start Workbench/tr](Start_Workbench/tr.md) , [Surface Workbench/tr](Surface_Workbench/tr.md) , [TechDraw Workbench/tr](TechDraw_Workbench/tr.md) , [Testing/tr](Testing/tr.md) , [Web Workbench/tr](Web_Workbench/tr.md) , [Workbenches/tr](Workbenches/tr.md) , , , , , , , , , , , , , , , , , , , , , , [Category:User Documentation/tr](Category:User_Documentation/tr.md) [Category:Arch/tr](Category:Arch/tr.md) [Category:Draft/tr](Category:Draft/tr.md) [Category:External Workbenches/tr](Category:External_Workbenches/tr.md) [Category:FEM/tr](Category:FEM/tr.md) [Category:Image/tr](Category:Image/tr.md) [Category:Inspection/tr](Category:Inspection/tr.md) [Category:Mesh/tr](Category:Mesh/tr.md) [Category:OpenSCAD/tr](Category:OpenSCAD/tr.md) [Category:Part/tr](Category:Part/tr.md) [Category:PartDesign/tr](Category:PartDesign/tr.md) [Category:Path/tr](Category:Path/tr.md) [Category:Plot/tr](Category:Plot/tr.md) [Category:Points/tr](Category:Points/tr.md) [Category:Raytracing/tr](Category:Raytracing/tr.md) [Category:Reverse Engineering/tr](Category:Reverse_Engineering/tr.md) [Category:Robot/tr](Category:Robot/tr.md) [Category:Ship/tr](Category:Ship/tr.md) [Category:Sketcher/tr](Category:Sketcher/tr.md) [Category:Surface/tr](Category:Surface/tr.md) [Category:TechDraw/tr](Category:TechDraw/tr.md) [Category:Test Framework/tr](Category:Test_Framework/tr.md) [Category:Web/tr](Category:Web/tr.md) + +--- +[documentation index](../README.md) > Category:Workbenches/tr diff --git a/wiki/translations/tr/Code_snippets.md b/wiki/translations/tr/Code_snippets.md index 6d1b5ed5fc..232b9bad59 100644 --- a/wiki/translations/tr/Code_snippets.md +++ b/wiki/translations/tr/Code_snippets.md @@ -1,7 +1,4 @@ # Code snippets/tr - - - {{TOCright}} ## Introduction @@ -1773,3 +1770,6 @@ See [Coin3d snippets](Coin3d_snippets.md) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Code snippets/tr diff --git a/wiki/translations/tr/Command.md b/wiki/translations/tr/Command.md index b9ea0ab7b7..d0c2b51abf 100644 --- a/wiki/translations/tr/Command.md +++ b/wiki/translations/tr/Command.md @@ -1,6 +1,4 @@ # Command/tr - - ## Introduction @@ -139,3 +137,6 @@ See [Line drawing function](Line_drawing_function.md). }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Command/tr diff --git a/wiki/translations/tr/CompileOnCygwin.md b/wiki/translations/tr/CompileOnCygwin.md index 89967f8ccb..bdcf1ee055 100644 --- a/wiki/translations/tr/CompileOnCygwin.md +++ b/wiki/translations/tr/CompileOnCygwin.md @@ -1,2 +1,5 @@ # CompileOnCygwin/tr 1. REDIRECT [Compile on Cygwin/tr](Compile_on_Cygwin/tr.md) + +--- +[documentation index](../README.md) > CompileOnCygwin/tr diff --git a/wiki/translations/tr/CompileOnMac.md b/wiki/translations/tr/CompileOnMac.md index 50846a7587..326be6dc05 100644 --- a/wiki/translations/tr/CompileOnMac.md +++ b/wiki/translations/tr/CompileOnMac.md @@ -1,2 +1,5 @@ # CompileOnMac/tr 1. REDIRECT [Compile on MacOS/tr](Compile_on_MacOS/tr.md) + +--- +[documentation index](../README.md) > CompileOnMac/tr diff --git a/wiki/translations/tr/CompileOnMinGW.md b/wiki/translations/tr/CompileOnMinGW.md index ac9712d845..00abfb8a42 100644 --- a/wiki/translations/tr/CompileOnMinGW.md +++ b/wiki/translations/tr/CompileOnMinGW.md @@ -1,2 +1,5 @@ # CompileOnMinGW/tr 1. REDIRECT [Compile on MinGW/tr](Compile_on_MinGW/tr.md) + +--- +[documentation index](../README.md) > CompileOnMinGW/tr diff --git a/wiki/translations/tr/CompileOnWindows.md b/wiki/translations/tr/CompileOnWindows.md index b0b13b6b1a..b128c8f0f8 100644 --- a/wiki/translations/tr/CompileOnWindows.md +++ b/wiki/translations/tr/CompileOnWindows.md @@ -1,2 +1,5 @@ # CompileOnWindows/tr 1. REDIRECT [Compile on Windows/tr](Compile_on_Windows/tr.md) + +--- +[documentation index](../README.md) > CompileOnWindows/tr diff --git a/wiki/translations/tr/Compile_on_Cygwin.md b/wiki/translations/tr/Compile_on_Cygwin.md index 285b282658..cba936dd5a 100644 --- a/wiki/translations/tr/Compile_on_Cygwin.md +++ b/wiki/translations/tr/Compile_on_Cygwin.md @@ -1,5 +1,5 @@ # Compile on Cygwin/tr - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** ## How to build and run FreeCAD under Cygwin @@ -74,3 +74,6 @@ Once you have built the sources successfully using \'make\' with \'make install\ [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Cygwin/tr diff --git a/wiki/translations/tr/Compile_on_MacOS.md b/wiki/translations/tr/Compile_on_MacOS.md index 6d25a4c0fa..b1043bc87d 100644 --- a/wiki/translations/tr/Compile_on_MacOS.md +++ b/wiki/translations/tr/Compile_on_MacOS.md @@ -1,10 +1,4 @@ # Compile on MacOS/tr - - - - - - **There is an experimental FreeCAD Docker container that is being tested for FreeCAD development. Read more about it at [[Compile on Docker]]** @@ -194,3 +188,6 @@ FreeCAD can be built against the latest git master hosted on github, and launche [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MacOS/tr diff --git a/wiki/translations/tr/Compile_on_MinGW.md b/wiki/translations/tr/Compile_on_MinGW.md index ed99184b75..cdb445a99a 100644 --- a/wiki/translations/tr/Compile_on_MinGW.md +++ b/wiki/translations/tr/Compile_on_MinGW.md @@ -1,5 +1,5 @@ # Compile on MinGW/tr - **(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** {{TOCright}} +**(2019) The contents of this page are obsolete. Please help us to keep it updated!
Meanwhile, try other [compilation options](Compiling.md).** {{TOCright}} ## How to build and run FreeCAD under MSYS/MinGW @@ -256,3 +256,6 @@ Have fun! [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on MinGW/tr diff --git a/wiki/translations/tr/Compile_on_Windows.md b/wiki/translations/tr/Compile_on_Windows.md index 86fe0af614..281448b06b 100644 --- a/wiki/translations/tr/Compile_on_Windows.md +++ b/wiki/translations/tr/Compile_on_Windows.md @@ -1,10 +1,4 @@ # Compile on Windows/tr - - - - - - {{TOCright}} This page explains step by step **how to compile FreeCAD 0.19 or newer on Windows**. For other platforms see [Compiling](Compiling.md). @@ -471,3 +465,6 @@ See also [Category:Developer Documentation/tr](Category:Developer_Documentation/tr.md) [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compile on Windows/tr diff --git a/wiki/translations/tr/Complete_Workbench.md b/wiki/translations/tr/Complete_Workbench.md index e7b8727a82..374642a3e7 100644 --- a/wiki/translations/tr/Complete_Workbench.md +++ b/wiki/translations/tr/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/tr - - - **The [[Complete Workbench]] is deprecated.** @@ -14,3 +11,6 @@ See [Interface Customization](Interface_Customization.md) if you\'d like to adap [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/tr diff --git a/wiki/translations/tr/Contributors.md b/wiki/translations/tr/Contributors.md index 6a9d74b396..aae16016e6 100644 --- a/wiki/translations/tr/Contributors.md +++ b/wiki/translations/tr/Contributors.md @@ -1,10 +1,4 @@ # Contributors/tr - - - - - - {{TOCright}} @@ -253,3 +247,6 @@ Developers of FreeCAD addons (retrieved from [Developer](Category:Developer.md) > Contributors/tr diff --git a/wiki/translations/tr/Creating_a_simple_part_with_PartDesign.md b/wiki/translations/tr/Creating_a_simple_part_with_PartDesign.md index 6d089d916c..0766992129 100644 --- a/wiki/translations/tr/Creating_a_simple_part_with_PartDesign.md +++ b/wiki/translations/tr/Creating_a_simple_part_with_PartDesign.md @@ -1,7 +1,4 @@ # Creating a simple part with PartDesign/tr - - - {{TutorialInfo/tr |Topic=Modeling |Level=Beginner @@ -267,4 +264,7 @@ You can also continue with this other tutorial of a slightly more complicated pa {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Creating a simple part with PartDesign/tr diff --git a/wiki/translations/tr/Debugging.md b/wiki/translations/tr/Debugging.md index 35e14ae72f..e7744e3315 100644 --- a/wiki/translations/tr/Debugging.md +++ b/wiki/translations/tr/Debugging.md @@ -1,10 +1,4 @@ # Debugging/tr - - - - - - {{TOCright}} ## Test First @@ -336,3 +330,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/tr diff --git a/wiki/translations/tr/Dialog_creation.md b/wiki/translations/tr/Dialog_creation.md index 0e192257f9..b657bf560b 100644 --- a/wiki/translations/tr/Dialog_creation.md +++ b/wiki/translations/tr/Dialog_creation.md @@ -1,7 +1,4 @@ # Dialog creation/tr - - - {{TOCright}} ## Introduction @@ -263,3 +260,6 @@ class plane(): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Dialog creation/tr diff --git a/wiki/translations/tr/Document_structure.md b/wiki/translations/tr/Document_structure.md index 1c461330f4..5a4bae2ad6 100644 --- a/wiki/translations/tr/Document_structure.md +++ b/wiki/translations/tr/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/tr - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) Bir FreeCAD belgesi, sahnenizdeki tüm nesneleri içerir. Herhangi bir tezgah ile yapılan grupları ve nesneleri içerebilir. Bu nedenle tezgahlar arasında geçiş yapabilir ve hala aynı belge üzerinde çalışabilirsiniz. Çalışmanızı kaydettiğinizde belge diske kaydedilecek olandır. Ayrıca FreeCAD\'de aynı anda birkaç belge açabilir ve aynı belgenin birkaç görünümünü açabilirsiniz. @@ -73,5 +67,5 @@ FreeCADGui.ActiveDocument.ActiveView
- - +--- +[documentation index](../README.md) > Document structure/tr diff --git a/wiki/translations/tr/Download.md b/wiki/translations/tr/Download.md index 8dc73a011a..9823c29fac 100644 --- a/wiki/translations/tr/Download.md +++ b/wiki/translations/tr/Download.md @@ -1,5 +1,5 @@ # Download/tr - {{TOCright}} +{{TOCright}} ## Current stable version @@ -55,5 +55,5 @@ FreeCAD\'s development is active. The FreeCAD community provides many additional modules and macros. Since 0.17 they can be easily installed from within FreeCAD using the [Addon manager](Addon_Manager.md) . - - +--- +[documentation index](../README.md) > Download/tr diff --git a/wiki/translations/tr/Draft_API.md b/wiki/translations/tr/Draft_API.md index 6651b302c0..a446ae0f2d 100644 --- a/wiki/translations/tr/Draft_API.md +++ b/wiki/translations/tr/Draft_API.md @@ -1,7 +1,4 @@ # Draft API/tr - - -
Bu işlevler Taslak modülünün bir parçasıdır ve Taslak modülü alındıktan sonra komut dosyalarında ve makrolarda veya python yorumlayıcısında kullanılabilir. @@ -53,3 +50,6 @@ Draft.move(myrect, mydistance) [Category:API](Category:API.md) [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft API/tr diff --git a/wiki/translations/tr/Draft_AddConstruction.md b/wiki/translations/tr/Draft_AddConstruction.md index ca1e377086..65cfff4a13 100644 --- a/wiki/translations/tr/Draft_AddConstruction.md +++ b/wiki/translations/tr/Draft_AddConstruction.md @@ -7,6 +7,8 @@ Version:0.17 --- +# Draft AddConstruction/tr +
@@ -60,5 +62,5 @@ Nesneleri [Grup](Std_Group/tr.md) veya [Draft VisGroup](Draft_VisGroup.md) \'a e - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddConstruction/tr diff --git a/wiki/translations/tr/Draft_AddToGroup.md b/wiki/translations/tr/Draft_AddToGroup.md index 9576faeada..6d4deb6ad4 100644 --- a/wiki/translations/tr/Draft_AddToGroup.md +++ b/wiki/translations/tr/Draft_AddToGroup.md @@ -7,6 +7,8 @@ SeeAlso:[Grup seç](Draft_SelectGroup/tr.md), [Grup](Std_Group/tr.md) --- +# Draft AddToGroup/tr + @@ -64,5 +66,5 @@ In FreeCAD version 0.20 the command can also handle group-like [Arch](Arch_Workb - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft AddToGroup/tr diff --git a/wiki/translations/tr/Draft_Apply.md b/wiki/translations/tr/Draft_Apply.md index fa11cc5387..5da4087eee 100644 --- a/wiki/translations/tr/Draft_Apply.md +++ b/wiki/translations/tr/Draft_Apply.md @@ -1,2 +1,5 @@ # Draft Apply/tr 1. REDIRECT [Draft\_ApplyStyle/tr](Draft_ApplyStyle/tr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Apply/tr diff --git a/wiki/translations/tr/Draft_ApplyStyle.md b/wiki/translations/tr/Draft_ApplyStyle.md index dfb0588fad..f5c044ce8b 100644 --- a/wiki/translations/tr/Draft_ApplyStyle.md +++ b/wiki/translations/tr/Draft_ApplyStyle.md @@ -7,6 +7,8 @@ SeeAlso:[Tepsi](Draft_Tray/tr.md) --- +# Draft ApplyStyle/tr + @@ -72,5 +74,5 @@ This command currently handles only five of the settings the [Draft SetStyle](Dr - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ApplyStyle/tr diff --git a/wiki/translations/tr/Draft_Arc.md b/wiki/translations/tr/Draft_Arc.md index 4c73fb08d8..24fb2383dd 100644 --- a/wiki/translations/tr/Draft_Arc.md +++ b/wiki/translations/tr/Draft_Arc.md @@ -9,6 +9,8 @@ SeeAlso:[Çember](Draft_Circle/tr.md),[Elips](Draft_Ellipse/tr.md) --- +# Draft Arc/tr + @@ -160,5 +162,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc/tr diff --git a/wiki/translations/tr/Draft_Array.md b/wiki/translations/tr/Draft_Array.md index d2c954e08a..a552c9fc01 100644 --- a/wiki/translations/tr/Draft_Array.md +++ b/wiki/translations/tr/Draft_Array.md @@ -7,6 +7,8 @@ SeeAlso:[Yol dizisi](Draft_PathArray/tr.md),[Nokta dizisi](Draft_PointArray/tr.md),[Klonla](Draft_Clone/tr.md) --- +# Draft Array/tr + @@ -92,5 +94,5 @@ This command is now obsolete. Use the [Draft OrthoArray](Draft_OrthoArray.md), [ - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Array/tr diff --git a/wiki/translations/tr/Draft_BSpline.md b/wiki/translations/tr/Draft_BSpline.md index 10a3bc9f86..f85312b97c 100644 --- a/wiki/translations/tr/Draft_BSpline.md +++ b/wiki/translations/tr/Draft_BSpline.md @@ -9,6 +9,8 @@ SeeAlso:[Tel](Draft_Wire/tr.md),[Bezier eğrisi](Draft_BezCurve/tr.md) --- +# Draft BSpline/tr + @@ -242,5 +244,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BSpline/tr diff --git a/wiki/translations/tr/Draft_BezCurve.md b/wiki/translations/tr/Draft_BezCurve.md index 4395741130..42a7af334f 100644 --- a/wiki/translations/tr/Draft_BezCurve.md +++ b/wiki/translations/tr/Draft_BezCurve.md @@ -8,6 +8,8 @@ Version:0.14 --- +# Draft BezCurve/tr + @@ -218,8 +220,5 @@ bezcurve3 = Draft.make_bezcurve([1.7*p3, 1.5*p4, 2.1*p2, p1], closed=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft BezCurve/tr diff --git a/wiki/translations/tr/Draft_Circle.md b/wiki/translations/tr/Draft_Circle.md index 1cb631db4f..fbfb65b87f 100644 --- a/wiki/translations/tr/Draft_Circle.md +++ b/wiki/translations/tr/Draft_Circle.md @@ -9,6 +9,8 @@ Version:0.7 --- +# Draft Circle/tr + @@ -230,5 +232,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Circle/tr diff --git a/wiki/translations/tr/Draft_Clone.md b/wiki/translations/tr/Draft_Clone.md index 019d441bc8..6b857b5f00 100644 --- a/wiki/translations/tr/Draft_Clone.md +++ b/wiki/translations/tr/Draft_Clone.md @@ -8,6 +8,8 @@ SeeAlso:[Taşı](Draft_Move/tr.md), [Ölçek](Draft_Scale/tr.md) --- +# Draft Clone/tr + @@ -155,5 +157,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Clone/tr diff --git a/wiki/translations/tr/Draft_CloseLine.md b/wiki/translations/tr/Draft_CloseLine.md index 9abca90510..0f6da55057 100644 --- a/wiki/translations/tr/Draft_CloseLine.md +++ b/wiki/translations/tr/Draft_CloseLine.md @@ -1,2 +1,5 @@ # Draft CloseLine/tr 1. REDIRECT [Draft\_Wire/tr](Draft_Wire/tr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft CloseLine/tr diff --git a/wiki/translations/tr/Draft_Constrain.md b/wiki/translations/tr/Draft_Constrain.md index c3b6feb64e..42f1fb4c61 100644 --- a/wiki/translations/tr/Draft_Constrain.md +++ b/wiki/translations/tr/Draft_Constrain.md @@ -1,10 +1,4 @@ # Draft Constrain/tr - - - - - - {{TOCright}} ## Description @@ -68,3 +62,6 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr [Category:User\_Documentation/tr](Category:User_Documentation/tr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Constrain/tr diff --git a/wiki/translations/tr/Draft_DAT.md b/wiki/translations/tr/Draft_DAT.md index 7a4c0c3f24..9c5c878ed5 100644 --- a/wiki/translations/tr/Draft_DAT.md +++ b/wiki/translations/tr/Draft_DAT.md @@ -1,10 +1,4 @@ # Draft DAT/tr - - - - - -
Ortak kanat profili veri biçimi, ilk 1-2 satırdaki kanat profili ile ilgili isteğe bağlı meta verileri ve üst ve alt yüzeyin koordinatlarını içeren basit bir dosyadır. @@ -30,3 +24,6 @@ Bu formata farklı lehçeler var, bu yüzden bu içe aktarma modülü neredeyse [Category:User Documentation/tr](Category:User_Documentation/tr.md) [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DAT/tr diff --git a/wiki/translations/tr/Draft_DXF.md b/wiki/translations/tr/Draft_DXF.md index d3f9f6e507..a941ee47e7 100644 --- a/wiki/translations/tr/Draft_DXF.md +++ b/wiki/translations/tr/Draft_DXF.md @@ -1,10 +1,4 @@ # Draft DXF/tr - - - - - - {{TOCright}} ## Description @@ -124,3 +118,6 @@ importDXF.export(objects, "/home/user/Pictures/myfile.dxf") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft DXF/tr diff --git a/wiki/translations/tr/Draft_Dimension.md b/wiki/translations/tr/Draft_Dimension.md index 8d7b361080..797f995f6c 100644 --- a/wiki/translations/tr/Draft_Dimension.md +++ b/wiki/translations/tr/Draft_Dimension.md @@ -9,6 +9,8 @@ SeeAlso:[FlipDimension](Draft_FlipDimension/tr.md),[Teknik resim](TechDraw_Workbench/tr.md) --- +# Draft Dimension/tr +
@@ -430,5 +432,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Dimension/tr diff --git a/wiki/translations/tr/Draft_Downgrade.md b/wiki/translations/tr/Draft_Downgrade.md index 0e28bb6d53..3958b3bcaa 100644 --- a/wiki/translations/tr/Draft_Downgrade.md +++ b/wiki/translations/tr/Draft_Downgrade.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Upgrade](Draft_Upgrade/tr.md) --- +# Draft Downgrade/tr + @@ -76,8 +78,5 @@ add_list4, delete_list4 = Draft.downgrade(box, delete=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Downgrade/tr diff --git a/wiki/translations/tr/Draft_Draft2Sketch.md b/wiki/translations/tr/Draft_Draft2Sketch.md index a6bc38e1e0..dc2c46f6d3 100644 --- a/wiki/translations/tr/Draft_Draft2Sketch.md +++ b/wiki/translations/tr/Draft_Draft2Sketch.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/tr.md), [Arch](Arch_Workbench/tr.md) --- +# Draft Draft2Sketch/tr + @@ -96,8 +98,5 @@ draft_from_sketch = Draft.draftify(sketch_from_draft, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Draft2Sketch/tr diff --git a/wiki/translations/tr/Draft_Drawing.md b/wiki/translations/tr/Draft_Drawing.md index f70afc7c3e..b29ccf5bba 100644 --- a/wiki/translations/tr/Draft_Drawing.md +++ b/wiki/translations/tr/Draft_Drawing.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/tr.md), [Arch](Arch_Workbench/tr.md) --- +# Draft Drawing/tr + @@ -28,8 +30,5 @@ This command is now obsolete. Use the [TechDraw Workbench](TechDraw_Workbench.md 4. Press the ** [Draft Drawing](Draft_Drawing.md)** button. 5. There is a bug in the FreeCAD version 0.19 version of the command. The initial value of the **Direction** property is {{Value|[0, 0, 0]}} which is not allowed. For objects on a plane parallel to the XY plane of the global coordinate system it should be changed to {{Value|[0, 0, 1]}}. After changing this property the page and the view may need to be [recomputed](Std_Refresh.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Drawing/tr diff --git a/wiki/translations/tr/Draft_Edit.md b/wiki/translations/tr/Draft_Edit.md index cf984b6237..3dee72c154 100644 --- a/wiki/translations/tr/Draft_Edit.md +++ b/wiki/translations/tr/Draft_Edit.md @@ -8,6 +8,8 @@ SeeAlso:[Std Edit](Std_Edit.md) --- +# Draft Edit/tr + @@ -216,5 +218,5 @@ Düzenleme aracı için uygun bir programlama arayüzü yoktur. Her nesne, nitel - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Edit/tr diff --git a/wiki/translations/tr/Draft_Ellipse.md b/wiki/translations/tr/Draft_Ellipse.md index f13ce5931f..7725b16a30 100644 --- a/wiki/translations/tr/Draft_Ellipse.md +++ b/wiki/translations/tr/Draft_Ellipse.md @@ -9,6 +9,8 @@ Version:0.7 --- +# Draft Ellipse/tr + @@ -212,5 +214,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Ellipse/tr diff --git a/wiki/translations/tr/Draft_Facebinder.md b/wiki/translations/tr/Draft_Facebinder.md index 04901c7933..e2315772b5 100644 --- a/wiki/translations/tr/Draft_Facebinder.md +++ b/wiki/translations/tr/Draft_Facebinder.md @@ -9,6 +9,8 @@ Version:0.14 --- +# Draft Facebinder/tr + @@ -210,5 +212,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Facebinder/tr diff --git a/wiki/translations/tr/Draft_FinishLine.md b/wiki/translations/tr/Draft_FinishLine.md index 38e7182daa..707c00db9e 100644 --- a/wiki/translations/tr/Draft_FinishLine.md +++ b/wiki/translations/tr/Draft_FinishLine.md @@ -1,2 +1,5 @@ # Draft FinishLine/tr 1. REDIRECT [Draft\_Wire/tr](Draft_Wire/tr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FinishLine/tr diff --git a/wiki/translations/tr/Draft_FlipDimension.md b/wiki/translations/tr/Draft_FlipDimension.md index e5ab48251d..b071d9f926 100644 --- a/wiki/translations/tr/Draft_FlipDimension.md +++ b/wiki/translations/tr/Draft_FlipDimension.md @@ -7,6 +7,8 @@ SeeAlso:[Dimension](Draft_Dimension/tr.md) --- +# Draft FlipDimension/tr + @@ -50,8 +52,5 @@ dimension.Normal = dimension.Normal.negative() doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft FlipDimension/tr diff --git a/wiki/translations/tr/Draft_Heal.md b/wiki/translations/tr/Draft_Heal.md index 203a05494a..852488a6de 100644 --- a/wiki/translations/tr/Draft_Heal.md +++ b/wiki/translations/tr/Draft_Heal.md @@ -6,6 +6,8 @@ SeeAlso:[Yükselt](Draft_Upgrade/tr.md), [Düşür](Draft_Downgrade/tr.md) --- +# Draft Heal/tr + @@ -48,5 +50,5 @@ Bu komut, daha eski bir sürümde çalışması için eski bir FreeCAD sürümü - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Heal/tr diff --git a/wiki/translations/tr/Draft_Label.md b/wiki/translations/tr/Draft_Label.md index 31230c4f42..acac51f291 100644 --- a/wiki/translations/tr/Draft_Label.md +++ b/wiki/translations/tr/Draft_Label.md @@ -9,6 +9,8 @@ Version/tr:0.17 --- +# Draft Label/tr + @@ -312,5 +314,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Label/tr diff --git a/wiki/translations/tr/Draft_Line.md b/wiki/translations/tr/Draft_Line.md index a161fe8a9d..30042d0309 100644 --- a/wiki/translations/tr/Draft_Line.md +++ b/wiki/translations/tr/Draft_Line.md @@ -9,6 +9,8 @@ SeeAlso:[Tel](Draft_Wire/tr.md),[Nokta](Draft_Point/tr.md) --- +# Draft Line/tr + @@ -181,5 +183,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Line/tr diff --git a/wiki/translations/tr/Draft_Linestyle.md b/wiki/translations/tr/Draft_Linestyle.md index 34787f7084..e94ecc72e8 100644 --- a/wiki/translations/tr/Draft_Linestyle.md +++ b/wiki/translations/tr/Draft_Linestyle.md @@ -1,2 +1,5 @@ # Draft Linestyle/tr 1. REDIRECT [Draft\_Tray](Draft_Tray.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Linestyle/tr diff --git a/wiki/translations/tr/Draft_Mirror.md b/wiki/translations/tr/Draft_Mirror.md index 349997ea15..35123ccadf 100644 --- a/wiki/translations/tr/Draft_Mirror.md +++ b/wiki/translations/tr/Draft_Mirror.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Scale](Draft_Scale/tr.md) --- +# Draft Mirror/tr + @@ -124,8 +126,5 @@ mirrored2 = Draft.mirror([polygon1, polygon2], -p1, -p2) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Mirror/tr diff --git a/wiki/translations/tr/Draft_Module.md b/wiki/translations/tr/Draft_Module.md index a7a1a1fda7..e7adc211b4 100644 --- a/wiki/translations/tr/Draft_Module.md +++ b/wiki/translations/tr/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/tr 1. REDIRECT [Draft\_Workbench/tr](Draft_Workbench/tr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/tr diff --git a/wiki/translations/tr/Draft_Move.md b/wiki/translations/tr/Draft_Move.md index 73f349da32..f3f1ebf5a7 100644 --- a/wiki/translations/tr/Draft_Move.md +++ b/wiki/translations/tr/Draft_Move.md @@ -9,6 +9,8 @@ Version:0.7 --- +# Draft Move/tr + @@ -177,5 +179,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Move/tr diff --git a/wiki/translations/tr/Draft_Offset.md b/wiki/translations/tr/Draft_Offset.md index 10165deee4..4c94c9534e 100644 --- a/wiki/translations/tr/Draft_Offset.md +++ b/wiki/translations/tr/Draft_Offset.md @@ -8,6 +8,8 @@ SeeAlso:[Parça 2D ofset](Part_Offset2D/tr.md) --- +# Draft Offset/tr + @@ -170,5 +172,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Offset/tr diff --git a/wiki/translations/tr/Draft_PathArray.md b/wiki/translations/tr/Draft_PathArray.md index d2cdb1b4d6..aa07a74043 100644 --- a/wiki/translations/tr/Draft_PathArray.md +++ b/wiki/translations/tr/Draft_PathArray.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Array](Draft_Array/tr.md) --- +# Draft PathArray/tr + @@ -257,8 +259,5 @@ path_array2 = Draft.make_path_array(obj, wire, count=3, extra=App.Vector(0, -500 doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PathArray/tr diff --git a/wiki/translations/tr/Draft_Pattern.md b/wiki/translations/tr/Draft_Pattern.md index 2a50850f5a..25accf1fd8 100644 --- a/wiki/translations/tr/Draft_Pattern.md +++ b/wiki/translations/tr/Draft_Pattern.md @@ -1,10 +1,4 @@ # Draft Pattern/tr - - - - - - {{TOCright}} ## Description @@ -59,8 +53,5 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr - The **Edit → Preferences... → Draft → Visual settings → Hatch patterns resolution** preference is not used. - To change the **Pattern Size** used for new objects: **Edit → Preferences... → Draft → Visual settings → Hatch Pattern default size**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Pattern/tr diff --git a/wiki/translations/tr/Draft_Point.md b/wiki/translations/tr/Draft_Point.md index c7bdfb047c..bd7eb8a710 100644 --- a/wiki/translations/tr/Draft_Point.md +++ b/wiki/translations/tr/Draft_Point.md @@ -9,6 +9,8 @@ Version:0.17 --- +# Draft Point/tr + @@ -205,5 +207,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Point/tr diff --git a/wiki/translations/tr/Draft_PointArray.md b/wiki/translations/tr/Draft_PointArray.md index 611e3948bd..ad31136a9f 100644 --- a/wiki/translations/tr/Draft_PointArray.md +++ b/wiki/translations/tr/Draft_PointArray.md @@ -9,6 +9,8 @@ SeeAlso:[Draft Array](Draft_Array/tr.md), [Draft PathArray](Draft_PathArray/tr.md) --- +# Draft PointArray/tr + @@ -206,8 +208,5 @@ point_array = Draft.make_point_array(polygon, compound) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft PointArray/tr diff --git a/wiki/translations/tr/Draft_Polygon.md b/wiki/translations/tr/Draft_Polygon.md index a5c67593a0..aa51345acf 100644 --- a/wiki/translations/tr/Draft_Polygon.md +++ b/wiki/translations/tr/Draft_Polygon.md @@ -9,6 +9,8 @@ Version:0.7 --- +# Draft Polygon/tr + @@ -223,5 +225,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Polygon/tr diff --git a/wiki/translations/tr/Draft_Rectangle.md b/wiki/translations/tr/Draft_Rectangle.md index c6208498df..7c78c231c1 100644 --- a/wiki/translations/tr/Draft_Rectangle.md +++ b/wiki/translations/tr/Draft_Rectangle.md @@ -9,6 +9,8 @@ SeeAlso:[Elips](Draft_Ellipse/tr.md),[Parça Kutu](Part_Box/tr.md) --- +# Draft Rectangle/tr + @@ -221,5 +223,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rectangle/tr diff --git a/wiki/translations/tr/Draft_Rotate.md b/wiki/translations/tr/Draft_Rotate.md index f832a273a6..c7abf9642e 100644 --- a/wiki/translations/tr/Draft_Rotate.md +++ b/wiki/translations/tr/Draft_Rotate.md @@ -9,6 +9,8 @@ Version:0.17 --- +# Draft Rotate/tr + @@ -197,5 +199,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Rotate/tr diff --git a/wiki/translations/tr/Draft_SVG.md b/wiki/translations/tr/Draft_SVG.md index 611e5c65bf..824aaeda89 100644 --- a/wiki/translations/tr/Draft_SVG.md +++ b/wiki/translations/tr/Draft_SVG.md @@ -1,10 +1,4 @@ # Draft SVG/tr - - - - - - {{TOCright}} ## Description @@ -94,3 +88,6 @@ importSVG.export(objects, "/home/user/Pictures/myfile.svg") [Category:File Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SVG/tr diff --git a/wiki/translations/tr/Draft_Scale.md b/wiki/translations/tr/Draft_Scale.md index 5f3f5bd1a5..39698a543e 100644 --- a/wiki/translations/tr/Draft_Scale.md +++ b/wiki/translations/tr/Draft_Scale.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Clone](Draft_Clone/tr.md) --- +# Draft Scale/tr + @@ -116,8 +118,5 @@ wires = Draft.scale([wire1, wire2], scale2, copy=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Scale/tr diff --git a/wiki/translations/tr/Draft_SelectGroup.md b/wiki/translations/tr/Draft_SelectGroup.md index 8957514603..5bad1e1e3e 100644 --- a/wiki/translations/tr/Draft_SelectGroup.md +++ b/wiki/translations/tr/Draft_SelectGroup.md @@ -8,6 +8,8 @@ SeeAlso:[Draft AddToGroup](Draft_AddToGroup/tr.md), [Std CreateGroup](Std_Group/tr.md) --- +# Draft SelectGroup/tr + @@ -54,8 +56,5 @@ The command currently does not work well with layers and can produce confusing r - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectGroup/tr diff --git a/wiki/translations/tr/Draft_SelectPlane.md b/wiki/translations/tr/Draft_SelectPlane.md index 305f7da9fb..b047fec738 100644 --- a/wiki/translations/tr/Draft_SelectPlane.md +++ b/wiki/translations/tr/Draft_SelectPlane.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/tr.md), [Arch](Arch_Workbench/tr.md) --- +# Draft SelectPlane/tr + @@ -134,8 +136,5 @@ projection = my_plane.projectPoint(App.Vector(10, 15, 2)) print(projection) ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft SelectPlane/tr diff --git a/wiki/translations/tr/Draft_Shape2DView.md b/wiki/translations/tr/Draft_Shape2DView.md index cd14c3faf1..068068cc32 100644 --- a/wiki/translations/tr/Draft_Shape2DView.md +++ b/wiki/translations/tr/Draft_Shape2DView.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/tr.md), [Arch](Arch_Workbench/tr.md) --- +# Draft Shape2DView/tr + @@ -145,8 +147,5 @@ shape3.ProjectionMode = "Individual Faces" doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Shape2DView/tr diff --git a/wiki/translations/tr/Draft_ShapeString.md b/wiki/translations/tr/Draft_ShapeString.md index 18e53de774..f3b57f5a5b 100644 --- a/wiki/translations/tr/Draft_ShapeString.md +++ b/wiki/translations/tr/Draft_ShapeString.md @@ -9,6 +9,8 @@ SeeAlso:[Metin](Draft_Text/tr.md), [Parça çıkarma](Part_Extrude/tr.md),
[Macro Fonts Win10 PYMP](Macro_Fonts_Win10_PYMP/tr.md) --- +# Draft ShapeString/tr + @@ -230,5 +232,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString/tr diff --git a/wiki/translations/tr/Draft_ShapeString_tutorial.md b/wiki/translations/tr/Draft_ShapeString_tutorial.md index 035899939e..a237d0b3d1 100644 --- a/wiki/translations/tr/Draft_ShapeString_tutorial.md +++ b/wiki/translations/tr/Draft_ShapeString_tutorial.md @@ -1,7 +1,4 @@ # Draft ShapeString tutorial/tr - - -
@@ -199,4 +196,7 @@ See the forum thread, [How to use ShapeStrings in PartDesign](https://forum.free {{Tutorials navi -}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} +}} {{PartDesign Tools navi}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShapeString tutorial/tr diff --git a/wiki/translations/tr/Draft_ShowSnapBar.md b/wiki/translations/tr/Draft_ShowSnapBar.md index d4a6eb59b1..67dd1ee5a6 100644 --- a/wiki/translations/tr/Draft_ShowSnapBar.md +++ b/wiki/translations/tr/Draft_ShowSnapBar.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/tr.md), [Arch](Arch_Workbench/tr.md) --- +# Draft ShowSnapBar/tr +
@@ -23,8 +25,5 @@ The **Draft S - Select the **View → Toolbars → Draft Snap** option from the menu. - Right-click an empty space in the [toolbar area](Interface.md) and select the **Draft Snap** option from the menu that appears. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ShowSnapBar/tr diff --git a/wiki/translations/tr/Draft_Snap.md b/wiki/translations/tr/Draft_Snap.md index 51a12f3184..e528ff9e19 100644 --- a/wiki/translations/tr/Draft_Snap.md +++ b/wiki/translations/tr/Draft_Snap.md @@ -1,10 +1,4 @@ # Draft Snap/tr - - - - - - {{TOCright}} ## Açıklama @@ -136,5 +130,5 @@ Note that after changing some preferences you must restart FreeCAD. - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap/tr diff --git a/wiki/translations/tr/Draft_Snap_Angle.md b/wiki/translations/tr/Draft_Snap_Angle.md index 5f88f5857d..a663560519 100644 --- a/wiki/translations/tr/Draft_Snap_Angle.md +++ b/wiki/translations/tr/Draft_Snap_Angle.md @@ -1,3 +1,4 @@ +# Draft Snap Angle/tr --- - GuiCommand:/tr Name:Draft Snap Angle @@ -48,8 +49,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Angle/tr diff --git a/wiki/translations/tr/Draft_Snap_Center.md b/wiki/translations/tr/Draft_Snap_Center.md index 850b480a57..ff1e520a21 100644 --- a/wiki/translations/tr/Draft_Snap_Center.md +++ b/wiki/translations/tr/Draft_Snap_Center.md @@ -8,6 +8,8 @@ SeeAlso:[Taslak Yakalama](Draft_Snap/tr.md), [Taslak Geçiş yakalama](Draft_ToggleSnap/tr.md) --- +# Draft Snap Center/tr + @@ -75,5 +77,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Center/tr diff --git a/wiki/translations/tr/Draft_Snap_Dimensions.md b/wiki/translations/tr/Draft_Snap_Dimensions.md index 14fa392ce3..c5a96b1b32 100644 --- a/wiki/translations/tr/Draft_Snap_Dimensions.md +++ b/wiki/translations/tr/Draft_Snap_Dimensions.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap Dimensions/tr + @@ -49,8 +51,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Dimensions/tr diff --git a/wiki/translations/tr/Draft_Snap_Grid.md b/wiki/translations/tr/Draft_Snap_Grid.md index 9d7ff1d6b5..75db6ad749 100644 --- a/wiki/translations/tr/Draft_Snap_Grid.md +++ b/wiki/translations/tr/Draft_Snap_Grid.md @@ -7,6 +7,8 @@ SeeAlso:[IzgaraYakala](Draft_ToggleGrid/tr.md), [Snap](Draft_Snap/tr.md) --- +# Draft Snap Grid/tr + @@ -72,5 +74,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Grid/tr diff --git a/wiki/translations/tr/Draft_Snap_Lock.md b/wiki/translations/tr/Draft_Snap_Lock.md index c8216f7b08..5fcb00aa67 100644 --- a/wiki/translations/tr/Draft_Snap_Lock.md +++ b/wiki/translations/tr/Draft_Snap_Lock.md @@ -7,6 +7,8 @@ SeeAlso:[Taslak Yakalama](Draft_Snap/tr.md), [Taslak Izgara açık/kapalı](Draft_ToggleGrid/tr.md) --- +# Draft Snap Lock/tr + @@ -47,5 +49,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Lock/tr diff --git a/wiki/translations/tr/Draft_Snap_Midpoint.md b/wiki/translations/tr/Draft_Snap_Midpoint.md index d749ec1cba..4d45679675 100644 --- a/wiki/translations/tr/Draft_Snap_Midpoint.md +++ b/wiki/translations/tr/Draft_Snap_Midpoint.md @@ -8,6 +8,8 @@ SeeAlso:[Yakalama](Draft_Snap/tr.md) --- +# Draft Snap Midpoint/tr + @@ -47,8 +49,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Midpoint/tr diff --git a/wiki/translations/tr/Draft_Snap_Near.md b/wiki/translations/tr/Draft_Snap_Near.md index 9f1f42c3fe..ecaaa130db 100644 --- a/wiki/translations/tr/Draft_Snap_Near.md +++ b/wiki/translations/tr/Draft_Snap_Near.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap Near/tr + @@ -65,8 +67,5 @@ Taslak Taşıma ve Taslak Döndürme ile de çalışacaktır. See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Near/tr diff --git a/wiki/translations/tr/Draft_Snap_Ortho.md b/wiki/translations/tr/Draft_Snap_Ortho.md index 2c432fe99d..f64625c619 100644 --- a/wiki/translations/tr/Draft_Snap_Ortho.md +++ b/wiki/translations/tr/Draft_Snap_Ortho.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap Ortho/tr + @@ -36,8 +38,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Ortho/tr diff --git a/wiki/translations/tr/Draft_Snap_Parallel.md b/wiki/translations/tr/Draft_Snap_Parallel.md index b96b4a24fa..865966c87a 100644 --- a/wiki/translations/tr/Draft_Snap_Parallel.md +++ b/wiki/translations/tr/Draft_Snap_Parallel.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap Parallel/tr + @@ -47,8 +49,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Parallel/tr diff --git a/wiki/translations/tr/Draft_Snap_Special.md b/wiki/translations/tr/Draft_Snap_Special.md index 8c18858a08..319d559ae9 100644 --- a/wiki/translations/tr/Draft_Snap_Special.md +++ b/wiki/translations/tr/Draft_Snap_Special.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap Special/tr + @@ -51,8 +53,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Special/tr diff --git a/wiki/translations/tr/Draft_Snap_WorkingPlane.md b/wiki/translations/tr/Draft_Snap_WorkingPlane.md index 792290b372..2a6599caad 100644 --- a/wiki/translations/tr/Draft_Snap_WorkingPlane.md +++ b/wiki/translations/tr/Draft_Snap_WorkingPlane.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Draft Snap WorkingPlane/tr + @@ -44,8 +46,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap WorkingPlane/tr diff --git a/wiki/translations/tr/Draft_Text.md b/wiki/translations/tr/Draft_Text.md index 64e1e06d21..e477b348d3 100644 --- a/wiki/translations/tr/Draft_Text.md +++ b/wiki/translations/tr/Draft_Text.md @@ -9,6 +9,8 @@ SeeAlso:[Etiket](Draft_Label/tr.md), [Şekil dizesi](Draft_ShapeString/tr.md) --- +# Draft Text/tr + @@ -246,5 +248,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Text/tr diff --git a/wiki/translations/tr/Draft_ToggleConstructionMode.md b/wiki/translations/tr/Draft_ToggleConstructionMode.md index a839106a71..bc333fed5e 100644 --- a/wiki/translations/tr/Draft_ToggleConstructionMode.md +++ b/wiki/translations/tr/Draft_ToggleConstructionMode.md @@ -8,6 +8,8 @@ SeeAlso:[Draft AddConstruction](Draft_AddConstruction.md), [Draft AutoGroup](Draft_AutoGroup.md) --- +# Draft ToggleConstructionMode/tr + @@ -39,8 +41,5 @@ In FreeCAD version 0.19 this command and the [Draft AddConstruction](Draft_AddCo - To change the label ((v0.20) ) of the construction group: **Edit → Preferences... → Draft → General settings → Construction Geometry → Construction group name**. - To change the color that is used: **Edit → Preferences... → Draft → General settings → Construction Geometry → Construction geometry color**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleConstructionMode/tr diff --git a/wiki/translations/tr/Draft_ToggleContinueMode.md b/wiki/translations/tr/Draft_ToggleContinueMode.md index 28cba74c37..a0c380ca92 100644 --- a/wiki/translations/tr/Draft_ToggleContinueMode.md +++ b/wiki/translations/tr/Draft_ToggleContinueMode.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/tr.md), [Arch](Arch_Workbench/tr.md) --- +# Draft ToggleContinueMode/tr + @@ -21,8 +23,5 @@ The ** 4. Create your geometry. 5. Press **Esc** or the **Close** button to finish the command and switch off continue mode. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleContinueMode/tr diff --git a/wiki/translations/tr/Draft_ToggleDisplayMode.md b/wiki/translations/tr/Draft_ToggleDisplayMode.md index e58ea4c48e..08de2020ef 100644 --- a/wiki/translations/tr/Draft_ToggleDisplayMode.md +++ b/wiki/translations/tr/Draft_ToggleDisplayMode.md @@ -7,6 +7,8 @@ Shortcut:Shift + Space --- +# Draft ToggleDisplayMode/tr + @@ -26,8 +28,5 @@ The **D - Select the **Utilities → Toggle normal/wireframe display** option from the [Tree view](Tree_view.md) or [3D view](3D_view.md) context menu. - Use the keyboard shortcut: **Shift**+**Space**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleDisplayMode/tr diff --git a/wiki/translations/tr/Draft_ToggleGrid.md b/wiki/translations/tr/Draft_ToggleGrid.md index 2e5be65747..02312cb449 100644 --- a/wiki/translations/tr/Draft_ToggleGrid.md +++ b/wiki/translations/tr/Draft_ToggleGrid.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Grid](Draft_Snap_Grid.md), [Draft SelectPlane](Draft_SelectPlane.md) --- +# Draft ToggleGrid/tr + @@ -34,8 +36,5 @@ See [Draft Snap](Draft_Snap#Preferences.md). - To use the grid select: **Edit → Preferences... → Draft → Grid and snapping → Grid → Use grid**. After changing this preference you must restart FreeCAD. - Several other grid preferences are also available: **Edit → Preferences... → Draft → Grid and snapping → Grid**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft ToggleGrid/tr diff --git a/wiki/translations/tr/Draft_Trimex.md b/wiki/translations/tr/Draft_Trimex.md index 1484c9f6f9..8c89f25eb4 100644 --- a/wiki/translations/tr/Draft_Trimex.md +++ b/wiki/translations/tr/Draft_Trimex.md @@ -8,6 +8,8 @@ SeeAlso:[Part Extrude](Part_Extrude/tr.md) --- +# Draft Trimex/tr + @@ -121,8 +123,5 @@ solid = Draft.extrude(rectangle, vector, solid=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Trimex/tr diff --git a/wiki/translations/tr/Draft_UndoLine.md b/wiki/translations/tr/Draft_UndoLine.md index 7e49750889..f4ba524825 100644 --- a/wiki/translations/tr/Draft_UndoLine.md +++ b/wiki/translations/tr/Draft_UndoLine.md @@ -1,2 +1,5 @@ # Draft UndoLine/tr 1. REDIRECT [Draft\_Wire/tr](Draft_Wire/tr.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft UndoLine/tr diff --git a/wiki/translations/tr/Draft_Upgrade.md b/wiki/translations/tr/Draft_Upgrade.md index e988ad2f2c..bdfd218797 100644 --- a/wiki/translations/tr/Draft_Upgrade.md +++ b/wiki/translations/tr/Draft_Upgrade.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Downgrade](Draft_Downgrade/tr.md) --- +# Draft Upgrade/tr + @@ -83,8 +85,5 @@ add_list5, delete_list5 = Draft.upgrade(face, delete=False) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Upgrade/tr diff --git a/wiki/translations/tr/Draft_Wire.md b/wiki/translations/tr/Draft_Wire.md index 1e75340442..ac0643974e 100644 --- a/wiki/translations/tr/Draft_Wire.md +++ b/wiki/translations/tr/Draft_Wire.md @@ -9,6 +9,8 @@ SeeAlso:[Çizgi](Draft_Line/tr.md), [BSpline](Draft_BSpline/tr.md) --- +# Draft Wire/tr + @@ -244,5 +246,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Wire/tr diff --git a/wiki/translations/tr/Draft_WireToBSpline.md b/wiki/translations/tr/Draft_WireToBSpline.md index 3ec398076f..b4907f98f3 100644 --- a/wiki/translations/tr/Draft_WireToBSpline.md +++ b/wiki/translations/tr/Draft_WireToBSpline.md @@ -6,6 +6,8 @@ Workbenches:[Draft](Draft_Workbench/tr.md), [Arch](Arch_Workbench/tr.md) --- +# Draft WireToBSpline/tr + @@ -60,8 +62,5 @@ wire_from_spline = Draft.make_wire(points2) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft WireToBSpline/tr diff --git a/wiki/translations/tr/Draft_Workbench.md b/wiki/translations/tr/Draft_Workbench.md index 8fdd99e0ef..fab348859c 100644 --- a/wiki/translations/tr/Draft_Workbench.md +++ b/wiki/translations/tr/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/tr - - - - - -Draft workbench icon +# Draft workbench icon Draft Workbench/tr {{TOCright}} @@ -421,3 +415,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches/tr](Category:Workbenches/tr.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/tr diff --git a/wiki/translations/tr/Draft_tutorial.md b/wiki/translations/tr/Draft_tutorial.md index d8f15b78d3..71f0e1c6e5 100644 --- a/wiki/translations/tr/Draft_tutorial.md +++ b/wiki/translations/tr/Draft_tutorial.md @@ -1,7 +1,4 @@ # Draft tutorial/tr - - -
@@ -229,4 +226,7 @@ The [Draft Workbench](Draft_Workbench.md) in many ways is similar to the [Sketch {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft tutorial/tr diff --git a/wiki/translations/tr/Drawing_Module.md b/wiki/translations/tr/Drawing_Module.md index 090239cb6d..2b4f7d0562 100644 --- a/wiki/translations/tr/Drawing_Module.md +++ b/wiki/translations/tr/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/tr 1. REDIRECT [Drawing\_Workbench/tr](Drawing_Workbench/tr.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/tr diff --git a/wiki/translations/tr/Drawing_Workbench.md b/wiki/translations/tr/Drawing_Workbench.md index 2a132102b3..4b2f339927 100644 --- a/wiki/translations/tr/Drawing_Workbench.md +++ b/wiki/translations/tr/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/tr - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** Drawing workbench icon @@ -84,3 +81,6 @@ Some notes on the programming side of the drawing module will be added to the [D }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/tr diff --git a/wiki/translations/tr/Dxf_Importer_Install.md b/wiki/translations/tr/Dxf_Importer_Install.md index 5022edb2ae..a96ae0ea98 100644 --- a/wiki/translations/tr/Dxf_Importer_Install.md +++ b/wiki/translations/tr/Dxf_Importer_Install.md @@ -1,7 +1,4 @@ # Dxf Importer Install/tr - - -
@@ -185,3 +182,6 @@ Using Teigha. Teigha is a full program and you can use it without FreeCAD ### Links Video tutorial [FreeCAD Tutorial 24 - DXF/DWG Import](https://www.youtube.com/watch?v=wHxTWuDhc3M) + +--- +[documentation index](../README.md) > Dxf Importer Install/tr diff --git a/wiki/translations/tr/Embedding_FreeCAD.md b/wiki/translations/tr/Embedding_FreeCAD.md index 9e34245fb3..c485a637ad 100644 --- a/wiki/translations/tr/Embedding_FreeCAD.md +++ b/wiki/translations/tr/Embedding_FreeCAD.md @@ -1,7 +1,4 @@ # Embedding FreeCAD/tr - - - {{TOCright}} ## Introduction @@ -134,3 +131,6 @@ Since the FreeCAD Python module is compiled from C++ (rather than being a pure P }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCAD/tr diff --git a/wiki/translations/tr/Embedding_FreeCADGui.md b/wiki/translations/tr/Embedding_FreeCADGui.md index 258e4bd19d..d096dc5f16 100644 --- a/wiki/translations/tr/Embedding_FreeCADGui.md +++ b/wiki/translations/tr/Embedding_FreeCADGui.md @@ -1,6 +1,4 @@ # Embedding FreeCADGui/tr - - ## Introduction It is possible to [import the FreeCAD module](Embedding_FreeCAD.md) into a [Python](Python.md) application, and use all its tools from the host application, but the graphical user interface (GUI) can be imported as a Python module as well. Normally you can only import the complete interface as a whole, not pieces of it; this is because the FreeCAD interface system is not only made of independent widgets and toolbars, but is a complex construction where several invisible components (such as the selection system, etc) are needed for the main [3D view](3D_view.md) to be able to function. @@ -488,3 +486,6 @@ In the source code there are examples of embedding FreeCAD with various graphica }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCADGui/tr diff --git a/wiki/translations/tr/Extra_python_modules.md b/wiki/translations/tr/Extra_python_modules.md index a89186f41f..5f6aab5919 100644 --- a/wiki/translations/tr/Extra_python_modules.md +++ b/wiki/translations/tr/Extra_python_modules.md @@ -1,10 +1,4 @@ # Extra python modules/tr - - - - - - {{TOCright}} ## Overview @@ -721,3 +715,6 @@ utils = LazyLoader('PathScripts', globals(), 'PathScripts.PathUtils') [Category:Python Code](Category:Python_Code.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Python Code](Category:Python Code.md) > Extra python modules/tr diff --git a/wiki/translations/tr/FEM_Concrete.md b/wiki/translations/tr/FEM_Concrete.md index 11d9447130..4643728a03 100644 --- a/wiki/translations/tr/FEM_Concrete.md +++ b/wiki/translations/tr/FEM_Concrete.md @@ -1,7 +1,4 @@ # FEM Concrete/tr - - -
Bu sayfa, beton yapılarla ilgili bazı ilginç konuları toplar: @@ -23,4 +20,7 @@ Bu sayfa, beton yapılarla ilgili bazı ilginç konuları toplar: {{FEM Tools navi -}} +}} + +--- +[documentation index](../README.md) > FEM Concrete/tr diff --git a/wiki/translations/tr/FEM_Module.md b/wiki/translations/tr/FEM_Module.md index 52e498c2f4..014c49652b 100644 --- a/wiki/translations/tr/FEM_Module.md +++ b/wiki/translations/tr/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/tr 1. REDIRECT [FEM\_Workbench/tr](FEM_Workbench/tr.md) + +--- +[documentation index](../README.md) > FEM Module/tr diff --git a/wiki/translations/tr/FEM_Workbench.md b/wiki/translations/tr/FEM_Workbench.md index 87a70387be..0aceefaa7f 100644 --- a/wiki/translations/tr/FEM_Workbench.md +++ b/wiki/translations/tr/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/tr - - - - - -FEM workbench icon +# FEM workbench icon FEM Workbench/tr {{TOCright}} @@ -278,3 +272,6 @@ A developer\'s guide has been written to help power users in understanding the c }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/tr diff --git a/wiki/translations/tr/Feature_editing.md b/wiki/translations/tr/Feature_editing.md index f47db89318..6aac76c04d 100644 --- a/wiki/translations/tr/Feature_editing.md +++ b/wiki/translations/tr/Feature_editing.md @@ -1,5 +1,5 @@ # Feature editing/tr - {{TOCright}} +{{TOCright}} ## Giriş @@ -170,3 +170,6 @@ The [tutorials](Tutorials.md) page provides some examples of using the [feature }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Feature editing/tr diff --git a/wiki/translations/tr/Feature_list.md b/wiki/translations/tr/Feature_list.md index 448eb560b2..0c36b091f2 100644 --- a/wiki/translations/tr/Feature_list.md +++ b/wiki/translations/tr/Feature_list.md @@ -1,7 +1,4 @@ # Feature list/tr - - -
FreeCAD\'in uyguladığı özelliklerin kapsamlı bir listesidir, dolayısıyla tam değildir. Gelecek dönemler için [Geliştirme yol haritasına](Development_roadmap.md) bakın veya hızlı bir şekilde göz gezdirmek için [Ekran görüntülerine](Screenshots.md) bir göz atın. @@ -291,3 +288,6 @@ Uzman kullanıcılar, çeşitli özel [dış tezgahlar](external_workbenches.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/tr diff --git a/wiki/translations/tr/FreeCADShip_Workbench.md b/wiki/translations/tr/FreeCADShip_Workbench.md index 878a541738..92d40e452d 100644 --- a/wiki/translations/tr/FreeCADShip_Workbench.md +++ b/wiki/translations/tr/FreeCADShip_Workbench.md @@ -1,2 +1,5 @@ # FreeCADShip Workbench/tr 1. REDIRECT [Ship\_Workbench/tr](Ship_Workbench/tr.md) + +--- +[documentation index](../README.md) > FreeCADShip Workbench/tr diff --git a/wiki/translations/tr/FreeCAD_Build_Tool.md b/wiki/translations/tr/FreeCAD_Build_Tool.md index 6a9819975a..39a6bbbd4a 100644 --- a/wiki/translations/tr/FreeCAD_Build_Tool.md +++ b/wiki/translations/tr/FreeCAD_Build_Tool.md @@ -1,10 +1,4 @@ # FreeCAD Build Tool/tr - - - - - - {{TOCright}} ## Overview @@ -72,3 +66,6 @@ The \"CM\" command [creates a new application module (Workbench)](Workbench_crea [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Build Tool/tr diff --git a/wiki/translations/tr/FreeCAD_Scripting_Basics.md b/wiki/translations/tr/FreeCAD_Scripting_Basics.md index 234940751e..e4f2572a38 100644 --- a/wiki/translations/tr/FreeCAD_Scripting_Basics.md +++ b/wiki/translations/tr/FreeCAD_Scripting_Basics.md @@ -1,7 +1,4 @@ # FreeCAD Scripting Basics/tr - - - {{TOCright}} ## Python scripting in FreeCAD @@ -211,3 +208,6 @@ Now you can really start playing with FreeCAD! For a complete list of available }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Scripting Basics/tr diff --git a/wiki/translations/tr/FreeCAD_and_DXF_Import.md b/wiki/translations/tr/FreeCAD_and_DXF_Import.md index 3d2ec93351..8e474afadc 100644 --- a/wiki/translations/tr/FreeCAD_and_DXF_Import.md +++ b/wiki/translations/tr/FreeCAD_and_DXF_Import.md @@ -1,5 +1,5 @@ # FreeCAD and DXF Import/tr - {{TOCright}} +{{TOCright}} ## Background @@ -103,3 +103,6 @@ You can also try: For an overview of all DXF related preferences see [Import Export Preferences](Import_Export_Preferences#DXF.md). [Category:User\_Documentation](Category:User_Documentation.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > FreeCAD and DXF Import/tr diff --git a/wiki/translations/tr/FreeCAD_vector_math_library.md b/wiki/translations/tr/FreeCAD_vector_math_library.md index 26badff4eb..a88e05cacd 100644 --- a/wiki/translations/tr/FreeCAD_vector_math_library.md +++ b/wiki/translations/tr/FreeCAD_vector_math_library.md @@ -1,6 +1,4 @@ # FreeCAD vector math library/tr - - ## Introduction This is a [Python](Python.md) module containing a couple of useful functions to manipulate vectors. This library is included in the [Draft\_Workbench](Draft_Workbench.md) and can be accessed like this from the Python interpreter: @@ -87,3 +85,6 @@ def project(first, other): }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD vector math library/tr diff --git a/wiki/translations/tr/Getting_started.md b/wiki/translations/tr/Getting_started.md index 21976cc96e..6306176aa3 100644 --- a/wiki/translations/tr/Getting_started.md +++ b/wiki/translations/tr/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/tr - - - - - - {{TOCright}} ## Önsöz @@ -305,3 +299,6 @@ Son olarak, FreeCAD\'in en güçlü özelliklerinden biri [betik](Power_users_hu [Kullanıcı Belgeleri](Category:User_Documentation/tr.md) + +--- +[documentation index](../README.md) > Getting started/tr diff --git a/wiki/translations/tr/Glossary.md b/wiki/translations/tr/Glossary.md index dad8d9c2dd..701a46633d 100644 --- a/wiki/translations/tr/Glossary.md +++ b/wiki/translations/tr/Glossary.md @@ -1,9 +1,4 @@ # Glossary/tr - - - - - This page is a glossary of common FreeCAD terms and definitions. Jump to letter: {{CompactTOC|center=yes}} @@ -1140,3 +1135,6 @@ Jump to letter: {{CompactTOC|center=yes}} [Category:Wiki](Category:Wiki.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Wiki](Category:Wiki.md) > Glossary/tr diff --git a/wiki/translations/tr/Gui_Command.md b/wiki/translations/tr/Gui_Command.md index e6a8112ff0..aa31474cba 100644 --- a/wiki/translations/tr/Gui_Command.md +++ b/wiki/translations/tr/Gui_Command.md @@ -1,5 +1,5 @@ # Gui Command/tr - The GuiCommand is one of the most important functions of FreeCAD in the main interaction point of the user. Every time the user selects a menu item or presses a toolbar button it activates a GuiCommand. Some of the attributes of a GuiCommand are: +The GuiCommand is one of the most important functions of FreeCAD in the main interaction point of the user. Every time the user selects a menu item or presses a toolbar button it activates a GuiCommand. Some of the attributes of a GuiCommand are: - Defines a name - Contains an icon @@ -60,4 +60,7 @@ Hopefully this becomes true for all GuiCommands in the [List of Commands](List_o {{Powerdocnavi -}} +}} + +--- +[documentation index](../README.md) > Gui Command/tr diff --git a/wiki/translations/tr/Help.md b/wiki/translations/tr/Help.md index 3a64408f3b..76d6562cf5 100644 --- a/wiki/translations/tr/Help.md +++ b/wiki/translations/tr/Help.md @@ -1,7 +1,4 @@ # Help/tr - - -
FreeCAD geliştiricilerinden ve kullanıcılarından yardım alabileceğiniz ve destek alabileceğiniz iki ana forum vardır: [yardım forumu](http://forum.freecadweb.org/), yardım isteyip daha önce yapılmış soruları okuyabilirsiniz ve / veya çözüldü ve [tartışma forumu](http://forum.freecadweb.org/), diğer konuları tartışabileceğiniz, FreeCAD ile ilgili görüşlerinizi, fikirlerinizi vb. anlatabilirsiniz. Bu forumlar hem çok aktif hem de çok hızlı cevap verir. @@ -57,3 +54,6 @@ We have an [official dedicated FreeCAD Discord server](https://discord.gg/NpMefp [Category:Help](Category:Help.md) + +--- +[documentation index](../README.md) > [Help](Category:Help.md) > Help/tr diff --git a/wiki/translations/tr/Help_FreeCAD.md b/wiki/translations/tr/Help_FreeCAD.md index a96517892f..88de680b2d 100644 --- a/wiki/translations/tr/Help_FreeCAD.md +++ b/wiki/translations/tr/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/tr - - ## Introduction @@ -212,3 +210,6 @@ Writing code for FreeCAD is not hard, and you don\'t need any permission, you ca [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command_Reference/tr|Komut Referans]] sayfası, FreeCAD ](Category:Command_Reference/tr|Komut Referans]] sayfası, FreeCAD .md) > Help FreeCAD/tr diff --git a/wiki/translations/tr/How_to_install_macros.md b/wiki/translations/tr/How_to_install_macros.md index 20c3441604..b48643685c 100644 --- a/wiki/translations/tr/How_to_install_macros.md +++ b/wiki/translations/tr/How_to_install_macros.md @@ -1,5 +1,5 @@ # How to install macros/tr - {{TutorialInfo/tr +{{TutorialInfo/tr |Topic=Programming |Level=Medium programmer |Time=15 minutes @@ -472,3 +472,6 @@ and then press the **OK** button. }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > How to install macros/tr diff --git a/wiki/translations/tr/Image_Module.md b/wiki/translations/tr/Image_Module.md index c595aca9e8..cc5336d908 100644 --- a/wiki/translations/tr/Image_Module.md +++ b/wiki/translations/tr/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/tr 1. REDIRECT [Image\_Workbench/tr](Image_Workbench/tr.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/tr diff --git a/wiki/translations/tr/Image_Workbench.md b/wiki/translations/tr/Image_Workbench.md index e364e496fd..cdfa9909c1 100644 --- a/wiki/translations/tr/Image_Workbench.md +++ b/wiki/translations/tr/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/tr - - -Image workbench icon +# Image workbench icon Image Workbench/tr ## Introduction @@ -39,3 +36,6 @@ The offset of the image can be set during import, or changed later through its p }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/tr diff --git a/wiki/translations/tr/Import_Export_Preference.md b/wiki/translations/tr/Import_Export_Preference.md index 1e06db480b..7173f2075b 100644 --- a/wiki/translations/tr/Import_Export_Preference.md +++ b/wiki/translations/tr/Import_Export_Preference.md @@ -1,2 +1,5 @@ # Import Export Preference/tr 1. REDIRECT [Import\_Export\_Preferences/tr](Import_Export_Preferences/tr.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preference/tr diff --git a/wiki/translations/tr/Import_Export_Preferences.md b/wiki/translations/tr/Import_Export_Preferences.md index 7cf363f1a8..8ace71a004 100644 --- a/wiki/translations/tr/Import_Export_Preferences.md +++ b/wiki/translations/tr/Import_Export_Preferences.md @@ -1,7 +1,4 @@ # Import Export Preferences/tr - - -
## DXF Seçeneği @@ -640,3 +637,6 @@ For the VTK format you can specify the following: [Category:Common Questions](Category:Common_Questions.md) [Category:Preferences](Category:Preferences.md) [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export Preferences/tr diff --git a/wiki/translations/tr/Inspection_Workbench.md b/wiki/translations/tr/Inspection_Workbench.md index 56a851ed9d..19b5104f50 100644 --- a/wiki/translations/tr/Inspection_Workbench.md +++ b/wiki/translations/tr/Inspection_Workbench.md @@ -1,7 +1,4 @@ -# Inspection Workbench/tr - - -Inspection workbench icon +# Inspection workbench icon Inspection Workbench/tr ## Introduction @@ -27,3 +24,6 @@ Alternatively, use the macro Inspection Workbench/tr diff --git a/wiki/translations/tr/Install_on_Linux.md b/wiki/translations/tr/Install_on_Linux.md index 1773386768..58c6088bc4 100644 --- a/wiki/translations/tr/Install_on_Linux.md +++ b/wiki/translations/tr/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/tr 1. REDIRECT [Installing\_on\_Linux/tr](Installing_on_Linux/tr.md) + +--- +[documentation index](../README.md) > Install on Linux/tr diff --git a/wiki/translations/tr/Install_on_Mac.md b/wiki/translations/tr/Install_on_Mac.md index af6ca7b4e6..7a40c28916 100644 --- a/wiki/translations/tr/Install_on_Mac.md +++ b/wiki/translations/tr/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/tr 1. REDIRECT [Installing\_on\_Mac/tr](Installing_on_Mac/tr.md) + +--- +[documentation index](../README.md) > Install on Mac/tr diff --git a/wiki/translations/tr/Install_on_Unix.md b/wiki/translations/tr/Install_on_Unix.md index e6e914a95a..027d711d94 100644 --- a/wiki/translations/tr/Install_on_Unix.md +++ b/wiki/translations/tr/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/tr 1. REDIRECT [Installing\_on\_Linux/tr](Installing_on_Linux/tr.md) + +--- +[documentation index](../README.md) > Install on Unix/tr diff --git a/wiki/translations/tr/Install_on_Windows.md b/wiki/translations/tr/Install_on_Windows.md index 845a85a03e..1076609d93 100644 --- a/wiki/translations/tr/Install_on_Windows.md +++ b/wiki/translations/tr/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/tr 1. REDIRECT [Installing\_on\_Windows/tr](Installing_on_Windows/tr.md) + +--- +[documentation index](../README.md) > Install on Windows/tr diff --git a/wiki/translations/tr/Installing_more_workbenches.md b/wiki/translations/tr/Installing_more_workbenches.md index f1c612a7b0..fdd1ab98b3 100644 --- a/wiki/translations/tr/Installing_more_workbenches.md +++ b/wiki/translations/tr/Installing_more_workbenches.md @@ -1,6 +1,4 @@ # Installing more workbenches/tr - - ## Introduction Since v0.17 it is easy to add [external workbenches](external_workbenches.md) by using the [Addon Manager](Std_AddonMgr.md). A regular user doesn\'t need to do more than use this tool. @@ -48,3 +46,6 @@ See also a detailed description in the page [how to install additional workbench }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Installing more workbenches/tr diff --git a/wiki/translations/tr/Installing_on_Linux.md b/wiki/translations/tr/Installing_on_Linux.md index fe9e2a1a17..a83c9a3a05 100644 --- a/wiki/translations/tr/Installing_on_Linux.md +++ b/wiki/translations/tr/Installing_on_Linux.md @@ -1,9 +1,4 @@ # Installing on Linux/tr - - - - - ## Overview @@ -377,3 +372,6 @@ Once you\'ve got FreeCAD installed, it\'s time to [get started](Getting_started. [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/tr diff --git a/wiki/translations/tr/Installing_on_Mac.md b/wiki/translations/tr/Installing_on_Mac.md index c6cbffb8a6..a3e7859538 100644 --- a/wiki/translations/tr/Installing_on_Mac.md +++ b/wiki/translations/tr/Installing_on_Mac.md @@ -1,10 +1,4 @@ # Installing on Mac/tr - - - - - -
FreeCAD, Mac OS X \'te Yükleyici kullanılarak tek adımda kurulabilir. @@ -73,5 +67,5 @@ Son sürüm yükleme dosyasını [İndirme sayfasından](Download.md) indirebili
- - +--- +[documentation index](../README.md) > Installing on Mac/tr diff --git a/wiki/translations/tr/Installing_on_Windows.md b/wiki/translations/tr/Installing_on_Windows.md index a8dcde41a7..821e8a2c9d 100644 --- a/wiki/translations/tr/Installing_on_Windows.md +++ b/wiki/translations/tr/Installing_on_Windows.md @@ -1,7 +1,4 @@ # Installing on Windows/tr - - -
@@ -244,5 +241,5 @@ FreeCAD çalışıyor ancak OpenGL ekranının çalışmadığı, [ Wine](wikipe
- - +--- +[documentation index](../README.md) > Installing on Windows/tr diff --git a/wiki/translations/tr/Interface_Customization.md b/wiki/translations/tr/Interface_Customization.md index 5f0683e96d..f46f6eca2b 100644 --- a/wiki/translations/tr/Interface_Customization.md +++ b/wiki/translations/tr/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/tr - - - - - - {{TOCright}} ## Introduction @@ -305,4 +299,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/tr diff --git a/wiki/translations/tr/Introduction_to_Python.md b/wiki/translations/tr/Introduction_to_Python.md index 12261402de..37c7a7f2a5 100644 --- a/wiki/translations/tr/Introduction_to_Python.md +++ b/wiki/translations/tr/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/tr - - - {{TOCright}} ## Introduction @@ -933,3 +930,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/tr diff --git a/wiki/translations/tr/Licence.md b/wiki/translations/tr/Licence.md index c46b13b8ff..a63198b3c0 100644 --- a/wiki/translations/tr/Licence.md +++ b/wiki/translations/tr/Licence.md @@ -1,10 +1,4 @@ # Licence/tr - - - - - - {{TOCright}} ## Licences used in FreeCAD @@ -61,3 +55,6 @@ Nevertheless this decision is made only for the core system of FreeCAD. Every wr [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Licence/tr diff --git a/wiki/translations/tr/Line_drawing_function.md b/wiki/translations/tr/Line_drawing_function.md index 74b0abd6b0..3f5c82ad34 100644 --- a/wiki/translations/tr/Line_drawing_function.md +++ b/wiki/translations/tr/Line_drawing_function.md @@ -1,7 +1,4 @@ # Line drawing function/tr - - - {{TOCright}} ## Introduction @@ -269,3 +266,6 @@ If you liked this exercise, why not try to improve this little tool? There are m Don\'t hesitate to ask questions or share ideas on the [forum](https://forum.freecadweb.org/)! {{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Line drawing function/tr diff --git a/wiki/translations/tr/List_of_Commands.md b/wiki/translations/tr/List_of_Commands.md index 276635ee8d..9017fa033f 100644 --- a/wiki/translations/tr/List_of_Commands.md +++ b/wiki/translations/tr/List_of_Commands.md @@ -2,3 +2,6 @@ This category contains the help pages of each of FreeCAD [Command](Command.md). [Category:Categories/tr](Category:Categories/tr.md) + +--- +[documentation index](../README.md) > List of Commands/tr diff --git a/wiki/translations/tr/Localisation.md b/wiki/translations/tr/Localisation.md index 53e72b6be6..0227699615 100644 --- a/wiki/translations/tr/Localisation.md +++ b/wiki/translations/tr/Localisation.md @@ -1,7 +1,4 @@ # Localisation/tr - - -
@@ -417,3 +414,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/tr diff --git a/wiki/translations/tr/Localisation_Sidebar.md b/wiki/translations/tr/Localisation_Sidebar.md index 111d140475..8090f0c3dd 100644 --- a/wiki/translations/tr/Localisation_Sidebar.md +++ b/wiki/translations/tr/Localisation_Sidebar.md @@ -1,7 +1,4 @@ # Localisation Sidebar/tr - - -
[Yerelleştirme](Localisation/tr.md), çoklu dil kullanıcı arabirimiyle yazılım sağlama işlemidir. wiki Dokümantasyonu, [Localisation \# Wiki\'nin çevrilmesi](Localisation_#_Wiki'nin_çevrilmesi.md) bölümünde açıklandığı gibi yerelleştirilebilir. @@ -40,3 +37,6 @@ Soldaki link bağlantının hedefini, sağdaki ise kenar çubuğunda görüntül [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation Sidebar/tr diff --git a/wiki/translations/tr/Macro_Fonts_Win10_PYMP.md b/wiki/translations/tr/Macro_Fonts_Win10_PYMP.md index 01d07c72bc..adc2dff434 100644 --- a/wiki/translations/tr/Macro_Fonts_Win10_PYMP.md +++ b/wiki/translations/tr/Macro_Fonts_Win10_PYMP.md @@ -1,7 +1,4 @@ # Macro Fonts Win10 PYMP/tr - - - {{Macro |Name=Macro Fonts Win10 PYMP |Icon=Macro_Fonts_Win10_PYMP.png @@ -1151,3 +1148,6 @@ My macros on [mario52a](https://gist.github.com/mario52a) gists Version = \"2.0 Date = 2020/06/06 : Layout adding button and icon Version = \"00.01\" Date = \"2019/05/10\" + +--- +[documentation index](../README.md) > Macro Fonts Win10 PYMP/tr diff --git a/wiki/translations/tr/Macros.md b/wiki/translations/tr/Macros.md index 39bb4ebf9d..72fc91ec33 100644 --- a/wiki/translations/tr/Macros.md +++ b/wiki/translations/tr/Macros.md @@ -1,7 +1,4 @@ # Macros/tr - - - {{TOCright}} ## Introduction @@ -74,3 +71,6 @@ You can manually install extensions, however, it is much simpler to just use the }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/tr diff --git a/wiki/translations/tr/Main_Page.md b/wiki/translations/tr/Main_Page.md index b337759df3..77380c0a87 100644 --- a/wiki/translations/tr/Main_Page.md +++ b/wiki/translations/tr/Main_Page.md @@ -1,7 +1,4 @@ # Main Page/tr - - -
## Giriş @@ -111,3 +108,6 @@ Neler yapılması planlandığı ile ilgili olarak [Geliştirici rehberine](Deve [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/tr diff --git a/wiki/translations/tr/Mesh_Module.md b/wiki/translations/tr/Mesh_Module.md index 68b942363a..f654ee0a1c 100644 --- a/wiki/translations/tr/Mesh_Module.md +++ b/wiki/translations/tr/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/tr 1. REDIRECT [Mesh Workbench/tr](Mesh_Workbench/tr.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/tr diff --git a/wiki/translations/tr/Mesh_Scripting.md b/wiki/translations/tr/Mesh_Scripting.md index f1bb03e785..89727fc8db 100644 --- a/wiki/translations/tr/Mesh_Scripting.md +++ b/wiki/translations/tr/Mesh_Scripting.md @@ -1,7 +1,4 @@ # Mesh Scripting/tr - - - {{TOCright}} ## Introduction @@ -99,3 +96,6 @@ An extensive, though hard to use, source of mesh related scripting are the unit See also: [Mesh API](Mesh_API.md). {{Top}} {{Powerdocnavi}} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scripting/tr diff --git a/wiki/translations/tr/Mesh_Workbench.md b/wiki/translations/tr/Mesh_Workbench.md index 15caec22a9..0a9ed2571c 100644 --- a/wiki/translations/tr/Mesh_Workbench.md +++ b/wiki/translations/tr/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/tr - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench/tr {{TOCright}} @@ -117,3 +111,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/tr diff --git a/wiki/translations/tr/Mesh_to_Part.md b/wiki/translations/tr/Mesh_to_Part.md index a14ade2151..8a74476500 100644 --- a/wiki/translations/tr/Mesh_to_Part.md +++ b/wiki/translations/tr/Mesh_to_Part.md @@ -1,7 +1,4 @@ # Mesh to Part/tr - - - {{TOCright}} ## Convert Part objects to meshes @@ -110,3 +107,6 @@ Part.show(solid) }} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh to Part/tr diff --git a/wiki/translations/tr/Module_Creation.md b/wiki/translations/tr/Module_Creation.md index 26b89493af..7d0343ff2e 100644 --- a/wiki/translations/tr/Module_Creation.md +++ b/wiki/translations/tr/Module_Creation.md @@ -1,2 +1,5 @@ # Module Creation/tr 1. REDIRECT [Workbench\_creation](Workbench_creation.md) + +--- +[documentation index](../README.md) > Module Creation/tr diff --git a/wiki/translations/tr/Mouse_Model.md b/wiki/translations/tr/Mouse_Model.md index 804af22098..8e090b2e20 100644 --- a/wiki/translations/tr/Mouse_Model.md +++ b/wiki/translations/tr/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/tr 1. REDIRECT [Mouse\_navigation/tr](Mouse_navigation/tr.md) + +--- +[documentation index](../README.md) > Mouse Model/tr diff --git a/wiki/translations/tr/Mouse_navigation.md b/wiki/translations/tr/Mouse_navigation.md index 43effe591c..5f31179684 100644 --- a/wiki/translations/tr/Mouse_navigation.md +++ b/wiki/translations/tr/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/tr - - - - - - {{TOCright}} ## Overview @@ -277,5 +271,5 @@ The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mous {{docnav/tr|[Başlangıç](Getting_started/tr.md)|[Belge yapısı](Document_structure/tr.md)}} - - +--- +[documentation index](../README.md) > Mouse navigation/tr diff --git a/wiki/translations/tr/Navigation_Cube.md b/wiki/translations/tr/Navigation_Cube.md index 805616563d..3a23b945e4 100644 --- a/wiki/translations/tr/Navigation_Cube.md +++ b/wiki/translations/tr/Navigation_Cube.md @@ -1,10 +1,4 @@ # Navigation Cube/tr - - - - - - {{TOCright}} The navigational cube control, or **navigation cube**, is a user interface graphic aid for reorienting the 3D view. By default, it is visible and resides in the upper right corner of the 3D display. If you are looking at the standard 3D view, it looks like the following: @@ -80,3 +74,6 @@ For more advanced configuration, refer to the [CubeMenu](Interface_Customization [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Navigation Cube/tr diff --git a/wiki/translations/tr/Offsite_tutorials.md b/wiki/translations/tr/Offsite_tutorials.md index def839735a..49ae8d3527 100644 --- a/wiki/translations/tr/Offsite_tutorials.md +++ b/wiki/translations/tr/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/tr - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** Bu sayfa, web\'deki diğer sitelerde bulunan FreeCAD kılavuzlarını listeler. @@ -18,4 +18,7 @@ Bu sayfa, web\'deki diğer sitelerde bulunan FreeCAD kılavuzlarını listeler. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/tr diff --git a/wiki/translations/tr/Online_Help_Startpage.md b/wiki/translations/tr/Online_Help_Startpage.md index 0f88ef57f5..65d19fb581 100644 --- a/wiki/translations/tr/Online_Help_Startpage.md +++ b/wiki/translations/tr/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/tr - - ![150](images/Crystal_Clear_app_tutorials.png ) ## FreeCAD Çevrimiçi Yardıma Hoşgeldiniz @@ -46,3 +44,6 @@ Bazen programcıların gerçekten kötü yardım belgeleri yazmış oldukların [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/tr diff --git a/wiki/translations/tr/Online_Help_Toc.md b/wiki/translations/tr/Online_Help_Toc.md index ae0569fc84..1fde3c5e4f 100644 --- a/wiki/translations/tr/Online_Help_Toc.md +++ b/wiki/translations/tr/Online_Help_Toc.md @@ -1,7 +1,4 @@ # Online Help Toc/tr - - -
Burada FreeCAD\'te On-line Yardım Sistemi için İçerik tablosu bulunmaktadır. Ayrıca bu kılavuzun yazdırılabilir sürümü [Sürümler sayfasında](https://github.com/FreeCAD/FreeCAD/releases) mevcuttur. @@ -175,3 +172,6 @@ There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction. [Category:Documentation/tr](Category:Documentation/tr.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/tr diff --git a/wiki/translations/tr/OpenSCAD_Module.md b/wiki/translations/tr/OpenSCAD_Module.md index 453aa9782d..726b0d08a9 100644 --- a/wiki/translations/tr/OpenSCAD_Module.md +++ b/wiki/translations/tr/OpenSCAD_Module.md @@ -1,2 +1,5 @@ # OpenSCAD Module/tr 1. REDIRECT [OpenSCAD\_Workbench/tr](OpenSCAD_Workbench/tr.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Module/tr diff --git a/wiki/translations/tr/OpenSCAD_Workbench.md b/wiki/translations/tr/OpenSCAD_Workbench.md index 010895c9c7..54845dcb84 100644 --- a/wiki/translations/tr/OpenSCAD_Workbench.md +++ b/wiki/translations/tr/OpenSCAD_Workbench.md @@ -1,10 +1,4 @@ -# OpenSCAD Workbench/tr - - - - - -OpenSCAD workbench icon +# OpenSCAD workbench icon OpenSCAD Workbench/tr ## Introduction @@ -114,3 +108,6 @@ If FreeCAD crashes when importing CSG, it is strongly recommended that you enabl }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/tr diff --git a/wiki/translations/tr/PartDesign_AdditiveBox.md b/wiki/translations/tr/PartDesign_AdditiveBox.md index 541e99a72e..13e697bfc6 100644 --- a/wiki/translations/tr/PartDesign_AdditiveBox.md +++ b/wiki/translations/tr/PartDesign_AdditiveBox.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Primitive additive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign AdditiveBox/tr + ## Tanım Inserts a primitive box in the active Body as the first feature, or fuses it to the existing feature(s). @@ -45,4 +47,7 @@ The Box can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveBox/tr diff --git a/wiki/translations/tr/PartDesign_AdditiveCone.md b/wiki/translations/tr/PartDesign_AdditiveCone.md index bdf45c943d..74f986f4d6 100644 --- a/wiki/translations/tr/PartDesign_AdditiveCone.md +++ b/wiki/translations/tr/PartDesign_AdditiveCone.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create an additive primitive](PartDesign_CompPrimitiveAdditive.md), [PartDesign Subtractive Cone](PartDesign_SubtractiveCone.md) --- +# PartDesign AdditiveCone/tr + ## Tanım Inserts a primitive cone in the active Body as the first feature, or fuses it to the existing feature(s). @@ -47,4 +49,7 @@ The Cone can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCone/tr diff --git a/wiki/translations/tr/PartDesign_AdditiveCylinder.md b/wiki/translations/tr/PartDesign_AdditiveCylinder.md index 484bad6cea..30f0e951f3 100644 --- a/wiki/translations/tr/PartDesign_AdditiveCylinder.md +++ b/wiki/translations/tr/PartDesign_AdditiveCylinder.md @@ -7,6 +7,8 @@ SeeAlso:[Create an additive primitive](PartDesign_CompPrimitiveAdditive.md), [Subtractive Cylinder](PartDesign_SubtractiveCylinder.md) --- +# PartDesign AdditiveCylinder/tr + ## Tanım Inserts a primitive cylinder in the active Body as the first feature, or fuses it to the existing feature(s). @@ -51,4 +53,7 @@ The Cylinder can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveCylinder/tr diff --git a/wiki/translations/tr/PartDesign_AdditiveEllipsoid.md b/wiki/translations/tr/PartDesign_AdditiveEllipsoid.md index 593c1ae219..4d63126f29 100644 --- a/wiki/translations/tr/PartDesign_AdditiveEllipsoid.md +++ b/wiki/translations/tr/PartDesign_AdditiveEllipsoid.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign AdditiveEllipsoid/tr + ## Tanım Inserts a primitive ellipsoid in the active Body as the first feature, or fuses it to the existing feature(s). @@ -51,4 +53,7 @@ The Ellipsoid can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveEllipsoid/tr diff --git a/wiki/translations/tr/PartDesign_AdditiveLoft.md b/wiki/translations/tr/PartDesign_AdditiveLoft.md index 5a9bdaffa7..ccb21b8bec 100644 --- a/wiki/translations/tr/PartDesign_AdditiveLoft.md +++ b/wiki/translations/tr/PartDesign_AdditiveLoft.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign AdditivePipe](PartDesign_AdditivePipe.md), [PartDesign SubtractiveLoft](PartDesign_SubtractiveLoft.md) --- +# PartDesign AdditiveLoft/tr + ## Tanım **Additive Loft** creates a solid in the active Body by making a transition between two or more sketches (also referred to as cross-sections). If the Body already contains features, the additive loft will be merged to them. @@ -85,4 +87,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveLoft/tr diff --git a/wiki/translations/tr/PartDesign_AdditivePipe.md b/wiki/translations/tr/PartDesign_AdditivePipe.md index 69129d2147..142274f4a5 100644 --- a/wiki/translations/tr/PartDesign_AdditivePipe.md +++ b/wiki/translations/tr/PartDesign_AdditivePipe.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Additive Loft](PartDesign_AdditiveLoft.md), [PartDesign Subtractive Pipe](PartDesign_SubtractivePipe.md) --- +# PartDesign AdditivePipe/tr + ## Tanım **Additive Pipe** creates a solid in the active Body by sweeping one or more sketches (also referred to as cross-sections) along an open or closed path. If the Body already contains features, the additive pipe will be merged to them. @@ -100,4 +102,7 @@ To use more than one cross-section, start with the first cross-section sketch as {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePipe/tr diff --git a/wiki/translations/tr/PartDesign_AdditivePrism.md b/wiki/translations/tr/PartDesign_AdditivePrism.md index 6538466945..2cbfa300e6 100644 --- a/wiki/translations/tr/PartDesign_AdditivePrism.md +++ b/wiki/translations/tr/PartDesign_AdditivePrism.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create an additive primitive](PartDesign_CompPrimitiveAdditive.md), [PartDesign Subtractive Prism](PartDesign_SubtractivePrism.md) --- +# PartDesign AdditivePrism/tr + ## Tanım Inserts a primitive prism in the active Body as the first feature, or fuses it to the existing feature(s). @@ -51,4 +53,7 @@ The Prism can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditivePrism/tr diff --git a/wiki/translations/tr/PartDesign_AdditiveSphere.md b/wiki/translations/tr/PartDesign_AdditiveSphere.md index d02db63318..6f24f118dd 100644 --- a/wiki/translations/tr/PartDesign_AdditiveSphere.md +++ b/wiki/translations/tr/PartDesign_AdditiveSphere.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign AdditiveSphere/tr + ## Tanım Inserts a primitive sphere in the active Body as the first feature, or fuses it to the existing feature(s). @@ -47,4 +49,7 @@ The Sphere can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveSphere/tr diff --git a/wiki/translations/tr/PartDesign_AdditiveTorus.md b/wiki/translations/tr/PartDesign_AdditiveTorus.md index 72f3fa8781..bd72c35143 100644 --- a/wiki/translations/tr/PartDesign_AdditiveTorus.md +++ b/wiki/translations/tr/PartDesign_AdditiveTorus.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign AdditiveTorus/tr + ## Tanım Inserts a primitive torus in the active Body as the first feature, or fuses it to the existing feature(s). @@ -49,4 +51,7 @@ The Torus can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveTorus/tr diff --git a/wiki/translations/tr/PartDesign_AdditiveWedge.md b/wiki/translations/tr/PartDesign_AdditiveWedge.md index 3a54d2e896..cfad7131f3 100644 --- a/wiki/translations/tr/PartDesign_AdditiveWedge.md +++ b/wiki/translations/tr/PartDesign_AdditiveWedge.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create an additive primitive](PartDesign_CompPrimitiveAdditive.md), [PartDesign Subtractive Wedge](PartDesign_SubtractiveWedge.md) --- +# PartDesign AdditiveWedge/tr + ## Tanım Inserts a primitive wedge in the active Body as the first feature, or fuses it to the existing feature(s). @@ -51,4 +53,7 @@ Wedges can be used to create pyramids by setting **X2 min/max** and **Z2 min/max {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign AdditiveWedge/tr diff --git a/wiki/translations/tr/PartDesign_Bearingholder_Tutorial_I.md b/wiki/translations/tr/PartDesign_Bearingholder_Tutorial_I.md index 22ec918aa1..70d410e474 100644 --- a/wiki/translations/tr/PartDesign_Bearingholder_Tutorial_I.md +++ b/wiki/translations/tr/PartDesign_Bearingholder_Tutorial_I.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial I/tr - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -116,3 +112,6 @@ We have modelled the bearing holder top with the dimensions it will have after c [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial I/tr diff --git a/wiki/translations/tr/PartDesign_Bearingholder_Tutorial_II.md b/wiki/translations/tr/PartDesign_Bearingholder_Tutorial_II.md index b2592b5d08..e7e5647cb8 100644 --- a/wiki/translations/tr/PartDesign_Bearingholder_Tutorial_II.md +++ b/wiki/translations/tr/PartDesign_Bearingholder_Tutorial_II.md @@ -1,8 +1,4 @@ # PartDesign Bearingholder Tutorial II/tr - - - - {{TutorialInfo |Topic=Modeling |Level=Experienced User @@ -89,3 +85,6 @@ For the rest of the machining, create a new Body. The bottom of the holder will [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Bearingholder Tutorial II/tr diff --git a/wiki/translations/tr/PartDesign_Body.md b/wiki/translations/tr/PartDesign_Body.md index cadb43c548..f7c1235ec8 100644 --- a/wiki/translations/tr/PartDesign_Body.md +++ b/wiki/translations/tr/PartDesign_Body.md @@ -8,6 +8,8 @@ SeeAlso:[Parça Oluştur](Std_Part/tr.md) --- +# PartDesign Body/tr +
@@ -389,4 +391,7 @@ App.ActiveDocument.recompute() {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Body/tr diff --git a/wiki/translations/tr/PartDesign_Boolean.md b/wiki/translations/tr/PartDesign_Boolean.md index 9aa2b82bbd..19febebe05 100644 --- a/wiki/translations/tr/PartDesign_Boolean.md +++ b/wiki/translations/tr/PartDesign_Boolean.md @@ -6,6 +6,8 @@ Version:0.17 --- +# PartDesign Boolean/tr + ## Tanım **PartDesign Boolean** imports one or more [PartDesign Bodies](PartDesign_Body.md) or [PartDesign Clones](PartDesign_Clone.md) (designated as \"tool bodies\") into the active PartDesign Body and applies a Boolean operation (fuse, cut or common). @@ -61,4 +63,7 @@ Alternatively, one or more Bodies can be selected prior to pressing the Boolean {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Boolean/tr diff --git a/wiki/translations/tr/PartDesign_Chamfer.md b/wiki/translations/tr/PartDesign_Chamfer.md index 2e9482d2af..2486c89ddf 100644 --- a/wiki/translations/tr/PartDesign_Chamfer.md +++ b/wiki/translations/tr/PartDesign_Chamfer.md @@ -6,6 +6,8 @@ SeeAlso:[PartDesign Fillet](PartDesign_Fillet.md), [Part Chamfer](Part_Chamfer.md) --- +# PartDesign Chamfer/tr +
@@ -41,4 +43,7 @@ This tool creates chamfers on the selected edges of an object. A new separate Ch {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Chamfer/tr diff --git a/wiki/translations/tr/PartDesign_Clone.md b/wiki/translations/tr/PartDesign_Clone.md index e8b58d6d9d..6461d1393e 100644 --- a/wiki/translations/tr/PartDesign_Clone.md +++ b/wiki/translations/tr/PartDesign_Clone.md @@ -7,6 +7,8 @@ SeeAlso:[Taslak Klon](Draft_Clone.md) --- +# PartDesign Clone/tr +
@@ -66,4 +68,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Clone/tr diff --git a/wiki/translations/tr/PartDesign_CompPrimitiveAdditive.md b/wiki/translations/tr/PartDesign_CompPrimitiveAdditive.md index 030302c105..4d377832d9 100644 --- a/wiki/translations/tr/PartDesign_CompPrimitiveAdditive.md +++ b/wiki/translations/tr/PartDesign_CompPrimitiveAdditive.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign CompPrimitiveAdditive/tr + ## Tanım Creates an additive primitive in the active Body as the first feature, or fuses it to the existing feature(s). If no Body is found in the document, one will be automatically created. @@ -28,4 +30,7 @@ Creates an additive primitive in the active Body as the first feature, or fuses {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveAdditive/tr diff --git a/wiki/translations/tr/PartDesign_CompPrimitiveSubtractive.md b/wiki/translations/tr/PartDesign_CompPrimitiveSubtractive.md index d35fde7cab..449141a655 100644 --- a/wiki/translations/tr/PartDesign_CompPrimitiveSubtractive.md +++ b/wiki/translations/tr/PartDesign_CompPrimitiveSubtractive.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveAdditive](PartDesign_CompPrimitiveAdditive.md) --- +# PartDesign CompPrimitiveSubtractive/tr + ## Tanım Creates a subtractive primitive in the active Body, subtracting its shape from the existing solid. @@ -28,4 +30,7 @@ Creates a subtractive primitive in the active Body, subtracting its shape from t {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign CompPrimitiveSubtractive/tr diff --git a/wiki/translations/tr/PartDesign_Fillet.md b/wiki/translations/tr/PartDesign_Fillet.md index 71d0e09853..adccc59ffa 100644 --- a/wiki/translations/tr/PartDesign_Fillet.md +++ b/wiki/translations/tr/PartDesign_Fillet.md @@ -6,6 +6,8 @@ SeeAlso:[PartDesign Chamfer](PartDesign_Chamfer.md), [Part Fillet](Part_Fillet.md) --- +# PartDesign Fillet/tr + ## Tanım This tool creates fillets (rounds) on the selected edges of an object. A new separate Fillet entry (followed by a sequential number if there are already existing fillets in the document) is created in the project tree. @@ -99,4 +101,7 @@ Part.show(Box) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Fillet/tr diff --git a/wiki/translations/tr/PartDesign_Groove.md b/wiki/translations/tr/PartDesign_Groove.md index bd29f859a7..72c31ff7b3 100644 --- a/wiki/translations/tr/PartDesign_Groove.md +++ b/wiki/translations/tr/PartDesign_Groove.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign Groove/tr + ## Tanım The **Groove** tool revolves a selected sketch or profile about a given axis, cutting out material from the support . @@ -73,4 +75,7 @@ Below are properties which can be defined after creation of the feature. Data pr {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Groove/tr diff --git a/wiki/translations/tr/PartDesign_Hole.md b/wiki/translations/tr/PartDesign_Hole.md index 2cb5dc5256..d31beb4610 100644 --- a/wiki/translations/tr/PartDesign_Hole.md +++ b/wiki/translations/tr/PartDesign_Hole.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Pocket](PartDesign_Pocket.md) --- +# PartDesign Hole/tr + ## Tanım The **Hole** feature creates one or more holes from a selected sketch\'s circles and arcs. If arcs are present they must be part of closed contours. All non arc/circle entities are ignored but they still must form closed contours. Many parameters can be set such as threading and size, fit, hole type (countersink, counterbore, straight) and more. @@ -107,4 +109,7 @@ Example: {{Code|lang=json|code= {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Hole/tr diff --git a/wiki/translations/tr/PartDesign_InvoluteGear.md b/wiki/translations/tr/PartDesign_InvoluteGear.md index 57946738a9..1b9fbbd364 100644 --- a/wiki/translations/tr/PartDesign_InvoluteGear.md +++ b/wiki/translations/tr/PartDesign_InvoluteGear.md @@ -6,6 +6,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign InvoluteGear/tr +
@@ -54,4 +56,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign InvoluteGear/tr diff --git a/wiki/translations/tr/PartDesign_Legacy.md b/wiki/translations/tr/PartDesign_Legacy.md index 69aaf6e2e3..ac7979bd58 100644 --- a/wiki/translations/tr/PartDesign_Legacy.md +++ b/wiki/translations/tr/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/tr 1. REDIRECT [PartDesign\_Workbench/tr](PartDesign_Workbench/tr.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/tr diff --git a/wiki/translations/tr/PartDesign_Line.md b/wiki/translations/tr/PartDesign_Line.md index 4d2ba010e5..30f672375d 100644 --- a/wiki/translations/tr/PartDesign_Line.md +++ b/wiki/translations/tr/PartDesign_Line.md @@ -7,6 +7,8 @@ SeeAlso:[Referans noktası oluştur](PartDesign_Point/tr.md), [Referans düzlemi oluştur](PartDesign_Plane/tr.md) --- +# PartDesign Line/tr +
@@ -72,4 +74,7 @@ Model ağacındaki Referans çizgisi etiketine çift tıklayın veya sağ tıkla {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Line/tr diff --git a/wiki/translations/tr/PartDesign_LinearPattern.md b/wiki/translations/tr/PartDesign_LinearPattern.md index b086727c62..f30ba1edcd 100644 --- a/wiki/translations/tr/PartDesign_LinearPattern.md +++ b/wiki/translations/tr/PartDesign_LinearPattern.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign LinearPattern/tr + ## Tanım The ** '''LinearPattern'''** tool creates evenly spaced copies of a feature in a linear direction. As of (v0.17) the Linear pattern tool can pattern multiple features. @@ -86,4 +88,7 @@ Select one of the Body Origin\'s standard axis (X, Y or Z) as direction. {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign LinearPattern/tr diff --git a/wiki/translations/tr/PartDesign_Mirrored.md b/wiki/translations/tr/PartDesign_Mirrored.md index cb1d0aca0d..e00405c374 100644 --- a/wiki/translations/tr/PartDesign_Mirrored.md +++ b/wiki/translations/tr/PartDesign_Mirrored.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign Mirrored/tr + ## Tanım The **Mirrored** tool mirrors features on a plane. @@ -80,4 +82,7 @@ The mirror result can be previewed in real time before clicking **OK** by checki {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Mirrored/tr diff --git a/wiki/translations/tr/PartDesign_MoveFeature.md b/wiki/translations/tr/PartDesign_MoveFeature.md index 4707a677d7..e6b0face90 100644 --- a/wiki/translations/tr/PartDesign_MoveFeature.md +++ b/wiki/translations/tr/PartDesign_MoveFeature.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Set tip](PartDesign_MoveTip.md), [PartDesign Move object after other object](PartDesign_MoveFeatureInTree.md) --- +# PartDesign MoveFeature/tr + ## Tanım [Move object to other body](PartDesign_MoveFeature.md), as this command is labeled in the context menu, allows moving objects under a Body to another Body. The moved object is placed right below the other Body\'s tip. Sketches, datum geometry and features are supported. @@ -24,4 +26,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeature/tr diff --git a/wiki/translations/tr/PartDesign_MoveFeatureInTree.md b/wiki/translations/tr/PartDesign_MoveFeatureInTree.md index 12381339b2..60153c428c 100644 --- a/wiki/translations/tr/PartDesign_MoveFeatureInTree.md +++ b/wiki/translations/tr/PartDesign_MoveFeatureInTree.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Set tip](PartDesign_MoveTip.md), [PartDesign Move object to other body](PartDesign_MoveFeature.md) --- +# PartDesign MoveFeatureInTree/tr + ## Tanım [Move object after other object](PartDesign_MoveFeatureInTree.md), as this command is labeled in the context menu, allows reordering of objects under a Body. Sketches, datum geometry and features are supported. @@ -30,4 +32,7 @@ The following three pictures show the same model with a pocket defined on a sket {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveFeatureInTree/tr diff --git a/wiki/translations/tr/PartDesign_MoveTip.md b/wiki/translations/tr/PartDesign_MoveTip.md index f3ee8b9d3a..7a6ecdecaa 100644 --- a/wiki/translations/tr/PartDesign_MoveTip.md +++ b/wiki/translations/tr/PartDesign_MoveTip.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Move object to other body](PartDesign_MoveFeature.md), [PartDesign Move object after other object](PartDesign_MoveFeatureInTree.md) --- +# PartDesign MoveTip/tr + ## Tanım [Set tip](PartDesign_MoveTip.md), as this command is labeled in the context menu, redefines the tip, which is the feature exposed outside of the Body. By default, the tip is the last feature added to the Body; but sometimes it can be useful to temporarily set the tip to a feature earlier in the tree. This may be done to add a sketch, datum geometry or a feature which in retrospect should have been created earlier in the Body\'s history. @@ -29,4 +31,7 @@ The tip is visually distinguished in the Model tree by a small white down arrow {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MoveTip/tr diff --git a/wiki/translations/tr/PartDesign_MultiTransform.md b/wiki/translations/tr/PartDesign_MultiTransform.md index b6a9ececf5..39882704b3 100644 --- a/wiki/translations/tr/PartDesign_MultiTransform.md +++ b/wiki/translations/tr/PartDesign_MultiTransform.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign MultiTransform/tr +
@@ -153,4 +155,7 @@ When initiated and completed in this way, the **![](images/)_[MultiTransform](P {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign MultiTransform/tr diff --git a/wiki/translations/tr/PartDesign_NewSketch.md b/wiki/translations/tr/PartDesign_NewSketch.md index 640d96a3d5..fc364d9217 100644 --- a/wiki/translations/tr/PartDesign_NewSketch.md +++ b/wiki/translations/tr/PartDesign_NewSketch.md @@ -7,6 +7,8 @@ Version:0.17 --- +# PartDesign NewSketch/tr +
@@ -94,4 +96,7 @@ To reference any items in the @@ -125,4 +127,7 @@ Reverses the direction of the pad. {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pad/tr diff --git a/wiki/translations/tr/PartDesign_Plane.md b/wiki/translations/tr/PartDesign_Plane.md index 4f64775292..11234433ce 100644 --- a/wiki/translations/tr/PartDesign_Plane.md +++ b/wiki/translations/tr/PartDesign_Plane.md @@ -7,6 +7,8 @@ SeeAlso:[Referans noktası oluştur](PartDesign_Point.md), [Referans çizgisi oluştur](PartDesign_Line.md) --- +# PartDesign Plane/tr +
@@ -94,4 +96,7 @@ Model ağacındaki Referans düzlemi etiketine çift tıklayın veya sağ tıkla {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Plane/tr diff --git a/wiki/translations/tr/PartDesign_Pocket.md b/wiki/translations/tr/PartDesign_Pocket.md index 0c80f0d8e7..649ba4c377 100644 --- a/wiki/translations/tr/PartDesign_Pocket.md +++ b/wiki/translations/tr/PartDesign_Pocket.md @@ -6,6 +6,8 @@ SeeAlso:[PartDesign Pad](PartDesign_Pad.md) --- +# PartDesign Pocket/tr +
@@ -66,4 +68,7 @@ An [example](http://forum.freecadweb.org/viewtopic.php?f=3&t=3733&start=10) with {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Pocket/tr diff --git a/wiki/translations/tr/PartDesign_Point.md b/wiki/translations/tr/PartDesign_Point.md index c019b50633..f9dcc53e7a 100644 --- a/wiki/translations/tr/PartDesign_Point.md +++ b/wiki/translations/tr/PartDesign_Point.md @@ -7,6 +7,8 @@ SeeAlso:[Referans çizgisi oluştur](PartDesign_Line/tr.md), [Referans düzlemi oluştur](PartDesign_Plane/tr.md) --- +# PartDesign Point/tr +
@@ -82,4 +84,7 @@ Model ağacında Referans noktası etiketine çift tıklayın veya sağ tıklay {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Point/tr diff --git a/wiki/translations/tr/PartDesign_PolarPattern.md b/wiki/translations/tr/PartDesign_PolarPattern.md index bf13d932bd..3d707b34a7 100644 --- a/wiki/translations/tr/PartDesign_PolarPattern.md +++ b/wiki/translations/tr/PartDesign_PolarPattern.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign PolarPattern/tr + ## Tanım The **polar pattern** tool takes a selected feature and creates a set of copies rotated around a chosen axis. Starting with v0.17, it can pattern multiple features. @@ -129,4 +131,7 @@ Specifies the angle to be covered by the pattern, and the total number of patter {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign PolarPattern/tr diff --git a/wiki/translations/tr/PartDesign_Preferences.md b/wiki/translations/tr/PartDesign_Preferences.md index 5f8fbdb06d..2e9a1b0be8 100644 --- a/wiki/translations/tr/PartDesign_Preferences.md +++ b/wiki/translations/tr/PartDesign_Preferences.md @@ -1,10 +1,4 @@ # PartDesign Preferences/tr - - - - - - {{TOCright}} ## Introduction @@ -116,3 +110,6 @@ Right click on **Mesh deviation** choose in the context menu **Change value**. S }} [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Preferences/tr diff --git a/wiki/translations/tr/PartDesign_Revolution.md b/wiki/translations/tr/PartDesign_Revolution.md index 3bbf6aa946..fa77e15503 100644 --- a/wiki/translations/tr/PartDesign_Revolution.md +++ b/wiki/translations/tr/PartDesign_Revolution.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign Revolution/tr + ## Description @@ -81,4 +83,7 @@ A [detailed example of use](http://forum.freecadweb.org/viewtopic.php?f=3&t=3674 {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Revolution/tr diff --git a/wiki/translations/tr/PartDesign_ShapeBinder.md b/wiki/translations/tr/PartDesign_ShapeBinder.md index 4f13eda079..dcfb83cae0 100644 --- a/wiki/translations/tr/PartDesign_ShapeBinder.md +++ b/wiki/translations/tr/PartDesign_ShapeBinder.md @@ -7,6 +7,8 @@ SeeAlso:[klonla](PartDesign_Clone/tr.md) --- +# PartDesign ShapeBinder/tr +
@@ -161,4 +163,7 @@ Birden fazla seçim için bir geçici çözüm vardır: Şekil bağlayıcı\'yı {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign ShapeBinder/tr diff --git a/wiki/translations/tr/PartDesign_SubtractiveBox.md b/wiki/translations/tr/PartDesign_SubtractiveBox.md index 01d3eafdd6..159d62277c 100644 --- a/wiki/translations/tr/PartDesign_SubtractiveBox.md +++ b/wiki/translations/tr/PartDesign_SubtractiveBox.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveBox/tr + ## Tanım Inserts a subtractive box in the active Body. Its shape is subtracted from the existing solid. @@ -45,4 +47,7 @@ The Box can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveBox/tr diff --git a/wiki/translations/tr/PartDesign_SubtractiveCone.md b/wiki/translations/tr/PartDesign_SubtractiveCone.md index ca384d6541..d131f5705b 100644 --- a/wiki/translations/tr/PartDesign_SubtractiveCone.md +++ b/wiki/translations/tr/PartDesign_SubtractiveCone.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [PartDesign Additive Cone](PartDesign_AdditiveCone.md) --- +# PartDesign SubtractiveCone/tr + ## Tanım Inserts a subtractive cone in the active Body. Its shape is subtracted from the existing solid. @@ -49,4 +51,7 @@ The Cone can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCone/tr diff --git a/wiki/translations/tr/PartDesign_SubtractiveCylinder.md b/wiki/translations/tr/PartDesign_SubtractiveCylinder.md index 75db283150..a522de6e1f 100644 --- a/wiki/translations/tr/PartDesign_SubtractiveCylinder.md +++ b/wiki/translations/tr/PartDesign_SubtractiveCylinder.md @@ -7,6 +7,8 @@ SeeAlso:[Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [Additive Cylinder](PartDesign_AdditiveCylinder.md) --- +# PartDesign SubtractiveCylinder/tr + ## Tanım Inserts a subtractive cylinder in the active Body. Its shape is subtracted from the existing solid. @@ -53,4 +55,7 @@ The Cylinder can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveCylinder/tr diff --git a/wiki/translations/tr/PartDesign_SubtractiveEllipsoid.md b/wiki/translations/tr/PartDesign_SubtractiveEllipsoid.md index 834bdfeaee..ace26f1f1d 100644 --- a/wiki/translations/tr/PartDesign_SubtractiveEllipsoid.md +++ b/wiki/translations/tr/PartDesign_SubtractiveEllipsoid.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveEllipsoid/tr + ## Tanım Inserts a subtractive ellipsoid in the active Body. Its shape is subtracted from the existing solid. @@ -53,4 +55,7 @@ The Ellipsoid can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveEllipsoid/tr diff --git a/wiki/translations/tr/PartDesign_SubtractiveLoft.md b/wiki/translations/tr/PartDesign_SubtractiveLoft.md index bfa7ff72ee..039b45621a 100644 --- a/wiki/translations/tr/PartDesign_SubtractiveLoft.md +++ b/wiki/translations/tr/PartDesign_SubtractiveLoft.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Additive loft](PartDesign_AdditiveLoft.md), [PartDesign Subtractive pipe](PartDesign_SubtractivePipe.md) --- +# PartDesign SubtractiveLoft/tr + ## Tanım **Subtractive Loft** creates a subtractive solid in the active Body by making a transition between two or more sketches (also referred to as cross-sections). Its shape is then subtracted from the existing solid. @@ -71,4 +73,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveLoft/tr diff --git a/wiki/translations/tr/PartDesign_SubtractivePipe.md b/wiki/translations/tr/PartDesign_SubtractivePipe.md index a687585a48..90246f4a53 100644 --- a/wiki/translations/tr/PartDesign_SubtractivePipe.md +++ b/wiki/translations/tr/PartDesign_SubtractivePipe.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Additive pipe](PartDesign_AdditivePipe.md), [PartDesign Subtractive loft](PartDesign_SubtractiveLoft.md) --- +# PartDesign SubtractivePipe/tr + ## Tanım **Subtractive Pipe** creates a subtractive solid in the active Body by sweeping one or more sketches (also referred to as cross-sections) along an open or closed path. Its shape is then subtracted from the existing solid. SubtractivePipe is often used in connection with [Part Helix](Part_Helix.md) and [PartDesign ShapeBinder](PartDesign_ShapeBinder.md) to create a thread; see the [Thread for Screw Tutorial](Thread_for_Screw_Tutorial.md) for details. @@ -86,4 +88,7 @@ {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePipe/tr diff --git a/wiki/translations/tr/PartDesign_SubtractivePrism.md b/wiki/translations/tr/PartDesign_SubtractivePrism.md index 0cf331289d..08c8df914a 100644 --- a/wiki/translations/tr/PartDesign_SubtractivePrism.md +++ b/wiki/translations/tr/PartDesign_SubtractivePrism.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [PartDesign Additive Prism](PartDesign_AdditivePrism.md) --- +# PartDesign SubtractivePrism/tr + ## Tanım Inserts a subtractive prism in the active Body. Its shape is subtracted from the existing solid. @@ -53,4 +55,7 @@ The Prism can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractivePrism/tr diff --git a/wiki/translations/tr/PartDesign_SubtractiveSphere.md b/wiki/translations/tr/PartDesign_SubtractiveSphere.md index ce88418766..2d10407279 100644 --- a/wiki/translations/tr/PartDesign_SubtractiveSphere.md +++ b/wiki/translations/tr/PartDesign_SubtractiveSphere.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveSphere/tr + ## Tanım Inserts a subtractive sphere in the active Body. Its shape is subtracted from the existing solid. @@ -47,4 +49,7 @@ The Sphere can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveSphere/tr diff --git a/wiki/translations/tr/PartDesign_SubtractiveTorus.md b/wiki/translations/tr/PartDesign_SubtractiveTorus.md index ced49f3c93..596926e751 100644 --- a/wiki/translations/tr/PartDesign_SubtractiveTorus.md +++ b/wiki/translations/tr/PartDesign_SubtractiveTorus.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign CompPrimitiveSubtractive](PartDesign_CompPrimitiveSubtractive.md) --- +# PartDesign SubtractiveTorus/tr + ## Tanım Inserts a subtractive torus in the active Body. Its shape is subtracted from the existing solid. @@ -49,4 +51,7 @@ The Torus can be edited after its creation in two ways: {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveTorus/tr diff --git a/wiki/translations/tr/PartDesign_SubtractiveWedge.md b/wiki/translations/tr/PartDesign_SubtractiveWedge.md index 8cb58054b0..e4ec4bc6a6 100644 --- a/wiki/translations/tr/PartDesign_SubtractiveWedge.md +++ b/wiki/translations/tr/PartDesign_SubtractiveWedge.md @@ -7,6 +7,8 @@ SeeAlso:[PartDesign Create a subtractive primitive](PartDesign_CompPrimitiveSubtractive.md), [PartDesign Additive Wedge](PartDesign_AdditiveWedge.md) --- +# PartDesign SubtractiveWedge/tr + ## Tanım Inserts a subtractive wedge in the active Body. Its shape is subtracted from the existing solid. @@ -51,4 +53,7 @@ Wedges can be used to create pyramids by setting **X2 min/max** and **Z2 min/max {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign SubtractiveWedge/tr diff --git a/wiki/translations/tr/PartDesign_Thickness.md b/wiki/translations/tr/PartDesign_Thickness.md index 0876097d67..3f1d0ec388 100644 --- a/wiki/translations/tr/PartDesign_Thickness.md +++ b/wiki/translations/tr/PartDesign_Thickness.md @@ -7,6 +7,8 @@ SeeAlso:[Part Thickness](Part_Thickness.md) --- +# PartDesign Thickness/tr + ## Tanım The **Thickness** tool works on a solid Body and transforms it into a thick-walled hollow object with at least one open face, giving to each of its remaining faces a uniform thickness. On some solids it allows you to significantly speed up the work, and avoids making extrusions and pockets. @@ -77,4 +79,7 @@ Result: ![](images/Brga-spessore.png ) {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Thickness/tr diff --git a/wiki/translations/tr/PartDesign_WizardShaft.md b/wiki/translations/tr/PartDesign_WizardShaft.md index 32e5c9eb8f..a6e15cbadc 100644 --- a/wiki/translations/tr/PartDesign_WizardShaft.md +++ b/wiki/translations/tr/PartDesign_WizardShaft.md @@ -5,6 +5,8 @@ Workbenches:[PartDesign](PartDesign_Workbench.md) --- +# PartDesign WizardShaft/tr +
@@ -64,4 +66,7 @@ To add a new shaft segment, right-click into the empty space to the right of the {{PartDesign Tools navi -}} +}} + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign WizardShaft/tr diff --git a/wiki/translations/tr/PartDesign_Workbench.md b/wiki/translations/tr/PartDesign_Workbench.md index ee6f17fc1e..89a3f6ddea 100644 --- a/wiki/translations/tr/PartDesign_Workbench.md +++ b/wiki/translations/tr/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/tr - - -PartDesign workbench icon +# PartDesign workbench icon PartDesign Workbench/tr {{TOCright}} @@ -565,3 +562,6 @@ Parça Tasarım menüsünde bulunan bazı ek işlevler: {{PartDesign Tools navi}} [Category:PartDesign/tr](Category:PartDesign/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/tr diff --git a/wiki/translations/tr/Part_Box.md b/wiki/translations/tr/Part_Box.md index 62a1e53260..cdd4fa6511 100644 --- a/wiki/translations/tr/Part_Box.md +++ b/wiki/translations/tr/Part_Box.md @@ -1,3 +1,4 @@ +# Part Box/tr --- - GuiCommand:/tr Name:Part Box MenuLocation:Part → Box |Workbenches:[SeeAlso:[[Part_CreatePrimitives|Part CreatePrimitives](Part_Workbench___Part]],_Complete.md)--- @@ -63,8 +64,5 @@ You can change its placement with: FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6, 3), FreeCAD.Rotation(30, 45, 10)) ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Box/tr diff --git a/wiki/translations/tr/Part_Builder.md b/wiki/translations/tr/Part_Builder.md index 9ac6268380..879ad336fd 100644 --- a/wiki/translations/tr/Part_Builder.md +++ b/wiki/translations/tr/Part_Builder.md @@ -1,3 +1,4 @@ +# Part Builder/tr --- - GuiCommand:/tr Name:Part Shapebuilder Name/tr:Part Shapebuilder MenuLocation:Part -> Shapebuilder... |Workbenches:[SeeAlso:[[Part_CreatePrimitives/tr|Part CreatePrimitives](Part_Workbench/tr___Part]].md)--- @@ -67,8 +68,5 @@ A possible workflow could be: - Create a \"shell from faces\" - Create a \"solid from shell\" - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Builder/tr diff --git a/wiki/translations/tr/Part_CreatePrimitives.md b/wiki/translations/tr/Part_CreatePrimitives.md index 5858befa44..924517084b 100644 --- a/wiki/translations/tr/Part_CreatePrimitives.md +++ b/wiki/translations/tr/Part_CreatePrimitives.md @@ -1,2 +1,5 @@ # Part CreatePrimitives/tr 1. REDIRECT [Part\_Primitives/tr](Part_Primitives/tr.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CreatePrimitives/tr diff --git a/wiki/translations/tr/Part_Ellipse.md b/wiki/translations/tr/Part_Ellipse.md index ba4e696cd9..39c679137d 100644 --- a/wiki/translations/tr/Part_Ellipse.md +++ b/wiki/translations/tr/Part_Ellipse.md @@ -7,6 +7,8 @@ SeeAlso:.. --- +# Part Ellipse/tr +
@@ -39,8 +41,5 @@ Temel Geometrik şekil oluştur diyalog penceresine, Parça menüsünde veya Par - **Açı 1:** elipsin kenarının başlangıcı veya eliptik eğri kenarları (saat yönünün tersine derece), varsayılan değer 0 - **Açı 2:** elipsin kenarının sonu veya eliptik kavisli kenar, (saat yönünün tersine derece), varsayılan değer 360 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Ellipse/tr diff --git a/wiki/translations/tr/Part_Extrude.md b/wiki/translations/tr/Part_Extrude.md index 7d2ae4928d..4fc6980c18 100644 --- a/wiki/translations/tr/Part_Extrude.md +++ b/wiki/translations/tr/Part_Extrude.md @@ -1,3 +1,4 @@ +# Part Extrude/tr --- - GuiCommand:/tr Name:Part Extrude Name/tr:Part Extrude MenuLocation:Part -> Extrude Workbenches:[[Part_Workbench/tr Part]], Complete|SeeAlso:--- @@ -108,8 +109,5 @@ Part Extrude doesn\'t care where it is in model tree. PartDesign Pad can only li Part Extrude can extrude any object that has Part Geometry (OCC shape), except for solids and compsolids. And it can\'t extrude individual faces of other objects. PartDesign Pad will only accept a Sketch as a profile (and a small selection of other object types), or a face of a solid. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Extrude/tr diff --git a/wiki/translations/tr/Part_Line.md b/wiki/translations/tr/Part_Line.md index 7cdfa3ffd9..0f756ef570 100644 --- a/wiki/translations/tr/Part_Line.md +++ b/wiki/translations/tr/Part_Line.md @@ -7,6 +7,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Line/tr +
@@ -87,11 +89,5 @@ | | : | +----------------------------------------------------------+---------------------------------------------+ - - - - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Line/tr diff --git a/wiki/translations/tr/Part_Module.md b/wiki/translations/tr/Part_Module.md index 3cd3e87a12..36a4ed0ef7 100644 --- a/wiki/translations/tr/Part_Module.md +++ b/wiki/translations/tr/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/tr - - - - - -Part workbench icon +# Part workbench icon Part Module/tr {{TOCright}} @@ -213,3 +207,6 @@ See [Part scripting](Part_scripting.md). [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/tr diff --git a/wiki/translations/tr/Part_Primitives.md b/wiki/translations/tr/Part_Primitives.md index 1b9fe826d4..8a93130d31 100644 --- a/wiki/translations/tr/Part_Primitives.md +++ b/wiki/translations/tr/Part_Primitives.md @@ -1,3 +1,4 @@ +# Part Primitives/tr --- - GuiCommand:/tr Name:Part CreatePrimitives Name/tr:Part CreatePrimitives MenuLocation:Part -> CreatePrimitives... |Workbenches:[SeeAlso:[[Part_Shapebuilder/tr|Part Shapebuilder](Part_Workbench/tr___Part]].md)--- @@ -82,8 +83,5 @@ It can be used as input to the program as well. freecad $INSTALL_DIR/Mod/Part/parttests/part_test_objects.py ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Primitives/tr diff --git a/wiki/translations/tr/Part_Prism.md b/wiki/translations/tr/Part_Prism.md index 2421a081dc..b1be6dce37 100644 --- a/wiki/translations/tr/Part_Prism.md +++ b/wiki/translations/tr/Part_Prism.md @@ -1,3 +1,4 @@ +# Part Prism/tr --- - GuiCommand:/tr Name:Parça Prizma @@ -53,10 +54,7 @@ The prism properties can later be edited, either in the [Property editor](Proper - **First Angle**: Angle in first direction. (v0.19) -- **Second Angle**: Angle in second direction. (v0.19) +- **Second Angle**: Angle in second direction. (v0.19) - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Prism/tr diff --git a/wiki/translations/tr/Part_Shapebuilder.md b/wiki/translations/tr/Part_Shapebuilder.md index 81f0f0418f..d3b52fd7eb 100644 --- a/wiki/translations/tr/Part_Shapebuilder.md +++ b/wiki/translations/tr/Part_Shapebuilder.md @@ -1,2 +1,5 @@ # Part Shapebuilder/tr 1. REDIRECT [Part\_Builder/tr](Part_Builder/tr.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Shapebuilder/tr diff --git a/wiki/translations/tr/Part_Workbench.md b/wiki/translations/tr/Part_Workbench.md index 88156c5057..04392ab15c 100644 --- a/wiki/translations/tr/Part_Workbench.md +++ b/wiki/translations/tr/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/tr 1. REDIRECT [Part\_Module/tr](Part_Module/tr.md) + +--- +[documentation index](../README.md) > Part Workbench/tr diff --git a/wiki/translations/tr/Path_Helix.md b/wiki/translations/tr/Path_Helix.md index 0bafc2ccea..e685ecbcea 100644 --- a/wiki/translations/tr/Path_Helix.md +++ b/wiki/translations/tr/Path_Helix.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Helix/tr +
@@ -70,4 +72,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Helix/tr diff --git a/wiki/translations/tr/Path_MillFace.md b/wiki/translations/tr/Path_MillFace.md index b1b16c5abc..7408ca0e98 100644 --- a/wiki/translations/tr/Path_MillFace.md +++ b/wiki/translations/tr/Path_MillFace.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Path MillFace/tr +
@@ -19,6 +21,8 @@ SeeAlso: --- +# Path MillFace/tr + ## Description The [Mill Face](Path_MillFace.md) tool creates a path to perform a facing operation on a horizontal surface. This operation is generally used: @@ -229,4 +233,7 @@ Example: {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path MillFace/tr diff --git a/wiki/translations/tr/Path_Workbench.md b/wiki/translations/tr/Path_Workbench.md index dd5db2e0db..e5963730ff 100644 --- a/wiki/translations/tr/Path_Workbench.md +++ b/wiki/translations/tr/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/tr - - - - - -Path workbench icon +# Path workbench icon Path Workbench/tr {{TOCright}} @@ -225,3 +219,6 @@ See [Path scripting](Path_scripting.md). }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench/tr diff --git a/wiki/translations/tr/Pivy.md b/wiki/translations/tr/Pivy.md index 32bbf1f328..086acc5395 100644 --- a/wiki/translations/tr/Pivy.md +++ b/wiki/translations/tr/Pivy.md @@ -1,7 +1,4 @@ # Pivy/tr - - - {{TOCright}} ## Introduction @@ -168,3 +165,6 @@ These links provide reference documentation for Coin v3.x. The differences with }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Pivy/tr diff --git a/wiki/translations/tr/Placement.md b/wiki/translations/tr/Placement.md index a7cf2973c8..5ee9bbc663 100644 --- a/wiki/translations/tr/Placement.md +++ b/wiki/translations/tr/Placement.md @@ -1,6 +1,4 @@ # Placement/tr - - ## Overview **Placement** is how FreeCAD specifies the location and attitude (orientation) of an object in space. Placement can be specified in multiple forms and manipulated via [scripting](Python_scripting_tutorial#Vectors_and_placements.md), the [property editor](Property_editor.md) or selecting **Edit → Placement...** to open the [Placement task panel](Std_Placement.md). @@ -236,5 +234,5 @@ To make the placement of \"Sketch\" equal to that of \"Cylinder\", you would ent - This tutorial: [Aeroplane](Aeroplane.md) covers the mechanics of changing an object\'s Placement extensively. - - +--- +[documentation index](../README.md) > Placement/tr diff --git a/wiki/translations/tr/Plot_Axes.md b/wiki/translations/tr/Plot_Axes.md index 0ffd7edff9..01ea742bd3 100644 --- a/wiki/translations/tr/Plot_Axes.md +++ b/wiki/translations/tr/Plot_Axes.md @@ -1,3 +1,4 @@ +# Plot Axes/tr --- - GuiCommand:/tr Name/tr:Eksen @@ -50,3 +51,6 @@ Finally you can set the minimum and maximum values considered for each set of ax }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Axes/tr diff --git a/wiki/translations/tr/Plot_Grid.md b/wiki/translations/tr/Plot_Grid.md index 0997631ef5..b5501ad520 100644 --- a/wiki/translations/tr/Plot_Grid.md +++ b/wiki/translations/tr/Plot_Grid.md @@ -1,3 +1,4 @@ +# Plot Grid/tr --- - GuiCommand:/tr Name/tr:Izgara @@ -30,3 +31,6 @@ This tool acts on the active set of axis. In case of multi-axes plots you can se }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Grid/tr diff --git a/wiki/translations/tr/Plot_Labels.md b/wiki/translations/tr/Plot_Labels.md index dd283b3501..e52bfc2136 100644 --- a/wiki/translations/tr/Plot_Labels.md +++ b/wiki/translations/tr/Plot_Labels.md @@ -1,3 +1,4 @@ +# Plot Labels/tr --- - GuiCommand:/tr Name/tr:Etiket @@ -39,3 +40,6 @@ Select the plot tab that you want to edit, and run this tool. In case of multi-a }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Labels/tr diff --git a/wiki/translations/tr/Plot_Legend.md b/wiki/translations/tr/Plot_Legend.md index a1a60ff339..af4c6a7af8 100644 --- a/wiki/translations/tr/Plot_Legend.md +++ b/wiki/translations/tr/Plot_Legend.md @@ -1,3 +1,4 @@ +# Plot Legend/tr --- - GuiCommand:/tr Name/tr:Yazıt @@ -30,3 +31,6 @@ Remember that the styles and labels of the data series can be edited with the [d }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Legend/tr diff --git a/wiki/translations/tr/Plot_Module.md b/wiki/translations/tr/Plot_Module.md index fb637be823..b622d4ea93 100644 --- a/wiki/translations/tr/Plot_Module.md +++ b/wiki/translations/tr/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/tr - - -Plot workbench icon +# Plot workbench icon Plot Module/tr {{TOCright}} @@ -64,3 +61,6 @@ Since the Plot Workbench is a layer on top of `matplotlib`, you are free to use }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/tr diff --git a/wiki/translations/tr/Plot_Positions.md b/wiki/translations/tr/Plot_Positions.md index 949513e7a8..b56ea9476e 100644 --- a/wiki/translations/tr/Plot_Positions.md +++ b/wiki/translations/tr/Plot_Positions.md @@ -1,3 +1,4 @@ +# Plot Positions/tr --- - GuiCommand:/tr Name/tr:Konum @@ -35,3 +36,6 @@ Select the plot tab that you want to edit, and run this tool. Then you can selec }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Positions/tr diff --git a/wiki/translations/tr/Plot_Series.md b/wiki/translations/tr/Plot_Series.md index 9a96e5ff1b..9955058a9a 100644 --- a/wiki/translations/tr/Plot_Series.md +++ b/wiki/translations/tr/Plot_Series.md @@ -1,3 +1,4 @@ +# Plot Series/tr --- - GuiCommand:/tr Name/tr:Dizi @@ -40,3 +41,6 @@ Select the plot tab that you want to edit, and run this tool. Then select the se }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Series/tr diff --git a/wiki/translations/tr/Plot_Workbench.md b/wiki/translations/tr/Plot_Workbench.md index 6e8c63f123..71e944941c 100644 --- a/wiki/translations/tr/Plot_Workbench.md +++ b/wiki/translations/tr/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/tr 1. REDIRECT [Plot Module/tr](Plot_Module/tr.md) + +--- +[documentation index](../README.md) > Plot Workbench/tr diff --git a/wiki/translations/tr/Points_Module.md b/wiki/translations/tr/Points_Module.md index 75b95059aa..8a4c32142b 100644 --- a/wiki/translations/tr/Points_Module.md +++ b/wiki/translations/tr/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/tr 1. REDIRECT [Points\_Workbench/tr](Points_Workbench/tr.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/tr diff --git a/wiki/translations/tr/Points_Workbench.md b/wiki/translations/tr/Points_Workbench.md index cb85e546d8..ae1672b6a0 100644 --- a/wiki/translations/tr/Points_Workbench.md +++ b/wiki/translations/tr/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/tr - - - - - -Points workbench icon +# Points workbench icon Points Workbench/tr ## Introduction @@ -51,3 +45,6 @@ All Points Workbench tools can be accessed from the **Points** menu. Some tools }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/tr diff --git a/wiki/translations/tr/Power_users_hub.md b/wiki/translations/tr/Power_users_hub.md index a8d5d9c83d..5fdc1706e5 100644 --- a/wiki/translations/tr/Power_users_hub.md +++ b/wiki/translations/tr/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/tr - +# Power users hub/tr ------------------------------------------------------------------------ @@ -135,3 +134,6 @@ On the [Community portal](FreeCAD_Community_Portal.md), you can find other FreeC }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/tr diff --git a/wiki/translations/tr/Preferences_Editor.md b/wiki/translations/tr/Preferences_Editor.md index 7fe8771c00..920e0080e0 100644 --- a/wiki/translations/tr/Preferences_Editor.md +++ b/wiki/translations/tr/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/tr - - - - - - {{TOCright}} ## Introduction @@ -722,3 +716,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/tr diff --git a/wiki/translations/tr/Property.md b/wiki/translations/tr/Property.md index 46f8926001..8c8ad3b7f5 100644 --- a/wiki/translations/tr/Property.md +++ b/wiki/translations/tr/Property.md @@ -1,6 +1,4 @@ # Property/tr - - ## Introduction @@ -135,3 +133,6 @@ They are imported and initialized in `[https://github.com/FreeCAD/FreeCAD/blob/9 }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/tr diff --git a/wiki/translations/tr/Property_editor.md b/wiki/translations/tr/Property_editor.md index 7565895312..18cd1b70ac 100644 --- a/wiki/translations/tr/Property_editor.md +++ b/wiki/translations/tr/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/tr - - - - - - {{TOCright}} @@ -305,4 +299,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/tr diff --git a/wiki/translations/tr/PySide.md b/wiki/translations/tr/PySide.md index 67de196ef3..7c7e81bb73 100644 --- a/wiki/translations/tr/PySide.md +++ b/wiki/translations/tr/PySide.md @@ -1,7 +1,4 @@ # PySide/tr - - - {{TOCright}} ## Introduction @@ -75,3 +72,6 @@ The PySide documentation refers to the Python-style classes; however, since Qt i }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PySide/tr diff --git a/wiki/translations/tr/Python.md b/wiki/translations/tr/Python.md index 5247678e12..9865a31058 100644 --- a/wiki/translations/tr/Python.md +++ b/wiki/translations/tr/Python.md @@ -1,7 +1,4 @@ # Python/tr - - -
@@ -148,3 +145,6 @@ Structure = Arch.make_structure(Wire, name="Big pillar") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:API Documentation](Category:API_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python/tr diff --git a/wiki/translations/tr/PythonOCC.md b/wiki/translations/tr/PythonOCC.md index 774f556fe9..bfed5d0a69 100644 --- a/wiki/translations/tr/PythonOCC.md +++ b/wiki/translations/tr/PythonOCC.md @@ -1,6 +1,4 @@ # PythonOCC/tr - - ## Description [PythonOCC](PythonOCC.md) is a project that aims at providing the entire range of [OpenCASCADE Technology](OpenCASCADE.md) (OCCT) functions through the [Python](Python.md) module `OCC`. This is a different approach from FreeCAD\'s, where only certain components of OCCT are exposed through the [Part Workbench](Part_Workbench.md). @@ -45,3 +43,6 @@ You can also self compile pythonOCC (see [instructions](https://github.com/tpavi }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > PythonOCC/tr diff --git a/wiki/translations/tr/Python_scripting_tutorial.md b/wiki/translations/tr/Python_scripting_tutorial.md index abf7d11ed8..d2d6e7518a 100644 --- a/wiki/translations/tr/Python_scripting_tutorial.md +++ b/wiki/translations/tr/Python_scripting_tutorial.md @@ -1,7 +1,4 @@ # Python scripting tutorial/tr - - - {{TOCright}} ## Introduction @@ -353,3 +350,6 @@ Artık daha derinlemesine FreeCAD betikleri için hazırsınız. [Uzman kullanı }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python scripting tutorial/tr diff --git a/wiki/translations/tr/Ray_Tracing_Workbench.md b/wiki/translations/tr/Ray_Tracing_Workbench.md index 2342ed9d28..f95a285ce1 100644 --- a/wiki/translations/tr/Ray_Tracing_Workbench.md +++ b/wiki/translations/tr/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/tr 1. REDIRECT [Raytracing\_Workbench/tr](Raytracing_Workbench/tr.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/tr diff --git a/wiki/translations/tr/Raytracing_Module.md b/wiki/translations/tr/Raytracing_Module.md index 198a52e755..429bcca073 100644 --- a/wiki/translations/tr/Raytracing_Module.md +++ b/wiki/translations/tr/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/tr 1. REDIRECT [Raytracing\_Workbench/tr](Raytracing_Workbench/tr.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/tr diff --git a/wiki/translations/tr/Raytracing_Workbench.md b/wiki/translations/tr/Raytracing_Workbench.md index 16f84784a3..23635cab41 100644 --- a/wiki/translations/tr/Raytracing_Workbench.md +++ b/wiki/translations/tr/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/tr - - - **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. Nevertheless, the information in this page is generally useful for the new workbench, as both modules work basically in the same way. @@ -149,3 +146,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/tr diff --git a/wiki/translations/tr/Release_notes_0.15.md b/wiki/translations/tr/Release_notes_0.15.md index d9226adb7a..3c523027d1 100644 --- a/wiki/translations/tr/Release_notes_0.15.md +++ b/wiki/translations/tr/Release_notes_0.15.md @@ -1,5 +1,5 @@ # Release notes 0.15/tr - FreeCAD 0.15 was released on April 8, 2015. This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) +FreeCAD 0.15 was released on April 8, 2015. This is a summary of the most interesting changes. The complete list of changes can be found in the [Mantis changelog](http://www.freecadweb.org/tracker/changelog_page.php). Older versions at: [0.14](Release_notes_0.14.md) - [0.13](Release_notes_0.13.md) - [0.12](Release_notes_0.12.md) - [0.11](Release_notes_0.11.md) @@ -152,3 +152,6 @@ The [WorkFeature macro](https://github.com/Rentlau/WorkFeature) adds a wide rang [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.15/tr diff --git a/wiki/translations/tr/Release_notes_0.17.md b/wiki/translations/tr/Release_notes_0.17.md index aea1404858..79d944b0d7 100644 --- a/wiki/translations/tr/Release_notes_0.17.md +++ b/wiki/translations/tr/Release_notes_0.17.md @@ -1,7 +1,4 @@ # Release notes 0.17/tr - - -
\'\'FreeCAD\'in bu sürümü, arkadaşımız Roland Frank\'e [2017 yılında aramızdan ayrılmıştır(Allah rahmet eylesin)](https://forum.freecadweb.org/viewtopic.php?f=8&t=25673) adanmıştır. FreeCAD forumunun aktif ve takdir görmüş bir üyesiydi. [Learn FreeCAD](https://www.youtube.com/watch?v=_HEvhclR4-o&list=PL6fZ68Cq3L8k0JhxnIVjZQN26cn9idJrj) hazırladığı videoları ve [BPLFRE](https://www.youtube.com/watch?v=m49z0weonog&list=PLsrwVwvqYb8G4Ri0iz1JIebsOXkgoytAY) youtube kanalı ile FreeCAD\'e yeni başlayanlara yardımcı oluyordu. @@ -302,3 +299,6 @@ Some of the new community modules that were created. - [Kicad StepUp Workbench](https://www.freecadweb.org/wiki/KicadStepUp_Workbench) is aimed to help KiCad and FreeCAD users in ECAD and MCAD collaboration. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.17/tr diff --git a/wiki/translations/tr/Reverse_Engineering_Workbench.md b/wiki/translations/tr/Reverse_Engineering_Workbench.md index 95b83667a1..2c56d14c2f 100644 --- a/wiki/translations/tr/Reverse_Engineering_Workbench.md +++ b/wiki/translations/tr/Reverse_Engineering_Workbench.md @@ -1,10 +1,4 @@ -# Reverse Engineering Workbench/tr - - - - - -Reverse Engineering workbench icon +# Reverse Engineering workbench icon Reverse Engineering Workbench/tr ## Introduction @@ -43,3 +37,6 @@ Link to appropriate threads discussing this workbench [Category:Reverse Engineering/tr](Category:Reverse_Engineering/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench/tr diff --git a/wiki/translations/tr/Robot_CreateRobot.md b/wiki/translations/tr/Robot_CreateRobot.md index 82703b48f5..b50940dd13 100644 --- a/wiki/translations/tr/Robot_CreateRobot.md +++ b/wiki/translations/tr/Robot_CreateRobot.md @@ -1,3 +1,4 @@ +# Robot CreateRobot/tr --- - GuiCommand:/tr Name:Robot CreateRobot @@ -67,4 +68,7 @@ Robot kod ve bir vrml dosyası aracılığıyla tanımlanmalıdır, daha {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateRobot/tr diff --git a/wiki/translations/tr/Robot_CreateTrajectory.md b/wiki/translations/tr/Robot_CreateTrajectory.md index b2e9504416..fdb40b5390 100644 --- a/wiki/translations/tr/Robot_CreateTrajectory.md +++ b/wiki/translations/tr/Robot_CreateTrajectory.md @@ -1,3 +1,4 @@ +# Robot CreateTrajectory/tr --- - GuiCommand:/tr Name:Robot CreateTrajectory @@ -42,4 +43,7 @@ Sahneye yeni bir boş yörünge nesnesi ekler. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot CreateTrajectory/tr diff --git a/wiki/translations/tr/Robot_Export.md b/wiki/translations/tr/Robot_Export.md index 9084dcea2e..30b73ecad5 100644 --- a/wiki/translations/tr/Robot_Export.md +++ b/wiki/translations/tr/Robot_Export.md @@ -6,6 +6,8 @@ MenuLocation:Robot → Yörünge Dışa Aktar --- +# Robot Export/tr +
@@ -63,4 +65,7 @@ Bir KRL dosyası (\* .src) oluşturulacaktır. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Export/tr diff --git a/wiki/translations/tr/Robot_Module.md b/wiki/translations/tr/Robot_Module.md index 1fb237e3d3..81d6992d6c 100644 --- a/wiki/translations/tr/Robot_Module.md +++ b/wiki/translations/tr/Robot_Module.md @@ -1,2 +1,5 @@ # Robot Module/tr 1. REDIRECT [Robot Workbench/tr](Robot_Workbench/tr.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Module/tr diff --git a/wiki/translations/tr/Robot_RestoreHomePos.md b/wiki/translations/tr/Robot_RestoreHomePos.md index d2ca3dde6d..1d86c5656c 100644 --- a/wiki/translations/tr/Robot_RestoreHomePos.md +++ b/wiki/translations/tr/Robot_RestoreHomePos.md @@ -6,6 +6,8 @@ MenuLocation:Robot → Ana konuma dön --- +# Robot RestoreHomePos/tr +
@@ -48,4 +50,7 @@ Birden fazla robot seçilmediyse, sadece bir robot seçmeniz istenir. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot RestoreHomePos/tr diff --git a/wiki/translations/tr/Robot_SetDefaultOrientation.md b/wiki/translations/tr/Robot_SetDefaultOrientation.md index f06daa497d..9edf47be97 100644 --- a/wiki/translations/tr/Robot_SetDefaultOrientation.md +++ b/wiki/translations/tr/Robot_SetDefaultOrientation.md @@ -6,6 +6,8 @@ SeeAlso:... --- +# Robot SetDefaultOrientation/tr + ## Description @@ -22,4 +24,7 @@ {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetDefaultOrientation/tr diff --git a/wiki/translations/tr/Robot_SetDefaultValues.md b/wiki/translations/tr/Robot_SetDefaultValues.md index e1134cb506..ac6b008982 100644 --- a/wiki/translations/tr/Robot_SetDefaultValues.md +++ b/wiki/translations/tr/Robot_SetDefaultValues.md @@ -5,6 +5,8 @@ Workbenches:[Robot](Robot_Workbench.md) --- +# Robot SetDefaultValues/tr + ## Description Set the default values for way-point creation. @@ -33,4 +35,7 @@ The program\'s default values are for {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetDefaultValues/tr diff --git a/wiki/translations/tr/Robot_SetHomePos.md b/wiki/translations/tr/Robot_SetHomePos.md index 900cbf8035..f4aaf5f9f9 100644 --- a/wiki/translations/tr/Robot_SetHomePos.md +++ b/wiki/translations/tr/Robot_SetHomePos.md @@ -6,6 +6,8 @@ MenuLocation:Robot → Ana konum ayarla --- +# Robot SetHomePos/tr +
@@ -48,4 +50,7 @@ Birden fazla robot seçilmediyse, sadece bir robot seçmeniz istenir. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot SetHomePos/tr diff --git a/wiki/translations/tr/Robot_Simulate.md b/wiki/translations/tr/Robot_Simulate.md index 985248c598..15a53244f2 100644 --- a/wiki/translations/tr/Robot_Simulate.md +++ b/wiki/translations/tr/Robot_Simulate.md @@ -1,3 +1,4 @@ +# Robot Simulate/tr --- - GuiCommand:/tr Name:Robot Simulate @@ -56,4 +57,7 @@ Soldan sağa düğmeler. {{Robot_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Simulate/tr diff --git a/wiki/translations/tr/Robot_Workbench.md b/wiki/translations/tr/Robot_Workbench.md index 294e294e57..5f3005eb52 100644 --- a/wiki/translations/tr/Robot_Workbench.md +++ b/wiki/translations/tr/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/tr - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. @@ -129,3 +123,6 @@ Robot yer değiştirmelerini modellemek için kullanılan işlevlerin açıklama }} [Category:Workbenches/tr](Category:Workbenches/tr.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/tr diff --git a/wiki/translations/tr/Robot_tutorial.md b/wiki/translations/tr/Robot_tutorial.md index 2cd379bb76..05a5092a1f 100644 --- a/wiki/translations/tr/Robot_tutorial.md +++ b/wiki/translations/tr/Robot_tutorial.md @@ -1,5 +1,5 @@ # Robot tutorial/tr - {{TutorialInfo/tr +{{TutorialInfo/tr |Topic= Robot Tezgahı |Level= Yeni başlayan |Time= @@ -90,4 +90,7 @@ Bu eğitimde [endüstriyel robotlar](http://en.wikipedia.org/wiki/Industrial_rob {{Tutorials navi -}} {{Robot Tools navi}} +}} {{Robot Tools navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot tutorial/tr diff --git a/wiki/translations/tr/Scenegraph.md b/wiki/translations/tr/Scenegraph.md index 301ecf8b8e..70c008d55c 100644 --- a/wiki/translations/tr/Scenegraph.md +++ b/wiki/translations/tr/Scenegraph.md @@ -1,7 +1,4 @@ # Scenegraph/tr - - - {{TOCright}} ## Introduction @@ -73,3 +70,6 @@ See [Coin3d snippets](Coin3d_snippets.md) courtesy of MariwanJ\'s research for t }} [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scenegraph/tr diff --git a/wiki/translations/tr/Screenshots.md b/wiki/translations/tr/Screenshots.md index 34d0f56774..c0dbd35acc 100644 --- a/wiki/translations/tr/Screenshots.md +++ b/wiki/translations/tr/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/tr - {{TOCright}} +{{TOCright}} Here are a few screenshots showing different parts of FreeCAD. They are not ordered in any particular timeline, so the images may differ from your actual version. See more screenshots submitted by FreeCAD users on the [screenshot forum thread](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) and on the [\"Show your project here!\" Users Showcase forum part](http://forum.freecadweb.org/viewforum.php?f=24). @@ -202,3 +202,6 @@ FreeCAD runs in console mode (without gui) Dialog to save a picture with arbitrary sizes. [Category:User\_Documentation/tr](Category:User_Documentation/tr.md) [Category:Screenshots/tr](Category:Screenshots/tr.md) + +--- +[documentation index](../README.md) > Screenshots/tr diff --git a/wiki/translations/tr/Scripted_objects.md b/wiki/translations/tr/Scripted_objects.md index e34cebc48d..1a3e8f239a 100644 --- a/wiki/translations/tr/Scripted_objects.md +++ b/wiki/translations/tr/Scripted_objects.md @@ -1,7 +1,4 @@ # Scripted objects/tr - - - {{TOCright}} ## Introduction @@ -897,3 +894,6 @@ In addition to the examples presented here have a look at FreeCAD source code [s }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects/tr diff --git a/wiki/translations/tr/Ship_Area.md b/wiki/translations/tr/Ship_Area.md index a3f41bf033..94aa85e8bc 100644 --- a/wiki/translations/tr/Ship_Area.md +++ b/wiki/translations/tr/Ship_Area.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Ship Area/tr + ## Description Plot the transversal areas curve @@ -28,4 +30,7 @@ Plot the transversal areas curve {{Ship_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > Ship Area/tr diff --git a/wiki/translations/tr/Ship_Workbench.md b/wiki/translations/tr/Ship_Workbench.md index 8df1ecfeeb..edc0ca28e1 100644 --- a/wiki/translations/tr/Ship_Workbench.md +++ b/wiki/translations/tr/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/tr - - -Ship workbench icon +# Ship workbench icon Ship Workbench/tr {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/tr diff --git a/wiki/translations/tr/Sketcher_Clone.md b/wiki/translations/tr/Sketcher_Clone.md index 10a3db6596..2cd3fa0d76 100644 --- a/wiki/translations/tr/Sketcher_Clone.md +++ b/wiki/translations/tr/Sketcher_Clone.md @@ -9,6 +9,8 @@ --- +# Sketcher Clone/tr +
@@ -48,4 +50,7 @@ Bir klonun, klonunun bir Eskiz Kopyası haline geldiğine dikkat edin. Bağlant {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Clone/tr diff --git a/wiki/translations/tr/Sketcher_EditSketch.md b/wiki/translations/tr/Sketcher_EditSketch.md index 945d87a940..882034e6c7 100644 --- a/wiki/translations/tr/Sketcher_EditSketch.md +++ b/wiki/translations/tr/Sketcher_EditSketch.md @@ -5,6 +5,8 @@ MenuLocation:Eskiz → Yeni Eskiz --- +# Sketcher EditSketch/tr + @@ -51,3 +53,6 @@ Bu komut, varolan bir eskizi düzenlemenizi sağlar. }} [Category:Sketcher/tr](Category:Sketcher/tr.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher EditSketch/tr diff --git a/wiki/translations/tr/Sketcher_LeaveSketch.md b/wiki/translations/tr/Sketcher_LeaveSketch.md index 35a0ad1b16..cb2966072a 100644 --- a/wiki/translations/tr/Sketcher_LeaveSketch.md +++ b/wiki/translations/tr/Sketcher_LeaveSketch.md @@ -5,6 +5,8 @@ MenuLocation:Eskiz → Eskizi kapat --- +# Sketcher LeaveSketch/tr + @@ -38,3 +40,6 @@ The **Leave sketch** command exits the sketch editing mode and frees up the [Tas }} [Category:Sketcher/tr](Category:Sketcher/tr.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher LeaveSketch/tr diff --git a/wiki/translations/tr/Sketcher_MapSketch.md b/wiki/translations/tr/Sketcher_MapSketch.md index 796a76b43a..601465c88a 100644 --- a/wiki/translations/tr/Sketcher_MapSketch.md +++ b/wiki/translations/tr/Sketcher_MapSketch.md @@ -1,3 +1,4 @@ +# Sketcher MapSketch/tr --- - GuiCommand: Name:Eskizi yüze eşle Create a sketch on a face|Workbenches:[PartDesign](Sketcher_Workbench___Sketcher]],_[[PartDesign_Workbench.md)|MenuLocation:Part Design/Sketch → Map sketch to face... SeeAlso:[Create a new sketch](Sketcher_NewSketch.md)--- @@ -82,3 +83,6 @@ Modeli onarmak için önce katıların görünürlüğünü değiştiriyoruz. Pa }} [Category:Sketcher/tr](Category:Sketcher/tr.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MapSketch/tr diff --git a/wiki/translations/tr/Sketcher_Module.md b/wiki/translations/tr/Sketcher_Module.md index 6d5d8f00e1..2b7aa267e4 100644 --- a/wiki/translations/tr/Sketcher_Module.md +++ b/wiki/translations/tr/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/tr 1. REDIRECT [Sketcher Workbench/tr](Sketcher_Workbench/tr.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/tr diff --git a/wiki/translations/tr/Sketcher_NewSketch.md b/wiki/translations/tr/Sketcher_NewSketch.md index 48bb1becc5..50b73111d6 100644 --- a/wiki/translations/tr/Sketcher_NewSketch.md +++ b/wiki/translations/tr/Sketcher_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[Eskizi Yüzeye Eşle](Sketcher_MapSketch/tr.md), [Eskizi yeniden yönlendir...](Sketcher_Reorient/tr.md) --- +# Sketcher NewSketch/tr + @@ -64,4 +66,7 @@ Eskiz [Yerleştirme](Placement/tr.md) kullanılarak 3D alanda hareket ettirilebi {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher NewSketch/tr diff --git a/wiki/translations/tr/Sketcher_ReorientSketch.md b/wiki/translations/tr/Sketcher_ReorientSketch.md index 2024ce6c58..57c212da4b 100644 --- a/wiki/translations/tr/Sketcher_ReorientSketch.md +++ b/wiki/translations/tr/Sketcher_ReorientSketch.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher Map sketch](Sketcher_MapSketch.md), [Sketcher New Sketch](Sketcher_NewSketch.md) --- +# Sketcher ReorientSketch/tr + ## Tanım Allows you to detach a sketch from a face and attach it to one of the main planes (with an offset). @@ -30,4 +32,7 @@ Allows you to detach a sketch from a face and attach it to one of the main plane {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ReorientSketch/tr diff --git a/wiki/translations/tr/Sketcher_Sketch.md b/wiki/translations/tr/Sketcher_Sketch.md index 3a4509a5ef..46a8b7e6b5 100644 --- a/wiki/translations/tr/Sketcher_Sketch.md +++ b/wiki/translations/tr/Sketcher_Sketch.md @@ -1,6 +1,4 @@ # Sketcher Sketch/tr - - This should hold the description of the Sketch tool that is part of the [Sketcher Workbench](Sketcher_Workbench.md) and the [PartDesign Workbench](PartDesign_Workbench.md). This is a work in progress. Meanwhile, consult: @@ -11,4 +9,7 @@ This is a work in progress. Meanwhile, consult: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Sketch/tr diff --git a/wiki/translations/tr/Sketcher_ViewSketch.md b/wiki/translations/tr/Sketcher_ViewSketch.md index 281f29988f..ac2c40b0a3 100644 --- a/wiki/translations/tr/Sketcher_ViewSketch.md +++ b/wiki/translations/tr/Sketcher_ViewSketch.md @@ -1,3 +1,4 @@ +# Sketcher ViewSketch/tr --- - GuiCommand:/tr Name:Eskiz Eskiz görünümü Workbenches:[Parça tasarım](Sketcher_Workbench___Eskiz]],_[[PartDesign_Workbench.md)|MenuLocation:Eskiz → Eskiz görünümü--- @@ -33,4 +34,7 @@ Eskiz düzenleme modundayken ya da {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSketch/tr diff --git a/wiki/translations/tr/Sketcher_Workbench.md b/wiki/translations/tr/Sketcher_Workbench.md index 6d9f322e78..b75f2002ba 100644 --- a/wiki/translations/tr/Sketcher_Workbench.md +++ b/wiki/translations/tr/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/tr - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/tr {{TOCright}} @@ -910,3 +904,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [Category:Sketcher/tr](Category:Sketcher/tr.md) [Category:Workbenches/tr](Category:Workbenches/tr.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/tr diff --git a/wiki/translations/tr/Source_documentation.md b/wiki/translations/tr/Source_documentation.md index e43569f76b..9845fc2646 100644 --- a/wiki/translations/tr/Source_documentation.md +++ b/wiki/translations/tr/Source_documentation.md @@ -1,10 +1,4 @@ # Source documentation/tr - - - - - - {{TOCright}} ## Overview @@ -131,3 +125,6 @@ void removeTaskWatcher(void); [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source documentation/tr diff --git a/wiki/translations/tr/Spinning.md b/wiki/translations/tr/Spinning.md index ce90e36898..220f3b25ac 100644 --- a/wiki/translations/tr/Spinning.md +++ b/wiki/translations/tr/Spinning.md @@ -1,2 +1,5 @@ # Spinning/tr 1. REDIRECT [Std\_DemoMode](Std_DemoMode.md) + +--- +[documentation index](../README.md) > Spinning/tr diff --git a/wiki/translations/tr/Spreadsheet_Workbench.md b/wiki/translations/tr/Spreadsheet_Workbench.md index 3269f9aa8d..20e34f9cca 100644 --- a/wiki/translations/tr/Spreadsheet_Workbench.md +++ b/wiki/translations/tr/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/tr - {{Page_in_progress}} @@ -235,3 +234,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/tr diff --git a/wiki/translations/tr/Standard_Menu.md b/wiki/translations/tr/Standard_Menu.md index 59fb1c0a96..b8b553aac5 100644 --- a/wiki/translations/tr/Standard_Menu.md +++ b/wiki/translations/tr/Standard_Menu.md @@ -1,5 +1,5 @@ # Standard Menu/tr - {{TOCright}} +{{TOCright}} ## Introduction @@ -47,4 +47,7 @@ The standard menu is composed of 7 sub-menus: {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Standard Menu/tr diff --git a/wiki/translations/tr/Start_Workbench.md b/wiki/translations/tr/Start_Workbench.md index ab27da5af2..024529691b 100644 --- a/wiki/translations/tr/Start_Workbench.md +++ b/wiki/translations/tr/Start_Workbench.md @@ -1,10 +1,4 @@ -# Start Workbench/tr - - - - - -Start workbench icon +# Start workbench icon Start Workbench/tr The [Start Workbench](Start_Workbench.md) is not really a workbench, it\'s just the page that is presented when you open FreeCAD with no document loaded. @@ -23,3 +17,6 @@ From this interface you can see useful information and jump to recently opened f [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench/tr diff --git a/wiki/translations/tr/Start_up_and_Configuration.md b/wiki/translations/tr/Start_up_and_Configuration.md index 81908d35c1..c944521746 100644 --- a/wiki/translations/tr/Start_up_and_Configuration.md +++ b/wiki/translations/tr/Start_up_and_Configuration.md @@ -1,10 +1,4 @@ # Start up and Configuration/tr - - - - - - {{TOCright}} ## Overview @@ -417,3 +411,6 @@ Now double-click the batch file to start FreeCAD. ([see](https://forum.freecadwe [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Start](Start_Workbench.md) > Start up and Configuration/tr diff --git a/wiki/translations/tr/Std_AddonMgr.md b/wiki/translations/tr/Std_AddonMgr.md index cc04dfe2f6..344af433e7 100644 --- a/wiki/translations/tr/Std_AddonMgr.md +++ b/wiki/translations/tr/Std_AddonMgr.md @@ -9,6 +9,8 @@ Version:0.17 --- +# Std AddonMgr/tr + @@ -82,4 +84,7 @@ If you develop a workbench in C++, it cannot be run directly by users and must b {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std AddonMgr/tr diff --git a/wiki/translations/tr/Std_Group.md b/wiki/translations/tr/Std_Group.md index 6a9c05a5c3..57e6831da5 100644 --- a/wiki/translations/tr/Std_Group.md +++ b/wiki/translations/tr/Std_Group.md @@ -1,3 +1,4 @@ +# Std Group/tr --- - GuiCommand:/tr Name:Grup Oluştur MenuLocation:Ağaç görünüm → Belge üzerine sağ tıkla |Workbenches:Hepsi Shortcut: SeeAlso:[Taslak grup seçme](Draft_SelectGroup.md), [Taslak gruba ekle](Draft_AddToGroup.md)--- @@ -162,4 +163,7 @@ For example, a [FEM Analysis](FEM_Analysis.md) is an `App::DocumentObjectGroupPy {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Group/tr diff --git a/wiki/translations/tr/Std_InterfaceCustomization.md b/wiki/translations/tr/Std_InterfaceCustomization.md index f1398b44b1..985e3130be 100644 --- a/wiki/translations/tr/Std_InterfaceCustomization.md +++ b/wiki/translations/tr/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/tr 1. REDIRECT [Interface\_Customization/tr](Interface_Customization/tr.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/tr diff --git a/wiki/translations/tr/Std_Part.md b/wiki/translations/tr/Std_Part.md index 92234b95f2..75cddbc509 100644 --- a/wiki/translations/tr/Std_Part.md +++ b/wiki/translations/tr/Std_Part.md @@ -7,6 +7,8 @@ SeeAlso:[Grup Oluştur](Std_Group.md), [Cisim Oluştur](PartDesign_Body.md) --- +# Std Part/tr + @@ -336,4 +338,7 @@ App.ActiveDocument.addObject('Part::FeaturePython', 'Group', group.MyGroup(), gr {{Std Base navi -}} +}} + +--- +[documentation index](../README.md) > Std Part/tr diff --git a/wiki/translations/tr/Surface_Module.md b/wiki/translations/tr/Surface_Module.md index ab16df91d5..41167dea12 100644 --- a/wiki/translations/tr/Surface_Module.md +++ b/wiki/translations/tr/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/tr 1. REDIRECT [Surface\_Workbench/tr](Surface_Workbench/tr.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/tr diff --git a/wiki/translations/tr/Surface_Workbench.md b/wiki/translations/tr/Surface_Workbench.md index 28f2df4a9a..418d3829bc 100644 --- a/wiki/translations/tr/Surface_Workbench.md +++ b/wiki/translations/tr/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/tr - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/tr {{TOCright}} @@ -57,3 +51,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/tr diff --git a/wiki/translations/tr/TechDraw_Module.md b/wiki/translations/tr/TechDraw_Module.md index 571240bdb8..c39e48e677 100644 --- a/wiki/translations/tr/TechDraw_Module.md +++ b/wiki/translations/tr/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/tr 1. REDIRECT [TechDraw\_Workbench/tr](TechDraw_Workbench/tr.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/tr diff --git a/wiki/translations/tr/TechDraw_NewArch.md b/wiki/translations/tr/TechDraw_NewArch.md index 843a6c5880..1ac3d6cb6c 100644 --- a/wiki/translations/tr/TechDraw_NewArch.md +++ b/wiki/translations/tr/TechDraw_NewArch.md @@ -1,2 +1,5 @@ # TechDraw NewArch/tr 1. REDIRECT [TechDraw\_ArchView](TechDraw_ArchView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewArch/tr diff --git a/wiki/translations/tr/TechDraw_NewDraft.md b/wiki/translations/tr/TechDraw_NewDraft.md index d7047647d8..7e9ae37092 100644 --- a/wiki/translations/tr/TechDraw_NewDraft.md +++ b/wiki/translations/tr/TechDraw_NewDraft.md @@ -1,2 +1,5 @@ # TechDraw NewDraft/tr 1. REDIRECT [TechDraw\_DraftView](TechDraw_DraftView.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw NewDraft/tr diff --git a/wiki/translations/tr/TechDraw_Workbench.md b/wiki/translations/tr/TechDraw_Workbench.md index 55c0cb1d62..1130c7e9ab 100644 --- a/wiki/translations/tr/TechDraw_Workbench.md +++ b/wiki/translations/tr/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/tr - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/tr ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/tr diff --git a/wiki/translations/tr/Test_Framework_Workbench.md b/wiki/translations/tr/Test_Framework_Workbench.md index 7937a6a63d..8331c513f8 100644 --- a/wiki/translations/tr/Test_Framework_Workbench.md +++ b/wiki/translations/tr/Test_Framework_Workbench.md @@ -1,2 +1,5 @@ # Test Framework Workbench/tr 1. REDIRECT [Testing/tr](Testing/tr.md) + +--- +[documentation index](../README.md) > Test Framework Workbench/tr diff --git a/wiki/translations/tr/Testing.md b/wiki/translations/tr/Testing.md index 909a09bca6..cebc9b55d2 100644 --- a/wiki/translations/tr/Testing.md +++ b/wiki/translations/tr/Testing.md @@ -1,10 +1,4 @@ -# Testing/tr - - - - - -Test workbench icon +# Test workbench icon Testing/tr {{TOCright}} @@ -162,3 +156,6 @@ r.run(suite) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Test Framework](Category:Test_Framework.md) [Category:Workbenches](Category:Workbenches.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Testing/tr diff --git a/wiki/translations/tr/Third_Party_Libraries.md b/wiki/translations/tr/Third_Party_Libraries.md index 7846a9355e..55ccb5edc8 100644 --- a/wiki/translations/tr/Third_Party_Libraries.md +++ b/wiki/translations/tr/Third_Party_Libraries.md @@ -1,10 +1,4 @@ # Third Party Libraries/tr - - - - - - {{TOCright}} ## Overview @@ -282,3 +276,6 @@ It includes among other things: Boost 1.67, Coin3D 4.0.0a, Eigen3, Open CASCADE [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Libraries/tr diff --git a/wiki/translations/tr/Third_Party_Tools.md b/wiki/translations/tr/Third_Party_Tools.md index 7daa0451da..d3e6f8e7cb 100644 --- a/wiki/translations/tr/Third_Party_Tools.md +++ b/wiki/translations/tr/Third_Party_Tools.md @@ -1,10 +1,4 @@ # Third Party Tools/tr - - - - - - {{TOCright}} ## Tool Page @@ -77,3 +71,6 @@ TODO [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Third Party Tools/tr diff --git a/wiki/translations/tr/Topological_data_scripting.md b/wiki/translations/tr/Topological_data_scripting.md index 738fe12a34..f0b2fde403 100644 --- a/wiki/translations/tr/Topological_data_scripting.md +++ b/wiki/translations/tr/Topological_data_scripting.md @@ -1,7 +1,4 @@ # Topological data scripting/tr - - - {{TOCright}} ## Introduction @@ -938,3 +935,6 @@ s.read("test.stp") ```{{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting/tr diff --git a/wiki/translations/tr/Tracker.md b/wiki/translations/tr/Tracker.md index 5d5a41af63..218c644757 100644 --- a/wiki/translations/tr/Tracker.md +++ b/wiki/translations/tr/Tracker.md @@ -1,10 +1,4 @@ # Tracker/tr - - - - - - {{TOCright}} ![](images/Mantis_logo_262x90.png ) @@ -188,3 +182,6 @@ For the inquisitive here is the regex MantisBT uses for this operation: [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Tracker/tr diff --git a/wiki/translations/tr/Tutorials.md b/wiki/translations/tr/Tutorials.md index c4e35f6fcf..7cc6ed1920 100644 --- a/wiki/translations/tr/Tutorials.md +++ b/wiki/translations/tr/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/tr - - - - - - {{TOCright}} This page presents a selection of high quality written tutorials. A complete, unsorted list of tutorials can be found in [:Category:Tutorials](:Category:Tutorials.md), a complete and sortable one can be found in the [table below](Tutorials#Tutorials_-_Comprehensive_list.md). @@ -283,3 +277,6 @@ Here are listed all the tutorials that are not in the manual **regardless of the [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials]], a complete and sortable one can be found in the ](Category:Tutorials]], a complete and sortable one can be found in the .md) > Tutorials/tr diff --git a/wiki/translations/tr/User_hub.md b/wiki/translations/tr/User_hub.md index ef006cd352..dfcabd3ba0 100644 --- a/wiki/translations/tr/User_hub.md +++ b/wiki/translations/tr/User_hub.md @@ -1,5 +1,4 @@ -# User hub/tr - +# User hub/tr ------------------------------------------------------------------------ @@ -122,3 +121,6 @@ This is the official FreeCAD online help. Please note that the whole online help [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/tr diff --git a/wiki/translations/tr/Video_tutorials.md b/wiki/translations/tr/Video_tutorials.md index 57f404b9ea..6d1591563d 100644 --- a/wiki/translations/tr/Video_tutorials.md +++ b/wiki/translations/tr/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials/tr - - - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** This page presents a selection of video tutorials made by FreeCAD users and developers. Visit the [Tutorials and videos](https://forum.freecadweb.org/viewforum.php?f=36) subforum for more links. A useful source of video tutorials is [YouTube](https://YouTube.com). @@ -95,3 +92,6 @@ For more see [Video tutorials obsolete](Video_tutorials_obsolete.md). }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Video tutorials/tr diff --git a/wiki/translations/tr/Web_Workbench.md b/wiki/translations/tr/Web_Workbench.md index 469b4ffc95..a3b3504555 100644 --- a/wiki/translations/tr/Web_Workbench.md +++ b/wiki/translations/tr/Web_Workbench.md @@ -1,10 +1,4 @@ -# Web Workbench/tr - - - - - -Web workbench icon +# Web workbench icon Web Workbench/tr ## Introduction @@ -19,3 +13,6 @@ From this browser you are able to navigate the web, click on links, read the onl [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/tr diff --git a/wiki/translations/tr/Workbenches.md b/wiki/translations/tr/Workbenches.md index 27e6ee2edc..995a12e4d6 100644 --- a/wiki/translations/tr/Workbenches.md +++ b/wiki/translations/tr/Workbenches.md @@ -1,7 +1,4 @@ # Workbenches/tr - - -
@@ -127,3 +124,6 @@ Yeni tezgahlar geliştiriliyor, bizi izlemeye devam edin! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/tr diff --git a/wiki/translations/uk/About_FreeCAD.md b/wiki/translations/uk/About_FreeCAD.md index 0b6ccfa6a9..0f70935149 100644 --- a/wiki/translations/uk/About_FreeCAD.md +++ b/wiki/translations/uk/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/uk - - - +# About FreeCAD/uk **FreeCAD** is a general purpose parametric 3D [**CAD**](http://en.wikipedia.org/wiki/CAD) modeler, whose development is completely [open source](http://en.wikipedia.org/wiki/Open_source) ([LGPL License](https://www.gnu.org/licenses/lgpl-3.0.en.html)). FreeCAD is aimed directly at [mechanical engineering](http://en.wikipedia.org/wiki/Mechanical_engineering) and [product design](http://en.wikipedia.org/wiki/Product_design) but also fits in a wider range of uses around engineering, such as architecture, finite element analysis, 3D printing, and other tasks. @@ -28,3 +25,6 @@ FreeCAD is maintained and developed by a community of enthusiastic developers an [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/uk diff --git a/wiki/translations/uk/Arch_Axis.md b/wiki/translations/uk/Arch_Axis.md index 4b130c4027..fea851eb59 100644 --- a/wiki/translations/uk/Arch_Axis.md +++ b/wiki/translations/uk/Arch_Axis.md @@ -8,6 +8,8 @@ SeeAlso:[Axis System](Arch_AxisSystem.md), [[Arch Grid]] --- +# Arch Axis/uk +
@@ -102,5 +104,5 @@ FreeCAD.ActiveDocument.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Axis/uk diff --git a/wiki/translations/uk/Arch_Building.md b/wiki/translations/uk/Arch_Building.md index e5afcb3428..1013f0eb42 100644 --- a/wiki/translations/uk/Arch_Building.md +++ b/wiki/translations/uk/Arch_Building.md @@ -1,3 +1,4 @@ +# Arch Building/uk --- - GuiCommand:/uk Name:Arch Building Name/uk:Arch Building Workbenches:[MenuLocation:Arch -> Building Shortcut:B U SeeAlso:[[Arch Floor/uk|Arch Floor](Arch_Workbench/uk___Arch]].md), [Arch Site](Arch_Site/uk.md)--- @@ -68,3 +69,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/uk](Category:Arch/uk.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Building/uk diff --git a/wiki/translations/uk/Arch_Equipment.md b/wiki/translations/uk/Arch_Equipment.md index dadf460d15..fc6c86942b 100644 --- a/wiki/translations/uk/Arch_Equipment.md +++ b/wiki/translations/uk/Arch_Equipment.md @@ -8,6 +8,8 @@ SeeAlso:[3 views from mesh](Arch_3Views.md) --- +# Arch Equipment/uk + @@ -78,8 +80,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Equipment/uk diff --git a/wiki/translations/uk/Arch_Floor.md b/wiki/translations/uk/Arch_Floor.md index 60d1c8bf63..088223c1ca 100644 --- a/wiki/translations/uk/Arch_Floor.md +++ b/wiki/translations/uk/Arch_Floor.md @@ -1,3 +1,4 @@ +# Arch Floor/uk --- - GuiCommand:/uk Name:Arch Floor Name/uk:Arch Floor Workbenches:[MenuLocation:Arch → Floor Shortcut:F L SeeAlso:[[Arch Building/uk|Arch Building](Arch_Workbench/uk___Arch]].md), [Arch Site](Arch_Site/uk.md)--- @@ -72,8 +73,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Floor/uk diff --git a/wiki/translations/uk/Arch_Frame.md b/wiki/translations/uk/Arch_Frame.md index e896619b80..577fd71b7c 100644 --- a/wiki/translations/uk/Arch_Frame.md +++ b/wiki/translations/uk/Arch_Frame.md @@ -8,6 +8,8 @@ SeeAlso:[[Arch Wall/uk]], [[Arch Structure/uk]] --- +# Arch Frame/uk + @@ -86,8 +88,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Frame/uk diff --git a/wiki/translations/uk/Arch_Module.md b/wiki/translations/uk/Arch_Module.md index b25c25503e..7a3670b68d 100644 --- a/wiki/translations/uk/Arch_Module.md +++ b/wiki/translations/uk/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/uk 1. REDIRECT [Arch\_Workbench/uk](Arch_Workbench/uk.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/uk diff --git a/wiki/translations/uk/Arch_Panel.md b/wiki/translations/uk/Arch_Panel.md index 3702da3f15..dc20a2552e 100644 --- a/wiki/translations/uk/Arch_Panel.md +++ b/wiki/translations/uk/Arch_Panel.md @@ -8,6 +8,8 @@ Version:0.15 --- +# Arch Panel/uk + @@ -101,5 +103,5 @@ Panel = Arch.makePanel(Rect, thickness=36) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Panel/uk diff --git a/wiki/translations/uk/Arch_Rebar.md b/wiki/translations/uk/Arch_Rebar.md index 89f8d6ea73..a0fbdcbc0b 100644 --- a/wiki/translations/uk/Arch_Rebar.md +++ b/wiki/translations/uk/Arch_Rebar.md @@ -1,3 +1,4 @@ +# Arch Rebar/uk --- - GuiCommand:/uk Name:Arch Rebar Name/uk:Arch Rebar Workbenches:[MenuLocation:Arch → Rebar Shortcut:R B SeeAlso:[[Arch Structure/uk|Arch Structure](Arch_Workbench/uk___Arch]].md)--- @@ -129,3 +130,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/uk](Category:Arch/uk.md) [Category:External Command Reference](Category:External_Command_Reference.md) [Category:Reinforcement](Category:Reinforcement.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Rebar/uk diff --git a/wiki/translations/uk/Arch_Roof.md b/wiki/translations/uk/Arch_Roof.md index c990301f6d..0d552c70ca 100644 --- a/wiki/translations/uk/Arch_Roof.md +++ b/wiki/translations/uk/Arch_Roof.md @@ -1,3 +1,4 @@ +# Arch Roof/uk --- - GuiCommand:/uk Name:Arch Roof Name/uk:Arch Roof Workbenches:[[Arch_Workbench/uk Arch]]|MenuLocation:Arch → Roof Shortcut:R F--- @@ -119,5 +120,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Roof/uk diff --git a/wiki/translations/uk/Arch_SectionPlane.md b/wiki/translations/uk/Arch_SectionPlane.md index 5708f847bf..2bc7c800b0 100644 --- a/wiki/translations/uk/Arch_SectionPlane.md +++ b/wiki/translations/uk/Arch_SectionPlane.md @@ -1,3 +1,4 @@ +# Arch SectionPlane/uk --- - GuiCommand:/uk Name:Arch SectionPlane Name/uk:Arch SectionPlane Workbenches:[[Arch_Workbench/uk Arch]]|MenuLocation:Arch -> Section Plane Shortcut:S P--- @@ -118,3 +119,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/uk](Category:Arch/uk.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch SectionPlane/uk diff --git a/wiki/translations/uk/Arch_Site.md b/wiki/translations/uk/Arch_Site.md index d2eb4ed652..33037ba7cc 100644 --- a/wiki/translations/uk/Arch_Site.md +++ b/wiki/translations/uk/Arch_Site.md @@ -1,3 +1,4 @@ +# Arch Site/uk --- - GuiCommand:/uk Name:Arch Site Name/uk:Arch Site Workbenches:[MenuLocation:Arch → Site Shortcut:S I SeeAlso:[[Arch Floor/uk|Arch Floor](Arch_Workbench/uk___Arch]].md), [Arch Building](Arch_Building/uk.md)--- @@ -170,3 +171,6 @@ FreeCAD.Gui.ActiveDocument.ActiveView.getSceneGraph().addChild(Node) [Category:Arch/uk](Category:Arch/uk.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Site/uk diff --git a/wiki/translations/uk/Arch_Space.md b/wiki/translations/uk/Arch_Space.md index 3a81cc5ed4..fc3d8506f6 100644 --- a/wiki/translations/uk/Arch_Space.md +++ b/wiki/translations/uk/Arch_Space.md @@ -8,6 +8,8 @@ Version:0.14 --- +# Arch Space/uk + @@ -148,5 +150,5 @@ Arch.removeSpaceBoundaries(Space, selection) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Space/uk diff --git a/wiki/translations/uk/Arch_Stairs.md b/wiki/translations/uk/Arch_Stairs.md index 70ff513102..fbcd9fb5fe 100644 --- a/wiki/translations/uk/Arch_Stairs.md +++ b/wiki/translations/uk/Arch_Stairs.md @@ -1,3 +1,4 @@ +# Arch Stairs/uk --- - GuiCommand:/uk Name:Arch Stairs Name/uk:Arch Stairs Workbenches:[[Arch_Workbench/uk Arch]]|MenuLocation:Arch → Stairs Shortcut:S R--- @@ -99,5 +100,5 @@ Stairs = Arch.makeStairs(length=5000, width=1200, height=3000, steps=14) - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Stairs/uk diff --git a/wiki/translations/uk/Arch_Structure.md b/wiki/translations/uk/Arch_Structure.md index 63918302a4..658b63315c 100644 --- a/wiki/translations/uk/Arch_Structure.md +++ b/wiki/translations/uk/Arch_Structure.md @@ -7,6 +7,8 @@ SeeAlso:[Arch Wall](Arch_Wall/uk.md) --- +# Arch Structure/uk + @@ -128,8 +130,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Structure/uk diff --git a/wiki/translations/uk/Arch_Wall.md b/wiki/translations/uk/Arch_Wall.md index 6aa0c19d5f..42719cadc3 100644 --- a/wiki/translations/uk/Arch_Wall.md +++ b/wiki/translations/uk/Arch_Wall.md @@ -1,3 +1,4 @@ +# Arch Wall/uk --- - GuiCommand:/uk Name:Arch Wall Name/uk:Arch Wall Workbenches:[MenuLocation:Arch → Wall Shortcut:W A SeeAlso:[[Arch Structure/uk|Arch Structure](Arch_Workbench/uk___Arch]].md)--- @@ -147,3 +148,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/uk](Category:Arch/uk.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/uk diff --git a/wiki/translations/uk/Arch_Window.md b/wiki/translations/uk/Arch_Window.md index 45061c4c55..3453be1503 100644 --- a/wiki/translations/uk/Arch_Window.md +++ b/wiki/translations/uk/Arch_Window.md @@ -1,3 +1,4 @@ +# Arch Window/uk --- - GuiCommand:/uk Name:Arch Window Name/uk:Arch Window Workbenches:[MenuLocation:Arch → Window Shortcut:W I SeeAlso:[[Arch Wall/uk|Arch Wall](Arch_Workbench/uk___Arch]].md)--- @@ -230,3 +231,6 @@ Door = Arch.makeWindowPreset("Simple door", [Category:Arch/uk](Category:Arch/uk.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Window/uk diff --git a/wiki/translations/uk/Arch_Workbench.md b/wiki/translations/uk/Arch_Workbench.md index c37d4a36fe..97819b1b70 100644 --- a/wiki/translations/uk/Arch_Workbench.md +++ b/wiki/translations/uk/Arch_Workbench.md @@ -1,7 +1,4 @@ # Arch Workbench/uk - - - {{docnav/uk|[Workbenches/uk](Workbenches/uk.md)|[Draft Workbench/uk](Draft_Workbench/uk.md)|IconL=|IconR=Workbench_Draft.svg}} Arch workbench icon @@ -142,3 +139,6 @@ These are additional tools to help you in specific tasks. [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/uk diff --git a/wiki/translations/uk/Arch_tutorial.md b/wiki/translations/uk/Arch_tutorial.md index 473233cc3b..a13bcb4913 100644 --- a/wiki/translations/uk/Arch_tutorial.md +++ b/wiki/translations/uk/Arch_tutorial.md @@ -1,7 +1,4 @@ # Arch tutorial/uk - - -
@@ -489,4 +486,7 @@ The file created during this tutorial can be found [here](http://yorik.uncreated {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch tutorial/uk diff --git a/wiki/translations/uk/Category:Addons.md b/wiki/translations/uk/Category:Addons.md index bff4d3f0e8..76123268ad 100644 --- a/wiki/translations/uk/Category:Addons.md +++ b/wiki/translations/uk/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/uk - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [Ship Workbench/uk](Ship_Workbench/uk.md) , [Category:Categories](Category:Categories.md) [Category:External Workbenches/uk](Category:External_Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Addons/uk diff --git a/wiki/translations/uk/Category:Administration.md b/wiki/translations/uk/Category:Administration.md index 7f871ab249..6f30a0b82c 100644 --- a/wiki/translations/uk/Category:Administration.md +++ b/wiki/translations/uk/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/uk](Template:Arch_Tools_navi/uk.md) , [Template:Drawing Tools navi/uk](Template:Drawing_Tools_navi/uk.md) , [Template:FEM Tools navi/uk](Template:FEM_Tools_navi/uk.md) , [Template:Mesh Tools navi/uk](Template:Mesh_Tools_navi/uk.md) , [Template:OpenSCAD Tools navi/uk](Template:OpenSCAD_Tools_navi/uk.md) , [Template:Part Tools navi/uk](Template:Part_Tools_navi/uk.md) , [Template:PartDesign Tools navi/uk](Template:PartDesign_Tools_navi/uk.md) , [Template:Path Tools navi/uk](Template:Path_Tools_navi/uk.md) , [Template:Plot Tools navi/uk](Template:Plot_Tools_navi/uk.md) , [Template:Raytracing Tools navi/uk](Template:Raytracing_Tools_navi/uk.md) , [Template:Robot Tools navi/uk](Template:Robot_Tools_navi/uk.md) , [Template:Ship Tools navi/uk](Template:Ship_Tools_navi/uk.md) , [Template:Sketcher Tools navi/uk](Template:Sketcher_Tools_navi/uk.md) [Category:Categories/uk](Category:Categories/uk.md) + +--- +[documentation index](../README.md) > Category:Administration/uk diff --git a/wiki/translations/uk/Category:Arch.md b/wiki/translations/uk/Category:Arch.md index e41f5ab955..b1342f4457 100644 --- a/wiki/translations/uk/Category:Arch.md +++ b/wiki/translations/uk/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Arch Axis/uk](Arch_Axis/uk.md) , [Arch Building/uk](Arch_Building/uk.md) , [Arch Equipment/uk](Arch_Equipment/uk.md) , [Arch Floor/uk](Arch_Floor/uk.md) , [Arch Frame/uk](Arch_Frame/uk.md) , [Arch Panel/uk](Arch_Panel/uk.md) , [Arch Rebar/uk](Arch_Rebar/uk.md) , [Arch Roof/uk](Arch_Roof/uk.md) , [Arch SectionPlane/uk](Arch_SectionPlane/uk.md) , [Arch Site/uk](Arch_Site/uk.md) , [Arch Space/uk](Arch_Space/uk.md) , [Arch Stairs/uk](Arch_Stairs/uk.md) , [Arch Structure/uk](Arch_Structure/uk.md) , [Template:Arch Tools navi/uk](Template:Arch_Tools_navi/uk.md) , [Arch tutorial/uk](Arch_tutorial/uk.md) , [Arch Wall/uk](Arch_Wall/uk.md) , [Arch Window/uk](Arch_Window/uk.md) , [Arch Workbench/uk](Arch_Workbench/uk.md) [Category:User Documentation/uk](Category:User_Documentation/uk.md) [Category:BIM/uk](Category:BIM/uk.md) + +--- +[documentation index](../README.md) > Category:Arch/uk diff --git a/wiki/translations/uk/Category:BIM.md b/wiki/translations/uk/Category:BIM.md index 626819f7eb..241a9d528c 100644 --- a/wiki/translations/uk/Category:BIM.md +++ b/wiki/translations/uk/Category:BIM.md @@ -4,3 +4,6 @@ This category is for pages related to building information management (BIM). ### Contents: [Category:User Documentation/uk](Category:User_Documentation/uk.md) [Category:Arch/uk](Category:Arch/uk.md) + +--- +[documentation index](../README.md) > Category:BIM/uk diff --git a/wiki/translations/uk/Category:Categories.md b/wiki/translations/uk/Category:Categories.md index c16ca74279..248e00a19d 100644 --- a/wiki/translations/uk/Category:Categories.md +++ b/wiki/translations/uk/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , [Category:Categories/uk](Category:Categories/uk.md) [Category:Addons/uk](Category:Addons/uk.md) [Category:Administration/uk](Category:Administration/uk.md) [Category:Categories/uk](Category:Categories/uk.md) [Category:Command Reference/uk](Category:Command_Reference/uk.md) [Category:Documentation/uk](Category:Documentation/uk.md) [Category:Hubs/uk](Category:Hubs/uk.md) [Category:Template/uk](Category:Template/uk.md) [Category:Tutorials/uk](Category:Tutorials/uk.md) + +--- +[documentation index](../README.md) > Category:Categories/uk diff --git a/wiki/translations/uk/Category:Command_Reference.md b/wiki/translations/uk/Category:Command_Reference.md index abe4f91625..ed083b0867 100644 --- a/wiki/translations/uk/Category:Command_Reference.md +++ b/wiki/translations/uk/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD command. [Arch Axis/uk](Arch_Axis/uk.md) , [Arch Building/uk](Arch_Building/uk.md) , [Arch Equipment/uk](Arch_Equipment/uk.md) , [Arch Floor/uk](Arch_Floor/uk.md) , [Arch Frame/uk](Arch_Frame/uk.md) , [Arch Panel/uk](Arch_Panel/uk.md) , [Arch Rebar/uk](Arch_Rebar/uk.md) , [Arch Roof/uk](Arch_Roof/uk.md) , [Arch SectionPlane/uk](Arch_SectionPlane/uk.md) , [Arch Site/uk](Arch_Site/uk.md) , [Arch Space/uk](Arch_Space/uk.md) , [Arch Stairs/uk](Arch_Stairs/uk.md) , [Arch Structure/uk](Arch_Structure/uk.md) , [Arch Wall/uk](Arch_Wall/uk.md) , [Arch Window/uk](Arch_Window/uk.md) , [Template:GuiCommand/uk](Template:GuiCommand/uk.md) [Category:Categories/uk](Category:Categories/uk.md) + +--- +[documentation index](../README.md) > Category:Command Reference/uk diff --git a/wiki/translations/uk/Category:Developer_Documentation.md b/wiki/translations/uk/Category:Developer_Documentation.md index ef37c4628a..b02c8fd394 100644 --- a/wiki/translations/uk/Category:Developer_Documentation.md +++ b/wiki/translations/uk/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Help FreeCAD/uk](Help_FreeCAD/uk.md) , [Installing on Linux/uk](Installing_on_Linux/uk.md) , [Localisation/uk](Localisation/uk.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/uk diff --git a/wiki/translations/uk/Category:Documentation.md b/wiki/translations/uk/Category:Documentation.md index 0dd13a07b7..52d00a5a60 100644 --- a/wiki/translations/uk/Category:Documentation.md +++ b/wiki/translations/uk/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [Help FreeCAD/uk](Help_FreeCAD/uk.md) , [Main Page/uk](Main_Page/uk.md) , [Online Help Toc/uk](Online_Help_Toc/uk.md) , , [Category:Categories/uk](Category:Categories/uk.md) [Category:Developer Documentation/uk](Category:Developer_Documentation/uk.md) [Category:User Documentation/uk](Category:User_Documentation/uk.md) + +--- +[documentation index](../README.md) > Category:Documentation/uk diff --git a/wiki/translations/uk/Category:Draft.md b/wiki/translations/uk/Category:Draft.md index 491d78a003..79ec8204cc 100644 --- a/wiki/translations/uk/Category:Draft.md +++ b/wiki/translations/uk/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/uk\" and \"Workben [Draft Workbench/uk](Draft_Workbench/uk.md) [Category:User Documentation/uk](Category:User_Documentation/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Draft/uk diff --git a/wiki/translations/uk/Category:Drawing.md b/wiki/translations/uk/Category:Drawing.md index 9b0128774a..7a498cc946 100644 --- a/wiki/translations/uk/Category:Drawing.md +++ b/wiki/translations/uk/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/uk](Drawing_Workbenc [Template:Drawing Tools navi/uk](Template:Drawing_Tools_navi/uk.md) , [Drawing Workbench/uk](Drawing_Workbench/uk.md) [Category:Obsolete Workbenches/uk](Category:Obsolete_Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Drawing/uk diff --git a/wiki/translations/uk/Category:External_Workbenches.md b/wiki/translations/uk/Category:External_Workbenches.md index d8fa717641..7fe61e702f 100644 --- a/wiki/translations/uk/Category:External_Workbenches.md +++ b/wiki/translations/uk/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [Ship Workbench/uk](Ship_Workbench/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) [Category:Addons/uk](Category:Addons/uk.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/uk diff --git a/wiki/translations/uk/Category:FEM.md b/wiki/translations/uk/Category:FEM.md index 1eee6c86ac..288ed93e82 100644 --- a/wiki/translations/uk/Category:FEM.md +++ b/wiki/translations/uk/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/uk](FEM_Workbench/uk.md) [Template:FEM Tools navi/uk](Template:FEM_Tools_navi/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:FEM/uk diff --git a/wiki/translations/uk/Category:Hubs.md b/wiki/translations/uk/Category:Hubs.md index a7c5caf493..b9916585cd 100644 --- a/wiki/translations/uk/Category:Hubs.md +++ b/wiki/translations/uk/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [User hub/uk](User_hub/uk.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Hubs/uk diff --git a/wiki/translations/uk/Category:Image.md b/wiki/translations/uk/Category:Image.md index 38c9e3f8ee..a73c4151a8 100644 --- a/wiki/translations/uk/Category:Image.md +++ b/wiki/translations/uk/Category:Image.md @@ -6,3 +6,6 @@ This category lists pages related to the [Image Workbench/uk](Image_Workbench/uk [Image Workbench/uk](Image_Workbench/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Image/uk diff --git a/wiki/translations/uk/Category:Mesh.md b/wiki/translations/uk/Category:Mesh.md index 1295534697..9fb6b9c5ec 100644 --- a/wiki/translations/uk/Category:Mesh.md +++ b/wiki/translations/uk/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/uk](Mesh_Workbench/uk. [Template:Mesh Tools navi/uk](Template:Mesh_Tools_navi/uk.md) , [Mesh Workbench/uk](Mesh_Workbench/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Mesh/uk diff --git a/wiki/translations/uk/Category:Obsolete_Workbenches.md b/wiki/translations/uk/Category:Obsolete_Workbenches.md index 0f77f17679..372f4d4912 100644 --- a/wiki/translations/uk/Category:Obsolete_Workbenches.md +++ b/wiki/translations/uk/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/uk](Drawing_Workbenc [Drawing Workbench/uk](Drawing_Workbench/uk.md) , , [Category:Obsolete Workbenches/uk](Category:Obsolete_Workbenches/uk.md) [Category:Drawing/uk](Category:Drawing/uk.md) [Category:Obsolete Workbenches/uk](Category:Obsolete_Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/uk diff --git a/wiki/translations/uk/Category:OpenSCAD.md b/wiki/translations/uk/Category:OpenSCAD.md index 7fc501fbea..1cdb671664 100644 --- a/wiki/translations/uk/Category:OpenSCAD.md +++ b/wiki/translations/uk/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/uk](OpenSCAD_Workb [Template:OpenSCAD Tools navi/uk](Template:OpenSCAD_Tools_navi/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/uk diff --git a/wiki/translations/uk/Category:Part.md b/wiki/translations/uk/Category:Part.md index 19954b7803..2c89ce9f27 100644 --- a/wiki/translations/uk/Category:Part.md +++ b/wiki/translations/uk/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/uk](Part_Workbench/uk.m [Part Module/uk](Part_Module/uk.md) , [Template:Part Tools navi/uk](Template:Part_Tools_navi/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Part/uk diff --git a/wiki/translations/uk/Category:PartDesign.md b/wiki/translations/uk/Category:PartDesign.md index 42d42a3c48..2e776cc5e3 100644 --- a/wiki/translations/uk/Category:PartDesign.md +++ b/wiki/translations/uk/Category:PartDesign.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/uk](PartDesign_Wo [Template:PartDesign Tools navi/uk](Template:PartDesign_Tools_navi/uk.md) , [PartDesign Workbench/uk](PartDesign_Workbench/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:PartDesign/uk diff --git a/wiki/translations/uk/Category:Path.md b/wiki/translations/uk/Category:Path.md index cb1657c4d0..f96ee22430 100644 --- a/wiki/translations/uk/Category:Path.md +++ b/wiki/translations/uk/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/uk](PartDesign_Wo [Template:Path Tools navi/uk](Template:Path_Tools_navi/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Path/uk diff --git a/wiki/translations/uk/Category:Plot.md b/wiki/translations/uk/Category:Plot.md index 124441d757..c883882ba0 100644 --- a/wiki/translations/uk/Category:Plot.md +++ b/wiki/translations/uk/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/uk](Plot_Workbench/uk.m [Template:Plot Tools navi/uk](Template:Plot_Tools_navi/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Plot/uk diff --git a/wiki/translations/uk/Category:Points.md b/wiki/translations/uk/Category:Points.md index f30f63b004..1504b5df96 100644 --- a/wiki/translations/uk/Category:Points.md +++ b/wiki/translations/uk/Category:Points.md @@ -4,3 +4,6 @@ This category lists pages related to the [Points Workbench/uk](Points_Workbench/ ### Contents: [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Points/uk diff --git a/wiki/translations/uk/Category:Preferences.md b/wiki/translations/uk/Category:Preferences.md index 741568893d..0bc01cffea 100644 --- a/wiki/translations/uk/Category:Preferences.md +++ b/wiki/translations/uk/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Preferences Editor/uk](Preferences_Editor/uk.md) + +--- +[documentation index](../README.md) > Category:Preferences/uk diff --git a/wiki/translations/uk/Category:Raytracing.md b/wiki/translations/uk/Category:Raytracing.md index 6f4393a216..0156cab4b3 100644 --- a/wiki/translations/uk/Category:Raytracing.md +++ b/wiki/translations/uk/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/uk](Raytracing_Wo [Template:Raytracing Tools navi/uk](Template:Raytracing_Tools_navi/uk.md) , [Raytracing Workbench/uk](Raytracing_Workbench/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Raytracing/uk diff --git a/wiki/translations/uk/Category:Robot.md b/wiki/translations/uk/Category:Robot.md index 6d4409fc30..4166df9578 100644 --- a/wiki/translations/uk/Category:Robot.md +++ b/wiki/translations/uk/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/uk](Robot_Workbench/uk [Template:Robot Tools navi/uk](Template:Robot_Tools_navi/uk.md) , [Robot Workbench/uk](Robot_Workbench/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Robot/uk diff --git a/wiki/translations/uk/Category:Ship.md b/wiki/translations/uk/Category:Ship.md index 411847d47a..7136e736d9 100644 --- a/wiki/translations/uk/Category:Ship.md +++ b/wiki/translations/uk/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/uk](Ship_Workbench/uk.m [Template:Ship Tools navi/uk](Template:Ship_Tools_navi/uk.md) , [Ship Workbench/uk](Ship_Workbench/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Ship/uk diff --git a/wiki/translations/uk/Category:Sketcher.md b/wiki/translations/uk/Category:Sketcher.md index 541cc9e9e7..5585b53231 100644 --- a/wiki/translations/uk/Category:Sketcher.md +++ b/wiki/translations/uk/Category:Sketcher.md @@ -6,3 +6,6 @@ This category lists pages related to the [Sketcher Workbench/uk](Sketcher_Workbe [Template:Sketcher Tools navi/uk](Template:Sketcher_Tools_navi/uk.md) , [Sketcher Workbench/uk](Sketcher_Workbench/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Sketcher/uk diff --git a/wiki/translations/uk/Category:Surface.md b/wiki/translations/uk/Category:Surface.md index 3238951632..bea9a5fe02 100644 --- a/wiki/translations/uk/Category:Surface.md +++ b/wiki/translations/uk/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/uk](Surface_Workbenc [Surface Workbench/uk](Surface_Workbench/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:Surface/uk diff --git a/wiki/translations/uk/Category:TechDraw.md b/wiki/translations/uk/Category:TechDraw.md index d9b19e9114..293e50ac85 100644 --- a/wiki/translations/uk/Category:TechDraw.md +++ b/wiki/translations/uk/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/uk](TechDraw_Workbe [TechDraw Workbench/uk](TechDraw_Workbench/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:TechDraw/uk diff --git a/wiki/translations/uk/Category:Template.md b/wiki/translations/uk/Category:Template.md index 3308935101..96e6412d6c 100644 --- a/wiki/translations/uk/Category:Template.md +++ b/wiki/translations/uk/Category:Template.md @@ -6,3 +6,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) ### Contents: [Category:Categories/uk](Category:Categories/uk.md) [Category:Template:Navigation/uk](Category:Template:Navigation/uk.md) + +--- +[documentation index](../README.md) > Category:Template/uk diff --git a/wiki/translations/uk/Category:Template:Navigation.md b/wiki/translations/uk/Category:Template:Navigation.md index 0e598d813e..2f23c662d0 100644 --- a/wiki/translations/uk/Category:Template:Navigation.md +++ b/wiki/translations/uk/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/uk](Template:Arch_Tools_navi/uk.md) , [Template:Drawing Tools navi/uk](Template:Drawing_Tools_navi/uk.md) , [Template:FEM Tools navi/uk](Template:FEM_Tools_navi/uk.md) , [Template:Mesh Tools navi/uk](Template:Mesh_Tools_navi/uk.md) , [Template:OpenSCAD Tools navi/uk](Template:OpenSCAD_Tools_navi/uk.md) , [Template:Part Tools navi/uk](Template:Part_Tools_navi/uk.md) , [Template:PartDesign Tools navi/uk](Template:PartDesign_Tools_navi/uk.md) , [Template:Path Tools navi/uk](Template:Path_Tools_navi/uk.md) , [Template:Plot Tools navi/uk](Template:Plot_Tools_navi/uk.md) , [Template:Raytracing Tools navi/uk](Template:Raytracing_Tools_navi/uk.md) , [Template:Robot Tools navi/uk](Template:Robot_Tools_navi/uk.md) , [Template:Ship Tools navi/uk](Template:Ship_Tools_navi/uk.md) , [Template:Sketcher Tools navi/uk](Template:Sketcher_Tools_navi/uk.md) [Category:Template/uk](Category:Template/uk.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/uk diff --git a/wiki/translations/uk/Category:Tutorials.md b/wiki/translations/uk/Category:Tutorials.md index 0965c28d7d..c182bad2b2 100644 --- a/wiki/translations/uk/Category:Tutorials.md +++ b/wiki/translations/uk/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials/uk](Offsite_tutorials/uk.md) and [Video tut [Arch tutorial/uk](Arch_tutorial/uk.md) , [Template:TutorialInfo/uk](Template:TutorialInfo/uk.md) , [Tutorials/uk](Tutorials/uk.md) [Category:Categories/uk](Category:Categories/uk.md) + +--- +[documentation index](../README.md) > Category:Tutorials/uk diff --git a/wiki/translations/uk/Category:User_Documentation.md b/wiki/translations/uk/Category:User_Documentation.md index 7c11467a4f..a822c5abc7 100644 --- a/wiki/translations/uk/Category:User_Documentation.md +++ b/wiki/translations/uk/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [About FreeCAD/uk](About_FreeCAD/uk.md) , [Arch Axis/uk](Arch_Axis/uk.md) , [Arch Building/uk](Arch_Building/uk.md) , [Arch Equipment/uk](Arch_Equipment/uk.md) , [Arch Floor/uk](Arch_Floor/uk.md) , [Arch Frame/uk](Arch_Frame/uk.md) , [Arch Panel/uk](Arch_Panel/uk.md) , [Arch Rebar/uk](Arch_Rebar/uk.md) , [Arch Roof/uk](Arch_Roof/uk.md) , [Arch SectionPlane/uk](Arch_SectionPlane/uk.md) , [Arch Site/uk](Arch_Site/uk.md) , [Arch Space/uk](Arch_Space/uk.md) , [Arch Stairs/uk](Arch_Stairs/uk.md) , [Arch Structure/uk](Arch_Structure/uk.md) , [Arch tutorial/uk](Arch_tutorial/uk.md) , [Arch Wall/uk](Arch_Wall/uk.md) , [Arch Window/uk](Arch_Window/uk.md) , [Arch Workbench/uk](Arch_Workbench/uk.md) , [Document structure/uk](Document_structure/uk.md) , [Draft Workbench/uk](Draft_Workbench/uk.md) , [Drawing Workbench/uk](Drawing_Workbench/uk.md) , [Feature list/uk](Feature_list/uk.md) , [Getting started/uk](Getting_started/uk.md) , [Template:GuiCommand/uk](Template:GuiCommand/uk.md) , [Help FreeCAD/uk](Help_FreeCAD/uk.md) , [Image Workbench/uk](Image_Workbench/uk.md) , [Installing on Linux/uk](Installing_on_Linux/uk.md) , [Installing on Mac/uk](Installing_on_Mac/uk.md) , [Installing on Windows/uk](Installing_on_Windows/uk.md) , [Interface Customization/uk](Interface_Customization/uk.md) , [Localisation/uk](Localisation/uk.md) , [Main Page/uk](Main_Page/uk.md) , [Mesh Workbench/uk](Mesh_Workbench/uk.md) , [Mouse navigation/uk](Mouse_navigation/uk.md) , [Offsite tutorials/uk](Offsite_tutorials/uk.md) , [Online Help Startpage/uk](Online_Help_Startpage/uk.md) , [Online Help Toc/uk](Online_Help_Toc/uk.md) , [Part Module/uk](Part_Module/uk.md) , [PartDesign Workbench/uk](PartDesign_Workbench/uk.md) , [Preferences Editor/uk](Preferences_Editor/uk.md) , [Property editor/uk](Property_editor/uk.md) , [Raytracing Workbench/uk](Raytracing_Workbench/uk.md) , [Robot Workbench/uk](Robot_Workbench/uk.md) , [Ship Workbench/uk](Ship_Workbench/uk.md) , [Sketcher Workbench/uk](Sketcher_Workbench/uk.md) , [Standard Menu/uk](Standard_Menu/uk.md) , [Surface Workbench/uk](Surface_Workbench/uk.md) , [TechDraw Workbench/uk](TechDraw_Workbench/uk.md) , [Template:TutorialInfo/uk](Template:TutorialInfo/uk.md) , [Tutorials/uk](Tutorials/uk.md) , [User hub/uk](User_hub/uk.md) , [Video tutorials/uk](Video_tutorials/uk.md) , [Workbenches/uk](Workbenches/uk.md) , , , , [Category:Documentation/uk](Category:Documentation/uk.md) [Category:Arch/uk](Category:Arch/uk.md) [Category:BIM/uk](Category:BIM/uk.md) [Category:Draft/uk](Category:Draft/uk.md) [Category:Workbenches/uk](Category:Workbenches/uk.md) + +--- +[documentation index](../README.md) > Category:User Documentation/uk diff --git a/wiki/translations/uk/Category:Workbenches.md b/wiki/translations/uk/Category:Workbenches.md index 31545d5452..55dbfbbdec 100644 --- a/wiki/translations/uk/Category:Workbenches.md +++ b/wiki/translations/uk/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/uk](Arch_Workbench/uk.md) , [Draft Workbench/uk](Draft_Workbench/uk.md) , [Image Workbench/uk](Image_Workbench/uk.md) , [Mesh Workbench/uk](Mesh_Workbench/uk.md) , [Part Module/uk](Part_Module/uk.md) , [PartDesign Workbench/uk](PartDesign_Workbench/uk.md) , [Raytracing Workbench/uk](Raytracing_Workbench/uk.md) , [Robot Workbench/uk](Robot_Workbench/uk.md) , [Sketcher Workbench/uk](Sketcher_Workbench/uk.md) , [Surface Workbench/uk](Surface_Workbench/uk.md) , [TechDraw Workbench/uk](TechDraw_Workbench/uk.md) , [Workbenches/uk](Workbenches/uk.md) , , , , , , , , , , , , , , , , , [Category:User Documentation/uk](Category:User_Documentation/uk.md) [Category:Draft/uk](Category:Draft/uk.md) [Category:External Workbenches/uk](Category:External_Workbenches/uk.md) [Category:FEM/uk](Category:FEM/uk.md) [Category:Image/uk](Category:Image/uk.md) [Category:Mesh/uk](Category:Mesh/uk.md) [Category:OpenSCAD/uk](Category:OpenSCAD/uk.md) [Category:Part/uk](Category:Part/uk.md) [Category:PartDesign/uk](Category:PartDesign/uk.md) [Category:Path/uk](Category:Path/uk.md) [Category:Plot/uk](Category:Plot/uk.md) [Category:Points/uk](Category:Points/uk.md) [Category:Raytracing/uk](Category:Raytracing/uk.md) [Category:Robot/uk](Category:Robot/uk.md) [Category:Ship/uk](Category:Ship/uk.md) [Category:Sketcher/uk](Category:Sketcher/uk.md) [Category:Surface/uk](Category:Surface/uk.md) [Category:TechDraw/uk](Category:TechDraw/uk.md) + +--- +[documentation index](../README.md) > Category:Workbenches/uk diff --git a/wiki/translations/uk/Document_structure.md b/wiki/translations/uk/Document_structure.md index 1782c35802..5415f6d005 100644 --- a/wiki/translations/uk/Document_structure.md +++ b/wiki/translations/uk/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/uk - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) A FreeCAD document contains all the objects of your scene. It can contain groups, and objects made with any workbench. You can therefore switch between workbenches, and still work on the same document. The document is what gets saved to disk when you save your work. You can also open several documents at the same time in FreeCAD, and open several views of the same document. @@ -42,8 +36,5 @@ FreeCADGui.ActiveDocument.Blob FreeCADGui.ActiveDocument.ActiveView ``` Will return the current view - - - - - +--- +[documentation index](../README.md) > Document structure/uk diff --git a/wiki/translations/uk/Draft_Module.md b/wiki/translations/uk/Draft_Module.md index 12824b15e4..2d23a46428 100644 --- a/wiki/translations/uk/Draft_Module.md +++ b/wiki/translations/uk/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/uk 1. REDIRECT [Draft\_Workbench/uk](Draft_Workbench/uk.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/uk diff --git a/wiki/translations/uk/Draft_Workbench.md b/wiki/translations/uk/Draft_Workbench.md index 7838da0842..d186b2a6d7 100644 --- a/wiki/translations/uk/Draft_Workbench.md +++ b/wiki/translations/uk/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/uk - - - - - -Draft workbench icon +# Draft workbench icon Draft Workbench/uk {{TOCright}} @@ -353,3 +347,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/uk diff --git a/wiki/translations/uk/Drawing_Module.md b/wiki/translations/uk/Drawing_Module.md index f11c135fed..915cf796f0 100644 --- a/wiki/translations/uk/Drawing_Module.md +++ b/wiki/translations/uk/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/uk 1. REDIRECT [Drawing\_Workbench/uk](Drawing_Workbench/uk.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/uk diff --git a/wiki/translations/uk/Drawing_Workbench.md b/wiki/translations/uk/Drawing_Workbench.md index ce2b67fe87..2ede858876 100644 --- a/wiki/translations/uk/Drawing_Workbench.md +++ b/wiki/translations/uk/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/uk - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** Drawing workbench icon @@ -84,3 +81,6 @@ Some notes on the programming side of the drawing module will be added to the [D }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/uk diff --git a/wiki/translations/uk/Feature_list.md b/wiki/translations/uk/Feature_list.md index 8a10980bc8..b7922a8c93 100644 --- a/wiki/translations/uk/Feature_list.md +++ b/wiki/translations/uk/Feature_list.md @@ -1,6 +1,4 @@ # Feature list/uk - - This is an extensive, but not complete, list of features which FreeCAD implements. If you want to look into the future see the [Development roadmap](Development_roadmap.md) for a quick overview of what\'s coming next. Also, the [Screenshots](Screenshots.md) are a nice place to go. @@ -100,3 +98,6 @@ Power users have created various custom [external workbenches](external_workbenc [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/uk diff --git a/wiki/translations/uk/Getting_started.md b/wiki/translations/uk/Getting_started.md index e202156889..0d9906b1e9 100644 --- a/wiki/translations/uk/Getting_started.md +++ b/wiki/translations/uk/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/uk - - - - - - {{TOCright}} ## Foreword @@ -198,3 +192,6 @@ And finally, one of the most powerful features of FreeCAD is the [scripting](scr [Category:User Documentation/uk](Category:User_Documentation/uk.md) + +--- +[documentation index](../README.md) > Getting started/uk diff --git a/wiki/translations/uk/Help_FreeCAD.md b/wiki/translations/uk/Help_FreeCAD.md index 9e7fdd7b70..db541c2e11 100644 --- a/wiki/translations/uk/Help_FreeCAD.md +++ b/wiki/translations/uk/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/uk - - ## Introduction @@ -87,3 +85,6 @@ Writing code for FreeCAD is not hard, and you don\'t need any permission, you ca [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command Reference]] page lists and documents all of the FreeCAD ](Category:Command Reference]] page lists and documents all of the FreeCAD .md) > Help FreeCAD/uk diff --git a/wiki/translations/uk/Image_Module.md b/wiki/translations/uk/Image_Module.md index a8dd39b8d2..63409f7c61 100644 --- a/wiki/translations/uk/Image_Module.md +++ b/wiki/translations/uk/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/uk 1. REDIRECT [Image\_Workbench/uk](Image_Workbench/uk.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/uk diff --git a/wiki/translations/uk/Image_Workbench.md b/wiki/translations/uk/Image_Workbench.md index 5c773e187d..44cc40a6d9 100644 --- a/wiki/translations/uk/Image_Workbench.md +++ b/wiki/translations/uk/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/uk - - -Image workbench icon +# Image workbench icon Image Workbench/uk ## Introduction @@ -39,3 +36,6 @@ The offset of the image can be set during import, or changed later through its p }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/uk diff --git a/wiki/translations/uk/Install_on_Linux.md b/wiki/translations/uk/Install_on_Linux.md index bffa113884..90eecbc153 100644 --- a/wiki/translations/uk/Install_on_Linux.md +++ b/wiki/translations/uk/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/uk 1. REDIRECT [Installing\_on\_Linux/uk](Installing_on_Linux/uk.md) + +--- +[documentation index](../README.md) > Install on Linux/uk diff --git a/wiki/translations/uk/Install_on_Mac.md b/wiki/translations/uk/Install_on_Mac.md index 9d3a37e406..a0d330a3fb 100644 --- a/wiki/translations/uk/Install_on_Mac.md +++ b/wiki/translations/uk/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/uk 1. REDIRECT [Installing\_on\_Mac/uk](Installing_on_Mac/uk.md) + +--- +[documentation index](../README.md) > Install on Mac/uk diff --git a/wiki/translations/uk/Install_on_Unix.md b/wiki/translations/uk/Install_on_Unix.md index 1b428a9a1a..25f5be6995 100644 --- a/wiki/translations/uk/Install_on_Unix.md +++ b/wiki/translations/uk/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/uk 1. REDIRECT [Installing\_on\_Linux/uk](Installing_on_Linux/uk.md) + +--- +[documentation index](../README.md) > Install on Unix/uk diff --git a/wiki/translations/uk/Install_on_Windows.md b/wiki/translations/uk/Install_on_Windows.md index be1b661732..7c3ccffb83 100644 --- a/wiki/translations/uk/Install_on_Windows.md +++ b/wiki/translations/uk/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/uk 1. REDIRECT [Installing\_on\_Windows/uk](Installing_on_Windows/uk.md) + +--- +[documentation index](../README.md) > Install on Windows/uk diff --git a/wiki/translations/uk/Installing_on_Linux.md b/wiki/translations/uk/Installing_on_Linux.md index 67f143eeb1..e69987943c 100644 --- a/wiki/translations/uk/Installing_on_Linux.md +++ b/wiki/translations/uk/Installing_on_Linux.md @@ -1,9 +1,4 @@ # Installing on Linux/uk - - - - - ## Overview @@ -377,3 +372,6 @@ Once you\'ve got FreeCAD installed, it\'s time to [get started](Getting_started. [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/uk diff --git a/wiki/translations/uk/Installing_on_Mac.md b/wiki/translations/uk/Installing_on_Mac.md index 331e6d65ae..1e7c90862a 100644 --- a/wiki/translations/uk/Installing_on_Mac.md +++ b/wiki/translations/uk/Installing_on_Mac.md @@ -1,9 +1,4 @@ # Installing on Mac/uk - - - - - FreeCAD can be installed on macOS from a .dmg package which you can drag and drop into your Applications folder: @@ -50,8 +45,5 @@ There currently isn\'t an uninstaller for FreeCAD installed with dmg package. To If you installed FreeCAD with homebrew simply use the `brew uninstall freecad` command. That\'s it. - - - - - +--- +[documentation index](../README.md) > Installing on Mac/uk diff --git a/wiki/translations/uk/Installing_on_Windows.md b/wiki/translations/uk/Installing_on_Windows.md index fdb28b4336..a26ede705c 100644 --- a/wiki/translations/uk/Installing_on_Windows.md +++ b/wiki/translations/uk/Installing_on_Windows.md @@ -1,9 +1,4 @@ # Installing on Windows/uk - - - - - You can install FreeCAD on Windows by downloading one of the installers below: @@ -184,8 +179,5 @@ msiexec /i Y:\\software\\FreeCAD.msi FreeCAD is running, but it has been reported that the OpenGL display does not work, like with other programs running under [Wine](wikipedia:Wine_(software).md) i.e. Google [SketchUp](wikipedia:SketchUp.md). - - - - - +--- +[documentation index](../README.md) > Installing on Windows/uk diff --git a/wiki/translations/uk/Interface_Customization.md b/wiki/translations/uk/Interface_Customization.md index 7e2b3184c2..e4c05ded13 100644 --- a/wiki/translations/uk/Interface_Customization.md +++ b/wiki/translations/uk/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/uk - - - - - - {{TOCright}} ## Introduction @@ -285,4 +279,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/uk diff --git a/wiki/translations/uk/List_of_Commands.md b/wiki/translations/uk/List_of_Commands.md index 4bf8c486a2..9d7177ecc0 100644 --- a/wiki/translations/uk/List_of_Commands.md +++ b/wiki/translations/uk/List_of_Commands.md @@ -1,2 +1,5 @@ # List of Commands/uk 1. REDIRECT [:Category:Command Reference/uk](:Category:Command_Reference/uk.md) + +--- +[documentation index](../README.md) > List of Commands/uk diff --git a/wiki/translations/uk/Localisation.md b/wiki/translations/uk/Localisation.md index 0d822c023e..5bc70e1a5a 100644 --- a/wiki/translations/uk/Localisation.md +++ b/wiki/translations/uk/Localisation.md @@ -1,10 +1,4 @@ # Localisation/uk - - - - - - {{TOCright}} ## Overview @@ -239,3 +233,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/uk diff --git a/wiki/translations/uk/Main_Page.md b/wiki/translations/uk/Main_Page.md index 08cb8b2b98..8958a464fb 100644 --- a/wiki/translations/uk/Main_Page.md +++ b/wiki/translations/uk/Main_Page.md @@ -1,7 +1,4 @@ # Main Page/uk - - -
Це документація Вікі [FreeCAD](http://www.freecadweb.org). Інформація, що міститься тут те, що формує автономну документацію яка постачається безпосердньо з FreeCAD. У вас є два основних способи, щоб переглядати документацію: досліджувати досвід користувачів, або, слідувати посібнику. Це не скінчений документ. Ця документація створюється спільнотою користувачів і розробників FreeCAD. Якщо Ви виявите невірну або відсутню інформацію, будь ласка, [ Допомога Допоможіть FreeCAD ](Help_FreeCAD/uk.md)! @@ -98,3 +95,6 @@ FreeCAD може бути зібрано з використанням CMake. П [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/uk diff --git a/wiki/translations/uk/Mesh_Module.md b/wiki/translations/uk/Mesh_Module.md index 3c60f20f86..dc31a6adda 100644 --- a/wiki/translations/uk/Mesh_Module.md +++ b/wiki/translations/uk/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/uk 1. REDIRECT [Mesh Workbench/uk](Mesh_Workbench/uk.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/uk diff --git a/wiki/translations/uk/Mesh_Workbench.md b/wiki/translations/uk/Mesh_Workbench.md index 030c9ac504..d547359043 100644 --- a/wiki/translations/uk/Mesh_Workbench.md +++ b/wiki/translations/uk/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/uk - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench/uk {{TOCright}} @@ -111,3 +105,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/uk diff --git a/wiki/translations/uk/Mouse_Model.md b/wiki/translations/uk/Mouse_Model.md index 270bfe25c9..4c16843295 100644 --- a/wiki/translations/uk/Mouse_Model.md +++ b/wiki/translations/uk/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/uk 1. REDIRECT [Mouse\_navigation/uk](Mouse_navigation/uk.md) + +--- +[documentation index](../README.md) > Mouse Model/uk diff --git a/wiki/translations/uk/Mouse_navigation.md b/wiki/translations/uk/Mouse_navigation.md index b45445d193..5d916fc98e 100644 --- a/wiki/translations/uk/Mouse_navigation.md +++ b/wiki/translations/uk/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/uk - - - - - - {{TOCright}} ## Overview @@ -326,8 +320,5 @@ On MacBooks with a trackpad the Gesture navigation works very well, but the gest The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mouse_navigation_option_to_FreeCAD.md) orients developers who want to develop a custom mouse navigation option. Familiarity with the C++ syntax is required. - - - - - +--- +[documentation index](../README.md) > Mouse navigation/uk diff --git a/wiki/translations/uk/Offsite_tutorials.md b/wiki/translations/uk/Offsite_tutorials.md index 4f5993e7cb..6ac984052d 100644 --- a/wiki/translations/uk/Offsite_tutorials.md +++ b/wiki/translations/uk/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/uk - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** This page lists FreeCAD tutorials found on other sites on the web. @@ -18,4 +18,7 @@ This page lists FreeCAD tutorials found on other sites on the web. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/uk diff --git a/wiki/translations/uk/Online_Help_Startpage.md b/wiki/translations/uk/Online_Help_Startpage.md index 4af4c669ab..db6eff7192 100644 --- a/wiki/translations/uk/Online_Help_Startpage.md +++ b/wiki/translations/uk/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/uk - - ![150](images/Crystal_Clear_app_tutorials.png ) ## Welcome to the FreeCAD on-line help @@ -22,3 +20,6 @@ As you may have experienced sometimes, programmers are really bad help writers! [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/uk diff --git a/wiki/translations/uk/Online_Help_Toc.md b/wiki/translations/uk/Online_Help_Toc.md index cd0bd276bd..4708f7886a 100644 --- a/wiki/translations/uk/Online_Help_Toc.md +++ b/wiki/translations/uk/Online_Help_Toc.md @@ -1,7 +1,4 @@ # Online Help Toc/uk - - -
Це інтернет версия системи допомоги в FreeCAD. Посилання на статті автоматично додаються до файлу FreeCAD.chm за допомогою модуля wiki2chm.py. Ви знайдете цей модуль в src/Tools/wiki2chm.py. Також доступна версія для друку даного [посібника](Manual/uk.md). @@ -154,3 +151,6 @@ There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction. [Category:Documentation/uk](Category:Documentation/uk.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/uk diff --git a/wiki/translations/uk/PartDesign_Legacy.md b/wiki/translations/uk/PartDesign_Legacy.md index d0a328d126..d8d2f983e7 100644 --- a/wiki/translations/uk/PartDesign_Legacy.md +++ b/wiki/translations/uk/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/uk 1. REDIRECT [PartDesign\_Workbench/uk](PartDesign_Workbench/uk.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/uk diff --git a/wiki/translations/uk/PartDesign_Workbench.md b/wiki/translations/uk/PartDesign_Workbench.md index ac5c1f709b..0a55773c2c 100644 --- a/wiki/translations/uk/PartDesign_Workbench.md +++ b/wiki/translations/uk/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/uk - - -PartDesign workbench icon +# PartDesign workbench icon PartDesign Workbench/uk {{TOCright}} @@ -217,3 +214,6 @@ Some additional functionality found in the Part Design menu: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/uk diff --git a/wiki/translations/uk/Part_Module.md b/wiki/translations/uk/Part_Module.md index b72995ae0d..054939a7d0 100644 --- a/wiki/translations/uk/Part_Module.md +++ b/wiki/translations/uk/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/uk - - - - - -Part workbench icon +# Part workbench icon Part Module/uk {{TOCright}} @@ -219,3 +213,6 @@ See [Part scripting](Part_scripting.md). [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/uk diff --git a/wiki/translations/uk/Part_Workbench.md b/wiki/translations/uk/Part_Workbench.md index 36e6d522cc..a63e563c8e 100644 --- a/wiki/translations/uk/Part_Workbench.md +++ b/wiki/translations/uk/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/uk 1. REDIRECT [Part\_Module/uk](Part_Module/uk.md) + +--- +[documentation index](../README.md) > Part Workbench/uk diff --git a/wiki/translations/uk/Preferences_Editor.md b/wiki/translations/uk/Preferences_Editor.md index 6e1afca5e2..5fc5305ebf 100644 --- a/wiki/translations/uk/Preferences_Editor.md +++ b/wiki/translations/uk/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/uk - - - - - - {{TOCright}} ## Introduction @@ -691,3 +685,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/uk diff --git a/wiki/translations/uk/Property_editor.md b/wiki/translations/uk/Property_editor.md index f77754cd0c..a9832f6a35 100644 --- a/wiki/translations/uk/Property_editor.md +++ b/wiki/translations/uk/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/uk - - - - - - {{TOCright}} ## Introduction @@ -382,4 +376,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/uk diff --git a/wiki/translations/uk/Ray_Tracing_Workbench.md b/wiki/translations/uk/Ray_Tracing_Workbench.md index 31fbc613e3..f0533d2705 100644 --- a/wiki/translations/uk/Ray_Tracing_Workbench.md +++ b/wiki/translations/uk/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/uk 1. REDIRECT [Raytracing\_Workbench/uk](Raytracing_Workbench/uk.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/uk diff --git a/wiki/translations/uk/Raytracing_Module.md b/wiki/translations/uk/Raytracing_Module.md index da30892911..6776423179 100644 --- a/wiki/translations/uk/Raytracing_Module.md +++ b/wiki/translations/uk/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/uk 1. REDIRECT [Raytracing\_Workbench/uk](Raytracing_Workbench/uk.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/uk diff --git a/wiki/translations/uk/Raytracing_Workbench.md b/wiki/translations/uk/Raytracing_Workbench.md index a24cd9179f..23bf4d96a0 100644 --- a/wiki/translations/uk/Raytracing_Workbench.md +++ b/wiki/translations/uk/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/uk - - - **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. Nevertheless, the information in this page is generally useful for the new workbench, as both modules work basically in the same way. @@ -149,3 +146,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/uk diff --git a/wiki/translations/uk/Robot_Module.md b/wiki/translations/uk/Robot_Module.md index 41413fb430..880c249cb9 100644 --- a/wiki/translations/uk/Robot_Module.md +++ b/wiki/translations/uk/Robot_Module.md @@ -1,2 +1,5 @@ # Robot Module/uk 1. REDIRECT [Robot Workbench/uk](Robot_Workbench/uk.md) + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot Module/uk diff --git a/wiki/translations/uk/Robot_Workbench.md b/wiki/translations/uk/Robot_Workbench.md index a5aef1b7a1..40022cf8c3 100644 --- a/wiki/translations/uk/Robot_Workbench.md +++ b/wiki/translations/uk/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/uk - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. @@ -81,3 +75,6 @@ See the [Robot API example](Robot_API_example.md) for a description of the funct }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/uk diff --git a/wiki/translations/uk/Ship_Workbench.md b/wiki/translations/uk/Ship_Workbench.md index a7309d88e8..fb5b217ba1 100644 --- a/wiki/translations/uk/Ship_Workbench.md +++ b/wiki/translations/uk/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/uk - - -Ship workbench icon +# Ship workbench icon Ship Workbench/uk {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/uk diff --git a/wiki/translations/uk/Sketcher_Workbench.md b/wiki/translations/uk/Sketcher_Workbench.md index 433dd6f5f9..0f51eecb91 100644 --- a/wiki/translations/uk/Sketcher_Workbench.md +++ b/wiki/translations/uk/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/uk - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/uk {{TOCright}} @@ -319,3 +313,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/uk diff --git a/wiki/translations/uk/Standard_Menu.md b/wiki/translations/uk/Standard_Menu.md index 24ad35dcda..297b6aaeae 100644 --- a/wiki/translations/uk/Standard_Menu.md +++ b/wiki/translations/uk/Standard_Menu.md @@ -1,5 +1,5 @@ # Standard Menu/uk - {{TOCright}} +{{TOCright}} ## Introduction @@ -47,4 +47,7 @@ The standard menu is composed of 7 sub-menus: {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Standard Menu/uk diff --git a/wiki/translations/uk/Std_InterfaceCustomization.md b/wiki/translations/uk/Std_InterfaceCustomization.md index 7d8906a840..a635aa31f4 100644 --- a/wiki/translations/uk/Std_InterfaceCustomization.md +++ b/wiki/translations/uk/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/uk 1. REDIRECT [Interface\_Customization/uk](Interface_Customization/uk.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/uk diff --git a/wiki/translations/uk/Surface_Module.md b/wiki/translations/uk/Surface_Module.md index a883063118..d6f07b8b15 100644 --- a/wiki/translations/uk/Surface_Module.md +++ b/wiki/translations/uk/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/uk 1. REDIRECT [Surface\_Workbench/uk](Surface_Workbench/uk.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/uk diff --git a/wiki/translations/uk/Surface_Workbench.md b/wiki/translations/uk/Surface_Workbench.md index feb8e6f4d3..b19627dc7e 100644 --- a/wiki/translations/uk/Surface_Workbench.md +++ b/wiki/translations/uk/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/uk - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/uk {{TOCright}} @@ -57,3 +51,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/uk diff --git a/wiki/translations/uk/TechDraw_Module.md b/wiki/translations/uk/TechDraw_Module.md index 64b009d12e..b9c522ab62 100644 --- a/wiki/translations/uk/TechDraw_Module.md +++ b/wiki/translations/uk/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/uk 1. REDIRECT [TechDraw\_Workbench/uk](TechDraw_Workbench/uk.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/uk diff --git a/wiki/translations/uk/TechDraw_Workbench.md b/wiki/translations/uk/TechDraw_Workbench.md index 72c512bbb9..33e415b7cb 100644 --- a/wiki/translations/uk/TechDraw_Workbench.md +++ b/wiki/translations/uk/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/uk - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/uk ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/uk diff --git a/wiki/translations/uk/Tutorials.md b/wiki/translations/uk/Tutorials.md index d573823d38..d6ef8e964d 100644 --- a/wiki/translations/uk/Tutorials.md +++ b/wiki/translations/uk/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/uk - - - - - - {{TOCright}} This page presents a selection of high quality written tutorials. A complete, unsorted list of tutorials can be found in [:Category:Tutorials](:Category:Tutorials.md), a complete and sortable one can be found in the [table below](Tutorials#Tutorials_-_Comprehensive_list.md). @@ -283,3 +277,6 @@ Here are listed all the tutorials that are not in the manual **regardless of the [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials]], a complete and sortable one can be found in the ](Category:Tutorials]], a complete and sortable one can be found in the .md) > Tutorials/uk diff --git a/wiki/translations/uk/User_hub.md b/wiki/translations/uk/User_hub.md index b8d880083d..9989ddb6bc 100644 --- a/wiki/translations/uk/User_hub.md +++ b/wiki/translations/uk/User_hub.md @@ -1,5 +1,4 @@ -# User hub/uk - +# User hub/uk ------------------------------------------------------------------------ @@ -122,3 +121,6 @@ This is the official FreeCAD online help. Please note that the whole online help [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/uk diff --git a/wiki/translations/uk/Video_tutorials.md b/wiki/translations/uk/Video_tutorials.md index dcb1553404..d00aaa183e 100644 --- a/wiki/translations/uk/Video_tutorials.md +++ b/wiki/translations/uk/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials/uk - - - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** This page presents a selection of video tutorials made by FreeCAD users and developers. Visit the [Tutorials and videos](https://forum.freecadweb.org/viewforum.php?f=36) subforum for more links. A useful source of video tutorials is [YouTube](https://YouTube.com). @@ -95,3 +92,6 @@ For more see [Video tutorials obsolete](Video_tutorials_obsolete.md). }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Video tutorials/uk diff --git a/wiki/translations/uk/Workbenches.md b/wiki/translations/uk/Workbenches.md index f50ac5fe7b..4bab5471ee 100644 --- a/wiki/translations/uk/Workbenches.md +++ b/wiki/translations/uk/Workbenches.md @@ -1,9 +1,4 @@ # Workbenches/uk - - - - - FreeCAD, like many modern design applications such as [Revit](wikipedia:Revit.md) or [CATIA](wikipedia:CATIA.md), is based on the concept of [Workbench](wikipedia:Workbench.md). 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. @@ -83,3 +78,6 @@ New workbenches are always in development, stay tuned! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/uk diff --git a/wiki/translations/update/Macro_Corner_shapes_wizard.md b/wiki/translations/update/Macro_Corner_shapes_wizard.md index 3542390b29..4e3127e06e 100644 --- a/wiki/translations/update/Macro_Corner_shapes_wizard.md +++ b/wiki/translations/update/Macro_Corner_shapes_wizard.md @@ -1,5 +1,5 @@ # Macro Corner shapes wizard/update - {{Macro +{{Macro |Icon=Macro_Corner_shapes_wizard.png |Name=Corner shapes wizard/update |Description=This macro is a complete application, it pops up a dialog asking for the dimensions of your corner piece, then creates the object in the document and creates a page view with top, front and lateral views of the piece.
This macro use the Drawing Workbench @@ -194,3 +194,6 @@ ToolBar Icon ![](images/Macro_Corner_shapes_wizard.png ) QtCore.QObject.connect(okbox, QtCore.SIGNAL("rejected()"), hide) QtCore.QMetaObject.connectSlotsByName(dialog) dialog.show() + +--- +[documentation index](../README.md) > Macro Corner shapes wizard/update diff --git a/wiki/translations/zh-cn/3D_input_devices.md b/wiki/translations/zh-cn/3D_input_devices.md index 46d21c4d43..1462fadd1c 100644 --- a/wiki/translations/zh-cn/3D_input_devices.md +++ b/wiki/translations/zh-cn/3D_input_devices.md @@ -1,5 +1,5 @@ # 3D input devices/zh-cn - FreeCAD 支持一些专业化的输入设备,例如 3D 鼠标。这样就能够使用户在三维空间中对对象进行旋转、转换以及缩放等操作。 +FreeCAD 支持一些专业化的输入设备,例如 3D 鼠标。这样就能够使用户在三维空间中对对象进行旋转、转换以及缩放等操作。 ## 支持的设备 @@ -13,3 +13,6 @@
[category:Documentation](category:Documentation.md) + +--- +[documentation index](../README.md) > 3D input devices/zh-cn diff --git a/wiki/translations/zh-cn/About_FreeCAD.md b/wiki/translations/zh-cn/About_FreeCAD.md index 48ff5d81b3..9f7a81bb3a 100644 --- a/wiki/translations/zh-cn/About_FreeCAD.md +++ b/wiki/translations/zh-cn/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/zh-cn - - - +# About FreeCAD/zh-cn
@@ -76,3 +73,6 @@ FreeCAD由整个社区热心开发人员及用户开发及维护(请看[贡献 [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/zh-cn diff --git a/wiki/translations/zh-cn/Arch_Add.md b/wiki/translations/zh-cn/Arch_Add.md index bcf5263b78..5a06b33cf0 100644 --- a/wiki/translations/zh-cn/Arch_Add.md +++ b/wiki/translations/zh-cn/Arch_Add.md @@ -6,6 +6,8 @@ SeeAlso:[Arch Remove](Arch_Remove.md) --- +# Arch Add/zh-cn +
@@ -126,8 +128,5 @@ FreeCAD.ActiveDocument.recompute()
- - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Add/zh-cn diff --git a/wiki/translations/zh-cn/Arch_Module.md b/wiki/translations/zh-cn/Arch_Module.md index 5af95ac37e..76b55ccb92 100644 --- a/wiki/translations/zh-cn/Arch_Module.md +++ b/wiki/translations/zh-cn/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/zh-cn 1. REDIRECT [Arch\_Workbench/zh-cn](Arch_Workbench/zh-cn.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/zh-cn diff --git a/wiki/translations/zh-cn/Arch_Preferences.md b/wiki/translations/zh-cn/Arch_Preferences.md index 49ccba6b21..caadf8968c 100644 --- a/wiki/translations/zh-cn/Arch_Preferences.md +++ b/wiki/translations/zh-cn/Arch_Preferences.md @@ -1,6 +1,4 @@ # Arch Preferences/zh-cn - - The preferences for the [Arch Workbench](Arch_Workbench.md) are found in the [Preferences Editor](Preferences_Editor.md), in the menu **Edit → Preferences → Arch**. There are two tabs: General settings, and Defaults. @@ -33,3 +31,6 @@ There are two tabs: General settings, and Defaults. [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Preferences/zh-cn diff --git a/wiki/translations/zh-cn/Arch_Remove.md b/wiki/translations/zh-cn/Arch_Remove.md index 0c3fb60002..7175a81812 100644 --- a/wiki/translations/zh-cn/Arch_Remove.md +++ b/wiki/translations/zh-cn/Arch_Remove.md @@ -7,6 +7,8 @@ SeeAlso:[[Arch Add/zh-cn]] --- +# Arch Remove/zh-cn +
@@ -120,8 +122,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Remove/zh-cn diff --git a/wiki/translations/zh-cn/Arch_Wall.md b/wiki/translations/zh-cn/Arch_Wall.md index d3cabcd0a1..7792f9e205 100644 --- a/wiki/translations/zh-cn/Arch_Wall.md +++ b/wiki/translations/zh-cn/Arch_Wall.md @@ -8,6 +8,8 @@ SeeAlso:[Arch Structure](Arch_Structure.md) --- +# Arch Wall/zh-cn + @@ -194,8 +196,5 @@ FreeCAD.ActiveDocument.recompute() - - - - - +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/zh-cn diff --git a/wiki/translations/zh-cn/Arch_Workbench.md b/wiki/translations/zh-cn/Arch_Workbench.md index 5170498a2d..c47123afe7 100644 --- a/wiki/translations/zh-cn/Arch_Workbench.md +++ b/wiki/translations/zh-cn/Arch_Workbench.md @@ -1,10 +1,4 @@ -# Arch Workbench/zh-cn - - - - - -Arch workbench icon +# Arch workbench icon Arch Workbench/zh-cn {{TOCright}} @@ -142,3 +136,6 @@ The developers of Draft, Arch, and BIM also collaborate with the greater [OSArch [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Assembly_project.md b/wiki/translations/zh-cn/Assembly_project.md index 40dee808aa..601cf88762 100644 --- a/wiki/translations/zh-cn/Assembly_project.md +++ b/wiki/translations/zh-cn/Assembly_project.md @@ -1,7 +1,4 @@ # Assembly project/zh-cn - - - ** This roadmap is probably obsolete. For more information see [Development roadmap](Development_roadmap.md).
If you are not involved with the development discussed here:
@@ -156,3 +153,6 @@ Interface to allow (external) (multi)physics simulation software to take control - \... [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Assembly project/zh-cn diff --git a/wiki/translations/zh-cn/Category:Addons.md b/wiki/translations/zh-cn/Category:Addons.md index b1f9ee4dc5..900ba99962 100644 --- a/wiki/translations/zh-cn/Category:Addons.md +++ b/wiki/translations/zh-cn/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/zh-cn - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [External workbenches/zh-cn](External_workbenches/zh-cn.md) , [Plot Module/zh-cn](Plot_Module/zh-cn.md) , [Ship Workbench/zh-cn](Ship_Workbench/zh-cn.md) , [WebTools Workbench/zh-cn](WebTools_Workbench/zh-cn.md) , , [Category:Categories](Category:Categories.md) [Category:External Workbenches/zh-cn](Category:External_Workbenches/zh-cn.md) [Category:Macros/zh-cn](Category:Macros/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Addons/zh-cn diff --git a/wiki/translations/zh-cn/Category:Administration.md b/wiki/translations/zh-cn/Category:Administration.md index 46037cab4a..25322b9c59 100644 --- a/wiki/translations/zh-cn/Category:Administration.md +++ b/wiki/translations/zh-cn/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/zh-cn](Template:Arch_Tools_navi/zh-cn.md) , [Template:Drawing Tools navi/zh-cn](Template:Drawing_Tools_navi/zh-cn.md) , [Template:FEM Tools navi/zh-cn](Template:FEM_Tools_navi/zh-cn.md) , [Template:Mesh Tools navi/zh-cn](Template:Mesh_Tools_navi/zh-cn.md) , [Template:OpenSCAD Tools navi/zh-cn](Template:OpenSCAD_Tools_navi/zh-cn.md) , [Template:Part Tools navi/zh-cn](Template:Part_Tools_navi/zh-cn.md) , [Template:PartDesign Tools navi/zh-cn](Template:PartDesign_Tools_navi/zh-cn.md) , [Template:Path Tools navi/zh-cn](Template:Path_Tools_navi/zh-cn.md) , [Template:Plot Tools navi/zh-cn](Template:Plot_Tools_navi/zh-cn.md) , [Template:PropertyData/zh-cn](Template:PropertyData/zh-cn.md) , [Template:PropertyView/zh-cn](Template:PropertyView/zh-cn.md) , [Template:Raytracing Tools navi/zh-cn](Template:Raytracing_Tools_navi/zh-cn.md) , [Template:Robot Tools navi/zh-cn](Template:Robot_Tools_navi/zh-cn.md) , [Template:Ship Tools navi/zh-cn](Template:Ship_Tools_navi/zh-cn.md) , [Template:Sketcher Tools navi/zh-cn](Template:Sketcher_Tools_navi/zh-cn.md) , [Tracker/zh-cn](Tracker/zh-cn.md) [Category:Categories/zh-cn](Category:Categories/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Administration/zh-cn diff --git a/wiki/translations/zh-cn/Category:Arch.md b/wiki/translations/zh-cn/Category:Arch.md index ff3fecd61e..f615027276 100644 --- a/wiki/translations/zh-cn/Category:Arch.md +++ b/wiki/translations/zh-cn/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Arch Add/zh-cn](Arch_Add/zh-cn.md) , [Arch Preferences/zh-cn](Arch_Preferences/zh-cn.md) , [Arch Remove/zh-cn](Arch_Remove/zh-cn.md) , [Template:Arch Tools navi/zh-cn](Template:Arch_Tools_navi/zh-cn.md) , [Arch Wall/zh-cn](Arch_Wall/zh-cn.md) , [Arch Workbench/zh-cn](Arch_Workbench/zh-cn.md) [Category:User Documentation/zh-cn](Category:User_Documentation/zh-cn.md) [Category:BIM/zh-cn](Category:BIM/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Arch/zh-cn diff --git a/wiki/translations/zh-cn/Category:BIM.md b/wiki/translations/zh-cn/Category:BIM.md index 6508ca68ae..2d7c98dd76 100644 --- a/wiki/translations/zh-cn/Category:BIM.md +++ b/wiki/translations/zh-cn/Category:BIM.md @@ -4,3 +4,6 @@ This category is for pages related to building information management (BIM). ### Contents: [Category:User Documentation/zh-cn](Category:User_Documentation/zh-cn.md) [Category:Arch/zh-cn](Category:Arch/zh-cn.md) + +--- +[documentation index](../README.md) > Category:BIM/zh-cn diff --git a/wiki/translations/zh-cn/Category:Base.md b/wiki/translations/zh-cn/Category:Base.md index c11bb6d69b..0c2e84a1d0 100644 --- a/wiki/translations/zh-cn/Category:Base.md +++ b/wiki/translations/zh-cn/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/zh-cn](Category:User_Documentation/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Base/zh-cn diff --git a/wiki/translations/zh-cn/Category:Categories.md b/wiki/translations/zh-cn/Category:Categories.md index ab24453e3c..e058fd05fa 100644 --- a/wiki/translations/zh-cn/Category:Categories.md +++ b/wiki/translations/zh-cn/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , , , , , , , [Category:Categories/zh-cn](Category:Categories/zh-cn.md) [Category:Addons/zh-cn](Category:Addons/zh-cn.md) [Category:Administration/zh-cn](Category:Administration/zh-cn.md) [Category:Categories/zh-cn](Category:Categories/zh-cn.md) [Category:Command Reference/zh-cn](Category:Command_Reference/zh-cn.md) [Category:Developer Documentation/zh-cn](Category:Developer_Documentation/zh-cn.md) [Category:Developer/zh-cn](Category:Developer/zh-cn.md) [Category:Documentation/zh-cn](Category:Documentation/zh-cn.md) [Category:Hubs/zh-cn](Category:Hubs/zh-cn.md) [Category:Macros/zh-cn](Category:Macros/zh-cn.md) [Category:News/zh-cn](Category:News/zh-cn.md) [Category:Python Code/zh-cn](Category:Python_Code/zh-cn.md) [Category:Roadmap/zh-cn](Category:Roadmap/zh-cn.md) [Category:Template/zh-cn](Category:Template/zh-cn.md) [Category:Tutorials/zh-cn](Category:Tutorials/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Categories/zh-cn diff --git a/wiki/translations/zh-cn/Category:Command_Reference.md b/wiki/translations/zh-cn/Category:Command_Reference.md index 335d570bb1..2ab0f26385 100644 --- a/wiki/translations/zh-cn/Category:Command_Reference.md +++ b/wiki/translations/zh-cn/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD [Command](Command.md). [Arch Add/zh-cn](Arch_Add/zh-cn.md) , [Arch Remove/zh-cn](Arch_Remove/zh-cn.md) , [Arch Wall/zh-cn](Arch_Wall/zh-cn.md) , [Draft Arc 3Points/zh-cn](Draft_Arc_3Points/zh-cn.md) , [Draft Arc/zh-cn](Draft_Arc/zh-cn.md) , [Draft Circle/zh-cn](Draft_Circle/zh-cn.md) , [Draft Ellipse/zh-cn](Draft_Ellipse/zh-cn.md) , [Draft Line/zh-cn](Draft_Line/zh-cn.md) , [Draft Snap Endpoint/zh-cn](Draft_Snap_Endpoint/zh-cn.md) , [Draft Snap Near/zh-cn](Draft_Snap_Near/zh-cn.md) , [Draft Snap Perpendicular/zh-cn](Draft_Snap_Perpendicular/zh-cn.md) , [Draft Wire/zh-cn](Draft_Wire/zh-cn.md) , [Template:GuiCommand/zh-cn](Template:GuiCommand/zh-cn.md) , [Image CreateImagePlane/zh-cn](Image_CreateImagePlane/zh-cn.md) , [Image Open/zh-cn](Image_Open/zh-cn.md) , [Image Scaling/zh-cn](Image_Scaling/zh-cn.md) , [Part Box/zh-cn](Part_Box/zh-cn.md) , [Part Builder/zh-cn](Part_Builder/zh-cn.md) , [Part Cone/zh-cn](Part_Cone/zh-cn.md) , [Part Cylinder/zh-cn](Part_Cylinder/zh-cn.md) , [Part Extrude/zh-cn](Part_Extrude/zh-cn.md) , [Part Primitives/zh-cn](Part_Primitives/zh-cn.md) , [Part Sphere/zh-cn](Part_Sphere/zh-cn.md) , [Part Torus/zh-cn](Part_Torus/zh-cn.md) , [Sketcher CompCreateArc/zh-cn](Sketcher_CompCreateArc/zh-cn.md) , [Sketcher CompCreateCircle/zh-cn](Sketcher_CompCreateCircle/zh-cn.md) , [Sketcher CompCreateConic/zh-cn](Sketcher_CompCreateConic/zh-cn.md) , [Sketcher Create3PointArc/zh-cn](Sketcher_Create3PointArc/zh-cn.md) , [Sketcher Create3PointCircle/zh-cn](Sketcher_Create3PointCircle/zh-cn.md) , [Sketcher CreateArc/zh-cn](Sketcher_CreateArc/zh-cn.md) , [Sketcher CreateCircle/zh-cn](Sketcher_CreateCircle/zh-cn.md) , [Sketcher CreateEllipseByCenter/zh-cn](Sketcher_CreateEllipseByCenter/zh-cn.md) , [Sketcher CreateLine/zh-cn](Sketcher_CreateLine/zh-cn.md) , [Sketcher CreatePoint/zh-cn](Sketcher_CreatePoint/zh-cn.md) , [Sketcher EditSketch/zh-cn](Sketcher_EditSketch/zh-cn.md) , [Sketcher LeaveSketch/zh-cn](Sketcher_LeaveSketch/zh-cn.md) , [Sketcher MapSketch/zh-cn](Sketcher_MapSketch/zh-cn.md) , [Sketcher MergeSketches/zh-cn](Sketcher_MergeSketches/zh-cn.md) , [Sketcher MirrorSketch/zh-cn](Sketcher_MirrorSketch/zh-cn.md) , [Sketcher NewSketch/zh-cn](Sketcher_NewSketch/zh-cn.md) , [Sketcher ReorientSketch/zh-cn](Sketcher_ReorientSketch/zh-cn.md) , [Sketcher ValidateSketch/zh-cn](Sketcher_ValidateSketch/zh-cn.md) , [Sketcher ViewSection/zh-cn](Sketcher_ViewSection/zh-cn.md) , [Sketcher ViewSketch/zh-cn](Sketcher_ViewSketch/zh-cn.md) [Category:Categories/zh-cn](Category:Categories/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Command Reference/zh-cn diff --git a/wiki/translations/zh-cn/Category:Common_Questions.md b/wiki/translations/zh-cn/Category:Common_Questions.md index 814e7673bb..ff313c11a1 100644 --- a/wiki/translations/zh-cn/Category:Common_Questions.md +++ b/wiki/translations/zh-cn/Category:Common_Questions.md @@ -4,3 +4,6 @@ This category has links to common questions on how to do something in FC. This i ### Contents: [Help FreeCAD/zh-cn](Help_FreeCAD/zh-cn.md) , [Installing on Linux/zh-cn](Installing_on_Linux/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Common Questions/zh-cn diff --git a/wiki/translations/zh-cn/Category:Developer.md b/wiki/translations/zh-cn/Category:Developer.md index 8b435d1300..dc40102087 100644 --- a/wiki/translations/zh-cn/Category:Developer.md +++ b/wiki/translations/zh-cn/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Compiling/zh-cn](Compiling/zh-cn.md) , [Contributors/zh-cn](Contributors/zh-cn.md) [Category:Categories/zh-cn](Category:Categories/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Developer/zh-cn diff --git a/wiki/translations/zh-cn/Category:Developer_Documentation.md b/wiki/translations/zh-cn/Category:Developer_Documentation.md index 2653242e4a..d4ad9fcfb4 100644 --- a/wiki/translations/zh-cn/Category:Developer_Documentation.md +++ b/wiki/translations/zh-cn/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Command/zh-cn](Command/zh-cn.md) , [Compiling/zh-cn](Compiling/zh-cn.md) , [Debugging/zh-cn](Debugging/zh-cn.md) , [Developer hub/zh-cn](Developer_hub/zh-cn.md) , [Embedding FreeCAD/zh-cn](Embedding_FreeCAD/zh-cn.md) , [FreeCAD Scripting Basics/zh-cn](FreeCAD_Scripting_Basics/zh-cn.md) , [Help FreeCAD/zh-cn](Help_FreeCAD/zh-cn.md) , [Installing on Linux/zh-cn](Installing_on_Linux/zh-cn.md) , [Introduction to Python/zh-cn](Introduction_to_Python/zh-cn.md) , [Licence/zh-cn](Licence/zh-cn.md) , [Macros/zh-cn](Macros/zh-cn.md) , [Mesh Scripting/zh-cn](Mesh_Scripting/zh-cn.md) , [Property/zh-cn](Property/zh-cn.md) , [Python scripting tutorial/zh-cn](Python_scripting_tutorial/zh-cn.md) , [Scripted objects/zh-cn](Scripted_objects/zh-cn.md) , [Source documentation/zh-cn](Source_documentation/zh-cn.md) , [Testing/zh-cn](Testing/zh-cn.md) , [The FreeCAD source code/zh-cn](The_FreeCAD_source_code/zh-cn.md) , [Topological data scripting/zh-cn](Topological_data_scripting/zh-cn.md) , [Tracker/zh-cn](Tracker/zh-cn.md) [Category:Documentation/zh-cn](Category:Documentation/zh-cn.md) [Category:Categories/zh-cn](Category:Categories/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/zh-cn diff --git a/wiki/translations/zh-cn/Category:Documentation.md b/wiki/translations/zh-cn/Category:Documentation.md index d64007890a..725b2ba7cc 100644 --- a/wiki/translations/zh-cn/Category:Documentation.md +++ b/wiki/translations/zh-cn/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [3D input devices/zh-cn](3D_input_devices/zh-cn.md) , [Help FreeCAD/zh-cn](Help_FreeCAD/zh-cn.md) , [Main Page/zh-cn](Main_Page/zh-cn.md) , [Online Help Toc/zh-cn](Online_Help_Toc/zh-cn.md) , [Release notes 0.18/zh-cn](Release_notes_0.18/zh-cn.md) , , , , [Category:Categories/zh-cn](Category:Categories/zh-cn.md) [Category:Developer Documentation/zh-cn](Category:Developer_Documentation/zh-cn.md) [Category:Poweruser Documentation/zh-cn](Category:Poweruser_Documentation/zh-cn.md) [Category:Screenshots/zh-cn](Category:Screenshots/zh-cn.md) [Category:User Documentation/zh-cn](Category:User_Documentation/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Documentation/zh-cn diff --git a/wiki/translations/zh-cn/Category:Draft.md b/wiki/translations/zh-cn/Category:Draft.md index aa421aadb1..4b90b4fc31 100644 --- a/wiki/translations/zh-cn/Category:Draft.md +++ b/wiki/translations/zh-cn/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/zh-cn\" and \"Work [Draft Arc 3Points/zh-cn](Draft_Arc_3Points/zh-cn.md) , [Draft Arc/zh-cn](Draft_Arc/zh-cn.md) , [Draft Circle/zh-cn](Draft_Circle/zh-cn.md) , [Draft Constrain/zh-cn](Draft_Constrain/zh-cn.md) , [Draft Ellipse/zh-cn](Draft_Ellipse/zh-cn.md) , [Draft Line/zh-cn](Draft_Line/zh-cn.md) , [Draft Pattern/zh-cn](Draft_Pattern/zh-cn.md) , [Draft Preferences/zh-cn](Draft_Preferences/zh-cn.md) , [Draft Snap Endpoint/zh-cn](Draft_Snap_Endpoint/zh-cn.md) , [Draft Snap Near/zh-cn](Draft_Snap_Near/zh-cn.md) , [Draft Snap Perpendicular/zh-cn](Draft_Snap_Perpendicular/zh-cn.md) , [Draft Snap/zh-cn](Draft_Snap/zh-cn.md) , [Draft Tray/zh-cn](Draft_Tray/zh-cn.md) , [Draft Wire/zh-cn](Draft_Wire/zh-cn.md) , [Draft Workbench/zh-cn](Draft_Workbench/zh-cn.md) , [Manual:Traditional 2D drafting/zh-cn](Manual:Traditional_2D_drafting/zh-cn.md) [Category:User Documentation/zh-cn](Category:User_Documentation/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Draft/zh-cn diff --git a/wiki/translations/zh-cn/Category:Drawing.md b/wiki/translations/zh-cn/Category:Drawing.md index dae5775f30..525d75b126 100644 --- a/wiki/translations/zh-cn/Category:Drawing.md +++ b/wiki/translations/zh-cn/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/zh-cn](Drawing_Workb [Template:Drawing Tools navi/zh-cn](Template:Drawing_Tools_navi/zh-cn.md) , [Drawing Workbench/zh-cn](Drawing_Workbench/zh-cn.md) [Category:Obsolete Workbenches/zh-cn](Category:Obsolete_Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Drawing/zh-cn diff --git a/wiki/translations/zh-cn/Category:External_Workbenches.md b/wiki/translations/zh-cn/Category:External_Workbenches.md index 7481a09df5..a94dc0d01d 100644 --- a/wiki/translations/zh-cn/Category:External_Workbenches.md +++ b/wiki/translations/zh-cn/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [External workbenches/zh-cn](External_workbenches/zh-cn.md) , [Plot Module/zh-cn](Plot_Module/zh-cn.md) , [Ship Workbench/zh-cn](Ship_Workbench/zh-cn.md) , [WebTools Workbench/zh-cn](WebTools_Workbench/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) [Category:Addons/zh-cn](Category:Addons/zh-cn.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/zh-cn diff --git a/wiki/translations/zh-cn/Category:FEM.md b/wiki/translations/zh-cn/Category:FEM.md index cc33a9d1b0..36593d24af 100644 --- a/wiki/translations/zh-cn/Category:FEM.md +++ b/wiki/translations/zh-cn/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/zh-cn](FEM_Workbench/zh- [Template:FEM Tools navi/zh-cn](Template:FEM_Tools_navi/zh-cn.md) , [FEM Workbench/zh-cn](FEM_Workbench/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:FEM/zh-cn diff --git a/wiki/translations/zh-cn/Category:File_Formats.md b/wiki/translations/zh-cn/Category:File_Formats.md index d92ba6a7de..37db91d080 100644 --- a/wiki/translations/zh-cn/Category:File_Formats.md +++ b/wiki/translations/zh-cn/Category:File_Formats.md @@ -4,3 +4,6 @@ This category collects pages about all the different file formats that FreeCAD i ### Contents: [Import Export/zh-cn](Import_Export/zh-cn.md) + +--- +[documentation index](../README.md) > Category:File Formats/zh-cn diff --git a/wiki/translations/zh-cn/Category:Glossary.md b/wiki/translations/zh-cn/Category:Glossary.md index 81dca74664..9df202f51a 100644 --- a/wiki/translations/zh-cn/Category:Glossary.md +++ b/wiki/translations/zh-cn/Category:Glossary.md @@ -4,3 +4,6 @@ This category tracks pages that explain definitions of words related to FreeCAD ### Contents: [Command/zh-cn](Command/zh-cn.md) , [Glossary/zh-cn](Glossary/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Glossary/zh-cn diff --git a/wiki/translations/zh-cn/Category:Hubs.md b/wiki/translations/zh-cn/Category:Hubs.md index 269fdc6f76..26b0a58e34 100644 --- a/wiki/translations/zh-cn/Category:Hubs.md +++ b/wiki/translations/zh-cn/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Developer hub/zh-cn](Developer_hub/zh-cn.md) , [Power users hub/zh-cn](Power_users_hub/zh-cn.md) , [User hub/zh-cn](User_hub/zh-cn.md) [Category:Categories/zh-cn](Category:Categories/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Hubs/zh-cn diff --git a/wiki/translations/zh-cn/Category:Image.md b/wiki/translations/zh-cn/Category:Image.md index 7f58cde21b..a317414279 100644 --- a/wiki/translations/zh-cn/Category:Image.md +++ b/wiki/translations/zh-cn/Category:Image.md @@ -6,3 +6,6 @@ This category lists pages related to the [Image Workbench/zh-cn](Image_Workbench [Image CreateImagePlane/zh-cn](Image_CreateImagePlane/zh-cn.md) , [Image Open/zh-cn](Image_Open/zh-cn.md) , [Image Scaling/zh-cn](Image_Scaling/zh-cn.md) , [Image Workbench/zh-cn](Image_Workbench/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Image/zh-cn diff --git a/wiki/translations/zh-cn/Category:Inspection.md b/wiki/translations/zh-cn/Category:Inspection.md index db690b4ed8..16ae3d3792 100644 --- a/wiki/translations/zh-cn/Category:Inspection.md +++ b/wiki/translations/zh-cn/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Inspection Workbench/zh-cn](Inspection_Workbench/zh-cn.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection/zh-cn diff --git a/wiki/translations/zh-cn/Category:Macros.md b/wiki/translations/zh-cn/Category:Macros.md index 40b81b4c4a..d2073e0c5d 100644 --- a/wiki/translations/zh-cn/Category:Macros.md +++ b/wiki/translations/zh-cn/Category:Macros.md @@ -6,3 +6,6 @@ This category contains macros to extend your FreeCAD installation with new funct [Macros/zh-cn](Macros/zh-cn.md) [Category:Addons](Category:Addons.md) [Category:User Documentation](Category:User_Documentation.md) [Category:Categories](Category:Categories.md) + +--- +[documentation index](../README.md) > Category:Macros/zh-cn diff --git a/wiki/translations/zh-cn/Category:Mesh.md b/wiki/translations/zh-cn/Category:Mesh.md index b4ffbc65b9..881e3ed3cb 100644 --- a/wiki/translations/zh-cn/Category:Mesh.md +++ b/wiki/translations/zh-cn/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/zh-cn](Mesh_Workbench/ [Manual:Preparing models for 3D printing/zh-cn](Manual:Preparing_models_for_3D_printing/zh-cn.md) , [Mesh Scripting/zh-cn](Mesh_Scripting/zh-cn.md) , [Template:Mesh Tools navi/zh-cn](Template:Mesh_Tools_navi/zh-cn.md) , [Mesh Workbench/zh-cn](Mesh_Workbench/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Mesh/zh-cn diff --git a/wiki/translations/zh-cn/Category:News.md b/wiki/translations/zh-cn/Category:News.md index 572327ad1b..99c68bb790 100644 --- a/wiki/translations/zh-cn/Category:News.md +++ b/wiki/translations/zh-cn/Category:News.md @@ -6,3 +6,6 @@ This category contains articles with news and messages about FreeCAD. [History/zh-cn](History/zh-cn.md) , [Release notes 0.18/zh-cn](Release_notes_0.18/zh-cn.md) [Category:Categories/zh-cn](Category:Categories/zh-cn.md) + +--- +[documentation index](../README.md) > Category:News/zh-cn diff --git a/wiki/translations/zh-cn/Category:Obsolete_Workbenches.md b/wiki/translations/zh-cn/Category:Obsolete_Workbenches.md index 93957472fd..cb17ae4206 100644 --- a/wiki/translations/zh-cn/Category:Obsolete_Workbenches.md +++ b/wiki/translations/zh-cn/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/zh-cn](Drawing_Workb [Drawing Workbench/zh-cn](Drawing_Workbench/zh-cn.md) , , [Category:Obsolete Workbenches/zh-cn](Category:Obsolete_Workbenches/zh-cn.md) [Category:Drawing/zh-cn](Category:Drawing/zh-cn.md) [Category:Obsolete Workbenches/zh-cn](Category:Obsolete_Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/zh-cn diff --git a/wiki/translations/zh-cn/Category:OpenSCAD.md b/wiki/translations/zh-cn/Category:OpenSCAD.md index 3551f5b6d4..ff06a0e61f 100644 --- a/wiki/translations/zh-cn/Category:OpenSCAD.md +++ b/wiki/translations/zh-cn/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/zh-cn](OpenSCAD_Wo [Template:OpenSCAD Tools navi/zh-cn](Template:OpenSCAD_Tools_navi/zh-cn.md) , [OpenSCAD Workbench/zh-cn](OpenSCAD_Workbench/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/zh-cn diff --git a/wiki/translations/zh-cn/Category:Part.md b/wiki/translations/zh-cn/Category:Part.md index 21848f48f0..fc35cdef79 100644 --- a/wiki/translations/zh-cn/Category:Part.md +++ b/wiki/translations/zh-cn/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/zh-cn](Part_Workbench/z [Part Box/zh-cn](Part_Box/zh-cn.md) , [Part Builder/zh-cn](Part_Builder/zh-cn.md) , [Part Cone/zh-cn](Part_Cone/zh-cn.md) , [Part Cylinder/zh-cn](Part_Cylinder/zh-cn.md) , [Part Extrude/zh-cn](Part_Extrude/zh-cn.md) , [Part Module/zh-cn](Part_Module/zh-cn.md) , [Part Primitives/zh-cn](Part_Primitives/zh-cn.md) , [Part Sphere/zh-cn](Part_Sphere/zh-cn.md) , [Template:Part Tools navi/zh-cn](Template:Part_Tools_navi/zh-cn.md) , [Part Torus/zh-cn](Part_Torus/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Part/zh-cn diff --git a/wiki/translations/zh-cn/Category:PartDesign.md b/wiki/translations/zh-cn/Category:PartDesign.md index 8e97daa8f8..ddf7cdaba2 100644 --- a/wiki/translations/zh-cn/Category:PartDesign.md +++ b/wiki/translations/zh-cn/Category:PartDesign.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/zh-cn](PartDesign [Template:PartDesign Tools navi/zh-cn](Template:PartDesign_Tools_navi/zh-cn.md) , [PartDesign Workbench/zh-cn](PartDesign_Workbench/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:PartDesign/zh-cn diff --git a/wiki/translations/zh-cn/Category:Path.md b/wiki/translations/zh-cn/Category:Path.md index 090f8163d4..924a04e8d5 100644 --- a/wiki/translations/zh-cn/Category:Path.md +++ b/wiki/translations/zh-cn/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/zh-cn](PartDesign [Manual:Preparing models for 3D printing/zh-cn](Manual:Preparing_models_for_3D_printing/zh-cn.md) , [Template:Path Tools navi/zh-cn](Template:Path_Tools_navi/zh-cn.md) , [Path Workbench/zh-cn](Path_Workbench/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Path/zh-cn diff --git a/wiki/translations/zh-cn/Category:Plot.md b/wiki/translations/zh-cn/Category:Plot.md index f0271e4117..0b59f21ae5 100644 --- a/wiki/translations/zh-cn/Category:Plot.md +++ b/wiki/translations/zh-cn/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/zh-cn](Plot_Workbench/z [Plot Module/zh-cn](Plot_Module/zh-cn.md) , [Template:Plot Tools navi/zh-cn](Template:Plot_Tools_navi/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Plot/zh-cn diff --git a/wiki/translations/zh-cn/Category:Points.md b/wiki/translations/zh-cn/Category:Points.md index 721059c48e..a1cd844d1b 100644 --- a/wiki/translations/zh-cn/Category:Points.md +++ b/wiki/translations/zh-cn/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/zh-cn](Points_Workben [Points Workbench/zh-cn](Points_Workbench/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Points/zh-cn diff --git a/wiki/translations/zh-cn/Category:Poweruser_Documentation.md b/wiki/translations/zh-cn/Category:Poweruser_Documentation.md index 6b6278bd10..f1380e4185 100644 --- a/wiki/translations/zh-cn/Category:Poweruser_Documentation.md +++ b/wiki/translations/zh-cn/Category:Poweruser_Documentation.md @@ -6,3 +6,6 @@ This category shows documentation articles dealing with python scripting, which [Manual:Import and export to other filetypes/zh-cn](Manual:Import_and_export_to_other_filetypes/zh-cn.md) , [Manual:Installing/zh-cn](Manual:Installing/zh-cn.md) , [Manual:Parametric objects/zh-cn](Manual:Parametric_objects/zh-cn.md) [Category:Documentation/zh-cn](Category:Documentation/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/zh-cn diff --git a/wiki/translations/zh-cn/Category:Preferences.md b/wiki/translations/zh-cn/Category:Preferences.md index 72180389d8..e163446e22 100644 --- a/wiki/translations/zh-cn/Category:Preferences.md +++ b/wiki/translations/zh-cn/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Arch Preferences/zh-cn](Arch_Preferences/zh-cn.md) , [Draft Preferences/zh-cn](Draft_Preferences/zh-cn.md) , [Preferences Editor/zh-cn](Preferences_Editor/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Preferences/zh-cn diff --git a/wiki/translations/zh-cn/Category:Python_Code.md b/wiki/translations/zh-cn/Category:Python_Code.md index 9b91a02c35..aa132f2c22 100644 --- a/wiki/translations/zh-cn/Category:Python_Code.md +++ b/wiki/translations/zh-cn/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Command/zh-cn](Command/zh-cn.md) , [Debugging/zh-cn](Debugging/zh-cn.md) , [Embedding FreeCAD/zh-cn](Embedding_FreeCAD/zh-cn.md) , [FreeCAD Scripting Basics/zh-cn](FreeCAD_Scripting_Basics/zh-cn.md) , [Introduction to Python/zh-cn](Introduction_to_Python/zh-cn.md) , [Macros/zh-cn](Macros/zh-cn.md) , [Mesh Scripting/zh-cn](Mesh_Scripting/zh-cn.md) , [Property/zh-cn](Property/zh-cn.md) , [Python scripting tutorial/zh-cn](Python_scripting_tutorial/zh-cn.md) , [Scripted objects/zh-cn](Scripted_objects/zh-cn.md) , [Topological data scripting/zh-cn](Topological_data_scripting/zh-cn.md) [Category:Categories/zh-cn](Category:Categories/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Python Code/zh-cn diff --git a/wiki/translations/zh-cn/Category:Raytracing.md b/wiki/translations/zh-cn/Category:Raytracing.md index 4970e81ccb..f585be7e43 100644 --- a/wiki/translations/zh-cn/Category:Raytracing.md +++ b/wiki/translations/zh-cn/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/zh-cn](Raytracing [Template:Raytracing Tools navi/zh-cn](Template:Raytracing_Tools_navi/zh-cn.md) , [Raytracing Workbench/zh-cn](Raytracing_Workbench/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Raytracing/zh-cn diff --git a/wiki/translations/zh-cn/Category:Roadmap.md b/wiki/translations/zh-cn/Category:Roadmap.md index 5dad0709b4..1d25691734 100644 --- a/wiki/translations/zh-cn/Category:Roadmap.md +++ b/wiki/translations/zh-cn/Category:Roadmap.md @@ -6,3 +6,6 @@ This category gathers all articles documenting what is planned in the Roadmap of [Assembly project/zh-cn](Assembly_project/zh-cn.md) , [Development roadmap/zh-cn](Development_roadmap/zh-cn.md) [Category:Categories/zh-cn](Category:Categories/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Roadmap/zh-cn diff --git a/wiki/translations/zh-cn/Category:Robot.md b/wiki/translations/zh-cn/Category:Robot.md index bf49e1f49c..1013a00495 100644 --- a/wiki/translations/zh-cn/Category:Robot.md +++ b/wiki/translations/zh-cn/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/zh-cn](Robot_Workbench [Template:Robot Tools navi/zh-cn](Template:Robot_Tools_navi/zh-cn.md) , [Robot Workbench/zh-cn](Robot_Workbench/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Robot/zh-cn diff --git a/wiki/translations/zh-cn/Category:Screenshots.md b/wiki/translations/zh-cn/Category:Screenshots.md index a930364700..4294b4a11b 100644 --- a/wiki/translations/zh-cn/Category:Screenshots.md +++ b/wiki/translations/zh-cn/Category:Screenshots.md @@ -6,3 +6,6 @@ This category lists pages with screenshots. [Screenshots/zh-cn](Screenshots/zh-cn.md) [Category:Documentation/zh-cn](Category:Documentation/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Screenshots/zh-cn diff --git a/wiki/translations/zh-cn/Category:Ship.md b/wiki/translations/zh-cn/Category:Ship.md index 2ef469a184..241e632870 100644 --- a/wiki/translations/zh-cn/Category:Ship.md +++ b/wiki/translations/zh-cn/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/zh-cn](Ship_Workbench/z [Template:Ship Tools navi/zh-cn](Template:Ship_Tools_navi/zh-cn.md) , [Ship Workbench/zh-cn](Ship_Workbench/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Ship/zh-cn diff --git a/wiki/translations/zh-cn/Category:Sketcher.md b/wiki/translations/zh-cn/Category:Sketcher.md index 1c36929c7c..ccbd10d007 100644 --- a/wiki/translations/zh-cn/Category:Sketcher.md +++ b/wiki/translations/zh-cn/Category:Sketcher.md @@ -6,3 +6,6 @@ This category lists pages related to the [Sketcher Workbench/zh-cn](Sketcher_Wor [Sketcher CompCreateArc/zh-cn](Sketcher_CompCreateArc/zh-cn.md) , [Sketcher CompCreateCircle/zh-cn](Sketcher_CompCreateCircle/zh-cn.md) , [Sketcher CompCreateConic/zh-cn](Sketcher_CompCreateConic/zh-cn.md) , [Sketcher Create3PointArc/zh-cn](Sketcher_Create3PointArc/zh-cn.md) , [Sketcher Create3PointCircle/zh-cn](Sketcher_Create3PointCircle/zh-cn.md) , [Sketcher CreateArc/zh-cn](Sketcher_CreateArc/zh-cn.md) , [Sketcher CreateCircle/zh-cn](Sketcher_CreateCircle/zh-cn.md) , [Sketcher CreateEllipseByCenter/zh-cn](Sketcher_CreateEllipseByCenter/zh-cn.md) , [Sketcher CreateLine/zh-cn](Sketcher_CreateLine/zh-cn.md) , [Sketcher CreatePoint/zh-cn](Sketcher_CreatePoint/zh-cn.md) , [Sketcher Dialog/zh-cn](Sketcher_Dialog/zh-cn.md) , [Sketcher EditSketch/zh-cn](Sketcher_EditSketch/zh-cn.md) , [Sketcher LeaveSketch/zh-cn](Sketcher_LeaveSketch/zh-cn.md) , [Sketcher MapSketch/zh-cn](Sketcher_MapSketch/zh-cn.md) , [Sketcher MergeSketches/zh-cn](Sketcher_MergeSketches/zh-cn.md) , [Sketcher MirrorSketch/zh-cn](Sketcher_MirrorSketch/zh-cn.md) , [Sketcher NewSketch/zh-cn](Sketcher_NewSketch/zh-cn.md) , [Sketcher ReorientSketch/zh-cn](Sketcher_ReorientSketch/zh-cn.md) , [Template:Sketcher Tools navi/zh-cn](Template:Sketcher_Tools_navi/zh-cn.md) , [Sketcher ValidateSketch/zh-cn](Sketcher_ValidateSketch/zh-cn.md) , [Sketcher ViewSection/zh-cn](Sketcher_ViewSection/zh-cn.md) , [Sketcher ViewSketch/zh-cn](Sketcher_ViewSketch/zh-cn.md) , [Sketcher Workbench/zh-cn](Sketcher_Workbench/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Sketcher/zh-cn diff --git a/wiki/translations/zh-cn/Category:Surface.md b/wiki/translations/zh-cn/Category:Surface.md index fa8bb3f95e..6a8f937375 100644 --- a/wiki/translations/zh-cn/Category:Surface.md +++ b/wiki/translations/zh-cn/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/zh-cn](Surface_Workb [Surface Workbench/zh-cn](Surface_Workbench/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Surface/zh-cn diff --git a/wiki/translations/zh-cn/Category:TechDraw.md b/wiki/translations/zh-cn/Category:TechDraw.md index 484fe148c6..1b8564f4b4 100644 --- a/wiki/translations/zh-cn/Category:TechDraw.md +++ b/wiki/translations/zh-cn/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/zh-cn](TechDraw_Wor [TechDraw Workbench/zh-cn](TechDraw_Workbench/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:TechDraw/zh-cn diff --git a/wiki/translations/zh-cn/Category:Template.md b/wiki/translations/zh-cn/Category:Template.md index c95903d191..4b4bbb0f79 100644 --- a/wiki/translations/zh-cn/Category:Template.md +++ b/wiki/translations/zh-cn/Category:Template.md @@ -8,3 +8,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) [Template:Sketcher Tools/zh-cn](Template:Sketcher_Tools/zh-cn.md) , , [Category:Categories/zh-cn](Category:Categories/zh-cn.md) [Category:Template:Navigation/zh-cn](Category:Template:Navigation/zh-cn.md) [Category:Template:Text Format/zh-cn](Category:Template:Text_Format/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Template/zh-cn diff --git a/wiki/translations/zh-cn/Category:Template:Navigation.md b/wiki/translations/zh-cn/Category:Template:Navigation.md index 08e6b2533c..16fcaa0ac2 100644 --- a/wiki/translations/zh-cn/Category:Template:Navigation.md +++ b/wiki/translations/zh-cn/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/zh-cn](Template:Arch_Tools_navi/zh-cn.md) , [Template:Drawing Tools navi/zh-cn](Template:Drawing_Tools_navi/zh-cn.md) , [Template:FEM Tools navi/zh-cn](Template:FEM_Tools_navi/zh-cn.md) , [Template:Mesh Tools navi/zh-cn](Template:Mesh_Tools_navi/zh-cn.md) , [Template:OpenSCAD Tools navi/zh-cn](Template:OpenSCAD_Tools_navi/zh-cn.md) , [Template:Part Tools navi/zh-cn](Template:Part_Tools_navi/zh-cn.md) , [Template:PartDesign Tools navi/zh-cn](Template:PartDesign_Tools_navi/zh-cn.md) , [Template:Path Tools navi/zh-cn](Template:Path_Tools_navi/zh-cn.md) , [Template:Plot Tools navi/zh-cn](Template:Plot_Tools_navi/zh-cn.md) , [Template:Raytracing Tools navi/zh-cn](Template:Raytracing_Tools_navi/zh-cn.md) , [Template:Robot Tools navi/zh-cn](Template:Robot_Tools_navi/zh-cn.md) , [Template:Ship Tools navi/zh-cn](Template:Ship_Tools_navi/zh-cn.md) , [Template:Sketcher Tools navi/zh-cn](Template:Sketcher_Tools_navi/zh-cn.md) [Category:Template/zh-cn](Category:Template/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/zh-cn diff --git a/wiki/translations/zh-cn/Category:Template:Text_Format.md b/wiki/translations/zh-cn/Category:Template:Text_Format.md index bf9d4d84de..a113f12a8c 100644 --- a/wiki/translations/zh-cn/Category:Template:Text_Format.md +++ b/wiki/translations/zh-cn/Category:Template:Text_Format.md @@ -6,3 +6,6 @@ [Template:PropertyData/zh-cn](Template:PropertyData/zh-cn.md) , [Template:PropertyView/zh-cn](Template:PropertyView/zh-cn.md) [Category:Template/zh-cn](Category:Template/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Template:Text Format/zh-cn diff --git a/wiki/translations/zh-cn/Category:Test_Framework.md b/wiki/translations/zh-cn/Category:Test_Framework.md index a5e43db6a1..fbfe116ca1 100644 --- a/wiki/translations/zh-cn/Category:Test_Framework.md +++ b/wiki/translations/zh-cn/Category:Test_Framework.md @@ -6,3 +6,6 @@ This category lists pages related to the [Test Framework Workbench/zh-cn](Test_F [Testing/zh-cn](Testing/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) [Category:User\_Documentation/zh-cn](Category:User_Documentation/zh-cn.md) [Category:Testing/zh-cn](Category:Testing/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Test Framework/zh-cn diff --git a/wiki/translations/zh-cn/Category:Testing.md b/wiki/translations/zh-cn/Category:Testing.md index f89a6c9932..c27afe09f1 100644 --- a/wiki/translations/zh-cn/Category:Testing.md +++ b/wiki/translations/zh-cn/Category:Testing.md @@ -6,3 +6,6 @@ Pages related to testing in regards to unit testing, continuous integration, qua [Testing/zh-cn](Testing/zh-cn.md) , [Category:Test Framework/zh-cn](Category:Test_Framework/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Testing/zh-cn diff --git a/wiki/translations/zh-cn/Category:Tutorials.md b/wiki/translations/zh-cn/Category:Tutorials.md index 7387a864c9..1f5fc4fb48 100644 --- a/wiki/translations/zh-cn/Category:Tutorials.md +++ b/wiki/translations/zh-cn/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials](Offsite_tutorials.md) and [Video tutorials [Manual:Import and export to other filetypes/zh-cn](Manual:Import_and_export_to_other_filetypes/zh-cn.md) , [Manual:Installing/zh-cn](Manual:Installing/zh-cn.md) , [Manual:Modeling for product design/zh-cn](Manual:Modeling_for_product_design/zh-cn.md) , [Manual:Parametric objects/zh-cn](Manual:Parametric_objects/zh-cn.md) , [Manual:Preparing models for 3D printing/zh-cn](Manual:Preparing_models_for_3D_printing/zh-cn.md) , [Manual:Traditional 2D drafting/zh-cn](Manual:Traditional_2D_drafting/zh-cn.md) , [Manual:Traditional modeling, the CSG way/zh-cn](Manual:Traditional_modeling,_the_CSG_way/zh-cn.md) , [Template:TutorialInfo/zh-cn](Template:TutorialInfo/zh-cn.md) , [Tutorials/zh-cn](Tutorials/zh-cn.md) [Category:Categories/zh-cn](Category:Categories/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Tutorials/zh-cn diff --git a/wiki/translations/zh-cn/Category:User_Documentation.md b/wiki/translations/zh-cn/Category:User_Documentation.md index 6d6fac0160..db34cdd89a 100644 --- a/wiki/translations/zh-cn/Category:User_Documentation.md +++ b/wiki/translations/zh-cn/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [About FreeCAD/zh-cn](About_FreeCAD/zh-cn.md) , [Arch Add/zh-cn](Arch_Add/zh-cn.md) , [Arch Preferences/zh-cn](Arch_Preferences/zh-cn.md) , [Arch Remove/zh-cn](Arch_Remove/zh-cn.md) , [Arch Wall/zh-cn](Arch_Wall/zh-cn.md) , [Arch Workbench/zh-cn](Arch_Workbench/zh-cn.md) , [Compiling/zh-cn](Compiling/zh-cn.md) , [Contributors/zh-cn](Contributors/zh-cn.md) , [Developer hub/zh-cn](Developer_hub/zh-cn.md) , [Document structure/zh-cn](Document_structure/zh-cn.md) , [Download/zh-cn](Download/zh-cn.md) , [Draft Arc 3Points/zh-cn](Draft_Arc_3Points/zh-cn.md) , [Draft Arc/zh-cn](Draft_Arc/zh-cn.md) , [Draft Circle/zh-cn](Draft_Circle/zh-cn.md) , [Draft Constrain/zh-cn](Draft_Constrain/zh-cn.md) , [Draft Ellipse/zh-cn](Draft_Ellipse/zh-cn.md) , [Draft Line/zh-cn](Draft_Line/zh-cn.md) , [Draft Pattern/zh-cn](Draft_Pattern/zh-cn.md) , [Draft Preferences/zh-cn](Draft_Preferences/zh-cn.md) , [Draft Snap Endpoint/zh-cn](Draft_Snap_Endpoint/zh-cn.md) , [Draft Snap Near/zh-cn](Draft_Snap_Near/zh-cn.md) , [Draft Snap Perpendicular/zh-cn](Draft_Snap_Perpendicular/zh-cn.md) , [Draft Snap/zh-cn](Draft_Snap/zh-cn.md) , [Draft Tray/zh-cn](Draft_Tray/zh-cn.md) , [Draft Wire/zh-cn](Draft_Wire/zh-cn.md) , [Draft Workbench/zh-cn](Draft_Workbench/zh-cn.md) , [Drawing Workbench/zh-cn](Drawing_Workbench/zh-cn.md) , [External workbenches/zh-cn](External_workbenches/zh-cn.md) , [Feature list/zh-cn](Feature_list/zh-cn.md) , [FEM Workbench/zh-cn](FEM_Workbench/zh-cn.md) , [Getting started/zh-cn](Getting_started/zh-cn.md) , [Glossary/zh-cn](Glossary/zh-cn.md) , [Template:GuiCommand/zh-cn](Template:GuiCommand/zh-cn.md) , [Help FreeCAD/zh-cn](Help_FreeCAD/zh-cn.md) , [Image CreateImagePlane/zh-cn](Image_CreateImagePlane/zh-cn.md) , [Image Open/zh-cn](Image_Open/zh-cn.md) , [Image Scaling/zh-cn](Image_Scaling/zh-cn.md) , [Image Workbench/zh-cn](Image_Workbench/zh-cn.md) , [Import Export/zh-cn](Import_Export/zh-cn.md) , [Inspection Workbench/zh-cn](Inspection_Workbench/zh-cn.md) , [Installing additional components/zh-cn](Installing_additional_components/zh-cn.md) , [Installing on Linux/zh-cn](Installing_on_Linux/zh-cn.md) , [Installing on Mac/zh-cn](Installing_on_Mac/zh-cn.md) , [Installing on Windows/zh-cn](Installing_on_Windows/zh-cn.md) , [Interface Customization/zh-cn](Interface_Customization/zh-cn.md) , [Licence/zh-cn](Licence/zh-cn.md) , [Main Page/zh-cn](Main_Page/zh-cn.md) , [Mesh Workbench/zh-cn](Mesh_Workbench/zh-cn.md) , [Mouse navigation/zh-cn](Mouse_navigation/zh-cn.md) , [Navigation Cube/zh-cn](Navigation_Cube/zh-cn.md) , [Online Help Startpage/zh-cn](Online_Help_Startpage/zh-cn.md) , [Online Help Toc/zh-cn](Online_Help_Toc/zh-cn.md) , [OpenSCAD Workbench/zh-cn](OpenSCAD_Workbench/zh-cn.md) , [Part Box/zh-cn](Part_Box/zh-cn.md) , [Part Builder/zh-cn](Part_Builder/zh-cn.md) , [Part Cone/zh-cn](Part_Cone/zh-cn.md) , [Part Cylinder/zh-cn](Part_Cylinder/zh-cn.md) , [Part Extrude/zh-cn](Part_Extrude/zh-cn.md) , [Part Module/zh-cn](Part_Module/zh-cn.md) , [Part Primitives/zh-cn](Part_Primitives/zh-cn.md) , [Part Sphere/zh-cn](Part_Sphere/zh-cn.md) , [Part Torus/zh-cn](Part_Torus/zh-cn.md) , [PartDesign Workbench/zh-cn](PartDesign_Workbench/zh-cn.md) , [Path Workbench/zh-cn](Path_Workbench/zh-cn.md) , [Placement/zh-cn](Placement/zh-cn.md) , [Plot Module/zh-cn](Plot_Module/zh-cn.md) , [Points Workbench/zh-cn](Points_Workbench/zh-cn.md) , [Preferences Editor/zh-cn](Preferences_Editor/zh-cn.md) , [Property editor/zh-cn](Property_editor/zh-cn.md) , [Raytracing Workbench/zh-cn](Raytracing_Workbench/zh-cn.md) , [Reverse Engineering Workbench/zh-cn](Reverse_Engineering_Workbench/zh-cn.md) , [Robot Workbench/zh-cn](Robot_Workbench/zh-cn.md) , [Ship Workbench/zh-cn](Ship_Workbench/zh-cn.md) , [Sketcher CompCreateArc/zh-cn](Sketcher_CompCreateArc/zh-cn.md) , [Sketcher CompCreateCircle/zh-cn](Sketcher_CompCreateCircle/zh-cn.md) , [Sketcher CompCreateConic/zh-cn](Sketcher_CompCreateConic/zh-cn.md) , [Sketcher Create3PointArc/zh-cn](Sketcher_Create3PointArc/zh-cn.md) , [Sketcher Create3PointCircle/zh-cn](Sketcher_Create3PointCircle/zh-cn.md) , [Sketcher CreateArc/zh-cn](Sketcher_CreateArc/zh-cn.md) , [Sketcher CreateCircle/zh-cn](Sketcher_CreateCircle/zh-cn.md) , [Sketcher CreateEllipseByCenter/zh-cn](Sketcher_CreateEllipseByCenter/zh-cn.md) , [Sketcher CreateLine/zh-cn](Sketcher_CreateLine/zh-cn.md) , [Sketcher CreatePoint/zh-cn](Sketcher_CreatePoint/zh-cn.md) , [Sketcher Dialog/zh-cn](Sketcher_Dialog/zh-cn.md) , [Sketcher EditSketch/zh-cn](Sketcher_EditSketch/zh-cn.md) , [Sketcher LeaveSketch/zh-cn](Sketcher_LeaveSketch/zh-cn.md) , [Sketcher MapSketch/zh-cn](Sketcher_MapSketch/zh-cn.md) , [Sketcher MergeSketches/zh-cn](Sketcher_MergeSketches/zh-cn.md) , [Sketcher MirrorSketch/zh-cn](Sketcher_MirrorSketch/zh-cn.md) , [Sketcher NewSketch/zh-cn](Sketcher_NewSketch/zh-cn.md) , [Sketcher ReorientSketch/zh-cn](Sketcher_ReorientSketch/zh-cn.md) , [Sketcher ValidateSketch/zh-cn](Sketcher_ValidateSketch/zh-cn.md) , [Sketcher ViewSection/zh-cn](Sketcher_ViewSection/zh-cn.md) , [Sketcher ViewSketch/zh-cn](Sketcher_ViewSketch/zh-cn.md) , [Sketcher Workbench/zh-cn](Sketcher_Workbench/zh-cn.md) , [Source documentation/zh-cn](Source_documentation/zh-cn.md) , [Spreadsheet Workbench/zh-cn](Spreadsheet_Workbench/zh-cn.md) , [Start Workbench/zh-cn](Start_Workbench/zh-cn.md) , [Surface Workbench/zh-cn](Surface_Workbench/zh-cn.md) , [TechDraw Workbench/zh-cn](TechDraw_Workbench/zh-cn.md) , [Testing/zh-cn](Testing/zh-cn.md) , [Tracker/zh-cn](Tracker/zh-cn.md) , [Template:TutorialInfo/zh-cn](Template:TutorialInfo/zh-cn.md) , [Tutorials/zh-cn](Tutorials/zh-cn.md) , [User hub/zh-cn](User_hub/zh-cn.md) , [Web Workbench/zh-cn](Web_Workbench/zh-cn.md) , [WebTools Workbench/zh-cn](WebTools_Workbench/zh-cn.md) , [Workbenches/zh-cn](Workbenches/zh-cn.md) , [Screenshots/zh-cn](Screenshots/zh-cn.md) , , , , , , , , [Category:Documentation/zh-cn](Category:Documentation/zh-cn.md) [Category:Arch/zh-cn](Category:Arch/zh-cn.md) [Category:Base/zh-cn](Category:Base/zh-cn.md) [Category:BIM/zh-cn](Category:BIM/zh-cn.md) [Category:Draft/zh-cn](Category:Draft/zh-cn.md) [Category:Inspection/zh-cn](Category:Inspection/zh-cn.md) [Category:Macros/zh-cn](Category:Macros/zh-cn.md) [Category:Test Framework/zh-cn](Category:Test_Framework/zh-cn.md) [Category:Workbenches/zh-cn](Category:Workbenches/zh-cn.md) + +--- +[documentation index](../README.md) > Category:User Documentation/zh-cn diff --git a/wiki/translations/zh-cn/Category:Workbenches.md b/wiki/translations/zh-cn/Category:Workbenches.md index 336b7a0ab0..5a0fd887ef 100644 --- a/wiki/translations/zh-cn/Category:Workbenches.md +++ b/wiki/translations/zh-cn/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/zh-cn](Arch_Workbench/zh-cn.md) , [Draft Workbench/zh-cn](Draft_Workbench/zh-cn.md) , [FEM Workbench/zh-cn](FEM_Workbench/zh-cn.md) , [Image Workbench/zh-cn](Image_Workbench/zh-cn.md) , [Inspection Workbench/zh-cn](Inspection_Workbench/zh-cn.md) , [Mesh Workbench/zh-cn](Mesh_Workbench/zh-cn.md) , [OpenSCAD Workbench/zh-cn](OpenSCAD_Workbench/zh-cn.md) , [Part Module/zh-cn](Part_Module/zh-cn.md) , [PartDesign Workbench/zh-cn](PartDesign_Workbench/zh-cn.md) , [Path Workbench/zh-cn](Path_Workbench/zh-cn.md) , [Points Workbench/zh-cn](Points_Workbench/zh-cn.md) , [Raytracing Workbench/zh-cn](Raytracing_Workbench/zh-cn.md) , [Reverse Engineering Workbench/zh-cn](Reverse_Engineering_Workbench/zh-cn.md) , [Robot Workbench/zh-cn](Robot_Workbench/zh-cn.md) , [Sketcher Workbench/zh-cn](Sketcher_Workbench/zh-cn.md) , [Spreadsheet Workbench/zh-cn](Spreadsheet_Workbench/zh-cn.md) , [Start Workbench/zh-cn](Start_Workbench/zh-cn.md) , [Surface Workbench/zh-cn](Surface_Workbench/zh-cn.md) , [TechDraw Workbench/zh-cn](TechDraw_Workbench/zh-cn.md) , [Testing/zh-cn](Testing/zh-cn.md) , [Web Workbench/zh-cn](Web_Workbench/zh-cn.md) , [Workbenches/zh-cn](Workbenches/zh-cn.md) , , , , , , , , , , , , , , , , , , , , [Category:User Documentation/zh-cn](Category:User_Documentation/zh-cn.md) [Category:Arch/zh-cn](Category:Arch/zh-cn.md) [Category:Draft/zh-cn](Category:Draft/zh-cn.md) [Category:External Workbenches/zh-cn](Category:External_Workbenches/zh-cn.md) [Category:FEM/zh-cn](Category:FEM/zh-cn.md) [Category:Image/zh-cn](Category:Image/zh-cn.md) [Category:Inspection/zh-cn](Category:Inspection/zh-cn.md) [Category:Mesh/zh-cn](Category:Mesh/zh-cn.md) [Category:OpenSCAD/zh-cn](Category:OpenSCAD/zh-cn.md) [Category:Part/zh-cn](Category:Part/zh-cn.md) [Category:PartDesign/zh-cn](Category:PartDesign/zh-cn.md) [Category:Path/zh-cn](Category:Path/zh-cn.md) [Category:Plot/zh-cn](Category:Plot/zh-cn.md) [Category:Points/zh-cn](Category:Points/zh-cn.md) [Category:Raytracing/zh-cn](Category:Raytracing/zh-cn.md) [Category:Robot/zh-cn](Category:Robot/zh-cn.md) [Category:Ship/zh-cn](Category:Ship/zh-cn.md) [Category:Sketcher/zh-cn](Category:Sketcher/zh-cn.md) [Category:Surface/zh-cn](Category:Surface/zh-cn.md) [Category:TechDraw/zh-cn](Category:TechDraw/zh-cn.md) [Category:Test Framework/zh-cn](Category:Test_Framework/zh-cn.md) + +--- +[documentation index](../README.md) > Category:Workbenches/zh-cn diff --git a/wiki/translations/zh-cn/Command.md b/wiki/translations/zh-cn/Command.md index e408f8cd4b..9bf7f93748 100644 --- a/wiki/translations/zh-cn/Command.md +++ b/wiki/translations/zh-cn/Command.md @@ -1,6 +1,4 @@ # Command/zh-cn - - ## Introduction @@ -139,3 +137,6 @@ See [Line drawing function](Line_drawing_function.md). }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Command/zh-cn diff --git a/wiki/translations/zh-cn/Compiling.md b/wiki/translations/zh-cn/Compiling.md index c70d6a2279..b4432bf58a 100644 --- a/wiki/translations/zh-cn/Compiling.md +++ b/wiki/translations/zh-cn/Compiling.md @@ -1,7 +1,4 @@ # Compiling/zh-cn - - -
如何编译FreeCAD,针对每种操作系统,都有它自己的页面,在[在线帮助文档里有](Online_Help_Toc.md). @@ -34,3 +31,6 @@ To learn to use revision control system and contribute code see [Source code man [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling/zh-cn diff --git a/wiki/translations/zh-cn/Contributors.md b/wiki/translations/zh-cn/Contributors.md index c90a9ed320..136388b427 100644 --- a/wiki/translations/zh-cn/Contributors.md +++ b/wiki/translations/zh-cn/Contributors.md @@ -1,10 +1,4 @@ # Contributors/zh-cn - - - - - - {{TOCright}} @@ -253,3 +247,6 @@ Developers of FreeCAD addons (retrieved from [Developer](Category:Developer.md) > Contributors/zh-cn diff --git a/wiki/translations/zh-cn/Debugging.md b/wiki/translations/zh-cn/Debugging.md index bb1a9f8e57..f8603ae01f 100644 --- a/wiki/translations/zh-cn/Debugging.md +++ b/wiki/translations/zh-cn/Debugging.md @@ -1,10 +1,4 @@ # Debugging/zh-cn - - - - - - {{TOCright}} @@ -462,3 +456,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/zh-cn diff --git a/wiki/translations/zh-cn/Developer_hub.md b/wiki/translations/zh-cn/Developer_hub.md index 79005a3706..2a8833549e 100644 --- a/wiki/translations/zh-cn/Developer_hub.md +++ b/wiki/translations/zh-cn/Developer_hub.md @@ -1,6 +1,4 @@ # Developer hub/zh-cn - - ![150](images/Crystal_Clear_app_tutorials.png ) 如果你对开发FreeCAD软件有兴趣,想贡献于这个项目的开发,这里正有你该了解的内容。 @@ -193,3 +191,6 @@ FreeCAD虽然在特定领域已经可用了,但是在跨入主流CAD的路途 [Category:Hubs](Category:Hubs.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Developer hub/zh-cn diff --git a/wiki/translations/zh-cn/Development_roadmap.md b/wiki/translations/zh-cn/Development_roadmap.md index 10587ec696..46dee0afbc 100644 --- a/wiki/translations/zh-cn/Development_roadmap.md +++ b/wiki/translations/zh-cn/Development_roadmap.md @@ -1,5 +1,5 @@ # Development roadmap/zh-cn - **Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** +**Important: many of these roadmaps are not up to date or perhaps abandoned. This page and the pages it links to most likely contain obsolete info. A 'soft' roadmap can be found on the [http://www.freecadweb.org/tracker/roadmap_page.php bugtracker] but for now there isn't a 'hard' roadmap. There are many efforts going on simultaneously.** FreeCAD - though usable in many applications - is at the beginning of a long journey into CAD mainstream. There is still a lot to do to reach a state where we can compete with commercial software. @@ -44,3 +44,6 @@ Like in the most [FLOSS](http://en.wikipedia.org/wiki/FLOSS) projects a release [Category:Roadmap](Category:Roadmap.md) + +--- +[documentation index](../README.md) > [Roadmap](Category:Roadmap.md) > Development roadmap/zh-cn diff --git a/wiki/translations/zh-cn/Document_structure.md b/wiki/translations/zh-cn/Document_structure.md index 79b654bba0..0c100e3e48 100644 --- a/wiki/translations/zh-cn/Document_structure.md +++ b/wiki/translations/zh-cn/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/zh-cn - - - - - - {{TOCright}} ![](images/Screenshot_treeview.jpg ) 一份 FreeCAD 文档包含了场景中的所有对象。它可以包含组以及所有工作台所创建的对象。因而你可以在工作台之间自由切换,但是仍在同一份 FreeCAD 文档上工作。如果你打算保存你的工作成果,那么 FreeCAD 文档便会被保存到磁盘中。可以在 FreeCAD 中同时打开多份文档,也可以为同一份文档开启多个视图。 @@ -85,5 +79,5 @@ FreeCADGui.ActiveDocument.ActiveView
- - +--- +[documentation index](../README.md) > Document structure/zh-cn diff --git a/wiki/translations/zh-cn/Download.md b/wiki/translations/zh-cn/Download.md index 02b11b1d45..04e99d30b7 100644 --- a/wiki/translations/zh-cn/Download.md +++ b/wiki/translations/zh-cn/Download.md @@ -1,5 +1,5 @@ # Download/zh-cn - {{TOCright}} +{{TOCright}} ## Current stable version @@ -61,5 +61,5 @@ The FreeCAD community provides a wealth of additional modules and macros. They c - - +--- +[documentation index](../README.md) > Download/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Arc.md b/wiki/translations/zh-cn/Draft_Arc.md index 96fad2723a..5f7c2355ce 100644 --- a/wiki/translations/zh-cn/Draft_Arc.md +++ b/wiki/translations/zh-cn/Draft_Arc.md @@ -9,6 +9,8 @@ Version:0.7 --- +# Draft Arc/zh-cn + @@ -151,5 +153,5 @@ doc.recompute() - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Arc_3Points.md b/wiki/translations/zh-cn/Draft_Arc_3Points.md index 553f06a889..828f30e887 100644 --- a/wiki/translations/zh-cn/Draft_Arc_3Points.md +++ b/wiki/translations/zh-cn/Draft_Arc_3Points.md @@ -7,6 +7,8 @@ SeeAlso:[Draft Arc](Draft_Arc.md), [Draft Circle](Draft_Circle.md) --- +# Draft Arc 3Points/zh-cn + ## 描述 @@ -134,8 +136,5 @@ arc = Draft.make_arc_3points(points) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Arc 3Points/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Circle.md b/wiki/translations/zh-cn/Draft_Circle.md index 4a9292d845..6d5cb8f554 100644 --- a/wiki/translations/zh-cn/Draft_Circle.md +++ b/wiki/translations/zh-cn/Draft_Circle.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Arc](Draft_Arc.md), [Draft Arc 3Points](Draft_Arc_3Points.md) --- +# Draft Circle/zh-cn + ## Description @@ -202,8 +204,5 @@ circle3 = Draft.make_circle(750, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Circle/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Constrain.md b/wiki/translations/zh-cn/Draft_Constrain.md index a547087abf..df13e7469f 100644 --- a/wiki/translations/zh-cn/Draft_Constrain.md +++ b/wiki/translations/zh-cn/Draft_Constrain.md @@ -1,10 +1,4 @@ # Draft Constrain/zh-cn - - - - - - {{TOCright}} ## Description @@ -63,8 +57,5 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr - The default **Constrain mod** key, **Shift**, can be changed: **Edit → Preferences... → Draft → Grid and snapping → Snapping → Constrain mod**. - The **X**, **Y** and **Z** shortcuts can be changed: **Edit → Preferences... → Draft → User interface settings → In-Command Shortcuts**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Constrain/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Ellipse.md b/wiki/translations/zh-cn/Draft_Ellipse.md index 65ac79b9ed..85923b565c 100644 --- a/wiki/translations/zh-cn/Draft_Ellipse.md +++ b/wiki/translations/zh-cn/Draft_Ellipse.md @@ -7,6 +7,8 @@ Version:0.7 --- +# Draft Ellipse/zh-cn + ## 描述 @@ -145,8 +147,5 @@ ellipse3 = Draft.make_ellipse(700, 1000, placement=place3) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Ellipse/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Line.md b/wiki/translations/zh-cn/Draft_Line.md index 9d89166585..989271b42e 100644 --- a/wiki/translations/zh-cn/Draft_Line.md +++ b/wiki/translations/zh-cn/Draft_Line.md @@ -8,6 +8,8 @@ Version:0.7 --- +# Draft Line/zh-cn + @@ -158,8 +160,5 @@ line2 = Draft.make_line(p3, p4) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Line/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Linestyle.md b/wiki/translations/zh-cn/Draft_Linestyle.md index 40895cef8b..1f27dcdc98 100644 --- a/wiki/translations/zh-cn/Draft_Linestyle.md +++ b/wiki/translations/zh-cn/Draft_Linestyle.md @@ -1,2 +1,5 @@ # Draft Linestyle/zh-cn 1. REDIRECT [Draft\_Tray/zh-cn](Draft_Tray/zh-cn.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Linestyle/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Module.md b/wiki/translations/zh-cn/Draft_Module.md index 36892d3661..1208165a68 100644 --- a/wiki/translations/zh-cn/Draft_Module.md +++ b/wiki/translations/zh-cn/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/zh-cn 1. REDIRECT [Draft\_Workbench/zh-cn](Draft_Workbench/zh-cn.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Pattern.md b/wiki/translations/zh-cn/Draft_Pattern.md index c77244d153..988f985679 100644 --- a/wiki/translations/zh-cn/Draft_Pattern.md +++ b/wiki/translations/zh-cn/Draft_Pattern.md @@ -1,10 +1,4 @@ # Draft Pattern/zh-cn - - - - - - {{TOCright}} ## Description @@ -51,8 +45,5 @@ See also: [Preferences Editor](Preferences_Editor.md) and [Draft Preferences](Dr - The **Edit → Preferences... → Draft → Visual settings → Hatch patterns resolution** preference is not used. - To change the **Pattern Size** used for new objects: **Edit → Preferences... → Draft → Visual settings → Hatch Pattern default size**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Pattern/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Preferences.md b/wiki/translations/zh-cn/Draft_Preferences.md index 595904af17..22130844c5 100644 --- a/wiki/translations/zh-cn/Draft_Preferences.md +++ b/wiki/translations/zh-cn/Draft_Preferences.md @@ -1,10 +1,4 @@ # Draft Preferences/zh-cn - - - - - - {{TOCright}} @@ -508,3 +502,6 @@ On the *Texts and dimensions* tab you can specify the following: [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Preferences/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Snap.md b/wiki/translations/zh-cn/Draft_Snap.md index 0e7918cc4d..99643d283a 100644 --- a/wiki/translations/zh-cn/Draft_Snap.md +++ b/wiki/translations/zh-cn/Draft_Snap.md @@ -1,10 +1,4 @@ # Draft Snap/zh-cn - - - - - - {{TOCright}} ## 描述 @@ -112,8 +106,5 @@ Note that after changing some preferences you must restart FreeCAD. - The color of the snap symbols and the dimensions of [Draft Snap Dimensions](Draft_Snap_Dimensions.md) can be changed: **Edit → Preferences... → Draft → Visual settings → Visual settings → Color**. - The mentioned single character keyboard shortcuts can be changed: **Edit → Preferences... → Draft → User interface settings → In-Command Shortcuts**. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Snap_Endpoint.md b/wiki/translations/zh-cn/Draft_Snap_Endpoint.md index 92f4940973..e926250fe0 100644 --- a/wiki/translations/zh-cn/Draft_Snap_Endpoint.md +++ b/wiki/translations/zh-cn/Draft_Snap_Endpoint.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md) --- +# Draft Snap Endpoint/zh-cn + ## Description @@ -48,8 +50,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Endpoint/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Snap_Near.md b/wiki/translations/zh-cn/Draft_Snap_Near.md index 410aa4cee8..9d9d2ab7f3 100644 --- a/wiki/translations/zh-cn/Draft_Snap_Near.md +++ b/wiki/translations/zh-cn/Draft_Snap_Near.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md) --- +# Draft Snap Near/zh-cn + ## Description @@ -66,8 +68,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Near/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Snap_Perpendicular.md b/wiki/translations/zh-cn/Draft_Snap_Perpendicular.md index dbe2080421..63f76bd685 100644 --- a/wiki/translations/zh-cn/Draft_Snap_Perpendicular.md +++ b/wiki/translations/zh-cn/Draft_Snap_Perpendicular.md @@ -5,6 +5,8 @@ SeeAlso:[Draft Snap](Draft_Snap.md), [Draft Snap Lock](Draft_Snap_Lock.md) --- +# Draft Snap Perpendicular/zh-cn + ## Description @@ -50,8 +52,5 @@ For general information about snapping see [Draft Snap](Draft_Snap.md). See [Draft Snap](Draft_Snap#Preferences.md). - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Snap Perpendicular/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Tray.md b/wiki/translations/zh-cn/Draft_Tray.md index 9365b3a375..911692406f 100644 --- a/wiki/translations/zh-cn/Draft_Tray.md +++ b/wiki/translations/zh-cn/Draft_Tray.md @@ -1,10 +1,4 @@ # Draft Tray/zh-cn - - - - - - {{TOCright}} ## Description @@ -29,8 +23,5 @@ - ![](images/Draft_tray_button_layer.png ) [AutoGroup](Draft_AutoGroup.md): changes the active [Draft Layer](Draft_Layer.md) or, optionally, the active [Std Group](Std_Group.md) or group-like [Arch](Arch_Workbench.md) object. - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Tray/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Wire.md b/wiki/translations/zh-cn/Draft_Wire.md index 3e49109fab..a4a0e3c286 100644 --- a/wiki/translations/zh-cn/Draft_Wire.md +++ b/wiki/translations/zh-cn/Draft_Wire.md @@ -8,6 +8,8 @@ SeeAlso:[Draft Line](Draft_Line.md), [Draft BSpline](Draft_BSpline.md) --- +# Draft Wire/zh-cn + ## Description @@ -221,8 +223,5 @@ wire3 = Draft.make_wire([1.3*p3, p1, -1.7*p2], closed=True) doc.recompute() ``` - - - - - +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Wire/zh-cn diff --git a/wiki/translations/zh-cn/Draft_Workbench.md b/wiki/translations/zh-cn/Draft_Workbench.md index f03d327c86..8c4be06462 100644 --- a/wiki/translations/zh-cn/Draft_Workbench.md +++ b/wiki/translations/zh-cn/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/zh-cn - - - - - -Draft workbench icon +# Draft workbench icon Draft Workbench/zh-cn {{TOCright}} @@ -411,3 +405,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Drawing_Module.md b/wiki/translations/zh-cn/Drawing_Module.md index cb93b32b6f..21040015fa 100644 --- a/wiki/translations/zh-cn/Drawing_Module.md +++ b/wiki/translations/zh-cn/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/zh-cn 1. REDIRECT [Drawing\_Workbench/zh-cn](Drawing_Workbench/zh-cn.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/zh-cn diff --git a/wiki/translations/zh-cn/Drawing_Workbench.md b/wiki/translations/zh-cn/Drawing_Workbench.md index 939e191ca4..f6f73c3ac3 100644 --- a/wiki/translations/zh-cn/Drawing_Workbench.md +++ b/wiki/translations/zh-cn/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/zh-cn - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** Drawing workbench icon @@ -84,3 +81,6 @@ Some notes on the programming side of the drawing module will be added to the [D }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Embedding_FreeCAD.md b/wiki/translations/zh-cn/Embedding_FreeCAD.md index 5f897c56e7..d023005e0a 100644 --- a/wiki/translations/zh-cn/Embedding_FreeCAD.md +++ b/wiki/translations/zh-cn/Embedding_FreeCAD.md @@ -1,7 +1,4 @@ # Embedding FreeCAD/zh-cn - - - {{TOCright}} ## Introduction @@ -134,3 +131,6 @@ Since the FreeCAD Python module is compiled from C++ (rather than being a pure P }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Embedding FreeCAD/zh-cn diff --git a/wiki/translations/zh-cn/External_workbenches.md b/wiki/translations/zh-cn/External_workbenches.md index 8c8365500d..9744739d8c 100644 --- a/wiki/translations/zh-cn/External_workbenches.md +++ b/wiki/translations/zh-cn/External_workbenches.md @@ -1,10 +1,4 @@ # External workbenches/zh-cn - - - - - - {{TOCright}} ## Introduction @@ -142,3 +136,6 @@ See the wiki page for more information [Translating an external workbench](Trans [Category:Addons](Category:Addons.md) [\*](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > [Addons](Category:Addons.md) > External workbenches/zh-cn diff --git a/wiki/translations/zh-cn/FEM_Module.md b/wiki/translations/zh-cn/FEM_Module.md index 4ca9d5d108..6e6baa54ca 100644 --- a/wiki/translations/zh-cn/FEM_Module.md +++ b/wiki/translations/zh-cn/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/zh-cn 1. REDIRECT [FEM\_Workbench/zh-cn](FEM_Workbench/zh-cn.md) + +--- +[documentation index](../README.md) > FEM Module/zh-cn diff --git a/wiki/translations/zh-cn/FEM_Workbench.md b/wiki/translations/zh-cn/FEM_Workbench.md index 142a55923d..9b1205b952 100644 --- a/wiki/translations/zh-cn/FEM_Workbench.md +++ b/wiki/translations/zh-cn/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/zh-cn - - - - - -FEM workbench icon +# FEM workbench icon FEM Workbench/zh-cn {{TOCright}} @@ -278,3 +272,6 @@ A developer\'s guide has been written to help power users in understanding the c }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Feature_list.md b/wiki/translations/zh-cn/Feature_list.md index 5562358f82..f8067416be 100644 --- a/wiki/translations/zh-cn/Feature_list.md +++ b/wiki/translations/zh-cn/Feature_list.md @@ -1,7 +1,4 @@ # Feature list/zh-cn - - -
这是一个庞大的,未完成的 FreeCAD 特性列表。如果你想知道未来规划,可以通过 [开发路线图](Development_roadmap/zh-cn.md) 大概知道接下来有什么新特性。同样,[截图](Screenshots/zh-cn.md) 也是一个好地方值得浏览。 @@ -287,3 +284,6 @@ [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/zh-cn diff --git a/wiki/translations/zh-cn/FreeCAD_Scripting_Basics.md b/wiki/translations/zh-cn/FreeCAD_Scripting_Basics.md index 63a7c8979b..8a4013e4fc 100644 --- a/wiki/translations/zh-cn/FreeCAD_Scripting_Basics.md +++ b/wiki/translations/zh-cn/FreeCAD_Scripting_Basics.md @@ -1,7 +1,4 @@ # FreeCAD Scripting Basics/zh-cn - - - {{TOCright}} ## Python scripting in FreeCAD @@ -211,3 +208,6 @@ Now you can really start playing with FreeCAD! For a complete list of available }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > FreeCAD Scripting Basics/zh-cn diff --git a/wiki/translations/zh-cn/Getting_started.md b/wiki/translations/zh-cn/Getting_started.md index 1ca98ebd80..4a20bc84db 100644 --- a/wiki/translations/zh-cn/Getting_started.md +++ b/wiki/translations/zh-cn/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/zh-cn - - - - - - {{TOCright}} ## 前言 @@ -331,3 +325,6 @@ There are two types of addons: [Category:User Documentation/zh-cn](Category:User_Documentation/zh-cn.md) + +--- +[documentation index](../README.md) > Getting started/zh-cn diff --git a/wiki/translations/zh-cn/Glossary.md b/wiki/translations/zh-cn/Glossary.md index 98f42965ce..e87a4c376a 100644 --- a/wiki/translations/zh-cn/Glossary.md +++ b/wiki/translations/zh-cn/Glossary.md @@ -1,9 +1,4 @@ # Glossary/zh-cn - - - - - 本页内容为FreeCAD常用术语与定义的术语表。 Jump to letter: {{CompactTOC|center=yes}} @@ -1134,3 +1129,6 @@ Jump to letter: {{CompactTOC|center=yes}} [Category:Wiki](Category:Wiki.md) [Category:Glossary](Category:Glossary.md) + +--- +[documentation index](../README.md) > [Wiki](Category:Wiki.md) > Glossary/zh-cn diff --git a/wiki/translations/zh-cn/Help_FreeCAD.md b/wiki/translations/zh-cn/Help_FreeCAD.md index d2e6776a98..29a06ecdf0 100644 --- a/wiki/translations/zh-cn/Help_FreeCAD.md +++ b/wiki/translations/zh-cn/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/zh-cn - - ## 简介 @@ -136,3 +134,6 @@ Writing code for FreeCAD is not hard, and you don\'t need any permission, you ca [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command Reference|范畴:命令参考]]页面列出了所有FreeCAD](Category:Command Reference|范畴:命令参考]]页面列出了所有FreeCAD.md) > Help FreeCAD/zh-cn diff --git a/wiki/translations/zh-cn/History.md b/wiki/translations/zh-cn/History.md index eb3b998dd9..08f10970e7 100644 --- a/wiki/translations/zh-cn/History.md +++ b/wiki/translations/zh-cn/History.md @@ -1,5 +1,5 @@ # History/zh-cn - \_\_FORCETOC\_\_ +\_\_FORCETOC\_\_
@@ -178,3 +178,6 @@ In April 2019 the team of core developers was expanded: Jürgen, Werner and Yori - [Announcing FreeCAD Project](http://www.opencascade.org/org/forum/thread_6572/?forum=11) on the OpenCascade forum [Category:News](Category:News.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > History/zh-cn diff --git a/wiki/translations/zh-cn/Image_CreateImagePlane.md b/wiki/translations/zh-cn/Image_CreateImagePlane.md index 7ec019239b..fa2750d457 100644 --- a/wiki/translations/zh-cn/Image_CreateImagePlane.md +++ b/wiki/translations/zh-cn/Image_CreateImagePlane.md @@ -6,6 +6,8 @@ SeeAlso:[Image Open](Image_Open.md), [Image Scaling](Image_Scaling.md) --- +# Image CreateImagePlane/zh-cn + ## 描述 @@ -78,4 +80,7 @@ {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image CreateImagePlane/zh-cn diff --git a/wiki/translations/zh-cn/Image_Module.md b/wiki/translations/zh-cn/Image_Module.md index 5ab13fa969..d0ebdb2144 100644 --- a/wiki/translations/zh-cn/Image_Module.md +++ b/wiki/translations/zh-cn/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/zh-cn 1. REDIRECT [Image\_Workbench/zh-cn](Image_Workbench/zh-cn.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/zh-cn diff --git a/wiki/translations/zh-cn/Image_Open.md b/wiki/translations/zh-cn/Image_Open.md index 6909dcca87..e5a16a584d 100644 --- a/wiki/translations/zh-cn/Image_Open.md +++ b/wiki/translations/zh-cn/Image_Open.md @@ -6,6 +6,8 @@ SeeAlso:[Image CreateImagePlane](Image_CreateImagePlane.md), [Image Scaling](Image_Scaling.md) --- +# Image Open/zh-cn + ## 描述 @@ -35,4 +37,7 @@ {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Open/zh-cn diff --git a/wiki/translations/zh-cn/Image_Scaling.md b/wiki/translations/zh-cn/Image_Scaling.md index 6cf7aa37e6..beb299efa1 100644 --- a/wiki/translations/zh-cn/Image_Scaling.md +++ b/wiki/translations/zh-cn/Image_Scaling.md @@ -7,6 +7,8 @@ SeeAlso:[Image Open](Image_Open.md), [Image CreateImagePlane](Image_CreateImagePlane.md) --- +# Image Scaling/zh-cn + ## 描述 @@ -37,4 +39,7 @@ {{Image Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Scaling/zh-cn diff --git a/wiki/translations/zh-cn/Image_Workbench.md b/wiki/translations/zh-cn/Image_Workbench.md index 37718a3c44..4dca70c816 100644 --- a/wiki/translations/zh-cn/Image_Workbench.md +++ b/wiki/translations/zh-cn/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/zh-cn - - -Image workbench icon +# Image workbench icon Image Workbench/zh-cn ## 简介 @@ -42,3 +39,6 @@ }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Import_Export.md b/wiki/translations/zh-cn/Import_Export.md index 4c27ab0ea6..67f03ea220 100644 --- a/wiki/translations/zh-cn/Import_Export.md +++ b/wiki/translations/zh-cn/Import_Export.md @@ -1,9 +1,4 @@ # Import Export/zh-cn - - - - - ## Introduction @@ -82,3 +77,6 @@ See the following pages for additional information: [Category:File\_Formats](Category:File_Formats.md) + +--- +[documentation index](../README.md) > [Import](Import_Workbench.md) > Import Export/zh-cn diff --git a/wiki/translations/zh-cn/Inspection_Workbench.md b/wiki/translations/zh-cn/Inspection_Workbench.md index d52326a6e9..edf73f92c4 100644 --- a/wiki/translations/zh-cn/Inspection_Workbench.md +++ b/wiki/translations/zh-cn/Inspection_Workbench.md @@ -1,7 +1,4 @@ -# Inspection Workbench/zh-cn - - -Inspection workbench icon +# Inspection workbench icon Inspection Workbench/zh-cn ## Introduction @@ -27,3 +24,6 @@ Alternatively, use the macro Inspection Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Install_on_Linux.md b/wiki/translations/zh-cn/Install_on_Linux.md index 3d3a80d3ba..b3d86ef608 100644 --- a/wiki/translations/zh-cn/Install_on_Linux.md +++ b/wiki/translations/zh-cn/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/zh-cn 1. REDIRECT [Installing\_on\_Linux/zh-cn](Installing_on_Linux/zh-cn.md) + +--- +[documentation index](../README.md) > Install on Linux/zh-cn diff --git a/wiki/translations/zh-cn/Install_on_Mac.md b/wiki/translations/zh-cn/Install_on_Mac.md index 4518f3fe87..b71bac9947 100644 --- a/wiki/translations/zh-cn/Install_on_Mac.md +++ b/wiki/translations/zh-cn/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/zh-cn 1. REDIRECT [Installing\_on\_Mac/zh-cn](Installing_on_Mac/zh-cn.md) + +--- +[documentation index](../README.md) > Install on Mac/zh-cn diff --git a/wiki/translations/zh-cn/Install_on_Unix.md b/wiki/translations/zh-cn/Install_on_Unix.md index ebb54e5789..fd5d13d804 100644 --- a/wiki/translations/zh-cn/Install_on_Unix.md +++ b/wiki/translations/zh-cn/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/zh-cn 1. REDIRECT [Installing\_on\_Linux/zh-cn](Installing_on_Linux/zh-cn.md) + +--- +[documentation index](../README.md) > Install on Unix/zh-cn diff --git a/wiki/translations/zh-cn/Install_on_Windows.md b/wiki/translations/zh-cn/Install_on_Windows.md index b83bf23523..a29fc64c08 100644 --- a/wiki/translations/zh-cn/Install_on_Windows.md +++ b/wiki/translations/zh-cn/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/zh-cn 1. REDIRECT [Installing\_on\_Windows/zh-cn](Installing_on_Windows/zh-cn.md) + +--- +[documentation index](../README.md) > Install on Windows/zh-cn diff --git a/wiki/translations/zh-cn/Installing.md b/wiki/translations/zh-cn/Installing.md index 10a64fcf01..4207a74def 100644 --- a/wiki/translations/zh-cn/Installing.md +++ b/wiki/translations/zh-cn/Installing.md @@ -1,2 +1,5 @@ # Installing/zh-cn 1. REDIRECT [Installing\_additional\_components/zh-cn](Installing_additional_components/zh-cn.md) + +--- +[documentation index](../README.md) > Installing/zh-cn diff --git a/wiki/translations/zh-cn/Installing_additional_components.md b/wiki/translations/zh-cn/Installing_additional_components.md index 3423495b15..1e880cabac 100644 --- a/wiki/translations/zh-cn/Installing_additional_components.md +++ b/wiki/translations/zh-cn/Installing_additional_components.md @@ -1,7 +1,4 @@ # Installing additional components/zh-cn - - -
@@ -301,3 +298,6 @@ Z88是另一种FEM程序,内含网格生成器、求解器与转换器,用
[Category:User Documentation/zh-cn](Category:User_Documentation/zh-cn.md) + +--- +[documentation index](../README.md) > Installing additional components/zh-cn diff --git a/wiki/translations/zh-cn/Installing_on_Linux.md b/wiki/translations/zh-cn/Installing_on_Linux.md index d690b5170e..89283aa746 100644 --- a/wiki/translations/zh-cn/Installing_on_Linux.md +++ b/wiki/translations/zh-cn/Installing_on_Linux.md @@ -1,7 +1,4 @@ # Installing on Linux/zh-cn - - -
@@ -389,3 +386,6 @@ Once you\'ve got FreeCAD installed, it\'s time to [get started](Getting_started. [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/zh-cn diff --git a/wiki/translations/zh-cn/Installing_on_Mac.md b/wiki/translations/zh-cn/Installing_on_Mac.md index da82af1430..913bab664a 100644 --- a/wiki/translations/zh-cn/Installing_on_Mac.md +++ b/wiki/translations/zh-cn/Installing_on_Mac.md @@ -1,10 +1,4 @@ # Installing on Mac/zh-cn - - - - - -
FreeCAD 通过安装器在 Mac OS X 上安装只需要一步。 @@ -73,5 +67,5 @@ The FreeCAD installer is provided as a app package (.app) enclosed in a disk ima
- - +--- +[documentation index](../README.md) > Installing on Mac/zh-cn diff --git a/wiki/translations/zh-cn/Installing_on_Windows.md b/wiki/translations/zh-cn/Installing_on_Windows.md index 679401c660..e4b3b6ba01 100644 --- a/wiki/translations/zh-cn/Installing_on_Windows.md +++ b/wiki/translations/zh-cn/Installing_on_Windows.md @@ -1,9 +1,4 @@ # Installing on Windows/zh-cn - - - - - 最简单的把 FreeCAD 安装到 Windows的方式是下面的安装器: @@ -235,5 +230,5 @@ FreeCAD is running, but it has been reported that the OpenGL display does not wo
- - +--- +[documentation index](../README.md) > Installing on Windows/zh-cn diff --git a/wiki/translations/zh-cn/Interface_Customization.md b/wiki/translations/zh-cn/Interface_Customization.md index 7bcde5d480..8b70e90a88 100644 --- a/wiki/translations/zh-cn/Interface_Customization.md +++ b/wiki/translations/zh-cn/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/zh-cn - - - - - - {{TOCright}} ## Introduction @@ -291,4 +285,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/zh-cn diff --git a/wiki/translations/zh-cn/Introduction_to_Python.md b/wiki/translations/zh-cn/Introduction_to_Python.md index f1eb2ae664..558693298f 100644 --- a/wiki/translations/zh-cn/Introduction_to_Python.md +++ b/wiki/translations/zh-cn/Introduction_to_Python.md @@ -1,7 +1,4 @@ # Introduction to Python/zh-cn - - - {{TOCright}} ## Introduction @@ -925,3 +922,6 @@ dir() }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Introduction to Python/zh-cn diff --git a/wiki/translations/zh-cn/Licence.md b/wiki/translations/zh-cn/Licence.md index 683cca28ed..92df86bf49 100644 --- a/wiki/translations/zh-cn/Licence.md +++ b/wiki/translations/zh-cn/Licence.md @@ -1,10 +1,4 @@ # Licence/zh-cn - - - - - - {{TOCright}} ## FreeCAD 中使用的许可证 @@ -85,3 +79,6 @@ FreeCAD是一个库和一个应用的混合体,所以要求GPL协议就显得 [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Licence/zh-cn diff --git a/wiki/translations/zh-cn/List_of_Commands.md b/wiki/translations/zh-cn/List_of_Commands.md index fddd26803c..50c151a31b 100644 --- a/wiki/translations/zh-cn/List_of_Commands.md +++ b/wiki/translations/zh-cn/List_of_Commands.md @@ -1,2 +1,5 @@ # List of Commands/zh-cn 1. REDIRECT [:Category:Command Reference/zh-cn](:Category:Command_Reference/zh-cn.md) + +--- +[documentation index](../README.md) > List of Commands/zh-cn diff --git a/wiki/translations/zh-cn/Macros.md b/wiki/translations/zh-cn/Macros.md index cda2c7d677..c34003fa6f 100644 --- a/wiki/translations/zh-cn/Macros.md +++ b/wiki/translations/zh-cn/Macros.md @@ -1,7 +1,4 @@ # Macros/zh-cn - - - {{TOCright}} ## 简介 @@ -144,3 +141,6 @@ You can manually install extensions, however, it is much simpler to just use the }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) [Category:Macros](Category:Macros.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Macros/zh-cn diff --git a/wiki/translations/zh-cn/Main_Page.md b/wiki/translations/zh-cn/Main_Page.md index d414209663..d7158f96b0 100644 --- a/wiki/translations/zh-cn/Main_Page.md +++ b/wiki/translations/zh-cn/Main_Page.md @@ -1,7 +1,4 @@ # Main Page/zh-cn - - -
## 介绍 @@ -94,3 +91,6 @@ FreeCAD 可以用 [CMake](https://cmake.org/) 在所有平台上编译。源代 [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/zh-cn diff --git a/wiki/translations/zh-cn/Manual:All_workbenches_at_a_glance.md b/wiki/translations/zh-cn/Manual:All_workbenches_at_a_glance.md index 5c133aeb1f..d5ee668e13 100644 --- a/wiki/translations/zh-cn/Manual:All_workbenches_at_a_glance.md +++ b/wiki/translations/zh-cn/Manual:All_workbenches_at_a_glance.md @@ -1,10 +1,4 @@ # Manual:All workbenches at a glance/zh-cn - - - - - - {{Manual:TOC/zh-cn}} @@ -214,6 +208,5 @@ The Drawing Workbench handles the creation and manipulation of 2D drawing sheets
- - - +--- +[documentation index](../README.md) > Manual:All workbenches at a glance/zh-cn diff --git a/wiki/translations/zh-cn/Manual:Import_and_export_to_other_filetypes.md b/wiki/translations/zh-cn/Manual:Import_and_export_to_other_filetypes.md index 12c17dd3ec..a764ce022c 100644 --- a/wiki/translations/zh-cn/Manual:Import_and_export_to_other_filetypes.md +++ b/wiki/translations/zh-cn/Manual:Import_and_export_to_other_filetypes.md @@ -1,7 +1,4 @@ # Manual:Import and export to other filetypes/zh-cn - - - {{Manual:TOC/zh-cn}} FreeCAD 可以导入和导出多种类型的文件。下表列出了最重要的几种文件类型,并简要介绍了可用的功能。 @@ -61,3 +58,6 @@ FreeCAD 可以导入和导出多种类型的文件。下表列出了最重要的 [Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Import and export to other filetypes/zh-cn diff --git a/wiki/translations/zh-cn/Manual:Installing.md b/wiki/translations/zh-cn/Manual:Installing.md index 49f002c007..aa77d55a1f 100644 --- a/wiki/translations/zh-cn/Manual:Installing.md +++ b/wiki/translations/zh-cn/Manual:Installing.md @@ -1,7 +1,4 @@ # Manual:Installing/zh-cn - - -
@@ -132,3 +129,6 @@ FreeCAD 在 Windows,Mac OS 和 Linux 上行为一致。但是,平台不同
[Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Installing/zh-cn diff --git a/wiki/translations/zh-cn/Manual:Introduction.md b/wiki/translations/zh-cn/Manual:Introduction.md index e570204b41..dc25333905 100644 --- a/wiki/translations/zh-cn/Manual:Introduction.md +++ b/wiki/translations/zh-cn/Manual:Introduction.md @@ -1,7 +1,4 @@ # Manual:Introduction/zh-cn - - -
@@ -34,3 +31,5 @@
+--- +[documentation index](../README.md) > Manual:Introduction/zh-cn diff --git a/wiki/translations/zh-cn/Manual:Modeling_for_product_design.md b/wiki/translations/zh-cn/Manual:Modeling_for_product_design.md index 472fa25bf2..d38390d152 100644 --- a/wiki/translations/zh-cn/Manual:Modeling_for_product_design.md +++ b/wiki/translations/zh-cn/Manual:Modeling_for_product_design.md @@ -1,7 +1,4 @@ # Manual:Modeling for product design/zh-cn - - - {{Manual:TOC/zh-cn}} [产品设计](https://en.wikipedia.org/wiki/Product_design)最初是商业术语,但在 3D 领域,通常意味着建模的时候,心里想着将来 [3D 打印](https://en.wikipedia.org/wiki/3D_printing),或更一般地说,由机器(例如 3D 打印机或 [CNC 机床](https://en.wikipedia.org/wiki/Numerical_control))制造出来。 @@ -155,3 +152,6 @@ But the best of both worlds also exists, which is the [Assembly2 Workbench](http [Category:Tutorials/zh-cn](Category:Tutorials/zh-cn.md) + +--- +[documentation index](../README.md) > Manual:Modeling for product design/zh-cn diff --git a/wiki/translations/zh-cn/Manual:Navigating_in_the_3D_view.md b/wiki/translations/zh-cn/Manual:Navigating_in_the_3D_view.md index 5005c1abcc..e3b0c272b4 100644 --- a/wiki/translations/zh-cn/Manual:Navigating_in_the_3D_view.md +++ b/wiki/translations/zh-cn/Manual:Navigating_in_the_3D_view.md @@ -1,7 +1,4 @@ # Manual:Navigating in the 3D view/zh-cn - - -
@@ -138,3 +135,5 @@ FreeCAD 的 3D 空间是[欧几里德空间](https://en.wikipedia.org/wiki/Eucli
+--- +[documentation index](../README.md) > Manual:Navigating in the 3D view/zh-cn diff --git a/wiki/translations/zh-cn/Manual:Parametric_objects.md b/wiki/translations/zh-cn/Manual:Parametric_objects.md index b2907229ae..89a80b57a4 100644 --- a/wiki/translations/zh-cn/Manual:Parametric_objects.md +++ b/wiki/translations/zh-cn/Manual:Parametric_objects.md @@ -1,7 +1,4 @@ # Manual:Parametric objects/zh-cn - - -
@@ -65,3 +62,6 @@ FreeCAD 中的参数对象实际上是一小段程序,只要其中一个参数
[Category:Poweruser Documentation](Category:Poweruser_Documentation.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Poweruser Documentation](Category:Poweruser Documentation.md) > Manual:Parametric objects/zh-cn diff --git a/wiki/translations/zh-cn/Manual:Preparing_models_for_3D_printing.md b/wiki/translations/zh-cn/Manual:Preparing_models_for_3D_printing.md index 5241e4479e..ee1ae72a16 100644 --- a/wiki/translations/zh-cn/Manual:Preparing_models_for_3D_printing.md +++ b/wiki/translations/zh-cn/Manual:Preparing_models_for_3D_printing.md @@ -1,7 +1,4 @@ # Manual:Preparing models for 3D printing/zh-cn - - -
@@ -151,3 +148,6 @@ There are many applications available to simulate the real cutting, one of them
[Category:Path](Category:Path.md) [Category:Mesh](Category:Mesh.md) [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Path](Category:Path.md) > Manual:Preparing models for 3D printing/zh-cn diff --git a/wiki/translations/zh-cn/Manual:Summary.md b/wiki/translations/zh-cn/Manual:Summary.md index 60eecf2f3f..08992c9648 100644 --- a/wiki/translations/zh-cn/Manual:Summary.md +++ b/wiki/translations/zh-cn/Manual:Summary.md @@ -57,3 +57,6 @@ There is another table of contents for the [FreeCAD **Online Help** system](Onli [Category:Manual](Category:Manual.md) + +--- +[documentation index](../README.md) > [Manual](Category:Manual.md) > Manual:Summary/zh-cn diff --git a/wiki/translations/zh-cn/Manual:The_FreeCAD_Interface.md b/wiki/translations/zh-cn/Manual:The_FreeCAD_Interface.md index bac4f3c5d9..121eb68ea6 100644 --- a/wiki/translations/zh-cn/Manual:The_FreeCAD_Interface.md +++ b/wiki/translations/zh-cn/Manual:The_FreeCAD_Interface.md @@ -1,7 +1,4 @@ # Manual:The FreeCAD Interface/zh-cn - - -
@@ -102,3 +99,5 @@ FreeCAD 的界面可深度自定义。所有面板和工具栏都可以移动到
+--- +[documentation index](../README.md) > Manual:The FreeCAD Interface/zh-cn diff --git a/wiki/translations/zh-cn/Manual:The_FreeCAD_document.md b/wiki/translations/zh-cn/Manual:The_FreeCAD_document.md index 19fd026b6a..5a86684601 100644 --- a/wiki/translations/zh-cn/Manual:The_FreeCAD_document.md +++ b/wiki/translations/zh-cn/Manual:The_FreeCAD_document.md @@ -1,10 +1,4 @@ # Manual:The FreeCAD document/zh-cn - - - - - - {{Manual:TOC/zh-cn}} 一份 FreeCAD 文件包含了场景中的所有对象。它可以包含任何工作台所创建的对象或它们的组合。因而你可以在工作台之间自由切换,但是仍在同一份 FreeCAD 文档上工作。当你保存你的工作成果时,这份 FreeCAD 文档便会被保存到磁盘中。可以在 FreeCAD 中同时打开多份文档,也可以为同一份文档开启多个视图。 @@ -32,6 +26,5 @@ FreeCAD 文档以 .FcStd 扩展名保存。这是一种基于 zip 的复合格 - [FreeCAD 文档结构](Document_structure.md) - [文件格式 FCStd](File_Format_FCStd.md) - - - +--- +[documentation index](../README.md) > Manual:The FreeCAD document/zh-cn diff --git a/wiki/translations/zh-cn/Manual:Traditional_2D_drafting.md b/wiki/translations/zh-cn/Manual:Traditional_2D_drafting.md index 096e1d5998..fd70ec80fb 100644 --- a/wiki/translations/zh-cn/Manual:Traditional_2D_drafting.md +++ b/wiki/translations/zh-cn/Manual:Traditional_2D_drafting.md @@ -1,7 +1,4 @@ # Manual:Traditional 2D drafting/zh-cn - - -
@@ -213,3 +210,6 @@ Draft 工作台虽然继承了传统 2D CAD 的工作方式,但并不局限于
[Category:Tutorials](Category:Tutorials.md) [Category:Draft](Category:Draft.md) + +--- +[documentation index](../README.md) > [Tutorials](Category:Tutorials.md) > Manual:Traditional 2D drafting/zh-cn diff --git a/wiki/translations/zh-cn/Manual:Traditional_modeling,_the_CSG_way.md b/wiki/translations/zh-cn/Manual:Traditional_modeling,_the_CSG_way.md index 013e56ed01..fab89e73be 100644 --- a/wiki/translations/zh-cn/Manual:Traditional_modeling,_the_CSG_way.md +++ b/wiki/translations/zh-cn/Manual:Traditional_modeling,_the_CSG_way.md @@ -1,7 +1,4 @@ # Manual:Traditional modeling, the CSG way/zh-cn - - - {{Manual:TOC/zh-cn}} CSG 代表[构造实体几何](https://en.wikipedia.org/wiki/Constructive_solid_geometry),描述了使用实体 3D 几何的最基本方式,即使用诸如并集、差集、或交集之类的布尔运算,向实体对象添加和移除部分实体,达成创建复杂对象的目的。 @@ -176,3 +173,6 @@ FreeCAD 的另一个特点是 3D 对象的概念和 3D 操作的概念 倾向于 [Category:Tutorials/zh-cn](Category:Tutorials/zh-cn.md) + +--- +[documentation index](../README.md) > Manual:Traditional modeling, the CSG way/zh-cn diff --git a/wiki/translations/zh-cn/Manual:What_is_FreeCAD.md b/wiki/translations/zh-cn/Manual:What_is_FreeCAD.md index 3e114be442..aa419ce42d 100644 --- a/wiki/translations/zh-cn/Manual:What_is_FreeCAD.md +++ b/wiki/translations/zh-cn/Manual:What_is_FreeCAD.md @@ -1,7 +1,4 @@ # Manual:What is FreeCAD/zh-cn - - -
@@ -40,3 +37,5 @@ FreeCAD 的官方网站是
+--- +[documentation index](../README.md) > Manual:What is FreeCAD/zh-cn diff --git a/wiki/translations/zh-cn/Mesh_Module.md b/wiki/translations/zh-cn/Mesh_Module.md index ebd198e5e9..ce68c746c8 100644 --- a/wiki/translations/zh-cn/Mesh_Module.md +++ b/wiki/translations/zh-cn/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/zh-cn 1. REDIRECT [Mesh Workbench/zh-cn](Mesh_Workbench/zh-cn.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/zh-cn diff --git a/wiki/translations/zh-cn/Mesh_Scripting.md b/wiki/translations/zh-cn/Mesh_Scripting.md index 835f4bc777..89b99e87f5 100644 --- a/wiki/translations/zh-cn/Mesh_Scripting.md +++ b/wiki/translations/zh-cn/Mesh_Scripting.md @@ -1,7 +1,4 @@ # Mesh Scripting/zh-cn - - - {{TOCright}} @@ -172,3 +169,6 @@ An extensive, though hard to use, source of mesh related scripting are the unit }} {{Mesh Tools navi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Scripting/zh-cn diff --git a/wiki/translations/zh-cn/Mesh_Workbench.md b/wiki/translations/zh-cn/Mesh_Workbench.md index 52cd6c5d6b..8e7069ae0f 100644 --- a/wiki/translations/zh-cn/Mesh_Workbench.md +++ b/wiki/translations/zh-cn/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/zh-cn - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench/zh-cn {{TOCright}} @@ -111,3 +105,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Module_Creation.md b/wiki/translations/zh-cn/Module_Creation.md index fe6a10a328..fb34a659d5 100644 --- a/wiki/translations/zh-cn/Module_Creation.md +++ b/wiki/translations/zh-cn/Module_Creation.md @@ -1,2 +1,5 @@ # Module Creation/zh-cn 1. REDIRECT [Workbench\_creation](Workbench_creation.md) + +--- +[documentation index](../README.md) > Module Creation/zh-cn diff --git a/wiki/translations/zh-cn/Mouse_Model.md b/wiki/translations/zh-cn/Mouse_Model.md index f83610251d..d98ab7b690 100644 --- a/wiki/translations/zh-cn/Mouse_Model.md +++ b/wiki/translations/zh-cn/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/zh-cn 1. REDIRECT [Mouse\_navigation/zh-cn](Mouse_navigation/zh-cn.md) + +--- +[documentation index](../README.md) > Mouse Model/zh-cn diff --git a/wiki/translations/zh-cn/Mouse_navigation.md b/wiki/translations/zh-cn/Mouse_navigation.md index 5410594fcb..cb02a4f857 100644 --- a/wiki/translations/zh-cn/Mouse_navigation.md +++ b/wiki/translations/zh-cn/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/zh-cn - - - - - - {{TOCright}} ## Overview @@ -333,5 +327,5 @@ The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mous {{docnav|Getting started/zh-cn|Document structure/zh-cn}} - - +--- +[documentation index](../README.md) > Mouse navigation/zh-cn diff --git a/wiki/translations/zh-cn/Navigation_Cube.md b/wiki/translations/zh-cn/Navigation_Cube.md index 44469fb699..dff6833f46 100644 --- a/wiki/translations/zh-cn/Navigation_Cube.md +++ b/wiki/translations/zh-cn/Navigation_Cube.md @@ -1,7 +1,4 @@ # Navigation Cube/zh-cn - - -
@@ -98,3 +95,6 @@ For more advanced configuration, refer to the [CubeMenu](Interface_Customization [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Navigation Cube/zh-cn diff --git a/wiki/translations/zh-cn/Online_Help_Startpage.md b/wiki/translations/zh-cn/Online_Help_Startpage.md index d9ac16cdc1..023977a606 100644 --- a/wiki/translations/zh-cn/Online_Help_Startpage.md +++ b/wiki/translations/zh-cn/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/zh-cn - - ![150](images/Crystal_Clear_app_tutorials.png ) ## 欢迎来到 FreeCAD 在线帮助 @@ -46,3 +44,6 @@ [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/zh-cn diff --git a/wiki/translations/zh-cn/Online_Help_Toc.md b/wiki/translations/zh-cn/Online_Help_Toc.md index 89fa7c78de..7dc2587e2b 100644 --- a/wiki/translations/zh-cn/Online_Help_Toc.md +++ b/wiki/translations/zh-cn/Online_Help_Toc.md @@ -1,7 +1,4 @@ # Online Help Toc/zh-cn - - -
这是用于自动构建 FreeCAD **在线帮助**系统的目录。这份手册也有一份可打印版本在 [发布页](https://github.com/FreeCAD/FreeCAD/releases)。 @@ -167,3 +164,6 @@ [Category:Documentation/zh-cn](Category:Documentation/zh-cn.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/zh-cn diff --git a/wiki/translations/zh-cn/OpenSCAD_Module.md b/wiki/translations/zh-cn/OpenSCAD_Module.md index df0aec8d14..78f010c089 100644 --- a/wiki/translations/zh-cn/OpenSCAD_Module.md +++ b/wiki/translations/zh-cn/OpenSCAD_Module.md @@ -1,2 +1,5 @@ # OpenSCAD Module/zh-cn 1. REDIRECT [OpenSCAD\_Workbench/zh-cn](OpenSCAD_Workbench/zh-cn.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Module/zh-cn diff --git a/wiki/translations/zh-cn/OpenSCAD_Workbench.md b/wiki/translations/zh-cn/OpenSCAD_Workbench.md index 63c056ab96..1e20a376ba 100644 --- a/wiki/translations/zh-cn/OpenSCAD_Workbench.md +++ b/wiki/translations/zh-cn/OpenSCAD_Workbench.md @@ -1,10 +1,4 @@ -# OpenSCAD Workbench/zh-cn - - - - - -OpenSCAD workbench icon +# OpenSCAD workbench icon OpenSCAD Workbench/zh-cn ## Introduction @@ -108,3 +102,6 @@ If FreeCAD crashes when importing CSG, it is strongly recommended that you enabl }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/zh-cn diff --git a/wiki/translations/zh-cn/PartDesign_Workbench.md b/wiki/translations/zh-cn/PartDesign_Workbench.md index aa5cd9949d..5c0ae26495 100644 --- a/wiki/translations/zh-cn/PartDesign_Workbench.md +++ b/wiki/translations/zh-cn/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/zh-cn - - -PartDesign workbench icon +# PartDesign workbench icon PartDesign Workbench/zh-cn {{TOCright}} @@ -223,3 +220,6 @@ Some additional functionality found in the Part Design menu: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Part_Box.md b/wiki/translations/zh-cn/Part_Box.md index 10b9200d8f..428013dc60 100644 --- a/wiki/translations/zh-cn/Part_Box.md +++ b/wiki/translations/zh-cn/Part_Box.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Box/zh-cn + ## 概述 利用[零件工作台(Part Workbench)中的立方体命令可向处于活动状态的文档中插入一个参数化](Part_Workbench.md) [长方体](http://en.wikipedia.org/wiki/Cuboid#Rectangular_cuboid)几何图元。默认情况下,此立方体命令会在原点处插入一个10x10x10 mm且附有\"cube\"标签的立方体。在添加立方体对象后还可以修改这些参数。 @@ -83,8 +85,5 @@ FreeCAD.ActiveDocument.myBox.Height = 30 FreeCAD.ActiveDocument.myBox.Placement = FreeCAD.Placement(FreeCAD.Vector(4, 6, 3), FreeCAD.Rotation(30, 45, 10)) ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Box/zh-cn diff --git a/wiki/translations/zh-cn/Part_Builder.md b/wiki/translations/zh-cn/Part_Builder.md index 454b1aeb53..51360a3e79 100644 --- a/wiki/translations/zh-cn/Part_Builder.md +++ b/wiki/translations/zh-cn/Part_Builder.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Builder/zh-cn + ## Description @@ -118,8 +120,5 @@ This tool can create the following objects:
- - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Builder/zh-cn diff --git a/wiki/translations/zh-cn/Part_Cone.md b/wiki/translations/zh-cn/Part_Cone.md index 2e68925d1e..26d47eeb24 100644 --- a/wiki/translations/zh-cn/Part_Cone.md +++ b/wiki/translations/zh-cn/Part_Cone.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Cone/zh-cn + ## Description @@ -76,8 +78,5 @@ The cone properties can later be edited, either in the [Property editor](Propert - **Angle**: Number of degrees of the arc or circles defining the upper and lower faces of the truncated cone. The default 360° creates circular faces, a lower value will create a portion of a cone as defined by upper and lower faces each with edges defined by an arc of the number of degrees and two radii. - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cone/zh-cn diff --git a/wiki/translations/zh-cn/Part_CreatePrimitives.md b/wiki/translations/zh-cn/Part_CreatePrimitives.md index 82718a489b..54e52bc069 100644 --- a/wiki/translations/zh-cn/Part_CreatePrimitives.md +++ b/wiki/translations/zh-cn/Part_CreatePrimitives.md @@ -1,2 +1,5 @@ # Part CreatePrimitives/zh-cn 1. REDIRECT [Part\_Primitives/zh-cn](Part_Primitives/zh-cn.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part CreatePrimitives/zh-cn diff --git a/wiki/translations/zh-cn/Part_Cylinder.md b/wiki/translations/zh-cn/Part_Cylinder.md index 2b915d75be..4801647d82 100644 --- a/wiki/translations/zh-cn/Part_Cylinder.md +++ b/wiki/translations/zh-cn/Part_Cylinder.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Cylinder/zh-cn + ## Description @@ -57,10 +59,7 @@ The cylinder properties can later be edited, either in the [Property editor](Pro - **First Angle**: Angle in first direction. (v0.20) -- **Second Angle**: Angle in second direction. (v0.20) - - +- **Second Angle**: Angle in second direction. (v0.20) - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Cylinder/zh-cn diff --git a/wiki/translations/zh-cn/Part_Extrude.md b/wiki/translations/zh-cn/Part_Extrude.md index d8b4e55979..4a74c7d7e3 100644 --- a/wiki/translations/zh-cn/Part_Extrude.md +++ b/wiki/translations/zh-cn/Part_Extrude.md @@ -6,6 +6,8 @@ SeeAlso:[Draft Trimex](Draft_Trimex.md) --- +# Part Extrude/zh-cn + ![600px](images/Part_Extrude_demo.png) ## 描述 @@ -170,8 +172,5 @@ PartDesign Pad也是一种挤型功能,但是与本页描述的挤型工具大 除了实体与复合实体(compsolid)以外,零件挤型工具能够对任意有着零件几何体(OCC形状)的对象执行挤压成型操作。另外,此工具还不能对其他对象上的单体面(individual face)进行挤型。而PartDesign Pad则只能接受草图Sketch(以及其他对象类型中的一小部分)或者实体上的单个面作为轮廓。 - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Extrude/zh-cn diff --git a/wiki/translations/zh-cn/Part_Module.md b/wiki/translations/zh-cn/Part_Module.md index 074f739844..b2883d1b65 100644 --- a/wiki/translations/zh-cn/Part_Module.md +++ b/wiki/translations/zh-cn/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/zh-cn - - - - - -Part workbench icon +# Part workbench icon Part Module/zh-cn {{TOCright}} @@ -347,3 +341,6 @@ These tools perform boolean operations. [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/zh-cn diff --git a/wiki/translations/zh-cn/Part_Primitives.md b/wiki/translations/zh-cn/Part_Primitives.md index 0313545b9e..f7b6dbd5ab 100644 --- a/wiki/translations/zh-cn/Part_Primitives.md +++ b/wiki/translations/zh-cn/Part_Primitives.md @@ -6,6 +6,8 @@ SeeAlso:[Part Shapebuilder](Part_Builder.md) --- +# Part Primitives/zh-cn + ## Description @@ -112,8 +114,5 @@ It can be used as input to the program as well. freecad $INSTALL_DIR/Mod/Part/parttests/part_test_objects.py ``` - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Primitives/zh-cn diff --git a/wiki/translations/zh-cn/Part_Shapebuilder.md b/wiki/translations/zh-cn/Part_Shapebuilder.md index a3a3ab8b10..804dd327a7 100644 --- a/wiki/translations/zh-cn/Part_Shapebuilder.md +++ b/wiki/translations/zh-cn/Part_Shapebuilder.md @@ -1,2 +1,5 @@ # Part Shapebuilder/zh-cn 1. REDIRECT [Part\_Builder/zh-cn](Part_Builder/zh-cn.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Shapebuilder/zh-cn diff --git a/wiki/translations/zh-cn/Part_Sphere.md b/wiki/translations/zh-cn/Part_Sphere.md index 4f24db5d4a..399b95b4a6 100644 --- a/wiki/translations/zh-cn/Part_Sphere.md +++ b/wiki/translations/zh-cn/Part_Sphere.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Sphere/zh-cn + ## Description @@ -61,8 +63,5 @@ The properties of the object can be edited, either in the [Property editor](Prop - - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Sphere/zh-cn diff --git a/wiki/translations/zh-cn/Part_Torus.md b/wiki/translations/zh-cn/Part_Torus.md index 635cda40a3..f568df991a 100644 --- a/wiki/translations/zh-cn/Part_Torus.md +++ b/wiki/translations/zh-cn/Part_Torus.md @@ -6,6 +6,8 @@ SeeAlso:[Part Primitives](Part_Primitives.md) --- +# Part Torus/zh-cn + ## Description @@ -79,8 +81,5 @@ The angle parameters (angle1, angle2, angle3), as well as the radius parameters
- - - - - +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Torus/zh-cn diff --git a/wiki/translations/zh-cn/Part_Workbench.md b/wiki/translations/zh-cn/Part_Workbench.md index 21889553d1..ac0c35c88f 100644 --- a/wiki/translations/zh-cn/Part_Workbench.md +++ b/wiki/translations/zh-cn/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/zh-cn 1. REDIRECT [Part\_Module/zh-cn](Part_Module/zh-cn.md) + +--- +[documentation index](../README.md) > Part Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Path_Workbench.md b/wiki/translations/zh-cn/Path_Workbench.md index 3d666ab4c8..f20edf9e58 100644 --- a/wiki/translations/zh-cn/Path_Workbench.md +++ b/wiki/translations/zh-cn/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/zh-cn - - - - - -Path workbench icon +# Path workbench icon Path Workbench/zh-cn {{TOCright}} @@ -413,3 +407,6 @@ See [Path scripting](Path_scripting.md). }} [分类:用户文档](Category:User_Documentation/zh-cn.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Placement.md b/wiki/translations/zh-cn/Placement.md index c6e0552194..e788bd1961 100644 --- a/wiki/translations/zh-cn/Placement.md +++ b/wiki/translations/zh-cn/Placement.md @@ -1,7 +1,4 @@ # Placement/zh-cn - - -
## 概述 @@ -286,5 +283,5 @@ To make the placement of \"Sketch\" equal to that of \"Cylinder\", you would ent - This tutorial: [Aeroplane](Aeroplane.md) covers the mechanics of changing an object\'s Placement extensively. - - +--- +[documentation index](../README.md) > Placement/zh-cn diff --git a/wiki/translations/zh-cn/Plot_Module.md b/wiki/translations/zh-cn/Plot_Module.md index 950f6f3a15..8f4e5f3370 100644 --- a/wiki/translations/zh-cn/Plot_Module.md +++ b/wiki/translations/zh-cn/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/zh-cn - - -Plot workbench icon +# Plot workbench icon Plot Module/zh-cn {{TOCright}} @@ -64,3 +61,6 @@ Since the Plot Workbench is a layer on top of `matplotlib`, you are free to use }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/zh-cn diff --git a/wiki/translations/zh-cn/Plot_Workbench.md b/wiki/translations/zh-cn/Plot_Workbench.md index 0b0eeae97e..dab520624b 100644 --- a/wiki/translations/zh-cn/Plot_Workbench.md +++ b/wiki/translations/zh-cn/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/zh-cn 1. REDIRECT [Plot\_Module/zh-cn](Plot_Module/zh-cn.md) + +--- +[documentation index](../README.md) > Plot Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Points_Module.md b/wiki/translations/zh-cn/Points_Module.md index 4669204b58..67db5bf8be 100644 --- a/wiki/translations/zh-cn/Points_Module.md +++ b/wiki/translations/zh-cn/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/zh-cn 1. REDIRECT [Points\_Workbench/zh-cn](Points_Workbench/zh-cn.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/zh-cn diff --git a/wiki/translations/zh-cn/Points_Workbench.md b/wiki/translations/zh-cn/Points_Workbench.md index e7d6fe2676..3319d2f056 100644 --- a/wiki/translations/zh-cn/Points_Workbench.md +++ b/wiki/translations/zh-cn/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/zh-cn - - - - - -Points workbench icon +# Points workbench icon Points Workbench/zh-cn ## 簡介 @@ -62,3 +56,6 @@ A point cloud is a collection of points in 3D space. A point cloud is generally }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Power_users_hub.md b/wiki/translations/zh-cn/Power_users_hub.md index ddfb2401b7..5b10b8307a 100644 --- a/wiki/translations/zh-cn/Power_users_hub.md +++ b/wiki/translations/zh-cn/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/zh-cn - +# Power users hub/zh-cn ------------------------------------------------------------------------ @@ -258,3 +257,6 @@ Related: [Exposing C++ to Python](Exposing_C%2B%2B_to_Python.md) }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/zh-cn diff --git a/wiki/translations/zh-cn/Preferences_Editor.md b/wiki/translations/zh-cn/Preferences_Editor.md index 9b0ca39977..161bbd079e 100644 --- a/wiki/translations/zh-cn/Preferences_Editor.md +++ b/wiki/translations/zh-cn/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/zh-cn - - - - - - {{TOCright}} ## Introduction @@ -776,3 +770,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/zh-cn diff --git a/wiki/translations/zh-cn/Property.md b/wiki/translations/zh-cn/Property.md index 68e5cd6d60..b80748d776 100644 --- a/wiki/translations/zh-cn/Property.md +++ b/wiki/translations/zh-cn/Property.md @@ -1,6 +1,4 @@ # Property/zh-cn - - ## Introduction @@ -158,3 +156,6 @@ They are imported and initialized in `[https://github.com/FreeCAD/FreeCAD/blob/9 }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/zh-cn diff --git a/wiki/translations/zh-cn/Property_editor.md b/wiki/translations/zh-cn/Property_editor.md index 4f45ac39bc..d5fb3cbc61 100644 --- a/wiki/translations/zh-cn/Property_editor.md +++ b/wiki/translations/zh-cn/Property_editor.md @@ -1,10 +1,4 @@ # Property editor/zh-cn - - - - - - {{TOCright}} @@ -334,4 +328,7 @@ print(obj.ViewObject.PropertiesList) {{Interface navi -}} {{Std Base navi}} +}} {{Std Base navi}} + +--- +[documentation index](../README.md) > Property editor/zh-cn diff --git a/wiki/translations/zh-cn/Python_scripting_tutorial.md b/wiki/translations/zh-cn/Python_scripting_tutorial.md index f3bd46f4df..de018ea2a9 100644 --- a/wiki/translations/zh-cn/Python_scripting_tutorial.md +++ b/wiki/translations/zh-cn/Python_scripting_tutorial.md @@ -1,7 +1,4 @@ # Python scripting tutorial/zh-cn - - - {{TOCright}} ## Introduction @@ -567,3 +564,6 @@ Now that you have a good understanding of the basics, where are we going to keep }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Python scripting tutorial/zh-cn diff --git a/wiki/translations/zh-cn/Ray_Tracing_Workbench.md b/wiki/translations/zh-cn/Ray_Tracing_Workbench.md index dfb1490f91..c1a45ea9de 100644 --- a/wiki/translations/zh-cn/Ray_Tracing_Workbench.md +++ b/wiki/translations/zh-cn/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/zh-cn 1. REDIRECT [Raytracing\_Workbench/zh-cn](Raytracing_Workbench/zh-cn.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Raytracing_Module.md b/wiki/translations/zh-cn/Raytracing_Module.md index c4d8647d46..7af904ee53 100644 --- a/wiki/translations/zh-cn/Raytracing_Module.md +++ b/wiki/translations/zh-cn/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/zh-cn 1. REDIRECT [Raytracing\_Workbench/zh-cn](Raytracing_Workbench/zh-cn.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/zh-cn diff --git a/wiki/translations/zh-cn/Raytracing_Workbench.md b/wiki/translations/zh-cn/Raytracing_Workbench.md index 7111f3c4ca..797d7d8d4a 100644 --- a/wiki/translations/zh-cn/Raytracing_Workbench.md +++ b/wiki/translations/zh-cn/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/zh-cn - - - **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. Nevertheless, the information in this page is generally useful for the new workbench, as both modules work basically in the same way. @@ -149,3 +146,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Release_notes_0.18.md b/wiki/translations/zh-cn/Release_notes_0.18.md index df690f13cc..19eb7c8889 100644 --- a/wiki/translations/zh-cn/Release_notes_0.18.md +++ b/wiki/translations/zh-cn/Release_notes_0.18.md @@ -1,6 +1,4 @@ # Release notes 0.18/zh-cn - - FreeCAD 0.18发布于2019年3月12日,您可从此[下载页获得它](Download.md)。本文为此版本中最有趣的一些变化的总结。而完整的变更列表可从[MantisBT bug追踪程序记录的FC 0.18版变更日志](https://www.freecadweb.org/tracker/changelog_page.php?version_id=78)处找到。 旧版FreeCAD的发布说明可从[特性列表处找到](Feature_list#Release_notes.md)。 @@ -220,3 +218,6 @@ Some of the new community modules that were actively developed during the 0.18 d - [Defeaturing Workbench](Defeaturing_Workbench.md) is intended for editing imported STEP models, removal of the selected features from the model. [Category:News](Category:News.md) [Category:Documentation](Category:Documentation.md) [Category:Releases](Category:Releases.md) + +--- +[documentation index](../README.md) > [News](Category:News.md) > Release notes 0.18/zh-cn diff --git a/wiki/translations/zh-cn/Reverse_Engineering_Workbench.md b/wiki/translations/zh-cn/Reverse_Engineering_Workbench.md index c2fd244bf9..032f566f1f 100644 --- a/wiki/translations/zh-cn/Reverse_Engineering_Workbench.md +++ b/wiki/translations/zh-cn/Reverse_Engineering_Workbench.md @@ -1,10 +1,4 @@ -# Reverse Engineering Workbench/zh-cn - - - - - -Reverse Engineering workbench icon +# Reverse Engineering workbench icon Reverse Engineering Workbench/zh-cn ## Introduction @@ -47,3 +41,6 @@ Link to appropriate threads discussing this workbench [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Robot_Workbench.md b/wiki/translations/zh-cn/Robot_Workbench.md index d3dccf4f61..746b0c58bd 100644 --- a/wiki/translations/zh-cn/Robot_Workbench.md +++ b/wiki/translations/zh-cn/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/zh-cn - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. @@ -131,3 +125,6 @@ See the [Robot API example](Robot_API_example.md) for a description of the funct }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Screenshots.md b/wiki/translations/zh-cn/Screenshots.md index 1bcdf0c304..b389b37a4b 100644 --- a/wiki/translations/zh-cn/Screenshots.md +++ b/wiki/translations/zh-cn/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/zh-cn - {{TOCright}} +{{TOCright}} 下面是几个显示 FreeCAD 不同部分的截图。它们不是以任何特定时间轴中排序的, 因此图像可能与您的实际版本不同。查看 FreeCAD 用户在 [截图论坛话题](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) 上提交的更多截图, 以及 [\"Show your project here!\" 用户案例论坛部分](http://forum.freecadweb.org/viewforum.php?f=24)。 @@ -238,3 +238,6 @@ FreeCAD 在控制台模式下运行 (没有 gui) 对话框以保存任意大小的图片。 [分类:用户文档](Category:User_Documentation/zh-cn.md) [Category:Screenshots/zh-cn](Category:Screenshots/zh-cn.md) + +--- +[documentation index](../README.md) > Screenshots/zh-cn diff --git a/wiki/translations/zh-cn/Scripted_objects.md b/wiki/translations/zh-cn/Scripted_objects.md index 615f7cfc50..2ff82a30e7 100644 --- a/wiki/translations/zh-cn/Scripted_objects.md +++ b/wiki/translations/zh-cn/Scripted_objects.md @@ -1,7 +1,4 @@ # Scripted objects/zh-cn - - - {{TOCright}} ## Introduction @@ -914,3 +911,6 @@ In addition to the examples presented here have a look at FreeCAD source code [s }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Scripted objects/zh-cn diff --git a/wiki/translations/zh-cn/Scripting.md b/wiki/translations/zh-cn/Scripting.md index c2d2f872a9..b4cbbe3145 100644 --- a/wiki/translations/zh-cn/Scripting.md +++ b/wiki/translations/zh-cn/Scripting.md @@ -1,2 +1,5 @@ # Scripting/zh-cn 1. REDIRECT [Power users hub/zh-cn](Power_users_hub/zh-cn.md) + +--- +[documentation index](../README.md) > Scripting/zh-cn diff --git a/wiki/translations/zh-cn/Ship_Workbench.md b/wiki/translations/zh-cn/Ship_Workbench.md index 2e530ef933..7f3ef1d77a 100644 --- a/wiki/translations/zh-cn/Ship_Workbench.md +++ b/wiki/translations/zh-cn/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/zh-cn - - -Ship workbench icon +# Ship workbench icon Ship Workbench/zh-cn {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_CompCreateArc.md b/wiki/translations/zh-cn/Sketcher_CompCreateArc.md index 08555fca61..956070295d 100644 --- a/wiki/translations/zh-cn/Sketcher_CompCreateArc.md +++ b/wiki/translations/zh-cn/Sketcher_CompCreateArc.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench.md) --- +# Sketcher CompCreateArc/zh-cn + ## 描述 **创建一条弧(Create an arc)**是草图工作台几何图形工具栏中的一个图标按钮,它集合了多种以拾取3个点创建一条弧的工具。点击此图标右侧的向下箭头会在下侧展开工具集,此时来选取其中的一种工具。 @@ -27,4 +29,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateArc/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_CompCreateCircle.md b/wiki/translations/zh-cn/Sketcher_CompCreateCircle.md index 50a82e8d60..ee90a869e5 100644 --- a/wiki/translations/zh-cn/Sketcher_CompCreateCircle.md +++ b/wiki/translations/zh-cn/Sketcher_CompCreateCircle.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench.md) --- +# Sketcher CompCreateCircle/zh-cn + ## 描述 **创建一个圆(Create an circle)**是草图工作台几何图形工具栏中的一个图标按钮,它集合了多种创建圆形的工具。点击此图标右侧的向下箭头会在下侧展开工具集,此时来选取其中的一种工具。 @@ -27,4 +29,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateCircle/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_CompCreateConic.md b/wiki/translations/zh-cn/Sketcher_CompCreateConic.md index 3661b2987f..d1652cc045 100644 --- a/wiki/translations/zh-cn/Sketcher_CompCreateConic.md +++ b/wiki/translations/zh-cn/Sketcher_CompCreateConic.md @@ -7,6 +7,8 @@ MenuLocation:None (toolbar only) --- +# Sketcher CompCreateConic/zh-cn +
@@ -40,4 +42,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CompCreateConic/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_Create3PointArc.md b/wiki/translations/zh-cn/Sketcher_Create3PointArc.md index e822a509ac..2b275f7101 100644 --- a/wiki/translations/zh-cn/Sketcher_Create3PointArc.md +++ b/wiki/translations/zh-cn/Sketcher_Create3PointArc.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Sketcher Create3PointArc/zh-cn + ## 描述 此工具通过用户拾取的3个点:弧上的起始点、终点以及弧上另一点来创建一条弧。 @@ -30,4 +32,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Create3PointArc/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_Create3PointCircle.md b/wiki/translations/zh-cn/Sketcher_Create3PointCircle.md index b3cd5f81f3..f34552b00c 100644 --- a/wiki/translations/zh-cn/Sketcher_Create3PointCircle.md +++ b/wiki/translations/zh-cn/Sketcher_Create3PointCircle.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Sketcher Create3PointCircle/zh-cn + ## 描述 @@ -41,4 +43,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Create3PointCircle/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_CreateArc.md b/wiki/translations/zh-cn/Sketcher_CreateArc.md index af94c8337f..5b6ea3c3ea 100644 --- a/wiki/translations/zh-cn/Sketcher_CreateArc.md +++ b/wiki/translations/zh-cn/Sketcher_CreateArc.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher Circle](Sketcher_CompCreateCircle.md) --- +# Sketcher CreateArc/zh-cn + ## 描述 此工具通过用户拾取的三个点:中点、圆周上的起始角度与圆周上的终点角度来绘制一条弧。 @@ -31,4 +33,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateArc/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_CreateCircle.md b/wiki/translations/zh-cn/Sketcher_CreateCircle.md index 842e607624..f26e0bce66 100644 --- a/wiki/translations/zh-cn/Sketcher_CreateCircle.md +++ b/wiki/translations/zh-cn/Sketcher_CreateCircle.md @@ -7,6 +7,8 @@ SeeAlso:[创建弧](Sketcher_CompCreateArc/zh-cn.md) --- +# Sketcher CreateCircle/zh-cn + ## 描述 本工具会根据用户拾取的两个点:中点与确定半径的点来绘制一个圆。 在开启此工具时,鼠标指针会变为一个附有红色圆形图标的白色十字。同时还会将当前的指针坐标实时显现在侧。 @@ -36,4 +38,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateCircle/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_CreateEllipseByCenter.md b/wiki/translations/zh-cn/Sketcher_CreateEllipseByCenter.md index a54dfaf787..64e00d136d 100644 --- a/wiki/translations/zh-cn/Sketcher_CreateEllipseByCenter.md +++ b/wiki/translations/zh-cn/Sketcher_CreateEllipseByCenter.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Ellipse by 3 Points](Sketcher_CreateEllipseBy3Points.md), [Sketcher Circle](Sketcher_CreateCircle.md), [Sketcher Arc of Ellipse](Sketcher_CreateArcOfEllipse.md) --- +# Sketcher CreateEllipseByCenter/zh-cn + ## 描述 本工具会根据用户拾取的三个点:中点、长半轴点与短半轴点来绘制一个椭圆。 在开启此工具时,鼠标指针会变为一个附有红色椭圆图标的白色十字。同时还会将当前的指针坐标实时显现在侧。 @@ -61,4 +63,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateEllipseByCenter/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_CreateLine.md b/wiki/translations/zh-cn/Sketcher_CreateLine.md index 350de1241d..9a0a27dbcb 100644 --- a/wiki/translations/zh-cn/Sketcher_CreateLine.md +++ b/wiki/translations/zh-cn/Sketcher_CreateLine.md @@ -7,6 +7,8 @@ SeeAlso:[Sketcher Polyline](Sketcher_CreatePolyline.md) --- +# Sketcher CreateLine/zh-cn + ## 描述 此工具会根据用户在3D视图中拾取的两个点来绘制一条线。 在开启此工具时,鼠标指针会变为具有一个红色线条图标的白色十字。侧面还会实时显示当前指针的坐标。 @@ -38,4 +40,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreateLine/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_CreatePoint.md b/wiki/translations/zh-cn/Sketcher_CreatePoint.md index 8275585a8c..4bd81a7f5a 100644 --- a/wiki/translations/zh-cn/Sketcher_CreatePoint.md +++ b/wiki/translations/zh-cn/Sketcher_CreatePoint.md @@ -5,6 +5,8 @@ Workbenches:[Sketcher](Sketcher_Workbench.md) --- +# Sketcher CreatePoint/zh-cn + ## 描述 通过此点工具可在当前的草图中创建一个点,而所创建的点可作为构造几何图形的元素。创建的点将一直作为构造要素,且不会在3D视图中显示出来。 @@ -37,4 +39,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher CreatePoint/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_Dialog.md b/wiki/translations/zh-cn/Sketcher_Dialog.md index 6273b0c866..09cf090b25 100644 --- a/wiki/translations/zh-cn/Sketcher_Dialog.md +++ b/wiki/translations/zh-cn/Sketcher_Dialog.md @@ -1,10 +1,4 @@ # Sketcher Dialog/zh-cn - - - - - -
\_\_TOC\_\_ @@ -217,4 +211,7 @@ You can set the following options: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Dialog/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_EditSketch.md b/wiki/translations/zh-cn/Sketcher_EditSketch.md index 8f69cb462c..8634974d4e 100644 --- a/wiki/translations/zh-cn/Sketcher_EditSketch.md +++ b/wiki/translations/zh-cn/Sketcher_EditSketch.md @@ -7,6 +7,8 @@ SeeAlso:[离开草图](Sketcher_LeaveSketch/zh-cn.md) --- +# Sketcher EditSketch/zh-cn + ## 描述 @@ -44,4 +46,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher EditSketch/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_LeaveSketch.md b/wiki/translations/zh-cn/Sketcher_LeaveSketch.md index 85a35b6d12..5d75973dd6 100644 --- a/wiki/translations/zh-cn/Sketcher_LeaveSketch.md +++ b/wiki/translations/zh-cn/Sketcher_LeaveSketch.md @@ -7,6 +7,8 @@ SeeAlso:[编辑草绘](Sketcher_EditSketch/zh-cn.md) --- +# Sketcher LeaveSketch/zh-cn + ## 描述 @@ -39,4 +41,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher LeaveSketch/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_MapSketch.md b/wiki/translations/zh-cn/Sketcher_MapSketch.md index 7f39735e7a..b24056f72c 100644 --- a/wiki/translations/zh-cn/Sketcher_MapSketch.md +++ b/wiki/translations/zh-cn/Sketcher_MapSketch.md @@ -7,6 +7,8 @@ SeeAlso:[创建草图](Sketcher_NewSketch/zh-cn.md) --- +# Sketcher MapSketch/zh-cn + ## Description @@ -76,4 +78,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MapSketch/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_MergeSketches.md b/wiki/translations/zh-cn/Sketcher_MergeSketches.md index 76552a0742..8f09aca55e 100644 --- a/wiki/translations/zh-cn/Sketcher_MergeSketches.md +++ b/wiki/translations/zh-cn/Sketcher_MergeSketches.md @@ -6,6 +6,8 @@ Version:0.15 --- +# Sketcher MergeSketches/zh-cn + ## 描述 将两个或两个以上的草图合而为一。 @@ -28,4 +30,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MergeSketches/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_MirrorSketch.md b/wiki/translations/zh-cn/Sketcher_MirrorSketch.md index 330349eabd..f0bb396ae2 100644 --- a/wiki/translations/zh-cn/Sketcher_MirrorSketch.md +++ b/wiki/translations/zh-cn/Sketcher_MirrorSketch.md @@ -6,6 +6,8 @@ Version:0.16 --- +# Sketcher MirrorSketch/zh-cn + ## 描述 沿x轴、y轴或原点镜像草图。 @@ -38,4 +40,7 @@ Notes: {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher MirrorSketch/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_Module.md b/wiki/translations/zh-cn/Sketcher_Module.md index e89a0cee61..a3f0a6a520 100644 --- a/wiki/translations/zh-cn/Sketcher_Module.md +++ b/wiki/translations/zh-cn/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/zh-cn 1. REDIRECT [Sketcher Workbench/zh-cn](Sketcher_Workbench/zh-cn.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_NewSketch.md b/wiki/translations/zh-cn/Sketcher_NewSketch.md index b90487a382..de28fec55b 100644 --- a/wiki/translations/zh-cn/Sketcher_NewSketch.md +++ b/wiki/translations/zh-cn/Sketcher_NewSketch.md @@ -7,6 +7,8 @@ SeeAlso:[创建草图](PartDesign_NewSketch/zh-cn.md), [映射草图至面](Sketcher_MapSketch/zh-cn.md), [调整草图方向](Sketcher_ReorientSketch/zh-cn.md) --- +# Sketcher NewSketch/zh-cn + ## 描述 @@ -61,4 +63,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher NewSketch/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_ReorientSketch.md b/wiki/translations/zh-cn/Sketcher_ReorientSketch.md index 9d02411521..a113e1991a 100644 --- a/wiki/translations/zh-cn/Sketcher_ReorientSketch.md +++ b/wiki/translations/zh-cn/Sketcher_ReorientSketch.md @@ -7,6 +7,8 @@ SeeAlso:[映射草图至面...](Sketcher_MapSketch/zh-cn.md), [创建草图](Sketcher_NewSketch/zh-cn.md) --- +# Sketcher ReorientSketch/zh-cn + ## 描述 借助此工具,您可以将一个草图从原来的面上分离开来,再将其(以一个偏移值)附于一个主平面上。 @@ -37,4 +39,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ReorientSketch/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_ValidateSketch.md b/wiki/translations/zh-cn/Sketcher_ValidateSketch.md index cfd170334e..cd163d72d2 100644 --- a/wiki/translations/zh-cn/Sketcher_ValidateSketch.md +++ b/wiki/translations/zh-cn/Sketcher_ValidateSketch.md @@ -6,6 +6,8 @@ SeeAlso:[Sketcher ConstrainCoincident](Sketcher_ConstrainCoincident.md), [Topological naming problem](Topological_naming_problem.md) --- +# Sketcher ValidateSketch/zh-cn + ## 描述 @@ -107,4 +109,7 @@ The locking mechanism typically works well and this tool should not be needed. * {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ValidateSketch/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_ViewSection.md b/wiki/translations/zh-cn/Sketcher_ViewSection.md index 5dca0b37a6..98acfb7063 100644 --- a/wiki/translations/zh-cn/Sketcher_ViewSection.md +++ b/wiki/translations/zh-cn/Sketcher_ViewSection.md @@ -7,6 +7,8 @@ Version:0.18 --- +# Sketcher ViewSection/zh-cn + ## 描述 **视图截面(View section)**工具会创建一个截面,并暂时隐藏此草图平面前侧的所有内容。 @@ -42,4 +44,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSection/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_ViewSketch.md b/wiki/translations/zh-cn/Sketcher_ViewSketch.md index 9fb7a7e398..31806e893f 100644 --- a/wiki/translations/zh-cn/Sketcher_ViewSketch.md +++ b/wiki/translations/zh-cn/Sketcher_ViewSketch.md @@ -6,6 +6,8 @@ Workbenches:[Sketcher](Sketcher_Workbench/zh-cn.md), [PartDesign](PartDesign_Workbench/zh-cn.md) --- +# Sketcher ViewSketch/zh-cn + ## 描述 此工具会将视角设置为垂直于草图平面的模型视图。当用户为检查模型的外观而改变观察模型的视角方向后,又想返回正交于草图的视图时,此工具就派上了用场。 @@ -29,4 +31,7 @@ {{Sketcher Tools navi -}} +}} + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ViewSketch/zh-cn diff --git a/wiki/translations/zh-cn/Sketcher_Workbench.md b/wiki/translations/zh-cn/Sketcher_Workbench.md index d7f32892fb..3989bf9f55 100644 --- a/wiki/translations/zh-cn/Sketcher_Workbench.md +++ b/wiki/translations/zh-cn/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/zh-cn - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/zh-cn {{TOCright}} @@ -640,3 +634,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [分类:用户文档](Category:User_Documentation/zh-cn.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Source_documentation.md b/wiki/translations/zh-cn/Source_documentation.md index ebf833a44d..412783ffe5 100644 --- a/wiki/translations/zh-cn/Source_documentation.md +++ b/wiki/translations/zh-cn/Source_documentation.md @@ -1,10 +1,4 @@ # Source documentation/zh-cn - - - - - - {{TOCright}} ## Overview @@ -137,3 +131,6 @@ void removeTaskWatcher(void); [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Source documentation/zh-cn diff --git a/wiki/translations/zh-cn/Spreadsheet_Workbench.md b/wiki/translations/zh-cn/Spreadsheet_Workbench.md index 3d2b67acc1..df548a9150 100644 --- a/wiki/translations/zh-cn/Spreadsheet_Workbench.md +++ b/wiki/translations/zh-cn/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/zh-cn - {{Page_in_progress}} @@ -358,3 +357,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Start_Workbench.md b/wiki/translations/zh-cn/Start_Workbench.md index 5d664766f4..aa9ca8a54e 100644 --- a/wiki/translations/zh-cn/Start_Workbench.md +++ b/wiki/translations/zh-cn/Start_Workbench.md @@ -1,10 +1,4 @@ -# Start Workbench/zh-cn - - - - - -Start workbench icon +# Start workbench icon Start Workbench/zh-cn
@@ -59,3 +53,6 @@ [Category:User Documentation/zh-cn](Category:User_Documentation/zh-cn.md) [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Std_InterfaceCustomization.md b/wiki/translations/zh-cn/Std_InterfaceCustomization.md index 045f14b578..f53324f296 100644 --- a/wiki/translations/zh-cn/Std_InterfaceCustomization.md +++ b/wiki/translations/zh-cn/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/zh-cn 1. REDIRECT [Interface\_Customization/zh-cn](Interface_Customization/zh-cn.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/zh-cn diff --git a/wiki/translations/zh-cn/Surface_Module.md b/wiki/translations/zh-cn/Surface_Module.md index a609bd2aed..38fdfd1593 100644 --- a/wiki/translations/zh-cn/Surface_Module.md +++ b/wiki/translations/zh-cn/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/zh-cn 1. REDIRECT [Surface\_Workbench/zh-cn](Surface_Workbench/zh-cn.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/zh-cn diff --git a/wiki/translations/zh-cn/Surface_Workbench.md b/wiki/translations/zh-cn/Surface_Workbench.md index 35e7ccbed6..e88a7fd5ed 100644 --- a/wiki/translations/zh-cn/Surface_Workbench.md +++ b/wiki/translations/zh-cn/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/zh-cn - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/zh-cn {{TOCright}} @@ -57,3 +51,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/zh-cn diff --git a/wiki/translations/zh-cn/TechDraw_Module.md b/wiki/translations/zh-cn/TechDraw_Module.md index b97a2b6df6..4a0bd4f632 100644 --- a/wiki/translations/zh-cn/TechDraw_Module.md +++ b/wiki/translations/zh-cn/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/zh-cn 1. REDIRECT [TechDraw\_Workbench/zh-cn](TechDraw_Workbench/zh-cn.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/zh-cn diff --git a/wiki/translations/zh-cn/TechDraw_Workbench.md b/wiki/translations/zh-cn/TechDraw_Workbench.md index b4961579e3..651a4eabfd 100644 --- a/wiki/translations/zh-cn/TechDraw_Workbench.md +++ b/wiki/translations/zh-cn/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/zh-cn - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/zh-cn ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Test_Framework_Workbench.md b/wiki/translations/zh-cn/Test_Framework_Workbench.md index b14593ae77..e08d861477 100644 --- a/wiki/translations/zh-cn/Test_Framework_Workbench.md +++ b/wiki/translations/zh-cn/Test_Framework_Workbench.md @@ -1,2 +1,5 @@ # Test Framework Workbench/zh-cn 1. REDIRECT [Testing/zh-cn](Testing/zh-cn.md) + +--- +[documentation index](../README.md) > Test Framework Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Testing.md b/wiki/translations/zh-cn/Testing.md index fa3ebc5c84..37bf4dd717 100644 --- a/wiki/translations/zh-cn/Testing.md +++ b/wiki/translations/zh-cn/Testing.md @@ -1,10 +1,4 @@ -# Testing/zh-cn - - - - - -Test workbench icon +# Test workbench icon Testing/zh-cn {{TOCright}} @@ -162,3 +156,6 @@ r.run(suite) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Test Framework](Category:Test_Framework.md) [Category:Workbenches](Category:Workbenches.md) [Category:Testing](Category:Testing.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Testing/zh-cn diff --git a/wiki/translations/zh-cn/The_FreeCAD_source_code.md b/wiki/translations/zh-cn/The_FreeCAD_source_code.md index a1718a19b1..c92d1ad45c 100644 --- a/wiki/translations/zh-cn/The_FreeCAD_source_code.md +++ b/wiki/translations/zh-cn/The_FreeCAD_source_code.md @@ -1,5 +1,5 @@ # The FreeCAD source code/zh-cn - [FreeCAD的源代码](https://github.com/FreeCAD/FreeCAD)通过Git管理,是公开的,是开放的,是可获得的,声明于[LGPL许可协议](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License)之下。任何人都可以复制、下载、阅读、分析、分发和改动。如果你改了代码,还想看到它被吸收进官方代码里,我们要给你提个醒,你的改动需要被FreeCAD开发者认可。所以,聪明的做法是,先到[论坛](http://forum.freecadweb.org)上去发帖,跟大家讨论一下,说说你的初衷和想法。免得到头来,出乎你的意料,你的改动被拒绝。 +[FreeCAD的源代码](https://github.com/FreeCAD/FreeCAD)通过Git管理,是公开的,是开放的,是可获得的,声明于[LGPL许可协议](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License)之下。任何人都可以复制、下载、阅读、分析、分发和改动。如果你改了代码,还想看到它被吸收进官方代码里,我们要给你提个醒,你的改动需要被FreeCAD开发者认可。所以,聪明的做法是,先到[论坛](http://forum.freecadweb.org)上去发帖,跟大家讨论一下,说说你的初衷和想法。免得到头来,出乎你的意料,你的改动被拒绝。 如果你有兴趣,深入探索FreeCAD源代码,下面就是一些提醒,一点信息,帮助你走上正轨。 @@ -68,3 +68,6 @@
[Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > The FreeCAD source code/zh-cn diff --git a/wiki/translations/zh-cn/Topological_data_scripting.md b/wiki/translations/zh-cn/Topological_data_scripting.md index 240a77772d..74445558c5 100644 --- a/wiki/translations/zh-cn/Topological_data_scripting.md +++ b/wiki/translations/zh-cn/Topological_data_scripting.md @@ -1,7 +1,4 @@ # Topological data scripting/zh-cn - - - {{TOCright}} @@ -1656,3 +1653,6 @@ s.read("test.stp") }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting/zh-cn diff --git a/wiki/translations/zh-cn/Tracker.md b/wiki/translations/zh-cn/Tracker.md index 4b95fb128b..55be008ed7 100644 --- a/wiki/translations/zh-cn/Tracker.md +++ b/wiki/translations/zh-cn/Tracker.md @@ -1,10 +1,4 @@ # Tracker/zh-cn - - - - - - {{TOCright}} ![](images/Mantis_logo_262x90.png ) @@ -188,3 +182,6 @@ For the inquisitive here is the regex MantisBT uses for this operation: [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Tracker/zh-cn diff --git a/wiki/translations/zh-cn/User_hub.md b/wiki/translations/zh-cn/User_hub.md index 1390829f4d..8e8e3a84a2 100644 --- a/wiki/translations/zh-cn/User_hub.md +++ b/wiki/translations/zh-cn/User_hub.md @@ -1,5 +1,4 @@ -# User hub/zh-cn - +# User hub/zh-cn ------------------------------------------------------------------------ @@ -192,3 +191,6 @@ When many macros or functions are developed together, and are organized in toolb [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/zh-cn diff --git a/wiki/translations/zh-cn/WebTools_Workbench.md b/wiki/translations/zh-cn/WebTools_Workbench.md index 83a38e9796..91da62ad65 100644 --- a/wiki/translations/zh-cn/WebTools_Workbench.md +++ b/wiki/translations/zh-cn/WebTools_Workbench.md @@ -1,5 +1,4 @@ -# WebTools Workbench/zh-cn - WebTools workbench icon +# WebTools workbench icon WebTools Workbench/zh-cn
@@ -39,3 +38,6 @@ This workbench can be easily installed and updated from the [Addon Manager](Addo [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > WebTools Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Web_Workbench.md b/wiki/translations/zh-cn/Web_Workbench.md index b156d2f6f3..cc74655cef 100644 --- a/wiki/translations/zh-cn/Web_Workbench.md +++ b/wiki/translations/zh-cn/Web_Workbench.md @@ -1,10 +1,4 @@ -# Web Workbench/zh-cn - - - - - -Web workbench icon +# Web workbench icon Web Workbench/zh-cn ## Introduction @@ -25,3 +19,6 @@ From this browser you are able to navigate the web, click on links, read the onl [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/zh-cn diff --git a/wiki/translations/zh-cn/Workbenches.md b/wiki/translations/zh-cn/Workbenches.md index 7351f923be..e255596485 100644 --- a/wiki/translations/zh-cn/Workbenches.md +++ b/wiki/translations/zh-cn/Workbenches.md @@ -1,7 +1,4 @@ # Workbenches/zh-cn - - -
@@ -107,3 +104,6 @@ FreeCAD工作台很容易在[Python](http://www.python.org)中编程,所以很 [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/zh-cn diff --git a/wiki/translations/zh-hans/A2plus_Workbench.md b/wiki/translations/zh-hans/A2plus_Workbench.md index 63eab75b0f..d951194392 100644 --- a/wiki/translations/zh-hans/A2plus_Workbench.md +++ b/wiki/translations/zh-hans/A2plus_Workbench.md @@ -1,5 +1,4 @@ -# A2plus Workbench/zh-hans - A2plus workbench icon +# A2plus workbench icon A2plus Workbench/zh-hans ## 简介 @@ -788,3 +787,6 @@ This is an A2plus-specific command. It solves the assembly constraints of the as [Category:Addons](Category:Addons.md) [Category:External Workbenches](Category:External_Workbenches.md) + +--- +[documentation index](../README.md) > A2plus Workbench/zh-hans diff --git a/wiki/translations/zh-hans/Category:Addons.md b/wiki/translations/zh-hans/Category:Addons.md index 2448b2db61..3a1badb862 100644 --- a/wiki/translations/zh-hans/Category:Addons.md +++ b/wiki/translations/zh-hans/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/zh-hans - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [A2plus Workbench/zh-hans](A2plus_Workbench/zh-hans.md) , [Category:Categories](Category:Categories.md) [Category:External Workbenches/zh-hans](Category:External_Workbenches/zh-hans.md) + +--- +[documentation index](../README.md) > Category:Addons/zh-hans diff --git a/wiki/translations/zh-hans/Category:Categories.md b/wiki/translations/zh-hans/Category:Categories.md index 1fa3a5184b..c5a9f3de8a 100644 --- a/wiki/translations/zh-hans/Category:Categories.md +++ b/wiki/translations/zh-hans/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , [Category:Categories/zh-hans](Category:Categories/zh-hans.md) [Category:Addons/zh-hans](Category:Addons/zh-hans.md) [Category:Categories/zh-hans](Category:Categories/zh-hans.md) [Category:Documentation/zh-hans](Category:Documentation/zh-hans.md) + +--- +[documentation index](../README.md) > Category:Categories/zh-hans diff --git a/wiki/translations/zh-hans/Category:Documentation.md b/wiki/translations/zh-hans/Category:Documentation.md index 3f1c0978f2..08df701ddf 100644 --- a/wiki/translations/zh-hans/Category:Documentation.md +++ b/wiki/translations/zh-hans/Category:Documentation.md @@ -4,3 +4,6 @@ This category groups all of the FreeCAD documentation ### Contents: [Category:Categories/zh-hans](Category:Categories/zh-hans.md) [Category:User Documentation/zh-hans](Category:User_Documentation/zh-hans.md) + +--- +[documentation index](../README.md) > Category:Documentation/zh-hans diff --git a/wiki/translations/zh-hans/Category:External_Workbenches.md b/wiki/translations/zh-hans/Category:External_Workbenches.md index bd9db935b9..c9446629af 100644 --- a/wiki/translations/zh-hans/Category:External_Workbenches.md +++ b/wiki/translations/zh-hans/Category:External_Workbenches.md @@ -4,3 +4,6 @@ [A2plus Workbench/zh-hans](A2plus_Workbench/zh-hans.md) [Category:Workbenches/zh-hans](Category:Workbenches/zh-hans.md) [Category:Addons/zh-hans](Category:Addons/zh-hans.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/zh-hans diff --git a/wiki/translations/zh-hans/Category:User_Documentation.md b/wiki/translations/zh-hans/Category:User_Documentation.md index e3c88851cc..fd50f38900 100644 --- a/wiki/translations/zh-hans/Category:User_Documentation.md +++ b/wiki/translations/zh-hans/Category:User_Documentation.md @@ -4,3 +4,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr ### Contents: [Category:Documentation/zh-hans](Category:Documentation/zh-hans.md) [Category:Workbenches/zh-hans](Category:Workbenches/zh-hans.md) + +--- +[documentation index](../README.md) > Category:User Documentation/zh-hans diff --git a/wiki/translations/zh-hans/Category:Workbenches.md b/wiki/translations/zh-hans/Category:Workbenches.md index 54b5ad6a26..5b46cb46c4 100644 --- a/wiki/translations/zh-hans/Category:Workbenches.md +++ b/wiki/translations/zh-hans/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Std Base/zh-hans](Std_Base/zh-hans.md) , [Category:User Documentation/zh-hans](Category:User_Documentation/zh-hans.md) [Category:External Workbenches/zh-hans](Category:External_Workbenches/zh-hans.md) + +--- +[documentation index](../README.md) > Category:Workbenches/zh-hans diff --git a/wiki/translations/zh-hans/Robot_tutorial.md b/wiki/translations/zh-hans/Robot_tutorial.md index 885dad3439..8a30918031 100644 --- a/wiki/translations/zh-hans/Robot_tutorial.md +++ b/wiki/translations/zh-hans/Robot_tutorial.md @@ -1,5 +1,5 @@ # Robot tutorial/zh-hans - {{TutorialInfo/zh-hans +{{TutorialInfo/zh-hans |Topic= Robot Workbench |Level= Beginner |Time= @@ -62,4 +62,7 @@ {{Tutorials navi -}} {{Robot Tools navi}} +}} {{Robot Tools navi}} + +--- +[documentation index](../README.md) > [Robot](Robot_Workbench.md) > Robot tutorial/zh-hans diff --git a/wiki/translations/zh-hans/Std_Base.md b/wiki/translations/zh-hans/Std_Base.md index 5ec115342e..3da4a37fd4 100644 --- a/wiki/translations/zh-hans/Std_Base.md +++ b/wiki/translations/zh-hans/Std_Base.md @@ -1,10 +1,4 @@ -# Std Base/zh-hans - - - - - -Std Base icon +# Std Base icon Std Base/zh-hans {{TOCright}} @@ -91,3 +85,6 @@ The standard menu is composed of 7 sub-menus. Each sub-menu has a dedicated page }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Workbenches](Category:Workbenches.md) > Std Base/zh-hans diff --git a/wiki/translations/zh-hant/Arch_Module.md b/wiki/translations/zh-hant/Arch_Module.md index 87e44f9fba..67aef091c3 100644 --- a/wiki/translations/zh-hant/Arch_Module.md +++ b/wiki/translations/zh-hant/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/zh-hant 1. REDIRECT [Arch\_Workbench/zh-hant](Arch_Workbench/zh-hant.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/zh-hant diff --git a/wiki/translations/zh-hant/Arch_Workbench.md b/wiki/translations/zh-hant/Arch_Workbench.md index afda157914..2c94d78a0a 100644 --- a/wiki/translations/zh-hant/Arch_Workbench.md +++ b/wiki/translations/zh-hant/Arch_Workbench.md @@ -1,7 +1,4 @@ # Arch Workbench/zh-hant - - - {{docnav/zh-hant|[Workbenches](Workbenches.md)|[Draft Workbench](Draft_Workbench.md)|IconL=|IconR=Workbench_Draft.svg}} Arch workbench icon @@ -144,3 +141,6 @@ The Arch module can be used in [Python](Python.md) scripts and [macros](macros.m [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/zh-hant diff --git a/wiki/translations/zh-hant/Category:Addons.md b/wiki/translations/zh-hant/Category:Addons.md index ed36f1dae0..b07995fe52 100644 --- a/wiki/translations/zh-hant/Category:Addons.md +++ b/wiki/translations/zh-hant/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/zh-hant - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [Ship Workbench/zh-hant](Ship_Workbench/zh-hant.md) , [Category:Categories](Category:Categories.md) [Category:External Workbenches/zh-hant](Category:External_Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Addons/zh-hant diff --git a/wiki/translations/zh-hant/Category:Administration.md b/wiki/translations/zh-hant/Category:Administration.md index 401a7eeca2..34bb168b36 100644 --- a/wiki/translations/zh-hant/Category:Administration.md +++ b/wiki/translations/zh-hant/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/zh-hant](Template:Arch_Tools_navi/zh-hant.md) , [Template:Drawing Tools navi/zh-hant](Template:Drawing_Tools_navi/zh-hant.md) , [Template:FEM Tools navi/zh-hant](Template:FEM_Tools_navi/zh-hant.md) , [Template:Mesh Tools navi/zh-hant](Template:Mesh_Tools_navi/zh-hant.md) , [Template:OpenSCAD Tools navi/zh-hant](Template:OpenSCAD_Tools_navi/zh-hant.md) , [Template:Part Tools navi/zh-hant](Template:Part_Tools_navi/zh-hant.md) , [Template:PartDesign Tools navi/zh-hant](Template:PartDesign_Tools_navi/zh-hant.md) , [Template:Path Tools navi/zh-hant](Template:Path_Tools_navi/zh-hant.md) , [Template:Plot Tools navi/zh-hant](Template:Plot_Tools_navi/zh-hant.md) , [Template:Raytracing Tools navi/zh-hant](Template:Raytracing_Tools_navi/zh-hant.md) , [Template:Robot Tools navi/zh-hant](Template:Robot_Tools_navi/zh-hant.md) , [Template:Ship Tools navi/zh-hant](Template:Ship_Tools_navi/zh-hant.md) , [Template:Sketcher Tools navi/zh-hant](Template:Sketcher_Tools_navi/zh-hant.md) [Category:Categories/zh-hant](Category:Categories/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Administration/zh-hant diff --git a/wiki/translations/zh-hant/Category:Arch.md b/wiki/translations/zh-hant/Category:Arch.md index 919ee60000..1c57438553 100644 --- a/wiki/translations/zh-hant/Category:Arch.md +++ b/wiki/translations/zh-hant/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Template:Arch Tools navi/zh-hant](Template:Arch_Tools_navi/zh-hant.md) , [Arch Workbench/zh-hant](Arch_Workbench/zh-hant.md) [Category:User Documentation/zh-hant](Category:User_Documentation/zh-hant.md) [Category:BIM/zh-hant](Category:BIM/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Arch/zh-hant diff --git a/wiki/translations/zh-hant/Category:BIM.md b/wiki/translations/zh-hant/Category:BIM.md index 144c0d0573..30e4e8c41f 100644 --- a/wiki/translations/zh-hant/Category:BIM.md +++ b/wiki/translations/zh-hant/Category:BIM.md @@ -4,3 +4,6 @@ This category is for pages related to building information management (BIM). ### Contents: [Category:User Documentation/zh-hant](Category:User_Documentation/zh-hant.md) [Category:Arch/zh-hant](Category:Arch/zh-hant.md) + +--- +[documentation index](../README.md) > Category:BIM/zh-hant diff --git a/wiki/translations/zh-hant/Category:Categories.md b/wiki/translations/zh-hant/Category:Categories.md index 74d19fe45b..1929bd0fb4 100644 --- a/wiki/translations/zh-hant/Category:Categories.md +++ b/wiki/translations/zh-hant/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , [Category:Categories/zh-hant](Category:Categories/zh-hant.md) [Category:Addons/zh-hant](Category:Addons/zh-hant.md) [Category:Administration/zh-hant](Category:Administration/zh-hant.md) [Category:Categories/zh-hant](Category:Categories/zh-hant.md) [Category:Documentation/zh-hant](Category:Documentation/zh-hant.md) [Category:Hubs/zh-hant](Category:Hubs/zh-hant.md) [Category:Template/zh-hant](Category:Template/zh-hant.md) [Category:Tutorials/zh-hant](Category:Tutorials/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Categories/zh-hant diff --git a/wiki/translations/zh-hant/Category:Developer_Documentation.md b/wiki/translations/zh-hant/Category:Developer_Documentation.md index a70d90eb82..28d0c93343 100644 --- a/wiki/translations/zh-hant/Category:Developer_Documentation.md +++ b/wiki/translations/zh-hant/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Workbench creation/zh-hant](Workbench_creation/zh-hant.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/zh-hant diff --git a/wiki/translations/zh-hant/Category:Documentation.md b/wiki/translations/zh-hant/Category:Documentation.md index 1b3aa0fd21..d390ad18dd 100644 --- a/wiki/translations/zh-hant/Category:Documentation.md +++ b/wiki/translations/zh-hant/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [Online Help Toc/zh-hant](Online_Help_Toc/zh-hant.md) , , , [Category:Categories/zh-hant](Category:Categories/zh-hant.md) [Category:Developer Documentation/zh-hant](Category:Developer_Documentation/zh-hant.md) [Category:Poweruser Documentation/zh-hant](Category:Poweruser_Documentation/zh-hant.md) [Category:User Documentation/zh-hant](Category:User_Documentation/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Documentation/zh-hant diff --git a/wiki/translations/zh-hant/Category:Drawing.md b/wiki/translations/zh-hant/Category:Drawing.md index cc02e41fc2..944ddddd28 100644 --- a/wiki/translations/zh-hant/Category:Drawing.md +++ b/wiki/translations/zh-hant/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/zh-hant](Drawing_Wor [Template:Drawing Tools navi/zh-hant](Template:Drawing_Tools_navi/zh-hant.md) [Category:Obsolete Workbenches/zh-hant](Category:Obsolete_Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Drawing/zh-hant diff --git a/wiki/translations/zh-hant/Category:External_Workbenches.md b/wiki/translations/zh-hant/Category:External_Workbenches.md index 26f597f876..51e6b81f0c 100644 --- a/wiki/translations/zh-hant/Category:External_Workbenches.md +++ b/wiki/translations/zh-hant/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [Ship Workbench/zh-hant](Ship_Workbench/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) [Category:Addons/zh-hant](Category:Addons/zh-hant.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/zh-hant diff --git a/wiki/translations/zh-hant/Category:FEM.md b/wiki/translations/zh-hant/Category:FEM.md index 75e7c680f7..9b0af9445a 100644 --- a/wiki/translations/zh-hant/Category:FEM.md +++ b/wiki/translations/zh-hant/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/zh-hant](FEM_Workbench/z [Template:FEM Tools navi/zh-hant](Template:FEM_Tools_navi/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:FEM/zh-hant diff --git a/wiki/translations/zh-hant/Category:Hubs.md b/wiki/translations/zh-hant/Category:Hubs.md index 04e92ea17d..5d65efacf3 100644 --- a/wiki/translations/zh-hant/Category:Hubs.md +++ b/wiki/translations/zh-hant/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [User hub/zh-hant](User_hub/zh-hant.md) [Category:Categories/zh-hant](Category:Categories/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Hubs/zh-hant diff --git a/wiki/translations/zh-hant/Category:Image.md b/wiki/translations/zh-hant/Category:Image.md index 3ae6826a26..f880169731 100644 --- a/wiki/translations/zh-hant/Category:Image.md +++ b/wiki/translations/zh-hant/Category:Image.md @@ -4,3 +4,6 @@ This category lists pages related to the [Image Workbench/zh-hant](Image_Workben ### Contents: [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Image/zh-hant diff --git a/wiki/translations/zh-hant/Category:Mesh.md b/wiki/translations/zh-hant/Category:Mesh.md index 7d4ff281e8..856805dcbb 100644 --- a/wiki/translations/zh-hant/Category:Mesh.md +++ b/wiki/translations/zh-hant/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/zh-hant](Mesh_Workbenc [Template:Mesh Tools navi/zh-hant](Template:Mesh_Tools_navi/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Mesh/zh-hant diff --git a/wiki/translations/zh-hant/Category:Obsolete_Workbenches.md b/wiki/translations/zh-hant/Category:Obsolete_Workbenches.md index 5dce9885bc..5bf11bc331 100644 --- a/wiki/translations/zh-hant/Category:Obsolete_Workbenches.md +++ b/wiki/translations/zh-hant/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/zh-hant](Drawing_Wor , [Category:Obsolete Workbenches/zh-hant](Category:Obsolete_Workbenches/zh-hant.md) [Category:Drawing/zh-hant](Category:Drawing/zh-hant.md) [Category:Obsolete Workbenches/zh-hant](Category:Obsolete_Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/zh-hant diff --git a/wiki/translations/zh-hant/Category:OpenSCAD.md b/wiki/translations/zh-hant/Category:OpenSCAD.md index b1a73fd09f..f120de096d 100644 --- a/wiki/translations/zh-hant/Category:OpenSCAD.md +++ b/wiki/translations/zh-hant/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/zh-hant](OpenSCAD_ [Template:OpenSCAD Tools navi/zh-hant](Template:OpenSCAD_Tools_navi/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/zh-hant diff --git a/wiki/translations/zh-hant/Category:Part.md b/wiki/translations/zh-hant/Category:Part.md index 5330d628db..aef3f533fd 100644 --- a/wiki/translations/zh-hant/Category:Part.md +++ b/wiki/translations/zh-hant/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/zh-hant](Part_Workbench [Template:Part Tools navi/zh-hant](Template:Part_Tools_navi/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Part/zh-hant diff --git a/wiki/translations/zh-hant/Category:PartDesign.md b/wiki/translations/zh-hant/Category:PartDesign.md index b1d9a32aa3..f7535d2405 100644 --- a/wiki/translations/zh-hant/Category:PartDesign.md +++ b/wiki/translations/zh-hant/Category:PartDesign.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/zh-hant](PartDesi [Template:PartDesign Tools navi/zh-hant](Template:PartDesign_Tools_navi/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:PartDesign/zh-hant diff --git a/wiki/translations/zh-hant/Category:Path.md b/wiki/translations/zh-hant/Category:Path.md index 2b79f62499..3e1027116b 100644 --- a/wiki/translations/zh-hant/Category:Path.md +++ b/wiki/translations/zh-hant/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/zh-hant](PartDesi [Template:Path Tools navi/zh-hant](Template:Path_Tools_navi/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Path/zh-hant diff --git a/wiki/translations/zh-hant/Category:Plot.md b/wiki/translations/zh-hant/Category:Plot.md index dbdbd163b9..ac9e4801b2 100644 --- a/wiki/translations/zh-hant/Category:Plot.md +++ b/wiki/translations/zh-hant/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/zh-hant](Plot_Workbench [Template:Plot Tools navi/zh-hant](Template:Plot_Tools_navi/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Plot/zh-hant diff --git a/wiki/translations/zh-hant/Category:Points.md b/wiki/translations/zh-hant/Category:Points.md index c47ee98c25..73b25e279e 100644 --- a/wiki/translations/zh-hant/Category:Points.md +++ b/wiki/translations/zh-hant/Category:Points.md @@ -4,3 +4,6 @@ This category lists pages related to the [Points Workbench/zh-hant](Points_Workb ### Contents: [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Points/zh-hant diff --git a/wiki/translations/zh-hant/Category:Poweruser_Documentation.md b/wiki/translations/zh-hant/Category:Poweruser_Documentation.md index 602e9ebcf9..c83d898e65 100644 --- a/wiki/translations/zh-hant/Category:Poweruser_Documentation.md +++ b/wiki/translations/zh-hant/Category:Poweruser_Documentation.md @@ -4,3 +4,6 @@ This category shows documentation articles dealing with python scripting, which ### Contents: [Category:Documentation/zh-hant](Category:Documentation/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/zh-hant diff --git a/wiki/translations/zh-hant/Category:Raytracing.md b/wiki/translations/zh-hant/Category:Raytracing.md index 9145570830..6a6b3916cb 100644 --- a/wiki/translations/zh-hant/Category:Raytracing.md +++ b/wiki/translations/zh-hant/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/zh-hant](Raytraci [Template:Raytracing Tools navi/zh-hant](Template:Raytracing_Tools_navi/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Raytracing/zh-hant diff --git a/wiki/translations/zh-hant/Category:Robot.md b/wiki/translations/zh-hant/Category:Robot.md index 2f398570e5..f936b473de 100644 --- a/wiki/translations/zh-hant/Category:Robot.md +++ b/wiki/translations/zh-hant/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/zh-hant](Robot_Workben [Template:Robot Tools navi/zh-hant](Template:Robot_Tools_navi/zh-hant.md) , [Robot Workbench/zh-hant](Robot_Workbench/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Robot/zh-hant diff --git a/wiki/translations/zh-hant/Category:Ship.md b/wiki/translations/zh-hant/Category:Ship.md index 05d26632d3..0f7adf4d54 100644 --- a/wiki/translations/zh-hant/Category:Ship.md +++ b/wiki/translations/zh-hant/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/zh-hant](Ship_Workbench [Template:Ship Tools navi/zh-hant](Template:Ship_Tools_navi/zh-hant.md) , [Ship Workbench/zh-hant](Ship_Workbench/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Ship/zh-hant diff --git a/wiki/translations/zh-hant/Category:Sketcher.md b/wiki/translations/zh-hant/Category:Sketcher.md index cdc6c00240..3a9bff66ad 100644 --- a/wiki/translations/zh-hant/Category:Sketcher.md +++ b/wiki/translations/zh-hant/Category:Sketcher.md @@ -6,3 +6,6 @@ This category lists pages related to the [Sketcher Workbench/zh-hant](Sketcher_W [Template:Sketcher Tools navi/zh-hant](Template:Sketcher_Tools_navi/zh-hant.md) , [Sketcher Workbench/zh-hant](Sketcher_Workbench/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Sketcher/zh-hant diff --git a/wiki/translations/zh-hant/Category:Surface.md b/wiki/translations/zh-hant/Category:Surface.md index 1492a18954..009552caef 100644 --- a/wiki/translations/zh-hant/Category:Surface.md +++ b/wiki/translations/zh-hant/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/zh-hant](Surface_Wor [Surface Workbench/zh-hant](Surface_Workbench/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Surface/zh-hant diff --git a/wiki/translations/zh-hant/Category:TechDraw.md b/wiki/translations/zh-hant/Category:TechDraw.md index 95b2f878ee..0f9bf1108b 100644 --- a/wiki/translations/zh-hant/Category:TechDraw.md +++ b/wiki/translations/zh-hant/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/zh-hant](TechDraw_W [TechDraw Workbench/zh-hant](TechDraw_Workbench/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:TechDraw/zh-hant diff --git a/wiki/translations/zh-hant/Category:Template.md b/wiki/translations/zh-hant/Category:Template.md index aa59701657..40ac15aa82 100644 --- a/wiki/translations/zh-hant/Category:Template.md +++ b/wiki/translations/zh-hant/Category:Template.md @@ -6,3 +6,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) ### Contents: [Category:Categories/zh-hant](Category:Categories/zh-hant.md) [Category:Template:Navigation/zh-hant](Category:Template:Navigation/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Template/zh-hant diff --git a/wiki/translations/zh-hant/Category:Template:Navigation.md b/wiki/translations/zh-hant/Category:Template:Navigation.md index 871b6a7c69..7d4fd39e3a 100644 --- a/wiki/translations/zh-hant/Category:Template:Navigation.md +++ b/wiki/translations/zh-hant/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/zh-hant](Template:Arch_Tools_navi/zh-hant.md) , [Template:Drawing Tools navi/zh-hant](Template:Drawing_Tools_navi/zh-hant.md) , [Template:FEM Tools navi/zh-hant](Template:FEM_Tools_navi/zh-hant.md) , [Template:Mesh Tools navi/zh-hant](Template:Mesh_Tools_navi/zh-hant.md) , [Template:OpenSCAD Tools navi/zh-hant](Template:OpenSCAD_Tools_navi/zh-hant.md) , [Template:Part Tools navi/zh-hant](Template:Part_Tools_navi/zh-hant.md) , [Template:PartDesign Tools navi/zh-hant](Template:PartDesign_Tools_navi/zh-hant.md) , [Template:Path Tools navi/zh-hant](Template:Path_Tools_navi/zh-hant.md) , [Template:Plot Tools navi/zh-hant](Template:Plot_Tools_navi/zh-hant.md) , [Template:Raytracing Tools navi/zh-hant](Template:Raytracing_Tools_navi/zh-hant.md) , [Template:Robot Tools navi/zh-hant](Template:Robot_Tools_navi/zh-hant.md) , [Template:Ship Tools navi/zh-hant](Template:Ship_Tools_navi/zh-hant.md) , [Template:Sketcher Tools navi/zh-hant](Template:Sketcher_Tools_navi/zh-hant.md) [Category:Template/zh-hant](Category:Template/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/zh-hant diff --git a/wiki/translations/zh-hant/Category:Tutorials.md b/wiki/translations/zh-hant/Category:Tutorials.md index 8e839670ee..272a62c736 100644 --- a/wiki/translations/zh-hant/Category:Tutorials.md +++ b/wiki/translations/zh-hant/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials](Offsite_tutorials.md) and [Video tutorials [Draft tutorial/zh-hant](Draft_tutorial/zh-hant.md) , [Template:TutorialInfo/zh-hant](Template:TutorialInfo/zh-hant.md) [Category:Categories/zh-hant](Category:Categories/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Tutorials/zh-hant diff --git a/wiki/translations/zh-hant/Category:User_Documentation.md b/wiki/translations/zh-hant/Category:User_Documentation.md index d584ff1985..8c39bc5e85 100644 --- a/wiki/translations/zh-hant/Category:User_Documentation.md +++ b/wiki/translations/zh-hant/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [Arch Workbench/zh-hant](Arch_Workbench/zh-hant.md) , [Draft tutorial/zh-hant](Draft_tutorial/zh-hant.md) , [Offsite tutorials/zh-hant](Offsite_tutorials/zh-hant.md) , [Online Help Toc/zh-hant](Online_Help_Toc/zh-hant.md) , [Robot Workbench/zh-hant](Robot_Workbench/zh-hant.md) , [Ship Workbench/zh-hant](Ship_Workbench/zh-hant.md) , [Sketcher Workbench/zh-hant](Sketcher_Workbench/zh-hant.md) , [Surface Workbench/zh-hant](Surface_Workbench/zh-hant.md) , [TechDraw Workbench/zh-hant](TechDraw_Workbench/zh-hant.md) , [Template:TutorialInfo/zh-hant](Template:TutorialInfo/zh-hant.md) , [User hub/zh-hant](User_hub/zh-hant.md) , [Workbenches/zh-hant](Workbenches/zh-hant.md) , , , [Category:Documentation/zh-hant](Category:Documentation/zh-hant.md) [Category:Arch/zh-hant](Category:Arch/zh-hant.md) [Category:BIM/zh-hant](Category:BIM/zh-hant.md) [Category:Workbenches/zh-hant](Category:Workbenches/zh-hant.md) + +--- +[documentation index](../README.md) > Category:User Documentation/zh-hant diff --git a/wiki/translations/zh-hant/Category:Workbenches.md b/wiki/translations/zh-hant/Category:Workbenches.md index 833b7bbcac..634a7dc1b6 100644 --- a/wiki/translations/zh-hant/Category:Workbenches.md +++ b/wiki/translations/zh-hant/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/zh-hant](Arch_Workbench/zh-hant.md) , [Robot Workbench/zh-hant](Robot_Workbench/zh-hant.md) , [Sketcher Workbench/zh-hant](Sketcher_Workbench/zh-hant.md) , [Surface Workbench/zh-hant](Surface_Workbench/zh-hant.md) , [TechDraw Workbench/zh-hant](TechDraw_Workbench/zh-hant.md) , [Workbenches/zh-hant](Workbenches/zh-hant.md) , , , , , , , , , , , , , , , , , [Category:User Documentation/zh-hant](Category:User_Documentation/zh-hant.md) [Category:Arch/zh-hant](Category:Arch/zh-hant.md) [Category:External Workbenches/zh-hant](Category:External_Workbenches/zh-hant.md) [Category:FEM/zh-hant](Category:FEM/zh-hant.md) [Category:Image/zh-hant](Category:Image/zh-hant.md) [Category:Mesh/zh-hant](Category:Mesh/zh-hant.md) [Category:OpenSCAD/zh-hant](Category:OpenSCAD/zh-hant.md) [Category:Part/zh-hant](Category:Part/zh-hant.md) [Category:PartDesign/zh-hant](Category:PartDesign/zh-hant.md) [Category:Path/zh-hant](Category:Path/zh-hant.md) [Category:Plot/zh-hant](Category:Plot/zh-hant.md) [Category:Points/zh-hant](Category:Points/zh-hant.md) [Category:Raytracing/zh-hant](Category:Raytracing/zh-hant.md) [Category:Robot/zh-hant](Category:Robot/zh-hant.md) [Category:Ship/zh-hant](Category:Ship/zh-hant.md) [Category:Sketcher/zh-hant](Category:Sketcher/zh-hant.md) [Category:Surface/zh-hant](Category:Surface/zh-hant.md) [Category:TechDraw/zh-hant](Category:TechDraw/zh-hant.md) + +--- +[documentation index](../README.md) > Category:Workbenches/zh-hant diff --git a/wiki/translations/zh-hant/Draft_tutorial.md b/wiki/translations/zh-hant/Draft_tutorial.md index 71025d933b..a244aeafd5 100644 --- a/wiki/translations/zh-hant/Draft_tutorial.md +++ b/wiki/translations/zh-hant/Draft_tutorial.md @@ -1,7 +1,4 @@ # Draft tutorial/zh-hant - - -
@@ -230,4 +227,7 @@ The [Draft Workbench](Draft_Workbench.md) in many ways is similar to the [Sketch {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft tutorial/zh-hant diff --git a/wiki/translations/zh-hant/Offsite_tutorials.md b/wiki/translations/zh-hant/Offsite_tutorials.md index 8ba312ae52..b6b8713582 100644 --- a/wiki/translations/zh-hant/Offsite_tutorials.md +++ b/wiki/translations/zh-hant/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/zh-hant - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** This page lists FreeCAD tutorials found on other sites on the web. @@ -18,4 +18,7 @@ This page lists FreeCAD tutorials found on other sites on the web. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/zh-hant diff --git a/wiki/translations/zh-hant/Online_Help_Toc.md b/wiki/translations/zh-hant/Online_Help_Toc.md index f30d9e5f6f..1bb5ce70d8 100644 --- a/wiki/translations/zh-hant/Online_Help_Toc.md +++ b/wiki/translations/zh-hant/Online_Help_Toc.md @@ -1,6 +1,4 @@ # Online Help Toc/zh-hant - - This is the table of contents used for the automatic building of the **Online Help** system in FreeCAD. A printable version of this manual is also available on the [releases page](https://github.com/FreeCAD/FreeCAD/releases). If you have any questions or need help with FreeCAD please consult the [help page](Help.md) including the forums and chat groups. There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction.md). @@ -124,3 +122,6 @@ There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction. [Category:Documentation/zh-hant](Category:Documentation/zh-hant.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/zh-hant diff --git a/wiki/translations/zh-hant/Ray_Tracing_Workbench.md b/wiki/translations/zh-hant/Ray_Tracing_Workbench.md index 9f889dbcce..3bed914e71 100644 --- a/wiki/translations/zh-hant/Ray_Tracing_Workbench.md +++ b/wiki/translations/zh-hant/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/zh-hant 1. REDIRECT [Raytracing\_Workbench/zh-hant](Raytracing_Workbench/zh-hant.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/zh-hant diff --git a/wiki/translations/zh-hant/Robot_Workbench.md b/wiki/translations/zh-hant/Robot_Workbench.md index 3164c5e981..6a7eb43074 100644 --- a/wiki/translations/zh-hant/Robot_Workbench.md +++ b/wiki/translations/zh-hant/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/zh-hant - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. @@ -81,3 +75,6 @@ See the [Robot API example](Robot_API_example.md) for a description of the funct }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/zh-hant diff --git a/wiki/translations/zh-hant/Ship_Workbench.md b/wiki/translations/zh-hant/Ship_Workbench.md index b89c5f27a2..56f2a72722 100644 --- a/wiki/translations/zh-hant/Ship_Workbench.md +++ b/wiki/translations/zh-hant/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/zh-hant - - -Ship workbench icon +# Ship workbench icon Ship Workbench/zh-hant {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/zh-hant diff --git a/wiki/translations/zh-hant/Sketcher_Workbench.md b/wiki/translations/zh-hant/Sketcher_Workbench.md index 864425c053..a6d87cb388 100644 --- a/wiki/translations/zh-hant/Sketcher_Workbench.md +++ b/wiki/translations/zh-hant/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/zh-hant - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/zh-hant {{TOCright}} @@ -319,3 +313,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/zh-hant diff --git a/wiki/translations/zh-hant/Surface_Module.md b/wiki/translations/zh-hant/Surface_Module.md index 8974bc4948..4326034a41 100644 --- a/wiki/translations/zh-hant/Surface_Module.md +++ b/wiki/translations/zh-hant/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/zh-hant 1. REDIRECT [Surface\_Workbench/zh-hant](Surface_Workbench/zh-hant.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/zh-hant diff --git a/wiki/translations/zh-hant/Surface_Workbench.md b/wiki/translations/zh-hant/Surface_Workbench.md index 14d466f16b..445dd6e72f 100644 --- a/wiki/translations/zh-hant/Surface_Workbench.md +++ b/wiki/translations/zh-hant/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/zh-hant - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/zh-hant {{TOCright}} @@ -57,3 +51,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/zh-hant diff --git a/wiki/translations/zh-hant/TechDraw_Module.md b/wiki/translations/zh-hant/TechDraw_Module.md index 0ac25a9669..3944f74399 100644 --- a/wiki/translations/zh-hant/TechDraw_Module.md +++ b/wiki/translations/zh-hant/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/zh-hant 1. REDIRECT [TechDraw\_Workbench/zh-hant](TechDraw_Workbench/zh-hant.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/zh-hant diff --git a/wiki/translations/zh-hant/TechDraw_Workbench.md b/wiki/translations/zh-hant/TechDraw_Workbench.md index c8071e2018..817d8cb016 100644 --- a/wiki/translations/zh-hant/TechDraw_Workbench.md +++ b/wiki/translations/zh-hant/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/zh-hant - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/zh-hant ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/zh-hant diff --git a/wiki/translations/zh-hant/User_hub.md b/wiki/translations/zh-hant/User_hub.md index 954ae0f818..98f780085e 100644 --- a/wiki/translations/zh-hant/User_hub.md +++ b/wiki/translations/zh-hant/User_hub.md @@ -1,5 +1,4 @@ -# User hub/zh-hant - +# User hub/zh-hant ------------------------------------------------------------------------ @@ -122,3 +121,6 @@ This is the official FreeCAD online help. Please note that the whole online help [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/zh-hant diff --git a/wiki/translations/zh-hant/Workbench_creation.md b/wiki/translations/zh-hant/Workbench_creation.md index 9f714745b7..d2cf4240a9 100644 --- a/wiki/translations/zh-hant/Workbench_creation.md +++ b/wiki/translations/zh-hant/Workbench_creation.md @@ -1,10 +1,4 @@ # Workbench creation/zh-hant - - - - - - {{TOCright}} ## Introduction @@ -350,3 +344,6 @@ os.remove(qrc_filename) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > Workbench creation/zh-hant diff --git a/wiki/translations/zh-hant/Workbenches.md b/wiki/translations/zh-hant/Workbenches.md index fcafad75e6..ac2bee43ab 100644 --- a/wiki/translations/zh-hant/Workbenches.md +++ b/wiki/translations/zh-hant/Workbenches.md @@ -1,9 +1,4 @@ # Workbenches/zh-hant - - - - - FreeCAD, like many modern design applications such as [Revit](wikipedia:Revit.md) or [CATIA](wikipedia:CATIA.md), is based on the concept of [Workbench](wikipedia:Workbench.md). 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. @@ -83,3 +78,6 @@ New workbenches are always in development, stay tuned! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/zh-hant diff --git a/wiki/translations/zh-tw/About_FreeCAD.md b/wiki/translations/zh-tw/About_FreeCAD.md index 14a4bcec47..1d256c9acb 100644 --- a/wiki/translations/zh-tw/About_FreeCAD.md +++ b/wiki/translations/zh-tw/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/zh-tw - - - +# About FreeCAD/zh-tw **FreeCAD** is a general purpose parametric 3D [**CAD**](http://en.wikipedia.org/wiki/CAD) modeler, whose development is completely [open source](http://en.wikipedia.org/wiki/Open_source) ([LGPL License](https://www.gnu.org/licenses/lgpl-3.0.en.html)). FreeCAD is aimed directly at [mechanical engineering](http://en.wikipedia.org/wiki/Mechanical_engineering) and [product design](http://en.wikipedia.org/wiki/Product_design) but also fits in a wider range of uses around engineering, such as architecture, finite element analysis, 3D printing, and other tasks. @@ -34,3 +31,6 @@ FreeCAD is maintained and developed by a community of enthusiastic developers an [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/zh-tw diff --git a/wiki/translations/zh-tw/Aeroplane.md b/wiki/translations/zh-tw/Aeroplane.md index 4ce29585e0..ddffd5cfa2 100644 --- a/wiki/translations/zh-tw/Aeroplane.md +++ b/wiki/translations/zh-tw/Aeroplane.md @@ -1,7 +1,4 @@ # Aeroplane/zh-tw - - -
@@ -184,4 +181,7 @@ I hope this little tutorial has helped you to get a feel for rotations. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Aeroplane/zh-tw diff --git a/wiki/translations/zh-tw/Arch_Module.md b/wiki/translations/zh-tw/Arch_Module.md index 380a14bd4c..8150d5e9cd 100644 --- a/wiki/translations/zh-tw/Arch_Module.md +++ b/wiki/translations/zh-tw/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/zh-tw 1. REDIRECT [Arch\_Workbench/zh-tw](Arch_Workbench/zh-tw.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/zh-tw diff --git a/wiki/translations/zh-tw/Arch_Wall.md b/wiki/translations/zh-tw/Arch_Wall.md index bd3d48b760..1d8a2ed650 100644 --- a/wiki/translations/zh-tw/Arch_Wall.md +++ b/wiki/translations/zh-tw/Arch_Wall.md @@ -1,3 +1,4 @@ +# Arch Wall/zh-tw --- - GuiCommand:/zh-tw Name:Arch Wall Name/zh-tw:Arch Wall Workbenches:[MenuLocation:Arch → Wall Shortcut:W A SeeAlso:[[Arch Structure/zh-tw|Arch Structure](Arch_Workbench/zh-tw___Arch]].md)--- @@ -159,3 +160,6 @@ FreeCAD.ActiveDocument.recompute() [Category:Arch/zh-tw](Category:Arch/zh-tw.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Wall/zh-tw diff --git a/wiki/translations/zh-tw/Arch_Workbench.md b/wiki/translations/zh-tw/Arch_Workbench.md index f533780d58..73ceb8cb3c 100644 --- a/wiki/translations/zh-tw/Arch_Workbench.md +++ b/wiki/translations/zh-tw/Arch_Workbench.md @@ -1,7 +1,4 @@ # Arch Workbench/zh-tw - - - {{docnav/zh-tw|[Workbenches/zh-tw](Workbenches/zh-tw.md)|[Draft Workbench/zh-tw](Draft_Workbench/zh-tw.md)|IconL=|IconR=Workbench_Draft.svg}} Arch workbench icon @@ -144,3 +141,6 @@ The Arch module can be used in [Python](Python.md) scripts and [macros](macros.m [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Basic_Sketcher_Tutorial.md b/wiki/translations/zh-tw/Basic_Sketcher_Tutorial.md index e64da11865..04b2101389 100644 --- a/wiki/translations/zh-tw/Basic_Sketcher_Tutorial.md +++ b/wiki/translations/zh-tw/Basic_Sketcher_Tutorial.md @@ -1,7 +1,4 @@ # Basic Sketcher Tutorial/zh-tw - - - {{TutorialInfo/zh-tw |Topic=草圖 |Level=初學者 @@ -295,4 +292,7 @@ Constraining a sketch can be done in many different ways. In general, it is reco {{Tutorials navi -}} {{Sketcher Tools navi}} +}} {{Sketcher Tools navi}} + +--- +[documentation index](../README.md) > Basic Sketcher Tutorial/zh-tw diff --git a/wiki/translations/zh-tw/Category:Addons.md b/wiki/translations/zh-tw/Category:Addons.md index 0dfeeb0d9f..cc4f5b1ff3 100644 --- a/wiki/translations/zh-tw/Category:Addons.md +++ b/wiki/translations/zh-tw/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/zh-tw - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [Plot Module/zh-tw](Plot_Module/zh-tw.md) , [Ship Workbench/zh-tw](Ship_Workbench/zh-tw.md) , [Category:Categories](Category:Categories.md) [Category:External Workbenches/zh-tw](Category:External_Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Addons/zh-tw diff --git a/wiki/translations/zh-tw/Category:Administration.md b/wiki/translations/zh-tw/Category:Administration.md index bc5275e638..b8a398b92c 100644 --- a/wiki/translations/zh-tw/Category:Administration.md +++ b/wiki/translations/zh-tw/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/zh-tw](Template:Arch_Tools_navi/zh-tw.md) , [Template:Drawing Tools navi/zh-tw](Template:Drawing_Tools_navi/zh-tw.md) , [Template:FEM Tools navi/zh-tw](Template:FEM_Tools_navi/zh-tw.md) , [Template:Mesh Tools navi/zh-tw](Template:Mesh_Tools_navi/zh-tw.md) , [Template:OpenSCAD Tools navi/zh-tw](Template:OpenSCAD_Tools_navi/zh-tw.md) , [Template:Part Tools navi/zh-tw](Template:Part_Tools_navi/zh-tw.md) , [Template:PartDesign Tools navi/zh-tw](Template:PartDesign_Tools_navi/zh-tw.md) , [Template:Path Tools navi/zh-tw](Template:Path_Tools_navi/zh-tw.md) , [Template:Raytracing Tools navi/zh-tw](Template:Raytracing_Tools_navi/zh-tw.md) , [Template:Robot Tools navi/zh-tw](Template:Robot_Tools_navi/zh-tw.md) , [Template:Ship Tools navi/zh-tw](Template:Ship_Tools_navi/zh-tw.md) , [Template:Sketcher Tools navi/zh-tw](Template:Sketcher_Tools_navi/zh-tw.md) [Category:Categories/zh-tw](Category:Categories/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Administration/zh-tw diff --git a/wiki/translations/zh-tw/Category:Arch.md b/wiki/translations/zh-tw/Category:Arch.md index 047cabdd3f..c38f6a0afb 100644 --- a/wiki/translations/zh-tw/Category:Arch.md +++ b/wiki/translations/zh-tw/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Template:Arch Tools navi/zh-tw](Template:Arch_Tools_navi/zh-tw.md) , [Arch Wall/zh-tw](Arch_Wall/zh-tw.md) , [Arch Workbench/zh-tw](Arch_Workbench/zh-tw.md) [Category:User Documentation/zh-tw](Category:User_Documentation/zh-tw.md) [Category:BIM/zh-tw](Category:BIM/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Arch/zh-tw diff --git a/wiki/translations/zh-tw/Category:BIM.md b/wiki/translations/zh-tw/Category:BIM.md index 6f63c74f08..f6d5807060 100644 --- a/wiki/translations/zh-tw/Category:BIM.md +++ b/wiki/translations/zh-tw/Category:BIM.md @@ -4,3 +4,6 @@ This category is for pages related to building information management (BIM). ### Contents: [Category:User Documentation/zh-tw](Category:User_Documentation/zh-tw.md) [Category:Arch/zh-tw](Category:Arch/zh-tw.md) + +--- +[documentation index](../README.md) > Category:BIM/zh-tw diff --git a/wiki/translations/zh-tw/Category:Categories.md b/wiki/translations/zh-tw/Category:Categories.md index 589b683f97..66cd64e8ab 100644 --- a/wiki/translations/zh-tw/Category:Categories.md +++ b/wiki/translations/zh-tw/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , , [Category:Categories/zh-tw](Category:Categories/zh-tw.md) [Category:Addons/zh-tw](Category:Addons/zh-tw.md) [Category:Administration/zh-tw](Category:Administration/zh-tw.md) [Category:Categories/zh-tw](Category:Categories/zh-tw.md) [Category:Command Reference/zh-tw](Category:Command_Reference/zh-tw.md) [Category:Developer/zh-tw](Category:Developer/zh-tw.md) [Category:Documentation/zh-tw](Category:Documentation/zh-tw.md) [Category:Hubs/zh-tw](Category:Hubs/zh-tw.md) [Category:Template/zh-tw](Category:Template/zh-tw.md) [Category:Tutorials/zh-tw](Category:Tutorials/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Categories/zh-tw diff --git a/wiki/translations/zh-tw/Category:Command_Reference.md b/wiki/translations/zh-tw/Category:Command_Reference.md index cdb7ef5384..5fc8134a78 100644 --- a/wiki/translations/zh-tw/Category:Command_Reference.md +++ b/wiki/translations/zh-tw/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD [Command](Command.md). [Arch Wall/zh-tw](Arch_Wall/zh-tw.md) , [Template:GuiCommand/zh-tw](Template:GuiCommand/zh-tw.md) [Category:Categories/zh-tw](Category:Categories/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Command Reference/zh-tw diff --git a/wiki/translations/zh-tw/Category:Developer.md b/wiki/translations/zh-tw/Category:Developer.md index 68812d50fc..074e124437 100644 --- a/wiki/translations/zh-tw/Category:Developer.md +++ b/wiki/translations/zh-tw/Category:Developer.md @@ -6,3 +6,6 @@ This category contains articles that are relevant for developers. [Compiling/zh-tw](Compiling/zh-tw.md) , [Contributors/zh-tw](Contributors/zh-tw.md) [Category:Categories/zh-tw](Category:Categories/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Developer/zh-tw diff --git a/wiki/translations/zh-tw/Category:Developer_Documentation.md b/wiki/translations/zh-tw/Category:Developer_Documentation.md index 1845cab1d1..5d2d8a848e 100644 --- a/wiki/translations/zh-tw/Category:Developer_Documentation.md +++ b/wiki/translations/zh-tw/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Compiling/zh-tw](Compiling/zh-tw.md) , [Debugging/zh-tw](Debugging/zh-tw.md) , [Help FreeCAD/zh-tw](Help_FreeCAD/zh-tw.md) , [Licence/zh-tw](Licence/zh-tw.md) , [Localisation/zh-tw](Localisation/zh-tw.md) , [Workbench creation/zh-tw](Workbench_creation/zh-tw.md) [Category:Documentation/zh-tw](Category:Documentation/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/zh-tw diff --git a/wiki/translations/zh-tw/Category:Documentation.md b/wiki/translations/zh-tw/Category:Documentation.md index fe65cf11a7..5a062467a9 100644 --- a/wiki/translations/zh-tw/Category:Documentation.md +++ b/wiki/translations/zh-tw/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [Help FreeCAD/zh-tw](Help_FreeCAD/zh-tw.md) , [Main Page/zh-tw](Main_Page/zh-tw.md) , [Online Help Toc/zh-tw](Online_Help_Toc/zh-tw.md) , , , , [Category:Categories/zh-tw](Category:Categories/zh-tw.md) [Category:Developer Documentation/zh-tw](Category:Developer_Documentation/zh-tw.md) [Category:Poweruser Documentation/zh-tw](Category:Poweruser_Documentation/zh-tw.md) [Category:Screenshots/zh-tw](Category:Screenshots/zh-tw.md) [Category:User Documentation/zh-tw](Category:User_Documentation/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Documentation/zh-tw diff --git a/wiki/translations/zh-tw/Category:Draft.md b/wiki/translations/zh-tw/Category:Draft.md index 6bfcd64310..8e1a7444f3 100644 --- a/wiki/translations/zh-tw/Category:Draft.md +++ b/wiki/translations/zh-tw/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/zh-tw\" and \"Work [Draft Workbench/zh-tw](Draft_Workbench/zh-tw.md) [Category:User Documentation/zh-tw](Category:User_Documentation/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Draft/zh-tw diff --git a/wiki/translations/zh-tw/Category:Drawing.md b/wiki/translations/zh-tw/Category:Drawing.md index adfa0ab2f7..89df70663f 100644 --- a/wiki/translations/zh-tw/Category:Drawing.md +++ b/wiki/translations/zh-tw/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/zh-tw](Drawing_Workb [Template:Drawing Tools navi/zh-tw](Template:Drawing_Tools_navi/zh-tw.md) , [Drawing Workbench/zh-tw](Drawing_Workbench/zh-tw.md) [Category:Obsolete Workbenches/zh-tw](Category:Obsolete_Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Drawing/zh-tw diff --git a/wiki/translations/zh-tw/Category:External_Workbenches.md b/wiki/translations/zh-tw/Category:External_Workbenches.md index 8d75e78f4c..624dca236a 100644 --- a/wiki/translations/zh-tw/Category:External_Workbenches.md +++ b/wiki/translations/zh-tw/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [Plot Module/zh-tw](Plot_Module/zh-tw.md) , [Ship Workbench/zh-tw](Ship_Workbench/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) [Category:Addons/zh-tw](Category:Addons/zh-tw.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/zh-tw diff --git a/wiki/translations/zh-tw/Category:FEM.md b/wiki/translations/zh-tw/Category:FEM.md index 4555375dc4..afef0a084c 100644 --- a/wiki/translations/zh-tw/Category:FEM.md +++ b/wiki/translations/zh-tw/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/zh-tw](FEM_Workbench/zh- [Template:FEM Tools navi/zh-tw](Template:FEM_Tools_navi/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:FEM/zh-tw diff --git a/wiki/translations/zh-tw/Category:Hubs.md b/wiki/translations/zh-tw/Category:Hubs.md index 5ca78ec703..3009c75f04 100644 --- a/wiki/translations/zh-tw/Category:Hubs.md +++ b/wiki/translations/zh-tw/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [Power users hub/zh-tw](Power_users_hub/zh-tw.md) , [User hub/zh-tw](User_hub/zh-tw.md) [Category:Categories/zh-tw](Category:Categories/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Hubs/zh-tw diff --git a/wiki/translations/zh-tw/Category:Image.md b/wiki/translations/zh-tw/Category:Image.md index 6ddac25358..1c75576014 100644 --- a/wiki/translations/zh-tw/Category:Image.md +++ b/wiki/translations/zh-tw/Category:Image.md @@ -6,3 +6,6 @@ This category lists pages related to the [Image Workbench/zh-tw](Image_Workbench [Image Workbench/zh-tw](Image_Workbench/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Image/zh-tw diff --git a/wiki/translations/zh-tw/Category:Inspection.md b/wiki/translations/zh-tw/Category:Inspection.md index 68bbf4dae5..93b10f2027 100644 --- a/wiki/translations/zh-tw/Category:Inspection.md +++ b/wiki/translations/zh-tw/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Inspection Workbench/zh-tw](Inspection_Workbench/zh-tw.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection/zh-tw diff --git a/wiki/translations/zh-tw/Category:Manual.md b/wiki/translations/zh-tw/Category:Manual.md index e0c7657832..563adbe7c1 100644 --- a/wiki/translations/zh-tw/Category:Manual.md +++ b/wiki/translations/zh-tw/Category:Manual.md @@ -4,3 +4,6 @@ This category contains all the page of the FreeCAD manual ### Contents: [Manual:Introduction/zh-tw](Manual:Introduction/zh-tw.md) , [Manual:Summary/zh-tw](Manual:Summary/zh-tw.md) , [Template:Manual:TOC/zh-tw](Template:Manual:TOC/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Manual/zh-tw diff --git a/wiki/translations/zh-tw/Category:Mesh.md b/wiki/translations/zh-tw/Category:Mesh.md index d3b2f6587d..1f7ff369f1 100644 --- a/wiki/translations/zh-tw/Category:Mesh.md +++ b/wiki/translations/zh-tw/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/zh-tw](Mesh_Workbench/ [Template:Mesh Tools navi/zh-tw](Template:Mesh_Tools_navi/zh-tw.md) , [Mesh Workbench/zh-tw](Mesh_Workbench/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Mesh/zh-tw diff --git a/wiki/translations/zh-tw/Category:Obsolete_Workbenches.md b/wiki/translations/zh-tw/Category:Obsolete_Workbenches.md index 58159593cd..23efa3d60a 100644 --- a/wiki/translations/zh-tw/Category:Obsolete_Workbenches.md +++ b/wiki/translations/zh-tw/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/zh-tw](Drawing_Workb [Complete Workbench/zh-tw](Complete_Workbench/zh-tw.md) , [Drawing Workbench/zh-tw](Drawing_Workbench/zh-tw.md) , , [Category:Obsolete Workbenches/zh-tw](Category:Obsolete_Workbenches/zh-tw.md) [Category:Drawing/zh-tw](Category:Drawing/zh-tw.md) [Category:Obsolete Workbenches/zh-tw](Category:Obsolete_Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/zh-tw diff --git a/wiki/translations/zh-tw/Category:OpenSCAD.md b/wiki/translations/zh-tw/Category:OpenSCAD.md index 608a2a027d..fa02b2d3a4 100644 --- a/wiki/translations/zh-tw/Category:OpenSCAD.md +++ b/wiki/translations/zh-tw/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/zh-tw](OpenSCAD_Wo [Template:OpenSCAD Tools navi/zh-tw](Template:OpenSCAD_Tools_navi/zh-tw.md) , [OpenSCAD Workbench/zh-tw](OpenSCAD_Workbench/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/zh-tw diff --git a/wiki/translations/zh-tw/Category:Part.md b/wiki/translations/zh-tw/Category:Part.md index 141e4f9fb1..9f50a78707 100644 --- a/wiki/translations/zh-tw/Category:Part.md +++ b/wiki/translations/zh-tw/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/zh-tw](Part_Workbench/z [Aeroplane/zh-tw](Aeroplane/zh-tw.md) , [Part Module/zh-tw](Part_Module/zh-tw.md) , [Template:Part Tools navi/zh-tw](Template:Part_Tools_navi/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Part/zh-tw diff --git a/wiki/translations/zh-tw/Category:PartDesign.md b/wiki/translations/zh-tw/Category:PartDesign.md index 830299123f..6156a9c3b6 100644 --- a/wiki/translations/zh-tw/Category:PartDesign.md +++ b/wiki/translations/zh-tw/Category:PartDesign.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/zh-tw](PartDesign [Template:PartDesign Tools navi/zh-tw](Template:PartDesign_Tools_navi/zh-tw.md) , [PartDesign Workbench/zh-tw](PartDesign_Workbench/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:PartDesign/zh-tw diff --git a/wiki/translations/zh-tw/Category:Path.md b/wiki/translations/zh-tw/Category:Path.md index 69a5a5b95b..16bb788ae3 100644 --- a/wiki/translations/zh-tw/Category:Path.md +++ b/wiki/translations/zh-tw/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/zh-tw](PartDesign [Template:Path Tools navi/zh-tw](Template:Path_Tools_navi/zh-tw.md) , [Path Workbench/zh-tw](Path_Workbench/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Path/zh-tw diff --git a/wiki/translations/zh-tw/Category:Points.md b/wiki/translations/zh-tw/Category:Points.md index 783a239152..7902c36695 100644 --- a/wiki/translations/zh-tw/Category:Points.md +++ b/wiki/translations/zh-tw/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/zh-tw](Points_Workben [Points Workbench/zh-tw](Points_Workbench/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Points/zh-tw diff --git a/wiki/translations/zh-tw/Category:Poweruser_Documentation.md b/wiki/translations/zh-tw/Category:Poweruser_Documentation.md index 9e34044cbd..1b44b809b6 100644 --- a/wiki/translations/zh-tw/Category:Poweruser_Documentation.md +++ b/wiki/translations/zh-tw/Category:Poweruser_Documentation.md @@ -4,3 +4,6 @@ This category shows documentation articles dealing with python scripting, which ### Contents: [Category:Documentation/zh-tw](Category:Documentation/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/zh-tw diff --git a/wiki/translations/zh-tw/Category:Preferences.md b/wiki/translations/zh-tw/Category:Preferences.md index c4e1c088d1..37d703f9ef 100644 --- a/wiki/translations/zh-tw/Category:Preferences.md +++ b/wiki/translations/zh-tw/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Customize Toolbars/zh-tw](Customize_Toolbars/zh-tw.md) , [Preferences Editor/zh-tw](Preferences_Editor/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Preferences/zh-tw diff --git a/wiki/translations/zh-tw/Category:Raytracing.md b/wiki/translations/zh-tw/Category:Raytracing.md index b749a2c334..0f7af2e3b7 100644 --- a/wiki/translations/zh-tw/Category:Raytracing.md +++ b/wiki/translations/zh-tw/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/zh-tw](Raytracing [Template:Raytracing Tools navi/zh-tw](Template:Raytracing_Tools_navi/zh-tw.md) , [Raytracing Workbench/zh-tw](Raytracing_Workbench/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Raytracing/zh-tw diff --git a/wiki/translations/zh-tw/Category:Robot.md b/wiki/translations/zh-tw/Category:Robot.md index 447e57a71b..640e854cf5 100644 --- a/wiki/translations/zh-tw/Category:Robot.md +++ b/wiki/translations/zh-tw/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/zh-tw](Robot_Workbench [Template:Robot Tools navi/zh-tw](Template:Robot_Tools_navi/zh-tw.md) , [Robot Workbench/zh-tw](Robot_Workbench/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Robot/zh-tw diff --git a/wiki/translations/zh-tw/Category:Screenshots.md b/wiki/translations/zh-tw/Category:Screenshots.md index 88354c5a6a..78f2b515cc 100644 --- a/wiki/translations/zh-tw/Category:Screenshots.md +++ b/wiki/translations/zh-tw/Category:Screenshots.md @@ -6,3 +6,6 @@ This category lists pages with screenshots. [Screenshots/zh-tw](Screenshots/zh-tw.md) [Category:Documentation/zh-tw](Category:Documentation/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Screenshots/zh-tw diff --git a/wiki/translations/zh-tw/Category:Ship.md b/wiki/translations/zh-tw/Category:Ship.md index 9da5127da1..2cb2fd755a 100644 --- a/wiki/translations/zh-tw/Category:Ship.md +++ b/wiki/translations/zh-tw/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/zh-tw](Ship_Workbench/z [Template:Ship Tools navi/zh-tw](Template:Ship_Tools_navi/zh-tw.md) , [Ship Workbench/zh-tw](Ship_Workbench/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Ship/zh-tw diff --git a/wiki/translations/zh-tw/Category:Sketcher.md b/wiki/translations/zh-tw/Category:Sketcher.md index aedfcd6d35..45695b9101 100644 --- a/wiki/translations/zh-tw/Category:Sketcher.md +++ b/wiki/translations/zh-tw/Category:Sketcher.md @@ -6,3 +6,6 @@ This category lists pages related to the [Sketcher Workbench/zh-tw](Sketcher_Wor [Basic Sketcher Tutorial/zh-tw](Basic_Sketcher_Tutorial/zh-tw.md) , [Template:Sketcher Tools navi/zh-tw](Template:Sketcher_Tools_navi/zh-tw.md) , [Sketcher Workbench/zh-tw](Sketcher_Workbench/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Sketcher/zh-tw diff --git a/wiki/translations/zh-tw/Category:Surface.md b/wiki/translations/zh-tw/Category:Surface.md index 83af52f75f..6c596761a0 100644 --- a/wiki/translations/zh-tw/Category:Surface.md +++ b/wiki/translations/zh-tw/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/zh-tw](Surface_Workb [Surface Workbench/zh-tw](Surface_Workbench/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Surface/zh-tw diff --git a/wiki/translations/zh-tw/Category:TechDraw.md b/wiki/translations/zh-tw/Category:TechDraw.md index d545641ab2..bab9b275e1 100644 --- a/wiki/translations/zh-tw/Category:TechDraw.md +++ b/wiki/translations/zh-tw/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/zh-tw](TechDraw_Wor [TechDraw Workbench/zh-tw](TechDraw_Workbench/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:TechDraw/zh-tw diff --git a/wiki/translations/zh-tw/Category:Template.md b/wiki/translations/zh-tw/Category:Template.md index dd85700eb7..8cf2b6b623 100644 --- a/wiki/translations/zh-tw/Category:Template.md +++ b/wiki/translations/zh-tw/Category:Template.md @@ -6,3 +6,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) ### Contents: [Category:Categories/zh-tw](Category:Categories/zh-tw.md) [Category:Template:Navigation/zh-tw](Category:Template:Navigation/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Template/zh-tw diff --git a/wiki/translations/zh-tw/Category:Template:Navigation.md b/wiki/translations/zh-tw/Category:Template:Navigation.md index f26e53ae5f..853b1bbf9f 100644 --- a/wiki/translations/zh-tw/Category:Template:Navigation.md +++ b/wiki/translations/zh-tw/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/zh-tw](Template:Arch_Tools_navi/zh-tw.md) , [Template:Drawing Tools navi/zh-tw](Template:Drawing_Tools_navi/zh-tw.md) , [Template:FEM Tools navi/zh-tw](Template:FEM_Tools_navi/zh-tw.md) , [Template:Mesh Tools navi/zh-tw](Template:Mesh_Tools_navi/zh-tw.md) , [Template:OpenSCAD Tools navi/zh-tw](Template:OpenSCAD_Tools_navi/zh-tw.md) , [Template:Part Tools navi/zh-tw](Template:Part_Tools_navi/zh-tw.md) , [Template:PartDesign Tools navi/zh-tw](Template:PartDesign_Tools_navi/zh-tw.md) , [Template:Path Tools navi/zh-tw](Template:Path_Tools_navi/zh-tw.md) , [Template:Raytracing Tools navi/zh-tw](Template:Raytracing_Tools_navi/zh-tw.md) , [Template:Robot Tools navi/zh-tw](Template:Robot_Tools_navi/zh-tw.md) , [Template:Ship Tools navi/zh-tw](Template:Ship_Tools_navi/zh-tw.md) , [Template:Sketcher Tools navi/zh-tw](Template:Sketcher_Tools_navi/zh-tw.md) [Category:Template/zh-tw](Category:Template/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/zh-tw diff --git a/wiki/translations/zh-tw/Category:Tutorials.md b/wiki/translations/zh-tw/Category:Tutorials.md index 16ee24478c..2e58a8c8a4 100644 --- a/wiki/translations/zh-tw/Category:Tutorials.md +++ b/wiki/translations/zh-tw/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials](Offsite_tutorials/zh-tw.md) and [Video tut [Aeroplane/zh-tw](Aeroplane/zh-tw.md) , [Basic Sketcher Tutorial/zh-tw](Basic_Sketcher_Tutorial/zh-tw.md) , [Customize Toolbars/zh-tw](Customize_Toolbars/zh-tw.md) , [Template:TutorialInfo/zh-tw](Template:TutorialInfo/zh-tw.md) , [Tutorials/zh-tw](Tutorials/zh-tw.md) [Category:Categories/zh-tw](Category:Categories/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Tutorials/zh-tw diff --git a/wiki/translations/zh-tw/Category:User_Documentation.md b/wiki/translations/zh-tw/Category:User_Documentation.md index 51f9a5f2fb..257d68c9e5 100644 --- a/wiki/translations/zh-tw/Category:User_Documentation.md +++ b/wiki/translations/zh-tw/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [About FreeCAD/zh-tw](About_FreeCAD/zh-tw.md) , [Aeroplane/zh-tw](Aeroplane/zh-tw.md) , [Arch Wall/zh-tw](Arch_Wall/zh-tw.md) , [Arch Workbench/zh-tw](Arch_Workbench/zh-tw.md) , [Basic Sketcher Tutorial/zh-tw](Basic_Sketcher_Tutorial/zh-tw.md) , [Compiling/zh-tw](Compiling/zh-tw.md) , [Complete Workbench/zh-tw](Complete_Workbench/zh-tw.md) , [Contributors/zh-tw](Contributors/zh-tw.md) , [Customize Toolbars/zh-tw](Customize_Toolbars/zh-tw.md) , [Donate/zh-tw](Donate/zh-tw.md) , [Download/zh-tw](Download/zh-tw.md) , [Draft Workbench/zh-tw](Draft_Workbench/zh-tw.md) , [Drawing Workbench/zh-tw](Drawing_Workbench/zh-tw.md) , [Feature list/zh-tw](Feature_list/zh-tw.md) , [Getting started/zh-tw](Getting_started/zh-tw.md) , [Template:GuiCommand/zh-tw](Template:GuiCommand/zh-tw.md) , [Help FreeCAD/zh-tw](Help_FreeCAD/zh-tw.md) , [Image Workbench/zh-tw](Image_Workbench/zh-tw.md) , [Inspection Workbench/zh-tw](Inspection_Workbench/zh-tw.md) , [Installing on Mac/zh-tw](Installing_on_Mac/zh-tw.md) , [Licence/zh-tw](Licence/zh-tw.md) , [Localisation/zh-tw](Localisation/zh-tw.md) , [Main Page/zh-tw](Main_Page/zh-tw.md) , [Mesh Workbench/zh-tw](Mesh_Workbench/zh-tw.md) , [Offsite tutorials/zh-tw](Offsite_tutorials/zh-tw.md) , [Online Help Startpage/zh-tw](Online_Help_Startpage/zh-tw.md) , [Online Help Toc/zh-tw](Online_Help_Toc/zh-tw.md) , [OpenSCAD Workbench/zh-tw](OpenSCAD_Workbench/zh-tw.md) , [Part Module/zh-tw](Part_Module/zh-tw.md) , [PartDesign Workbench/zh-tw](PartDesign_Workbench/zh-tw.md) , [Path Workbench/zh-tw](Path_Workbench/zh-tw.md) , [Plot Module/zh-tw](Plot_Module/zh-tw.md) , [Points Workbench/zh-tw](Points_Workbench/zh-tw.md) , [Preferences Editor/zh-tw](Preferences_Editor/zh-tw.md) , [Raytracing Workbench/zh-tw](Raytracing_Workbench/zh-tw.md) , [Reverse Engineering Workbench/zh-tw](Reverse_Engineering_Workbench/zh-tw.md) , [Robot Workbench/zh-tw](Robot_Workbench/zh-tw.md) , [Screenshots/zh-tw](Screenshots/zh-tw.md) , [Ship Workbench/zh-tw](Ship_Workbench/zh-tw.md) , [Sketcher Workbench/zh-tw](Sketcher_Workbench/zh-tw.md) , [Spreadsheet Workbench/zh-tw](Spreadsheet_Workbench/zh-tw.md) , [Start Workbench/zh-tw](Start_Workbench/zh-tw.md) , [Surface Workbench/zh-tw](Surface_Workbench/zh-tw.md) , [TechDraw Workbench/zh-tw](TechDraw_Workbench/zh-tw.md) , [Template:TutorialInfo/zh-tw](Template:TutorialInfo/zh-tw.md) , [Tutorials/zh-tw](Tutorials/zh-tw.md) , [User hub/zh-tw](User_hub/zh-tw.md) , [Video tutorials/zh-tw](Video_tutorials/zh-tw.md) , [Web Workbench/zh-tw](Web_Workbench/zh-tw.md) , [Workbenches/zh-tw](Workbenches/zh-tw.md) , , , , , [Category:Documentation/zh-tw](Category:Documentation/zh-tw.md) [Category:Arch/zh-tw](Category:Arch/zh-tw.md) [Category:BIM/zh-tw](Category:BIM/zh-tw.md) [Category:Draft/zh-tw](Category:Draft/zh-tw.md) [Category:Inspection/zh-tw](Category:Inspection/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) + +--- +[documentation index](../README.md) > Category:User Documentation/zh-tw diff --git a/wiki/translations/zh-tw/Category:Workbenches.md b/wiki/translations/zh-tw/Category:Workbenches.md index bb3bd86ca9..b985a615c5 100644 --- a/wiki/translations/zh-tw/Category:Workbenches.md +++ b/wiki/translations/zh-tw/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/zh-tw](Arch_Workbench/zh-tw.md) , [Draft Workbench/zh-tw](Draft_Workbench/zh-tw.md) , [Image Workbench/zh-tw](Image_Workbench/zh-tw.md) , [Inspection Workbench/zh-tw](Inspection_Workbench/zh-tw.md) , [Mesh Workbench/zh-tw](Mesh_Workbench/zh-tw.md) , [OpenSCAD Workbench/zh-tw](OpenSCAD_Workbench/zh-tw.md) , [Part Module/zh-tw](Part_Module/zh-tw.md) , [PartDesign Workbench/zh-tw](PartDesign_Workbench/zh-tw.md) , [Path Workbench/zh-tw](Path_Workbench/zh-tw.md) , [Points Workbench/zh-tw](Points_Workbench/zh-tw.md) , [Raytracing Workbench/zh-tw](Raytracing_Workbench/zh-tw.md) , [Reverse Engineering Workbench/zh-tw](Reverse_Engineering_Workbench/zh-tw.md) , [Robot Workbench/zh-tw](Robot_Workbench/zh-tw.md) , [Sketcher Workbench/zh-tw](Sketcher_Workbench/zh-tw.md) , [Spreadsheet Workbench/zh-tw](Spreadsheet_Workbench/zh-tw.md) , [Start Workbench/zh-tw](Start_Workbench/zh-tw.md) , [Surface Workbench/zh-tw](Surface_Workbench/zh-tw.md) , [TechDraw Workbench/zh-tw](TechDraw_Workbench/zh-tw.md) , [Web Workbench/zh-tw](Web_Workbench/zh-tw.md) , [Workbenches/zh-tw](Workbenches/zh-tw.md) , , , , , , , , , , , , , , , , , [Category:User Documentation/zh-tw](Category:User_Documentation/zh-tw.md) [Category:Draft/zh-tw](Category:Draft/zh-tw.md) [Category:External Workbenches/zh-tw](Category:External_Workbenches/zh-tw.md) [Category:FEM/zh-tw](Category:FEM/zh-tw.md) [Category:Image/zh-tw](Category:Image/zh-tw.md) [Category:Inspection/zh-tw](Category:Inspection/zh-tw.md) [Category:Mesh/zh-tw](Category:Mesh/zh-tw.md) [Category:OpenSCAD/zh-tw](Category:OpenSCAD/zh-tw.md) [Category:Part/zh-tw](Category:Part/zh-tw.md) [Category:PartDesign/zh-tw](Category:PartDesign/zh-tw.md) [Category:Path/zh-tw](Category:Path/zh-tw.md) [Category:Points/zh-tw](Category:Points/zh-tw.md) [Category:Raytracing/zh-tw](Category:Raytracing/zh-tw.md) [Category:Robot/zh-tw](Category:Robot/zh-tw.md) [Category:Ship/zh-tw](Category:Ship/zh-tw.md) [Category:Sketcher/zh-tw](Category:Sketcher/zh-tw.md) [Category:Surface/zh-tw](Category:Surface/zh-tw.md) [Category:TechDraw/zh-tw](Category:TechDraw/zh-tw.md) + +--- +[documentation index](../README.md) > Category:Workbenches/zh-tw diff --git a/wiki/translations/zh-tw/Compiling.md b/wiki/translations/zh-tw/Compiling.md index 3df7059294..43371766ee 100644 --- a/wiki/translations/zh-tw/Compiling.md +++ b/wiki/translations/zh-tw/Compiling.md @@ -1,5 +1,5 @@ # Compiling/zh-tw - Each operating system has its own page for compiling FreeCAD in the [Online Help Documentation](Online_Help_Toc.md). +Each operating system has its own page for compiling FreeCAD in the [Online Help Documentation](Online_Help_Toc.md). ------------------------------------------------------ -------------------------------------------------- ------------------------------------------------- ------------------------------------------------------------- [Compile on Docker container](Compile_on_Docker.md) @@ -20,3 +20,6 @@ To learn to use revision control system and contribute code see [Source code man [Category:Developer\_Documentation](Category:Developer_Documentation.md) [Category:Developer](Category:Developer.md) + +--- +[documentation index](../README.md) > [Developer_Documentation](Category:Developer_Documentation.md) > Compiling/zh-tw diff --git a/wiki/translations/zh-tw/Complete_Workbench.md b/wiki/translations/zh-tw/Complete_Workbench.md index 55e1ed4738..2aa0c9e669 100644 --- a/wiki/translations/zh-tw/Complete_Workbench.md +++ b/wiki/translations/zh-tw/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/zh-tw - - - **The [[Complete Workbench]] is deprecated.** @@ -14,3 +11,6 @@ See [Interface Customization](Interface_Customization.md) if you\'d like to adap [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Contributors.md b/wiki/translations/zh-tw/Contributors.md index 3f55294304..72a1209324 100644 --- a/wiki/translations/zh-tw/Contributors.md +++ b/wiki/translations/zh-tw/Contributors.md @@ -1,10 +1,4 @@ # Contributors/zh-tw - - - - - - {{TOCright}} @@ -253,3 +247,6 @@ Developers of FreeCAD addons (retrieved from [Developer](Category:Developer.md) > Contributors/zh-tw diff --git a/wiki/translations/zh-tw/Customize_Toolbars.md b/wiki/translations/zh-tw/Customize_Toolbars.md index a6a771c82c..5f95a6f62c 100644 --- a/wiki/translations/zh-tw/Customize_Toolbars.md +++ b/wiki/translations/zh-tw/Customize_Toolbars.md @@ -1,5 +1,5 @@ # Customize Toolbars/zh-tw - {{TutorialInfo/zh-tw|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} +{{TutorialInfo/zh-tw|Topic=SampleTopic|Level=Beginner|Time=5 minutes|Author=[Mario52](User:Mario52.md)|FCVersion=All}} ## Synopsis @@ -122,3 +122,6 @@ See also [Interface Customization](Interface_Customization.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Customize Toolbars/zh-tw diff --git a/wiki/translations/zh-tw/Debugging.md b/wiki/translations/zh-tw/Debugging.md index 9a1d5213b8..e6a5d7a1c4 100644 --- a/wiki/translations/zh-tw/Debugging.md +++ b/wiki/translations/zh-tw/Debugging.md @@ -1,10 +1,4 @@ # Debugging/zh-tw - - - - - - {{TOCright}} ## Test First @@ -336,3 +330,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/zh-tw diff --git a/wiki/translations/zh-tw/Donate.md b/wiki/translations/zh-tw/Donate.md index f89cb40ae9..a581768af3 100644 --- a/wiki/translations/zh-tw/Donate.md +++ b/wiki/translations/zh-tw/Donate.md @@ -1,7 +1,4 @@ # Donate/zh-tw - - - - - +--- +[documentation index](../README.md) > Download/zh-tw diff --git a/wiki/translations/zh-tw/Draft_Module.md b/wiki/translations/zh-tw/Draft_Module.md index 0be982036c..7082241d70 100644 --- a/wiki/translations/zh-tw/Draft_Module.md +++ b/wiki/translations/zh-tw/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/zh-tw 1. REDIRECT [Draft\_Workbench/zh-tw](Draft_Workbench/zh-tw.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/zh-tw diff --git a/wiki/translations/zh-tw/Draft_Workbench.md b/wiki/translations/zh-tw/Draft_Workbench.md index c317d95a8f..cc4347181b 100644 --- a/wiki/translations/zh-tw/Draft_Workbench.md +++ b/wiki/translations/zh-tw/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/zh-tw - - - - - -Draft workbench icon +# Draft workbench icon Draft Workbench/zh-tw {{TOCright}} @@ -374,3 +368,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Drawing_Module.md b/wiki/translations/zh-tw/Drawing_Module.md index 69f7545efd..ca3a0c5e84 100644 --- a/wiki/translations/zh-tw/Drawing_Module.md +++ b/wiki/translations/zh-tw/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/zh-tw 1. REDIRECT [Drawing\_Workbench/zh-tw](Drawing_Workbench/zh-tw.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/zh-tw diff --git a/wiki/translations/zh-tw/Drawing_Workbench.md b/wiki/translations/zh-tw/Drawing_Workbench.md index b184a03d5d..ba4965a789 100644 --- a/wiki/translations/zh-tw/Drawing_Workbench.md +++ b/wiki/translations/zh-tw/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/zh-tw - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** Drawing workbench icon @@ -84,3 +81,6 @@ Some notes on the programming side of the drawing module will be added to the [D }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Feature_list.md b/wiki/translations/zh-tw/Feature_list.md index de22d36ae1..e45a860175 100644 --- a/wiki/translations/zh-tw/Feature_list.md +++ b/wiki/translations/zh-tw/Feature_list.md @@ -1,6 +1,4 @@ # Feature list/zh-tw - - This is an extensive, but not complete, list of features which FreeCAD implements. If you want to look into the future see the [Development roadmap](Development_roadmap.md) for a quick overview of what\'s coming next. Also, the [Screenshots](Screenshots.md) are a nice place to go. @@ -100,3 +98,6 @@ Power users have created various custom [external workbenches](external_workbenc [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/zh-tw diff --git a/wiki/translations/zh-tw/Getting_started.md b/wiki/translations/zh-tw/Getting_started.md index 0bc81d8d63..f967552f9e 100644 --- a/wiki/translations/zh-tw/Getting_started.md +++ b/wiki/translations/zh-tw/Getting_started.md @@ -1,10 +1,4 @@ # Getting started/zh-tw - - - - - - {{TOCright}} ## Foreword @@ -204,3 +198,6 @@ And finally, one of the most powerful features of FreeCAD is the [scripting](scr [Category:User Documentation/zh-tw](Category:User_Documentation/zh-tw.md) + +--- +[documentation index](../README.md) > Getting started/zh-tw diff --git a/wiki/translations/zh-tw/Help_FreeCAD.md b/wiki/translations/zh-tw/Help_FreeCAD.md index c97b7a2c4e..f0f3f9a03a 100644 --- a/wiki/translations/zh-tw/Help_FreeCAD.md +++ b/wiki/translations/zh-tw/Help_FreeCAD.md @@ -1,6 +1,4 @@ # Help FreeCAD/zh-tw - - ## Introduction @@ -87,3 +85,6 @@ Writing code for FreeCAD is not hard, and you don\'t need any permission, you ca [Category:Documentation](Category:Documentation.md) [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Command Reference]] page lists and documents all of the FreeCAD ](Category:Command Reference]] page lists and documents all of the FreeCAD .md) > Help FreeCAD/zh-tw diff --git a/wiki/translations/zh-tw/Image_Module.md b/wiki/translations/zh-tw/Image_Module.md index 30ea0c0766..67166543c6 100644 --- a/wiki/translations/zh-tw/Image_Module.md +++ b/wiki/translations/zh-tw/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/zh-tw 1. REDIRECT [Image\_Workbench/zh-tw](Image_Workbench/zh-tw.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/zh-tw diff --git a/wiki/translations/zh-tw/Image_Workbench.md b/wiki/translations/zh-tw/Image_Workbench.md index 5c8354f598..9e42d7232b 100644 --- a/wiki/translations/zh-tw/Image_Workbench.md +++ b/wiki/translations/zh-tw/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/zh-tw - - -Image workbench icon +# Image workbench icon Image Workbench/zh-tw ## Introduction @@ -39,3 +36,6 @@ The offset of the image can be set during import, or changed later through its p }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Inspection_Workbench.md b/wiki/translations/zh-tw/Inspection_Workbench.md index 802e445326..74f07023d0 100644 --- a/wiki/translations/zh-tw/Inspection_Workbench.md +++ b/wiki/translations/zh-tw/Inspection_Workbench.md @@ -1,7 +1,4 @@ -# Inspection Workbench/zh-tw - - -Inspection workbench icon +# Inspection workbench icon Inspection Workbench/zh-tw ## Introduction @@ -27,3 +24,6 @@ Alternatively, use the macro Inspection Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Install_on_Mac.md b/wiki/translations/zh-tw/Install_on_Mac.md index d3e5f0a251..1b23bd840b 100644 --- a/wiki/translations/zh-tw/Install_on_Mac.md +++ b/wiki/translations/zh-tw/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/zh-tw 1. REDIRECT [Installing\_on\_Mac/zh-tw](Installing_on_Mac/zh-tw.md) + +--- +[documentation index](../README.md) > Install on Mac/zh-tw diff --git a/wiki/translations/zh-tw/Installing_on_Mac.md b/wiki/translations/zh-tw/Installing_on_Mac.md index 682c422a87..4ee08bf19c 100644 --- a/wiki/translations/zh-tw/Installing_on_Mac.md +++ b/wiki/translations/zh-tw/Installing_on_Mac.md @@ -1,9 +1,4 @@ # Installing on Mac/zh-tw - - - - - FreeCAD can be installed on macOS from a .dmg package which you can drag and drop into your Applications folder: @@ -50,8 +45,5 @@ There currently isn\'t an uninstaller for FreeCAD installed with dmg package. To If you installed FreeCAD with homebrew simply use the `brew uninstall freecad` command. That\'s it. - - - - - +--- +[documentation index](../README.md) > Installing on Mac/zh-tw diff --git a/wiki/translations/zh-tw/Licence.md b/wiki/translations/zh-tw/Licence.md index e89c16fe3e..2db6f77485 100644 --- a/wiki/translations/zh-tw/Licence.md +++ b/wiki/translations/zh-tw/Licence.md @@ -1,10 +1,4 @@ # Licence/zh-tw - - - - - - {{TOCright}} ## Licences used in FreeCAD @@ -61,3 +55,6 @@ Nevertheless this decision is made only for the core system of FreeCAD. Every wr [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Licence/zh-tw diff --git a/wiki/translations/zh-tw/Localisation.md b/wiki/translations/zh-tw/Localisation.md index d9e4a1295f..c953abafea 100644 --- a/wiki/translations/zh-tw/Localisation.md +++ b/wiki/translations/zh-tw/Localisation.md @@ -1,10 +1,4 @@ # Localisation/zh-tw - - - - - - {{TOCright}} ## Overview @@ -239,3 +233,6 @@ FreeCADGui.setLocale('ru') [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Wiki](Category:Wiki.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Localisation/zh-tw diff --git a/wiki/translations/zh-tw/Main_Page.md b/wiki/translations/zh-tw/Main_Page.md index b0dc1d38ab..b4146fc5ca 100644 --- a/wiki/translations/zh-tw/Main_Page.md +++ b/wiki/translations/zh-tw/Main_Page.md @@ -1,7 +1,4 @@ # Main Page/zh-tw - - -
這是[FreeCAD](http://www.freecadweb.org) 的wiki說明文件。 @@ -78,3 +75,6 @@ Check the [Development roadmap](Development_roadmap.md) for news about what is b [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/zh-tw diff --git a/wiki/translations/zh-tw/Manual:Introduction.md b/wiki/translations/zh-tw/Manual:Introduction.md index f8fb0df72a..75e6bfc145 100644 --- a/wiki/translations/zh-tw/Manual:Introduction.md +++ b/wiki/translations/zh-tw/Manual:Introduction.md @@ -1,7 +1,4 @@ # Manual:Introduction/zh-tw - - -
@@ -45,3 +42,5 @@ FreeCAD 同時為一徹底社群專案,以俱 FreeCAD 熱忱所凝聚之社群
+--- +[documentation index](../README.md) > Manual:Introduction/zh-tw diff --git a/wiki/translations/zh-tw/Manual:Summary.md b/wiki/translations/zh-tw/Manual:Summary.md index 4251c0db52..3a489026e7 100644 --- a/wiki/translations/zh-tw/Manual:Summary.md +++ b/wiki/translations/zh-tw/Manual:Summary.md @@ -57,3 +57,6 @@ There is another table of contents for the [FreeCAD **Online Help** system](Onli [Category:Manual](Category:Manual.md) + +--- +[documentation index](../README.md) > [Manual](Category:Manual.md) > Manual:Summary/zh-tw diff --git a/wiki/translations/zh-tw/Mesh_Module.md b/wiki/translations/zh-tw/Mesh_Module.md index e52f522458..c1f70a454c 100644 --- a/wiki/translations/zh-tw/Mesh_Module.md +++ b/wiki/translations/zh-tw/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/zh-tw 1. REDIRECT [Mesh Workbench/zh-tw](Mesh_Workbench/zh-tw.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/zh-tw diff --git a/wiki/translations/zh-tw/Mesh_Workbench.md b/wiki/translations/zh-tw/Mesh_Workbench.md index 551c35c562..cb75c2fa65 100644 --- a/wiki/translations/zh-tw/Mesh_Workbench.md +++ b/wiki/translations/zh-tw/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/zh-tw - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench/zh-tw {{TOCright}} @@ -111,3 +105,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Offsite_tutorials.md b/wiki/translations/zh-tw/Offsite_tutorials.md index 0d9e64fb40..8bbca7db95 100644 --- a/wiki/translations/zh-tw/Offsite_tutorials.md +++ b/wiki/translations/zh-tw/Offsite_tutorials.md @@ -1,5 +1,5 @@ # Offsite tutorials/zh-tw - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** +**Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add tutorials made with version 0.16 or older, as these releases are considered obsolete.** This page lists FreeCAD tutorials found on other sites on the web. @@ -18,4 +18,7 @@ This page lists FreeCAD tutorials found on other sites on the web. {{Tutorials navi -}} +}} + +--- +[documentation index](../README.md) > Offsite tutorials/zh-tw diff --git a/wiki/translations/zh-tw/Online_Help_Startpage.md b/wiki/translations/zh-tw/Online_Help_Startpage.md index 19707d6443..0e67edd4c7 100644 --- a/wiki/translations/zh-tw/Online_Help_Startpage.md +++ b/wiki/translations/zh-tw/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/zh-tw - - ![150](images/Crystal_Clear_app_tutorials.png ) ## Welcome to the FreeCAD on-line help @@ -22,3 +20,6 @@ As you may have experienced sometimes, programmers are really bad help writers! [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/zh-tw diff --git a/wiki/translations/zh-tw/Online_Help_Toc.md b/wiki/translations/zh-tw/Online_Help_Toc.md index d344cfac67..327fa7afd6 100644 --- a/wiki/translations/zh-tw/Online_Help_Toc.md +++ b/wiki/translations/zh-tw/Online_Help_Toc.md @@ -1,6 +1,4 @@ # Online Help Toc/zh-tw - - This is the table of contents used for the automatic building of the **Online Help** system in FreeCAD. A printable version of this manual is also available on the [releases page](https://github.com/FreeCAD/FreeCAD/releases). If you have any questions or need help with FreeCAD please consult the [help page](Help.md) including the forums and chat groups. There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction.md). @@ -155,3 +153,6 @@ There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction. [Category:Documentation/zh-tw](Category:Documentation/zh-tw.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/zh-tw diff --git a/wiki/translations/zh-tw/OpenSCAD_Module.md b/wiki/translations/zh-tw/OpenSCAD_Module.md index 08e7b45170..9d76e10df2 100644 --- a/wiki/translations/zh-tw/OpenSCAD_Module.md +++ b/wiki/translations/zh-tw/OpenSCAD_Module.md @@ -1,2 +1,5 @@ # OpenSCAD Module/zh-tw 1. REDIRECT [OpenSCAD\_Workbench/zh-tw](OpenSCAD_Workbench/zh-tw.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Module/zh-tw diff --git a/wiki/translations/zh-tw/OpenSCAD_Workbench.md b/wiki/translations/zh-tw/OpenSCAD_Workbench.md index b27d7890ef..cb3740f7dd 100644 --- a/wiki/translations/zh-tw/OpenSCAD_Workbench.md +++ b/wiki/translations/zh-tw/OpenSCAD_Workbench.md @@ -1,10 +1,4 @@ -# OpenSCAD Workbench/zh-tw - - - - - -OpenSCAD workbench icon +# OpenSCAD workbench icon OpenSCAD Workbench/zh-tw ## Introduction @@ -108,3 +102,6 @@ If FreeCAD crashes when importing CSG, it is strongly recommended that you enabl }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/zh-tw diff --git a/wiki/translations/zh-tw/PartDesign_Legacy.md b/wiki/translations/zh-tw/PartDesign_Legacy.md index e82135bb9e..728cd3fd71 100644 --- a/wiki/translations/zh-tw/PartDesign_Legacy.md +++ b/wiki/translations/zh-tw/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/zh-tw 1. REDIRECT [PartDesign\_Workbench/zh-tw](PartDesign_Workbench/zh-tw.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/zh-tw diff --git a/wiki/translations/zh-tw/PartDesign_Workbench.md b/wiki/translations/zh-tw/PartDesign_Workbench.md index 9c3adbd957..1d56e05f9c 100644 --- a/wiki/translations/zh-tw/PartDesign_Workbench.md +++ b/wiki/translations/zh-tw/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/zh-tw - - -PartDesign workbench icon +# PartDesign workbench icon PartDesign Workbench/zh-tw {{TOCright}} @@ -217,3 +214,6 @@ Some additional functionality found in the Part Design menu: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Part_Module.md b/wiki/translations/zh-tw/Part_Module.md index 5a1810a39a..aeb4c6fad1 100644 --- a/wiki/translations/zh-tw/Part_Module.md +++ b/wiki/translations/zh-tw/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/zh-tw - - - - - -Part workbench icon +# Part workbench icon Part Module/zh-tw {{TOCright}} @@ -234,3 +228,6 @@ See [Part scripting](Part_scripting.md). [Category:Part/zh-tw](Category:Part/zh-tw.md) [Category:Workbenches/zh-tw](Category:Workbenches/zh-tw.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/zh-tw diff --git a/wiki/translations/zh-tw/Part_Workbench.md b/wiki/translations/zh-tw/Part_Workbench.md index e23211a17d..bc0f10e1e7 100644 --- a/wiki/translations/zh-tw/Part_Workbench.md +++ b/wiki/translations/zh-tw/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/zh-tw 1. REDIRECT [Part\_Module/zh-tw](Part_Module/zh-tw.md) + +--- +[documentation index](../README.md) > Part Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Path_Workbench.md b/wiki/translations/zh-tw/Path_Workbench.md index 01e18cc922..ea59eae115 100644 --- a/wiki/translations/zh-tw/Path_Workbench.md +++ b/wiki/translations/zh-tw/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/zh-tw - - - - - -Path workbench icon +# Path workbench icon Path Workbench/zh-tw {{TOCright}} @@ -228,3 +222,6 @@ See [Path scripting](Path_scripting.md). }} [Category:User Documentation/zh-tw](Category:User_Documentation/zh-tw.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Path Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Plot_Module.md b/wiki/translations/zh-tw/Plot_Module.md index 4fdc85f81d..deb0930c1d 100644 --- a/wiki/translations/zh-tw/Plot_Module.md +++ b/wiki/translations/zh-tw/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/zh-tw - - -Plot workbench icon +# Plot workbench icon Plot Module/zh-tw {{TOCright}} @@ -64,3 +61,6 @@ Since the Plot Workbench is a layer on top of `matplotlib`, you are free to use }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/zh-tw diff --git a/wiki/translations/zh-tw/Plot_Workbench.md b/wiki/translations/zh-tw/Plot_Workbench.md index a54a7ff5ac..66b10f2732 100644 --- a/wiki/translations/zh-tw/Plot_Workbench.md +++ b/wiki/translations/zh-tw/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/zh-tw 1. REDIRECT [Plot\_Module/zh-tw](Plot_Module/zh-tw.md) + +--- +[documentation index](../README.md) > Plot Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Points_Module.md b/wiki/translations/zh-tw/Points_Module.md index 98167870bd..74adb85dfc 100644 --- a/wiki/translations/zh-tw/Points_Module.md +++ b/wiki/translations/zh-tw/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/zh-tw 1. REDIRECT [Points\_Workbench/zh-tw](Points_Workbench/zh-tw.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/zh-tw diff --git a/wiki/translations/zh-tw/Points_Workbench.md b/wiki/translations/zh-tw/Points_Workbench.md index 76b2f08aa9..26310cd0c8 100644 --- a/wiki/translations/zh-tw/Points_Workbench.md +++ b/wiki/translations/zh-tw/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/zh-tw - - - - - -Points workbench icon +# Points workbench icon Points Workbench/zh-tw ## Introduction @@ -51,3 +45,6 @@ All Points Workbench tools can be accessed from the **Points** menu. Some tools }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Power_users_hub.md b/wiki/translations/zh-tw/Power_users_hub.md index 452b76f9df..f8b321b877 100644 --- a/wiki/translations/zh-tw/Power_users_hub.md +++ b/wiki/translations/zh-tw/Power_users_hub.md @@ -1,5 +1,4 @@ -# Power users hub/zh-tw - +# Power users hub/zh-tw ------------------------------------------------------------------------ @@ -208,3 +207,6 @@ On the [Community portal](FreeCAD_Community_Portal.md), you can find other FreeC }} [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > Power users hub/zh-tw diff --git a/wiki/translations/zh-tw/Preferences_Editor.md b/wiki/translations/zh-tw/Preferences_Editor.md index 4b8d4d359d..d9f4e3359b 100644 --- a/wiki/translations/zh-tw/Preferences_Editor.md +++ b/wiki/translations/zh-tw/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/zh-tw - - - - - - {{TOCright}} ## Introduction @@ -697,3 +691,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/zh-tw diff --git a/wiki/translations/zh-tw/Ray_Tracing_Workbench.md b/wiki/translations/zh-tw/Ray_Tracing_Workbench.md index 891228f06a..17d4a5f71c 100644 --- a/wiki/translations/zh-tw/Ray_Tracing_Workbench.md +++ b/wiki/translations/zh-tw/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/zh-tw 1. REDIRECT [Raytracing\_Workbench/zh-tw](Raytracing_Workbench/zh-tw.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Raytracing_Module.md b/wiki/translations/zh-tw/Raytracing_Module.md index 0e0510312d..4bee29c3e1 100644 --- a/wiki/translations/zh-tw/Raytracing_Module.md +++ b/wiki/translations/zh-tw/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/zh-tw 1. REDIRECT [Raytracing\_Workbench/zh-tw](Raytracing_Workbench/zh-tw.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/zh-tw diff --git a/wiki/translations/zh-tw/Raytracing_Workbench.md b/wiki/translations/zh-tw/Raytracing_Workbench.md index c3e46a9508..14cda9e27e 100644 --- a/wiki/translations/zh-tw/Raytracing_Workbench.md +++ b/wiki/translations/zh-tw/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/zh-tw - - - **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. Nevertheless, the information in this page is generally useful for the new workbench, as both modules work basically in the same way. @@ -149,3 +146,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Reverse_Engineering_Workbench.md b/wiki/translations/zh-tw/Reverse_Engineering_Workbench.md index a45464458c..6d0c7de08e 100644 --- a/wiki/translations/zh-tw/Reverse_Engineering_Workbench.md +++ b/wiki/translations/zh-tw/Reverse_Engineering_Workbench.md @@ -1,10 +1,4 @@ -# Reverse Engineering Workbench/zh-tw - - - - - -Reverse Engineering workbench icon +# Reverse Engineering workbench icon Reverse Engineering Workbench/zh-tw ## Introduction @@ -29,3 +23,6 @@ Link to appropriate threads discussing this workbench [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Robot_Workbench.md b/wiki/translations/zh-tw/Robot_Workbench.md index 0f87ba6660..bbcb082343 100644 --- a/wiki/translations/zh-tw/Robot_Workbench.md +++ b/wiki/translations/zh-tw/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/zh-tw - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. @@ -81,3 +75,6 @@ See the [Robot API example](Robot_API_example.md) for a description of the funct }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Screenshots.md b/wiki/translations/zh-tw/Screenshots.md index 635c2ba801..005193677c 100644 --- a/wiki/translations/zh-tw/Screenshots.md +++ b/wiki/translations/zh-tw/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/zh-tw - {{TOCright}} +{{TOCright}} Here are a few screenshots showing different parts of FreeCAD. They are not ordered in any particular timeline, so the images may differ from your actual version. See more screenshots submitted by FreeCAD users on the [screenshot forum thread](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751) and on the [\"Show your project here!\" Users Showcase forum part](http://forum.freecadweb.org/viewforum.php?f=24). @@ -202,3 +202,6 @@ FreeCAD runs in console mode (without gui) Dialog to save a picture with arbitrary sizes. [Category:User Documentation/zh-tw](Category:User_Documentation/zh-tw.md) [Category:Screenshots/zh-tw](Category:Screenshots/zh-tw.md) + +--- +[documentation index](../README.md) > Screenshots/zh-tw diff --git a/wiki/translations/zh-tw/Ship_Workbench.md b/wiki/translations/zh-tw/Ship_Workbench.md index 002eab8e3b..038f1b6c47 100644 --- a/wiki/translations/zh-tw/Ship_Workbench.md +++ b/wiki/translations/zh-tw/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/zh-tw - - -Ship workbench icon +# Ship workbench icon Ship Workbench/zh-tw {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Sketcher_Module.md b/wiki/translations/zh-tw/Sketcher_Module.md index 1502fe7dbe..c17cebaad2 100644 --- a/wiki/translations/zh-tw/Sketcher_Module.md +++ b/wiki/translations/zh-tw/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/zh-tw 1. REDIRECT [Sketcher Workbench/zh-tw](Sketcher_Workbench/zh-tw.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/zh-tw diff --git a/wiki/translations/zh-tw/Sketcher_Workbench.md b/wiki/translations/zh-tw/Sketcher_Workbench.md index c6fab9b944..eddd0b8112 100644 --- a/wiki/translations/zh-tw/Sketcher_Workbench.md +++ b/wiki/translations/zh-tw/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/zh-tw - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/zh-tw {{TOCright}} @@ -328,3 +322,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [Category:User Documentation/zh-tw](Category:User_Documentation/zh-tw.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Spreadsheet_Module.md b/wiki/translations/zh-tw/Spreadsheet_Module.md index 70ddb7d823..1b24a41c03 100644 --- a/wiki/translations/zh-tw/Spreadsheet_Module.md +++ b/wiki/translations/zh-tw/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module/zh-tw 1. REDIRECT [Spreadsheet Workbench/zh-tw](Spreadsheet_Workbench/zh-tw.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module/zh-tw diff --git a/wiki/translations/zh-tw/Spreadsheet_Workbench.md b/wiki/translations/zh-tw/Spreadsheet_Workbench.md index d1aee07e17..965d931285 100644 --- a/wiki/translations/zh-tw/Spreadsheet_Workbench.md +++ b/wiki/translations/zh-tw/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/zh-tw - {{Page_in_progress}} @@ -235,3 +234,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Start_Workbench.md b/wiki/translations/zh-tw/Start_Workbench.md index 14bb08501e..3cfd5998d2 100644 --- a/wiki/translations/zh-tw/Start_Workbench.md +++ b/wiki/translations/zh-tw/Start_Workbench.md @@ -1,10 +1,4 @@ -# Start Workbench/zh-tw - - - - - -Start workbench icon +# Start workbench icon Start Workbench/zh-tw The [Start Workbench](Start_Workbench.md) is not really a workbench, it\'s just the page that is presented when you open FreeCAD with no document loaded. @@ -26,3 +20,6 @@ From this interface you can see useful information and jump to recently opened f [Category:User Documentation/zh-tw](Category:User_Documentation/zh-tw.md) [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Surface_Module.md b/wiki/translations/zh-tw/Surface_Module.md index 4d9fa3acf2..51ebd46709 100644 --- a/wiki/translations/zh-tw/Surface_Module.md +++ b/wiki/translations/zh-tw/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/zh-tw 1. REDIRECT [Surface\_Workbench/zh-tw](Surface_Workbench/zh-tw.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/zh-tw diff --git a/wiki/translations/zh-tw/Surface_Workbench.md b/wiki/translations/zh-tw/Surface_Workbench.md index 612a06ff05..23fdccdbab 100644 --- a/wiki/translations/zh-tw/Surface_Workbench.md +++ b/wiki/translations/zh-tw/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/zh-tw - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/zh-tw {{TOCright}} @@ -57,3 +51,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/zh-tw diff --git a/wiki/translations/zh-tw/TechDraw_Module.md b/wiki/translations/zh-tw/TechDraw_Module.md index 074d0d252b..c66b0d4793 100644 --- a/wiki/translations/zh-tw/TechDraw_Module.md +++ b/wiki/translations/zh-tw/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/zh-tw 1. REDIRECT [TechDraw\_Workbench/zh-tw](TechDraw_Workbench/zh-tw.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/zh-tw diff --git a/wiki/translations/zh-tw/TechDraw_Workbench.md b/wiki/translations/zh-tw/TechDraw_Workbench.md index 77ba7221b3..7a90c3152d 100644 --- a/wiki/translations/zh-tw/TechDraw_Workbench.md +++ b/wiki/translations/zh-tw/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/zh-tw - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/zh-tw ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Tutorials.md b/wiki/translations/zh-tw/Tutorials.md index ecb408ef90..a65ccf6d9e 100644 --- a/wiki/translations/zh-tw/Tutorials.md +++ b/wiki/translations/zh-tw/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/zh-tw - - - - - - {{TOCright}} @@ -292,3 +286,6 @@ Generate 2D projections of your 3D models, and add dimensions. [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials|目錄:Tutorial]]中找到,而經過排序整理的教學課程,請見下方表格](Category:Tutorials|目錄:Tutorial]]中找到,而經過排序整理的教學課程,請見下方表格.md) > Tutorials/zh-tw diff --git a/wiki/translations/zh-tw/User_hub.md b/wiki/translations/zh-tw/User_hub.md index 7bbc9620c6..fd8cb8c0dd 100644 --- a/wiki/translations/zh-tw/User_hub.md +++ b/wiki/translations/zh-tw/User_hub.md @@ -1,5 +1,4 @@ -# User hub/zh-tw - +# User hub/zh-tw ------------------------------------------------------------------------ @@ -122,3 +121,6 @@ This is the official FreeCAD online help. Please note that the whole online help [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/zh-tw diff --git a/wiki/translations/zh-tw/Video_tutorials.md b/wiki/translations/zh-tw/Video_tutorials.md index c16c03fa1c..6d9b133e59 100644 --- a/wiki/translations/zh-tw/Video_tutorials.md +++ b/wiki/translations/zh-tw/Video_tutorials.md @@ -1,7 +1,4 @@ # Video tutorials/zh-tw - - - **Please pay attention to the version of FreeCAD used in the tutorial. If a tutorial uses an older version of the program, the general modelling process may still work but some tools may have changed in newer releases. Do not add videos made with version 0.16 or older, as these releases are considered obsolete.** This page presents a selection of video tutorials made by FreeCAD users and developers. Visit the [Tutorials and videos](https://forum.freecadweb.org/viewforum.php?f=36) subforum for more links. A useful source of video tutorials is [YouTube](https://YouTube.com). @@ -95,3 +92,6 @@ For more see [Video tutorials obsolete](Video_tutorials_obsolete.md). }} [Category:Common Questions](Category:Common_Questions.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Video tutorials/zh-tw diff --git a/wiki/translations/zh-tw/Web_Workbench.md b/wiki/translations/zh-tw/Web_Workbench.md index 4c16c3a703..9968b975a2 100644 --- a/wiki/translations/zh-tw/Web_Workbench.md +++ b/wiki/translations/zh-tw/Web_Workbench.md @@ -1,10 +1,4 @@ -# Web Workbench/zh-tw - - - - - -Web workbench icon +# Web workbench icon Web Workbench/zh-tw ## Introduction @@ -19,3 +13,6 @@ From this browser you are able to navigate the web, click on links, read the onl [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/zh-tw diff --git a/wiki/translations/zh-tw/Workbench_creation.md b/wiki/translations/zh-tw/Workbench_creation.md index 2735779019..8e499b8c58 100644 --- a/wiki/translations/zh-tw/Workbench_creation.md +++ b/wiki/translations/zh-tw/Workbench_creation.md @@ -1,10 +1,4 @@ # Workbench creation/zh-tw - - - - - - {{TOCright}} ## Introduction @@ -398,3 +392,6 @@ os.remove(qrc_filename) }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > Workbench creation/zh-tw diff --git a/wiki/translations/zh-tw/Workbenches.md b/wiki/translations/zh-tw/Workbenches.md index 8c2f75d20c..07136ee813 100644 --- a/wiki/translations/zh-tw/Workbenches.md +++ b/wiki/translations/zh-tw/Workbenches.md @@ -1,9 +1,4 @@ # Workbenches/zh-tw - - - - - FreeCAD, like many modern design applications such as [Revit](wikipedia:Revit.md) or [CATIA](wikipedia:CATIA.md), is based on the concept of [Workbench](wikipedia:Workbench.md). 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. @@ -83,3 +78,6 @@ New workbenches are always in development, stay tuned! [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/zh-tw diff --git a/wiki/translations/zh/About_FreeCAD.md b/wiki/translations/zh/About_FreeCAD.md index 6e6f94f869..291018e9b2 100644 --- a/wiki/translations/zh/About_FreeCAD.md +++ b/wiki/translations/zh/About_FreeCAD.md @@ -1,7 +1,4 @@ -# About FreeCAD/zh - - - +# About FreeCAD/zh
@@ -34,3 +31,6 @@ FreeCAD由热情的开发人员和用户组成的社区进行维护和开发( [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > About FreeCAD/zh diff --git a/wiki/translations/zh/Arch_Module.md b/wiki/translations/zh/Arch_Module.md index 23ae70031e..993ae1fac7 100644 --- a/wiki/translations/zh/Arch_Module.md +++ b/wiki/translations/zh/Arch_Module.md @@ -1,2 +1,5 @@ # Arch Module/zh 1. REDIRECT [Arch\_Workbench/zh](Arch_Workbench/zh.md) + +--- +[documentation index](../README.md) > [Arch](Arch_Workbench.md) > Arch Module/zh diff --git a/wiki/translations/zh/Arch_Workbench.md b/wiki/translations/zh/Arch_Workbench.md index 29073a8b2e..f1324110bf 100644 --- a/wiki/translations/zh/Arch_Workbench.md +++ b/wiki/translations/zh/Arch_Workbench.md @@ -1,7 +1,4 @@ # Arch Workbench/zh - - - {{docnav/zh|[Workbenches/zh](Workbenches/zh.md)|[Draft Workbench/zh](Draft_Workbench/zh.md)|IconL=|IconR=Workbench_Draft.svg}} Arch workbench icon @@ -146,3 +143,6 @@ The Arch module can be used in [Python](Python.md) scripts and [macros](macros.m [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Arch Workbench/zh diff --git a/wiki/translations/zh/Category:Addons.md b/wiki/translations/zh/Category:Addons.md index 495ba256c8..9cb9504b1f 100644 --- a/wiki/translations/zh/Category:Addons.md +++ b/wiki/translations/zh/Category:Addons.md @@ -1,6 +1,4 @@ # Category:Addons/zh - - This page lists external addon workbenches that have a page in this wiki. Addons are modules or workbenches contributed by the community and are not part of standard FreeCAD. ### Contents: @@ -8,3 +6,6 @@ This page lists external addon workbenches that have a page in this wiki. Addons [Plot Module/zh](Plot_Module/zh.md) , [Ship Workbench/zh](Ship_Workbench/zh.md) , [Category:Categories](Category:Categories.md) [Category:External Workbenches/zh](Category:External_Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Addons/zh diff --git a/wiki/translations/zh/Category:Administration.md b/wiki/translations/zh/Category:Administration.md index 8d88299eb9..ae31a27b19 100644 --- a/wiki/translations/zh/Category:Administration.md +++ b/wiki/translations/zh/Category:Administration.md @@ -6,3 +6,6 @@ This category contains articles and categories about wiki administrative subject [Template:Arch Tools navi/zh](Template:Arch_Tools_navi/zh.md) , [Template:Drawing Tools navi/zh](Template:Drawing_Tools_navi/zh.md) , [Template:FEM Tools navi/zh](Template:FEM_Tools_navi/zh.md) , [Template:Mesh Tools navi/zh](Template:Mesh_Tools_navi/zh.md) , [Template:OpenSCAD Tools navi/zh](Template:OpenSCAD_Tools_navi/zh.md) , [Template:Part Tools navi/zh](Template:Part_Tools_navi/zh.md) , [Template:PartDesign Tools navi/zh](Template:PartDesign_Tools_navi/zh.md) , [Template:Path Tools navi/zh](Template:Path_Tools_navi/zh.md) , [Template:Plot Tools navi/zh](Template:Plot_Tools_navi/zh.md) , [Template:Raytracing Tools navi/zh](Template:Raytracing_Tools_navi/zh.md) , [Template:Robot Tools navi/zh](Template:Robot_Tools_navi/zh.md) , [Template:Ship Tools navi/zh](Template:Ship_Tools_navi/zh.md) , [Template:Sketcher Tools navi/zh](Template:Sketcher_Tools_navi/zh.md) , [Tracker/zh](Tracker/zh.md) [Category:Categories/zh](Category:Categories/zh.md) + +--- +[documentation index](../README.md) > Category:Administration/zh diff --git a/wiki/translations/zh/Category:Arch.md b/wiki/translations/zh/Category:Arch.md index 45f427be04..ecf9c3f96e 100644 --- a/wiki/translations/zh/Category:Arch.md +++ b/wiki/translations/zh/Category:Arch.md @@ -6,3 +6,6 @@ Pages relating to Architectural and Building Information Management [Template:Arch Tools navi/zh](Template:Arch_Tools_navi/zh.md) , [Arch Workbench/zh](Arch_Workbench/zh.md) [Category:User Documentation/zh](Category:User_Documentation/zh.md) [Category:BIM/zh](Category:BIM/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Arch/zh diff --git a/wiki/translations/zh/Category:BIM.md b/wiki/translations/zh/Category:BIM.md index b131c42ebc..9bc3339c30 100644 --- a/wiki/translations/zh/Category:BIM.md +++ b/wiki/translations/zh/Category:BIM.md @@ -4,3 +4,6 @@ This category is for pages related to building information management (BIM). ### Contents: [Category:User Documentation/zh](Category:User_Documentation/zh.md) [Category:Arch/zh](Category:Arch/zh.md) + +--- +[documentation index](../README.md) > Category:BIM/zh diff --git a/wiki/translations/zh/Category:Base.md b/wiki/translations/zh/Category:Base.md index c61e4a8d1f..34b1fe1d90 100644 --- a/wiki/translations/zh/Category:Base.md +++ b/wiki/translations/zh/Category:Base.md @@ -4,3 +4,6 @@ This category lists pages that describe the general FreeCAD program, not tied to ### Contents: [Category:User Documentation/zh](Category:User_Documentation/zh.md) + +--- +[documentation index](../README.md) > Category:Base/zh diff --git a/wiki/translations/zh/Category:Categories.md b/wiki/translations/zh/Category:Categories.md index 7ba8be25a1..557f5fce87 100644 --- a/wiki/translations/zh/Category:Categories.md +++ b/wiki/translations/zh/Category:Categories.md @@ -11,3 +11,6 @@ This is the **top category** which contains the main categories of the FreeCAD w , , , , , , , , , [Category:Categories/zh](Category:Categories/zh.md) [Category:Addons/zh](Category:Addons/zh.md) [Category:Administration/zh](Category:Administration/zh.md) [Category:Categories/zh](Category:Categories/zh.md) [Category:Command Reference/zh](Category:Command_Reference/zh.md) [Category:Developer Documentation/zh](Category:Developer_Documentation/zh.md) [Category:Documentation/zh](Category:Documentation/zh.md) [Category:Hubs/zh](Category:Hubs/zh.md) [Category:Python Code/zh](Category:Python_Code/zh.md) [Category:Template/zh](Category:Template/zh.md) [Category:Tutorials/zh](Category:Tutorials/zh.md) + +--- +[documentation index](../README.md) > Category:Categories/zh diff --git a/wiki/translations/zh/Category:Command_Reference.md b/wiki/translations/zh/Category:Command_Reference.md index 72e5098f65..efb8871d64 100644 --- a/wiki/translations/zh/Category:Command_Reference.md +++ b/wiki/translations/zh/Category:Command_Reference.md @@ -6,3 +6,6 @@ This category contains the help pages of each of FreeCAD [Command](Command.md). [Template:GuiCommand/zh](Template:GuiCommand/zh.md) , [Path ExportTemplate/zh](Path_ExportTemplate/zh.md) , [Path Inspect/zh](Path_Inspect/zh.md) , [Path Job/zh](Path_Job/zh.md) , [Path SelectLoop/zh](Path_SelectLoop/zh.md) , [Path Simulator/zh](Path_Simulator/zh.md) , [Path ToolLibraryEdit/zh](Path_ToolLibraryEdit/zh.md) [Category:Categories/zh](Category:Categories/zh.md) + +--- +[documentation index](../README.md) > Category:Command Reference/zh diff --git a/wiki/translations/zh/Category:Developer_Documentation.md b/wiki/translations/zh/Category:Developer_Documentation.md index 505471e401..52ac11c668 100644 --- a/wiki/translations/zh/Category:Developer_Documentation.md +++ b/wiki/translations/zh/Category:Developer_Documentation.md @@ -6,3 +6,6 @@ This category gathers documentation article mostly aimed at programmers [Debugging/zh](Debugging/zh.md) , [Installing on Linux/zh](Installing_on_Linux/zh.md) , [Property/zh](Property/zh.md) , [Topological data scripting/zh](Topological_data_scripting/zh.md) , [Tracker/zh](Tracker/zh.md) [Category:Documentation/zh](Category:Documentation/zh.md) [Category:Categories/zh](Category:Categories/zh.md) + +--- +[documentation index](../README.md) > Category:Developer Documentation/zh diff --git a/wiki/translations/zh/Category:Documentation.md b/wiki/translations/zh/Category:Documentation.md index cf288cfa68..5c3f4aca95 100644 --- a/wiki/translations/zh/Category:Documentation.md +++ b/wiki/translations/zh/Category:Documentation.md @@ -6,3 +6,6 @@ This category groups all of the FreeCAD documentation [Main Page/zh](Main_Page/zh.md) , [Online Help Toc/zh](Online_Help_Toc/zh.md) , , , [Category:Categories/zh](Category:Categories/zh.md) [Category:Developer Documentation/zh](Category:Developer_Documentation/zh.md) [Category:Poweruser Documentation/zh](Category:Poweruser_Documentation/zh.md) [Category:User Documentation/zh](Category:User_Documentation/zh.md) + +--- +[documentation index](../README.md) > Category:Documentation/zh diff --git a/wiki/translations/zh/Category:Draft.md b/wiki/translations/zh/Category:Draft.md index 267d6385cb..ec42d04a2e 100644 --- a/wiki/translations/zh/Category:Draft.md +++ b/wiki/translations/zh/Category:Draft.md @@ -6,3 +6,6 @@ This category list pages related to the \"User\_Documentation/zh\" and \"Workben [Draft Workbench/zh](Draft_Workbench/zh.md) [Category:User Documentation/zh](Category:User_Documentation/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Draft/zh diff --git a/wiki/translations/zh/Category:Drawing.md b/wiki/translations/zh/Category:Drawing.md index ad100a7be5..f2636b823a 100644 --- a/wiki/translations/zh/Category:Drawing.md +++ b/wiki/translations/zh/Category:Drawing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/zh](Drawing_Workbenc [Template:Drawing Tools navi/zh](Template:Drawing_Tools_navi/zh.md) , [Drawing Workbench/zh](Drawing_Workbench/zh.md) [Category:Obsolete Workbenches/zh](Category:Obsolete_Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Drawing/zh diff --git a/wiki/translations/zh/Category:External_Workbenches.md b/wiki/translations/zh/Category:External_Workbenches.md index b8e012d8b8..cf7b2115d6 100644 --- a/wiki/translations/zh/Category:External_Workbenches.md +++ b/wiki/translations/zh/Category:External_Workbenches.md @@ -6,3 +6,6 @@ This category collects pages from the [external workbenches](external_workbenche [Plot Module/zh](Plot_Module/zh.md) , [Ship Workbench/zh](Ship_Workbench/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) [Category:Addons/zh](Category:Addons/zh.md) + +--- +[documentation index](../README.md) > Category:External Workbenches/zh diff --git a/wiki/translations/zh/Category:FEM.md b/wiki/translations/zh/Category:FEM.md index ca24fa2219..27ed215d39 100644 --- a/wiki/translations/zh/Category:FEM.md +++ b/wiki/translations/zh/Category:FEM.md @@ -6,3 +6,6 @@ This category lists pages related to the [FEM Workbench/zh](FEM_Workbench/zh.md) [Template:FEM Tools navi/zh](Template:FEM_Tools_navi/zh.md) , [FEM Workbench/zh](FEM_Workbench/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:FEM/zh diff --git a/wiki/translations/zh/Category:Hubs.md b/wiki/translations/zh/Category:Hubs.md index f502b53c3a..27235d8050 100644 --- a/wiki/translations/zh/Category:Hubs.md +++ b/wiki/translations/zh/Category:Hubs.md @@ -6,3 +6,6 @@ This category gathers the meeting points of the 3 broad categories of users of F [User hub/zh](User_hub/zh.md) [Category:Categories/zh](Category:Categories/zh.md) + +--- +[documentation index](../README.md) > Category:Hubs/zh diff --git a/wiki/translations/zh/Category:Image.md b/wiki/translations/zh/Category:Image.md index b4ef5b7aec..ceded89388 100644 --- a/wiki/translations/zh/Category:Image.md +++ b/wiki/translations/zh/Category:Image.md @@ -6,3 +6,6 @@ This category lists pages related to the [Image Workbench/zh](Image_Workbench/zh [Image Workbench/zh](Image_Workbench/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Image/zh diff --git a/wiki/translations/zh/Category:Inspection.md b/wiki/translations/zh/Category:Inspection.md index 3af7b633fb..a7ae42257c 100644 --- a/wiki/translations/zh/Category:Inspection.md +++ b/wiki/translations/zh/Category:Inspection.md @@ -6,3 +6,6 @@ This category lists pages related to the [Inspection Workbench](Inspection_Workb [Inspection Workbench/zh](Inspection_Workbench/zh.md) [Category:Workbenches](Category:Workbenches.md) [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > Category:Inspection/zh diff --git a/wiki/translations/zh/Category:Mesh.md b/wiki/translations/zh/Category:Mesh.md index 641d15fbf1..b8eb57f816 100644 --- a/wiki/translations/zh/Category:Mesh.md +++ b/wiki/translations/zh/Category:Mesh.md @@ -6,3 +6,6 @@ This category lists pages related to the [Mesh\_Workbench/zh](Mesh_Workbench/zh. [Template:Mesh Tools navi/zh](Template:Mesh_Tools_navi/zh.md) , [Mesh Workbench/zh](Mesh_Workbench/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Mesh/zh diff --git a/wiki/translations/zh/Category:Obsolete_Workbenches.md b/wiki/translations/zh/Category:Obsolete_Workbenches.md index dacf68aa89..05c35f7bd2 100644 --- a/wiki/translations/zh/Category:Obsolete_Workbenches.md +++ b/wiki/translations/zh/Category:Obsolete_Workbenches.md @@ -6,3 +6,6 @@ This category lists pages related to the [Drawing Workbench/zh](Drawing_Workbenc [Complete Workbench/zh](Complete_Workbench/zh.md) , [Drawing Workbench/zh](Drawing_Workbench/zh.md) , , [Category:Obsolete Workbenches/zh](Category:Obsolete_Workbenches/zh.md) [Category:Drawing/zh](Category:Drawing/zh.md) [Category:Obsolete Workbenches/zh](Category:Obsolete_Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Obsolete Workbenches/zh diff --git a/wiki/translations/zh/Category:OpenSCAD.md b/wiki/translations/zh/Category:OpenSCAD.md index fda292f2cc..53d3e7dbff 100644 --- a/wiki/translations/zh/Category:OpenSCAD.md +++ b/wiki/translations/zh/Category:OpenSCAD.md @@ -6,3 +6,6 @@ This category lists pages related to the [OpenSCAD\_Workbench/zh](OpenSCAD_Workb [Template:OpenSCAD Tools navi/zh](Template:OpenSCAD_Tools_navi/zh.md) , [OpenSCAD Workbench/zh](OpenSCAD_Workbench/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:OpenSCAD/zh diff --git a/wiki/translations/zh/Category:Part.md b/wiki/translations/zh/Category:Part.md index f8d4cf6f2e..bad7a7dffb 100644 --- a/wiki/translations/zh/Category:Part.md +++ b/wiki/translations/zh/Category:Part.md @@ -6,3 +6,6 @@ This category lists pages related to the [Part Workbench/zh](Part_Workbench/zh.m [Part Module/zh](Part_Module/zh.md) , [Template:Part Tools navi/zh](Template:Part_Tools_navi/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Part/zh diff --git a/wiki/translations/zh/Category:PartDesign.md b/wiki/translations/zh/Category:PartDesign.md index 1cdd20b7b3..66278b6a76 100644 --- a/wiki/translations/zh/Category:PartDesign.md +++ b/wiki/translations/zh/Category:PartDesign.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/zh](PartDesign_Wo [Template:PartDesign Tools navi/zh](Template:PartDesign_Tools_navi/zh.md) , [PartDesign Workbench/zh](PartDesign_Workbench/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:PartDesign/zh diff --git a/wiki/translations/zh/Category:Path.md b/wiki/translations/zh/Category:Path.md index 5b1d857979..da93d0ab35 100644 --- a/wiki/translations/zh/Category:Path.md +++ b/wiki/translations/zh/Category:Path.md @@ -6,3 +6,6 @@ This category lists pages related to the [PartDesign Workbench/zh](PartDesign_Wo [Path ExportTemplate/zh](Path_ExportTemplate/zh.md) , [Path Inspect/zh](Path_Inspect/zh.md) , [Path Job/zh](Path_Job/zh.md) , [Path SelectLoop/zh](Path_SelectLoop/zh.md) , [Path Simulator/zh](Path_Simulator/zh.md) , [Path ToolLibraryEdit/zh](Path_ToolLibraryEdit/zh.md) , [Template:Path Tools navi/zh](Template:Path_Tools_navi/zh.md) , [Path Workbench/zh](Path_Workbench/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Path/zh diff --git a/wiki/translations/zh/Category:Plot.md b/wiki/translations/zh/Category:Plot.md index bdcb450bef..336048c365 100644 --- a/wiki/translations/zh/Category:Plot.md +++ b/wiki/translations/zh/Category:Plot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Plot Workbench/zh](Plot_Workbench/zh.m [Plot Module/zh](Plot_Module/zh.md) , [Template:Plot Tools navi/zh](Template:Plot_Tools_navi/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Plot/zh diff --git a/wiki/translations/zh/Category:Points.md b/wiki/translations/zh/Category:Points.md index 1c61ef637a..8ba98c31f1 100644 --- a/wiki/translations/zh/Category:Points.md +++ b/wiki/translations/zh/Category:Points.md @@ -6,3 +6,6 @@ This category lists pages related to the [Points Workbench/zh](Points_Workbench/ [Points Workbench/zh](Points_Workbench/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Points/zh diff --git a/wiki/translations/zh/Category:Poweruser_Documentation.md b/wiki/translations/zh/Category:Poweruser_Documentation.md index d6e4a756c6..279e302883 100644 --- a/wiki/translations/zh/Category:Poweruser_Documentation.md +++ b/wiki/translations/zh/Category:Poweruser_Documentation.md @@ -4,3 +4,6 @@ This category shows documentation articles dealing with python scripting, which ### Contents: [Category:Documentation/zh](Category:Documentation/zh.md) + +--- +[documentation index](../README.md) > Category:Poweruser Documentation/zh diff --git a/wiki/translations/zh/Category:Preferences.md b/wiki/translations/zh/Category:Preferences.md index 7bdd1d6d0f..a7f940cbb4 100644 --- a/wiki/translations/zh/Category:Preferences.md +++ b/wiki/translations/zh/Category:Preferences.md @@ -4,3 +4,6 @@ This category lists all existing Preference menus of different FreeCAD workbench ### Contents: [Preferences Editor/zh](Preferences_Editor/zh.md) + +--- +[documentation index](../README.md) > Category:Preferences/zh diff --git a/wiki/translations/zh/Category:Python_Code.md b/wiki/translations/zh/Category:Python_Code.md index 8a8f18e8dd..88572330b5 100644 --- a/wiki/translations/zh/Category:Python_Code.md +++ b/wiki/translations/zh/Category:Python_Code.md @@ -6,3 +6,6 @@ This category contains python code examples for FreeCAD [Debugging/zh](Debugging/zh.md) , [Property/zh](Property/zh.md) , [Topological data scripting/zh](Topological_data_scripting/zh.md) [Category:Categories/zh](Category:Categories/zh.md) + +--- +[documentation index](../README.md) > Category:Python Code/zh diff --git a/wiki/translations/zh/Category:Raytracing.md b/wiki/translations/zh/Category:Raytracing.md index 10bc041f2a..161bbf0e71 100644 --- a/wiki/translations/zh/Category:Raytracing.md +++ b/wiki/translations/zh/Category:Raytracing.md @@ -6,3 +6,6 @@ This category lists pages related to the [Raytracing Workbench/zh](Raytracing_Wo [Template:Raytracing Tools navi/zh](Template:Raytracing_Tools_navi/zh.md) , [Raytracing Workbench/zh](Raytracing_Workbench/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Raytracing/zh diff --git a/wiki/translations/zh/Category:Robot.md b/wiki/translations/zh/Category:Robot.md index 3e3512be42..f4f60b39c6 100644 --- a/wiki/translations/zh/Category:Robot.md +++ b/wiki/translations/zh/Category:Robot.md @@ -6,3 +6,6 @@ This category lists pages related to the [Robot Workbench/zh](Robot_Workbench/zh [Template:Robot Tools navi/zh](Template:Robot_Tools_navi/zh.md) , [Robot Workbench/zh](Robot_Workbench/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Robot/zh diff --git a/wiki/translations/zh/Category:Ship.md b/wiki/translations/zh/Category:Ship.md index 4bb0301196..8fa7da89f8 100644 --- a/wiki/translations/zh/Category:Ship.md +++ b/wiki/translations/zh/Category:Ship.md @@ -6,3 +6,6 @@ This category lists pages related to the [Ship Workbench/zh](Ship_Workbench/zh.m [Template:Ship Tools navi/zh](Template:Ship_Tools_navi/zh.md) , [Ship Workbench/zh](Ship_Workbench/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Ship/zh diff --git a/wiki/translations/zh/Category:Sketcher.md b/wiki/translations/zh/Category:Sketcher.md index 62263e788f..585c6b966a 100644 --- a/wiki/translations/zh/Category:Sketcher.md +++ b/wiki/translations/zh/Category:Sketcher.md @@ -6,3 +6,6 @@ This category lists pages related to the [Sketcher Workbench/zh](Sketcher_Workbe [Template:Sketcher Tools navi/zh](Template:Sketcher_Tools_navi/zh.md) , [Sketcher Workbench/zh](Sketcher_Workbench/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Sketcher/zh diff --git a/wiki/translations/zh/Category:Surface.md b/wiki/translations/zh/Category:Surface.md index be972cddcc..85d96e5e1d 100644 --- a/wiki/translations/zh/Category:Surface.md +++ b/wiki/translations/zh/Category:Surface.md @@ -6,3 +6,6 @@ This category lists pages related to the [Surface Workbench/zh](Surface_Workbenc [Surface Workbench/zh](Surface_Workbench/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:Surface/zh diff --git a/wiki/translations/zh/Category:TechDraw.md b/wiki/translations/zh/Category:TechDraw.md index 6788419355..fd416a27ef 100644 --- a/wiki/translations/zh/Category:TechDraw.md +++ b/wiki/translations/zh/Category:TechDraw.md @@ -6,3 +6,6 @@ This category lists pages related to the [TechDraw Workbench/zh](TechDraw_Workbe [TechDraw Workbench/zh](TechDraw_Workbench/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:TechDraw/zh diff --git a/wiki/translations/zh/Category:Template.md b/wiki/translations/zh/Category:Template.md index 0ad7f0e43c..8b6f9c8ef1 100644 --- a/wiki/translations/zh/Category:Template.md +++ b/wiki/translations/zh/Category:Template.md @@ -6,3 +6,6 @@ See also [UncategorizedTemplates](Special:UncategorizedTemplates.md) ### Contents: [Category:Categories/zh](Category:Categories/zh.md) [Category:Template:Navigation/zh](Category:Template:Navigation/zh.md) + +--- +[documentation index](../README.md) > Category:Template/zh diff --git a/wiki/translations/zh/Category:Template:Navigation.md b/wiki/translations/zh/Category:Template:Navigation.md index 200d8f2350..f32cc9a126 100644 --- a/wiki/translations/zh/Category:Template:Navigation.md +++ b/wiki/translations/zh/Category:Template:Navigation.md @@ -6,3 +6,6 @@ This category lists templates that create navigation elements. [Template:Arch Tools navi/zh](Template:Arch_Tools_navi/zh.md) , [Template:Drawing Tools navi/zh](Template:Drawing_Tools_navi/zh.md) , [Template:FEM Tools navi/zh](Template:FEM_Tools_navi/zh.md) , [Template:Mesh Tools navi/zh](Template:Mesh_Tools_navi/zh.md) , [Template:OpenSCAD Tools navi/zh](Template:OpenSCAD_Tools_navi/zh.md) , [Template:Part Tools navi/zh](Template:Part_Tools_navi/zh.md) , [Template:PartDesign Tools navi/zh](Template:PartDesign_Tools_navi/zh.md) , [Template:Path Tools navi/zh](Template:Path_Tools_navi/zh.md) , [Template:Plot Tools navi/zh](Template:Plot_Tools_navi/zh.md) , [Template:Raytracing Tools navi/zh](Template:Raytracing_Tools_navi/zh.md) , [Template:Robot Tools navi/zh](Template:Robot_Tools_navi/zh.md) , [Template:Ship Tools navi/zh](Template:Ship_Tools_navi/zh.md) , [Template:Sketcher Tools navi/zh](Template:Sketcher_Tools_navi/zh.md) [Category:Template/zh](Category:Template/zh.md) + +--- +[documentation index](../README.md) > Category:Template:Navigation/zh diff --git a/wiki/translations/zh/Category:Tutorials.md b/wiki/translations/zh/Category:Tutorials.md index 539a2b0423..6485a0001a 100644 --- a/wiki/translations/zh/Category:Tutorials.md +++ b/wiki/translations/zh/Category:Tutorials.md @@ -8,3 +8,6 @@ Special pages are [Offsite tutorials](Offsite_tutorials.md) and [Video tutorials [Template:TutorialInfo/zh](Template:TutorialInfo/zh.md) , [Tutorials/zh](Tutorials/zh.md) [Category:Categories/zh](Category:Categories/zh.md) + +--- +[documentation index](../README.md) > Category:Tutorials/zh diff --git a/wiki/translations/zh/Category:User_Documentation.md b/wiki/translations/zh/Category:User_Documentation.md index c8dbc2e75b..0ad57403d9 100644 --- a/wiki/translations/zh/Category:User_Documentation.md +++ b/wiki/translations/zh/Category:User_Documentation.md @@ -6,3 +6,6 @@ This category contains articles about the usage of FreeCAD. It is also the centr [About FreeCAD/zh](About_FreeCAD/zh.md) , [Arch Workbench/zh](Arch_Workbench/zh.md) , [Complete Workbench/zh](Complete_Workbench/zh.md) , [Document structure/zh](Document_structure/zh.md) , [Draft Workbench/zh](Draft_Workbench/zh.md) , [Drawing Workbench/zh](Drawing_Workbench/zh.md) , [Feature list/zh](Feature_list/zh.md) , [FEM Workbench/zh](FEM_Workbench/zh.md) , [Getting started/zh](Getting_started/zh.md) , [Template:GuiCommand/zh](Template:GuiCommand/zh.md) , [Image Workbench/zh](Image_Workbench/zh.md) , [Inspection Workbench/zh](Inspection_Workbench/zh.md) , [Installing on Linux/zh](Installing_on_Linux/zh.md) , [Installing on Mac/zh](Installing_on_Mac/zh.md) , [Installing on Windows/zh](Installing_on_Windows/zh.md) , [Interface Customization/zh](Interface_Customization/zh.md) , [Main Page/zh](Main_Page/zh.md) , [Mesh Workbench/zh](Mesh_Workbench/zh.md) , [Mouse navigation/zh](Mouse_navigation/zh.md) , [Online Help Startpage/zh](Online_Help_Startpage/zh.md) , [Online Help Toc/zh](Online_Help_Toc/zh.md) , [OpenSCAD Workbench/zh](OpenSCAD_Workbench/zh.md) , [Part Module/zh](Part_Module/zh.md) , [PartDesign Workbench/zh](PartDesign_Workbench/zh.md) , [Path ExportTemplate/zh](Path_ExportTemplate/zh.md) , [Path Inspect/zh](Path_Inspect/zh.md) , [Path Job/zh](Path_Job/zh.md) , [Path SelectLoop/zh](Path_SelectLoop/zh.md) , [Path Simulator/zh](Path_Simulator/zh.md) , [Path ToolLibraryEdit/zh](Path_ToolLibraryEdit/zh.md) , [Path Workbench/zh](Path_Workbench/zh.md) , [Plot Module/zh](Plot_Module/zh.md) , [Points Workbench/zh](Points_Workbench/zh.md) , [Preferences Editor/zh](Preferences_Editor/zh.md) , [Raytracing Workbench/zh](Raytracing_Workbench/zh.md) , [Reverse Engineering Workbench/zh](Reverse_Engineering_Workbench/zh.md) , [Robot Workbench/zh](Robot_Workbench/zh.md) , [Ship Workbench/zh](Ship_Workbench/zh.md) , [Sketcher Workbench/zh](Sketcher_Workbench/zh.md) , [Spreadsheet Workbench/zh](Spreadsheet_Workbench/zh.md) , [Start Workbench/zh](Start_Workbench/zh.md) , [Surface Workbench/zh](Surface_Workbench/zh.md) , [TechDraw Workbench/zh](TechDraw_Workbench/zh.md) , [Tracker/zh](Tracker/zh.md) , [Template:TutorialInfo/zh](Template:TutorialInfo/zh.md) , [Tutorials/zh](Tutorials/zh.md) , [User hub/zh](User_hub/zh.md) , [Web Workbench/zh](Web_Workbench/zh.md) , [Workbenches/zh](Workbenches/zh.md) , , , , , , [Category:Documentation/zh](Category:Documentation/zh.md) [Category:Arch/zh](Category:Arch/zh.md) [Category:Base/zh](Category:Base/zh.md) [Category:BIM/zh](Category:BIM/zh.md) [Category:Draft/zh](Category:Draft/zh.md) [Category:Inspection/zh](Category:Inspection/zh.md) [Category:Workbenches/zh](Category:Workbenches/zh.md) + +--- +[documentation index](../README.md) > Category:User Documentation/zh diff --git a/wiki/translations/zh/Category:Workbenches.md b/wiki/translations/zh/Category:Workbenches.md index 5962253dc1..2ce9e9062a 100644 --- a/wiki/translations/zh/Category:Workbenches.md +++ b/wiki/translations/zh/Category:Workbenches.md @@ -6,3 +6,6 @@ This category lists workbenches included in FreeCAD. [Arch Workbench/zh](Arch_Workbench/zh.md) , [Draft Workbench/zh](Draft_Workbench/zh.md) , [FEM Workbench/zh](FEM_Workbench/zh.md) , [Image Workbench/zh](Image_Workbench/zh.md) , [Inspection Workbench/zh](Inspection_Workbench/zh.md) , [Mesh Workbench/zh](Mesh_Workbench/zh.md) , [OpenSCAD Workbench/zh](OpenSCAD_Workbench/zh.md) , [Part Module/zh](Part_Module/zh.md) , [PartDesign Workbench/zh](PartDesign_Workbench/zh.md) , [Path Workbench/zh](Path_Workbench/zh.md) , [Points Workbench/zh](Points_Workbench/zh.md) , [Raytracing Workbench/zh](Raytracing_Workbench/zh.md) , [Reverse Engineering Workbench/zh](Reverse_Engineering_Workbench/zh.md) , [Robot Workbench/zh](Robot_Workbench/zh.md) , [Sketcher Workbench/zh](Sketcher_Workbench/zh.md) , [Spreadsheet Workbench/zh](Spreadsheet_Workbench/zh.md) , [Start Workbench/zh](Start_Workbench/zh.md) , [Surface Workbench/zh](Surface_Workbench/zh.md) , [TechDraw Workbench/zh](TechDraw_Workbench/zh.md) , [Web Workbench/zh](Web_Workbench/zh.md) , [Workbenches/zh](Workbenches/zh.md) , , , , , , , , , , , , , , , , , , , [Category:User Documentation/zh](Category:User_Documentation/zh.md) [Category:Arch/zh](Category:Arch/zh.md) [Category:Draft/zh](Category:Draft/zh.md) [Category:External Workbenches/zh](Category:External_Workbenches/zh.md) [Category:FEM/zh](Category:FEM/zh.md) [Category:Image/zh](Category:Image/zh.md) [Category:Inspection/zh](Category:Inspection/zh.md) [Category:Mesh/zh](Category:Mesh/zh.md) [Category:OpenSCAD/zh](Category:OpenSCAD/zh.md) [Category:Part/zh](Category:Part/zh.md) [Category:PartDesign/zh](Category:PartDesign/zh.md) [Category:Path/zh](Category:Path/zh.md) [Category:Plot/zh](Category:Plot/zh.md) [Category:Points/zh](Category:Points/zh.md) [Category:Raytracing/zh](Category:Raytracing/zh.md) [Category:Robot/zh](Category:Robot/zh.md) [Category:Ship/zh](Category:Ship/zh.md) [Category:Sketcher/zh](Category:Sketcher/zh.md) [Category:Surface/zh](Category:Surface/zh.md) [Category:TechDraw/zh](Category:TechDraw/zh.md) + +--- +[documentation index](../README.md) > Category:Workbenches/zh diff --git a/wiki/translations/zh/Complete_Workbench.md b/wiki/translations/zh/Complete_Workbench.md index 40dd071ccf..85c34c359b 100644 --- a/wiki/translations/zh/Complete_Workbench.md +++ b/wiki/translations/zh/Complete_Workbench.md @@ -1,7 +1,4 @@ # Complete Workbench/zh - - - **The [[Complete Workbench]] is deprecated.** @@ -14,3 +11,6 @@ See [Interface Customization](Interface_Customization.md) if you\'d like to adap [Category:Complete](Category:Complete.md) [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Complete Workbench/zh diff --git a/wiki/translations/zh/Debugging.md b/wiki/translations/zh/Debugging.md index 5109096159..957e229072 100644 --- a/wiki/translations/zh/Debugging.md +++ b/wiki/translations/zh/Debugging.md @@ -1,10 +1,4 @@ # Debugging/zh - - - - - - {{TOCright}} ## Test First @@ -336,3 +330,6 @@ For developers needing to dig deeper in to the OpenCasCade kernel, user \@abdull }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Debugging/zh diff --git a/wiki/translations/zh/Document_structure.md b/wiki/translations/zh/Document_structure.md index af0d2e41cb..c72b455fa5 100644 --- a/wiki/translations/zh/Document_structure.md +++ b/wiki/translations/zh/Document_structure.md @@ -1,10 +1,4 @@ # Document structure/zh - - - - - - {{TOCright}} FreeCad文档包含场景的所有对象。它可以包含组和使用任何工作台生成的对象。您可以在工作台之间切换但仍然编辑同一文档。文档是进行保存操作时存储到磁盘上的内容。您还可以在FreeCad中同时打开多个文档,并打开同一文档的多个视图。 @@ -73,5 +67,5 @@ FreeCADGui.ActiveDocument.ActiveView
- - +--- +[documentation index](../README.md) > Document structure/zh diff --git a/wiki/translations/zh/Draft_Module.md b/wiki/translations/zh/Draft_Module.md index 7d13cf8f0a..5921e084c1 100644 --- a/wiki/translations/zh/Draft_Module.md +++ b/wiki/translations/zh/Draft_Module.md @@ -1,2 +1,5 @@ # Draft Module/zh 1. REDIRECT [Draft\_Workbench/zh](Draft_Workbench/zh.md) + +--- +[documentation index](../README.md) > [Draft](Draft_Workbench.md) > Draft Module/zh diff --git a/wiki/translations/zh/Draft_Workbench.md b/wiki/translations/zh/Draft_Workbench.md index f567482251..166254cf7c 100644 --- a/wiki/translations/zh/Draft_Workbench.md +++ b/wiki/translations/zh/Draft_Workbench.md @@ -1,10 +1,4 @@ -# Draft Workbench/zh - - - - - -Draft workbench icon +# Draft workbench icon Draft Workbench/zh {{TOCright}} @@ -353,3 +347,6 @@ Inspecting the code of this module can help to understand the programming interf [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Draft Workbench/zh diff --git a/wiki/translations/zh/Drawing_Module.md b/wiki/translations/zh/Drawing_Module.md index 8ae864aaa1..b182462135 100644 --- a/wiki/translations/zh/Drawing_Module.md +++ b/wiki/translations/zh/Drawing_Module.md @@ -1,2 +1,5 @@ # Drawing Module/zh 1. REDIRECT [Drawing\_Workbench/zh](Drawing_Workbench/zh.md) + +--- +[documentation index](../README.md) > [Drawing](Drawing_Workbench.md) > Drawing Module/zh diff --git a/wiki/translations/zh/Drawing_Workbench.md b/wiki/translations/zh/Drawing_Workbench.md index f99882ed79..ff0d31c1ec 100644 --- a/wiki/translations/zh/Drawing_Workbench.md +++ b/wiki/translations/zh/Drawing_Workbench.md @@ -1,7 +1,4 @@ # Drawing Workbench/zh - - - **Development of the [[Drawing Workbench]] stopped in FreeCAD 0.16, and the new [[TechDraw Workbench]] aiming to replace it was introduced in v0.17. Both workbenches are still provided in v0.17, but the Drawing Workbench may be removed in future releases.** Drawing workbench icon @@ -84,3 +81,6 @@ Some notes on the programming side of the drawing module will be added to the [D }} [Category:Obsolete Workbenches](Category:Obsolete_Workbenches.md) + +--- +[documentation index](../README.md) > Drawing Workbench/zh diff --git a/wiki/translations/zh/FEM_Module.md b/wiki/translations/zh/FEM_Module.md index d1d8f17600..9b9291c35b 100644 --- a/wiki/translations/zh/FEM_Module.md +++ b/wiki/translations/zh/FEM_Module.md @@ -1,2 +1,5 @@ # FEM Module/zh 1. REDIRECT [FEM\_Workbench/zh](FEM_Workbench/zh.md) + +--- +[documentation index](../README.md) > FEM Module/zh diff --git a/wiki/translations/zh/FEM_Workbench.md b/wiki/translations/zh/FEM_Workbench.md index da81c3a154..1de90b9ef1 100644 --- a/wiki/translations/zh/FEM_Workbench.md +++ b/wiki/translations/zh/FEM_Workbench.md @@ -1,10 +1,4 @@ -# FEM Workbench/zh - - - - - -FEM workbench icon +# FEM workbench icon FEM Workbench/zh {{TOCright}} @@ -278,3 +272,6 @@ A developer\'s guide has been written to help power users in understanding the c }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > FEM Workbench/zh diff --git a/wiki/translations/zh/Feature_list.md b/wiki/translations/zh/Feature_list.md index 9e28508ddc..acad190558 100644 --- a/wiki/translations/zh/Feature_list.md +++ b/wiki/translations/zh/Feature_list.md @@ -1,6 +1,4 @@ # Feature list/zh - - 这是FreeCAD实现的广泛但不完整的功能列表。如果您想展望未来,请参阅[开发路线图](Development_roadmap.md),快速了解接下来会发生什么。此外,[截图集锦是一个不错的去处](Screenshots.md)。 @@ -129,3 +127,6 @@ [Category:User Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User Documentation](Category:User Documentation.md) > Feature list/zh diff --git a/wiki/translations/zh/Getting_started.md b/wiki/translations/zh/Getting_started.md index 19addafc60..936bd78024 100644 --- a/wiki/translations/zh/Getting_started.md +++ b/wiki/translations/zh/Getting_started.md @@ -1,7 +1,4 @@ # Getting started/zh - - -
@@ -268,3 +265,6 @@ Freecad作为一种开放源代码软件,提供了使用插件补充其工作 {{Userdocnavi/zh}} [Category:User Documentation/zh](Category:User_Documentation/zh.md) + +--- +[documentation index](../README.md) > Getting started/zh diff --git a/wiki/translations/zh/Image_Module.md b/wiki/translations/zh/Image_Module.md index 270258be00..01465fb04a 100644 --- a/wiki/translations/zh/Image_Module.md +++ b/wiki/translations/zh/Image_Module.md @@ -1,2 +1,5 @@ # Image Module/zh 1. REDIRECT [Image\_Workbench/zh](Image_Workbench/zh.md) + +--- +[documentation index](../README.md) > [Image](Image_Workbench.md) > Image Module/zh diff --git a/wiki/translations/zh/Image_Workbench.md b/wiki/translations/zh/Image_Workbench.md index 4e95ab8ccb..d80dcfa286 100644 --- a/wiki/translations/zh/Image_Workbench.md +++ b/wiki/translations/zh/Image_Workbench.md @@ -1,7 +1,4 @@ -# Image Workbench/zh - - -Image workbench icon +# Image workbench icon Image Workbench/zh ## Introduction @@ -39,3 +36,6 @@ The offset of the image can be set during import, or changed later through its p }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Image Workbench/zh diff --git a/wiki/translations/zh/Inspection_Workbench.md b/wiki/translations/zh/Inspection_Workbench.md index 1de73689a0..e6d0537046 100644 --- a/wiki/translations/zh/Inspection_Workbench.md +++ b/wiki/translations/zh/Inspection_Workbench.md @@ -1,7 +1,4 @@ -# Inspection Workbench/zh - - -Inspection workbench icon +# Inspection workbench icon Inspection Workbench/zh ## Introduction @@ -27,3 +24,6 @@ Alternatively, use the macro Inspection Workbench/zh diff --git a/wiki/translations/zh/Install_on_Linux.md b/wiki/translations/zh/Install_on_Linux.md index 1238b44d89..fade805803 100644 --- a/wiki/translations/zh/Install_on_Linux.md +++ b/wiki/translations/zh/Install_on_Linux.md @@ -1,2 +1,5 @@ # Install on Linux/zh 1. REDIRECT [Installing\_on\_Linux/zh](Installing_on_Linux/zh.md) + +--- +[documentation index](../README.md) > Install on Linux/zh diff --git a/wiki/translations/zh/Install_on_Mac.md b/wiki/translations/zh/Install_on_Mac.md index 9363d840a5..beab4de3cf 100644 --- a/wiki/translations/zh/Install_on_Mac.md +++ b/wiki/translations/zh/Install_on_Mac.md @@ -1,2 +1,5 @@ # Install on Mac/zh 1. REDIRECT [Installing\_on\_Mac/zh](Installing_on_Mac/zh.md) + +--- +[documentation index](../README.md) > Install on Mac/zh diff --git a/wiki/translations/zh/Install_on_Unix.md b/wiki/translations/zh/Install_on_Unix.md index 405a06d3a3..be14eb83a4 100644 --- a/wiki/translations/zh/Install_on_Unix.md +++ b/wiki/translations/zh/Install_on_Unix.md @@ -1,2 +1,5 @@ # Install on Unix/zh 1. REDIRECT [Installing\_on\_Linux/zh](Installing_on_Linux/zh.md) + +--- +[documentation index](../README.md) > Install on Unix/zh diff --git a/wiki/translations/zh/Install_on_Windows.md b/wiki/translations/zh/Install_on_Windows.md index 541702fec4..9a5422a225 100644 --- a/wiki/translations/zh/Install_on_Windows.md +++ b/wiki/translations/zh/Install_on_Windows.md @@ -1,2 +1,5 @@ # Install on Windows/zh 1. REDIRECT [Installing\_on\_Windows/zh](Installing_on_Windows/zh.md) + +--- +[documentation index](../README.md) > Install on Windows/zh diff --git a/wiki/translations/zh/Installing_on_Linux.md b/wiki/translations/zh/Installing_on_Linux.md index 601e478e7d..2cb9a20856 100644 --- a/wiki/translations/zh/Installing_on_Linux.md +++ b/wiki/translations/zh/Installing_on_Linux.md @@ -1,9 +1,4 @@ # Installing on Linux/zh - - - - - ## Overview @@ -377,3 +372,6 @@ Once you\'ve got FreeCAD installed, it\'s time to [get started](Getting_started. [Category:Common Questions](Category:Common_Questions.md) [Category:Developer Documentation](Category:Developer_Documentation.md) + +--- +[documentation index](../README.md) > [Common Questions](Category:Common Questions.md) > Installing on Linux/zh diff --git a/wiki/translations/zh/Installing_on_Mac.md b/wiki/translations/zh/Installing_on_Mac.md index 4efacede48..dfa05e874e 100644 --- a/wiki/translations/zh/Installing_on_Mac.md +++ b/wiki/translations/zh/Installing_on_Mac.md @@ -1,9 +1,4 @@ # Installing on Mac/zh - - - - - FreeCAD can be installed on macOS from a .dmg package which you can drag and drop into your Applications folder: @@ -50,8 +45,5 @@ There currently isn\'t an uninstaller for FreeCAD installed with dmg package. To If you installed FreeCAD with homebrew simply use the `brew uninstall freecad` command. That\'s it. - - - - - +--- +[documentation index](../README.md) > Installing on Mac/zh diff --git a/wiki/translations/zh/Installing_on_Windows.md b/wiki/translations/zh/Installing_on_Windows.md index 86704e91b5..e3bb7eb3a0 100644 --- a/wiki/translations/zh/Installing_on_Windows.md +++ b/wiki/translations/zh/Installing_on_Windows.md @@ -1,9 +1,4 @@ # Installing on Windows/zh - - - - - 在Windows上安装FreeCAD的最简单方法是下载下面的一个安装程序。 @@ -210,5 +205,5 @@ FreeCAD is running, but it has been reported that the OpenGL display does not wo
- - +--- +[documentation index](../README.md) > Installing on Windows/zh diff --git a/wiki/translations/zh/Interface_Customization.md b/wiki/translations/zh/Interface_Customization.md index 5930a702fb..20369013f4 100644 --- a/wiki/translations/zh/Interface_Customization.md +++ b/wiki/translations/zh/Interface_Customization.md @@ -1,10 +1,4 @@ # Interface Customization/zh - - - - - - {{TOCright}} ## Introduction @@ -285,4 +279,7 @@ Addons offer yet another way to customize the use interface. Below are some addo {{Std Base navi -}} {{Interface navi}} +}} {{Interface navi}} + +--- +[documentation index](../README.md) > Interface Customization/zh diff --git a/wiki/translations/zh/List_of_Commands.md b/wiki/translations/zh/List_of_Commands.md index 4a66ac9e2c..d72221931f 100644 --- a/wiki/translations/zh/List_of_Commands.md +++ b/wiki/translations/zh/List_of_Commands.md @@ -1,2 +1,5 @@ # List of Commands/zh 1. REDIRECT [:Category:Command Reference/zh](:Category:Command_Reference/zh.md) + +--- +[documentation index](../README.md) > List of Commands/zh diff --git a/wiki/translations/zh/Main_Page.md b/wiki/translations/zh/Main_Page.md index 9b74e27066..6ae3c52812 100644 --- a/wiki/translations/zh/Main_Page.md +++ b/wiki/translations/zh/Main_Page.md @@ -1,7 +1,4 @@ # Main Page/zh - - -
# FreeCAD @@ -170,3 +167,6 @@ Check the [Development roadmap](Development_roadmap.md) for news about what is b [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Main Page/zh diff --git a/wiki/translations/zh/Mesh_Module.md b/wiki/translations/zh/Mesh_Module.md index d7f3b92810..26dd8d9bf2 100644 --- a/wiki/translations/zh/Mesh_Module.md +++ b/wiki/translations/zh/Mesh_Module.md @@ -1,2 +1,5 @@ # Mesh Module/zh 1. REDIRECT [Mesh Workbench/zh](Mesh_Workbench/zh.md) + +--- +[documentation index](../README.md) > [Mesh](Mesh_Workbench.md) > Mesh Module/zh diff --git a/wiki/translations/zh/Mesh_Workbench.md b/wiki/translations/zh/Mesh_Workbench.md index 5a07a13ef8..f40e523663 100644 --- a/wiki/translations/zh/Mesh_Workbench.md +++ b/wiki/translations/zh/Mesh_Workbench.md @@ -1,10 +1,4 @@ -# Mesh Workbench/zh - - - - - -Mesh workbench icon +# Mesh workbench icon Mesh Workbench/zh {{TOCright}} @@ -111,3 +105,6 @@ Mesh Workbench preferences can be found in the following categories of the [Pref }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Mesh Workbench/zh diff --git a/wiki/translations/zh/Mouse_Model.md b/wiki/translations/zh/Mouse_Model.md index 0a38ded440..f2f4ae285e 100644 --- a/wiki/translations/zh/Mouse_Model.md +++ b/wiki/translations/zh/Mouse_Model.md @@ -1,2 +1,5 @@ # Mouse Model/zh 1. REDIRECT [Mouse\_navigation/zh](Mouse_navigation/zh.md) + +--- +[documentation index](../README.md) > Mouse Model/zh diff --git a/wiki/translations/zh/Mouse_navigation.md b/wiki/translations/zh/Mouse_navigation.md index 729cdf8946..379f7fc64c 100644 --- a/wiki/translations/zh/Mouse_navigation.md +++ b/wiki/translations/zh/Mouse_navigation.md @@ -1,10 +1,4 @@ # Mouse navigation/zh - - - - - - {{TOCright}} ## Overview @@ -305,4 +299,5 @@ The tutorial [Adding a new mouse navigation option to FreeCAD](Adding_a_new_mous |[导航立方体](Navigation_Cube/zh.md) }} - +--- +[documentation index](../README.md) > Mouse navigation/zh diff --git a/wiki/translations/zh/Online_Help_Startpage.md b/wiki/translations/zh/Online_Help_Startpage.md index 8aad21e3ab..bdf5f75d08 100644 --- a/wiki/translations/zh/Online_Help_Startpage.md +++ b/wiki/translations/zh/Online_Help_Startpage.md @@ -1,6 +1,4 @@ # Online Help Startpage/zh - - ![150](images/Crystal_Clear_app_tutorials.png ) ## 欢迎来到FreeCAD在线帮助文档 @@ -22,3 +20,6 @@ [Category:User\_Documentation](Category:User_Documentation.md) + +--- +[documentation index](../README.md) > [User_Documentation](Category:User_Documentation.md) > Online Help Startpage/zh diff --git a/wiki/translations/zh/Online_Help_Toc.md b/wiki/translations/zh/Online_Help_Toc.md index 015bd70e71..ff27b22807 100644 --- a/wiki/translations/zh/Online_Help_Toc.md +++ b/wiki/translations/zh/Online_Help_Toc.md @@ -1,7 +1,4 @@ # Online Help Toc/zh - - -
这是用于自动创建FreeCAD在线帮助系统的目录。该手册在[发布页](https://github.com/FreeCAD/FreeCAD/releases)有一份可打印版本。 @@ -174,3 +171,6 @@ There is another table of contents for the [FreeCAD MANUAL](Manual:Introduction. [Category:Documentation/zh](Category:Documentation/zh.md) [Category:Documentation](Category:Documentation.md) + +--- +[documentation index](../README.md) > [Documentation](Category:Documentation.md) > Online Help Toc/zh diff --git a/wiki/translations/zh/OpenSCAD_Module.md b/wiki/translations/zh/OpenSCAD_Module.md index 12aee1c853..0e81596f60 100644 --- a/wiki/translations/zh/OpenSCAD_Module.md +++ b/wiki/translations/zh/OpenSCAD_Module.md @@ -1,2 +1,5 @@ # OpenSCAD Module/zh 1. REDIRECT [OpenSCAD\_Workbench/zh](OpenSCAD_Workbench/zh.md) + +--- +[documentation index](../README.md) > [OpenSCAD](OpenSCAD_Workbench.md) > OpenSCAD Module/zh diff --git a/wiki/translations/zh/OpenSCAD_Workbench.md b/wiki/translations/zh/OpenSCAD_Workbench.md index 8f22efe2f6..67dda59c9f 100644 --- a/wiki/translations/zh/OpenSCAD_Workbench.md +++ b/wiki/translations/zh/OpenSCAD_Workbench.md @@ -1,10 +1,4 @@ -# OpenSCAD Workbench/zh - - - - - -OpenSCAD workbench icon +# OpenSCAD workbench icon OpenSCAD Workbench/zh ## Introduction @@ -108,3 +102,6 @@ If FreeCAD crashes when importing CSG, it is strongly recommended that you enabl }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > OpenSCAD Workbench/zh diff --git a/wiki/translations/zh/PartDesign_Legacy.md b/wiki/translations/zh/PartDesign_Legacy.md index 53be031391..18bc757567 100644 --- a/wiki/translations/zh/PartDesign_Legacy.md +++ b/wiki/translations/zh/PartDesign_Legacy.md @@ -1,2 +1,5 @@ # PartDesign Legacy/zh 1. REDIRECT [PartDesign\_Workbench/zh](PartDesign_Workbench/zh.md) + +--- +[documentation index](../README.md) > [PartDesign](PartDesign_Workbench.md) > PartDesign Legacy/zh diff --git a/wiki/translations/zh/PartDesign_Workbench.md b/wiki/translations/zh/PartDesign_Workbench.md index eaf9775baa..eacf2ac7ce 100644 --- a/wiki/translations/zh/PartDesign_Workbench.md +++ b/wiki/translations/zh/PartDesign_Workbench.md @@ -1,7 +1,4 @@ -# PartDesign Workbench/zh - - -PartDesign workbench icon +# PartDesign workbench icon PartDesign Workbench/zh {{TOCright}} @@ -217,3 +214,6 @@ Some additional functionality found in the Part Design menu: {{PartDesign Tools navi}} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > PartDesign Workbench/zh diff --git a/wiki/translations/zh/Part_Module.md b/wiki/translations/zh/Part_Module.md index 5db50ec4b8..bc5236cba8 100644 --- a/wiki/translations/zh/Part_Module.md +++ b/wiki/translations/zh/Part_Module.md @@ -1,10 +1,4 @@ -# Part Module/zh - - - - - -Part workbench icon +# Part workbench icon Part Module/zh {{TOCright}} @@ -213,3 +207,6 @@ See [Part scripting](Part_scripting.md). [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > [Part](Part_Workbench.md) > Part Module/zh diff --git a/wiki/translations/zh/Part_Workbench.md b/wiki/translations/zh/Part_Workbench.md index 6daaef92e6..bc2280086d 100644 --- a/wiki/translations/zh/Part_Workbench.md +++ b/wiki/translations/zh/Part_Workbench.md @@ -1,2 +1,5 @@ # Part Workbench/zh 1. REDIRECT [Part\_Module/zh](Part_Module/zh.md) + +--- +[documentation index](../README.md) > Part Workbench/zh diff --git a/wiki/translations/zh/Path_Contour.md b/wiki/translations/zh/Path_Contour.md index 0caddcbef9..3a30f8afc8 100644 --- a/wiki/translations/zh/Path_Contour.md +++ b/wiki/translations/zh/Path_Contour.md @@ -1,2 +1,5 @@ # Path Contour/zh 1. REDIRECT [Path\_Profile](Path_Profile.md) + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Contour/zh diff --git a/wiki/translations/zh/Path_ExportTemplate.md b/wiki/translations/zh/Path_ExportTemplate.md index 17a9f6f02d..b856520eaf 100644 --- a/wiki/translations/zh/Path_ExportTemplate.md +++ b/wiki/translations/zh/Path_ExportTemplate.md @@ -6,6 +6,8 @@ SeeAlso:[Path SetupSheet](Path_SetupSheet.md) --- +# Path ExportTemplate/zh + ## 描述 @@ -97,4 +99,7 @@ {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ExportTemplate/zh diff --git a/wiki/translations/zh/Path_Inspect.md b/wiki/translations/zh/Path_Inspect.md index 99918a5d2c..4aafa6d1af 100644 --- a/wiki/translations/zh/Path_Inspect.md +++ b/wiki/translations/zh/Path_Inspect.md @@ -6,6 +6,8 @@ Shortcut:**P** **I** --- +# Path Inspect/zh + ## 描述 这个工具可以用来检查刀路操作项目的内部Freecad G-code代码内容。 @@ -40,4 +42,7 @@ {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Inspect/zh diff --git a/wiki/translations/zh/Path_Job.md b/wiki/translations/zh/Path_Job.md index 59c3dfb05a..23292432a0 100644 --- a/wiki/translations/zh/Path_Job.md +++ b/wiki/translations/zh/Path_Job.md @@ -8,6 +8,8 @@ SeeAlso: --- +# Path Job/zh +
@@ -115,4 +117,7 @@ {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Job/zh diff --git a/wiki/translations/zh/Path_SelectLoop.md b/wiki/translations/zh/Path_SelectLoop.md index ddf5c9cb94..4187ebd466 100644 --- a/wiki/translations/zh/Path_SelectLoop.md +++ b/wiki/translations/zh/Path_SelectLoop.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Path SelectLoop/zh + ## Description @@ -39,4 +41,7 @@ {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path SelectLoop/zh diff --git a/wiki/translations/zh/Path_Simulator.md b/wiki/translations/zh/Path_Simulator.md index 5767f9014b..bbe13e8a15 100644 --- a/wiki/translations/zh/Path_Simulator.md +++ b/wiki/translations/zh/Path_Simulator.md @@ -7,6 +7,8 @@ SeeAlso:[Path Inspect](Path_Inspect.md) --- +# Path Simulator/zh + ## 描述 此工具可以通过沿G-code路径扫略用于每个操作的刀具3D模型模拟刀路作业,当刀具和毛坯重叠时消去毛坯中的材料以提供可视化的作业运行效果。这可以在机床运行作业前上检查并杜绝错误。 @@ -55,4 +57,7 @@ {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path Simulator/zh diff --git a/wiki/translations/zh/Path_ToolLibraryEdit.md b/wiki/translations/zh/Path_ToolLibraryEdit.md index b3371da005..22016ce8ec 100644 --- a/wiki/translations/zh/Path_ToolLibraryEdit.md +++ b/wiki/translations/zh/Path_ToolLibraryEdit.md @@ -7,6 +7,8 @@ SeeAlso: --- +# Path ToolLibraryEdit/zh + ## 描述 @@ -69,4 +71,7 @@ {{Path_Tools_navi -}} +}} + +--- +[documentation index](../README.md) > [Path](Path_Workbench.md) > Path ToolLibraryEdit/zh diff --git a/wiki/translations/zh/Path_Workbench.md b/wiki/translations/zh/Path_Workbench.md index 30844dcfa1..4ea33821fb 100644 --- a/wiki/translations/zh/Path_Workbench.md +++ b/wiki/translations/zh/Path_Workbench.md @@ -1,10 +1,4 @@ -# Path Workbench/zh - - - - - -Path workbench icon +# Path workbench icon Path Workbench/zh {{TOCright}} @@ -478,3 +472,6 @@ Manage tools, bits, and the Tool Library. Based on the ToolBit architecture. Path Workbench/zh diff --git a/wiki/translations/zh/Plot_Module.md b/wiki/translations/zh/Plot_Module.md index f5f2587a9f..75ad0feef2 100644 --- a/wiki/translations/zh/Plot_Module.md +++ b/wiki/translations/zh/Plot_Module.md @@ -1,7 +1,4 @@ -# Plot Module/zh - - -Plot workbench icon +# Plot workbench icon Plot Module/zh {{TOCright}} @@ -64,3 +61,6 @@ Since the Plot Workbench is a layer on top of `matplotlib`, you are free to use }} [Category:External\_Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > [External_Workbenches](Category:External_Workbenches.md) > Plot Module/zh diff --git a/wiki/translations/zh/Plot_Workbench.md b/wiki/translations/zh/Plot_Workbench.md index 30f91b3e65..15581064c1 100644 --- a/wiki/translations/zh/Plot_Workbench.md +++ b/wiki/translations/zh/Plot_Workbench.md @@ -1,2 +1,5 @@ # Plot Workbench/zh 1. REDIRECT [Plot\_Module/zh](Plot_Module/zh.md) + +--- +[documentation index](../README.md) > Plot Workbench/zh diff --git a/wiki/translations/zh/Points_Module.md b/wiki/translations/zh/Points_Module.md index a370fc5d59..509a268511 100644 --- a/wiki/translations/zh/Points_Module.md +++ b/wiki/translations/zh/Points_Module.md @@ -1,2 +1,5 @@ # Points Module/zh 1. REDIRECT [Points\_Workbench/zh](Points_Workbench/zh.md) + +--- +[documentation index](../README.md) > [Points](Points_Workbench.md) > Points Module/zh diff --git a/wiki/translations/zh/Points_Workbench.md b/wiki/translations/zh/Points_Workbench.md index 0cef95f751..ff6af67fa6 100644 --- a/wiki/translations/zh/Points_Workbench.md +++ b/wiki/translations/zh/Points_Workbench.md @@ -1,10 +1,4 @@ -# Points Workbench/zh - - - - - -Points workbench icon +# Points workbench icon Points Workbench/zh ## Introduction @@ -51,3 +45,6 @@ All Points Workbench tools can be accessed from the **Points** menu. Some tools }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Points Workbench/zh diff --git a/wiki/translations/zh/Preferences_Editor.md b/wiki/translations/zh/Preferences_Editor.md index 15064d2e14..64e8db8f3f 100644 --- a/wiki/translations/zh/Preferences_Editor.md +++ b/wiki/translations/zh/Preferences_Editor.md @@ -1,10 +1,4 @@ # Preferences Editor/zh - - - - - - {{TOCright}} ## Introduction @@ -762,3 +756,6 @@ For a scripting example see [Std DlgParameter](Std_DlgParameter.md). [Category:Preferences](Category:Preferences.md) + +--- +[documentation index](../README.md) > [Preferences](Category:Preferences.md) > Preferences Editor/zh diff --git a/wiki/translations/zh/Property.md b/wiki/translations/zh/Property.md index c83d090c0e..d15f441e22 100644 --- a/wiki/translations/zh/Property.md +++ b/wiki/translations/zh/Property.md @@ -1,6 +1,4 @@ # Property/zh - - ## Introduction @@ -158,3 +156,6 @@ They are imported and initialized in `[https://github.com/FreeCAD/FreeCAD/blob/9 }} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Property/zh diff --git a/wiki/translations/zh/Ray_Tracing_Workbench.md b/wiki/translations/zh/Ray_Tracing_Workbench.md index fdc01a651d..ddef17c31b 100644 --- a/wiki/translations/zh/Ray_Tracing_Workbench.md +++ b/wiki/translations/zh/Ray_Tracing_Workbench.md @@ -1,2 +1,5 @@ # Ray Tracing Workbench/zh 1. REDIRECT [Raytracing\_Workbench/zh](Raytracing_Workbench/zh.md) + +--- +[documentation index](../README.md) > Ray Tracing Workbench/zh diff --git a/wiki/translations/zh/Raytracing_Module.md b/wiki/translations/zh/Raytracing_Module.md index 7320ef7389..f6b38920c7 100644 --- a/wiki/translations/zh/Raytracing_Module.md +++ b/wiki/translations/zh/Raytracing_Module.md @@ -1,2 +1,5 @@ # Raytracing Module/zh 1. REDIRECT [Raytracing\_Workbench/zh](Raytracing_Workbench/zh.md) + +--- +[documentation index](../README.md) > [Raytracing](Raytracing_Workbench.md) > Raytracing Module/zh diff --git a/wiki/translations/zh/Raytracing_Workbench.md b/wiki/translations/zh/Raytracing_Workbench.md index 957581bdb7..6179a29b53 100644 --- a/wiki/translations/zh/Raytracing_Workbench.md +++ b/wiki/translations/zh/Raytracing_Workbench.md @@ -1,7 +1,4 @@ # Raytracing Workbench/zh - - - **The Raytracing workbench is essentially obsolete. New development is happening in the [https://github.com/FreeCAD/FreeCAD-render Render Workbench], which is intended as its replacement. This workbench is fully programmed in Python so it is much easier to extend. Nevertheless, the information in this page is generally useful for the new workbench, as both modules work basically in the same way. @@ -149,3 +146,6 @@ These pages refer to a replacement workbench, programmed in C++, proposed around }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Raytracing Workbench/zh diff --git a/wiki/translations/zh/Reverse_Engineering_Workbench.md b/wiki/translations/zh/Reverse_Engineering_Workbench.md index 956a90f0e5..0d9e952c1c 100644 --- a/wiki/translations/zh/Reverse_Engineering_Workbench.md +++ b/wiki/translations/zh/Reverse_Engineering_Workbench.md @@ -1,10 +1,4 @@ -# Reverse Engineering Workbench/zh - - - - - -Reverse Engineering workbench icon +# Reverse Engineering workbench icon Reverse Engineering Workbench/zh ## Introduction @@ -29,3 +23,6 @@ Link to appropriate threads discussing this workbench [Category:Reverse Engineering](Category:Reverse_Engineering.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Reverse Engineering Workbench/zh diff --git a/wiki/translations/zh/Robot_Workbench.md b/wiki/translations/zh/Robot_Workbench.md index 49a602ef25..4cbff1fa2c 100644 --- a/wiki/translations/zh/Robot_Workbench.md +++ b/wiki/translations/zh/Robot_Workbench.md @@ -1,10 +1,4 @@ # Robot Workbench/zh - - - - - - **The Robot Workbench is unmaintained. If you have experience with the topic and are interested in maintaining it, please state your intention in the developer's section of the [https://forum.freecadweb.org/index.php FreeCAD forum]. The reason this workbench is still in the master source code is because this workbench is programmed in C++. If this workbench could be programmed in Python, then it could be made an [external workbench](external_workbenches.md) and it could be moved to a separate repository. @@ -81,3 +75,6 @@ See the [Robot API example](Robot_API_example.md) for a description of the funct }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Robot Workbench/zh diff --git a/wiki/translations/zh/Screenshots.md b/wiki/translations/zh/Screenshots.md index 8c965a5a71..a2ecafadd8 100644 --- a/wiki/translations/zh/Screenshots.md +++ b/wiki/translations/zh/Screenshots.md @@ -1,5 +1,5 @@ # Screenshots/zh - {{TOCright}} +{{TOCright}} 这里的截图展示了FreeCAD的不同部分。他们并为按照特定的时间线排序,因此这些图片也许与你的真实版本不同。在 [论坛截图跟帖](http://forum.freecadweb.org/viewtopic.php?f=8&t=4751)以及[论坛用户秀](http://forum.freecadweb.org/viewforum.php?f=24)查看更多的有FreeCAD用户提交的截图。 @@ -214,3 +214,6 @@ FreeCAD runs in console mode (without gui) Dialog to save a picture with arbitrary sizes. [Category:User Documentation](Category:User_Documentation.md) [Category:Screenshots](Category:Screenshots.md) + +--- +[documentation index](../README.md) > Screenshots/zh diff --git a/wiki/translations/zh/Ship_Workbench.md b/wiki/translations/zh/Ship_Workbench.md index efc2412244..202851af89 100644 --- a/wiki/translations/zh/Ship_Workbench.md +++ b/wiki/translations/zh/Ship_Workbench.md @@ -1,7 +1,4 @@ -# Ship Workbench/zh - - -Ship workbench icon +# Ship workbench icon Ship Workbench/zh {{TOCright}} @@ -49,3 +46,6 @@ The Ship Workbench was unmaintained since v0.17 but has been resurrected in v0.1 }} [Category:External Workbenches](Category:External_Workbenches.md) [Category:Addons](Category:Addons.md) + +--- +[documentation index](../README.md) > Ship Workbench/zh diff --git a/wiki/translations/zh/Sketcher_Module.md b/wiki/translations/zh/Sketcher_Module.md index 756dfe9ba8..01772a24bd 100644 --- a/wiki/translations/zh/Sketcher_Module.md +++ b/wiki/translations/zh/Sketcher_Module.md @@ -1,2 +1,5 @@ # Sketcher Module/zh 1. REDIRECT [Sketcher Workbench/zh](Sketcher_Workbench/zh.md) + +--- +[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher Module/zh diff --git a/wiki/translations/zh/Sketcher_Workbench.md b/wiki/translations/zh/Sketcher_Workbench.md index 897d37dd62..a2217666f6 100644 --- a/wiki/translations/zh/Sketcher_Workbench.md +++ b/wiki/translations/zh/Sketcher_Workbench.md @@ -1,10 +1,4 @@ -# Sketcher Workbench/zh - - - - - -Sketcher workbench icon +# Sketcher workbench icon Sketcher Workbench/zh {{TOCright}} @@ -322,3 +316,6 @@ The [Sketcher scripting](Sketcher_scripting.md) page contains examples on how to }} [Category:User Documentation/zh](Category:User_Documentation/zh.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Sketcher Workbench/zh diff --git a/wiki/translations/zh/Spreadsheet_Module.md b/wiki/translations/zh/Spreadsheet_Module.md index 2f93b6a9c0..34631ef986 100644 --- a/wiki/translations/zh/Spreadsheet_Module.md +++ b/wiki/translations/zh/Spreadsheet_Module.md @@ -1,2 +1,5 @@ # Spreadsheet Module/zh 1. REDIRECT [Spreadsheet Workbench/zh](Spreadsheet_Workbench/zh.md) + +--- +[documentation index](../README.md) > [Spreadsheet](Spreadsheet_Workbench.md) > Spreadsheet Module/zh diff --git a/wiki/translations/zh/Spreadsheet_Workbench.md b/wiki/translations/zh/Spreadsheet_Workbench.md index ee18c2294a..4d48eedb7d 100644 --- a/wiki/translations/zh/Spreadsheet_Workbench.md +++ b/wiki/translations/zh/Spreadsheet_Workbench.md @@ -1,5 +1,4 @@ # Spreadsheet Workbench/zh - {{Page_in_progress}} @@ -235,3 +234,6 @@ sheet.get('Diameter') }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Spreadsheet Workbench/zh diff --git a/wiki/translations/zh/Start_Workbench.md b/wiki/translations/zh/Start_Workbench.md index 215119c76e..15a61c57cf 100644 --- a/wiki/translations/zh/Start_Workbench.md +++ b/wiki/translations/zh/Start_Workbench.md @@ -1,10 +1,4 @@ -# Start Workbench/zh - - - - - -Start workbench icon +# Start workbench icon Start Workbench/zh The [Start Workbench](Start_Workbench.md) is not really a workbench, it\'s just the page that is presented when you open FreeCAD with no document loaded. @@ -26,3 +20,6 @@ From this interface you can see useful information and jump to recently opened f [Category:User Documentation/zh](Category:User_Documentation/zh.md) [Category:Start](Category:Start.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Start Workbench/zh diff --git a/wiki/translations/zh/Std_InterfaceCustomization.md b/wiki/translations/zh/Std_InterfaceCustomization.md index 3519b5e6f4..9faa065642 100644 --- a/wiki/translations/zh/Std_InterfaceCustomization.md +++ b/wiki/translations/zh/Std_InterfaceCustomization.md @@ -1,2 +1,5 @@ # Std InterfaceCustomization/zh 1. REDIRECT [Interface\_Customization/zh](Interface_Customization/zh.md) + +--- +[documentation index](../README.md) > Std InterfaceCustomization/zh diff --git a/wiki/translations/zh/Surface_Module.md b/wiki/translations/zh/Surface_Module.md index 1d57c98afe..968702750c 100644 --- a/wiki/translations/zh/Surface_Module.md +++ b/wiki/translations/zh/Surface_Module.md @@ -1,2 +1,5 @@ # Surface Module/zh 1. REDIRECT [Surface\_Workbench/zh](Surface_Workbench/zh.md) + +--- +[documentation index](../README.md) > [Surface](Surface_Workbench.md) > Surface Module/zh diff --git a/wiki/translations/zh/Surface_Workbench.md b/wiki/translations/zh/Surface_Workbench.md index 5a2dcfe661..299d07ac7a 100644 --- a/wiki/translations/zh/Surface_Workbench.md +++ b/wiki/translations/zh/Surface_Workbench.md @@ -1,10 +1,4 @@ -# Surface Workbench/zh - - - - - -Surface workbench icon +# Surface workbench icon Surface Workbench/zh {{TOCright}} @@ -57,3 +51,6 @@ The generated surface cannot be placed inside a ** Surface Workbench/zh diff --git a/wiki/translations/zh/TechDraw_Module.md b/wiki/translations/zh/TechDraw_Module.md index aec5bba113..3b504305a8 100644 --- a/wiki/translations/zh/TechDraw_Module.md +++ b/wiki/translations/zh/TechDraw_Module.md @@ -1,2 +1,5 @@ # TechDraw Module/zh 1. REDIRECT [TechDraw\_Workbench/zh](TechDraw_Workbench/zh.md) + +--- +[documentation index](../README.md) > [TechDraw](TechDraw_Workbench.md) > TechDraw Module/zh diff --git a/wiki/translations/zh/TechDraw_Workbench.md b/wiki/translations/zh/TechDraw_Workbench.md index 03979fe29c..3eadb1607a 100644 --- a/wiki/translations/zh/TechDraw_Workbench.md +++ b/wiki/translations/zh/TechDraw_Workbench.md @@ -1,10 +1,4 @@ -# TechDraw Workbench/zh - - - - - -TechDraw workbench icon +# TechDraw workbench icon TechDraw Workbench/zh ## Introduction @@ -209,3 +203,6 @@ Video tutorials by sliptonic }} [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > TechDraw Workbench/zh diff --git a/wiki/translations/zh/Topological_data_scripting.md b/wiki/translations/zh/Topological_data_scripting.md index 1a139367c6..4c5b764157 100644 --- a/wiki/translations/zh/Topological_data_scripting.md +++ b/wiki/translations/zh/Topological_data_scripting.md @@ -1,7 +1,4 @@ # Topological data scripting/zh - - - {{TOCright}} ## Introduction @@ -938,3 +935,6 @@ s.read("test.stp") ```{{Top}} {{Powerdocnavi}} [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Python Code](Category:Python_Code.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Topological data scripting/zh diff --git a/wiki/translations/zh/Tracker.md b/wiki/translations/zh/Tracker.md index aa271ae223..8e22e8d2d9 100644 --- a/wiki/translations/zh/Tracker.md +++ b/wiki/translations/zh/Tracker.md @@ -1,10 +1,4 @@ # Tracker/zh - - - - - - {{TOCright}} ![](images/Mantis_logo_262x90.png ) @@ -188,3 +182,6 @@ For the inquisitive here is the regex MantisBT uses for this operation: [Category:Developer Documentation](Category:Developer_Documentation.md) [Category:Administration](Category:Administration.md) + +--- +[documentation index](../README.md) > [Developer Documentation](Category:Developer Documentation.md) > Tracker/zh diff --git a/wiki/translations/zh/Tutorials.md b/wiki/translations/zh/Tutorials.md index b2b1d6dc69..ca250d1f89 100644 --- a/wiki/translations/zh/Tutorials.md +++ b/wiki/translations/zh/Tutorials.md @@ -1,10 +1,4 @@ # Tutorials/zh - - - - - - {{TOCright}} This page presents a selection of high quality written tutorials. A complete, unsorted list of tutorials can be found in [:Category:Tutorials](:Category:Tutorials.md), a complete and sortable one can be found in the [table below](Tutorials#Tutorials_-_Comprehensive_list.md). @@ -283,3 +277,6 @@ Here are listed all the tutorials that are not in the manual **regardless of the [Category:Tutorials](Category:Tutorials.md) + +--- +[documentation index](../README.md) > [Tutorials]], a complete and sortable one can be found in the ](Category:Tutorials]], a complete and sortable one can be found in the .md) > Tutorials/zh diff --git a/wiki/translations/zh/User_hub.md b/wiki/translations/zh/User_hub.md index 4348be2279..cdfb3358fb 100644 --- a/wiki/translations/zh/User_hub.md +++ b/wiki/translations/zh/User_hub.md @@ -1,5 +1,4 @@ -# User hub/zh - +# User hub/zh ------------------------------------------------------------------------ @@ -122,3 +121,6 @@ This is the official FreeCAD online help. Please note that the whole online help [Category:Hubs](Category:Hubs.md) + +--- +[documentation index](../README.md) > [Hubs](Category:Hubs.md) > User hub/zh diff --git a/wiki/translations/zh/Web_Workbench.md b/wiki/translations/zh/Web_Workbench.md index d849fa6aca..b6a914ec7e 100644 --- a/wiki/translations/zh/Web_Workbench.md +++ b/wiki/translations/zh/Web_Workbench.md @@ -1,10 +1,4 @@ -# Web Workbench/zh - - - - - -Web workbench icon +# Web workbench icon Web Workbench/zh ## Introduction @@ -19,3 +13,6 @@ From this browser you are able to navigate the web, click on links, read the onl [Category:Web](Category:Web.md) [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Web Workbench/zh diff --git a/wiki/translations/zh/Workbenches.md b/wiki/translations/zh/Workbenches.md index c7fc4128c9..32fad0e6b6 100644 --- a/wiki/translations/zh/Workbenches.md +++ b/wiki/translations/zh/Workbenches.md @@ -1,7 +1,4 @@ # Workbenches/zh - - -
@@ -126,3 +123,6 @@ FreeCAD工作台易于通过[Python进行编程开发](Python.md),因此FreeCA [Category:Workbenches](Category:Workbenches.md) + +--- +[documentation index](../README.md) > Workbenches/zh diff --git a/wiki/translations/zh_TW/Tutorials.md b/wiki/translations/zh_TW/Tutorials.md index dd599d6a95..ac67bc8bb7 100644 --- a/wiki/translations/zh_TW/Tutorials.md +++ b/wiki/translations/zh_TW/Tutorials.md @@ -1,2 +1,5 @@ # Tutorials/zh TW 1. REDIRECT [:Category:Tutorials/zh-tw](:Category:Tutorials/zh-tw.md) + +--- +[documentation index](../README.md) > Tutorials/zh TW